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