2000-06-05 Michael Matz <matz@ifh.de>
[deliverable/binutils-gdb.git] / ld / ldmain.c
CommitLineData
252b5132 1/* Main program of GNU linker.
5af11cab 2 Copyright (C) 1991, 92, 93, 94, 95, 96, 97, 98, 99, 2000
252b5132
RH
3 Free Software Foundation, Inc.
4 Written by Steve Chamberlain steve@cygnus.com
5
6This file is part of GLD, the Gnu Linker.
7
8GLD is free software; you can redistribute it and/or modify
9it under the terms of the GNU General Public License as published by
10the Free Software Foundation; either version 2, or (at your option)
11any later version.
12
13GLD is distributed in the hope that it will be useful,
14but WITHOUT ANY WARRANTY; without even the implied warranty of
15MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16GNU General Public License for more details.
17
18You should have received a copy of the GNU General Public License
19along with GLD; see the file COPYING. If not, write to the Free
20Software Foundation, 59 Temple Place - Suite 330, Boston, MA
2102111-1307, USA. */
22
23#include "bfd.h"
24#include "sysdep.h"
25#include <stdio.h>
26#include <ctype.h>
27#include "libiberty.h"
28#include "progress.h"
29#include "bfdlink.h"
5af11cab 30#include "filenames.h"
252b5132
RH
31
32#include "ld.h"
33#include "ldmain.h"
34#include "ldmisc.h"
35#include "ldwrite.h"
36#include "ldgram.h"
37#include "ldexp.h"
38#include "ldlang.h"
39#include "ldemul.h"
40#include "ldlex.h"
41#include "ldfile.h"
42#include "ldctor.h"
43
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)
47#endif
48
49#include <string.h>
50
51#ifdef HAVE_SBRK
52#ifdef NEED_DECLARATION_SBRK
53extern PTR sbrk ();
54#endif
55#endif
56
57static char *get_emulation PARAMS ((int, char **));
58static void set_scripts_dir PARAMS ((void));
59
60/* EXPORTS */
61
62char *default_target;
63const char *output_filename = "a.out";
64
65/* Name this program was invoked by. */
66char *program_name;
67
68/* The file that we're creating */
69bfd *output_bfd = 0;
70
71/* Set by -G argument, for MIPS ECOFF target. */
72int g_switch_value = 8;
73
74/* Nonzero means print names of input files as processed. */
75boolean trace_files;
76
77/* Nonzero means same, but note open failures, too. */
78boolean trace_file_tries;
79
80/* Nonzero means version number was printed, so exit successfully
81 instead of complaining if no input files are given. */
82boolean version_printed;
83
84/* Nonzero means link in every member of an archive. */
85boolean whole_archive;
86
87/* True if we should demangle symbol names. */
88boolean demangling;
89
90args_type command_line;
91
92ld_config_type config;
93
94static void remove_output PARAMS ((void));
95static boolean check_for_scripts_dir PARAMS ((char *dir));
96static boolean add_archive_element PARAMS ((struct bfd_link_info *, bfd *,
97 const char *));
98static boolean multiple_definition PARAMS ((struct bfd_link_info *,
99 const char *,
100 bfd *, asection *, bfd_vma,
101 bfd *, asection *, bfd_vma));
102static boolean multiple_common PARAMS ((struct bfd_link_info *,
103 const char *, bfd *,
104 enum bfd_link_hash_type, bfd_vma,
105 bfd *, enum bfd_link_hash_type,
106 bfd_vma));
107static boolean add_to_set PARAMS ((struct bfd_link_info *,
108 struct bfd_link_hash_entry *,
109 bfd_reloc_code_real_type,
110 bfd *, asection *, bfd_vma));
111static boolean constructor_callback PARAMS ((struct bfd_link_info *,
112 boolean constructor,
113 const char *name,
114 bfd *, asection *, bfd_vma));
115static boolean warning_callback PARAMS ((struct bfd_link_info *,
116 const char *, const char *, bfd *,
117 asection *, bfd_vma));
118static void warning_find_reloc PARAMS ((bfd *, asection *, PTR));
119static boolean undefined_symbol PARAMS ((struct bfd_link_info *,
120 const char *, bfd *,
b6f29aaa 121 asection *, bfd_vma, boolean));
252b5132
RH
122static boolean reloc_overflow PARAMS ((struct bfd_link_info *, const char *,
123 const char *, bfd_vma,
124 bfd *, asection *, bfd_vma));
125static boolean reloc_dangerous PARAMS ((struct bfd_link_info *, const char *,
126 bfd *, asection *, bfd_vma));
127static boolean unattached_reloc PARAMS ((struct bfd_link_info *,
128 const char *, bfd *, asection *,
129 bfd_vma));
130static boolean notice PARAMS ((struct bfd_link_info *, const char *,
131 bfd *, asection *, bfd_vma));
132
133static struct bfd_link_callbacks link_callbacks =
134{
135 add_archive_element,
136 multiple_definition,
137 multiple_common,
138 add_to_set,
139 constructor_callback,
140 warning_callback,
141 undefined_symbol,
142 reloc_overflow,
143 reloc_dangerous,
144 unattached_reloc,
145 notice
146};
147
148struct bfd_link_info link_info;
149\f
150static void
151remove_output ()
152{
153 if (output_filename)
154 {
155 if (output_bfd && output_bfd->iostream)
156 fclose((FILE *)(output_bfd->iostream));
157 if (delete_output_file_on_failure)
158 unlink (output_filename);
159 }
160}
161
162int
163main (argc, argv)
164 int argc;
165 char **argv;
166{
167 char *emulation;
168 long start_time = get_run_time ();
169
170#if defined (HAVE_SETLOCALE) && defined (HAVE_LC_MESSAGES)
171 setlocale (LC_MESSAGES, "");
172#endif
173 bindtextdomain (PACKAGE, LOCALEDIR);
174 textdomain (PACKAGE);
175
176 program_name = argv[0];
177 xmalloc_set_program_name (program_name);
178
179 START_PROGRESS (program_name, 0);
180
181 bfd_init ();
182
183 bfd_set_error_program_name (program_name);
184
185 xatexit (remove_output);
186
187 /* Set the default BFD target based on the configured target. Doing
188 this permits the linker to be configured for a particular target,
189 and linked against a shared BFD library which was configured for
190 a different target. The macro TARGET is defined by Makefile. */
191 if (! bfd_set_default_target (TARGET))
192 {
193 einfo (_("%X%P: can't set BFD default target to `%s': %E\n"), TARGET);
194 xexit (1);
195 }
196
197 /* Initialize the data about options. */
198 trace_files = trace_file_tries = version_printed = false;
199 whole_archive = false;
200 config.build_constructors = true;
201 config.dynamic_link = false;
202 config.has_shared = false;
203 command_line.force_common_definition = false;
204 command_line.interpreter = NULL;
205 command_line.rpath = NULL;
206 command_line.warn_mismatch = true;
207 command_line.check_section_addresses = true;
208
209 /* We initialize DEMANGLING based on the environment variable
210 COLLECT_NO_DEMANGLE. The gcc collect2 program will demangle the
211 output of the linker, unless COLLECT_NO_DEMANGLE is set in the
212 environment. Acting the same way here lets us provide the same
213 interface by default. */
214 demangling = getenv ("COLLECT_NO_DEMANGLE") == NULL;
215
216 link_info.callbacks = &link_callbacks;
217 link_info.relocateable = false;
a712da20 218 link_info.emitrelocations = false;
252b5132
RH
219 link_info.shared = false;
220 link_info.symbolic = false;
221 link_info.static_link = false;
222 link_info.traditional_format = false;
223 link_info.optimize = false;
224 link_info.no_undefined = false;
225 link_info.strip = strip_none;
226 link_info.discard = discard_none;
227 link_info.keep_memory = true;
228 link_info.input_bfds = NULL;
229 link_info.create_object_symbols_section = NULL;
230 link_info.hash = NULL;
231 link_info.keep_hash = NULL;
232 link_info.notice_all = false;
233 link_info.notice_hash = NULL;
234 link_info.wrap_hash = NULL;
235 link_info.mpc860c0 = 0;
3dbf70a2
MM
236 /* SVR4 linkers seem to set DT_INIT and DT_FINI based on magic _init
237 and _fini symbols. We are compatible. */
238 link_info.init_function = "_init";
239 link_info.fini_function = "_fini";
240
252b5132
RH
241 ldfile_add_arch ("");
242
243 config.make_executable = true;
244 force_make_executable = false;
245 config.magic_demand_paged = true;
246 config.text_read_only = true;
247 config.make_executable = true;
248
249 emulation = get_emulation (argc, argv);
250 ldemul_choose_mode (emulation);
251 default_target = ldemul_choose_target ();
252 lang_init ();
253 ldemul_before_parse ();
254 lang_has_input_file = false;
255 parse_args (argc, argv);
256
257 ldemul_set_symbols ();
258
259 if (link_info.relocateable)
260 {
261 if (command_line.gc_sections)
262 einfo ("%P%F: --gc-sections and -r may not be used together\n");
263 if (link_info.mpc860c0)
264 einfo (_("%P%F: -r and --mpc860c0 may not be used together\n"));
265 else if (command_line.relax)
266 einfo (_("%P%F: --relax and -r may not be used together\n"));
267 if (link_info.shared)
268 einfo (_("%P%F: -r and -shared may not be used together\n"));
269 }
270
271 /* Treat ld -r -s as ld -r -S -x (i.e., strip all local symbols). I
272 don't see how else this can be handled, since in this case we
273 must preserve all externally visible symbols. */
274 if (link_info.relocateable && link_info.strip == strip_all)
275 {
276 link_info.strip = strip_debugger;
277 if (link_info.discard == discard_none)
278 link_info.discard = discard_all;
279 }
280
281 /* This essentially adds another -L directory so this must be done after
282 the -L's in argv have been processed. */
283 set_scripts_dir ();
284
285 if (had_script == false)
286 {
287 /* Read the emulation's appropriate default script. */
288 int isfile;
289 char *s = ldemul_get_script (&isfile);
290
291 if (isfile)
292 ldfile_open_command_file (s);
293 else
294 {
295 if (trace_file_tries)
296 {
297 info_msg (_("using internal linker script:\n"));
298 info_msg ("==================================================\n");
299 info_msg (s);
300 info_msg ("\n==================================================\n");
301 }
302 lex_string = s;
303 lex_redirect (s);
304 }
305 parser_input = input_script;
306 yyparse ();
307 lex_string = NULL;
308 }
309
310 lang_final ();
311
312 if (lang_has_input_file == false)
313 {
314 if (version_printed)
315 xexit (0);
316 einfo (_("%P%F: no input files\n"));
317 }
318
319 if (trace_files)
320 {
321 info_msg (_("%P: mode %s\n"), emulation);
322 }
323
324 ldemul_after_parse ();
325
326
327 if (config.map_filename)
328 {
329 if (strcmp (config.map_filename, "-") == 0)
330 {
331 config.map_file = stdout;
332 }
333 else
334 {
335 config.map_file = fopen (config.map_filename, FOPEN_WT);
336 if (config.map_file == (FILE *) NULL)
337 {
338 bfd_set_error (bfd_error_system_call);
339 einfo (_("%P%F: cannot open map file %s: %E\n"),
340 config.map_filename);
341 }
342 }
343 }
344
345
346 lang_process ();
347
348 /* Print error messages for any missing symbols, for any warning
349 symbols, and possibly multiple definitions */
350
1f0df59a
NC
351 /* Look for a text section and switch the readonly attribute in it. */
352 {
353 asection * found = bfd_get_section_by_name (output_bfd, ".text");
354
355 if (found != (asection *) NULL)
356 {
357 if (config.text_read_only)
252b5132 358 found->flags |= SEC_READONLY;
1f0df59a
NC
359 else
360 found->flags &= ~SEC_READONLY;
361 }
362 }
252b5132
RH
363
364 if (link_info.relocateable)
365 output_bfd->flags &= ~EXEC_P;
366 else
367 output_bfd->flags |= EXEC_P;
368
369 ldwrite ();
370
371 if (config.map_file != NULL)
372 lang_map ();
373 if (command_line.cref)
374 output_cref (config.map_file != NULL ? config.map_file : stdout);
375 if (nocrossref_list != NULL)
376 check_nocrossrefs ();
377
378 /* Even if we're producing relocateable output, some non-fatal errors should
379 be reported in the exit status. (What non-fatal errors, if any, do we
380 want to ignore for relocateable output?) */
381
382 if (config.make_executable == false && force_make_executable == false)
383 {
384 if (trace_files == true)
385 {
386 einfo (_("%P: link errors found, deleting executable `%s'\n"),
387 output_filename);
388 }
389
390 /* The file will be removed by remove_output. */
391
392 xexit (1);
393 }
394 else
395 {
396 if (! bfd_close (output_bfd))
397 einfo (_("%F%B: final close failed: %E\n"), output_bfd);
398
399 /* If the --force-exe-suffix is enabled, and we're making an
400 executable file and it doesn't end in .exe, copy it to one which does. */
401
402 if (! link_info.relocateable && command_line.force_exe_suffix)
403 {
404 int len = strlen (output_filename);
405 if (len < 4
406 || (strcasecmp (output_filename + len - 4, ".exe") != 0
407 && strcasecmp (output_filename + len - 4, ".dll") != 0))
408 {
409 FILE *src;
410 FILE *dst;
411 const int bsize = 4096;
412 char *buf = xmalloc (bsize);
413 int l;
414 char *dst_name = xmalloc (len + 5);
415 strcpy (dst_name, output_filename);
416 strcat (dst_name, ".exe");
417 src = fopen (output_filename, FOPEN_RB);
418 dst = fopen (dst_name, FOPEN_WB);
419
420 if (!src)
421 einfo (_("%X%P: unable to open for source of copy `%s'\n"), output_filename);
422 if (!dst)
423 einfo (_("%X%P: unable to open for destination of copy `%s'\n"), dst_name);
424 while ((l = fread (buf, 1, bsize, src)) > 0)
425 {
426 int done = fwrite (buf, 1, l, dst);
427 if (done != l)
428 {
429 einfo (_("%P: Error writing file `%s'\n"), dst_name);
430 }
431 }
432 fclose (src);
433 if (fclose (dst) == EOF)
434 {
435 einfo (_("%P: Error closing file `%s'\n"), dst_name);
436 }
437 free (dst_name);
438 free (buf);
439 }
440 }
441 }
442
443 END_PROGRESS (program_name);
444
445 if (config.stats)
446 {
447#ifdef HAVE_SBRK
448 char *lim = (char *) sbrk (0);
449#endif
450 long run_time = get_run_time () - start_time;
451
452 fprintf (stderr, _("%s: total time in link: %ld.%06ld\n"),
453 program_name, run_time / 1000000, run_time % 1000000);
454#ifdef HAVE_SBRK
455 fprintf (stderr, _("%s: data size %ld\n"), program_name,
456 (long) (lim - (char *) &environ));
457#endif
458 }
459
460 /* Prevent remove_output from doing anything, after a successful link. */
461 output_filename = NULL;
462
463 xexit (0);
464 return 0;
465}
466
467/* We need to find any explicitly given emulation in order to initialize the
468 state that's needed by the lex&yacc argument parser (parse_args). */
469
470static char *
471get_emulation (argc, argv)
472 int argc;
473 char **argv;
474{
475 char *emulation;
476 int i;
477
478 emulation = getenv (EMULATION_ENVIRON);
479 if (emulation == NULL)
480 emulation = DEFAULT_EMULATION;
481
482 for (i = 1; i < argc; i++)
483 {
484 if (!strncmp (argv[i], "-m", 2))
485 {
486 if (argv[i][2] == '\0')
487 {
488 /* -m EMUL */
489 if (i < argc - 1)
490 {
491 emulation = argv[i + 1];
492 i++;
493 }
494 else
495 {
496 einfo(_("%P%F: missing argument to -m\n"));
497 }
498 }
499 else if (strcmp (argv[i], "-mips1") == 0
500 || strcmp (argv[i], "-mips2") == 0
501 || strcmp (argv[i], "-mips3") == 0
502 || strcmp (argv[i], "-mips4") == 0)
503 {
504 /* FIXME: The arguments -mips1, -mips2 and -mips3 are
505 passed to the linker by some MIPS compilers. They
506 generally tell the linker to use a slightly different
507 library path. Perhaps someday these should be
508 implemented as emulations; until then, we just ignore
509 the arguments and hope that nobody ever creates
510 emulations named ips1, ips2 or ips3. */
511 }
512 else if (strcmp (argv[i], "-m486") == 0)
513 {
514 /* FIXME: The argument -m486 is passed to the linker on
515 some Linux systems. Hope that nobody creates an
516 emulation named 486. */
517 }
518 else
519 {
520 /* -mEMUL */
521 emulation = &argv[i][2];
522 }
523 }
524 }
525
526 return emulation;
527}
528
529/* If directory DIR contains an "ldscripts" subdirectory,
530 add DIR to the library search path and return true,
531 else return false. */
532
533static boolean
534check_for_scripts_dir (dir)
535 char *dir;
536{
537 size_t dirlen;
538 char *buf;
539 struct stat s;
540 boolean res;
541
542 dirlen = strlen (dir);
543 /* sizeof counts the terminating NUL. */
544 buf = (char *) xmalloc (dirlen + sizeof("/ldscripts"));
545 sprintf (buf, "%s/ldscripts", dir);
546
547 res = stat (buf, &s) == 0 && S_ISDIR (s.st_mode);
548 free (buf);
549 if (res)
550 ldfile_add_library_path (dir, false);
551 return res;
552}
553
554/* Set the default directory for finding script files.
555 Libraries will be searched for here too, but that's ok.
556 We look for the "ldscripts" directory in:
557
558 SCRIPTDIR (passed from Makefile)
559 the dir where this program is (for using it from the build tree)
560 the dir where this program is/../lib (for installing the tool suite elsewhere) */
561
562static void
563set_scripts_dir ()
564{
565 char *end, *dir;
566 size_t dirlen;
567
568 if (check_for_scripts_dir (SCRIPTDIR))
569 return; /* We've been installed normally. */
570
571 /* Look for "ldscripts" in the dir where our binary is. */
572 end = strrchr (program_name, '/');
5af11cab
AM
573#ifdef HAVE_DOS_BASED_FILE_SYSTEM
574 {
575 /* We could have \foo\bar, or /foo\bar. */
576 char *bslash = strrchr (program_name, '\\');
577 if (bslash > end)
578 end = bslash;
579 }
580#endif
252b5132
RH
581
582 if (end == NULL)
583 {
584 /* Don't look for ldscripts in the current directory. There is
585 too much potential for confusion. */
586 return;
587 }
588
589 dirlen = end - program_name;
590 /* Make a copy of program_name in dir.
591 Leave room for later "/../lib". */
592 dir = (char *) xmalloc (dirlen + 8);
593 strncpy (dir, program_name, dirlen);
594 dir[dirlen] = '\0';
595
596 if (check_for_scripts_dir (dir))
597 return; /* Don't free dir. */
598
599 /* Look for "ldscripts" in <the dir where our binary is>/../lib. */
600 strcpy (dir + dirlen, "/../lib");
601 if (check_for_scripts_dir (dir))
602 return;
603
604 free (dir); /* Well, we tried. */
605}
606
607void
608add_ysym (name)
609 const char *name;
610{
611 if (link_info.notice_hash == (struct bfd_hash_table *) NULL)
612 {
613 link_info.notice_hash = ((struct bfd_hash_table *)
614 xmalloc (sizeof (struct bfd_hash_table)));
615 if (! bfd_hash_table_init_n (link_info.notice_hash,
616 bfd_hash_newfunc,
617 61))
618 einfo (_("%P%F: bfd_hash_table_init failed: %E\n"));
619 }
620
621 if (bfd_hash_lookup (link_info.notice_hash, name, true, true)
622 == (struct bfd_hash_entry *) NULL)
623 einfo (_("%P%F: bfd_hash_lookup failed: %E\n"));
624}
625
626/* Record a symbol to be wrapped, from the --wrap option. */
627
628void
629add_wrap (name)
630 const char *name;
631{
632 if (link_info.wrap_hash == NULL)
633 {
634 link_info.wrap_hash = ((struct bfd_hash_table *)
635 xmalloc (sizeof (struct bfd_hash_table)));
636 if (! bfd_hash_table_init_n (link_info.wrap_hash,
637 bfd_hash_newfunc,
638 61))
639 einfo (_("%P%F: bfd_hash_table_init failed: %E\n"));
640 }
641 if (bfd_hash_lookup (link_info.wrap_hash, name, true, true) == NULL)
642 einfo (_("%P%F: bfd_hash_lookup failed: %E\n"));
643}
644
645/* Handle the -retain-symbols-file option. */
646
647void
648add_keepsyms_file (filename)
649 const char *filename;
650{
651 FILE *file;
652 char *buf;
653 size_t bufsize;
654 int c;
655
656 if (link_info.strip == strip_some)
657 einfo (_("%X%P: error: duplicate retain-symbols-file\n"));
658
659 file = fopen (filename, "r");
660 if (file == (FILE *) NULL)
661 {
662 bfd_set_error (bfd_error_system_call);
663 einfo ("%X%P: %s: %E\n", filename);
664 return;
665 }
666
667 link_info.keep_hash = ((struct bfd_hash_table *)
668 xmalloc (sizeof (struct bfd_hash_table)));
669 if (! bfd_hash_table_init (link_info.keep_hash, bfd_hash_newfunc))
670 einfo (_("%P%F: bfd_hash_table_init failed: %E\n"));
671
672 bufsize = 100;
673 buf = (char *) xmalloc (bufsize);
674
675 c = getc (file);
676 while (c != EOF)
677 {
678 while (isspace (c))
679 c = getc (file);
680
681 if (c != EOF)
682 {
683 size_t len = 0;
684
685 while (! isspace (c) && c != EOF)
686 {
687 buf[len] = c;
688 ++len;
689 if (len >= bufsize)
690 {
691 bufsize *= 2;
692 buf = xrealloc (buf, bufsize);
693 }
694 c = getc (file);
695 }
696
697 buf[len] = '\0';
698
699 if (bfd_hash_lookup (link_info.keep_hash, buf, true, true)
700 == (struct bfd_hash_entry *) NULL)
701 einfo (_("%P%F: bfd_hash_lookup for insertion failed: %E\n"));
702 }
703 }
704
705 if (link_info.strip != strip_none)
706 einfo (_("%P: `-retain-symbols-file' overrides `-s' and `-S'\n"));
707
708 link_info.strip = strip_some;
709}
710\f
711/* Callbacks from the BFD linker routines. */
712
713/* This is called when BFD has decided to include an archive member in
714 a link. */
715
716/*ARGSUSED*/
717static boolean
718add_archive_element (info, abfd, name)
87f2a346 719 struct bfd_link_info *info ATTRIBUTE_UNUSED;
252b5132
RH
720 bfd *abfd;
721 const char *name;
722{
723 lang_input_statement_type *input;
724
725 input = ((lang_input_statement_type *)
726 xmalloc (sizeof (lang_input_statement_type)));
727 input->filename = abfd->filename;
728 input->local_sym_name = abfd->filename;
729 input->the_bfd = abfd;
730 input->asymbols = NULL;
731 input->next = NULL;
732 input->just_syms_flag = false;
733 input->loaded = false;
734 input->search_dirs_flag = false;
735
736 /* FIXME: The following fields are not set: header.next,
737 header.type, closed, passive_position, symbol_count,
738 next_real_file, is_archive, target, real. This bit of code is
739 from the old decode_library_subfile function. I don't know
740 whether any of those fields matters. */
741
742 ldlang_add_file (input);
743
744 if (config.map_file != (FILE *) NULL)
745 {
746 static boolean header_printed;
747 struct bfd_link_hash_entry *h;
748 bfd *from;
749 int len;
750
751 h = bfd_link_hash_lookup (link_info.hash, name, false, false, true);
752
753 if (h == NULL)
754 from = NULL;
755 else
756 {
757 switch (h->type)
758 {
759 default:
760 from = NULL;
761 break;
762
763 case bfd_link_hash_defined:
764 case bfd_link_hash_defweak:
765 from = h->u.def.section->owner;
766 break;
767
768 case bfd_link_hash_undefined:
769 case bfd_link_hash_undefweak:
770 from = h->u.undef.abfd;
771 break;
772
773 case bfd_link_hash_common:
774 from = h->u.c.p->section->owner;
775 break;
776 }
777 }
778
779 if (! header_printed)
780 {
781 char buf[100];
782
783 sprintf (buf, "%-29s %s\n\n", _("Archive member included"),
784 _("because of file (symbol)"));
785 minfo ("%s", buf);
786 header_printed = true;
787 }
788
789 if (bfd_my_archive (abfd) == NULL)
790 {
791 minfo ("%s", bfd_get_filename (abfd));
792 len = strlen (bfd_get_filename (abfd));
793 }
794 else
795 {
796 minfo ("%s(%s)", bfd_get_filename (bfd_my_archive (abfd)),
797 bfd_get_filename (abfd));
798 len = (strlen (bfd_get_filename (bfd_my_archive (abfd)))
799 + strlen (bfd_get_filename (abfd))
800 + 2);
801 }
802
803 if (len >= 29)
804 {
805 print_nl ();
806 len = 0;
807 }
808 while (len < 30)
809 {
810 print_space ();
811 ++len;
812 }
813
814 if (from != NULL)
815 minfo ("%B ", from);
816 if (h != NULL)
817 minfo ("(%T)\n", h->root.string);
818 else
819 minfo ("(%s)\n", name);
820 }
821
822 if (trace_files || trace_file_tries)
823 info_msg ("%I\n", input);
824
825 return true;
826}
827
828/* This is called when BFD has discovered a symbol which is defined
829 multiple times. */
830
831/*ARGSUSED*/
832static boolean
833multiple_definition (info, name, obfd, osec, oval, nbfd, nsec, nval)
87f2a346 834 struct bfd_link_info *info ATTRIBUTE_UNUSED;
252b5132
RH
835 const char *name;
836 bfd *obfd;
837 asection *osec;
838 bfd_vma oval;
839 bfd *nbfd;
840 asection *nsec;
841 bfd_vma nval;
842{
843 /* If either section has the output_section field set to
844 bfd_abs_section_ptr, it means that the section is being
845 discarded, and this is not really a multiple definition at all.
846 FIXME: It would be cleaner to somehow ignore symbols defined in
847 sections which are being discarded. */
848 if ((osec->output_section != NULL
849 && ! bfd_is_abs_section (osec)
850 && bfd_is_abs_section (osec->output_section))
851 || (nsec->output_section != NULL
852 && ! bfd_is_abs_section (nsec)
853 && bfd_is_abs_section (nsec->output_section)))
854 return true;
855
856 einfo (_("%X%C: multiple definition of `%T'\n"),
857 nbfd, nsec, nval, name);
858 if (obfd != (bfd *) NULL)
859 einfo (_("%D: first defined here\n"), obfd, osec, oval);
860 return true;
861}
862
863/* This is called when there is a definition of a common symbol, or
864 when a common symbol is found for a symbol that is already defined,
865 or when two common symbols are found. We only do something if
866 -warn-common was used. */
867
868/*ARGSUSED*/
869static boolean
870multiple_common (info, name, obfd, otype, osize, nbfd, ntype, nsize)
87f2a346 871 struct bfd_link_info *info ATTRIBUTE_UNUSED;
252b5132
RH
872 const char *name;
873 bfd *obfd;
874 enum bfd_link_hash_type otype;
875 bfd_vma osize;
876 bfd *nbfd;
877 enum bfd_link_hash_type ntype;
878 bfd_vma nsize;
879{
880 if (! config.warn_common)
881 return true;
882
883 if (ntype == bfd_link_hash_defined
884 || ntype == bfd_link_hash_defweak
885 || ntype == bfd_link_hash_indirect)
886 {
887 ASSERT (otype == bfd_link_hash_common);
888 einfo (_("%B: warning: definition of `%T' overriding common\n"),
889 nbfd, name);
890 if (obfd != NULL)
891 einfo (_("%B: warning: common is here\n"), obfd);
892 }
893 else if (otype == bfd_link_hash_defined
894 || otype == bfd_link_hash_defweak
895 || otype == bfd_link_hash_indirect)
896 {
897 ASSERT (ntype == bfd_link_hash_common);
898 einfo (_("%B: warning: common of `%T' overridden by definition\n"),
899 nbfd, name);
900 if (obfd != NULL)
901 einfo (_("%B: warning: defined here\n"), obfd);
902 }
903 else
904 {
905 ASSERT (otype == bfd_link_hash_common && ntype == bfd_link_hash_common);
906 if (osize > nsize)
907 {
908 einfo (_("%B: warning: common of `%T' overridden by larger common\n"),
909 nbfd, name);
910 if (obfd != NULL)
911 einfo (_("%B: warning: larger common is here\n"), obfd);
912 }
913 else if (nsize > osize)
914 {
915 einfo (_("%B: warning: common of `%T' overriding smaller common\n"),
916 nbfd, name);
917 if (obfd != NULL)
918 einfo (_("%B: warning: smaller common is here\n"), obfd);
919 }
920 else
921 {
922 einfo (_("%B: warning: multiple common of `%T'\n"), nbfd, name);
923 if (obfd != NULL)
924 einfo (_("%B: warning: previous common is here\n"), obfd);
925 }
926 }
927
928 return true;
929}
930
931/* This is called when BFD has discovered a set element. H is the
932 entry in the linker hash table for the set. SECTION and VALUE
933 represent a value which should be added to the set. */
934
935/*ARGSUSED*/
936static boolean
937add_to_set (info, h, reloc, abfd, section, value)
87f2a346 938 struct bfd_link_info *info ATTRIBUTE_UNUSED;
252b5132
RH
939 struct bfd_link_hash_entry *h;
940 bfd_reloc_code_real_type reloc;
941 bfd *abfd;
942 asection *section;
943 bfd_vma value;
944{
945 if (config.warn_constructors)
946 einfo (_("%P: warning: global constructor %s used\n"),
947 h->root.string);
948
949 if (! config.build_constructors)
950 return true;
951
952 ldctor_add_set_entry (h, reloc, (const char *) NULL, section, value);
953
954 if (h->type == bfd_link_hash_new)
955 {
956 h->type = bfd_link_hash_undefined;
957 h->u.undef.abfd = abfd;
958 /* We don't call bfd_link_add_undef to add this to the list of
959 undefined symbols because we are going to define it
960 ourselves. */
961 }
962
963 return true;
964}
965
966/* This is called when BFD has discovered a constructor. This is only
967 called for some object file formats--those which do not handle
968 constructors in some more clever fashion. This is similar to
969 adding an element to a set, but less general. */
970
971static boolean
972constructor_callback (info, constructor, name, abfd, section, value)
973 struct bfd_link_info *info;
974 boolean constructor;
975 const char *name;
976 bfd *abfd;
977 asection *section;
978 bfd_vma value;
979{
980 char *s;
981 struct bfd_link_hash_entry *h;
982 char set_name[1 + sizeof "__CTOR_LIST__"];
983
984 if (config.warn_constructors)
985 einfo (_("%P: warning: global constructor %s used\n"), name);
986
987 if (! config.build_constructors)
988 return true;
989
990 /* Ensure that BFD_RELOC_CTOR exists now, so that we can give a
991 useful error message. */
992 if (bfd_reloc_type_lookup (output_bfd, BFD_RELOC_CTOR) == NULL
993 && (link_info.relocateable
994 || bfd_reloc_type_lookup (abfd, BFD_RELOC_CTOR) == NULL))
995 einfo (_("%P%F: BFD backend error: BFD_RELOC_CTOR unsupported\n"));
996
997 s = set_name;
998 if (bfd_get_symbol_leading_char (abfd) != '\0')
999 *s++ = bfd_get_symbol_leading_char (abfd);
1000 if (constructor)
1001 strcpy (s, "__CTOR_LIST__");
1002 else
1003 strcpy (s, "__DTOR_LIST__");
1004
1005 h = bfd_link_hash_lookup (info->hash, set_name, true, true, true);
1006 if (h == (struct bfd_link_hash_entry *) NULL)
1007 einfo (_("%P%F: bfd_link_hash_lookup failed: %E\n"));
1008 if (h->type == bfd_link_hash_new)
1009 {
1010 h->type = bfd_link_hash_undefined;
1011 h->u.undef.abfd = abfd;
1012 /* We don't call bfd_link_add_undef to add this to the list of
1013 undefined symbols because we are going to define it
1014 ourselves. */
1015 }
1016
1017 ldctor_add_set_entry (h, BFD_RELOC_CTOR, name, section, value);
1018 return true;
1019}
1020
1021/* A structure used by warning_callback to pass information through
1022 bfd_map_over_sections. */
1023
1024struct warning_callback_info
1025{
1026 boolean found;
1027 const char *warning;
1028 const char *symbol;
1029 asymbol **asymbols;
1030};
1031
1032/* This is called when there is a reference to a warning symbol. */
1033
1034/*ARGSUSED*/
1035static boolean
1036warning_callback (info, warning, symbol, abfd, section, address)
87f2a346 1037 struct bfd_link_info *info ATTRIBUTE_UNUSED;
252b5132
RH
1038 const char *warning;
1039 const char *symbol;
1040 bfd *abfd;
1041 asection *section;
1042 bfd_vma address;
1043{
1044 /* This is a hack to support warn_multiple_gp. FIXME: This should
1045 have a cleaner interface, but what? */
1046 if (! config.warn_multiple_gp
1047 && strcmp (warning, "using multiple gp values") == 0)
1048 return true;
1049
1050 if (section != NULL)
1051 einfo ("%C: %s\n", abfd, section, address, warning);
1052 else if (abfd == NULL)
1053 einfo ("%P: %s\n", warning);
1054 else if (symbol == NULL)
1055 einfo ("%B: %s\n", abfd, warning);
1056 else
1057 {
1058 lang_input_statement_type *entry;
1059 asymbol **asymbols;
1060 struct warning_callback_info info;
1061
1062 /* Look through the relocs to see if we can find a plausible
1063 address. */
1064
1065 entry = (lang_input_statement_type *) abfd->usrdata;
1066 if (entry != NULL && entry->asymbols != NULL)
1067 asymbols = entry->asymbols;
1068 else
1069 {
1070 long symsize;
1071 long symbol_count;
1072
1073 symsize = bfd_get_symtab_upper_bound (abfd);
1074 if (symsize < 0)
1075 einfo (_("%B%F: could not read symbols: %E\n"), abfd);
1076 asymbols = (asymbol **) xmalloc (symsize);
1077 symbol_count = bfd_canonicalize_symtab (abfd, asymbols);
1078 if (symbol_count < 0)
1079 einfo (_("%B%F: could not read symbols: %E\n"), abfd);
1080 if (entry != NULL)
1081 {
1082 entry->asymbols = asymbols;
1083 entry->symbol_count = symbol_count;
1084 }
1085 }
1086
1087 info.found = false;
1088 info.warning = warning;
1089 info.symbol = symbol;
1090 info.asymbols = asymbols;
1091 bfd_map_over_sections (abfd, warning_find_reloc, (PTR) &info);
1092
1093 if (! info.found)
1094 einfo ("%B: %s\n", abfd, warning);
1095
1096 if (entry == NULL)
1097 free (asymbols);
1098 }
1099
1100 return true;
1101}
1102
1103/* This is called by warning_callback for each section. It checks the
1104 relocs of the section to see if it can find a reference to the
1105 symbol which triggered the warning. If it can, it uses the reloc
1106 to give an error message with a file and line number. */
1107
1108static void
1109warning_find_reloc (abfd, sec, iarg)
1110 bfd *abfd;
1111 asection *sec;
1112 PTR iarg;
1113{
1114 struct warning_callback_info *info = (struct warning_callback_info *) iarg;
1115 long relsize;
1116 arelent **relpp;
1117 long relcount;
1118 arelent **p, **pend;
1119
1120 if (info->found)
1121 return;
1122
1123 relsize = bfd_get_reloc_upper_bound (abfd, sec);
1124 if (relsize < 0)
1125 einfo (_("%B%F: could not read relocs: %E\n"), abfd);
1126 if (relsize == 0)
1127 return;
1128
1129 relpp = (arelent **) xmalloc (relsize);
1130 relcount = bfd_canonicalize_reloc (abfd, sec, relpp, info->asymbols);
1131 if (relcount < 0)
1132 einfo (_("%B%F: could not read relocs: %E\n"), abfd);
1133
1134 p = relpp;
1135 pend = p + relcount;
1136 for (; p < pend && *p != NULL; p++)
1137 {
1138 arelent *q = *p;
1139
1140 if (q->sym_ptr_ptr != NULL
1141 && *q->sym_ptr_ptr != NULL
1142 && strcmp (bfd_asymbol_name (*q->sym_ptr_ptr), info->symbol) == 0)
1143 {
1144 /* We found a reloc for the symbol we are looking for. */
1145 einfo ("%C: %s\n", abfd, sec, q->address, info->warning);
1146 info->found = true;
1147 break;
1148 }
1149 }
1150
1151 free (relpp);
1152}
1153
1154/* This is called when an undefined symbol is found. */
1155
1156/*ARGSUSED*/
1157static boolean
b6f29aaa 1158undefined_symbol (info, name, abfd, section, address, fatal)
87f2a346 1159 struct bfd_link_info *info ATTRIBUTE_UNUSED;
252b5132
RH
1160 const char *name;
1161 bfd *abfd;
1162 asection *section;
1163 bfd_vma address;
a712da20 1164 boolean fatal ATTRIBUTE_UNUSED;
252b5132
RH
1165{
1166 static char *error_name;
1167 static unsigned int error_count;
1168
1169#define MAX_ERRORS_IN_A_ROW 5
1170
1171 if (config.warn_once)
1172 {
1173 static struct bfd_hash_table *hash;
1174
1175 /* Only warn once about a particular undefined symbol. */
1176
1177 if (hash == NULL)
1178 {
1179 hash = ((struct bfd_hash_table *)
1180 xmalloc (sizeof (struct bfd_hash_table)));
1181 if (! bfd_hash_table_init (hash, bfd_hash_newfunc))
1182 einfo (_("%F%P: bfd_hash_table_init failed: %E\n"));
1183 }
1184
1185 if (bfd_hash_lookup (hash, name, false, false) != NULL)
1186 return true;
1187
1188 if (bfd_hash_lookup (hash, name, true, true) == NULL)
1189 einfo (_("%F%P: bfd_hash_lookup failed: %E\n"));
1190 }
1191
1192 /* We never print more than a reasonable number of errors in a row
1193 for a single symbol. */
1194 if (error_name != (char *) NULL
1195 && strcmp (name, error_name) == 0)
1196 ++error_count;
1197 else
1198 {
1199 error_count = 0;
1200 if (error_name != (char *) NULL)
1201 free (error_name);
1202 error_name = buystring (name);
1203 }
1204
1205 if (section != NULL)
1206 {
1207 if (error_count < MAX_ERRORS_IN_A_ROW)
b6f29aaa
L
1208 {
1209 einfo (_("%C: undefined reference to `%T'\n"),
1210 abfd, section, address, name);
1211 if (fatal)
1212 einfo ("%X");
1213 }
252b5132
RH
1214 else if (error_count == MAX_ERRORS_IN_A_ROW)
1215 einfo (_("%D: more undefined references to `%T' follow\n"),
1216 abfd, section, address, name);
1217 }
1218 else
1219 {
1220 if (error_count < MAX_ERRORS_IN_A_ROW)
b6f29aaa
L
1221 {
1222 einfo (_("%B: undefined reference to `%T'\n"),
1223 abfd, name);
1224 if (fatal)
1225 einfo ("%X");
1226 }
252b5132
RH
1227 else if (error_count == MAX_ERRORS_IN_A_ROW)
1228 einfo (_("%B: more undefined references to `%T' follow\n"),
1229 abfd, name);
1230 }
1231
1232 return true;
1233}
1234
1235/* This is called when a reloc overflows. */
1236
1237/*ARGSUSED*/
1238static boolean
1239reloc_overflow (info, name, reloc_name, addend, abfd, section, address)
87f2a346 1240 struct bfd_link_info *info ATTRIBUTE_UNUSED;
252b5132
RH
1241 const char *name;
1242 const char *reloc_name;
1243 bfd_vma addend;
1244 bfd *abfd;
1245 asection *section;
1246 bfd_vma address;
1247{
1248 if (abfd == (bfd *) NULL)
1249 einfo (_("%P%X: generated"));
1250 else
1251 einfo ("%X%C:", abfd, section, address);
1252 einfo (_(" relocation truncated to fit: %s %T"), reloc_name, name);
1253 if (addend != 0)
1254 einfo ("+%v", addend);
1255 einfo ("\n");
1256 return true;
1257}
1258
1259/* This is called when a dangerous relocation is made. */
1260
1261/*ARGSUSED*/
1262static boolean
1263reloc_dangerous (info, message, abfd, section, address)
87f2a346 1264 struct bfd_link_info *info ATTRIBUTE_UNUSED;
252b5132
RH
1265 const char *message;
1266 bfd *abfd;
1267 asection *section;
1268 bfd_vma address;
1269{
1270 if (abfd == (bfd *) NULL)
1271 einfo (_("%P%X: generated"));
1272 else
1273 einfo ("%X%C:", abfd, section, address);
1274 einfo (_("dangerous relocation: %s\n"), message);
1275 return true;
1276}
1277
1278/* This is called when a reloc is being generated attached to a symbol
1279 that is not being output. */
1280
1281/*ARGSUSED*/
1282static boolean
1283unattached_reloc (info, name, abfd, section, address)
87f2a346 1284 struct bfd_link_info *info ATTRIBUTE_UNUSED;
252b5132
RH
1285 const char *name;
1286 bfd *abfd;
1287 asection *section;
1288 bfd_vma address;
1289{
1290 if (abfd == (bfd *) NULL)
1291 einfo (_("%P%X: generated"));
1292 else
1293 einfo ("%X%C:", abfd, section, address);
1294 einfo (_(" reloc refers to symbol `%T' which is not being output\n"), name);
1295 return true;
1296}
1297
1298/* This is called if link_info.notice_all is set, or when a symbol in
1299 link_info.notice_hash is found. Symbols are put in notice_hash
1300 using the -y option. */
1301
1302static boolean
1303notice (info, name, abfd, section, value)
1304 struct bfd_link_info *info;
1305 const char *name;
1306 bfd *abfd;
1307 asection *section;
1308 bfd_vma value;
1309{
1310 if (! info->notice_all
1311 || (info->notice_hash != NULL
1312 && bfd_hash_lookup (info->notice_hash, name, false, false) != NULL))
1313 {
1314 if (bfd_is_und_section (section))
1315 einfo ("%B: reference to %s\n", abfd, name);
1316 else
1317 einfo ("%B: definition of %s\n", abfd, name);
1318 }
1319
1320 if (command_line.cref || nocrossref_list != NULL)
1321 add_cref (name, abfd, section, value);
1322
1323 return true;
1324}
This page took 0.09249 seconds and 4 git commands to generate.