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