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