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