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