bfd/
[deliverable/binutils-gdb.git] / bfd / format.c
CommitLineData
252b5132 1/* Generic BFD support for file formats.
9553c638
AM
2 Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1999, 2000, 2001, 2002,
3 2003, 2005 Free Software Foundation, Inc.
252b5132
RH
4 Written by Cygnus Support.
5
ed781d5d 6 This file is part of BFD, the Binary File Descriptor library.
252b5132 7
ed781d5d
NC
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
252b5132 12
ed781d5d
NC
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
252b5132 17
ed781d5d
NC
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
3e110533 20 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */
252b5132
RH
21
22/*
23SECTION
24 File formats
25
26 A format is a BFD concept of high level file contents type. The
3fde5a36 27 formats supported by BFD are:
252b5132
RH
28
29 o <<bfd_object>>
30
31 The BFD may contain data, symbols, relocations and debug info.
32
33 o <<bfd_archive>>
34
35 The BFD contains other BFDs and an optional index.
36
37 o <<bfd_core>>
38
39 The BFD contains the result of an executable core dump.
40
1b74d094
BW
41SUBSECTION
42 File format functions
252b5132
RH
43*/
44
45#include "bfd.h"
46#include "sysdep.h"
47#include "libbfd.h"
48
49/* IMPORT from targets.c. */
50extern const size_t _bfd_target_vector_entries;
51
52/*
53FUNCTION
54 bfd_check_format
55
56SYNOPSIS
ed781d5d 57 bfd_boolean bfd_check_format (bfd *abfd, bfd_format format);
252b5132
RH
58
59DESCRIPTION
60 Verify if the file attached to the BFD @var{abfd} is compatible
61 with the format @var{format} (i.e., one of <<bfd_object>>,
62 <<bfd_archive>> or <<bfd_core>>).
63
64 If the BFD has been set to a specific target before the
65 call, only the named target and format combination is
66 checked. If the target has not been set, or has been set to
67 <<default>>, then all the known target backends is
68 interrogated to determine a match. If the default target
69 matches, it is used. If not, exactly one target must recognize
70 the file, or an error results.
71
b34976b6 72 The function returns <<TRUE>> on success, otherwise <<FALSE>>
3fde5a36 73 with one of the following error codes:
252b5132
RH
74
75 o <<bfd_error_invalid_operation>> -
76 if <<format>> is not one of <<bfd_object>>, <<bfd_archive>> or
77 <<bfd_core>>.
78
79 o <<bfd_error_system_call>> -
80 if an error occured during a read - even some file mismatches
81 can cause bfd_error_system_calls.
82
83 o <<file_not_recognised>> -
84 none of the backends recognised the file format.
85
86 o <<bfd_error_file_ambiguously_recognized>> -
87 more than one backend recognised the file format.
88*/
89
b34976b6 90bfd_boolean
c58b9523 91bfd_check_format (bfd *abfd, bfd_format format)
252b5132
RH
92{
93 return bfd_check_format_matches (abfd, format, NULL);
94}
95
96/*
97FUNCTION
98 bfd_check_format_matches
99
100SYNOPSIS
c58b9523
AM
101 bfd_boolean bfd_check_format_matches
102 (bfd *abfd, bfd_format format, char ***matching);
252b5132
RH
103
104DESCRIPTION
b34976b6 105 Like <<bfd_check_format>>, except when it returns FALSE with
252b5132
RH
106 <<bfd_errno>> set to <<bfd_error_file_ambiguously_recognized>>. In that
107 case, if @var{matching} is not NULL, it will be filled in with
108 a NULL-terminated list of the names of the formats that matched,
109 allocated with <<malloc>>.
110 Then the user may choose a format and try again.
111
112 When done with the list that @var{matching} points to, the caller
3fde5a36 113 should free it.
252b5132
RH
114*/
115
b34976b6 116bfd_boolean
c58b9523 117bfd_check_format_matches (bfd *abfd, bfd_format format, char ***matching)
252b5132
RH
118{
119 extern const bfd_target binary_vec;
08f74004
AM
120 const bfd_target * const *target;
121 const bfd_target **matching_vector = NULL;
122 const bfd_target *save_targ, *right_targ, *ar_right_targ;
252b5132 123 int match_count;
3619ad04 124 int ar_match_index;
252b5132 125
3619ad04 126 if (!bfd_read_p (abfd)
cea4409c 127 || (unsigned int) abfd->format >= (unsigned int) bfd_type_end)
1d713d9e
NC
128 {
129 bfd_set_error (bfd_error_invalid_operation);
b34976b6 130 return FALSE;
1d713d9e 131 }
252b5132
RH
132
133 if (abfd->format != bfd_unknown)
b34976b6 134 return abfd->format == format;
252b5132 135
3fde5a36 136 /* Since the target type was defaulted, check them
252b5132 137 all in the hope that one will be uniquely recognized. */
252b5132
RH
138 save_targ = abfd->xvec;
139 match_count = 0;
3619ad04 140 ar_match_index = _bfd_target_vector_entries;
3fde5a36 141
252b5132
RH
142 if (matching)
143 {
dc810e39
AM
144 bfd_size_type amt;
145
3619ad04 146 *matching = NULL;
08f74004 147 amt = sizeof (*matching_vector) * 2 * _bfd_target_vector_entries;
c58b9523 148 matching_vector = bfd_malloc (amt);
252b5132 149 if (!matching_vector)
b34976b6 150 return FALSE;
252b5132 151 }
3fde5a36 152
252b5132 153 right_targ = 0;
3619ad04 154 ar_right_targ = 0;
252b5132 155
1d713d9e 156 /* Presume the answer is yes. */
252b5132
RH
157 abfd->format = format;
158
159 /* If the target type was explicitly specified, just check that target. */
1d713d9e
NC
160 if (!abfd->target_defaulted)
161 {
dc810e39 162 if (bfd_seek (abfd, (file_ptr) 0, SEEK_SET) != 0) /* rewind! */
5ed6aba4
NC
163 {
164 if (matching)
c58b9523 165 free (matching_vector);
5ed6aba4
NC
166 return FALSE;
167 }
3fde5a36 168
1d713d9e 169 right_targ = BFD_SEND_FMT (abfd, _bfd_check_format, (abfd));
3fde5a36 170
1d713d9e 171 if (right_targ)
252b5132 172 {
1d713d9e 173 abfd->xvec = right_targ; /* Set the target as returned. */
3fde5a36 174
1d713d9e 175 if (matching)
c58b9523 176 free (matching_vector);
3fde5a36 177
26ae6d5e
DJ
178 /* If the file was opened for update, then `output_has_begun'
179 some time ago when the file was created. Do not recompute
180 sections sizes or alignments in _bfd_set_section_contents.
181 We can not set this flag until after checking the format,
182 because it will interfere with creation of BFD sections. */
183 if (abfd->direction == both_direction)
184 abfd->output_has_begun = TRUE;
185
b34976b6 186 return TRUE; /* File position has moved, BTW. */
252b5132 187 }
1d713d9e
NC
188
189 /* For a long time the code has dropped through to check all
190 targets if the specified target was wrong. I don't know why,
191 and I'm reluctant to change it. However, in the case of an
192 archive, it can cause problems. If the specified target does
193 not permit archives (e.g., the binary target), then we should
194 not allow some other target to recognize it as an archive, but
195 should instead allow the specified target to recognize it as an
196 object. When I first made this change, it broke the PE target,
197 because the specified pei-i386 target did not recognize the
198 actual pe-i386 archive. Since there may be other problems of
199 this sort, I changed this test to check only for the binary
200 target. */
201 if (format == bfd_archive && save_targ == &binary_vec)
252b5132 202 {
1d713d9e
NC
203 abfd->xvec = save_targ;
204 abfd->format = bfd_unknown;
3fde5a36 205
1d713d9e 206 if (matching)
c58b9523 207 free (matching_vector);
3fde5a36 208
1d713d9e 209 bfd_set_error (bfd_error_file_not_recognized);
3fde5a36 210
b34976b6 211 return FALSE;
1d713d9e
NC
212 }
213 }
214
215 for (target = bfd_target_vector; *target != NULL; target++)
216 {
217 const bfd_target *temp;
3619ad04 218 bfd_error_type err;
3fde5a36 219
25bbc984
L
220 /* Don't check the default target twice. */
221 if (*target == &binary_vec
222 || (!abfd->target_defaulted && *target == save_targ))
1d713d9e 223 continue;
3fde5a36 224
ed781d5d 225 abfd->xvec = *target; /* Change BFD's target temporarily. */
3fde5a36 226
dc810e39 227 if (bfd_seek (abfd, (file_ptr) 0, SEEK_SET) != 0)
5ed6aba4
NC
228 {
229 if (matching)
c58b9523 230 free (matching_vector);
5ed6aba4
NC
231 return FALSE;
232 }
3fde5a36 233
1d713d9e
NC
234 /* If _bfd_check_format neglects to set bfd_error, assume
235 bfd_error_wrong_format. We didn't used to even pay any
236 attention to bfd_error, so I suspect that some
237 _bfd_check_format might have this problem. */
238 bfd_set_error (bfd_error_wrong_format);
239
240 temp = BFD_SEND_FMT (abfd, _bfd_check_format, (abfd));
3fde5a36 241
1d713d9e 242 if (temp)
ed781d5d
NC
243 {
244 /* This format checks out as ok! */
1d713d9e 245 right_targ = temp;
3fde5a36 246
1d713d9e
NC
247 /* If this is the default target, accept it, even if other
248 targets might match. People who want those other targets
249 have to set the GNUTARGET variable. */
250 if (temp == bfd_default_vector[0])
251 {
1d713d9e
NC
252 match_count = 1;
253 break;
252b5132 254 }
3619ad04
AM
255
256 if (matching)
08f74004 257 matching_vector[match_count] = temp;
3619ad04
AM
258
259 match_count++;
1d713d9e 260 }
3619ad04
AM
261 else if ((err = bfd_get_error ()) == bfd_error_wrong_object_format
262 || err == bfd_error_file_ambiguously_recognized)
263 {
264 /* An archive with objects of the wrong type, or an
265 ambiguous match. We want this target to match if we get
266 no better matches. */
267 if (ar_right_targ != bfd_default_vector[0])
268 ar_right_targ = *target;
269 if (matching)
08f74004 270 matching_vector[ar_match_index] = *target;
3619ad04
AM
271 ar_match_index++;
272 }
273 else if (err != bfd_error_wrong_format)
1d713d9e
NC
274 {
275 abfd->xvec = save_targ;
276 abfd->format = bfd_unknown;
3fde5a36 277
3619ad04 278 if (matching)
c58b9523 279 free (matching_vector);
3fde5a36 280
b34976b6 281 return FALSE;
1d713d9e
NC
282 }
283 }
3fde5a36 284
3619ad04
AM
285 if (match_count == 0)
286 {
287 /* Try partial matches. */
288 right_targ = ar_right_targ;
ed781d5d 289
3619ad04
AM
290 if (right_targ == bfd_default_vector[0])
291 {
292 match_count = 1;
293 }
294 else
295 {
296 match_count = ar_match_index - _bfd_target_vector_entries;
ed781d5d 297
3619ad04 298 if (matching && match_count > 1)
ed781d5d
NC
299 memcpy (matching_vector,
300 matching_vector + _bfd_target_vector_entries,
301 sizeof (*matching_vector) * match_count);
08f74004
AM
302 }
303 }
304
4081944f
NC
305 if (match_count > 1
306 && bfd_associated_vector != NULL
307 && matching)
08f74004
AM
308 {
309 const bfd_target * const *assoc = bfd_associated_vector;
310
311 while ((right_targ = *assoc++) != NULL)
312 {
313 int i = match_count;
314
315 while (--i >= 0)
316 if (matching_vector[i] == right_targ)
317 break;
318
319 if (i >= 0)
320 {
321 match_count = 1;
322 break;
3619ad04
AM
323 }
324 }
325 }
326
1d713d9e
NC
327 if (match_count == 1)
328 {
329 abfd->xvec = right_targ; /* Change BFD's target permanently. */
3fde5a36 330
1d713d9e 331 if (matching)
c58b9523 332 free (matching_vector);
3fde5a36 333
26ae6d5e
DJ
334 /* If the file was opened for update, then `output_has_begun'
335 some time ago when the file was created. Do not recompute
336 sections sizes or alignments in _bfd_set_section_contents.
337 We can not set this flag until after checking the format,
338 because it will interfere with creation of BFD sections. */
339 if (abfd->direction == both_direction)
340 abfd->output_has_begun = TRUE;
341
b34976b6 342 return TRUE; /* File position has moved, BTW. */
252b5132 343 }
252b5132 344
1d713d9e
NC
345 abfd->xvec = save_targ; /* Restore original target type. */
346 abfd->format = bfd_unknown; /* Restore original format. */
3fde5a36 347
252b5132
RH
348 if (match_count == 0)
349 {
350 bfd_set_error (bfd_error_file_not_recognized);
3fde5a36 351
252b5132 352 if (matching)
c58b9523 353 free (matching_vector);
252b5132
RH
354 }
355 else
3619ad04
AM
356 {
357 bfd_set_error (bfd_error_file_ambiguously_recognized);
358
359 if (matching)
360 {
08f74004 361 *matching = (char **) matching_vector;
3619ad04 362 matching_vector[match_count] = NULL;
08f74004
AM
363 /* Return target names. This is a little nasty. Maybe we
364 should do another bfd_malloc? */
365 while (--match_count >= 0)
366 {
367 const char *name = matching_vector[match_count]->name;
368 *(const char **) &matching_vector[match_count] = name;
369 }
3619ad04
AM
370 }
371 }
3fde5a36 372
b34976b6 373 return FALSE;
252b5132
RH
374}
375
376/*
377FUNCTION
378 bfd_set_format
379
380SYNOPSIS
ed781d5d 381 bfd_boolean bfd_set_format (bfd *abfd, bfd_format format);
252b5132
RH
382
383DESCRIPTION
384 This function sets the file format of the BFD @var{abfd} to the
385 format @var{format}. If the target set in the BFD does not
386 support the format requested, the format is invalid, or the BFD
387 is not open for writing, then an error occurs.
252b5132
RH
388*/
389
b34976b6 390bfd_boolean
c58b9523 391bfd_set_format (bfd *abfd, bfd_format format)
252b5132 392{
3619ad04 393 if (bfd_read_p (abfd)
cea4409c 394 || (unsigned int) abfd->format >= (unsigned int) bfd_type_end)
1d713d9e
NC
395 {
396 bfd_set_error (bfd_error_invalid_operation);
b34976b6 397 return FALSE;
1d713d9e 398 }
252b5132
RH
399
400 if (abfd->format != bfd_unknown)
b34976b6 401 return abfd->format == format;
252b5132 402
1d713d9e 403 /* Presume the answer is yes. */
252b5132
RH
404 abfd->format = format;
405
1d713d9e
NC
406 if (!BFD_SEND_FMT (abfd, _bfd_set_format, (abfd)))
407 {
408 abfd->format = bfd_unknown;
b34976b6 409 return FALSE;
1d713d9e 410 }
252b5132 411
b34976b6 412 return TRUE;
252b5132
RH
413}
414
252b5132
RH
415/*
416FUNCTION
417 bfd_format_string
418
419SYNOPSIS
ed781d5d 420 const char *bfd_format_string (bfd_format format);
252b5132
RH
421
422DESCRIPTION
423 Return a pointer to a const string
424 <<invalid>>, <<object>>, <<archive>>, <<core>>, or <<unknown>>,
425 depending upon the value of @var{format}.
426*/
427
3619ad04 428const char *
c58b9523 429bfd_format_string (bfd_format format)
252b5132 430{
c58b9523
AM
431 if (((int) format < (int) bfd_unknown)
432 || ((int) format >= (int) bfd_type_end))
252b5132 433 return "invalid";
3fde5a36 434
1d713d9e
NC
435 switch (format)
436 {
437 case bfd_object:
7dee875e 438 return "object"; /* Linker/assembler/compiler output. */
3fde5a36 439 case bfd_archive:
1d713d9e 440 return "archive"; /* Object archive file. */
3fde5a36 441 case bfd_core:
1d713d9e 442 return "core"; /* Core dump. */
3fde5a36 443 default:
1d713d9e
NC
444 return "unknown";
445 }
252b5132 446}
This page took 0.38628 seconds and 4 git commands to generate.