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