ARM/BFD: Correct an `index' global shadowing error
[deliverable/binutils-gdb.git] / bfd / bfd.c
CommitLineData
252b5132 1/* Generic BFD library interface and support routines.
6f2750fe 2 Copyright (C) 1990-2016 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.
103.#define BFD_NO_FLAGS 0x00
104.
105. {* BFD contains relocation entries. *}
106.#define HAS_RELOC 0x01
107.
108. {* BFD is directly executable. *}
109.#define EXEC_P 0x02
110.
111. {* BFD has line number information (basically used for F_LNNO in a
112. COFF header). *}
113.#define HAS_LINENO 0x04
114.
115. {* BFD has debugging information. *}
116.#define HAS_DEBUG 0x08
117.
118. {* BFD has symbols. *}
119.#define HAS_SYMS 0x10
120.
121. {* BFD has local symbols (basically used for F_LSYMS in a COFF
122. header). *}
123.#define HAS_LOCALS 0x20
124.
125. {* BFD is a dynamic object. *}
126.#define DYNAMIC 0x40
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). *}
131.#define WP_TEXT 0x80
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). *}
135.#define D_PAGED 0x100
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). *}
140.#define BFD_IS_RELAXABLE 0x200
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. *}
146.#define BFD_TRADITIONAL_FORMAT 0x400
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. *}
151.#define BFD_IN_MEMORY 0x800
152.
6ad2759d
L
153. {* This BFD has been created by the linker and doesn't correspond
154. to any input file. *}
b6a1c03a 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. *}
b6a1c03a 163.#define BFD_COMPRESS 0x4000
4a114e3e
L
164.
165. {* Decompress sections in this BFD. *}
b6a1c03a 166.#define BFD_DECOMPRESS 0x8000
4a114e3e 167.
9e2278f5 168. {* BFD is a dummy, for plugins. *}
b6a1c03a 169.#define BFD_PLUGIN 0x10000
9e2278f5 170.
151411f8
L
171. {* Compress sections in this BFD with SHF_COMPRESSED from gABI. *}
172.#define BFD_COMPRESS_GABI 0x20000
173.
b8871f35
L
174. {* Convert ELF common symbol type to STT_COMMON or STT_OBJECT in this
175. BFD. *}
176.#define BFD_CONVERT_ELF_COMMON 0x40000
177.
178. {* Use the ELF STT_COMMON type in this BFD. *}
179.#define BFD_USE_ELF_STT_COMMON 0x80000
180.
4a114e3e
L
181. {* Flags bits to be saved in bfd_preserve_save. *}
182.#define BFD_FLAGS_SAVED \
151411f8 183. (BFD_IN_MEMORY | BFD_COMPRESS | BFD_DECOMPRESS | BFD_PLUGIN \
b8871f35 184. | BFD_COMPRESS_GABI | BFD_CONVERT_ELF_COMMON | BFD_USE_ELF_STT_COMMON)
4a114e3e 185.
6b6bc957
L
186. {* Flags bits which are for BFD use only. *}
187.#define BFD_FLAGS_FOR_BFD_USE_MASK \
188. (BFD_IN_MEMORY | BFD_COMPRESS | BFD_DECOMPRESS | BFD_LINKER_CREATED \
151411f8 189. | BFD_PLUGIN | BFD_TRADITIONAL_FORMAT | BFD_DETERMINISTIC_OUTPUT \
b8871f35 190. | BFD_COMPRESS_GABI | BFD_CONVERT_ELF_COMMON | BFD_USE_ELF_STT_COMMON)
6b6bc957 191.
b6a1c03a
AM
192. {* Is the file descriptor being cached? That is, can it be closed as
193. needed, and re-opened when accessed later? *}
194. unsigned int cacheable : 1;
195.
196. {* Marks whether there was a default target specified when the
197. BFD was opened. This is used to select which matching algorithm
198. to use to choose the back end. *}
199. unsigned int target_defaulted : 1;
200.
201. {* ... and here: (``once'' means at least once). *}
202. unsigned int opened_once : 1;
203.
204. {* Set if we have a locally maintained mtime value, rather than
205. getting it from the file each time. *}
206. unsigned int mtime_set : 1;
207.
208. {* Flag set if symbols from this BFD should not be exported. *}
209. unsigned int no_export : 1;
210.
211. {* Remember when output has begun, to stop strange things
212. from happening. *}
213. unsigned int output_has_begun : 1;
214.
215. {* Have archive map. *}
216. unsigned int has_armap : 1;
217.
218. {* Set if this is a thin archive. *}
219. unsigned int is_thin_archive : 1;
220.
221. {* Set if only required symbols should be added in the link hash table for
222. this object. Used by VMS linkers. *}
223. unsigned int selective_search : 1;
224.
225. {* Set if this is the linker output BFD. *}
226. unsigned int is_linker_output : 1;
227.
f6fe1ccd
L
228. {* Set if this is the linker input BFD. *}
229. unsigned int is_linker_input : 1;
230.
5ae0078c
L
231. {* If this is an input for a compiler plug-in library. *}
232. ENUM_BITFIELD (bfd_plugin_format) plugin_format : 2;
233.
ce875075
AM
234. {* Set if this is a plugin output file. *}
235. unsigned int lto_output : 1;
236.
5ae0078c
L
237. {* Set to dummy BFD created when claimed by a compiler plug-in
238. library. *}
239. bfd *plugin_dummy_bfd;
240.
b5f79c76
NC
241. {* Currently my_archive is tested before adding origin to
242. anything. I believe that this can become always an add of
243. origin, with origin set to 0 for non archive files. *}
244. ufile_ptr origin;
245.
a8da6403
NC
246. {* The origin in the archive of the proxy entry. This will
247. normally be the same as origin, except for thin archives,
248. when it will contain the current offset of the proxy in the
249. thin archive rather than the offset of the bfd in its actual
250. container. *}
251. ufile_ptr proxy_origin;
252.
b5f79c76
NC
253. {* A hash table for section names. *}
254. struct bfd_hash_table section_htab;
255.
256. {* Pointer to linked list of sections. *}
198beae2 257. struct bfd_section *sections;
b5f79c76 258.
5daa8fe7
L
259. {* The last section on the section list. *}
260. struct bfd_section *section_last;
b5f79c76
NC
261.
262. {* The number of sections. *}
263. unsigned int section_count;
264.
b6a1c03a
AM
265. {* A field used by _bfd_generic_link_add_archive_symbols. This will
266. be used only for archive elements. *}
267. int archive_pass;
268.
b5f79c76
NC
269. {* Stuff only useful for object files:
270. The start address. *}
271. bfd_vma start_address;
272.
5c1d2f5f
AM
273. {* Symbol table for output BFD (with symcount entries).
274. Also used by the linker to cache input BFD symbols. *}
fc0a2244 275. struct bfd_symbol **outsymbols;
b5f79c76 276.
b6a1c03a
AM
277. {* Used for input and output. *}
278. unsigned int symcount;
279.
1f70368c
DJ
280. {* Used for slurped dynamic symbol tables. *}
281. unsigned int dynsymcount;
282.
b5f79c76
NC
283. {* Pointer to structure which contains architecture information. *}
284. const struct bfd_arch_info *arch_info;
285.
286. {* Stuff only useful for archives. *}
c58b9523 287. void *arelt_data;
2ce40c65 288. struct bfd *my_archive; {* The containing archive BFD. *}
cc481421 289. struct bfd *archive_next; {* The next BFD in the archive. *}
2ce40c65 290. struct bfd *archive_head; {* The first BFD in the archive. *}
a8da6403
NC
291. struct bfd *nested_archives; {* List of nested archive in a flattened
292. thin archive. *}
252b5132 293.
c72f2fb2
AM
294. union {
295. {* For input BFDs, a chain of BFDs involved in a link. *}
296. struct bfd *next;
297. {* For output BFD, the linker hash table. *}
298. struct bfd_link_hash_table *hash;
299. } link;
b5f79c76 300.
b5f79c76
NC
301. {* Used by the back end to hold private data. *}
302. union
303. {
252b5132
RH
304. struct aout_data_struct *aout_data;
305. struct artdata *aout_ar_data;
306. struct _oasys_data *oasys_obj_data;
307. struct _oasys_ar_data *oasys_ar_data;
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;
312. struct ieee_data_struct *ieee_data;
313. struct ieee_ar_data_struct *ieee_ar_data;
314. struct srec_data_struct *srec_data;
c067354b 315. struct verilog_data_struct *verilog_data;
252b5132
RH
316. struct ihex_data_struct *ihex_data;
317. struct tekhex_data_struct *tekhex_data;
318. struct elf_obj_tdata *elf_obj_data;
319. struct nlm_obj_tdata *nlm_obj_data;
320. struct bout_data_struct *bout_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>>.
404 If that returns <<bfd_error_system_call>>, then check
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{
453 N_("No error"),
454 N_("System call error"),
455 N_("Invalid bfd target"),
456 N_("File in wrong format"),
3619ad04 457 N_("Archive object file in wrong format"),
55ab10f0
NC
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"),
55ab10f0
NC
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"),
ffda70fc 473 N_("Error reading %s: %s"),
55ab10f0
NC
474 N_("#<Invalid error code>")
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
ffda70fc 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}.
ffda70fc
AM
503 If @var{error_tag} is bfd_error_on_input, then this function
504 takes two more parameters, the input bfd where the error
505 occurred, and the bfd_error_type error.
252b5132
RH
506*/
507
508void
ffda70fc 509bfd_set_error (bfd_error_type error_tag, ...)
252b5132
RH
510{
511 bfd_error = error_tag;
ffda70fc
AM
512 if (error_tag == bfd_error_on_input)
513 {
514 /* This is an error that occurred during bfd_close when
515 writing an archive, but on one of the input files. */
516 va_list ap;
517
518 va_start (ap, error_tag);
519 input_bfd = va_arg (ap, bfd *);
a50b1753 520 input_error = (bfd_error_type) va_arg (ap, int);
ffda70fc
AM
521 if (input_error >= bfd_error_on_input)
522 abort ();
523 va_end (ap);
524 }
252b5132
RH
525}
526
527/*
528FUNCTION
529 bfd_errmsg
530
531SYNOPSIS
55ab10f0 532 const char *bfd_errmsg (bfd_error_type error_tag);
252b5132
RH
533
534DESCRIPTION
535 Return a string describing the error @var{error_tag}, or
536 the system error if @var{error_tag} is <<bfd_error_system_call>>.
537*/
538
55ab10f0 539const char *
c58b9523 540bfd_errmsg (bfd_error_type error_tag)
252b5132
RH
541{
542#ifndef errno
543 extern int errno;
544#endif
ffda70fc
AM
545 if (error_tag == bfd_error_on_input)
546 {
547 char *buf;
548 const char *msg = bfd_errmsg (input_error);
549
550 if (asprintf (&buf, _(bfd_errmsgs [error_tag]), input_bfd->filename, msg)
551 != -1)
552 return buf;
553
554 /* Ick, what to do on out of memory? */
555 return msg;
556 }
557
252b5132
RH
558 if (error_tag == bfd_error_system_call)
559 return xstrerror (errno);
560
c58b9523
AM
561 if (error_tag > bfd_error_invalid_error_code)
562 error_tag = bfd_error_invalid_error_code; /* sanity check */
252b5132 563
c58b9523 564 return _(bfd_errmsgs [error_tag]);
252b5132
RH
565}
566
567/*
568FUNCTION
569 bfd_perror
570
571SYNOPSIS
55ab10f0 572 void bfd_perror (const char *message);
252b5132
RH
573
574DESCRIPTION
575 Print to the standard error stream a string describing the
576 last BFD error that occurred, or the last system error if
577 the last BFD error was a system call failure. If @var{message}
578 is non-NULL and non-empty, the error string printed is preceded
579 by @var{message}, a colon, and a space. It is followed by a newline.
580*/
581
582void
c58b9523 583bfd_perror (const char *message)
252b5132 584{
4a97a0e5 585 fflush (stdout);
ffda70fc
AM
586 if (message == NULL || *message == '\0')
587 fprintf (stderr, "%s\n", bfd_errmsg (bfd_get_error ()));
55ab10f0 588 else
ffda70fc 589 fprintf (stderr, "%s: %s\n", message, bfd_errmsg (bfd_get_error ()));
4a97a0e5 590 fflush (stderr);
252b5132
RH
591}
592
593/*
594SUBSECTION
595 BFD error handler
596
597 Some BFD functions want to print messages describing the
598 problem. They call a BFD error handler function. This
5c4491d3 599 function may be overridden by the program.
252b5132 600
52d45da3 601 The BFD error handler acts like vprintf.
252b5132
RH
602
603CODE_FRAGMENT
604.
52d45da3 605.typedef void (*bfd_error_handler_type) (const char *, va_list);
252b5132
RH
606.
607*/
608
609/* The program name used when printing BFD error messages. */
610
611static const char *_bfd_error_program_name;
612
d003868e
AM
613/* This is the default routine to handle BFD error messages.
614 Like fprintf (stderr, ...), but also handles some extra format specifiers.
615
616 %A section name from section. For group components, print group name too.
617 %B file name from bfd. For archive components, prints archive too.
d07676f8
NC
618
619 Note - because these two extra format specifiers require special handling
620 they are scanned for and processed in this function, before calling
621 vfprintf. This means that the *arguments* for these format specifiers
622 must be the first ones in the variable argument list, regardless of where
623 the specifiers appear in the format string. Thus for example calling
624 this function with a format string of:
625
626 "blah %s blah %A blah %d blah %B"
627
628 would involve passing the arguments as:
629
630 "blah %s blah %A blah %d blah %B",
631 asection_for_the_%A,
632 bfd_for_the_%B,
633 string_for_the_%s,
634 integer_for_the_%d);
d003868e 635 */
252b5132 636
52d45da3
AM
637static void
638error_handler_internal (const char *fmt, va_list ap)
252b5132 639{
d003868e
AM
640 char *bufp;
641 const char *new_fmt, *p;
642 size_t avail = 1000;
643 char buf[1000];
c58b9523 644
0bc43230
AM
645 /* PR 4992: Don't interrupt output being sent to stdout. */
646 fflush (stdout);
647
252b5132
RH
648 if (_bfd_error_program_name != NULL)
649 fprintf (stderr, "%s: ", _bfd_error_program_name);
650 else
651 fprintf (stderr, "BFD: ");
652
d003868e
AM
653 new_fmt = fmt;
654 bufp = buf;
655
656 /* Reserve enough space for the existing format string. */
657 avail -= strlen (fmt) + 1;
658 if (avail > 1000)
3168356f 659 _exit (EXIT_FAILURE);
d003868e
AM
660
661 p = fmt;
3e540f25 662 while (1)
d003868e
AM
663 {
664 char *q;
665 size_t len, extra, trim;
666
667 p = strchr (p, '%');
668 if (p == NULL || p[1] == '\0')
669 {
670 if (new_fmt == buf)
671 {
672 len = strlen (fmt);
673 memcpy (bufp, fmt, len + 1);
674 }
675 break;
676 }
677
678 if (p[1] == 'A' || p[1] == 'B')
679 {
680 len = p - fmt;
681 memcpy (bufp, fmt, len);
682 bufp += len;
683 fmt = p + 2;
684 new_fmt = buf;
685
686 /* If we run out of space, tough, you lose your ridiculously
687 long file or section name. It's not safe to try to alloc
688 memory here; We might be printing an out of memory message. */
689 if (avail == 0)
690 {
691 *bufp++ = '*';
692 *bufp++ = '*';
693 *bufp = '\0';
694 }
695 else
696 {
697 if (p[1] == 'B')
698 {
699 bfd *abfd = va_arg (ap, bfd *);
d07676f8
NC
700
701 if (abfd == NULL)
702 /* Invoking %B with a null bfd pointer is an internal error. */
703 abort ();
b0cffb47
AM
704 else if (abfd->my_archive
705 && !bfd_is_thin_archive (abfd->my_archive))
d003868e
AM
706 snprintf (bufp, avail, "%s(%s)",
707 abfd->my_archive->filename, abfd->filename);
708 else
709 snprintf (bufp, avail, "%s", abfd->filename);
710 }
711 else
712 {
713 asection *sec = va_arg (ap, asection *);
d07676f8 714 bfd *abfd;
d003868e
AM
715 const char *group = NULL;
716 struct coff_comdat_info *ci;
717
d07676f8
NC
718 if (sec == NULL)
719 /* Invoking %A with a null section pointer is an internal error. */
720 abort ();
721 abfd = sec->owner;
d003868e
AM
722 if (abfd != NULL
723 && bfd_get_flavour (abfd) == bfd_target_elf_flavour
724 && elf_next_in_group (sec) != NULL
725 && (sec->flags & SEC_GROUP) == 0)
726 group = elf_group_name (sec);
727 else if (abfd != NULL
728 && bfd_get_flavour (abfd) == bfd_target_coff_flavour
729 && (ci = bfd_coff_get_comdat_section (sec->owner,
730 sec)) != NULL)
731 group = ci->name;
732 if (group != NULL)
733 snprintf (bufp, avail, "%s[%s]", sec->name, group);
734 else
735 snprintf (bufp, avail, "%s", sec->name);
736 }
737 len = strlen (bufp);
738 avail = avail - len + 2;
739
740 /* We need to replace any '%' we printed by "%%".
741 First count how many. */
742 q = bufp;
743 bufp += len;
744 extra = 0;
745 while ((q = strchr (q, '%')) != NULL)
746 {
747 ++q;
748 ++extra;
749 }
750
751 /* If there isn't room, trim off the end of the string. */
752 q = bufp;
753 bufp += extra;
754 if (extra > avail)
755 {
756 trim = extra - avail;
757 bufp -= trim;
758 do
759 {
760 if (*--q == '%')
761 --extra;
762 }
763 while (--trim != 0);
764 *q = '\0';
45fc9e4a 765 avail = extra;
d003868e 766 }
45fc9e4a 767 avail -= extra;
d003868e
AM
768
769 /* Now double all '%' chars, shuffling the string as we go. */
770 while (extra != 0)
771 {
772 while ((q[extra] = *q) != '%')
773 --q;
774 q[--extra] = '%';
775 --q;
776 }
777 }
778 }
779 p = p + 2;
780 }
781
782 vfprintf (stderr, new_fmt, ap);
252b5132 783
ceae87f3
JB
784 /* On AIX, putc is implemented as a macro that triggers a -Wunused-value
785 warning, so use the fputc function to avoid it. */
786 fputc ('\n', stderr);
4a97a0e5 787 fflush (stderr);
252b5132
RH
788}
789
252b5132
RH
790/* This is a function pointer to the routine which should handle BFD
791 error messages. It is called when a BFD routine encounters an
792 error for which it wants to print a message. Going through a
793 function pointer permits a program linked against BFD to intercept
794 the messages and deal with them itself. */
795
52d45da3
AM
796static bfd_error_handler_type _bfd_error_internal = error_handler_internal;
797
798void
799_bfd_error_handler (const char *fmt, ...)
800{
801 va_list ap;
802
803 va_start (ap, fmt);
804 _bfd_error_internal (fmt, ap);
805 va_end (ap);
806}
252b5132
RH
807
808/*
809FUNCTION
810 bfd_set_error_handler
811
812SYNOPSIS
813 bfd_error_handler_type bfd_set_error_handler (bfd_error_handler_type);
814
815DESCRIPTION
816 Set the BFD error handler function. Returns the previous
817 function.
818*/
819
820bfd_error_handler_type
c58b9523 821bfd_set_error_handler (bfd_error_handler_type pnew)
252b5132
RH
822{
823 bfd_error_handler_type pold;
824
52d45da3
AM
825 pold = _bfd_error_internal;
826 _bfd_error_internal = pnew;
252b5132
RH
827 return pold;
828}
829
830/*
831FUNCTION
832 bfd_set_error_program_name
833
834SYNOPSIS
835 void bfd_set_error_program_name (const char *);
836
837DESCRIPTION
838 Set the program name to use when printing a BFD error. This
839 is printed before the error message followed by a colon and
840 space. The string must not be changed after it is passed to
841 this function.
842*/
843
844void
c58b9523 845bfd_set_error_program_name (const char *name)
252b5132
RH
846{
847 _bfd_error_program_name = name;
848}
849
2b56b3f3
HPN
850/*
851SUBSECTION
852 BFD assert handler
853
854 If BFD finds an internal inconsistency, the bfd assert
855 handler is called with information on the BFD version, BFD
856 source file and line. If this happens, most programs linked
857 against BFD are expected to want to exit with an error, or mark
858 the current BFD operation as failed, so it is recommended to
859 override the default handler, which just calls
860 _bfd_error_handler and continues.
861
862CODE_FRAGMENT
863.
864.typedef void (*bfd_assert_handler_type) (const char *bfd_formatmsg,
865. const char *bfd_version,
866. const char *bfd_file,
867. int bfd_line);
868.
869*/
870
871/* Note the use of bfd_ prefix on the parameter names above: we want to
872 show which one is the message and which is the version by naming the
873 parameters, but avoid polluting the program-using-bfd namespace as
874 the typedef is visible in the exported headers that the program
875 includes. Below, it's just for consistency. */
876
877static void
878_bfd_default_assert_handler (const char *bfd_formatmsg,
879 const char *bfd_version,
880 const char *bfd_file,
881 int bfd_line)
882
883{
4eca0228 884 _bfd_error_handler (bfd_formatmsg, bfd_version, bfd_file, bfd_line);
2b56b3f3
HPN
885}
886
887/* Similar to _bfd_error_handler, a program can decide to exit on an
888 internal BFD error. We use a non-variadic type to simplify passing
889 on parameters to other functions, e.g. _bfd_error_handler. */
890
52d45da3 891static bfd_assert_handler_type _bfd_assert_handler = _bfd_default_assert_handler;
2b56b3f3
HPN
892
893/*
894FUNCTION
895 bfd_set_assert_handler
896
897SYNOPSIS
898 bfd_assert_handler_type bfd_set_assert_handler (bfd_assert_handler_type);
899
900DESCRIPTION
901 Set the BFD assert handler function. Returns the previous
902 function.
903*/
904
905bfd_assert_handler_type
906bfd_set_assert_handler (bfd_assert_handler_type pnew)
907{
908 bfd_assert_handler_type pold;
909
910 pold = _bfd_assert_handler;
911 _bfd_assert_handler = pnew;
912 return pold;
913}
252b5132
RH
914\f
915/*
79bb5c23
NC
916INODE
917Miscellaneous, Memory Usage, Error reporting, BFD front end
918
252b5132 919SECTION
1b74d094
BW
920 Miscellaneous
921
922SUBSECTION
923 Miscellaneous functions
252b5132
RH
924*/
925
926/*
927FUNCTION
928 bfd_get_reloc_upper_bound
929
930SYNOPSIS
ed781d5d 931 long bfd_get_reloc_upper_bound (bfd *abfd, asection *sect);
252b5132
RH
932
933DESCRIPTION
934 Return the number of bytes required to store the
935 relocation information associated with section @var{sect}
936 attached to bfd @var{abfd}. If an error occurs, return -1.
937
938*/
939
252b5132 940long
c58b9523 941bfd_get_reloc_upper_bound (bfd *abfd, sec_ptr asect)
252b5132 942{
55ab10f0
NC
943 if (abfd->format != bfd_object)
944 {
945 bfd_set_error (bfd_error_invalid_operation);
946 return -1;
947 }
252b5132
RH
948
949 return BFD_SEND (abfd, _get_reloc_upper_bound, (abfd, asect));
950}
951
952/*
953FUNCTION
954 bfd_canonicalize_reloc
955
956SYNOPSIS
957 long bfd_canonicalize_reloc
c58b9523 958 (bfd *abfd, asection *sec, arelent **loc, asymbol **syms);
252b5132
RH
959
960DESCRIPTION
961 Call the back end associated with the open BFD
962 @var{abfd} and translate the external form of the relocation
963 information attached to @var{sec} into the internal canonical
964 form. Place the table into memory at @var{loc}, which has
965 been preallocated, usually by a call to
966 <<bfd_get_reloc_upper_bound>>. Returns the number of relocs, or
967 -1 on error.
968
969 The @var{syms} table is also needed for horrible internal magic
970 reasons.
971
252b5132
RH
972*/
973long
c58b9523
AM
974bfd_canonicalize_reloc (bfd *abfd,
975 sec_ptr asect,
976 arelent **location,
977 asymbol **symbols)
252b5132 978{
55ab10f0
NC
979 if (abfd->format != bfd_object)
980 {
981 bfd_set_error (bfd_error_invalid_operation);
982 return -1;
983 }
984
252b5132
RH
985 return BFD_SEND (abfd, _bfd_canonicalize_reloc,
986 (abfd, asect, location, symbols));
987}
988
989/*
990FUNCTION
991 bfd_set_reloc
992
993SYNOPSIS
994 void bfd_set_reloc
b5f79c76 995 (bfd *abfd, asection *sec, arelent **rel, unsigned int count);
252b5132
RH
996
997DESCRIPTION
998 Set the relocation pointer and count within
999 section @var{sec} to the values @var{rel} and @var{count}.
1000 The argument @var{abfd} is ignored.
1001
1002*/
aebad5fe 1003
252b5132 1004void
c58b9523
AM
1005bfd_set_reloc (bfd *ignore_abfd ATTRIBUTE_UNUSED,
1006 sec_ptr asect,
1007 arelent **location,
1008 unsigned int count)
252b5132
RH
1009{
1010 asect->orelocation = location;
1011 asect->reloc_count = count;
1012}
1013
1014/*
1015FUNCTION
1016 bfd_set_file_flags
1017
1018SYNOPSIS
ed781d5d 1019 bfd_boolean bfd_set_file_flags (bfd *abfd, flagword flags);
252b5132
RH
1020
1021DESCRIPTION
1022 Set the flag word in the BFD @var{abfd} to the value @var{flags}.
1023
1024 Possible errors are:
1025 o <<bfd_error_wrong_format>> - The target bfd was not of object format.
1026 o <<bfd_error_invalid_operation>> - The target bfd was open for reading.
1027 o <<bfd_error_invalid_operation>> -
1028 The flag word contained a bit which was not applicable to the
1029 type of file. E.g., an attempt was made to set the <<D_PAGED>> bit
1030 on a BFD format which does not support demand paging.
1031
1032*/
1033
b34976b6 1034bfd_boolean
c58b9523 1035bfd_set_file_flags (bfd *abfd, flagword flags)
252b5132 1036{
55ab10f0
NC
1037 if (abfd->format != bfd_object)
1038 {
1039 bfd_set_error (bfd_error_wrong_format);
b34976b6 1040 return FALSE;
55ab10f0 1041 }
252b5132 1042
55ab10f0
NC
1043 if (bfd_read_p (abfd))
1044 {
1045 bfd_set_error (bfd_error_invalid_operation);
b34976b6 1046 return FALSE;
55ab10f0 1047 }
252b5132
RH
1048
1049 bfd_get_file_flags (abfd) = flags;
55ab10f0
NC
1050 if ((flags & bfd_applicable_file_flags (abfd)) != flags)
1051 {
1052 bfd_set_error (bfd_error_invalid_operation);
b34976b6 1053 return FALSE;
55ab10f0 1054 }
252b5132 1055
b34976b6 1056 return TRUE;
252b5132
RH
1057}
1058
1059void
c58b9523 1060bfd_assert (const char *file, int line)
252b5132 1061{
2b56b3f3
HPN
1062 (*_bfd_assert_handler) (_("BFD %s assertion fail %s:%d"),
1063 BFD_VERSION_STRING, file, line);
252b5132
RH
1064}
1065
c0bed66d
ILT
1066/* A more or less friendly abort message. In libbfd.h abort is
1067 defined to call this function. */
1068
c0bed66d 1069void
c58b9523 1070_bfd_abort (const char *file, int line, const char *fn)
c0bed66d
ILT
1071{
1072 if (fn != NULL)
4eca0228 1073 _bfd_error_handler
7ac01895 1074 (_("BFD %s internal error, aborting at %s:%d in %s\n"),
aec2f561 1075 BFD_VERSION_STRING, file, line, fn);
c0bed66d 1076 else
4eca0228 1077 _bfd_error_handler
7ac01895 1078 (_("BFD %s internal error, aborting at %s:%d\n"),
aec2f561 1079 BFD_VERSION_STRING, file, line);
4eca0228 1080 _bfd_error_handler (_("Please report this bug.\n"));
3168356f 1081 _exit (EXIT_FAILURE);
c0bed66d 1082}
252b5132 1083
125c4a69
NC
1084/*
1085FUNCTION
1086 bfd_get_arch_size
1087
1088SYNOPSIS
1089 int bfd_get_arch_size (bfd *abfd);
1090
1091DESCRIPTION
4ef27e04
TG
1092 Returns the normalized architecture address size, in bits, as
1093 determined by the object file's format. By normalized, we mean
1094 either 32 or 64. For ELF, this information is included in the
1095 header. Use bfd_arch_bits_per_address for number of bits in
1096 the architecture address.
125c4a69
NC
1097
1098RETURNS
1099 Returns the arch size in bits if known, <<-1>> otherwise.
1100*/
1101
1102int
c58b9523 1103bfd_get_arch_size (bfd *abfd)
125c4a69
NC
1104{
1105 if (abfd->xvec->flavour == bfd_target_elf_flavour)
c58b9523 1106 return get_elf_backend_data (abfd)->s->arch_size;
125c4a69 1107
4ef27e04 1108 return bfd_arch_bits_per_address (abfd) > 32 ? 64 : 32;
125c4a69
NC
1109}
1110
1111/*
1112FUNCTION
1113 bfd_get_sign_extend_vma
1114
1115SYNOPSIS
1116 int bfd_get_sign_extend_vma (bfd *abfd);
1117
1118DESCRIPTION
1119 Indicates if the target architecture "naturally" sign extends
1120 an address. Some architectures implicitly sign extend address
1121 values when they are converted to types larger than the size
1122 of an address. For instance, bfd_get_start_address() will
1123 return an address sign extended to fill a bfd_vma when this is
1124 the case.
1125
1126RETURNS
1127 Returns <<1>> if the target architecture is known to sign
1128 extend addresses, <<0>> if the target architecture is known to
1129 not sign extend addresses, and <<-1>> otherwise.
1130*/
1131
1132int
c58b9523 1133bfd_get_sign_extend_vma (bfd *abfd)
125c4a69 1134{
f47e5071
NC
1135 char *name;
1136
125c4a69 1137 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour)
c58b9523 1138 return get_elf_backend_data (abfd)->sign_extend_vma;
125c4a69 1139
f47e5071
NC
1140 name = bfd_get_target (abfd);
1141
7148cc28 1142 /* Return a proper value for DJGPP & PE COFF.
f47e5071
NC
1143 This function is required for DWARF2 support, but there is
1144 no place to store this information in the COFF back end.
1145 Should enough other COFF targets add support for DWARF2,
1146 a place will have to be found. Until then, this hack will do. */
0112cd26 1147 if (CONST_STRNEQ (name, "coff-go32")
8a7140c3 1148 || strcmp (name, "pe-i386") == 0
f0927246 1149 || strcmp (name, "pei-i386") == 0
6e3d6dc1
NC
1150 || strcmp (name, "pe-x86-64") == 0
1151 || strcmp (name, "pei-x86-64") == 0
7148cc28 1152 || strcmp (name, "pe-arm-wince-little") == 0
8076289e
TG
1153 || strcmp (name, "pei-arm-wince-little") == 0
1154 || strcmp (name, "aixcoff-rs6000") == 0)
f47e5071
NC
1155 return 1;
1156
09c6f846
TG
1157 if (CONST_STRNEQ (name, "mach-o"))
1158 return 0;
1159
a022216b 1160 bfd_set_error (bfd_error_wrong_format);
125c4a69
NC
1161 return -1;
1162}
1163
252b5132
RH
1164/*
1165FUNCTION
1166 bfd_set_start_address
1167
1168SYNOPSIS
ed781d5d 1169 bfd_boolean bfd_set_start_address (bfd *abfd, bfd_vma vma);
252b5132
RH
1170
1171DESCRIPTION
1172 Make @var{vma} the entry point of output BFD @var{abfd}.
1173
1174RETURNS
b34976b6 1175 Returns <<TRUE>> on success, <<FALSE>> otherwise.
252b5132
RH
1176*/
1177
b34976b6 1178bfd_boolean
c58b9523 1179bfd_set_start_address (bfd *abfd, bfd_vma vma)
252b5132
RH
1180{
1181 abfd->start_address = vma;
b34976b6 1182 return TRUE;
252b5132
RH
1183}
1184
252b5132
RH
1185/*
1186FUNCTION
1187 bfd_get_gp_size
1188
1189SYNOPSIS
ed781d5d 1190 unsigned int bfd_get_gp_size (bfd *abfd);
252b5132
RH
1191
1192DESCRIPTION
1193 Return the maximum size of objects to be optimized using the GP
1194 register under MIPS ECOFF. This is typically set by the <<-G>>
1195 argument to the compiler, assembler or linker.
1196*/
1197
c0846b23 1198unsigned int
c58b9523 1199bfd_get_gp_size (bfd *abfd)
252b5132
RH
1200{
1201 if (abfd->format == bfd_object)
1202 {
1203 if (abfd->xvec->flavour == bfd_target_ecoff_flavour)
1204 return ecoff_data (abfd)->gp_size;
1205 else if (abfd->xvec->flavour == bfd_target_elf_flavour)
1206 return elf_gp_size (abfd);
1207 }
1208 return 0;
1209}
1210
1211/*
1212FUNCTION
1213 bfd_set_gp_size
1214
1215SYNOPSIS
ed781d5d 1216 void bfd_set_gp_size (bfd *abfd, unsigned int i);
252b5132
RH
1217
1218DESCRIPTION
1219 Set the maximum size of objects to be optimized using the GP
1220 register under ECOFF or MIPS ELF. This is typically set by
1221 the <<-G>> argument to the compiler, assembler or linker.
1222*/
1223
1224void
c58b9523 1225bfd_set_gp_size (bfd *abfd, unsigned int i)
252b5132 1226{
55ab10f0 1227 /* Don't try to set GP size on an archive or core file! */
252b5132
RH
1228 if (abfd->format != bfd_object)
1229 return;
55ab10f0 1230
252b5132
RH
1231 if (abfd->xvec->flavour == bfd_target_ecoff_flavour)
1232 ecoff_data (abfd)->gp_size = i;
1233 else if (abfd->xvec->flavour == bfd_target_elf_flavour)
1234 elf_gp_size (abfd) = i;
1235}
1236
1237/* Get the GP value. This is an internal function used by some of the
1238 relocation special_function routines on targets which support a GP
1239 register. */
1240
1241bfd_vma
c58b9523 1242_bfd_get_gp_value (bfd *abfd)
252b5132 1243{
9bcf4de0
TS
1244 if (! abfd)
1245 return 0;
55ab10f0
NC
1246 if (abfd->format != bfd_object)
1247 return 0;
1248
1249 if (abfd->xvec->flavour == bfd_target_ecoff_flavour)
1250 return ecoff_data (abfd)->gp;
1251 else if (abfd->xvec->flavour == bfd_target_elf_flavour)
1252 return elf_gp (abfd);
1253
252b5132
RH
1254 return 0;
1255}
1256
1257/* Set the GP value. */
1258
1259void
c58b9523 1260_bfd_set_gp_value (bfd *abfd, bfd_vma v)
252b5132 1261{
9bcf4de0 1262 if (! abfd)
c2c96631 1263 abort ();
252b5132
RH
1264 if (abfd->format != bfd_object)
1265 return;
55ab10f0 1266
252b5132
RH
1267 if (abfd->xvec->flavour == bfd_target_ecoff_flavour)
1268 ecoff_data (abfd)->gp = v;
1269 else if (abfd->xvec->flavour == bfd_target_elf_flavour)
1270 elf_gp (abfd) = v;
1271}
1272
1273/*
1274FUNCTION
1275 bfd_scan_vma
1276
1277SYNOPSIS
ed781d5d 1278 bfd_vma bfd_scan_vma (const char *string, const char **end, int base);
252b5132
RH
1279
1280DESCRIPTION
1281 Convert, like <<strtoul>>, a numerical expression
1282 @var{string} into a <<bfd_vma>> integer, and return that integer.
1283 (Though without as many bells and whistles as <<strtoul>>.)
1284 The expression is assumed to be unsigned (i.e., positive).
1285 If given a @var{base}, it is used as the base for conversion.
1286 A base of 0 causes the function to interpret the string
1287 in hex if a leading "0x" or "0X" is found, otherwise
1288 in octal if a leading zero is found, otherwise in decimal.
1289
88eaccc2
AM
1290 If the value would overflow, the maximum <<bfd_vma>> value is
1291 returned.
252b5132
RH
1292*/
1293
1294bfd_vma
c58b9523 1295bfd_scan_vma (const char *string, const char **end, int base)
252b5132
RH
1296{
1297 bfd_vma value;
88eaccc2
AM
1298 bfd_vma cutoff;
1299 unsigned int cutlim;
1300 int overflow;
252b5132
RH
1301
1302 /* Let the host do it if possible. */
eb6e10cb 1303 if (sizeof (bfd_vma) <= sizeof (unsigned long))
c58b9523 1304 return strtoul (string, (char **) end, base);
252b5132 1305
49c97a80
ILT
1306#ifdef HAVE_STRTOULL
1307 if (sizeof (bfd_vma) <= sizeof (unsigned long long))
1308 return strtoull (string, (char **) end, base);
1309#endif
1310
252b5132
RH
1311 if (base == 0)
1312 {
1313 if (string[0] == '0')
1314 {
1315 if ((string[1] == 'x') || (string[1] == 'X'))
1316 base = 16;
252b5132
RH
1317 else
1318 base = 8;
1319 }
252b5132 1320 }
55ab10f0 1321
88eaccc2
AM
1322 if ((base < 2) || (base > 36))
1323 base = 10;
1324
1325 if (base == 16
1326 && string[0] == '0'
1327 && (string[1] == 'x' || string[1] == 'X')
1328 && ISXDIGIT (string[2]))
1329 {
1330 string += 2;
1331 }
aebad5fe 1332
88eaccc2
AM
1333 cutoff = (~ (bfd_vma) 0) / (bfd_vma) base;
1334 cutlim = (~ (bfd_vma) 0) % (bfd_vma) base;
1335 value = 0;
1336 overflow = 0;
1337 while (1)
1338 {
1339 unsigned int digit;
1340
1341 digit = *string;
1342 if (ISDIGIT (digit))
1343 digit = digit - '0';
1344 else if (ISALPHA (digit))
1345 digit = TOUPPER (digit) - 'A' + 10;
1346 else
1347 break;
1348 if (digit >= (unsigned int) base)
1349 break;
1350 if (value > cutoff || (value == cutoff && digit > cutlim))
1351 overflow = 1;
1352 value = value * base + digit;
1353 ++string;
1354 }
252b5132 1355
88eaccc2
AM
1356 if (overflow)
1357 value = ~ (bfd_vma) 0;
252b5132 1358
88eaccc2
AM
1359 if (end != NULL)
1360 *end = string;
252b5132
RH
1361
1362 return value;
1363}
1364
80fccad2
BW
1365/*
1366FUNCTION
1367 bfd_copy_private_header_data
1368
1369SYNOPSIS
1370 bfd_boolean bfd_copy_private_header_data (bfd *ibfd, bfd *obfd);
1371
1372DESCRIPTION
1373 Copy private BFD header information from the BFD @var{ibfd} to the
1374 the BFD @var{obfd}. This copies information that may require
1375 sections to exist, but does not require symbol tables. Return
1376 <<true>> on success, <<false>> on error.
1377 Possible error returns are:
1378
1379 o <<bfd_error_no_memory>> -
1380 Not enough memory exists to create private data for @var{obfd}.
1381
1382.#define bfd_copy_private_header_data(ibfd, obfd) \
1383. BFD_SEND (obfd, _bfd_copy_private_header_data, \
1384. (ibfd, obfd))
1385
1386*/
1387
252b5132
RH
1388/*
1389FUNCTION
1390 bfd_copy_private_bfd_data
1391
1392SYNOPSIS
ed781d5d 1393 bfd_boolean bfd_copy_private_bfd_data (bfd *ibfd, bfd *obfd);
252b5132
RH
1394
1395DESCRIPTION
aebad5fe 1396 Copy private BFD information from the BFD @var{ibfd} to the
b34976b6 1397 the BFD @var{obfd}. Return <<TRUE>> on success, <<FALSE>> on error.
252b5132
RH
1398 Possible error returns are:
1399
1400 o <<bfd_error_no_memory>> -
1401 Not enough memory exists to create private data for @var{obfd}.
1402
1403.#define bfd_copy_private_bfd_data(ibfd, obfd) \
1404. BFD_SEND (obfd, _bfd_copy_private_bfd_data, \
1405. (ibfd, obfd))
1406
1407*/
1408
252b5132
RH
1409/*
1410FUNCTION
1411 bfd_set_private_flags
1412
1413SYNOPSIS
ed781d5d 1414 bfd_boolean bfd_set_private_flags (bfd *abfd, flagword flags);
252b5132
RH
1415
1416DESCRIPTION
1417 Set private BFD flag information in the BFD @var{abfd}.
b34976b6 1418 Return <<TRUE>> on success, <<FALSE>> on error. Possible error
252b5132
RH
1419 returns are:
1420
1421 o <<bfd_error_no_memory>> -
1422 Not enough memory exists to create private data for @var{obfd}.
1423
1424.#define bfd_set_private_flags(abfd, flags) \
ed781d5d 1425. BFD_SEND (abfd, _bfd_set_private_flags, (abfd, flags))
252b5132
RH
1426
1427*/
1428
1429/*
1430FUNCTION
ed781d5d 1431 Other functions
252b5132
RH
1432
1433DESCRIPTION
ed781d5d 1434 The following functions exist but have not yet been documented.
252b5132 1435
a6b96beb
AM
1436.#define bfd_sizeof_headers(abfd, info) \
1437. BFD_SEND (abfd, _bfd_sizeof_headers, (abfd, info))
252b5132
RH
1438.
1439.#define bfd_find_nearest_line(abfd, sec, syms, off, file, func, line) \
ed781d5d 1440. BFD_SEND (abfd, _bfd_find_nearest_line, \
fb167eb2 1441. (abfd, syms, sec, off, file, func, line, NULL))
252b5132 1442.
9b8d1a36
CC
1443.#define bfd_find_nearest_line_discriminator(abfd, sec, syms, off, file, func, \
1444. line, disc) \
fb167eb2
AM
1445. BFD_SEND (abfd, _bfd_find_nearest_line, \
1446. (abfd, syms, sec, off, file, func, line, disc))
9b8d1a36 1447.
5420f73d
L
1448.#define bfd_find_line(abfd, syms, sym, file, line) \
1449. BFD_SEND (abfd, _bfd_find_line, \
1450. (abfd, syms, sym, file, line))
1451.
4ab527b0
FF
1452.#define bfd_find_inliner_info(abfd, file, func, line) \
1453. BFD_SEND (abfd, _bfd_find_inliner_info, \
1454. (abfd, file, func, line))
1455.
252b5132 1456.#define bfd_debug_info_start(abfd) \
ed781d5d 1457. BFD_SEND (abfd, _bfd_debug_info_start, (abfd))
252b5132
RH
1458.
1459.#define bfd_debug_info_end(abfd) \
ed781d5d 1460. BFD_SEND (abfd, _bfd_debug_info_end, (abfd))
252b5132
RH
1461.
1462.#define bfd_debug_info_accumulate(abfd, section) \
ed781d5d 1463. BFD_SEND (abfd, _bfd_debug_info_accumulate, (abfd, section))
252b5132
RH
1464.
1465.#define bfd_stat_arch_elt(abfd, stat) \
ed781d5d 1466. BFD_SEND (abfd, _bfd_stat_arch_elt,(abfd, stat))
252b5132
RH
1467.
1468.#define bfd_update_armap_timestamp(abfd) \
ed781d5d 1469. BFD_SEND (abfd, _bfd_update_armap_timestamp, (abfd))
252b5132
RH
1470.
1471.#define bfd_set_arch_mach(abfd, arch, mach)\
ed781d5d 1472. BFD_SEND ( abfd, _bfd_set_arch_mach, (abfd, arch, mach))
252b5132
RH
1473.
1474.#define bfd_relax_section(abfd, section, link_info, again) \
1475. BFD_SEND (abfd, _bfd_relax_section, (abfd, section, link_info, again))
1476.
1477.#define bfd_gc_sections(abfd, link_info) \
1478. BFD_SEND (abfd, _bfd_gc_sections, (abfd, link_info))
8550eb6e 1479.
b9c361e0
JL
1480.#define bfd_lookup_section_flags(link_info, flag_info, section) \
1481. BFD_SEND (abfd, _bfd_lookup_section_flags, (link_info, flag_info, section))
ae17ab41 1482.
8550eb6e
JJ
1483.#define bfd_merge_sections(abfd, link_info) \
1484. BFD_SEND (abfd, _bfd_merge_sections, (abfd, link_info))
252b5132 1485.
72adc230
AM
1486.#define bfd_is_group_section(abfd, sec) \
1487. BFD_SEND (abfd, _bfd_is_group_section, (abfd, sec))
1488.
e61463e1
AM
1489.#define bfd_discard_group(abfd, sec) \
1490. BFD_SEND (abfd, _bfd_discard_group, (abfd, sec))
1491.
252b5132
RH
1492.#define bfd_link_hash_table_create(abfd) \
1493. BFD_SEND (abfd, _bfd_link_hash_table_create, (abfd))
1494.
1495.#define bfd_link_add_symbols(abfd, info) \
1496. BFD_SEND (abfd, _bfd_link_add_symbols, (abfd, info))
1497.
1449d79b 1498.#define bfd_link_just_syms(abfd, sec, info) \
2d653fc7
AM
1499. BFD_SEND (abfd, _bfd_link_just_syms, (sec, info))
1500.
252b5132
RH
1501.#define bfd_final_link(abfd, info) \
1502. BFD_SEND (abfd, _bfd_final_link, (abfd, info))
1503.
1504.#define bfd_free_cached_info(abfd) \
1505. BFD_SEND (abfd, _bfd_free_cached_info, (abfd))
1506.
1507.#define bfd_get_dynamic_symtab_upper_bound(abfd) \
1508. BFD_SEND (abfd, _bfd_get_dynamic_symtab_upper_bound, (abfd))
1509.
1510.#define bfd_print_private_bfd_data(abfd, file)\
1511. BFD_SEND (abfd, _bfd_print_private_bfd_data, (abfd, file))
1512.
1513.#define bfd_canonicalize_dynamic_symtab(abfd, asymbols) \
1514. BFD_SEND (abfd, _bfd_canonicalize_dynamic_symtab, (abfd, asymbols))
1515.
c9727e01
AM
1516.#define bfd_get_synthetic_symtab(abfd, count, syms, dyncount, dynsyms, ret) \
1517. BFD_SEND (abfd, _bfd_get_synthetic_symtab, (abfd, count, syms, \
1518. dyncount, dynsyms, ret))
4c45e5c9 1519.
252b5132
RH
1520.#define bfd_get_dynamic_reloc_upper_bound(abfd) \
1521. BFD_SEND (abfd, _bfd_get_dynamic_reloc_upper_bound, (abfd))
1522.
1523.#define bfd_canonicalize_dynamic_reloc(abfd, arels, asyms) \
1524. BFD_SEND (abfd, _bfd_canonicalize_dynamic_reloc, (abfd, arels, asyms))
1525.
1526.extern bfd_byte *bfd_get_relocated_section_contents
c58b9523
AM
1527. (bfd *, struct bfd_link_info *, struct bfd_link_order *, bfd_byte *,
1528. bfd_boolean, asymbol **);
252b5132
RH
1529.
1530
1531*/
1532
1533bfd_byte *
c58b9523
AM
1534bfd_get_relocated_section_contents (bfd *abfd,
1535 struct bfd_link_info *link_info,
1536 struct bfd_link_order *link_order,
1537 bfd_byte *data,
1538 bfd_boolean relocatable,
1539 asymbol **symbols)
252b5132
RH
1540{
1541 bfd *abfd2;
c58b9523
AM
1542 bfd_byte *(*fn) (bfd *, struct bfd_link_info *, struct bfd_link_order *,
1543 bfd_byte *, bfd_boolean, asymbol **);
252b5132
RH
1544
1545 if (link_order->type == bfd_indirect_link_order)
1546 {
1547 abfd2 = link_order->u.indirect.section->owner;
55ab10f0 1548 if (abfd2 == NULL)
252b5132
RH
1549 abfd2 = abfd;
1550 }
1551 else
1552 abfd2 = abfd;
55ab10f0 1553
252b5132
RH
1554 fn = abfd2->xvec->_bfd_get_relocated_section_contents;
1555
1049f94e 1556 return (*fn) (abfd, link_info, link_order, data, relocatable, symbols);
252b5132
RH
1557}
1558
1559/* Record information about an ELF program header. */
1560
b34976b6 1561bfd_boolean
c58b9523
AM
1562bfd_record_phdr (bfd *abfd,
1563 unsigned long type,
1564 bfd_boolean flags_valid,
1565 flagword flags,
1566 bfd_boolean at_valid,
1567 bfd_vma at,
1568 bfd_boolean includes_filehdr,
1569 bfd_boolean includes_phdrs,
1570 unsigned int count,
1571 asection **secs)
252b5132
RH
1572{
1573 struct elf_segment_map *m, **pm;
dc810e39 1574 bfd_size_type amt;
252b5132
RH
1575
1576 if (bfd_get_flavour (abfd) != bfd_target_elf_flavour)
b34976b6 1577 return TRUE;
252b5132 1578
dc810e39
AM
1579 amt = sizeof (struct elf_segment_map);
1580 amt += ((bfd_size_type) count - 1) * sizeof (asection *);
a50b1753 1581 m = (struct elf_segment_map *) bfd_zalloc (abfd, amt);
252b5132 1582 if (m == NULL)
b34976b6 1583 return FALSE;
252b5132 1584
252b5132
RH
1585 m->p_type = type;
1586 m->p_flags = flags;
1587 m->p_paddr = at;
c58b9523
AM
1588 m->p_flags_valid = flags_valid;
1589 m->p_paddr_valid = at_valid;
1590 m->includes_filehdr = includes_filehdr;
1591 m->includes_phdrs = includes_phdrs;
252b5132
RH
1592 m->count = count;
1593 if (count > 0)
1594 memcpy (m->sections, secs, count * sizeof (asection *));
1595
12bd6957 1596 for (pm = &elf_seg_map (abfd); *pm != NULL; pm = &(*pm)->next)
252b5132
RH
1597 ;
1598 *pm = m;
1599
b34976b6 1600 return TRUE;
252b5132 1601}
ae4221d7 1602
01a3c213
AM
1603#ifdef BFD64
1604/* Return true iff this target is 32-bit. */
1605
1606static bfd_boolean
1607is32bit (bfd *abfd)
ae4221d7
L
1608{
1609 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour)
01a3c213
AM
1610 {
1611 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
1612 return bed->s->elfclass == ELFCLASS32;
1613 }
1614
6aa341c7
TG
1615 /* For non-ELF targets, use architecture information. */
1616 return bfd_arch_bits_per_address (abfd) <= 32;
ae4221d7 1617}
01a3c213
AM
1618#endif
1619
1620/* bfd_sprintf_vma and bfd_fprintf_vma display an address in the
1621 target's address size. */
ae4221d7
L
1622
1623void
01a3c213 1624bfd_sprintf_vma (bfd *abfd ATTRIBUTE_UNUSED, char *buf, bfd_vma value)
ae4221d7 1625{
970ccc77 1626#ifdef BFD64
01a3c213
AM
1627 if (is32bit (abfd))
1628 {
1629 sprintf (buf, "%08lx", (unsigned long) value & 0xffffffff);
1630 return;
1631 }
970ccc77 1632#endif
01a3c213
AM
1633 sprintf_vma (buf, value);
1634}
1635
1636void
1637bfd_fprintf_vma (bfd *abfd ATTRIBUTE_UNUSED, void *stream, bfd_vma value)
1638{
1639#ifdef BFD64
1640 if (is32bit (abfd))
1641 {
1642 fprintf ((FILE *) stream, "%08lx", (unsigned long) value & 0xffffffff);
1643 return;
1644 }
1645#endif
1646 fprintf_vma ((FILE *) stream, value);
ae4221d7 1647}
8c98ec7d
AO
1648
1649/*
1650FUNCTION
1651 bfd_alt_mach_code
1652
1653SYNOPSIS
ed781d5d 1654 bfd_boolean bfd_alt_mach_code (bfd *abfd, int alternative);
8c98ec7d
AO
1655
1656DESCRIPTION
1657
1658 When more than one machine code number is available for the
1659 same machine type, this function can be used to switch between
47badb7b 1660 the preferred one (alternative == 0) and any others. Currently,
8c98ec7d
AO
1661 only ELF supports this feature, with up to two alternate
1662 machine codes.
1663*/
1664
b34976b6 1665bfd_boolean
c58b9523 1666bfd_alt_mach_code (bfd *abfd, int alternative)
8c98ec7d
AO
1667{
1668 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour)
1669 {
1670 int code;
1671
47badb7b 1672 switch (alternative)
8c98ec7d
AO
1673 {
1674 case 0:
1675 code = get_elf_backend_data (abfd)->elf_machine_code;
1676 break;
1677
1678 case 1:
1679 code = get_elf_backend_data (abfd)->elf_machine_alt1;
1680 if (code == 0)
b34976b6 1681 return FALSE;
8c98ec7d
AO
1682 break;
1683
1684 case 2:
1685 code = get_elf_backend_data (abfd)->elf_machine_alt2;
1686 if (code == 0)
b34976b6 1687 return FALSE;
8c98ec7d
AO
1688 break;
1689
1690 default:
b34976b6 1691 return FALSE;
8c98ec7d
AO
1692 }
1693
1694 elf_elfheader (abfd)->e_machine = code;
1695
b34976b6 1696 return TRUE;
8c98ec7d
AO
1697 }
1698
b34976b6 1699 return FALSE;
8c98ec7d 1700}
e84d6fca 1701
24718e3b
L
1702/*
1703FUNCTION
1704 bfd_emul_get_maxpagesize
1705
1706SYNOPSIS
1707 bfd_vma bfd_emul_get_maxpagesize (const char *);
1708
1709DESCRIPTION
1710 Returns the maximum page size, in bytes, as determined by
1711 emulation.
1712
1713RETURNS
095106a2 1714 Returns the maximum page size in bytes for ELF, 0 otherwise.
24718e3b
L
1715*/
1716
1717bfd_vma
1718bfd_emul_get_maxpagesize (const char *emul)
1719{
1720 const bfd_target *target;
1721
1722 target = bfd_find_target (emul, NULL);
1723 if (target != NULL
1724 && target->flavour == bfd_target_elf_flavour)
1725 return xvec_get_elf_backend_data (target)->maxpagesize;
1726
24718e3b
L
1727 return 0;
1728}
1729
1730static void
1731bfd_elf_set_pagesize (const bfd_target *target, bfd_vma size,
1732 int offset, const bfd_target *orig_target)
1733{
1734 if (target->flavour == bfd_target_elf_flavour)
1735 {
1736 const struct elf_backend_data *bed;
1737
1738 bed = xvec_get_elf_backend_data (target);
1739 *((bfd_vma *) ((char *) bed + offset)) = size;
1740 }
1741
1742 if (target->alternative_target
1743 && target->alternative_target != orig_target)
1744 bfd_elf_set_pagesize (target->alternative_target, size, offset,
1745 orig_target);
1746}
1747
1748/*
1749FUNCTION
1750 bfd_emul_set_maxpagesize
1751
1752SYNOPSIS
1753 void bfd_emul_set_maxpagesize (const char *, bfd_vma);
1754
1755DESCRIPTION
1756 For ELF, set the maximum page size for the emulation. It is
1757 a no-op for other formats.
1758
1759*/
1760
1761void
1762bfd_emul_set_maxpagesize (const char *emul, bfd_vma size)
1763{
1764 const bfd_target *target;
1765
1766 target = bfd_find_target (emul, NULL);
1767 if (target)
1768 bfd_elf_set_pagesize (target, size,
1769 offsetof (struct elf_backend_data,
1770 maxpagesize), target);
1771}
1772
1773/*
1774FUNCTION
1775 bfd_emul_get_commonpagesize
1776
1777SYNOPSIS
1778 bfd_vma bfd_emul_get_commonpagesize (const char *);
1779
1780DESCRIPTION
1781 Returns the common page size, in bytes, as determined by
1782 emulation.
1783
1784RETURNS
095106a2 1785 Returns the common page size in bytes for ELF, 0 otherwise.
24718e3b
L
1786*/
1787
1788bfd_vma
1789bfd_emul_get_commonpagesize (const char *emul)
1790{
1791 const bfd_target *target;
1792
1793 target = bfd_find_target (emul, NULL);
1794 if (target != NULL
1795 && target->flavour == bfd_target_elf_flavour)
1796 return xvec_get_elf_backend_data (target)->commonpagesize;
1797
24718e3b
L
1798 return 0;
1799}
1800
1801/*
1802FUNCTION
1803 bfd_emul_set_commonpagesize
1804
1805SYNOPSIS
1806 void bfd_emul_set_commonpagesize (const char *, bfd_vma);
1807
1808DESCRIPTION
1809 For ELF, set the common page size for the emulation. It is
1810 a no-op for other formats.
1811
1812*/
1813
1814void
1815bfd_emul_set_commonpagesize (const char *emul, bfd_vma size)
1816{
1817 const bfd_target *target;
1818
1819 target = bfd_find_target (emul, NULL);
1820 if (target)
1821 bfd_elf_set_pagesize (target, size,
1822 offsetof (struct elf_backend_data,
1823 commonpagesize), target);
1824}
3fad56a3
AM
1825
1826/*
1827FUNCTION
1828 bfd_demangle
1829
1830SYNOPSIS
1831 char *bfd_demangle (bfd *, const char *, int);
1832
1833DESCRIPTION
1834 Wrapper around cplus_demangle. Strips leading underscores and
1835 other such chars that would otherwise confuse the demangler.
1836 If passed a g++ v3 ABI mangled name, returns a buffer allocated
1837 with malloc holding the demangled name. Returns NULL otherwise
1838 and on memory alloc failure.
1839*/
1840
1841char *
1842bfd_demangle (bfd *abfd, const char *name, int options)
1843{
1844 char *res, *alloc;
1845 const char *pre, *suf;
1846 size_t pre_len;
c29aae59 1847 bfd_boolean skip_lead;
3fad56a3 1848
c29aae59
AM
1849 skip_lead = (abfd != NULL
1850 && *name != '\0'
1851 && bfd_get_symbol_leading_char (abfd) == *name);
1852 if (skip_lead)
3fad56a3
AM
1853 ++name;
1854
1855 /* This is a hack for better error reporting on XCOFF, PowerPC64-ELF
1856 or the MS PE format. These formats have a number of leading '.'s
1857 on at least some symbols, so we remove all dots to avoid
1858 confusing the demangler. */
1859 pre = name;
1860 while (*name == '.' || *name == '$')
1861 ++name;
1862 pre_len = name - pre;
1863
1864 /* Strip off @plt and suchlike too. */
1865 alloc = NULL;
1866 suf = strchr (name, '@');
1867 if (suf != NULL)
1868 {
a50b1753 1869 alloc = (char *) bfd_malloc (suf - name + 1);
3fad56a3
AM
1870 if (alloc == NULL)
1871 return NULL;
1872 memcpy (alloc, name, suf - name);
1873 alloc[suf - name] = '\0';
1874 name = alloc;
1875 }
1876
1877 res = cplus_demangle (name, options);
1878
1879 if (alloc != NULL)
1880 free (alloc);
1881
1882 if (res == NULL)
c29aae59
AM
1883 {
1884 if (skip_lead)
1885 {
1886 size_t len = strlen (pre) + 1;
a50b1753 1887 alloc = (char *) bfd_malloc (len);
c29aae59
AM
1888 if (alloc == NULL)
1889 return NULL;
1890 memcpy (alloc, pre, len);
1891 return alloc;
1892 }
1893 return NULL;
1894 }
3fad56a3
AM
1895
1896 /* Put back any prefix or suffix. */
1897 if (pre_len != 0 || suf != NULL)
1898 {
1899 size_t len;
1900 size_t suf_len;
1901 char *final;
1902
1903 len = strlen (res);
1904 if (suf == NULL)
1905 suf = res + len;
1906 suf_len = strlen (suf) + 1;
a50b1753 1907 final = (char *) bfd_malloc (pre_len + len + suf_len);
32e8a950
NC
1908 if (final != NULL)
1909 {
1910 memcpy (final, pre, pre_len);
1911 memcpy (final + pre_len, res, len);
1912 memcpy (final + pre_len + len, suf, suf_len);
1913 }
3fad56a3
AM
1914 free (res);
1915 res = final;
1916 }
1917
1918 return res;
1919}
151411f8
L
1920
1921/*
1922FUNCTION
1923 bfd_update_compression_header
1924
1925SYNOPSIS
1926 void bfd_update_compression_header
1927 (bfd *abfd, bfd_byte *contents, asection *sec);
1928
1929DESCRIPTION
1930 Set the compression header at CONTENTS of SEC in ABFD and update
1931 elf_section_flags for compression.
1932*/
1933
1934void
1935bfd_update_compression_header (bfd *abfd, bfd_byte *contents,
1936 asection *sec)
1937{
1938 if ((abfd->flags & BFD_COMPRESS) != 0)
1939 {
1940 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour)
1941 {
1942 if ((abfd->flags & BFD_COMPRESS_GABI) != 0)
1943 {
1944 const struct elf_backend_data *bed
1945 = get_elf_backend_data (abfd);
1946
1947 /* Set the SHF_COMPRESSED bit. */
1948 elf_section_flags (sec) |= SHF_COMPRESSED;
1949
1950 if (bed->s->elfclass == ELFCLASS32)
1951 {
1952 Elf32_External_Chdr *echdr
1953 = (Elf32_External_Chdr *) contents;
1954 bfd_put_32 (abfd, ELFCOMPRESS_ZLIB, &echdr->ch_type);
1955 bfd_put_32 (abfd, sec->size, &echdr->ch_size);
1956 bfd_put_32 (abfd, 1 << sec->alignment_power,
1957 &echdr->ch_addralign);
1958 }
1959 else
1960 {
1961 Elf64_External_Chdr *echdr
1962 = (Elf64_External_Chdr *) contents;
c8b187ea 1963 bfd_put_32 (abfd, ELFCOMPRESS_ZLIB, &echdr->ch_type);
8c6da3df 1964 bfd_put_32 (abfd, 0, &echdr->ch_reserved);
151411f8
L
1965 bfd_put_64 (abfd, sec->size, &echdr->ch_size);
1966 bfd_put_64 (abfd, 1 << sec->alignment_power,
1967 &echdr->ch_addralign);
1968 }
1969 }
1970 else
dab394de
L
1971 {
1972 /* Clear the SHF_COMPRESSED bit. */
1973 elf_section_flags (sec) &= ~SHF_COMPRESSED;
1974
1975 /* Write the zlib header. It should be "ZLIB" followed by
1976 the uncompressed section size, 8 bytes in big-endian
1977 order. */
1978 memcpy (contents, "ZLIB", 4);
1979 bfd_putb64 (sec->size, contents + 4);
1980 }
151411f8
L
1981 }
1982 }
1983 else
1984 abort ();
1985}
1986
1987/*
1988 FUNCTION
1989 bfd_check_compression_header
1990
1991 SYNOPSIS
1992 bfd_boolean bfd_check_compression_header
1993 (bfd *abfd, bfd_byte *contents, asection *sec,
dab394de 1994 bfd_size_type *uncompressed_size);
151411f8
L
1995
1996DESCRIPTION
dab394de
L
1997 Check the compression header at CONTENTS of SEC in ABFD and
1998 store the uncompressed size in UNCOMPRESSED_SIZE if the
1999 compression header is valid.
151411f8
L
2000
2001RETURNS
2002 Return TRUE if the compression header is valid.
2003*/
2004
2005bfd_boolean
2006bfd_check_compression_header (bfd *abfd, bfd_byte *contents,
2007 asection *sec,
dab394de 2008 bfd_size_type *uncompressed_size)
151411f8
L
2009{
2010 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour
2011 && (elf_section_flags (sec) & SHF_COMPRESSED) != 0)
2012 {
2013 Elf_Internal_Chdr chdr;
2014 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
2015 if (bed->s->elfclass == ELFCLASS32)
2016 {
2017 Elf32_External_Chdr *echdr = (Elf32_External_Chdr *) contents;
2018 chdr.ch_type = bfd_get_32 (abfd, &echdr->ch_type);
2019 chdr.ch_size = bfd_get_32 (abfd, &echdr->ch_size);
2020 chdr.ch_addralign = bfd_get_32 (abfd, &echdr->ch_addralign);
2021 }
2022 else
2023 {
2024 Elf64_External_Chdr *echdr = (Elf64_External_Chdr *) contents;
c8b187ea 2025 chdr.ch_type = bfd_get_32 (abfd, &echdr->ch_type);
151411f8
L
2026 chdr.ch_size = bfd_get_64 (abfd, &echdr->ch_size);
2027 chdr.ch_addralign = bfd_get_64 (abfd, &echdr->ch_addralign);
2028 }
dab394de
L
2029 if (chdr.ch_type == ELFCOMPRESS_ZLIB
2030 && chdr.ch_addralign == 1U << sec->alignment_power)
2031 {
2032 *uncompressed_size = chdr.ch_size;
2033 return TRUE;
2034 }
151411f8
L
2035 }
2036
2037 return FALSE;
2038}
2039
2040/*
2041FUNCTION
2042 bfd_get_compression_header_size
2043
2044SYNOPSIS
2045 int bfd_get_compression_header_size (bfd *abfd, asection *sec);
2046
2047DESCRIPTION
2048 Return the size of the compression header of SEC in ABFD.
2049
2050RETURNS
2051 Return the size of the compression header in bytes.
2052*/
2053
2054int
2055bfd_get_compression_header_size (bfd *abfd, asection *sec)
2056{
2057 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour)
2058 {
2059 if (sec == NULL)
2060 {
2061 if (!(abfd->flags & BFD_COMPRESS_GABI))
2062 return 0;
2063 }
2064 else if (!(elf_section_flags (sec) & SHF_COMPRESSED))
2065 return 0;
2066
2067 if (get_elf_backend_data (abfd)->s->elfclass == ELFCLASS32)
2068 return sizeof (Elf32_External_Chdr);
2069 else
2070 return sizeof (Elf64_External_Chdr);
2071 }
2072
2073 return 0;
2074}
88988473
L
2075
2076/*
2077FUNCTION
2078 bfd_convert_section_size
2079
2080SYNOPSIS
2081 bfd_size_type bfd_convert_section_size
2082 (bfd *ibfd, asection *isec, bfd *obfd, bfd_size_type size);
2083
2084DESCRIPTION
2085 Convert the size @var{size} of the section @var{isec} in input
2086 BFD @var{ibfd} to the section size in output BFD @var{obfd}.
2087*/
2088
2089bfd_size_type
2090bfd_convert_section_size (bfd *ibfd, sec_ptr isec, bfd *obfd,
2091 bfd_size_type size)
2092{
2093 bfd_size_type hdr_size;
2094
2095 /* Do nothing if input file will be decompressed. */
2096 if ((ibfd->flags & BFD_DECOMPRESS))
2097 return size;
2098
2099 /* Do nothing if either input or output aren't ELF. */
2100 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour
2101 || bfd_get_flavour (obfd) != bfd_target_elf_flavour)
2102 return size;
2103
2104 /* Do nothing if ELF classes of input and output are the same. */
2105 if (get_elf_backend_data (ibfd)->s->elfclass
2106 == get_elf_backend_data (obfd)->s->elfclass)
2107 return size;
2108
2109 /* Do nothing if the input section isn't a SHF_COMPRESSED section. */
2110 hdr_size = bfd_get_compression_header_size (ibfd, isec);
2111 if (hdr_size == 0)
2112 return size;
2113
2114 /* Adjust the size of the output SHF_COMPRESSED section. */
2115 if (hdr_size == sizeof (Elf32_External_Chdr))
2116 return (size - sizeof (Elf32_External_Chdr)
2117 + sizeof (Elf64_External_Chdr));
2118 else
2119 return (size - sizeof (Elf64_External_Chdr)
2120 + sizeof (Elf32_External_Chdr));
2121}
2122
2123/*
2124FUNCTION
2125 bfd_convert_section_contents
2126
2127SYNOPSIS
2128 bfd_boolean bfd_convert_section_contents
cbd44e24
L
2129 (bfd *ibfd, asection *isec, bfd *obfd,
2130 bfd_byte **ptr, bfd_size_type *ptr_size);
88988473
L
2131
2132DESCRIPTION
2133 Convert the contents, stored in @var{*ptr}, of the section
2134 @var{isec} in input BFD @var{ibfd} to output BFD @var{obfd}
2135 if needed. The original buffer pointed to by @var{*ptr} may
2136 be freed and @var{*ptr} is returned with memory malloc'd by this
cbd44e24 2137 function, and the new size written to @var{ptr_size}.
88988473
L
2138*/
2139
2140bfd_boolean
2141bfd_convert_section_contents (bfd *ibfd, sec_ptr isec, bfd *obfd,
cbd44e24 2142 bfd_byte **ptr, bfd_size_type *ptr_size)
88988473
L
2143{
2144 bfd_byte *contents;
2145 bfd_size_type ihdr_size, ohdr_size, size;
2146 Elf_Internal_Chdr chdr;
2147 bfd_boolean use_memmove;
2148
2149 /* Do nothing if input file will be decompressed. */
2150 if ((ibfd->flags & BFD_DECOMPRESS))
2151 return TRUE;
2152
2153 /* Do nothing if either input or output aren't ELF. */
2154 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour
2155 || bfd_get_flavour (obfd) != bfd_target_elf_flavour)
2156 return TRUE;
2157
2158 /* Do nothing if ELF classes of input and output are the same. */
2159 if (get_elf_backend_data (ibfd)->s->elfclass
2160 == get_elf_backend_data (obfd)->s->elfclass)
2161 return TRUE;
2162
2163 /* Do nothing if the input section isn't a SHF_COMPRESSED section. */
2164 ihdr_size = bfd_get_compression_header_size (ibfd, isec);
2165 if (ihdr_size == 0)
2166 return TRUE;
2167
2168 contents = *ptr;
2169
2170 /* Convert the contents of the input SHF_COMPRESSED section to
2171 output. Get the input compression header and the size of the
2172 output compression header. */
2173 if (ihdr_size == sizeof (Elf32_External_Chdr))
2174 {
2175 Elf32_External_Chdr *echdr = (Elf32_External_Chdr *) contents;
2176 chdr.ch_type = bfd_get_32 (ibfd, &echdr->ch_type);
2177 chdr.ch_size = bfd_get_32 (ibfd, &echdr->ch_size);
2178 chdr.ch_addralign = bfd_get_32 (ibfd, &echdr->ch_addralign);
2179
2180 ohdr_size = sizeof (Elf64_External_Chdr);
2181
2182 use_memmove = FALSE;
2183 }
2184 else
2185 {
2186 Elf64_External_Chdr *echdr = (Elf64_External_Chdr *) contents;
c8b187ea 2187 chdr.ch_type = bfd_get_32 (ibfd, &echdr->ch_type);
88988473
L
2188 chdr.ch_size = bfd_get_64 (ibfd, &echdr->ch_size);
2189 chdr.ch_addralign = bfd_get_64 (ibfd, &echdr->ch_addralign);
2190
2191 ohdr_size = sizeof (Elf32_External_Chdr);
2192 use_memmove = TRUE;
2193 }
2194
2195 size = bfd_get_section_size (isec) - ihdr_size + ohdr_size;
2196 if (!use_memmove)
2197 {
2198 contents = (bfd_byte *) bfd_malloc (size);
2199 if (contents == NULL)
2200 return FALSE;
2201 }
2202
2203 /* Write out the output compression header. */
2204 if (ohdr_size == sizeof (Elf32_External_Chdr))
2205 {
2206 Elf32_External_Chdr *echdr = (Elf32_External_Chdr *) contents;
2207 bfd_put_32 (obfd, ELFCOMPRESS_ZLIB, &echdr->ch_type);
2208 bfd_put_32 (obfd, chdr.ch_size, &echdr->ch_size);
2209 bfd_put_32 (obfd, chdr.ch_addralign, &echdr->ch_addralign);
2210 }
2211 else
2212 {
2213 Elf64_External_Chdr *echdr = (Elf64_External_Chdr *) contents;
c8b187ea 2214 bfd_put_32 (obfd, ELFCOMPRESS_ZLIB, &echdr->ch_type);
8c6da3df 2215 bfd_put_32 (obfd, 0, &echdr->ch_reserved);
88988473
L
2216 bfd_put_64 (obfd, chdr.ch_size, &echdr->ch_size);
2217 bfd_put_64 (obfd, chdr.ch_addralign, &echdr->ch_addralign);
2218 }
2219
2220 /* Copy the compressed contents. */
2221 if (use_memmove)
2222 memmove (contents + ohdr_size, *ptr + ihdr_size, size - ohdr_size);
2223 else
2224 {
2225 memcpy (contents + ohdr_size, *ptr + ihdr_size, size - ohdr_size);
2226 free (*ptr);
2227 *ptr = contents;
2228 }
2229
cbd44e24 2230 *ptr_size = size;
88988473
L
2231 return TRUE;
2232}
This page took 0.793738 seconds and 4 git commands to generate.