1 /* ar.c - Archive modify and extract.
2 Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
3 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
4 Free Software Foundation, Inc.
6 This file is part of GNU Binutils.
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
21 MA 02110-1301, USA. */
24 Bugs: GNU ar used to check file against filesystem in quick_update and
25 replace operations (would check mtime). Doesn't warn when name truncated.
26 No way to specify pos_end. Error messages should be more consistent. */
30 #include "libiberty.h"
37 #include "filenames.h"
43 #define EXT_NAME_LEN 3 /* Bufflen of addition to name if it's MS-DOS. */
45 #define EXT_NAME_LEN 6 /* Ditto for *NIX. */
48 /* Static declarations. */
50 static void mri_emul (void);
51 static const char *normalize (const char *, bfd
*);
52 static void remove_output (void);
53 static void map_over_members (bfd
*, void (*)(bfd
*), char **, int);
54 static void print_contents (bfd
* member
);
55 static void delete_members (bfd
*, char **files_to_delete
);
57 static void move_members (bfd
*, char **files_to_move
);
58 static void replace_members
59 (bfd
*, char **files_to_replace
, bfd_boolean quick
);
60 static void print_descr (bfd
* abfd
);
61 static void write_archive (bfd
*);
62 static int ranlib_only (const char *archname
);
63 static int ranlib_touch (const char *archname
);
64 static void usage (int);
66 /** Globals and flags. */
70 /* This flag distinguishes between ar and ranlib:
71 1 means this is 'ranlib'; 0 means this is 'ar'.
72 -1 means if we should use argv[0] to decide. */
75 /* Nonzero means don't warn about creating the archive file if necessary. */
76 int silent_create
= 0;
78 /* Nonzero means describe each action performed. */
81 /* Nonzero means preserve dates of members when extracting them. */
82 int preserve_dates
= 0;
84 /* Nonzero means don't replace existing members whose dates are more recent
85 than the corresponding files. */
88 /* Controls the writing of an archive symbol table (in BSD: a __.SYMDEF
89 member). -1 means we've been explicitly asked to not write a symbol table;
90 +1 means we've been explicitly asked to write it;
92 Traditionally, the default in BSD has been to not write the table.
93 However, for POSIX.2 compliance the default is now to write a symbol table
94 if any of the members are object files. */
97 /* Operate in deterministic mode: write zero for timestamps, uids,
98 and gids for archive members and the archive symbol table, and write
99 consistent file modes. */
100 int deterministic
= 0;
102 /* Nonzero means it's the name of an existing member; position new or moved
103 files with respect to this one. */
104 char *posname
= NULL
;
106 /* Sez how to use `posname': pos_before means position before that member.
107 pos_after means position after that member. pos_end means always at end.
108 pos_default means default appropriately. For the latter two, `posname'
109 should also be zero. */
112 pos_default
, pos_before
, pos_after
, pos_end
113 } postype
= pos_default
;
117 none
= 0, del
, replace
, print_table
,
118 print_files
, extract
, move
, quick_append
122 get_pos_bfd (bfd
**, enum pos
, const char *);
124 /* For extract/delete only. If COUNTED_NAME_MODE is TRUE, we only
125 extract the COUNTED_NAME_COUNTER instance of that name. */
126 static bfd_boolean counted_name_mode
= 0;
127 static int counted_name_counter
= 0;
129 /* Whether to truncate names of files stored in the archive. */
130 static bfd_boolean ar_truncate
= FALSE
;
132 /* Whether to use a full file name match when searching an archive.
133 This is convenient for archives created by the Microsoft lib
135 static bfd_boolean full_pathname
= FALSE
;
137 /* Whether to create a "thin" archive (symbol index only -- no files). */
138 static bfd_boolean make_thin_archive
= FALSE
;
140 static int show_version
= 0;
142 static int show_help
= 0;
144 static const char *plugin_target
= NULL
;
146 static const char *target
= NULL
;
148 #define OPTION_PLUGIN 201
149 #define OPTION_TARGET 202
151 static struct option long_options
[] =
153 {"help", no_argument
, &show_help
, 1},
154 {"plugin", required_argument
, NULL
, OPTION_PLUGIN
},
155 {"target", required_argument
, NULL
, OPTION_TARGET
},
156 {"version", no_argument
, &show_version
, 1},
157 {NULL
, no_argument
, NULL
, 0}
165 interactive
= isatty (fileno (stdin
));
169 /* If COUNT is 0, then FUNCTION is called once on each entry. If nonzero,
170 COUNT is the length of the FILES chain; FUNCTION is called on each entry
171 whose name matches one in FILES. */
174 map_over_members (bfd
*arch
, void (*function
)(bfd
*), char **files
, int count
)
181 for (head
= arch
->archive_next
; head
; head
= head
->archive_next
)
189 /* This may appear to be a baroque way of accomplishing what we want.
190 However we have to iterate over the filenames in order to notice where
191 a filename is requested but does not exist in the archive. Ditto
192 mapping over each file each time -- we want to hack multiple
195 for (; count
> 0; files
++, count
--)
197 bfd_boolean found
= FALSE
;
200 for (head
= arch
->archive_next
; head
; head
= head
->archive_next
)
202 const char * filename
;
205 filename
= head
->filename
;
206 if (filename
== NULL
)
208 /* Some archive formats don't get the filenames filled in
209 until the elements are opened. */
211 bfd_stat_arch_elt (head
, &buf
);
213 else if (bfd_is_thin_archive (arch
))
215 /* Thin archives store full pathnames. Need to normalize. */
216 filename
= normalize (filename
, arch
);
220 && !FILENAME_CMP (normalize (*files
, arch
), filename
))
223 if (counted_name_mode
224 && match_count
!= counted_name_counter
)
226 /* Counting, and didn't match on count; go on to the
237 /* xgettext:c-format */
238 fprintf (stderr
, _("no entry %s in archive\n"), *files
);
242 bfd_boolean operation_alters_arch
= FALSE
;
249 s
= help
? stdout
: stderr
;
251 #if BFD_SUPPORTS_PLUGINS
252 /* xgettext:c-format */
253 const char *command_line
254 = _("Usage: %s [emulation options] [-]{dmpqrstx}[abcDfilMNoPsSTuvV]"
255 " [--plugin <name>] [member-name] [count] archive-file file...\n");
258 /* xgettext:c-format */
259 const char *command_line
260 = _("Usage: %s [emulation options] [-]{dmpqrstx}[abcDfilMNoPsSTuvV]"
261 " [member-name] [count] archive-file file...\n");
263 fprintf (s
, command_line
, program_name
);
265 /* xgettext:c-format */
266 fprintf (s
, _(" %s -M [<mri-script]\n"), program_name
);
267 fprintf (s
, _(" commands:\n"));
268 fprintf (s
, _(" d - delete file(s) from the archive\n"));
269 fprintf (s
, _(" m[ab] - move file(s) in the archive\n"));
270 fprintf (s
, _(" p - print file(s) found in the archive\n"));
271 fprintf (s
, _(" q[f] - quick append file(s) to the archive\n"));
272 fprintf (s
, _(" r[ab][f][u] - replace existing or insert new file(s) into the archive\n"));
273 fprintf (s
, _(" s - act as ranlib\n"));
274 fprintf (s
, _(" t - display contents of archive\n"));
275 fprintf (s
, _(" x[o] - extract file(s) from the archive\n"));
276 fprintf (s
, _(" command specific modifiers:\n"));
277 fprintf (s
, _(" [a] - put file(s) after [member-name]\n"));
278 fprintf (s
, _(" [b] - put file(s) before [member-name] (same as [i])\n"));
279 fprintf (s
, _(" [D] - use zero for timestamps and uids/gids\n"));
280 fprintf (s
, _(" [N] - use instance [count] of name\n"));
281 fprintf (s
, _(" [f] - truncate inserted file names\n"));
282 fprintf (s
, _(" [P] - use full path names when matching\n"));
283 fprintf (s
, _(" [o] - preserve original dates\n"));
284 fprintf (s
, _(" [u] - only replace files that are newer than current archive contents\n"));
285 fprintf (s
, _(" generic modifiers:\n"));
286 fprintf (s
, _(" [c] - do not warn if the library had to be created\n"));
287 fprintf (s
, _(" [s] - create an archive index (cf. ranlib)\n"));
288 fprintf (s
, _(" [S] - do not build a symbol table\n"));
289 fprintf (s
, _(" [T] - make a thin archive\n"));
290 fprintf (s
, _(" [v] - be verbose\n"));
291 fprintf (s
, _(" [V] - display the version number\n"));
292 fprintf (s
, _(" @<file> - read options from <file>\n"));
293 fprintf (s
, _(" --target=BFDNAME - specify the target object format as BFDNAME\n"));
294 #if BFD_SUPPORTS_PLUGINS
295 fprintf (s
, _(" optional:\n"));
296 fprintf (s
, _(" --plugin <p> - load the specified plugin\n"));
301 list_supported_targets (program_name
, s
);
303 if (REPORT_BUGS_TO
[0] && help
)
304 fprintf (s
, _("Report bugs to %s\n"), REPORT_BUGS_TO
);
306 xexit (help
? 0 : 1);
310 ranlib_usage (int help
)
314 s
= help
? stdout
: stderr
;
316 /* xgettext:c-format */
317 fprintf (s
, _("Usage: %s [options] archive\n"), program_name
);
318 fprintf (s
, _(" Generate an index to speed access to archives\n"));
319 fprintf (s
, _(" The options are:\n\
320 @<file> Read options from <file>\n"));
321 #if BFD_SUPPORTS_PLUGINS
323 --plugin <name> Load the specified plugin\n"));
326 -t Update the archive's symbol map timestamp\n\
327 -D Use zero for the symbol map timestamp\n\
328 -h --help Print this help message\n\
329 -v --version Print version information\n"));
331 list_supported_targets (program_name
, s
);
333 if (REPORT_BUGS_TO
[0] && help
)
334 fprintf (s
, _("Report bugs to %s\n"), REPORT_BUGS_TO
);
336 xexit (help
? 0 : 1);
339 /* Normalize a file name specified on the command line into a file
340 name which we will use in an archive. */
343 normalize (const char *file
, bfd
*abfd
)
345 const char *filename
;
350 filename
= lbasename (file
);
354 && strlen (filename
) > abfd
->xvec
->ar_max_namelen
)
359 s
= (char *) xmalloc (abfd
->xvec
->ar_max_namelen
+ 1);
360 memcpy (s
, filename
, abfd
->xvec
->ar_max_namelen
);
361 s
[abfd
->xvec
->ar_max_namelen
] = '\0';
368 /* Remove any output file. This is only called via xatexit. */
370 static const char *output_filename
= NULL
;
371 static FILE *output_file
= NULL
;
372 static bfd
*output_bfd
= NULL
;
377 if (output_filename
!= NULL
)
379 if (output_bfd
!= NULL
)
380 bfd_cache_close (output_bfd
);
381 if (output_file
!= NULL
)
382 fclose (output_file
);
383 unlink_if_ordinary (output_filename
);
388 decode_options (int argc
, char **argv
)
392 /* Convert old-style tar call by exploding option element and rearranging
393 options accordingly. */
395 if (argc
> 1 && argv
[1][0] != '-')
397 int new_argc
; /* argc value for rearranged arguments */
398 char **new_argv
; /* argv value for rearranged arguments */
399 char *const *in
; /* cursor into original argv */
400 char **out
; /* cursor into rearranged argv */
401 const char *letter
; /* cursor into old option letters */
402 char buffer
[3]; /* constructed option buffer */
404 /* Initialize a constructed option. */
409 /* Allocate a new argument array, and copy program name in it. */
411 new_argc
= argc
- 1 + strlen (argv
[1]);
412 new_argv
= xmalloc ((new_argc
+ 1) * sizeof (*argv
));
417 /* Copy each old letter option as a separate option. */
419 for (letter
= *in
++; *letter
; letter
++)
422 *out
++ = xstrdup (buffer
);
425 /* Copy all remaining options. */
427 while (in
< argv
+ argc
)
431 /* Replace the old option list by the new one. */
437 while ((c
= getopt_long (argc
, argv
, "hdmpqrtxlcoVsSuvabiMNfPTD",
438 long_options
, NULL
)) != EOF
)
449 if (operation
!= none
)
450 fatal (_("two different operation options specified"));
461 operation_alters_arch
= TRUE
;
465 operation_alters_arch
= TRUE
;
468 operation
= print_files
;
471 operation
= quick_append
;
472 operation_alters_arch
= TRUE
;
476 operation_alters_arch
= TRUE
;
479 operation
= print_table
;
511 postype
= pos_before
;
514 postype
= pos_before
;
520 counted_name_mode
= TRUE
;
526 full_pathname
= TRUE
;
529 make_thin_archive
= TRUE
;
532 deterministic
= TRUE
;
535 #if BFD_SUPPORTS_PLUGINS
536 plugin_target
= "plugin";
537 bfd_plugin_set_plugin (optarg
);
539 fprintf (stderr
, _("sorry - this program has been built without plugin support\n"));
546 case 0: /* A long option that just sets a flag. */
553 return &argv
[optind
];
557 ranlib_main (int argc
, char **argv
)
559 int arg_index
, status
= 0;
560 bfd_boolean touch
= FALSE
;
563 while ((c
= getopt_long (argc
, argv
, "DhHvVt", long_options
, NULL
)) != EOF
)
568 deterministic
= TRUE
;
591 print_version ("ranlib");
595 while (arg_index
< argc
)
598 status
|= ranlib_only (argv
[arg_index
]);
600 status
|= ranlib_touch (argv
[arg_index
]);
607 int main (int, char **);
610 main (int argc
, char **argv
)
615 char *inarch_filename
;
618 #if defined (HAVE_SETLOCALE) && defined (HAVE_LC_MESSAGES)
619 setlocale (LC_MESSAGES
, "");
621 #if defined (HAVE_SETLOCALE)
622 setlocale (LC_CTYPE
, "");
624 bindtextdomain (PACKAGE
, LOCALEDIR
);
625 textdomain (PACKAGE
);
627 program_name
= argv
[0];
628 xmalloc_set_program_name (program_name
);
629 #if BFD_SUPPORTS_PLUGINS
630 bfd_plugin_set_program_name (program_name
);
633 expandargv (&argc
, &argv
);
637 const char *temp
= lbasename (program_name
);
639 if (strlen (temp
) >= 6
640 && FILENAME_CMP (temp
+ strlen (temp
) - 6, "ranlib") == 0)
646 START_PROGRESS (program_name
, 0);
649 set_default_bfd_target ();
651 xatexit (remove_output
);
653 for (i
= 1; i
< argc
; i
++)
654 if (! ar_emul_parse_arg (argv
[i
]))
660 ranlib_main (argc
, argv
);
665 argv
= decode_options (argc
, argv
);
671 print_version ("ar");
683 /* We don't use do_quick_append any more. Too many systems
684 expect ar to always rebuild the symbol table even when q is
687 /* We can't write an armap when using ar q, so just do ar r
689 if (operation
== quick_append
&& write_armap
)
692 if ((operation
== none
|| operation
== print_table
)
694 xexit (ranlib_only (argv
[arg_index
]));
696 if (operation
== none
)
697 fatal (_("no operation specified"));
699 if (newer_only
&& operation
!= replace
)
700 fatal (_("`u' is only meaningful with the `r' option."));
702 if (newer_only
&& deterministic
)
703 fatal (_("`u' is not meaningful with the `D' option."));
705 if (postype
!= pos_default
)
706 posname
= argv
[arg_index
++];
708 if (counted_name_mode
)
710 if (operation
!= extract
&& operation
!= del
)
711 fatal (_("`N' is only meaningful with the `x' and `d' options."));
712 counted_name_counter
= atoi (argv
[arg_index
++]);
713 if (counted_name_counter
<= 0)
714 fatal (_("Value for `N' must be positive."));
717 inarch_filename
= argv
[arg_index
++];
719 for (file_count
= 0; argv
[arg_index
+ file_count
] != NULL
; file_count
++)
722 files
= (file_count
> 0) ? argv
+ arg_index
: NULL
;
724 arch
= open_inarch (inarch_filename
,
725 files
== NULL
? (char *) NULL
: files
[0]);
727 if (operation
== extract
&& bfd_is_thin_archive (arch
))
728 fatal (_("`x' cannot be used on thin archives."));
733 map_over_members (arch
, print_descr
, files
, file_count
);
737 map_over_members (arch
, print_contents
, files
, file_count
);
741 map_over_members (arch
, extract_file
, files
, file_count
);
746 delete_members (arch
, files
);
748 output_filename
= NULL
;
752 /* PR 12558: Creating and moving at the same time does
753 not make sense. Just create the archive instead. */
757 move_members (arch
, files
);
759 output_filename
= NULL
;
766 if (files
!= NULL
|| write_armap
> 0)
767 replace_members (arch
, files
, operation
== quick_append
);
769 output_filename
= NULL
;
772 /* Shouldn't happen! */
774 /* xgettext:c-format */
775 fatal (_("internal error -- this option not implemented"));
779 END_PROGRESS (program_name
);
786 open_inarch (const char *archive_filename
, const char *file
)
794 bfd_set_error (bfd_error_no_error
);
797 target
= plugin_target
;
799 if (stat (archive_filename
, &sbuf
) != 0)
801 #if !defined(__GO32__) || defined(__DJGPP__)
803 /* FIXME: I don't understand why this fragment was ifndef'ed
804 away for __GO32__; perhaps it was in the days of DJGPP v1.x.
805 stat() works just fine in v2.x, so I think this should be
806 removed. For now, I enable it for DJGPP v2. -- EZ. */
808 /* KLUDGE ALERT! Temporary fix until I figger why
809 stat() is wrong ... think it's buried in GO32's IDT - Jax */
811 bfd_fatal (archive_filename
);
814 if (!operation_alters_arch
)
816 fprintf (stderr
, "%s: ", program_name
);
817 perror (archive_filename
);
822 /* If the target isn't set, try to figure out the target to use
823 for the archive from the first object on the list. */
824 if (target
== NULL
&& file
!= NULL
)
828 obj
= bfd_openr (file
, target
);
831 if (bfd_check_format (obj
, bfd_object
))
832 target
= bfd_get_target (obj
);
833 (void) bfd_close (obj
);
837 /* Create an empty archive. */
838 arch
= bfd_openw (archive_filename
, target
);
840 || ! bfd_set_format (arch
, bfd_archive
)
841 || ! bfd_close (arch
))
842 bfd_fatal (archive_filename
);
843 else if (!silent_create
)
844 non_fatal (_("creating %s"), archive_filename
);
846 /* If we die creating a new archive, don't leave it around. */
847 output_filename
= archive_filename
;
850 arch
= bfd_openr (archive_filename
, target
);
854 bfd_fatal (archive_filename
);
857 if (! bfd_check_format_matches (arch
, bfd_archive
, &matching
))
859 bfd_nonfatal (archive_filename
);
860 if (bfd_get_error () == bfd_error_file_ambiguously_recognized
)
862 list_matching_formats (matching
);
868 last_one
= &(arch
->archive_next
);
869 /* Read all the contents right away, regardless. */
870 for (next_one
= bfd_openr_next_archived_file (arch
, NULL
);
872 next_one
= bfd_openr_next_archived_file (arch
, next_one
))
875 *last_one
= next_one
;
876 last_one
= &next_one
->archive_next
;
878 *last_one
= (bfd
*) NULL
;
879 if (bfd_get_error () != bfd_error_no_more_archived_files
)
885 print_contents (bfd
*abfd
)
888 char *cbuf
= (char *) xmalloc (BUFSIZE
);
891 if (bfd_stat_arch_elt (abfd
, &buf
) != 0)
892 /* xgettext:c-format */
893 fatal (_("internal stat error on %s"), bfd_get_filename (abfd
));
896 printf ("\n<%s>\n\n", bfd_get_filename (abfd
));
898 bfd_seek (abfd
, (file_ptr
) 0, SEEK_SET
);
901 while (ncopied
< size
)
905 size_t tocopy
= size
- ncopied
;
906 if (tocopy
> BUFSIZE
)
909 nread
= bfd_bread (cbuf
, (bfd_size_type
) tocopy
, abfd
);
911 /* xgettext:c-format */
912 fatal (_("%s is not a valid archive"),
913 bfd_get_filename (bfd_my_archive (abfd
)));
915 /* fwrite in mingw32 may return int instead of size_t. Cast the
916 return value to size_t to avoid comparison between signed and
918 if ((size_t) fwrite (cbuf
, 1, nread
, stdout
) != nread
)
919 fatal ("stdout: %s", strerror (errno
));
925 /* Extract a member of the archive into its own file.
927 We defer opening the new file until after we have read a BUFSIZ chunk of the
928 old one, since we know we have just read the archive header for the old
929 one. Since most members are shorter than BUFSIZ, this means we will read
930 the old header, read the old data, write a new inode for the new file, and
931 write the new data, and be done. This 'optimization' is what comes from
932 sitting next to a bare disk and hearing it every time it seeks. -- Gnu
936 extract_file (bfd
*abfd
)
939 char *cbuf
= (char *) xmalloc (BUFSIZE
);
940 size_t nread
, tocopy
;
945 if (bfd_stat_arch_elt (abfd
, &buf
) != 0)
946 /* xgettext:c-format */
947 fatal (_("internal stat error on %s"), bfd_get_filename (abfd
));
951 printf ("x - %s\n", bfd_get_filename (abfd
));
953 bfd_seek (abfd
, (file_ptr
) 0, SEEK_SET
);
958 /* Seems like an abstraction violation, eh? Well it's OK! */
959 output_filename
= bfd_get_filename (abfd
);
961 ostream
= fopen (bfd_get_filename (abfd
), FOPEN_WB
);
964 perror (bfd_get_filename (abfd
));
968 output_file
= ostream
;
971 while (ncopied
< size
)
973 tocopy
= size
- ncopied
;
974 if (tocopy
> BUFSIZE
)
977 nread
= bfd_bread (cbuf
, (bfd_size_type
) tocopy
, abfd
);
979 /* xgettext:c-format */
980 fatal (_("%s is not a valid archive"),
981 bfd_get_filename (bfd_my_archive (abfd
)));
983 /* See comment above; this saves disk arm motion */
986 /* Seems like an abstraction violation, eh? Well it's OK! */
987 output_filename
= bfd_get_filename (abfd
);
989 ostream
= fopen (bfd_get_filename (abfd
), FOPEN_WB
);
992 perror (bfd_get_filename (abfd
));
996 output_file
= ostream
;
999 /* fwrite in mingw32 may return int instead of size_t. Cast
1000 the return value to size_t to avoid comparison between
1001 signed and unsigned values. */
1002 if ((size_t) fwrite (cbuf
, 1, nread
, ostream
) != nread
)
1003 fatal ("%s: %s", output_filename
, strerror (errno
));
1007 if (ostream
!= NULL
)
1011 output_filename
= NULL
;
1013 chmod (bfd_get_filename (abfd
), buf
.st_mode
);
1017 /* Set access time to modification time. Only st_mtime is
1018 initialized by bfd_stat_arch_elt. */
1019 buf
.st_atime
= buf
.st_mtime
;
1020 set_times (bfd_get_filename (abfd
), &buf
);
1027 write_archive (bfd
*iarch
)
1030 char *old_name
, *new_name
;
1031 bfd
*contents_head
= iarch
->archive_next
;
1033 old_name
= (char *) xmalloc (strlen (bfd_get_filename (iarch
)) + 1);
1034 strcpy (old_name
, bfd_get_filename (iarch
));
1035 new_name
= make_tempname (old_name
);
1037 if (new_name
== NULL
)
1038 bfd_fatal (_("could not create temporary file whilst writing archive"));
1040 output_filename
= new_name
;
1042 obfd
= bfd_openw (new_name
, bfd_get_target (iarch
));
1045 bfd_fatal (old_name
);
1049 bfd_set_format (obfd
, bfd_archive
);
1051 /* Request writing the archive symbol table unless we've
1052 been explicitly requested not to. */
1053 obfd
->has_armap
= write_armap
>= 0;
1057 /* This should really use bfd_set_file_flags, but that rejects
1059 obfd
->flags
|= BFD_TRADITIONAL_FORMAT
;
1063 obfd
->flags
|= BFD_DETERMINISTIC_OUTPUT
;
1065 if (make_thin_archive
|| bfd_is_thin_archive (iarch
))
1066 bfd_is_thin_archive (obfd
) = 1;
1068 if (!bfd_set_archive_head (obfd
, contents_head
))
1069 bfd_fatal (old_name
);
1071 if (!bfd_close (obfd
))
1072 bfd_fatal (old_name
);
1075 output_filename
= NULL
;
1077 /* We don't care if this fails; we might be creating the archive. */
1080 if (smart_rename (new_name
, old_name
, 0) != 0)
1085 /* Return a pointer to the pointer to the entry which should be rplacd'd
1086 into when altering. DEFAULT_POS should be how to interpret pos_default,
1087 and should be a pos value. */
1090 get_pos_bfd (bfd
**contents
, enum pos default_pos
, const char *default_posname
)
1092 bfd
**after_bfd
= contents
;
1094 const char *realposname
;
1096 if (postype
== pos_default
)
1098 realpos
= default_pos
;
1099 realposname
= default_posname
;
1104 realposname
= posname
;
1107 if (realpos
== pos_end
)
1110 after_bfd
= &((*after_bfd
)->archive_next
);
1114 for (; *after_bfd
; after_bfd
= &(*after_bfd
)->archive_next
)
1115 if (FILENAME_CMP ((*after_bfd
)->filename
, realposname
) == 0)
1117 if (realpos
== pos_after
)
1118 after_bfd
= &(*after_bfd
)->archive_next
;
1126 delete_members (bfd
*arch
, char **files_to_delete
)
1128 bfd
**current_ptr_ptr
;
1130 bfd_boolean something_changed
= FALSE
;
1133 for (; *files_to_delete
!= NULL
; ++files_to_delete
)
1135 /* In a.out systems, the armap is optional. It's also called
1136 __.SYMDEF. So if the user asked to delete it, we should remember
1137 that fact. This isn't quite right for COFF systems (where
1138 __.SYMDEF might be regular member), but it's very unlikely
1139 to be a problem. FIXME */
1141 if (!strcmp (*files_to_delete
, "__.SYMDEF"))
1143 arch
->has_armap
= FALSE
;
1150 current_ptr_ptr
= &(arch
->archive_next
);
1151 while (*current_ptr_ptr
)
1153 if (FILENAME_CMP (normalize (*files_to_delete
, arch
),
1154 (*current_ptr_ptr
)->filename
) == 0)
1157 if (counted_name_mode
1158 && match_count
!= counted_name_counter
)
1160 /* Counting, and didn't match on count; go on to the
1166 something_changed
= TRUE
;
1170 *current_ptr_ptr
= ((*current_ptr_ptr
)->archive_next
);
1175 current_ptr_ptr
= &((*current_ptr_ptr
)->archive_next
);
1178 if (verbose
&& !found
)
1180 /* xgettext:c-format */
1181 printf (_("No member named `%s'\n"), *files_to_delete
);
1187 if (something_changed
)
1188 write_archive (arch
);
1190 output_filename
= NULL
;
1194 /* Reposition existing members within an archive */
1197 move_members (bfd
*arch
, char **files_to_move
)
1199 bfd
**after_bfd
; /* New entries go after this one */
1200 bfd
**current_ptr_ptr
; /* cdr pointer into contents */
1202 for (; *files_to_move
; ++files_to_move
)
1204 current_ptr_ptr
= &(arch
->archive_next
);
1205 while (*current_ptr_ptr
)
1207 bfd
*current_ptr
= *current_ptr_ptr
;
1208 if (FILENAME_CMP (normalize (*files_to_move
, arch
),
1209 current_ptr
->filename
) == 0)
1211 /* Move this file to the end of the list - first cut from
1214 *current_ptr_ptr
= current_ptr
->archive_next
;
1216 /* Now glue to end */
1217 after_bfd
= get_pos_bfd (&arch
->archive_next
, pos_end
, NULL
);
1218 link_bfd
= *after_bfd
;
1219 *after_bfd
= current_ptr
;
1220 current_ptr
->archive_next
= link_bfd
;
1223 printf ("m - %s\n", *files_to_move
);
1228 current_ptr_ptr
= &((*current_ptr_ptr
)->archive_next
);
1230 /* xgettext:c-format */
1231 fatal (_("no entry %s in archive %s!"), *files_to_move
, arch
->filename
);
1236 write_archive (arch
);
1239 /* Ought to default to replacing in place, but this is existing practice! */
1242 replace_members (bfd
*arch
, char **files_to_move
, bfd_boolean quick
)
1244 bfd_boolean changed
= FALSE
;
1245 bfd
**after_bfd
; /* New entries go after this one. */
1249 while (files_to_move
&& *files_to_move
)
1253 current_ptr
= &arch
->archive_next
;
1254 while (*current_ptr
)
1256 current
= *current_ptr
;
1258 /* For compatibility with existing ar programs, we
1259 permit the same file to be added multiple times. */
1260 if (FILENAME_CMP (normalize (*files_to_move
, arch
),
1261 normalize (current
->filename
, arch
)) == 0
1262 && current
->arelt_data
!= NULL
)
1266 struct stat fsbuf
, asbuf
;
1268 if (stat (*files_to_move
, &fsbuf
) != 0)
1270 if (errno
!= ENOENT
)
1271 bfd_fatal (*files_to_move
);
1274 if (bfd_stat_arch_elt (current
, &asbuf
) != 0)
1275 /* xgettext:c-format */
1276 fatal (_("internal stat error on %s"),
1279 if (fsbuf
.st_mtime
<= asbuf
.st_mtime
)
1283 after_bfd
= get_pos_bfd (&arch
->archive_next
, pos_after
,
1285 if (ar_emul_replace (after_bfd
, *files_to_move
,
1288 /* Snip out this entry from the chain. */
1289 *current_ptr
= (*current_ptr
)->archive_next
;
1295 current_ptr
= &(current
->archive_next
);
1299 /* Add to the end of the archive. */
1300 after_bfd
= get_pos_bfd (&arch
->archive_next
, pos_end
, NULL
);
1302 if (ar_emul_append (after_bfd
, *files_to_move
, target
,
1303 verbose
, make_thin_archive
))
1312 write_archive (arch
);
1314 output_filename
= NULL
;
1318 ranlib_only (const char *archname
)
1322 if (get_file_size (archname
) < 1)
1325 arch
= open_inarch (archname
, (char *) NULL
);
1328 write_archive (arch
);
1332 /* Update the timestamp of the symbol map of an archive. */
1335 ranlib_touch (const char *archname
)
1338 /* I don't think updating works on go32. */
1339 ranlib_only (archname
);
1345 if (get_file_size (archname
) < 1)
1347 f
= open (archname
, O_RDWR
| O_BINARY
, 0);
1350 bfd_set_error (bfd_error_system_call
);
1351 bfd_fatal (archname
);
1354 arch
= bfd_fdopenr (archname
, (const char *) NULL
, f
);
1356 bfd_fatal (archname
);
1357 if (! bfd_check_format_matches (arch
, bfd_archive
, &matching
))
1359 bfd_nonfatal (archname
);
1360 if (bfd_get_error () == bfd_error_file_ambiguously_recognized
)
1362 list_matching_formats (matching
);
1368 if (! bfd_has_map (arch
))
1369 /* xgettext:c-format */
1370 fatal (_("%s: no archive map to update"), archname
);
1373 arch
->flags
|= BFD_DETERMINISTIC_OUTPUT
;
1375 bfd_update_armap_timestamp (arch
);
1377 if (! bfd_close (arch
))
1378 bfd_fatal (archname
);
1383 /* Things which are interesting to map over all or some of the files: */
1386 print_descr (bfd
*abfd
)
1388 print_arelt_descr (stdout
, abfd
, verbose
);