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