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