Make setthetime() static per the prototype.
[dragonfly.git] / contrib / binutils-2.14 / bfd / bfd.c
1 /* Generic BFD library interface and support routines.
2    Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
3    2000, 2001, 2002, 2003
4    Free Software Foundation, Inc.
5    Written by Cygnus Support.
6
7    This file is part of BFD, the Binary File Descriptor library.
8
9    This program 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 of the License, or
12    (at your option) any later version.
13
14    This program 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 this program; if not, write to the Free Software
21    Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
22
23 /*
24 SECTION
25         <<typedef bfd>>
26
27         A BFD has type <<bfd>>; objects of this type are the
28         cornerstone of any application using BFD. Using BFD
29         consists of making references though the BFD and to data in the BFD.
30
31         Here is the structure that defines the type <<bfd>>.  It
32         contains the major data about the file and pointers
33         to the rest of the data.
34
35 CODE_FRAGMENT
36 .
37 .struct bfd
38 .{
39 .  {* A unique identifier of the BFD  *}
40 .  unsigned int id;
41 .
42 .  {* The filename the application opened the BFD with.  *}
43 .  const char *filename;
44 .
45 .  {* A pointer to the target jump table.  *}
46 .  const struct bfd_target *xvec;
47 .
48 .  {* To avoid dragging too many header files into every file that
49 .     includes `<<bfd.h>>', IOSTREAM has been declared as a "char *",
50 .     and MTIME as a "long".  Their correct types, to which they
51 .     are cast when used, are "FILE *" and "time_t".    The iostream
52 .     is the result of an fopen on the filename.  However, if the
53 .     BFD_IN_MEMORY flag is set, then iostream is actually a pointer
54 .     to a bfd_in_memory struct.  *}
55 .  PTR iostream;
56 .
57 .  {* Is the file descriptor being cached?  That is, can it be closed as
58 .     needed, and re-opened when accessed later?  *}
59 .  bfd_boolean cacheable;
60 .
61 .  {* Marks whether there was a default target specified when the
62 .     BFD was opened. This is used to select which matching algorithm
63 .     to use to choose the back end.  *}
64 .  bfd_boolean target_defaulted;
65 .
66 .  {* The caching routines use these to maintain a
67 .     least-recently-used list of BFDs.  *}
68 .  struct bfd *lru_prev, *lru_next;
69 .
70 .  {* When a file is closed by the caching routines, BFD retains
71 .     state information on the file here...  *}
72 .  ufile_ptr where;
73 .
74 .  {* ... and here: (``once'' means at least once).  *}
75 .  bfd_boolean opened_once;
76 .
77 .  {* Set if we have a locally maintained mtime value, rather than
78 .     getting it from the file each time.  *}
79 .  bfd_boolean mtime_set;
80 .
81 .  {* File modified time, if mtime_set is TRUE.  *}
82 .  long mtime;
83 .
84 .  {* Reserved for an unimplemented file locking extension.  *}
85 .  int ifd;
86 .
87 .  {* The format which belongs to the BFD. (object, core, etc.)  *}
88 .  bfd_format format;
89 .
90 .  {* The direction with which the BFD was opened.  *}
91 .  enum bfd_direction
92 .    {
93 .      no_direction = 0,
94 .      read_direction = 1,
95 .      write_direction = 2,
96 .      both_direction = 3
97 .    }
98 .  direction;
99 .
100 .  {* Format_specific flags.  *}
101 .  flagword flags;
102 .
103 .  {* Currently my_archive is tested before adding origin to
104 .     anything. I believe that this can become always an add of
105 .     origin, with origin set to 0 for non archive files.  *}
106 .  ufile_ptr origin;
107 .
108 .  {* Remember when output has begun, to stop strange things
109 .     from happening.  *}
110 .  bfd_boolean output_has_begun;
111 .
112 .  {* A hash table for section names.  *}
113 .  struct bfd_hash_table section_htab;
114 .
115 .  {* Pointer to linked list of sections.  *}
116 .  struct sec *sections;
117 .
118 .  {* The place where we add to the section list.  *}
119 .  struct sec **section_tail;
120 .
121 .  {* The number of sections.  *}
122 .  unsigned int section_count;
123 .
124 .  {* Stuff only useful for object files:
125 .     The start address.  *}
126 .  bfd_vma start_address;
127 .
128 .  {* Used for input and output.  *}
129 .  unsigned int symcount;
130 .
131 .  {* Symbol table for output BFD (with symcount entries).  *}
132 .  struct symbol_cache_entry  **outsymbols;
133 .
134 .  {* Used for slurped dynamic symbol tables.  *}
135 .  unsigned int dynsymcount;
136 .
137 .  {* Pointer to structure which contains architecture information.  *}
138 .  const struct bfd_arch_info *arch_info;
139 .
140 .  {* Stuff only useful for archives.  *}
141 .  PTR arelt_data;
142 .  struct bfd *my_archive;      {* The containing archive BFD.  *}
143 .  struct bfd *next;            {* The next BFD in the archive.  *}
144 .  struct bfd *archive_head;    {* The first BFD in the archive.  *}
145 .  bfd_boolean has_armap;
146 .
147 .  {* A chain of BFD structures involved in a link.  *}
148 .  struct bfd *link_next;
149 .
150 .  {* A field used by _bfd_generic_link_add_archive_symbols.  This will
151 .     be used only for archive elements.  *}
152 .  int archive_pass;
153 .
154 .  {* Used by the back end to hold private data.  *}
155 .  union
156 .    {
157 .      struct aout_data_struct *aout_data;
158 .      struct artdata *aout_ar_data;
159 .      struct _oasys_data *oasys_obj_data;
160 .      struct _oasys_ar_data *oasys_ar_data;
161 .      struct coff_tdata *coff_obj_data;
162 .      struct pe_tdata *pe_obj_data;
163 .      struct xcoff_tdata *xcoff_obj_data;
164 .      struct ecoff_tdata *ecoff_obj_data;
165 .      struct ieee_data_struct *ieee_data;
166 .      struct ieee_ar_data_struct *ieee_ar_data;
167 .      struct srec_data_struct *srec_data;
168 .      struct ihex_data_struct *ihex_data;
169 .      struct tekhex_data_struct *tekhex_data;
170 .      struct elf_obj_tdata *elf_obj_data;
171 .      struct nlm_obj_tdata *nlm_obj_data;
172 .      struct bout_data_struct *bout_data;
173 .      struct mmo_data_struct *mmo_data;
174 .      struct sun_core_struct *sun_core_data;
175 .      struct sco5_core_struct *sco5_core_data;
176 .      struct trad_core_struct *trad_core_data;
177 .      struct som_data_struct *som_data;
178 .      struct hpux_core_struct *hpux_core_data;
179 .      struct hppabsd_core_struct *hppabsd_core_data;
180 .      struct sgi_core_struct *sgi_core_data;
181 .      struct lynx_core_struct *lynx_core_data;
182 .      struct osf_core_struct *osf_core_data;
183 .      struct cisco_core_struct *cisco_core_data;
184 .      struct versados_data_struct *versados_data;
185 .      struct netbsd_core_struct *netbsd_core_data;
186 .      struct mach_o_data_struct *mach_o_data;
187 .      struct mach_o_fat_data_struct *mach_o_fat_data;
188 .      struct bfd_pef_data_struct *pef_data;
189 .      struct bfd_pef_xlib_data_struct *pef_xlib_data;
190 .      struct bfd_sym_data_struct *sym_data;
191 .      PTR any;
192 .    }
193 .  tdata;
194 .
195 .  {* Used by the application to hold private data.  *}
196 .  PTR usrdata;
197 .
198 .  {* Where all the allocated stuff under this BFD goes.  This is a
199 .     struct objalloc *, but we use PTR to avoid requiring the inclusion of
200 .     objalloc.h.  *}
201 .  PTR memory;
202 .};
203 .
204 */
205
206 #include "bfd.h"
207 #include "bfdver.h"
208 #include "sysdep.h"
209
210 #ifdef ANSI_PROTOTYPES
211 #include <stdarg.h>
212 #else
213 #include <varargs.h>
214 #endif
215
216 #include "libiberty.h"
217 #include "safe-ctype.h"
218 #include "bfdlink.h"
219 #include "libbfd.h"
220 #include "coff/internal.h"
221 #include "coff/sym.h"
222 #include "libcoff.h"
223 #include "libecoff.h"
224 #undef obj_symbols
225 #include "elf-bfd.h"
226 \f
227 /* provide storage for subsystem, stack and heap data which may have been
228    passed in on the command line.  Ld puts this data into a bfd_link_info
229    struct which ultimately gets passed in to the bfd.  When it arrives, copy
230    it to the following struct so that the data will be available in coffcode.h
231    where it is needed.  The typedef's used are defined in bfd.h */
232 \f
233 /*
234 SECTION
235         Error reporting
236
237         Most BFD functions return nonzero on success (check their
238         individual documentation for precise semantics).  On an error,
239         they call <<bfd_set_error>> to set an error condition that callers
240         can check by calling <<bfd_get_error>>.
241         If that returns <<bfd_error_system_call>>, then check
242         <<errno>>.
243
244         The easiest way to report a BFD error to the user is to
245         use <<bfd_perror>>.
246
247 SUBSECTION
248         Type <<bfd_error_type>>
249
250         The values returned by <<bfd_get_error>> are defined by the
251         enumerated type <<bfd_error_type>>.
252
253 CODE_FRAGMENT
254 .
255 .typedef enum bfd_error
256 .{
257 .  bfd_error_no_error = 0,
258 .  bfd_error_system_call,
259 .  bfd_error_invalid_target,
260 .  bfd_error_wrong_format,
261 .  bfd_error_wrong_object_format,
262 .  bfd_error_invalid_operation,
263 .  bfd_error_no_memory,
264 .  bfd_error_no_symbols,
265 .  bfd_error_no_armap,
266 .  bfd_error_no_more_archived_files,
267 .  bfd_error_malformed_archive,
268 .  bfd_error_file_not_recognized,
269 .  bfd_error_file_ambiguously_recognized,
270 .  bfd_error_no_contents,
271 .  bfd_error_nonrepresentable_section,
272 .  bfd_error_no_debug_section,
273 .  bfd_error_bad_value,
274 .  bfd_error_file_truncated,
275 .  bfd_error_file_too_big,
276 .  bfd_error_invalid_error_code
277 .}
278 .bfd_error_type;
279 .
280 */
281
282 static bfd_error_type bfd_error = bfd_error_no_error;
283
284 const char *const bfd_errmsgs[] =
285 {
286   N_("No error"),
287   N_("System call error"),
288   N_("Invalid bfd target"),
289   N_("File in wrong format"),
290   N_("Archive object file in wrong format"),
291   N_("Invalid operation"),
292   N_("Memory exhausted"),
293   N_("No symbols"),
294   N_("Archive has no index; run ranlib to add one"),
295   N_("No more archived files"),
296   N_("Malformed archive"),
297   N_("File format not recognized"),
298   N_("File format is ambiguous"),
299   N_("Section has no contents"),
300   N_("Nonrepresentable section on output"),
301   N_("Symbol needs debug section which does not exist"),
302   N_("Bad value"),
303   N_("File truncated"),
304   N_("File too big"),
305   N_("#<Invalid error code>")
306 };
307
308 /*
309 FUNCTION
310         bfd_get_error
311
312 SYNOPSIS
313         bfd_error_type bfd_get_error (void);
314
315 DESCRIPTION
316         Return the current BFD error condition.
317 */
318
319 bfd_error_type
320 bfd_get_error ()
321 {
322   return bfd_error;
323 }
324
325 /*
326 FUNCTION
327         bfd_set_error
328
329 SYNOPSIS
330         void bfd_set_error (bfd_error_type error_tag);
331
332 DESCRIPTION
333         Set the BFD error condition to be @var{error_tag}.
334 */
335
336 void
337 bfd_set_error (error_tag)
338      bfd_error_type error_tag;
339 {
340   bfd_error = error_tag;
341 }
342
343 /*
344 FUNCTION
345         bfd_errmsg
346
347 SYNOPSIS
348         const char *bfd_errmsg (bfd_error_type error_tag);
349
350 DESCRIPTION
351         Return a string describing the error @var{error_tag}, or
352         the system error if @var{error_tag} is <<bfd_error_system_call>>.
353 */
354
355 const char *
356 bfd_errmsg (error_tag)
357      bfd_error_type error_tag;
358 {
359 #ifndef errno
360   extern int errno;
361 #endif
362   if (error_tag == bfd_error_system_call)
363     return xstrerror (errno);
364
365   if ((((int) error_tag < (int) bfd_error_no_error) ||
366        ((int) error_tag > (int) bfd_error_invalid_error_code)))
367     error_tag = bfd_error_invalid_error_code;/* sanity check */
368
369   return _(bfd_errmsgs [(int)error_tag]);
370 }
371
372 /*
373 FUNCTION
374         bfd_perror
375
376 SYNOPSIS
377         void bfd_perror (const char *message);
378
379 DESCRIPTION
380         Print to the standard error stream a string describing the
381         last BFD error that occurred, or the last system error if
382         the last BFD error was a system call failure.  If @var{message}
383         is non-NULL and non-empty, the error string printed is preceded
384         by @var{message}, a colon, and a space.  It is followed by a newline.
385 */
386
387 void
388 bfd_perror (message)
389      const char *message;
390 {
391   if (bfd_get_error () == bfd_error_system_call)
392     /* Must be a system error then.  */
393     perror ((char *)message);
394   else
395     {
396       if (message == NULL || *message == '\0')
397         fprintf (stderr, "%s\n", bfd_errmsg (bfd_get_error ()));
398       else
399         fprintf (stderr, "%s: %s\n", message, bfd_errmsg (bfd_get_error ()));
400     }
401 }
402
403 /*
404 SUBSECTION
405         BFD error handler
406
407         Some BFD functions want to print messages describing the
408         problem.  They call a BFD error handler function.  This
409         function may be overriden by the program.
410
411         The BFD error handler acts like printf.
412
413 CODE_FRAGMENT
414 .
415 .typedef void (*bfd_error_handler_type) PARAMS ((const char *, ...));
416 .
417 */
418
419 /* The program name used when printing BFD error messages.  */
420
421 static const char *_bfd_error_program_name;
422
423 /* This is the default routine to handle BFD error messages.  */
424
425 static void _bfd_default_error_handler PARAMS ((const char *s, ...));
426
427 static void
428 _bfd_default_error_handler VPARAMS ((const char *s, ...))
429 {
430   if (_bfd_error_program_name != NULL)
431     fprintf (stderr, "%s: ", _bfd_error_program_name);
432   else
433     fprintf (stderr, "BFD: ");
434
435   VA_OPEN (p, s);
436   VA_FIXEDARG (p, const char *, s);
437   vfprintf (stderr, s, p);
438   VA_CLOSE (p);
439
440   fprintf (stderr, "\n");
441 }
442
443 /* This is a function pointer to the routine which should handle BFD
444    error messages.  It is called when a BFD routine encounters an
445    error for which it wants to print a message.  Going through a
446    function pointer permits a program linked against BFD to intercept
447    the messages and deal with them itself.  */
448
449 bfd_error_handler_type _bfd_error_handler = _bfd_default_error_handler;
450
451 /*
452 FUNCTION
453         bfd_set_error_handler
454
455 SYNOPSIS
456         bfd_error_handler_type bfd_set_error_handler (bfd_error_handler_type);
457
458 DESCRIPTION
459         Set the BFD error handler function.  Returns the previous
460         function.
461 */
462
463 bfd_error_handler_type
464 bfd_set_error_handler (pnew)
465      bfd_error_handler_type pnew;
466 {
467   bfd_error_handler_type pold;
468
469   pold = _bfd_error_handler;
470   _bfd_error_handler = pnew;
471   return pold;
472 }
473
474 /*
475 FUNCTION
476         bfd_set_error_program_name
477
478 SYNOPSIS
479         void bfd_set_error_program_name (const char *);
480
481 DESCRIPTION
482         Set the program name to use when printing a BFD error.  This
483         is printed before the error message followed by a colon and
484         space.  The string must not be changed after it is passed to
485         this function.
486 */
487
488 void
489 bfd_set_error_program_name (name)
490      const char *name;
491 {
492   _bfd_error_program_name = name;
493 }
494
495 /*
496 FUNCTION
497         bfd_get_error_handler
498
499 SYNOPSIS
500         bfd_error_handler_type bfd_get_error_handler (void);
501
502 DESCRIPTION
503         Return the BFD error handler function.
504 */
505
506 bfd_error_handler_type
507 bfd_get_error_handler ()
508 {
509   return _bfd_error_handler;
510 }
511
512 /*
513 FUNCTION
514         bfd_archive_filename
515
516 SYNOPSIS
517         const char *bfd_archive_filename (bfd *);
518
519 DESCRIPTION
520         For a BFD that is a component of an archive, returns a string
521         with both the archive name and file name.  For other BFDs, just
522         returns the file name.
523 */
524
525 const char *
526 bfd_archive_filename (abfd)
527      bfd *abfd;
528 {
529   if (abfd->my_archive)
530     {
531       static size_t curr = 0;
532       static char *buf;
533       size_t needed;
534
535       needed = (strlen (bfd_get_filename (abfd->my_archive))
536                 + strlen (bfd_get_filename (abfd)) + 3);
537       if (needed > curr)
538         {
539           if (curr)
540             free (buf);
541           curr = needed + (needed >> 1);
542           buf = bfd_malloc ((bfd_size_type) curr);
543           /* If we can't malloc, fail safe by returning just the file
544              name. This function is only used when building error
545              messages.  */
546           if (!buf)
547             {
548               curr = 0;
549               return bfd_get_filename (abfd);
550             }
551         }
552       sprintf (buf, "%s(%s)", bfd_get_filename (abfd->my_archive),
553                bfd_get_filename (abfd));
554       return buf;
555     }
556   else
557     return bfd_get_filename (abfd);
558 }
559 \f
560 /*
561 SECTION
562         Symbols
563 */
564
565 /*
566 FUNCTION
567         bfd_get_reloc_upper_bound
568
569 SYNOPSIS
570         long bfd_get_reloc_upper_bound (bfd *abfd, asection *sect);
571
572 DESCRIPTION
573         Return the number of bytes required to store the
574         relocation information associated with section @var{sect}
575         attached to bfd @var{abfd}.  If an error occurs, return -1.
576
577 */
578
579 long
580 bfd_get_reloc_upper_bound (abfd, asect)
581      bfd *abfd;
582      sec_ptr asect;
583 {
584   if (abfd->format != bfd_object)
585     {
586       bfd_set_error (bfd_error_invalid_operation);
587       return -1;
588     }
589
590   return BFD_SEND (abfd, _get_reloc_upper_bound, (abfd, asect));
591 }
592
593 /*
594 FUNCTION
595         bfd_canonicalize_reloc
596
597 SYNOPSIS
598         long bfd_canonicalize_reloc
599                 (bfd *abfd,
600                 asection *sec,
601                 arelent **loc,
602                 asymbol **syms);
603
604 DESCRIPTION
605         Call the back end associated with the open BFD
606         @var{abfd} and translate the external form of the relocation
607         information attached to @var{sec} into the internal canonical
608         form.  Place the table into memory at @var{loc}, which has
609         been preallocated, usually by a call to
610         <<bfd_get_reloc_upper_bound>>.  Returns the number of relocs, or
611         -1 on error.
612
613         The @var{syms} table is also needed for horrible internal magic
614         reasons.
615
616 */
617 long
618 bfd_canonicalize_reloc (abfd, asect, location, symbols)
619      bfd *abfd;
620      sec_ptr asect;
621      arelent **location;
622      asymbol **symbols;
623 {
624   if (abfd->format != bfd_object)
625     {
626       bfd_set_error (bfd_error_invalid_operation);
627       return -1;
628     }
629
630   return BFD_SEND (abfd, _bfd_canonicalize_reloc,
631                    (abfd, asect, location, symbols));
632 }
633
634 /*
635 FUNCTION
636         bfd_set_reloc
637
638 SYNOPSIS
639         void bfd_set_reloc
640           (bfd *abfd, asection *sec, arelent **rel, unsigned int count);
641
642 DESCRIPTION
643         Set the relocation pointer and count within
644         section @var{sec} to the values @var{rel} and @var{count}.
645         The argument @var{abfd} is ignored.
646
647 */
648
649 void
650 bfd_set_reloc (ignore_abfd, asect, location, count)
651      bfd *ignore_abfd ATTRIBUTE_UNUSED;
652      sec_ptr asect;
653      arelent **location;
654      unsigned int count;
655 {
656   asect->orelocation = location;
657   asect->reloc_count = count;
658 }
659
660 /*
661 FUNCTION
662         bfd_set_file_flags
663
664 SYNOPSIS
665         bfd_boolean bfd_set_file_flags (bfd *abfd, flagword flags);
666
667 DESCRIPTION
668         Set the flag word in the BFD @var{abfd} to the value @var{flags}.
669
670         Possible errors are:
671         o <<bfd_error_wrong_format>> - The target bfd was not of object format.
672         o <<bfd_error_invalid_operation>> - The target bfd was open for reading.
673         o <<bfd_error_invalid_operation>> -
674         The flag word contained a bit which was not applicable to the
675         type of file.  E.g., an attempt was made to set the <<D_PAGED>> bit
676         on a BFD format which does not support demand paging.
677
678 */
679
680 bfd_boolean
681 bfd_set_file_flags (abfd, flags)
682      bfd *abfd;
683      flagword flags;
684 {
685   if (abfd->format != bfd_object)
686     {
687       bfd_set_error (bfd_error_wrong_format);
688       return FALSE;
689     }
690
691   if (bfd_read_p (abfd))
692     {
693       bfd_set_error (bfd_error_invalid_operation);
694       return FALSE;
695     }
696
697   bfd_get_file_flags (abfd) = flags;
698   if ((flags & bfd_applicable_file_flags (abfd)) != flags)
699     {
700       bfd_set_error (bfd_error_invalid_operation);
701       return FALSE;
702     }
703
704   return TRUE;
705 }
706
707 void
708 bfd_assert (file, line)
709      const char *file;
710      int line;
711 {
712   (*_bfd_error_handler) (_("BFD %s assertion fail %s:%d"),
713                          BFD_VERSION_STRING, file, line);
714 }
715
716 /* A more or less friendly abort message.  In libbfd.h abort is
717    defined to call this function.  */
718
719 #ifndef EXIT_FAILURE
720 #define EXIT_FAILURE 1
721 #endif
722
723 void
724 _bfd_abort (file, line, fn)
725      const char *file;
726      int line;
727      const char *fn;
728 {
729   if (fn != NULL)
730     (*_bfd_error_handler)
731       (_("BFD %s internal error, aborting at %s line %d in %s\n"),
732        BFD_VERSION_STRING, file, line, fn);
733   else
734     (*_bfd_error_handler)
735       (_("BFD %s internal error, aborting at %s line %d\n"),
736        BFD_VERSION_STRING, file, line);
737   (*_bfd_error_handler) (_("Please report this bug.\n"));
738   xexit (EXIT_FAILURE);
739 }
740
741 /*
742 FUNCTION
743         bfd_get_arch_size
744
745 SYNOPSIS
746         int bfd_get_arch_size (bfd *abfd);
747
748 DESCRIPTION
749         Returns the architecture address size, in bits, as determined
750         by the object file's format.  For ELF, this information is
751         included in the header.
752
753 RETURNS
754         Returns the arch size in bits if known, <<-1>> otherwise.
755 */
756
757 int
758 bfd_get_arch_size (abfd)
759      bfd *abfd;
760 {
761   if (abfd->xvec->flavour == bfd_target_elf_flavour)
762     return (get_elf_backend_data (abfd))->s->arch_size;
763
764   return -1;
765 }
766
767 /*
768 FUNCTION
769         bfd_get_sign_extend_vma
770
771 SYNOPSIS
772         int bfd_get_sign_extend_vma (bfd *abfd);
773
774 DESCRIPTION
775         Indicates if the target architecture "naturally" sign extends
776         an address.  Some architectures implicitly sign extend address
777         values when they are converted to types larger than the size
778         of an address.  For instance, bfd_get_start_address() will
779         return an address sign extended to fill a bfd_vma when this is
780         the case.
781
782 RETURNS
783         Returns <<1>> if the target architecture is known to sign
784         extend addresses, <<0>> if the target architecture is known to
785         not sign extend addresses, and <<-1>> otherwise.
786 */
787
788 int
789 bfd_get_sign_extend_vma (abfd)
790      bfd *abfd;
791 {
792   char *name;
793
794   if (bfd_get_flavour (abfd) == bfd_target_elf_flavour)
795     return (get_elf_backend_data (abfd)->sign_extend_vma);
796
797   name = bfd_get_target (abfd);
798
799   /* Return a proper value for DJGPP COFF (an x86 COFF variant).
800      This function is required for DWARF2 support, but there is
801      no place to store this information in the COFF back end.
802      Should enough other COFF targets add support for DWARF2,
803      a place will have to be found.  Until then, this hack will do.  */
804   if (strncmp (name, "coff-go32", sizeof ("coff-go32") - 1) == 0)
805     return 1;
806
807   bfd_set_error (bfd_error_wrong_format);
808   return -1;
809 }
810
811 /*
812 FUNCTION
813         bfd_set_start_address
814
815 SYNOPSIS
816         bfd_boolean bfd_set_start_address (bfd *abfd, bfd_vma vma);
817
818 DESCRIPTION
819         Make @var{vma} the entry point of output BFD @var{abfd}.
820
821 RETURNS
822         Returns <<TRUE>> on success, <<FALSE>> otherwise.
823 */
824
825 bfd_boolean
826 bfd_set_start_address (abfd, vma)
827      bfd *abfd;
828      bfd_vma vma;
829 {
830   abfd->start_address = vma;
831   return TRUE;
832 }
833
834 /*
835 FUNCTION
836         bfd_get_gp_size
837
838 SYNOPSIS
839         unsigned int bfd_get_gp_size (bfd *abfd);
840
841 DESCRIPTION
842         Return the maximum size of objects to be optimized using the GP
843         register under MIPS ECOFF.  This is typically set by the <<-G>>
844         argument to the compiler, assembler or linker.
845 */
846
847 unsigned int
848 bfd_get_gp_size (abfd)
849      bfd *abfd;
850 {
851   if (abfd->format == bfd_object)
852     {
853       if (abfd->xvec->flavour == bfd_target_ecoff_flavour)
854         return ecoff_data (abfd)->gp_size;
855       else if (abfd->xvec->flavour == bfd_target_elf_flavour)
856         return elf_gp_size (abfd);
857     }
858   return 0;
859 }
860
861 /*
862 FUNCTION
863         bfd_set_gp_size
864
865 SYNOPSIS
866         void bfd_set_gp_size (bfd *abfd, unsigned int i);
867
868 DESCRIPTION
869         Set the maximum size of objects to be optimized using the GP
870         register under ECOFF or MIPS ELF.  This is typically set by
871         the <<-G>> argument to the compiler, assembler or linker.
872 */
873
874 void
875 bfd_set_gp_size (abfd, i)
876      bfd *abfd;
877      unsigned int i;
878 {
879   /* Don't try to set GP size on an archive or core file!  */
880   if (abfd->format != bfd_object)
881     return;
882
883   if (abfd->xvec->flavour == bfd_target_ecoff_flavour)
884     ecoff_data (abfd)->gp_size = i;
885   else if (abfd->xvec->flavour == bfd_target_elf_flavour)
886     elf_gp_size (abfd) = i;
887 }
888
889 /* Get the GP value.  This is an internal function used by some of the
890    relocation special_function routines on targets which support a GP
891    register.  */
892
893 bfd_vma
894 _bfd_get_gp_value (abfd)
895      bfd *abfd;
896 {
897   if (abfd->format != bfd_object)
898     return 0;
899
900   if (abfd->xvec->flavour == bfd_target_ecoff_flavour)
901     return ecoff_data (abfd)->gp;
902   else if (abfd->xvec->flavour == bfd_target_elf_flavour)
903     return elf_gp (abfd);
904
905   return 0;
906 }
907
908 /* Set the GP value.  */
909
910 void
911 _bfd_set_gp_value (abfd, v)
912      bfd *abfd;
913      bfd_vma v;
914 {
915   if (abfd->format != bfd_object)
916     return;
917
918   if (abfd->xvec->flavour == bfd_target_ecoff_flavour)
919     ecoff_data (abfd)->gp = v;
920   else if (abfd->xvec->flavour == bfd_target_elf_flavour)
921     elf_gp (abfd) = v;
922 }
923
924 /*
925 FUNCTION
926         bfd_scan_vma
927
928 SYNOPSIS
929         bfd_vma bfd_scan_vma (const char *string, const char **end, int base);
930
931 DESCRIPTION
932         Convert, like <<strtoul>>, a numerical expression
933         @var{string} into a <<bfd_vma>> integer, and return that integer.
934         (Though without as many bells and whistles as <<strtoul>>.)
935         The expression is assumed to be unsigned (i.e., positive).
936         If given a @var{base}, it is used as the base for conversion.
937         A base of 0 causes the function to interpret the string
938         in hex if a leading "0x" or "0X" is found, otherwise
939         in octal if a leading zero is found, otherwise in decimal.
940
941         If the value would overflow, the maximum <<bfd_vma>> value is
942         returned.
943 */
944
945 bfd_vma
946 bfd_scan_vma (string, end, base)
947      const char *string;
948      const char **end;
949      int base;
950 {
951   bfd_vma value;
952   bfd_vma cutoff;
953   unsigned int cutlim;
954   int overflow;
955
956   /* Let the host do it if possible.  */
957   if (sizeof (bfd_vma) <= sizeof (unsigned long))
958     return (bfd_vma) strtoul (string, (char **) end, base);
959
960   if (base == 0)
961     {
962       if (string[0] == '0')
963         {
964           if ((string[1] == 'x') || (string[1] == 'X'))
965             base = 16;
966           else
967             base = 8;
968         }
969     }
970
971   if ((base < 2) || (base > 36))
972     base = 10;
973
974   if (base == 16
975       && string[0] == '0'
976       && (string[1] == 'x' || string[1] == 'X')
977       && ISXDIGIT (string[2]))
978     {
979       string += 2;
980     }
981
982   cutoff = (~ (bfd_vma) 0) / (bfd_vma) base;
983   cutlim = (~ (bfd_vma) 0) % (bfd_vma) base;
984   value = 0;
985   overflow = 0;
986   while (1)
987     {
988       unsigned int digit;
989
990       digit = *string;
991       if (ISDIGIT (digit))
992         digit = digit - '0';
993       else if (ISALPHA (digit))
994         digit = TOUPPER (digit) - 'A' + 10;
995       else
996         break;
997       if (digit >= (unsigned int) base)
998         break;
999       if (value > cutoff || (value == cutoff && digit > cutlim))
1000         overflow = 1;
1001       value = value * base + digit;
1002       ++string;
1003     }
1004
1005   if (overflow)
1006     value = ~ (bfd_vma) 0;
1007
1008   if (end != NULL)
1009     *end = string;
1010
1011   return value;
1012 }
1013
1014 /*
1015 FUNCTION
1016         bfd_copy_private_bfd_data
1017
1018 SYNOPSIS
1019         bfd_boolean bfd_copy_private_bfd_data (bfd *ibfd, bfd *obfd);
1020
1021 DESCRIPTION
1022         Copy private BFD information from the BFD @var{ibfd} to the
1023         the BFD @var{obfd}.  Return <<TRUE>> on success, <<FALSE>> on error.
1024         Possible error returns are:
1025
1026         o <<bfd_error_no_memory>> -
1027         Not enough memory exists to create private data for @var{obfd}.
1028
1029 .#define bfd_copy_private_bfd_data(ibfd, obfd) \
1030 .     BFD_SEND (obfd, _bfd_copy_private_bfd_data, \
1031 .               (ibfd, obfd))
1032
1033 */
1034
1035 /*
1036 FUNCTION
1037         bfd_merge_private_bfd_data
1038
1039 SYNOPSIS
1040         bfd_boolean bfd_merge_private_bfd_data (bfd *ibfd, bfd *obfd);
1041
1042 DESCRIPTION
1043         Merge private BFD information from the BFD @var{ibfd} to the
1044         the output file BFD @var{obfd} when linking.  Return <<TRUE>>
1045         on success, <<FALSE>> on error.  Possible error returns are:
1046
1047         o <<bfd_error_no_memory>> -
1048         Not enough memory exists to create private data for @var{obfd}.
1049
1050 .#define bfd_merge_private_bfd_data(ibfd, obfd) \
1051 .     BFD_SEND (obfd, _bfd_merge_private_bfd_data, \
1052 .               (ibfd, obfd))
1053
1054 */
1055
1056 /*
1057 FUNCTION
1058         bfd_set_private_flags
1059
1060 SYNOPSIS
1061         bfd_boolean bfd_set_private_flags (bfd *abfd, flagword flags);
1062
1063 DESCRIPTION
1064         Set private BFD flag information in the BFD @var{abfd}.
1065         Return <<TRUE>> on success, <<FALSE>> on error.  Possible error
1066         returns are:
1067
1068         o <<bfd_error_no_memory>> -
1069         Not enough memory exists to create private data for @var{obfd}.
1070
1071 .#define bfd_set_private_flags(abfd, flags) \
1072 .     BFD_SEND (abfd, _bfd_set_private_flags, (abfd, flags))
1073
1074 */
1075
1076 /*
1077 FUNCTION
1078         Other functions
1079
1080 DESCRIPTION
1081         The following functions exist but have not yet been documented.
1082
1083 .#define bfd_sizeof_headers(abfd, reloc) \
1084 .       BFD_SEND (abfd, _bfd_sizeof_headers, (abfd, reloc))
1085 .
1086 .#define bfd_find_nearest_line(abfd, sec, syms, off, file, func, line) \
1087 .       BFD_SEND (abfd, _bfd_find_nearest_line, \
1088 .                 (abfd, sec, syms, off, file, func, line))
1089 .
1090 .#define bfd_debug_info_start(abfd) \
1091 .       BFD_SEND (abfd, _bfd_debug_info_start, (abfd))
1092 .
1093 .#define bfd_debug_info_end(abfd) \
1094 .       BFD_SEND (abfd, _bfd_debug_info_end, (abfd))
1095 .
1096 .#define bfd_debug_info_accumulate(abfd, section) \
1097 .       BFD_SEND (abfd, _bfd_debug_info_accumulate, (abfd, section))
1098 .
1099 .#define bfd_stat_arch_elt(abfd, stat) \
1100 .       BFD_SEND (abfd, _bfd_stat_arch_elt,(abfd, stat))
1101 .
1102 .#define bfd_update_armap_timestamp(abfd) \
1103 .       BFD_SEND (abfd, _bfd_update_armap_timestamp, (abfd))
1104 .
1105 .#define bfd_set_arch_mach(abfd, arch, mach)\
1106 .       BFD_SEND ( abfd, _bfd_set_arch_mach, (abfd, arch, mach))
1107 .
1108 .#define bfd_relax_section(abfd, section, link_info, again) \
1109 .       BFD_SEND (abfd, _bfd_relax_section, (abfd, section, link_info, again))
1110 .
1111 .#define bfd_gc_sections(abfd, link_info) \
1112 .       BFD_SEND (abfd, _bfd_gc_sections, (abfd, link_info))
1113 .
1114 .#define bfd_merge_sections(abfd, link_info) \
1115 .       BFD_SEND (abfd, _bfd_merge_sections, (abfd, link_info))
1116 .
1117 .#define bfd_discard_group(abfd, sec) \
1118 .       BFD_SEND (abfd, _bfd_discard_group, (abfd, sec))
1119 .
1120 .#define bfd_link_hash_table_create(abfd) \
1121 .       BFD_SEND (abfd, _bfd_link_hash_table_create, (abfd))
1122 .
1123 .#define bfd_link_hash_table_free(abfd, hash) \
1124 .       BFD_SEND (abfd, _bfd_link_hash_table_free, (hash))
1125 .
1126 .#define bfd_link_add_symbols(abfd, info) \
1127 .       BFD_SEND (abfd, _bfd_link_add_symbols, (abfd, info))
1128 .
1129 .#define bfd_link_just_syms(sec, info) \
1130 .       BFD_SEND (abfd, _bfd_link_just_syms, (sec, info))
1131 .
1132 .#define bfd_final_link(abfd, info) \
1133 .       BFD_SEND (abfd, _bfd_final_link, (abfd, info))
1134 .
1135 .#define bfd_free_cached_info(abfd) \
1136 .       BFD_SEND (abfd, _bfd_free_cached_info, (abfd))
1137 .
1138 .#define bfd_get_dynamic_symtab_upper_bound(abfd) \
1139 .       BFD_SEND (abfd, _bfd_get_dynamic_symtab_upper_bound, (abfd))
1140 .
1141 .#define bfd_print_private_bfd_data(abfd, file)\
1142 .       BFD_SEND (abfd, _bfd_print_private_bfd_data, (abfd, file))
1143 .
1144 .#define bfd_canonicalize_dynamic_symtab(abfd, asymbols) \
1145 .       BFD_SEND (abfd, _bfd_canonicalize_dynamic_symtab, (abfd, asymbols))
1146 .
1147 .#define bfd_get_dynamic_reloc_upper_bound(abfd) \
1148 .       BFD_SEND (abfd, _bfd_get_dynamic_reloc_upper_bound, (abfd))
1149 .
1150 .#define bfd_canonicalize_dynamic_reloc(abfd, arels, asyms) \
1151 .       BFD_SEND (abfd, _bfd_canonicalize_dynamic_reloc, (abfd, arels, asyms))
1152 .
1153 .extern bfd_byte *bfd_get_relocated_section_contents
1154 .       PARAMS ((bfd *, struct bfd_link_info *,
1155 .                 struct bfd_link_order *, bfd_byte *,
1156 .                 bfd_boolean, asymbol **));
1157 .
1158
1159 */
1160
1161 bfd_byte *
1162 bfd_get_relocated_section_contents (abfd, link_info, link_order, data,
1163                                     relocateable, symbols)
1164      bfd *abfd;
1165      struct bfd_link_info *link_info;
1166      struct bfd_link_order *link_order;
1167      bfd_byte *data;
1168      bfd_boolean relocateable;
1169      asymbol **symbols;
1170 {
1171   bfd *abfd2;
1172   bfd_byte *(*fn) PARAMS ((bfd *, struct bfd_link_info *,
1173                            struct bfd_link_order *, bfd_byte *, bfd_boolean,
1174                            asymbol **));
1175
1176   if (link_order->type == bfd_indirect_link_order)
1177     {
1178       abfd2 = link_order->u.indirect.section->owner;
1179       if (abfd2 == NULL)
1180         abfd2 = abfd;
1181     }
1182   else
1183     abfd2 = abfd;
1184
1185   fn = abfd2->xvec->_bfd_get_relocated_section_contents;
1186
1187   return (*fn) (abfd, link_info, link_order, data, relocateable, symbols);
1188 }
1189
1190 /* Record information about an ELF program header.  */
1191
1192 bfd_boolean
1193 bfd_record_phdr (abfd, type, flags_valid, flags, at_valid, at,
1194                  includes_filehdr, includes_phdrs, count, secs)
1195      bfd *abfd;
1196      unsigned long type;
1197      bfd_boolean flags_valid;
1198      flagword flags;
1199      bfd_boolean at_valid;
1200      bfd_vma at;
1201      bfd_boolean includes_filehdr;
1202      bfd_boolean includes_phdrs;
1203      unsigned int count;
1204      asection **secs;
1205 {
1206   struct elf_segment_map *m, **pm;
1207   bfd_size_type amt;
1208
1209   if (bfd_get_flavour (abfd) != bfd_target_elf_flavour)
1210     return TRUE;
1211
1212   amt = sizeof (struct elf_segment_map);
1213   amt += ((bfd_size_type) count - 1) * sizeof (asection *);
1214   m = (struct elf_segment_map *) bfd_alloc (abfd, amt);
1215   if (m == NULL)
1216     return FALSE;
1217
1218   m->next = NULL;
1219   m->p_type = type;
1220   m->p_flags = flags;
1221   m->p_paddr = at;
1222   m->p_flags_valid = (unsigned int) flags_valid;
1223   m->p_paddr_valid = (unsigned int) at_valid;
1224   m->includes_filehdr = (unsigned int) includes_filehdr;
1225   m->includes_phdrs = (unsigned int) includes_phdrs;
1226   m->count = count;
1227   if (count > 0)
1228     memcpy (m->sections, secs, count * sizeof (asection *));
1229
1230   for (pm = &elf_tdata (abfd)->segment_map; *pm != NULL; pm = &(*pm)->next)
1231     ;
1232   *pm = m;
1233
1234   return TRUE;
1235 }
1236
1237 void
1238 bfd_sprintf_vma (abfd, buf, value)
1239      bfd *abfd;
1240      char *buf;
1241      bfd_vma value;
1242 {
1243   if (bfd_get_flavour (abfd) == bfd_target_elf_flavour)
1244     get_elf_backend_data (abfd)->elf_backend_sprintf_vma (abfd, buf, value);
1245   else
1246     sprintf_vma (buf, value);
1247 }
1248
1249 void
1250 bfd_fprintf_vma (abfd, stream, value)
1251      bfd *abfd;
1252      PTR stream;
1253      bfd_vma value;
1254 {
1255   if (bfd_get_flavour (abfd) == bfd_target_elf_flavour)
1256     get_elf_backend_data (abfd)->elf_backend_fprintf_vma (abfd, stream, value);
1257   else
1258     fprintf_vma ((FILE *) stream, value);
1259 }
1260
1261 /*
1262 FUNCTION
1263         bfd_alt_mach_code
1264
1265 SYNOPSIS
1266         bfd_boolean bfd_alt_mach_code (bfd *abfd, int alternative);
1267
1268 DESCRIPTION
1269
1270         When more than one machine code number is available for the
1271         same machine type, this function can be used to switch between
1272         the preferred one (alternative == 0) and any others.  Currently,
1273         only ELF supports this feature, with up to two alternate
1274         machine codes.
1275 */
1276
1277 bfd_boolean
1278 bfd_alt_mach_code (abfd, alternative)
1279      bfd *abfd;
1280      int alternative;
1281 {
1282   if (bfd_get_flavour (abfd) == bfd_target_elf_flavour)
1283     {
1284       int code;
1285
1286       switch (alternative)
1287         {
1288         case 0:
1289           code = get_elf_backend_data (abfd)->elf_machine_code;
1290           break;
1291
1292         case 1:
1293           code = get_elf_backend_data (abfd)->elf_machine_alt1;
1294           if (code == 0)
1295             return FALSE;
1296           break;
1297
1298         case 2:
1299           code = get_elf_backend_data (abfd)->elf_machine_alt2;
1300           if (code == 0)
1301             return FALSE;
1302           break;
1303
1304         default:
1305           return FALSE;
1306         }
1307
1308       elf_elfheader (abfd)->e_machine = code;
1309
1310       return TRUE;
1311     }
1312
1313   return FALSE;
1314 }
1315
1316 /*
1317 CODE_FRAGMENT
1318
1319 .struct bfd_preserve
1320 .{
1321 .  PTR marker;
1322 .  PTR tdata;
1323 .  flagword flags;
1324 .  const struct bfd_arch_info *arch_info;
1325 .  struct sec *sections;
1326 .  struct sec **section_tail;
1327 .  unsigned int section_count;
1328 .  struct bfd_hash_table section_htab;
1329 .};
1330 .
1331 */
1332
1333 /*
1334 FUNCTION
1335         bfd_preserve_save
1336
1337 SYNOPSIS
1338         bfd_boolean bfd_preserve_save (bfd *, struct bfd_preserve *);
1339
1340 DESCRIPTION
1341         When testing an object for compatibility with a particular
1342         target back-end, the back-end object_p function needs to set
1343         up certain fields in the bfd on successfully recognizing the
1344         object.  This typically happens in a piecemeal fashion, with
1345         failures possible at many points.  On failure, the bfd is
1346         supposed to be restored to its initial state, which is
1347         virtually impossible.  However, restoring a subset of the bfd
1348         state works in practice.  This function stores the subset and
1349         reinitializes the bfd.
1350
1351 */
1352
1353 bfd_boolean
1354 bfd_preserve_save (abfd, preserve)
1355      bfd *abfd;
1356      struct bfd_preserve *preserve;
1357 {
1358   preserve->tdata = abfd->tdata.any;
1359   preserve->arch_info = abfd->arch_info;
1360   preserve->flags = abfd->flags;
1361   preserve->sections = abfd->sections;
1362   preserve->section_tail = abfd->section_tail;
1363   preserve->section_count = abfd->section_count;
1364   preserve->section_htab = abfd->section_htab;
1365
1366   if (! bfd_hash_table_init (&abfd->section_htab, bfd_section_hash_newfunc))
1367     return FALSE;
1368
1369   abfd->tdata.any = NULL;
1370   abfd->arch_info = &bfd_default_arch_struct;
1371   abfd->flags &= BFD_IN_MEMORY;
1372   abfd->sections = NULL;
1373   abfd->section_tail = &abfd->sections;
1374   abfd->section_count = 0;
1375
1376   return TRUE;
1377 }
1378
1379 /*
1380 FUNCTION
1381         bfd_preserve_restore
1382
1383 SYNOPSIS
1384         void bfd_preserve_restore (bfd *, struct bfd_preserve *);
1385
1386 DESCRIPTION
1387         This function restores bfd state saved by bfd_preserve_save.
1388         If MARKER is non-NULL in struct bfd_preserve then that block
1389         and all subsequently bfd_alloc'd memory is freed.
1390
1391 */
1392
1393 void
1394 bfd_preserve_restore (abfd, preserve)
1395      bfd *abfd;
1396      struct bfd_preserve *preserve;
1397 {
1398   bfd_hash_table_free (&abfd->section_htab);
1399
1400   abfd->tdata.any = preserve->tdata;
1401   abfd->arch_info = preserve->arch_info;
1402   abfd->flags = preserve->flags;
1403   abfd->section_htab = preserve->section_htab;
1404   abfd->sections = preserve->sections;
1405   abfd->section_tail = preserve->section_tail;
1406   abfd->section_count = preserve->section_count;
1407
1408   /* bfd_release frees all memory more recently bfd_alloc'd than
1409      its arg, as well as its arg.  */
1410   if (preserve->marker != NULL)
1411     {
1412       bfd_release (abfd, preserve->marker);
1413       preserve->marker = NULL;
1414     }
1415 }
1416
1417 /*
1418 FUNCTION
1419         bfd_preserve_finish
1420
1421 SYNOPSIS
1422         void bfd_preserve_finish (bfd *, struct bfd_preserve *);
1423
1424 DESCRIPTION
1425         This function should be called when the bfd state saved by
1426         bfd_preserve_save is no longer needed.  ie. when the back-end
1427         object_p function returns with success.
1428
1429 */
1430
1431 void
1432 bfd_preserve_finish (abfd, preserve)
1433      bfd *abfd ATTRIBUTE_UNUSED;
1434      struct bfd_preserve *preserve;
1435 {
1436   /* It would be nice to be able to free more memory here, eg. old
1437      tdata, but that's not possible since these blocks are sitting
1438      inside bfd_alloc'd memory.  The section hash is on a separate
1439      objalloc.  */
1440   bfd_hash_table_free (&preserve->section_htab);
1441 }