gas: remove use of PTR
[binutils-gdb.git] / binutils / ar.c
1 /* ar.c - Archive modify and extract.
2 Copyright (C) 1991-2022 Free Software Foundation, Inc.
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
8 the Free Software Foundation; either version 3 of the License, or
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
18 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
19 MA 02110-1301, USA. */
20 \f
21 /*
22 Bugs: GNU ar used to check file against filesystem in quick_update and
23 replace operations (would check mtime). Doesn't warn when name truncated.
24 No way to specify pos_end. Error messages should be more consistent. */
25
26 #include "sysdep.h"
27 #include "bfd.h"
28 #include "libiberty.h"
29 #include "progress.h"
30 #include "getopt.h"
31 #include "aout/ar.h"
32 #include "bucomm.h"
33 #include "arsup.h"
34 #include "filenames.h"
35 #include "binemul.h"
36 #include "plugin-api.h"
37 #include "plugin.h"
38 #include "ansidecl.h"
39
40 #ifdef __GO32___
41 #define EXT_NAME_LEN 3 /* Bufflen of addition to name if it's MS-DOS. */
42 #else
43 #define EXT_NAME_LEN 6 /* Ditto for *NIX. */
44 #endif
45
46 /* Static declarations. */
47
48 static void mri_emul (void);
49 static const char *normalize (const char *, bfd *);
50 static void remove_output (void);
51 static void map_over_members (bfd *, void (*)(bfd *), char **, int);
52 static void print_contents (bfd * member);
53 static void delete_members (bfd *, char **files_to_delete);
54
55 static void move_members (bfd *, char **files_to_move);
56 static void replace_members
57 (bfd *, char **files_to_replace, bool quick);
58 static void print_descr (bfd * abfd);
59 static void write_archive (bfd *);
60 static int ranlib_only (const char *archname);
61 static int ranlib_touch (const char *archname);
62 static void usage (int);
63 \f
64 /** Globals and flags. */
65
66 static int mri_mode;
67
68 /* This flag distinguishes between ar and ranlib:
69 1 means this is 'ranlib'; 0 means this is 'ar'.
70 -1 means if we should use argv[0] to decide. */
71 extern int is_ranlib;
72
73 /* Nonzero means don't warn about creating the archive file if necessary. */
74 int silent_create = 0;
75
76 /* Nonzero means describe each action performed. */
77 int verbose = 0;
78
79 /* Nonzero means display offsets of files in the archive. */
80 int display_offsets = 0;
81
82 /* Nonzero means preserve dates of members when extracting them. */
83 int preserve_dates = 0;
84
85 /* Nonzero means don't replace existing members whose dates are more recent
86 than the corresponding files. */
87 int newer_only = 0;
88
89 /* Controls the writing of an archive symbol table (in BSD: a __.SYMDEF
90 member). -1 means we've been explicitly asked to not write a symbol table;
91 +1 means we've been explicitly asked to write it;
92 0 is the default.
93 Traditionally, the default in BSD has been to not write the table.
94 However, for POSIX.2 compliance the default is now to write a symbol table
95 if any of the members are object files. */
96 int write_armap = 0;
97
98 /* Operate in deterministic mode: write zero for timestamps, uids,
99 and gids for archive members and the archive symbol table, and write
100 consistent file modes. */
101 int deterministic = -1; /* Determinism indeterminate. */
102
103 /* Nonzero means it's the name of an existing member; position new or moved
104 files with respect to this one. */
105 char *posname = NULL;
106
107 /* Sez how to use `posname': pos_before means position before that member.
108 pos_after means position after that member. pos_end means always at end.
109 pos_default means default appropriately. For the latter two, `posname'
110 should also be zero. */
111 enum pos
112 {
113 pos_default, pos_before, pos_after, pos_end
114 } postype = pos_default;
115
116 enum operations
117 {
118 none = 0, del, replace, print_table,
119 print_files, extract, move, quick_append
120 } operation = none;
121
122 static bfd **
123 get_pos_bfd (bfd **, enum pos, const char *);
124
125 /* For extract/delete only. If COUNTED_NAME_MODE is TRUE, we only
126 extract the COUNTED_NAME_COUNTER instance of that name. */
127 static bool counted_name_mode = 0;
128 static int counted_name_counter = 0;
129
130 /* Whether to truncate names of files stored in the archive. */
131 static bool ar_truncate = false;
132
133 /* Whether to use a full file name match when searching an archive.
134 This is convenient for archives created by the Microsoft lib
135 program. */
136 static bool full_pathname = false;
137
138 /* Whether to create a "thin" archive (symbol index only -- no files). */
139 static bool make_thin_archive = false;
140
141 #define LIBDEPS "__.LIBDEP"
142 /* Text to store in the __.LIBDEP archive element for the linker to use. */
143 static char * libdeps = NULL;
144 static bfd * libdeps_bfd = NULL;
145
146 static int show_version = 0;
147
148 static int show_help = 0;
149
150 #if BFD_SUPPORTS_PLUGINS
151 static const char *plugin_target = "plugin";
152 #else
153 static const char *plugin_target = NULL;
154 #endif
155
156 static const char *target = NULL;
157
158 enum long_option_numbers
159 {
160 OPTION_PLUGIN = 201,
161 OPTION_TARGET,
162 OPTION_OUTPUT
163 };
164
165 static const char * output_dir = NULL;
166
167 static struct option long_options[] =
168 {
169 {"help", no_argument, &show_help, 1},
170 {"plugin", required_argument, NULL, OPTION_PLUGIN},
171 {"target", required_argument, NULL, OPTION_TARGET},
172 {"version", no_argument, &show_version, 1},
173 {"output", required_argument, NULL, OPTION_OUTPUT},
174 {"record-libdeps", required_argument, NULL, 'l'},
175 {"thin", no_argument, NULL, 'T'},
176 {NULL, no_argument, NULL, 0}
177 };
178
179 int interactive = 0;
180
181 static void
182 mri_emul (void)
183 {
184 interactive = isatty (fileno (stdin));
185 yyparse ();
186 }
187
188 /* If COUNT is 0, then FUNCTION is called once on each entry. If nonzero,
189 COUNT is the length of the FILES chain; FUNCTION is called on each entry
190 whose name matches one in FILES. */
191
192 static void
193 map_over_members (bfd *arch, void (*function)(bfd *), char **files, int count)
194 {
195 bfd *head;
196 int match_count;
197
198 if (count == 0)
199 {
200 for (head = arch->archive_next; head; head = head->archive_next)
201 {
202 PROGRESS (1);
203 function (head);
204 }
205 return;
206 }
207
208 /* This may appear to be a baroque way of accomplishing what we want.
209 However we have to iterate over the filenames in order to notice where
210 a filename is requested but does not exist in the archive. Ditto
211 mapping over each file each time -- we want to hack multiple
212 references. */
213
214 for (head = arch->archive_next; head; head = head->archive_next)
215 head->archive_pass = 0;
216
217 for (; count > 0; files++, count--)
218 {
219 bool found = false;
220
221 match_count = 0;
222 for (head = arch->archive_next; head; head = head->archive_next)
223 {
224 const char * filename;
225
226 PROGRESS (1);
227 /* PR binutils/15796: Once an archive element has been matched
228 do not match it again. If the user provides multiple same-named
229 parameters on the command line their intent is to match multiple
230 same-named entries in the archive, not the same entry multiple
231 times. */
232 if (head->archive_pass)
233 continue;
234
235 filename = bfd_get_filename (head);
236 if (filename == NULL)
237 {
238 /* Some archive formats don't get the filenames filled in
239 until the elements are opened. */
240 struct stat buf;
241 bfd_stat_arch_elt (head, &buf);
242 }
243 else if (bfd_is_thin_archive (arch))
244 {
245 /* Thin archives store full pathnames. Need to normalize. */
246 filename = normalize (filename, arch);
247 }
248
249 if (filename != NULL
250 && !FILENAME_CMP (normalize (*files, arch), filename))
251 {
252 ++match_count;
253 if (counted_name_mode
254 && match_count != counted_name_counter)
255 {
256 /* Counting, and didn't match on count; go on to the
257 next one. */
258 continue;
259 }
260
261 found = true;
262 function (head);
263 head->archive_pass = 1;
264 /* PR binutils/15796: Once a file has been matched, do not
265 match any more same-named files in the archive. If the
266 user does want to match multiple same-name files in an
267 archive they should provide multiple same-name parameters
268 to the ar command. */
269 break;
270 }
271 }
272
273 if (!found)
274 /* xgettext:c-format */
275 fprintf (stderr, _("no entry %s in archive\n"), *files);
276 }
277 }
278 \f
279 bool operation_alters_arch = false;
280
281 static void
282 usage (int help)
283 {
284 FILE *s;
285
286 #if BFD_SUPPORTS_PLUGINS
287 /* xgettext:c-format */
288 const char *command_line
289 = _("Usage: %s [emulation options] [-]{dmpqrstx}[abcDfilMNoOPsSTuvV]"
290 " [--plugin <name>] [member-name] [count] archive-file file...\n");
291
292 #else
293 /* xgettext:c-format */
294 const char *command_line
295 = _("Usage: %s [emulation options] [-]{dmpqrstx}[abcDfilMNoOPsSTuvV]"
296 " [member-name] [count] archive-file file...\n");
297 #endif
298 s = help ? stdout : stderr;
299
300 fprintf (s, command_line, program_name);
301
302 /* xgettext:c-format */
303 fprintf (s, _(" %s -M [<mri-script]\n"), program_name);
304 fprintf (s, _(" commands:\n"));
305 fprintf (s, _(" d - delete file(s) from the archive\n"));
306 fprintf (s, _(" m[ab] - move file(s) in the archive\n"));
307 fprintf (s, _(" p - print file(s) found in the archive\n"));
308 fprintf (s, _(" q[f] - quick append file(s) to the archive\n"));
309 fprintf (s, _(" r[ab][f][u] - replace existing or insert new file(s) into the archive\n"));
310 fprintf (s, _(" s - act as ranlib\n"));
311 fprintf (s, _(" t[O][v] - display contents of the archive\n"));
312 fprintf (s, _(" x[o] - extract file(s) from the archive\n"));
313 fprintf (s, _(" command specific modifiers:\n"));
314 fprintf (s, _(" [a] - put file(s) after [member-name]\n"));
315 fprintf (s, _(" [b] - put file(s) before [member-name] (same as [i])\n"));
316 if (DEFAULT_AR_DETERMINISTIC)
317 {
318 fprintf (s, _("\
319 [D] - use zero for timestamps and uids/gids (default)\n"));
320 fprintf (s, _("\
321 [U] - use actual timestamps and uids/gids\n"));
322 }
323 else
324 {
325 fprintf (s, _("\
326 [D] - use zero for timestamps and uids/gids\n"));
327 fprintf (s, _("\
328 [U] - use actual timestamps and uids/gids (default)\n"));
329 }
330 fprintf (s, _(" [N] - use instance [count] of name\n"));
331 fprintf (s, _(" [f] - truncate inserted file names\n"));
332 fprintf (s, _(" [P] - use full path names when matching\n"));
333 fprintf (s, _(" [o] - preserve original dates\n"));
334 fprintf (s, _(" [O] - display offsets of files in the archive\n"));
335 fprintf (s, _(" [u] - only replace files that are newer than current archive contents\n"));
336 fprintf (s, _(" generic modifiers:\n"));
337 fprintf (s, _(" [c] - do not warn if the library had to be created\n"));
338 fprintf (s, _(" [s] - create an archive index (cf. ranlib)\n"));
339 fprintf (s, _(" [l <text> ] - specify the dependencies of this library\n"));
340 fprintf (s, _(" [S] - do not build a symbol table\n"));
341 fprintf (s, _(" [T] - deprecated, use --thin instead\n"));
342 fprintf (s, _(" [v] - be verbose\n"));
343 fprintf (s, _(" [V] - display the version number\n"));
344 fprintf (s, _(" @<file> - read options from <file>\n"));
345 fprintf (s, _(" --target=BFDNAME - specify the target object format as BFDNAME\n"));
346 fprintf (s, _(" --output=DIRNAME - specify the output directory for extraction operations\n"));
347 fprintf (s, _(" --record-libdeps=<text> - specify the dependencies of this library\n"));
348 fprintf (s, _(" --thin - make a thin archive\n"));
349 #if BFD_SUPPORTS_PLUGINS
350 fprintf (s, _(" optional:\n"));
351 fprintf (s, _(" --plugin <p> - load the specified plugin\n"));
352 #endif
353
354 ar_emul_usage (s);
355
356 list_supported_targets (program_name, s);
357
358 if (REPORT_BUGS_TO[0] && help)
359 fprintf (s, _("Report bugs to %s\n"), REPORT_BUGS_TO);
360
361 xexit (help ? 0 : 1);
362 }
363
364 static void
365 ranlib_usage (int help)
366 {
367 FILE *s;
368
369 s = help ? stdout : stderr;
370
371 /* xgettext:c-format */
372 fprintf (s, _("Usage: %s [options] archive\n"), program_name);
373 fprintf (s, _(" Generate an index to speed access to archives\n"));
374 fprintf (s, _(" The options are:\n\
375 @<file> Read options from <file>\n"));
376 #if BFD_SUPPORTS_PLUGINS
377 fprintf (s, _("\
378 --plugin <name> Load the specified plugin\n"));
379 #endif
380 if (DEFAULT_AR_DETERMINISTIC)
381 fprintf (s, _("\
382 -D Use zero for symbol map timestamp (default)\n\
383 -U Use an actual symbol map timestamp\n"));
384 else
385 fprintf (s, _("\
386 -D Use zero for symbol map timestamp\n\
387 -U Use actual symbol map timestamp (default)\n"));
388 fprintf (s, _("\
389 -t Update the archive's symbol map timestamp\n\
390 -h --help Print this help message\n\
391 -v --version Print version information\n"));
392
393 list_supported_targets (program_name, s);
394
395 if (REPORT_BUGS_TO[0] && help)
396 fprintf (s, _("Report bugs to %s\n"), REPORT_BUGS_TO);
397
398 xexit (help ? 0 : 1);
399 }
400
401 /* Normalize a file name specified on the command line into a file
402 name which we will use in an archive. */
403
404 static const char *
405 normalize (const char *file, bfd *abfd)
406 {
407 const char *filename;
408
409 if (full_pathname)
410 return file;
411
412 filename = lbasename (file);
413
414 if (ar_truncate
415 && abfd != NULL
416 && strlen (filename) > abfd->xvec->ar_max_namelen)
417 {
418 char *s;
419
420 /* Space leak. */
421 s = (char *) xmalloc (abfd->xvec->ar_max_namelen + 1);
422 memcpy (s, filename, abfd->xvec->ar_max_namelen);
423 s[abfd->xvec->ar_max_namelen] = '\0';
424 filename = s;
425 }
426
427 return filename;
428 }
429
430 /* Remove any output file. This is only called via xatexit. */
431
432 static const char *output_filename = NULL;
433 static FILE *output_file = NULL;
434 static bfd *output_bfd = NULL;
435
436 static void
437 remove_output (void)
438 {
439 if (output_filename != NULL)
440 {
441 if (output_bfd != NULL)
442 bfd_cache_close (output_bfd);
443 if (output_file != NULL)
444 fclose (output_file);
445 unlink_if_ordinary (output_filename);
446 }
447 }
448
449 static char **
450 decode_options (int argc, char **argv)
451 {
452 int c;
453
454 /* Convert old-style ar call by exploding option element and rearranging
455 options accordingly. */
456
457 restart:
458 if (argc > 1 && argv[1][0] != '-')
459 {
460 int new_argc; /* argc value for rearranged arguments */
461 char **new_argv; /* argv value for rearranged arguments */
462 char *const *in; /* cursor into original argv */
463 char **out; /* cursor into rearranged argv */
464 const char *letter; /* cursor into old option letters */
465 char buffer[3]; /* constructed option buffer */
466
467 /* Initialize a constructed option. */
468
469 buffer[0] = '-';
470 buffer[2] = '\0';
471
472 /* Allocate a new argument array, and copy program name in it. */
473
474 new_argc = argc - 1 + strlen (argv[1]);
475 new_argv = xmalloc ((new_argc + 1) * sizeof (*argv));
476 in = argv;
477 out = new_argv;
478 *out++ = *in++;
479
480 /* Copy each old letter option as a separate option. */
481
482 for (letter = *in++; *letter; letter++)
483 {
484 buffer[1] = *letter;
485 *out++ = xstrdup (buffer);
486 }
487
488 /* Copy all remaining options. */
489
490 while (in < argv + argc)
491 *out++ = *in++;
492 *out = NULL;
493
494 /* Replace the old option list by the new one. */
495
496 argc = new_argc;
497 argv = new_argv;
498 }
499
500 while ((c = getopt_long (argc, argv, "hdmpqrtxl:coOVsSuvabiMNfPTDU",
501 long_options, NULL)) != EOF)
502 {
503 switch (c)
504 {
505 case 'd':
506 case 'm':
507 case 'p':
508 case 'q':
509 case 'r':
510 case 't':
511 case 'x':
512 if (operation != none)
513 fatal (_("two different operation options specified"));
514 break;
515 }
516
517 switch (c)
518 {
519 case 'h':
520 show_help = 1;
521 break;
522 case 'd':
523 operation = del;
524 operation_alters_arch = true;
525 break;
526 case 'm':
527 operation = move;
528 operation_alters_arch = true;
529 break;
530 case 'p':
531 operation = print_files;
532 break;
533 case 'q':
534 operation = quick_append;
535 operation_alters_arch = true;
536 break;
537 case 'r':
538 operation = replace;
539 operation_alters_arch = true;
540 break;
541 case 't':
542 operation = print_table;
543 break;
544 case 'x':
545 operation = extract;
546 break;
547 case 'l':
548 if (libdeps != NULL)
549 fatal (_("libdeps specified more than once"));
550 libdeps = optarg;
551 break;
552 case 'c':
553 silent_create = 1;
554 break;
555 case 'o':
556 preserve_dates = 1;
557 break;
558 case 'O':
559 display_offsets = 1;
560 break;
561 case 'V':
562 show_version = true;
563 break;
564 case 's':
565 write_armap = 1;
566 break;
567 case 'S':
568 write_armap = -1;
569 break;
570 case 'u':
571 newer_only = 1;
572 break;
573 case 'v':
574 verbose = 1;
575 break;
576 case 'a':
577 postype = pos_after;
578 break;
579 case 'b':
580 postype = pos_before;
581 break;
582 case 'i':
583 postype = pos_before;
584 break;
585 case 'M':
586 mri_mode = 1;
587 break;
588 case 'N':
589 counted_name_mode = true;
590 break;
591 case 'f':
592 ar_truncate = true;
593 break;
594 case 'P':
595 full_pathname = true;
596 break;
597 case 'T':
598 make_thin_archive = true;
599 break;
600 case 'D':
601 deterministic = true;
602 break;
603 case 'U':
604 deterministic = false;
605 break;
606 case OPTION_PLUGIN:
607 #if BFD_SUPPORTS_PLUGINS
608 bfd_plugin_set_plugin (optarg);
609 #else
610 fprintf (stderr, _("sorry - this program has been built without plugin support\n"));
611 xexit (1);
612 #endif
613 break;
614 case OPTION_TARGET:
615 target = optarg;
616 break;
617 case OPTION_OUTPUT:
618 output_dir = optarg;
619 break;
620 case 0: /* A long option that just sets a flag. */
621 break;
622 default:
623 usage (0);
624 }
625 }
626
627 /* PR 13256: Allow for the possibility that the first command line option
628 started with a dash (eg --plugin) but then the following option(s) are
629 old style, non-dash-prefixed versions. */
630 if (operation == none && write_armap != 1 && !mri_mode
631 && optind > 0 && optind < argc)
632 {
633 argv += (optind - 1);
634 argc -= (optind - 1);
635 optind = 0;
636 goto restart;
637 }
638
639 return &argv[optind];
640 }
641
642 /* If neither -D nor -U was specified explicitly,
643 then use the configured default. */
644 static void
645 default_deterministic (void)
646 {
647 if (deterministic < 0)
648 deterministic = DEFAULT_AR_DETERMINISTIC;
649 }
650
651 static void
652 ranlib_main (int argc, char **argv)
653 {
654 int arg_index, status = 0;
655 bool touch = false;
656 int c;
657
658 while ((c = getopt_long (argc, argv, "DhHUvVt", long_options, NULL)) != EOF)
659 {
660 switch (c)
661 {
662 case 'D':
663 deterministic = true;
664 break;
665 case 'U':
666 deterministic = false;
667 break;
668 case 'h':
669 case 'H':
670 show_help = 1;
671 break;
672 case 't':
673 touch = true;
674 break;
675 case 'v':
676 case 'V':
677 show_version = 1;
678 break;
679
680 /* PR binutils/13493: Support plugins. */
681 case OPTION_PLUGIN:
682 #if BFD_SUPPORTS_PLUGINS
683 bfd_plugin_set_plugin (optarg);
684 #else
685 fprintf (stderr, _("sorry - this program has been built without plugin support\n"));
686 xexit (1);
687 #endif
688 break;
689 }
690 }
691
692 if (argc < 2)
693 ranlib_usage (0);
694
695 if (show_help)
696 ranlib_usage (1);
697
698 if (show_version)
699 print_version ("ranlib");
700
701 default_deterministic ();
702
703 arg_index = optind;
704
705 while (arg_index < argc)
706 {
707 if (! touch)
708 status |= ranlib_only (argv[arg_index]);
709 else
710 status |= ranlib_touch (argv[arg_index]);
711 ++arg_index;
712 }
713
714 xexit (status);
715 }
716
717 int main (int, char **);
718
719 int
720 main (int argc, char **argv)
721 {
722 int arg_index;
723 char **files;
724 int file_count;
725 char *inarch_filename;
726 int i;
727
728 #ifdef HAVE_LC_MESSAGES
729 setlocale (LC_MESSAGES, "");
730 #endif
731 setlocale (LC_CTYPE, "");
732 bindtextdomain (PACKAGE, LOCALEDIR);
733 textdomain (PACKAGE);
734
735 program_name = argv[0];
736 xmalloc_set_program_name (program_name);
737 bfd_set_error_program_name (program_name);
738 #if BFD_SUPPORTS_PLUGINS
739 bfd_plugin_set_program_name (program_name);
740 #endif
741
742 expandargv (&argc, &argv);
743
744 if (is_ranlib < 0)
745 {
746 const char *temp = lbasename (program_name);
747
748 if (strlen (temp) >= 6
749 && FILENAME_CMP (temp + strlen (temp) - 6, "ranlib") == 0)
750 is_ranlib = 1;
751 else
752 is_ranlib = 0;
753 }
754
755 START_PROGRESS (program_name, 0);
756
757 if (bfd_init () != BFD_INIT_MAGIC)
758 fatal (_("fatal error: libbfd ABI mismatch"));
759 set_default_bfd_target ();
760
761 xatexit (remove_output);
762
763 for (i = 1; i < argc; i++)
764 if (! ar_emul_parse_arg (argv[i]))
765 break;
766 argv += (i - 1);
767 argc -= (i - 1);
768
769 if (is_ranlib)
770 ranlib_main (argc, argv);
771
772 if (argc < 2)
773 usage (0);
774
775 argv = decode_options (argc, argv);
776
777 if (show_help)
778 usage (1);
779
780 if (show_version)
781 print_version ("ar");
782
783 arg_index = 0;
784
785 if (mri_mode)
786 {
787 default_deterministic ();
788 mri_emul ();
789 }
790 else
791 {
792 bfd *arch;
793
794 /* Fail if no files are specified on the command line.
795 (But not for MRI mode which allows for reading arguments
796 and filenames from stdin). */
797 if (argv[arg_index] == NULL)
798 usage (0);
799
800 /* We don't use do_quick_append any more. Too many systems
801 expect ar to always rebuild the symbol table even when q is
802 used. */
803
804 /* We can't write an armap when using ar q, so just do ar r
805 instead. */
806 if (operation == quick_append && write_armap)
807 operation = replace;
808
809 if ((operation == none || operation == print_table)
810 && write_armap == 1)
811 xexit (ranlib_only (argv[arg_index]));
812
813 if (operation == none)
814 fatal (_("no operation specified"));
815
816 if (newer_only && operation != replace)
817 fatal (_("`u' is only meaningful with the `r' option."));
818
819 if (newer_only && deterministic > 0)
820 fatal (_("`u' is not meaningful with the `D' option."));
821
822 if (newer_only && deterministic < 0 && DEFAULT_AR_DETERMINISTIC)
823 non_fatal (_("\
824 `u' modifier ignored since `D' is the default (see `U')"));
825
826 default_deterministic ();
827
828 if (postype != pos_default)
829 {
830 posname = argv[arg_index++];
831 if (posname == NULL)
832 fatal (_("missing position arg."));
833 }
834
835 if (counted_name_mode)
836 {
837 if (operation != extract && operation != del)
838 fatal (_("`N' is only meaningful with the `x' and `d' options."));
839 if (argv[arg_index] == NULL)
840 fatal (_("`N' missing value."));
841 counted_name_counter = atoi (argv[arg_index++]);
842 if (counted_name_counter <= 0)
843 fatal (_("Value for `N' must be positive."));
844 }
845
846 inarch_filename = argv[arg_index++];
847 if (inarch_filename == NULL)
848 usage (0);
849
850 for (file_count = 0; argv[arg_index + file_count] != NULL; file_count++)
851 continue;
852
853 files = (file_count > 0) ? argv + arg_index : NULL;
854
855 arch = open_inarch (inarch_filename,
856 files == NULL ? (char *) NULL : files[0]);
857
858 if (operation == extract && bfd_is_thin_archive (arch))
859 fatal (_("`x' cannot be used on thin archives."));
860
861 if (libdeps != NULL)
862 {
863 char **new_files;
864 bfd_size_type reclen = strlen (libdeps) + 1;
865
866 /* Create a bfd to contain the dependencies.
867 It inherits its type from arch, but we must set the type to
868 "binary" otherwise bfd_bwrite() will fail. After writing, we
869 must set the type back to default otherwise adding it to the
870 archive will fail. */
871 libdeps_bfd = bfd_create (LIBDEPS, arch);
872 if (libdeps_bfd == NULL)
873 fatal (_("Cannot create libdeps record."));
874
875 if (bfd_find_target ("binary", libdeps_bfd) == NULL)
876 fatal (_("Cannot set libdeps record type to binary."));
877
878 if (! bfd_set_format (libdeps_bfd, bfd_object))
879 fatal (_("Cannot set libdeps object format."));
880
881 if (! bfd_make_writable (libdeps_bfd))
882 fatal (_("Cannot make libdeps object writable."));
883
884 if (bfd_bwrite (libdeps, reclen, libdeps_bfd) != reclen)
885 fatal (_("Cannot write libdeps record."));
886
887 if (! bfd_make_readable (libdeps_bfd))
888 fatal (_("Cannot make libdeps object readable."));
889
890 if (bfd_find_target (plugin_target, libdeps_bfd) == NULL)
891 fatal (_("Cannot reset libdeps record type."));
892
893 /* Insert our libdeps record in 2nd slot of the list of files
894 being operated on. We shouldn't use 1st slot, but we want
895 to avoid having to search all the way to the end of an
896 archive with a large number of members at link time. */
897 new_files = xmalloc ((file_count + 2) * sizeof (char *));
898 new_files[0] = files[0];
899 new_files[1] = LIBDEPS;
900 for (i = 1; i < file_count; i++)
901 new_files[i+1] = files[i];
902 file_count = ++i;
903 files = new_files;
904 files[i] = NULL;
905 }
906
907 switch (operation)
908 {
909 case print_table:
910 map_over_members (arch, print_descr, files, file_count);
911 break;
912
913 case print_files:
914 map_over_members (arch, print_contents, files, file_count);
915 break;
916
917 case extract:
918 map_over_members (arch, extract_file, files, file_count);
919 break;
920
921 case del:
922 if (files != NULL)
923 delete_members (arch, files);
924 else
925 output_filename = NULL;
926 break;
927
928 case move:
929 /* PR 12558: Creating and moving at the same time does
930 not make sense. Just create the archive instead. */
931 if (! silent_create)
932 {
933 if (files != NULL)
934 move_members (arch, files);
935 else
936 output_filename = NULL;
937 break;
938 }
939 /* Fall through. */
940
941 case replace:
942 case quick_append:
943 if (files != NULL || write_armap > 0)
944 replace_members (arch, files, operation == quick_append);
945 else
946 output_filename = NULL;
947 break;
948
949 /* Shouldn't happen! */
950 default:
951 /* xgettext:c-format */
952 fatal (_("internal error -- this option not implemented"));
953 }
954 }
955
956 END_PROGRESS (program_name);
957
958 xexit (0);
959 return 0;
960 }
961
962 bfd *
963 open_inarch (const char *archive_filename, const char *file)
964 {
965 bfd **last_one;
966 bfd *next_one;
967 struct stat sbuf;
968 bfd *arch;
969 char **matching;
970
971 bfd_set_error (bfd_error_no_error);
972
973 if (target == NULL)
974 target = plugin_target;
975
976 if (stat (archive_filename, &sbuf) != 0)
977 {
978 #if !defined(__GO32__) || defined(__DJGPP__)
979
980 /* FIXME: I don't understand why this fragment was ifndef'ed
981 away for __GO32__; perhaps it was in the days of DJGPP v1.x.
982 stat() works just fine in v2.x, so I think this should be
983 removed. For now, I enable it for DJGPP v2. -- EZ. */
984
985 /* KLUDGE ALERT! Temporary fix until I figger why
986 stat() is wrong ... think it's buried in GO32's IDT - Jax */
987 if (errno != ENOENT)
988 bfd_fatal (archive_filename);
989 #endif
990
991 if (!operation_alters_arch)
992 {
993 fprintf (stderr, "%s: ", program_name);
994 perror (archive_filename);
995 maybequit ();
996 return NULL;
997 }
998
999 /* If the target isn't set, try to figure out the target to use
1000 for the archive from the first object on the list. */
1001 if (target == NULL && file != NULL)
1002 {
1003 bfd *obj;
1004
1005 obj = bfd_openr (file, target);
1006 if (obj != NULL)
1007 {
1008 if (bfd_check_format (obj, bfd_object))
1009 target = bfd_get_target (obj);
1010 (void) bfd_close (obj);
1011 }
1012 }
1013
1014 /* Create an empty archive. */
1015 arch = bfd_openw (archive_filename, target);
1016 if (arch == NULL
1017 || ! bfd_set_format (arch, bfd_archive)
1018 || ! bfd_close (arch))
1019 bfd_fatal (archive_filename);
1020 else if (!silent_create)
1021 non_fatal (_("creating %s"), archive_filename);
1022
1023 /* If we die creating a new archive, don't leave it around. */
1024 output_filename = archive_filename;
1025 }
1026
1027 arch = bfd_openr (archive_filename, target);
1028 if (arch == NULL)
1029 {
1030 bloser:
1031 bfd_fatal (archive_filename);
1032 }
1033
1034 if (! bfd_check_format_matches (arch, bfd_archive, &matching))
1035 {
1036 bfd_nonfatal (archive_filename);
1037 if (bfd_get_error () == bfd_error_file_ambiguously_recognized)
1038 {
1039 list_matching_formats (matching);
1040 free (matching);
1041 }
1042 xexit (1);
1043 }
1044
1045 if ((operation == replace || operation == quick_append)
1046 && bfd_openr_next_archived_file (arch, NULL) != NULL)
1047 {
1048 /* PR 15140: Catch attempts to convert a normal
1049 archive into a thin archive or vice versa. */
1050 if (make_thin_archive && ! bfd_is_thin_archive (arch))
1051 {
1052 fatal (_("Cannot convert existing library %s to thin format"),
1053 bfd_get_filename (arch));
1054 goto bloser;
1055 }
1056 else if (! make_thin_archive && bfd_is_thin_archive (arch))
1057 {
1058 fatal (_("Cannot convert existing thin library %s to normal format"),
1059 bfd_get_filename (arch));
1060 goto bloser;
1061 }
1062 }
1063
1064 last_one = &(arch->archive_next);
1065 /* Read all the contents right away, regardless. */
1066 for (next_one = bfd_openr_next_archived_file (arch, NULL);
1067 next_one;
1068 next_one = bfd_openr_next_archived_file (arch, next_one))
1069 {
1070 PROGRESS (1);
1071 *last_one = next_one;
1072 last_one = &next_one->archive_next;
1073 }
1074 *last_one = (bfd *) NULL;
1075 if (bfd_get_error () != bfd_error_no_more_archived_files)
1076 goto bloser;
1077 return arch;
1078 }
1079
1080 static void
1081 print_contents (bfd *abfd)
1082 {
1083 bfd_size_type ncopied = 0;
1084 bfd_size_type size;
1085 char *cbuf = (char *) xmalloc (BUFSIZE);
1086 struct stat buf;
1087
1088 if (bfd_stat_arch_elt (abfd, &buf) != 0)
1089 /* xgettext:c-format */
1090 fatal (_("internal stat error on %s"), bfd_get_filename (abfd));
1091
1092 if (verbose)
1093 printf ("\n<%s>\n\n", bfd_get_filename (abfd));
1094
1095 bfd_seek (abfd, (file_ptr) 0, SEEK_SET);
1096
1097 size = buf.st_size;
1098 while (ncopied < size)
1099 {
1100 bfd_size_type nread;
1101 bfd_size_type tocopy = size - ncopied;
1102
1103 if (tocopy > BUFSIZE)
1104 tocopy = BUFSIZE;
1105
1106 nread = bfd_bread (cbuf, tocopy, abfd);
1107 if (nread != tocopy)
1108 /* xgettext:c-format */
1109 fatal (_("%s is not a valid archive"),
1110 bfd_get_filename (abfd->my_archive));
1111
1112 /* fwrite in mingw32 may return int instead of bfd_size_type. Cast the
1113 return value to bfd_size_type to avoid comparison between signed and
1114 unsigned values. */
1115 if ((bfd_size_type) fwrite (cbuf, 1, nread, stdout) != nread)
1116 fatal ("stdout: %s", strerror (errno));
1117 ncopied += tocopy;
1118 }
1119 free (cbuf);
1120 }
1121
1122
1123 static FILE * open_output_file (bfd *) ATTRIBUTE_RETURNS_NONNULL;
1124
1125 static FILE *
1126 open_output_file (bfd * abfd)
1127 {
1128 output_filename = bfd_get_filename (abfd);
1129
1130 /* PR binutils/17533: Do not allow directory traversal
1131 outside of the current directory tree - unless the
1132 user has explicitly specified an output directory. */
1133 if (! is_valid_archive_path (output_filename))
1134 {
1135 char * base = (char *) lbasename (output_filename);
1136
1137 non_fatal (_("illegal output pathname for archive member: %s, using '%s' instead"),
1138 output_filename, base);
1139 output_filename = base;
1140 }
1141
1142 if (output_dir)
1143 {
1144 size_t len = strlen (output_dir);
1145
1146 if (len > 0)
1147 {
1148 /* FIXME: There is a memory leak here, but it is not serious. */
1149 if (IS_DIR_SEPARATOR (output_dir [len - 1]))
1150 output_filename = concat (output_dir, output_filename, NULL);
1151 else
1152 output_filename = concat (output_dir, "/", output_filename, NULL);
1153 }
1154 }
1155
1156 if (verbose)
1157 printf ("x - %s\n", output_filename);
1158
1159 FILE * ostream = fopen (output_filename, FOPEN_WB);
1160 if (ostream == NULL)
1161 {
1162 perror (output_filename);
1163 xexit (1);
1164 }
1165
1166 return ostream;
1167 }
1168
1169 /* Extract a member of the archive into its own file.
1170
1171 We defer opening the new file until after we have read a BUFSIZ chunk of the
1172 old one, since we know we have just read the archive header for the old
1173 one. Since most members are shorter than BUFSIZ, this means we will read
1174 the old header, read the old data, write a new inode for the new file, and
1175 write the new data, and be done. This 'optimization' is what comes from
1176 sitting next to a bare disk and hearing it every time it seeks. -- Gnu
1177 Gilmore */
1178
1179 void
1180 extract_file (bfd *abfd)
1181 {
1182 bfd_size_type size;
1183 struct stat buf;
1184
1185 if (preserve_dates)
1186 memset (&buf, 0, sizeof (buf));
1187
1188 if (bfd_stat_arch_elt (abfd, &buf) != 0)
1189 /* xgettext:c-format */
1190 fatal (_("internal stat error on %s"), bfd_get_filename (abfd));
1191 size = buf.st_size;
1192
1193 bfd_seek (abfd, (file_ptr) 0, SEEK_SET);
1194
1195 output_file = NULL;
1196 if (size == 0)
1197 {
1198 output_file = open_output_file (abfd);
1199 }
1200 else
1201 {
1202 bfd_size_type ncopied = 0;
1203 char *cbuf = (char *) xmalloc (BUFSIZE);
1204
1205 while (ncopied < size)
1206 {
1207 bfd_size_type nread, tocopy;
1208
1209 tocopy = size - ncopied;
1210 if (tocopy > BUFSIZE)
1211 tocopy = BUFSIZE;
1212
1213 nread = bfd_bread (cbuf, tocopy, abfd);
1214 if (nread != tocopy)
1215 /* xgettext:c-format */
1216 fatal (_("%s is not a valid archive"),
1217 bfd_get_filename (abfd->my_archive));
1218
1219 /* See comment above; this saves disk arm motion. */
1220 if (output_file == NULL)
1221 output_file = open_output_file (abfd);
1222
1223 /* fwrite in mingw32 may return int instead of bfd_size_type. Cast
1224 the return value to bfd_size_type to avoid comparison between
1225 signed and unsigned values. */
1226 if ((bfd_size_type) fwrite (cbuf, 1, nread, output_file) != nread)
1227 fatal ("%s: %s", output_filename, strerror (errno));
1228
1229 ncopied += tocopy;
1230 }
1231
1232 free (cbuf);
1233 }
1234
1235 fclose (output_file);
1236
1237 output_file = NULL;
1238
1239 chmod (output_filename, buf.st_mode);
1240
1241 if (preserve_dates)
1242 {
1243 /* Set access time to modification time. Only st_mtime is
1244 initialized by bfd_stat_arch_elt. */
1245 buf.st_atime = buf.st_mtime;
1246 set_times (output_filename, &buf);
1247 }
1248
1249 output_filename = NULL;
1250 }
1251
1252 static void
1253 write_archive (bfd *iarch)
1254 {
1255 bfd *obfd;
1256 char *old_name, *new_name;
1257 bfd *contents_head = iarch->archive_next;
1258 int tmpfd = -1;
1259
1260 old_name = xstrdup (bfd_get_filename (iarch));
1261 new_name = make_tempname (old_name, &tmpfd);
1262
1263 if (new_name == NULL)
1264 bfd_fatal (_("could not create temporary file whilst writing archive"));
1265
1266 output_filename = new_name;
1267
1268 obfd = bfd_fdopenw (new_name, bfd_get_target (iarch), tmpfd);
1269
1270 if (obfd == NULL)
1271 {
1272 close (tmpfd);
1273 bfd_fatal (old_name);
1274 }
1275
1276 output_bfd = obfd;
1277
1278 bfd_set_format (obfd, bfd_archive);
1279
1280 /* Request writing the archive symbol table unless we've
1281 been explicitly requested not to. */
1282 obfd->has_armap = write_armap >= 0;
1283
1284 if (ar_truncate)
1285 {
1286 /* This should really use bfd_set_file_flags, but that rejects
1287 archives. */
1288 obfd->flags |= BFD_TRADITIONAL_FORMAT;
1289 }
1290
1291 if (deterministic)
1292 obfd->flags |= BFD_DETERMINISTIC_OUTPUT;
1293
1294 if (full_pathname)
1295 obfd->flags |= BFD_ARCHIVE_FULL_PATH;
1296
1297 if (make_thin_archive || bfd_is_thin_archive (iarch))
1298 bfd_set_thin_archive (obfd, true);
1299
1300 if (!bfd_set_archive_head (obfd, contents_head))
1301 bfd_fatal (old_name);
1302
1303 tmpfd = dup (tmpfd);
1304 if (!bfd_close (obfd))
1305 bfd_fatal (old_name);
1306
1307 output_bfd = NULL;
1308 output_filename = NULL;
1309
1310 /* We don't care if this fails; we might be creating the archive. */
1311 bfd_close (iarch);
1312
1313 if (smart_rename (new_name, old_name, tmpfd, NULL, false) != 0)
1314 xexit (1);
1315 free (old_name);
1316 free (new_name);
1317 }
1318
1319 /* Return a pointer to the pointer to the entry which should be rplacd'd
1320 into when altering. DEFAULT_POS should be how to interpret pos_default,
1321 and should be a pos value. */
1322
1323 static bfd **
1324 get_pos_bfd (bfd **contents, enum pos default_pos, const char *default_posname)
1325 {
1326 bfd **after_bfd = contents;
1327 enum pos realpos;
1328 const char *realposname;
1329
1330 if (postype == pos_default)
1331 {
1332 realpos = default_pos;
1333 realposname = default_posname;
1334 }
1335 else
1336 {
1337 realpos = postype;
1338 realposname = posname;
1339 }
1340
1341 if (realpos == pos_end)
1342 {
1343 while (*after_bfd)
1344 after_bfd = &((*after_bfd)->archive_next);
1345 }
1346 else
1347 {
1348 for (; *after_bfd; after_bfd = &(*after_bfd)->archive_next)
1349 if (FILENAME_CMP (bfd_get_filename (*after_bfd), realposname) == 0)
1350 {
1351 if (realpos == pos_after)
1352 after_bfd = &(*after_bfd)->archive_next;
1353 break;
1354 }
1355 }
1356 return after_bfd;
1357 }
1358
1359 static void
1360 delete_members (bfd *arch, char **files_to_delete)
1361 {
1362 bfd **current_ptr_ptr;
1363 bool found;
1364 bool something_changed = false;
1365 int match_count;
1366
1367 for (; *files_to_delete != NULL; ++files_to_delete)
1368 {
1369 /* In a.out systems, the armap is optional. It's also called
1370 __.SYMDEF. So if the user asked to delete it, we should remember
1371 that fact. This isn't quite right for COFF systems (where
1372 __.SYMDEF might be regular member), but it's very unlikely
1373 to be a problem. FIXME */
1374
1375 if (!strcmp (*files_to_delete, "__.SYMDEF"))
1376 {
1377 arch->has_armap = false;
1378 write_armap = -1;
1379 continue;
1380 }
1381
1382 found = false;
1383 match_count = 0;
1384 current_ptr_ptr = &(arch->archive_next);
1385 while (*current_ptr_ptr)
1386 {
1387 if (FILENAME_CMP (normalize (*files_to_delete, arch),
1388 bfd_get_filename (*current_ptr_ptr)) == 0)
1389 {
1390 ++match_count;
1391 if (counted_name_mode
1392 && match_count != counted_name_counter)
1393 {
1394 /* Counting, and didn't match on count; go on to the
1395 next one. */
1396 }
1397 else
1398 {
1399 found = true;
1400 something_changed = true;
1401 if (verbose)
1402 printf ("d - %s\n",
1403 *files_to_delete);
1404 *current_ptr_ptr = ((*current_ptr_ptr)->archive_next);
1405 goto next_file;
1406 }
1407 }
1408
1409 current_ptr_ptr = &((*current_ptr_ptr)->archive_next);
1410 }
1411
1412 if (verbose && !found)
1413 {
1414 /* xgettext:c-format */
1415 printf (_("No member named `%s'\n"), *files_to_delete);
1416 }
1417 next_file:
1418 ;
1419 }
1420
1421 if (something_changed)
1422 write_archive (arch);
1423 else
1424 output_filename = NULL;
1425 }
1426
1427
1428 /* Reposition existing members within an archive */
1429
1430 static void
1431 move_members (bfd *arch, char **files_to_move)
1432 {
1433 bfd **after_bfd; /* New entries go after this one */
1434 bfd **current_ptr_ptr; /* cdr pointer into contents */
1435
1436 for (; *files_to_move; ++files_to_move)
1437 {
1438 current_ptr_ptr = &(arch->archive_next);
1439 while (*current_ptr_ptr)
1440 {
1441 bfd *current_ptr = *current_ptr_ptr;
1442 if (FILENAME_CMP (normalize (*files_to_move, arch),
1443 bfd_get_filename (current_ptr)) == 0)
1444 {
1445 /* Move this file to the end of the list - first cut from
1446 where it is. */
1447 bfd *link_bfd;
1448 *current_ptr_ptr = current_ptr->archive_next;
1449
1450 /* Now glue to end */
1451 after_bfd = get_pos_bfd (&arch->archive_next, pos_end, NULL);
1452 link_bfd = *after_bfd;
1453 *after_bfd = current_ptr;
1454 current_ptr->archive_next = link_bfd;
1455
1456 if (verbose)
1457 printf ("m - %s\n", *files_to_move);
1458
1459 goto next_file;
1460 }
1461
1462 current_ptr_ptr = &((*current_ptr_ptr)->archive_next);
1463 }
1464 /* xgettext:c-format */
1465 fatal (_("no entry %s in archive %s!"), *files_to_move,
1466 bfd_get_filename (arch));
1467
1468 next_file:;
1469 }
1470
1471 write_archive (arch);
1472 }
1473
1474 /* Ought to default to replacing in place, but this is existing practice! */
1475
1476 static void
1477 replace_members (bfd *arch, char **files_to_move, bool quick)
1478 {
1479 bool changed = false;
1480 bfd **after_bfd; /* New entries go after this one. */
1481 bfd *current;
1482 bfd **current_ptr;
1483
1484 while (files_to_move && *files_to_move)
1485 {
1486 if (! quick)
1487 {
1488 current_ptr = &arch->archive_next;
1489 while (*current_ptr)
1490 {
1491 current = *current_ptr;
1492
1493 /* For compatibility with existing ar programs, we
1494 permit the same file to be added multiple times. */
1495 if (FILENAME_CMP (normalize (*files_to_move, arch),
1496 normalize (bfd_get_filename (current), arch)) == 0
1497 && current->arelt_data != NULL)
1498 {
1499 bool replaced;
1500 if (newer_only)
1501 {
1502 struct stat fsbuf, asbuf;
1503
1504 if (stat (*files_to_move, &fsbuf) != 0)
1505 {
1506 if (errno != ENOENT)
1507 bfd_fatal (*files_to_move);
1508 goto next_file;
1509 }
1510 if (bfd_stat_arch_elt (current, &asbuf) != 0)
1511 /* xgettext:c-format */
1512 fatal (_("internal stat error on %s"),
1513 bfd_get_filename (current));
1514
1515 if (fsbuf.st_mtime <= asbuf.st_mtime)
1516 goto next_file;
1517 }
1518
1519 after_bfd = get_pos_bfd (&arch->archive_next, pos_after,
1520 bfd_get_filename (current));
1521 if (libdeps_bfd != NULL
1522 && FILENAME_CMP (normalize (*files_to_move, arch),
1523 LIBDEPS) == 0)
1524 {
1525 replaced = ar_emul_replace_bfd (after_bfd, libdeps_bfd,
1526 verbose);
1527 }
1528 else
1529 {
1530 replaced = ar_emul_replace (after_bfd, *files_to_move,
1531 target, verbose);
1532 }
1533 if (replaced)
1534 {
1535 /* Snip out this entry from the chain. */
1536 *current_ptr = (*current_ptr)->archive_next;
1537 changed = true;
1538 }
1539
1540 goto next_file;
1541 }
1542 current_ptr = &(current->archive_next);
1543 }
1544 }
1545
1546 /* Add to the end of the archive. */
1547 after_bfd = get_pos_bfd (&arch->archive_next, pos_end, NULL);
1548
1549 if (libdeps_bfd != NULL
1550 && FILENAME_CMP (normalize (*files_to_move, arch), LIBDEPS) == 0)
1551 {
1552 changed |= ar_emul_append_bfd (after_bfd, libdeps_bfd,
1553 verbose, make_thin_archive);
1554 }
1555 else
1556 {
1557 changed |= ar_emul_append (after_bfd, *files_to_move, target,
1558 verbose, make_thin_archive);
1559 }
1560
1561 next_file:;
1562
1563 files_to_move++;
1564 }
1565
1566 if (changed)
1567 write_archive (arch);
1568 else
1569 output_filename = NULL;
1570 }
1571
1572 static int
1573 ranlib_only (const char *archname)
1574 {
1575 bfd *arch;
1576
1577 if (get_file_size (archname) < 1)
1578 return 1;
1579 write_armap = 1;
1580 arch = open_inarch (archname, (char *) NULL);
1581 if (arch == NULL)
1582 xexit (1);
1583 write_archive (arch);
1584 return 0;
1585 }
1586
1587 /* Update the timestamp of the symbol map of an archive. */
1588
1589 static int
1590 ranlib_touch (const char *archname)
1591 {
1592 #ifdef __GO32__
1593 /* I don't think updating works on go32. */
1594 ranlib_only (archname);
1595 #else
1596 int f;
1597 bfd *arch;
1598 char **matching;
1599
1600 if (get_file_size (archname) < 1)
1601 return 1;
1602 f = open (archname, O_RDWR | O_BINARY, 0);
1603 if (f < 0)
1604 {
1605 bfd_set_error (bfd_error_system_call);
1606 bfd_fatal (archname);
1607 }
1608
1609 arch = bfd_fdopenr (archname, (const char *) NULL, f);
1610 if (arch == NULL)
1611 bfd_fatal (archname);
1612 if (! bfd_check_format_matches (arch, bfd_archive, &matching))
1613 {
1614 bfd_nonfatal (archname);
1615 if (bfd_get_error () == bfd_error_file_ambiguously_recognized)
1616 {
1617 list_matching_formats (matching);
1618 free (matching);
1619 }
1620 xexit (1);
1621 }
1622
1623 if (! bfd_has_map (arch))
1624 /* xgettext:c-format */
1625 fatal (_("%s: no archive map to update"), archname);
1626
1627 if (deterministic)
1628 arch->flags |= BFD_DETERMINISTIC_OUTPUT;
1629
1630 bfd_update_armap_timestamp (arch);
1631
1632 if (! bfd_close (arch))
1633 bfd_fatal (archname);
1634 #endif
1635 return 0;
1636 }
1637
1638 /* Things which are interesting to map over all or some of the files: */
1639
1640 static void
1641 print_descr (bfd *abfd)
1642 {
1643 print_arelt_descr (stdout, abfd, verbose, display_offsets);
1644 }