]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - bfd/bfd.c
* ld-elfcomm/elfcomm.exp: Run $READELF not readelf.
[thirdparty/binutils-gdb.git] / bfd / bfd.c
CommitLineData
252b5132 1/* Generic BFD library interface and support routines.
7898deda 2 Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
6e3d6dc1 3 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
252b5132
RH
4 Free Software Foundation, Inc.
5 Written by Cygnus Support.
6
3af9a47b 7 This file is part of BFD, the Binary File Descriptor library.
252b5132 8
3af9a47b
NC
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
cd123cb7 11 the Free Software Foundation; either version 3 of the License, or
3af9a47b 12 (at your option) any later version.
252b5132 13
3af9a47b
NC
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
252b5132 18
3af9a47b
NC
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
cd123cb7
NC
21 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
22 MA 02110-1301, USA. */
252b5132
RH
23
24/*
25SECTION
26 <<typedef bfd>>
27
28 A BFD has type <<bfd>>; objects of this type are the
29 cornerstone of any application using BFD. Using BFD
30 consists of making references though the BFD and to data in the BFD.
31
32 Here is the structure that defines the type <<bfd>>. It
33 contains the major data about the file and pointers
34 to the rest of the data.
35
36CODE_FRAGMENT
37.
c2852e88 38.struct bfd
252b5132 39.{
52b69c9e
AO
40. {* A unique identifier of the BFD *}
41. unsigned int id;
42.
b5f79c76
NC
43. {* The filename the application opened the BFD with. *}
44. const char *filename;
252b5132 45.
b5f79c76
NC
46. {* A pointer to the target jump table. *}
47. const struct bfd_target *xvec;
252b5132 48.
40838a72
AC
49. {* The IOSTREAM, and corresponding IO vector that provide access
50. to the file backing the BFD. *}
c58b9523 51. void *iostream;
40838a72 52. const struct bfd_iovec *iovec;
b5f79c76 53.
b5f79c76
NC
54. {* The caching routines use these to maintain a
55. least-recently-used list of BFDs. *}
2ce40c65 56. struct bfd *lru_prev, *lru_next;
b5f79c76
NC
57.
58. {* When a file is closed by the caching routines, BFD retains
59. state information on the file here... *}
60. ufile_ptr where;
61.
b34976b6 62. {* File modified time, if mtime_set is TRUE. *}
b5f79c76
NC
63. long mtime;
64.
65. {* Reserved for an unimplemented file locking extension. *}
66. int ifd;
67.
68. {* The format which belongs to the BFD. (object, core, etc.) *}
69. bfd_format format;
70.
71. {* The direction with which the BFD was opened. *}
72. enum bfd_direction
73. {
74. no_direction = 0,
75. read_direction = 1,
76. write_direction = 2,
77. both_direction = 3
78. }
79. direction;
80.
81. {* Format_specific flags. *}
82. flagword flags;
83.
6ad2759d
L
84. {* Values that may appear in the flags field of a BFD. These also
85. appear in the object_flags field of the bfd_target structure, where
86. they indicate the set of flags used by that backend (not all flags
87. are meaningful for all object file formats) (FIXME: at the moment,
88. the object_flags values have mostly just been copied from backend
89. to another, and are not necessarily correct). *}
90.
91.#define BFD_NO_FLAGS 0x00
92.
93. {* BFD contains relocation entries. *}
94.#define HAS_RELOC 0x01
95.
96. {* BFD is directly executable. *}
97.#define EXEC_P 0x02
98.
99. {* BFD has line number information (basically used for F_LNNO in a
100. COFF header). *}
101.#define HAS_LINENO 0x04
102.
103. {* BFD has debugging information. *}
104.#define HAS_DEBUG 0x08
105.
106. {* BFD has symbols. *}
107.#define HAS_SYMS 0x10
108.
109. {* BFD has local symbols (basically used for F_LSYMS in a COFF
110. header). *}
111.#define HAS_LOCALS 0x20
112.
113. {* BFD is a dynamic object. *}
114.#define DYNAMIC 0x40
115.
116. {* Text section is write protected (if D_PAGED is not set, this is
117. like an a.out NMAGIC file) (the linker sets this by default, but
118. clears it for -r or -N). *}
119.#define WP_TEXT 0x80
120.
121. {* BFD is dynamically paged (this is like an a.out ZMAGIC file) (the
122. linker sets this by default, but clears it for -r or -n or -N). *}
123.#define D_PAGED 0x100
124.
125. {* BFD is relaxable (this means that bfd_relax_section may be able to
126. do something) (sometimes bfd_relax_section can do something even if
127. this is not set). *}
128.#define BFD_IS_RELAXABLE 0x200
129.
130. {* This may be set before writing out a BFD to request using a
131. traditional format. For example, this is used to request that when
132. writing out an a.out object the symbols not be hashed to eliminate
133. duplicates. *}
134.#define BFD_TRADITIONAL_FORMAT 0x400
135.
136. {* This flag indicates that the BFD contents are actually cached
137. in memory. If this is set, iostream points to a bfd_in_memory
138. struct. *}
139.#define BFD_IN_MEMORY 0x800
140.
141. {* The sections in this BFD specify a memory page. *}
142.#define HAS_LOAD_PAGE 0x1000
143.
144. {* This BFD has been created by the linker and doesn't correspond
145. to any input file. *}
146.#define BFD_LINKER_CREATED 0x2000
147.
b5f79c76
NC
148. {* Currently my_archive is tested before adding origin to
149. anything. I believe that this can become always an add of
150. origin, with origin set to 0 for non archive files. *}
151. ufile_ptr origin;
152.
b5f79c76
NC
153. {* A hash table for section names. *}
154. struct bfd_hash_table section_htab;
155.
156. {* Pointer to linked list of sections. *}
198beae2 157. struct bfd_section *sections;
b5f79c76 158.
5daa8fe7
L
159. {* The last section on the section list. *}
160. struct bfd_section *section_last;
b5f79c76
NC
161.
162. {* The number of sections. *}
163. unsigned int section_count;
164.
165. {* Stuff only useful for object files:
166. The start address. *}
167. bfd_vma start_address;
168.
169. {* Used for input and output. *}
170. unsigned int symcount;
171.
172. {* Symbol table for output BFD (with symcount entries). *}
fc0a2244 173. struct bfd_symbol **outsymbols;
b5f79c76 174.
1f70368c
DJ
175. {* Used for slurped dynamic symbol tables. *}
176. unsigned int dynsymcount;
177.
b5f79c76
NC
178. {* Pointer to structure which contains architecture information. *}
179. const struct bfd_arch_info *arch_info;
180.
181. {* Stuff only useful for archives. *}
c58b9523 182. void *arelt_data;
2ce40c65 183. struct bfd *my_archive; {* The containing archive BFD. *}
cc481421 184. struct bfd *archive_next; {* The next BFD in the archive. *}
2ce40c65 185. struct bfd *archive_head; {* The first BFD in the archive. *}
252b5132 186.
b5f79c76 187. {* A chain of BFD structures involved in a link. *}
2ce40c65 188. struct bfd *link_next;
b5f79c76
NC
189.
190. {* A field used by _bfd_generic_link_add_archive_symbols. This will
191. be used only for archive elements. *}
192. int archive_pass;
193.
194. {* Used by the back end to hold private data. *}
195. union
196. {
252b5132
RH
197. struct aout_data_struct *aout_data;
198. struct artdata *aout_ar_data;
199. struct _oasys_data *oasys_obj_data;
200. struct _oasys_ar_data *oasys_ar_data;
201. struct coff_tdata *coff_obj_data;
202. struct pe_tdata *pe_obj_data;
203. struct xcoff_tdata *xcoff_obj_data;
204. struct ecoff_tdata *ecoff_obj_data;
205. struct ieee_data_struct *ieee_data;
206. struct ieee_ar_data_struct *ieee_ar_data;
207. struct srec_data_struct *srec_data;
208. struct ihex_data_struct *ihex_data;
209. struct tekhex_data_struct *tekhex_data;
210. struct elf_obj_tdata *elf_obj_data;
211. struct nlm_obj_tdata *nlm_obj_data;
212. struct bout_data_struct *bout_data;
3c3bdf30 213. struct mmo_data_struct *mmo_data;
252b5132
RH
214. struct sun_core_struct *sun_core_data;
215. struct sco5_core_struct *sco5_core_data;
216. struct trad_core_struct *trad_core_data;
217. struct som_data_struct *som_data;
218. struct hpux_core_struct *hpux_core_data;
219. struct hppabsd_core_struct *hppabsd_core_data;
220. struct sgi_core_struct *sgi_core_data;
221. struct lynx_core_struct *lynx_core_data;
222. struct osf_core_struct *osf_core_data;
223. struct cisco_core_struct *cisco_core_data;
224. struct versados_data_struct *versados_data;
225. struct netbsd_core_struct *netbsd_core_data;
3af9a47b
NC
226. struct mach_o_data_struct *mach_o_data;
227. struct mach_o_fat_data_struct *mach_o_fat_data;
228. struct bfd_pef_data_struct *pef_data;
229. struct bfd_pef_xlib_data_struct *pef_xlib_data;
230. struct bfd_sym_data_struct *sym_data;
c58b9523 231. void *any;
b5f79c76
NC
232. }
233. tdata;
aebad5fe 234.
b5f79c76 235. {* Used by the application to hold private data. *}
c58b9523 236. void *usrdata;
252b5132
RH
237.
238. {* Where all the allocated stuff under this BFD goes. This is a
c58b9523
AM
239. struct objalloc *, but we use void * to avoid requiring the inclusion
240. of objalloc.h. *}
241. void *memory;
6ad2759d
L
242.
243. {* Is the file descriptor being cached? That is, can it be closed as
244. needed, and re-opened when accessed later? *}
245. unsigned int cacheable : 1;
246.
247. {* Marks whether there was a default target specified when the
248. BFD was opened. This is used to select which matching algorithm
249. to use to choose the back end. *}
250. unsigned int target_defaulted : 1;
251.
252. {* ... and here: (``once'' means at least once). *}
253. unsigned int opened_once : 1;
254.
255. {* Set if we have a locally maintained mtime value, rather than
256. getting it from the file each time. *}
257. unsigned int mtime_set : 1;
258.
259. {* Flag set if symbols from this BFD should not be exported. *}
260. unsigned int no_export : 1;
261.
262. {* Remember when output has begun, to stop strange things
263. from happening. *}
264. unsigned int output_has_begun : 1;
265.
266. {* Have archive map. *}
267. unsigned int has_armap : 1;
252b5132
RH
268.};
269.
270*/
271
252b5132 272#include "sysdep.h"
252b5132 273#include <stdarg.h>
3db64b00
AM
274#include "bfd.h"
275#include "bfdver.h"
252b5132 276#include "libiberty.h"
3fad56a3 277#include "demangle.h"
3882b010 278#include "safe-ctype.h"
252b5132
RH
279#include "bfdlink.h"
280#include "libbfd.h"
281#include "coff/internal.h"
282#include "coff/sym.h"
283#include "libcoff.h"
284#include "libecoff.h"
285#undef obj_symbols
286#include "elf-bfd.h"
3168356f
AM
287
288#ifndef EXIT_FAILURE
289#define EXIT_FAILURE 1
290#endif
291
252b5132
RH
292\f
293/* provide storage for subsystem, stack and heap data which may have been
294 passed in on the command line. Ld puts this data into a bfd_link_info
295 struct which ultimately gets passed in to the bfd. When it arrives, copy
296 it to the following struct so that the data will be available in coffcode.h
297 where it is needed. The typedef's used are defined in bfd.h */
252b5132
RH
298\f
299/*
300SECTION
301 Error reporting
302
303 Most BFD functions return nonzero on success (check their
304 individual documentation for precise semantics). On an error,
305 they call <<bfd_set_error>> to set an error condition that callers
306 can check by calling <<bfd_get_error>>.
307 If that returns <<bfd_error_system_call>>, then check
308 <<errno>>.
309
310 The easiest way to report a BFD error to the user is to
311 use <<bfd_perror>>.
312
313SUBSECTION
314 Type <<bfd_error_type>>
315
316 The values returned by <<bfd_get_error>> are defined by the
317 enumerated type <<bfd_error_type>>.
318
319CODE_FRAGMENT
320.
321.typedef enum bfd_error
322.{
323. bfd_error_no_error = 0,
324. bfd_error_system_call,
325. bfd_error_invalid_target,
326. bfd_error_wrong_format,
3619ad04 327. bfd_error_wrong_object_format,
252b5132
RH
328. bfd_error_invalid_operation,
329. bfd_error_no_memory,
330. bfd_error_no_symbols,
331. bfd_error_no_armap,
332. bfd_error_no_more_archived_files,
333. bfd_error_malformed_archive,
334. bfd_error_file_not_recognized,
335. bfd_error_file_ambiguously_recognized,
336. bfd_error_no_contents,
337. bfd_error_nonrepresentable_section,
338. bfd_error_no_debug_section,
339. bfd_error_bad_value,
340. bfd_error_file_truncated,
341. bfd_error_file_too_big,
ffda70fc 342. bfd_error_on_input,
252b5132 343. bfd_error_invalid_error_code
b5f79c76
NC
344.}
345.bfd_error_type;
252b5132
RH
346.
347*/
348
349static bfd_error_type bfd_error = bfd_error_no_error;
ffda70fc
AM
350static bfd *input_bfd = NULL;
351static bfd_error_type input_error = bfd_error_no_error;
252b5132 352
55ab10f0
NC
353const char *const bfd_errmsgs[] =
354{
355 N_("No error"),
356 N_("System call error"),
357 N_("Invalid bfd target"),
358 N_("File in wrong format"),
3619ad04 359 N_("Archive object file in wrong format"),
55ab10f0
NC
360 N_("Invalid operation"),
361 N_("Memory exhausted"),
362 N_("No symbols"),
363 N_("Archive has no index; run ranlib to add one"),
364 N_("No more archived files"),
365 N_("Malformed archive"),
366 N_("File format not recognized"),
367 N_("File format is ambiguous"),
368 N_("Section has no contents"),
369 N_("Nonrepresentable section on output"),
370 N_("Symbol needs debug section which does not exist"),
371 N_("Bad value"),
372 N_("File truncated"),
373 N_("File too big"),
ffda70fc 374 N_("Error reading %s: %s"),
55ab10f0
NC
375 N_("#<Invalid error code>")
376};
252b5132
RH
377
378/*
379FUNCTION
380 bfd_get_error
381
382SYNOPSIS
383 bfd_error_type bfd_get_error (void);
384
385DESCRIPTION
386 Return the current BFD error condition.
387*/
388
389bfd_error_type
c58b9523 390bfd_get_error (void)
252b5132
RH
391{
392 return bfd_error;
393}
394
395/*
396FUNCTION
397 bfd_set_error
398
399SYNOPSIS
ffda70fc 400 void bfd_set_error (bfd_error_type error_tag, ...);
252b5132
RH
401
402DESCRIPTION
403 Set the BFD error condition to be @var{error_tag}.
ffda70fc
AM
404 If @var{error_tag} is bfd_error_on_input, then this function
405 takes two more parameters, the input bfd where the error
406 occurred, and the bfd_error_type error.
252b5132
RH
407*/
408
409void
ffda70fc 410bfd_set_error (bfd_error_type error_tag, ...)
252b5132
RH
411{
412 bfd_error = error_tag;
ffda70fc
AM
413 if (error_tag == bfd_error_on_input)
414 {
415 /* This is an error that occurred during bfd_close when
416 writing an archive, but on one of the input files. */
417 va_list ap;
418
419 va_start (ap, error_tag);
420 input_bfd = va_arg (ap, bfd *);
421 input_error = va_arg (ap, int);
422 if (input_error >= bfd_error_on_input)
423 abort ();
424 va_end (ap);
425 }
252b5132
RH
426}
427
428/*
429FUNCTION
430 bfd_errmsg
431
432SYNOPSIS
55ab10f0 433 const char *bfd_errmsg (bfd_error_type error_tag);
252b5132
RH
434
435DESCRIPTION
436 Return a string describing the error @var{error_tag}, or
437 the system error if @var{error_tag} is <<bfd_error_system_call>>.
438*/
439
55ab10f0 440const char *
c58b9523 441bfd_errmsg (bfd_error_type error_tag)
252b5132
RH
442{
443#ifndef errno
444 extern int errno;
445#endif
ffda70fc
AM
446 if (error_tag == bfd_error_on_input)
447 {
448 char *buf;
449 const char *msg = bfd_errmsg (input_error);
450
451 if (asprintf (&buf, _(bfd_errmsgs [error_tag]), input_bfd->filename, msg)
452 != -1)
453 return buf;
454
455 /* Ick, what to do on out of memory? */
456 return msg;
457 }
458
252b5132
RH
459 if (error_tag == bfd_error_system_call)
460 return xstrerror (errno);
461
c58b9523
AM
462 if (error_tag > bfd_error_invalid_error_code)
463 error_tag = bfd_error_invalid_error_code; /* sanity check */
252b5132 464
c58b9523 465 return _(bfd_errmsgs [error_tag]);
252b5132
RH
466}
467
468/*
469FUNCTION
470 bfd_perror
471
472SYNOPSIS
55ab10f0 473 void bfd_perror (const char *message);
252b5132
RH
474
475DESCRIPTION
476 Print to the standard error stream a string describing the
477 last BFD error that occurred, or the last system error if
478 the last BFD error was a system call failure. If @var{message}
479 is non-NULL and non-empty, the error string printed is preceded
480 by @var{message}, a colon, and a space. It is followed by a newline.
481*/
482
483void
c58b9523 484bfd_perror (const char *message)
252b5132 485{
ffda70fc
AM
486 if (message == NULL || *message == '\0')
487 fprintf (stderr, "%s\n", bfd_errmsg (bfd_get_error ()));
55ab10f0 488 else
ffda70fc 489 fprintf (stderr, "%s: %s\n", message, bfd_errmsg (bfd_get_error ()));
252b5132
RH
490}
491
492/*
493SUBSECTION
494 BFD error handler
495
496 Some BFD functions want to print messages describing the
497 problem. They call a BFD error handler function. This
5c4491d3 498 function may be overridden by the program.
252b5132
RH
499
500 The BFD error handler acts like printf.
501
502CODE_FRAGMENT
503.
c58b9523 504.typedef void (*bfd_error_handler_type) (const char *, ...);
252b5132
RH
505.
506*/
507
508/* The program name used when printing BFD error messages. */
509
510static const char *_bfd_error_program_name;
511
d003868e
AM
512/* This is the default routine to handle BFD error messages.
513 Like fprintf (stderr, ...), but also handles some extra format specifiers.
514
515 %A section name from section. For group components, print group name too.
516 %B file name from bfd. For archive components, prints archive too.
d07676f8
NC
517
518 Note - because these two extra format specifiers require special handling
519 they are scanned for and processed in this function, before calling
520 vfprintf. This means that the *arguments* for these format specifiers
521 must be the first ones in the variable argument list, regardless of where
522 the specifiers appear in the format string. Thus for example calling
523 this function with a format string of:
524
525 "blah %s blah %A blah %d blah %B"
526
527 would involve passing the arguments as:
528
529 "blah %s blah %A blah %d blah %B",
530 asection_for_the_%A,
531 bfd_for_the_%B,
532 string_for_the_%s,
533 integer_for_the_%d);
d003868e 534 */
252b5132 535
185d09ad 536void
d003868e 537_bfd_default_error_handler (const char *fmt, ...)
252b5132 538{
d003868e
AM
539 va_list ap;
540 char *bufp;
541 const char *new_fmt, *p;
542 size_t avail = 1000;
543 char buf[1000];
c58b9523 544
0bc43230
AM
545 /* PR 4992: Don't interrupt output being sent to stdout. */
546 fflush (stdout);
547
252b5132
RH
548 if (_bfd_error_program_name != NULL)
549 fprintf (stderr, "%s: ", _bfd_error_program_name);
550 else
551 fprintf (stderr, "BFD: ");
552
d003868e
AM
553 va_start (ap, fmt);
554 new_fmt = fmt;
555 bufp = buf;
556
557 /* Reserve enough space for the existing format string. */
558 avail -= strlen (fmt) + 1;
559 if (avail > 1000)
3168356f 560 _exit (EXIT_FAILURE);
d003868e
AM
561
562 p = fmt;
3e540f25 563 while (1)
d003868e
AM
564 {
565 char *q;
566 size_t len, extra, trim;
567
568 p = strchr (p, '%');
569 if (p == NULL || p[1] == '\0')
570 {
571 if (new_fmt == buf)
572 {
573 len = strlen (fmt);
574 memcpy (bufp, fmt, len + 1);
575 }
576 break;
577 }
578
579 if (p[1] == 'A' || p[1] == 'B')
580 {
581 len = p - fmt;
582 memcpy (bufp, fmt, len);
583 bufp += len;
584 fmt = p + 2;
585 new_fmt = buf;
586
587 /* If we run out of space, tough, you lose your ridiculously
588 long file or section name. It's not safe to try to alloc
589 memory here; We might be printing an out of memory message. */
590 if (avail == 0)
591 {
592 *bufp++ = '*';
593 *bufp++ = '*';
594 *bufp = '\0';
595 }
596 else
597 {
598 if (p[1] == 'B')
599 {
600 bfd *abfd = va_arg (ap, bfd *);
d07676f8
NC
601
602 if (abfd == NULL)
603 /* Invoking %B with a null bfd pointer is an internal error. */
604 abort ();
605 else if (abfd->my_archive)
d003868e
AM
606 snprintf (bufp, avail, "%s(%s)",
607 abfd->my_archive->filename, abfd->filename);
608 else
609 snprintf (bufp, avail, "%s", abfd->filename);
610 }
611 else
612 {
613 asection *sec = va_arg (ap, asection *);
d07676f8 614 bfd *abfd;
d003868e
AM
615 const char *group = NULL;
616 struct coff_comdat_info *ci;
617
d07676f8
NC
618 if (sec == NULL)
619 /* Invoking %A with a null section pointer is an internal error. */
620 abort ();
621 abfd = sec->owner;
d003868e
AM
622 if (abfd != NULL
623 && bfd_get_flavour (abfd) == bfd_target_elf_flavour
624 && elf_next_in_group (sec) != NULL
625 && (sec->flags & SEC_GROUP) == 0)
626 group = elf_group_name (sec);
627 else if (abfd != NULL
628 && bfd_get_flavour (abfd) == bfd_target_coff_flavour
629 && (ci = bfd_coff_get_comdat_section (sec->owner,
630 sec)) != NULL)
631 group = ci->name;
632 if (group != NULL)
633 snprintf (bufp, avail, "%s[%s]", sec->name, group);
634 else
635 snprintf (bufp, avail, "%s", sec->name);
636 }
637 len = strlen (bufp);
638 avail = avail - len + 2;
639
640 /* We need to replace any '%' we printed by "%%".
641 First count how many. */
642 q = bufp;
643 bufp += len;
644 extra = 0;
645 while ((q = strchr (q, '%')) != NULL)
646 {
647 ++q;
648 ++extra;
649 }
650
651 /* If there isn't room, trim off the end of the string. */
652 q = bufp;
653 bufp += extra;
654 if (extra > avail)
655 {
656 trim = extra - avail;
657 bufp -= trim;
658 do
659 {
660 if (*--q == '%')
661 --extra;
662 }
663 while (--trim != 0);
664 *q = '\0';
45fc9e4a 665 avail = extra;
d003868e 666 }
45fc9e4a 667 avail -= extra;
d003868e
AM
668
669 /* Now double all '%' chars, shuffling the string as we go. */
670 while (extra != 0)
671 {
672 while ((q[extra] = *q) != '%')
673 --q;
674 q[--extra] = '%';
675 --q;
676 }
677 }
678 }
679 p = p + 2;
680 }
681
682 vfprintf (stderr, new_fmt, ap);
683 va_end (ap);
252b5132 684
d003868e 685 putc ('\n', stderr);
252b5132
RH
686}
687
252b5132
RH
688/* This is a function pointer to the routine which should handle BFD
689 error messages. It is called when a BFD routine encounters an
690 error for which it wants to print a message. Going through a
691 function pointer permits a program linked against BFD to intercept
692 the messages and deal with them itself. */
693
694bfd_error_handler_type _bfd_error_handler = _bfd_default_error_handler;
695
696/*
697FUNCTION
698 bfd_set_error_handler
699
700SYNOPSIS
701 bfd_error_handler_type bfd_set_error_handler (bfd_error_handler_type);
702
703DESCRIPTION
704 Set the BFD error handler function. Returns the previous
705 function.
706*/
707
708bfd_error_handler_type
c58b9523 709bfd_set_error_handler (bfd_error_handler_type pnew)
252b5132
RH
710{
711 bfd_error_handler_type pold;
712
713 pold = _bfd_error_handler;
714 _bfd_error_handler = pnew;
715 return pold;
716}
717
718/*
719FUNCTION
720 bfd_set_error_program_name
721
722SYNOPSIS
723 void bfd_set_error_program_name (const char *);
724
725DESCRIPTION
726 Set the program name to use when printing a BFD error. This
727 is printed before the error message followed by a colon and
728 space. The string must not be changed after it is passed to
729 this function.
730*/
731
732void
c58b9523 733bfd_set_error_program_name (const char *name)
252b5132
RH
734{
735 _bfd_error_program_name = name;
736}
737
252b5132
RH
738/*
739FUNCTION
740 bfd_get_error_handler
741
742SYNOPSIS
743 bfd_error_handler_type bfd_get_error_handler (void);
744
745DESCRIPTION
746 Return the BFD error handler function.
747*/
748
749bfd_error_handler_type
c58b9523 750bfd_get_error_handler (void)
252b5132
RH
751{
752 return _bfd_error_handler;
753}
754\f
755/*
756SECTION
1b74d094
BW
757 Miscellaneous
758
759SUBSECTION
760 Miscellaneous functions
252b5132
RH
761*/
762
763/*
764FUNCTION
765 bfd_get_reloc_upper_bound
766
767SYNOPSIS
ed781d5d 768 long bfd_get_reloc_upper_bound (bfd *abfd, asection *sect);
252b5132
RH
769
770DESCRIPTION
771 Return the number of bytes required to store the
772 relocation information associated with section @var{sect}
773 attached to bfd @var{abfd}. If an error occurs, return -1.
774
775*/
776
252b5132 777long
c58b9523 778bfd_get_reloc_upper_bound (bfd *abfd, sec_ptr asect)
252b5132 779{
55ab10f0
NC
780 if (abfd->format != bfd_object)
781 {
782 bfd_set_error (bfd_error_invalid_operation);
783 return -1;
784 }
252b5132
RH
785
786 return BFD_SEND (abfd, _get_reloc_upper_bound, (abfd, asect));
787}
788
789/*
790FUNCTION
791 bfd_canonicalize_reloc
792
793SYNOPSIS
794 long bfd_canonicalize_reloc
c58b9523 795 (bfd *abfd, asection *sec, arelent **loc, asymbol **syms);
252b5132
RH
796
797DESCRIPTION
798 Call the back end associated with the open BFD
799 @var{abfd} and translate the external form of the relocation
800 information attached to @var{sec} into the internal canonical
801 form. Place the table into memory at @var{loc}, which has
802 been preallocated, usually by a call to
803 <<bfd_get_reloc_upper_bound>>. Returns the number of relocs, or
804 -1 on error.
805
806 The @var{syms} table is also needed for horrible internal magic
807 reasons.
808
252b5132
RH
809*/
810long
c58b9523
AM
811bfd_canonicalize_reloc (bfd *abfd,
812 sec_ptr asect,
813 arelent **location,
814 asymbol **symbols)
252b5132 815{
55ab10f0
NC
816 if (abfd->format != bfd_object)
817 {
818 bfd_set_error (bfd_error_invalid_operation);
819 return -1;
820 }
821
252b5132
RH
822 return BFD_SEND (abfd, _bfd_canonicalize_reloc,
823 (abfd, asect, location, symbols));
824}
825
826/*
827FUNCTION
828 bfd_set_reloc
829
830SYNOPSIS
831 void bfd_set_reloc
b5f79c76 832 (bfd *abfd, asection *sec, arelent **rel, unsigned int count);
252b5132
RH
833
834DESCRIPTION
835 Set the relocation pointer and count within
836 section @var{sec} to the values @var{rel} and @var{count}.
837 The argument @var{abfd} is ignored.
838
839*/
aebad5fe 840
252b5132 841void
c58b9523
AM
842bfd_set_reloc (bfd *ignore_abfd ATTRIBUTE_UNUSED,
843 sec_ptr asect,
844 arelent **location,
845 unsigned int count)
252b5132
RH
846{
847 asect->orelocation = location;
848 asect->reloc_count = count;
849}
850
851/*
852FUNCTION
853 bfd_set_file_flags
854
855SYNOPSIS
ed781d5d 856 bfd_boolean bfd_set_file_flags (bfd *abfd, flagword flags);
252b5132
RH
857
858DESCRIPTION
859 Set the flag word in the BFD @var{abfd} to the value @var{flags}.
860
861 Possible errors are:
862 o <<bfd_error_wrong_format>> - The target bfd was not of object format.
863 o <<bfd_error_invalid_operation>> - The target bfd was open for reading.
864 o <<bfd_error_invalid_operation>> -
865 The flag word contained a bit which was not applicable to the
866 type of file. E.g., an attempt was made to set the <<D_PAGED>> bit
867 on a BFD format which does not support demand paging.
868
869*/
870
b34976b6 871bfd_boolean
c58b9523 872bfd_set_file_flags (bfd *abfd, flagword flags)
252b5132 873{
55ab10f0
NC
874 if (abfd->format != bfd_object)
875 {
876 bfd_set_error (bfd_error_wrong_format);
b34976b6 877 return FALSE;
55ab10f0 878 }
252b5132 879
55ab10f0
NC
880 if (bfd_read_p (abfd))
881 {
882 bfd_set_error (bfd_error_invalid_operation);
b34976b6 883 return FALSE;
55ab10f0 884 }
252b5132
RH
885
886 bfd_get_file_flags (abfd) = flags;
55ab10f0
NC
887 if ((flags & bfd_applicable_file_flags (abfd)) != flags)
888 {
889 bfd_set_error (bfd_error_invalid_operation);
b34976b6 890 return FALSE;
55ab10f0 891 }
252b5132 892
b34976b6 893 return TRUE;
252b5132
RH
894}
895
896void
c58b9523 897bfd_assert (const char *file, int line)
252b5132 898{
aec2f561
AM
899 (*_bfd_error_handler) (_("BFD %s assertion fail %s:%d"),
900 BFD_VERSION_STRING, file, line);
252b5132
RH
901}
902
c0bed66d
ILT
903/* A more or less friendly abort message. In libbfd.h abort is
904 defined to call this function. */
905
c0bed66d 906void
c58b9523 907_bfd_abort (const char *file, int line, const char *fn)
c0bed66d
ILT
908{
909 if (fn != NULL)
910 (*_bfd_error_handler)
aec2f561
AM
911 (_("BFD %s internal error, aborting at %s line %d in %s\n"),
912 BFD_VERSION_STRING, file, line, fn);
c0bed66d
ILT
913 else
914 (*_bfd_error_handler)
391154e9 915 (_("BFD %s internal error, aborting at %s line %d\n"),
aec2f561 916 BFD_VERSION_STRING, file, line);
c0bed66d 917 (*_bfd_error_handler) (_("Please report this bug.\n"));
3168356f 918 _exit (EXIT_FAILURE);
c0bed66d 919}
252b5132 920
125c4a69
NC
921/*
922FUNCTION
923 bfd_get_arch_size
924
925SYNOPSIS
926 int bfd_get_arch_size (bfd *abfd);
927
928DESCRIPTION
929 Returns the architecture address size, in bits, as determined
930 by the object file's format. For ELF, this information is
931 included in the header.
932
933RETURNS
934 Returns the arch size in bits if known, <<-1>> otherwise.
935*/
936
937int
c58b9523 938bfd_get_arch_size (bfd *abfd)
125c4a69
NC
939{
940 if (abfd->xvec->flavour == bfd_target_elf_flavour)
c58b9523 941 return get_elf_backend_data (abfd)->s->arch_size;
125c4a69 942
125c4a69
NC
943 return -1;
944}
945
946/*
947FUNCTION
948 bfd_get_sign_extend_vma
949
950SYNOPSIS
951 int bfd_get_sign_extend_vma (bfd *abfd);
952
953DESCRIPTION
954 Indicates if the target architecture "naturally" sign extends
955 an address. Some architectures implicitly sign extend address
956 values when they are converted to types larger than the size
957 of an address. For instance, bfd_get_start_address() will
958 return an address sign extended to fill a bfd_vma when this is
959 the case.
960
961RETURNS
962 Returns <<1>> if the target architecture is known to sign
963 extend addresses, <<0>> if the target architecture is known to
964 not sign extend addresses, and <<-1>> otherwise.
965*/
966
967int
c58b9523 968bfd_get_sign_extend_vma (bfd *abfd)
125c4a69 969{
f47e5071
NC
970 char *name;
971
125c4a69 972 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour)
c58b9523 973 return get_elf_backend_data (abfd)->sign_extend_vma;
125c4a69 974
f47e5071
NC
975 name = bfd_get_target (abfd);
976
7148cc28 977 /* Return a proper value for DJGPP & PE COFF.
f47e5071
NC
978 This function is required for DWARF2 support, but there is
979 no place to store this information in the COFF back end.
980 Should enough other COFF targets add support for DWARF2,
981 a place will have to be found. Until then, this hack will do. */
0112cd26 982 if (CONST_STRNEQ (name, "coff-go32")
8a7140c3 983 || strcmp (name, "pe-i386") == 0
f0927246 984 || strcmp (name, "pei-i386") == 0
6e3d6dc1
NC
985 || strcmp (name, "pe-x86-64") == 0
986 || strcmp (name, "pei-x86-64") == 0
7148cc28
NC
987 || strcmp (name, "pe-arm-wince-little") == 0
988 || strcmp (name, "pei-arm-wince-little") == 0)
f47e5071
NC
989 return 1;
990
a022216b 991 bfd_set_error (bfd_error_wrong_format);
125c4a69
NC
992 return -1;
993}
994
252b5132
RH
995/*
996FUNCTION
997 bfd_set_start_address
998
999SYNOPSIS
ed781d5d 1000 bfd_boolean bfd_set_start_address (bfd *abfd, bfd_vma vma);
252b5132
RH
1001
1002DESCRIPTION
1003 Make @var{vma} the entry point of output BFD @var{abfd}.
1004
1005RETURNS
b34976b6 1006 Returns <<TRUE>> on success, <<FALSE>> otherwise.
252b5132
RH
1007*/
1008
b34976b6 1009bfd_boolean
c58b9523 1010bfd_set_start_address (bfd *abfd, bfd_vma vma)
252b5132
RH
1011{
1012 abfd->start_address = vma;
b34976b6 1013 return TRUE;
252b5132
RH
1014}
1015
252b5132
RH
1016/*
1017FUNCTION
1018 bfd_get_gp_size
1019
1020SYNOPSIS
ed781d5d 1021 unsigned int bfd_get_gp_size (bfd *abfd);
252b5132
RH
1022
1023DESCRIPTION
1024 Return the maximum size of objects to be optimized using the GP
1025 register under MIPS ECOFF. This is typically set by the <<-G>>
1026 argument to the compiler, assembler or linker.
1027*/
1028
c0846b23 1029unsigned int
c58b9523 1030bfd_get_gp_size (bfd *abfd)
252b5132
RH
1031{
1032 if (abfd->format == bfd_object)
1033 {
1034 if (abfd->xvec->flavour == bfd_target_ecoff_flavour)
1035 return ecoff_data (abfd)->gp_size;
1036 else if (abfd->xvec->flavour == bfd_target_elf_flavour)
1037 return elf_gp_size (abfd);
1038 }
1039 return 0;
1040}
1041
1042/*
1043FUNCTION
1044 bfd_set_gp_size
1045
1046SYNOPSIS
ed781d5d 1047 void bfd_set_gp_size (bfd *abfd, unsigned int i);
252b5132
RH
1048
1049DESCRIPTION
1050 Set the maximum size of objects to be optimized using the GP
1051 register under ECOFF or MIPS ELF. This is typically set by
1052 the <<-G>> argument to the compiler, assembler or linker.
1053*/
1054
1055void
c58b9523 1056bfd_set_gp_size (bfd *abfd, unsigned int i)
252b5132 1057{
55ab10f0 1058 /* Don't try to set GP size on an archive or core file! */
252b5132
RH
1059 if (abfd->format != bfd_object)
1060 return;
55ab10f0 1061
252b5132
RH
1062 if (abfd->xvec->flavour == bfd_target_ecoff_flavour)
1063 ecoff_data (abfd)->gp_size = i;
1064 else if (abfd->xvec->flavour == bfd_target_elf_flavour)
1065 elf_gp_size (abfd) = i;
1066}
1067
1068/* Get the GP value. This is an internal function used by some of the
1069 relocation special_function routines on targets which support a GP
1070 register. */
1071
1072bfd_vma
c58b9523 1073_bfd_get_gp_value (bfd *abfd)
252b5132 1074{
9bcf4de0
TS
1075 if (! abfd)
1076 return 0;
55ab10f0
NC
1077 if (abfd->format != bfd_object)
1078 return 0;
1079
1080 if (abfd->xvec->flavour == bfd_target_ecoff_flavour)
1081 return ecoff_data (abfd)->gp;
1082 else if (abfd->xvec->flavour == bfd_target_elf_flavour)
1083 return elf_gp (abfd);
1084
252b5132
RH
1085 return 0;
1086}
1087
1088/* Set the GP value. */
1089
1090void
c58b9523 1091_bfd_set_gp_value (bfd *abfd, bfd_vma v)
252b5132 1092{
9bcf4de0 1093 if (! abfd)
c2c96631 1094 abort ();
252b5132
RH
1095 if (abfd->format != bfd_object)
1096 return;
55ab10f0 1097
252b5132
RH
1098 if (abfd->xvec->flavour == bfd_target_ecoff_flavour)
1099 ecoff_data (abfd)->gp = v;
1100 else if (abfd->xvec->flavour == bfd_target_elf_flavour)
1101 elf_gp (abfd) = v;
1102}
1103
1104/*
1105FUNCTION
1106 bfd_scan_vma
1107
1108SYNOPSIS
ed781d5d 1109 bfd_vma bfd_scan_vma (const char *string, const char **end, int base);
252b5132
RH
1110
1111DESCRIPTION
1112 Convert, like <<strtoul>>, a numerical expression
1113 @var{string} into a <<bfd_vma>> integer, and return that integer.
1114 (Though without as many bells and whistles as <<strtoul>>.)
1115 The expression is assumed to be unsigned (i.e., positive).
1116 If given a @var{base}, it is used as the base for conversion.
1117 A base of 0 causes the function to interpret the string
1118 in hex if a leading "0x" or "0X" is found, otherwise
1119 in octal if a leading zero is found, otherwise in decimal.
1120
88eaccc2
AM
1121 If the value would overflow, the maximum <<bfd_vma>> value is
1122 returned.
252b5132
RH
1123*/
1124
1125bfd_vma
c58b9523 1126bfd_scan_vma (const char *string, const char **end, int base)
252b5132
RH
1127{
1128 bfd_vma value;
88eaccc2
AM
1129 bfd_vma cutoff;
1130 unsigned int cutlim;
1131 int overflow;
252b5132
RH
1132
1133 /* Let the host do it if possible. */
eb6e10cb 1134 if (sizeof (bfd_vma) <= sizeof (unsigned long))
c58b9523 1135 return strtoul (string, (char **) end, base);
252b5132 1136
49c97a80
ILT
1137#ifdef HAVE_STRTOULL
1138 if (sizeof (bfd_vma) <= sizeof (unsigned long long))
1139 return strtoull (string, (char **) end, base);
1140#endif
1141
252b5132
RH
1142 if (base == 0)
1143 {
1144 if (string[0] == '0')
1145 {
1146 if ((string[1] == 'x') || (string[1] == 'X'))
1147 base = 16;
252b5132
RH
1148 else
1149 base = 8;
1150 }
252b5132 1151 }
55ab10f0 1152
88eaccc2
AM
1153 if ((base < 2) || (base > 36))
1154 base = 10;
1155
1156 if (base == 16
1157 && string[0] == '0'
1158 && (string[1] == 'x' || string[1] == 'X')
1159 && ISXDIGIT (string[2]))
1160 {
1161 string += 2;
1162 }
aebad5fe 1163
88eaccc2
AM
1164 cutoff = (~ (bfd_vma) 0) / (bfd_vma) base;
1165 cutlim = (~ (bfd_vma) 0) % (bfd_vma) base;
1166 value = 0;
1167 overflow = 0;
1168 while (1)
1169 {
1170 unsigned int digit;
1171
1172 digit = *string;
1173 if (ISDIGIT (digit))
1174 digit = digit - '0';
1175 else if (ISALPHA (digit))
1176 digit = TOUPPER (digit) - 'A' + 10;
1177 else
1178 break;
1179 if (digit >= (unsigned int) base)
1180 break;
1181 if (value > cutoff || (value == cutoff && digit > cutlim))
1182 overflow = 1;
1183 value = value * base + digit;
1184 ++string;
1185 }
252b5132 1186
88eaccc2
AM
1187 if (overflow)
1188 value = ~ (bfd_vma) 0;
252b5132 1189
88eaccc2
AM
1190 if (end != NULL)
1191 *end = string;
252b5132
RH
1192
1193 return value;
1194}
1195
80fccad2
BW
1196/*
1197FUNCTION
1198 bfd_copy_private_header_data
1199
1200SYNOPSIS
1201 bfd_boolean bfd_copy_private_header_data (bfd *ibfd, bfd *obfd);
1202
1203DESCRIPTION
1204 Copy private BFD header information from the BFD @var{ibfd} to the
1205 the BFD @var{obfd}. This copies information that may require
1206 sections to exist, but does not require symbol tables. Return
1207 <<true>> on success, <<false>> on error.
1208 Possible error returns are:
1209
1210 o <<bfd_error_no_memory>> -
1211 Not enough memory exists to create private data for @var{obfd}.
1212
1213.#define bfd_copy_private_header_data(ibfd, obfd) \
1214. BFD_SEND (obfd, _bfd_copy_private_header_data, \
1215. (ibfd, obfd))
1216
1217*/
1218
252b5132
RH
1219/*
1220FUNCTION
1221 bfd_copy_private_bfd_data
1222
1223SYNOPSIS
ed781d5d 1224 bfd_boolean bfd_copy_private_bfd_data (bfd *ibfd, bfd *obfd);
252b5132
RH
1225
1226DESCRIPTION
aebad5fe 1227 Copy private BFD information from the BFD @var{ibfd} to the
b34976b6 1228 the BFD @var{obfd}. Return <<TRUE>> on success, <<FALSE>> on error.
252b5132
RH
1229 Possible error returns are:
1230
1231 o <<bfd_error_no_memory>> -
1232 Not enough memory exists to create private data for @var{obfd}.
1233
1234.#define bfd_copy_private_bfd_data(ibfd, obfd) \
1235. BFD_SEND (obfd, _bfd_copy_private_bfd_data, \
1236. (ibfd, obfd))
1237
1238*/
1239
1240/*
1241FUNCTION
1242 bfd_merge_private_bfd_data
1243
1244SYNOPSIS
ed781d5d 1245 bfd_boolean bfd_merge_private_bfd_data (bfd *ibfd, bfd *obfd);
252b5132
RH
1246
1247DESCRIPTION
aebad5fe 1248 Merge private BFD information from the BFD @var{ibfd} to the
b34976b6
AM
1249 the output file BFD @var{obfd} when linking. Return <<TRUE>>
1250 on success, <<FALSE>> on error. Possible error returns are:
252b5132
RH
1251
1252 o <<bfd_error_no_memory>> -
1253 Not enough memory exists to create private data for @var{obfd}.
1254
1255.#define bfd_merge_private_bfd_data(ibfd, obfd) \
1256. BFD_SEND (obfd, _bfd_merge_private_bfd_data, \
1257. (ibfd, obfd))
1258
1259*/
1260
1261/*
1262FUNCTION
1263 bfd_set_private_flags
1264
1265SYNOPSIS
ed781d5d 1266 bfd_boolean bfd_set_private_flags (bfd *abfd, flagword flags);
252b5132
RH
1267
1268DESCRIPTION
1269 Set private BFD flag information in the BFD @var{abfd}.
b34976b6 1270 Return <<TRUE>> on success, <<FALSE>> on error. Possible error
252b5132
RH
1271 returns are:
1272
1273 o <<bfd_error_no_memory>> -
1274 Not enough memory exists to create private data for @var{obfd}.
1275
1276.#define bfd_set_private_flags(abfd, flags) \
ed781d5d 1277. BFD_SEND (abfd, _bfd_set_private_flags, (abfd, flags))
252b5132
RH
1278
1279*/
1280
1281/*
1282FUNCTION
ed781d5d 1283 Other functions
252b5132
RH
1284
1285DESCRIPTION
ed781d5d 1286 The following functions exist but have not yet been documented.
252b5132 1287
a6b96beb
AM
1288.#define bfd_sizeof_headers(abfd, info) \
1289. BFD_SEND (abfd, _bfd_sizeof_headers, (abfd, info))
252b5132
RH
1290.
1291.#define bfd_find_nearest_line(abfd, sec, syms, off, file, func, line) \
ed781d5d
NC
1292. BFD_SEND (abfd, _bfd_find_nearest_line, \
1293. (abfd, sec, syms, off, file, func, line))
252b5132 1294.
5420f73d
L
1295.#define bfd_find_line(abfd, syms, sym, file, line) \
1296. BFD_SEND (abfd, _bfd_find_line, \
1297. (abfd, syms, sym, file, line))
1298.
4ab527b0
FF
1299.#define bfd_find_inliner_info(abfd, file, func, line) \
1300. BFD_SEND (abfd, _bfd_find_inliner_info, \
1301. (abfd, file, func, line))
1302.
252b5132 1303.#define bfd_debug_info_start(abfd) \
ed781d5d 1304. BFD_SEND (abfd, _bfd_debug_info_start, (abfd))
252b5132
RH
1305.
1306.#define bfd_debug_info_end(abfd) \
ed781d5d 1307. BFD_SEND (abfd, _bfd_debug_info_end, (abfd))
252b5132
RH
1308.
1309.#define bfd_debug_info_accumulate(abfd, section) \
ed781d5d 1310. BFD_SEND (abfd, _bfd_debug_info_accumulate, (abfd, section))
252b5132
RH
1311.
1312.#define bfd_stat_arch_elt(abfd, stat) \
ed781d5d 1313. BFD_SEND (abfd, _bfd_stat_arch_elt,(abfd, stat))
252b5132
RH
1314.
1315.#define bfd_update_armap_timestamp(abfd) \
ed781d5d 1316. BFD_SEND (abfd, _bfd_update_armap_timestamp, (abfd))
252b5132
RH
1317.
1318.#define bfd_set_arch_mach(abfd, arch, mach)\
ed781d5d 1319. BFD_SEND ( abfd, _bfd_set_arch_mach, (abfd, arch, mach))
252b5132
RH
1320.
1321.#define bfd_relax_section(abfd, section, link_info, again) \
1322. BFD_SEND (abfd, _bfd_relax_section, (abfd, section, link_info, again))
1323.
1324.#define bfd_gc_sections(abfd, link_info) \
1325. BFD_SEND (abfd, _bfd_gc_sections, (abfd, link_info))
8550eb6e
JJ
1326.
1327.#define bfd_merge_sections(abfd, link_info) \
1328. BFD_SEND (abfd, _bfd_merge_sections, (abfd, link_info))
252b5132 1329.
72adc230
AM
1330.#define bfd_is_group_section(abfd, sec) \
1331. BFD_SEND (abfd, _bfd_is_group_section, (abfd, sec))
1332.
e61463e1
AM
1333.#define bfd_discard_group(abfd, sec) \
1334. BFD_SEND (abfd, _bfd_discard_group, (abfd, sec))
1335.
252b5132
RH
1336.#define bfd_link_hash_table_create(abfd) \
1337. BFD_SEND (abfd, _bfd_link_hash_table_create, (abfd))
1338.
e2d34d7d
DJ
1339.#define bfd_link_hash_table_free(abfd, hash) \
1340. BFD_SEND (abfd, _bfd_link_hash_table_free, (hash))
1341.
252b5132
RH
1342.#define bfd_link_add_symbols(abfd, info) \
1343. BFD_SEND (abfd, _bfd_link_add_symbols, (abfd, info))
1344.
1449d79b 1345.#define bfd_link_just_syms(abfd, sec, info) \
2d653fc7
AM
1346. BFD_SEND (abfd, _bfd_link_just_syms, (sec, info))
1347.
252b5132
RH
1348.#define bfd_final_link(abfd, info) \
1349. BFD_SEND (abfd, _bfd_final_link, (abfd, info))
1350.
1351.#define bfd_free_cached_info(abfd) \
1352. BFD_SEND (abfd, _bfd_free_cached_info, (abfd))
1353.
1354.#define bfd_get_dynamic_symtab_upper_bound(abfd) \
1355. BFD_SEND (abfd, _bfd_get_dynamic_symtab_upper_bound, (abfd))
1356.
1357.#define bfd_print_private_bfd_data(abfd, file)\
1358. BFD_SEND (abfd, _bfd_print_private_bfd_data, (abfd, file))
1359.
1360.#define bfd_canonicalize_dynamic_symtab(abfd, asymbols) \
1361. BFD_SEND (abfd, _bfd_canonicalize_dynamic_symtab, (abfd, asymbols))
1362.
c9727e01
AM
1363.#define bfd_get_synthetic_symtab(abfd, count, syms, dyncount, dynsyms, ret) \
1364. BFD_SEND (abfd, _bfd_get_synthetic_symtab, (abfd, count, syms, \
1365. dyncount, dynsyms, ret))
4c45e5c9 1366.
252b5132
RH
1367.#define bfd_get_dynamic_reloc_upper_bound(abfd) \
1368. BFD_SEND (abfd, _bfd_get_dynamic_reloc_upper_bound, (abfd))
1369.
1370.#define bfd_canonicalize_dynamic_reloc(abfd, arels, asyms) \
1371. BFD_SEND (abfd, _bfd_canonicalize_dynamic_reloc, (abfd, arels, asyms))
1372.
1373.extern bfd_byte *bfd_get_relocated_section_contents
c58b9523
AM
1374. (bfd *, struct bfd_link_info *, struct bfd_link_order *, bfd_byte *,
1375. bfd_boolean, asymbol **);
252b5132
RH
1376.
1377
1378*/
1379
1380bfd_byte *
c58b9523
AM
1381bfd_get_relocated_section_contents (bfd *abfd,
1382 struct bfd_link_info *link_info,
1383 struct bfd_link_order *link_order,
1384 bfd_byte *data,
1385 bfd_boolean relocatable,
1386 asymbol **symbols)
252b5132
RH
1387{
1388 bfd *abfd2;
c58b9523
AM
1389 bfd_byte *(*fn) (bfd *, struct bfd_link_info *, struct bfd_link_order *,
1390 bfd_byte *, bfd_boolean, asymbol **);
252b5132
RH
1391
1392 if (link_order->type == bfd_indirect_link_order)
1393 {
1394 abfd2 = link_order->u.indirect.section->owner;
55ab10f0 1395 if (abfd2 == NULL)
252b5132
RH
1396 abfd2 = abfd;
1397 }
1398 else
1399 abfd2 = abfd;
55ab10f0 1400
252b5132
RH
1401 fn = abfd2->xvec->_bfd_get_relocated_section_contents;
1402
1049f94e 1403 return (*fn) (abfd, link_info, link_order, data, relocatable, symbols);
252b5132
RH
1404}
1405
1406/* Record information about an ELF program header. */
1407
b34976b6 1408bfd_boolean
c58b9523
AM
1409bfd_record_phdr (bfd *abfd,
1410 unsigned long type,
1411 bfd_boolean flags_valid,
1412 flagword flags,
1413 bfd_boolean at_valid,
1414 bfd_vma at,
1415 bfd_boolean includes_filehdr,
1416 bfd_boolean includes_phdrs,
1417 unsigned int count,
1418 asection **secs)
252b5132
RH
1419{
1420 struct elf_segment_map *m, **pm;
dc810e39 1421 bfd_size_type amt;
252b5132
RH
1422
1423 if (bfd_get_flavour (abfd) != bfd_target_elf_flavour)
b34976b6 1424 return TRUE;
252b5132 1425
dc810e39
AM
1426 amt = sizeof (struct elf_segment_map);
1427 amt += ((bfd_size_type) count - 1) * sizeof (asection *);
fb70130a 1428 m = bfd_zalloc (abfd, amt);
252b5132 1429 if (m == NULL)
b34976b6 1430 return FALSE;
252b5132 1431
252b5132
RH
1432 m->p_type = type;
1433 m->p_flags = flags;
1434 m->p_paddr = at;
c58b9523
AM
1435 m->p_flags_valid = flags_valid;
1436 m->p_paddr_valid = at_valid;
1437 m->includes_filehdr = includes_filehdr;
1438 m->includes_phdrs = includes_phdrs;
252b5132
RH
1439 m->count = count;
1440 if (count > 0)
1441 memcpy (m->sections, secs, count * sizeof (asection *));
1442
1443 for (pm = &elf_tdata (abfd)->segment_map; *pm != NULL; pm = &(*pm)->next)
1444 ;
1445 *pm = m;
1446
b34976b6 1447 return TRUE;
252b5132 1448}
ae4221d7 1449
01a3c213
AM
1450#ifdef BFD64
1451/* Return true iff this target is 32-bit. */
1452
1453static bfd_boolean
1454is32bit (bfd *abfd)
ae4221d7
L
1455{
1456 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour)
01a3c213
AM
1457 {
1458 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
1459 return bed->s->elfclass == ELFCLASS32;
1460 }
1461
1462 /* For non-ELF, make a guess based on the target name. */
1463 return (strstr (bfd_get_target (abfd), "64") == NULL
1464 && strcmp (bfd_get_target (abfd), "mmo") != 0);
ae4221d7 1465}
01a3c213
AM
1466#endif
1467
1468/* bfd_sprintf_vma and bfd_fprintf_vma display an address in the
1469 target's address size. */
ae4221d7
L
1470
1471void
01a3c213 1472bfd_sprintf_vma (bfd *abfd ATTRIBUTE_UNUSED, char *buf, bfd_vma value)
ae4221d7 1473{
970ccc77 1474#ifdef BFD64
01a3c213
AM
1475 if (is32bit (abfd))
1476 {
1477 sprintf (buf, "%08lx", (unsigned long) value & 0xffffffff);
1478 return;
1479 }
970ccc77 1480#endif
01a3c213
AM
1481 sprintf_vma (buf, value);
1482}
1483
1484void
1485bfd_fprintf_vma (bfd *abfd ATTRIBUTE_UNUSED, void *stream, bfd_vma value)
1486{
1487#ifdef BFD64
1488 if (is32bit (abfd))
1489 {
1490 fprintf ((FILE *) stream, "%08lx", (unsigned long) value & 0xffffffff);
1491 return;
1492 }
1493#endif
1494 fprintf_vma ((FILE *) stream, value);
ae4221d7 1495}
8c98ec7d
AO
1496
1497/*
1498FUNCTION
1499 bfd_alt_mach_code
1500
1501SYNOPSIS
ed781d5d 1502 bfd_boolean bfd_alt_mach_code (bfd *abfd, int alternative);
8c98ec7d
AO
1503
1504DESCRIPTION
1505
1506 When more than one machine code number is available for the
1507 same machine type, this function can be used to switch between
47badb7b 1508 the preferred one (alternative == 0) and any others. Currently,
8c98ec7d
AO
1509 only ELF supports this feature, with up to two alternate
1510 machine codes.
1511*/
1512
b34976b6 1513bfd_boolean
c58b9523 1514bfd_alt_mach_code (bfd *abfd, int alternative)
8c98ec7d
AO
1515{
1516 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour)
1517 {
1518 int code;
1519
47badb7b 1520 switch (alternative)
8c98ec7d
AO
1521 {
1522 case 0:
1523 code = get_elf_backend_data (abfd)->elf_machine_code;
1524 break;
1525
1526 case 1:
1527 code = get_elf_backend_data (abfd)->elf_machine_alt1;
1528 if (code == 0)
b34976b6 1529 return FALSE;
8c98ec7d
AO
1530 break;
1531
1532 case 2:
1533 code = get_elf_backend_data (abfd)->elf_machine_alt2;
1534 if (code == 0)
b34976b6 1535 return FALSE;
8c98ec7d
AO
1536 break;
1537
1538 default:
b34976b6 1539 return FALSE;
8c98ec7d
AO
1540 }
1541
1542 elf_elfheader (abfd)->e_machine = code;
1543
b34976b6 1544 return TRUE;
8c98ec7d
AO
1545 }
1546
b34976b6 1547 return FALSE;
8c98ec7d 1548}
e84d6fca
AM
1549
1550/*
1551CODE_FRAGMENT
1552
1553.struct bfd_preserve
1554.{
c58b9523
AM
1555. void *marker;
1556. void *tdata;
e84d6fca
AM
1557. flagword flags;
1558. const struct bfd_arch_info *arch_info;
198beae2 1559. struct bfd_section *sections;
5daa8fe7 1560. struct bfd_section *section_last;
e84d6fca
AM
1561. unsigned int section_count;
1562. struct bfd_hash_table section_htab;
1563.};
1564.
1565*/
1566
1567/*
1568FUNCTION
1569 bfd_preserve_save
1570
1571SYNOPSIS
b34976b6 1572 bfd_boolean bfd_preserve_save (bfd *, struct bfd_preserve *);
e84d6fca
AM
1573
1574DESCRIPTION
1575 When testing an object for compatibility with a particular
1576 target back-end, the back-end object_p function needs to set
1577 up certain fields in the bfd on successfully recognizing the
1578 object. This typically happens in a piecemeal fashion, with
1579 failures possible at many points. On failure, the bfd is
1580 supposed to be restored to its initial state, which is
1581 virtually impossible. However, restoring a subset of the bfd
1582 state works in practice. This function stores the subset and
1583 reinitializes the bfd.
1584
1585*/
1586
b34976b6 1587bfd_boolean
c58b9523 1588bfd_preserve_save (bfd *abfd, struct bfd_preserve *preserve)
e84d6fca
AM
1589{
1590 preserve->tdata = abfd->tdata.any;
1591 preserve->arch_info = abfd->arch_info;
1592 preserve->flags = abfd->flags;
e84d6fca 1593 preserve->sections = abfd->sections;
5daa8fe7 1594 preserve->section_last = abfd->section_last;
e84d6fca
AM
1595 preserve->section_count = abfd->section_count;
1596 preserve->section_htab = abfd->section_htab;
1597
66eb6687
AM
1598 if (! bfd_hash_table_init (&abfd->section_htab, bfd_section_hash_newfunc,
1599 sizeof (struct section_hash_entry)))
b34976b6 1600 return FALSE;
e84d6fca
AM
1601
1602 abfd->tdata.any = NULL;
1603 abfd->arch_info = &bfd_default_arch_struct;
3ae41454 1604 abfd->flags &= BFD_IN_MEMORY;
e84d6fca 1605 abfd->sections = NULL;
5daa8fe7 1606 abfd->section_last = NULL;
e84d6fca
AM
1607 abfd->section_count = 0;
1608
b34976b6 1609 return TRUE;
e84d6fca
AM
1610}
1611
1612/*
1613FUNCTION
1614 bfd_preserve_restore
1615
1616SYNOPSIS
1617 void bfd_preserve_restore (bfd *, struct bfd_preserve *);
1618
1619DESCRIPTION
1620 This function restores bfd state saved by bfd_preserve_save.
1621 If MARKER is non-NULL in struct bfd_preserve then that block
1622 and all subsequently bfd_alloc'd memory is freed.
1623
1624*/
1625
1626void
c58b9523 1627bfd_preserve_restore (bfd *abfd, struct bfd_preserve *preserve)
e84d6fca
AM
1628{
1629 bfd_hash_table_free (&abfd->section_htab);
1630
1631 abfd->tdata.any = preserve->tdata;
1632 abfd->arch_info = preserve->arch_info;
1633 abfd->flags = preserve->flags;
e84d6fca
AM
1634 abfd->section_htab = preserve->section_htab;
1635 abfd->sections = preserve->sections;
5daa8fe7 1636 abfd->section_last = preserve->section_last;
e84d6fca
AM
1637 abfd->section_count = preserve->section_count;
1638
1639 /* bfd_release frees all memory more recently bfd_alloc'd than
1640 its arg, as well as its arg. */
1641 if (preserve->marker != NULL)
1642 {
1643 bfd_release (abfd, preserve->marker);
1644 preserve->marker = NULL;
1645 }
1646}
1647
1648/*
1649FUNCTION
1650 bfd_preserve_finish
1651
1652SYNOPSIS
1653 void bfd_preserve_finish (bfd *, struct bfd_preserve *);
1654
1655DESCRIPTION
1656 This function should be called when the bfd state saved by
1657 bfd_preserve_save is no longer needed. ie. when the back-end
1658 object_p function returns with success.
1659
1660*/
1661
1662void
c58b9523 1663bfd_preserve_finish (bfd *abfd ATTRIBUTE_UNUSED, struct bfd_preserve *preserve)
e84d6fca
AM
1664{
1665 /* It would be nice to be able to free more memory here, eg. old
1666 tdata, but that's not possible since these blocks are sitting
1667 inside bfd_alloc'd memory. The section hash is on a separate
1668 objalloc. */
1669 bfd_hash_table_free (&preserve->section_htab);
1670}
24718e3b
L
1671
1672/*
1673FUNCTION
1674 bfd_emul_get_maxpagesize
1675
1676SYNOPSIS
1677 bfd_vma bfd_emul_get_maxpagesize (const char *);
1678
1679DESCRIPTION
1680 Returns the maximum page size, in bytes, as determined by
1681 emulation.
1682
1683RETURNS
1684 Returns the maximum page size in bytes for ELF, abort
1685 otherwise.
1686*/
1687
1688bfd_vma
1689bfd_emul_get_maxpagesize (const char *emul)
1690{
1691 const bfd_target *target;
1692
1693 target = bfd_find_target (emul, NULL);
1694 if (target != NULL
1695 && target->flavour == bfd_target_elf_flavour)
1696 return xvec_get_elf_backend_data (target)->maxpagesize;
1697
1698 abort ();
1699 return 0;
1700}
1701
1702static void
1703bfd_elf_set_pagesize (const bfd_target *target, bfd_vma size,
1704 int offset, const bfd_target *orig_target)
1705{
1706 if (target->flavour == bfd_target_elf_flavour)
1707 {
1708 const struct elf_backend_data *bed;
1709
1710 bed = xvec_get_elf_backend_data (target);
1711 *((bfd_vma *) ((char *) bed + offset)) = size;
1712 }
1713
1714 if (target->alternative_target
1715 && target->alternative_target != orig_target)
1716 bfd_elf_set_pagesize (target->alternative_target, size, offset,
1717 orig_target);
1718}
1719
1720/*
1721FUNCTION
1722 bfd_emul_set_maxpagesize
1723
1724SYNOPSIS
1725 void bfd_emul_set_maxpagesize (const char *, bfd_vma);
1726
1727DESCRIPTION
1728 For ELF, set the maximum page size for the emulation. It is
1729 a no-op for other formats.
1730
1731*/
1732
1733void
1734bfd_emul_set_maxpagesize (const char *emul, bfd_vma size)
1735{
1736 const bfd_target *target;
1737
1738 target = bfd_find_target (emul, NULL);
1739 if (target)
1740 bfd_elf_set_pagesize (target, size,
1741 offsetof (struct elf_backend_data,
1742 maxpagesize), target);
1743}
1744
1745/*
1746FUNCTION
1747 bfd_emul_get_commonpagesize
1748
1749SYNOPSIS
1750 bfd_vma bfd_emul_get_commonpagesize (const char *);
1751
1752DESCRIPTION
1753 Returns the common page size, in bytes, as determined by
1754 emulation.
1755
1756RETURNS
1757 Returns the common page size in bytes for ELF, abort otherwise.
1758*/
1759
1760bfd_vma
1761bfd_emul_get_commonpagesize (const char *emul)
1762{
1763 const bfd_target *target;
1764
1765 target = bfd_find_target (emul, NULL);
1766 if (target != NULL
1767 && target->flavour == bfd_target_elf_flavour)
1768 return xvec_get_elf_backend_data (target)->commonpagesize;
1769
1770 abort ();
1771 return 0;
1772}
1773
1774/*
1775FUNCTION
1776 bfd_emul_set_commonpagesize
1777
1778SYNOPSIS
1779 void bfd_emul_set_commonpagesize (const char *, bfd_vma);
1780
1781DESCRIPTION
1782 For ELF, set the common page size for the emulation. It is
1783 a no-op for other formats.
1784
1785*/
1786
1787void
1788bfd_emul_set_commonpagesize (const char *emul, bfd_vma size)
1789{
1790 const bfd_target *target;
1791
1792 target = bfd_find_target (emul, NULL);
1793 if (target)
1794 bfd_elf_set_pagesize (target, size,
1795 offsetof (struct elf_backend_data,
1796 commonpagesize), target);
1797}
3fad56a3
AM
1798
1799/*
1800FUNCTION
1801 bfd_demangle
1802
1803SYNOPSIS
1804 char *bfd_demangle (bfd *, const char *, int);
1805
1806DESCRIPTION
1807 Wrapper around cplus_demangle. Strips leading underscores and
1808 other such chars that would otherwise confuse the demangler.
1809 If passed a g++ v3 ABI mangled name, returns a buffer allocated
1810 with malloc holding the demangled name. Returns NULL otherwise
1811 and on memory alloc failure.
1812*/
1813
1814char *
1815bfd_demangle (bfd *abfd, const char *name, int options)
1816{
1817 char *res, *alloc;
1818 const char *pre, *suf;
1819 size_t pre_len;
1820
1821 if (abfd != NULL
1822 && *name != '\0'
1823 && bfd_get_symbol_leading_char (abfd) == *name)
1824 ++name;
1825
1826 /* This is a hack for better error reporting on XCOFF, PowerPC64-ELF
1827 or the MS PE format. These formats have a number of leading '.'s
1828 on at least some symbols, so we remove all dots to avoid
1829 confusing the demangler. */
1830 pre = name;
1831 while (*name == '.' || *name == '$')
1832 ++name;
1833 pre_len = name - pre;
1834
1835 /* Strip off @plt and suchlike too. */
1836 alloc = NULL;
1837 suf = strchr (name, '@');
1838 if (suf != NULL)
1839 {
1840 alloc = bfd_malloc (suf - name + 1);
1841 if (alloc == NULL)
1842 return NULL;
1843 memcpy (alloc, name, suf - name);
1844 alloc[suf - name] = '\0';
1845 name = alloc;
1846 }
1847
1848 res = cplus_demangle (name, options);
1849
1850 if (alloc != NULL)
1851 free (alloc);
1852
1853 if (res == NULL)
1854 return NULL;
1855
1856 /* Put back any prefix or suffix. */
1857 if (pre_len != 0 || suf != NULL)
1858 {
1859 size_t len;
1860 size_t suf_len;
1861 char *final;
1862
1863 len = strlen (res);
1864 if (suf == NULL)
1865 suf = res + len;
1866 suf_len = strlen (suf) + 1;
1867 final = bfd_malloc (pre_len + len + suf_len);
32e8a950
NC
1868 if (final != NULL)
1869 {
1870 memcpy (final, pre, pre_len);
1871 memcpy (final + pre_len, res, len);
1872 memcpy (final + pre_len + len, suf, suf_len);
1873 }
3fad56a3
AM
1874 free (res);
1875 res = final;
1876 }
1877
1878 return res;
1879}