Updated Bulgarian and Russian translations for LD and BFD respectively
[binutils-gdb.git] / bfd / bfd.c
blob9cbb674b989b7cef0bf132d0c24f8a8e22476bbd
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. */
23 INODE
24 typedef bfd, Error reporting, BFD front end, BFD front end
26 SECTION
27 <<typedef bfd>>
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.
37 CODE_FRAGMENT
39 .enum bfd_direction
40 . {
41 . no_direction = 0,
42 . read_direction = 1,
43 . write_direction = 2,
44 . both_direction = 3
45 . };
47 .enum bfd_plugin_format
48 . {
49 . bfd_plugin_unknown = 0,
50 . bfd_plugin_yes = 1,
51 . bfd_plugin_no = 2
52 . };
54 .struct bfd_build_id
55 . {
56 . bfd_size_type size;
57 . bfd_byte data[1];
58 . };
60 .struct bfd
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. *}
70 . void *iostream;
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. *}
80 . ufile_ptr where;
82 . {* File modified time, if mtime_set is TRUE. *}
83 . long mtime;
85 . {* A unique identifier of the BFD *}
86 . unsigned int id;
88 . {* Format_specific flags. *}
89 . flagword 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. *}
104 .#define EXEC_P 0x2
106 . {* BFD has line number information (basically used for F_LNNO in a
107 . COFF header). *}
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
117 . header). *}
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
140 . duplicates. *}
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
145 . struct. *}
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
170 . BFD. *}
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
222 . from happening. *}
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
258 . library. *}
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. *}
263 . ufile_ptr origin;
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
269 . container. *}
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. *}
292 . int archive_pass;
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". *}
317 . ufile_ptr size;
319 . {* Stuff only useful for archives. *}
320 . void *arelt_data;
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
325 . thin archive. *}
327 . union {
328 . {* For input BFDs, a chain of BFDs involved in a link. *}
329 . struct bfd *next;
330 . {* For output BFD, the linker hash table. *}
331 . struct bfd_link_hash_table *hash;
332 . } link;
334 . {* Used by the back end to hold private data. *}
335 . union
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;
364 . void *any;
366 . tdata;
368 . {* Used by the application to hold private data. *}
369 . void *usrdata;
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
373 . of objalloc.h. *}
374 . void *memory;
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;
386 .static inline bool
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;
434 .static inline bool
435 .bfd_has_map (const bfd *abfd)
437 . return abfd->has_armap;
440 .static inline bool
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. *}
453 .static inline bool
454 .bfd_set_cacheable (bfd * abfd, bool val)
456 . abfd->cacheable = val;
457 . return true;
460 .static inline void
461 .bfd_set_thin_archive (bfd *abfd, bool val)
463 . abfd->is_thin_archive = val;
466 .static inline void
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)
487 . return sy->name;
490 .static inline struct bfd *
491 .bfd_asymbol_bfd (const asymbol *sy)
493 . return sy->the_bfd;
496 .static inline void
497 .bfd_set_asymbol_name (asymbol *sy, const char *name)
499 . sy->name = 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;
509 . return sec->size;
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;
528 . return sec->size;
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. *}
534 .static inline void
535 .bfd_section_list_remove (bfd *abfd, asection *s)
537 . asection *next = s->next;
538 . asection *prev = s->prev;
539 . if (prev)
540 . prev->next = next;
541 . else
542 . abfd->sections = next;
543 . if (next)
544 . next->prev = prev;
545 . else
546 . abfd->section_last = prev;
549 .static inline void
550 .bfd_section_list_append (bfd *abfd, asection *s)
552 . s->next = 0;
553 . if (abfd->section_last)
555 . s->prev = abfd->section_last;
556 . abfd->section_last->next = s;
558 . else
560 . s->prev = 0;
561 . abfd->sections = s;
563 . abfd->section_last = s;
566 .static inline void
567 .bfd_section_list_prepend (bfd *abfd, asection *s)
569 . s->prev = 0;
570 . if (abfd->sections)
572 . s->next = abfd->sections;
573 . abfd->sections->prev = s;
575 . else
577 . s->next = 0;
578 . abfd->section_last = s;
580 . abfd->sections = s;
583 .static inline void
584 .bfd_section_list_insert_after (bfd *abfd, asection *a, asection *s)
586 . asection *next = a->next;
587 . s->next = next;
588 . s->prev = a;
589 . a->next = s;
590 . if (next)
591 . next->prev = s;
592 . else
593 . abfd->section_last = s;
596 .static inline void
597 .bfd_section_list_insert_before (bfd *abfd, asection *b, asection *s)
599 . asection *prev = b->prev;
600 . s->prev = prev;
601 . s->next = b;
602 . b->prev = s;
603 . if (prev)
604 . prev->next = s;
605 . else
606 . abfd->sections = s;
609 .static inline bool
610 .bfd_section_removed_from_list (const bfd *abfd, const asection *s)
612 . return s->next ? s->next->prev != s : abfd->section_last != s;
617 #include "sysdep.h"
618 #include <stdarg.h>
619 #include "bfd.h"
620 #include "bfdver.h"
621 #include "libiberty.h"
622 #include "demangle.h"
623 #include "safe-ctype.h"
624 #include "bfdlink.h"
625 #include "libbfd.h"
626 #include "coff/internal.h"
627 #include "coff/sym.h"
628 #include "libcoff.h"
629 #include "libecoff.h"
630 #undef obj_symbols
631 #include "elf-bfd.h"
633 #ifndef EXIT_FAILURE
634 #define EXIT_FAILURE 1
635 #endif
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 */
645 INODE
646 Error reporting, Miscellaneous, typedef bfd, BFD front end
648 SECTION
649 Error reporting
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
656 <<errno>>.
658 The easiest way to report a BFD error to the user is to
659 use <<bfd_perror>>.
661 SUBSECTION
662 Type <<bfd_error_type>>
664 The values returned by <<bfd_get_error>> are defined by the
665 enumerated type <<bfd_error_type>>.
667 CODE_FRAGMENT
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,
691 . bfd_error_sorry,
692 . bfd_error_on_input,
693 . bfd_error_invalid_error_code
695 .bfd_error_type;
699 static bfd_error_type bfd_error = bfd_error_no_error;
700 static bfd *input_bfd = NULL;
701 static bfd_error_type input_error = bfd_error_no_error;
703 const char *const bfd_errmsgs[] =
705 N_("no error"),
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"),
712 N_("no symbols"),
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"),
722 N_("bad value"),
723 N_("file truncated"),
724 N_("file too big"),
725 N_("sorry, cannot handle this file"),
726 N_("error reading %s: %s"),
727 N_("#<invalid error code>")
731 FUNCTION
732 bfd_get_error
734 SYNOPSIS
735 bfd_error_type bfd_get_error (void);
737 DESCRIPTION
738 Return the current BFD error condition.
741 bfd_error_type
742 bfd_get_error (void)
744 return bfd_error;
748 FUNCTION
749 bfd_set_error
751 SYNOPSIS
752 void bfd_set_error (bfd_error_type error_tag);
754 DESCRIPTION
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.
761 void
762 bfd_set_error (bfd_error_type error_tag)
764 bfd_error = error_tag;
765 if (bfd_error >= bfd_error_on_input)
766 abort ();
770 FUNCTION
771 bfd_set_input_error
773 SYNOPSIS
774 void bfd_set_input_error (bfd *input, bfd_error_type error_tag);
776 DESCRIPTION
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.
783 void
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;
789 input_bfd = input;
790 input_error = error_tag;
791 if (input_error >= bfd_error_on_input)
792 abort ();
796 FUNCTION
797 bfd_errmsg
799 SYNOPSIS
800 const char *bfd_errmsg (bfd_error_type error_tag);
802 DESCRIPTION
803 Return a string describing the error @var{error_tag}, or
804 the system error if @var{error_tag} is <<bfd_error_system_call>>.
807 const char *
808 bfd_errmsg (bfd_error_type error_tag)
810 #ifndef errno
811 extern int errno;
812 #endif
813 if (error_tag == bfd_error_on_input)
815 char *buf;
816 const char *msg = bfd_errmsg (input_error);
818 if (asprintf (&buf, _(bfd_errmsgs [error_tag]),
819 bfd_get_filename (input_bfd), msg) != -1)
820 return buf;
822 /* Ick, what to do on out of memory? */
823 return msg;
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]);
836 FUNCTION
837 bfd_perror
839 SYNOPSIS
840 void bfd_perror (const char *message);
842 DESCRIPTION
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.
850 void
851 bfd_perror (const char *message)
853 fflush (stdout);
854 if (message == NULL || *message == '\0')
855 fprintf (stderr, "%s\n", bfd_errmsg (bfd_get_error ()));
856 else
857 fprintf (stderr, "%s: %s\n", message, bfd_errmsg (bfd_get_error ()));
858 fflush (stderr);
862 SUBSECTION
863 BFD error handler
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.
871 CODE_FRAGMENT
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
885 int i;
886 long l;
887 long long ll;
888 double d;
889 long double ld;
890 void *p;
891 enum
893 Bad,
894 Int,
895 Long,
896 LongLong,
897 Double,
898 LongDouble,
900 } type;
903 /* Maximum number of _bfd_error_handler args. Don't increase this
904 without changing the code handling positional parameters. */
905 #define MAX_ARGS 9
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) \
911 do \
913 TYPE value = (TYPE) args[arg_no].FIELD; \
914 result = print (stream, specifier, value); \
915 } while (0)
917 typedef int (*print_func) (void *, const char *, ...);
919 static int
920 _bfd_doprnt (print_func print, void *stream, const char *format,
921 union _bfd_doprnt_args *args)
923 const char *ptr = format;
924 char specifier[128];
925 int total_printed = 0;
926 unsigned int arg_count = 0;
928 while (*ptr != '\0')
930 int result;
932 if (*ptr != '%')
934 /* While we have regular characters, print them. */
935 char *end = strchr (ptr, '%');
936 if (end != NULL)
937 result = print (stream, "%.*s", (int) (end - ptr), ptr);
938 else
939 result = print (stream, "%s", ptr);
940 ptr += result;
942 else if (ptr[1] == '%')
944 fputc ('%', stream);
945 result = 1;
946 ptr += 2;
948 else
950 /* We have a format specifier! */
951 char *sptr = specifier;
952 int wide_width = 0, short_width = 0;
953 unsigned int arg_no;
955 /* Copy the % and move forward. */
956 *sptr++ = *ptr++;
958 /* Check for a positional parameter. */
959 arg_no = -1u;
960 if (*ptr != '0' && ISDIGIT (*ptr) && ptr[1] == '$')
962 arg_no = *ptr - '1';
963 ptr += 2;
966 /* Move past flags. */
967 while (strchr ("-+ #0'I", *ptr))
968 *sptr++ = *ptr++;
970 if (*ptr == '*')
972 int value;
973 unsigned int arg_index;
975 ptr++;
976 arg_index = arg_count;
977 if (*ptr != '0' && ISDIGIT (*ptr) && ptr[1] == '$')
979 arg_index = *ptr - '1';
980 ptr += 2;
982 value = abs (args[arg_index].i);
983 arg_count++;
984 sptr += sprintf (sptr, "%d", value);
986 else
987 /* Handle explicit numeric value. */
988 while (ISDIGIT (*ptr))
989 *sptr++ = *ptr++;
991 /* Precision. */
992 if (*ptr == '.')
994 /* Copy and go past the period. */
995 *sptr++ = *ptr++;
996 if (*ptr == '*')
998 int value;
999 unsigned int arg_index;
1001 ptr++;
1002 arg_index = arg_count;
1003 if (*ptr != '0' && ISDIGIT (*ptr) && ptr[1] == '$')
1005 arg_index = *ptr - '1';
1006 ptr += 2;
1008 value = abs (args[arg_index].i);
1009 arg_count++;
1010 sptr += sprintf (sptr, "%d", value);
1012 else
1013 /* Handle explicit numeric value. */
1014 while (ISDIGIT (*ptr))
1015 *sptr++ = *ptr++;
1017 while (strchr ("hlL", *ptr))
1019 switch (*ptr)
1021 case 'h':
1022 short_width = 1;
1023 break;
1024 case 'l':
1025 wide_width++;
1026 break;
1027 case 'L':
1028 wide_width = 2;
1029 break;
1030 default:
1031 abort();
1033 *sptr++ = *ptr++;
1036 /* Copy the type specifier, and NULL terminate. */
1037 *sptr++ = *ptr++;
1038 *sptr = '\0';
1039 if ((int) arg_no < 0)
1040 arg_no = arg_count;
1042 switch (ptr[-1])
1044 case 'd':
1045 case 'i':
1046 case 'o':
1047 case 'u':
1048 case 'x':
1049 case 'X':
1050 case 'c':
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. */
1055 if (short_width)
1056 PRINT_TYPE (int, i);
1057 else
1059 switch (wide_width)
1061 case 0:
1062 PRINT_TYPE (int, i);
1063 break;
1064 case 1:
1065 PRINT_TYPE (long, l);
1066 break;
1067 case 2:
1068 default:
1069 #if defined (__MSVCRT__)
1070 sptr[-3] = 'I';
1071 sptr[-2] = '6';
1072 sptr[-1] = '4';
1073 *sptr++ = ptr[-1];
1074 *sptr = '\0';
1075 #endif
1076 PRINT_TYPE (long long, ll);
1077 break;
1081 break;
1082 case 'f':
1083 case 'e':
1084 case 'E':
1085 case 'g':
1086 case 'G':
1088 if (wide_width == 0)
1089 PRINT_TYPE (double, d);
1090 else
1091 PRINT_TYPE (long double, ld);
1093 break;
1094 case 's':
1095 PRINT_TYPE (char *, p);
1096 break;
1097 case 'p':
1098 if (*ptr == 'A')
1100 asection *sec;
1101 bfd *abfd;
1102 const char *group = NULL;
1103 struct coff_comdat_info *ci;
1105 ptr++;
1106 sec = (asection *) args[arg_no].p;
1107 if (sec == NULL)
1108 /* Invoking %pA with a null section pointer is an
1109 internal error. */
1110 abort ();
1111 abfd = sec->owner;
1112 if (abfd != NULL
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,
1120 sec)) != NULL)
1121 group = ci->name;
1122 if (group != NULL)
1123 result = print (stream, "%s[%s]", sec->name, group);
1124 else
1125 result = print (stream, "%s", sec->name);
1127 else if (*ptr == 'B')
1129 bfd *abfd;
1131 ptr++;
1132 abfd = (bfd *) args[arg_no].p;
1133 if (abfd == NULL)
1134 /* Invoking %pB with a null bfd pointer is an
1135 internal error. */
1136 abort ();
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));
1142 else
1143 result = print (stream, "%s", bfd_get_filename (abfd));
1145 else
1146 PRINT_TYPE (void *, p);
1147 break;
1148 default:
1149 abort();
1151 arg_count++;
1153 if (result == -1)
1154 return -1;
1155 total_printed += result;
1158 return total_printed;
1161 /* First pass over FORMAT to gather ARGS. Returns number of args. */
1163 static unsigned int
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++)
1170 args[i].type = Bad;
1172 while (*ptr != '\0')
1174 if (*ptr != '%')
1176 ptr = strchr (ptr, '%');
1177 if (ptr == NULL)
1178 break;
1180 else if (ptr[1] == '%')
1181 ptr += 2;
1182 else
1184 int wide_width = 0, short_width = 0;
1185 unsigned int arg_no;
1186 int arg_type;
1188 ptr++;
1190 /* Check for a positional parameter. */
1191 arg_no = -1u;
1192 if (*ptr != '0' && ISDIGIT (*ptr) && ptr[1] == '$')
1194 arg_no = *ptr - '1';
1195 ptr += 2;
1198 /* Move past flags. */
1199 while (strchr ("-+ #0'I", *ptr))
1200 ptr++;
1202 if (*ptr == '*')
1204 unsigned int arg_index;
1206 ptr++;
1207 arg_index = arg_count;
1208 if (*ptr != '0' && ISDIGIT (*ptr) && ptr[1] == '$')
1210 arg_index = *ptr - '1';
1211 ptr += 2;
1213 if (arg_index >= MAX_ARGS)
1214 abort ();
1215 args[arg_index].type = Int;
1216 arg_count++;
1218 else
1219 /* Handle explicit numeric value. */
1220 while (ISDIGIT (*ptr))
1221 ptr++;
1223 /* Precision. */
1224 if (*ptr == '.')
1226 ptr++;
1227 if (*ptr == '*')
1229 unsigned int arg_index;
1231 ptr++;
1232 arg_index = arg_count;
1233 if (*ptr != '0' && ISDIGIT (*ptr) && ptr[1] == '$')
1235 arg_index = *ptr - '1';
1236 ptr += 2;
1238 if (arg_index >= MAX_ARGS)
1239 abort ();
1240 args[arg_index].type = Int;
1241 arg_count++;
1243 else
1244 /* Handle explicit numeric value. */
1245 while (ISDIGIT (*ptr))
1246 ptr++;
1248 while (strchr ("hlL", *ptr))
1250 switch (*ptr)
1252 case 'h':
1253 short_width = 1;
1254 break;
1255 case 'l':
1256 wide_width++;
1257 break;
1258 case 'L':
1259 wide_width = 2;
1260 break;
1261 default:
1262 abort();
1264 ptr++;
1267 ptr++;
1268 if ((int) arg_no < 0)
1269 arg_no = arg_count;
1271 arg_type = Bad;
1272 switch (ptr[-1])
1274 case 'd':
1275 case 'i':
1276 case 'o':
1277 case 'u':
1278 case 'x':
1279 case 'X':
1280 case 'c':
1282 if (short_width)
1283 arg_type = Int;
1284 else
1286 switch (wide_width)
1288 case 0:
1289 arg_type = Int;
1290 break;
1291 case 1:
1292 arg_type = Long;
1293 break;
1294 case 2:
1295 default:
1296 arg_type = LongLong;
1297 break;
1301 break;
1302 case 'f':
1303 case 'e':
1304 case 'E':
1305 case 'g':
1306 case 'G':
1308 if (wide_width == 0)
1309 arg_type = Double;
1310 else
1311 arg_type = LongDouble;
1313 break;
1314 case 's':
1315 arg_type = Ptr;
1316 break;
1317 case 'p':
1318 if (*ptr == 'A' || *ptr == 'B')
1319 ptr++;
1320 arg_type = Ptr;
1321 break;
1322 default:
1323 abort();
1326 if (arg_no >= MAX_ARGS)
1327 abort ();
1328 args[arg_no].type = arg_type;
1329 arg_count++;
1333 for (unsigned int i = 0; i < arg_count; i++)
1335 switch (args[i].type)
1337 case Int:
1338 args[i].i = va_arg (ap, int);
1339 break;
1340 case Long:
1341 args[i].l = va_arg (ap, long);
1342 break;
1343 case LongLong:
1344 args[i].ll = va_arg (ap, long long);
1345 break;
1346 case Double:
1347 args[i].d = va_arg (ap, double);
1348 break;
1349 case LongDouble:
1350 args[i].ld = va_arg (ap, long double);
1351 break;
1352 case Ptr:
1353 args[i].p = va_arg (ap, void *);
1354 break;
1355 default:
1356 abort ();
1360 return arg_count;
1363 /* The standard error handler that prints to stderr. */
1365 static void
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. */
1373 fflush (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);
1382 fflush (stderr);
1385 /* Control printing to a string buffer. */
1386 struct buf_stream
1388 char *ptr;
1389 int left;
1392 /* An fprintf like function that instead prints to a string buffer. */
1394 static int
1395 err_sprintf (void *stream, const char *fmt, ...)
1397 struct buf_stream *s = stream;
1398 va_list ap;
1400 va_start (ap, fmt);
1401 int total = vsnprintf (s->ptr, s->left, fmt, ap);
1402 va_end (ap);
1403 if (total < 0)
1405 else if (total > s->left)
1407 s->ptr += s->left;
1408 s->left = 0;
1410 else
1412 s->ptr += total;
1413 s->left -= total;
1415 return total;
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. */
1426 static void
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);
1442 if (*warn)
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;
1458 FUNCTION
1459 _bfd_error_handler
1461 SYNOPSIS
1462 void _bfd_error_handler (const char *fmt, ...) ATTRIBUTE_PRINTF_1;
1464 DESCRIPTION
1465 This is the default routine to handle BFD error messages.
1466 Like fprintf (stderr, ...), but also handles some extra format
1467 specifiers.
1469 %pA section name from section. For group components, prints
1470 group name too.
1471 %pB file name from bfd. For archive components, prints
1472 archive too.
1474 Beware: Only supports a maximum of 9 format arguments.
1477 void
1478 _bfd_error_handler (const char *fmt, ...)
1480 va_list ap;
1482 va_start (ap, fmt);
1483 _bfd_error_internal (fmt, ap);
1484 va_end (ap);
1488 FUNCTION
1489 bfd_set_error_handler
1491 SYNOPSIS
1492 bfd_error_handler_type bfd_set_error_handler (bfd_error_handler_type);
1494 DESCRIPTION
1495 Set the BFD error handler function. Returns the previous
1496 function.
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;
1506 return pold;
1510 INTERNAL_FUNCTION
1511 _bfd_set_error_handler_caching
1513 SYNOPSIS
1514 bfd_error_handler_type _bfd_set_error_handler_caching (bfd *);
1516 DESCRIPTION
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);
1529 FUNCTION
1530 bfd_set_error_program_name
1532 SYNOPSIS
1533 void bfd_set_error_program_name (const char *);
1535 DESCRIPTION
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
1539 this function.
1542 void
1543 bfd_set_error_program_name (const char *name)
1545 _bfd_error_program_name = name;
1549 INTERNAL_FUNCTION
1550 _bfd_get_error_program_name
1552 SYNOPSIS
1553 const char *_bfd_get_error_program_name (void);
1555 DESCRIPTION
1556 Get the program name used when printing a BFD error.
1559 const char *
1560 _bfd_get_error_program_name (void)
1562 if (_bfd_error_program_name != NULL)
1563 return _bfd_error_program_name;
1564 return "BFD";
1568 SUBSECTION
1569 BFD assert handler
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.
1579 CODE_FRAGMENT
1581 .typedef void (*bfd_assert_handler_type) (const char *bfd_formatmsg,
1582 . const char *bfd_version,
1583 . const char *bfd_file,
1584 . int bfd_line);
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. */
1594 static void
1595 _bfd_default_assert_handler (const char *bfd_formatmsg,
1596 const char *bfd_version,
1597 const char *bfd_file,
1598 int bfd_line)
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;
1611 FUNCTION
1612 bfd_set_assert_handler
1614 SYNOPSIS
1615 bfd_assert_handler_type bfd_set_assert_handler (bfd_assert_handler_type);
1617 DESCRIPTION
1618 Set the BFD assert handler function. Returns the previous
1619 function.
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;
1629 return pold;
1633 INODE
1634 Miscellaneous, Memory Usage, Error reporting, BFD front end
1636 SECTION
1637 Miscellaneous
1639 SUBSECTION
1640 Miscellaneous functions
1644 FUNCTION
1645 bfd_get_reloc_upper_bound
1647 SYNOPSIS
1648 long bfd_get_reloc_upper_bound (bfd *abfd, asection *sect);
1650 DESCRIPTION
1651 Return the number of bytes required to store the
1652 relocation information associated with section @var{sect}
1653 attached to bfd @var{abfd}. If an error occurs, return -1.
1657 long
1658 bfd_get_reloc_upper_bound (bfd *abfd, sec_ptr asect)
1660 if (abfd->format != bfd_object)
1662 bfd_set_error (bfd_error_invalid_operation);
1663 return -1;
1666 return BFD_SEND (abfd, _get_reloc_upper_bound, (abfd, asect));
1670 FUNCTION
1671 bfd_canonicalize_reloc
1673 SYNOPSIS
1674 long bfd_canonicalize_reloc
1675 (bfd *abfd, asection *sec, arelent **loc, asymbol **syms);
1677 DESCRIPTION
1678 Call the back end associated with the open BFD
1679 @var{abfd} and translate the external form of the relocation
1680 information attached to @var{sec} into the internal canonical
1681 form. Place the table into memory at @var{loc}, which has
1682 been preallocated, usually by a call to
1683 <<bfd_get_reloc_upper_bound>>. Returns the number of relocs, or
1684 -1 on error.
1686 The @var{syms} table is also needed for horrible internal magic
1687 reasons.
1690 long
1691 bfd_canonicalize_reloc (bfd *abfd,
1692 sec_ptr asect,
1693 arelent **location,
1694 asymbol **symbols)
1696 if (abfd->format != bfd_object)
1698 bfd_set_error (bfd_error_invalid_operation);
1699 return -1;
1702 return BFD_SEND (abfd, _bfd_canonicalize_reloc,
1703 (abfd, asect, location, symbols));
1707 FUNCTION
1708 bfd_set_reloc
1710 SYNOPSIS
1711 void bfd_set_reloc
1712 (bfd *abfd, asection *sec, arelent **rel, unsigned int count);
1714 DESCRIPTION
1715 Set the relocation pointer and count within
1716 section @var{sec} to the values @var{rel} and @var{count}.
1717 The argument @var{abfd} is ignored.
1719 .#define bfd_set_reloc(abfd, asect, location, count) \
1720 . BFD_SEND (abfd, _bfd_set_reloc, (abfd, asect, location, count))
1724 FUNCTION
1725 bfd_set_file_flags
1727 SYNOPSIS
1728 bool bfd_set_file_flags (bfd *abfd, flagword flags);
1730 DESCRIPTION
1731 Set the flag word in the BFD @var{abfd} to the value @var{flags}.
1733 Possible errors are:
1734 o <<bfd_error_wrong_format>> - The target bfd was not of object format.
1735 o <<bfd_error_invalid_operation>> - The target bfd was open for reading.
1736 o <<bfd_error_invalid_operation>> -
1737 The flag word contained a bit which was not applicable to the
1738 type of file. E.g., an attempt was made to set the <<D_PAGED>> bit
1739 on a BFD format which does not support demand paging.
1743 bool
1744 bfd_set_file_flags (bfd *abfd, flagword flags)
1746 if (abfd->format != bfd_object)
1748 bfd_set_error (bfd_error_wrong_format);
1749 return false;
1752 if (bfd_read_p (abfd))
1754 bfd_set_error (bfd_error_invalid_operation);
1755 return false;
1758 abfd->flags = flags;
1759 if ((flags & bfd_applicable_file_flags (abfd)) != flags)
1761 bfd_set_error (bfd_error_invalid_operation);
1762 return false;
1765 return true;
1768 void
1769 bfd_assert (const char *file, int line)
1771 /* xgettext:c-format */
1772 (*_bfd_assert_handler) (_("BFD %s assertion fail %s:%d"),
1773 BFD_VERSION_STRING, file, line);
1776 /* A more or less friendly abort message. In libbfd.h abort is
1777 defined to call this function. */
1779 void
1780 _bfd_abort (const char *file, int line, const char *fn)
1782 if (fn != NULL)
1783 _bfd_error_handler
1784 /* xgettext:c-format */
1785 (_("BFD %s internal error, aborting at %s:%d in %s\n"),
1786 BFD_VERSION_STRING, file, line, fn);
1787 else
1788 _bfd_error_handler
1789 /* xgettext:c-format */
1790 (_("BFD %s internal error, aborting at %s:%d\n"),
1791 BFD_VERSION_STRING, file, line);
1792 _bfd_error_handler (_("Please report this bug.\n"));
1793 _exit (EXIT_FAILURE);
1797 FUNCTION
1798 bfd_get_arch_size
1800 SYNOPSIS
1801 int bfd_get_arch_size (bfd *abfd);
1803 DESCRIPTION
1804 Returns the normalized architecture address size, in bits, as
1805 determined by the object file's format. By normalized, we mean
1806 either 32 or 64. For ELF, this information is included in the
1807 header. Use bfd_arch_bits_per_address for number of bits in
1808 the architecture address.
1810 RETURNS
1811 Returns the arch size in bits if known, <<-1>> otherwise.
1815 bfd_get_arch_size (bfd *abfd)
1817 if (abfd->xvec->flavour == bfd_target_elf_flavour)
1818 return get_elf_backend_data (abfd)->s->arch_size;
1820 return bfd_arch_bits_per_address (abfd) > 32 ? 64 : 32;
1824 FUNCTION
1825 bfd_get_sign_extend_vma
1827 SYNOPSIS
1828 int bfd_get_sign_extend_vma (bfd *abfd);
1830 DESCRIPTION
1831 Indicates if the target architecture "naturally" sign extends
1832 an address. Some architectures implicitly sign extend address
1833 values when they are converted to types larger than the size
1834 of an address. For instance, bfd_get_start_address() will
1835 return an address sign extended to fill a bfd_vma when this is
1836 the case.
1838 RETURNS
1839 Returns <<1>> if the target architecture is known to sign
1840 extend addresses, <<0>> if the target architecture is known to
1841 not sign extend addresses, and <<-1>> otherwise.
1845 bfd_get_sign_extend_vma (bfd *abfd)
1847 const char *name;
1849 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour)
1850 return get_elf_backend_data (abfd)->sign_extend_vma;
1852 name = bfd_get_target (abfd);
1854 /* Return a proper value for DJGPP & PE COFF.
1855 This function is required for DWARF2 support, but there is
1856 no place to store this information in the COFF back end.
1857 Should enough other COFF targets add support for DWARF2,
1858 a place will have to be found. Until then, this hack will do. */
1859 if (startswith (name, "coff-go32")
1860 || strcmp (name, "pe-i386") == 0
1861 || strcmp (name, "pei-i386") == 0
1862 || strcmp (name, "pe-x86-64") == 0
1863 || strcmp (name, "pei-x86-64") == 0
1864 || strcmp (name, "pe-aarch64-little") == 0
1865 || strcmp (name, "pei-aarch64-little") == 0
1866 || strcmp (name, "pe-arm-wince-little") == 0
1867 || strcmp (name, "pei-arm-wince-little") == 0
1868 || strcmp (name, "pei-loongarch64") == 0
1869 || strcmp (name, "aixcoff-rs6000") == 0
1870 || strcmp (name, "aix5coff64-rs6000") == 0)
1871 return 1;
1873 if (startswith (name, "mach-o"))
1874 return 0;
1876 bfd_set_error (bfd_error_wrong_format);
1877 return -1;
1881 FUNCTION
1882 bfd_set_start_address
1884 SYNOPSIS
1885 bool bfd_set_start_address (bfd *abfd, bfd_vma vma);
1887 DESCRIPTION
1888 Make @var{vma} the entry point of output BFD @var{abfd}.
1890 RETURNS
1891 Returns <<TRUE>> on success, <<FALSE>> otherwise.
1894 bool
1895 bfd_set_start_address (bfd *abfd, bfd_vma vma)
1897 abfd->start_address = vma;
1898 return true;
1902 FUNCTION
1903 bfd_get_gp_size
1905 SYNOPSIS
1906 unsigned int bfd_get_gp_size (bfd *abfd);
1908 DESCRIPTION
1909 Return the maximum size of objects to be optimized using the GP
1910 register under MIPS ECOFF. This is typically set by the <<-G>>
1911 argument to the compiler, assembler or linker.
1914 unsigned int
1915 bfd_get_gp_size (bfd *abfd)
1917 if (abfd->format == bfd_object)
1919 if (abfd->xvec->flavour == bfd_target_ecoff_flavour)
1920 return ecoff_data (abfd)->gp_size;
1921 else if (abfd->xvec->flavour == bfd_target_elf_flavour)
1922 return elf_gp_size (abfd);
1924 return 0;
1928 FUNCTION
1929 bfd_set_gp_size
1931 SYNOPSIS
1932 void bfd_set_gp_size (bfd *abfd, unsigned int i);
1934 DESCRIPTION
1935 Set the maximum size of objects to be optimized using the GP
1936 register under ECOFF or MIPS ELF. This is typically set by
1937 the <<-G>> argument to the compiler, assembler or linker.
1940 void
1941 bfd_set_gp_size (bfd *abfd, unsigned int i)
1943 /* Don't try to set GP size on an archive or core file! */
1944 if (abfd->format != bfd_object)
1945 return;
1947 if (abfd->xvec->flavour == bfd_target_ecoff_flavour)
1948 ecoff_data (abfd)->gp_size = i;
1949 else if (abfd->xvec->flavour == bfd_target_elf_flavour)
1950 elf_gp_size (abfd) = i;
1953 /* Get the GP value. This is an internal function used by some of the
1954 relocation special_function routines on targets which support a GP
1955 register. */
1957 bfd_vma
1958 _bfd_get_gp_value (bfd *abfd)
1960 if (! abfd)
1961 return 0;
1962 if (abfd->format != bfd_object)
1963 return 0;
1965 if (abfd->xvec->flavour == bfd_target_ecoff_flavour)
1966 return ecoff_data (abfd)->gp;
1967 else if (abfd->xvec->flavour == bfd_target_elf_flavour)
1968 return elf_gp (abfd);
1970 return 0;
1973 /* Set the GP value. */
1975 void
1976 _bfd_set_gp_value (bfd *abfd, bfd_vma v)
1978 if (! abfd)
1979 abort ();
1980 if (abfd->format != bfd_object)
1981 return;
1983 if (abfd->xvec->flavour == bfd_target_ecoff_flavour)
1984 ecoff_data (abfd)->gp = v;
1985 else if (abfd->xvec->flavour == bfd_target_elf_flavour)
1986 elf_gp (abfd) = v;
1990 FUNCTION
1991 bfd_set_gp_value
1993 SYNOPSIS
1994 void bfd_set_gp_value (bfd *abfd, bfd_vma v);
1996 DESCRIPTION
1997 Allow external access to the fucntion to set the GP value.
1998 This is specifically added for gdb-compile support.
2001 void
2002 bfd_set_gp_value (bfd *abfd, bfd_vma v)
2004 _bfd_set_gp_value (abfd, v);
2008 FUNCTION
2009 bfd_scan_vma
2011 SYNOPSIS
2012 bfd_vma bfd_scan_vma (const char *string, const char **end, int base);
2014 DESCRIPTION
2015 Convert, like <<strtoul>>, a numerical expression
2016 @var{string} into a <<bfd_vma>> integer, and return that integer.
2017 (Though without as many bells and whistles as <<strtoul>>.)
2018 The expression is assumed to be unsigned (i.e., positive).
2019 If given a @var{base}, it is used as the base for conversion.
2020 A base of 0 causes the function to interpret the string
2021 in hex if a leading "0x" or "0X" is found, otherwise
2022 in octal if a leading zero is found, otherwise in decimal.
2024 If the value would overflow, the maximum <<bfd_vma>> value is
2025 returned.
2028 bfd_vma
2029 bfd_scan_vma (const char *string, const char **end, int base)
2031 bfd_vma value;
2032 bfd_vma cutoff;
2033 unsigned int cutlim;
2034 int overflow;
2036 /* Let the host do it if possible. */
2037 if (sizeof (bfd_vma) <= sizeof (unsigned long))
2038 return strtoul (string, (char **) end, base);
2040 if (sizeof (bfd_vma) <= sizeof (unsigned long long))
2041 return strtoull (string, (char **) end, base);
2043 if (base == 0)
2045 if (string[0] == '0')
2047 if ((string[1] == 'x') || (string[1] == 'X'))
2048 base = 16;
2049 else
2050 base = 8;
2054 if ((base < 2) || (base > 36))
2055 base = 10;
2057 if (base == 16
2058 && string[0] == '0'
2059 && (string[1] == 'x' || string[1] == 'X')
2060 && ISXDIGIT (string[2]))
2062 string += 2;
2065 cutoff = (~ (bfd_vma) 0) / (bfd_vma) base;
2066 cutlim = (~ (bfd_vma) 0) % (bfd_vma) base;
2067 value = 0;
2068 overflow = 0;
2069 while (1)
2071 unsigned int digit;
2073 digit = *string;
2074 if (ISDIGIT (digit))
2075 digit = digit - '0';
2076 else if (ISALPHA (digit))
2077 digit = TOUPPER (digit) - 'A' + 10;
2078 else
2079 break;
2080 if (digit >= (unsigned int) base)
2081 break;
2082 if (value > cutoff || (value == cutoff && digit > cutlim))
2083 overflow = 1;
2084 value = value * base + digit;
2085 ++string;
2088 if (overflow)
2089 value = ~ (bfd_vma) 0;
2091 if (end != NULL)
2092 *end = string;
2094 return value;
2098 FUNCTION
2099 bfd_copy_private_header_data
2101 SYNOPSIS
2102 bool bfd_copy_private_header_data (bfd *ibfd, bfd *obfd);
2104 DESCRIPTION
2105 Copy private BFD header information from the BFD @var{ibfd} to the
2106 the BFD @var{obfd}. This copies information that may require
2107 sections to exist, but does not require symbol tables. Return
2108 <<true>> on success, <<false>> on error.
2109 Possible error returns are:
2111 o <<bfd_error_no_memory>> -
2112 Not enough memory exists to create private data for @var{obfd}.
2114 .#define bfd_copy_private_header_data(ibfd, obfd) \
2115 . BFD_SEND (obfd, _bfd_copy_private_header_data, \
2116 . (ibfd, obfd))
2121 FUNCTION
2122 bfd_copy_private_bfd_data
2124 SYNOPSIS
2125 bool bfd_copy_private_bfd_data (bfd *ibfd, bfd *obfd);
2127 DESCRIPTION
2128 Copy private BFD information from the BFD @var{ibfd} to the
2129 the BFD @var{obfd}. Return <<TRUE>> on success, <<FALSE>> on error.
2130 Possible error returns are:
2132 o <<bfd_error_no_memory>> -
2133 Not enough memory exists to create private data for @var{obfd}.
2135 .#define bfd_copy_private_bfd_data(ibfd, obfd) \
2136 . BFD_SEND (obfd, _bfd_copy_private_bfd_data, \
2137 . (ibfd, obfd))
2142 FUNCTION
2143 bfd_set_private_flags
2145 SYNOPSIS
2146 bool bfd_set_private_flags (bfd *abfd, flagword flags);
2148 DESCRIPTION
2149 Set private BFD flag information in the BFD @var{abfd}.
2150 Return <<TRUE>> on success, <<FALSE>> on error. Possible error
2151 returns are:
2153 o <<bfd_error_no_memory>> -
2154 Not enough memory exists to create private data for @var{obfd}.
2156 .#define bfd_set_private_flags(abfd, flags) \
2157 . BFD_SEND (abfd, _bfd_set_private_flags, (abfd, flags))
2162 FUNCTION
2163 Other functions
2165 DESCRIPTION
2166 The following functions exist but have not yet been documented.
2168 .#define bfd_sizeof_headers(abfd, info) \
2169 . BFD_SEND (abfd, _bfd_sizeof_headers, (abfd, info))
2171 .#define bfd_find_nearest_line(abfd, sec, syms, off, file, func, line) \
2172 . BFD_SEND (abfd, _bfd_find_nearest_line, \
2173 . (abfd, syms, sec, off, file, func, line, NULL))
2175 .#define bfd_find_nearest_line_with_alt(abfd, alt_filename, sec, syms, off, \
2176 . file, func, line, disc) \
2177 . BFD_SEND (abfd, _bfd_find_nearest_line_with_alt, \
2178 . (abfd, alt_filename, syms, sec, off, file, func, line, disc))
2180 .#define bfd_find_nearest_line_discriminator(abfd, sec, syms, off, file, func, \
2181 . line, disc) \
2182 . BFD_SEND (abfd, _bfd_find_nearest_line, \
2183 . (abfd, syms, sec, off, file, func, line, disc))
2185 .#define bfd_find_line(abfd, syms, sym, file, line) \
2186 . BFD_SEND (abfd, _bfd_find_line, \
2187 . (abfd, syms, sym, file, line))
2189 .#define bfd_find_inliner_info(abfd, file, func, line) \
2190 . BFD_SEND (abfd, _bfd_find_inliner_info, \
2191 . (abfd, file, func, line))
2193 .#define bfd_debug_info_start(abfd) \
2194 . BFD_SEND (abfd, _bfd_debug_info_start, (abfd))
2196 .#define bfd_debug_info_end(abfd) \
2197 . BFD_SEND (abfd, _bfd_debug_info_end, (abfd))
2199 .#define bfd_debug_info_accumulate(abfd, section) \
2200 . BFD_SEND (abfd, _bfd_debug_info_accumulate, (abfd, section))
2202 .#define bfd_stat_arch_elt(abfd, stat) \
2203 . BFD_SEND (abfd->my_archive ? abfd->my_archive : abfd, \
2204 . _bfd_stat_arch_elt, (abfd, stat))
2206 .#define bfd_update_armap_timestamp(abfd) \
2207 . BFD_SEND (abfd, _bfd_update_armap_timestamp, (abfd))
2209 .#define bfd_set_arch_mach(abfd, arch, mach)\
2210 . BFD_SEND ( abfd, _bfd_set_arch_mach, (abfd, arch, mach))
2212 .#define bfd_relax_section(abfd, section, link_info, again) \
2213 . BFD_SEND (abfd, _bfd_relax_section, (abfd, section, link_info, again))
2215 .#define bfd_gc_sections(abfd, link_info) \
2216 . BFD_SEND (abfd, _bfd_gc_sections, (abfd, link_info))
2218 .#define bfd_lookup_section_flags(link_info, flag_info, section) \
2219 . BFD_SEND (abfd, _bfd_lookup_section_flags, (link_info, flag_info, section))
2221 .#define bfd_merge_sections(abfd, link_info) \
2222 . BFD_SEND (abfd, _bfd_merge_sections, (abfd, link_info))
2224 .#define bfd_is_group_section(abfd, sec) \
2225 . BFD_SEND (abfd, _bfd_is_group_section, (abfd, sec))
2227 .#define bfd_group_name(abfd, sec) \
2228 . BFD_SEND (abfd, _bfd_group_name, (abfd, sec))
2230 .#define bfd_discard_group(abfd, sec) \
2231 . BFD_SEND (abfd, _bfd_discard_group, (abfd, sec))
2233 .#define bfd_link_hash_table_create(abfd) \
2234 . BFD_SEND (abfd, _bfd_link_hash_table_create, (abfd))
2236 .#define bfd_link_add_symbols(abfd, info) \
2237 . BFD_SEND (abfd, _bfd_link_add_symbols, (abfd, info))
2239 .#define bfd_link_just_syms(abfd, sec, info) \
2240 . BFD_SEND (abfd, _bfd_link_just_syms, (sec, info))
2242 .#define bfd_final_link(abfd, info) \
2243 . BFD_SEND (abfd, _bfd_final_link, (abfd, info))
2245 .#define bfd_free_cached_info(abfd) \
2246 . BFD_SEND (abfd, _bfd_free_cached_info, (abfd))
2248 .#define bfd_get_dynamic_symtab_upper_bound(abfd) \
2249 . BFD_SEND (abfd, _bfd_get_dynamic_symtab_upper_bound, (abfd))
2251 .#define bfd_print_private_bfd_data(abfd, file)\
2252 . BFD_SEND (abfd, _bfd_print_private_bfd_data, (abfd, file))
2254 .#define bfd_canonicalize_dynamic_symtab(abfd, asymbols) \
2255 . BFD_SEND (abfd, _bfd_canonicalize_dynamic_symtab, (abfd, asymbols))
2257 .#define bfd_get_synthetic_symtab(abfd, count, syms, dyncount, dynsyms, ret) \
2258 . BFD_SEND (abfd, _bfd_get_synthetic_symtab, (abfd, count, syms, \
2259 . dyncount, dynsyms, ret))
2261 .#define bfd_get_dynamic_reloc_upper_bound(abfd) \
2262 . BFD_SEND (abfd, _bfd_get_dynamic_reloc_upper_bound, (abfd))
2264 .#define bfd_canonicalize_dynamic_reloc(abfd, arels, asyms) \
2265 . BFD_SEND (abfd, _bfd_canonicalize_dynamic_reloc, (abfd, arels, asyms))
2267 .extern bfd_byte *bfd_get_relocated_section_contents
2268 . (bfd *, struct bfd_link_info *, struct bfd_link_order *, bfd_byte *,
2269 . bool, asymbol **);
2274 bfd_byte *
2275 bfd_get_relocated_section_contents (bfd *abfd,
2276 struct bfd_link_info *link_info,
2277 struct bfd_link_order *link_order,
2278 bfd_byte *data,
2279 bool relocatable,
2280 asymbol **symbols)
2282 bfd *abfd2;
2283 bfd_byte *(*fn) (bfd *, struct bfd_link_info *, struct bfd_link_order *,
2284 bfd_byte *, bool, asymbol **);
2286 if (link_order->type == bfd_indirect_link_order)
2288 abfd2 = link_order->u.indirect.section->owner;
2289 if (abfd2 == NULL)
2290 abfd2 = abfd;
2292 else
2293 abfd2 = abfd;
2295 fn = abfd2->xvec->_bfd_get_relocated_section_contents;
2297 return (*fn) (abfd, link_info, link_order, data, relocatable, symbols);
2300 /* Record information about an ELF program header. */
2302 bool
2303 bfd_record_phdr (bfd *abfd,
2304 unsigned long type,
2305 bool flags_valid,
2306 flagword flags,
2307 bool at_valid,
2308 bfd_vma at, /* Bytes. */
2309 bool includes_filehdr,
2310 bool includes_phdrs,
2311 unsigned int count,
2312 asection **secs)
2314 struct elf_segment_map *m, **pm;
2315 size_t amt;
2316 unsigned int opb = bfd_octets_per_byte (abfd, NULL);
2318 if (bfd_get_flavour (abfd) != bfd_target_elf_flavour)
2319 return true;
2321 amt = sizeof (struct elf_segment_map);
2322 amt += ((bfd_size_type) count - 1) * sizeof (asection *);
2323 m = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
2324 if (m == NULL)
2325 return false;
2327 m->p_type = type;
2328 m->p_flags = flags;
2329 m->p_paddr = at * opb;
2330 m->p_flags_valid = flags_valid;
2331 m->p_paddr_valid = at_valid;
2332 m->includes_filehdr = includes_filehdr;
2333 m->includes_phdrs = includes_phdrs;
2334 m->count = count;
2335 if (count > 0)
2336 memcpy (m->sections, secs, count * sizeof (asection *));
2338 for (pm = &elf_seg_map (abfd); *pm != NULL; pm = &(*pm)->next)
2340 *pm = m;
2342 return true;
2345 #ifdef BFD64
2346 /* Return true iff this target is 32-bit. */
2348 static bool
2349 is32bit (bfd *abfd)
2351 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour)
2353 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
2354 return bed->s->elfclass == ELFCLASS32;
2357 /* For non-ELF targets, use architecture information. */
2358 return bfd_arch_bits_per_address (abfd) <= 32;
2360 #endif
2362 /* bfd_sprintf_vma and bfd_fprintf_vma display an address in the
2363 target's address size. */
2365 void
2366 bfd_sprintf_vma (bfd *abfd ATTRIBUTE_UNUSED, char *buf, bfd_vma value)
2368 #ifdef BFD64
2369 if (!is32bit (abfd))
2371 sprintf (buf, "%016" PRIx64, (uint64_t) value);
2372 return;
2374 #endif
2375 sprintf (buf, "%08lx", (unsigned long) value & 0xffffffff);
2378 void
2379 bfd_fprintf_vma (bfd *abfd ATTRIBUTE_UNUSED, void *stream, bfd_vma value)
2381 #ifdef BFD64
2382 if (!is32bit (abfd))
2384 fprintf ((FILE *) stream, "%016" PRIx64, (uint64_t) value);
2385 return;
2387 #endif
2388 fprintf ((FILE *) stream, "%08lx", (unsigned long) value & 0xffffffff);
2392 FUNCTION
2393 bfd_alt_mach_code
2395 SYNOPSIS
2396 bool bfd_alt_mach_code (bfd *abfd, int alternative);
2398 DESCRIPTION
2400 When more than one machine code number is available for the
2401 same machine type, this function can be used to switch between
2402 the preferred one (alternative == 0) and any others. Currently,
2403 only ELF supports this feature, with up to two alternate
2404 machine codes.
2407 bool
2408 bfd_alt_mach_code (bfd *abfd, int alternative)
2410 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour)
2412 int code;
2414 switch (alternative)
2416 case 0:
2417 code = get_elf_backend_data (abfd)->elf_machine_code;
2418 break;
2420 case 1:
2421 code = get_elf_backend_data (abfd)->elf_machine_alt1;
2422 if (code == 0)
2423 return false;
2424 break;
2426 case 2:
2427 code = get_elf_backend_data (abfd)->elf_machine_alt2;
2428 if (code == 0)
2429 return false;
2430 break;
2432 default:
2433 return false;
2436 elf_elfheader (abfd)->e_machine = code;
2438 return true;
2441 return false;
2445 FUNCTION
2446 bfd_emul_get_maxpagesize
2448 SYNOPSIS
2449 bfd_vma bfd_emul_get_maxpagesize (const char *);
2451 DESCRIPTION
2452 Returns the maximum page size, in bytes, as determined by
2453 emulation.
2455 RETURNS
2456 Returns the maximum page size in bytes for ELF, 0 otherwise.
2459 bfd_vma
2460 bfd_emul_get_maxpagesize (const char *emul)
2462 const bfd_target *target;
2464 target = bfd_find_target (emul, NULL);
2465 if (target != NULL
2466 && target->flavour == bfd_target_elf_flavour)
2467 return xvec_get_elf_backend_data (target)->maxpagesize;
2469 return 0;
2473 FUNCTION
2474 bfd_emul_get_commonpagesize
2476 SYNOPSIS
2477 bfd_vma bfd_emul_get_commonpagesize (const char *);
2479 DESCRIPTION
2480 Returns the common page size, in bytes, as determined by
2481 emulation.
2483 RETURNS
2484 Returns the common page size in bytes for ELF, 0 otherwise.
2487 bfd_vma
2488 bfd_emul_get_commonpagesize (const char *emul)
2490 const bfd_target *target;
2492 target = bfd_find_target (emul, NULL);
2493 if (target != NULL
2494 && target->flavour == bfd_target_elf_flavour)
2496 const struct elf_backend_data *bed;
2498 bed = xvec_get_elf_backend_data (target);
2499 return bed->commonpagesize;
2501 return 0;
2505 FUNCTION
2506 bfd_demangle
2508 SYNOPSIS
2509 char *bfd_demangle (bfd *, const char *, int);
2511 DESCRIPTION
2512 Wrapper around cplus_demangle. Strips leading underscores and
2513 other such chars that would otherwise confuse the demangler.
2514 If passed a g++ v3 ABI mangled name, returns a buffer allocated
2515 with malloc holding the demangled name. Returns NULL otherwise
2516 and on memory alloc failure.
2519 char *
2520 bfd_demangle (bfd *abfd, const char *name, int options)
2522 char *res, *alloc;
2523 const char *pre, *suf;
2524 size_t pre_len;
2525 bool skip_lead;
2527 skip_lead = (abfd != NULL
2528 && *name != '\0'
2529 && bfd_get_symbol_leading_char (abfd) == *name);
2530 if (skip_lead)
2531 ++name;
2533 /* This is a hack for better error reporting on XCOFF, PowerPC64-ELF
2534 or the MS PE format. These formats have a number of leading '.'s
2535 on at least some symbols, so we remove all dots to avoid
2536 confusing the demangler. */
2537 pre = name;
2538 while (*name == '.' || *name == '$')
2539 ++name;
2540 pre_len = name - pre;
2542 /* Strip off @plt and suchlike too. */
2543 alloc = NULL;
2544 suf = strchr (name, '@');
2545 if (suf != NULL)
2547 alloc = (char *) bfd_malloc (suf - name + 1);
2548 if (alloc == NULL)
2549 return NULL;
2550 memcpy (alloc, name, suf - name);
2551 alloc[suf - name] = '\0';
2552 name = alloc;
2555 res = cplus_demangle (name, options);
2557 free (alloc);
2559 if (res == NULL)
2561 if (skip_lead)
2563 size_t len = strlen (pre) + 1;
2564 alloc = (char *) bfd_malloc (len);
2565 if (alloc == NULL)
2566 return NULL;
2567 memcpy (alloc, pre, len);
2568 return alloc;
2570 return NULL;
2573 /* Put back any prefix or suffix. */
2574 if (pre_len != 0 || suf != NULL)
2576 size_t len;
2577 size_t suf_len;
2578 char *final;
2580 len = strlen (res);
2581 if (suf == NULL)
2582 suf = res + len;
2583 suf_len = strlen (suf) + 1;
2584 final = (char *) bfd_malloc (pre_len + len + suf_len);
2585 if (final != NULL)
2587 memcpy (final, pre, pre_len);
2588 memcpy (final + pre_len, res, len);
2589 memcpy (final + pre_len + len, suf, suf_len);
2591 free (res);
2592 res = final;
2595 return res;
2598 /* Get the linker information. */
2600 struct bfd_link_info *
2601 _bfd_get_link_info (bfd *abfd)
2603 if (bfd_get_flavour (abfd) != bfd_target_elf_flavour)
2604 return NULL;
2606 return elf_link_info (abfd);