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