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