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