1 | /* Generic BFD library interface and support routines.
|
---|
2 | Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
|
---|
3 | 2000, 2001, 2002, 2003
|
---|
4 | Free Software Foundation, Inc.
|
---|
5 | Written by Cygnus Support.
|
---|
6 |
|
---|
7 | This file is part of BFD, the Binary File Descriptor library.
|
---|
8 |
|
---|
9 | This program is free software; you can redistribute it and/or modify
|
---|
10 | it under the terms of the GNU General Public License as published by
|
---|
11 | the Free Software Foundation; either version 2 of the License, or
|
---|
12 | (at your option) any later version.
|
---|
13 |
|
---|
14 | This program is distributed in the hope that it will be useful,
|
---|
15 | but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
17 | GNU General Public License for more details.
|
---|
18 |
|
---|
19 | You should have received a copy of the GNU General Public License
|
---|
20 | along with this program; if not, write to the Free Software
|
---|
21 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
---|
22 |
|
---|
23 | /*
|
---|
24 | SECTION
|
---|
25 | <<typedef bfd>>
|
---|
26 |
|
---|
27 | A BFD has type <<bfd>>; objects of this type are the
|
---|
28 | cornerstone of any application using BFD. Using BFD
|
---|
29 | consists of making references though the BFD and to data in the BFD.
|
---|
30 |
|
---|
31 | Here is the structure that defines the type <<bfd>>. It
|
---|
32 | contains the major data about the file and pointers
|
---|
33 | to the rest of the data.
|
---|
34 |
|
---|
35 | CODE_FRAGMENT
|
---|
36 | .
|
---|
37 | .struct bfd
|
---|
38 | .{
|
---|
39 | . {* A unique identifier of the BFD *}
|
---|
40 | . unsigned int id;
|
---|
41 | .
|
---|
42 | . {* The filename the application opened the BFD with. *}
|
---|
43 | . const char *filename;
|
---|
44 | .
|
---|
45 | . {* A pointer to the target jump table. *}
|
---|
46 | . const struct bfd_target *xvec;
|
---|
47 | .
|
---|
48 | . {* To avoid dragging too many header files into every file that
|
---|
49 | . includes `<<bfd.h>>', IOSTREAM has been declared as a "char *",
|
---|
50 | . and MTIME as a "long". Their correct types, to which they
|
---|
51 | . are cast when used, are "FILE *" and "time_t". The iostream
|
---|
52 | . is the result of an fopen on the filename. However, if the
|
---|
53 | . BFD_IN_MEMORY flag is set, then iostream is actually a pointer
|
---|
54 | . to a bfd_in_memory struct. *}
|
---|
55 | . PTR iostream;
|
---|
56 | .
|
---|
57 | . {* Is the file descriptor being cached? That is, can it be closed as
|
---|
58 | . needed, and re-opened when accessed later? *}
|
---|
59 | . bfd_boolean cacheable;
|
---|
60 | .
|
---|
61 | . {* Marks whether there was a default target specified when the
|
---|
62 | . BFD was opened. This is used to select which matching algorithm
|
---|
63 | . to use to choose the back end. *}
|
---|
64 | . bfd_boolean target_defaulted;
|
---|
65 | .
|
---|
66 | . {* The caching routines use these to maintain a
|
---|
67 | . least-recently-used list of BFDs. *}
|
---|
68 | . struct bfd *lru_prev, *lru_next;
|
---|
69 | .
|
---|
70 | . {* When a file is closed by the caching routines, BFD retains
|
---|
71 | . state information on the file here... *}
|
---|
72 | . ufile_ptr where;
|
---|
73 | .
|
---|
74 | . {* ... and here: (``once'' means at least once). *}
|
---|
75 | . bfd_boolean opened_once;
|
---|
76 | .
|
---|
77 | . {* Set if we have a locally maintained mtime value, rather than
|
---|
78 | . getting it from the file each time. *}
|
---|
79 | . bfd_boolean mtime_set;
|
---|
80 | .
|
---|
81 | . {* File modified time, if mtime_set is TRUE. *}
|
---|
82 | . long mtime;
|
---|
83 | .
|
---|
84 | . {* Reserved for an unimplemented file locking extension. *}
|
---|
85 | . int ifd;
|
---|
86 | .
|
---|
87 | . {* The format which belongs to the BFD. (object, core, etc.) *}
|
---|
88 | . bfd_format format;
|
---|
89 | .
|
---|
90 | . {* The direction with which the BFD was opened. *}
|
---|
91 | . enum bfd_direction
|
---|
92 | . {
|
---|
93 | . no_direction = 0,
|
---|
94 | . read_direction = 1,
|
---|
95 | . write_direction = 2,
|
---|
96 | . both_direction = 3
|
---|
97 | . }
|
---|
98 | . direction;
|
---|
99 | .
|
---|
100 | . {* Format_specific flags. *}
|
---|
101 | . flagword flags;
|
---|
102 | .
|
---|
103 | . {* Currently my_archive is tested before adding origin to
|
---|
104 | . anything. I believe that this can become always an add of
|
---|
105 | . origin, with origin set to 0 for non archive files. *}
|
---|
106 | . ufile_ptr origin;
|
---|
107 | .
|
---|
108 | . {* Remember when output has begun, to stop strange things
|
---|
109 | . from happening. *}
|
---|
110 | . bfd_boolean output_has_begun;
|
---|
111 | .
|
---|
112 | . {* A hash table for section names. *}
|
---|
113 | . struct bfd_hash_table section_htab;
|
---|
114 | .
|
---|
115 | . {* Pointer to linked list of sections. *}
|
---|
116 | . struct sec *sections;
|
---|
117 | .
|
---|
118 | . {* The place where we add to the section list. *}
|
---|
119 | . struct sec **section_tail;
|
---|
120 | .
|
---|
121 | . {* The number of sections. *}
|
---|
122 | . unsigned int section_count;
|
---|
123 | .
|
---|
124 | . {* Stuff only useful for object files:
|
---|
125 | . The start address. *}
|
---|
126 | . bfd_vma start_address;
|
---|
127 | .
|
---|
128 | . {* Used for input and output. *}
|
---|
129 | . unsigned int symcount;
|
---|
130 | .
|
---|
131 | . {* Symbol table for output BFD (with symcount entries). *}
|
---|
132 | . struct symbol_cache_entry **outsymbols;
|
---|
133 | .
|
---|
134 | . {* Used for slurped dynamic symbol tables. *}
|
---|
135 | . unsigned int dynsymcount;
|
---|
136 | .
|
---|
137 | . {* Pointer to structure which contains architecture information. *}
|
---|
138 | . const struct bfd_arch_info *arch_info;
|
---|
139 | .
|
---|
140 | . {* Stuff only useful for archives. *}
|
---|
141 | . PTR arelt_data;
|
---|
142 | . struct bfd *my_archive; {* The containing archive BFD. *}
|
---|
143 | . struct bfd *next; {* The next BFD in the archive. *}
|
---|
144 | . struct bfd *archive_head; {* The first BFD in the archive. *}
|
---|
145 | . bfd_boolean has_armap;
|
---|
146 | .
|
---|
147 | . {* A chain of BFD structures involved in a link. *}
|
---|
148 | . struct bfd *link_next;
|
---|
149 | .
|
---|
150 | . {* A field used by _bfd_generic_link_add_archive_symbols. This will
|
---|
151 | . be used only for archive elements. *}
|
---|
152 | . int archive_pass;
|
---|
153 | .
|
---|
154 | . {* Used by the back end to hold private data. *}
|
---|
155 | . union
|
---|
156 | . {
|
---|
157 | . struct aout_data_struct *aout_data;
|
---|
158 | . struct artdata *aout_ar_data;
|
---|
159 | . struct _oasys_data *oasys_obj_data;
|
---|
160 | . struct _oasys_ar_data *oasys_ar_data;
|
---|
161 | . struct coff_tdata *coff_obj_data;
|
---|
162 | . struct pe_tdata *pe_obj_data;
|
---|
163 | . struct xcoff_tdata *xcoff_obj_data;
|
---|
164 | . struct ecoff_tdata *ecoff_obj_data;
|
---|
165 | . struct ieee_data_struct *ieee_data;
|
---|
166 | . struct ieee_ar_data_struct *ieee_ar_data;
|
---|
167 | . struct srec_data_struct *srec_data;
|
---|
168 | . struct ihex_data_struct *ihex_data;
|
---|
169 | . struct tekhex_data_struct *tekhex_data;
|
---|
170 | . struct elf_obj_tdata *elf_obj_data;
|
---|
171 | . struct nlm_obj_tdata *nlm_obj_data;
|
---|
172 | . struct bout_data_struct *bout_data;
|
---|
173 | . struct mmo_data_struct *mmo_data;
|
---|
174 | . struct sun_core_struct *sun_core_data;
|
---|
175 | . struct sco5_core_struct *sco5_core_data;
|
---|
176 | . struct trad_core_struct *trad_core_data;
|
---|
177 | . struct som_data_struct *som_data;
|
---|
178 | . struct hpux_core_struct *hpux_core_data;
|
---|
179 | . struct hppabsd_core_struct *hppabsd_core_data;
|
---|
180 | . struct sgi_core_struct *sgi_core_data;
|
---|
181 | . struct lynx_core_struct *lynx_core_data;
|
---|
182 | . struct osf_core_struct *osf_core_data;
|
---|
183 | . struct cisco_core_struct *cisco_core_data;
|
---|
184 | . struct versados_data_struct *versados_data;
|
---|
185 | . struct netbsd_core_struct *netbsd_core_data;
|
---|
186 | . struct mach_o_data_struct *mach_o_data;
|
---|
187 | . struct mach_o_fat_data_struct *mach_o_fat_data;
|
---|
188 | . struct bfd_pef_data_struct *pef_data;
|
---|
189 | . struct bfd_pef_xlib_data_struct *pef_xlib_data;
|
---|
190 | . struct bfd_sym_data_struct *sym_data;
|
---|
191 | . PTR any;
|
---|
192 | . }
|
---|
193 | . tdata;
|
---|
194 | .
|
---|
195 | . {* Used by the application to hold private data. *}
|
---|
196 | . PTR usrdata;
|
---|
197 | .
|
---|
198 | . {* Where all the allocated stuff under this BFD goes. This is a
|
---|
199 | . struct objalloc *, but we use PTR to avoid requiring the inclusion of
|
---|
200 | . objalloc.h. *}
|
---|
201 | . PTR memory;
|
---|
202 | .};
|
---|
203 | .
|
---|
204 | */
|
---|
205 |
|
---|
206 | #include "bfd.h"
|
---|
207 | #include "bfdver.h"
|
---|
208 | #include "sysdep.h"
|
---|
209 |
|
---|
210 | #ifdef ANSI_PROTOTYPES
|
---|
211 | #include <stdarg.h>
|
---|
212 | #else
|
---|
213 | #include <varargs.h>
|
---|
214 | #endif
|
---|
215 |
|
---|
216 | #include "libiberty.h"
|
---|
217 | #include "safe-ctype.h"
|
---|
218 | #include "bfdlink.h"
|
---|
219 | #include "libbfd.h"
|
---|
220 | #include "coff/internal.h"
|
---|
221 | #include "coff/sym.h"
|
---|
222 | #include "libcoff.h"
|
---|
223 | #include "libecoff.h"
|
---|
224 | #undef obj_symbols
|
---|
225 | #include "elf-bfd.h"
|
---|
226 | |
---|
227 |
|
---|
228 | /* provide storage for subsystem, stack and heap data which may have been
|
---|
229 | passed in on the command line. Ld puts this data into a bfd_link_info
|
---|
230 | struct which ultimately gets passed in to the bfd. When it arrives, copy
|
---|
231 | it to the following struct so that the data will be available in coffcode.h
|
---|
232 | where it is needed. The typedef's used are defined in bfd.h */
|
---|
233 | |
---|
234 |
|
---|
235 | /*
|
---|
236 | SECTION
|
---|
237 | Error reporting
|
---|
238 |
|
---|
239 | Most BFD functions return nonzero on success (check their
|
---|
240 | individual documentation for precise semantics). On an error,
|
---|
241 | they call <<bfd_set_error>> to set an error condition that callers
|
---|
242 | can check by calling <<bfd_get_error>>.
|
---|
243 | If that returns <<bfd_error_system_call>>, then check
|
---|
244 | <<errno>>.
|
---|
245 |
|
---|
246 | The easiest way to report a BFD error to the user is to
|
---|
247 | use <<bfd_perror>>.
|
---|
248 |
|
---|
249 | SUBSECTION
|
---|
250 | Type <<bfd_error_type>>
|
---|
251 |
|
---|
252 | The values returned by <<bfd_get_error>> are defined by the
|
---|
253 | enumerated type <<bfd_error_type>>.
|
---|
254 |
|
---|
255 | CODE_FRAGMENT
|
---|
256 | .
|
---|
257 | .typedef enum bfd_error
|
---|
258 | .{
|
---|
259 | . bfd_error_no_error = 0,
|
---|
260 | . bfd_error_system_call,
|
---|
261 | . bfd_error_invalid_target,
|
---|
262 | . bfd_error_wrong_format,
|
---|
263 | . bfd_error_wrong_object_format,
|
---|
264 | . bfd_error_invalid_operation,
|
---|
265 | . bfd_error_no_memory,
|
---|
266 | . bfd_error_no_symbols,
|
---|
267 | . bfd_error_no_armap,
|
---|
268 | . bfd_error_no_more_archived_files,
|
---|
269 | . bfd_error_malformed_archive,
|
---|
270 | . bfd_error_file_not_recognized,
|
---|
271 | . bfd_error_file_ambiguously_recognized,
|
---|
272 | . bfd_error_no_contents,
|
---|
273 | . bfd_error_nonrepresentable_section,
|
---|
274 | . bfd_error_no_debug_section,
|
---|
275 | . bfd_error_bad_value,
|
---|
276 | . bfd_error_file_truncated,
|
---|
277 | . bfd_error_file_too_big,
|
---|
278 | . bfd_error_invalid_error_code
|
---|
279 | .}
|
---|
280 | .bfd_error_type;
|
---|
281 | .
|
---|
282 | */
|
---|
283 |
|
---|
284 | static bfd_error_type bfd_error = bfd_error_no_error;
|
---|
285 |
|
---|
286 | const char *const bfd_errmsgs[] =
|
---|
287 | {
|
---|
288 | N_("No error"),
|
---|
289 | N_("System call error"),
|
---|
290 | N_("Invalid bfd target"),
|
---|
291 | N_("File in wrong format"),
|
---|
292 | N_("Archive object file in wrong format"),
|
---|
293 | N_("Invalid operation"),
|
---|
294 | N_("Memory exhausted"),
|
---|
295 | N_("No symbols"),
|
---|
296 | N_("Archive has no index; run ranlib to add one"),
|
---|
297 | N_("No more archived files"),
|
---|
298 | N_("Malformed archive"),
|
---|
299 | N_("File format not recognized"),
|
---|
300 | N_("File format is ambiguous"),
|
---|
301 | N_("Section has no contents"),
|
---|
302 | N_("Nonrepresentable section on output"),
|
---|
303 | N_("Symbol needs debug section which does not exist"),
|
---|
304 | N_("Bad value"),
|
---|
305 | N_("File truncated"),
|
---|
306 | N_("File too big"),
|
---|
307 | N_("#<Invalid error code>")
|
---|
308 | };
|
---|
309 |
|
---|
310 | /*
|
---|
311 | FUNCTION
|
---|
312 | bfd_get_error
|
---|
313 |
|
---|
314 | SYNOPSIS
|
---|
315 | bfd_error_type bfd_get_error (void);
|
---|
316 |
|
---|
317 | DESCRIPTION
|
---|
318 | Return the current BFD error condition.
|
---|
319 | */
|
---|
320 |
|
---|
321 | bfd_error_type
|
---|
322 | bfd_get_error ()
|
---|
323 | {
|
---|
324 | return bfd_error;
|
---|
325 | }
|
---|
326 |
|
---|
327 | /*
|
---|
328 | FUNCTION
|
---|
329 | bfd_set_error
|
---|
330 |
|
---|
331 | SYNOPSIS
|
---|
332 | void bfd_set_error (bfd_error_type error_tag);
|
---|
333 |
|
---|
334 | DESCRIPTION
|
---|
335 | Set the BFD error condition to be @var{error_tag}.
|
---|
336 | */
|
---|
337 |
|
---|
338 | void
|
---|
339 | bfd_set_error (error_tag)
|
---|
340 | bfd_error_type error_tag;
|
---|
341 | {
|
---|
342 | bfd_error = error_tag;
|
---|
343 | }
|
---|
344 |
|
---|
345 | /*
|
---|
346 | FUNCTION
|
---|
347 | bfd_errmsg
|
---|
348 |
|
---|
349 | SYNOPSIS
|
---|
350 | const char *bfd_errmsg (bfd_error_type error_tag);
|
---|
351 |
|
---|
352 | DESCRIPTION
|
---|
353 | Return a string describing the error @var{error_tag}, or
|
---|
354 | the system error if @var{error_tag} is <<bfd_error_system_call>>.
|
---|
355 | */
|
---|
356 |
|
---|
357 | const char *
|
---|
358 | bfd_errmsg (error_tag)
|
---|
359 | bfd_error_type error_tag;
|
---|
360 | {
|
---|
361 | #ifndef errno
|
---|
362 | extern int errno;
|
---|
363 | #endif
|
---|
364 | if (error_tag == bfd_error_system_call)
|
---|
365 | return xstrerror (errno);
|
---|
366 |
|
---|
367 | if ((((int) error_tag < (int) bfd_error_no_error) ||
|
---|
368 | ((int) error_tag > (int) bfd_error_invalid_error_code)))
|
---|
369 | error_tag = bfd_error_invalid_error_code;/* sanity check */
|
---|
370 |
|
---|
371 | return _(bfd_errmsgs [(int)error_tag]);
|
---|
372 | }
|
---|
373 |
|
---|
374 | /*
|
---|
375 | FUNCTION
|
---|
376 | bfd_perror
|
---|
377 |
|
---|
378 | SYNOPSIS
|
---|
379 | void bfd_perror (const char *message);
|
---|
380 |
|
---|
381 | DESCRIPTION
|
---|
382 | Print to the standard error stream a string describing the
|
---|
383 | last BFD error that occurred, or the last system error if
|
---|
384 | the last BFD error was a system call failure. If @var{message}
|
---|
385 | is non-NULL and non-empty, the error string printed is preceded
|
---|
386 | by @var{message}, a colon, and a space. It is followed by a newline.
|
---|
387 | */
|
---|
388 |
|
---|
389 | void
|
---|
390 | bfd_perror (message)
|
---|
391 | const char *message;
|
---|
392 | {
|
---|
393 | if (bfd_get_error () == bfd_error_system_call)
|
---|
394 | /* Must be a system error then. */
|
---|
395 | perror ((char *)message);
|
---|
396 | else
|
---|
397 | {
|
---|
398 | if (message == NULL || *message == '\0')
|
---|
399 | fprintf (stderr, "%s\n", bfd_errmsg (bfd_get_error ()));
|
---|
400 | else
|
---|
401 | fprintf (stderr, "%s: %s\n", message, bfd_errmsg (bfd_get_error ()));
|
---|
402 | }
|
---|
403 | }
|
---|
404 |
|
---|
405 | /*
|
---|
406 | SUBSECTION
|
---|
407 | BFD error handler
|
---|
408 |
|
---|
409 | Some BFD functions want to print messages describing the
|
---|
410 | problem. They call a BFD error handler function. This
|
---|
411 | function may be overriden by the program.
|
---|
412 |
|
---|
413 | The BFD error handler acts like printf.
|
---|
414 |
|
---|
415 | CODE_FRAGMENT
|
---|
416 | .
|
---|
417 | .typedef void (*bfd_error_handler_type) PARAMS ((const char *, ...));
|
---|
418 | .
|
---|
419 | */
|
---|
420 |
|
---|
421 | /* The program name used when printing BFD error messages. */
|
---|
422 |
|
---|
423 | static const char *_bfd_error_program_name;
|
---|
424 |
|
---|
425 | /* This is the default routine to handle BFD error messages. */
|
---|
426 |
|
---|
427 | static void _bfd_default_error_handler PARAMS ((const char *s, ...));
|
---|
428 |
|
---|
429 | static void
|
---|
430 | _bfd_default_error_handler VPARAMS ((const char *s, ...))
|
---|
431 | {
|
---|
432 | if (_bfd_error_program_name != NULL)
|
---|
433 | fprintf (stderr, "%s: ", _bfd_error_program_name);
|
---|
434 | else
|
---|
435 | fprintf (stderr, "BFD: ");
|
---|
436 |
|
---|
437 | VA_OPEN (p, s);
|
---|
438 | VA_FIXEDARG (p, const char *, s);
|
---|
439 | vfprintf (stderr, s, p);
|
---|
440 | VA_CLOSE (p);
|
---|
441 |
|
---|
442 | fprintf (stderr, "\n");
|
---|
443 | }
|
---|
444 |
|
---|
445 | /* This is a function pointer to the routine which should handle BFD
|
---|
446 | error messages. It is called when a BFD routine encounters an
|
---|
447 | error for which it wants to print a message. Going through a
|
---|
448 | function pointer permits a program linked against BFD to intercept
|
---|
449 | the messages and deal with them itself. */
|
---|
450 |
|
---|
451 | bfd_error_handler_type _bfd_error_handler = _bfd_default_error_handler;
|
---|
452 |
|
---|
453 | /*
|
---|
454 | FUNCTION
|
---|
455 | bfd_set_error_handler
|
---|
456 |
|
---|
457 | SYNOPSIS
|
---|
458 | bfd_error_handler_type bfd_set_error_handler (bfd_error_handler_type);
|
---|
459 |
|
---|
460 | DESCRIPTION
|
---|
461 | Set the BFD error handler function. Returns the previous
|
---|
462 | function.
|
---|
463 | */
|
---|
464 |
|
---|
465 | bfd_error_handler_type
|
---|
466 | bfd_set_error_handler (pnew)
|
---|
467 | bfd_error_handler_type pnew;
|
---|
468 | {
|
---|
469 | bfd_error_handler_type pold;
|
---|
470 |
|
---|
471 | pold = _bfd_error_handler;
|
---|
472 | _bfd_error_handler = pnew;
|
---|
473 | return pold;
|
---|
474 | }
|
---|
475 |
|
---|
476 | /*
|
---|
477 | FUNCTION
|
---|
478 | bfd_set_error_program_name
|
---|
479 |
|
---|
480 | SYNOPSIS
|
---|
481 | void bfd_set_error_program_name (const char *);
|
---|
482 |
|
---|
483 | DESCRIPTION
|
---|
484 | Set the program name to use when printing a BFD error. This
|
---|
485 | is printed before the error message followed by a colon and
|
---|
486 | space. The string must not be changed after it is passed to
|
---|
487 | this function.
|
---|
488 | */
|
---|
489 |
|
---|
490 | void
|
---|
491 | bfd_set_error_program_name (name)
|
---|
492 | const char *name;
|
---|
493 | {
|
---|
494 | _bfd_error_program_name = name;
|
---|
495 | }
|
---|
496 |
|
---|
497 | /*
|
---|
498 | FUNCTION
|
---|
499 | bfd_get_error_handler
|
---|
500 |
|
---|
501 | SYNOPSIS
|
---|
502 | bfd_error_handler_type bfd_get_error_handler (void);
|
---|
503 |
|
---|
504 | DESCRIPTION
|
---|
505 | Return the BFD error handler function.
|
---|
506 | */
|
---|
507 |
|
---|
508 | bfd_error_handler_type
|
---|
509 | bfd_get_error_handler ()
|
---|
510 | {
|
---|
511 | return _bfd_error_handler;
|
---|
512 | }
|
---|
513 |
|
---|
514 | /*
|
---|
515 | FUNCTION
|
---|
516 | bfd_archive_filename
|
---|
517 |
|
---|
518 | SYNOPSIS
|
---|
519 | const char *bfd_archive_filename (bfd *);
|
---|
520 |
|
---|
521 | DESCRIPTION
|
---|
522 | For a BFD that is a component of an archive, returns a string
|
---|
523 | with both the archive name and file name. For other BFDs, just
|
---|
524 | returns the file name.
|
---|
525 | */
|
---|
526 |
|
---|
527 | const char *
|
---|
528 | bfd_archive_filename (abfd)
|
---|
529 | bfd *abfd;
|
---|
530 | {
|
---|
531 | if (abfd->my_archive)
|
---|
532 | {
|
---|
533 | static size_t curr = 0;
|
---|
534 | static char *buf;
|
---|
535 | size_t needed;
|
---|
536 |
|
---|
537 | needed = (strlen (bfd_get_filename (abfd->my_archive))
|
---|
538 | + strlen (bfd_get_filename (abfd)) + 3);
|
---|
539 | if (needed > curr)
|
---|
540 | {
|
---|
541 | if (curr)
|
---|
542 | free (buf);
|
---|
543 | curr = needed + (needed >> 1);
|
---|
544 | buf = bfd_malloc ((bfd_size_type) curr);
|
---|
545 | /* If we can't malloc, fail safe by returning just the file
|
---|
546 | name. This function is only used when building error
|
---|
547 | messages. */
|
---|
548 | if (!buf)
|
---|
549 | {
|
---|
550 | curr = 0;
|
---|
551 | return bfd_get_filename (abfd);
|
---|
552 | }
|
---|
553 | }
|
---|
554 | sprintf (buf, "%s(%s)", bfd_get_filename (abfd->my_archive),
|
---|
555 | bfd_get_filename (abfd));
|
---|
556 | return buf;
|
---|
557 | }
|
---|
558 | else
|
---|
559 | return bfd_get_filename (abfd);
|
---|
560 | }
|
---|
561 | |
---|
562 |
|
---|
563 | /*
|
---|
564 | SECTION
|
---|
565 | Symbols
|
---|
566 | */
|
---|
567 |
|
---|
568 | /*
|
---|
569 | FUNCTION
|
---|
570 | bfd_get_reloc_upper_bound
|
---|
571 |
|
---|
572 | SYNOPSIS
|
---|
573 | long bfd_get_reloc_upper_bound (bfd *abfd, asection *sect);
|
---|
574 |
|
---|
575 | DESCRIPTION
|
---|
576 | Return the number of bytes required to store the
|
---|
577 | relocation information associated with section @var{sect}
|
---|
578 | attached to bfd @var{abfd}. If an error occurs, return -1.
|
---|
579 |
|
---|
580 | */
|
---|
581 |
|
---|
582 | long
|
---|
583 | bfd_get_reloc_upper_bound (abfd, asect)
|
---|
584 | bfd *abfd;
|
---|
585 | sec_ptr asect;
|
---|
586 | {
|
---|
587 | if (abfd->format != bfd_object)
|
---|
588 | {
|
---|
589 | bfd_set_error (bfd_error_invalid_operation);
|
---|
590 | return -1;
|
---|
591 | }
|
---|
592 |
|
---|
593 | return BFD_SEND (abfd, _get_reloc_upper_bound, (abfd, asect));
|
---|
594 | }
|
---|
595 |
|
---|
596 | /*
|
---|
597 | FUNCTION
|
---|
598 | bfd_canonicalize_reloc
|
---|
599 |
|
---|
600 | SYNOPSIS
|
---|
601 | long bfd_canonicalize_reloc
|
---|
602 | (bfd *abfd,
|
---|
603 | asection *sec,
|
---|
604 | arelent **loc,
|
---|
605 | asymbol **syms);
|
---|
606 |
|
---|
607 | DESCRIPTION
|
---|
608 | Call the back end associated with the open BFD
|
---|
609 | @var{abfd} and translate the external form of the relocation
|
---|
610 | information attached to @var{sec} into the internal canonical
|
---|
611 | form. Place the table into memory at @var{loc}, which has
|
---|
612 | been preallocated, usually by a call to
|
---|
613 | <<bfd_get_reloc_upper_bound>>. Returns the number of relocs, or
|
---|
614 | -1 on error.
|
---|
615 |
|
---|
616 | The @var{syms} table is also needed for horrible internal magic
|
---|
617 | reasons.
|
---|
618 |
|
---|
619 | */
|
---|
620 | long
|
---|
621 | bfd_canonicalize_reloc (abfd, asect, location, symbols)
|
---|
622 | bfd *abfd;
|
---|
623 | sec_ptr asect;
|
---|
624 | arelent **location;
|
---|
625 | asymbol **symbols;
|
---|
626 | {
|
---|
627 | if (abfd->format != bfd_object)
|
---|
628 | {
|
---|
629 | bfd_set_error (bfd_error_invalid_operation);
|
---|
630 | return -1;
|
---|
631 | }
|
---|
632 |
|
---|
633 | return BFD_SEND (abfd, _bfd_canonicalize_reloc,
|
---|
634 | (abfd, asect, location, symbols));
|
---|
635 | }
|
---|
636 |
|
---|
637 | /*
|
---|
638 | FUNCTION
|
---|
639 | bfd_set_reloc
|
---|
640 |
|
---|
641 | SYNOPSIS
|
---|
642 | void bfd_set_reloc
|
---|
643 | (bfd *abfd, asection *sec, arelent **rel, unsigned int count);
|
---|
644 |
|
---|
645 | DESCRIPTION
|
---|
646 | Set the relocation pointer and count within
|
---|
647 | section @var{sec} to the values @var{rel} and @var{count}.
|
---|
648 | The argument @var{abfd} is ignored.
|
---|
649 |
|
---|
650 | */
|
---|
651 |
|
---|
652 | void
|
---|
653 | bfd_set_reloc (ignore_abfd, asect, location, count)
|
---|
654 | bfd *ignore_abfd ATTRIBUTE_UNUSED;
|
---|
655 | sec_ptr asect;
|
---|
656 | arelent **location;
|
---|
657 | unsigned int count;
|
---|
658 | {
|
---|
659 | asect->orelocation = location;
|
---|
660 | asect->reloc_count = count;
|
---|
661 | }
|
---|
662 |
|
---|
663 | /*
|
---|
664 | FUNCTION
|
---|
665 | bfd_set_file_flags
|
---|
666 |
|
---|
667 | SYNOPSIS
|
---|
668 | bfd_boolean bfd_set_file_flags (bfd *abfd, flagword flags);
|
---|
669 |
|
---|
670 | DESCRIPTION
|
---|
671 | Set the flag word in the BFD @var{abfd} to the value @var{flags}.
|
---|
672 |
|
---|
673 | Possible errors are:
|
---|
674 | o <<bfd_error_wrong_format>> - The target bfd was not of object format.
|
---|
675 | o <<bfd_error_invalid_operation>> - The target bfd was open for reading.
|
---|
676 | o <<bfd_error_invalid_operation>> -
|
---|
677 | The flag word contained a bit which was not applicable to the
|
---|
678 | type of file. E.g., an attempt was made to set the <<D_PAGED>> bit
|
---|
679 | on a BFD format which does not support demand paging.
|
---|
680 |
|
---|
681 | */
|
---|
682 |
|
---|
683 | bfd_boolean
|
---|
684 | bfd_set_file_flags (abfd, flags)
|
---|
685 | bfd *abfd;
|
---|
686 | flagword flags;
|
---|
687 | {
|
---|
688 | if (abfd->format != bfd_object)
|
---|
689 | {
|
---|
690 | bfd_set_error (bfd_error_wrong_format);
|
---|
691 | return FALSE;
|
---|
692 | }
|
---|
693 |
|
---|
694 | if (bfd_read_p (abfd))
|
---|
695 | {
|
---|
696 | bfd_set_error (bfd_error_invalid_operation);
|
---|
697 | return FALSE;
|
---|
698 | }
|
---|
699 |
|
---|
700 | bfd_get_file_flags (abfd) = flags;
|
---|
701 | if ((flags & bfd_applicable_file_flags (abfd)) != flags)
|
---|
702 | {
|
---|
703 | bfd_set_error (bfd_error_invalid_operation);
|
---|
704 | return FALSE;
|
---|
705 | }
|
---|
706 |
|
---|
707 | return TRUE;
|
---|
708 | }
|
---|
709 |
|
---|
710 | void
|
---|
711 | bfd_assert (file, line)
|
---|
712 | const char *file;
|
---|
713 | int line;
|
---|
714 | {
|
---|
715 | (*_bfd_error_handler) (_("BFD %s assertion fail %s:%d"),
|
---|
716 | BFD_VERSION_STRING, file, line);
|
---|
717 | }
|
---|
718 |
|
---|
719 | /* A more or less friendly abort message. In libbfd.h abort is
|
---|
720 | defined to call this function. */
|
---|
721 |
|
---|
722 | #ifndef EXIT_FAILURE
|
---|
723 | #define EXIT_FAILURE 1
|
---|
724 | #endif
|
---|
725 |
|
---|
726 | void
|
---|
727 | _bfd_abort (file, line, fn)
|
---|
728 | const char *file;
|
---|
729 | int line;
|
---|
730 | const char *fn;
|
---|
731 | {
|
---|
732 | if (fn != NULL)
|
---|
733 | (*_bfd_error_handler)
|
---|
734 | (_("BFD %s internal error, aborting at %s line %d in %s\n"),
|
---|
735 | BFD_VERSION_STRING, file, line, fn);
|
---|
736 | else
|
---|
737 | (*_bfd_error_handler)
|
---|
738 | (_("BFD %s internal error, aborting at %s line %d\n"),
|
---|
739 | BFD_VERSION_STRING, file, line);
|
---|
740 | (*_bfd_error_handler) (_("Please report this bug.\n"));
|
---|
741 | xexit (EXIT_FAILURE);
|
---|
742 | }
|
---|
743 |
|
---|
744 | /*
|
---|
745 | FUNCTION
|
---|
746 | bfd_get_arch_size
|
---|
747 |
|
---|
748 | SYNOPSIS
|
---|
749 | int bfd_get_arch_size (bfd *abfd);
|
---|
750 |
|
---|
751 | DESCRIPTION
|
---|
752 | Returns the architecture address size, in bits, as determined
|
---|
753 | by the object file's format. For ELF, this information is
|
---|
754 | included in the header.
|
---|
755 |
|
---|
756 | RETURNS
|
---|
757 | Returns the arch size in bits if known, <<-1>> otherwise.
|
---|
758 | */
|
---|
759 |
|
---|
760 | int
|
---|
761 | bfd_get_arch_size (abfd)
|
---|
762 | bfd *abfd;
|
---|
763 | {
|
---|
764 | if (abfd->xvec->flavour == bfd_target_elf_flavour)
|
---|
765 | return (get_elf_backend_data (abfd))->s->arch_size;
|
---|
766 |
|
---|
767 | return -1;
|
---|
768 | }
|
---|
769 |
|
---|
770 | /*
|
---|
771 | FUNCTION
|
---|
772 | bfd_get_sign_extend_vma
|
---|
773 |
|
---|
774 | SYNOPSIS
|
---|
775 | int bfd_get_sign_extend_vma (bfd *abfd);
|
---|
776 |
|
---|
777 | DESCRIPTION
|
---|
778 | Indicates if the target architecture "naturally" sign extends
|
---|
779 | an address. Some architectures implicitly sign extend address
|
---|
780 | values when they are converted to types larger than the size
|
---|
781 | of an address. For instance, bfd_get_start_address() will
|
---|
782 | return an address sign extended to fill a bfd_vma when this is
|
---|
783 | the case.
|
---|
784 |
|
---|
785 | RETURNS
|
---|
786 | Returns <<1>> if the target architecture is known to sign
|
---|
787 | extend addresses, <<0>> if the target architecture is known to
|
---|
788 | not sign extend addresses, and <<-1>> otherwise.
|
---|
789 | */
|
---|
790 |
|
---|
791 | int
|
---|
792 | bfd_get_sign_extend_vma (abfd)
|
---|
793 | bfd *abfd;
|
---|
794 | {
|
---|
795 | char *name;
|
---|
796 |
|
---|
797 | if (bfd_get_flavour (abfd) == bfd_target_elf_flavour)
|
---|
798 | return (get_elf_backend_data (abfd)->sign_extend_vma);
|
---|
799 |
|
---|
800 | name = bfd_get_target (abfd);
|
---|
801 |
|
---|
802 | /* Return a proper value for DJGPP COFF (an x86 COFF variant).
|
---|
803 | This function is required for DWARF2 support, but there is
|
---|
804 | no place to store this information in the COFF back end.
|
---|
805 | Should enough other COFF targets add support for DWARF2,
|
---|
806 | a place will have to be found. Until then, this hack will do. */
|
---|
807 | if (strncmp (name, "coff-go32", sizeof ("coff-go32") - 1) == 0)
|
---|
808 | return 1;
|
---|
809 |
|
---|
810 | bfd_set_error (bfd_error_wrong_format);
|
---|
811 | return -1;
|
---|
812 | }
|
---|
813 |
|
---|
814 | /*
|
---|
815 | FUNCTION
|
---|
816 | bfd_set_start_address
|
---|
817 |
|
---|
818 | SYNOPSIS
|
---|
819 | bfd_boolean bfd_set_start_address (bfd *abfd, bfd_vma vma);
|
---|
820 |
|
---|
821 | DESCRIPTION
|
---|
822 | Make @var{vma} the entry point of output BFD @var{abfd}.
|
---|
823 |
|
---|
824 | RETURNS
|
---|
825 | Returns <<TRUE>> on success, <<FALSE>> otherwise.
|
---|
826 | */
|
---|
827 |
|
---|
828 | bfd_boolean
|
---|
829 | bfd_set_start_address (abfd, vma)
|
---|
830 | bfd *abfd;
|
---|
831 | bfd_vma vma;
|
---|
832 | {
|
---|
833 | abfd->start_address = vma;
|
---|
834 | return TRUE;
|
---|
835 | }
|
---|
836 |
|
---|
837 | /*
|
---|
838 | FUNCTION
|
---|
839 | bfd_get_gp_size
|
---|
840 |
|
---|
841 | SYNOPSIS
|
---|
842 | unsigned int bfd_get_gp_size (bfd *abfd);
|
---|
843 |
|
---|
844 | DESCRIPTION
|
---|
845 | Return the maximum size of objects to be optimized using the GP
|
---|
846 | register under MIPS ECOFF. This is typically set by the <<-G>>
|
---|
847 | argument to the compiler, assembler or linker.
|
---|
848 | */
|
---|
849 |
|
---|
850 | unsigned int
|
---|
851 | bfd_get_gp_size (abfd)
|
---|
852 | bfd *abfd;
|
---|
853 | {
|
---|
854 | if (abfd->format == bfd_object)
|
---|
855 | {
|
---|
856 | if (abfd->xvec->flavour == bfd_target_ecoff_flavour)
|
---|
857 | return ecoff_data (abfd)->gp_size;
|
---|
858 | else if (abfd->xvec->flavour == bfd_target_elf_flavour)
|
---|
859 | return elf_gp_size (abfd);
|
---|
860 | }
|
---|
861 | return 0;
|
---|
862 | }
|
---|
863 |
|
---|
864 | /*
|
---|
865 | FUNCTION
|
---|
866 | bfd_set_gp_size
|
---|
867 |
|
---|
868 | SYNOPSIS
|
---|
869 | void bfd_set_gp_size (bfd *abfd, unsigned int i);
|
---|
870 |
|
---|
871 | DESCRIPTION
|
---|
872 | Set the maximum size of objects to be optimized using the GP
|
---|
873 | register under ECOFF or MIPS ELF. This is typically set by
|
---|
874 | the <<-G>> argument to the compiler, assembler or linker.
|
---|
875 | */
|
---|
876 |
|
---|
877 | void
|
---|
878 | bfd_set_gp_size (abfd, i)
|
---|
879 | bfd *abfd;
|
---|
880 | unsigned int i;
|
---|
881 | {
|
---|
882 | /* Don't try to set GP size on an archive or core file! */
|
---|
883 | if (abfd->format != bfd_object)
|
---|
884 | return;
|
---|
885 |
|
---|
886 | if (abfd->xvec->flavour == bfd_target_ecoff_flavour)
|
---|
887 | ecoff_data (abfd)->gp_size = i;
|
---|
888 | else if (abfd->xvec->flavour == bfd_target_elf_flavour)
|
---|
889 | elf_gp_size (abfd) = i;
|
---|
890 | }
|
---|
891 |
|
---|
892 | /* Get the GP value. This is an internal function used by some of the
|
---|
893 | relocation special_function routines on targets which support a GP
|
---|
894 | register. */
|
---|
895 |
|
---|
896 | bfd_vma
|
---|
897 | _bfd_get_gp_value (abfd)
|
---|
898 | bfd *abfd;
|
---|
899 | {
|
---|
900 | if (abfd->format != bfd_object)
|
---|
901 | return 0;
|
---|
902 |
|
---|
903 | if (abfd->xvec->flavour == bfd_target_ecoff_flavour)
|
---|
904 | return ecoff_data (abfd)->gp;
|
---|
905 | else if (abfd->xvec->flavour == bfd_target_elf_flavour)
|
---|
906 | return elf_gp (abfd);
|
---|
907 |
|
---|
908 | return 0;
|
---|
909 | }
|
---|
910 |
|
---|
911 | /* Set the GP value. */
|
---|
912 |
|
---|
913 | void
|
---|
914 | _bfd_set_gp_value (abfd, v)
|
---|
915 | bfd *abfd;
|
---|
916 | bfd_vma v;
|
---|
917 | {
|
---|
918 | if (abfd->format != bfd_object)
|
---|
919 | return;
|
---|
920 |
|
---|
921 | if (abfd->xvec->flavour == bfd_target_ecoff_flavour)
|
---|
922 | ecoff_data (abfd)->gp = v;
|
---|
923 | else if (abfd->xvec->flavour == bfd_target_elf_flavour)
|
---|
924 | elf_gp (abfd) = v;
|
---|
925 | }
|
---|
926 |
|
---|
927 | /*
|
---|
928 | FUNCTION
|
---|
929 | bfd_scan_vma
|
---|
930 |
|
---|
931 | SYNOPSIS
|
---|
932 | bfd_vma bfd_scan_vma (const char *string, const char **end, int base);
|
---|
933 |
|
---|
934 | DESCRIPTION
|
---|
935 | Convert, like <<strtoul>>, a numerical expression
|
---|
936 | @var{string} into a <<bfd_vma>> integer, and return that integer.
|
---|
937 | (Though without as many bells and whistles as <<strtoul>>.)
|
---|
938 | The expression is assumed to be unsigned (i.e., positive).
|
---|
939 | If given a @var{base}, it is used as the base for conversion.
|
---|
940 | A base of 0 causes the function to interpret the string
|
---|
941 | in hex if a leading "0x" or "0X" is found, otherwise
|
---|
942 | in octal if a leading zero is found, otherwise in decimal.
|
---|
943 |
|
---|
944 | If the value would overflow, the maximum <<bfd_vma>> value is
|
---|
945 | returned.
|
---|
946 | */
|
---|
947 |
|
---|
948 | bfd_vma
|
---|
949 | bfd_scan_vma (string, end, base)
|
---|
950 | const char *string;
|
---|
951 | const char **end;
|
---|
952 | int base;
|
---|
953 | {
|
---|
954 | bfd_vma value;
|
---|
955 | bfd_vma cutoff;
|
---|
956 | unsigned int cutlim;
|
---|
957 | int overflow;
|
---|
958 |
|
---|
959 | /* Let the host do it if possible. */
|
---|
960 | if (sizeof (bfd_vma) <= sizeof (unsigned long))
|
---|
961 | return (bfd_vma) strtoul (string, (char **) end, base);
|
---|
962 |
|
---|
963 | if (base == 0)
|
---|
964 | {
|
---|
965 | if (string[0] == '0')
|
---|
966 | {
|
---|
967 | if ((string[1] == 'x') || (string[1] == 'X'))
|
---|
968 | base = 16;
|
---|
969 | else
|
---|
970 | base = 8;
|
---|
971 | }
|
---|
972 | }
|
---|
973 |
|
---|
974 | if ((base < 2) || (base > 36))
|
---|
975 | base = 10;
|
---|
976 |
|
---|
977 | if (base == 16
|
---|
978 | && string[0] == '0'
|
---|
979 | && (string[1] == 'x' || string[1] == 'X')
|
---|
980 | && ISXDIGIT (string[2]))
|
---|
981 | {
|
---|
982 | string += 2;
|
---|
983 | }
|
---|
984 |
|
---|
985 | cutoff = (~ (bfd_vma) 0) / (bfd_vma) base;
|
---|
986 | cutlim = (~ (bfd_vma) 0) % (bfd_vma) base;
|
---|
987 | value = 0;
|
---|
988 | overflow = 0;
|
---|
989 | while (1)
|
---|
990 | {
|
---|
991 | unsigned int digit;
|
---|
992 |
|
---|
993 | digit = *string;
|
---|
994 | if (ISDIGIT (digit))
|
---|
995 | digit = digit - '0';
|
---|
996 | else if (ISALPHA (digit))
|
---|
997 | digit = TOUPPER (digit) - 'A' + 10;
|
---|
998 | else
|
---|
999 | break;
|
---|
1000 | if (digit >= (unsigned int) base)
|
---|
1001 | break;
|
---|
1002 | if (value > cutoff || (value == cutoff && digit > cutlim))
|
---|
1003 | overflow = 1;
|
---|
1004 | value = value * base + digit;
|
---|
1005 | ++string;
|
---|
1006 | }
|
---|
1007 |
|
---|
1008 | if (overflow)
|
---|
1009 | value = ~ (bfd_vma) 0;
|
---|
1010 |
|
---|
1011 | if (end != NULL)
|
---|
1012 | *end = string;
|
---|
1013 |
|
---|
1014 | return value;
|
---|
1015 | }
|
---|
1016 |
|
---|
1017 | /*
|
---|
1018 | FUNCTION
|
---|
1019 | bfd_copy_private_bfd_data
|
---|
1020 |
|
---|
1021 | SYNOPSIS
|
---|
1022 | bfd_boolean bfd_copy_private_bfd_data (bfd *ibfd, bfd *obfd);
|
---|
1023 |
|
---|
1024 | DESCRIPTION
|
---|
1025 | Copy private BFD information from the BFD @var{ibfd} to the
|
---|
1026 | the BFD @var{obfd}. Return <<TRUE>> on success, <<FALSE>> on error.
|
---|
1027 | Possible error returns are:
|
---|
1028 |
|
---|
1029 | o <<bfd_error_no_memory>> -
|
---|
1030 | Not enough memory exists to create private data for @var{obfd}.
|
---|
1031 |
|
---|
1032 | .#define bfd_copy_private_bfd_data(ibfd, obfd) \
|
---|
1033 | . BFD_SEND (obfd, _bfd_copy_private_bfd_data, \
|
---|
1034 | . (ibfd, obfd))
|
---|
1035 |
|
---|
1036 | */
|
---|
1037 |
|
---|
1038 | /*
|
---|
1039 | FUNCTION
|
---|
1040 | bfd_merge_private_bfd_data
|
---|
1041 |
|
---|
1042 | SYNOPSIS
|
---|
1043 | bfd_boolean bfd_merge_private_bfd_data (bfd *ibfd, bfd *obfd);
|
---|
1044 |
|
---|
1045 | DESCRIPTION
|
---|
1046 | Merge private BFD information from the BFD @var{ibfd} to the
|
---|
1047 | the output file BFD @var{obfd} when linking. Return <<TRUE>>
|
---|
1048 | on success, <<FALSE>> on error. Possible error returns are:
|
---|
1049 |
|
---|
1050 | o <<bfd_error_no_memory>> -
|
---|
1051 | Not enough memory exists to create private data for @var{obfd}.
|
---|
1052 |
|
---|
1053 | .#define bfd_merge_private_bfd_data(ibfd, obfd) \
|
---|
1054 | . BFD_SEND (obfd, _bfd_merge_private_bfd_data, \
|
---|
1055 | . (ibfd, obfd))
|
---|
1056 |
|
---|
1057 | */
|
---|
1058 |
|
---|
1059 | /*
|
---|
1060 | FUNCTION
|
---|
1061 | bfd_set_private_flags
|
---|
1062 |
|
---|
1063 | SYNOPSIS
|
---|
1064 | bfd_boolean bfd_set_private_flags (bfd *abfd, flagword flags);
|
---|
1065 |
|
---|
1066 | DESCRIPTION
|
---|
1067 | Set private BFD flag information in the BFD @var{abfd}.
|
---|
1068 | Return <<TRUE>> on success, <<FALSE>> on error. Possible error
|
---|
1069 | returns are:
|
---|
1070 |
|
---|
1071 | o <<bfd_error_no_memory>> -
|
---|
1072 | Not enough memory exists to create private data for @var{obfd}.
|
---|
1073 |
|
---|
1074 | .#define bfd_set_private_flags(abfd, flags) \
|
---|
1075 | . BFD_SEND (abfd, _bfd_set_private_flags, (abfd, flags))
|
---|
1076 |
|
---|
1077 | */
|
---|
1078 |
|
---|
1079 | /*
|
---|
1080 | FUNCTION
|
---|
1081 | Other functions
|
---|
1082 |
|
---|
1083 | DESCRIPTION
|
---|
1084 | The following functions exist but have not yet been documented.
|
---|
1085 |
|
---|
1086 | .#define bfd_sizeof_headers(abfd, reloc) \
|
---|
1087 | . BFD_SEND (abfd, _bfd_sizeof_headers, (abfd, reloc))
|
---|
1088 | .
|
---|
1089 | .#define bfd_find_nearest_line(abfd, sec, syms, off, file, func, line) \
|
---|
1090 | . BFD_SEND (abfd, _bfd_find_nearest_line, \
|
---|
1091 | . (abfd, sec, syms, off, file, func, line))
|
---|
1092 | .
|
---|
1093 | .#define bfd_debug_info_start(abfd) \
|
---|
1094 | . BFD_SEND (abfd, _bfd_debug_info_start, (abfd))
|
---|
1095 | .
|
---|
1096 | .#define bfd_debug_info_end(abfd) \
|
---|
1097 | . BFD_SEND (abfd, _bfd_debug_info_end, (abfd))
|
---|
1098 | .
|
---|
1099 | .#define bfd_debug_info_accumulate(abfd, section) \
|
---|
1100 | . BFD_SEND (abfd, _bfd_debug_info_accumulate, (abfd, section))
|
---|
1101 | .
|
---|
1102 | .#define bfd_stat_arch_elt(abfd, stat) \
|
---|
1103 | . BFD_SEND (abfd, _bfd_stat_arch_elt,(abfd, stat))
|
---|
1104 | .
|
---|
1105 | .#define bfd_update_armap_timestamp(abfd) \
|
---|
1106 | . BFD_SEND (abfd, _bfd_update_armap_timestamp, (abfd))
|
---|
1107 | .
|
---|
1108 | .#define bfd_set_arch_mach(abfd, arch, mach)\
|
---|
1109 | . BFD_SEND ( abfd, _bfd_set_arch_mach, (abfd, arch, mach))
|
---|
1110 | .
|
---|
1111 | .#define bfd_relax_section(abfd, section, link_info, again) \
|
---|
1112 | . BFD_SEND (abfd, _bfd_relax_section, (abfd, section, link_info, again))
|
---|
1113 | .
|
---|
1114 | .#define bfd_gc_sections(abfd, link_info) \
|
---|
1115 | . BFD_SEND (abfd, _bfd_gc_sections, (abfd, link_info))
|
---|
1116 | .
|
---|
1117 | .#define bfd_merge_sections(abfd, link_info) \
|
---|
1118 | . BFD_SEND (abfd, _bfd_merge_sections, (abfd, link_info))
|
---|
1119 | .
|
---|
1120 | .#define bfd_discard_group(abfd, sec) \
|
---|
1121 | . BFD_SEND (abfd, _bfd_discard_group, (abfd, sec))
|
---|
1122 | .
|
---|
1123 | .#define bfd_link_hash_table_create(abfd) \
|
---|
1124 | . BFD_SEND (abfd, _bfd_link_hash_table_create, (abfd))
|
---|
1125 | .
|
---|
1126 | .#define bfd_link_hash_table_free(abfd, hash) \
|
---|
1127 | . BFD_SEND (abfd, _bfd_link_hash_table_free, (hash))
|
---|
1128 | .
|
---|
1129 | .#define bfd_link_add_symbols(abfd, info) \
|
---|
1130 | . BFD_SEND (abfd, _bfd_link_add_symbols, (abfd, info))
|
---|
1131 | .
|
---|
1132 | .#define bfd_link_just_syms(sec, info) \
|
---|
1133 | . BFD_SEND (abfd, _bfd_link_just_syms, (sec, info))
|
---|
1134 | .
|
---|
1135 | .#define bfd_final_link(abfd, info) \
|
---|
1136 | . BFD_SEND (abfd, _bfd_final_link, (abfd, info))
|
---|
1137 | .
|
---|
1138 | .#define bfd_free_cached_info(abfd) \
|
---|
1139 | . BFD_SEND (abfd, _bfd_free_cached_info, (abfd))
|
---|
1140 | .
|
---|
1141 | .#define bfd_get_dynamic_symtab_upper_bound(abfd) \
|
---|
1142 | . BFD_SEND (abfd, _bfd_get_dynamic_symtab_upper_bound, (abfd))
|
---|
1143 | .
|
---|
1144 | .#define bfd_print_private_bfd_data(abfd, file)\
|
---|
1145 | . BFD_SEND (abfd, _bfd_print_private_bfd_data, (abfd, file))
|
---|
1146 | .
|
---|
1147 | .#define bfd_canonicalize_dynamic_symtab(abfd, asymbols) \
|
---|
1148 | . BFD_SEND (abfd, _bfd_canonicalize_dynamic_symtab, (abfd, asymbols))
|
---|
1149 | .
|
---|
1150 | .#define bfd_get_dynamic_reloc_upper_bound(abfd) \
|
---|
1151 | . BFD_SEND (abfd, _bfd_get_dynamic_reloc_upper_bound, (abfd))
|
---|
1152 | .
|
---|
1153 | .#define bfd_canonicalize_dynamic_reloc(abfd, arels, asyms) \
|
---|
1154 | . BFD_SEND (abfd, _bfd_canonicalize_dynamic_reloc, (abfd, arels, asyms))
|
---|
1155 | .
|
---|
1156 | .extern bfd_byte *bfd_get_relocated_section_contents
|
---|
1157 | . PARAMS ((bfd *, struct bfd_link_info *,
|
---|
1158 | . struct bfd_link_order *, bfd_byte *,
|
---|
1159 | . bfd_boolean, asymbol **));
|
---|
1160 | .
|
---|
1161 |
|
---|
1162 | */
|
---|
1163 |
|
---|
1164 | bfd_byte *
|
---|
1165 | bfd_get_relocated_section_contents (abfd, link_info, link_order, data,
|
---|
1166 | relocateable, symbols)
|
---|
1167 | bfd *abfd;
|
---|
1168 | struct bfd_link_info *link_info;
|
---|
1169 | struct bfd_link_order *link_order;
|
---|
1170 | bfd_byte *data;
|
---|
1171 | bfd_boolean relocateable;
|
---|
1172 | asymbol **symbols;
|
---|
1173 | {
|
---|
1174 | bfd *abfd2;
|
---|
1175 | bfd_byte *(*fn) PARAMS ((bfd *, struct bfd_link_info *,
|
---|
1176 | struct bfd_link_order *, bfd_byte *, bfd_boolean,
|
---|
1177 | asymbol **));
|
---|
1178 |
|
---|
1179 | if (link_order->type == bfd_indirect_link_order)
|
---|
1180 | {
|
---|
1181 | abfd2 = link_order->u.indirect.section->owner;
|
---|
1182 | if (abfd2 == NULL)
|
---|
1183 | abfd2 = abfd;
|
---|
1184 | }
|
---|
1185 | else
|
---|
1186 | abfd2 = abfd;
|
---|
1187 |
|
---|
1188 | fn = abfd2->xvec->_bfd_get_relocated_section_contents;
|
---|
1189 |
|
---|
1190 | return (*fn) (abfd, link_info, link_order, data, relocateable, symbols);
|
---|
1191 | }
|
---|
1192 |
|
---|
1193 | /* Record information about an ELF program header. */
|
---|
1194 |
|
---|
1195 | bfd_boolean
|
---|
1196 | bfd_record_phdr (abfd, type, flags_valid, flags, at_valid, at,
|
---|
1197 | includes_filehdr, includes_phdrs, count, secs)
|
---|
1198 | bfd *abfd;
|
---|
1199 | unsigned long type;
|
---|
1200 | bfd_boolean flags_valid;
|
---|
1201 | flagword flags;
|
---|
1202 | bfd_boolean at_valid;
|
---|
1203 | bfd_vma at;
|
---|
1204 | bfd_boolean includes_filehdr;
|
---|
1205 | bfd_boolean includes_phdrs;
|
---|
1206 | unsigned int count;
|
---|
1207 | asection **secs;
|
---|
1208 | {
|
---|
1209 | struct elf_segment_map *m, **pm;
|
---|
1210 | bfd_size_type amt;
|
---|
1211 |
|
---|
1212 | if (bfd_get_flavour (abfd) != bfd_target_elf_flavour)
|
---|
1213 | return TRUE;
|
---|
1214 |
|
---|
1215 | amt = sizeof (struct elf_segment_map);
|
---|
1216 | amt += ((bfd_size_type) count - 1) * sizeof (asection *);
|
---|
1217 | m = (struct elf_segment_map *) bfd_alloc (abfd, amt);
|
---|
1218 | if (m == NULL)
|
---|
1219 | return FALSE;
|
---|
1220 |
|
---|
1221 | m->next = NULL;
|
---|
1222 | m->p_type = type;
|
---|
1223 | m->p_flags = flags;
|
---|
1224 | m->p_paddr = at;
|
---|
1225 | m->p_flags_valid = (unsigned int) flags_valid;
|
---|
1226 | m->p_paddr_valid = (unsigned int) at_valid;
|
---|
1227 | m->includes_filehdr = (unsigned int) includes_filehdr;
|
---|
1228 | m->includes_phdrs = (unsigned int) includes_phdrs;
|
---|
1229 | m->count = count;
|
---|
1230 | if (count > 0)
|
---|
1231 | memcpy (m->sections, secs, count * sizeof (asection *));
|
---|
1232 |
|
---|
1233 | for (pm = &elf_tdata (abfd)->segment_map; *pm != NULL; pm = &(*pm)->next)
|
---|
1234 | ;
|
---|
1235 | *pm = m;
|
---|
1236 |
|
---|
1237 | return TRUE;
|
---|
1238 | }
|
---|
1239 |
|
---|
1240 | void
|
---|
1241 | bfd_sprintf_vma (abfd, buf, value)
|
---|
1242 | bfd *abfd;
|
---|
1243 | char *buf;
|
---|
1244 | bfd_vma value;
|
---|
1245 | {
|
---|
1246 | if (bfd_get_flavour (abfd) == bfd_target_elf_flavour)
|
---|
1247 | get_elf_backend_data (abfd)->elf_backend_sprintf_vma (abfd, buf, value);
|
---|
1248 | else
|
---|
1249 | sprintf_vma (buf, value);
|
---|
1250 | }
|
---|
1251 |
|
---|
1252 | void
|
---|
1253 | bfd_fprintf_vma (abfd, stream, value)
|
---|
1254 | bfd *abfd;
|
---|
1255 | PTR stream;
|
---|
1256 | bfd_vma value;
|
---|
1257 | {
|
---|
1258 | if (bfd_get_flavour (abfd) == bfd_target_elf_flavour)
|
---|
1259 | get_elf_backend_data (abfd)->elf_backend_fprintf_vma (abfd, stream, value);
|
---|
1260 | else
|
---|
1261 | fprintf_vma ((FILE *) stream, value);
|
---|
1262 | }
|
---|
1263 |
|
---|
1264 | /*
|
---|
1265 | FUNCTION
|
---|
1266 | bfd_alt_mach_code
|
---|
1267 |
|
---|
1268 | SYNOPSIS
|
---|
1269 | bfd_boolean bfd_alt_mach_code (bfd *abfd, int alternative);
|
---|
1270 |
|
---|
1271 | DESCRIPTION
|
---|
1272 |
|
---|
1273 | When more than one machine code number is available for the
|
---|
1274 | same machine type, this function can be used to switch between
|
---|
1275 | the preferred one (alternative == 0) and any others. Currently,
|
---|
1276 | only ELF supports this feature, with up to two alternate
|
---|
1277 | machine codes.
|
---|
1278 | */
|
---|
1279 |
|
---|
1280 | bfd_boolean
|
---|
1281 | bfd_alt_mach_code (abfd, alternative)
|
---|
1282 | bfd *abfd;
|
---|
1283 | int alternative;
|
---|
1284 | {
|
---|
1285 | if (bfd_get_flavour (abfd) == bfd_target_elf_flavour)
|
---|
1286 | {
|
---|
1287 | int code;
|
---|
1288 |
|
---|
1289 | switch (alternative)
|
---|
1290 | {
|
---|
1291 | case 0:
|
---|
1292 | code = get_elf_backend_data (abfd)->elf_machine_code;
|
---|
1293 | break;
|
---|
1294 |
|
---|
1295 | case 1:
|
---|
1296 | code = get_elf_backend_data (abfd)->elf_machine_alt1;
|
---|
1297 | if (code == 0)
|
---|
1298 | return FALSE;
|
---|
1299 | break;
|
---|
1300 |
|
---|
1301 | case 2:
|
---|
1302 | code = get_elf_backend_data (abfd)->elf_machine_alt2;
|
---|
1303 | if (code == 0)
|
---|
1304 | return FALSE;
|
---|
1305 | break;
|
---|
1306 |
|
---|
1307 | default:
|
---|
1308 | return FALSE;
|
---|
1309 | }
|
---|
1310 |
|
---|
1311 | elf_elfheader (abfd)->e_machine = code;
|
---|
1312 |
|
---|
1313 | return TRUE;
|
---|
1314 | }
|
---|
1315 |
|
---|
1316 | return FALSE;
|
---|
1317 | }
|
---|
1318 |
|
---|
1319 | /*
|
---|
1320 | CODE_FRAGMENT
|
---|
1321 |
|
---|
1322 | .struct bfd_preserve
|
---|
1323 | .{
|
---|
1324 | . PTR marker;
|
---|
1325 | . PTR tdata;
|
---|
1326 | . flagword flags;
|
---|
1327 | . const struct bfd_arch_info *arch_info;
|
---|
1328 | . struct sec *sections;
|
---|
1329 | . struct sec **section_tail;
|
---|
1330 | . unsigned int section_count;
|
---|
1331 | . struct bfd_hash_table section_htab;
|
---|
1332 | .};
|
---|
1333 | .
|
---|
1334 | */
|
---|
1335 |
|
---|
1336 | /*
|
---|
1337 | FUNCTION
|
---|
1338 | bfd_preserve_save
|
---|
1339 |
|
---|
1340 | SYNOPSIS
|
---|
1341 | bfd_boolean bfd_preserve_save (bfd *, struct bfd_preserve *);
|
---|
1342 |
|
---|
1343 | DESCRIPTION
|
---|
1344 | When testing an object for compatibility with a particular
|
---|
1345 | target back-end, the back-end object_p function needs to set
|
---|
1346 | up certain fields in the bfd on successfully recognizing the
|
---|
1347 | object. This typically happens in a piecemeal fashion, with
|
---|
1348 | failures possible at many points. On failure, the bfd is
|
---|
1349 | supposed to be restored to its initial state, which is
|
---|
1350 | virtually impossible. However, restoring a subset of the bfd
|
---|
1351 | state works in practice. This function stores the subset and
|
---|
1352 | reinitializes the bfd.
|
---|
1353 |
|
---|
1354 | */
|
---|
1355 |
|
---|
1356 | bfd_boolean
|
---|
1357 | bfd_preserve_save (abfd, preserve)
|
---|
1358 | bfd *abfd;
|
---|
1359 | struct bfd_preserve *preserve;
|
---|
1360 | {
|
---|
1361 | preserve->tdata = abfd->tdata.any;
|
---|
1362 | preserve->arch_info = abfd->arch_info;
|
---|
1363 | preserve->flags = abfd->flags;
|
---|
1364 | preserve->sections = abfd->sections;
|
---|
1365 | preserve->section_tail = abfd->section_tail;
|
---|
1366 | preserve->section_count = abfd->section_count;
|
---|
1367 | preserve->section_htab = abfd->section_htab;
|
---|
1368 |
|
---|
1369 | if (! bfd_hash_table_init (&abfd->section_htab, bfd_section_hash_newfunc))
|
---|
1370 | return FALSE;
|
---|
1371 |
|
---|
1372 | abfd->tdata.any = NULL;
|
---|
1373 | abfd->arch_info = &bfd_default_arch_struct;
|
---|
1374 | abfd->flags &= BFD_IN_MEMORY;
|
---|
1375 | abfd->sections = NULL;
|
---|
1376 | abfd->section_tail = &abfd->sections;
|
---|
1377 | abfd->section_count = 0;
|
---|
1378 |
|
---|
1379 | return TRUE;
|
---|
1380 | }
|
---|
1381 |
|
---|
1382 | /*
|
---|
1383 | FUNCTION
|
---|
1384 | bfd_preserve_restore
|
---|
1385 |
|
---|
1386 | SYNOPSIS
|
---|
1387 | void bfd_preserve_restore (bfd *, struct bfd_preserve *);
|
---|
1388 |
|
---|
1389 | DESCRIPTION
|
---|
1390 | This function restores bfd state saved by bfd_preserve_save.
|
---|
1391 | If MARKER is non-NULL in struct bfd_preserve then that block
|
---|
1392 | and all subsequently bfd_alloc'd memory is freed.
|
---|
1393 |
|
---|
1394 | */
|
---|
1395 |
|
---|
1396 | void
|
---|
1397 | bfd_preserve_restore (abfd, preserve)
|
---|
1398 | bfd *abfd;
|
---|
1399 | struct bfd_preserve *preserve;
|
---|
1400 | {
|
---|
1401 | bfd_hash_table_free (&abfd->section_htab);
|
---|
1402 |
|
---|
1403 | abfd->tdata.any = preserve->tdata;
|
---|
1404 | abfd->arch_info = preserve->arch_info;
|
---|
1405 | abfd->flags = preserve->flags;
|
---|
1406 | abfd->section_htab = preserve->section_htab;
|
---|
1407 | abfd->sections = preserve->sections;
|
---|
1408 | abfd->section_tail = preserve->section_tail;
|
---|
1409 | abfd->section_count = preserve->section_count;
|
---|
1410 |
|
---|
1411 | /* bfd_release frees all memory more recently bfd_alloc'd than
|
---|
1412 | its arg, as well as its arg. */
|
---|
1413 | if (preserve->marker != NULL)
|
---|
1414 | {
|
---|
1415 | bfd_release (abfd, preserve->marker);
|
---|
1416 | preserve->marker = NULL;
|
---|
1417 | }
|
---|
1418 | }
|
---|
1419 |
|
---|
1420 | /*
|
---|
1421 | FUNCTION
|
---|
1422 | bfd_preserve_finish
|
---|
1423 |
|
---|
1424 | SYNOPSIS
|
---|
1425 | void bfd_preserve_finish (bfd *, struct bfd_preserve *);
|
---|
1426 |
|
---|
1427 | DESCRIPTION
|
---|
1428 | This function should be called when the bfd state saved by
|
---|
1429 | bfd_preserve_save is no longer needed. ie. when the back-end
|
---|
1430 | object_p function returns with success.
|
---|
1431 |
|
---|
1432 | */
|
---|
1433 |
|
---|
1434 | void
|
---|
1435 | bfd_preserve_finish (abfd, preserve)
|
---|
1436 | bfd *abfd ATTRIBUTE_UNUSED;
|
---|
1437 | struct bfd_preserve *preserve;
|
---|
1438 | {
|
---|
1439 | /* It would be nice to be able to free more memory here, eg. old
|
---|
1440 | tdata, but that's not possible since these blocks are sitting
|
---|
1441 | inside bfd_alloc'd memory. The section hash is on a separate
|
---|
1442 | objalloc. */
|
---|
1443 | bfd_hash_table_free (&preserve->section_htab);
|
---|
1444 | }
|
---|