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