gdb/testsuite/
[deliverable/binutils-gdb.git] / binutils / ar.c
CommitLineData
252b5132 1/* ar.c - Archive modify and extract.
e59b4dfb 2 Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
c60ce34a 3 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
252b5132
RH
4 Free Software Foundation, Inc.
5
eb1e0e80 6 This file is part of GNU Binutils.
252b5132 7
eb1e0e80
NC
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
32866df7 10 the Free Software Foundation; either version 3 of the License, or
eb1e0e80 11 (at your option) any later version.
252b5132 12
eb1e0e80
NC
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.
252b5132 17
eb1e0e80
NC
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
32866df7
NC
20 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
21 MA 02110-1301, USA. */
252b5132
RH
22\f
23/*
4e407551
AM
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. */
eb1e0e80 27
3db64b00 28#include "sysdep.h"
252b5132
RH
29#include "bfd.h"
30#include "libiberty.h"
31#include "progress.h"
4e407551 32#include "getopt.h"
252b5132
RH
33#include "aout/ar.h"
34#include "libbfd.h"
3db64b00 35#include "bucomm.h"
252b5132 36#include "arsup.h"
5af11cab 37#include "filenames.h"
eb1e0e80 38#include "binemul.h"
ce3c775b 39#include "plugin.h"
252b5132
RH
40#include <sys/stat.h>
41
42#ifdef __GO32___
a8da6403 43#define EXT_NAME_LEN 3 /* Bufflen of addition to name if it's MS-DOS. */
252b5132 44#else
a8da6403 45#define EXT_NAME_LEN 6 /* Ditto for *NIX. */
252b5132
RH
46#endif
47
a8da6403 48/* Static declarations. */
252b5132 49
2da42df6
AJ
50static void mri_emul (void);
51static const char *normalize (const char *, bfd *);
52static void remove_output (void);
53static void map_over_members (bfd *, void (*)(bfd *), char **, int);
54static void print_contents (bfd * member);
55static void delete_members (bfd *, char **files_to_delete);
252b5132 56
2da42df6
AJ
57static void move_members (bfd *, char **files_to_move);
58static void replace_members
59 (bfd *, char **files_to_replace, bfd_boolean quick);
60static void print_descr (bfd * abfd);
61static void write_archive (bfd *);
d68c385b
NC
62static int ranlib_only (const char *archname);
63static int ranlib_touch (const char *archname);
2da42df6 64static void usage (int);
252b5132 65\f
a8da6403 66/** Globals and flags. */
252b5132 67
85b1c36d 68static int mri_mode;
252b5132
RH
69
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. */
73extern int is_ranlib;
74
75/* Nonzero means don't warn about creating the archive file if necessary. */
76int silent_create = 0;
77
78/* Nonzero means describe each action performed. */
79int verbose = 0;
80
81/* Nonzero means preserve dates of members when extracting them. */
82int preserve_dates = 0;
83
84/* Nonzero means don't replace existing members whose dates are more recent
85 than the corresponding files. */
86int newer_only = 0;
87
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;
50c2245b 90 +1 means we've been explicitly asked to write it;
252b5132
RH
91 0 is the default.
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. */
95int write_armap = 0;
96
36e4dce6
CD
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. */
100int deterministic = 0;
101
252b5132
RH
102/* Nonzero means it's the name of an existing member; position new or moved
103 files with respect to this one. */
104char *posname = NULL;
105
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. */
110enum pos
111 {
112 pos_default, pos_before, pos_after, pos_end
113 } postype = pos_default;
114
4e407551
AM
115enum operations
116 {
117 none = 0, del, replace, print_table,
118 print_files, extract, move, quick_append
119 } operation = none;
120
252b5132 121static bfd **
2da42df6 122get_pos_bfd (bfd **, enum pos, const char *);
252b5132 123
b34976b6 124/* For extract/delete only. If COUNTED_NAME_MODE is TRUE, we only
3de39064 125 extract the COUNTED_NAME_COUNTER instance of that name. */
b34976b6 126static bfd_boolean counted_name_mode = 0;
3de39064
ILT
127static int counted_name_counter = 0;
128
252b5132 129/* Whether to truncate names of files stored in the archive. */
b34976b6 130static bfd_boolean ar_truncate = FALSE;
252b5132 131
fe84ea5d
ILT
132/* Whether to use a full file name match when searching an archive.
133 This is convenient for archives created by the Microsoft lib
134 program. */
b34976b6 135static bfd_boolean full_pathname = FALSE;
fe84ea5d 136
a8da6403
NC
137/* Whether to create a "thin" archive (symbol index only -- no files). */
138static bfd_boolean make_thin_archive = FALSE;
139
4e407551
AM
140static int show_version = 0;
141
142static int show_help = 0;
143
492d5973
L
144static const char *plugin_target = NULL;
145
90b79792
AM
146static const char *target = NULL;
147
4e407551 148#define OPTION_PLUGIN 201
90b79792 149#define OPTION_TARGET 202
4e407551
AM
150
151static struct option long_options[] =
152{
153 {"help", no_argument, &show_help, 1},
154 {"plugin", required_argument, NULL, OPTION_PLUGIN},
90b79792 155 {"target", required_argument, NULL, OPTION_TARGET},
4e407551
AM
156 {"version", no_argument, &show_version, 1},
157 {NULL, no_argument, NULL, 0}
158};
159
252b5132
RH
160int interactive = 0;
161
162static void
2da42df6 163mri_emul (void)
252b5132
RH
164{
165 interactive = isatty (fileno (stdin));
166 yyparse ();
167}
168
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. */
172
173static void
2da42df6 174map_over_members (bfd *arch, void (*function)(bfd *), char **files, int count)
252b5132
RH
175{
176 bfd *head;
3de39064 177 int match_count;
252b5132
RH
178
179 if (count == 0)
180 {
cc481421 181 for (head = arch->archive_next; head; head = head->archive_next)
252b5132
RH
182 {
183 PROGRESS (1);
184 function (head);
185 }
186 return;
187 }
3de39064 188
252b5132
RH
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
193 references. */
194
195 for (; count > 0; files++, count--)
196 {
b34976b6 197 bfd_boolean found = FALSE;
252b5132 198
3de39064 199 match_count = 0;
cc481421 200 for (head = arch->archive_next; head; head = head->archive_next)
252b5132 201 {
a8da6403
NC
202 const char * filename;
203
252b5132 204 PROGRESS (1);
a8da6403
NC
205 filename = head->filename;
206 if (filename == NULL)
252b5132
RH
207 {
208 /* Some archive formats don't get the filenames filled in
209 until the elements are opened. */
210 struct stat buf;
211 bfd_stat_arch_elt (head, &buf);
212 }
a8da6403
NC
213 else if (bfd_is_thin_archive (arch))
214 {
215 /* Thin archives store full pathnames. Need to normalize. */
216 filename = normalize (filename, arch);
217 }
218
dbcf6387
AM
219 if (filename != NULL
220 && !FILENAME_CMP (normalize (*files, arch), filename))
252b5132 221 {
3de39064
ILT
222 ++match_count;
223 if (counted_name_mode
f462a9ea 224 && match_count != counted_name_counter)
3de39064
ILT
225 {
226 /* Counting, and didn't match on count; go on to the
227 next one. */
228 continue;
229 }
230
b34976b6 231 found = TRUE;
252b5132
RH
232 function (head);
233 }
234 }
a8da6403 235
252b5132
RH
236 if (!found)
237 /* xgettext:c-format */
238 fprintf (stderr, _("no entry %s in archive\n"), *files);
239 }
240}
241\f
b34976b6 242bfd_boolean operation_alters_arch = FALSE;
252b5132
RH
243
244static void
2da42df6 245usage (int help)
252b5132
RH
246{
247 FILE *s;
248
249 s = help ? stdout : stderr;
f462a9ea 250
ce3c775b 251#if BFD_SUPPORTS_PLUGINS
dbcf6387
AM
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");
256
ce3c775b 257#else
dbcf6387
AM
258 /* xgettext:c-format */
259 const char *command_line
260 = _("Usage: %s [emulation options] [-]{dmpqrstx}[abcDfilMNoPsSTuvV]"
261 " [member-name] [count] archive-file file...\n");
ce3c775b 262#endif
1154c3ef
AM
263 fprintf (s, command_line, program_name);
264
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"));
c60ce34a 293 fprintf (s, _(" --target=BFDNAME - specify the target object format as BFDNAME\n"));
ce3c775b 294#if BFD_SUPPORTS_PLUGINS
1154c3ef
AM
295 fprintf (s, _(" optional:\n"));
296 fprintf (s, _(" --plugin <p> - load the specified plugin\n"));
ce3c775b 297#endif
1154c3ef
AM
298
299 ar_emul_usage (s);
300
301 list_supported_targets (program_name, s);
302
303 if (REPORT_BUGS_TO[0] && help)
304 fprintf (s, _("Report bugs to %s\n"), REPORT_BUGS_TO);
305
306 xexit (help ? 0 : 1);
307}
308
309static void
dbcf6387 310ranlib_usage (int help)
1154c3ef
AM
311{
312 FILE *s;
313
314 s = help ? stdout : stderr;
315
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\
d46fc8e8 320 @<file> Read options from <file>\n"));
ce3c775b 321#if BFD_SUPPORTS_PLUGINS
1154c3ef 322 fprintf (s, _("\
d46fc8e8 323 --plugin <name> Load the specified plugin\n"));
ce3c775b 324#endif
1154c3ef 325 fprintf (s, _("\
d46fc8e8 326 -t Update the archive's symbol map timestamp\n\
8b53311e 327 -h --help Print this help message\n\
20c0b65d 328 -v --version Print version information\n"));
252b5132 329
92f01d61 330 list_supported_targets (program_name, s);
252b5132 331
92f01d61 332 if (REPORT_BUGS_TO[0] && help)
8ad3436c 333 fprintf (s, _("Report bugs to %s\n"), REPORT_BUGS_TO);
252b5132
RH
334
335 xexit (help ? 0 : 1);
336}
337
338/* Normalize a file name specified on the command line into a file
339 name which we will use in an archive. */
340
341static const char *
2da42df6 342normalize (const char *file, bfd *abfd)
252b5132
RH
343{
344 const char *filename;
345
fe84ea5d 346 if (full_pathname)
b059661e 347 return file;
fe84ea5d 348
fd3a6816 349 filename = lbasename (file);
252b5132
RH
350
351 if (ar_truncate
352 && abfd != NULL
353 && strlen (filename) > abfd->xvec->ar_max_namelen)
354 {
355 char *s;
356
357 /* Space leak. */
3f5e193b 358 s = (char *) xmalloc (abfd->xvec->ar_max_namelen + 1);
252b5132
RH
359 memcpy (s, filename, abfd->xvec->ar_max_namelen);
360 s[abfd->xvec->ar_max_namelen] = '\0';
361 filename = s;
362 }
363
364 return filename;
365}
366
367/* Remove any output file. This is only called via xatexit. */
368
c8446de5 369static const char *output_filename = NULL;
252b5132
RH
370static FILE *output_file = NULL;
371static bfd *output_bfd = NULL;
372
373static void
2da42df6 374remove_output (void)
252b5132
RH
375{
376 if (output_filename != NULL)
377 {
c92c35e7
AC
378 if (output_bfd != NULL)
379 bfd_cache_close (output_bfd);
252b5132
RH
380 if (output_file != NULL)
381 fclose (output_file);
bb14f524 382 unlink_if_ordinary (output_filename);
252b5132
RH
383 }
384}
385
4e407551 386static char **
dbcf6387 387decode_options (int argc, char **argv)
4e407551
AM
388{
389 int c;
390
391 /* Convert old-style tar call by exploding option element and rearranging
392 options accordingly. */
393
394 if (argc > 1 && argv[1][0] != '-')
395 {
396 int new_argc; /* argc value for rearranged arguments */
397 char **new_argv; /* argv value for rearranged arguments */
398 char *const *in; /* cursor into original argv */
399 char **out; /* cursor into rearranged argv */
400 const char *letter; /* cursor into old option letters */
401 char buffer[3]; /* constructed option buffer */
402
403 /* Initialize a constructed option. */
404
405 buffer[0] = '-';
406 buffer[2] = '\0';
407
408 /* Allocate a new argument array, and copy program name in it. */
409
410 new_argc = argc - 1 + strlen (argv[1]);
411 new_argv = xmalloc ((new_argc + 1) * sizeof (*argv));
412 in = argv;
413 out = new_argv;
414 *out++ = *in++;
415
416 /* Copy each old letter option as a separate option. */
417
418 for (letter = *in++; *letter; letter++)
419 {
420 buffer[1] = *letter;
421 *out++ = xstrdup (buffer);
422 }
423
424 /* Copy all remaining options. */
425
426 while (in < argv + argc)
427 *out++ = *in++;
428 *out = NULL;
429
430 /* Replace the old option list by the new one. */
431
432 argc = new_argc;
433 argv = new_argv;
434 }
435
dbcf6387 436 while ((c = getopt_long (argc, argv, "hdmpqrtxlcoVsSuvabiMNfPTD",
4e407551
AM
437 long_options, NULL)) != EOF)
438 {
439 switch (c)
440 {
441 case 'd':
442 case 'm':
443 case 'p':
444 case 'q':
445 case 'r':
446 case 't':
447 case 'x':
448 if (operation != none)
449 fatal (_("two different operation options specified"));
450 break;
451 }
452
453 switch (c)
454 {
455 case 'h':
456 show_help = 1;
457 break;
458 case 'd':
459 operation = del;
460 operation_alters_arch = TRUE;
461 break;
462 case 'm':
463 operation = move;
464 operation_alters_arch = TRUE;
465 break;
466 case 'p':
467 operation = print_files;
468 break;
469 case 'q':
470 operation = quick_append;
471 operation_alters_arch = TRUE;
472 break;
473 case 'r':
474 operation = replace;
475 operation_alters_arch = TRUE;
476 break;
477 case 't':
478 operation = print_table;
479 break;
480 case 'x':
481 operation = extract;
482 break;
483 case 'l':
484 break;
485 case 'c':
486 silent_create = 1;
487 break;
488 case 'o':
489 preserve_dates = 1;
490 break;
491 case 'V':
492 show_version = TRUE;
493 break;
494 case 's':
495 write_armap = 1;
496 break;
497 case 'S':
498 write_armap = -1;
499 break;
500 case 'u':
501 newer_only = 1;
502 break;
503 case 'v':
504 verbose = 1;
505 break;
506 case 'a':
507 postype = pos_after;
508 break;
509 case 'b':
510 postype = pos_before;
511 break;
512 case 'i':
513 postype = pos_before;
514 break;
515 case 'M':
516 mri_mode = 1;
517 break;
518 case 'N':
519 counted_name_mode = TRUE;
520 break;
521 case 'f':
522 ar_truncate = TRUE;
523 break;
524 case 'P':
525 full_pathname = TRUE;
526 break;
527 case 'T':
528 make_thin_archive = TRUE;
529 break;
530 case 'D':
531 deterministic = TRUE;
532 break;
533 case OPTION_PLUGIN:
534#if BFD_SUPPORTS_PLUGINS
535 plugin_target = "plugin";
536 bfd_plugin_set_plugin (optarg);
537#else
538 fprintf (stderr, _("sorry - this program has been built without plugin support\n"));
539 xexit (1);
540#endif
541 break;
90b79792
AM
542 case OPTION_TARGET:
543 target = optarg;
544 break;
4e407551
AM
545 case 0: /* A long option that just sets a flag. */
546 break;
547 default:
4e407551
AM
548 usage (0);
549 }
550 }
551
552 return &argv[optind];
553}
554
1154c3ef 555static void
dbcf6387 556ranlib_main (int argc, char **argv)
1154c3ef
AM
557{
558 int arg_index, status = 0;
559 bfd_boolean touch = FALSE;
4e407551 560 int c;
1154c3ef 561
4e407551 562 while ((c = getopt_long (argc, argv, "hHvVt", long_options, NULL)) != EOF)
1154c3ef 563 {
4e407551
AM
564 switch (c)
565 {
566 case 'h':
567 case 'H':
568 show_help = 1;
569 break;
570 case 't':
571 touch = TRUE;
572 break;
573 case 'v':
574 case 'V':
575 show_version = 1;
576 break;
577 }
1154c3ef
AM
578 }
579
4e407551 580 if (argc < 2)
1154c3ef
AM
581 ranlib_usage (0);
582
4e407551 583 if (show_help)
dbcf6387 584 usage (1);
4e407551
AM
585
586 if (show_version)
1154c3ef 587 print_version ("ranlib");
1154c3ef 588
c60ce34a 589 arg_index = optind;
1154c3ef
AM
590
591 while (arg_index < argc)
592 {
593 if (! touch)
594 status |= ranlib_only (argv[arg_index]);
595 else
596 status |= ranlib_touch (argv[arg_index]);
597 ++arg_index;
598 }
599
600 xexit (status);
601}
602
2da42df6 603int main (int, char **);
65de42c0 604
252b5132 605int
2da42df6 606main (int argc, char **argv)
252b5132 607{
252b5132
RH
608 int arg_index;
609 char **files;
3de39064 610 int file_count;
252b5132 611 char *inarch_filename;
eb1e0e80 612 int i;
252b5132
RH
613
614#if defined (HAVE_SETLOCALE) && defined (HAVE_LC_MESSAGES)
615 setlocale (LC_MESSAGES, "");
3882b010
L
616#endif
617#if defined (HAVE_SETLOCALE)
618 setlocale (LC_CTYPE, "");
252b5132
RH
619#endif
620 bindtextdomain (PACKAGE, LOCALEDIR);
621 textdomain (PACKAGE);
622
623 program_name = argv[0];
624 xmalloc_set_program_name (program_name);
fc579192
NC
625#if BFD_SUPPORTS_PLUGINS
626 bfd_plugin_set_program_name (program_name);
627#endif
252b5132 628
869b9d07
MM
629 expandargv (&argc, &argv);
630
252b5132
RH
631 if (is_ranlib < 0)
632 {
fd3a6816
TG
633 const char *temp = lbasename (program_name);
634
252b5132 635 if (strlen (temp) >= 6
5af11cab 636 && FILENAME_CMP (temp + strlen (temp) - 6, "ranlib") == 0)
252b5132
RH
637 is_ranlib = 1;
638 else
639 is_ranlib = 0;
640 }
641
252b5132
RH
642 START_PROGRESS (program_name, 0);
643
644 bfd_init ();
645 set_default_bfd_target ();
646
252b5132
RH
647 xatexit (remove_output);
648
eb1e0e80
NC
649 for (i = 1; i < argc; i++)
650 if (! ar_emul_parse_arg (argv[i]))
651 break;
652 argv += (i - 1);
653 argc -= (i - 1);
f462a9ea 654
252b5132 655 if (is_ranlib)
dbcf6387 656 ranlib_main (argc, argv);
252b5132
RH
657
658 if (argc < 2)
659 usage (0);
660
dbcf6387 661 argv = decode_options (argc, argv);
ce3c775b 662
4e407551 663 if (show_help)
dbcf6387 664 usage (1);
252b5132
RH
665
666 if (show_version)
667 print_version ("ar");
668
4e407551 669 arg_index = 0;
252b5132
RH
670
671 if (mri_mode)
672 {
673 mri_emul ();
674 }
675 else
676 {
677 bfd *arch;
678
84e43642
BE
679 /* We don't use do_quick_append any more. Too many systems
680 expect ar to always rebuild the symbol table even when q is
681 used. */
682
252b5132
RH
683 /* We can't write an armap when using ar q, so just do ar r
684 instead. */
685 if (operation == quick_append && write_armap)
686 operation = replace;
687
688 if ((operation == none || operation == print_table)
689 && write_armap == 1)
d68c385b 690 xexit (ranlib_only (argv[arg_index]));
252b5132
RH
691
692 if (operation == none)
693 fatal (_("no operation specified"));
694
695 if (newer_only && operation != replace)
696 fatal (_("`u' is only meaningful with the `r' option."));
697
36e4dce6
CD
698 if (newer_only && deterministic)
699 fatal (_("`u' is not meaningful with the `D' option."));
700
252b5132
RH
701 if (postype != pos_default)
702 posname = argv[arg_index++];
703
f462a9ea 704 if (counted_name_mode)
3de39064 705 {
3f5e193b 706 if (operation != extract && operation != del)
dbcf6387 707 fatal (_("`N' is only meaningful with the `x' and `d' options."));
3de39064 708 counted_name_counter = atoi (argv[arg_index++]);
f462a9ea 709 if (counted_name_counter <= 0)
3de39064
ILT
710 fatal (_("Value for `N' must be positive."));
711 }
712
252b5132
RH
713 inarch_filename = argv[arg_index++];
714
4e407551 715 for (file_count = 0; argv[arg_index + file_count] != NULL; file_count++)
dbcf6387 716 continue;
4e407551
AM
717
718 files = (file_count > 0) ? argv + arg_index : NULL;
252b5132 719
252b5132
RH
720 arch = open_inarch (inarch_filename,
721 files == NULL ? (char *) NULL : files[0]);
722
a8da6403
NC
723 if (operation == extract && bfd_is_thin_archive (arch))
724 fatal (_("`x' cannot be used on thin archives."));
725
252b5132
RH
726 switch (operation)
727 {
728 case print_table:
3de39064 729 map_over_members (arch, print_descr, files, file_count);
252b5132
RH
730 break;
731
732 case print_files:
3de39064 733 map_over_members (arch, print_contents, files, file_count);
252b5132
RH
734 break;
735
736 case extract:
3de39064 737 map_over_members (arch, extract_file, files, file_count);
252b5132
RH
738 break;
739
3f5e193b 740 case del:
252b5132
RH
741 if (files != NULL)
742 delete_members (arch, files);
a20a10a6
ILT
743 else
744 output_filename = NULL;
252b5132
RH
745 break;
746
747 case move:
75d5a45f
NC
748 /* PR 12558: Creating and moving at the same time does
749 not make sense. Just create the archive instead. */
750 if (! silent_create)
751 {
752 if (files != NULL)
753 move_members (arch, files);
754 else
755 output_filename = NULL;
756 break;
757 }
758 /* Fall through. */
252b5132
RH
759
760 case replace:
761 case quick_append:
762 if (files != NULL || write_armap > 0)
763 replace_members (arch, files, operation == quick_append);
a20a10a6
ILT
764 else
765 output_filename = NULL;
252b5132
RH
766 break;
767
768 /* Shouldn't happen! */
769 default:
770 /* xgettext:c-format */
37cc8ec1 771 fatal (_("internal error -- this option not implemented"));
252b5132
RH
772 }
773 }
774
775 END_PROGRESS (program_name);
776
777 xexit (0);
778 return 0;
779}
780
781bfd *
2da42df6 782open_inarch (const char *archive_filename, const char *file)
252b5132 783{
252b5132
RH
784 bfd **last_one;
785 bfd *next_one;
786 struct stat sbuf;
787 bfd *arch;
788 char **matching;
789
790 bfd_set_error (bfd_error_no_error);
791
90b79792
AM
792 if (target == NULL)
793 target = plugin_target;
252b5132
RH
794
795 if (stat (archive_filename, &sbuf) != 0)
796 {
5af11cab
AM
797#if !defined(__GO32__) || defined(__DJGPP__)
798
799 /* FIXME: I don't understand why this fragment was ifndef'ed
800 away for __GO32__; perhaps it was in the days of DJGPP v1.x.
801 stat() works just fine in v2.x, so I think this should be
802 removed. For now, I enable it for DJGPP v2. -- EZ. */
252b5132 803
dbcf6387
AM
804 /* KLUDGE ALERT! Temporary fix until I figger why
805 stat() is wrong ... think it's buried in GO32's IDT - Jax */
252b5132
RH
806 if (errno != ENOENT)
807 bfd_fatal (archive_filename);
808#endif
809
810 if (!operation_alters_arch)
811 {
812 fprintf (stderr, "%s: ", program_name);
813 perror (archive_filename);
814 maybequit ();
815 return NULL;
816 }
817
818 /* Try to figure out the target to use for the archive from the
819 first object on the list. */
820 if (file != NULL)
821 {
822 bfd *obj;
823
492d5973 824 obj = bfd_openr (file, target);
252b5132
RH
825 if (obj != NULL)
826 {
827 if (bfd_check_format (obj, bfd_object))
828 target = bfd_get_target (obj);
829 (void) bfd_close (obj);
830 }
831 }
832
833 /* Create an empty archive. */
834 arch = bfd_openw (archive_filename, target);
835 if (arch == NULL
836 || ! bfd_set_format (arch, bfd_archive)
837 || ! bfd_close (arch))
838 bfd_fatal (archive_filename);
e9915835
NC
839 else if (!silent_create)
840 non_fatal (_("creating %s"), archive_filename);
c8446de5
ILT
841
842 /* If we die creating a new archive, don't leave it around. */
843 output_filename = archive_filename;
252b5132
RH
844 }
845
846 arch = bfd_openr (archive_filename, target);
847 if (arch == NULL)
848 {
849 bloser:
850 bfd_fatal (archive_filename);
851 }
852
853 if (! bfd_check_format_matches (arch, bfd_archive, &matching))
854 {
855 bfd_nonfatal (archive_filename);
856 if (bfd_get_error () == bfd_error_file_ambiguously_recognized)
857 {
858 list_matching_formats (matching);
859 free (matching);
860 }
861 xexit (1);
862 }
863
cc481421 864 last_one = &(arch->archive_next);
252b5132
RH
865 /* Read all the contents right away, regardless. */
866 for (next_one = bfd_openr_next_archived_file (arch, NULL);
867 next_one;
868 next_one = bfd_openr_next_archived_file (arch, next_one))
869 {
870 PROGRESS (1);
871 *last_one = next_one;
cc481421 872 last_one = &next_one->archive_next;
252b5132
RH
873 }
874 *last_one = (bfd *) NULL;
875 if (bfd_get_error () != bfd_error_no_more_archived_files)
876 goto bloser;
877 return arch;
878}
879
880static void
2da42df6 881print_contents (bfd *abfd)
252b5132 882{
7bd7b3ef 883 size_t ncopied = 0;
3f5e193b 884 char *cbuf = (char *) xmalloc (BUFSIZE);
252b5132 885 struct stat buf;
7bd7b3ef 886 size_t size;
252b5132
RH
887 if (bfd_stat_arch_elt (abfd, &buf) != 0)
888 /* xgettext:c-format */
889 fatal (_("internal stat error on %s"), bfd_get_filename (abfd));
890
891 if (verbose)
cc5914eb 892 printf ("\n<%s>\n\n", bfd_get_filename (abfd));
252b5132 893
e59b4dfb 894 bfd_seek (abfd, (file_ptr) 0, SEEK_SET);
252b5132
RH
895
896 size = buf.st_size;
897 while (ncopied < size)
898 {
899
7bd7b3ef
AM
900 size_t nread;
901 size_t tocopy = size - ncopied;
252b5132
RH
902 if (tocopy > BUFSIZE)
903 tocopy = BUFSIZE;
904
e59b4dfb 905 nread = bfd_bread (cbuf, (bfd_size_type) tocopy, abfd);
252b5132
RH
906 if (nread != tocopy)
907 /* xgettext:c-format */
908 fatal (_("%s is not a valid archive"),
909 bfd_get_filename (bfd_my_archive (abfd)));
84f1d826
KH
910
911 /* fwrite in mingw32 may return int instead of size_t. Cast the
912 return value to size_t to avoid comparison between signed and
913 unsigned values. */
914 if ((size_t) fwrite (cbuf, 1, nread, stdout) != nread)
7bd7b3ef 915 fatal ("stdout: %s", strerror (errno));
252b5132
RH
916 ncopied += tocopy;
917 }
918 free (cbuf);
919}
920
921/* Extract a member of the archive into its own file.
922
923 We defer opening the new file until after we have read a BUFSIZ chunk of the
924 old one, since we know we have just read the archive header for the old
925 one. Since most members are shorter than BUFSIZ, this means we will read
926 the old header, read the old data, write a new inode for the new file, and
927 write the new data, and be done. This 'optimization' is what comes from
928 sitting next to a bare disk and hearing it every time it seeks. -- Gnu
929 Gilmore */
930
931void
2da42df6 932extract_file (bfd *abfd)
252b5132
RH
933{
934 FILE *ostream;
3f5e193b 935 char *cbuf = (char *) xmalloc (BUFSIZE);
7bd7b3ef
AM
936 size_t nread, tocopy;
937 size_t ncopied = 0;
938 size_t size;
252b5132 939 struct stat buf;
f462a9ea 940
252b5132
RH
941 if (bfd_stat_arch_elt (abfd, &buf) != 0)
942 /* xgettext:c-format */
943 fatal (_("internal stat error on %s"), bfd_get_filename (abfd));
944 size = buf.st_size;
945
252b5132
RH
946 if (verbose)
947 printf ("x - %s\n", bfd_get_filename (abfd));
948
e59b4dfb 949 bfd_seek (abfd, (file_ptr) 0, SEEK_SET);
252b5132
RH
950
951 ostream = NULL;
952 if (size == 0)
953 {
954 /* Seems like an abstraction violation, eh? Well it's OK! */
955 output_filename = bfd_get_filename (abfd);
956
957 ostream = fopen (bfd_get_filename (abfd), FOPEN_WB);
958 if (ostream == NULL)
959 {
960 perror (bfd_get_filename (abfd));
961 xexit (1);
962 }
963
964 output_file = ostream;
965 }
966 else
967 while (ncopied < size)
968 {
969 tocopy = size - ncopied;
970 if (tocopy > BUFSIZE)
971 tocopy = BUFSIZE;
972
e59b4dfb 973 nread = bfd_bread (cbuf, (bfd_size_type) tocopy, abfd);
252b5132
RH
974 if (nread != tocopy)
975 /* xgettext:c-format */
976 fatal (_("%s is not a valid archive"),
977 bfd_get_filename (bfd_my_archive (abfd)));
978
979 /* See comment above; this saves disk arm motion */
980 if (ostream == NULL)
981 {
982 /* Seems like an abstraction violation, eh? Well it's OK! */
983 output_filename = bfd_get_filename (abfd);
984
985 ostream = fopen (bfd_get_filename (abfd), FOPEN_WB);
986 if (ostream == NULL)
987 {
988 perror (bfd_get_filename (abfd));
989 xexit (1);
990 }
991
992 output_file = ostream;
993 }
84f1d826
KH
994
995 /* fwrite in mingw32 may return int instead of size_t. Cast
996 the return value to size_t to avoid comparison between
997 signed and unsigned values. */
998 if ((size_t) fwrite (cbuf, 1, nread, ostream) != nread)
7bd7b3ef 999 fatal ("%s: %s", output_filename, strerror (errno));
252b5132
RH
1000 ncopied += tocopy;
1001 }
1002
1003 if (ostream != NULL)
1004 fclose (ostream);
1005
1006 output_file = NULL;
1007 output_filename = NULL;
1008
1009 chmod (bfd_get_filename (abfd), buf.st_mode);
1010
1011 if (preserve_dates)
b3f21e4a
JJ
1012 {
1013 /* Set access time to modification time. Only st_mtime is
1014 initialized by bfd_stat_arch_elt. */
1015 buf.st_atime = buf.st_mtime;
1016 set_times (bfd_get_filename (abfd), &buf);
1017 }
252b5132
RH
1018
1019 free (cbuf);
1020}
1021
252b5132 1022static void
2da42df6 1023write_archive (bfd *iarch)
252b5132
RH
1024{
1025 bfd *obfd;
1026 char *old_name, *new_name;
cc481421 1027 bfd *contents_head = iarch->archive_next;
252b5132 1028
3f5e193b 1029 old_name = (char *) xmalloc (strlen (bfd_get_filename (iarch)) + 1);
252b5132
RH
1030 strcpy (old_name, bfd_get_filename (iarch));
1031 new_name = make_tempname (old_name);
1032
f9c026a8 1033 if (new_name == NULL)
9cf03b7e 1034 bfd_fatal (_("could not create temporary file whilst writing archive"));
a8da6403 1035
252b5132
RH
1036 output_filename = new_name;
1037
1038 obfd = bfd_openw (new_name, bfd_get_target (iarch));
1039
1040 if (obfd == NULL)
1041 bfd_fatal (old_name);
1042
1043 output_bfd = obfd;
1044
1045 bfd_set_format (obfd, bfd_archive);
1046
1047 /* Request writing the archive symbol table unless we've
1048 been explicitly requested not to. */
1049 obfd->has_armap = write_armap >= 0;
1050
1051 if (ar_truncate)
1052 {
1053 /* This should really use bfd_set_file_flags, but that rejects
1054 archives. */
1055 obfd->flags |= BFD_TRADITIONAL_FORMAT;
1056 }
1057
36e4dce6
CD
1058 if (deterministic)
1059 obfd->flags |= BFD_DETERMINISTIC_OUTPUT;
1060
a8da6403
NC
1061 if (make_thin_archive || bfd_is_thin_archive (iarch))
1062 bfd_is_thin_archive (obfd) = 1;
1063
b34976b6 1064 if (!bfd_set_archive_head (obfd, contents_head))
252b5132
RH
1065 bfd_fatal (old_name);
1066
1067 if (!bfd_close (obfd))
1068 bfd_fatal (old_name);
1069
1070 output_bfd = NULL;
1071 output_filename = NULL;
1072
1073 /* We don't care if this fails; we might be creating the archive. */
1074 bfd_close (iarch);
1075
1076 if (smart_rename (new_name, old_name, 0) != 0)
1077 xexit (1);
8e4850a9 1078 free (old_name);
252b5132
RH
1079}
1080
1081/* Return a pointer to the pointer to the entry which should be rplacd'd
1082 into when altering. DEFAULT_POS should be how to interpret pos_default,
1083 and should be a pos value. */
1084
1085static bfd **
2da42df6 1086get_pos_bfd (bfd **contents, enum pos default_pos, const char *default_posname)
252b5132
RH
1087{
1088 bfd **after_bfd = contents;
1089 enum pos realpos;
1090 const char *realposname;
1091
1092 if (postype == pos_default)
1093 {
1094 realpos = default_pos;
1095 realposname = default_posname;
1096 }
1097 else
1098 {
1099 realpos = postype;
1100 realposname = posname;
1101 }
1102
1103 if (realpos == pos_end)
1104 {
1105 while (*after_bfd)
cc481421 1106 after_bfd = &((*after_bfd)->archive_next);
252b5132
RH
1107 }
1108 else
1109 {
cc481421 1110 for (; *after_bfd; after_bfd = &(*after_bfd)->archive_next)
5af11cab 1111 if (FILENAME_CMP ((*after_bfd)->filename, realposname) == 0)
252b5132
RH
1112 {
1113 if (realpos == pos_after)
cc481421 1114 after_bfd = &(*after_bfd)->archive_next;
252b5132
RH
1115 break;
1116 }
1117 }
1118 return after_bfd;
1119}
1120
1121static void
2da42df6 1122delete_members (bfd *arch, char **files_to_delete)
252b5132
RH
1123{
1124 bfd **current_ptr_ptr;
b34976b6
AM
1125 bfd_boolean found;
1126 bfd_boolean something_changed = FALSE;
3de39064
ILT
1127 int match_count;
1128
252b5132
RH
1129 for (; *files_to_delete != NULL; ++files_to_delete)
1130 {
1131 /* In a.out systems, the armap is optional. It's also called
1132 __.SYMDEF. So if the user asked to delete it, we should remember
1133 that fact. This isn't quite right for COFF systems (where
1134 __.SYMDEF might be regular member), but it's very unlikely
1135 to be a problem. FIXME */
1136
1137 if (!strcmp (*files_to_delete, "__.SYMDEF"))
1138 {
b34976b6 1139 arch->has_armap = FALSE;
252b5132
RH
1140 write_armap = -1;
1141 continue;
1142 }
1143
b34976b6 1144 found = FALSE;
3de39064 1145 match_count = 0;
cc481421 1146 current_ptr_ptr = &(arch->archive_next);
252b5132
RH
1147 while (*current_ptr_ptr)
1148 {
4510857d
AM
1149 if (FILENAME_CMP (normalize (*files_to_delete, arch),
1150 (*current_ptr_ptr)->filename) == 0)
252b5132 1151 {
3de39064
ILT
1152 ++match_count;
1153 if (counted_name_mode
f462a9ea 1154 && match_count != counted_name_counter)
3de39064
ILT
1155 {
1156 /* Counting, and didn't match on count; go on to the
1157 next one. */
1158 }
1159 else
1160 {
b34976b6
AM
1161 found = TRUE;
1162 something_changed = TRUE;
3de39064
ILT
1163 if (verbose)
1164 printf ("d - %s\n",
1165 *files_to_delete);
cc481421 1166 *current_ptr_ptr = ((*current_ptr_ptr)->archive_next);
3de39064
ILT
1167 goto next_file;
1168 }
252b5132 1169 }
3de39064 1170
cc481421 1171 current_ptr_ptr = &((*current_ptr_ptr)->archive_next);
252b5132
RH
1172 }
1173
b34976b6 1174 if (verbose && !found)
252b5132
RH
1175 {
1176 /* xgettext:c-format */
1177 printf (_("No member named `%s'\n"), *files_to_delete);
1178 }
1179 next_file:
1180 ;
1181 }
1182
b34976b6 1183 if (something_changed)
a20a10a6
ILT
1184 write_archive (arch);
1185 else
1186 output_filename = NULL;
252b5132
RH
1187}
1188
1189
1190/* Reposition existing members within an archive */
1191
1192static void
2da42df6 1193move_members (bfd *arch, char **files_to_move)
252b5132 1194{
4510857d
AM
1195 bfd **after_bfd; /* New entries go after this one */
1196 bfd **current_ptr_ptr; /* cdr pointer into contents */
252b5132
RH
1197
1198 for (; *files_to_move; ++files_to_move)
1199 {
cc481421 1200 current_ptr_ptr = &(arch->archive_next);
252b5132
RH
1201 while (*current_ptr_ptr)
1202 {
1203 bfd *current_ptr = *current_ptr_ptr;
4510857d
AM
1204 if (FILENAME_CMP (normalize (*files_to_move, arch),
1205 current_ptr->filename) == 0)
252b5132
RH
1206 {
1207 /* Move this file to the end of the list - first cut from
1208 where it is. */
91d6fa6a 1209 bfd *link_bfd;
cc481421 1210 *current_ptr_ptr = current_ptr->archive_next;
252b5132
RH
1211
1212 /* Now glue to end */
cc481421 1213 after_bfd = get_pos_bfd (&arch->archive_next, pos_end, NULL);
91d6fa6a 1214 link_bfd = *after_bfd;
252b5132 1215 *after_bfd = current_ptr;
91d6fa6a 1216 current_ptr->archive_next = link_bfd;
252b5132
RH
1217
1218 if (verbose)
1219 printf ("m - %s\n", *files_to_move);
1220
1221 goto next_file;
1222 }
1223
cc481421 1224 current_ptr_ptr = &((*current_ptr_ptr)->archive_next);
252b5132
RH
1225 }
1226 /* xgettext:c-format */
37cc8ec1
AM
1227 fatal (_("no entry %s in archive %s!"), *files_to_move, arch->filename);
1228
4510857d 1229 next_file:;
252b5132
RH
1230 }
1231
1232 write_archive (arch);
1233}
1234
1235/* Ought to default to replacing in place, but this is existing practice! */
1236
1237static void
2da42df6 1238replace_members (bfd *arch, char **files_to_move, bfd_boolean quick)
252b5132 1239{
b34976b6 1240 bfd_boolean changed = FALSE;
360589e8 1241 bfd **after_bfd; /* New entries go after this one. */
252b5132
RH
1242 bfd *current;
1243 bfd **current_ptr;
252b5132
RH
1244
1245 while (files_to_move && *files_to_move)
1246 {
1247 if (! quick)
1248 {
cc481421 1249 current_ptr = &arch->archive_next;
252b5132
RH
1250 while (*current_ptr)
1251 {
1252 current = *current_ptr;
1253
1254 /* For compatibility with existing ar programs, we
1255 permit the same file to be added multiple times. */
5af11cab
AM
1256 if (FILENAME_CMP (normalize (*files_to_move, arch),
1257 normalize (current->filename, arch)) == 0
252b5132
RH
1258 && current->arelt_data != NULL)
1259 {
1260 if (newer_only)
1261 {
1262 struct stat fsbuf, asbuf;
1263
1264 if (stat (*files_to_move, &fsbuf) != 0)
1265 {
1266 if (errno != ENOENT)
1267 bfd_fatal (*files_to_move);
1268 goto next_file;
1269 }
1270 if (bfd_stat_arch_elt (current, &asbuf) != 0)
1271 /* xgettext:c-format */
e58a75dc
AM
1272 fatal (_("internal stat error on %s"),
1273 current->filename);
252b5132
RH
1274
1275 if (fsbuf.st_mtime <= asbuf.st_mtime)
1276 goto next_file;
1277 }
1278
cc481421 1279 after_bfd = get_pos_bfd (&arch->archive_next, pos_after,
252b5132 1280 current->filename);
f462a9ea 1281 if (ar_emul_replace (after_bfd, *files_to_move,
90b79792 1282 target, verbose))
252b5132 1283 {
eb1e0e80 1284 /* Snip out this entry from the chain. */
cc481421 1285 *current_ptr = (*current_ptr)->archive_next;
b34976b6 1286 changed = TRUE;
252b5132 1287 }
252b5132
RH
1288
1289 goto next_file;
1290 }
cc481421 1291 current_ptr = &(current->archive_next);
252b5132
RH
1292 }
1293 }
1294
1295 /* Add to the end of the archive. */
cc481421 1296 after_bfd = get_pos_bfd (&arch->archive_next, pos_end, NULL);
f24ddbdd 1297
90b79792 1298 if (ar_emul_append (after_bfd, *files_to_move, target,
492d5973 1299 verbose, make_thin_archive))
b34976b6 1300 changed = TRUE;
252b5132
RH
1301
1302 next_file:;
1303
1304 files_to_move++;
1305 }
1306
1307 if (changed)
1308 write_archive (arch);
a20a10a6
ILT
1309 else
1310 output_filename = NULL;
252b5132
RH
1311}
1312
d68c385b 1313static int
2da42df6 1314ranlib_only (const char *archname)
252b5132
RH
1315{
1316 bfd *arch;
1317
f24ddbdd 1318 if (get_file_size (archname) < 1)
d68c385b 1319 return 1;
252b5132
RH
1320 write_armap = 1;
1321 arch = open_inarch (archname, (char *) NULL);
1322 if (arch == NULL)
1323 xexit (1);
1324 write_archive (arch);
d68c385b 1325 return 0;
252b5132
RH
1326}
1327
1328/* Update the timestamp of the symbol map of an archive. */
1329
d68c385b 1330static int
2da42df6 1331ranlib_touch (const char *archname)
252b5132
RH
1332{
1333#ifdef __GO32__
1334 /* I don't think updating works on go32. */
1335 ranlib_only (archname);
1336#else
1337 int f;
1338 bfd *arch;
1339 char **matching;
1340
f24ddbdd 1341 if (get_file_size (archname) < 1)
d68c385b 1342 return 1;
d84feeac 1343 f = open (archname, O_RDWR | O_BINARY, 0);
252b5132
RH
1344 if (f < 0)
1345 {
1346 bfd_set_error (bfd_error_system_call);
1347 bfd_fatal (archname);
1348 }
1349
1350 arch = bfd_fdopenr (archname, (const char *) NULL, f);
1351 if (arch == NULL)
1352 bfd_fatal (archname);
1353 if (! bfd_check_format_matches (arch, bfd_archive, &matching))
1354 {
1355 bfd_nonfatal (archname);
1356 if (bfd_get_error () == bfd_error_file_ambiguously_recognized)
1357 {
1358 list_matching_formats (matching);
1359 free (matching);
1360 }
1361 xexit (1);
1362 }
1363
1364 if (! bfd_has_map (arch))
1365 /* xgettext:c-format */
1366 fatal (_("%s: no archive map to update"), archname);
1367
1368 bfd_update_armap_timestamp (arch);
1369
1370 if (! bfd_close (arch))
1371 bfd_fatal (archname);
1372#endif
d68c385b 1373 return 0;
252b5132
RH
1374}
1375
1376/* Things which are interesting to map over all or some of the files: */
1377
1378static void
2da42df6 1379print_descr (bfd *abfd)
252b5132
RH
1380{
1381 print_arelt_descr (stdout, abfd, verbose);
1382}
This page took 0.808701 seconds and 4 git commands to generate.