go32 sanity check
[binutils-gdb.git] / bfd / bfd.c
1 /* Generic BFD library interface and support routines.
2 Copyright (C) 1990-2022 Free Software Foundation, Inc.
3 Written by Cygnus Support.
4
5 This file is part of BFD, the Binary File Descriptor library.
6
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.
11
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.
16
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. */
21
22 /*
23 INODE
24 typedef bfd, Error reporting, BFD front end, BFD front end
25
26 SECTION
27 <<typedef bfd>>
28
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.
32
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.
36
37 CODE_FRAGMENT
38 .
39 .enum bfd_direction
40 . {
41 . no_direction = 0,
42 . read_direction = 1,
43 . write_direction = 2,
44 . both_direction = 3
45 . };
46 .
47 .enum bfd_plugin_format
48 . {
49 . bfd_plugin_unknown = 0,
50 . bfd_plugin_yes = 1,
51 . bfd_plugin_no = 2
52 . };
53 .
54 .struct bfd_build_id
55 . {
56 . bfd_size_type size;
57 . bfd_byte data[1];
58 . };
59 .
60 .struct bfd
61 .{
62 . {* The filename the application opened the BFD with. *}
63 . const char *filename;
64 .
65 . {* A pointer to the target jump table. *}
66 . const struct bfd_target *xvec;
67 .
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;
72 .
73 . {* The caching routines use these to maintain a
74 . least-recently-used list of BFDs. *}
75 . struct bfd *lru_prev, *lru_next;
76 .
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;
81 .
82 . {* File modified time, if mtime_set is TRUE. *}
83 . long mtime;
84 .
85 . {* A unique identifier of the BFD *}
86 . unsigned int id;
87 .
88 . {* Format_specific flags. *}
89 . flagword flags;
90 .
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). *}
97 .
98 .#define BFD_NO_FLAGS 0x0
99 .
100 . {* BFD contains relocation entries. *}
101 .#define HAS_RELOC 0x1
102 .
103 . {* BFD is directly executable. *}
104 .#define EXEC_P 0x2
105 .
106 . {* BFD has line number information (basically used for F_LNNO in a
107 . COFF header). *}
108 .#define HAS_LINENO 0x4
109 .
110 . {* BFD has debugging information. *}
111 .#define HAS_DEBUG 0x08
112 .
113 . {* BFD has symbols. *}
114 .#define HAS_SYMS 0x10
115 .
116 . {* BFD has local symbols (basically used for F_LSYMS in a COFF
117 . header). *}
118 .#define HAS_LOCALS 0x20
119 .
120 . {* BFD is a dynamic object. *}
121 .#define DYNAMIC 0x40
122 .
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
127 .
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
131 .
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
136 .
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
142 .
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
147 .
148 . {* This BFD has been created by the linker and doesn't correspond
149 . to any input file. *}
150 .#define BFD_LINKER_CREATED 0x1000
151 .
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
156 .
157 . {* Compress sections in this BFD. *}
158 .#define BFD_COMPRESS 0x4000
159 .
160 . {* Decompress sections in this BFD. *}
161 .#define BFD_DECOMPRESS 0x8000
162 .
163 . {* BFD is a dummy, for plugins. *}
164 .#define BFD_PLUGIN 0x10000
165 .
166 . {* Compress sections in this BFD with SHF_COMPRESSED from gABI. *}
167 .#define BFD_COMPRESS_GABI 0x20000
168 .
169 . {* Convert ELF common symbol type to STT_COMMON or STT_OBJECT in this
170 . BFD. *}
171 .#define BFD_CONVERT_ELF_COMMON 0x40000
172 .
173 . {* Use the ELF STT_COMMON type in this BFD. *}
174 .#define BFD_USE_ELF_STT_COMMON 0x80000
175 .
176 . {* Put pathnames into archives (non-POSIX). *}
177 .#define BFD_ARCHIVE_FULL_PATH 0x100000
178 .
179 .#define BFD_CLOSED_BY_CACHE 0x200000
180
181 . {* Compress sections in this BFD with SHF_COMPRESSED zstd. *}
182 .#define BFD_COMPRESS_ZSTD 0x400000
183 .
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)
189 .
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)
195 .
196 . {* The format which belongs to the BFD. (object, core, etc.) *}
197 . ENUM_BITFIELD (bfd_format) format : 3;
198 .
199 . {* The direction with which the BFD was opened. *}
200 . ENUM_BITFIELD (bfd_direction) direction : 2;
201 .
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;
205 .
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;
210 .
211 . {* ... and here: (``once'' means at least once). *}
212 . unsigned int opened_once : 1;
213 .
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;
217 .
218 . {* Flag set if symbols from this BFD should not be exported. *}
219 . unsigned int no_export : 1;
220 .
221 . {* Remember when output has begun, to stop strange things
222 . from happening. *}
223 . unsigned int output_has_begun : 1;
224 .
225 . {* Have archive map. *}
226 . unsigned int has_armap : 1;
227 .
228 . {* Set if this is a thin archive. *}
229 . unsigned int is_thin_archive : 1;
230 .
231 . {* Set if this archive should not cache element positions. *}
232 . unsigned int no_element_cache : 1;
233 .
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;
237 .
238 . {* Set if this is the linker output BFD. *}
239 . unsigned int is_linker_output : 1;
240 .
241 . {* Set if this is the linker input BFD. *}
242 . unsigned int is_linker_input : 1;
243 .
244 . {* If this is an input for a compiler plug-in library. *}
245 . ENUM_BITFIELD (bfd_plugin_format) plugin_format : 2;
246 .
247 . {* Set if this is a plugin output file. *}
248 . unsigned int lto_output : 1;
249 .
250 . {* Set if this is a slim LTO object not loaded with a compiler plugin. *}
251 . unsigned int lto_slim_object : 1;
252 .
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;
256 .
257 . {* Set to dummy BFD created when claimed by a compiler plug-in
258 . library. *}
259 . bfd *plugin_dummy_bfd;
260 .
261 . {* The offset of this bfd in the file, typically 0 if it is not
262 . contained in an archive. *}
263 . ufile_ptr origin;
264 .
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;
271 .
272 . {* A hash table for section names. *}
273 . struct bfd_hash_table section_htab;
274 .
275 . {* Pointer to linked list of sections. *}
276 . struct bfd_section *sections;
277 .
278 . {* The last section on the section list. *}
279 . struct bfd_section *section_last;
280 .
281 . {* The number of sections. *}
282 . unsigned int section_count;
283 .
284 . {* The archive plugin file descriptor. *}
285 . int archive_plugin_fd;
286 .
287 . {* The number of opens on the archive plugin file descriptor. *}
288 . unsigned int archive_plugin_fd_open_count;
289 .
290 . {* A field used by _bfd_generic_link_add_archive_symbols. This will
291 . be used only for archive elements. *}
292 . int archive_pass;
293 .
294 . {* The total size of memory from bfd_alloc. *}
295 . bfd_size_type alloc_size;
296 .
297 . {* Stuff only useful for object files:
298 . The start address. *}
299 . bfd_vma start_address;
300 .
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;
304 .
305 . {* Used for input and output. *}
306 . unsigned int symcount;
307 .
308 . {* Used for slurped dynamic symbol tables. *}
309 . unsigned int dynsymcount;
310 .
311 . {* Pointer to structure which contains architecture information. *}
312 . const struct bfd_arch_info *arch_info;
313 .
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;
318 .
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. *}
326 .
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;
333 .
334 . {* Used by the back end to hold private data. *}
335 . union
336 . {
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 sun_core_struct *sun_core_data;
350 . struct sco5_core_struct *sco5_core_data;
351 . struct trad_core_struct *trad_core_data;
352 . struct som_data_struct *som_data;
353 . struct hpux_core_struct *hpux_core_data;
354 . struct hppabsd_core_struct *hppabsd_core_data;
355 . struct sgi_core_struct *sgi_core_data;
356 . struct lynx_core_struct *lynx_core_data;
357 . struct osf_core_struct *osf_core_data;
358 . struct cisco_core_struct *cisco_core_data;
359 . struct versados_data_struct *versados_data;
360 . struct netbsd_core_struct *netbsd_core_data;
361 . struct mach_o_data_struct *mach_o_data;
362 . struct mach_o_fat_data_struct *mach_o_fat_data;
363 . struct plugin_data_struct *plugin_data;
364 . struct bfd_pef_data_struct *pef_data;
365 . struct bfd_pef_xlib_data_struct *pef_xlib_data;
366 . struct bfd_sym_data_struct *sym_data;
367 . void *any;
368 . }
369 . tdata;
370 .
371 . {* Used by the application to hold private data. *}
372 . void *usrdata;
373 .
374 . {* Where all the allocated stuff under this BFD goes. This is a
375 . struct objalloc *, but we use void * to avoid requiring the inclusion
376 . of objalloc.h. *}
377 . void *memory;
378 .
379 . {* For input BFDs, the build ID, if the object has one. *}
380 . const struct bfd_build_id *build_id;
381 .};
382 .
383 .static inline const char *
384 .bfd_get_filename (const bfd *abfd)
385 .{
386 . return abfd->filename;
387 .}
388 .
389 .static inline bool
390 .bfd_get_cacheable (const bfd *abfd)
391 .{
392 . return abfd->cacheable;
393 .}
394 .
395 .static inline enum bfd_format
396 .bfd_get_format (const bfd *abfd)
397 .{
398 . return abfd->format;
399 .}
400 .
401 .static inline flagword
402 .bfd_get_file_flags (const bfd *abfd)
403 .{
404 . return abfd->flags;
405 .}
406 .
407 .static inline bfd_vma
408 .bfd_get_start_address (const bfd *abfd)
409 .{
410 . return abfd->start_address;
411 .}
412 .
413 .static inline unsigned int
414 .bfd_get_symcount (const bfd *abfd)
415 .{
416 . return abfd->symcount;
417 .}
418 .
419 .static inline unsigned int
420 .bfd_get_dynamic_symcount (const bfd *abfd)
421 .{
422 . return abfd->dynsymcount;
423 .}
424 .
425 .static inline struct bfd_symbol **
426 .bfd_get_outsymbols (const bfd *abfd)
427 .{
428 . return abfd->outsymbols;
429 .}
430 .
431 .static inline unsigned int
432 .bfd_count_sections (const bfd *abfd)
433 .{
434 . return abfd->section_count;
435 .}
436 .
437 .static inline bool
438 .bfd_has_map (const bfd *abfd)
439 .{
440 . return abfd->has_armap;
441 .}
442 .
443 .static inline bool
444 .bfd_is_thin_archive (const bfd *abfd)
445 .{
446 . return abfd->is_thin_archive;
447 .}
448 .
449 .static inline void *
450 .bfd_usrdata (const bfd *abfd)
451 .{
452 . return abfd->usrdata;
453 .}
454 .
455 .{* See note beside bfd_set_section_userdata. *}
456 .static inline bool
457 .bfd_set_cacheable (bfd * abfd, bool val)
458 .{
459 . abfd->cacheable = val;
460 . return true;
461 .}
462 .
463 .static inline void
464 .bfd_set_thin_archive (bfd *abfd, bool val)
465 .{
466 . abfd->is_thin_archive = val;
467 .}
468 .
469 .static inline void
470 .bfd_set_usrdata (bfd *abfd, void *val)
471 .{
472 . abfd->usrdata = val;
473 .}
474 .
475 .static inline asection *
476 .bfd_asymbol_section (const asymbol *sy)
477 .{
478 . return sy->section;
479 .}
480 .
481 .static inline bfd_vma
482 .bfd_asymbol_value (const asymbol *sy)
483 .{
484 . return sy->section->vma + sy->value;
485 .}
486 .
487 .static inline const char *
488 .bfd_asymbol_name (const asymbol *sy)
489 .{
490 . return sy->name;
491 .}
492 .
493 .static inline struct bfd *
494 .bfd_asymbol_bfd (const asymbol *sy)
495 .{
496 . return sy->the_bfd;
497 .}
498 .
499 .static inline void
500 .bfd_set_asymbol_name (asymbol *sy, const char *name)
501 .{
502 . sy->name = name;
503 .}
504 .
505 .static inline bfd_size_type
506 .bfd_get_section_limit_octets (const bfd *abfd, const asection *sec)
507 .{
508 . if (abfd->direction != write_direction && sec->rawsize != 0)
509 . return sec->rawsize;
510 . return sec->size;
511 .}
512 .
513 .{* Find the address one past the end of SEC. *}
514 .static inline bfd_size_type
515 .bfd_get_section_limit (const bfd *abfd, const asection *sec)
516 .{
517 . return (bfd_get_section_limit_octets (abfd, sec)
518 . / bfd_octets_per_byte (abfd, sec));
519 .}
520 .
521 .{* Functions to handle insertion and deletion of a bfd's sections. These
522 . only handle the list pointers, ie. do not adjust section_count,
523 . target_index etc. *}
524 .static inline void
525 .bfd_section_list_remove (bfd *abfd, asection *s)
526 .{
527 . asection *next = s->next;
528 . asection *prev = s->prev;
529 . if (prev)
530 . prev->next = next;
531 . else
532 . abfd->sections = next;
533 . if (next)
534 . next->prev = prev;
535 . else
536 . abfd->section_last = prev;
537 .}
538 .
539 .static inline void
540 .bfd_section_list_append (bfd *abfd, asection *s)
541 .{
542 . s->next = 0;
543 . if (abfd->section_last)
544 . {
545 . s->prev = abfd->section_last;
546 . abfd->section_last->next = s;
547 . }
548 . else
549 . {
550 . s->prev = 0;
551 . abfd->sections = s;
552 . }
553 . abfd->section_last = s;
554 .}
555 .
556 .static inline void
557 .bfd_section_list_prepend (bfd *abfd, asection *s)
558 .{
559 . s->prev = 0;
560 . if (abfd->sections)
561 . {
562 . s->next = abfd->sections;
563 . abfd->sections->prev = s;
564 . }
565 . else
566 . {
567 . s->next = 0;
568 . abfd->section_last = s;
569 . }
570 . abfd->sections = s;
571 .}
572 .
573 .static inline void
574 .bfd_section_list_insert_after (bfd *abfd, asection *a, asection *s)
575 .{
576 . asection *next = a->next;
577 . s->next = next;
578 . s->prev = a;
579 . a->next = s;
580 . if (next)
581 . next->prev = s;
582 . else
583 . abfd->section_last = s;
584 .}
585 .
586 .static inline void
587 .bfd_section_list_insert_before (bfd *abfd, asection *b, asection *s)
588 .{
589 . asection *prev = b->prev;
590 . s->prev = prev;
591 . s->next = b;
592 . b->prev = s;
593 . if (prev)
594 . prev->next = s;
595 . else
596 . abfd->sections = s;
597 .}
598 .
599 .static inline bool
600 .bfd_section_removed_from_list (const bfd *abfd, const asection *s)
601 .{
602 . return s->next ? s->next->prev != s : abfd->section_last != s;
603 .}
604 .
605 */
606
607 #include "sysdep.h"
608 #include <stdarg.h>
609 #include "bfd.h"
610 #include "bfdver.h"
611 #include "libiberty.h"
612 #include "demangle.h"
613 #include "safe-ctype.h"
614 #include "bfdlink.h"
615 #include "libbfd.h"
616 #include "coff/internal.h"
617 #include "coff/sym.h"
618 #include "libcoff.h"
619 #include "libecoff.h"
620 #undef obj_symbols
621 #include "elf-bfd.h"
622
623 #ifndef EXIT_FAILURE
624 #define EXIT_FAILURE 1
625 #endif
626
627 \f
628 /* provide storage for subsystem, stack and heap data which may have been
629 passed in on the command line. Ld puts this data into a bfd_link_info
630 struct which ultimately gets passed in to the bfd. When it arrives, copy
631 it to the following struct so that the data will be available in coffcode.h
632 where it is needed. The typedef's used are defined in bfd.h */
633 \f
634 /*
635 INODE
636 Error reporting, Miscellaneous, typedef bfd, BFD front end
637
638 SECTION
639 Error reporting
640
641 Most BFD functions return nonzero on success (check their
642 individual documentation for precise semantics). On an error,
643 they call <<bfd_set_error>> to set an error condition that callers
644 can check by calling <<bfd_get_error>>.
645 If that returns <<bfd_error_system_call>>, then check
646 <<errno>>.
647
648 The easiest way to report a BFD error to the user is to
649 use <<bfd_perror>>.
650
651 SUBSECTION
652 Type <<bfd_error_type>>
653
654 The values returned by <<bfd_get_error>> are defined by the
655 enumerated type <<bfd_error_type>>.
656
657 CODE_FRAGMENT
658 .
659 .typedef enum bfd_error
660 .{
661 . bfd_error_no_error = 0,
662 . bfd_error_system_call,
663 . bfd_error_invalid_target,
664 . bfd_error_wrong_format,
665 . bfd_error_wrong_object_format,
666 . bfd_error_invalid_operation,
667 . bfd_error_no_memory,
668 . bfd_error_no_symbols,
669 . bfd_error_no_armap,
670 . bfd_error_no_more_archived_files,
671 . bfd_error_malformed_archive,
672 . bfd_error_missing_dso,
673 . bfd_error_file_not_recognized,
674 . bfd_error_file_ambiguously_recognized,
675 . bfd_error_no_contents,
676 . bfd_error_nonrepresentable_section,
677 . bfd_error_no_debug_section,
678 . bfd_error_bad_value,
679 . bfd_error_file_truncated,
680 . bfd_error_file_too_big,
681 . bfd_error_sorry,
682 . bfd_error_on_input,
683 . bfd_error_invalid_error_code
684 .}
685 .bfd_error_type;
686 .
687 */
688
689 static bfd_error_type bfd_error = bfd_error_no_error;
690 static bfd *input_bfd = NULL;
691 static bfd_error_type input_error = bfd_error_no_error;
692
693 const char *const bfd_errmsgs[] =
694 {
695 N_("no error"),
696 N_("system call error"),
697 N_("invalid bfd target"),
698 N_("file in wrong format"),
699 N_("archive object file in wrong format"),
700 N_("invalid operation"),
701 N_("memory exhausted"),
702 N_("no symbols"),
703 N_("archive has no index; run ranlib to add one"),
704 N_("no more archived files"),
705 N_("malformed archive"),
706 N_("DSO missing from command line"),
707 N_("file format not recognized"),
708 N_("file format is ambiguous"),
709 N_("section has no contents"),
710 N_("nonrepresentable section on output"),
711 N_("symbol needs debug section which does not exist"),
712 N_("bad value"),
713 N_("file truncated"),
714 N_("file too big"),
715 N_("sorry, cannot handle this file"),
716 N_("error reading %s: %s"),
717 N_("#<invalid error code>")
718 };
719
720 /*
721 FUNCTION
722 bfd_get_error
723
724 SYNOPSIS
725 bfd_error_type bfd_get_error (void);
726
727 DESCRIPTION
728 Return the current BFD error condition.
729 */
730
731 bfd_error_type
732 bfd_get_error (void)
733 {
734 return bfd_error;
735 }
736
737 /*
738 FUNCTION
739 bfd_set_error
740
741 SYNOPSIS
742 void bfd_set_error (bfd_error_type error_tag);
743
744 DESCRIPTION
745 Set the BFD error condition to be @var{error_tag}.
746
747 @var{error_tag} must not be bfd_error_on_input. Use
748 bfd_set_input_error for input errors instead.
749 */
750
751 void
752 bfd_set_error (bfd_error_type error_tag)
753 {
754 bfd_error = error_tag;
755 if (bfd_error >= bfd_error_on_input)
756 abort ();
757 }
758
759 /*
760 FUNCTION
761 bfd_set_input_error
762
763 SYNOPSIS
764 void bfd_set_input_error (bfd *input, bfd_error_type error_tag);
765
766 DESCRIPTION
767
768 Set the BFD error condition to be bfd_error_on_input.
769 @var{input} is the input bfd where the error occurred, and
770 @var{error_tag} the bfd_error_type error.
771 */
772
773 void
774 bfd_set_input_error (bfd *input, bfd_error_type error_tag)
775 {
776 /* This is an error that occurred during bfd_close when writing an
777 archive, but on one of the input files. */
778 bfd_error = bfd_error_on_input;
779 input_bfd = input;
780 input_error = error_tag;
781 if (input_error >= bfd_error_on_input)
782 abort ();
783 }
784
785 /*
786 FUNCTION
787 bfd_errmsg
788
789 SYNOPSIS
790 const char *bfd_errmsg (bfd_error_type error_tag);
791
792 DESCRIPTION
793 Return a string describing the error @var{error_tag}, or
794 the system error if @var{error_tag} is <<bfd_error_system_call>>.
795 */
796
797 const char *
798 bfd_errmsg (bfd_error_type error_tag)
799 {
800 #ifndef errno
801 extern int errno;
802 #endif
803 if (error_tag == bfd_error_on_input)
804 {
805 char *buf;
806 const char *msg = bfd_errmsg (input_error);
807
808 if (asprintf (&buf, _(bfd_errmsgs [error_tag]),
809 bfd_get_filename (input_bfd), msg) != -1)
810 return buf;
811
812 /* Ick, what to do on out of memory? */
813 return msg;
814 }
815
816 if (error_tag == bfd_error_system_call)
817 return xstrerror (errno);
818
819 if (error_tag > bfd_error_invalid_error_code)
820 error_tag = bfd_error_invalid_error_code; /* sanity check */
821
822 return _(bfd_errmsgs [error_tag]);
823 }
824
825 /*
826 FUNCTION
827 bfd_perror
828
829 SYNOPSIS
830 void bfd_perror (const char *message);
831
832 DESCRIPTION
833 Print to the standard error stream a string describing the
834 last BFD error that occurred, or the last system error if
835 the last BFD error was a system call failure. If @var{message}
836 is non-NULL and non-empty, the error string printed is preceded
837 by @var{message}, a colon, and a space. It is followed by a newline.
838 */
839
840 void
841 bfd_perror (const char *message)
842 {
843 fflush (stdout);
844 if (message == NULL || *message == '\0')
845 fprintf (stderr, "%s\n", bfd_errmsg (bfd_get_error ()));
846 else
847 fprintf (stderr, "%s: %s\n", message, bfd_errmsg (bfd_get_error ()));
848 fflush (stderr);
849 }
850
851 /*
852 SUBSECTION
853 BFD error handler
854
855 Some BFD functions want to print messages describing the
856 problem. They call a BFD error handler function. This
857 function may be overridden by the program.
858
859 The BFD error handler acts like vprintf.
860
861 CODE_FRAGMENT
862 .
863 .typedef void (*bfd_error_handler_type) (const char *, va_list);
864 .
865 */
866
867 /* The program name used when printing BFD error messages. */
868
869 static const char *_bfd_error_program_name;
870
871 /* Support for positional parameters. */
872
873 union _bfd_doprnt_args
874 {
875 int i;
876 long l;
877 long long ll;
878 double d;
879 long double ld;
880 void *p;
881 enum
882 {
883 Bad,
884 Int,
885 Long,
886 LongLong,
887 Double,
888 LongDouble,
889 Ptr
890 } type;
891 };
892
893 /* This macro and _bfd_doprnt taken from libiberty _doprnt.c, tidied a
894 little and extended to handle '%pA', '%pB' and positional parameters. */
895
896 #define PRINT_TYPE(TYPE, FIELD) \
897 do \
898 { \
899 TYPE value = (TYPE) args[arg_no].FIELD; \
900 result = fprintf (stream, specifier, value); \
901 } while (0)
902
903 static int
904 _bfd_doprnt (FILE *stream, const char *format, union _bfd_doprnt_args *args)
905 {
906 const char *ptr = format;
907 char specifier[128];
908 int total_printed = 0;
909 unsigned int arg_count = 0;
910
911 while (*ptr != '\0')
912 {
913 int result;
914
915 if (*ptr != '%')
916 {
917 /* While we have regular characters, print them. */
918 char *end = strchr (ptr, '%');
919 if (end != NULL)
920 result = fprintf (stream, "%.*s", (int) (end - ptr), ptr);
921 else
922 result = fprintf (stream, "%s", ptr);
923 ptr += result;
924 }
925 else if (ptr[1] == '%')
926 {
927 fputc ('%', stream);
928 result = 1;
929 ptr += 2;
930 }
931 else
932 {
933 /* We have a format specifier! */
934 char *sptr = specifier;
935 int wide_width = 0, short_width = 0;
936 unsigned int arg_no;
937
938 /* Copy the % and move forward. */
939 *sptr++ = *ptr++;
940
941 /* Check for a positional parameter. */
942 arg_no = -1u;
943 if (*ptr != '0' && ISDIGIT (*ptr) && ptr[1] == '$')
944 {
945 arg_no = *ptr - '1';
946 ptr += 2;
947 }
948
949 /* Move past flags. */
950 while (strchr ("-+ #0'I", *ptr))
951 *sptr++ = *ptr++;
952
953 if (*ptr == '*')
954 {
955 int value;
956 unsigned int arg_index;
957
958 ptr++;
959 arg_index = arg_count;
960 if (*ptr != '0' && ISDIGIT (*ptr) && ptr[1] == '$')
961 {
962 arg_index = *ptr - '1';
963 ptr += 2;
964 }
965 value = abs (args[arg_index].i);
966 arg_count++;
967 sptr += sprintf (sptr, "%d", value);
968 }
969 else
970 /* Handle explicit numeric value. */
971 while (ISDIGIT (*ptr))
972 *sptr++ = *ptr++;
973
974 /* Precision. */
975 if (*ptr == '.')
976 {
977 /* Copy and go past the period. */
978 *sptr++ = *ptr++;
979 if (*ptr == '*')
980 {
981 int value;
982 unsigned int arg_index;
983
984 ptr++;
985 arg_index = arg_count;
986 if (*ptr != '0' && ISDIGIT (*ptr) && ptr[1] == '$')
987 {
988 arg_index = *ptr - '1';
989 ptr += 2;
990 }
991 value = abs (args[arg_index].i);
992 arg_count++;
993 sptr += sprintf (sptr, "%d", value);
994 }
995 else
996 /* Handle explicit numeric value. */
997 while (ISDIGIT (*ptr))
998 *sptr++ = *ptr++;
999 }
1000 while (strchr ("hlL", *ptr))
1001 {
1002 switch (*ptr)
1003 {
1004 case 'h':
1005 short_width = 1;
1006 break;
1007 case 'l':
1008 wide_width++;
1009 break;
1010 case 'L':
1011 wide_width = 2;
1012 break;
1013 default:
1014 abort();
1015 }
1016 *sptr++ = *ptr++;
1017 }
1018
1019 /* Copy the type specifier, and NULL terminate. */
1020 *sptr++ = *ptr++;
1021 *sptr = '\0';
1022 if ((int) arg_no < 0)
1023 arg_no = arg_count;
1024
1025 switch (ptr[-1])
1026 {
1027 case 'd':
1028 case 'i':
1029 case 'o':
1030 case 'u':
1031 case 'x':
1032 case 'X':
1033 case 'c':
1034 {
1035 /* Short values are promoted to int, so just copy it
1036 as an int and trust the C library printf to cast it
1037 to the right width. */
1038 if (short_width)
1039 PRINT_TYPE (int, i);
1040 else
1041 {
1042 switch (wide_width)
1043 {
1044 case 0:
1045 PRINT_TYPE (int, i);
1046 break;
1047 case 1:
1048 PRINT_TYPE (long, l);
1049 break;
1050 case 2:
1051 default:
1052 #if defined (__MSVCRT__)
1053 sptr[-3] = 'I';
1054 sptr[-2] = '6';
1055 sptr[-1] = '4';
1056 *sptr++ = ptr[-1];
1057 *sptr = '\0';
1058 #endif
1059 PRINT_TYPE (long long, ll);
1060 break;
1061 }
1062 }
1063 }
1064 break;
1065 case 'f':
1066 case 'e':
1067 case 'E':
1068 case 'g':
1069 case 'G':
1070 {
1071 if (wide_width == 0)
1072 PRINT_TYPE (double, d);
1073 else
1074 PRINT_TYPE (long double, ld);
1075 }
1076 break;
1077 case 's':
1078 PRINT_TYPE (char *, p);
1079 break;
1080 case 'p':
1081 if (*ptr == 'A')
1082 {
1083 asection *sec;
1084 bfd *abfd;
1085 const char *group = NULL;
1086 struct coff_comdat_info *ci;
1087
1088 ptr++;
1089 sec = (asection *) args[arg_no].p;
1090 if (sec == NULL)
1091 /* Invoking %pA with a null section pointer is an
1092 internal error. */
1093 abort ();
1094 abfd = sec->owner;
1095 if (abfd != NULL
1096 && bfd_get_flavour (abfd) == bfd_target_elf_flavour
1097 && elf_next_in_group (sec) != NULL
1098 && (sec->flags & SEC_GROUP) == 0)
1099 group = elf_group_name (sec);
1100 else if (abfd != NULL
1101 && bfd_get_flavour (abfd) == bfd_target_coff_flavour
1102 && (ci = bfd_coff_get_comdat_section (sec->owner,
1103 sec)) != NULL)
1104 group = ci->name;
1105 if (group != NULL)
1106 result = fprintf (stream, "%s[%s]", sec->name, group);
1107 else
1108 result = fprintf (stream, "%s", sec->name);
1109 }
1110 else if (*ptr == 'B')
1111 {
1112 bfd *abfd;
1113
1114 ptr++;
1115 abfd = (bfd *) args[arg_no].p;
1116 if (abfd == NULL)
1117 /* Invoking %pB with a null bfd pointer is an
1118 internal error. */
1119 abort ();
1120 else if (abfd->my_archive
1121 && !bfd_is_thin_archive (abfd->my_archive))
1122 result = fprintf (stream, "%s(%s)",
1123 bfd_get_filename (abfd->my_archive),
1124 bfd_get_filename (abfd));
1125 else
1126 result = fprintf (stream, "%s", bfd_get_filename (abfd));
1127 }
1128 else
1129 PRINT_TYPE (void *, p);
1130 break;
1131 default:
1132 abort();
1133 }
1134 arg_count++;
1135 }
1136 if (result == -1)
1137 return -1;
1138 total_printed += result;
1139 }
1140
1141 return total_printed;
1142 }
1143
1144 /* First pass over FORMAT to gather ARGS. Returns number of args. */
1145
1146 static unsigned int
1147 _bfd_doprnt_scan (const char *format, union _bfd_doprnt_args *args)
1148 {
1149 const char *ptr = format;
1150 unsigned int arg_count = 0;
1151
1152 while (*ptr != '\0')
1153 {
1154 if (*ptr != '%')
1155 {
1156 ptr = strchr (ptr, '%');
1157 if (ptr == NULL)
1158 break;
1159 }
1160 else if (ptr[1] == '%')
1161 ptr += 2;
1162 else
1163 {
1164 int wide_width = 0, short_width = 0;
1165 unsigned int arg_no;
1166 int arg_type;
1167
1168 ptr++;
1169
1170 /* Check for a positional parameter. */
1171 arg_no = -1u;
1172 if (*ptr != '0' && ISDIGIT (*ptr) && ptr[1] == '$')
1173 {
1174 arg_no = *ptr - '1';
1175 ptr += 2;
1176 }
1177
1178 /* Move past flags. */
1179 while (strchr ("-+ #0'I", *ptr))
1180 ptr++;
1181
1182 if (*ptr == '*')
1183 {
1184 unsigned int arg_index;
1185
1186 ptr++;
1187 arg_index = arg_count;
1188 if (*ptr != '0' && ISDIGIT (*ptr) && ptr[1] == '$')
1189 {
1190 arg_index = *ptr - '1';
1191 ptr += 2;
1192 }
1193 if (arg_index >= 9)
1194 abort ();
1195 args[arg_index].type = Int;
1196 arg_count++;
1197 }
1198 else
1199 /* Handle explicit numeric value. */
1200 while (ISDIGIT (*ptr))
1201 ptr++;
1202
1203 /* Precision. */
1204 if (*ptr == '.')
1205 {
1206 ptr++;
1207 if (*ptr == '*')
1208 {
1209 unsigned int arg_index;
1210
1211 ptr++;
1212 arg_index = arg_count;
1213 if (*ptr != '0' && ISDIGIT (*ptr) && ptr[1] == '$')
1214 {
1215 arg_index = *ptr - '1';
1216 ptr += 2;
1217 }
1218 if (arg_index >= 9)
1219 abort ();
1220 args[arg_index].type = Int;
1221 arg_count++;
1222 }
1223 else
1224 /* Handle explicit numeric value. */
1225 while (ISDIGIT (*ptr))
1226 ptr++;
1227 }
1228 while (strchr ("hlL", *ptr))
1229 {
1230 switch (*ptr)
1231 {
1232 case 'h':
1233 short_width = 1;
1234 break;
1235 case 'l':
1236 wide_width++;
1237 break;
1238 case 'L':
1239 wide_width = 2;
1240 break;
1241 default:
1242 abort();
1243 }
1244 ptr++;
1245 }
1246
1247 ptr++;
1248 if ((int) arg_no < 0)
1249 arg_no = arg_count;
1250
1251 arg_type = Bad;
1252 switch (ptr[-1])
1253 {
1254 case 'd':
1255 case 'i':
1256 case 'o':
1257 case 'u':
1258 case 'x':
1259 case 'X':
1260 case 'c':
1261 {
1262 if (short_width)
1263 arg_type = Int;
1264 else
1265 {
1266 switch (wide_width)
1267 {
1268 case 0:
1269 arg_type = Int;
1270 break;
1271 case 1:
1272 arg_type = Long;
1273 break;
1274 case 2:
1275 default:
1276 arg_type = LongLong;
1277 break;
1278 }
1279 }
1280 }
1281 break;
1282 case 'f':
1283 case 'e':
1284 case 'E':
1285 case 'g':
1286 case 'G':
1287 {
1288 if (wide_width == 0)
1289 arg_type = Double;
1290 else
1291 arg_type = LongDouble;
1292 }
1293 break;
1294 case 's':
1295 arg_type = Ptr;
1296 break;
1297 case 'p':
1298 if (*ptr == 'A' || *ptr == 'B')
1299 ptr++;
1300 arg_type = Ptr;
1301 break;
1302 default:
1303 abort();
1304 }
1305
1306 if (arg_no >= 9)
1307 abort ();
1308 args[arg_no].type = arg_type;
1309 arg_count++;
1310 }
1311 }
1312
1313 return arg_count;
1314 }
1315
1316 static void
1317 error_handler_internal (const char *fmt, va_list ap)
1318 {
1319 unsigned int i, arg_count;
1320 union _bfd_doprnt_args args[9];
1321
1322 for (i = 0; i < sizeof (args) / sizeof (args[0]); i++)
1323 args[i].type = Bad;
1324
1325 arg_count = _bfd_doprnt_scan (fmt, args);
1326 for (i = 0; i < arg_count; i++)
1327 {
1328 switch (args[i].type)
1329 {
1330 case Int:
1331 args[i].i = va_arg (ap, int);
1332 break;
1333 case Long:
1334 args[i].l = va_arg (ap, long);
1335 break;
1336 case LongLong:
1337 args[i].ll = va_arg (ap, long long);
1338 break;
1339 case Double:
1340 args[i].d = va_arg (ap, double);
1341 break;
1342 case LongDouble:
1343 args[i].ld = va_arg (ap, long double);
1344 break;
1345 case Ptr:
1346 args[i].p = va_arg (ap, void *);
1347 break;
1348 default:
1349 abort ();
1350 }
1351 }
1352
1353 /* PR 4992: Don't interrupt output being sent to stdout. */
1354 fflush (stdout);
1355
1356 if (_bfd_error_program_name != NULL)
1357 fprintf (stderr, "%s: ", _bfd_error_program_name);
1358 else
1359 fprintf (stderr, "BFD: ");
1360
1361 _bfd_doprnt (stderr, fmt, args);
1362
1363 /* On AIX, putc is implemented as a macro that triggers a -Wunused-value
1364 warning, so use the fputc function to avoid it. */
1365 fputc ('\n', stderr);
1366 fflush (stderr);
1367 }
1368
1369 /* This is a function pointer to the routine which should handle BFD
1370 error messages. It is called when a BFD routine encounters an
1371 error for which it wants to print a message. Going through a
1372 function pointer permits a program linked against BFD to intercept
1373 the messages and deal with them itself. */
1374
1375 static bfd_error_handler_type _bfd_error_internal = error_handler_internal;
1376
1377 /*
1378 FUNCTION
1379 _bfd_error_handler
1380
1381 SYNOPSIS
1382 void _bfd_error_handler (const char *fmt, ...) ATTRIBUTE_PRINTF_1;
1383
1384 DESCRIPTION
1385 This is the default routine to handle BFD error messages.
1386 Like fprintf (stderr, ...), but also handles some extra format
1387 specifiers.
1388
1389 %pA section name from section. For group components, prints
1390 group name too.
1391 %pB file name from bfd. For archive components, prints
1392 archive too.
1393
1394 Beware: Only supports a maximum of 9 format arguments.
1395 */
1396
1397 void
1398 _bfd_error_handler (const char *fmt, ...)
1399 {
1400 va_list ap;
1401
1402 va_start (ap, fmt);
1403 _bfd_error_internal (fmt, ap);
1404 va_end (ap);
1405 }
1406
1407 /*
1408 FUNCTION
1409 bfd_set_error_handler
1410
1411 SYNOPSIS
1412 bfd_error_handler_type bfd_set_error_handler (bfd_error_handler_type);
1413
1414 DESCRIPTION
1415 Set the BFD error handler function. Returns the previous
1416 function.
1417 */
1418
1419 bfd_error_handler_type
1420 bfd_set_error_handler (bfd_error_handler_type pnew)
1421 {
1422 bfd_error_handler_type pold;
1423
1424 pold = _bfd_error_internal;
1425 _bfd_error_internal = pnew;
1426 return pold;
1427 }
1428
1429 /*
1430 FUNCTION
1431 bfd_set_error_program_name
1432
1433 SYNOPSIS
1434 void bfd_set_error_program_name (const char *);
1435
1436 DESCRIPTION
1437 Set the program name to use when printing a BFD error. This
1438 is printed before the error message followed by a colon and
1439 space. The string must not be changed after it is passed to
1440 this function.
1441 */
1442
1443 void
1444 bfd_set_error_program_name (const char *name)
1445 {
1446 _bfd_error_program_name = name;
1447 }
1448
1449 /*
1450 SUBSECTION
1451 BFD assert handler
1452
1453 If BFD finds an internal inconsistency, the bfd assert
1454 handler is called with information on the BFD version, BFD
1455 source file and line. If this happens, most programs linked
1456 against BFD are expected to want to exit with an error, or mark
1457 the current BFD operation as failed, so it is recommended to
1458 override the default handler, which just calls
1459 _bfd_error_handler and continues.
1460
1461 CODE_FRAGMENT
1462 .
1463 .typedef void (*bfd_assert_handler_type) (const char *bfd_formatmsg,
1464 . const char *bfd_version,
1465 . const char *bfd_file,
1466 . int bfd_line);
1467 .
1468 */
1469
1470 /* Note the use of bfd_ prefix on the parameter names above: we want to
1471 show which one is the message and which is the version by naming the
1472 parameters, but avoid polluting the program-using-bfd namespace as
1473 the typedef is visible in the exported headers that the program
1474 includes. Below, it's just for consistency. */
1475
1476 static void
1477 _bfd_default_assert_handler (const char *bfd_formatmsg,
1478 const char *bfd_version,
1479 const char *bfd_file,
1480 int bfd_line)
1481
1482 {
1483 _bfd_error_handler (bfd_formatmsg, bfd_version, bfd_file, bfd_line);
1484 }
1485
1486 /* Similar to _bfd_error_handler, a program can decide to exit on an
1487 internal BFD error. We use a non-variadic type to simplify passing
1488 on parameters to other functions, e.g. _bfd_error_handler. */
1489
1490 static bfd_assert_handler_type _bfd_assert_handler = _bfd_default_assert_handler;
1491
1492 /*
1493 FUNCTION
1494 bfd_set_assert_handler
1495
1496 SYNOPSIS
1497 bfd_assert_handler_type bfd_set_assert_handler (bfd_assert_handler_type);
1498
1499 DESCRIPTION
1500 Set the BFD assert handler function. Returns the previous
1501 function.
1502 */
1503
1504 bfd_assert_handler_type
1505 bfd_set_assert_handler (bfd_assert_handler_type pnew)
1506 {
1507 bfd_assert_handler_type pold;
1508
1509 pold = _bfd_assert_handler;
1510 _bfd_assert_handler = pnew;
1511 return pold;
1512 }
1513 \f
1514 /*
1515 INODE
1516 Miscellaneous, Memory Usage, Error reporting, BFD front end
1517
1518 SECTION
1519 Miscellaneous
1520
1521 SUBSECTION
1522 Miscellaneous functions
1523 */
1524
1525 /*
1526 FUNCTION
1527 bfd_get_reloc_upper_bound
1528
1529 SYNOPSIS
1530 long bfd_get_reloc_upper_bound (bfd *abfd, asection *sect);
1531
1532 DESCRIPTION
1533 Return the number of bytes required to store the
1534 relocation information associated with section @var{sect}
1535 attached to bfd @var{abfd}. If an error occurs, return -1.
1536
1537 */
1538
1539 long
1540 bfd_get_reloc_upper_bound (bfd *abfd, sec_ptr asect)
1541 {
1542 if (abfd->format != bfd_object)
1543 {
1544 bfd_set_error (bfd_error_invalid_operation);
1545 return -1;
1546 }
1547
1548 return BFD_SEND (abfd, _get_reloc_upper_bound, (abfd, asect));
1549 }
1550
1551 /*
1552 FUNCTION
1553 bfd_canonicalize_reloc
1554
1555 SYNOPSIS
1556 long bfd_canonicalize_reloc
1557 (bfd *abfd, asection *sec, arelent **loc, asymbol **syms);
1558
1559 DESCRIPTION
1560 Call the back end associated with the open BFD
1561 @var{abfd} and translate the external form of the relocation
1562 information attached to @var{sec} into the internal canonical
1563 form. Place the table into memory at @var{loc}, which has
1564 been preallocated, usually by a call to
1565 <<bfd_get_reloc_upper_bound>>. Returns the number of relocs, or
1566 -1 on error.
1567
1568 The @var{syms} table is also needed for horrible internal magic
1569 reasons.
1570
1571 */
1572 long
1573 bfd_canonicalize_reloc (bfd *abfd,
1574 sec_ptr asect,
1575 arelent **location,
1576 asymbol **symbols)
1577 {
1578 if (abfd->format != bfd_object)
1579 {
1580 bfd_set_error (bfd_error_invalid_operation);
1581 return -1;
1582 }
1583
1584 return BFD_SEND (abfd, _bfd_canonicalize_reloc,
1585 (abfd, asect, location, symbols));
1586 }
1587
1588 /*
1589 FUNCTION
1590 bfd_set_reloc
1591
1592 SYNOPSIS
1593 void bfd_set_reloc
1594 (bfd *abfd, asection *sec, arelent **rel, unsigned int count);
1595
1596 DESCRIPTION
1597 Set the relocation pointer and count within
1598 section @var{sec} to the values @var{rel} and @var{count}.
1599 The argument @var{abfd} is ignored.
1600
1601 .#define bfd_set_reloc(abfd, asect, location, count) \
1602 . BFD_SEND (abfd, _bfd_set_reloc, (abfd, asect, location, count))
1603 */
1604
1605 /*
1606 FUNCTION
1607 bfd_set_file_flags
1608
1609 SYNOPSIS
1610 bool bfd_set_file_flags (bfd *abfd, flagword flags);
1611
1612 DESCRIPTION
1613 Set the flag word in the BFD @var{abfd} to the value @var{flags}.
1614
1615 Possible errors are:
1616 o <<bfd_error_wrong_format>> - The target bfd was not of object format.
1617 o <<bfd_error_invalid_operation>> - The target bfd was open for reading.
1618 o <<bfd_error_invalid_operation>> -
1619 The flag word contained a bit which was not applicable to the
1620 type of file. E.g., an attempt was made to set the <<D_PAGED>> bit
1621 on a BFD format which does not support demand paging.
1622
1623 */
1624
1625 bool
1626 bfd_set_file_flags (bfd *abfd, flagword flags)
1627 {
1628 if (abfd->format != bfd_object)
1629 {
1630 bfd_set_error (bfd_error_wrong_format);
1631 return false;
1632 }
1633
1634 if (bfd_read_p (abfd))
1635 {
1636 bfd_set_error (bfd_error_invalid_operation);
1637 return false;
1638 }
1639
1640 abfd->flags = flags;
1641 if ((flags & bfd_applicable_file_flags (abfd)) != flags)
1642 {
1643 bfd_set_error (bfd_error_invalid_operation);
1644 return false;
1645 }
1646
1647 return true;
1648 }
1649
1650 void
1651 bfd_assert (const char *file, int line)
1652 {
1653 /* xgettext:c-format */
1654 (*_bfd_assert_handler) (_("BFD %s assertion fail %s:%d"),
1655 BFD_VERSION_STRING, file, line);
1656 }
1657
1658 /* A more or less friendly abort message. In libbfd.h abort is
1659 defined to call this function. */
1660
1661 void
1662 _bfd_abort (const char *file, int line, const char *fn)
1663 {
1664 if (fn != NULL)
1665 _bfd_error_handler
1666 /* xgettext:c-format */
1667 (_("BFD %s internal error, aborting at %s:%d in %s\n"),
1668 BFD_VERSION_STRING, file, line, fn);
1669 else
1670 _bfd_error_handler
1671 /* xgettext:c-format */
1672 (_("BFD %s internal error, aborting at %s:%d\n"),
1673 BFD_VERSION_STRING, file, line);
1674 _bfd_error_handler (_("Please report this bug.\n"));
1675 _exit (EXIT_FAILURE);
1676 }
1677
1678 /*
1679 FUNCTION
1680 bfd_get_arch_size
1681
1682 SYNOPSIS
1683 int bfd_get_arch_size (bfd *abfd);
1684
1685 DESCRIPTION
1686 Returns the normalized architecture address size, in bits, as
1687 determined by the object file's format. By normalized, we mean
1688 either 32 or 64. For ELF, this information is included in the
1689 header. Use bfd_arch_bits_per_address for number of bits in
1690 the architecture address.
1691
1692 RETURNS
1693 Returns the arch size in bits if known, <<-1>> otherwise.
1694 */
1695
1696 int
1697 bfd_get_arch_size (bfd *abfd)
1698 {
1699 if (abfd->xvec->flavour == bfd_target_elf_flavour)
1700 return get_elf_backend_data (abfd)->s->arch_size;
1701
1702 return bfd_arch_bits_per_address (abfd) > 32 ? 64 : 32;
1703 }
1704
1705 /*
1706 FUNCTION
1707 bfd_get_sign_extend_vma
1708
1709 SYNOPSIS
1710 int bfd_get_sign_extend_vma (bfd *abfd);
1711
1712 DESCRIPTION
1713 Indicates if the target architecture "naturally" sign extends
1714 an address. Some architectures implicitly sign extend address
1715 values when they are converted to types larger than the size
1716 of an address. For instance, bfd_get_start_address() will
1717 return an address sign extended to fill a bfd_vma when this is
1718 the case.
1719
1720 RETURNS
1721 Returns <<1>> if the target architecture is known to sign
1722 extend addresses, <<0>> if the target architecture is known to
1723 not sign extend addresses, and <<-1>> otherwise.
1724 */
1725
1726 int
1727 bfd_get_sign_extend_vma (bfd *abfd)
1728 {
1729 const char *name;
1730
1731 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour)
1732 return get_elf_backend_data (abfd)->sign_extend_vma;
1733
1734 name = bfd_get_target (abfd);
1735
1736 /* Return a proper value for DJGPP & PE COFF.
1737 This function is required for DWARF2 support, but there is
1738 no place to store this information in the COFF back end.
1739 Should enough other COFF targets add support for DWARF2,
1740 a place will have to be found. Until then, this hack will do. */
1741 if (startswith (name, "coff-go32")
1742 || strcmp (name, "pe-i386") == 0
1743 || strcmp (name, "pei-i386") == 0
1744 || strcmp (name, "pe-x86-64") == 0
1745 || strcmp (name, "pei-x86-64") == 0
1746 || strcmp (name, "pe-aarch64-little") == 0
1747 || strcmp (name, "pei-aarch64-little") == 0
1748 || strcmp (name, "pe-arm-wince-little") == 0
1749 || strcmp (name, "pei-arm-wince-little") == 0
1750 || strcmp (name, "pei-loongarch64") == 0
1751 || strcmp (name, "aixcoff-rs6000") == 0
1752 || strcmp (name, "aix5coff64-rs6000") == 0)
1753 return 1;
1754
1755 if (startswith (name, "mach-o"))
1756 return 0;
1757
1758 bfd_set_error (bfd_error_wrong_format);
1759 return -1;
1760 }
1761
1762 /*
1763 FUNCTION
1764 bfd_set_start_address
1765
1766 SYNOPSIS
1767 bool bfd_set_start_address (bfd *abfd, bfd_vma vma);
1768
1769 DESCRIPTION
1770 Make @var{vma} the entry point of output BFD @var{abfd}.
1771
1772 RETURNS
1773 Returns <<TRUE>> on success, <<FALSE>> otherwise.
1774 */
1775
1776 bool
1777 bfd_set_start_address (bfd *abfd, bfd_vma vma)
1778 {
1779 abfd->start_address = vma;
1780 return true;
1781 }
1782
1783 /*
1784 FUNCTION
1785 bfd_get_gp_size
1786
1787 SYNOPSIS
1788 unsigned int bfd_get_gp_size (bfd *abfd);
1789
1790 DESCRIPTION
1791 Return the maximum size of objects to be optimized using the GP
1792 register under MIPS ECOFF. This is typically set by the <<-G>>
1793 argument to the compiler, assembler or linker.
1794 */
1795
1796 unsigned int
1797 bfd_get_gp_size (bfd *abfd)
1798 {
1799 if (abfd->format == bfd_object)
1800 {
1801 if (abfd->xvec->flavour == bfd_target_ecoff_flavour)
1802 return ecoff_data (abfd)->gp_size;
1803 else if (abfd->xvec->flavour == bfd_target_elf_flavour)
1804 return elf_gp_size (abfd);
1805 }
1806 return 0;
1807 }
1808
1809 /*
1810 FUNCTION
1811 bfd_set_gp_size
1812
1813 SYNOPSIS
1814 void bfd_set_gp_size (bfd *abfd, unsigned int i);
1815
1816 DESCRIPTION
1817 Set the maximum size of objects to be optimized using the GP
1818 register under ECOFF or MIPS ELF. This is typically set by
1819 the <<-G>> argument to the compiler, assembler or linker.
1820 */
1821
1822 void
1823 bfd_set_gp_size (bfd *abfd, unsigned int i)
1824 {
1825 /* Don't try to set GP size on an archive or core file! */
1826 if (abfd->format != bfd_object)
1827 return;
1828
1829 if (abfd->xvec->flavour == bfd_target_ecoff_flavour)
1830 ecoff_data (abfd)->gp_size = i;
1831 else if (abfd->xvec->flavour == bfd_target_elf_flavour)
1832 elf_gp_size (abfd) = i;
1833 }
1834
1835 /* Get the GP value. This is an internal function used by some of the
1836 relocation special_function routines on targets which support a GP
1837 register. */
1838
1839 bfd_vma
1840 _bfd_get_gp_value (bfd *abfd)
1841 {
1842 if (! abfd)
1843 return 0;
1844 if (abfd->format != bfd_object)
1845 return 0;
1846
1847 if (abfd->xvec->flavour == bfd_target_ecoff_flavour)
1848 return ecoff_data (abfd)->gp;
1849 else if (abfd->xvec->flavour == bfd_target_elf_flavour)
1850 return elf_gp (abfd);
1851
1852 return 0;
1853 }
1854
1855 /* Set the GP value. */
1856
1857 void
1858 _bfd_set_gp_value (bfd *abfd, bfd_vma v)
1859 {
1860 if (! abfd)
1861 abort ();
1862 if (abfd->format != bfd_object)
1863 return;
1864
1865 if (abfd->xvec->flavour == bfd_target_ecoff_flavour)
1866 ecoff_data (abfd)->gp = v;
1867 else if (abfd->xvec->flavour == bfd_target_elf_flavour)
1868 elf_gp (abfd) = v;
1869 }
1870
1871 /*
1872 FUNCTION
1873 bfd_set_gp_value
1874
1875 SYNOPSIS
1876 void bfd_set_gp_value (bfd *abfd, bfd_vma v);
1877
1878 DESCRIPTION
1879 Allow external access to the fucntion to set the GP value.
1880 This is specifically added for gdb-compile support.
1881 */
1882
1883 void
1884 bfd_set_gp_value (bfd *abfd, bfd_vma v)
1885 {
1886 _bfd_set_gp_value (abfd, v);
1887 }
1888
1889 /*
1890 FUNCTION
1891 bfd_scan_vma
1892
1893 SYNOPSIS
1894 bfd_vma bfd_scan_vma (const char *string, const char **end, int base);
1895
1896 DESCRIPTION
1897 Convert, like <<strtoul>>, a numerical expression
1898 @var{string} into a <<bfd_vma>> integer, and return that integer.
1899 (Though without as many bells and whistles as <<strtoul>>.)
1900 The expression is assumed to be unsigned (i.e., positive).
1901 If given a @var{base}, it is used as the base for conversion.
1902 A base of 0 causes the function to interpret the string
1903 in hex if a leading "0x" or "0X" is found, otherwise
1904 in octal if a leading zero is found, otherwise in decimal.
1905
1906 If the value would overflow, the maximum <<bfd_vma>> value is
1907 returned.
1908 */
1909
1910 bfd_vma
1911 bfd_scan_vma (const char *string, const char **end, int base)
1912 {
1913 bfd_vma value;
1914 bfd_vma cutoff;
1915 unsigned int cutlim;
1916 int overflow;
1917
1918 /* Let the host do it if possible. */
1919 if (sizeof (bfd_vma) <= sizeof (unsigned long))
1920 return strtoul (string, (char **) end, base);
1921
1922 if (sizeof (bfd_vma) <= sizeof (unsigned long long))
1923 return strtoull (string, (char **) end, base);
1924
1925 if (base == 0)
1926 {
1927 if (string[0] == '0')
1928 {
1929 if ((string[1] == 'x') || (string[1] == 'X'))
1930 base = 16;
1931 else
1932 base = 8;
1933 }
1934 }
1935
1936 if ((base < 2) || (base > 36))
1937 base = 10;
1938
1939 if (base == 16
1940 && string[0] == '0'
1941 && (string[1] == 'x' || string[1] == 'X')
1942 && ISXDIGIT (string[2]))
1943 {
1944 string += 2;
1945 }
1946
1947 cutoff = (~ (bfd_vma) 0) / (bfd_vma) base;
1948 cutlim = (~ (bfd_vma) 0) % (bfd_vma) base;
1949 value = 0;
1950 overflow = 0;
1951 while (1)
1952 {
1953 unsigned int digit;
1954
1955 digit = *string;
1956 if (ISDIGIT (digit))
1957 digit = digit - '0';
1958 else if (ISALPHA (digit))
1959 digit = TOUPPER (digit) - 'A' + 10;
1960 else
1961 break;
1962 if (digit >= (unsigned int) base)
1963 break;
1964 if (value > cutoff || (value == cutoff && digit > cutlim))
1965 overflow = 1;
1966 value = value * base + digit;
1967 ++string;
1968 }
1969
1970 if (overflow)
1971 value = ~ (bfd_vma) 0;
1972
1973 if (end != NULL)
1974 *end = string;
1975
1976 return value;
1977 }
1978
1979 /*
1980 FUNCTION
1981 bfd_copy_private_header_data
1982
1983 SYNOPSIS
1984 bool bfd_copy_private_header_data (bfd *ibfd, bfd *obfd);
1985
1986 DESCRIPTION
1987 Copy private BFD header information from the BFD @var{ibfd} to the
1988 the BFD @var{obfd}. This copies information that may require
1989 sections to exist, but does not require symbol tables. Return
1990 <<true>> on success, <<false>> on error.
1991 Possible error returns are:
1992
1993 o <<bfd_error_no_memory>> -
1994 Not enough memory exists to create private data for @var{obfd}.
1995
1996 .#define bfd_copy_private_header_data(ibfd, obfd) \
1997 . BFD_SEND (obfd, _bfd_copy_private_header_data, \
1998 . (ibfd, obfd))
1999
2000 */
2001
2002 /*
2003 FUNCTION
2004 bfd_copy_private_bfd_data
2005
2006 SYNOPSIS
2007 bool bfd_copy_private_bfd_data (bfd *ibfd, bfd *obfd);
2008
2009 DESCRIPTION
2010 Copy private BFD information from the BFD @var{ibfd} to the
2011 the BFD @var{obfd}. Return <<TRUE>> on success, <<FALSE>> on error.
2012 Possible error returns are:
2013
2014 o <<bfd_error_no_memory>> -
2015 Not enough memory exists to create private data for @var{obfd}.
2016
2017 .#define bfd_copy_private_bfd_data(ibfd, obfd) \
2018 . BFD_SEND (obfd, _bfd_copy_private_bfd_data, \
2019 . (ibfd, obfd))
2020
2021 */
2022
2023 /*
2024 FUNCTION
2025 bfd_set_private_flags
2026
2027 SYNOPSIS
2028 bool bfd_set_private_flags (bfd *abfd, flagword flags);
2029
2030 DESCRIPTION
2031 Set private BFD flag information in the BFD @var{abfd}.
2032 Return <<TRUE>> on success, <<FALSE>> on error. Possible error
2033 returns are:
2034
2035 o <<bfd_error_no_memory>> -
2036 Not enough memory exists to create private data for @var{obfd}.
2037
2038 .#define bfd_set_private_flags(abfd, flags) \
2039 . BFD_SEND (abfd, _bfd_set_private_flags, (abfd, flags))
2040
2041 */
2042
2043 /*
2044 FUNCTION
2045 Other functions
2046
2047 DESCRIPTION
2048 The following functions exist but have not yet been documented.
2049
2050 .#define bfd_sizeof_headers(abfd, info) \
2051 . BFD_SEND (abfd, _bfd_sizeof_headers, (abfd, info))
2052 .
2053 .#define bfd_find_nearest_line(abfd, sec, syms, off, file, func, line) \
2054 . BFD_SEND (abfd, _bfd_find_nearest_line, \
2055 . (abfd, syms, sec, off, file, func, line, NULL))
2056 .
2057 .#define bfd_find_nearest_line_with_alt(abfd, alt_filename, sec, syms, off, \
2058 . file, func, line, disc) \
2059 . BFD_SEND (abfd, _bfd_find_nearest_line_with_alt, \
2060 . (abfd, alt_filename, syms, sec, off, file, func, line, disc))
2061 .
2062 .#define bfd_find_nearest_line_discriminator(abfd, sec, syms, off, file, func, \
2063 . line, disc) \
2064 . BFD_SEND (abfd, _bfd_find_nearest_line, \
2065 . (abfd, syms, sec, off, file, func, line, disc))
2066 .
2067 .#define bfd_find_line(abfd, syms, sym, file, line) \
2068 . BFD_SEND (abfd, _bfd_find_line, \
2069 . (abfd, syms, sym, file, line))
2070 .
2071 .#define bfd_find_inliner_info(abfd, file, func, line) \
2072 . BFD_SEND (abfd, _bfd_find_inliner_info, \
2073 . (abfd, file, func, line))
2074 .
2075 .#define bfd_debug_info_start(abfd) \
2076 . BFD_SEND (abfd, _bfd_debug_info_start, (abfd))
2077 .
2078 .#define bfd_debug_info_end(abfd) \
2079 . BFD_SEND (abfd, _bfd_debug_info_end, (abfd))
2080 .
2081 .#define bfd_debug_info_accumulate(abfd, section) \
2082 . BFD_SEND (abfd, _bfd_debug_info_accumulate, (abfd, section))
2083 .
2084 .#define bfd_stat_arch_elt(abfd, stat) \
2085 . BFD_SEND (abfd->my_archive ? abfd->my_archive : abfd, \
2086 . _bfd_stat_arch_elt, (abfd, stat))
2087 .
2088 .#define bfd_update_armap_timestamp(abfd) \
2089 . BFD_SEND (abfd, _bfd_update_armap_timestamp, (abfd))
2090 .
2091 .#define bfd_set_arch_mach(abfd, arch, mach)\
2092 . BFD_SEND ( abfd, _bfd_set_arch_mach, (abfd, arch, mach))
2093 .
2094 .#define bfd_relax_section(abfd, section, link_info, again) \
2095 . BFD_SEND (abfd, _bfd_relax_section, (abfd, section, link_info, again))
2096 .
2097 .#define bfd_gc_sections(abfd, link_info) \
2098 . BFD_SEND (abfd, _bfd_gc_sections, (abfd, link_info))
2099 .
2100 .#define bfd_lookup_section_flags(link_info, flag_info, section) \
2101 . BFD_SEND (abfd, _bfd_lookup_section_flags, (link_info, flag_info, section))
2102 .
2103 .#define bfd_merge_sections(abfd, link_info) \
2104 . BFD_SEND (abfd, _bfd_merge_sections, (abfd, link_info))
2105 .
2106 .#define bfd_is_group_section(abfd, sec) \
2107 . BFD_SEND (abfd, _bfd_is_group_section, (abfd, sec))
2108 .
2109 .#define bfd_group_name(abfd, sec) \
2110 . BFD_SEND (abfd, _bfd_group_name, (abfd, sec))
2111 .
2112 .#define bfd_discard_group(abfd, sec) \
2113 . BFD_SEND (abfd, _bfd_discard_group, (abfd, sec))
2114 .
2115 .#define bfd_link_hash_table_create(abfd) \
2116 . BFD_SEND (abfd, _bfd_link_hash_table_create, (abfd))
2117 .
2118 .#define bfd_link_add_symbols(abfd, info) \
2119 . BFD_SEND (abfd, _bfd_link_add_symbols, (abfd, info))
2120 .
2121 .#define bfd_link_just_syms(abfd, sec, info) \
2122 . BFD_SEND (abfd, _bfd_link_just_syms, (sec, info))
2123 .
2124 .#define bfd_final_link(abfd, info) \
2125 . BFD_SEND (abfd, _bfd_final_link, (abfd, info))
2126 .
2127 .#define bfd_free_cached_info(abfd) \
2128 . BFD_SEND (abfd, _bfd_free_cached_info, (abfd))
2129 .
2130 .#define bfd_get_dynamic_symtab_upper_bound(abfd) \
2131 . BFD_SEND (abfd, _bfd_get_dynamic_symtab_upper_bound, (abfd))
2132 .
2133 .#define bfd_print_private_bfd_data(abfd, file)\
2134 . BFD_SEND (abfd, _bfd_print_private_bfd_data, (abfd, file))
2135 .
2136 .#define bfd_canonicalize_dynamic_symtab(abfd, asymbols) \
2137 . BFD_SEND (abfd, _bfd_canonicalize_dynamic_symtab, (abfd, asymbols))
2138 .
2139 .#define bfd_get_synthetic_symtab(abfd, count, syms, dyncount, dynsyms, ret) \
2140 . BFD_SEND (abfd, _bfd_get_synthetic_symtab, (abfd, count, syms, \
2141 . dyncount, dynsyms, ret))
2142 .
2143 .#define bfd_get_dynamic_reloc_upper_bound(abfd) \
2144 . BFD_SEND (abfd, _bfd_get_dynamic_reloc_upper_bound, (abfd))
2145 .
2146 .#define bfd_canonicalize_dynamic_reloc(abfd, arels, asyms) \
2147 . BFD_SEND (abfd, _bfd_canonicalize_dynamic_reloc, (abfd, arels, asyms))
2148 .
2149 .extern bfd_byte *bfd_get_relocated_section_contents
2150 . (bfd *, struct bfd_link_info *, struct bfd_link_order *, bfd_byte *,
2151 . bool, asymbol **);
2152 .
2153
2154 */
2155
2156 bfd_byte *
2157 bfd_get_relocated_section_contents (bfd *abfd,
2158 struct bfd_link_info *link_info,
2159 struct bfd_link_order *link_order,
2160 bfd_byte *data,
2161 bool relocatable,
2162 asymbol **symbols)
2163 {
2164 bfd *abfd2;
2165 bfd_byte *(*fn) (bfd *, struct bfd_link_info *, struct bfd_link_order *,
2166 bfd_byte *, bool, asymbol **);
2167
2168 if (link_order->type == bfd_indirect_link_order)
2169 {
2170 abfd2 = link_order->u.indirect.section->owner;
2171 if (abfd2 == NULL)
2172 abfd2 = abfd;
2173 }
2174 else
2175 abfd2 = abfd;
2176
2177 fn = abfd2->xvec->_bfd_get_relocated_section_contents;
2178
2179 return (*fn) (abfd, link_info, link_order, data, relocatable, symbols);
2180 }
2181
2182 /* Record information about an ELF program header. */
2183
2184 bool
2185 bfd_record_phdr (bfd *abfd,
2186 unsigned long type,
2187 bool flags_valid,
2188 flagword flags,
2189 bool at_valid,
2190 bfd_vma at, /* Bytes. */
2191 bool includes_filehdr,
2192 bool includes_phdrs,
2193 unsigned int count,
2194 asection **secs)
2195 {
2196 struct elf_segment_map *m, **pm;
2197 size_t amt;
2198 unsigned int opb = bfd_octets_per_byte (abfd, NULL);
2199
2200 if (bfd_get_flavour (abfd) != bfd_target_elf_flavour)
2201 return true;
2202
2203 amt = sizeof (struct elf_segment_map);
2204 amt += ((bfd_size_type) count - 1) * sizeof (asection *);
2205 m = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
2206 if (m == NULL)
2207 return false;
2208
2209 m->p_type = type;
2210 m->p_flags = flags;
2211 m->p_paddr = at * opb;
2212 m->p_flags_valid = flags_valid;
2213 m->p_paddr_valid = at_valid;
2214 m->includes_filehdr = includes_filehdr;
2215 m->includes_phdrs = includes_phdrs;
2216 m->count = count;
2217 if (count > 0)
2218 memcpy (m->sections, secs, count * sizeof (asection *));
2219
2220 for (pm = &elf_seg_map (abfd); *pm != NULL; pm = &(*pm)->next)
2221 ;
2222 *pm = m;
2223
2224 return true;
2225 }
2226
2227 #ifdef BFD64
2228 /* Return true iff this target is 32-bit. */
2229
2230 static bool
2231 is32bit (bfd *abfd)
2232 {
2233 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour)
2234 {
2235 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
2236 return bed->s->elfclass == ELFCLASS32;
2237 }
2238
2239 /* For non-ELF targets, use architecture information. */
2240 return bfd_arch_bits_per_address (abfd) <= 32;
2241 }
2242 #endif
2243
2244 /* bfd_sprintf_vma and bfd_fprintf_vma display an address in the
2245 target's address size. */
2246
2247 void
2248 bfd_sprintf_vma (bfd *abfd ATTRIBUTE_UNUSED, char *buf, bfd_vma value)
2249 {
2250 #ifdef BFD64
2251 if (!is32bit (abfd))
2252 {
2253 sprintf (buf, "%016" PRIx64, (uint64_t) value);
2254 return;
2255 }
2256 #endif
2257 sprintf (buf, "%08lx", (unsigned long) value & 0xffffffff);
2258 }
2259
2260 void
2261 bfd_fprintf_vma (bfd *abfd ATTRIBUTE_UNUSED, void *stream, bfd_vma value)
2262 {
2263 #ifdef BFD64
2264 if (!is32bit (abfd))
2265 {
2266 fprintf ((FILE *) stream, "%016" PRIx64, (uint64_t) value);
2267 return;
2268 }
2269 #endif
2270 fprintf ((FILE *) stream, "%08lx", (unsigned long) value & 0xffffffff);
2271 }
2272
2273 /*
2274 FUNCTION
2275 bfd_alt_mach_code
2276
2277 SYNOPSIS
2278 bool bfd_alt_mach_code (bfd *abfd, int alternative);
2279
2280 DESCRIPTION
2281
2282 When more than one machine code number is available for the
2283 same machine type, this function can be used to switch between
2284 the preferred one (alternative == 0) and any others. Currently,
2285 only ELF supports this feature, with up to two alternate
2286 machine codes.
2287 */
2288
2289 bool
2290 bfd_alt_mach_code (bfd *abfd, int alternative)
2291 {
2292 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour)
2293 {
2294 int code;
2295
2296 switch (alternative)
2297 {
2298 case 0:
2299 code = get_elf_backend_data (abfd)->elf_machine_code;
2300 break;
2301
2302 case 1:
2303 code = get_elf_backend_data (abfd)->elf_machine_alt1;
2304 if (code == 0)
2305 return false;
2306 break;
2307
2308 case 2:
2309 code = get_elf_backend_data (abfd)->elf_machine_alt2;
2310 if (code == 0)
2311 return false;
2312 break;
2313
2314 default:
2315 return false;
2316 }
2317
2318 elf_elfheader (abfd)->e_machine = code;
2319
2320 return true;
2321 }
2322
2323 return false;
2324 }
2325
2326 /*
2327 FUNCTION
2328 bfd_emul_get_maxpagesize
2329
2330 SYNOPSIS
2331 bfd_vma bfd_emul_get_maxpagesize (const char *);
2332
2333 DESCRIPTION
2334 Returns the maximum page size, in bytes, as determined by
2335 emulation.
2336
2337 RETURNS
2338 Returns the maximum page size in bytes for ELF, 0 otherwise.
2339 */
2340
2341 bfd_vma
2342 bfd_emul_get_maxpagesize (const char *emul)
2343 {
2344 const bfd_target *target;
2345
2346 target = bfd_find_target (emul, NULL);
2347 if (target != NULL
2348 && target->flavour == bfd_target_elf_flavour)
2349 return xvec_get_elf_backend_data (target)->maxpagesize;
2350
2351 return 0;
2352 }
2353
2354 /*
2355 FUNCTION
2356 bfd_emul_get_commonpagesize
2357
2358 SYNOPSIS
2359 bfd_vma bfd_emul_get_commonpagesize (const char *);
2360
2361 DESCRIPTION
2362 Returns the common page size, in bytes, as determined by
2363 emulation.
2364
2365 RETURNS
2366 Returns the common page size in bytes for ELF, 0 otherwise.
2367 */
2368
2369 bfd_vma
2370 bfd_emul_get_commonpagesize (const char *emul)
2371 {
2372 const bfd_target *target;
2373
2374 target = bfd_find_target (emul, NULL);
2375 if (target != NULL
2376 && target->flavour == bfd_target_elf_flavour)
2377 {
2378 const struct elf_backend_data *bed;
2379
2380 bed = xvec_get_elf_backend_data (target);
2381 return bed->commonpagesize;
2382 }
2383 return 0;
2384 }
2385
2386 /*
2387 FUNCTION
2388 bfd_demangle
2389
2390 SYNOPSIS
2391 char *bfd_demangle (bfd *, const char *, int);
2392
2393 DESCRIPTION
2394 Wrapper around cplus_demangle. Strips leading underscores and
2395 other such chars that would otherwise confuse the demangler.
2396 If passed a g++ v3 ABI mangled name, returns a buffer allocated
2397 with malloc holding the demangled name. Returns NULL otherwise
2398 and on memory alloc failure.
2399 */
2400
2401 char *
2402 bfd_demangle (bfd *abfd, const char *name, int options)
2403 {
2404 char *res, *alloc;
2405 const char *pre, *suf;
2406 size_t pre_len;
2407 bool skip_lead;
2408
2409 skip_lead = (abfd != NULL
2410 && *name != '\0'
2411 && bfd_get_symbol_leading_char (abfd) == *name);
2412 if (skip_lead)
2413 ++name;
2414
2415 /* This is a hack for better error reporting on XCOFF, PowerPC64-ELF
2416 or the MS PE format. These formats have a number of leading '.'s
2417 on at least some symbols, so we remove all dots to avoid
2418 confusing the demangler. */
2419 pre = name;
2420 while (*name == '.' || *name == '$')
2421 ++name;
2422 pre_len = name - pre;
2423
2424 /* Strip off @plt and suchlike too. */
2425 alloc = NULL;
2426 suf = strchr (name, '@');
2427 if (suf != NULL)
2428 {
2429 alloc = (char *) bfd_malloc (suf - name + 1);
2430 if (alloc == NULL)
2431 return NULL;
2432 memcpy (alloc, name, suf - name);
2433 alloc[suf - name] = '\0';
2434 name = alloc;
2435 }
2436
2437 res = cplus_demangle (name, options);
2438
2439 free (alloc);
2440
2441 if (res == NULL)
2442 {
2443 if (skip_lead)
2444 {
2445 size_t len = strlen (pre) + 1;
2446 alloc = (char *) bfd_malloc (len);
2447 if (alloc == NULL)
2448 return NULL;
2449 memcpy (alloc, pre, len);
2450 return alloc;
2451 }
2452 return NULL;
2453 }
2454
2455 /* Put back any prefix or suffix. */
2456 if (pre_len != 0 || suf != NULL)
2457 {
2458 size_t len;
2459 size_t suf_len;
2460 char *final;
2461
2462 len = strlen (res);
2463 if (suf == NULL)
2464 suf = res + len;
2465 suf_len = strlen (suf) + 1;
2466 final = (char *) bfd_malloc (pre_len + len + suf_len);
2467 if (final != NULL)
2468 {
2469 memcpy (final, pre, pre_len);
2470 memcpy (final + pre_len, res, len);
2471 memcpy (final + pre_len + len, suf, suf_len);
2472 }
2473 free (res);
2474 res = final;
2475 }
2476
2477 return res;
2478 }
2479
2480 /*
2481 FUNCTION
2482 bfd_update_compression_header
2483
2484 SYNOPSIS
2485 void bfd_update_compression_header
2486 (bfd *abfd, bfd_byte *contents, asection *sec);
2487
2488 DESCRIPTION
2489 Set the compression header at CONTENTS of SEC in ABFD and update
2490 elf_section_flags for compression.
2491 */
2492
2493 void
2494 bfd_update_compression_header (bfd *abfd, bfd_byte *contents,
2495 asection *sec)
2496 {
2497 if ((abfd->flags & BFD_COMPRESS) == 0)
2498 abort ();
2499
2500 switch (bfd_get_flavour (abfd))
2501 {
2502 case bfd_target_elf_flavour:
2503 if ((abfd->flags & BFD_COMPRESS_GABI) != 0)
2504 {
2505 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
2506 struct bfd_elf_section_data * esd = elf_section_data (sec);
2507 const unsigned int ch_type = abfd->flags & BFD_COMPRESS_ZSTD
2508 ? ELFCOMPRESS_ZSTD
2509 : ELFCOMPRESS_ZLIB;
2510
2511 /* Set the SHF_COMPRESSED bit. */
2512 elf_section_flags (sec) |= SHF_COMPRESSED;
2513
2514 if (bed->s->elfclass == ELFCLASS32)
2515 {
2516 Elf32_External_Chdr *echdr = (Elf32_External_Chdr *) contents;
2517 bfd_put_32 (abfd, ch_type, &echdr->ch_type);
2518 bfd_put_32 (abfd, sec->size, &echdr->ch_size);
2519 bfd_put_32 (abfd, 1u << sec->alignment_power,
2520 &echdr->ch_addralign);
2521 /* bfd_log2 (alignof (Elf32_Chdr)) */
2522 bfd_set_section_alignment (sec, 2);
2523 esd->this_hdr.sh_addralign = 4;
2524 }
2525 else
2526 {
2527 Elf64_External_Chdr *echdr = (Elf64_External_Chdr *) contents;
2528 bfd_put_32 (abfd, ch_type, &echdr->ch_type);
2529 bfd_put_32 (abfd, 0, &echdr->ch_reserved);
2530 bfd_put_64 (abfd, sec->size, &echdr->ch_size);
2531 bfd_put_64 (abfd, UINT64_C (1) << sec->alignment_power,
2532 &echdr->ch_addralign);
2533 /* bfd_log2 (alignof (Elf64_Chdr)) */
2534 bfd_set_section_alignment (sec, 3);
2535 esd->this_hdr.sh_addralign = 8;
2536 }
2537 break;
2538 }
2539
2540 /* Clear the SHF_COMPRESSED bit. */
2541 elf_section_flags (sec) &= ~SHF_COMPRESSED;
2542 /* Fall through. */
2543
2544 default:
2545 /* Write the zlib header. It should be "ZLIB" followed by
2546 the uncompressed section size, 8 bytes in big-endian
2547 order. */
2548 memcpy (contents, "ZLIB", 4);
2549 bfd_putb64 (sec->size, contents + 4);
2550 /* No way to keep the original alignment, just use 1 always. */
2551 bfd_set_section_alignment (sec, 0);
2552 break;
2553 }
2554 }
2555
2556 /*
2557 FUNCTION
2558 bfd_check_compression_header
2559
2560 SYNOPSIS
2561 bool bfd_check_compression_header
2562 (bfd *abfd, bfd_byte *contents, asection *sec,
2563 unsigned int *ch_type,
2564 bfd_size_type *uncompressed_size,
2565 unsigned int *uncompressed_alignment_power);
2566
2567 DESCRIPTION
2568 Check the compression header at CONTENTS of SEC in ABFD and store the
2569 ch_type in CH_TYPE, uncompressed size in UNCOMPRESSED_SIZE, and the
2570 uncompressed data alignment in UNCOMPRESSED_ALIGNMENT_POWER if the
2571 compression header is valid.
2572
2573 RETURNS
2574 Return TRUE if the compression header is valid.
2575 */
2576
2577 bool
2578 bfd_check_compression_header (bfd *abfd, bfd_byte *contents,
2579 asection *sec,
2580 unsigned int *ch_type,
2581 bfd_size_type *uncompressed_size,
2582 unsigned int *uncompressed_alignment_power)
2583 {
2584 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour
2585 && (elf_section_flags (sec) & SHF_COMPRESSED) != 0)
2586 {
2587 Elf_Internal_Chdr chdr;
2588 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
2589 if (bed->s->elfclass == ELFCLASS32)
2590 {
2591 Elf32_External_Chdr *echdr = (Elf32_External_Chdr *) contents;
2592 chdr.ch_type = bfd_get_32 (abfd, &echdr->ch_type);
2593 chdr.ch_size = bfd_get_32 (abfd, &echdr->ch_size);
2594 chdr.ch_addralign = bfd_get_32 (abfd, &echdr->ch_addralign);
2595 }
2596 else
2597 {
2598 Elf64_External_Chdr *echdr = (Elf64_External_Chdr *) contents;
2599 chdr.ch_type = bfd_get_32 (abfd, &echdr->ch_type);
2600 chdr.ch_size = bfd_get_64 (abfd, &echdr->ch_size);
2601 chdr.ch_addralign = bfd_get_64 (abfd, &echdr->ch_addralign);
2602 }
2603 *ch_type = chdr.ch_type;
2604 if ((chdr.ch_type == ELFCOMPRESS_ZLIB
2605 || chdr.ch_type == ELFCOMPRESS_ZSTD)
2606 && chdr.ch_addralign == (chdr.ch_addralign & -chdr.ch_addralign))
2607 {
2608 *uncompressed_size = chdr.ch_size;
2609 *uncompressed_alignment_power = bfd_log2 (chdr.ch_addralign);
2610 return true;
2611 }
2612 }
2613
2614 return false;
2615 }
2616
2617 /*
2618 FUNCTION
2619 bfd_get_compression_header_size
2620
2621 SYNOPSIS
2622 int bfd_get_compression_header_size (bfd *abfd, asection *sec);
2623
2624 DESCRIPTION
2625 Return the size of the compression header of SEC in ABFD.
2626
2627 RETURNS
2628 Return the size of the compression header in bytes.
2629 */
2630
2631 int
2632 bfd_get_compression_header_size (bfd *abfd, asection *sec)
2633 {
2634 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour)
2635 {
2636 if (sec == NULL)
2637 {
2638 if (!(abfd->flags & BFD_COMPRESS_GABI))
2639 return 0;
2640 }
2641 else if (!(elf_section_flags (sec) & SHF_COMPRESSED))
2642 return 0;
2643
2644 if (get_elf_backend_data (abfd)->s->elfclass == ELFCLASS32)
2645 return sizeof (Elf32_External_Chdr);
2646 else
2647 return sizeof (Elf64_External_Chdr);
2648 }
2649
2650 return 0;
2651 }
2652
2653 /*
2654 FUNCTION
2655 bfd_convert_section_size
2656
2657 SYNOPSIS
2658 bfd_size_type bfd_convert_section_size
2659 (bfd *ibfd, asection *isec, bfd *obfd, bfd_size_type size);
2660
2661 DESCRIPTION
2662 Convert the size @var{size} of the section @var{isec} in input
2663 BFD @var{ibfd} to the section size in output BFD @var{obfd}.
2664 */
2665
2666 bfd_size_type
2667 bfd_convert_section_size (bfd *ibfd, sec_ptr isec, bfd *obfd,
2668 bfd_size_type size)
2669 {
2670 bfd_size_type hdr_size;
2671
2672 /* Do nothing if either input or output aren't ELF. */
2673 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour
2674 || bfd_get_flavour (obfd) != bfd_target_elf_flavour)
2675 return size;
2676
2677 /* Do nothing if ELF classes of input and output are the same. */
2678 if (get_elf_backend_data (ibfd)->s->elfclass
2679 == get_elf_backend_data (obfd)->s->elfclass)
2680 return size;
2681
2682 /* Convert GNU property size. */
2683 if (startswith (isec->name, NOTE_GNU_PROPERTY_SECTION_NAME))
2684 return _bfd_elf_convert_gnu_property_size (ibfd, obfd);
2685
2686 /* Do nothing if input file will be decompressed. */
2687 if ((ibfd->flags & BFD_DECOMPRESS))
2688 return size;
2689
2690 /* Do nothing if the input section isn't a SHF_COMPRESSED section. */
2691 hdr_size = bfd_get_compression_header_size (ibfd, isec);
2692 if (hdr_size == 0)
2693 return size;
2694
2695 /* Adjust the size of the output SHF_COMPRESSED section. */
2696 if (hdr_size == sizeof (Elf32_External_Chdr))
2697 return (size - sizeof (Elf32_External_Chdr)
2698 + sizeof (Elf64_External_Chdr));
2699 else
2700 return (size - sizeof (Elf64_External_Chdr)
2701 + sizeof (Elf32_External_Chdr));
2702 }
2703
2704 /*
2705 FUNCTION
2706 bfd_convert_section_contents
2707
2708 SYNOPSIS
2709 bool bfd_convert_section_contents
2710 (bfd *ibfd, asection *isec, bfd *obfd,
2711 bfd_byte **ptr, bfd_size_type *ptr_size);
2712
2713 DESCRIPTION
2714 Convert the contents, stored in @var{*ptr}, of the section
2715 @var{isec} in input BFD @var{ibfd} to output BFD @var{obfd}
2716 if needed. The original buffer pointed to by @var{*ptr} may
2717 be freed and @var{*ptr} is returned with memory malloc'd by this
2718 function, and the new size written to @var{ptr_size}.
2719 */
2720
2721 bool
2722 bfd_convert_section_contents (bfd *ibfd, sec_ptr isec, bfd *obfd,
2723 bfd_byte **ptr, bfd_size_type *ptr_size)
2724 {
2725 bfd_byte *contents;
2726 bfd_size_type ihdr_size, ohdr_size, size;
2727 Elf_Internal_Chdr chdr;
2728 bool use_memmove;
2729
2730 /* Do nothing if either input or output aren't ELF. */
2731 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour
2732 || bfd_get_flavour (obfd) != bfd_target_elf_flavour)
2733 return true;
2734
2735 /* Do nothing if ELF classes of input and output are the same. */
2736 if (get_elf_backend_data (ibfd)->s->elfclass
2737 == get_elf_backend_data (obfd)->s->elfclass)
2738 return true;
2739
2740 /* Convert GNU properties. */
2741 if (startswith (isec->name, NOTE_GNU_PROPERTY_SECTION_NAME))
2742 return _bfd_elf_convert_gnu_properties (ibfd, isec, obfd, ptr,
2743 ptr_size);
2744
2745 /* Do nothing if input file will be decompressed. */
2746 if ((ibfd->flags & BFD_DECOMPRESS))
2747 return true;
2748
2749 /* Do nothing if the input section isn't a SHF_COMPRESSED section. */
2750 ihdr_size = bfd_get_compression_header_size (ibfd, isec);
2751 if (ihdr_size == 0)
2752 return true;
2753
2754 /* PR 25221. Check for corrupt input sections. */
2755 if (ihdr_size > bfd_get_section_limit (ibfd, isec))
2756 /* FIXME: Issue a warning about a corrupt
2757 compression header size field ? */
2758 return false;
2759
2760 contents = *ptr;
2761
2762 /* Convert the contents of the input SHF_COMPRESSED section to
2763 output. Get the input compression header and the size of the
2764 output compression header. */
2765 if (ihdr_size == sizeof (Elf32_External_Chdr))
2766 {
2767 Elf32_External_Chdr *echdr = (Elf32_External_Chdr *) contents;
2768 chdr.ch_type = bfd_get_32 (ibfd, &echdr->ch_type);
2769 chdr.ch_size = bfd_get_32 (ibfd, &echdr->ch_size);
2770 chdr.ch_addralign = bfd_get_32 (ibfd, &echdr->ch_addralign);
2771
2772 ohdr_size = sizeof (Elf64_External_Chdr);
2773
2774 use_memmove = false;
2775 }
2776 else if (ihdr_size != sizeof (Elf64_External_Chdr))
2777 {
2778 /* FIXME: Issue a warning about a corrupt
2779 compression header size field ? */
2780 return false;
2781 }
2782 else
2783 {
2784 Elf64_External_Chdr *echdr = (Elf64_External_Chdr *) contents;
2785 chdr.ch_type = bfd_get_32 (ibfd, &echdr->ch_type);
2786 chdr.ch_size = bfd_get_64 (ibfd, &echdr->ch_size);
2787 chdr.ch_addralign = bfd_get_64 (ibfd, &echdr->ch_addralign);
2788
2789 ohdr_size = sizeof (Elf32_External_Chdr);
2790 use_memmove = true;
2791 }
2792
2793 size = bfd_section_size (isec) - ihdr_size + ohdr_size;
2794 if (!use_memmove)
2795 {
2796 contents = (bfd_byte *) bfd_malloc (size);
2797 if (contents == NULL)
2798 return false;
2799 }
2800
2801 /* Write out the output compression header. */
2802 if (ohdr_size == sizeof (Elf32_External_Chdr))
2803 {
2804 Elf32_External_Chdr *echdr = (Elf32_External_Chdr *) contents;
2805 bfd_put_32 (obfd, chdr.ch_type, &echdr->ch_type);
2806 bfd_put_32 (obfd, chdr.ch_size, &echdr->ch_size);
2807 bfd_put_32 (obfd, chdr.ch_addralign, &echdr->ch_addralign);
2808 }
2809 else
2810 {
2811 Elf64_External_Chdr *echdr = (Elf64_External_Chdr *) contents;
2812 bfd_put_32 (obfd, chdr.ch_type, &echdr->ch_type);
2813 bfd_put_32 (obfd, 0, &echdr->ch_reserved);
2814 bfd_put_64 (obfd, chdr.ch_size, &echdr->ch_size);
2815 bfd_put_64 (obfd, chdr.ch_addralign, &echdr->ch_addralign);
2816 }
2817
2818 /* Copy the compressed contents. */
2819 if (use_memmove)
2820 memmove (contents + ohdr_size, *ptr + ihdr_size, size - ohdr_size);
2821 else
2822 {
2823 memcpy (contents + ohdr_size, *ptr + ihdr_size, size - ohdr_size);
2824 free (*ptr);
2825 *ptr = contents;
2826 }
2827
2828 *ptr_size = size;
2829 return true;
2830 }
2831
2832 /* Get the linker information. */
2833
2834 struct bfd_link_info *
2835 _bfd_get_link_info (bfd *abfd)
2836 {
2837 if (bfd_get_flavour (abfd) != bfd_target_elf_flavour)
2838 return NULL;
2839
2840 return elf_link_info (abfd);
2841 }