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