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