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