(int64e_type): Fix definition.
[deliverable/binutils-gdb.git] / bfd / bfd.c
CommitLineData
6724ff46 1/* Generic BFD library interface and support routines.
34b6a8c3 2 Copyright (C) 1990, 1991, 1992, 1993 Free Software Foundation, Inc.
6724ff46 3 Written by Cygnus Support.
4a81b561 4
6724ff46 5This file is part of BFD, the Binary File Descriptor library.
4a81b561 6
6724ff46 7This program is free software; you can redistribute it and/or modify
4a81b561 8it under the terms of the GNU General Public License as published by
6724ff46
RP
9the Free Software Foundation; either version 2 of the License, or
10(at your option) any later version.
4a81b561 11
6724ff46 12This program is distributed in the hope that it will be useful,
4a81b561
DHW
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
6724ff46
RP
18along with this program; if not, write to the Free Software
19Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
6f715d66 20
93351e91
SC
21/*
22SECTION
23 <<typedef bfd>>
6f715d66 24
93351e91
SC
25 A BFD is has type <<bfd>>; objects of this type are the
26 cornerstone of any application using <<libbfd>>. References
27 though the BFD and to data in the BFD give the entire BFD
28 functionality.
6f715d66 29
93351e91 30 Here is the struct used to define the type <<bfd>>. This
d3e667e8 31 contains the major data about the file, and contains pointers
93351e91 32 to the rest of the data.
6f715d66 33
e98e6ec1
SC
34CODE_FRAGMENT
35.
93351e91
SC
36.struct _bfd
37.{
e98e6ec1
SC
38. {* The filename the application opened the BFD with. *}
39. CONST char *filename;
40.
41. {* A pointer to the target jump table. *}
42. struct bfd_target *xvec;
43.
44. {* To avoid dragging too many header files into every file that
d3e667e8 45. includes `<<bfd.h>>', IOSTREAM has been declared as a "char
e98e6ec1
SC
46. *", and MTIME as a "long". Their correct types, to which they
47. are cast when used, are "FILE *" and "time_t". The iostream
48. is the result of an fopen on the filename. *}
49. char *iostream;
50.
51. {* Is the file being cached *}
52.
53. boolean cacheable;
54.
55. {* Marks whether there was a default target specified when the
56. BFD was opened. This is used to select what matching algorithm
57. to use to chose the back end. *}
58.
59. boolean target_defaulted;
60.
61. {* The caching routines use these to maintain a
62. least-recently-used list of BFDs *}
63.
64. struct _bfd *lru_prev, *lru_next;
65.
66. {* When a file is closed by the caching routines, BFD retains
67. state information on the file here:
68. *}
69.
70. file_ptr where;
71.
72. {* and here:*}
73.
74. boolean opened_once;
75.
76. {* Set if we have a locally maintained mtime value, rather than
77. getting it from the file each time: *}
78.
79. boolean mtime_set;
80.
81. {* File modified time, if mtime_set is true: *}
82.
83. long mtime;
84.
85. {* Reserved for an unimplemented file locking extension.*}
86.
87. int ifd;
88.
89. {* The format which belongs to the BFD.*}
90.
91. bfd_format format;
92.
93. {* The direction the BFD was opened with*}
94.
95. enum bfd_direction {no_direction = 0,
96. read_direction = 1,
97. write_direction = 2,
98. both_direction = 3} direction;
99.
100. {* Format_specific flags*}
101.
102. flagword flags;
103.
104. {* Currently my_archive is tested before adding origin to
105. anything. I believe that this can become always an add of
106. origin, with origin set to 0 for non archive files. *}
107.
108. file_ptr origin;
109.
110. {* Remember when output has begun, to stop strange things
111. happening. *}
112. boolean output_has_begun;
113.
114. {* Pointer to linked list of sections*}
115. struct sec *sections;
116.
117. {* The number of sections *}
118. unsigned int section_count;
119.
120. {* Stuff only useful for object files:
121. The start address. *}
122. bfd_vma start_address;
123.
124. {* Used for input and output*}
125. unsigned int symcount;
126.
127. {* Symbol table for output BFD*}
128. struct symbol_cache_entry **outsymbols;
129.
130. {* Pointer to structure which contains architecture information*}
131. struct bfd_arch_info *arch_info;
132.
133. {* Stuff only useful for archives:*}
134. PTR arelt_data;
135. struct _bfd *my_archive;
136. struct _bfd *next;
137. struct _bfd *archive_head;
138. boolean has_armap;
139.
140. {* Used by the back end to hold private data. *}
141.
142. union
143. {
144. struct aout_data_struct *aout_data;
145. struct artdata *aout_ar_data;
146. struct _oasys_data *oasys_obj_data;
147. struct _oasys_ar_data *oasys_ar_data;
148. struct coff_tdata *coff_obj_data;
515c4292 149. struct ecoff_tdata *ecoff_obj_data;
e98e6ec1
SC
150. struct ieee_data_struct *ieee_data;
151. struct ieee_ar_data_struct *ieee_ar_data;
152. struct srec_data_struct *srec_data;
d3e667e8
JG
153. struct tekhex_data_struct *tekhex_data;
154. struct elf_obj_tdata *elf_obj_data;
e98e6ec1
SC
155. struct bout_data_struct *bout_data;
156. struct sun_core_struct *sun_core_data;
2b74083c 157. struct trad_core_struct *trad_core_data;
d3e667e8 158. struct hppa_data_struct *hppa_data;
d70d5a26 159. struct hppa_core_struct *hppa_core_data;
e98e6ec1
SC
160. PTR any;
161. } tdata;
162.
163. {* Used by the application to hold private data*}
164. PTR usrdata;
165.
166. {* Where all the allocated stuff under this BFD goes *}
167. struct obstack memory;
168.
d3e667e8 169. {* Is this really needed in addition to usrdata? *}
e98e6ec1 170. asymbol **ld_symbols;
93351e91 171.};
e98e6ec1 172.
6f715d66 173*/
e98e6ec1 174
4a81b561 175#include "bfd.h"
bbc8d484 176#include "sysdep.h"
4a81b561 177#include "libbfd.h"
34b6a8c3
JK
178#include "coff/sym.h"
179#include "libecoff.h"
4a81b561 180
cbdc7909 181#undef strerror
bbc8d484
JG
182extern char *strerror();
183
6f715d66 184
f8adc62d 185CONST short _bfd_host_big_endian = 0x0100;
6f715d66
SC
186 /* Accessing the above as (*(char*)&_bfd_host_big_endian), will
187 return 1 if the host is big-endian, 0 otherwise.
188 (assuming that a short is two bytes long!!! FIXME)
189 (See HOST_IS_BIG_ENDIAN_P in bfd.h.) */
4a81b561
DHW
190\f
191/** Error handling
192 o - Most functions return nonzero on success (check doc for
6f715d66 193 precise semantics); 0 or NULL on error.
4a81b561 194 o - Internal errors are documented by the value of bfd_error.
6f715d66 195 If that is system_call_error then check errno.
4a81b561
DHW
196 o - The easiest way to report this to the user is to use bfd_perror.
197*/
198
199bfd_ec bfd_error = no_error;
200
34b6a8c3
JK
201CONST char *CONST bfd_errmsgs[] = {
202 "No error",
6f715d66
SC
203 "System call error",
204 "Invalid target",
205 "File in wrong format",
206 "Invalid operation",
207 "Memory exhausted",
208 "No symbols",
209 "No relocation info",
210 "No more archived files",
211 "Malformed archive",
212 "Symbol not found",
213 "File format not recognized",
214 "File format is ambiguous",
215 "Section has no contents",
216 "Nonrepresentable section on output",
cbdc7909 217 "Symbol needs debug section which does not exist",
d3e667e8 218 "Bad value",
34b6a8c3 219 "File truncated",
6f715d66
SC
220 "#<Invalid error code>"
221 };
4a81b561 222
9846338e
SC
223static
224void
225DEFUN(bfd_nonrepresentable_section,(abfd, name),
6f715d66
SC
226 CONST bfd * CONST abfd AND
227 CONST char * CONST name)
9846338e 228{
1f4d3c79 229 printf("bfd error writing file %s, format %s can't represent section %s\n",
6f715d66
SC
230 abfd->filename,
231 abfd->xvec->name,
232 name);
9846338e
SC
233 exit(1);
234}
fc723380 235
d3e667e8 236/*ARGSUSED*/
e98e6ec1
SC
237static
238void
239DEFUN(bfd_undefined_symbol,(relent, seclet),
240 CONST arelent *relent AND
d3e667e8 241 CONST struct bfd_seclet *seclet)
e98e6ec1
SC
242{
243 asymbol *symbol = *(relent->sym_ptr_ptr);
244 printf("bfd error relocating, symbol %s is undefined\n",
245 symbol->name);
246 exit(1);
247}
d3e667e8 248/*ARGSUSED*/
e98e6ec1
SC
249static
250void
251DEFUN(bfd_reloc_value_truncated,(relent, seclet),
252 CONST arelent *relent AND
d3e667e8 253 struct bfd_seclet *seclet)
e98e6ec1 254{
e98e6ec1
SC
255 printf("bfd error relocating, value truncated\n");
256 exit(1);
257}
d3e667e8 258/*ARGSUSED*/
e98e6ec1
SC
259static
260void
261DEFUN(bfd_reloc_is_dangerous,(relent, seclet),
262 CONST arelent *relent AND
d3e667e8 263 CONST struct bfd_seclet *seclet)
e98e6ec1 264{
e98e6ec1
SC
265 printf("bfd error relocating, dangerous\n");
266 exit(1);
267}
268
9846338e
SC
269bfd_error_vector_type bfd_error_vector =
270 {
e98e6ec1
SC
271 bfd_nonrepresentable_section ,
272 bfd_undefined_symbol,
273 bfd_reloc_value_truncated,
274 bfd_reloc_is_dangerous,
9846338e
SC
275 };
276
e98e6ec1 277
d3e667e8 278CONST char *
4a81b561
DHW
279bfd_errmsg (error_tag)
280 bfd_ec error_tag;
281{
7ed4093a
SC
282#ifndef errno
283 extern int errno;
284#endif
4a81b561
DHW
285 if (error_tag == system_call_error)
286 return strerror (errno);
287
288 if ((((int)error_tag <(int) no_error) ||
289 ((int)error_tag > (int)invalid_error_code)))
290 error_tag = invalid_error_code;/* sanity check */
291
292 return bfd_errmsgs [(int)error_tag];
293}
294
9846338e
SC
295
296void bfd_default_error_trap(error_tag)
297bfd_ec error_tag;
298{
299 printf("bfd assert fail (%s)\n", bfd_errmsg(error_tag));
300}
301
302void (*bfd_error_trap)() = bfd_default_error_trap;
303void (*bfd_error_nonrepresentabltrap)() = bfd_default_error_trap;
fc723380 304
4a81b561 305void
1f4d3c79
SC
306DEFUN(bfd_perror,(message),
307 CONST char *message)
4a81b561
DHW
308{
309 if (bfd_error == system_call_error)
6f715d66 310 perror((char *)message); /* must be system error then... */
4a81b561
DHW
311 else {
312 if (message == NULL || *message == '\0')
313 fprintf (stderr, "%s\n", bfd_errmsg (bfd_error));
314 else
315 fprintf (stderr, "%s: %s\n", message, bfd_errmsg (bfd_error));
316 }
317}
318
6f715d66 319 \f
4a81b561
DHW
320/** Symbols */
321
e98e6ec1
SC
322
323/*
324FUNCTION
325 bfd_get_reloc_upper_bound
326
327SYNOPSIS
328 unsigned int bfd_get_reloc_upper_bound(bfd *abfd, asection *sect);
329
330DESCRIPTION
331 This function return the number of bytes required to store the
332 relocation information associated with section <<sect>>
333 attached to bfd <<abfd>>
334
335*/
336
6f715d66 337
4a81b561 338unsigned int
e98e6ec1
SC
339DEFUN(bfd_get_reloc_upper_bound,(abfd, asect),
340 bfd *abfd AND
341 sec_ptr asect)
4a81b561
DHW
342{
343 if (abfd->format != bfd_object) {
344 bfd_error = invalid_operation;
345 return 0;
346 }
347
348 return BFD_SEND (abfd, _get_reloc_upper_bound, (abfd, asect));
349}
350
e98e6ec1
SC
351/*
352FUNCTION
353 bfd_canonicalize_reloc
354
355SYNOPSIS
356 unsigned int bfd_canonicalize_reloc
357 (bfd *abfd,
358 asection *sec,
359 arelent **loc,
360 asymbol **syms);
361
362DESCRIPTION
363 This function calls the back end associated with the open
364 <<abfd>> and translates the external form of the relocation
365 information attached to <<sec>> into the internal canonical
366 form. The table is placed into memory at <<loc>>, which has
367 been preallocated, usually by a call to
368 <<bfd_get_reloc_upper_bound>>.
369
370 The <<syms>> table is also needed for horrible internal magic
371 reasons.
372
373
374*/
4a81b561 375unsigned int
f8adc62d
JG
376DEFUN(bfd_canonicalize_reloc,(abfd, asect, location, symbols),
377 bfd *abfd AND
378 sec_ptr asect AND
379 arelent **location AND
380 asymbol **symbols)
4a81b561 381{
f8adc62d 382 if (abfd->format != bfd_object) {
e98e6ec1
SC
383 bfd_error = invalid_operation;
384 return 0;
385 }
386 return BFD_SEND (abfd, _bfd_canonicalize_reloc,
387 (abfd, asect, location, symbols));
d3e667e8 388 }
4a81b561 389
4a81b561 390
e98e6ec1
SC
391/*
392FUNCTION
393 bfd_set_file_flags
394
395SYNOPSIS
396 boolean bfd_set_file_flags(bfd *abfd, flagword flags);
397
398DESCRIPTION
399 This function attempts to set the flag word in the referenced
400 BFD structure to the value supplied.
401
402 Possible errors are:
403 o wrong_format - The target bfd was not of object format.
404 o invalid_operation - The target bfd was open for reading.
405 o invalid_operation -
406 The flag word contained a bit which was not applicable to the
407 type of file. eg, an attempt was made to set the D_PAGED bit
408 on a bfd format which does not support demand paging
409
410*/
411
4a81b561
DHW
412boolean
413bfd_set_file_flags (abfd, flags)
414 bfd *abfd;
415 flagword flags;
416{
417 if (abfd->format != bfd_object) {
418 bfd_error = wrong_format;
419 return false;
420 }
421
422 if (bfd_read_p (abfd)) {
423 bfd_error = invalid_operation;
424 return false;
425 }
426
d3e667e8 427 bfd_get_file_flags (abfd) = flags;
4a81b561
DHW
428 if ((flags & bfd_applicable_file_flags (abfd)) != flags) {
429 bfd_error = invalid_operation;
430 return false;
431 }
432
4a81b561
DHW
433return true;
434}
435
e98e6ec1
SC
436/*
437FUNCTION
438 bfd_set_reloc
439
440SYNOPSIS
441 void bfd_set_reloc
442 (bfd *abfd, asection *sec, arelent **rel, unsigned int count)
443
444DESCRIPTION
445 This function sets the relocation pointer and count within a
446 section to the supplied values.
447
448*/
d3e667e8 449/*ARGSUSED*/
4a81b561
DHW
450void
451bfd_set_reloc (ignore_abfd, asect, location, count)
452 bfd *ignore_abfd;
453 sec_ptr asect;
454 arelent **location;
455 unsigned int count;
456{
457 asect->orelocation = location;
458 asect->reloc_count = count;
459}
4a81b561
DHW
460
461void
462bfd_assert(file, line)
463char *file;
464int line;
465{
466 printf("bfd assertion fail %s:%d\n",file,line);
467}
468
469
93351e91
SC
470/*
471FUNCTION
472 bfd_set_start_address
473
474DESCRIPTION
93351e91 475 Marks the entry point of an output BFD.
6f715d66 476
93351e91
SC
477RETURNS
478 Returns <<true>> on success, <<false>> otherwise.
6f715d66 479
93351e91
SC
480SYNOPSIS
481 boolean bfd_set_start_address(bfd *, bfd_vma);
6f715d66
SC
482*/
483
4a81b561
DHW
484boolean
485bfd_set_start_address(abfd, vma)
486bfd *abfd;
487bfd_vma vma;
488{
489 abfd->start_address = vma;
490 return true;
491}
492
493
93351e91
SC
494/*
495FUNCTION
e98e6ec1 496 The bfd_get_mtime function
6f715d66 497
93351e91
SC
498SYNOPSIS
499 long bfd_get_mtime(bfd *);
e98e6ec1
SC
500
501DESCRIPTION
502 Return file modification time (as read from file system, or
503 from archive header for archive members).
504
6f715d66 505*/
4a81b561
DHW
506
507long
508bfd_get_mtime (abfd)
509 bfd *abfd;
510{
511 FILE *fp;
512 struct stat buf;
513
514 if (abfd->mtime_set)
515 return abfd->mtime;
516
517 fp = bfd_cache_lookup (abfd);
518 if (0 != fstat (fileno (fp), &buf))
519 return 0;
520
e98e6ec1
SC
521 abfd->mtime = buf.st_mtime; /* Save value in case anyone wants it */
522 return buf.st_mtime;
4a81b561 523}
6f715d66 524
515c4292
ILT
525/*
526FUNCTION
527 The bfd_get_size function
528
529SYNOPSIS
530 long bfd_get_size(bfd *);
531
532DESCRIPTION
533 Return file size (as read from file system) for the file
534 associated with a bfd.
535
536 Note that the initial motivation for, and use of, this routine is not
537 so we can get the exact size of the object the bfd applies to, since
538 that might not be generally possible (archive members for example?).
539 Although it would be ideal if someone could eventually modify
540 it so that such results were guaranteed.
541
542 Instead, we want to ask questions like "is this NNN byte sized
543 object I'm about to try read from file offset YYY reasonable?"
544 As as example of where we might want to do this, some object formats
545 use string tables for which the first sizeof(long) bytes of the table
546 contain the size of the table itself, including the size bytes.
547 If an application tries to read what it thinks is one of these
548 string tables, without some way to validate the size, and for
549 some reason the size is wrong (byte swapping error, wrong location
550 for the string table, etc), the only clue is likely to be a read
551 error when it tries to read the table, or a "virtual memory
552 exhausted" error when it tries to allocated 15 bazillon bytes
553 of space for the 15 bazillon byte table it is about to read.
554 This function at least allows us to answer the quesion, "is the
555 size reasonable?".
556*/
557
558long
559bfd_get_size (abfd)
560 bfd *abfd;
561{
562 FILE *fp;
563 struct stat buf;
564
565 fp = bfd_cache_lookup (abfd);
566 if (0 != fstat (fileno (fp), &buf))
567 return 0;
568
569 return buf.st_size;
570}
571
34b6a8c3
JK
572/*
573FUNCTION
574 The bfd_get_gp_size function
575
576SYNOPSIS
577 int bfd_get_gp_size(bfd *);
578
579DESCRIPTION
580 Get the maximum size of objects to be optimized using the GP
581 register under MIPS ECOFF. This is typically set by the -G
582 argument to the compiler, assembler or linker.
583*/
584
585int
586bfd_get_gp_size (abfd)
587 bfd *abfd;
588{
589 if (abfd->xvec->flavour == bfd_target_ecoff_flavour)
590 return ecoff_data (abfd)->gp_size;
591 return 0;
592}
593
594/*
595FUNCTION
596 The bfd_set_gp_size function
597
598SYNOPSIS
599 void bfd_set_gp_size(bfd *, int);
600
601DESCRIPTION
602 Set the maximum size of objects to be optimized using the GP
603 register under MIPS ECOFF. This is typically set by the -G
604 argument to the compiler, assembler or linker.
605*/
606
607void
608bfd_set_gp_size (abfd, i)
609 bfd *abfd;
610 int i;
611{
612 if (abfd->xvec->flavour == bfd_target_ecoff_flavour)
613 ecoff_data (abfd)->gp_size = i;
614}
615
93351e91
SC
616/*
617FUNCTION
618 stuff
619
620DESCRIPTION
621 stuff which should be documented
622
623.#define bfd_sizeof_headers(abfd, reloc) \
624. BFD_SEND (abfd, _bfd_sizeof_headers, (abfd, reloc))
625.
e98e6ec1
SC
626.#define bfd_find_nearest_line(abfd, sec, syms, off, file, func, line) \
627. BFD_SEND (abfd, _bfd_find_nearest_line, (abfd, sec, syms, off, file, func, line))
93351e91 628.
d3e667e8 629. {* Do these three do anything useful at all, for any back end? *}
93351e91
SC
630.#define bfd_debug_info_start(abfd) \
631. BFD_SEND (abfd, _bfd_debug_info_start, (abfd))
632.
633.#define bfd_debug_info_end(abfd) \
634. BFD_SEND (abfd, _bfd_debug_info_end, (abfd))
635.
636.#define bfd_debug_info_accumulate(abfd, section) \
637. BFD_SEND (abfd, _bfd_debug_info_accumulate, (abfd, section))
638.
d3e667e8 639.
93351e91
SC
640.#define bfd_stat_arch_elt(abfd, stat) \
641. BFD_SEND (abfd, _bfd_stat_arch_elt,(abfd, stat))
642.
93351e91
SC
643.#define bfd_set_arch_mach(abfd, arch, mach)\
644. BFD_SEND ( abfd, _bfd_set_arch_mach, (abfd, arch, mach))
645.
34b6a8c3
JK
646.#define bfd_get_relocated_section_contents(abfd, seclet, data, relocateable) \
647. BFD_SEND (abfd, _bfd_get_relocated_section_contents, (abfd, seclet, data, relocateable))
d3e667e8 648.
6590a8c9
SC
649.#define bfd_relax_section(abfd, section, symbols) \
650. BFD_SEND (abfd, _bfd_relax_section, (abfd, section, symbols))
34b6a8c3
JK
651.
652.#define bfd_seclet_link(abfd, data, relocateable) \
653. BFD_SEND (abfd, _bfd_seclet_link, (abfd, data, relocateable))
6590a8c9 654
6f715d66 655*/
This page took 0.112241 seconds and 4 git commands to generate.