1 /* Generic BFD library interface and support routines.
2 Copyright (C) 1990-2023 Free Software Foundation, Inc.
3 Written by Cygnus Support.
5 This file is part of BFD, the Binary File Descriptor library.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
20 MA 02110-1301, USA. */
24 typedef bfd, Error reporting, BFD front end, BFD front end
29 A BFD has type <<bfd>>; objects of this type are the
30 cornerstone of any application using BFD. Using BFD
31 consists of making references though the BFD and to data in the BFD.
33 Here is the structure that defines the type <<bfd>>. It
34 contains the major data about the file and pointers
35 to the rest of the data.
43 . write_direction = 2,
47 .enum bfd_plugin_format
49 . bfd_plugin_unknown = 0,
62 . {* The filename the application opened the BFD with. *}
63 . const char *filename;
65 . {* A pointer to the target jump table. *}
66 . const struct bfd_target *xvec;
68 . {* The IOSTREAM, and corresponding IO vector that provide access
69 . to the file backing the BFD. *}
71 . const struct bfd_iovec *iovec;
73 . {* The caching routines use these to maintain a
74 . least-recently-used list of BFDs. *}
75 . struct bfd *lru_prev, *lru_next;
77 . {* Track current file position (or current buffer offset for
78 . in-memory BFDs). When a file is closed by the caching routines,
79 . BFD retains state information on the file here. *}
82 . {* File modified time, if mtime_set is TRUE. *}
85 . {* A unique identifier of the BFD *}
88 . {* Format_specific flags. *}
91 . {* Values that may appear in the flags field of a BFD. These also
92 . appear in the object_flags field of the bfd_target structure, where
93 . they indicate the set of flags used by that backend (not all flags
94 . are meaningful for all object file formats) (FIXME: at the moment,
95 . the object_flags values have mostly just been copied from backend
96 . to another, and are not necessarily correct). *}
98 .#define BFD_NO_FLAGS 0x0
100 . {* BFD contains relocation entries. *}
101 .#define HAS_RELOC 0x1
103 . {* BFD is directly executable. *}
106 . {* BFD has line number information (basically used for F_LNNO in a
108 .#define HAS_LINENO 0x4
110 . {* BFD has debugging information. *}
111 .#define HAS_DEBUG 0x08
113 . {* BFD has symbols. *}
114 .#define HAS_SYMS 0x10
116 . {* BFD has local symbols (basically used for F_LSYMS in a COFF
118 .#define HAS_LOCALS 0x20
120 . {* BFD is a dynamic object. *}
121 .#define DYNAMIC 0x40
123 . {* Text section is write protected (if D_PAGED is not set, this is
124 . like an a.out NMAGIC file) (the linker sets this by default, but
125 . clears it for -r or -N). *}
126 .#define WP_TEXT 0x80
128 . {* BFD is dynamically paged (this is like an a.out ZMAGIC file) (the
129 . linker sets this by default, but clears it for -r or -n or -N). *}
130 .#define D_PAGED 0x100
132 . {* BFD is relaxable (this means that bfd_relax_section may be able to
133 . do something) (sometimes bfd_relax_section can do something even if
134 . this is not set). *}
135 .#define BFD_IS_RELAXABLE 0x200
137 . {* This may be set before writing out a BFD to request using a
138 . traditional format. For example, this is used to request that when
139 . writing out an a.out object the symbols not be hashed to eliminate
141 .#define BFD_TRADITIONAL_FORMAT 0x400
143 . {* This flag indicates that the BFD contents are actually cached
144 . in memory. If this is set, iostream points to a bfd_in_memory
146 .#define BFD_IN_MEMORY 0x800
148 . {* This BFD has been created by the linker and doesn't correspond
149 . to any input file. *}
150 .#define BFD_LINKER_CREATED 0x1000
152 . {* This may be set before writing out a BFD to request that it
153 . be written using values for UIDs, GIDs, timestamps, etc. that
154 . will be consistent from run to run. *}
155 .#define BFD_DETERMINISTIC_OUTPUT 0x2000
157 . {* Compress sections in this BFD. *}
158 .#define BFD_COMPRESS 0x4000
160 . {* Decompress sections in this BFD. *}
161 .#define BFD_DECOMPRESS 0x8000
163 . {* BFD is a dummy, for plugins. *}
164 .#define BFD_PLUGIN 0x10000
166 . {* Compress sections in this BFD with SHF_COMPRESSED from gABI. *}
167 .#define BFD_COMPRESS_GABI 0x20000
169 . {* Convert ELF common symbol type to STT_COMMON or STT_OBJECT in this
171 .#define BFD_CONVERT_ELF_COMMON 0x40000
173 . {* Use the ELF STT_COMMON type in this BFD. *}
174 .#define BFD_USE_ELF_STT_COMMON 0x80000
176 . {* Put pathnames into archives (non-POSIX). *}
177 .#define BFD_ARCHIVE_FULL_PATH 0x100000
179 .#define BFD_CLOSED_BY_CACHE 0x200000
181 . {* Compress sections in this BFD with SHF_COMPRESSED zstd. *}
182 .#define BFD_COMPRESS_ZSTD 0x400000
184 . {* Flags bits to be saved in bfd_preserve_save. *}
185 .#define BFD_FLAGS_SAVED \
186 . (BFD_IN_MEMORY | BFD_COMPRESS | BFD_DECOMPRESS | BFD_LINKER_CREATED \
187 . | BFD_PLUGIN | BFD_COMPRESS_GABI | BFD_CONVERT_ELF_COMMON \
188 . | BFD_USE_ELF_STT_COMMON | BFD_COMPRESS_ZSTD)
190 . {* Flags bits which are for BFD use only. *}
191 .#define BFD_FLAGS_FOR_BFD_USE_MASK \
192 . (BFD_IN_MEMORY | BFD_COMPRESS | BFD_DECOMPRESS | BFD_LINKER_CREATED \
193 . | BFD_PLUGIN | BFD_TRADITIONAL_FORMAT | BFD_DETERMINISTIC_OUTPUT \
194 . | BFD_COMPRESS_GABI | BFD_CONVERT_ELF_COMMON | BFD_USE_ELF_STT_COMMON)
196 . {* The format which belongs to the BFD. (object, core, etc.) *}
197 . ENUM_BITFIELD (bfd_format) format : 3;
199 . {* The direction with which the BFD was opened. *}
200 . ENUM_BITFIELD (bfd_direction) direction : 2;
202 . {* Is the file descriptor being cached? That is, can it be closed as
203 . needed, and re-opened when accessed later? *}
204 . unsigned int cacheable : 1;
206 . {* Marks whether there was a default target specified when the
207 . BFD was opened. This is used to select which matching algorithm
208 . to use to choose the back end. *}
209 . unsigned int target_defaulted : 1;
211 . {* ... and here: (``once'' means at least once). *}
212 . unsigned int opened_once : 1;
214 . {* Set if we have a locally maintained mtime value, rather than
215 . getting it from the file each time. *}
216 . unsigned int mtime_set : 1;
218 . {* Flag set if symbols from this BFD should not be exported. *}
219 . unsigned int no_export : 1;
221 . {* Remember when output has begun, to stop strange things
223 . unsigned int output_has_begun : 1;
225 . {* Have archive map. *}
226 . unsigned int has_armap : 1;
228 . {* Set if this is a thin archive. *}
229 . unsigned int is_thin_archive : 1;
231 . {* Set if this archive should not cache element positions. *}
232 . unsigned int no_element_cache : 1;
234 . {* Set if only required symbols should be added in the link hash table for
235 . this object. Used by VMS linkers. *}
236 . unsigned int selective_search : 1;
238 . {* Set if this is the linker output BFD. *}
239 . unsigned int is_linker_output : 1;
241 . {* Set if this is the linker input BFD. *}
242 . unsigned int is_linker_input : 1;
244 . {* If this is an input for a compiler plug-in library. *}
245 . ENUM_BITFIELD (bfd_plugin_format) plugin_format : 2;
247 . {* Set if this is a plugin output file. *}
248 . unsigned int lto_output : 1;
250 . {* Set if this is a slim LTO object not loaded with a compiler plugin. *}
251 . unsigned int lto_slim_object : 1;
253 . {* Do not attempt to modify this file. Set when detecting errors
254 . that BFD is not prepared to handle for objcopy/strip. *}
255 . unsigned int read_only : 1;
257 . {* Set to dummy BFD created when claimed by a compiler plug-in
259 . bfd *plugin_dummy_bfd;
261 . {* The offset of this bfd in the file, typically 0 if it is not
262 . contained in an archive. *}
265 . {* The origin in the archive of the proxy entry. This will
266 . normally be the same as origin, except for thin archives,
267 . when it will contain the current offset of the proxy in the
268 . thin archive rather than the offset of the bfd in its actual
270 . ufile_ptr proxy_origin;
272 . {* A hash table for section names. *}
273 . struct bfd_hash_table section_htab;
275 . {* Pointer to linked list of sections. *}
276 . struct bfd_section *sections;
278 . {* The last section on the section list. *}
279 . struct bfd_section *section_last;
281 . {* The number of sections. *}
282 . unsigned int section_count;
284 . {* The archive plugin file descriptor. *}
285 . int archive_plugin_fd;
287 . {* The number of opens on the archive plugin file descriptor. *}
288 . unsigned int archive_plugin_fd_open_count;
290 . {* A field used by _bfd_generic_link_add_archive_symbols. This will
291 . be used only for archive elements. *}
294 . {* The total size of memory from bfd_alloc. *}
295 . bfd_size_type alloc_size;
297 . {* Stuff only useful for object files:
298 . The start address. *}
299 . bfd_vma start_address;
301 . {* Symbol table for output BFD (with symcount entries).
302 . Also used by the linker to cache input BFD symbols. *}
303 . struct bfd_symbol **outsymbols;
305 . {* Used for input and output. *}
306 . unsigned int symcount;
308 . {* Used for slurped dynamic symbol tables. *}
309 . unsigned int dynsymcount;
311 . {* Pointer to structure which contains architecture information. *}
312 . const struct bfd_arch_info *arch_info;
314 . {* Cached length of file for bfd_get_size. 0 until bfd_get_size is
315 . called, 1 if stat returns an error or the file size is too large to
316 . return in ufile_ptr. Both 0 and 1 should be treated as "unknown". *}
319 . {* Stuff only useful for archives. *}
321 . struct bfd *my_archive; {* The containing archive BFD. *}
322 . struct bfd *archive_next; {* The next BFD in the archive. *}
323 . struct bfd *archive_head; {* The first BFD in the archive. *}
324 . struct bfd *nested_archives; {* List of nested archive in a flattened
328 . {* For input BFDs, a chain of BFDs involved in a link. *}
330 . {* For output BFD, the linker hash table. *}
331 . struct bfd_link_hash_table *hash;
334 . {* Used by the back end to hold private data. *}
337 . struct aout_data_struct *aout_data;
338 . struct artdata *aout_ar_data;
339 . struct coff_tdata *coff_obj_data;
340 . struct pe_tdata *pe_obj_data;
341 . struct xcoff_tdata *xcoff_obj_data;
342 . struct ecoff_tdata *ecoff_obj_data;
343 . struct srec_data_struct *srec_data;
344 . struct verilog_data_struct *verilog_data;
345 . struct ihex_data_struct *ihex_data;
346 . struct tekhex_data_struct *tekhex_data;
347 . struct elf_obj_tdata *elf_obj_data;
348 . struct mmo_data_struct *mmo_data;
349 . struct trad_core_struct *trad_core_data;
350 . struct som_data_struct *som_data;
351 . struct hpux_core_struct *hpux_core_data;
352 . struct hppabsd_core_struct *hppabsd_core_data;
353 . struct sgi_core_struct *sgi_core_data;
354 . struct lynx_core_struct *lynx_core_data;
355 . struct osf_core_struct *osf_core_data;
356 . struct cisco_core_struct *cisco_core_data;
357 . struct netbsd_core_struct *netbsd_core_data;
358 . struct mach_o_data_struct *mach_o_data;
359 . struct mach_o_fat_data_struct *mach_o_fat_data;
360 . struct plugin_data_struct *plugin_data;
361 . struct bfd_pef_data_struct *pef_data;
362 . struct bfd_pef_xlib_data_struct *pef_xlib_data;
363 . struct bfd_sym_data_struct *sym_data;
368 . {* Used by the application to hold private data. *}
371 . {* Where all the allocated stuff under this BFD goes. This is a
372 . struct objalloc *, but we use void * to avoid requiring the inclusion
376 . {* For input BFDs, the build ID, if the object has one. *}
377 . const struct bfd_build_id *build_id;
380 .static inline const char *
381 .bfd_get_filename (const bfd *abfd)
383 . return abfd->filename;
387 .bfd_get_cacheable (const bfd *abfd)
389 . return abfd->cacheable;
392 .static inline enum bfd_format
393 .bfd_get_format (const bfd *abfd)
395 . return abfd->format;
398 .static inline flagword
399 .bfd_get_file_flags (const bfd *abfd)
401 . return abfd->flags;
404 .static inline bfd_vma
405 .bfd_get_start_address (const bfd *abfd)
407 . return abfd->start_address;
410 .static inline unsigned int
411 .bfd_get_symcount (const bfd *abfd)
413 . return abfd->symcount;
416 .static inline unsigned int
417 .bfd_get_dynamic_symcount (const bfd *abfd)
419 . return abfd->dynsymcount;
422 .static inline struct bfd_symbol **
423 .bfd_get_outsymbols (const bfd *abfd)
425 . return abfd->outsymbols;
428 .static inline unsigned int
429 .bfd_count_sections (const bfd *abfd)
431 . return abfd->section_count;
435 .bfd_has_map (const bfd *abfd)
437 . return abfd->has_armap;
441 .bfd_is_thin_archive (const bfd *abfd)
443 . return abfd->is_thin_archive;
446 .static inline void *
447 .bfd_usrdata (const bfd *abfd)
449 . return abfd->usrdata;
452 .{* See note beside bfd_set_section_userdata. *}
454 .bfd_set_cacheable (bfd * abfd, bool val)
456 . abfd->cacheable = val;
461 .bfd_set_thin_archive (bfd *abfd, bool val)
463 . abfd->is_thin_archive = val;
467 .bfd_set_usrdata (bfd *abfd, void *val)
469 . abfd->usrdata = val;
472 .static inline asection *
473 .bfd_asymbol_section (const asymbol *sy)
475 . return sy->section;
478 .static inline bfd_vma
479 .bfd_asymbol_value (const asymbol *sy)
481 . return sy->section->vma + sy->value;
484 .static inline const char *
485 .bfd_asymbol_name (const asymbol *sy)
490 .static inline struct bfd *
491 .bfd_asymbol_bfd (const asymbol *sy)
493 . return sy->the_bfd;
497 .bfd_set_asymbol_name (asymbol *sy, const char *name)
502 .{* For input sections return the original size on disk of the
503 . section. For output sections return the current size. *}
504 .static inline bfd_size_type
505 .bfd_get_section_limit_octets (const bfd *abfd, const asection *sec)
507 . if (abfd->direction != write_direction && sec->rawsize != 0)
508 . return sec->rawsize;
512 .{* Find the address one past the end of SEC. *}
513 .static inline bfd_size_type
514 .bfd_get_section_limit (const bfd *abfd, const asection *sec)
516 . return (bfd_get_section_limit_octets (abfd, sec)
517 . / bfd_octets_per_byte (abfd, sec));
520 .{* For input sections return the larger of the current size and the
521 . original size on disk of the section. For output sections return
522 . the current size. *}
523 .static inline bfd_size_type
524 .bfd_get_section_alloc_size (const bfd *abfd, const asection *sec)
526 . if (abfd->direction != write_direction && sec->rawsize > sec->size)
527 . return sec->rawsize;
531 .{* Functions to handle insertion and deletion of a bfd's sections. These
532 . only handle the list pointers, ie. do not adjust section_count,
533 . target_index etc. *}
535 .bfd_section_list_remove (bfd *abfd, asection *s)
537 . asection *next = s->next;
538 . asection *prev = s->prev;
542 . abfd->sections = next;
546 . abfd->section_last = prev;
550 .bfd_section_list_append (bfd *abfd, asection *s)
553 . if (abfd->section_last)
555 . s->prev = abfd->section_last;
556 . abfd->section_last->next = s;
561 . abfd->sections = s;
563 . abfd->section_last = s;
567 .bfd_section_list_prepend (bfd *abfd, asection *s)
570 . if (abfd->sections)
572 . s->next = abfd->sections;
573 . abfd->sections->prev = s;
578 . abfd->section_last = s;
580 . abfd->sections = s;
584 .bfd_section_list_insert_after (bfd *abfd, asection *a, asection *s)
586 . asection *next = a->next;
593 . abfd->section_last = s;
597 .bfd_section_list_insert_before (bfd *abfd, asection *b, asection *s)
599 . asection *prev = b->prev;
606 . abfd->sections = s;
610 .bfd_section_removed_from_list (const bfd *abfd, const asection *s)
612 . return s->next ? s->next->prev != s : abfd->section_last != s;
621 #include "libiberty.h"
622 #include "demangle.h"
623 #include "safe-ctype.h"
626 #include "coff/internal.h"
627 #include "coff/sym.h"
629 #include "libecoff.h"
634 #define EXIT_FAILURE 1
638 /* provide storage for subsystem, stack and heap data which may have been
639 passed in on the command line. Ld puts this data into a bfd_link_info
640 struct which ultimately gets passed in to the bfd. When it arrives, copy
641 it to the following struct so that the data will be available in coffcode.h
642 where it is needed. The typedef's used are defined in bfd.h */
646 Error reporting, Initialization, typedef bfd, BFD front end
651 Most BFD functions return nonzero on success (check their
652 individual documentation for precise semantics). On an error,
653 they call <<bfd_set_error>> to set an error condition that callers
654 can check by calling <<bfd_get_error>>.
655 If that returns <<bfd_error_system_call>>, then check
658 The easiest way to report a BFD error to the user is to
662 Type <<bfd_error_type>>
664 The values returned by <<bfd_get_error>> are defined by the
665 enumerated type <<bfd_error_type>>.
669 .typedef enum bfd_error
671 . bfd_error_no_error = 0,
672 . bfd_error_system_call,
673 . bfd_error_invalid_target,
674 . bfd_error_wrong_format,
675 . bfd_error_wrong_object_format,
676 . bfd_error_invalid_operation,
677 . bfd_error_no_memory,
678 . bfd_error_no_symbols,
679 . bfd_error_no_armap,
680 . bfd_error_no_more_archived_files,
681 . bfd_error_malformed_archive,
682 . bfd_error_missing_dso,
683 . bfd_error_file_not_recognized,
684 . bfd_error_file_ambiguously_recognized,
685 . bfd_error_no_contents,
686 . bfd_error_nonrepresentable_section,
687 . bfd_error_no_debug_section,
688 . bfd_error_bad_value,
689 . bfd_error_file_truncated,
690 . bfd_error_file_too_big,
692 . bfd_error_on_input,
693 . bfd_error_invalid_error_code
699 static bfd_error_type bfd_error
;
700 static bfd
*input_bfd
;
701 static bfd_error_type input_error
;
703 const char *const bfd_errmsgs
[] =
706 N_("system call error"),
707 N_("invalid bfd target"),
708 N_("file in wrong format"),
709 N_("archive object file in wrong format"),
710 N_("invalid operation"),
711 N_("memory exhausted"),
713 N_("archive has no index; run ranlib to add one"),
714 N_("no more archived files"),
715 N_("malformed archive"),
716 N_("DSO missing from command line"),
717 N_("file format not recognized"),
718 N_("file format is ambiguous"),
719 N_("section has no contents"),
720 N_("nonrepresentable section on output"),
721 N_("symbol needs debug section which does not exist"),
723 N_("file truncated"),
725 N_("sorry, cannot handle this file"),
726 N_("error reading %s: %s"),
727 N_("#<invalid error code>")
735 bfd_error_type bfd_get_error (void);
738 Return the current BFD error condition.
752 void bfd_set_error (bfd_error_type error_tag);
755 Set the BFD error condition to be @var{error_tag}.
757 @var{error_tag} must not be bfd_error_on_input. Use
758 bfd_set_input_error for input errors instead.
762 bfd_set_error (bfd_error_type error_tag
)
764 bfd_error
= error_tag
;
765 if (bfd_error
>= bfd_error_on_input
)
774 void bfd_set_input_error (bfd *input, bfd_error_type error_tag);
778 Set the BFD error condition to be bfd_error_on_input.
779 @var{input} is the input bfd where the error occurred, and
780 @var{error_tag} the bfd_error_type error.
784 bfd_set_input_error (bfd
*input
, bfd_error_type error_tag
)
786 /* This is an error that occurred during bfd_close when writing an
787 archive, but on one of the input files. */
788 bfd_error
= bfd_error_on_input
;
790 input_error
= error_tag
;
791 if (input_error
>= bfd_error_on_input
)
800 const char *bfd_errmsg (bfd_error_type error_tag);
803 Return a string describing the error @var{error_tag}, or
804 the system error if @var{error_tag} is <<bfd_error_system_call>>.
808 bfd_errmsg (bfd_error_type error_tag
)
813 if (error_tag
== bfd_error_on_input
)
816 const char *msg
= bfd_errmsg (input_error
);
818 if (asprintf (&buf
, _(bfd_errmsgs
[error_tag
]),
819 bfd_get_filename (input_bfd
), msg
) != -1)
822 /* Ick, what to do on out of memory? */
826 if (error_tag
== bfd_error_system_call
)
827 return xstrerror (errno
);
829 if (error_tag
> bfd_error_invalid_error_code
)
830 error_tag
= bfd_error_invalid_error_code
; /* sanity check */
832 return _(bfd_errmsgs
[error_tag
]);
840 void bfd_perror (const char *message);
843 Print to the standard error stream a string describing the
844 last BFD error that occurred, or the last system error if
845 the last BFD error was a system call failure. If @var{message}
846 is non-NULL and non-empty, the error string printed is preceded
847 by @var{message}, a colon, and a space. It is followed by a newline.
851 bfd_perror (const char *message
)
854 if (message
== NULL
|| *message
== '\0')
855 fprintf (stderr
, "%s\n", bfd_errmsg (bfd_get_error ()));
857 fprintf (stderr
, "%s: %s\n", message
, bfd_errmsg (bfd_get_error ()));
865 Some BFD functions want to print messages describing the
866 problem. They call a BFD error handler function. This
867 function may be overridden by the program.
869 The BFD error handler acts like vprintf.
873 .typedef void (*bfd_error_handler_type) (const char *, va_list);
877 /* The program name used when printing BFD error messages. */
879 static const char *_bfd_error_program_name
;
881 /* Support for positional parameters. */
883 union _bfd_doprnt_args
903 /* Maximum number of _bfd_error_handler args. Don't increase this
904 without changing the code handling positional parameters. */
907 /* This macro and _bfd_doprnt taken from libiberty _doprnt.c, tidied a
908 little and extended to handle '%pA', '%pB' and positional parameters. */
910 #define PRINT_TYPE(TYPE, FIELD) \
913 TYPE value = (TYPE) args[arg_no].FIELD; \
914 result = print (stream, specifier, value); \
917 typedef int (*print_func
) (void *, const char *, ...);
920 _bfd_doprnt (print_func print
, void *stream
, const char *format
,
921 union _bfd_doprnt_args
*args
)
923 const char *ptr
= format
;
925 int total_printed
= 0;
926 unsigned int arg_count
= 0;
934 /* While we have regular characters, print them. */
935 char *end
= strchr (ptr
, '%');
937 result
= print (stream
, "%.*s", (int) (end
- ptr
), ptr
);
939 result
= print (stream
, "%s", ptr
);
942 else if (ptr
[1] == '%')
950 /* We have a format specifier! */
951 char *sptr
= specifier
;
952 int wide_width
= 0, short_width
= 0;
955 /* Copy the % and move forward. */
958 /* Check for a positional parameter. */
960 if (*ptr
!= '0' && ISDIGIT (*ptr
) && ptr
[1] == '$')
966 /* Move past flags. */
967 while (strchr ("-+ #0'I", *ptr
))
973 unsigned int arg_index
;
976 arg_index
= arg_count
;
977 if (*ptr
!= '0' && ISDIGIT (*ptr
) && ptr
[1] == '$')
979 arg_index
= *ptr
- '1';
982 value
= abs (args
[arg_index
].i
);
984 sptr
+= sprintf (sptr
, "%d", value
);
987 /* Handle explicit numeric value. */
988 while (ISDIGIT (*ptr
))
994 /* Copy and go past the period. */
999 unsigned int arg_index
;
1002 arg_index
= arg_count
;
1003 if (*ptr
!= '0' && ISDIGIT (*ptr
) && ptr
[1] == '$')
1005 arg_index
= *ptr
- '1';
1008 value
= abs (args
[arg_index
].i
);
1010 sptr
+= sprintf (sptr
, "%d", value
);
1013 /* Handle explicit numeric value. */
1014 while (ISDIGIT (*ptr
))
1017 while (strchr ("hlL", *ptr
))
1036 /* Copy the type specifier, and NULL terminate. */
1039 if ((int) arg_no
< 0)
1052 /* Short values are promoted to int, so just copy it
1053 as an int and trust the C library printf to cast it
1054 to the right width. */
1056 PRINT_TYPE (int, i
);
1062 PRINT_TYPE (int, i
);
1065 PRINT_TYPE (long, l
);
1069 #if defined (__MSVCRT__)
1076 PRINT_TYPE (long long, ll
);
1088 if (wide_width
== 0)
1089 PRINT_TYPE (double, d
);
1091 PRINT_TYPE (long double, ld
);
1095 PRINT_TYPE (char *, p
);
1102 const char *group
= NULL
;
1103 struct coff_comdat_info
*ci
;
1106 sec
= (asection
*) args
[arg_no
].p
;
1108 /* Invoking %pA with a null section pointer is an
1113 && bfd_get_flavour (abfd
) == bfd_target_elf_flavour
1114 && elf_next_in_group (sec
) != NULL
1115 && (sec
->flags
& SEC_GROUP
) == 0)
1116 group
= elf_group_name (sec
);
1117 else if (abfd
!= NULL
1118 && bfd_get_flavour (abfd
) == bfd_target_coff_flavour
1119 && (ci
= bfd_coff_get_comdat_section (sec
->owner
,
1123 result
= print (stream
, "%s[%s]", sec
->name
, group
);
1125 result
= print (stream
, "%s", sec
->name
);
1127 else if (*ptr
== 'B')
1132 abfd
= (bfd
*) args
[arg_no
].p
;
1134 /* Invoking %pB with a null bfd pointer is an
1137 else if (abfd
->my_archive
1138 && !bfd_is_thin_archive (abfd
->my_archive
))
1139 result
= print (stream
, "%s(%s)",
1140 bfd_get_filename (abfd
->my_archive
),
1141 bfd_get_filename (abfd
));
1143 result
= print (stream
, "%s", bfd_get_filename (abfd
));
1146 PRINT_TYPE (void *, p
);
1155 total_printed
+= result
;
1158 return total_printed
;
1161 /* First pass over FORMAT to gather ARGS. Returns number of args. */
1164 _bfd_doprnt_scan (const char *format
, va_list ap
, union _bfd_doprnt_args
*args
)
1166 const char *ptr
= format
;
1167 unsigned int arg_count
= 0;
1169 for (unsigned int i
= 0; i
< MAX_ARGS
; i
++)
1172 while (*ptr
!= '\0')
1176 ptr
= strchr (ptr
, '%');
1180 else if (ptr
[1] == '%')
1184 int wide_width
= 0, short_width
= 0;
1185 unsigned int arg_no
;
1190 /* Check for a positional parameter. */
1192 if (*ptr
!= '0' && ISDIGIT (*ptr
) && ptr
[1] == '$')
1194 arg_no
= *ptr
- '1';
1198 /* Move past flags. */
1199 while (strchr ("-+ #0'I", *ptr
))
1204 unsigned int arg_index
;
1207 arg_index
= arg_count
;
1208 if (*ptr
!= '0' && ISDIGIT (*ptr
) && ptr
[1] == '$')
1210 arg_index
= *ptr
- '1';
1213 if (arg_index
>= MAX_ARGS
)
1215 args
[arg_index
].type
= Int
;
1219 /* Handle explicit numeric value. */
1220 while (ISDIGIT (*ptr
))
1229 unsigned int arg_index
;
1232 arg_index
= arg_count
;
1233 if (*ptr
!= '0' && ISDIGIT (*ptr
) && ptr
[1] == '$')
1235 arg_index
= *ptr
- '1';
1238 if (arg_index
>= MAX_ARGS
)
1240 args
[arg_index
].type
= Int
;
1244 /* Handle explicit numeric value. */
1245 while (ISDIGIT (*ptr
))
1248 while (strchr ("hlL", *ptr
))
1268 if ((int) arg_no
< 0)
1296 arg_type
= LongLong
;
1308 if (wide_width
== 0)
1311 arg_type
= LongDouble
;
1318 if (*ptr
== 'A' || *ptr
== 'B')
1326 if (arg_no
>= MAX_ARGS
)
1328 args
[arg_no
].type
= arg_type
;
1333 for (unsigned int i
= 0; i
< arg_count
; i
++)
1335 switch (args
[i
].type
)
1338 args
[i
].i
= va_arg (ap
, int);
1341 args
[i
].l
= va_arg (ap
, long);
1344 args
[i
].ll
= va_arg (ap
, long long);
1347 args
[i
].d
= va_arg (ap
, double);
1350 args
[i
].ld
= va_arg (ap
, long double);
1353 args
[i
].p
= va_arg (ap
, void *);
1363 /* The standard error handler that prints to stderr. */
1366 error_handler_fprintf (const char *fmt
, va_list ap
)
1368 union _bfd_doprnt_args args
[MAX_ARGS
];
1370 _bfd_doprnt_scan (fmt
, ap
, args
);
1372 /* PR 4992: Don't interrupt output being sent to stdout. */
1375 fprintf (stderr
, "%s: ", _bfd_get_error_program_name ());
1377 _bfd_doprnt ((print_func
) fprintf
, stderr
, fmt
, args
);
1379 /* On AIX, putc is implemented as a macro that triggers a -Wunused-value
1380 warning, so use the fputc function to avoid it. */
1381 fputc ('\n', stderr
);
1385 /* Control printing to a string buffer. */
1392 /* An fprintf like function that instead prints to a string buffer. */
1395 err_sprintf (void *stream
, const char *fmt
, ...)
1397 struct buf_stream
*s
= stream
;
1401 int total
= vsnprintf (s
->ptr
, s
->left
, fmt
, ap
);
1405 else if (total
> s
->left
)
1418 /* Communicate the bfd processed by bfd_check_format_matches to the
1419 error handling function error_handler_sprintf. */
1421 static bfd
*error_handler_bfd
;
1423 /* An error handler that prints to a string, then dups that string to
1424 a per-xvec cache. */
1427 error_handler_sprintf (const char *fmt
, va_list ap
)
1429 union _bfd_doprnt_args args
[MAX_ARGS
];
1430 char error_buf
[1024];
1431 struct buf_stream error_stream
;
1433 _bfd_doprnt_scan (fmt
, ap
, args
);
1435 error_stream
.ptr
= error_buf
;
1436 error_stream
.left
= sizeof (error_buf
);
1437 _bfd_doprnt (err_sprintf
, &error_stream
, fmt
, args
);
1439 size_t len
= error_stream
.ptr
- error_buf
;
1440 struct per_xvec_message
**warn
1441 = _bfd_per_xvec_warn (error_handler_bfd
->xvec
, len
+ 1);
1444 memcpy ((*warn
)->message
, error_buf
, len
);
1445 (*warn
)->message
[len
] = 0;
1449 /* This is a function pointer to the routine which should handle BFD
1450 error messages. It is called when a BFD routine encounters an
1451 error for which it wants to print a message. Going through a
1452 function pointer permits a program linked against BFD to intercept
1453 the messages and deal with them itself. */
1455 static bfd_error_handler_type _bfd_error_internal
= error_handler_fprintf
;
1462 void _bfd_error_handler (const char *fmt, ...) ATTRIBUTE_PRINTF_1;
1465 This is the default routine to handle BFD error messages.
1466 Like fprintf (stderr, ...), but also handles some extra format
1469 %pA section name from section. For group components, prints
1471 %pB file name from bfd. For archive components, prints
1474 Beware: Only supports a maximum of 9 format arguments.
1478 _bfd_error_handler (const char *fmt
, ...)
1483 _bfd_error_internal (fmt
, ap
);
1489 bfd_set_error_handler
1492 bfd_error_handler_type bfd_set_error_handler (bfd_error_handler_type);
1495 Set the BFD error handler function. Returns the previous
1499 bfd_error_handler_type
1500 bfd_set_error_handler (bfd_error_handler_type pnew
)
1502 bfd_error_handler_type pold
;
1504 pold
= _bfd_error_internal
;
1505 _bfd_error_internal
= pnew
;
1511 _bfd_set_error_handler_caching
1514 bfd_error_handler_type _bfd_set_error_handler_caching (bfd *);
1517 Set the BFD error handler function to one that stores messages
1518 to the per_xvec_warn array. Returns the previous function.
1521 bfd_error_handler_type
1522 _bfd_set_error_handler_caching (bfd
*abfd
)
1524 error_handler_bfd
= abfd
;
1525 return bfd_set_error_handler (error_handler_sprintf
);
1530 bfd_set_error_program_name
1533 void bfd_set_error_program_name (const char *);
1536 Set the program name to use when printing a BFD error. This
1537 is printed before the error message followed by a colon and
1538 space. The string must not be changed after it is passed to
1543 bfd_set_error_program_name (const char *name
)
1545 _bfd_error_program_name
= name
;
1550 _bfd_get_error_program_name
1553 const char *_bfd_get_error_program_name (void);
1556 Get the program name used when printing a BFD error.
1560 _bfd_get_error_program_name (void)
1562 if (_bfd_error_program_name
!= NULL
)
1563 return _bfd_error_program_name
;
1571 If BFD finds an internal inconsistency, the bfd assert
1572 handler is called with information on the BFD version, BFD
1573 source file and line. If this happens, most programs linked
1574 against BFD are expected to want to exit with an error, or mark
1575 the current BFD operation as failed, so it is recommended to
1576 override the default handler, which just calls
1577 _bfd_error_handler and continues.
1581 .typedef void (*bfd_assert_handler_type) (const char *bfd_formatmsg,
1582 . const char *bfd_version,
1583 . const char *bfd_file,
1588 /* Note the use of bfd_ prefix on the parameter names above: we want to
1589 show which one is the message and which is the version by naming the
1590 parameters, but avoid polluting the program-using-bfd namespace as
1591 the typedef is visible in the exported headers that the program
1592 includes. Below, it's just for consistency. */
1595 _bfd_default_assert_handler (const char *bfd_formatmsg
,
1596 const char *bfd_version
,
1597 const char *bfd_file
,
1601 _bfd_error_handler (bfd_formatmsg
, bfd_version
, bfd_file
, bfd_line
);
1604 /* Similar to _bfd_error_handler, a program can decide to exit on an
1605 internal BFD error. We use a non-variadic type to simplify passing
1606 on parameters to other functions, e.g. _bfd_error_handler. */
1608 static bfd_assert_handler_type _bfd_assert_handler
= _bfd_default_assert_handler
;
1612 bfd_set_assert_handler
1615 bfd_assert_handler_type bfd_set_assert_handler (bfd_assert_handler_type);
1618 Set the BFD assert handler function. Returns the previous
1622 bfd_assert_handler_type
1623 bfd_set_assert_handler (bfd_assert_handler_type pnew
)
1625 bfd_assert_handler_type pold
;
1627 pold
= _bfd_assert_handler
;
1628 _bfd_assert_handler
= pnew
;
1634 Initialization, Miscellaneous, Error reporting, BFD front end
1640 unsigned int bfd_init (void);
1643 This routine must be called before any other BFD function to
1644 initialize magical internal data structures.
1645 Returns a magic number, which may be used to check
1646 that the bfd library is configured as expected by users.
1648 .{* Value returned by bfd_init. *}
1649 .#define BFD_INIT_MAGIC (sizeof (struct bfd_section))
1656 bfd_error
= bfd_error_no_error
;
1658 input_error
= bfd_error_no_error
;
1659 _bfd_error_program_name
= NULL
;
1660 _bfd_error_internal
= error_handler_fprintf
;
1661 _bfd_assert_handler
= _bfd_default_assert_handler
;
1663 return BFD_INIT_MAGIC
;
1668 Miscellaneous, Memory Usage, Initialization, BFD front end
1674 Miscellaneous functions
1679 bfd_get_reloc_upper_bound
1682 long bfd_get_reloc_upper_bound (bfd *abfd, asection *sect);
1685 Return the number of bytes required to store the
1686 relocation information associated with section @var{sect}
1687 attached to bfd @var{abfd}. If an error occurs, return -1.
1692 bfd_get_reloc_upper_bound (bfd
*abfd
, sec_ptr asect
)
1694 if (abfd
->format
!= bfd_object
)
1696 bfd_set_error (bfd_error_invalid_operation
);
1700 return BFD_SEND (abfd
, _get_reloc_upper_bound
, (abfd
, asect
));
1705 bfd_canonicalize_reloc
1708 long bfd_canonicalize_reloc
1709 (bfd *abfd, asection *sec, arelent **loc, asymbol **syms);
1712 Call the back end associated with the open BFD
1713 @var{abfd} and translate the external form of the relocation
1714 information attached to @var{sec} into the internal canonical
1715 form. Place the table into memory at @var{loc}, which has
1716 been preallocated, usually by a call to
1717 <<bfd_get_reloc_upper_bound>>. Returns the number of relocs, or
1720 The @var{syms} table is also needed for horrible internal magic
1725 bfd_canonicalize_reloc (bfd
*abfd
,
1730 if (abfd
->format
!= bfd_object
)
1732 bfd_set_error (bfd_error_invalid_operation
);
1736 return BFD_SEND (abfd
, _bfd_canonicalize_reloc
,
1737 (abfd
, asect
, location
, symbols
));
1746 (bfd *abfd, asection *sec, arelent **rel, unsigned int count);
1749 Set the relocation pointer and count within
1750 section @var{sec} to the values @var{rel} and @var{count}.
1751 The argument @var{abfd} is ignored.
1753 .#define bfd_set_reloc(abfd, asect, location, count) \
1754 . BFD_SEND (abfd, _bfd_set_reloc, (abfd, asect, location, count))
1762 bool bfd_set_file_flags (bfd *abfd, flagword flags);
1765 Set the flag word in the BFD @var{abfd} to the value @var{flags}.
1767 Possible errors are:
1768 o <<bfd_error_wrong_format>> - The target bfd was not of object format.
1769 o <<bfd_error_invalid_operation>> - The target bfd was open for reading.
1770 o <<bfd_error_invalid_operation>> -
1771 The flag word contained a bit which was not applicable to the
1772 type of file. E.g., an attempt was made to set the <<D_PAGED>> bit
1773 on a BFD format which does not support demand paging.
1778 bfd_set_file_flags (bfd
*abfd
, flagword flags
)
1780 if (abfd
->format
!= bfd_object
)
1782 bfd_set_error (bfd_error_wrong_format
);
1786 if (bfd_read_p (abfd
))
1788 bfd_set_error (bfd_error_invalid_operation
);
1792 abfd
->flags
= flags
;
1793 if ((flags
& bfd_applicable_file_flags (abfd
)) != flags
)
1795 bfd_set_error (bfd_error_invalid_operation
);
1803 bfd_assert (const char *file
, int line
)
1805 /* xgettext:c-format */
1806 (*_bfd_assert_handler
) (_("BFD %s assertion fail %s:%d"),
1807 BFD_VERSION_STRING
, file
, line
);
1810 /* A more or less friendly abort message. In libbfd.h abort is
1811 defined to call this function. */
1814 _bfd_abort (const char *file
, int line
, const char *fn
)
1818 /* xgettext:c-format */
1819 (_("BFD %s internal error, aborting at %s:%d in %s\n"),
1820 BFD_VERSION_STRING
, file
, line
, fn
);
1823 /* xgettext:c-format */
1824 (_("BFD %s internal error, aborting at %s:%d\n"),
1825 BFD_VERSION_STRING
, file
, line
);
1826 _bfd_error_handler (_("Please report this bug.\n"));
1827 _exit (EXIT_FAILURE
);
1835 int bfd_get_arch_size (bfd *abfd);
1838 Returns the normalized architecture address size, in bits, as
1839 determined by the object file's format. By normalized, we mean
1840 either 32 or 64. For ELF, this information is included in the
1841 header. Use bfd_arch_bits_per_address for number of bits in
1842 the architecture address.
1844 Returns the arch size in bits if known, <<-1>> otherwise.
1848 bfd_get_arch_size (bfd
*abfd
)
1850 if (abfd
->xvec
->flavour
== bfd_target_elf_flavour
)
1851 return get_elf_backend_data (abfd
)->s
->arch_size
;
1853 return bfd_arch_bits_per_address (abfd
) > 32 ? 64 : 32;
1858 bfd_get_sign_extend_vma
1861 int bfd_get_sign_extend_vma (bfd *abfd);
1864 Indicates if the target architecture "naturally" sign extends
1865 an address. Some architectures implicitly sign extend address
1866 values when they are converted to types larger than the size
1867 of an address. For instance, bfd_get_start_address() will
1868 return an address sign extended to fill a bfd_vma when this is
1871 Returns <<1>> if the target architecture is known to sign
1872 extend addresses, <<0>> if the target architecture is known to
1873 not sign extend addresses, and <<-1>> otherwise.
1877 bfd_get_sign_extend_vma (bfd
*abfd
)
1881 if (bfd_get_flavour (abfd
) == bfd_target_elf_flavour
)
1882 return get_elf_backend_data (abfd
)->sign_extend_vma
;
1884 name
= bfd_get_target (abfd
);
1886 /* Return a proper value for DJGPP & PE COFF.
1887 This function is required for DWARF2 support, but there is
1888 no place to store this information in the COFF back end.
1889 Should enough other COFF targets add support for DWARF2,
1890 a place will have to be found. Until then, this hack will do. */
1891 if (startswith (name
, "coff-go32")
1892 || strcmp (name
, "pe-i386") == 0
1893 || strcmp (name
, "pei-i386") == 0
1894 || strcmp (name
, "pe-x86-64") == 0
1895 || strcmp (name
, "pei-x86-64") == 0
1896 || strcmp (name
, "pe-aarch64-little") == 0
1897 || strcmp (name
, "pei-aarch64-little") == 0
1898 || strcmp (name
, "pe-arm-wince-little") == 0
1899 || strcmp (name
, "pei-arm-wince-little") == 0
1900 || strcmp (name
, "pei-loongarch64") == 0
1901 || strcmp (name
, "aixcoff-rs6000") == 0
1902 || strcmp (name
, "aix5coff64-rs6000") == 0)
1905 if (startswith (name
, "mach-o"))
1908 bfd_set_error (bfd_error_wrong_format
);
1914 bfd_set_start_address
1917 bool bfd_set_start_address (bfd *abfd, bfd_vma vma);
1920 Make @var{vma} the entry point of output BFD @var{abfd}.
1922 Returns <<TRUE>> on success, <<FALSE>> otherwise.
1926 bfd_set_start_address (bfd
*abfd
, bfd_vma vma
)
1928 abfd
->start_address
= vma
;
1937 unsigned int bfd_get_gp_size (bfd *abfd);
1940 Return the maximum size of objects to be optimized using the GP
1941 register under MIPS ECOFF. This is typically set by the <<-G>>
1942 argument to the compiler, assembler or linker.
1946 bfd_get_gp_size (bfd
*abfd
)
1948 if (abfd
->format
== bfd_object
)
1950 if (abfd
->xvec
->flavour
== bfd_target_ecoff_flavour
)
1951 return ecoff_data (abfd
)->gp_size
;
1952 else if (abfd
->xvec
->flavour
== bfd_target_elf_flavour
)
1953 return elf_gp_size (abfd
);
1963 void bfd_set_gp_size (bfd *abfd, unsigned int i);
1966 Set the maximum size of objects to be optimized using the GP
1967 register under ECOFF or MIPS ELF. This is typically set by
1968 the <<-G>> argument to the compiler, assembler or linker.
1972 bfd_set_gp_size (bfd
*abfd
, unsigned int i
)
1974 /* Don't try to set GP size on an archive or core file! */
1975 if (abfd
->format
!= bfd_object
)
1978 if (abfd
->xvec
->flavour
== bfd_target_ecoff_flavour
)
1979 ecoff_data (abfd
)->gp_size
= i
;
1980 else if (abfd
->xvec
->flavour
== bfd_target_elf_flavour
)
1981 elf_gp_size (abfd
) = i
;
1984 /* Get the GP value. This is an internal function used by some of the
1985 relocation special_function routines on targets which support a GP
1989 _bfd_get_gp_value (bfd
*abfd
)
1993 if (abfd
->format
!= bfd_object
)
1996 if (abfd
->xvec
->flavour
== bfd_target_ecoff_flavour
)
1997 return ecoff_data (abfd
)->gp
;
1998 else if (abfd
->xvec
->flavour
== bfd_target_elf_flavour
)
1999 return elf_gp (abfd
);
2004 /* Set the GP value. */
2007 _bfd_set_gp_value (bfd
*abfd
, bfd_vma v
)
2011 if (abfd
->format
!= bfd_object
)
2014 if (abfd
->xvec
->flavour
== bfd_target_ecoff_flavour
)
2015 ecoff_data (abfd
)->gp
= v
;
2016 else if (abfd
->xvec
->flavour
== bfd_target_elf_flavour
)
2025 void bfd_set_gp_value (bfd *abfd, bfd_vma v);
2028 Allow external access to the fucntion to set the GP value.
2029 This is specifically added for gdb-compile support.
2033 bfd_set_gp_value (bfd
*abfd
, bfd_vma v
)
2035 _bfd_set_gp_value (abfd
, v
);
2043 bfd_vma bfd_scan_vma (const char *string, const char **end, int base);
2046 Convert, like <<strtoul>>, a numerical expression
2047 @var{string} into a <<bfd_vma>> integer, and return that integer.
2048 (Though without as many bells and whistles as <<strtoul>>.)
2049 The expression is assumed to be unsigned (i.e., positive).
2050 If given a @var{base}, it is used as the base for conversion.
2051 A base of 0 causes the function to interpret the string
2052 in hex if a leading "0x" or "0X" is found, otherwise
2053 in octal if a leading zero is found, otherwise in decimal.
2055 If the value would overflow, the maximum <<bfd_vma>> value is
2060 bfd_scan_vma (const char *string
, const char **end
, int base
)
2064 unsigned int cutlim
;
2067 /* Let the host do it if possible. */
2068 if (sizeof (bfd_vma
) <= sizeof (unsigned long))
2069 return strtoul (string
, (char **) end
, base
);
2071 if (sizeof (bfd_vma
) <= sizeof (unsigned long long))
2072 return strtoull (string
, (char **) end
, base
);
2076 if (string
[0] == '0')
2078 if ((string
[1] == 'x') || (string
[1] == 'X'))
2085 if ((base
< 2) || (base
> 36))
2090 && (string
[1] == 'x' || string
[1] == 'X')
2091 && ISXDIGIT (string
[2]))
2096 cutoff
= (~ (bfd_vma
) 0) / (bfd_vma
) base
;
2097 cutlim
= (~ (bfd_vma
) 0) % (bfd_vma
) base
;
2105 if (ISDIGIT (digit
))
2106 digit
= digit
- '0';
2107 else if (ISALPHA (digit
))
2108 digit
= TOUPPER (digit
) - 'A' + 10;
2111 if (digit
>= (unsigned int) base
)
2113 if (value
> cutoff
|| (value
== cutoff
&& digit
> cutlim
))
2115 value
= value
* base
+ digit
;
2120 value
= ~ (bfd_vma
) 0;
2130 bfd_copy_private_header_data
2133 bool bfd_copy_private_header_data (bfd *ibfd, bfd *obfd);
2136 Copy private BFD header information from the BFD @var{ibfd} to the
2137 the BFD @var{obfd}. This copies information that may require
2138 sections to exist, but does not require symbol tables. Return
2139 <<true>> on success, <<false>> on error.
2140 Possible error returns are:
2142 o <<bfd_error_no_memory>> -
2143 Not enough memory exists to create private data for @var{obfd}.
2145 .#define bfd_copy_private_header_data(ibfd, obfd) \
2146 . BFD_SEND (obfd, _bfd_copy_private_header_data, \
2153 bfd_copy_private_bfd_data
2156 bool bfd_copy_private_bfd_data (bfd *ibfd, bfd *obfd);
2159 Copy private BFD information from the BFD @var{ibfd} to the
2160 the BFD @var{obfd}. Return <<TRUE>> on success, <<FALSE>> on error.
2161 Possible error returns are:
2163 o <<bfd_error_no_memory>> -
2164 Not enough memory exists to create private data for @var{obfd}.
2166 .#define bfd_copy_private_bfd_data(ibfd, obfd) \
2167 . BFD_SEND (obfd, _bfd_copy_private_bfd_data, \
2174 bfd_set_private_flags
2177 bool bfd_set_private_flags (bfd *abfd, flagword flags);
2180 Set private BFD flag information in the BFD @var{abfd}.
2181 Return <<TRUE>> on success, <<FALSE>> on error. Possible error
2184 o <<bfd_error_no_memory>> -
2185 Not enough memory exists to create private data for @var{obfd}.
2187 .#define bfd_set_private_flags(abfd, flags) \
2188 . BFD_SEND (abfd, _bfd_set_private_flags, (abfd, flags))
2197 The following functions exist but have not yet been documented.
2199 .#define bfd_sizeof_headers(abfd, info) \
2200 . BFD_SEND (abfd, _bfd_sizeof_headers, (abfd, info))
2202 .#define bfd_find_nearest_line(abfd, sec, syms, off, file, func, line) \
2203 . BFD_SEND (abfd, _bfd_find_nearest_line, \
2204 . (abfd, syms, sec, off, file, func, line, NULL))
2206 .#define bfd_find_nearest_line_with_alt(abfd, alt_filename, sec, syms, off, \
2207 . file, func, line, disc) \
2208 . BFD_SEND (abfd, _bfd_find_nearest_line_with_alt, \
2209 . (abfd, alt_filename, syms, sec, off, file, func, line, disc))
2211 .#define bfd_find_nearest_line_discriminator(abfd, sec, syms, off, file, func, \
2213 . BFD_SEND (abfd, _bfd_find_nearest_line, \
2214 . (abfd, syms, sec, off, file, func, line, disc))
2216 .#define bfd_find_line(abfd, syms, sym, file, line) \
2217 . BFD_SEND (abfd, _bfd_find_line, \
2218 . (abfd, syms, sym, file, line))
2220 .#define bfd_find_inliner_info(abfd, file, func, line) \
2221 . BFD_SEND (abfd, _bfd_find_inliner_info, \
2222 . (abfd, file, func, line))
2224 .#define bfd_debug_info_start(abfd) \
2225 . BFD_SEND (abfd, _bfd_debug_info_start, (abfd))
2227 .#define bfd_debug_info_end(abfd) \
2228 . BFD_SEND (abfd, _bfd_debug_info_end, (abfd))
2230 .#define bfd_debug_info_accumulate(abfd, section) \
2231 . BFD_SEND (abfd, _bfd_debug_info_accumulate, (abfd, section))
2233 .#define bfd_stat_arch_elt(abfd, stat) \
2234 . BFD_SEND (abfd->my_archive ? abfd->my_archive : abfd, \
2235 . _bfd_stat_arch_elt, (abfd, stat))
2237 .#define bfd_update_armap_timestamp(abfd) \
2238 . BFD_SEND (abfd, _bfd_update_armap_timestamp, (abfd))
2240 .#define bfd_set_arch_mach(abfd, arch, mach)\
2241 . BFD_SEND ( abfd, _bfd_set_arch_mach, (abfd, arch, mach))
2243 .#define bfd_relax_section(abfd, section, link_info, again) \
2244 . BFD_SEND (abfd, _bfd_relax_section, (abfd, section, link_info, again))
2246 .#define bfd_gc_sections(abfd, link_info) \
2247 . BFD_SEND (abfd, _bfd_gc_sections, (abfd, link_info))
2249 .#define bfd_lookup_section_flags(link_info, flag_info, section) \
2250 . BFD_SEND (abfd, _bfd_lookup_section_flags, (link_info, flag_info, section))
2252 .#define bfd_merge_sections(abfd, link_info) \
2253 . BFD_SEND (abfd, _bfd_merge_sections, (abfd, link_info))
2255 .#define bfd_is_group_section(abfd, sec) \
2256 . BFD_SEND (abfd, _bfd_is_group_section, (abfd, sec))
2258 .#define bfd_group_name(abfd, sec) \
2259 . BFD_SEND (abfd, _bfd_group_name, (abfd, sec))
2261 .#define bfd_discard_group(abfd, sec) \
2262 . BFD_SEND (abfd, _bfd_discard_group, (abfd, sec))
2264 .#define bfd_link_hash_table_create(abfd) \
2265 . BFD_SEND (abfd, _bfd_link_hash_table_create, (abfd))
2267 .#define bfd_link_add_symbols(abfd, info) \
2268 . BFD_SEND (abfd, _bfd_link_add_symbols, (abfd, info))
2270 .#define bfd_link_just_syms(abfd, sec, info) \
2271 . BFD_SEND (abfd, _bfd_link_just_syms, (sec, info))
2273 .#define bfd_final_link(abfd, info) \
2274 . BFD_SEND (abfd, _bfd_final_link, (abfd, info))
2276 .#define bfd_free_cached_info(abfd) \
2277 . BFD_SEND (abfd, _bfd_free_cached_info, (abfd))
2279 .#define bfd_get_dynamic_symtab_upper_bound(abfd) \
2280 . BFD_SEND (abfd, _bfd_get_dynamic_symtab_upper_bound, (abfd))
2282 .#define bfd_print_private_bfd_data(abfd, file)\
2283 . BFD_SEND (abfd, _bfd_print_private_bfd_data, (abfd, file))
2285 .#define bfd_canonicalize_dynamic_symtab(abfd, asymbols) \
2286 . BFD_SEND (abfd, _bfd_canonicalize_dynamic_symtab, (abfd, asymbols))
2288 .#define bfd_get_synthetic_symtab(abfd, count, syms, dyncount, dynsyms, ret) \
2289 . BFD_SEND (abfd, _bfd_get_synthetic_symtab, (abfd, count, syms, \
2290 . dyncount, dynsyms, ret))
2292 .#define bfd_get_dynamic_reloc_upper_bound(abfd) \
2293 . BFD_SEND (abfd, _bfd_get_dynamic_reloc_upper_bound, (abfd))
2295 .#define bfd_canonicalize_dynamic_reloc(abfd, arels, asyms) \
2296 . BFD_SEND (abfd, _bfd_canonicalize_dynamic_reloc, (abfd, arels, asyms))
2298 .extern bfd_byte *bfd_get_relocated_section_contents
2299 . (bfd *, struct bfd_link_info *, struct bfd_link_order *, bfd_byte *,
2300 . bool, asymbol **);
2306 bfd_get_relocated_section_contents (bfd
*abfd
,
2307 struct bfd_link_info
*link_info
,
2308 struct bfd_link_order
*link_order
,
2314 bfd_byte
*(*fn
) (bfd
*, struct bfd_link_info
*, struct bfd_link_order
*,
2315 bfd_byte
*, bool, asymbol
**);
2317 if (link_order
->type
== bfd_indirect_link_order
)
2319 abfd2
= link_order
->u
.indirect
.section
->owner
;
2326 fn
= abfd2
->xvec
->_bfd_get_relocated_section_contents
;
2328 return (*fn
) (abfd
, link_info
, link_order
, data
, relocatable
, symbols
);
2331 /* Record information about an ELF program header. */
2334 bfd_record_phdr (bfd
*abfd
,
2339 bfd_vma at
, /* Bytes. */
2340 bool includes_filehdr
,
2341 bool includes_phdrs
,
2345 struct elf_segment_map
*m
, **pm
;
2347 unsigned int opb
= bfd_octets_per_byte (abfd
, NULL
);
2349 if (bfd_get_flavour (abfd
) != bfd_target_elf_flavour
)
2352 amt
= sizeof (struct elf_segment_map
);
2353 amt
+= ((bfd_size_type
) count
- 1) * sizeof (asection
*);
2354 m
= (struct elf_segment_map
*) bfd_zalloc (abfd
, amt
);
2360 m
->p_paddr
= at
* opb
;
2361 m
->p_flags_valid
= flags_valid
;
2362 m
->p_paddr_valid
= at_valid
;
2363 m
->includes_filehdr
= includes_filehdr
;
2364 m
->includes_phdrs
= includes_phdrs
;
2367 memcpy (m
->sections
, secs
, count
* sizeof (asection
*));
2369 for (pm
= &elf_seg_map (abfd
); *pm
!= NULL
; pm
= &(*pm
)->next
)
2377 /* Return true iff this target is 32-bit. */
2382 if (bfd_get_flavour (abfd
) == bfd_target_elf_flavour
)
2384 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
2385 return bed
->s
->elfclass
== ELFCLASS32
;
2388 /* For non-ELF targets, use architecture information. */
2389 return bfd_arch_bits_per_address (abfd
) <= 32;
2393 /* bfd_sprintf_vma and bfd_fprintf_vma display an address in the
2394 target's address size. */
2397 bfd_sprintf_vma (bfd
*abfd ATTRIBUTE_UNUSED
, char *buf
, bfd_vma value
)
2400 if (!is32bit (abfd
))
2402 sprintf (buf
, "%016" PRIx64
, (uint64_t) value
);
2406 sprintf (buf
, "%08lx", (unsigned long) value
& 0xffffffff);
2410 bfd_fprintf_vma (bfd
*abfd ATTRIBUTE_UNUSED
, void *stream
, bfd_vma value
)
2413 if (!is32bit (abfd
))
2415 fprintf ((FILE *) stream
, "%016" PRIx64
, (uint64_t) value
);
2419 fprintf ((FILE *) stream
, "%08lx", (unsigned long) value
& 0xffffffff);
2427 bool bfd_alt_mach_code (bfd *abfd, int alternative);
2431 When more than one machine code number is available for the
2432 same machine type, this function can be used to switch between
2433 the preferred one (alternative == 0) and any others. Currently,
2434 only ELF supports this feature, with up to two alternate
2439 bfd_alt_mach_code (bfd
*abfd
, int alternative
)
2441 if (bfd_get_flavour (abfd
) == bfd_target_elf_flavour
)
2445 switch (alternative
)
2448 code
= get_elf_backend_data (abfd
)->elf_machine_code
;
2452 code
= get_elf_backend_data (abfd
)->elf_machine_alt1
;
2458 code
= get_elf_backend_data (abfd
)->elf_machine_alt2
;
2467 elf_elfheader (abfd
)->e_machine
= code
;
2477 bfd_emul_get_maxpagesize
2480 bfd_vma bfd_emul_get_maxpagesize (const char *);
2483 Returns the maximum page size, in bytes, as determined by
2488 bfd_emul_get_maxpagesize (const char *emul
)
2490 const bfd_target
*target
;
2492 target
= bfd_find_target (emul
, NULL
);
2494 && target
->flavour
== bfd_target_elf_flavour
)
2495 return xvec_get_elf_backend_data (target
)->maxpagesize
;
2502 bfd_emul_get_commonpagesize
2505 bfd_vma bfd_emul_get_commonpagesize (const char *);
2508 Returns the common page size, in bytes, as determined by
2513 bfd_emul_get_commonpagesize (const char *emul
)
2515 const bfd_target
*target
;
2517 target
= bfd_find_target (emul
, NULL
);
2519 && target
->flavour
== bfd_target_elf_flavour
)
2521 const struct elf_backend_data
*bed
;
2523 bed
= xvec_get_elf_backend_data (target
);
2524 return bed
->commonpagesize
;
2534 char *bfd_demangle (bfd *, const char *, int);
2537 Wrapper around cplus_demangle. Strips leading underscores and
2538 other such chars that would otherwise confuse the demangler.
2539 If passed a g++ v3 ABI mangled name, returns a buffer allocated
2540 with malloc holding the demangled name. Returns NULL otherwise
2541 and on memory alloc failure.
2545 bfd_demangle (bfd
*abfd
, const char *name
, int options
)
2548 const char *pre
, *suf
;
2552 skip_lead
= (abfd
!= NULL
2554 && bfd_get_symbol_leading_char (abfd
) == *name
);
2558 /* This is a hack for better error reporting on XCOFF, PowerPC64-ELF
2559 or the MS PE format. These formats have a number of leading '.'s
2560 on at least some symbols, so we remove all dots to avoid
2561 confusing the demangler. */
2563 while (*name
== '.' || *name
== '$')
2565 pre_len
= name
- pre
;
2567 /* Strip off @plt and suchlike too. */
2569 suf
= strchr (name
, '@');
2572 alloc
= (char *) bfd_malloc (suf
- name
+ 1);
2575 memcpy (alloc
, name
, suf
- name
);
2576 alloc
[suf
- name
] = '\0';
2580 res
= cplus_demangle (name
, options
);
2588 size_t len
= strlen (pre
) + 1;
2589 alloc
= (char *) bfd_malloc (len
);
2592 memcpy (alloc
, pre
, len
);
2598 /* Put back any prefix or suffix. */
2599 if (pre_len
!= 0 || suf
!= NULL
)
2608 suf_len
= strlen (suf
) + 1;
2609 final
= (char *) bfd_malloc (pre_len
+ len
+ suf_len
);
2612 memcpy (final
, pre
, pre_len
);
2613 memcpy (final
+ pre_len
, res
, len
);
2614 memcpy (final
+ pre_len
+ len
, suf
, suf_len
);
2623 /* Get the linker information. */
2625 struct bfd_link_info
*
2626 _bfd_get_link_info (bfd
*abfd
)
2628 if (bfd_get_flavour (abfd
) != bfd_target_elf_flavour
)
2631 return elf_link_info (abfd
);