1 /* Main program of GNU linker.
2 Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
3 2002, 2003, 2004, 2005, 2006, 2007
4 Free Software Foundation, Inc.
5 Written by Steve Chamberlain steve@cygnus.com
7 This file is part of GLD, the Gnu Linker.
9 GLD is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2, or (at your option)
14 GLD is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with GLD; see the file COPYING. If not, write to the Free
21 Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
26 #include "safe-ctype.h"
27 #include "libiberty.h"
30 #include "filenames.h"
44 /* Somewhere above, sys/stat.h got included. */
45 #if !defined(S_ISDIR) && defined(S_IFDIR)
46 #define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
57 #ifndef TARGET_SYSTEM_ROOT
58 #define TARGET_SYSTEM_ROOT ""
64 const char *output_filename = "a.out";
66 /* Name this program was invoked by. */
69 /* The prefix for system library directories. */
70 const char *ld_sysroot;
72 /* The canonical representation of ld_sysroot. */
73 char * ld_canon_sysroot;
74 int ld_canon_sysroot_len;
76 /* The file that we're creating. */
79 /* Set by -G argument, for MIPS ECOFF target. */
80 int g_switch_value = 8;
82 /* Nonzero means print names of input files as processed. */
83 bfd_boolean trace_files;
85 /* Nonzero means same, but note open failures, too. */
86 bfd_boolean trace_file_tries;
88 /* Nonzero means version number was printed, so exit successfully
89 instead of complaining if no input files are given. */
90 bfd_boolean version_printed;
92 /* Nonzero means link in every member of an archive. */
93 bfd_boolean whole_archive;
95 /* Nonzero means create DT_NEEDED entries only if a dynamic library
96 actually satisfies some reference in a regular object. */
97 bfd_boolean as_needed;
99 /* Nonzero means never create DT_NEEDED entries for dynamic libraries
100 in DT_NEEDED tags. */
101 bfd_boolean add_needed = TRUE;
103 /* TRUE if we should demangle symbol names. */
104 bfd_boolean demangling;
106 args_type command_line;
108 ld_config_type config;
110 sort_type sort_section;
112 static const char *get_sysroot
114 static char *get_emulation
116 static void set_scripts_dir
118 static bfd_boolean add_archive_element
119 (struct bfd_link_info *, bfd *, const char *);
120 static bfd_boolean multiple_definition
121 (struct bfd_link_info *, const char *, bfd *, asection *, bfd_vma,
122 bfd *, asection *, bfd_vma);
123 static bfd_boolean multiple_common
124 (struct bfd_link_info *, const char *, bfd *, enum bfd_link_hash_type,
125 bfd_vma, bfd *, enum bfd_link_hash_type, bfd_vma);
126 static bfd_boolean add_to_set
127 (struct bfd_link_info *, struct bfd_link_hash_entry *,
128 bfd_reloc_code_real_type, bfd *, asection *, bfd_vma);
129 static bfd_boolean constructor_callback
130 (struct bfd_link_info *, bfd_boolean, const char *, bfd *,
131 asection *, bfd_vma);
132 static bfd_boolean warning_callback
133 (struct bfd_link_info *, const char *, const char *, bfd *,
134 asection *, bfd_vma);
135 static void warning_find_reloc
136 (bfd *, asection *, void *);
137 static bfd_boolean undefined_symbol
138 (struct bfd_link_info *, const char *, bfd *, asection *, bfd_vma,
140 static bfd_boolean reloc_overflow
141 (struct bfd_link_info *, struct bfd_link_hash_entry *, const char *,
142 const char *, bfd_vma, bfd *, asection *, bfd_vma);
143 static bfd_boolean reloc_dangerous
144 (struct bfd_link_info *, const char *, bfd *, asection *, bfd_vma);
145 static bfd_boolean unattached_reloc
146 (struct bfd_link_info *, const char *, bfd *, asection *, bfd_vma);
147 static bfd_boolean notice
148 (struct bfd_link_info *, const char *, bfd *, asection *, bfd_vma);
150 static struct bfd_link_callbacks link_callbacks =
156 constructor_callback,
166 ldlang_override_segment_assignment
169 struct bfd_link_info link_info;
177 bfd_cache_close (output_bfd);
178 if (delete_output_file_on_failure)
179 unlink_if_ordinary (output_filename);
184 main (int argc, char **argv)
187 long start_time = get_run_time ();
189 #if defined (HAVE_SETLOCALE) && defined (HAVE_LC_MESSAGES)
190 setlocale (LC_MESSAGES, "");
192 #if defined (HAVE_SETLOCALE)
193 setlocale (LC_CTYPE, "");
195 bindtextdomain (PACKAGE, LOCALEDIR);
196 textdomain (PACKAGE);
198 program_name = argv[0];
199 xmalloc_set_program_name (program_name);
201 START_PROGRESS (program_name, 0);
203 expandargv (&argc, &argv);
207 bfd_set_error_program_name (program_name);
209 xatexit (remove_output);
211 /* Set up the sysroot directory. */
212 ld_sysroot = get_sysroot (argc, argv);
215 if (*TARGET_SYSTEM_ROOT == 0)
217 einfo ("%P%F: this linker was not configured to use sysroots\n");
221 ld_canon_sysroot = lrealpath (ld_sysroot);
223 if (ld_canon_sysroot)
224 ld_canon_sysroot_len = strlen (ld_canon_sysroot);
226 ld_canon_sysroot_len = -1;
228 /* Set the default BFD target based on the configured target. Doing
229 this permits the linker to be configured for a particular target,
230 and linked against a shared BFD library which was configured for
231 a different target. The macro TARGET is defined by Makefile. */
232 if (! bfd_set_default_target (TARGET))
234 einfo (_("%X%P: can't set BFD default target to `%s': %E\n"), TARGET);
245 /* Initialize the data about options. */
246 trace_files = trace_file_tries = version_printed = FALSE;
247 whole_archive = FALSE;
248 config.build_constructors = TRUE;
249 config.dynamic_link = FALSE;
250 config.has_shared = FALSE;
251 config.rpath_separator = ':';
252 config.split_by_reloc = (unsigned) -1;
253 config.split_by_file = (bfd_size_type) -1;
254 config.hash_table_size = 0;
255 command_line.force_common_definition = FALSE;
256 command_line.inhibit_common_definition = FALSE;
257 command_line.interpreter = NULL;
258 command_line.rpath = NULL;
259 command_line.warn_mismatch = TRUE;
260 command_line.check_section_addresses = TRUE;
261 command_line.accept_unknown_input_arch = FALSE;
262 command_line.symbolic = symbolic_unset;
263 command_line.dynamic_list = dynamic_list_unset;
267 /* We initialize DEMANGLING based on the environment variable
268 COLLECT_NO_DEMANGLE. The gcc collect2 program will demangle the
269 output of the linker, unless COLLECT_NO_DEMANGLE is set in the
270 environment. Acting the same way here lets us provide the same
271 interface by default. */
272 demangling = getenv ("COLLECT_NO_DEMANGLE") == NULL;
274 link_info.relocatable = FALSE;
275 link_info.emitrelocations = FALSE;
276 link_info.task_link = FALSE;
277 link_info.shared = FALSE;
278 link_info.pie = FALSE;
279 link_info.executable = FALSE;
280 link_info.symbolic = FALSE;
281 link_info.export_dynamic = FALSE;
282 link_info.static_link = FALSE;
283 link_info.traditional_format = FALSE;
284 link_info.optimize = FALSE;
285 link_info.unresolved_syms_in_objects = RM_NOT_YET_SET;
286 link_info.unresolved_syms_in_shared_libs = RM_NOT_YET_SET;
287 link_info.allow_multiple_definition = FALSE;
288 link_info.allow_undefined_version = TRUE;
289 link_info.create_default_symver = FALSE;
290 link_info.default_imported_symver = FALSE;
291 link_info.keep_memory = TRUE;
292 link_info.notice_all = FALSE;
293 link_info.nocopyreloc = FALSE;
294 link_info.new_dtags = FALSE;
295 link_info.combreloc = TRUE;
296 link_info.eh_frame_hdr = FALSE;
297 link_info.relro = FALSE;
298 link_info.strip_discarded = TRUE;
299 link_info.strip = strip_none;
300 link_info.discard = discard_sec_merge;
301 link_info.common_skip_ar_aymbols = bfd_link_common_skip_none;
302 link_info.callbacks = &link_callbacks;
303 link_info.hash = NULL;
304 link_info.keep_hash = NULL;
305 link_info.notice_hash = NULL;
306 link_info.wrap_hash = NULL;
307 link_info.input_bfds = NULL;
308 link_info.create_object_symbols_section = NULL;
309 link_info.gc_sym_list = NULL;
310 link_info.base_file = NULL;
311 link_info.emit_hash = TRUE;
312 link_info.emit_gnu_hash = FALSE;
313 /* SVR4 linkers seem to set DT_INIT and DT_FINI based on magic _init
314 and _fini symbols. We are compatible. */
315 link_info.init_function = "_init";
316 link_info.fini_function = "_fini";
317 link_info.pei386_auto_import = -1;
318 link_info.pei386_runtime_pseudo_reloc = FALSE;
319 link_info.spare_dynamic_tags = 5;
321 link_info.flags_1 = 0;
322 link_info.relax_pass = 1;
323 link_info.warn_shared_textrel = FALSE;
324 link_info.gc_sections = FALSE;
325 link_info.print_gc_sections = FALSE;
326 link_info.dynamic = FALSE;
327 link_info.dynamic_list = NULL;
328 link_info.dynamic_data = FALSE;
329 link_info.reduce_memory_overheads = FALSE;
331 config.maxpagesize = 0;
332 config.commonpagesize = 0;
334 ldfile_add_arch ("");
336 config.make_executable = TRUE;
337 force_make_executable = FALSE;
338 config.magic_demand_paged = TRUE;
339 config.text_read_only = TRUE;
341 emulation = get_emulation (argc, argv);
342 ldemul_choose_mode (emulation);
343 default_target = ldemul_choose_target (argc, argv);
345 ldemul_before_parse ();
346 lang_has_input_file = FALSE;
347 parse_args (argc, argv);
349 if (config.hash_table_size != 0)
350 bfd_hash_set_default_size (config.hash_table_size);
352 ldemul_set_symbols ();
354 if (link_info.relocatable)
356 if (link_info.gc_sections)
357 einfo ("%P%F: --gc-sections and -r may not be used together\n");
358 else if (command_line.relax)
359 einfo (_("%P%F: --relax and -r may not be used together\n"));
360 if (link_info.shared)
361 einfo (_("%P%F: -r and -shared may not be used together\n"));
364 /* We may have -Bsymbolic, -Bsymbolic-functions, --dynamic-list-data,
365 --dynamic-list-cpp-new, --dynamic-list-cpp-typeinfo and
366 --dynamic-list FILE. -Bsymbolic and -Bsymbolic-functions are
367 for shared libraries. -Bsymbolic overrides all others and vice
369 switch (command_line.symbolic)
374 /* -Bsymbolic is for shared library only. */
375 if (link_info.shared)
377 link_info.symbolic = TRUE;
378 /* Should we free the unused memory? */
379 link_info.dynamic_list = NULL;
380 command_line.dynamic_list = dynamic_list_unset;
383 case symbolic_functions:
384 /* -Bsymbolic-functions is for shared library only. */
385 if (link_info.shared)
386 command_line.dynamic_list = dynamic_list_data;
390 switch (command_line.dynamic_list)
392 case dynamic_list_unset:
394 case dynamic_list_data:
395 link_info.dynamic_data = TRUE;
397 link_info.dynamic = TRUE;
401 if (! link_info.shared)
403 if (command_line.filter_shlib)
404 einfo (_("%P%F: -F may not be used without -shared\n"));
405 if (command_line.auxiliary_filters)
406 einfo (_("%P%F: -f may not be used without -shared\n"));
409 if (! link_info.shared || link_info.pie)
410 link_info.executable = TRUE;
412 /* Treat ld -r -s as ld -r -S -x (i.e., strip all local symbols). I
413 don't see how else this can be handled, since in this case we
414 must preserve all externally visible symbols. */
415 if (link_info.relocatable && link_info.strip == strip_all)
417 link_info.strip = strip_debugger;
418 if (link_info.discard == discard_sec_merge)
419 link_info.discard = discard_all;
422 /* This essentially adds another -L directory so this must be done after
423 the -L's in argv have been processed. */
426 /* If we have not already opened and parsed a linker script,
427 try the default script from command line first. */
428 if (saved_script_handle == NULL
429 && command_line.default_script != NULL)
431 ldfile_open_command_file (command_line.default_script);
432 parser_input = input_script;
436 /* If we have not already opened and parsed a linker script
437 read the emulation's appropriate default script. */
438 if (saved_script_handle == NULL)
441 char *s = ldemul_get_script (&isfile);
444 ldfile_open_command_file (s);
450 parser_input = input_script;
455 if (trace_file_tries)
457 if (saved_script_handle)
458 info_msg (_("using external linker script:"));
460 info_msg (_("using internal linker script:"));
461 info_msg ("\n==================================================\n");
463 if (saved_script_handle)
465 static const int ld_bufsz = 8193;
467 char *buf = xmalloc (ld_bufsz);
469 rewind (saved_script_handle);
470 while ((n = fread (buf, 1, ld_bufsz - 1, saved_script_handle)) > 0)
475 rewind (saved_script_handle);
482 info_msg (ldemul_get_script (&isfile));
485 info_msg ("\n==================================================\n");
490 if (!lang_has_input_file)
494 einfo (_("%P%F: no input files\n"));
498 info_msg (_("%P: mode %s\n"), emulation);
500 ldemul_after_parse ();
502 if (config.map_filename)
504 if (strcmp (config.map_filename, "-") == 0)
506 config.map_file = stdout;
510 config.map_file = fopen (config.map_filename, FOPEN_WT);
511 if (config.map_file == (FILE *) NULL)
513 bfd_set_error (bfd_error_system_call);
514 einfo (_("%P%F: cannot open map file %s: %E\n"),
515 config.map_filename);
522 /* Print error messages for any missing symbols, for any warning
523 symbols, and possibly multiple definitions. */
524 if (link_info.relocatable)
525 output_bfd->flags &= ~EXEC_P;
527 output_bfd->flags |= EXEC_P;
531 if (config.map_file != NULL)
533 if (command_line.cref)
534 output_cref (config.map_file != NULL ? config.map_file : stdout);
535 if (nocrossref_list != NULL)
536 check_nocrossrefs ();
540 /* Even if we're producing relocatable output, some non-fatal errors should
541 be reported in the exit status. (What non-fatal errors, if any, do we
542 want to ignore for relocatable output?) */
543 if (!config.make_executable && !force_make_executable)
546 einfo (_("%P: link errors found, deleting executable `%s'\n"),
549 /* The file will be removed by remove_output. */
554 if (! bfd_close (output_bfd))
555 einfo (_("%F%B: final close failed: %E\n"), output_bfd);
557 /* If the --force-exe-suffix is enabled, and we're making an
558 executable file and it doesn't end in .exe, copy it to one
560 if (! link_info.relocatable && command_line.force_exe_suffix)
562 int len = strlen (output_filename);
565 || (strcasecmp (output_filename + len - 4, ".exe") != 0
566 && strcasecmp (output_filename + len - 4, ".dll") != 0))
570 const int bsize = 4096;
571 char *buf = xmalloc (bsize);
573 char *dst_name = xmalloc (len + 5);
575 strcpy (dst_name, output_filename);
576 strcat (dst_name, ".exe");
577 src = fopen (output_filename, FOPEN_RB);
578 dst = fopen (dst_name, FOPEN_WB);
581 einfo (_("%X%P: unable to open for source of copy `%s'\n"),
584 einfo (_("%X%P: unable to open for destination of copy `%s'\n"),
586 while ((l = fread (buf, 1, bsize, src)) > 0)
588 int done = fwrite (buf, 1, l, dst);
591 einfo (_("%P: Error writing file `%s'\n"), dst_name);
595 if (fclose (dst) == EOF)
596 einfo (_("%P: Error closing file `%s'\n"), dst_name);
603 END_PROGRESS (program_name);
608 char *lim = sbrk (0);
610 long run_time = get_run_time () - start_time;
612 fprintf (stderr, _("%s: total time in link: %ld.%06ld\n"),
613 program_name, run_time / 1000000, run_time % 1000000);
615 fprintf (stderr, _("%s: data size %ld\n"), program_name,
616 (long) (lim - (char *) &environ));
620 /* Prevent remove_output from doing anything, after a successful link. */
621 output_filename = NULL;
627 /* If the configured sysroot is relocatable, try relocating it based on
628 default prefix FROM. Return the relocated directory if it exists,
629 otherwise return null. */
632 get_relative_sysroot (const char *from ATTRIBUTE_UNUSED)
634 #ifdef TARGET_SYSTEM_ROOT_RELOCATABLE
638 path = make_relative_prefix (program_name, from, TARGET_SYSTEM_ROOT);
641 if (stat (path, &s) == 0 && S_ISDIR (s.st_mode))
649 /* Return the sysroot directory. Return "" if no sysroot is being used. */
652 get_sysroot (int argc, char **argv)
657 for (i = 1; i < argc; i++)
658 if (CONST_STRNEQ (argv[i], "--sysroot="))
659 return argv[i] + strlen ("--sysroot=");
661 path = get_relative_sysroot (BINDIR);
665 path = get_relative_sysroot (TOOLBINDIR);
669 return TARGET_SYSTEM_ROOT;
672 /* We need to find any explicitly given emulation in order to initialize the
673 state that's needed by the lex&yacc argument parser (parse_args). */
676 get_emulation (int argc, char **argv)
681 emulation = getenv (EMULATION_ENVIRON);
682 if (emulation == NULL)
683 emulation = DEFAULT_EMULATION;
685 for (i = 1; i < argc; i++)
687 if (CONST_STRNEQ (argv[i], "-m"))
689 if (argv[i][2] == '\0')
694 emulation = argv[i + 1];
698 einfo (_("%P%F: missing argument to -m\n"));
700 else if (strcmp (argv[i], "-mips1") == 0
701 || strcmp (argv[i], "-mips2") == 0
702 || strcmp (argv[i], "-mips3") == 0
703 || strcmp (argv[i], "-mips4") == 0
704 || strcmp (argv[i], "-mips5") == 0
705 || strcmp (argv[i], "-mips32") == 0
706 || strcmp (argv[i], "-mips32r2") == 0
707 || strcmp (argv[i], "-mips64") == 0
708 || strcmp (argv[i], "-mips64r2") == 0)
710 /* FIXME: The arguments -mips1, -mips2, -mips3, etc. are
711 passed to the linker by some MIPS compilers. They
712 generally tell the linker to use a slightly different
713 library path. Perhaps someday these should be
714 implemented as emulations; until then, we just ignore
715 the arguments and hope that nobody ever creates
716 emulations named ips1, ips2 or ips3. */
718 else if (strcmp (argv[i], "-m486") == 0)
720 /* FIXME: The argument -m486 is passed to the linker on
721 some Linux systems. Hope that nobody creates an
722 emulation named 486. */
727 emulation = &argv[i][2];
735 /* If directory DIR contains an "ldscripts" subdirectory,
736 add DIR to the library search path and return TRUE,
737 else return FALSE. */
740 check_for_scripts_dir (char *dir)
747 dirlen = strlen (dir);
748 /* sizeof counts the terminating NUL. */
749 buf = xmalloc (dirlen + sizeof ("/ldscripts"));
750 sprintf (buf, "%s/ldscripts", dir);
752 res = stat (buf, &s) == 0 && S_ISDIR (s.st_mode);
755 ldfile_add_library_path (dir, FALSE);
759 /* Set the default directory for finding script files.
760 Libraries will be searched for here too, but that's ok.
761 We look for the "ldscripts" directory in:
763 SCRIPTDIR (passed from Makefile)
764 (adjusted according to the current location of the binary)
765 SCRIPTDIR (passed from Makefile)
766 the dir where this program is (for using it from the build tree)
767 the dir where this program is/../lib
768 (for installing the tool suite elsewhere). */
771 set_scripts_dir (void)
777 dir = make_relative_prefix (program_name, BINDIR, SCRIPTDIR);
780 found = check_for_scripts_dir (dir);
786 dir = make_relative_prefix (program_name, TOOLBINDIR, SCRIPTDIR);
789 found = check_for_scripts_dir (dir);
795 if (check_for_scripts_dir (SCRIPTDIR))
796 /* We've been installed normally. */
799 /* Look for "ldscripts" in the dir where our binary is. */
800 end = strrchr (program_name, '/');
801 #ifdef HAVE_DOS_BASED_FILE_SYSTEM
803 /* We could have \foo\bar, or /foo\bar. */
804 char *bslash = strrchr (program_name, '\\');
806 if (end == NULL || (bslash != NULL && bslash > end))
812 /* Don't look for ldscripts in the current directory. There is
813 too much potential for confusion. */
816 dirlen = end - program_name;
817 /* Make a copy of program_name in dir.
818 Leave room for later "/../lib". */
819 dir = xmalloc (dirlen + 8);
820 strncpy (dir, program_name, dirlen);
823 if (check_for_scripts_dir (dir))
829 /* Look for "ldscripts" in <the dir where our binary is>/../lib. */
830 strcpy (dir + dirlen, "/../lib");
831 check_for_scripts_dir (dir);
836 add_ysym (const char *name)
838 if (link_info.notice_hash == NULL)
840 link_info.notice_hash = xmalloc (sizeof (struct bfd_hash_table));
841 if (!bfd_hash_table_init_n (link_info.notice_hash,
843 sizeof (struct bfd_hash_entry),
845 einfo (_("%P%F: bfd_hash_table_init failed: %E\n"));
848 if (bfd_hash_lookup (link_info.notice_hash, name, TRUE, TRUE) == NULL)
849 einfo (_("%P%F: bfd_hash_lookup failed: %E\n"));
852 /* Record a symbol to be wrapped, from the --wrap option. */
855 add_wrap (const char *name)
857 if (link_info.wrap_hash == NULL)
859 link_info.wrap_hash = xmalloc (sizeof (struct bfd_hash_table));
860 if (!bfd_hash_table_init_n (link_info.wrap_hash,
862 sizeof (struct bfd_hash_entry),
864 einfo (_("%P%F: bfd_hash_table_init failed: %E\n"));
867 if (bfd_hash_lookup (link_info.wrap_hash, name, TRUE, TRUE) == NULL)
868 einfo (_("%P%F: bfd_hash_lookup failed: %E\n"));
871 /* Handle the -retain-symbols-file option. */
874 add_keepsyms_file (const char *filename)
881 if (link_info.strip == strip_some)
882 einfo (_("%X%P: error: duplicate retain-symbols-file\n"));
884 file = fopen (filename, "r");
887 bfd_set_error (bfd_error_system_call);
888 einfo ("%X%P: %s: %E\n", filename);
892 link_info.keep_hash = xmalloc (sizeof (struct bfd_hash_table));
893 if (!bfd_hash_table_init (link_info.keep_hash, bfd_hash_newfunc,
894 sizeof (struct bfd_hash_entry)))
895 einfo (_("%P%F: bfd_hash_table_init failed: %E\n"));
898 buf = xmalloc (bufsize);
910 while (! ISSPACE (c) && c != EOF)
917 buf = xrealloc (buf, bufsize);
924 if (bfd_hash_lookup (link_info.keep_hash, buf, TRUE, TRUE) == NULL)
925 einfo (_("%P%F: bfd_hash_lookup for insertion failed: %E\n"));
929 if (link_info.strip != strip_none)
930 einfo (_("%P: `-retain-symbols-file' overrides `-s' and `-S'\n"));
933 link_info.strip = strip_some;
936 /* Callbacks from the BFD linker routines. */
938 /* This is called when BFD has decided to include an archive member in
942 add_archive_element (struct bfd_link_info *info,
946 lang_input_statement_type *input;
948 input = xmalloc (sizeof (lang_input_statement_type));
949 input->filename = abfd->filename;
950 input->local_sym_name = abfd->filename;
951 input->the_bfd = abfd;
952 input->asymbols = NULL;
954 input->just_syms_flag = FALSE;
955 input->loaded = FALSE;
956 input->search_dirs_flag = FALSE;
958 /* FIXME: The following fields are not set: header.next,
959 header.type, closed, passive_position, symbol_count,
960 next_real_file, is_archive, target, real. This bit of code is
961 from the old decode_library_subfile function. I don't know
962 whether any of those fields matters. */
964 ldlang_add_file (input);
966 if (config.map_file != NULL)
968 static bfd_boolean header_printed;
969 struct bfd_link_hash_entry *h;
973 h = bfd_link_hash_lookup (info->hash, name, FALSE, FALSE, TRUE);
985 case bfd_link_hash_defined:
986 case bfd_link_hash_defweak:
987 from = h->u.def.section->owner;
990 case bfd_link_hash_undefined:
991 case bfd_link_hash_undefweak:
992 from = h->u.undef.abfd;
995 case bfd_link_hash_common:
996 from = h->u.c.p->section->owner;
1001 if (! header_printed)
1005 sprintf (buf, _("Archive member included because of file (symbol)\n\n"));
1007 header_printed = TRUE;
1010 if (bfd_my_archive (abfd) == NULL)
1012 minfo ("%s", bfd_get_filename (abfd));
1013 len = strlen (bfd_get_filename (abfd));
1017 minfo ("%s(%s)", bfd_get_filename (bfd_my_archive (abfd)),
1018 bfd_get_filename (abfd));
1019 len = (strlen (bfd_get_filename (bfd_my_archive (abfd)))
1020 + strlen (bfd_get_filename (abfd))
1036 minfo ("%B ", from);
1038 minfo ("(%T)\n", h->root.string);
1040 minfo ("(%s)\n", name);
1043 if (trace_files || trace_file_tries)
1044 info_msg ("%I\n", input);
1049 /* This is called when BFD has discovered a symbol which is defined
1053 multiple_definition (struct bfd_link_info *info ATTRIBUTE_UNUSED,
1062 /* If either section has the output_section field set to
1063 bfd_abs_section_ptr, it means that the section is being
1064 discarded, and this is not really a multiple definition at all.
1065 FIXME: It would be cleaner to somehow ignore symbols defined in
1066 sections which are being discarded. */
1067 if ((osec->output_section != NULL
1068 && ! bfd_is_abs_section (osec)
1069 && bfd_is_abs_section (osec->output_section))
1070 || (nsec->output_section != NULL
1071 && ! bfd_is_abs_section (nsec)
1072 && bfd_is_abs_section (nsec->output_section)))
1075 einfo (_("%X%C: multiple definition of `%T'\n"),
1076 nbfd, nsec, nval, name);
1078 einfo (_("%D: first defined here\n"), obfd, osec, oval);
1080 if (command_line.relax)
1082 einfo (_("%P: Disabling relaxation: it will not work with multiple definitions\n"));
1083 command_line.relax = 0;
1089 /* This is called when there is a definition of a common symbol, or
1090 when a common symbol is found for a symbol that is already defined,
1091 or when two common symbols are found. We only do something if
1092 -warn-common was used. */
1095 multiple_common (struct bfd_link_info *info ATTRIBUTE_UNUSED,
1098 enum bfd_link_hash_type otype,
1101 enum bfd_link_hash_type ntype,
1104 if (! config.warn_common)
1107 if (ntype == bfd_link_hash_defined
1108 || ntype == bfd_link_hash_defweak
1109 || ntype == bfd_link_hash_indirect)
1111 ASSERT (otype == bfd_link_hash_common);
1112 einfo (_("%B: warning: definition of `%T' overriding common\n"),
1115 einfo (_("%B: warning: common is here\n"), obfd);
1117 else if (otype == bfd_link_hash_defined
1118 || otype == bfd_link_hash_defweak
1119 || otype == bfd_link_hash_indirect)
1121 ASSERT (ntype == bfd_link_hash_common);
1122 einfo (_("%B: warning: common of `%T' overridden by definition\n"),
1125 einfo (_("%B: warning: defined here\n"), obfd);
1129 ASSERT (otype == bfd_link_hash_common && ntype == bfd_link_hash_common);
1132 einfo (_("%B: warning: common of `%T' overridden by larger common\n"),
1135 einfo (_("%B: warning: larger common is here\n"), obfd);
1137 else if (nsize > osize)
1139 einfo (_("%B: warning: common of `%T' overriding smaller common\n"),
1142 einfo (_("%B: warning: smaller common is here\n"), obfd);
1146 einfo (_("%B: warning: multiple common of `%T'\n"), nbfd, name);
1148 einfo (_("%B: warning: previous common is here\n"), obfd);
1155 /* This is called when BFD has discovered a set element. H is the
1156 entry in the linker hash table for the set. SECTION and VALUE
1157 represent a value which should be added to the set. */
1160 add_to_set (struct bfd_link_info *info ATTRIBUTE_UNUSED,
1161 struct bfd_link_hash_entry *h,
1162 bfd_reloc_code_real_type reloc,
1167 if (config.warn_constructors)
1168 einfo (_("%P: warning: global constructor %s used\n"),
1171 if (! config.build_constructors)
1174 ldctor_add_set_entry (h, reloc, NULL, section, value);
1176 if (h->type == bfd_link_hash_new)
1178 h->type = bfd_link_hash_undefined;
1179 h->u.undef.abfd = abfd;
1180 /* We don't call bfd_link_add_undef to add this to the list of
1181 undefined symbols because we are going to define it
1188 /* This is called when BFD has discovered a constructor. This is only
1189 called for some object file formats--those which do not handle
1190 constructors in some more clever fashion. This is similar to
1191 adding an element to a set, but less general. */
1194 constructor_callback (struct bfd_link_info *info,
1195 bfd_boolean constructor,
1202 struct bfd_link_hash_entry *h;
1203 char set_name[1 + sizeof "__CTOR_LIST__"];
1205 if (config.warn_constructors)
1206 einfo (_("%P: warning: global constructor %s used\n"), name);
1208 if (! config.build_constructors)
1211 /* Ensure that BFD_RELOC_CTOR exists now, so that we can give a
1212 useful error message. */
1213 if (bfd_reloc_type_lookup (output_bfd, BFD_RELOC_CTOR) == NULL
1214 && (info->relocatable
1215 || bfd_reloc_type_lookup (abfd, BFD_RELOC_CTOR) == NULL))
1216 einfo (_("%P%F: BFD backend error: BFD_RELOC_CTOR unsupported\n"));
1219 if (bfd_get_symbol_leading_char (abfd) != '\0')
1220 *s++ = bfd_get_symbol_leading_char (abfd);
1222 strcpy (s, "__CTOR_LIST__");
1224 strcpy (s, "__DTOR_LIST__");
1226 h = bfd_link_hash_lookup (info->hash, set_name, TRUE, TRUE, TRUE);
1227 if (h == (struct bfd_link_hash_entry *) NULL)
1228 einfo (_("%P%F: bfd_link_hash_lookup failed: %E\n"));
1229 if (h->type == bfd_link_hash_new)
1231 h->type = bfd_link_hash_undefined;
1232 h->u.undef.abfd = abfd;
1233 /* We don't call bfd_link_add_undef to add this to the list of
1234 undefined symbols because we are going to define it
1238 ldctor_add_set_entry (h, BFD_RELOC_CTOR, name, section, value);
1242 /* A structure used by warning_callback to pass information through
1243 bfd_map_over_sections. */
1245 struct warning_callback_info
1248 const char *warning;
1253 /* This is called when there is a reference to a warning symbol. */
1256 warning_callback (struct bfd_link_info *info ATTRIBUTE_UNUSED,
1257 const char *warning,
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)
1269 if (section != NULL)
1270 einfo ("%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 ("%B: %s%s\n", abfd, _("warning: "), warning);
1277 lang_input_statement_type *entry;
1279 struct warning_callback_info info;
1281 /* Look through the relocs to see if we can find a plausible
1283 entry = (lang_input_statement_type *) abfd->usrdata;
1284 if (entry != NULL && entry->asymbols != NULL)
1285 asymbols = entry->asymbols;
1291 symsize = bfd_get_symtab_upper_bound (abfd);
1293 einfo (_("%B%F: could not read symbols: %E\n"), abfd);
1294 asymbols = xmalloc (symsize);
1295 symbol_count = bfd_canonicalize_symtab (abfd, asymbols);
1296 if (symbol_count < 0)
1297 einfo (_("%B%F: could not read symbols: %E\n"), abfd);
1300 entry->asymbols = asymbols;
1301 entry->symbol_count = symbol_count;
1306 info.warning = warning;
1307 info.symbol = symbol;
1308 info.asymbols = asymbols;
1309 bfd_map_over_sections (abfd, warning_find_reloc, &info);
1312 einfo ("%B: %s%s\n", abfd, _("warning: "), warning);
1321 /* This is called by warning_callback for each section. It checks the
1322 relocs of the section to see if it can find a reference to the
1323 symbol which triggered the warning. If it can, it uses the reloc
1324 to give an error message with a file and line number. */
1327 warning_find_reloc (bfd *abfd, asection *sec, void *iarg)
1329 struct warning_callback_info *info = iarg;
1333 arelent **p, **pend;
1338 relsize = bfd_get_reloc_upper_bound (abfd, sec);
1340 einfo (_("%B%F: could not read relocs: %E\n"), abfd);
1344 relpp = xmalloc (relsize);
1345 relcount = bfd_canonicalize_reloc (abfd, sec, relpp, info->asymbols);
1347 einfo (_("%B%F: could not read relocs: %E\n"), abfd);
1350 pend = p + relcount;
1351 for (; p < pend && *p != NULL; p++)
1355 if (q->sym_ptr_ptr != NULL
1356 && *q->sym_ptr_ptr != NULL
1357 && strcmp (bfd_asymbol_name (*q->sym_ptr_ptr), info->symbol) == 0)
1359 /* We found a reloc for the symbol we are looking for. */
1360 einfo ("%C: %s%s\n", abfd, sec, q->address, _("warning: "),
1370 /* This is called when an undefined symbol is found. */
1373 undefined_symbol (struct bfd_link_info *info ATTRIBUTE_UNUSED,
1380 static char *error_name;
1381 static unsigned int error_count;
1383 #define MAX_ERRORS_IN_A_ROW 5
1385 if (config.warn_once)
1387 static struct bfd_hash_table *hash;
1389 /* Only warn once about a particular undefined symbol. */
1392 hash = xmalloc (sizeof (struct bfd_hash_table));
1393 if (!bfd_hash_table_init (hash, bfd_hash_newfunc,
1394 sizeof (struct bfd_hash_entry)))
1395 einfo (_("%F%P: bfd_hash_table_init failed: %E\n"));
1398 if (bfd_hash_lookup (hash, name, FALSE, FALSE) != NULL)
1401 if (bfd_hash_lookup (hash, name, TRUE, TRUE) == NULL)
1402 einfo (_("%F%P: bfd_hash_lookup failed: %E\n"));
1405 /* We never print more than a reasonable number of errors in a row
1406 for a single symbol. */
1407 if (error_name != NULL
1408 && strcmp (name, error_name) == 0)
1413 if (error_name != NULL)
1415 error_name = xstrdup (name);
1418 if (section != NULL)
1420 if (error_count < MAX_ERRORS_IN_A_ROW)
1423 einfo (_("%X%C: undefined reference to `%T'\n"),
1424 abfd, section, address, name);
1426 einfo (_("%C: warning: undefined reference to `%T'\n"),
1427 abfd, section, address, name);
1429 else if (error_count == MAX_ERRORS_IN_A_ROW)
1432 einfo (_("%X%D: more undefined references to `%T' follow\n"),
1433 abfd, section, address, name);
1435 einfo (_("%D: warning: more undefined references to `%T' follow\n"),
1436 abfd, section, address, name);
1443 if (error_count < MAX_ERRORS_IN_A_ROW)
1446 einfo (_("%X%B: undefined reference to `%T'\n"),
1449 einfo (_("%B: warning: undefined reference to `%T'\n"),
1452 else if (error_count == MAX_ERRORS_IN_A_ROW)
1455 einfo (_("%X%B: more undefined references to `%T' follow\n"),
1458 einfo (_("%B: warning: more undefined references to `%T' follow\n"),
1468 /* Counter to limit the number of relocation overflow error messages
1469 to print. Errors are printed as it is decremented. When it's
1470 called and the counter is zero, a final message is printed
1471 indicating more relocations were omitted. When it gets to -1, no
1472 such errors are printed. If it's initially set to a value less
1473 than -1, all such errors will be printed (--verbose does this). */
1475 int overflow_cutoff_limit = 10;
1477 /* This is called when a reloc overflows. */
1480 reloc_overflow (struct bfd_link_info *info ATTRIBUTE_UNUSED,
1481 struct bfd_link_hash_entry *entry,
1483 const char *reloc_name,
1489 if (overflow_cutoff_limit == -1)
1492 einfo ("%X%C:", abfd, section, address);
1494 if (overflow_cutoff_limit >= 0
1495 && overflow_cutoff_limit-- == 0)
1497 einfo (_(" additional relocation overflows omitted from the output\n"));
1503 while (entry->type == bfd_link_hash_indirect
1504 || entry->type == bfd_link_hash_warning)
1505 entry = entry->u.i.link;
1506 switch (entry->type)
1508 case bfd_link_hash_undefined:
1509 case bfd_link_hash_undefweak:
1510 einfo (_(" relocation truncated to fit: %s against undefined symbol `%T'"),
1511 reloc_name, entry->root.string);
1513 case bfd_link_hash_defined:
1514 case bfd_link_hash_defweak:
1515 einfo (_(" relocation truncated to fit: %s against symbol `%T' defined in %A section in %B"),
1516 reloc_name, entry->root.string,
1517 entry->u.def.section,
1518 entry->u.def.section == bfd_abs_section_ptr
1519 ? output_bfd : entry->u.def.section->owner);
1527 einfo (_(" relocation truncated to fit: %s against `%T'"),
1530 einfo ("+%v", addend);
1535 /* This is called when a dangerous relocation is made. */
1538 reloc_dangerous (struct bfd_link_info *info ATTRIBUTE_UNUSED,
1539 const char *message,
1544 einfo (_("%X%C: dangerous relocation: %s\n"),
1545 abfd, section, address, message);
1549 /* This is called when a reloc is being generated attached to a symbol
1550 that is not being output. */
1553 unattached_reloc (struct bfd_link_info *info ATTRIBUTE_UNUSED,
1559 einfo (_("%X%C: reloc refers to symbol `%T' which is not being output\n"),
1560 abfd, section, address, name);
1564 /* This is called if link_info.notice_all is set, or when a symbol in
1565 link_info.notice_hash is found. Symbols are put in notice_hash
1566 using the -y option. */
1569 notice (struct bfd_link_info *info,
1577 if (command_line.cref || nocrossref_list != NULL)
1578 return handle_asneeded_cref (abfd, value);
1582 if (! info->notice_all
1583 || (info->notice_hash != NULL
1584 && bfd_hash_lookup (info->notice_hash, name, FALSE, FALSE) != NULL))
1586 if (bfd_is_und_section (section))
1587 einfo ("%B: reference to %s\n", abfd, name);
1589 einfo ("%B: definition of %s\n", abfd, name);
1592 if (command_line.cref || nocrossref_list != NULL)
1593 add_cref (name, abfd, section, value);