2001-01-23 H.J. Lu <hjl@gnu.org>
[binutils.git] / bfd / format.c
blobad4a6a8733ee619d28f859429cafe6202c4924d0
1 /* Generic BFD support for file formats.
2 Copyright (C) 1990, 91, 92, 93, 94, 95, 1999 Free Software Foundation, Inc.
3 Written by Cygnus Support.
5 This file is part of BFD, the Binary File Descriptor library.
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
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
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.
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
19 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
22 SECTION
23 File formats
25 A format is a BFD concept of high level file contents type. The
26 formats supported by BFD are:
28 o <<bfd_object>>
30 The BFD may contain data, symbols, relocations and debug info.
32 o <<bfd_archive>>
34 The BFD contains other BFDs and an optional index.
36 o <<bfd_core>>
38 The BFD contains the result of an executable core dump.
42 #include "bfd.h"
43 #include "sysdep.h"
44 #include "libbfd.h"
46 /* IMPORT from targets.c. */
47 extern const size_t _bfd_target_vector_entries;
50 FUNCTION
51 bfd_check_format
53 SYNOPSIS
54 boolean bfd_check_format(bfd *abfd, bfd_format format);
56 DESCRIPTION
57 Verify if the file attached to the BFD @var{abfd} is compatible
58 with the format @var{format} (i.e., one of <<bfd_object>>,
59 <<bfd_archive>> or <<bfd_core>>).
61 If the BFD has been set to a specific target before the
62 call, only the named target and format combination is
63 checked. If the target has not been set, or has been set to
64 <<default>>, then all the known target backends is
65 interrogated to determine a match. If the default target
66 matches, it is used. If not, exactly one target must recognize
67 the file, or an error results.
69 The function returns <<true>> on success, otherwise <<false>>
70 with one of the following error codes:
72 o <<bfd_error_invalid_operation>> -
73 if <<format>> is not one of <<bfd_object>>, <<bfd_archive>> or
74 <<bfd_core>>.
76 o <<bfd_error_system_call>> -
77 if an error occured during a read - even some file mismatches
78 can cause bfd_error_system_calls.
80 o <<file_not_recognised>> -
81 none of the backends recognised the file format.
83 o <<bfd_error_file_ambiguously_recognized>> -
84 more than one backend recognised the file format.
87 boolean
88 bfd_check_format (abfd, format)
89 bfd *abfd;
90 bfd_format format;
92 return bfd_check_format_matches (abfd, format, NULL);
96 FUNCTION
97 bfd_check_format_matches
99 SYNOPSIS
100 boolean bfd_check_format_matches(bfd *abfd, bfd_format format, char ***matching);
102 DESCRIPTION
103 Like <<bfd_check_format>>, except when it returns false with
104 <<bfd_errno>> set to <<bfd_error_file_ambiguously_recognized>>. In that
105 case, if @var{matching} is not NULL, it will be filled in with
106 a NULL-terminated list of the names of the formats that matched,
107 allocated with <<malloc>>.
108 Then the user may choose a format and try again.
110 When done with the list that @var{matching} points to, the caller
111 should free it.
114 boolean
115 bfd_check_format_matches (abfd, format, matching)
116 bfd *abfd;
117 bfd_format format;
118 char ***matching;
120 extern const bfd_target binary_vec;
121 const bfd_target * const *target, *save_targ, *right_targ;
122 char **matching_vector = NULL;
123 int match_count;
125 if (!bfd_read_p (abfd) ||
126 ((int)(abfd->format) < (int)bfd_unknown) ||
127 ((int)(abfd->format) >= (int)bfd_type_end))
129 bfd_set_error (bfd_error_invalid_operation);
130 return false;
133 if (abfd->format != bfd_unknown)
134 return (abfd->format == format)? true: false;
136 /* Since the target type was defaulted, check them
137 all in the hope that one will be uniquely recognized. */
138 save_targ = abfd->xvec;
139 match_count = 0;
141 if (matching)
143 matching_vector =
144 (char **) bfd_malloc (sizeof (char *) *
145 (_bfd_target_vector_entries + 1));
146 if (!matching_vector)
147 return false;
148 matching_vector[0] = NULL;
149 *matching = matching_vector;
152 right_targ = 0;
154 /* Presume the answer is yes. */
155 abfd->format = format;
157 /* If the target type was explicitly specified, just check that target. */
158 if (!abfd->target_defaulted)
160 if (bfd_seek (abfd, (file_ptr)0, SEEK_SET) != 0) /* rewind! */
161 return false;
163 right_targ = BFD_SEND_FMT (abfd, _bfd_check_format, (abfd));
165 if (right_targ)
167 abfd->xvec = right_targ; /* Set the target as returned. */
169 if (matching)
170 free (matching_vector);
172 return true; /* File position has moved, BTW. */
175 /* For a long time the code has dropped through to check all
176 targets if the specified target was wrong. I don't know why,
177 and I'm reluctant to change it. However, in the case of an
178 archive, it can cause problems. If the specified target does
179 not permit archives (e.g., the binary target), then we should
180 not allow some other target to recognize it as an archive, but
181 should instead allow the specified target to recognize it as an
182 object. When I first made this change, it broke the PE target,
183 because the specified pei-i386 target did not recognize the
184 actual pe-i386 archive. Since there may be other problems of
185 this sort, I changed this test to check only for the binary
186 target. */
187 if (format == bfd_archive && save_targ == &binary_vec)
189 abfd->xvec = save_targ;
190 abfd->format = bfd_unknown;
192 if (matching)
193 free (matching_vector);
195 bfd_set_error (bfd_error_file_not_recognized);
197 return false;
201 for (target = bfd_target_vector; *target != NULL; target++)
203 const bfd_target *temp;
205 if (*target == &binary_vec)
206 continue;
208 abfd->xvec = *target; /* Change BFD's target temporarily */
210 if (bfd_seek (abfd, (file_ptr)0, SEEK_SET) != 0)
211 return false;
213 /* If _bfd_check_format neglects to set bfd_error, assume
214 bfd_error_wrong_format. We didn't used to even pay any
215 attention to bfd_error, so I suspect that some
216 _bfd_check_format might have this problem. */
217 bfd_set_error (bfd_error_wrong_format);
219 temp = BFD_SEND_FMT (abfd, _bfd_check_format, (abfd));
221 if (temp)
222 { /* This format checks out as ok! */
223 right_targ = temp;
225 if (matching)
227 matching_vector[match_count] = temp->name;
228 matching_vector[match_count + 1] = NULL;
231 match_count++;
233 /* If this is the default target, accept it, even if other
234 targets might match. People who want those other targets
235 have to set the GNUTARGET variable. */
236 if (temp == bfd_default_vector[0])
238 if (matching)
240 matching_vector[0] = temp->name;
241 matching_vector[1] = NULL;
243 match_count = 1;
244 break;
246 #ifdef GNU960
247 /* Big- and little-endian b.out archives look the same, but it
248 doesn't matter: there is no difference in their headers, and
249 member file byte orders will (I hope) be handled appropriately
250 by bfd. Ditto for big and little coff archives. And the 4
251 coff/b.out object formats are unambiguous. So accept the
252 first match we find. */
253 break;
254 #endif
256 else if (bfd_get_error () != bfd_error_wrong_format)
258 abfd->xvec = save_targ;
259 abfd->format = bfd_unknown;
261 if (matching && bfd_get_error ()
262 != bfd_error_file_ambiguously_recognized)
263 free (matching_vector);
265 return false;
269 if (match_count == 1)
271 abfd->xvec = right_targ; /* Change BFD's target permanently. */
273 if (matching)
274 free (matching_vector);
276 return true; /* File position has moved, BTW. */
279 abfd->xvec = save_targ; /* Restore original target type. */
280 abfd->format = bfd_unknown; /* Restore original format. */
282 if (match_count == 0)
284 bfd_set_error (bfd_error_file_not_recognized);
286 if (matching)
287 free (matching_vector);
289 else
290 bfd_set_error (bfd_error_file_ambiguously_recognized);
292 return false;
296 FUNCTION
297 bfd_set_format
299 SYNOPSIS
300 boolean bfd_set_format(bfd *abfd, bfd_format format);
302 DESCRIPTION
303 This function sets the file format of the BFD @var{abfd} to the
304 format @var{format}. If the target set in the BFD does not
305 support the format requested, the format is invalid, or the BFD
306 is not open for writing, then an error occurs.
309 boolean
310 bfd_set_format (abfd, format)
311 bfd *abfd;
312 bfd_format format;
314 if (bfd_read_p (abfd) ||
315 ((int)abfd->format < (int)bfd_unknown) ||
316 ((int)abfd->format >= (int)bfd_type_end))
318 bfd_set_error (bfd_error_invalid_operation);
319 return false;
322 if (abfd->format != bfd_unknown)
323 return (abfd->format == format) ? true : false;
325 /* Presume the answer is yes. */
326 abfd->format = format;
328 if (!BFD_SEND_FMT (abfd, _bfd_set_format, (abfd)))
330 abfd->format = bfd_unknown;
331 return false;
334 return true;
338 FUNCTION
339 bfd_format_string
341 SYNOPSIS
342 CONST char *bfd_format_string(bfd_format format);
344 DESCRIPTION
345 Return a pointer to a const string
346 <<invalid>>, <<object>>, <<archive>>, <<core>>, or <<unknown>>,
347 depending upon the value of @var{format}.
350 CONST char *
351 bfd_format_string (format)
352 bfd_format format;
354 if (((int)format <(int) bfd_unknown)
355 || ((int)format >=(int) bfd_type_end))
356 return "invalid";
358 switch (format)
360 case bfd_object:
361 return "object"; /* Linker/assember/compiler output. */
362 case bfd_archive:
363 return "archive"; /* Object archive file. */
364 case bfd_core:
365 return "core"; /* Core dump. */
366 default:
367 return "unknown";