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
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: should use getopt the way tar does (complete w/optional -) and
25 should have long options too. GNU ar used to check file against filesystem
26 in quick_update and replace operations (would check mtime). Doesn't warn
27 when name truncated. No way to specify pos_end. Error messages should be
32 #include "libiberty.h"
38 #include "filenames.h"
44 #define EXT_NAME_LEN 3 /* Bufflen of addition to name if it's MS-DOS. */
46 #define EXT_NAME_LEN 6 /* Ditto for *NIX. */
49 /* Static declarations. */
51 static void mri_emul (void);
52 static const char *normalize (const char *, bfd
*);
53 static void remove_output (void);
54 static void map_over_members (bfd
*, void (*)(bfd
*), char **, int);
55 static void print_contents (bfd
* member
);
56 static void delete_members (bfd
*, char **files_to_delete
);
58 static void move_members (bfd
*, char **files_to_move
);
59 static void replace_members
60 (bfd
*, char **files_to_replace
, bfd_boolean quick
);
61 static void print_descr (bfd
* abfd
);
62 static void write_archive (bfd
*);
63 static int ranlib_only (const char *archname
);
64 static int ranlib_touch (const char *archname
);
65 static void usage (int);
67 /** Globals and flags. */
71 /* This flag distinguishes between ar and ranlib:
72 1 means this is 'ranlib'; 0 means this is 'ar'.
73 -1 means if we should use argv[0] to decide. */
76 /* Nonzero means don't warn about creating the archive file if necessary. */
77 int silent_create
= 0;
79 /* Nonzero means describe each action performed. */
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
= 0;
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
;
117 get_pos_bfd (bfd
**, enum pos
, const char *);
119 /* For extract/delete only. If COUNTED_NAME_MODE is TRUE, we only
120 extract the COUNTED_NAME_COUNTER instance of that name. */
121 static bfd_boolean counted_name_mode
= 0;
122 static int counted_name_counter
= 0;
124 /* Whether to truncate names of files stored in the archive. */
125 static bfd_boolean ar_truncate
= FALSE
;
127 /* Whether to use a full file name match when searching an archive.
128 This is convenient for archives created by the Microsoft lib
130 static bfd_boolean full_pathname
= FALSE
;
132 /* Whether to create a "thin" archive (symbol index only -- no files). */
133 static bfd_boolean make_thin_archive
= FALSE
;
135 static const char *plugin_target
= NULL
;
142 interactive
= isatty (fileno (stdin
));
146 /* If COUNT is 0, then FUNCTION is called once on each entry. If nonzero,
147 COUNT is the length of the FILES chain; FUNCTION is called on each entry
148 whose name matches one in FILES. */
151 map_over_members (bfd
*arch
, void (*function
)(bfd
*), char **files
, int count
)
158 for (head
= arch
->archive_next
; head
; head
= head
->archive_next
)
166 /* This may appear to be a baroque way of accomplishing what we want.
167 However we have to iterate over the filenames in order to notice where
168 a filename is requested but does not exist in the archive. Ditto
169 mapping over each file each time -- we want to hack multiple
172 for (; count
> 0; files
++, count
--)
174 bfd_boolean found
= FALSE
;
177 for (head
= arch
->archive_next
; head
; head
= head
->archive_next
)
179 const char * filename
;
182 filename
= head
->filename
;
183 if (filename
== NULL
)
185 /* Some archive formats don't get the filenames filled in
186 until the elements are opened. */
188 bfd_stat_arch_elt (head
, &buf
);
190 else if (bfd_is_thin_archive (arch
))
192 /* Thin archives store full pathnames. Need to normalize. */
193 filename
= normalize (filename
, arch
);
196 if ((filename
!= NULL
) &&
197 (!FILENAME_CMP (normalize (*files
, arch
), filename
)))
200 if (counted_name_mode
201 && match_count
!= counted_name_counter
)
203 /* Counting, and didn't match on count; go on to the
214 /* xgettext:c-format */
215 fprintf (stderr
, _("no entry %s in archive\n"), *files
);
219 bfd_boolean operation_alters_arch
= FALSE
;
226 s
= help
? stdout
: stderr
;
230 /* xgettext:c-format */
231 const char * command_line
=
232 #if BFD_SUPPORTS_PLUGINS
233 _("Usage: %s [emulation options] [--plugin <name>] [-]{dmpqrstx}[abcfilNoPsSuvV] [member-name] [count] archive-file file...\n");
235 _("Usage: %s [emulation options] [-]{dmpqrstx}[abcfilNoPsSuvV] [member-name] [count] archive-file file...\n");
237 fprintf (s
, command_line
, program_name
);
239 /* xgettext:c-format */
240 fprintf (s
, _(" %s -M [<mri-script]\n"), program_name
);
241 fprintf (s
, _(" commands:\n"));
242 fprintf (s
, _(" d - delete file(s) from the archive\n"));
243 fprintf (s
, _(" m[ab] - move file(s) in the archive\n"));
244 fprintf (s
, _(" p - print file(s) found in the archive\n"));
245 fprintf (s
, _(" q[f] - quick append file(s) to the archive\n"));
246 fprintf (s
, _(" r[ab][f][u] - replace existing or insert new file(s) into the archive\n"));
247 fprintf (s
, _(" t - display contents of archive\n"));
248 fprintf (s
, _(" x[o] - extract file(s) from the archive\n"));
249 fprintf (s
, _(" command specific modifiers:\n"));
250 fprintf (s
, _(" [a] - put file(s) after [member-name]\n"));
251 fprintf (s
, _(" [b] - put file(s) before [member-name] (same as [i])\n"));
252 fprintf (s
, _(" [D] - use zero for timestamps and uids/gids\n"));
253 fprintf (s
, _(" [N] - use instance [count] of name\n"));
254 fprintf (s
, _(" [f] - truncate inserted file names\n"));
255 fprintf (s
, _(" [P] - use full path names when matching\n"));
256 fprintf (s
, _(" [o] - preserve original dates\n"));
257 fprintf (s
, _(" [u] - only replace files that are newer than current archive contents\n"));
258 fprintf (s
, _(" generic modifiers:\n"));
259 fprintf (s
, _(" [c] - do not warn if the library had to be created\n"));
260 fprintf (s
, _(" [s] - create an archive index (cf. ranlib)\n"));
261 fprintf (s
, _(" [S] - do not build a symbol table\n"));
262 fprintf (s
, _(" [T] - make a thin archive\n"));
263 fprintf (s
, _(" [v] - be verbose\n"));
264 fprintf (s
, _(" [V] - display the version number\n"));
265 fprintf (s
, _(" @<file> - read options from <file>\n"));
266 #if BFD_SUPPORTS_PLUGINS
267 fprintf (s
, _(" optional:\n"));
268 fprintf (s
, _(" --plugin <p> - load the specified plugin\n"));
274 /* xgettext:c-format */
275 fprintf (s
, _("Usage: %s [options] archive\n"), program_name
);
276 fprintf (s
, _(" Generate an index to speed access to archives\n"));
277 fprintf (s
, _(" The options are:\n\
278 @<file> Read options from <file>\n"));
279 #if BFD_SUPPORTS_PLUGINS
281 --plugin <name> Load the specified plugin\n"));
284 -t Update the archive's symbol map timestamp\n\
285 -h --help Print this help message\n\
286 -v --version Print version information\n"));
289 list_supported_targets (program_name
, s
);
291 if (REPORT_BUGS_TO
[0] && help
)
292 fprintf (s
, _("Report bugs to %s\n"), REPORT_BUGS_TO
);
294 xexit (help
? 0 : 1);
297 /* Normalize a file name specified on the command line into a file
298 name which we will use in an archive. */
301 normalize (const char *file
, bfd
*abfd
)
303 const char *filename
;
308 filename
= lbasename (file
);
312 && strlen (filename
) > abfd
->xvec
->ar_max_namelen
)
317 s
= (char *) xmalloc (abfd
->xvec
->ar_max_namelen
+ 1);
318 memcpy (s
, filename
, abfd
->xvec
->ar_max_namelen
);
319 s
[abfd
->xvec
->ar_max_namelen
] = '\0';
326 /* Remove any output file. This is only called via xatexit. */
328 static const char *output_filename
= NULL
;
329 static FILE *output_file
= NULL
;
330 static bfd
*output_bfd
= NULL
;
335 if (output_filename
!= NULL
)
337 if (output_bfd
!= NULL
)
338 bfd_cache_close (output_bfd
);
339 if (output_file
!= NULL
)
340 fclose (output_file
);
341 unlink_if_ordinary (output_filename
);
345 /* The option parsing should be in its own function.
346 It will be when I have getopt working. */
348 int main (int, char **);
351 main (int argc
, char **argv
)
357 none
= 0, del
, replace
, print_table
,
358 print_files
, extract
, move
, quick_append
363 char *inarch_filename
;
368 #if defined (HAVE_SETLOCALE) && defined (HAVE_LC_MESSAGES)
369 setlocale (LC_MESSAGES
, "");
371 #if defined (HAVE_SETLOCALE)
372 setlocale (LC_CTYPE
, "");
374 bindtextdomain (PACKAGE
, LOCALEDIR
);
375 textdomain (PACKAGE
);
377 program_name
= argv
[0];
378 xmalloc_set_program_name (program_name
);
379 #if BFD_SUPPORTS_PLUGINS
380 bfd_plugin_set_program_name (program_name
);
383 expandargv (&argc
, &argv
);
387 const char *temp
= lbasename (program_name
);
389 if (strlen (temp
) >= 6
390 && FILENAME_CMP (temp
+ strlen (temp
) - 6, "ranlib") == 0)
396 if (argc
> 1 && argv
[1][0] == '-')
398 if (strcmp (argv
[1], "--help") == 0)
400 else if (strcmp (argv
[1], "--version") == 0)
403 print_version ("ranlib");
405 print_version ("ar");
409 START_PROGRESS (program_name
, 0);
412 set_default_bfd_target ();
416 xatexit (remove_output
);
418 for (i
= 1; i
< argc
; i
++)
419 if (! ar_emul_parse_arg (argv
[i
]))
427 bfd_boolean touch
= FALSE
;
430 || strcmp (argv
[1], "--help") == 0
431 || strcmp (argv
[1], "-h") == 0
432 || strcmp (argv
[1], "-H") == 0)
434 if (strcmp (argv
[1], "-V") == 0
435 || strcmp (argv
[1], "-v") == 0
436 || CONST_STRNEQ (argv
[1], "--v"))
437 print_version ("ranlib");
439 if (strcmp (argv
[1], "-t") == 0)
444 while (arg_index
< argc
)
447 status
|= ranlib_only (argv
[arg_index
]);
449 status
|= ranlib_touch (argv
[arg_index
]);
455 if (argc
== 2 && strcmp (argv
[1], "-M") == 0)
465 arg_ptr
= argv
[arg_index
];
467 if (strcmp (arg_ptr
, "--plugin") == 0)
469 #if BFD_SUPPORTS_PLUGINS
473 bfd_plugin_set_plugin (argv
[2]);
476 arg_ptr
= argv
[arg_index
];
478 plugin_target
= "plugin";
480 fprintf (stderr
, _("sorry - this program has been built without plugin support\n"));
487 /* When the first option starts with '-' we support POSIX-compatible
490 ++arg_ptr
; /* compatibility */
495 while ((c
= *arg_ptr
++) != '\0')
506 if (operation
!= none
)
507 fatal (_("two different operation options specified"));
512 operation_alters_arch
= TRUE
;
516 operation_alters_arch
= TRUE
;
519 operation
= print_files
;
522 operation
= quick_append
;
523 operation_alters_arch
= TRUE
;
527 operation_alters_arch
= TRUE
;
530 operation
= print_table
;
563 postype
= pos_before
;
566 postype
= pos_before
;
572 counted_name_mode
= TRUE
;
578 full_pathname
= TRUE
;
581 make_thin_archive
= TRUE
;
584 deterministic
= TRUE
;
587 /* xgettext:c-format */
588 non_fatal (_("illegal option -- %c"), c
);
593 /* With POSIX-compatible option parsing continue with the next
594 argument if it starts with '-'. */
595 if (do_posix
&& arg_index
+ 1 < argc
&& argv
[arg_index
+ 1][0] == '-')
596 arg_ptr
= argv
[++arg_index
] + 1;
603 print_version ("ar");
606 if (arg_index
>= argc
)
617 /* We don't use do_quick_append any more. Too many systems
618 expect ar to always rebuild the symbol table even when q is
621 /* We can't write an armap when using ar q, so just do ar r
623 if (operation
== quick_append
&& write_armap
)
626 if ((operation
== none
|| operation
== print_table
)
628 xexit (ranlib_only (argv
[arg_index
]));
630 if (operation
== none
)
631 fatal (_("no operation specified"));
633 if (newer_only
&& operation
!= replace
)
634 fatal (_("`u' is only meaningful with the `r' option."));
636 if (newer_only
&& deterministic
)
637 fatal (_("`u' is not meaningful with the `D' option."));
639 if (postype
!= pos_default
)
640 posname
= argv
[arg_index
++];
642 if (counted_name_mode
)
644 if (operation
!= extract
&& operation
!= del
)
645 fatal (_("`N' is only meaningful with the `x' and `d' options."));
646 counted_name_counter
= atoi (argv
[arg_index
++]);
647 if (counted_name_counter
<= 0)
648 fatal (_("Value for `N' must be positive."));
651 inarch_filename
= argv
[arg_index
++];
653 files
= arg_index
< argc
? argv
+ arg_index
: NULL
;
654 file_count
= argc
- arg_index
;
656 arch
= open_inarch (inarch_filename
,
657 files
== NULL
? (char *) NULL
: files
[0]);
659 if (operation
== extract
&& bfd_is_thin_archive (arch
))
660 fatal (_("`x' cannot be used on thin archives."));
665 map_over_members (arch
, print_descr
, files
, file_count
);
669 map_over_members (arch
, print_contents
, files
, file_count
);
673 map_over_members (arch
, extract_file
, files
, file_count
);
678 delete_members (arch
, files
);
680 output_filename
= NULL
;
685 move_members (arch
, files
);
687 output_filename
= NULL
;
692 if (files
!= NULL
|| write_armap
> 0)
693 replace_members (arch
, files
, operation
== quick_append
);
695 output_filename
= NULL
;
698 /* Shouldn't happen! */
700 /* xgettext:c-format */
701 fatal (_("internal error -- this option not implemented"));
705 END_PROGRESS (program_name
);
712 open_inarch (const char *archive_filename
, const char *file
)
721 bfd_set_error (bfd_error_no_error
);
723 target
= plugin_target
;
725 if (stat (archive_filename
, &sbuf
) != 0)
727 #if !defined(__GO32__) || defined(__DJGPP__)
729 /* FIXME: I don't understand why this fragment was ifndef'ed
730 away for __GO32__; perhaps it was in the days of DJGPP v1.x.
731 stat() works just fine in v2.x, so I think this should be
732 removed. For now, I enable it for DJGPP v2. -- EZ. */
734 /* KLUDGE ALERT! Temporary fix until I figger why
735 stat() is wrong ... think it's buried in GO32's IDT - Jax */
737 bfd_fatal (archive_filename
);
740 if (!operation_alters_arch
)
742 fprintf (stderr
, "%s: ", program_name
);
743 perror (archive_filename
);
748 /* Try to figure out the target to use for the archive from the
749 first object on the list. */
754 obj
= bfd_openr (file
, target
);
757 if (bfd_check_format (obj
, bfd_object
))
758 target
= bfd_get_target (obj
);
759 (void) bfd_close (obj
);
763 /* Create an empty archive. */
764 arch
= bfd_openw (archive_filename
, target
);
766 || ! bfd_set_format (arch
, bfd_archive
)
767 || ! bfd_close (arch
))
768 bfd_fatal (archive_filename
);
769 else if (!silent_create
)
770 non_fatal (_("creating %s"), archive_filename
);
772 /* If we die creating a new archive, don't leave it around. */
773 output_filename
= archive_filename
;
776 arch
= bfd_openr (archive_filename
, target
);
780 bfd_fatal (archive_filename
);
783 if (! bfd_check_format_matches (arch
, bfd_archive
, &matching
))
785 bfd_nonfatal (archive_filename
);
786 if (bfd_get_error () == bfd_error_file_ambiguously_recognized
)
788 list_matching_formats (matching
);
794 last_one
= &(arch
->archive_next
);
795 /* Read all the contents right away, regardless. */
796 for (next_one
= bfd_openr_next_archived_file (arch
, NULL
);
798 next_one
= bfd_openr_next_archived_file (arch
, next_one
))
801 *last_one
= next_one
;
802 last_one
= &next_one
->archive_next
;
804 *last_one
= (bfd
*) NULL
;
805 if (bfd_get_error () != bfd_error_no_more_archived_files
)
811 print_contents (bfd
*abfd
)
814 char *cbuf
= (char *) xmalloc (BUFSIZE
);
817 if (bfd_stat_arch_elt (abfd
, &buf
) != 0)
818 /* xgettext:c-format */
819 fatal (_("internal stat error on %s"), bfd_get_filename (abfd
));
822 /* xgettext:c-format */
823 printf (_("\n<%s>\n\n"), bfd_get_filename (abfd
));
825 bfd_seek (abfd
, (file_ptr
) 0, SEEK_SET
);
828 while (ncopied
< size
)
832 size_t tocopy
= size
- ncopied
;
833 if (tocopy
> BUFSIZE
)
836 nread
= bfd_bread (cbuf
, (bfd_size_type
) tocopy
, abfd
);
838 /* xgettext:c-format */
839 fatal (_("%s is not a valid archive"),
840 bfd_get_filename (bfd_my_archive (abfd
)));
842 /* fwrite in mingw32 may return int instead of size_t. Cast the
843 return value to size_t to avoid comparison between signed and
845 if ((size_t) fwrite (cbuf
, 1, nread
, stdout
) != nread
)
846 fatal ("stdout: %s", strerror (errno
));
852 /* Extract a member of the archive into its own file.
854 We defer opening the new file until after we have read a BUFSIZ chunk of the
855 old one, since we know we have just read the archive header for the old
856 one. Since most members are shorter than BUFSIZ, this means we will read
857 the old header, read the old data, write a new inode for the new file, and
858 write the new data, and be done. This 'optimization' is what comes from
859 sitting next to a bare disk and hearing it every time it seeks. -- Gnu
863 extract_file (bfd
*abfd
)
866 char *cbuf
= (char *) xmalloc (BUFSIZE
);
867 size_t nread
, tocopy
;
872 if (bfd_stat_arch_elt (abfd
, &buf
) != 0)
873 /* xgettext:c-format */
874 fatal (_("internal stat error on %s"), bfd_get_filename (abfd
));
878 printf ("x - %s\n", bfd_get_filename (abfd
));
880 bfd_seek (abfd
, (file_ptr
) 0, SEEK_SET
);
885 /* Seems like an abstraction violation, eh? Well it's OK! */
886 output_filename
= bfd_get_filename (abfd
);
888 ostream
= fopen (bfd_get_filename (abfd
), FOPEN_WB
);
891 perror (bfd_get_filename (abfd
));
895 output_file
= ostream
;
898 while (ncopied
< size
)
900 tocopy
= size
- ncopied
;
901 if (tocopy
> BUFSIZE
)
904 nread
= bfd_bread (cbuf
, (bfd_size_type
) tocopy
, abfd
);
906 /* xgettext:c-format */
907 fatal (_("%s is not a valid archive"),
908 bfd_get_filename (bfd_my_archive (abfd
)));
910 /* See comment above; this saves disk arm motion */
913 /* Seems like an abstraction violation, eh? Well it's OK! */
914 output_filename
= bfd_get_filename (abfd
);
916 ostream
= fopen (bfd_get_filename (abfd
), FOPEN_WB
);
919 perror (bfd_get_filename (abfd
));
923 output_file
= ostream
;
926 /* fwrite in mingw32 may return int instead of size_t. Cast
927 the return value to size_t to avoid comparison between
928 signed and unsigned values. */
929 if ((size_t) fwrite (cbuf
, 1, nread
, ostream
) != nread
)
930 fatal ("%s: %s", output_filename
, strerror (errno
));
938 output_filename
= NULL
;
940 chmod (bfd_get_filename (abfd
), buf
.st_mode
);
944 /* Set access time to modification time. Only st_mtime is
945 initialized by bfd_stat_arch_elt. */
946 buf
.st_atime
= buf
.st_mtime
;
947 set_times (bfd_get_filename (abfd
), &buf
);
954 write_archive (bfd
*iarch
)
957 char *old_name
, *new_name
;
958 bfd
*contents_head
= iarch
->archive_next
;
960 old_name
= (char *) xmalloc (strlen (bfd_get_filename (iarch
)) + 1);
961 strcpy (old_name
, bfd_get_filename (iarch
));
962 new_name
= make_tempname (old_name
);
964 if (new_name
== NULL
)
965 bfd_fatal ("could not create temporary file whilst writing archive");
967 output_filename
= new_name
;
969 obfd
= bfd_openw (new_name
, bfd_get_target (iarch
));
972 bfd_fatal (old_name
);
976 bfd_set_format (obfd
, bfd_archive
);
978 /* Request writing the archive symbol table unless we've
979 been explicitly requested not to. */
980 obfd
->has_armap
= write_armap
>= 0;
984 /* This should really use bfd_set_file_flags, but that rejects
986 obfd
->flags
|= BFD_TRADITIONAL_FORMAT
;
990 obfd
->flags
|= BFD_DETERMINISTIC_OUTPUT
;
992 if (make_thin_archive
|| bfd_is_thin_archive (iarch
))
993 bfd_is_thin_archive (obfd
) = 1;
995 if (!bfd_set_archive_head (obfd
, contents_head
))
996 bfd_fatal (old_name
);
998 if (!bfd_close (obfd
))
999 bfd_fatal (old_name
);
1002 output_filename
= NULL
;
1004 /* We don't care if this fails; we might be creating the archive. */
1007 if (smart_rename (new_name
, old_name
, 0) != 0)
1011 /* Return a pointer to the pointer to the entry which should be rplacd'd
1012 into when altering. DEFAULT_POS should be how to interpret pos_default,
1013 and should be a pos value. */
1016 get_pos_bfd (bfd
**contents
, enum pos default_pos
, const char *default_posname
)
1018 bfd
**after_bfd
= contents
;
1020 const char *realposname
;
1022 if (postype
== pos_default
)
1024 realpos
= default_pos
;
1025 realposname
= default_posname
;
1030 realposname
= posname
;
1033 if (realpos
== pos_end
)
1036 after_bfd
= &((*after_bfd
)->archive_next
);
1040 for (; *after_bfd
; after_bfd
= &(*after_bfd
)->archive_next
)
1041 if (FILENAME_CMP ((*after_bfd
)->filename
, realposname
) == 0)
1043 if (realpos
== pos_after
)
1044 after_bfd
= &(*after_bfd
)->archive_next
;
1052 delete_members (bfd
*arch
, char **files_to_delete
)
1054 bfd
**current_ptr_ptr
;
1056 bfd_boolean something_changed
= FALSE
;
1059 for (; *files_to_delete
!= NULL
; ++files_to_delete
)
1061 /* In a.out systems, the armap is optional. It's also called
1062 __.SYMDEF. So if the user asked to delete it, we should remember
1063 that fact. This isn't quite right for COFF systems (where
1064 __.SYMDEF might be regular member), but it's very unlikely
1065 to be a problem. FIXME */
1067 if (!strcmp (*files_to_delete
, "__.SYMDEF"))
1069 arch
->has_armap
= FALSE
;
1076 current_ptr_ptr
= &(arch
->archive_next
);
1077 while (*current_ptr_ptr
)
1079 if (FILENAME_CMP (normalize (*files_to_delete
, arch
),
1080 (*current_ptr_ptr
)->filename
) == 0)
1083 if (counted_name_mode
1084 && match_count
!= counted_name_counter
)
1086 /* Counting, and didn't match on count; go on to the
1092 something_changed
= TRUE
;
1096 *current_ptr_ptr
= ((*current_ptr_ptr
)->archive_next
);
1101 current_ptr_ptr
= &((*current_ptr_ptr
)->archive_next
);
1104 if (verbose
&& !found
)
1106 /* xgettext:c-format */
1107 printf (_("No member named `%s'\n"), *files_to_delete
);
1113 if (something_changed
)
1114 write_archive (arch
);
1116 output_filename
= NULL
;
1120 /* Reposition existing members within an archive */
1123 move_members (bfd
*arch
, char **files_to_move
)
1125 bfd
**after_bfd
; /* New entries go after this one */
1126 bfd
**current_ptr_ptr
; /* cdr pointer into contents */
1128 for (; *files_to_move
; ++files_to_move
)
1130 current_ptr_ptr
= &(arch
->archive_next
);
1131 while (*current_ptr_ptr
)
1133 bfd
*current_ptr
= *current_ptr_ptr
;
1134 if (FILENAME_CMP (normalize (*files_to_move
, arch
),
1135 current_ptr
->filename
) == 0)
1137 /* Move this file to the end of the list - first cut from
1140 *current_ptr_ptr
= current_ptr
->archive_next
;
1142 /* Now glue to end */
1143 after_bfd
= get_pos_bfd (&arch
->archive_next
, pos_end
, NULL
);
1144 link_bfd
= *after_bfd
;
1145 *after_bfd
= current_ptr
;
1146 current_ptr
->archive_next
= link_bfd
;
1149 printf ("m - %s\n", *files_to_move
);
1154 current_ptr_ptr
= &((*current_ptr_ptr
)->archive_next
);
1156 /* xgettext:c-format */
1157 fatal (_("no entry %s in archive %s!"), *files_to_move
, arch
->filename
);
1162 write_archive (arch
);
1165 /* Ought to default to replacing in place, but this is existing practice! */
1168 replace_members (bfd
*arch
, char **files_to_move
, bfd_boolean quick
)
1170 bfd_boolean changed
= FALSE
;
1171 bfd
**after_bfd
; /* New entries go after this one. */
1175 while (files_to_move
&& *files_to_move
)
1179 current_ptr
= &arch
->archive_next
;
1180 while (*current_ptr
)
1182 current
= *current_ptr
;
1184 /* For compatibility with existing ar programs, we
1185 permit the same file to be added multiple times. */
1186 if (FILENAME_CMP (normalize (*files_to_move
, arch
),
1187 normalize (current
->filename
, arch
)) == 0
1188 && current
->arelt_data
!= NULL
)
1192 struct stat fsbuf
, asbuf
;
1194 if (stat (*files_to_move
, &fsbuf
) != 0)
1196 if (errno
!= ENOENT
)
1197 bfd_fatal (*files_to_move
);
1200 if (bfd_stat_arch_elt (current
, &asbuf
) != 0)
1201 /* xgettext:c-format */
1202 fatal (_("internal stat error on %s"),
1205 if (fsbuf
.st_mtime
<= asbuf
.st_mtime
)
1209 after_bfd
= get_pos_bfd (&arch
->archive_next
, pos_after
,
1211 if (ar_emul_replace (after_bfd
, *files_to_move
,
1212 plugin_target
, verbose
))
1214 /* Snip out this entry from the chain. */
1215 *current_ptr
= (*current_ptr
)->archive_next
;
1221 current_ptr
= &(current
->archive_next
);
1225 /* Add to the end of the archive. */
1226 after_bfd
= get_pos_bfd (&arch
->archive_next
, pos_end
, NULL
);
1228 if (ar_emul_append (after_bfd
, *files_to_move
, plugin_target
,
1229 verbose
, make_thin_archive
))
1238 write_archive (arch
);
1240 output_filename
= NULL
;
1244 ranlib_only (const char *archname
)
1248 if (get_file_size (archname
) < 1)
1251 arch
= open_inarch (archname
, (char *) NULL
);
1254 write_archive (arch
);
1258 /* Update the timestamp of the symbol map of an archive. */
1261 ranlib_touch (const char *archname
)
1264 /* I don't think updating works on go32. */
1265 ranlib_only (archname
);
1271 if (get_file_size (archname
) < 1)
1273 f
= open (archname
, O_RDWR
| O_BINARY
, 0);
1276 bfd_set_error (bfd_error_system_call
);
1277 bfd_fatal (archname
);
1280 arch
= bfd_fdopenr (archname
, (const char *) NULL
, f
);
1282 bfd_fatal (archname
);
1283 if (! bfd_check_format_matches (arch
, bfd_archive
, &matching
))
1285 bfd_nonfatal (archname
);
1286 if (bfd_get_error () == bfd_error_file_ambiguously_recognized
)
1288 list_matching_formats (matching
);
1294 if (! bfd_has_map (arch
))
1295 /* xgettext:c-format */
1296 fatal (_("%s: no archive map to update"), archname
);
1298 bfd_update_armap_timestamp (arch
);
1300 if (! bfd_close (arch
))
1301 bfd_fatal (archname
);
1306 /* Things which are interesting to map over all or some of the files: */
1309 print_descr (bfd
*abfd
)
1311 print_arelt_descr (stdout
, abfd
, verbose
);