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