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