obj-coff* now copes with C mingled listings
[deliverable/binutils-gdb.git] / bfd / bfd.c
CommitLineData
6724ff46
RP
1/* Generic BFD library interface and support routines.
2 Copyright (C) 1990-1991 Free Software Foundation, Inc.
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
4a81b561 21/* $Id$ */
6f715d66 22
93351e91
SC
23/*
24SECTION
25 <<typedef bfd>>
6f715d66 26
93351e91
SC
27 A BFD is has type <<bfd>>; objects of this type are the
28 cornerstone of any application using <<libbfd>>. References
29 though the BFD and to data in the BFD give the entire BFD
30 functionality.
6f715d66 31
93351e91
SC
32 Here is the struct used to define the type <<bfd>>. This
33 contains he major data about the file, and contains pointers
34 to the rest of the data.
6f715d66 35
e98e6ec1
SC
36CODE_FRAGMENT
37.
93351e91
SC
38.struct _bfd
39.{
e98e6ec1
SC
40. {* The filename the application opened the BFD with. *}
41. CONST char *filename;
42.
43. {* A pointer to the target jump table. *}
44. struct bfd_target *xvec;
45.
46. {* To avoid dragging too many header files into every file that
47. includes @file{bfd.h}, IOSTREAM has been declared as a "char
48. *", and MTIME as a "long". Their correct types, to which they
49. are cast when used, are "FILE *" and "time_t". The iostream
50. is the result of an fopen on the filename. *}
51. char *iostream;
52.
53. {* Is the file being cached *}
54.
55. boolean cacheable;
56.
57. {* Marks whether there was a default target specified when the
58. BFD was opened. This is used to select what matching algorithm
59. to use to chose the back end. *}
60.
61. boolean target_defaulted;
62.
63. {* The caching routines use these to maintain a
64. least-recently-used list of BFDs *}
65.
66. struct _bfd *lru_prev, *lru_next;
67.
68. {* When a file is closed by the caching routines, BFD retains
69. state information on the file here:
70. *}
71.
72. file_ptr where;
73.
74. {* and here:*}
75.
76. boolean opened_once;
77.
78. {* Set if we have a locally maintained mtime value, rather than
79. getting it from the file each time: *}
80.
81. boolean mtime_set;
82.
83. {* File modified time, if mtime_set is true: *}
84.
85. long mtime;
86.
87. {* Reserved for an unimplemented file locking extension.*}
88.
89. int ifd;
90.
91. {* The format which belongs to the BFD.*}
92.
93. bfd_format format;
94.
95. {* The direction the BFD was opened with*}
96.
97. enum bfd_direction {no_direction = 0,
98. read_direction = 1,
99. write_direction = 2,
100. both_direction = 3} direction;
101.
102. {* Format_specific flags*}
103.
104. flagword flags;
105.
106. {* Currently my_archive is tested before adding origin to
107. anything. I believe that this can become always an add of
108. origin, with origin set to 0 for non archive files. *}
109.
110. file_ptr origin;
111.
112. {* Remember when output has begun, to stop strange things
113. happening. *}
114. boolean output_has_begun;
115.
116. {* Pointer to linked list of sections*}
117. struct sec *sections;
118.
119. {* The number of sections *}
120. unsigned int section_count;
121.
122. {* Stuff only useful for object files:
123. The start address. *}
124. bfd_vma start_address;
125.
126. {* Used for input and output*}
127. unsigned int symcount;
128.
129. {* Symbol table for output BFD*}
130. struct symbol_cache_entry **outsymbols;
131.
132. {* Pointer to structure which contains architecture information*}
133. struct bfd_arch_info *arch_info;
134.
135. {* Stuff only useful for archives:*}
136. PTR arelt_data;
137. struct _bfd *my_archive;
138. struct _bfd *next;
139. struct _bfd *archive_head;
140. boolean has_armap;
141.
142. {* Used by the back end to hold private data. *}
143.
144. union
145. {
146. struct aout_data_struct *aout_data;
147. struct artdata *aout_ar_data;
148. struct _oasys_data *oasys_obj_data;
149. struct _oasys_ar_data *oasys_ar_data;
150. struct coff_tdata *coff_obj_data;
151. struct ieee_data_struct *ieee_data;
152. struct ieee_ar_data_struct *ieee_ar_data;
153. struct srec_data_struct *srec_data;
154. struct elf_obj_tdata_struct *elf_obj_data;
155. struct elf_core_tdata_struct *elf_core_data;
156. struct bout_data_struct *bout_data;
157. struct sun_core_struct *sun_core_data;
158. PTR any;
159. } tdata;
160.
161. {* Used by the application to hold private data*}
162. PTR usrdata;
163.
164. {* Where all the allocated stuff under this BFD goes *}
165. struct obstack memory;
166.
167. asymbol **ld_symbols;
93351e91 168.};
e98e6ec1 169.
6f715d66 170*/
e98e6ec1 171
4a81b561 172#include "bfd.h"
bbc8d484 173#include "sysdep.h"
4a81b561
DHW
174#include "libbfd.h"
175
cbdc7909 176#undef strerror
bbc8d484
JG
177extern char *strerror();
178
6f715d66 179
f8adc62d 180CONST short _bfd_host_big_endian = 0x0100;
6f715d66
SC
181 /* Accessing the above as (*(char*)&_bfd_host_big_endian), will
182 return 1 if the host is big-endian, 0 otherwise.
183 (assuming that a short is two bytes long!!! FIXME)
184 (See HOST_IS_BIG_ENDIAN_P in bfd.h.) */
4a81b561
DHW
185\f
186/** Error handling
187 o - Most functions return nonzero on success (check doc for
6f715d66 188 precise semantics); 0 or NULL on error.
4a81b561 189 o - Internal errors are documented by the value of bfd_error.
6f715d66 190 If that is system_call_error then check errno.
4a81b561
DHW
191 o - The easiest way to report this to the user is to use bfd_perror.
192*/
193
194bfd_ec bfd_error = no_error;
195
6f715d66
SC
196char *bfd_errmsgs[] = { "No error",
197 "System call error",
198 "Invalid target",
199 "File in wrong format",
200 "Invalid operation",
201 "Memory exhausted",
202 "No symbols",
203 "No relocation info",
204 "No more archived files",
205 "Malformed archive",
206 "Symbol not found",
207 "File format not recognized",
208 "File format is ambiguous",
209 "Section has no contents",
210 "Nonrepresentable section on output",
cbdc7909 211 "Symbol needs debug section which does not exist",
6f715d66
SC
212 "#<Invalid error code>"
213 };
4a81b561 214
9846338e
SC
215static
216void
217DEFUN(bfd_nonrepresentable_section,(abfd, name),
6f715d66
SC
218 CONST bfd * CONST abfd AND
219 CONST char * CONST name)
9846338e 220{
1f4d3c79 221 printf("bfd error writing file %s, format %s can't represent section %s\n",
6f715d66
SC
222 abfd->filename,
223 abfd->xvec->name,
224 name);
9846338e
SC
225 exit(1);
226}
fc723380 227
e98e6ec1
SC
228static
229void
230DEFUN(bfd_undefined_symbol,(relent, seclet),
231 CONST arelent *relent AND
232 CONST struct bfd_seclet_struct *seclet)
233{
234 asymbol *symbol = *(relent->sym_ptr_ptr);
235 printf("bfd error relocating, symbol %s is undefined\n",
236 symbol->name);
237 exit(1);
238}
239static
240void
241DEFUN(bfd_reloc_value_truncated,(relent, seclet),
242 CONST arelent *relent AND
243 struct bfd_seclet_struct *seclet)
244{
245 asymbol *symbol = *(relent->sym_ptr_ptr);
246 printf("bfd error relocating, value truncated\n");
247 exit(1);
248}
249static
250void
251DEFUN(bfd_reloc_is_dangerous,(relent, seclet),
252 CONST arelent *relent AND
253 CONST struct bfd_seclet_struct *seclet)
254{
255 asymbol *symbol = *(relent->sym_ptr_ptr);
256 printf("bfd error relocating, dangerous\n");
257 exit(1);
258}
259
9846338e
SC
260bfd_error_vector_type bfd_error_vector =
261 {
e98e6ec1
SC
262 bfd_nonrepresentable_section ,
263 bfd_undefined_symbol,
264 bfd_reloc_value_truncated,
265 bfd_reloc_is_dangerous,
9846338e
SC
266 };
267
e98e6ec1 268
4a81b561
DHW
269char *
270bfd_errmsg (error_tag)
271 bfd_ec error_tag;
272{
7ed4093a
SC
273#ifndef errno
274 extern int errno;
275#endif
4a81b561
DHW
276 if (error_tag == system_call_error)
277 return strerror (errno);
278
279 if ((((int)error_tag <(int) no_error) ||
280 ((int)error_tag > (int)invalid_error_code)))
281 error_tag = invalid_error_code;/* sanity check */
282
283 return bfd_errmsgs [(int)error_tag];
284}
285
9846338e
SC
286
287void bfd_default_error_trap(error_tag)
288bfd_ec error_tag;
289{
290 printf("bfd assert fail (%s)\n", bfd_errmsg(error_tag));
291}
292
293void (*bfd_error_trap)() = bfd_default_error_trap;
294void (*bfd_error_nonrepresentabltrap)() = bfd_default_error_trap;
fc723380 295
4a81b561 296void
1f4d3c79
SC
297DEFUN(bfd_perror,(message),
298 CONST char *message)
4a81b561
DHW
299{
300 if (bfd_error == system_call_error)
6f715d66 301 perror((char *)message); /* must be system error then... */
4a81b561
DHW
302 else {
303 if (message == NULL || *message == '\0')
304 fprintf (stderr, "%s\n", bfd_errmsg (bfd_error));
305 else
306 fprintf (stderr, "%s: %s\n", message, bfd_errmsg (bfd_error));
307 }
308}
309
6f715d66 310 \f
4a81b561
DHW
311/** Symbols */
312
e98e6ec1
SC
313
314/*
315FUNCTION
316 bfd_get_reloc_upper_bound
317
318SYNOPSIS
319 unsigned int bfd_get_reloc_upper_bound(bfd *abfd, asection *sect);
320
321DESCRIPTION
322 This function return the number of bytes required to store the
323 relocation information associated with section <<sect>>
324 attached to bfd <<abfd>>
325
326*/
327
6f715d66 328
4a81b561 329unsigned int
e98e6ec1
SC
330DEFUN(bfd_get_reloc_upper_bound,(abfd, asect),
331 bfd *abfd AND
332 sec_ptr asect)
4a81b561
DHW
333{
334 if (abfd->format != bfd_object) {
335 bfd_error = invalid_operation;
336 return 0;
337 }
338
339 return BFD_SEND (abfd, _get_reloc_upper_bound, (abfd, asect));
340}
341
e98e6ec1
SC
342/*
343FUNCTION
344 bfd_canonicalize_reloc
345
346SYNOPSIS
347 unsigned int bfd_canonicalize_reloc
348 (bfd *abfd,
349 asection *sec,
350 arelent **loc,
351 asymbol **syms);
352
353DESCRIPTION
354 This function calls the back end associated with the open
355 <<abfd>> and translates the external form of the relocation
356 information attached to <<sec>> into the internal canonical
357 form. The table is placed into memory at <<loc>>, which has
358 been preallocated, usually by a call to
359 <<bfd_get_reloc_upper_bound>>.
360
361 The <<syms>> table is also needed for horrible internal magic
362 reasons.
363
364
365*/
4a81b561 366unsigned int
f8adc62d
JG
367DEFUN(bfd_canonicalize_reloc,(abfd, asect, location, symbols),
368 bfd *abfd AND
369 sec_ptr asect AND
370 arelent **location AND
371 asymbol **symbols)
4a81b561 372{
f8adc62d 373 if (abfd->format != bfd_object) {
e98e6ec1
SC
374 bfd_error = invalid_operation;
375 return 0;
376 }
377 return BFD_SEND (abfd, _bfd_canonicalize_reloc,
378 (abfd, asect, location, symbols));
4a81b561
DHW
379}
380
4a81b561 381
e98e6ec1
SC
382/*
383FUNCTION
384 bfd_set_file_flags
385
386SYNOPSIS
387 boolean bfd_set_file_flags(bfd *abfd, flagword flags);
388
389DESCRIPTION
390 This function attempts to set the flag word in the referenced
391 BFD structure to the value supplied.
392
393 Possible errors are:
394 o wrong_format - The target bfd was not of object format.
395 o invalid_operation - The target bfd was open for reading.
396 o invalid_operation -
397 The flag word contained a bit which was not applicable to the
398 type of file. eg, an attempt was made to set the D_PAGED bit
399 on a bfd format which does not support demand paging
400
401*/
402
4a81b561
DHW
403boolean
404bfd_set_file_flags (abfd, flags)
405 bfd *abfd;
406 flagword flags;
407{
408 if (abfd->format != bfd_object) {
409 bfd_error = wrong_format;
410 return false;
411 }
412
413 if (bfd_read_p (abfd)) {
414 bfd_error = invalid_operation;
415 return false;
416 }
417
418 if ((flags & bfd_applicable_file_flags (abfd)) != flags) {
419 bfd_error = invalid_operation;
420 return false;
421 }
422
423 bfd_get_file_flags (abfd) = flags;
424return true;
425}
426
e98e6ec1
SC
427/*
428FUNCTION
429 bfd_set_reloc
430
431SYNOPSIS
432 void bfd_set_reloc
433 (bfd *abfd, asection *sec, arelent **rel, unsigned int count)
434
435DESCRIPTION
436 This function sets the relocation pointer and count within a
437 section to the supplied values.
438
439*/
4a81b561
DHW
440
441void
442bfd_set_reloc (ignore_abfd, asect, location, count)
443 bfd *ignore_abfd;
444 sec_ptr asect;
445 arelent **location;
446 unsigned int count;
447{
448 asect->orelocation = location;
449 asect->reloc_count = count;
450}
4a81b561
DHW
451
452void
453bfd_assert(file, line)
454char *file;
455int line;
456{
457 printf("bfd assertion fail %s:%d\n",file,line);
458}
459
460
93351e91
SC
461/*
462FUNCTION
463 bfd_set_start_address
464
465DESCRIPTION
93351e91 466 Marks the entry point of an output BFD.
6f715d66 467
93351e91
SC
468RETURNS
469 Returns <<true>> on success, <<false>> otherwise.
6f715d66 470
93351e91
SC
471SYNOPSIS
472 boolean bfd_set_start_address(bfd *, bfd_vma);
6f715d66
SC
473*/
474
4a81b561
DHW
475boolean
476bfd_set_start_address(abfd, vma)
477bfd *abfd;
478bfd_vma vma;
479{
480 abfd->start_address = vma;
481 return true;
482}
483
484
93351e91
SC
485/*
486FUNCTION
e98e6ec1 487 The bfd_get_mtime function
6f715d66 488
93351e91
SC
489SYNOPSIS
490 long bfd_get_mtime(bfd *);
e98e6ec1
SC
491
492DESCRIPTION
493 Return file modification time (as read from file system, or
494 from archive header for archive members).
495
6f715d66 496*/
4a81b561
DHW
497
498long
499bfd_get_mtime (abfd)
500 bfd *abfd;
501{
502 FILE *fp;
503 struct stat buf;
504
505 if (abfd->mtime_set)
506 return abfd->mtime;
507
508 fp = bfd_cache_lookup (abfd);
509 if (0 != fstat (fileno (fp), &buf))
510 return 0;
511
e98e6ec1
SC
512 abfd->mtime = buf.st_mtime; /* Save value in case anyone wants it */
513 return buf.st_mtime;
4a81b561 514}
6f715d66 515
93351e91
SC
516/*
517FUNCTION
518 stuff
519
520DESCRIPTION
521 stuff which should be documented
522
523.#define bfd_sizeof_headers(abfd, reloc) \
524. BFD_SEND (abfd, _bfd_sizeof_headers, (abfd, reloc))
525.
e98e6ec1
SC
526.#define bfd_find_nearest_line(abfd, sec, syms, off, file, func, line) \
527. BFD_SEND (abfd, _bfd_find_nearest_line, (abfd, sec, syms, off, file, func, line))
93351e91
SC
528.
529.#define bfd_debug_info_start(abfd) \
530. BFD_SEND (abfd, _bfd_debug_info_start, (abfd))
531.
532.#define bfd_debug_info_end(abfd) \
533. BFD_SEND (abfd, _bfd_debug_info_end, (abfd))
534.
535.#define bfd_debug_info_accumulate(abfd, section) \
536. BFD_SEND (abfd, _bfd_debug_info_accumulate, (abfd, section))
537.
538.#define bfd_stat_arch_elt(abfd, stat) \
539. BFD_SEND (abfd, _bfd_stat_arch_elt,(abfd, stat))
540.
541.#define bfd_coff_swap_aux_in(a,e,t,c,i) \
542. BFD_SEND (a, _bfd_coff_swap_aux_in, (a,e,t,c,i))
543.
544.#define bfd_coff_swap_sym_in(a,e,i) \
545. BFD_SEND (a, _bfd_coff_swap_sym_in, (a,e,i))
546.
547.#define bfd_coff_swap_lineno_in(a,e,i) \
548. BFD_SEND ( a, _bfd_coff_swap_lineno_in, (a,e,i))
549.
550.#define bfd_set_arch_mach(abfd, arch, mach)\
551. BFD_SEND ( abfd, _bfd_set_arch_mach, (abfd, arch, mach))
552.
553.#define bfd_coff_swap_reloc_out(abfd, i, o) \
554. BFD_SEND (abfd, _bfd_coff_swap_reloc_out, (abfd, i, o))
555.
556.#define bfd_coff_swap_lineno_out(abfd, i, o) \
557. BFD_SEND (abfd, _bfd_coff_swap_lineno_out, (abfd, i, o))
558.
559.#define bfd_coff_swap_aux_out(abfd, i, t,c,o) \
560. BFD_SEND (abfd, _bfd_coff_swap_aux_out, (abfd, i,t,c, o))
561.
562.#define bfd_coff_swap_sym_out(abfd, i,o) \
563. BFD_SEND (abfd, _bfd_coff_swap_sym_out, (abfd, i, o))
564.
565.#define bfd_coff_swap_scnhdr_out(abfd, i,o) \
566. BFD_SEND (abfd, _bfd_coff_swap_scnhdr_out, (abfd, i, o))
567.
568.#define bfd_coff_swap_filehdr_out(abfd, i,o) \
569. BFD_SEND (abfd, _bfd_coff_swap_filehdr_out, (abfd, i, o))
570.
571.#define bfd_coff_swap_aouthdr_out(abfd, i,o) \
572. BFD_SEND (abfd, _bfd_coff_swap_aouthdr_out, (abfd, i, o))
573.
e98e6ec1
SC
574.#define bfd_get_relocated_section_contents(abfd, seclet) \
575. BFD_SEND (abfd, _bfd_get_relocated_section_contents, (abfd, seclet))
6f715d66
SC
576*/
577
578
579
580
581
582
This page took 0.063328 seconds and 4 git commands to generate.