1 /* ar.c - Archive modify and extract.
2 Copyright (C) 1991-2022 Free Software Foundation, Inc.
4 This file is part of GNU Binutils.
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.
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.
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. */
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. */
28 #include "libiberty.h"
34 #include "filenames.h"
36 #include "plugin-api.h"
41 #define EXT_NAME_LEN 3 /* Bufflen of addition to name if it's MS-DOS. */
43 #define EXT_NAME_LEN 6 /* Ditto for *NIX. */
46 /* Static declarations. */
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
);
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);
64 /** Globals and flags. */
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. */
73 /* Nonzero means don't warn about creating the archive file if necessary. */
74 int silent_create
= 0;
76 /* Nonzero means describe each action performed. */
79 /* Nonzero means display offsets of files in the archive. */
80 int display_offsets
= 0;
82 /* Nonzero means preserve dates of members when extracting them. */
83 int preserve_dates
= 0;
85 /* Nonzero means don't replace existing members whose dates are more recent
86 than the corresponding files. */
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;
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. */
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. */
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
;
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. */
113 pos_default
, pos_before
, pos_after
, pos_end
114 } postype
= pos_default
;
118 none
= 0, del
, replace
, print_table
,
119 print_files
, extract
, move
, quick_append
123 get_pos_bfd (bfd
**, enum pos
, const char *);
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;
130 /* Whether to truncate names of files stored in the archive. */
131 static bool ar_truncate
= false;
133 /* Whether to use a full file name match when searching an archive.
134 This is convenient for archives created by the Microsoft lib
136 static bool full_pathname
= false;
138 /* Whether to create a "thin" archive (symbol index only -- no files). */
139 static bool make_thin_archive
= false;
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
;
146 static int show_version
= 0;
148 static int show_help
= 0;
150 #if BFD_SUPPORTS_PLUGINS
151 static const char *plugin_target
= "plugin";
153 static const char *plugin_target
= NULL
;
156 static const char *target
= NULL
;
158 enum long_option_numbers
165 static const char * output_dir
= NULL
;
167 static struct option long_options
[] =
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}
184 interactive
= isatty (fileno (stdin
));
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. */
193 map_over_members (bfd
*arch
, void (*function
)(bfd
*), char **files
, int count
)
200 for (head
= arch
->archive_next
; head
; head
= head
->archive_next
)
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
214 for (head
= arch
->archive_next
; head
; head
= head
->archive_next
)
215 head
->archive_pass
= 0;
217 for (; count
> 0; files
++, count
--)
222 for (head
= arch
->archive_next
; head
; head
= head
->archive_next
)
224 const char * filename
;
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
232 if (head
->archive_pass
)
235 filename
= bfd_get_filename (head
);
236 if (filename
== NULL
)
238 /* Some archive formats don't get the filenames filled in
239 until the elements are opened. */
241 bfd_stat_arch_elt (head
, &buf
);
243 else if (bfd_is_thin_archive (arch
))
245 /* Thin archives store full pathnames. Need to normalize. */
246 filename
= normalize (filename
, arch
);
250 && !FILENAME_CMP (normalize (*files
, arch
), filename
))
253 if (counted_name_mode
254 && match_count
!= counted_name_counter
)
256 /* Counting, and didn't match on count; go on to the
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. */
274 /* xgettext:c-format */
275 fprintf (stderr
, _("no entry %s in archive\n"), *files
);
279 bool operation_alters_arch
= false;
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");
293 /* xgettext:c-format */
294 const char *command_line
295 = _("Usage: %s [emulation options] [-]{dmpqrstx}[abcDfilMNoOPsSTuvV]"
296 " [member-name] [count] archive-file file...\n");
298 s
= help
? stdout
: stderr
;
300 fprintf (s
, command_line
, program_name
);
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
)
319 [D] - use zero for timestamps and uids/gids (default)\n"));
321 [U] - use actual timestamps and uids/gids\n"));
326 [D] - use zero for timestamps and uids/gids\n"));
328 [U] - use actual timestamps and uids/gids (default)\n"));
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"));
356 list_supported_targets (program_name
, s
);
358 if (REPORT_BUGS_TO
[0] && help
)
359 fprintf (s
, _("Report bugs to %s\n"), REPORT_BUGS_TO
);
361 xexit (help
? 0 : 1);
365 ranlib_usage (int help
)
369 s
= help
? stdout
: stderr
;
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
378 --plugin <name> Load the specified plugin\n"));
380 if (DEFAULT_AR_DETERMINISTIC
)
382 -D Use zero for symbol map timestamp (default)\n\
383 -U Use an actual symbol map timestamp\n"));
386 -D Use zero for symbol map timestamp\n\
387 -U Use actual symbol map timestamp (default)\n"));
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"));
393 list_supported_targets (program_name
, s
);
395 if (REPORT_BUGS_TO
[0] && help
)
396 fprintf (s
, _("Report bugs to %s\n"), REPORT_BUGS_TO
);
398 xexit (help
? 0 : 1);
401 /* Normalize a file name specified on the command line into a file
402 name which we will use in an archive. */
405 normalize (const char *file
, bfd
*abfd
)
407 const char *filename
;
412 filename
= lbasename (file
);
416 && strlen (filename
) > abfd
->xvec
->ar_max_namelen
)
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';
430 /* Remove any output file. This is only called via xatexit. */
432 static const char *output_filename
= NULL
;
433 static FILE *output_file
= NULL
;
434 static bfd
*output_bfd
= NULL
;
439 if (output_filename
!= NULL
)
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
);
450 decode_options (int argc
, char **argv
)
454 /* Convert old-style ar call by exploding option element and rearranging
455 options accordingly. */
458 if (argc
> 1 && argv
[1][0] != '-')
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 */
467 /* Initialize a constructed option. */
472 /* Allocate a new argument array, and copy program name in it. */
474 new_argc
= argc
- 1 + strlen (argv
[1]);
475 new_argv
= xmalloc ((new_argc
+ 1) * sizeof (*argv
));
480 /* Copy each old letter option as a separate option. */
482 for (letter
= *in
++; *letter
; letter
++)
485 *out
++ = xstrdup (buffer
);
488 /* Copy all remaining options. */
490 while (in
< argv
+ argc
)
494 /* Replace the old option list by the new one. */
500 while ((c
= getopt_long (argc
, argv
, "hdmpqrtxl:coOVsSuvabiMNfPTDU",
501 long_options
, NULL
)) != EOF
)
512 if (operation
!= none
)
513 fatal (_("two different operation options specified"));
524 operation_alters_arch
= true;
528 operation_alters_arch
= true;
531 operation
= print_files
;
534 operation
= quick_append
;
535 operation_alters_arch
= true;
539 operation_alters_arch
= true;
542 operation
= print_table
;
549 fatal (_("libdeps specified more than once"));
580 postype
= pos_before
;
583 postype
= pos_before
;
589 counted_name_mode
= true;
595 full_pathname
= true;
598 make_thin_archive
= true;
601 deterministic
= true;
604 deterministic
= false;
607 #if BFD_SUPPORTS_PLUGINS
608 bfd_plugin_set_plugin (optarg
);
610 fprintf (stderr
, _("sorry - this program has been built without plugin support\n"));
620 case 0: /* A long option that just sets a flag. */
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
)
633 argv
+= (optind
- 1);
634 argc
-= (optind
- 1);
639 return &argv
[optind
];
642 /* If neither -D nor -U was specified explicitly,
643 then use the configured default. */
645 default_deterministic (void)
647 if (deterministic
< 0)
648 deterministic
= DEFAULT_AR_DETERMINISTIC
;
652 ranlib_main (int argc
, char **argv
)
654 int arg_index
, status
= 0;
658 while ((c
= getopt_long (argc
, argv
, "DhHUvVt", long_options
, NULL
)) != EOF
)
663 deterministic
= true;
666 deterministic
= false;
680 /* PR binutils/13493: Support plugins. */
682 #if BFD_SUPPORTS_PLUGINS
683 bfd_plugin_set_plugin (optarg
);
685 fprintf (stderr
, _("sorry - this program has been built without plugin support\n"));
699 print_version ("ranlib");
701 default_deterministic ();
705 while (arg_index
< argc
)
708 status
|= ranlib_only (argv
[arg_index
]);
710 status
|= ranlib_touch (argv
[arg_index
]);
717 int main (int, char **);
720 main (int argc
, char **argv
)
725 char *inarch_filename
;
728 #ifdef HAVE_LC_MESSAGES
729 setlocale (LC_MESSAGES
, "");
731 setlocale (LC_CTYPE
, "");
732 bindtextdomain (PACKAGE
, LOCALEDIR
);
733 textdomain (PACKAGE
);
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
);
742 expandargv (&argc
, &argv
);
746 const char *temp
= lbasename (program_name
);
748 if (strlen (temp
) >= 6
749 && FILENAME_CMP (temp
+ strlen (temp
) - 6, "ranlib") == 0)
755 START_PROGRESS (program_name
, 0);
757 if (bfd_init () != BFD_INIT_MAGIC
)
758 fatal (_("fatal error: libbfd ABI mismatch"));
759 set_default_bfd_target ();
761 xatexit (remove_output
);
763 for (i
= 1; i
< argc
; i
++)
764 if (! ar_emul_parse_arg (argv
[i
]))
770 ranlib_main (argc
, argv
);
775 argv
= decode_options (argc
, argv
);
781 print_version ("ar");
787 default_deterministic ();
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
)
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
804 /* We can't write an armap when using ar q, so just do ar r
806 if (operation
== quick_append
&& write_armap
)
809 if ((operation
== none
|| operation
== print_table
)
811 xexit (ranlib_only (argv
[arg_index
]));
813 if (operation
== none
)
814 fatal (_("no operation specified"));
816 if (newer_only
&& operation
!= replace
)
817 fatal (_("`u' is only meaningful with the `r' option."));
819 if (newer_only
&& deterministic
> 0)
820 fatal (_("`u' is not meaningful with the `D' option."));
822 if (newer_only
&& deterministic
< 0 && DEFAULT_AR_DETERMINISTIC
)
824 `u' modifier ignored since `D' is the default (see `U')"));
826 default_deterministic ();
828 if (postype
!= pos_default
)
830 posname
= argv
[arg_index
++];
832 fatal (_("missing position arg."));
835 if (counted_name_mode
)
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."));
846 inarch_filename
= argv
[arg_index
++];
847 if (inarch_filename
== NULL
)
850 for (file_count
= 0; argv
[arg_index
+ file_count
] != NULL
; file_count
++)
853 files
= (file_count
> 0) ? argv
+ arg_index
: NULL
;
855 arch
= open_inarch (inarch_filename
,
856 files
== NULL
? (char *) NULL
: files
[0]);
858 if (operation
== extract
&& bfd_is_thin_archive (arch
))
859 fatal (_("`x' cannot be used on thin archives."));
864 bfd_size_type reclen
= strlen (libdeps
) + 1;
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."));
875 if (bfd_find_target ("binary", libdeps_bfd
) == NULL
)
876 fatal (_("Cannot set libdeps record type to binary."));
878 if (! bfd_set_format (libdeps_bfd
, bfd_object
))
879 fatal (_("Cannot set libdeps object format."));
881 if (! bfd_make_writable (libdeps_bfd
))
882 fatal (_("Cannot make libdeps object writable."));
884 if (bfd_bwrite (libdeps
, reclen
, libdeps_bfd
) != reclen
)
885 fatal (_("Cannot write libdeps record."));
887 if (! bfd_make_readable (libdeps_bfd
))
888 fatal (_("Cannot make libdeps object readable."));
890 if (bfd_find_target (plugin_target
, libdeps_bfd
) == NULL
)
891 fatal (_("Cannot reset libdeps record type."));
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 (*new_files
));
900 new_files
[0] = files
[0];
901 memcpy (new_files
+ 1, files
, file_count
* sizeof (*files
));
903 new_files
[file_count
!= 0] = LIBDEPS
;
905 new_files
[file_count
] = NULL
;
912 map_over_members (arch
, print_descr
, files
, file_count
);
916 map_over_members (arch
, print_contents
, files
, file_count
);
920 map_over_members (arch
, extract_file
, files
, file_count
);
925 delete_members (arch
, files
);
927 output_filename
= NULL
;
931 /* PR 12558: Creating and moving at the same time does
932 not make sense. Just create the archive instead. */
936 move_members (arch
, files
);
938 output_filename
= NULL
;
945 if (files
!= NULL
|| write_armap
> 0)
946 replace_members (arch
, files
, operation
== quick_append
);
948 output_filename
= NULL
;
951 /* Shouldn't happen! */
953 /* xgettext:c-format */
954 fatal (_("internal error -- this option not implemented"));
958 END_PROGRESS (program_name
);
965 open_inarch (const char *archive_filename
, const char *file
)
973 bfd_set_error (bfd_error_no_error
);
976 target
= plugin_target
;
978 if (stat (archive_filename
, &sbuf
) != 0)
980 #if !defined(__GO32__) || defined(__DJGPP__)
982 /* FIXME: I don't understand why this fragment was ifndef'ed
983 away for __GO32__; perhaps it was in the days of DJGPP v1.x.
984 stat() works just fine in v2.x, so I think this should be
985 removed. For now, I enable it for DJGPP v2. -- EZ. */
987 /* KLUDGE ALERT! Temporary fix until I figger why
988 stat() is wrong ... think it's buried in GO32's IDT - Jax */
990 bfd_fatal (archive_filename
);
993 if (!operation_alters_arch
)
995 fprintf (stderr
, "%s: ", program_name
);
996 perror (archive_filename
);
1001 /* If the target isn't set, try to figure out the target to use
1002 for the archive from the first object on the list. */
1003 if (target
== NULL
&& file
!= NULL
)
1007 obj
= bfd_openr (file
, target
);
1010 if (bfd_check_format (obj
, bfd_object
))
1011 target
= bfd_get_target (obj
);
1012 (void) bfd_close (obj
);
1016 /* Create an empty archive. */
1017 arch
= bfd_openw (archive_filename
, target
);
1019 || ! bfd_set_format (arch
, bfd_archive
)
1020 || ! bfd_close (arch
))
1021 bfd_fatal (archive_filename
);
1022 else if (!silent_create
)
1023 non_fatal (_("creating %s"), archive_filename
);
1025 /* If we die creating a new archive, don't leave it around. */
1026 output_filename
= archive_filename
;
1029 arch
= bfd_openr (archive_filename
, target
);
1033 bfd_fatal (archive_filename
);
1036 if (! bfd_check_format_matches (arch
, bfd_archive
, &matching
))
1038 bfd_nonfatal (archive_filename
);
1039 if (bfd_get_error () == bfd_error_file_ambiguously_recognized
)
1041 list_matching_formats (matching
);
1047 if ((operation
== replace
|| operation
== quick_append
)
1048 && bfd_openr_next_archived_file (arch
, NULL
) != NULL
)
1050 /* PR 15140: Catch attempts to convert a normal
1051 archive into a thin archive or vice versa. */
1052 if (make_thin_archive
&& ! bfd_is_thin_archive (arch
))
1054 fatal (_("Cannot convert existing library %s to thin format"),
1055 bfd_get_filename (arch
));
1058 else if (! make_thin_archive
&& bfd_is_thin_archive (arch
))
1060 fatal (_("Cannot convert existing thin library %s to normal format"),
1061 bfd_get_filename (arch
));
1066 last_one
= &(arch
->archive_next
);
1067 /* Read all the contents right away, regardless. */
1068 for (next_one
= bfd_openr_next_archived_file (arch
, NULL
);
1070 next_one
= bfd_openr_next_archived_file (arch
, next_one
))
1073 *last_one
= next_one
;
1074 last_one
= &next_one
->archive_next
;
1076 *last_one
= (bfd
*) NULL
;
1077 if (bfd_get_error () != bfd_error_no_more_archived_files
)
1083 print_contents (bfd
*abfd
)
1085 bfd_size_type ncopied
= 0;
1087 char *cbuf
= (char *) xmalloc (BUFSIZE
);
1090 if (bfd_stat_arch_elt (abfd
, &buf
) != 0)
1091 /* xgettext:c-format */
1092 fatal (_("internal stat error on %s"), bfd_get_filename (abfd
));
1095 printf ("\n<%s>\n\n", bfd_get_filename (abfd
));
1097 bfd_seek (abfd
, (file_ptr
) 0, SEEK_SET
);
1100 while (ncopied
< size
)
1102 bfd_size_type nread
;
1103 bfd_size_type tocopy
= size
- ncopied
;
1105 if (tocopy
> BUFSIZE
)
1108 nread
= bfd_bread (cbuf
, tocopy
, abfd
);
1109 if (nread
!= tocopy
)
1110 /* xgettext:c-format */
1111 fatal (_("%s is not a valid archive"),
1112 bfd_get_filename (abfd
->my_archive
));
1114 /* fwrite in mingw32 may return int instead of bfd_size_type. Cast the
1115 return value to bfd_size_type to avoid comparison between signed and
1117 if ((bfd_size_type
) fwrite (cbuf
, 1, nread
, stdout
) != nread
)
1118 fatal ("stdout: %s", strerror (errno
));
1125 static FILE * open_output_file (bfd
*) ATTRIBUTE_RETURNS_NONNULL
;
1128 open_output_file (bfd
* abfd
)
1130 output_filename
= bfd_get_filename (abfd
);
1132 /* PR binutils/17533: Do not allow directory traversal
1133 outside of the current directory tree - unless the
1134 user has explicitly specified an output directory. */
1135 if (! is_valid_archive_path (output_filename
))
1137 char * base
= (char *) lbasename (output_filename
);
1139 non_fatal (_("illegal output pathname for archive member: %s, using '%s' instead"),
1140 output_filename
, base
);
1141 output_filename
= base
;
1146 size_t len
= strlen (output_dir
);
1150 /* FIXME: There is a memory leak here, but it is not serious. */
1151 if (IS_DIR_SEPARATOR (output_dir
[len
- 1]))
1152 output_filename
= concat (output_dir
, output_filename
, NULL
);
1154 output_filename
= concat (output_dir
, "/", output_filename
, NULL
);
1159 printf ("x - %s\n", output_filename
);
1161 FILE * ostream
= fopen (output_filename
, FOPEN_WB
);
1162 if (ostream
== NULL
)
1164 perror (output_filename
);
1171 /* Extract a member of the archive into its own file.
1173 We defer opening the new file until after we have read a BUFSIZ chunk of the
1174 old one, since we know we have just read the archive header for the old
1175 one. Since most members are shorter than BUFSIZ, this means we will read
1176 the old header, read the old data, write a new inode for the new file, and
1177 write the new data, and be done. This 'optimization' is what comes from
1178 sitting next to a bare disk and hearing it every time it seeks. -- Gnu
1182 extract_file (bfd
*abfd
)
1188 memset (&buf
, 0, sizeof (buf
));
1190 if (bfd_stat_arch_elt (abfd
, &buf
) != 0)
1191 /* xgettext:c-format */
1192 fatal (_("internal stat error on %s"), bfd_get_filename (abfd
));
1195 bfd_seek (abfd
, (file_ptr
) 0, SEEK_SET
);
1200 output_file
= open_output_file (abfd
);
1204 bfd_size_type ncopied
= 0;
1205 char *cbuf
= (char *) xmalloc (BUFSIZE
);
1207 while (ncopied
< size
)
1209 bfd_size_type nread
, tocopy
;
1211 tocopy
= size
- ncopied
;
1212 if (tocopy
> BUFSIZE
)
1215 nread
= bfd_bread (cbuf
, tocopy
, abfd
);
1216 if (nread
!= tocopy
)
1217 /* xgettext:c-format */
1218 fatal (_("%s is not a valid archive"),
1219 bfd_get_filename (abfd
->my_archive
));
1221 /* See comment above; this saves disk arm motion. */
1222 if (output_file
== NULL
)
1223 output_file
= open_output_file (abfd
);
1225 /* fwrite in mingw32 may return int instead of bfd_size_type. Cast
1226 the return value to bfd_size_type to avoid comparison between
1227 signed and unsigned values. */
1228 if ((bfd_size_type
) fwrite (cbuf
, 1, nread
, output_file
) != nread
)
1229 fatal ("%s: %s", output_filename
, strerror (errno
));
1237 fclose (output_file
);
1241 chmod (output_filename
, buf
.st_mode
);
1245 /* Set access time to modification time. Only st_mtime is
1246 initialized by bfd_stat_arch_elt. */
1247 buf
.st_atime
= buf
.st_mtime
;
1248 set_times (output_filename
, &buf
);
1251 output_filename
= NULL
;
1255 write_archive (bfd
*iarch
)
1258 char *old_name
, *new_name
;
1259 bfd
*contents_head
= iarch
->archive_next
;
1262 old_name
= xstrdup (bfd_get_filename (iarch
));
1263 new_name
= make_tempname (old_name
, &tmpfd
);
1265 if (new_name
== NULL
)
1266 bfd_fatal (_("could not create temporary file whilst writing archive"));
1268 output_filename
= new_name
;
1270 obfd
= bfd_fdopenw (new_name
, bfd_get_target (iarch
), tmpfd
);
1275 bfd_fatal (old_name
);
1280 bfd_set_format (obfd
, bfd_archive
);
1282 /* Request writing the archive symbol table unless we've
1283 been explicitly requested not to. */
1284 obfd
->has_armap
= write_armap
>= 0;
1288 /* This should really use bfd_set_file_flags, but that rejects
1290 obfd
->flags
|= BFD_TRADITIONAL_FORMAT
;
1294 obfd
->flags
|= BFD_DETERMINISTIC_OUTPUT
;
1297 obfd
->flags
|= BFD_ARCHIVE_FULL_PATH
;
1299 if (make_thin_archive
|| bfd_is_thin_archive (iarch
))
1300 bfd_set_thin_archive (obfd
, true);
1302 if (!bfd_set_archive_head (obfd
, contents_head
))
1303 bfd_fatal (old_name
);
1305 tmpfd
= dup (tmpfd
);
1306 if (!bfd_close (obfd
))
1307 bfd_fatal (old_name
);
1310 output_filename
= NULL
;
1312 /* We don't care if this fails; we might be creating the archive. */
1315 if (smart_rename (new_name
, old_name
, tmpfd
, NULL
, false) != 0)
1321 /* Return a pointer to the pointer to the entry which should be rplacd'd
1322 into when altering. DEFAULT_POS should be how to interpret pos_default,
1323 and should be a pos value. */
1326 get_pos_bfd (bfd
**contents
, enum pos default_pos
, const char *default_posname
)
1328 bfd
**after_bfd
= contents
;
1330 const char *realposname
;
1332 if (postype
== pos_default
)
1334 realpos
= default_pos
;
1335 realposname
= default_posname
;
1340 realposname
= posname
;
1343 if (realpos
== pos_end
)
1346 after_bfd
= &((*after_bfd
)->archive_next
);
1350 for (; *after_bfd
; after_bfd
= &(*after_bfd
)->archive_next
)
1351 if (FILENAME_CMP (bfd_get_filename (*after_bfd
), realposname
) == 0)
1353 if (realpos
== pos_after
)
1354 after_bfd
= &(*after_bfd
)->archive_next
;
1362 delete_members (bfd
*arch
, char **files_to_delete
)
1364 bfd
**current_ptr_ptr
;
1366 bool something_changed
= false;
1369 for (; *files_to_delete
!= NULL
; ++files_to_delete
)
1371 /* In a.out systems, the armap is optional. It's also called
1372 __.SYMDEF. So if the user asked to delete it, we should remember
1373 that fact. This isn't quite right for COFF systems (where
1374 __.SYMDEF might be regular member), but it's very unlikely
1375 to be a problem. FIXME */
1377 if (!strcmp (*files_to_delete
, "__.SYMDEF"))
1379 arch
->has_armap
= false;
1386 current_ptr_ptr
= &(arch
->archive_next
);
1387 while (*current_ptr_ptr
)
1389 if (FILENAME_CMP (normalize (*files_to_delete
, arch
),
1390 bfd_get_filename (*current_ptr_ptr
)) == 0)
1393 if (counted_name_mode
1394 && match_count
!= counted_name_counter
)
1396 /* Counting, and didn't match on count; go on to the
1402 something_changed
= true;
1406 *current_ptr_ptr
= ((*current_ptr_ptr
)->archive_next
);
1411 current_ptr_ptr
= &((*current_ptr_ptr
)->archive_next
);
1414 if (verbose
&& !found
)
1416 /* xgettext:c-format */
1417 printf (_("No member named `%s'\n"), *files_to_delete
);
1423 if (something_changed
)
1424 write_archive (arch
);
1426 output_filename
= NULL
;
1430 /* Reposition existing members within an archive */
1433 move_members (bfd
*arch
, char **files_to_move
)
1435 bfd
**after_bfd
; /* New entries go after this one */
1436 bfd
**current_ptr_ptr
; /* cdr pointer into contents */
1438 for (; *files_to_move
; ++files_to_move
)
1440 current_ptr_ptr
= &(arch
->archive_next
);
1441 while (*current_ptr_ptr
)
1443 bfd
*current_ptr
= *current_ptr_ptr
;
1444 if (FILENAME_CMP (normalize (*files_to_move
, arch
),
1445 bfd_get_filename (current_ptr
)) == 0)
1447 /* Move this file to the end of the list - first cut from
1450 *current_ptr_ptr
= current_ptr
->archive_next
;
1452 /* Now glue to end */
1453 after_bfd
= get_pos_bfd (&arch
->archive_next
, pos_end
, NULL
);
1454 link_bfd
= *after_bfd
;
1455 *after_bfd
= current_ptr
;
1456 current_ptr
->archive_next
= link_bfd
;
1459 printf ("m - %s\n", *files_to_move
);
1464 current_ptr_ptr
= &((*current_ptr_ptr
)->archive_next
);
1466 /* xgettext:c-format */
1467 fatal (_("no entry %s in archive %s!"), *files_to_move
,
1468 bfd_get_filename (arch
));
1473 write_archive (arch
);
1476 /* Ought to default to replacing in place, but this is existing practice! */
1479 replace_members (bfd
*arch
, char **files_to_move
, bool quick
)
1481 bool changed
= false;
1482 bfd
**after_bfd
; /* New entries go after this one. */
1486 while (files_to_move
&& *files_to_move
)
1490 current_ptr
= &arch
->archive_next
;
1491 while (*current_ptr
)
1493 current
= *current_ptr
;
1495 /* For compatibility with existing ar programs, we
1496 permit the same file to be added multiple times. */
1497 if (FILENAME_CMP (normalize (*files_to_move
, arch
),
1498 normalize (bfd_get_filename (current
), arch
)) == 0
1499 && current
->arelt_data
!= NULL
)
1504 struct stat fsbuf
, asbuf
;
1506 if (stat (*files_to_move
, &fsbuf
) != 0)
1508 if (errno
!= ENOENT
)
1509 bfd_fatal (*files_to_move
);
1512 if (bfd_stat_arch_elt (current
, &asbuf
) != 0)
1513 /* xgettext:c-format */
1514 fatal (_("internal stat error on %s"),
1515 bfd_get_filename (current
));
1517 if (fsbuf
.st_mtime
<= asbuf
.st_mtime
)
1521 after_bfd
= get_pos_bfd (&arch
->archive_next
, pos_after
,
1522 bfd_get_filename (current
));
1523 if (libdeps_bfd
!= NULL
1524 && FILENAME_CMP (normalize (*files_to_move
, arch
),
1527 replaced
= ar_emul_replace_bfd (after_bfd
, libdeps_bfd
,
1532 replaced
= ar_emul_replace (after_bfd
, *files_to_move
,
1537 /* Snip out this entry from the chain. */
1538 *current_ptr
= (*current_ptr
)->archive_next
;
1544 current_ptr
= &(current
->archive_next
);
1548 /* Add to the end of the archive. */
1549 after_bfd
= get_pos_bfd (&arch
->archive_next
, pos_end
, NULL
);
1551 if (libdeps_bfd
!= NULL
1552 && FILENAME_CMP (normalize (*files_to_move
, arch
), LIBDEPS
) == 0)
1554 changed
|= ar_emul_append_bfd (after_bfd
, libdeps_bfd
,
1555 verbose
, make_thin_archive
);
1559 changed
|= ar_emul_append (after_bfd
, *files_to_move
, target
,
1560 verbose
, make_thin_archive
);
1569 write_archive (arch
);
1571 output_filename
= NULL
;
1575 ranlib_only (const char *archname
)
1579 if (get_file_size (archname
) < 1)
1582 arch
= open_inarch (archname
, (char *) NULL
);
1585 write_archive (arch
);
1589 /* Update the timestamp of the symbol map of an archive. */
1592 ranlib_touch (const char *archname
)
1595 /* I don't think updating works on go32. */
1596 ranlib_only (archname
);
1602 if (get_file_size (archname
) < 1)
1604 f
= open (archname
, O_RDWR
| O_BINARY
, 0);
1607 bfd_set_error (bfd_error_system_call
);
1608 bfd_fatal (archname
);
1611 arch
= bfd_fdopenr (archname
, (const char *) NULL
, f
);
1613 bfd_fatal (archname
);
1614 if (! bfd_check_format_matches (arch
, bfd_archive
, &matching
))
1616 bfd_nonfatal (archname
);
1617 if (bfd_get_error () == bfd_error_file_ambiguously_recognized
)
1619 list_matching_formats (matching
);
1625 if (! bfd_has_map (arch
))
1626 /* xgettext:c-format */
1627 fatal (_("%s: no archive map to update"), archname
);
1630 arch
->flags
|= BFD_DETERMINISTIC_OUTPUT
;
1632 bfd_update_armap_timestamp (arch
);
1634 if (! bfd_close (arch
))
1635 bfd_fatal (archname
);
1640 /* Things which are interesting to map over all or some of the files: */
1643 print_descr (bfd
*abfd
)
1645 print_arelt_descr (stdout
, abfd
, verbose
, display_offsets
);