Commit | Line | Data |
---|---|---|
252b5132 | 1 | /* bucomm.c -- Bin Utils COMmon code. |
4b95cf5c | 2 | Copyright (C) 1991-2014 Free Software Foundation, Inc. |
252b5132 RH |
3 | |
4 | This file is part of GNU Binutils. | |
5 | ||
6 | This program is free software; you can redistribute it and/or modify | |
7 | it under the terms of the GNU General Public License as published by | |
32866df7 | 8 | the Free Software Foundation; either version 3 of the License, or |
252b5132 RH |
9 | (at your option) any later version. |
10 | ||
11 | This program is distributed in the hope that it will be useful, | |
12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 | GNU General Public License for more details. | |
15 | ||
16 | You should have received a copy of the GNU General Public License | |
17 | along with this program; if not, write to the Free Software | |
b43b5d5f NC |
18 | Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA |
19 | 02110-1301, USA. */ | |
252b5132 RH |
20 | \f |
21 | /* We might put this in a library someday so it could be dynamically | |
22 | loaded, but for now it's not necessary. */ | |
23 | ||
3db64b00 | 24 | #include "sysdep.h" |
252b5132 RH |
25 | #include "bfd.h" |
26 | #include "libiberty.h" | |
5af11cab | 27 | #include "filenames.h" |
06d86cf7 | 28 | #include "libbfd.h" |
252b5132 | 29 | |
252b5132 | 30 | #include <time.h> /* ctime, maybe time_t */ |
77f762d6 | 31 | #include <assert.h> |
3db64b00 | 32 | #include "bucomm.h" |
252b5132 RH |
33 | |
34 | #ifndef HAVE_TIME_T_IN_TIME_H | |
35 | #ifndef HAVE_TIME_T_IN_TYPES_H | |
36 | typedef long time_t; | |
37 | #endif | |
38 | #endif | |
06d86cf7 | 39 | |
2da42df6 AJ |
40 | static const char * endian_string (enum bfd_endian); |
41 | static int display_target_list (void); | |
42 | static int display_info_table (int, int); | |
43 | static int display_target_tables (void); | |
252b5132 | 44 | \f |
06d86cf7 | 45 | /* Error reporting. */ |
252b5132 RH |
46 | |
47 | char *program_name; | |
48 | ||
49 | void | |
2da42df6 | 50 | bfd_nonfatal (const char *string) |
252b5132 | 51 | { |
a8c62f1c | 52 | const char *errmsg; |
252b5132 | 53 | |
a8c62f1c | 54 | errmsg = bfd_errmsg (bfd_get_error ()); |
8e085dd2 | 55 | fflush (stdout); |
252b5132 RH |
56 | if (string) |
57 | fprintf (stderr, "%s: %s: %s\n", program_name, string, errmsg); | |
58 | else | |
59 | fprintf (stderr, "%s: %s\n", program_name, errmsg); | |
60 | } | |
61 | ||
2db6cde7 NS |
62 | /* Issue a non fatal error message. FILENAME, or if NULL then BFD, |
63 | are used to indicate the problematic file. SECTION, if non NULL, | |
64 | is used to provide a section name. If FORMAT is non-null, then it | |
65 | is used to print additional information via vfprintf. Finally the | |
66 | bfd error message is printed. In summary, error messages are of | |
67 | one of the following forms: | |
68 | ||
69 | PROGRAM:file: bfd-error-message | |
70 | PROGRAM:file[section]: bfd-error-message | |
71 | PROGRAM:file: printf-message: bfd-error-message | |
91d6fa6a | 72 | PROGRAM:file[section]: printf-message: bfd-error-message. */ |
2db6cde7 NS |
73 | |
74 | void | |
75 | bfd_nonfatal_message (const char *filename, | |
91d6fa6a NC |
76 | const bfd *abfd, |
77 | const asection *section, | |
2db6cde7 NS |
78 | const char *format, ...) |
79 | { | |
a8c62f1c AM |
80 | const char *errmsg; |
81 | const char *section_name; | |
2db6cde7 NS |
82 | va_list args; |
83 | ||
a8c62f1c | 84 | errmsg = bfd_errmsg (bfd_get_error ()); |
8e085dd2 | 85 | fflush (stdout); |
a8c62f1c | 86 | section_name = NULL; |
2db6cde7 NS |
87 | va_start (args, format); |
88 | fprintf (stderr, "%s", program_name); | |
89 | ||
91d6fa6a | 90 | if (abfd) |
2db6cde7 NS |
91 | { |
92 | if (!filename) | |
91d6fa6a | 93 | filename = bfd_get_archive_filename (abfd); |
2db6cde7 | 94 | if (section) |
91d6fa6a | 95 | section_name = bfd_get_section_name (abfd, section); |
2db6cde7 NS |
96 | } |
97 | if (section_name) | |
98 | fprintf (stderr, ":%s[%s]", filename, section_name); | |
99 | else | |
100 | fprintf (stderr, ":%s", filename); | |
101 | ||
102 | if (format) | |
103 | { | |
104 | fprintf (stderr, ": "); | |
105 | vfprintf (stderr, format, args); | |
106 | } | |
107 | fprintf (stderr, ": %s\n", errmsg); | |
108 | va_end (args); | |
109 | } | |
110 | ||
252b5132 | 111 | void |
2da42df6 | 112 | bfd_fatal (const char *string) |
252b5132 RH |
113 | { |
114 | bfd_nonfatal (string); | |
115 | xexit (1); | |
116 | } | |
117 | ||
cba12006 | 118 | void |
2da42df6 | 119 | report (const char * format, va_list args) |
252b5132 | 120 | { |
a8c62f1c | 121 | fflush (stdout); |
252b5132 RH |
122 | fprintf (stderr, "%s: ", program_name); |
123 | vfprintf (stderr, format, args); | |
124 | putc ('\n', stderr); | |
125 | } | |
126 | ||
252b5132 | 127 | void |
1651e569 | 128 | fatal (const char *format, ...) |
252b5132 | 129 | { |
1651e569 TT |
130 | va_list args; |
131 | ||
132 | va_start (args, format); | |
252b5132 | 133 | |
252b5132 | 134 | report (format, args); |
1651e569 | 135 | va_end (args); |
252b5132 RH |
136 | xexit (1); |
137 | } | |
138 | ||
139 | void | |
1651e569 | 140 | non_fatal (const char *format, ...) |
252b5132 | 141 | { |
1651e569 TT |
142 | va_list args; |
143 | ||
144 | va_start (args, format); | |
252b5132 | 145 | |
252b5132 | 146 | report (format, args); |
1651e569 | 147 | va_end (args); |
252b5132 | 148 | } |
252b5132 RH |
149 | |
150 | /* Set the default BFD target based on the configured target. Doing | |
151 | this permits the binutils to be configured for a particular target, | |
152 | and linked against a shared BFD library which was configured for a | |
153 | different target. */ | |
154 | ||
155 | void | |
2da42df6 | 156 | set_default_bfd_target (void) |
252b5132 RH |
157 | { |
158 | /* The macro TARGET is defined by Makefile. */ | |
159 | const char *target = TARGET; | |
160 | ||
161 | if (! bfd_set_default_target (target)) | |
162 | fatal (_("can't set BFD default target to `%s': %s"), | |
163 | target, bfd_errmsg (bfd_get_error ())); | |
164 | } | |
165 | ||
b34976b6 | 166 | /* After a FALSE return from bfd_check_format_matches with |
252b5132 RH |
167 | bfd_get_error () == bfd_error_file_ambiguously_recognized, print |
168 | the possible matching targets. */ | |
169 | ||
170 | void | |
2da42df6 | 171 | list_matching_formats (char **p) |
252b5132 | 172 | { |
a8c62f1c | 173 | fflush (stdout); |
252b5132 RH |
174 | fprintf (stderr, _("%s: Matching formats:"), program_name); |
175 | while (*p) | |
176 | fprintf (stderr, " %s", *p++); | |
177 | fputc ('\n', stderr); | |
178 | } | |
179 | ||
180 | /* List the supported targets. */ | |
181 | ||
182 | void | |
2da42df6 | 183 | list_supported_targets (const char *name, FILE *f) |
252b5132 | 184 | { |
252b5132 | 185 | int t; |
a8c62f1c | 186 | const char **targ_names; |
252b5132 RH |
187 | |
188 | if (name == NULL) | |
189 | fprintf (f, _("Supported targets:")); | |
190 | else | |
191 | fprintf (f, _("%s: supported targets:"), name); | |
48417c1a | 192 | |
a8c62f1c | 193 | targ_names = bfd_target_list (); |
48417c1a AM |
194 | for (t = 0; targ_names[t] != NULL; t++) |
195 | fprintf (f, " %s", targ_names[t]); | |
252b5132 | 196 | fprintf (f, "\n"); |
48417c1a | 197 | free (targ_names); |
252b5132 | 198 | } |
2f83960e AM |
199 | |
200 | /* List the supported architectures. */ | |
201 | ||
202 | void | |
2da42df6 | 203 | list_supported_architectures (const char *name, FILE *f) |
2f83960e | 204 | { |
d25576aa NC |
205 | const char ** arch; |
206 | const char ** arches; | |
2f83960e AM |
207 | |
208 | if (name == NULL) | |
209 | fprintf (f, _("Supported architectures:")); | |
210 | else | |
211 | fprintf (f, _("%s: supported architectures:"), name); | |
212 | ||
d25576aa | 213 | for (arch = arches = bfd_arch_list (); *arch; arch++) |
2f83960e AM |
214 | fprintf (f, " %s", *arch); |
215 | fprintf (f, "\n"); | |
d25576aa | 216 | free (arches); |
2f83960e | 217 | } |
252b5132 | 218 | \f |
06d86cf7 NC |
219 | /* The length of the longest architecture name + 1. */ |
220 | #define LONGEST_ARCH sizeof ("powerpc:common") | |
221 | ||
222 | static const char * | |
2da42df6 | 223 | endian_string (enum bfd_endian endian) |
06d86cf7 NC |
224 | { |
225 | switch (endian) | |
226 | { | |
9cf03b7e NC |
227 | case BFD_ENDIAN_BIG: return _("big endian"); |
228 | case BFD_ENDIAN_LITTLE: return _("little endian"); | |
229 | default: return _("endianness unknown"); | |
06d86cf7 NC |
230 | } |
231 | } | |
232 | ||
233 | /* List the targets that BFD is configured to support, each followed | |
234 | by its endianness and the architectures it supports. */ | |
235 | ||
236 | static int | |
2da42df6 | 237 | display_target_list (void) |
06d86cf7 NC |
238 | { |
239 | char *dummy_name; | |
240 | int t; | |
241 | int ret = 1; | |
242 | ||
243 | dummy_name = make_temp_file (NULL); | |
244 | for (t = 0; bfd_target_vector[t]; t++) | |
245 | { | |
246 | const bfd_target *p = bfd_target_vector[t]; | |
247 | bfd *abfd = bfd_openw (dummy_name, p->name); | |
3f5e193b | 248 | int a; |
06d86cf7 | 249 | |
9cf03b7e | 250 | printf (_("%s\n (header %s, data %s)\n"), p->name, |
06d86cf7 NC |
251 | endian_string (p->header_byteorder), |
252 | endian_string (p->byteorder)); | |
253 | ||
254 | if (abfd == NULL) | |
255 | { | |
256 | bfd_nonfatal (dummy_name); | |
257 | ret = 0; | |
258 | continue; | |
259 | } | |
260 | ||
261 | if (! bfd_set_format (abfd, bfd_object)) | |
262 | { | |
263 | if (bfd_get_error () != bfd_error_invalid_operation) | |
264 | { | |
265 | bfd_nonfatal (p->name); | |
266 | ret = 0; | |
267 | } | |
268 | bfd_close_all_done (abfd); | |
269 | continue; | |
270 | } | |
271 | ||
91610c0c | 272 | for (a = bfd_arch_obscure + 1; a < bfd_arch_last; a++) |
06d86cf7 NC |
273 | if (bfd_set_arch_mach (abfd, (enum bfd_architecture) a, 0)) |
274 | printf (" %s\n", | |
275 | bfd_printable_arch_mach ((enum bfd_architecture) a, 0)); | |
276 | bfd_close_all_done (abfd); | |
277 | } | |
278 | unlink (dummy_name); | |
279 | free (dummy_name); | |
280 | ||
281 | return ret; | |
282 | } | |
283 | ||
284 | /* Print a table showing which architectures are supported for entries | |
285 | FIRST through LAST-1 of bfd_target_vector (targets across, | |
286 | architectures down). */ | |
287 | ||
288 | static int | |
2da42df6 | 289 | display_info_table (int first, int last) |
06d86cf7 NC |
290 | { |
291 | int t; | |
06d86cf7 NC |
292 | int ret = 1; |
293 | char *dummy_name; | |
3f5e193b | 294 | int a; |
06d86cf7 NC |
295 | |
296 | /* Print heading of target names. */ | |
297 | printf ("\n%*s", (int) LONGEST_ARCH, " "); | |
298 | for (t = first; t < last && bfd_target_vector[t]; t++) | |
299 | printf ("%s ", bfd_target_vector[t]->name); | |
300 | putchar ('\n'); | |
301 | ||
302 | dummy_name = make_temp_file (NULL); | |
91610c0c | 303 | for (a = bfd_arch_obscure + 1; a < bfd_arch_last; a++) |
3f5e193b NC |
304 | if (strcmp (bfd_printable_arch_mach ((enum bfd_architecture) a, 0), |
305 | "UNKNOWN!") != 0) | |
06d86cf7 NC |
306 | { |
307 | printf ("%*s ", (int) LONGEST_ARCH - 1, | |
3f5e193b | 308 | bfd_printable_arch_mach ((enum bfd_architecture) a, 0)); |
06d86cf7 NC |
309 | for (t = first; t < last && bfd_target_vector[t]; t++) |
310 | { | |
311 | const bfd_target *p = bfd_target_vector[t]; | |
312 | bfd_boolean ok = TRUE; | |
313 | bfd *abfd = bfd_openw (dummy_name, p->name); | |
314 | ||
315 | if (abfd == NULL) | |
316 | { | |
317 | bfd_nonfatal (p->name); | |
318 | ret = 0; | |
319 | ok = FALSE; | |
320 | } | |
321 | ||
322 | if (ok) | |
323 | { | |
324 | if (! bfd_set_format (abfd, bfd_object)) | |
325 | { | |
326 | if (bfd_get_error () != bfd_error_invalid_operation) | |
327 | { | |
328 | bfd_nonfatal (p->name); | |
329 | ret = 0; | |
330 | } | |
331 | ok = FALSE; | |
332 | } | |
333 | } | |
334 | ||
335 | if (ok) | |
336 | { | |
3f5e193b | 337 | if (! bfd_set_arch_mach (abfd, (enum bfd_architecture) a, 0)) |
06d86cf7 NC |
338 | ok = FALSE; |
339 | } | |
340 | ||
341 | if (ok) | |
342 | printf ("%s ", p->name); | |
343 | else | |
344 | { | |
345 | int l = strlen (p->name); | |
346 | while (l--) | |
347 | putchar ('-'); | |
348 | putchar (' '); | |
349 | } | |
350 | if (abfd != NULL) | |
351 | bfd_close_all_done (abfd); | |
352 | } | |
353 | putchar ('\n'); | |
354 | } | |
355 | unlink (dummy_name); | |
356 | free (dummy_name); | |
357 | ||
358 | return ret; | |
359 | } | |
360 | ||
361 | /* Print tables of all the target-architecture combinations that | |
362 | BFD has been configured to support. */ | |
363 | ||
364 | static int | |
2da42df6 | 365 | display_target_tables (void) |
06d86cf7 NC |
366 | { |
367 | int t; | |
368 | int columns; | |
369 | int ret = 1; | |
370 | char *colum; | |
371 | ||
372 | columns = 0; | |
373 | colum = getenv ("COLUMNS"); | |
374 | if (colum != NULL) | |
375 | columns = atoi (colum); | |
376 | if (columns == 0) | |
377 | columns = 80; | |
378 | ||
379 | t = 0; | |
380 | while (bfd_target_vector[t] != NULL) | |
381 | { | |
382 | int oldt = t, wid; | |
383 | ||
384 | wid = LONGEST_ARCH + strlen (bfd_target_vector[t]->name) + 1; | |
385 | ++t; | |
386 | while (wid < columns && bfd_target_vector[t] != NULL) | |
387 | { | |
388 | int newwid; | |
389 | ||
390 | newwid = wid + strlen (bfd_target_vector[t]->name) + 1; | |
391 | if (newwid >= columns) | |
392 | break; | |
393 | wid = newwid; | |
394 | ++t; | |
395 | } | |
396 | if (! display_info_table (oldt, t)) | |
397 | ret = 0; | |
398 | } | |
399 | ||
400 | return ret; | |
401 | } | |
402 | ||
403 | int | |
2da42df6 | 404 | display_info (void) |
06d86cf7 NC |
405 | { |
406 | printf (_("BFD header file version %s\n"), BFD_VERSION_STRING); | |
407 | if (! display_target_list () || ! display_target_tables ()) | |
408 | return 1; | |
409 | else | |
410 | return 0; | |
411 | } | |
412 | \f | |
252b5132 RH |
413 | /* Display the archive header for an element as if it were an ls -l listing: |
414 | ||
415 | Mode User\tGroup\tSize\tDate Name */ | |
416 | ||
417 | void | |
2da42df6 | 418 | print_arelt_descr (FILE *file, bfd *abfd, bfd_boolean verbose) |
252b5132 RH |
419 | { |
420 | struct stat buf; | |
421 | ||
422 | if (verbose) | |
423 | { | |
424 | if (bfd_stat_arch_elt (abfd, &buf) == 0) | |
425 | { | |
426 | char modebuf[11]; | |
427 | char timebuf[40]; | |
428 | time_t when = buf.st_mtime; | |
b1f88ebe | 429 | const char *ctime_result = (const char *) ctime (&when); |
34debcd1 | 430 | bfd_size_type size; |
252b5132 RH |
431 | |
432 | /* POSIX format: skip weekday and seconds from ctime output. */ | |
433 | sprintf (timebuf, "%.12s %.4s", ctime_result + 4, ctime_result + 20); | |
434 | ||
435 | mode_string (buf.st_mode, modebuf); | |
436 | modebuf[10] = '\0'; | |
34debcd1 | 437 | size = buf.st_size; |
252b5132 | 438 | /* POSIX 1003.2/D11 says to skip first character (entry type). */ |
34debcd1 | 439 | fprintf (file, "%s %ld/%ld %6" BFD_VMA_FMT "u %s ", modebuf + 1, |
252b5132 | 440 | (long) buf.st_uid, (long) buf.st_gid, |
34debcd1 | 441 | size, timebuf); |
252b5132 RH |
442 | } |
443 | } | |
444 | ||
445 | fprintf (file, "%s\n", bfd_get_filename (abfd)); | |
446 | } | |
447 | ||
485be063 AM |
448 | /* Return a path for a new temporary file in the same directory |
449 | as file PATH. */ | |
252b5132 | 450 | |
485be063 AM |
451 | static char * |
452 | template_in_dir (const char *path) | |
252b5132 | 453 | { |
485be063 | 454 | #define template "stXXXXXX" |
2946671e | 455 | const char *slash = strrchr (path, '/'); |
252b5132 | 456 | char *tmpname; |
485be063 | 457 | size_t len; |
252b5132 | 458 | |
5af11cab AM |
459 | #ifdef HAVE_DOS_BASED_FILE_SYSTEM |
460 | { | |
461 | /* We could have foo/bar\\baz, or foo\\bar, or d:bar. */ | |
485be063 | 462 | char *bslash = strrchr (path, '\\'); |
f9c026a8 | 463 | |
2ab47eed | 464 | if (slash == NULL || (bslash != NULL && bslash > slash)) |
5af11cab | 465 | slash = bslash; |
485be063 | 466 | if (slash == NULL && path[0] != '\0' && path[1] == ':') |
2946671e | 467 | slash = path + 1; |
5af11cab | 468 | } |
252b5132 RH |
469 | #endif |
470 | ||
471 | if (slash != (char *) NULL) | |
472 | { | |
485be063 | 473 | len = slash - path; |
3f5e193b | 474 | tmpname = (char *) xmalloc (len + sizeof (template) + 2); |
485be063 | 475 | memcpy (tmpname, path, len); |
252b5132 | 476 | |
5af11cab AM |
477 | #ifdef HAVE_DOS_BASED_FILE_SYSTEM |
478 | /* If tmpname is "X:", appending a slash will make it a root | |
479 | directory on drive X, which is NOT the same as the current | |
480 | directory on drive X. */ | |
485be063 AM |
481 | if (len == 2 && tmpname[1] == ':') |
482 | tmpname[len++] = '.'; | |
5af11cab | 483 | #endif |
485be063 | 484 | tmpname[len++] = '/'; |
252b5132 RH |
485 | } |
486 | else | |
487 | { | |
3f5e193b | 488 | tmpname = (char *) xmalloc (sizeof (template)); |
485be063 | 489 | len = 0; |
f9c026a8 | 490 | } |
485be063 AM |
491 | |
492 | memcpy (tmpname + len, template, sizeof (template)); | |
493 | return tmpname; | |
494 | #undef template | |
495 | } | |
496 | ||
497 | /* Return the name of a created temporary file in the same directory | |
498 | as FILENAME. */ | |
499 | ||
500 | char * | |
501 | make_tempname (char *filename) | |
502 | { | |
503 | char *tmpname = template_in_dir (filename); | |
504 | int fd; | |
505 | ||
506 | #ifdef HAVE_MKSTEMP | |
507 | fd = mkstemp (tmpname); | |
508 | #else | |
509 | tmpname = mktemp (tmpname); | |
510 | if (tmpname == NULL) | |
f9c026a8 | 511 | return NULL; |
485be063 | 512 | fd = open (tmpname, O_RDWR | O_CREAT | O_EXCL, 0600); |
f9c026a8 | 513 | #endif |
485be063 | 514 | if (fd == -1) |
c48d800e NC |
515 | { |
516 | free (tmpname); | |
517 | return NULL; | |
518 | } | |
485be063 | 519 | close (fd); |
f9c026a8 NC |
520 | return tmpname; |
521 | } | |
522 | ||
485be063 AM |
523 | /* Return the name of a created temporary directory inside the |
524 | directory containing FILENAME. */ | |
f9c026a8 NC |
525 | |
526 | char * | |
527 | make_tempdir (char *filename) | |
528 | { | |
485be063 | 529 | char *tmpname = template_in_dir (filename); |
f9c026a8 | 530 | |
485be063 AM |
531 | #ifdef HAVE_MKDTEMP |
532 | return mkdtemp (tmpname); | |
533 | #else | |
534 | tmpname = mktemp (tmpname); | |
535 | if (tmpname == NULL) | |
536 | return NULL; | |
537 | #if defined (_WIN32) && !defined (__CYGWIN32__) | |
538 | if (mkdir (tmpname) != 0) | |
539 | return NULL; | |
540 | #else | |
541 | if (mkdir (tmpname, 0700) != 0) | |
542 | return NULL; | |
f9c026a8 | 543 | #endif |
252b5132 | 544 | return tmpname; |
485be063 | 545 | #endif |
252b5132 RH |
546 | } |
547 | ||
548 | /* Parse a string into a VMA, with a fatal error if it can't be | |
549 | parsed. */ | |
550 | ||
551 | bfd_vma | |
2da42df6 | 552 | parse_vma (const char *s, const char *arg) |
252b5132 RH |
553 | { |
554 | bfd_vma ret; | |
555 | const char *end; | |
556 | ||
557 | ret = bfd_scan_vma (s, &end, 0); | |
f462a9ea | 558 | |
252b5132 RH |
559 | if (*end != '\0') |
560 | fatal (_("%s: bad number: %s"), arg, s); | |
561 | ||
562 | return ret; | |
563 | } | |
f24ddbdd NC |
564 | |
565 | /* Returns the size of the named file. If the file does not | |
566 | exist, or if it is not a real file, then a suitable non-fatal | |
a3029abd | 567 | error message is printed and (off_t) -1 is returned. */ |
f24ddbdd NC |
568 | |
569 | off_t | |
570 | get_file_size (const char * file_name) | |
571 | { | |
572 | struct stat statbuf; | |
573 | ||
574 | if (stat (file_name, &statbuf) < 0) | |
575 | { | |
576 | if (errno == ENOENT) | |
577 | non_fatal (_("'%s': No such file"), file_name); | |
578 | else | |
579 | non_fatal (_("Warning: could not locate '%s'. reason: %s"), | |
580 | file_name, strerror (errno)); | |
581 | } | |
582 | else if (! S_ISREG (statbuf.st_mode)) | |
583 | non_fatal (_("Warning: '%s' is not an ordinary file"), file_name); | |
9849fbfc NC |
584 | else if (statbuf.st_size < 0) |
585 | non_fatal (_("Warning: '%s' has negative size, probably it is too large"), | |
586 | file_name); | |
f24ddbdd NC |
587 | else |
588 | return statbuf.st_size; | |
589 | ||
52a476ee | 590 | return (off_t) -1; |
f24ddbdd | 591 | } |
77f762d6 L |
592 | |
593 | /* Return the filename in a static buffer. */ | |
594 | ||
595 | const char * | |
8d8e0703 | 596 | bfd_get_archive_filename (const bfd *abfd) |
77f762d6 L |
597 | { |
598 | static size_t curr = 0; | |
599 | static char *buf; | |
600 | size_t needed; | |
601 | ||
602 | assert (abfd != NULL); | |
603 | ||
604 | if (!abfd->my_archive) | |
605 | return bfd_get_filename (abfd); | |
606 | ||
607 | needed = (strlen (bfd_get_filename (abfd->my_archive)) | |
608 | + strlen (bfd_get_filename (abfd)) + 3); | |
609 | if (needed > curr) | |
610 | { | |
611 | if (curr) | |
612 | free (buf); | |
613 | curr = needed + (needed >> 1); | |
3f5e193b | 614 | buf = (char *) bfd_malloc (curr); |
77f762d6 L |
615 | /* If we can't malloc, fail safe by returning just the file name. |
616 | This function is only used when building error messages. */ | |
617 | if (!buf) | |
618 | { | |
619 | curr = 0; | |
620 | return bfd_get_filename (abfd); | |
621 | } | |
622 | } | |
623 | sprintf (buf, "%s(%s)", bfd_get_filename (abfd->my_archive), | |
624 | bfd_get_filename (abfd)); | |
625 | return buf; | |
626 | } |