OSDN Git Service

* bfd.c (struct _bfd): Added id field.
[pf3gnuchains/pf3gnuchains3x.git] / 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
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, \
1073 .               (abfd, flags))
1074
1075 */
1076
1077 /*
1078 FUNCTION
1079         stuff
1080
1081 DESCRIPTION
1082         Stuff which should be documented:
1083
1084 .#define bfd_sizeof_headers(abfd, reloc) \
1085 .     BFD_SEND (abfd, _bfd_sizeof_headers, (abfd, reloc))
1086 .
1087 .#define bfd_find_nearest_line(abfd, sec, syms, off, file, func, line) \
1088 .     BFD_SEND (abfd, _bfd_find_nearest_line,  (abfd, sec, syms, off, file, func, line))
1089 .
1090 .       {* Do these three do anything useful at all, for any back end?  *}
1091 .#define bfd_debug_info_start(abfd) \
1092 .        BFD_SEND (abfd, _bfd_debug_info_start, (abfd))
1093 .
1094 .#define bfd_debug_info_end(abfd) \
1095 .        BFD_SEND (abfd, _bfd_debug_info_end, (abfd))
1096 .
1097 .#define bfd_debug_info_accumulate(abfd, section) \
1098 .        BFD_SEND (abfd, _bfd_debug_info_accumulate, (abfd, section))
1099 .
1100 .
1101 .#define bfd_stat_arch_elt(abfd, stat) \
1102 .        BFD_SEND (abfd, _bfd_stat_arch_elt,(abfd, stat))
1103 .
1104 .#define bfd_update_armap_timestamp(abfd) \
1105 .        BFD_SEND (abfd, _bfd_update_armap_timestamp, (abfd))
1106 .
1107 .#define bfd_set_arch_mach(abfd, arch, mach)\
1108 .        BFD_SEND ( abfd, _bfd_set_arch_mach, (abfd, arch, mach))
1109 .
1110 .#define bfd_relax_section(abfd, section, link_info, again) \
1111 .       BFD_SEND (abfd, _bfd_relax_section, (abfd, section, link_info, again))
1112 .
1113 .#define bfd_gc_sections(abfd, link_info) \
1114 .       BFD_SEND (abfd, _bfd_gc_sections, (abfd, link_info))
1115 .
1116 .#define bfd_merge_sections(abfd, link_info) \
1117 .       BFD_SEND (abfd, _bfd_merge_sections, (abfd, link_info))
1118 .
1119 .#define bfd_discard_group(abfd, sec) \
1120 .       BFD_SEND (abfd, _bfd_discard_group, (abfd, sec))
1121 .
1122 .#define bfd_link_hash_table_create(abfd) \
1123 .       BFD_SEND (abfd, _bfd_link_hash_table_create, (abfd))
1124 .
1125 .#define bfd_link_hash_table_free(abfd, hash) \
1126 .       BFD_SEND (abfd, _bfd_link_hash_table_free, (hash))
1127 .
1128 .#define bfd_link_add_symbols(abfd, info) \
1129 .       BFD_SEND (abfd, _bfd_link_add_symbols, (abfd, info))
1130 .
1131 .#define bfd_link_just_syms(sec, info) \
1132 .       BFD_SEND (abfd, _bfd_link_just_syms, (sec, info))
1133 .
1134 .#define bfd_final_link(abfd, info) \
1135 .       BFD_SEND (abfd, _bfd_final_link, (abfd, info))
1136 .
1137 .#define bfd_free_cached_info(abfd) \
1138 .       BFD_SEND (abfd, _bfd_free_cached_info, (abfd))
1139 .
1140 .#define bfd_get_dynamic_symtab_upper_bound(abfd) \
1141 .       BFD_SEND (abfd, _bfd_get_dynamic_symtab_upper_bound, (abfd))
1142 .
1143 .#define bfd_print_private_bfd_data(abfd, file)\
1144 .       BFD_SEND (abfd, _bfd_print_private_bfd_data, (abfd, file))
1145 .
1146 .#define bfd_canonicalize_dynamic_symtab(abfd, asymbols) \
1147 .       BFD_SEND (abfd, _bfd_canonicalize_dynamic_symtab, (abfd, asymbols))
1148 .
1149 .#define bfd_get_dynamic_reloc_upper_bound(abfd) \
1150 .       BFD_SEND (abfd, _bfd_get_dynamic_reloc_upper_bound, (abfd))
1151 .
1152 .#define bfd_canonicalize_dynamic_reloc(abfd, arels, asyms) \
1153 .       BFD_SEND (abfd, _bfd_canonicalize_dynamic_reloc, (abfd, arels, asyms))
1154 .
1155 .extern bfd_byte *bfd_get_relocated_section_contents
1156 .       PARAMS ((bfd *, struct bfd_link_info *,
1157 .                 struct bfd_link_order *, bfd_byte *,
1158 .                 bfd_boolean, asymbol **));
1159 .
1160
1161 */
1162
1163 bfd_byte *
1164 bfd_get_relocated_section_contents (abfd, link_info, link_order, data,
1165                                     relocateable, symbols)
1166      bfd *abfd;
1167      struct bfd_link_info *link_info;
1168      struct bfd_link_order *link_order;
1169      bfd_byte *data;
1170      bfd_boolean relocateable;
1171      asymbol **symbols;
1172 {
1173   bfd *abfd2;
1174   bfd_byte *(*fn) PARAMS ((bfd *, struct bfd_link_info *,
1175                            struct bfd_link_order *, bfd_byte *, bfd_boolean,
1176                            asymbol **));
1177
1178   if (link_order->type == bfd_indirect_link_order)
1179     {
1180       abfd2 = link_order->u.indirect.section->owner;
1181       if (abfd2 == NULL)
1182         abfd2 = abfd;
1183     }
1184   else
1185     abfd2 = abfd;
1186
1187   fn = abfd2->xvec->_bfd_get_relocated_section_contents;
1188
1189   return (*fn) (abfd, link_info, link_order, data, relocateable, symbols);
1190 }
1191
1192 /* Record information about an ELF program header.  */
1193
1194 bfd_boolean
1195 bfd_record_phdr (abfd, type, flags_valid, flags, at_valid, at,
1196                  includes_filehdr, includes_phdrs, count, secs)
1197      bfd *abfd;
1198      unsigned long type;
1199      bfd_boolean flags_valid;
1200      flagword flags;
1201      bfd_boolean at_valid;
1202      bfd_vma at;
1203      bfd_boolean includes_filehdr;
1204      bfd_boolean includes_phdrs;
1205      unsigned int count;
1206      asection **secs;
1207 {
1208   struct elf_segment_map *m, **pm;
1209   bfd_size_type amt;
1210
1211   if (bfd_get_flavour (abfd) != bfd_target_elf_flavour)
1212     return TRUE;
1213
1214   amt = sizeof (struct elf_segment_map);
1215   amt += ((bfd_size_type) count - 1) * sizeof (asection *);
1216   m = (struct elf_segment_map *) bfd_alloc (abfd, amt);
1217   if (m == NULL)
1218     return FALSE;
1219
1220   m->next = NULL;
1221   m->p_type = type;
1222   m->p_flags = flags;
1223   m->p_paddr = at;
1224   m->p_flags_valid = (unsigned int) flags_valid;
1225   m->p_paddr_valid = (unsigned int) at_valid;
1226   m->includes_filehdr = (unsigned int) includes_filehdr;
1227   m->includes_phdrs = (unsigned int) includes_phdrs;
1228   m->count = count;
1229   if (count > 0)
1230     memcpy (m->sections, secs, count * sizeof (asection *));
1231
1232   for (pm = &elf_tdata (abfd)->segment_map; *pm != NULL; pm = &(*pm)->next)
1233     ;
1234   *pm = m;
1235
1236   return TRUE;
1237 }
1238
1239 void
1240 bfd_sprintf_vma (abfd, buf, value)
1241      bfd *abfd;
1242      char *buf;
1243      bfd_vma value;
1244 {
1245   if (bfd_get_flavour (abfd) == bfd_target_elf_flavour)
1246     get_elf_backend_data (abfd)->elf_backend_sprintf_vma (abfd, buf, value);
1247   else
1248     sprintf_vma (buf, value);
1249 }
1250
1251 void
1252 bfd_fprintf_vma (abfd, stream, value)
1253      bfd *abfd;
1254      PTR stream;
1255      bfd_vma value;
1256 {
1257   if (bfd_get_flavour (abfd) == bfd_target_elf_flavour)
1258     get_elf_backend_data (abfd)->elf_backend_fprintf_vma (abfd, stream, value);
1259   else
1260     fprintf_vma ((FILE *) stream, value);
1261 }
1262
1263 /*
1264 FUNCTION
1265         bfd_alt_mach_code
1266
1267 SYNOPSIS
1268         bfd_boolean bfd_alt_mach_code(bfd *abfd, int alternative);
1269
1270 DESCRIPTION
1271
1272         When more than one machine code number is available for the
1273         same machine type, this function can be used to switch between
1274         the preferred one (alternative == 0) and any others.  Currently,
1275         only ELF supports this feature, with up to two alternate
1276         machine codes.
1277 */
1278
1279 bfd_boolean
1280 bfd_alt_mach_code (abfd, alternative)
1281      bfd *abfd;
1282      int alternative;
1283 {
1284   if (bfd_get_flavour (abfd) == bfd_target_elf_flavour)
1285     {
1286       int code;
1287
1288       switch (alternative)
1289         {
1290         case 0:
1291           code = get_elf_backend_data (abfd)->elf_machine_code;
1292           break;
1293
1294         case 1:
1295           code = get_elf_backend_data (abfd)->elf_machine_alt1;
1296           if (code == 0)
1297             return FALSE;
1298           break;
1299
1300         case 2:
1301           code = get_elf_backend_data (abfd)->elf_machine_alt2;
1302           if (code == 0)
1303             return FALSE;
1304           break;
1305
1306         default:
1307           return FALSE;
1308         }
1309
1310       elf_elfheader (abfd)->e_machine = code;
1311
1312       return TRUE;
1313     }
1314
1315   return FALSE;
1316 }
1317
1318 /*
1319 CODE_FRAGMENT
1320
1321 .struct bfd_preserve
1322 .{
1323 .  PTR marker;
1324 .  PTR tdata;
1325 .  flagword flags;
1326 .  const struct bfd_arch_info *arch_info;
1327 .  struct sec *sections;
1328 .  struct sec **section_tail;
1329 .  unsigned int section_count;
1330 .  struct bfd_hash_table section_htab;
1331 .};
1332 .
1333 */
1334
1335 /*
1336 FUNCTION
1337         bfd_preserve_save
1338
1339 SYNOPSIS
1340         bfd_boolean bfd_preserve_save (bfd *, struct bfd_preserve *);
1341
1342 DESCRIPTION
1343         When testing an object for compatibility with a particular
1344         target back-end, the back-end object_p function needs to set
1345         up certain fields in the bfd on successfully recognizing the
1346         object.  This typically happens in a piecemeal fashion, with
1347         failures possible at many points.  On failure, the bfd is
1348         supposed to be restored to its initial state, which is
1349         virtually impossible.  However, restoring a subset of the bfd
1350         state works in practice.  This function stores the subset and
1351         reinitializes the bfd.
1352
1353 */
1354
1355 bfd_boolean
1356 bfd_preserve_save (abfd, preserve)
1357      bfd *abfd;
1358      struct bfd_preserve *preserve;
1359 {
1360   preserve->tdata = abfd->tdata.any;
1361   preserve->arch_info = abfd->arch_info;
1362   preserve->flags = abfd->flags;
1363   preserve->sections = abfd->sections;
1364   preserve->section_tail = abfd->section_tail;
1365   preserve->section_count = abfd->section_count;
1366   preserve->section_htab = abfd->section_htab;
1367
1368   if (! bfd_hash_table_init (&abfd->section_htab, bfd_section_hash_newfunc))
1369     return FALSE;
1370
1371   abfd->tdata.any = NULL;
1372   abfd->arch_info = &bfd_default_arch_struct;
1373   abfd->flags &= BFD_IN_MEMORY;
1374   abfd->sections = NULL;
1375   abfd->section_tail = &abfd->sections;
1376   abfd->section_count = 0;
1377
1378   return TRUE;
1379 }
1380
1381 /*
1382 FUNCTION
1383         bfd_preserve_restore
1384
1385 SYNOPSIS
1386         void bfd_preserve_restore (bfd *, struct bfd_preserve *);
1387
1388 DESCRIPTION
1389         This function restores bfd state saved by bfd_preserve_save.
1390         If MARKER is non-NULL in struct bfd_preserve then that block
1391         and all subsequently bfd_alloc'd memory is freed.
1392
1393 */
1394
1395 void
1396 bfd_preserve_restore (abfd, preserve)
1397      bfd *abfd;
1398      struct bfd_preserve *preserve;
1399 {
1400   bfd_hash_table_free (&abfd->section_htab);
1401
1402   abfd->tdata.any = preserve->tdata;
1403   abfd->arch_info = preserve->arch_info;
1404   abfd->flags = preserve->flags;
1405   abfd->section_htab = preserve->section_htab;
1406   abfd->sections = preserve->sections;
1407   abfd->section_tail = preserve->section_tail;
1408   abfd->section_count = preserve->section_count;
1409
1410   /* bfd_release frees all memory more recently bfd_alloc'd than
1411      its arg, as well as its arg.  */
1412   if (preserve->marker != NULL)
1413     {
1414       bfd_release (abfd, preserve->marker);
1415       preserve->marker = NULL;
1416     }
1417 }
1418
1419 /*
1420 FUNCTION
1421         bfd_preserve_finish
1422
1423 SYNOPSIS
1424         void bfd_preserve_finish (bfd *, struct bfd_preserve *);
1425
1426 DESCRIPTION
1427         This function should be called when the bfd state saved by
1428         bfd_preserve_save is no longer needed.  ie. when the back-end
1429         object_p function returns with success.
1430
1431 */
1432
1433 void
1434 bfd_preserve_finish (abfd, preserve)
1435      bfd *abfd ATTRIBUTE_UNUSED;
1436      struct bfd_preserve *preserve;
1437 {
1438   /* It would be nice to be able to free more memory here, eg. old
1439      tdata, but that's not possible since these blocks are sitting
1440      inside bfd_alloc'd memory.  The section hash is on a separate
1441      objalloc.  */
1442   bfd_hash_table_free (&preserve->section_htab);
1443 }