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