]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - bfd/archive.c
Allow for some recursion when scanning archives.
[thirdparty/binutils-gdb.git] / bfd / archive.c
1 /* BFD back-end for archive files (libraries).
2 Copyright 1990-2013 Free Software Foundation, Inc.
3 Written by Cygnus Support. Mostly Gumby Henkel-Wallace's fault.
4
5 This file is part of BFD, the Binary File Descriptor library.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */
20
21 /*
22 @setfilename archive-info
23 SECTION
24 Archives
25
26 DESCRIPTION
27 An archive (or library) is just another BFD. It has a symbol
28 table, although there's not much a user program will do with it.
29
30 The big difference between an archive BFD and an ordinary BFD
31 is that the archive doesn't have sections. Instead it has a
32 chain of BFDs that are considered its contents. These BFDs can
33 be manipulated like any other. The BFDs contained in an
34 archive opened for reading will all be opened for reading. You
35 may put either input or output BFDs into an archive opened for
36 output; they will be handled correctly when the archive is closed.
37
38 Use <<bfd_openr_next_archived_file>> to step through
39 the contents of an archive opened for input. You don't
40 have to read the entire archive if you don't want
41 to! Read it until you find what you want.
42
43 A BFD returned by <<bfd_openr_next_archived_file>> can be
44 closed manually with <<bfd_close>>. If you do not close it,
45 then a second iteration through the members of an archive may
46 return the same BFD. If you close the archive BFD, then all
47 the member BFDs will automatically be closed as well.
48
49 Archive contents of output BFDs are chained through the
50 <<archive_next>> pointer in a BFD. The first one is findable
51 through the <<archive_head>> slot of the archive. Set it with
52 <<bfd_set_archive_head>> (q.v.). A given BFD may be in only
53 one open output archive at a time.
54
55 As expected, the BFD archive code is more general than the
56 archive code of any given environment. BFD archives may
57 contain files of different formats (e.g., a.out and coff) and
58 even different architectures. You may even place archives
59 recursively into archives!
60
61 This can cause unexpected confusion, since some archive
62 formats are more expressive than others. For instance, Intel
63 COFF archives can preserve long filenames; SunOS a.out archives
64 cannot. If you move a file from the first to the second
65 format and back again, the filename may be truncated.
66 Likewise, different a.out environments have different
67 conventions as to how they truncate filenames, whether they
68 preserve directory names in filenames, etc. When
69 interoperating with native tools, be sure your files are
70 homogeneous.
71
72 Beware: most of these formats do not react well to the
73 presence of spaces in filenames. We do the best we can, but
74 can't always handle this case due to restrictions in the format of
75 archives. Many Unix utilities are braindead in regards to
76 spaces and such in filenames anyway, so this shouldn't be much
77 of a restriction.
78
79 Archives are supported in BFD in <<archive.c>>.
80
81 SUBSECTION
82 Archive functions
83 */
84
85 /* Assumes:
86 o - all archive elements start on an even boundary, newline padded;
87 o - all arch headers are char *;
88 o - all arch headers are the same size (across architectures).
89 */
90
91 /* Some formats provide a way to cram a long filename into the short
92 (16 chars) space provided by a BSD archive. The trick is: make a
93 special "file" in the front of the archive, sort of like the SYMDEF
94 entry. If the filename is too long to fit, put it in the extended
95 name table, and use its index as the filename. To prevent
96 confusion prepend the index with a space. This means you can't
97 have filenames that start with a space, but then again, many Unix
98 utilities can't handle that anyway.
99
100 This scheme unfortunately requires that you stand on your head in
101 order to write an archive since you need to put a magic file at the
102 front, and need to touch every entry to do so. C'est la vie.
103
104 We support two variants of this idea:
105 The SVR4 format (extended name table is named "//"),
106 and an extended pseudo-BSD variant (extended name table is named
107 "ARFILENAMES/"). The origin of the latter format is uncertain.
108
109 BSD 4.4 uses a third scheme: It writes a long filename
110 directly after the header. This allows 'ar q' to work.
111 */
112
113 /* Summary of archive member names:
114
115 Symbol table (must be first):
116 "__.SYMDEF " - Symbol table, Berkeley style, produced by ranlib.
117 "/ " - Symbol table, system 5 style.
118
119 Long name table (must be before regular file members):
120 "// " - Long name table, System 5 R4 style.
121 "ARFILENAMES/ " - Long name table, non-standard extended BSD (not BSD 4.4).
122
123 Regular file members with short names:
124 "filename.o/ " - Regular file, System 5 style (embedded spaces ok).
125 "filename.o " - Regular file, Berkeley style (no embedded spaces).
126
127 Regular files with long names (or embedded spaces, for BSD variants):
128 "/18 " - SVR4 style, name at offset 18 in name table.
129 "#1/23 " - Long name (or embedded spaces) 23 characters long,
130 BSD 4.4 style, full name follows header.
131 " 18 " - Long name 18 characters long, extended pseudo-BSD.
132 */
133
134 #include "sysdep.h"
135 #include "bfd.h"
136 #include "libiberty.h"
137 #include "libbfd.h"
138 #include "aout/ar.h"
139 #include "aout/ranlib.h"
140 #include "safe-ctype.h"
141 #include "hashtab.h"
142 #include "filenames.h"
143
144 #ifndef errno
145 extern int errno;
146 #endif
147
148 /* We keep a cache of archive filepointers to archive elements to
149 speed up searching the archive by filepos. We only add an entry to
150 the cache when we actually read one. We also don't sort the cache;
151 it's generally short enough to search linearly.
152 Note that the pointers here point to the front of the ar_hdr, not
153 to the front of the contents! */
154 struct ar_cache
155 {
156 file_ptr ptr;
157 bfd *arbfd;
158 };
159
160 #define ar_padchar(abfd) ((abfd)->xvec->ar_pad_char)
161 #define ar_maxnamelen(abfd) ((abfd)->xvec->ar_max_namelen)
162
163 #define arch_eltdata(bfd) ((struct areltdata *) ((bfd)->arelt_data))
164 #define arch_hdr(bfd) ((struct ar_hdr *) arch_eltdata (bfd)->arch_header)
165
166 /* True iff NAME designated a BSD 4.4 extended name. */
167
168 #define is_bsd44_extended_name(NAME) \
169 (NAME[0] == '#' && NAME[1] == '1' && NAME[2] == '/' && ISDIGIT (NAME[3]))
170 \f
171 void
172 _bfd_ar_spacepad (char *p, size_t n, const char *fmt, long val)
173 {
174 static char buf[20];
175 size_t len;
176
177 snprintf (buf, sizeof (buf), fmt, val);
178 len = strlen (buf);
179 if (len < n)
180 {
181 memcpy (p, buf, len);
182 memset (p + len, ' ', n - len);
183 }
184 else
185 memcpy (p, buf, n);
186 }
187
188 bfd_boolean
189 _bfd_ar_sizepad (char *p, size_t n, bfd_size_type size)
190 {
191 static char buf[21];
192 size_t len;
193
194 snprintf (buf, sizeof (buf), "%-10" BFD_VMA_FMT "u", size);
195 len = strlen (buf);
196 if (len > n)
197 {
198 bfd_set_error (bfd_error_file_too_big);
199 return FALSE;
200 }
201 if (len < n)
202 {
203 memcpy (p, buf, len);
204 memset (p + len, ' ', n - len);
205 }
206 else
207 memcpy (p, buf, n);
208 return TRUE;
209 }
210 \f
211 bfd_boolean
212 _bfd_generic_mkarchive (bfd *abfd)
213 {
214 bfd_size_type amt = sizeof (struct artdata);
215
216 abfd->tdata.aout_ar_data = (struct artdata *) bfd_zalloc (abfd, amt);
217 if (bfd_ardata (abfd) == NULL)
218 return FALSE;
219
220 /* Already cleared by bfd_zalloc above.
221 bfd_ardata (abfd)->cache = NULL;
222 bfd_ardata (abfd)->archive_head = NULL;
223 bfd_ardata (abfd)->symdefs = NULL;
224 bfd_ardata (abfd)->extended_names = NULL;
225 bfd_ardata (abfd)->extended_names_size = 0;
226 bfd_ardata (abfd)->tdata = NULL; */
227
228 return TRUE;
229 }
230
231 /*
232 FUNCTION
233 bfd_get_next_mapent
234
235 SYNOPSIS
236 symindex bfd_get_next_mapent
237 (bfd *abfd, symindex previous, carsym **sym);
238
239 DESCRIPTION
240 Step through archive @var{abfd}'s symbol table (if it
241 has one). Successively update @var{sym} with the next symbol's
242 information, returning that symbol's (internal) index into the
243 symbol table.
244
245 Supply <<BFD_NO_MORE_SYMBOLS>> as the @var{previous} entry to get
246 the first one; returns <<BFD_NO_MORE_SYMBOLS>> when you've already
247 got the last one.
248
249 A <<carsym>> is a canonical archive symbol. The only
250 user-visible element is its name, a null-terminated string.
251 */
252
253 symindex
254 bfd_get_next_mapent (bfd *abfd, symindex prev, carsym **entry)
255 {
256 if (!bfd_has_map (abfd))
257 {
258 bfd_set_error (bfd_error_invalid_operation);
259 return BFD_NO_MORE_SYMBOLS;
260 }
261
262 if (prev == BFD_NO_MORE_SYMBOLS)
263 prev = 0;
264 else
265 ++prev;
266 if (prev >= bfd_ardata (abfd)->symdef_count)
267 return BFD_NO_MORE_SYMBOLS;
268
269 *entry = (bfd_ardata (abfd)->symdefs + prev);
270 return prev;
271 }
272
273 /* To be called by backends only. */
274
275 bfd *
276 _bfd_create_empty_archive_element_shell (bfd *obfd)
277 {
278 return _bfd_new_bfd_contained_in (obfd);
279 }
280
281 /*
282 FUNCTION
283 bfd_set_archive_head
284
285 SYNOPSIS
286 bfd_boolean bfd_set_archive_head (bfd *output, bfd *new_head);
287
288 DESCRIPTION
289 Set the head of the chain of
290 BFDs contained in the archive @var{output} to @var{new_head}.
291 */
292
293 bfd_boolean
294 bfd_set_archive_head (bfd *output_archive, bfd *new_head)
295 {
296 output_archive->archive_head = new_head;
297 return TRUE;
298 }
299
300 bfd *
301 _bfd_look_for_bfd_in_cache (bfd *arch_bfd, file_ptr filepos)
302 {
303 htab_t hash_table = bfd_ardata (arch_bfd)->cache;
304 struct ar_cache m;
305
306 m.ptr = filepos;
307
308 if (hash_table)
309 {
310 struct ar_cache *entry = (struct ar_cache *) htab_find (hash_table, &m);
311 if (!entry)
312 return NULL;
313 else
314 return entry->arbfd;
315 }
316 else
317 return NULL;
318 }
319
320 static hashval_t
321 hash_file_ptr (const void * p)
322 {
323 return (hashval_t) (((struct ar_cache *) p)->ptr);
324 }
325
326 /* Returns non-zero if P1 and P2 are equal. */
327
328 static int
329 eq_file_ptr (const void * p1, const void * p2)
330 {
331 struct ar_cache *arc1 = (struct ar_cache *) p1;
332 struct ar_cache *arc2 = (struct ar_cache *) p2;
333 return arc1->ptr == arc2->ptr;
334 }
335
336 /* The calloc function doesn't always take size_t (e.g. on VMS)
337 so wrap it to avoid a compile time warning. */
338
339 static void *
340 _bfd_calloc_wrapper (size_t a, size_t b)
341 {
342 return calloc (a, b);
343 }
344
345 /* Kind of stupid to call cons for each one, but we don't do too many. */
346
347 bfd_boolean
348 _bfd_add_bfd_to_archive_cache (bfd *arch_bfd, file_ptr filepos, bfd *new_elt)
349 {
350 struct ar_cache *cache;
351 htab_t hash_table = bfd_ardata (arch_bfd)->cache;
352
353 /* If the hash table hasn't been created, create it. */
354 if (hash_table == NULL)
355 {
356 hash_table = htab_create_alloc (16, hash_file_ptr, eq_file_ptr,
357 NULL, _bfd_calloc_wrapper, free);
358 if (hash_table == NULL)
359 return FALSE;
360 bfd_ardata (arch_bfd)->cache = hash_table;
361 }
362
363 /* Insert new_elt into the hash table by filepos. */
364 cache = (struct ar_cache *) bfd_zalloc (arch_bfd, sizeof (struct ar_cache));
365 cache->ptr = filepos;
366 cache->arbfd = new_elt;
367 *htab_find_slot (hash_table, (const void *) cache, INSERT) = cache;
368
369 /* Provide a means of accessing this from child. */
370 arch_eltdata (new_elt)->parent_cache = hash_table;
371 arch_eltdata (new_elt)->key = filepos;
372
373 return TRUE;
374 }
375 \f
376 static bfd *
377 _bfd_find_nested_archive (bfd *arch_bfd, const char *filename)
378 {
379 bfd *abfd;
380 const char *target;
381
382 for (abfd = arch_bfd->nested_archives;
383 abfd != NULL;
384 abfd = abfd->archive_next)
385 {
386 if (filename_cmp (filename, abfd->filename) == 0)
387 return abfd;
388 }
389 target = NULL;
390 if (!arch_bfd->target_defaulted)
391 target = arch_bfd->xvec->name;
392 abfd = bfd_openr (filename, target);
393 if (abfd)
394 {
395 abfd->archive_next = arch_bfd->nested_archives;
396 arch_bfd->nested_archives = abfd;
397 }
398 return abfd;
399 }
400
401 /* The name begins with space. Hence the rest of the name is an index into
402 the string table. */
403
404 static char *
405 get_extended_arelt_filename (bfd *arch, const char *name, file_ptr *originp)
406 {
407 unsigned long table_index = 0;
408 const char *endp;
409
410 /* Should extract string so that I can guarantee not to overflow into
411 the next region, but I'm too lazy. */
412 errno = 0;
413 /* Skip first char, which is '/' in SVR4 or ' ' in some other variants. */
414 table_index = strtol (name + 1, (char **) &endp, 10);
415 if (errno != 0 || table_index >= bfd_ardata (arch)->extended_names_size)
416 {
417 bfd_set_error (bfd_error_malformed_archive);
418 return NULL;
419 }
420 /* In a thin archive, a member of an archive-within-an-archive
421 will have the offset in the inner archive encoded here. */
422 if (bfd_is_thin_archive (arch) && endp != NULL && *endp == ':')
423 {
424 file_ptr origin = strtol (endp + 1, NULL, 10);
425
426 if (errno != 0)
427 {
428 bfd_set_error (bfd_error_malformed_archive);
429 return NULL;
430 }
431 *originp = origin;
432 }
433 else
434 *originp = 0;
435
436 return bfd_ardata (arch)->extended_names + table_index;
437 }
438
439 /* This functions reads an arch header and returns an areltdata pointer, or
440 NULL on error.
441
442 Presumes the file pointer is already in the right place (ie pointing
443 to the ar_hdr in the file). Moves the file pointer; on success it
444 should be pointing to the front of the file contents; on failure it
445 could have been moved arbitrarily. */
446
447 void *
448 _bfd_generic_read_ar_hdr (bfd *abfd)
449 {
450 return _bfd_generic_read_ar_hdr_mag (abfd, NULL);
451 }
452
453 /* Alpha ECOFF uses an optional different ARFMAG value, so we have a
454 variant of _bfd_generic_read_ar_hdr which accepts a magic string. */
455
456 void *
457 _bfd_generic_read_ar_hdr_mag (bfd *abfd, const char *mag)
458 {
459 struct ar_hdr hdr;
460 char *hdrp = (char *) &hdr;
461 bfd_size_type parsed_size;
462 struct areltdata *ared;
463 char *filename = NULL;
464 bfd_size_type namelen = 0;
465 bfd_size_type allocsize = sizeof (struct areltdata) + sizeof (struct ar_hdr);
466 char *allocptr = 0;
467 file_ptr origin = 0;
468 unsigned int extra_size = 0;
469 char fmag_save;
470 int scan;
471
472 if (bfd_bread (hdrp, sizeof (struct ar_hdr), abfd) != sizeof (struct ar_hdr))
473 {
474 if (bfd_get_error () != bfd_error_system_call)
475 bfd_set_error (bfd_error_no_more_archived_files);
476 return NULL;
477 }
478 if (strncmp (hdr.ar_fmag, ARFMAG, 2) != 0
479 && (mag == NULL
480 || strncmp (hdr.ar_fmag, mag, 2) != 0))
481 {
482 bfd_set_error (bfd_error_malformed_archive);
483 return NULL;
484 }
485
486 errno = 0;
487 fmag_save = hdr.ar_fmag[0];
488 hdr.ar_fmag[0] = 0;
489 scan = sscanf (hdr.ar_size, "%" BFD_VMA_FMT "u", &parsed_size);
490 hdr.ar_fmag[0] = fmag_save;
491 if (scan != 1)
492 {
493 bfd_set_error (bfd_error_malformed_archive);
494 return NULL;
495 }
496
497 /* Extract the filename from the archive - there are two ways to
498 specify an extended name table, either the first char of the
499 name is a space, or it's a slash. */
500 if ((hdr.ar_name[0] == '/'
501 || (hdr.ar_name[0] == ' '
502 && memchr (hdr.ar_name, '/', ar_maxnamelen (abfd)) == NULL))
503 && bfd_ardata (abfd)->extended_names != NULL)
504 {
505 filename = get_extended_arelt_filename (abfd, hdr.ar_name, &origin);
506 if (filename == NULL)
507 return NULL;
508 }
509 /* BSD4.4-style long filename. */
510 else if (is_bsd44_extended_name (hdr.ar_name))
511 {
512 /* BSD-4.4 extended name */
513 namelen = atoi (&hdr.ar_name[3]);
514 allocsize += namelen + 1;
515 parsed_size -= namelen;
516 extra_size = namelen;
517
518 allocptr = (char *) bfd_zmalloc (allocsize);
519 if (allocptr == NULL)
520 return NULL;
521 filename = (allocptr
522 + sizeof (struct areltdata)
523 + sizeof (struct ar_hdr));
524 if (bfd_bread (filename, namelen, abfd) != namelen)
525 {
526 free (allocptr);
527 if (bfd_get_error () != bfd_error_system_call)
528 bfd_set_error (bfd_error_no_more_archived_files);
529 return NULL;
530 }
531 filename[namelen] = '\0';
532 }
533 else
534 {
535 /* We judge the end of the name by looking for '/' or ' '.
536 Note: The SYSV format (terminated by '/') allows embedded
537 spaces, so only look for ' ' if we don't find '/'. */
538
539 char *e;
540 e = (char *) memchr (hdr.ar_name, '\0', ar_maxnamelen (abfd));
541 if (e == NULL)
542 {
543 e = (char *) memchr (hdr.ar_name, '/', ar_maxnamelen (abfd));
544 if (e == NULL)
545 e = (char *) memchr (hdr.ar_name, ' ', ar_maxnamelen (abfd));
546 }
547
548 if (e != NULL)
549 namelen = e - hdr.ar_name;
550 else
551 {
552 /* If we didn't find a termination character, then the name
553 must be the entire field. */
554 namelen = ar_maxnamelen (abfd);
555 }
556
557 allocsize += namelen + 1;
558 }
559
560 if (!allocptr)
561 {
562 allocptr = (char *) bfd_zmalloc (allocsize);
563 if (allocptr == NULL)
564 return NULL;
565 }
566
567 ared = (struct areltdata *) allocptr;
568
569 ared->arch_header = allocptr + sizeof (struct areltdata);
570 memcpy (ared->arch_header, &hdr, sizeof (struct ar_hdr));
571 ared->parsed_size = parsed_size;
572 ared->extra_size = extra_size;
573 ared->origin = origin;
574
575 if (filename != NULL)
576 ared->filename = filename;
577 else
578 {
579 ared->filename = allocptr + (sizeof (struct areltdata) +
580 sizeof (struct ar_hdr));
581 if (namelen)
582 memcpy (ared->filename, hdr.ar_name, namelen);
583 ared->filename[namelen] = '\0';
584 }
585
586 return ared;
587 }
588 \f
589 /* Append the relative pathname for a member of the thin archive
590 to the pathname of the directory containing the archive. */
591
592 char *
593 _bfd_append_relative_path (bfd *arch, char *elt_name)
594 {
595 const char *arch_name = arch->filename;
596 const char *base_name = lbasename (arch_name);
597 size_t prefix_len;
598 char *filename;
599
600 if (base_name == arch_name)
601 return elt_name;
602
603 prefix_len = base_name - arch_name;
604 filename = (char *) bfd_alloc (arch, prefix_len + strlen (elt_name) + 1);
605 if (filename == NULL)
606 return NULL;
607
608 strncpy (filename, arch_name, prefix_len);
609 strcpy (filename + prefix_len, elt_name);
610 return filename;
611 }
612
613 /* This is an internal function; it's mainly used when indexing
614 through the archive symbol table, but also used to get the next
615 element, since it handles the bookkeeping so nicely for us. */
616
617 bfd *
618 _bfd_get_elt_at_filepos (bfd *archive, file_ptr filepos)
619 {
620 static file_ptr prev_filepos;
621 static unsigned int dup_filepos_count = 0;
622 struct areltdata *new_areldata;
623 bfd *n_nfd;
624 char *filename;
625
626 n_nfd = _bfd_look_for_bfd_in_cache (archive, filepos);
627 if (n_nfd)
628 return n_nfd;
629 /* PR15140: Prevent an infinite recursion scanning a malformed nested archive. */
630 if (filepos == prev_filepos)
631 {
632 if (++ dup_filepos_count > 100)
633 {
634 bfd_set_error (bfd_error_malformed_archive);
635 return NULL;
636 }
637 }
638 else
639 dup_filepos_count = 0;
640
641 if (0 > bfd_seek (archive, filepos, SEEK_SET))
642 return NULL;
643
644 if ((new_areldata = (struct areltdata *) _bfd_read_ar_hdr (archive)) == NULL)
645 return NULL;
646
647 filename = new_areldata->filename;
648 prev_filepos = filepos;
649
650 if (bfd_is_thin_archive (archive))
651 {
652 const char *target;
653
654 /* This is a proxy entry for an external file. */
655 if (! IS_ABSOLUTE_PATH (filename))
656 {
657 filename = _bfd_append_relative_path (archive, filename);
658 if (filename == NULL)
659 {
660 free (new_areldata);
661 return NULL;
662 }
663 }
664
665 if (new_areldata->origin > 0)
666 {
667 /* This proxy entry refers to an element of a nested archive.
668 Locate the member of that archive and return a bfd for it. */
669 bfd *ext_arch = _bfd_find_nested_archive (archive, filename);
670
671 if (ext_arch == NULL
672 || ! bfd_check_format (ext_arch, bfd_archive))
673 {
674 free (new_areldata);
675 return NULL;
676 }
677 n_nfd = _bfd_get_elt_at_filepos (ext_arch, new_areldata->origin);
678 if (n_nfd == NULL)
679 {
680 free (new_areldata);
681 return NULL;
682 }
683 n_nfd->proxy_origin = bfd_tell (archive);
684 return n_nfd;
685 }
686 /* It's not an element of a nested archive;
687 open the external file as a bfd. */
688 target = NULL;
689 if (!archive->target_defaulted)
690 target = archive->xvec->name;
691 n_nfd = bfd_openr (filename, target);
692 if (n_nfd == NULL)
693 bfd_set_error (bfd_error_malformed_archive);
694 }
695 else
696 {
697 n_nfd = _bfd_create_empty_archive_element_shell (archive);
698 }
699
700 if (n_nfd == NULL)
701 {
702 free (new_areldata);
703 return NULL;
704 }
705
706 n_nfd->proxy_origin = bfd_tell (archive);
707
708 if (bfd_is_thin_archive (archive))
709 {
710 n_nfd->origin = 0;
711 }
712 else
713 {
714 n_nfd->origin = n_nfd->proxy_origin;
715 n_nfd->filename = filename;
716 }
717
718 n_nfd->arelt_data = new_areldata;
719
720 /* Copy BFD_COMPRESS and BFD_DECOMPRESS flags. */
721 n_nfd->flags |= archive->flags & (BFD_COMPRESS | BFD_DECOMPRESS);
722
723 if (_bfd_add_bfd_to_archive_cache (archive, filepos, n_nfd))
724 return n_nfd;
725
726 free (new_areldata);
727 n_nfd->arelt_data = NULL;
728 return NULL;
729 }
730
731 /* Return the BFD which is referenced by the symbol in ABFD indexed by
732 SYM_INDEX. SYM_INDEX should have been returned by bfd_get_next_mapent. */
733
734 bfd *
735 _bfd_generic_get_elt_at_index (bfd *abfd, symindex sym_index)
736 {
737 carsym *entry;
738
739 entry = bfd_ardata (abfd)->symdefs + sym_index;
740 return _bfd_get_elt_at_filepos (abfd, entry->file_offset);
741 }
742
743 /*
744 FUNCTION
745 bfd_openr_next_archived_file
746
747 SYNOPSIS
748 bfd *bfd_openr_next_archived_file (bfd *archive, bfd *previous);
749
750 DESCRIPTION
751 Provided a BFD, @var{archive}, containing an archive and NULL, open
752 an input BFD on the first contained element and returns that.
753 Subsequent calls should pass
754 the archive and the previous return value to return a created
755 BFD to the next contained element. NULL is returned when there
756 are no more.
757 */
758
759 bfd *
760 bfd_openr_next_archived_file (bfd *archive, bfd *last_file)
761 {
762 if ((bfd_get_format (archive) != bfd_archive)
763 || (archive->direction == write_direction))
764 {
765 bfd_set_error (bfd_error_invalid_operation);
766 return NULL;
767 }
768
769 return BFD_SEND (archive,
770 openr_next_archived_file, (archive, last_file));
771 }
772
773 bfd *
774 bfd_generic_openr_next_archived_file (bfd *archive, bfd *last_file)
775 {
776 file_ptr filestart;
777
778 if (!last_file)
779 filestart = bfd_ardata (archive)->first_file_filepos;
780 else
781 {
782 bfd_size_type size = arelt_size (last_file);
783
784 filestart = last_file->proxy_origin;
785 if (! bfd_is_thin_archive (archive))
786 filestart += size;
787 /* Pad to an even boundary...
788 Note that last_file->origin can be odd in the case of
789 BSD-4.4-style element with a long odd size. */
790 filestart += filestart % 2;
791 }
792
793 return _bfd_get_elt_at_filepos (archive, filestart);
794 }
795
796 const bfd_target *
797 bfd_generic_archive_p (bfd *abfd)
798 {
799 struct artdata *tdata_hold;
800 char armag[SARMAG + 1];
801 bfd_size_type amt;
802
803 if (bfd_bread (armag, SARMAG, abfd) != SARMAG)
804 {
805 if (bfd_get_error () != bfd_error_system_call)
806 bfd_set_error (bfd_error_wrong_format);
807 return NULL;
808 }
809
810 bfd_is_thin_archive (abfd) = (strncmp (armag, ARMAGT, SARMAG) == 0);
811
812 if (strncmp (armag, ARMAG, SARMAG) != 0
813 && strncmp (armag, ARMAGB, SARMAG) != 0
814 && ! bfd_is_thin_archive (abfd))
815 return NULL;
816
817 tdata_hold = bfd_ardata (abfd);
818
819 amt = sizeof (struct artdata);
820 bfd_ardata (abfd) = (struct artdata *) bfd_zalloc (abfd, amt);
821 if (bfd_ardata (abfd) == NULL)
822 {
823 bfd_ardata (abfd) = tdata_hold;
824 return NULL;
825 }
826
827 bfd_ardata (abfd)->first_file_filepos = SARMAG;
828 /* Cleared by bfd_zalloc above.
829 bfd_ardata (abfd)->cache = NULL;
830 bfd_ardata (abfd)->archive_head = NULL;
831 bfd_ardata (abfd)->symdefs = NULL;
832 bfd_ardata (abfd)->extended_names = NULL;
833 bfd_ardata (abfd)->extended_names_size = 0;
834 bfd_ardata (abfd)->tdata = NULL; */
835
836 if (!BFD_SEND (abfd, _bfd_slurp_armap, (abfd))
837 || !BFD_SEND (abfd, _bfd_slurp_extended_name_table, (abfd)))
838 {
839 if (bfd_get_error () != bfd_error_system_call)
840 bfd_set_error (bfd_error_wrong_format);
841 bfd_release (abfd, bfd_ardata (abfd));
842 bfd_ardata (abfd) = tdata_hold;
843 return NULL;
844 }
845
846 if (abfd->target_defaulted && bfd_has_map (abfd))
847 {
848 bfd *first;
849
850 /* This archive has a map, so we may presume that the contents
851 are object files. Make sure that if the first file in the
852 archive can be recognized as an object file, it is for this
853 target. If not, assume that this is the wrong format. If
854 the first file is not an object file, somebody is doing
855 something weird, and we permit it so that ar -t will work.
856
857 This is done because any normal format will recognize any
858 normal archive, regardless of the format of the object files.
859 We do accept an empty archive. */
860
861 first = bfd_openr_next_archived_file (abfd, NULL);
862 if (first != NULL)
863 {
864 first->target_defaulted = FALSE;
865 if (bfd_check_format (first, bfd_object)
866 && first->xvec != abfd->xvec)
867 bfd_set_error (bfd_error_wrong_object_format);
868 /* And we ought to close `first' here too. */
869 }
870 }
871
872 return abfd->xvec;
873 }
874
875 /* Some constants for a 32 bit BSD archive structure. We do not
876 support 64 bit archives presently; so far as I know, none actually
877 exist. Supporting them would require changing these constants, and
878 changing some H_GET_32 to H_GET_64. */
879
880 /* The size of an external symdef structure. */
881 #define BSD_SYMDEF_SIZE 8
882
883 /* The offset from the start of a symdef structure to the file offset. */
884 #define BSD_SYMDEF_OFFSET_SIZE 4
885
886 /* The size of the symdef count. */
887 #define BSD_SYMDEF_COUNT_SIZE 4
888
889 /* The size of the string count. */
890 #define BSD_STRING_COUNT_SIZE 4
891
892 /* Read a BSD-style archive symbol table. Returns FALSE on error,
893 TRUE otherwise. */
894
895 static bfd_boolean
896 do_slurp_bsd_armap (bfd *abfd)
897 {
898 struct areltdata *mapdata;
899 unsigned int counter;
900 bfd_byte *raw_armap, *rbase;
901 struct artdata *ardata = bfd_ardata (abfd);
902 char *stringbase;
903 bfd_size_type parsed_size, amt;
904 carsym *set;
905
906 mapdata = (struct areltdata *) _bfd_read_ar_hdr (abfd);
907 if (mapdata == NULL)
908 return FALSE;
909 parsed_size = mapdata->parsed_size;
910 free (mapdata);
911
912 raw_armap = (bfd_byte *) bfd_zalloc (abfd, parsed_size);
913 if (raw_armap == NULL)
914 return FALSE;
915
916 if (bfd_bread (raw_armap, parsed_size, abfd) != parsed_size)
917 {
918 if (bfd_get_error () != bfd_error_system_call)
919 bfd_set_error (bfd_error_malformed_archive);
920 byebye:
921 bfd_release (abfd, raw_armap);
922 return FALSE;
923 }
924
925 ardata->symdef_count = H_GET_32 (abfd, raw_armap) / BSD_SYMDEF_SIZE;
926
927 if (ardata->symdef_count * BSD_SYMDEF_SIZE >
928 parsed_size - BSD_SYMDEF_COUNT_SIZE)
929 {
930 /* Probably we're using the wrong byte ordering. */
931 bfd_set_error (bfd_error_wrong_format);
932 goto byebye;
933 }
934
935 ardata->cache = 0;
936 rbase = raw_armap + BSD_SYMDEF_COUNT_SIZE;
937 stringbase = ((char *) rbase
938 + ardata->symdef_count * BSD_SYMDEF_SIZE
939 + BSD_STRING_COUNT_SIZE);
940 amt = ardata->symdef_count * sizeof (carsym);
941 ardata->symdefs = (struct carsym *) bfd_alloc (abfd, amt);
942 if (!ardata->symdefs)
943 return FALSE;
944
945 for (counter = 0, set = ardata->symdefs;
946 counter < ardata->symdef_count;
947 counter++, set++, rbase += BSD_SYMDEF_SIZE)
948 {
949 set->name = H_GET_32 (abfd, rbase) + stringbase;
950 set->file_offset = H_GET_32 (abfd, rbase + BSD_SYMDEF_OFFSET_SIZE);
951 }
952
953 ardata->first_file_filepos = bfd_tell (abfd);
954 /* Pad to an even boundary if you have to. */
955 ardata->first_file_filepos += (ardata->first_file_filepos) % 2;
956 /* FIXME, we should provide some way to free raw_ardata when
957 we are done using the strings from it. For now, it seems
958 to be allocated on an objalloc anyway... */
959 bfd_has_map (abfd) = TRUE;
960 return TRUE;
961 }
962
963 /* Read a COFF archive symbol table. Returns FALSE on error, TRUE
964 otherwise. */
965
966 static bfd_boolean
967 do_slurp_coff_armap (bfd *abfd)
968 {
969 struct areltdata *mapdata;
970 int *raw_armap, *rawptr;
971 struct artdata *ardata = bfd_ardata (abfd);
972 char *stringbase;
973 bfd_size_type stringsize;
974 bfd_size_type parsed_size;
975 carsym *carsyms;
976 bfd_size_type nsymz; /* Number of symbols in armap. */
977 bfd_vma (*swap) (const void *);
978 char int_buf[sizeof (long)];
979 bfd_size_type carsym_size, ptrsize;
980 unsigned int i;
981
982 mapdata = (struct areltdata *) _bfd_read_ar_hdr (abfd);
983 if (mapdata == NULL)
984 return FALSE;
985 parsed_size = mapdata->parsed_size;
986 free (mapdata);
987
988 if (bfd_bread (int_buf, 4, abfd) != 4)
989 {
990 if (bfd_get_error () != bfd_error_system_call)
991 bfd_set_error (bfd_error_malformed_archive);
992 return FALSE;
993 }
994 /* It seems that all numeric information in a coff archive is always
995 in big endian format, nomatter the host or target. */
996 swap = bfd_getb32;
997 nsymz = bfd_getb32 (int_buf);
998 stringsize = parsed_size - (4 * nsymz) - 4;
999
1000 /* ... except that some archive formats are broken, and it may be our
1001 fault - the i960 little endian coff sometimes has big and sometimes
1002 little, because our tools changed. Here's a horrible hack to clean
1003 up the crap. */
1004
1005 if (stringsize > 0xfffff
1006 && bfd_get_arch (abfd) == bfd_arch_i960
1007 && bfd_get_flavour (abfd) == bfd_target_coff_flavour)
1008 {
1009 /* This looks dangerous, let's do it the other way around. */
1010 nsymz = bfd_getl32 (int_buf);
1011 stringsize = parsed_size - (4 * nsymz) - 4;
1012 swap = bfd_getl32;
1013 }
1014
1015 /* The coff armap must be read sequentially. So we construct a
1016 bsd-style one in core all at once, for simplicity. */
1017
1018 if (nsymz > ~ (bfd_size_type) 0 / sizeof (carsym))
1019 return FALSE;
1020
1021 carsym_size = (nsymz * sizeof (carsym));
1022 ptrsize = (4 * nsymz);
1023
1024 if (carsym_size + stringsize + 1 <= carsym_size)
1025 return FALSE;
1026
1027 ardata->symdefs = (struct carsym *) bfd_zalloc (abfd,
1028 carsym_size + stringsize + 1);
1029 if (ardata->symdefs == NULL)
1030 return FALSE;
1031 carsyms = ardata->symdefs;
1032 stringbase = ((char *) ardata->symdefs) + carsym_size;
1033
1034 /* Allocate and read in the raw offsets. */
1035 raw_armap = (int *) bfd_alloc (abfd, ptrsize);
1036 if (raw_armap == NULL)
1037 goto release_symdefs;
1038 if (bfd_bread (raw_armap, ptrsize, abfd) != ptrsize
1039 || (bfd_bread (stringbase, stringsize, abfd) != stringsize))
1040 {
1041 if (bfd_get_error () != bfd_error_system_call)
1042 bfd_set_error (bfd_error_malformed_archive);
1043 goto release_raw_armap;
1044 }
1045
1046 /* OK, build the carsyms. */
1047 for (i = 0; i < nsymz; i++)
1048 {
1049 rawptr = raw_armap + i;
1050 carsyms->file_offset = swap ((bfd_byte *) rawptr);
1051 carsyms->name = stringbase;
1052 stringbase += strlen (stringbase) + 1;
1053 carsyms++;
1054 }
1055 *stringbase = 0;
1056
1057 ardata->symdef_count = nsymz;
1058 ardata->first_file_filepos = bfd_tell (abfd);
1059 /* Pad to an even boundary if you have to. */
1060 ardata->first_file_filepos += (ardata->first_file_filepos) % 2;
1061
1062 bfd_has_map (abfd) = TRUE;
1063 bfd_release (abfd, raw_armap);
1064
1065 /* Check for a second archive header (as used by PE). */
1066 {
1067 struct areltdata *tmp;
1068
1069 bfd_seek (abfd, ardata->first_file_filepos, SEEK_SET);
1070 tmp = (struct areltdata *) _bfd_read_ar_hdr (abfd);
1071 if (tmp != NULL)
1072 {
1073 if (tmp->arch_header[0] == '/'
1074 && tmp->arch_header[1] == ' ')
1075 {
1076 ardata->first_file_filepos +=
1077 (tmp->parsed_size + sizeof (struct ar_hdr) + 1) & ~(unsigned) 1;
1078 }
1079 free (tmp);
1080 }
1081 }
1082
1083 return TRUE;
1084
1085 release_raw_armap:
1086 bfd_release (abfd, raw_armap);
1087 release_symdefs:
1088 bfd_release (abfd, (ardata)->symdefs);
1089 return FALSE;
1090 }
1091
1092 /* This routine can handle either coff-style or bsd-style armaps
1093 (archive symbol table). Returns FALSE on error, TRUE otherwise */
1094
1095 bfd_boolean
1096 bfd_slurp_armap (bfd *abfd)
1097 {
1098 char nextname[17];
1099 int i = bfd_bread (nextname, 16, abfd);
1100
1101 if (i == 0)
1102 return TRUE;
1103 if (i != 16)
1104 return FALSE;
1105
1106 if (bfd_seek (abfd, (file_ptr) -16, SEEK_CUR) != 0)
1107 return FALSE;
1108
1109 if (CONST_STRNEQ (nextname, "__.SYMDEF ")
1110 || CONST_STRNEQ (nextname, "__.SYMDEF/ ")) /* Old Linux archives. */
1111 return do_slurp_bsd_armap (abfd);
1112 else if (CONST_STRNEQ (nextname, "/ "))
1113 return do_slurp_coff_armap (abfd);
1114 else if (CONST_STRNEQ (nextname, "/SYM64/ "))
1115 {
1116 /* 64bit ELF (Irix 6) archive. */
1117 #ifdef BFD64
1118 extern bfd_boolean bfd_elf64_archive_slurp_armap (bfd *);
1119 return bfd_elf64_archive_slurp_armap (abfd);
1120 #else
1121 bfd_set_error (bfd_error_wrong_format);
1122 return FALSE;
1123 #endif
1124 }
1125 else if (CONST_STRNEQ (nextname, "#1/20 "))
1126 {
1127 /* Mach-O has a special name for armap when the map is sorted by name.
1128 However because this name has a space it is slightly more difficult
1129 to check it. */
1130 struct ar_hdr hdr;
1131 char extname[21];
1132
1133 if (bfd_bread (&hdr, sizeof (hdr), abfd) != sizeof (hdr))
1134 return FALSE;
1135 /* Read the extended name. We know its length. */
1136 if (bfd_bread (extname, 20, abfd) != 20)
1137 return FALSE;
1138 if (bfd_seek (abfd, -(file_ptr) (sizeof (hdr) + 20), SEEK_CUR) != 0)
1139 return FALSE;
1140 if (CONST_STRNEQ (extname, "__.SYMDEF SORTED")
1141 || CONST_STRNEQ (extname, "__.SYMDEF"))
1142 return do_slurp_bsd_armap (abfd);
1143 }
1144
1145 bfd_has_map (abfd) = FALSE;
1146 return TRUE;
1147 }
1148 \f
1149 /* Returns FALSE on error, TRUE otherwise. */
1150 /* Flavor 2 of a bsd armap, similar to bfd_slurp_bsd_armap except the
1151 header is in a slightly different order and the map name is '/'.
1152 This flavour is used by hp300hpux. */
1153
1154 #define HPUX_SYMDEF_COUNT_SIZE 2
1155
1156 bfd_boolean
1157 bfd_slurp_bsd_armap_f2 (bfd *abfd)
1158 {
1159 struct areltdata *mapdata;
1160 char nextname[17];
1161 unsigned int counter;
1162 bfd_byte *raw_armap, *rbase;
1163 struct artdata *ardata = bfd_ardata (abfd);
1164 char *stringbase;
1165 unsigned int stringsize;
1166 unsigned int left;
1167 bfd_size_type amt;
1168 carsym *set;
1169 int i = bfd_bread (nextname, 16, abfd);
1170
1171 if (i == 0)
1172 return TRUE;
1173 if (i != 16)
1174 return FALSE;
1175
1176 /* The archive has at least 16 bytes in it. */
1177 if (bfd_seek (abfd, (file_ptr) -16, SEEK_CUR) != 0)
1178 return FALSE;
1179
1180 if (CONST_STRNEQ (nextname, "__.SYMDEF ")
1181 || CONST_STRNEQ (nextname, "__.SYMDEF/ ")) /* Old Linux archives. */
1182 return do_slurp_bsd_armap (abfd);
1183
1184 if (! CONST_STRNEQ (nextname, "/ "))
1185 {
1186 bfd_has_map (abfd) = FALSE;
1187 return TRUE;
1188 }
1189
1190 mapdata = (struct areltdata *) _bfd_read_ar_hdr (abfd);
1191 if (mapdata == NULL)
1192 return FALSE;
1193
1194 if (mapdata->parsed_size < HPUX_SYMDEF_COUNT_SIZE + BSD_STRING_COUNT_SIZE)
1195 {
1196 free (mapdata);
1197 wrong_format:
1198 bfd_set_error (bfd_error_wrong_format);
1199 byebye:
1200 return FALSE;
1201 }
1202 left = mapdata->parsed_size - HPUX_SYMDEF_COUNT_SIZE - BSD_STRING_COUNT_SIZE;
1203
1204 amt = mapdata->parsed_size;
1205 free (mapdata);
1206
1207 raw_armap = (bfd_byte *) bfd_zalloc (abfd, amt);
1208 if (raw_armap == NULL)
1209 goto byebye;
1210
1211 if (bfd_bread (raw_armap, amt, abfd) != amt)
1212 {
1213 if (bfd_get_error () != bfd_error_system_call)
1214 bfd_set_error (bfd_error_malformed_archive);
1215 goto byebye;
1216 }
1217
1218 ardata->symdef_count = H_GET_16 (abfd, raw_armap);
1219
1220 ardata->cache = 0;
1221
1222 stringsize = H_GET_32 (abfd, raw_armap + HPUX_SYMDEF_COUNT_SIZE);
1223 if (stringsize > left)
1224 goto wrong_format;
1225 left -= stringsize;
1226
1227 /* Skip sym count and string sz. */
1228 stringbase = ((char *) raw_armap
1229 + HPUX_SYMDEF_COUNT_SIZE
1230 + BSD_STRING_COUNT_SIZE);
1231 rbase = (bfd_byte *) stringbase + stringsize;
1232 amt = ardata->symdef_count * BSD_SYMDEF_SIZE;
1233 if (amt > left)
1234 goto wrong_format;
1235
1236 ardata->symdefs = (struct carsym *) bfd_alloc (abfd, amt);
1237 if (!ardata->symdefs)
1238 return FALSE;
1239
1240 for (counter = 0, set = ardata->symdefs;
1241 counter < ardata->symdef_count;
1242 counter++, set++, rbase += BSD_SYMDEF_SIZE)
1243 {
1244 set->name = H_GET_32 (abfd, rbase) + stringbase;
1245 set->file_offset = H_GET_32 (abfd, rbase + BSD_SYMDEF_OFFSET_SIZE);
1246 }
1247
1248 ardata->first_file_filepos = bfd_tell (abfd);
1249 /* Pad to an even boundary if you have to. */
1250 ardata->first_file_filepos += (ardata->first_file_filepos) % 2;
1251 /* FIXME, we should provide some way to free raw_ardata when
1252 we are done using the strings from it. For now, it seems
1253 to be allocated on an objalloc anyway... */
1254 bfd_has_map (abfd) = TRUE;
1255 return TRUE;
1256 }
1257 \f
1258 /** Extended name table.
1259
1260 Normally archives support only 14-character filenames.
1261
1262 Intel has extended the format: longer names are stored in a special
1263 element (the first in the archive, or second if there is an armap);
1264 the name in the ar_hdr is replaced by <space><index into filename
1265 element>. Index is the P.R. of an int (decimal). Data General have
1266 extended the format by using the prefix // for the special element. */
1267
1268 /* Returns FALSE on error, TRUE otherwise. */
1269
1270 bfd_boolean
1271 _bfd_slurp_extended_name_table (bfd *abfd)
1272 {
1273 char nextname[17];
1274 struct areltdata *namedata;
1275 bfd_size_type amt;
1276
1277 /* FIXME: Formatting sucks here, and in case of failure of BFD_READ,
1278 we probably don't want to return TRUE. */
1279 if (bfd_seek (abfd, bfd_ardata (abfd)->first_file_filepos, SEEK_SET) != 0)
1280 return FALSE;
1281
1282 if (bfd_bread (nextname, 16, abfd) == 16)
1283 {
1284 if (bfd_seek (abfd, (file_ptr) -16, SEEK_CUR) != 0)
1285 return FALSE;
1286
1287 if (! CONST_STRNEQ (nextname, "ARFILENAMES/ ")
1288 && ! CONST_STRNEQ (nextname, "// "))
1289 {
1290 bfd_ardata (abfd)->extended_names = NULL;
1291 bfd_ardata (abfd)->extended_names_size = 0;
1292 return TRUE;
1293 }
1294
1295 namedata = (struct areltdata *) _bfd_read_ar_hdr (abfd);
1296 if (namedata == NULL)
1297 return FALSE;
1298
1299 amt = namedata->parsed_size;
1300 if (amt + 1 == 0)
1301 goto byebye;
1302
1303 bfd_ardata (abfd)->extended_names_size = amt;
1304 bfd_ardata (abfd)->extended_names = (char *) bfd_zalloc (abfd, amt + 1);
1305 if (bfd_ardata (abfd)->extended_names == NULL)
1306 {
1307 byebye:
1308 free (namedata);
1309 return FALSE;
1310 }
1311
1312 if (bfd_bread (bfd_ardata (abfd)->extended_names, amt, abfd) != amt)
1313 {
1314 if (bfd_get_error () != bfd_error_system_call)
1315 bfd_set_error (bfd_error_malformed_archive);
1316 bfd_release (abfd, (bfd_ardata (abfd)->extended_names));
1317 bfd_ardata (abfd)->extended_names = NULL;
1318 goto byebye;
1319 }
1320
1321 /* Since the archive is supposed to be printable if it contains
1322 text, the entries in the list are newline-padded, not null
1323 padded. In SVR4-style archives, the names also have a
1324 trailing '/'. DOS/NT created archive often have \ in them
1325 We'll fix all problems here.. */
1326 {
1327 char *ext_names = bfd_ardata (abfd)->extended_names;
1328 char *temp = ext_names;
1329 char *limit = temp + namedata->parsed_size;
1330 for (; temp < limit; ++temp)
1331 {
1332 if (*temp == ARFMAG[1])
1333 temp[temp > ext_names && temp[-1] == '/' ? -1 : 0] = '\0';
1334 if (*temp == '\\')
1335 *temp = '/';
1336 }
1337 *limit = '\0';
1338 }
1339
1340 /* Pad to an even boundary if you have to. */
1341 bfd_ardata (abfd)->first_file_filepos = bfd_tell (abfd);
1342 bfd_ardata (abfd)->first_file_filepos +=
1343 (bfd_ardata (abfd)->first_file_filepos) % 2;
1344
1345 free (namedata);
1346 }
1347 return TRUE;
1348 }
1349
1350 #ifdef VMS
1351
1352 /* Return a copy of the stuff in the filename between any :]> and a
1353 semicolon. */
1354
1355 static const char *
1356 normalize (bfd *abfd, const char *file)
1357 {
1358 const char *first;
1359 const char *last;
1360 char *copy;
1361
1362 first = file + strlen (file) - 1;
1363 last = first + 1;
1364
1365 while (first != file)
1366 {
1367 if (*first == ';')
1368 last = first;
1369 if (*first == ':' || *first == ']' || *first == '>')
1370 {
1371 first++;
1372 break;
1373 }
1374 first--;
1375 }
1376
1377 copy = bfd_alloc (abfd, last - first + 1);
1378 if (copy == NULL)
1379 return NULL;
1380
1381 memcpy (copy, first, last - first);
1382 copy[last - first] = 0;
1383
1384 return copy;
1385 }
1386
1387 #else
1388 static const char *
1389 normalize (bfd *abfd ATTRIBUTE_UNUSED, const char *file)
1390 {
1391 return lbasename (file);
1392 }
1393 #endif
1394
1395 /* Adjust a relative path name based on the reference path.
1396 For example:
1397
1398 Relative path Reference path Result
1399 ------------- -------------- ------
1400 bar.o lib.a bar.o
1401 foo/bar.o lib.a foo/bar.o
1402 bar.o foo/lib.a ../bar.o
1403 foo/bar.o baz/lib.a ../foo/bar.o
1404 bar.o ../lib.a <parent of current dir>/bar.o
1405 ; ../bar.o ../lib.a bar.o
1406 ; ../bar.o lib.a ../bar.o
1407 foo/bar.o ../lib.a <parent of current dir>/foo/bar.o
1408 bar.o ../../lib.a <grandparent>/<parent>/bar.o
1409 bar.o foo/baz/lib.a ../../bar.o
1410
1411 Note - the semicolons above are there to prevent the BFD chew
1412 utility from interpreting those lines as prototypes to put into
1413 the autogenerated bfd.h header...
1414
1415 Note - the string is returned in a static buffer. */
1416
1417 static const char *
1418 adjust_relative_path (const char * path, const char * ref_path)
1419 {
1420 static char *pathbuf = NULL;
1421 static unsigned int pathbuf_len = 0;
1422 const char *pathp;
1423 const char *refp;
1424 char * lpath;
1425 char * rpath;
1426 unsigned int len;
1427 unsigned int dir_up = 0;
1428 unsigned int dir_down = 0;
1429 char *newp;
1430 char * pwd = getpwd ();
1431 const char * down;
1432
1433 /* Remove symlinks, '.' and '..' from the paths, if possible. */
1434 lpath = lrealpath (path);
1435 pathp = lpath == NULL ? path : lpath;
1436
1437 rpath = lrealpath (ref_path);
1438 refp = rpath == NULL ? ref_path : rpath;
1439
1440 /* Remove common leading path elements. */
1441 for (;;)
1442 {
1443 const char *e1 = pathp;
1444 const char *e2 = refp;
1445
1446 while (*e1 && ! IS_DIR_SEPARATOR (*e1))
1447 ++e1;
1448 while (*e2 && ! IS_DIR_SEPARATOR (*e2))
1449 ++e2;
1450 if (*e1 == '\0' || *e2 == '\0' || e1 - pathp != e2 - refp
1451 || filename_ncmp (pathp, refp, e1 - pathp) != 0)
1452 break;
1453 pathp = e1 + 1;
1454 refp = e2 + 1;
1455 }
1456
1457 len = strlen (pathp) + 1;
1458 /* For each leading path element in the reference path,
1459 insert "../" into the path. */
1460 for (; *refp; ++refp)
1461 if (IS_DIR_SEPARATOR (*refp))
1462 {
1463 /* PR 12710: If the path element is "../" then instead of
1464 inserting "../" we need to insert the name of the directory
1465 at the current level. */
1466 if (refp > ref_path + 1
1467 && refp[-1] == '.'
1468 && refp[-2] == '.')
1469 dir_down ++;
1470 else
1471 dir_up ++;
1472 }
1473
1474 /* If the lrealpath calls above succeeded then we should never
1475 see dir_up and dir_down both being non-zero. */
1476
1477 len += 3 * dir_up;
1478
1479 if (dir_down)
1480 {
1481 down = pwd + strlen (pwd) - 1;
1482
1483 while (dir_down && down > pwd)
1484 {
1485 if (IS_DIR_SEPARATOR (*down))
1486 --dir_down;
1487 }
1488 BFD_ASSERT (dir_down == 0);
1489 len += strlen (down) + 1;
1490 }
1491 else
1492 down = NULL;
1493
1494 if (len > pathbuf_len)
1495 {
1496 if (pathbuf != NULL)
1497 free (pathbuf);
1498 pathbuf_len = 0;
1499 pathbuf = (char *) bfd_malloc (len);
1500 if (pathbuf == NULL)
1501 goto out;
1502 pathbuf_len = len;
1503 }
1504
1505 newp = pathbuf;
1506 while (dir_up-- > 0)
1507 {
1508 /* FIXME: Support Windows style path separators as well. */
1509 strcpy (newp, "../");
1510 newp += 3;
1511 }
1512
1513 if (down)
1514 sprintf (newp, "%s/%s", down, pathp);
1515 else
1516 strcpy (newp, pathp);
1517
1518 out:
1519 free (lpath);
1520 free (rpath);
1521 return pathbuf;
1522 }
1523
1524 /* Build a BFD style extended name table. */
1525
1526 bfd_boolean
1527 _bfd_archive_bsd_construct_extended_name_table (bfd *abfd,
1528 char **tabloc,
1529 bfd_size_type *tablen,
1530 const char **name)
1531 {
1532 *name = "ARFILENAMES/";
1533 return _bfd_construct_extended_name_table (abfd, FALSE, tabloc, tablen);
1534 }
1535
1536 /* Build an SVR4 style extended name table. */
1537
1538 bfd_boolean
1539 _bfd_archive_coff_construct_extended_name_table (bfd *abfd,
1540 char **tabloc,
1541 bfd_size_type *tablen,
1542 const char **name)
1543 {
1544 *name = "//";
1545 return _bfd_construct_extended_name_table (abfd, TRUE, tabloc, tablen);
1546 }
1547
1548 /* Follows archive_head and produces an extended name table if
1549 necessary. Returns (in tabloc) a pointer to an extended name
1550 table, and in tablen the length of the table. If it makes an entry
1551 it clobbers the filename so that the element may be written without
1552 further massage. Returns TRUE if it ran successfully, FALSE if
1553 something went wrong. A successful return may still involve a
1554 zero-length tablen! */
1555
1556 bfd_boolean
1557 _bfd_construct_extended_name_table (bfd *abfd,
1558 bfd_boolean trailing_slash,
1559 char **tabloc,
1560 bfd_size_type *tablen)
1561 {
1562 unsigned int maxname = ar_maxnamelen (abfd);
1563 bfd_size_type total_namelen = 0;
1564 bfd *current;
1565 char *strptr;
1566 const char *last_filename;
1567 long last_stroff;
1568
1569 *tablen = 0;
1570 last_filename = NULL;
1571
1572 /* Figure out how long the table should be. */
1573 for (current = abfd->archive_head;
1574 current != NULL;
1575 current = current->archive_next)
1576 {
1577 const char *normal;
1578 unsigned int thislen;
1579
1580 if (bfd_is_thin_archive (abfd))
1581 {
1582 const char *filename = current->filename;
1583
1584 /* If the element being added is a member of another archive
1585 (i.e., we are flattening), use the containing archive's name. */
1586 if (current->my_archive
1587 && ! bfd_is_thin_archive (current->my_archive))
1588 filename = current->my_archive->filename;
1589
1590 /* If the path is the same as the previous path seen,
1591 reuse it. This can happen when flattening a thin
1592 archive that contains other archives. */
1593 if (last_filename && filename_cmp (last_filename, filename) == 0)
1594 continue;
1595
1596 last_filename = filename;
1597
1598 /* If the path is relative, adjust it relative to
1599 the containing archive. */
1600 if (! IS_ABSOLUTE_PATH (filename)
1601 && ! IS_ABSOLUTE_PATH (abfd->filename))
1602 normal = adjust_relative_path (filename, abfd->filename);
1603 else
1604 normal = filename;
1605
1606 /* In a thin archive, always store the full pathname
1607 in the extended name table. */
1608 total_namelen += strlen (normal) + 1;
1609 if (trailing_slash)
1610 /* Leave room for trailing slash. */
1611 ++total_namelen;
1612
1613 continue;
1614 }
1615
1616 normal = normalize (current, current->filename);
1617 if (normal == NULL)
1618 return FALSE;
1619
1620 thislen = strlen (normal);
1621
1622 if (thislen > maxname
1623 && (bfd_get_file_flags (abfd) & BFD_TRADITIONAL_FORMAT) != 0)
1624 thislen = maxname;
1625
1626 if (thislen > maxname)
1627 {
1628 /* Add one to leave room for \n. */
1629 total_namelen += thislen + 1;
1630 if (trailing_slash)
1631 {
1632 /* Leave room for trailing slash. */
1633 ++total_namelen;
1634 }
1635 }
1636 else
1637 {
1638 struct ar_hdr *hdr = arch_hdr (current);
1639 if (filename_ncmp (normal, hdr->ar_name, thislen) != 0
1640 || (thislen < sizeof hdr->ar_name
1641 && hdr->ar_name[thislen] != ar_padchar (current)))
1642 {
1643 /* Must have been using extended format even though it
1644 didn't need to. Fix it to use normal format. */
1645 memcpy (hdr->ar_name, normal, thislen);
1646 if (thislen < maxname
1647 || (thislen == maxname && thislen < sizeof hdr->ar_name))
1648 hdr->ar_name[thislen] = ar_padchar (current);
1649 }
1650 }
1651 }
1652
1653 if (total_namelen == 0)
1654 return TRUE;
1655
1656 *tabloc = (char *) bfd_zalloc (abfd, total_namelen);
1657 if (*tabloc == NULL)
1658 return FALSE;
1659
1660 *tablen = total_namelen;
1661 strptr = *tabloc;
1662
1663 last_filename = NULL;
1664 last_stroff = 0;
1665
1666 for (current = abfd->archive_head;
1667 current != NULL;
1668 current = current->archive_next)
1669 {
1670 const char *normal;
1671 unsigned int thislen;
1672 long stroff;
1673 const char *filename = current->filename;
1674
1675 if (bfd_is_thin_archive (abfd))
1676 {
1677 /* If the element being added is a member of another archive
1678 (i.e., we are flattening), use the containing archive's name. */
1679 if (current->my_archive
1680 && ! bfd_is_thin_archive (current->my_archive))
1681 filename = current->my_archive->filename;
1682 /* If the path is the same as the previous path seen,
1683 reuse it. This can happen when flattening a thin
1684 archive that contains other archives.
1685 If the path is relative, adjust it relative to
1686 the containing archive. */
1687 if (last_filename && filename_cmp (last_filename, filename) == 0)
1688 normal = last_filename;
1689 else if (! IS_ABSOLUTE_PATH (filename)
1690 && ! IS_ABSOLUTE_PATH (abfd->filename))
1691 normal = adjust_relative_path (filename, abfd->filename);
1692 else
1693 normal = filename;
1694 }
1695 else
1696 {
1697 normal = normalize (current, filename);
1698 if (normal == NULL)
1699 return FALSE;
1700 }
1701
1702 thislen = strlen (normal);
1703 if (thislen > maxname || bfd_is_thin_archive (abfd))
1704 {
1705 /* Works for now; may need to be re-engineered if we
1706 encounter an oddball archive format and want to
1707 generalise this hack. */
1708 struct ar_hdr *hdr = arch_hdr (current);
1709 if (normal == last_filename)
1710 stroff = last_stroff;
1711 else
1712 {
1713 strcpy (strptr, normal);
1714 if (! trailing_slash)
1715 strptr[thislen] = ARFMAG[1];
1716 else
1717 {
1718 strptr[thislen] = '/';
1719 strptr[thislen + 1] = ARFMAG[1];
1720 }
1721 stroff = strptr - *tabloc;
1722 last_stroff = stroff;
1723 }
1724 hdr->ar_name[0] = ar_padchar (current);
1725 if (bfd_is_thin_archive (abfd) && current->origin > 0)
1726 {
1727 int len = snprintf (hdr->ar_name + 1, maxname - 1, "%-ld:",
1728 stroff);
1729 _bfd_ar_spacepad (hdr->ar_name + 1 + len, maxname - 1 - len,
1730 "%-ld",
1731 current->origin - sizeof (struct ar_hdr));
1732 }
1733 else
1734 _bfd_ar_spacepad (hdr->ar_name + 1, maxname - 1, "%-ld", stroff);
1735 if (normal != last_filename)
1736 {
1737 strptr += thislen + 1;
1738 if (trailing_slash)
1739 ++strptr;
1740 last_filename = filename;
1741 }
1742 }
1743 }
1744
1745 return TRUE;
1746 }
1747
1748 /* Do not construct an extended name table but transforms name field into
1749 its extended form. */
1750
1751 bfd_boolean
1752 _bfd_archive_bsd44_construct_extended_name_table (bfd *abfd,
1753 char **tabloc,
1754 bfd_size_type *tablen,
1755 const char **name)
1756 {
1757 unsigned int maxname = ar_maxnamelen (abfd);
1758 bfd *current;
1759
1760 *tablen = 0;
1761 *tabloc = NULL;
1762 *name = NULL;
1763
1764 for (current = abfd->archive_head;
1765 current != NULL;
1766 current = current->archive_next)
1767 {
1768 const char *normal = normalize (current, current->filename);
1769 int has_space = 0;
1770 unsigned int len;
1771
1772 if (normal == NULL)
1773 return FALSE;
1774
1775 for (len = 0; normal[len]; len++)
1776 if (normal[len] == ' ')
1777 has_space = 1;
1778
1779 if (len > maxname || has_space)
1780 {
1781 struct ar_hdr *hdr = arch_hdr (current);
1782
1783 len = (len + 3) & ~3;
1784 arch_eltdata (current)->extra_size = len;
1785 _bfd_ar_spacepad (hdr->ar_name, maxname, "#1/%lu", len);
1786 }
1787 }
1788
1789 return TRUE;
1790 }
1791 \f
1792 /* Write an archive header. */
1793
1794 bfd_boolean
1795 _bfd_generic_write_ar_hdr (bfd *archive, bfd *abfd)
1796 {
1797 struct ar_hdr *hdr = arch_hdr (abfd);
1798
1799 if (bfd_bwrite (hdr, sizeof (*hdr), archive) != sizeof (*hdr))
1800 return FALSE;
1801 return TRUE;
1802 }
1803
1804 /* Write an archive header using BSD4.4 convention. */
1805
1806 bfd_boolean
1807 _bfd_bsd44_write_ar_hdr (bfd *archive, bfd *abfd)
1808 {
1809 struct ar_hdr *hdr = arch_hdr (abfd);
1810
1811 if (is_bsd44_extended_name (hdr->ar_name))
1812 {
1813 /* This is a BSD 4.4 extended name. */
1814 const char *fullname = normalize (abfd, abfd->filename);
1815 unsigned int len = strlen (fullname);
1816 unsigned int padded_len = (len + 3) & ~3;
1817
1818 BFD_ASSERT (padded_len == arch_eltdata (abfd)->extra_size);
1819
1820 if (!_bfd_ar_sizepad (hdr->ar_size, sizeof (hdr->ar_size),
1821 arch_eltdata (abfd)->parsed_size + padded_len))
1822 return FALSE;
1823
1824 if (bfd_bwrite (hdr, sizeof (*hdr), archive) != sizeof (*hdr))
1825 return FALSE;
1826
1827 if (bfd_bwrite (fullname, len, archive) != len)
1828 return FALSE;
1829
1830 if (len & 3)
1831 {
1832 static const char pad[3] = { 0, 0, 0 };
1833
1834 len = 4 - (len & 3);
1835 if (bfd_bwrite (pad, len, archive) != len)
1836 return FALSE;
1837 }
1838 }
1839 else
1840 {
1841 if (bfd_bwrite (hdr, sizeof (*hdr), archive) != sizeof (*hdr))
1842 return FALSE;
1843 }
1844 return TRUE;
1845 }
1846 \f
1847 /* A couple of functions for creating ar_hdrs. */
1848
1849 #ifdef HPUX_LARGE_AR_IDS
1850 /* Function to encode large UID/GID values according to HP. */
1851
1852 static void
1853 hpux_uid_gid_encode (char str[6], long int id)
1854 {
1855 int cnt;
1856
1857 str[5] = '@' + (id & 3);
1858 id >>= 2;
1859
1860 for (cnt = 4; cnt >= 0; --cnt, id >>= 6)
1861 str[cnt] = ' ' + (id & 0x3f);
1862 }
1863 #endif /* HPUX_LARGE_AR_IDS */
1864
1865 #ifndef HAVE_GETUID
1866 #define getuid() 0
1867 #endif
1868
1869 #ifndef HAVE_GETGID
1870 #define getgid() 0
1871 #endif
1872
1873 /* Takes a filename, returns an arelt_data for it, or NULL if it can't
1874 make one. The filename must refer to a filename in the filesystem.
1875 The filename field of the ar_hdr will NOT be initialized. If member
1876 is set, and it's an in-memory bfd, we fake it. */
1877
1878 static struct areltdata *
1879 bfd_ar_hdr_from_filesystem (bfd *abfd, const char *filename, bfd *member)
1880 {
1881 struct stat status;
1882 struct areltdata *ared;
1883 struct ar_hdr *hdr;
1884 bfd_size_type amt;
1885
1886 if (member && (member->flags & BFD_IN_MEMORY) != 0)
1887 {
1888 /* Assume we just "made" the member, and fake it. */
1889 struct bfd_in_memory *bim = (struct bfd_in_memory *) member->iostream;
1890 time (&status.st_mtime);
1891 status.st_uid = getuid ();
1892 status.st_gid = getgid ();
1893 status.st_mode = 0644;
1894 status.st_size = bim->size;
1895 }
1896 else if (stat (filename, &status) != 0)
1897 {
1898 bfd_set_error (bfd_error_system_call);
1899 return NULL;
1900 }
1901
1902 /* If the caller requested that the BFD generate deterministic output,
1903 fake values for modification time, UID, GID, and file mode. */
1904 if ((abfd->flags & BFD_DETERMINISTIC_OUTPUT) != 0)
1905 {
1906 status.st_mtime = 0;
1907 status.st_uid = 0;
1908 status.st_gid = 0;
1909 status.st_mode = 0644;
1910 }
1911
1912 amt = sizeof (struct ar_hdr) + sizeof (struct areltdata);
1913 ared = (struct areltdata *) bfd_zmalloc (amt);
1914 if (ared == NULL)
1915 return NULL;
1916 hdr = (struct ar_hdr *) (((char *) ared) + sizeof (struct areltdata));
1917
1918 /* ar headers are space padded, not null padded! */
1919 memset (hdr, ' ', sizeof (struct ar_hdr));
1920
1921 _bfd_ar_spacepad (hdr->ar_date, sizeof (hdr->ar_date), "%-12ld",
1922 status.st_mtime);
1923 #ifdef HPUX_LARGE_AR_IDS
1924 /* HP has a very "special" way to handle UID/GID's with numeric values
1925 > 99999. */
1926 if (status.st_uid > 99999)
1927 hpux_uid_gid_encode (hdr->ar_uid, (long) status.st_uid);
1928 else
1929 #endif
1930 _bfd_ar_spacepad (hdr->ar_uid, sizeof (hdr->ar_uid), "%ld",
1931 status.st_uid);
1932 #ifdef HPUX_LARGE_AR_IDS
1933 /* HP has a very "special" way to handle UID/GID's with numeric values
1934 > 99999. */
1935 if (status.st_gid > 99999)
1936 hpux_uid_gid_encode (hdr->ar_gid, (long) status.st_gid);
1937 else
1938 #endif
1939 _bfd_ar_spacepad (hdr->ar_gid, sizeof (hdr->ar_gid), "%ld",
1940 status.st_gid);
1941 _bfd_ar_spacepad (hdr->ar_mode, sizeof (hdr->ar_mode), "%-8lo",
1942 status.st_mode);
1943 if (!_bfd_ar_sizepad (hdr->ar_size, sizeof (hdr->ar_size), status.st_size))
1944 {
1945 free (ared);
1946 return NULL;
1947 }
1948 memcpy (hdr->ar_fmag, ARFMAG, 2);
1949 ared->parsed_size = status.st_size;
1950 ared->arch_header = (char *) hdr;
1951
1952 return ared;
1953 }
1954
1955 /* Analogous to stat call. */
1956
1957 int
1958 bfd_generic_stat_arch_elt (bfd *abfd, struct stat *buf)
1959 {
1960 struct ar_hdr *hdr;
1961 char *aloser;
1962
1963 if (abfd->arelt_data == NULL)
1964 {
1965 bfd_set_error (bfd_error_invalid_operation);
1966 return -1;
1967 }
1968
1969 hdr = arch_hdr (abfd);
1970
1971 #define foo(arelt, stelt, size) \
1972 buf->stelt = strtol (hdr->arelt, &aloser, size); \
1973 if (aloser == hdr->arelt) \
1974 return -1;
1975
1976 /* Some platforms support special notations for large IDs. */
1977 #ifdef HPUX_LARGE_AR_IDS
1978 # define foo2(arelt, stelt, size) \
1979 if (hdr->arelt[5] == ' ') \
1980 { \
1981 foo (arelt, stelt, size); \
1982 } \
1983 else \
1984 { \
1985 int cnt; \
1986 for (buf->stelt = cnt = 0; cnt < 5; ++cnt) \
1987 { \
1988 if (hdr->arelt[cnt] < ' ' || hdr->arelt[cnt] > ' ' + 0x3f) \
1989 return -1; \
1990 buf->stelt <<= 6; \
1991 buf->stelt += hdr->arelt[cnt] - ' '; \
1992 } \
1993 if (hdr->arelt[5] < '@' || hdr->arelt[5] > '@' + 3) \
1994 return -1; \
1995 buf->stelt <<= 2; \
1996 buf->stelt += hdr->arelt[5] - '@'; \
1997 }
1998 #else
1999 # define foo2(arelt, stelt, size) foo (arelt, stelt, size)
2000 #endif
2001
2002 foo (ar_date, st_mtime, 10);
2003 foo2 (ar_uid, st_uid, 10);
2004 foo2 (ar_gid, st_gid, 10);
2005 foo (ar_mode, st_mode, 8);
2006
2007 buf->st_size = arch_eltdata (abfd)->parsed_size;
2008
2009 return 0;
2010 }
2011
2012 void
2013 bfd_dont_truncate_arname (bfd *abfd, const char *pathname, char *arhdr)
2014 {
2015 /* FIXME: This interacts unpleasantly with ar's quick-append option.
2016 Fortunately ic960 users will never use that option. Fixing this
2017 is very hard; fortunately I know how to do it and will do so once
2018 intel's release is out the door. */
2019
2020 struct ar_hdr *hdr = (struct ar_hdr *) arhdr;
2021 size_t length;
2022 const char *filename;
2023 size_t maxlen = ar_maxnamelen (abfd);
2024
2025 if ((bfd_get_file_flags (abfd) & BFD_TRADITIONAL_FORMAT) != 0)
2026 {
2027 bfd_bsd_truncate_arname (abfd, pathname, arhdr);
2028 return;
2029 }
2030
2031 filename = normalize (abfd, pathname);
2032 if (filename == NULL)
2033 {
2034 /* FIXME */
2035 abort ();
2036 }
2037
2038 length = strlen (filename);
2039
2040 if (length <= maxlen)
2041 memcpy (hdr->ar_name, filename, length);
2042
2043 /* Add the padding character if there is room for it. */
2044 if (length < maxlen
2045 || (length == maxlen && length < sizeof hdr->ar_name))
2046 (hdr->ar_name)[length] = ar_padchar (abfd);
2047 }
2048
2049 void
2050 bfd_bsd_truncate_arname (bfd *abfd, const char *pathname, char *arhdr)
2051 {
2052 struct ar_hdr *hdr = (struct ar_hdr *) arhdr;
2053 size_t length;
2054 const char *filename = lbasename (pathname);
2055 size_t maxlen = ar_maxnamelen (abfd);
2056
2057 length = strlen (filename);
2058
2059 if (length <= maxlen)
2060 memcpy (hdr->ar_name, filename, length);
2061 else
2062 {
2063 /* pathname: meet procrustes */
2064 memcpy (hdr->ar_name, filename, maxlen);
2065 length = maxlen;
2066 }
2067
2068 if (length < maxlen)
2069 (hdr->ar_name)[length] = ar_padchar (abfd);
2070 }
2071
2072 /* Store name into ar header. Truncates the name to fit.
2073 1> strip pathname to be just the basename.
2074 2> if it's short enuf to fit, stuff it in.
2075 3> If it doesn't end with .o, truncate it to fit
2076 4> truncate it before the .o, append .o, stuff THAT in. */
2077
2078 /* This is what gnu ar does. It's better but incompatible with the
2079 bsd ar. */
2080
2081 void
2082 bfd_gnu_truncate_arname (bfd *abfd, const char *pathname, char *arhdr)
2083 {
2084 struct ar_hdr *hdr = (struct ar_hdr *) arhdr;
2085 size_t length;
2086 const char *filename = lbasename (pathname);
2087 size_t maxlen = ar_maxnamelen (abfd);
2088
2089 length = strlen (filename);
2090
2091 if (length <= maxlen)
2092 memcpy (hdr->ar_name, filename, length);
2093 else
2094 {
2095 /* pathname: meet procrustes. */
2096 memcpy (hdr->ar_name, filename, maxlen);
2097 if ((filename[length - 2] == '.') && (filename[length - 1] == 'o'))
2098 {
2099 hdr->ar_name[maxlen - 2] = '.';
2100 hdr->ar_name[maxlen - 1] = 'o';
2101 }
2102 length = maxlen;
2103 }
2104
2105 if (length < 16)
2106 (hdr->ar_name)[length] = ar_padchar (abfd);
2107 }
2108 \f
2109 /* The BFD is open for write and has its format set to bfd_archive. */
2110
2111 bfd_boolean
2112 _bfd_write_archive_contents (bfd *arch)
2113 {
2114 bfd *current;
2115 char *etable = NULL;
2116 bfd_size_type elength = 0;
2117 const char *ename = NULL;
2118 bfd_boolean makemap = bfd_has_map (arch);
2119 /* If no .o's, don't bother to make a map. */
2120 bfd_boolean hasobjects = FALSE;
2121 bfd_size_type wrote;
2122 int tries;
2123 char *armag;
2124
2125 /* Verify the viability of all entries; if any of them live in the
2126 filesystem (as opposed to living in an archive open for input)
2127 then construct a fresh ar_hdr for them. */
2128 for (current = arch->archive_head;
2129 current != NULL;
2130 current = current->archive_next)
2131 {
2132 /* This check is checking the bfds for the objects we're reading
2133 from (which are usually either an object file or archive on
2134 disk), not the archive entries we're writing to. We don't
2135 actually create bfds for the archive members, we just copy
2136 them byte-wise when we write out the archive. */
2137 if (bfd_write_p (current))
2138 {
2139 bfd_set_error (bfd_error_invalid_operation);
2140 goto input_err;
2141 }
2142 if (!current->arelt_data)
2143 {
2144 current->arelt_data =
2145 bfd_ar_hdr_from_filesystem (arch, current->filename, current);
2146 if (!current->arelt_data)
2147 goto input_err;
2148
2149 /* Put in the file name. */
2150 BFD_SEND (arch, _bfd_truncate_arname,
2151 (arch, current->filename, (char *) arch_hdr (current)));
2152 }
2153
2154 if (makemap && ! hasobjects)
2155 { /* Don't bother if we won't make a map! */
2156 if ((bfd_check_format (current, bfd_object)))
2157 hasobjects = TRUE;
2158 }
2159 }
2160
2161 if (!BFD_SEND (arch, _bfd_construct_extended_name_table,
2162 (arch, &etable, &elength, &ename)))
2163 return FALSE;
2164
2165 if (bfd_seek (arch, (file_ptr) 0, SEEK_SET) != 0)
2166 return FALSE;
2167 armag = ARMAG;
2168 if (bfd_is_thin_archive (arch))
2169 armag = ARMAGT;
2170 wrote = bfd_bwrite (armag, SARMAG, arch);
2171 if (wrote != SARMAG)
2172 return FALSE;
2173
2174 if (makemap && hasobjects)
2175 {
2176 if (! _bfd_compute_and_write_armap (arch, (unsigned int) elength))
2177 return FALSE;
2178 }
2179
2180 if (elength != 0)
2181 {
2182 struct ar_hdr hdr;
2183
2184 memset (&hdr, ' ', sizeof (struct ar_hdr));
2185 memcpy (hdr.ar_name, ename, strlen (ename));
2186 /* Round size up to even number in archive header. */
2187 if (!_bfd_ar_sizepad (hdr.ar_size, sizeof (hdr.ar_size),
2188 (elength + 1) & ~(bfd_size_type) 1))
2189 return FALSE;
2190 memcpy (hdr.ar_fmag, ARFMAG, 2);
2191 if ((bfd_bwrite (&hdr, sizeof (struct ar_hdr), arch)
2192 != sizeof (struct ar_hdr))
2193 || bfd_bwrite (etable, elength, arch) != elength)
2194 return FALSE;
2195 if ((elength % 2) == 1)
2196 {
2197 if (bfd_bwrite (&ARFMAG[1], 1, arch) != 1)
2198 return FALSE;
2199 }
2200 }
2201
2202 for (current = arch->archive_head;
2203 current != NULL;
2204 current = current->archive_next)
2205 {
2206 char buffer[DEFAULT_BUFFERSIZE];
2207 bfd_size_type remaining = arelt_size (current);
2208
2209 /* Write ar header. */
2210 if (!_bfd_write_ar_hdr (arch, current))
2211 return FALSE;
2212 if (bfd_is_thin_archive (arch))
2213 continue;
2214 if (bfd_seek (current, (file_ptr) 0, SEEK_SET) != 0)
2215 goto input_err;
2216
2217 while (remaining)
2218 {
2219 unsigned int amt = DEFAULT_BUFFERSIZE;
2220
2221 if (amt > remaining)
2222 amt = remaining;
2223 errno = 0;
2224 if (bfd_bread (buffer, amt, current) != amt)
2225 {
2226 if (bfd_get_error () != bfd_error_system_call)
2227 bfd_set_error (bfd_error_file_truncated);
2228 goto input_err;
2229 }
2230 if (bfd_bwrite (buffer, amt, arch) != amt)
2231 return FALSE;
2232 remaining -= amt;
2233 }
2234
2235 if ((arelt_size (current) % 2) == 1)
2236 {
2237 if (bfd_bwrite (&ARFMAG[1], 1, arch) != 1)
2238 return FALSE;
2239 }
2240 }
2241
2242 if (makemap && hasobjects)
2243 {
2244 /* Verify the timestamp in the archive file. If it would not be
2245 accepted by the linker, rewrite it until it would be. If
2246 anything odd happens, break out and just return. (The
2247 Berkeley linker checks the timestamp and refuses to read the
2248 table-of-contents if it is >60 seconds less than the file's
2249 modified-time. That painful hack requires this painful hack. */
2250 tries = 1;
2251 do
2252 {
2253 if (bfd_update_armap_timestamp (arch))
2254 break;
2255 (*_bfd_error_handler)
2256 (_("Warning: writing archive was slow: rewriting timestamp\n"));
2257 }
2258 while (++tries < 6);
2259 }
2260
2261 return TRUE;
2262
2263 input_err:
2264 bfd_set_error (bfd_error_on_input, current, bfd_get_error ());
2265 return FALSE;
2266 }
2267 \f
2268 /* Note that the namidx for the first symbol is 0. */
2269
2270 bfd_boolean
2271 _bfd_compute_and_write_armap (bfd *arch, unsigned int elength)
2272 {
2273 char *first_name = NULL;
2274 bfd *current;
2275 file_ptr elt_no = 0;
2276 struct orl *map = NULL;
2277 unsigned int orl_max = 1024; /* Fine initial default. */
2278 unsigned int orl_count = 0;
2279 int stridx = 0;
2280 asymbol **syms = NULL;
2281 long syms_max = 0;
2282 bfd_boolean ret;
2283 bfd_size_type amt;
2284
2285 /* Dunno if this is the best place for this info... */
2286 if (elength != 0)
2287 elength += sizeof (struct ar_hdr);
2288 elength += elength % 2;
2289
2290 amt = orl_max * sizeof (struct orl);
2291 map = (struct orl *) bfd_malloc (amt);
2292 if (map == NULL)
2293 goto error_return;
2294
2295 /* We put the symbol names on the arch objalloc, and then discard
2296 them when done. */
2297 first_name = (char *) bfd_alloc (arch, 1);
2298 if (first_name == NULL)
2299 goto error_return;
2300
2301 /* Drop all the files called __.SYMDEF, we're going to make our own. */
2302 while (arch->archive_head
2303 && strcmp (arch->archive_head->filename, "__.SYMDEF") == 0)
2304 arch->archive_head = arch->archive_head->archive_next;
2305
2306 /* Map over each element. */
2307 for (current = arch->archive_head;
2308 current != NULL;
2309 current = current->archive_next, elt_no++)
2310 {
2311 if (bfd_check_format (current, bfd_object)
2312 && (bfd_get_file_flags (current) & HAS_SYMS) != 0)
2313 {
2314 long storage;
2315 long symcount;
2316 long src_count;
2317
2318 storage = bfd_get_symtab_upper_bound (current);
2319 if (storage < 0)
2320 goto error_return;
2321
2322 if (storage != 0)
2323 {
2324 if (storage > syms_max)
2325 {
2326 if (syms_max > 0)
2327 free (syms);
2328 syms_max = storage;
2329 syms = (asymbol **) bfd_malloc (syms_max);
2330 if (syms == NULL)
2331 goto error_return;
2332 }
2333 symcount = bfd_canonicalize_symtab (current, syms);
2334 if (symcount < 0)
2335 goto error_return;
2336
2337 /* Now map over all the symbols, picking out the ones we
2338 want. */
2339 for (src_count = 0; src_count < symcount; src_count++)
2340 {
2341 flagword flags = (syms[src_count])->flags;
2342 asection *sec = syms[src_count]->section;
2343
2344 if (((flags & (BSF_GLOBAL
2345 | BSF_WEAK
2346 | BSF_INDIRECT
2347 | BSF_GNU_UNIQUE)) != 0
2348 || bfd_is_com_section (sec))
2349 && ! bfd_is_und_section (sec))
2350 {
2351 bfd_size_type namelen;
2352 struct orl *new_map;
2353
2354 /* This symbol will go into the archive header. */
2355 if (orl_count == orl_max)
2356 {
2357 orl_max *= 2;
2358 amt = orl_max * sizeof (struct orl);
2359 new_map = (struct orl *) bfd_realloc (map, amt);
2360 if (new_map == NULL)
2361 goto error_return;
2362
2363 map = new_map;
2364 }
2365
2366 namelen = strlen (syms[src_count]->name);
2367 amt = sizeof (char *);
2368 map[orl_count].name = (char **) bfd_alloc (arch, amt);
2369 if (map[orl_count].name == NULL)
2370 goto error_return;
2371 *(map[orl_count].name) = (char *) bfd_alloc (arch,
2372 namelen + 1);
2373 if (*(map[orl_count].name) == NULL)
2374 goto error_return;
2375 strcpy (*(map[orl_count].name), syms[src_count]->name);
2376 map[orl_count].u.abfd = current;
2377 map[orl_count].namidx = stridx;
2378
2379 stridx += namelen + 1;
2380 ++orl_count;
2381 }
2382 }
2383 }
2384
2385 /* Now ask the BFD to free up any cached information, so we
2386 don't fill all of memory with symbol tables. */
2387 if (! bfd_free_cached_info (current))
2388 goto error_return;
2389 }
2390 }
2391
2392 /* OK, now we have collected all the data, let's write them out. */
2393 ret = BFD_SEND (arch, write_armap,
2394 (arch, elength, map, orl_count, stridx));
2395
2396 if (syms_max > 0)
2397 free (syms);
2398 if (map != NULL)
2399 free (map);
2400 if (first_name != NULL)
2401 bfd_release (arch, first_name);
2402
2403 return ret;
2404
2405 error_return:
2406 if (syms_max > 0)
2407 free (syms);
2408 if (map != NULL)
2409 free (map);
2410 if (first_name != NULL)
2411 bfd_release (arch, first_name);
2412
2413 return FALSE;
2414 }
2415
2416 bfd_boolean
2417 bsd_write_armap (bfd *arch,
2418 unsigned int elength,
2419 struct orl *map,
2420 unsigned int orl_count,
2421 int stridx)
2422 {
2423 int padit = stridx & 1;
2424 unsigned int ranlibsize = orl_count * BSD_SYMDEF_SIZE;
2425 unsigned int stringsize = stridx + padit;
2426 /* Include 8 bytes to store ranlibsize and stringsize in output. */
2427 unsigned int mapsize = ranlibsize + stringsize + 8;
2428 file_ptr firstreal;
2429 bfd *current = arch->archive_head;
2430 bfd *last_elt = current; /* Last element arch seen. */
2431 bfd_byte temp[4];
2432 unsigned int count;
2433 struct ar_hdr hdr;
2434 long uid, gid;
2435
2436 firstreal = mapsize + elength + sizeof (struct ar_hdr) + SARMAG;
2437
2438 /* If deterministic, we use 0 as the timestamp in the map.
2439 Some linkers may require that the archive filesystem modification
2440 time is less than (or near to) the archive map timestamp. Those
2441 linkers should not be used with deterministic mode. (GNU ld and
2442 Gold do not have this restriction.) */
2443 bfd_ardata (arch)->armap_timestamp = 0;
2444 uid = 0;
2445 gid = 0;
2446 if ((arch->flags & BFD_DETERMINISTIC_OUTPUT) == 0)
2447 {
2448 struct stat statbuf;
2449
2450 if (stat (arch->filename, &statbuf) == 0)
2451 bfd_ardata (arch)->armap_timestamp = (statbuf.st_mtime
2452 + ARMAP_TIME_OFFSET);
2453 uid = getuid();
2454 gid = getgid();
2455 }
2456
2457 memset (&hdr, ' ', sizeof (struct ar_hdr));
2458 memcpy (hdr.ar_name, RANLIBMAG, strlen (RANLIBMAG));
2459 bfd_ardata (arch)->armap_datepos = (SARMAG
2460 + offsetof (struct ar_hdr, ar_date[0]));
2461 _bfd_ar_spacepad (hdr.ar_date, sizeof (hdr.ar_date), "%ld",
2462 bfd_ardata (arch)->armap_timestamp);
2463 _bfd_ar_spacepad (hdr.ar_uid, sizeof (hdr.ar_uid), "%ld", uid);
2464 _bfd_ar_spacepad (hdr.ar_gid, sizeof (hdr.ar_gid), "%ld", gid);
2465 if (!_bfd_ar_sizepad (hdr.ar_size, sizeof (hdr.ar_size), mapsize))
2466 return FALSE;
2467 memcpy (hdr.ar_fmag, ARFMAG, 2);
2468 if (bfd_bwrite (&hdr, sizeof (struct ar_hdr), arch)
2469 != sizeof (struct ar_hdr))
2470 return FALSE;
2471 H_PUT_32 (arch, ranlibsize, temp);
2472 if (bfd_bwrite (temp, sizeof (temp), arch) != sizeof (temp))
2473 return FALSE;
2474
2475 for (count = 0; count < orl_count; count++)
2476 {
2477 unsigned int offset;
2478 bfd_byte buf[BSD_SYMDEF_SIZE];
2479
2480 if (map[count].u.abfd != last_elt)
2481 {
2482 do
2483 {
2484 struct areltdata *ared = arch_eltdata (current);
2485
2486 firstreal += (ared->parsed_size + ared->extra_size
2487 + sizeof (struct ar_hdr));
2488 firstreal += firstreal % 2;
2489 current = current->archive_next;
2490 }
2491 while (current != map[count].u.abfd);
2492 }
2493
2494 /* The archive file format only has 4 bytes to store the offset
2495 of the member. Check to make sure that firstreal has not grown
2496 too big. */
2497 offset = (unsigned int) firstreal;
2498 if (firstreal != (file_ptr) offset)
2499 {
2500 bfd_set_error (bfd_error_file_truncated);
2501 return FALSE;
2502 }
2503
2504 last_elt = current;
2505 H_PUT_32 (arch, map[count].namidx, buf);
2506 H_PUT_32 (arch, firstreal, buf + BSD_SYMDEF_OFFSET_SIZE);
2507 if (bfd_bwrite (buf, BSD_SYMDEF_SIZE, arch)
2508 != BSD_SYMDEF_SIZE)
2509 return FALSE;
2510 }
2511
2512 /* Now write the strings themselves. */
2513 H_PUT_32 (arch, stringsize, temp);
2514 if (bfd_bwrite (temp, sizeof (temp), arch) != sizeof (temp))
2515 return FALSE;
2516 for (count = 0; count < orl_count; count++)
2517 {
2518 size_t len = strlen (*map[count].name) + 1;
2519
2520 if (bfd_bwrite (*map[count].name, len, arch) != len)
2521 return FALSE;
2522 }
2523
2524 /* The spec sez this should be a newline. But in order to be
2525 bug-compatible for sun's ar we use a null. */
2526 if (padit)
2527 {
2528 if (bfd_bwrite ("", 1, arch) != 1)
2529 return FALSE;
2530 }
2531
2532 return TRUE;
2533 }
2534
2535 /* At the end of archive file handling, update the timestamp in the
2536 file, so the linker will accept it.
2537
2538 Return TRUE if the timestamp was OK, or an unusual problem happened.
2539 Return FALSE if we updated the timestamp. */
2540
2541 bfd_boolean
2542 _bfd_archive_bsd_update_armap_timestamp (bfd *arch)
2543 {
2544 struct stat archstat;
2545 struct ar_hdr hdr;
2546
2547 /* If creating deterministic archives, just leave the timestamp as-is. */
2548 if ((arch->flags & BFD_DETERMINISTIC_OUTPUT) != 0)
2549 return TRUE;
2550
2551 /* Flush writes, get last-write timestamp from file, and compare it
2552 to the timestamp IN the file. */
2553 bfd_flush (arch);
2554 if (bfd_stat (arch, &archstat) == -1)
2555 {
2556 bfd_perror (_("Reading archive file mod timestamp"));
2557
2558 /* Can't read mod time for some reason. */
2559 return TRUE;
2560 }
2561 if (((long) archstat.st_mtime) <= bfd_ardata (arch)->armap_timestamp)
2562 /* OK by the linker's rules. */
2563 return TRUE;
2564
2565 /* Update the timestamp. */
2566 bfd_ardata (arch)->armap_timestamp = archstat.st_mtime + ARMAP_TIME_OFFSET;
2567
2568 /* Prepare an ASCII version suitable for writing. */
2569 memset (hdr.ar_date, ' ', sizeof (hdr.ar_date));
2570 _bfd_ar_spacepad (hdr.ar_date, sizeof (hdr.ar_date), "%ld",
2571 bfd_ardata (arch)->armap_timestamp);
2572
2573 /* Write it into the file. */
2574 bfd_ardata (arch)->armap_datepos = (SARMAG
2575 + offsetof (struct ar_hdr, ar_date[0]));
2576 if (bfd_seek (arch, bfd_ardata (arch)->armap_datepos, SEEK_SET) != 0
2577 || (bfd_bwrite (hdr.ar_date, sizeof (hdr.ar_date), arch)
2578 != sizeof (hdr.ar_date)))
2579 {
2580 bfd_perror (_("Writing updated armap timestamp"));
2581
2582 /* Some error while writing. */
2583 return TRUE;
2584 }
2585
2586 /* We updated the timestamp successfully. */
2587 return FALSE;
2588 }
2589 \f
2590 /* A coff armap looks like :
2591 lARMAG
2592 struct ar_hdr with name = '/'
2593 number of symbols
2594 offset of file for symbol 0
2595 offset of file for symbol 1
2596
2597 offset of file for symbol n-1
2598 symbol name 0
2599 symbol name 1
2600
2601 symbol name n-1 */
2602
2603 bfd_boolean
2604 coff_write_armap (bfd *arch,
2605 unsigned int elength,
2606 struct orl *map,
2607 unsigned int symbol_count,
2608 int stridx)
2609 {
2610 /* The size of the ranlib is the number of exported symbols in the
2611 archive * the number of bytes in an int, + an int for the count. */
2612 unsigned int ranlibsize = (symbol_count * 4) + 4;
2613 unsigned int stringsize = stridx;
2614 unsigned int mapsize = stringsize + ranlibsize;
2615 file_ptr archive_member_file_ptr;
2616 bfd *current = arch->archive_head;
2617 unsigned int count;
2618 struct ar_hdr hdr;
2619 int padit = mapsize & 1;
2620
2621 if (padit)
2622 mapsize++;
2623
2624 /* Work out where the first object file will go in the archive. */
2625 archive_member_file_ptr = (mapsize
2626 + elength
2627 + sizeof (struct ar_hdr)
2628 + SARMAG);
2629
2630 memset (&hdr, ' ', sizeof (struct ar_hdr));
2631 hdr.ar_name[0] = '/';
2632 if (!_bfd_ar_sizepad (hdr.ar_size, sizeof (hdr.ar_size), mapsize))
2633 return FALSE;
2634 _bfd_ar_spacepad (hdr.ar_date, sizeof (hdr.ar_date), "%ld",
2635 ((arch->flags & BFD_DETERMINISTIC_OUTPUT) == 0
2636 ? time (NULL) : 0));
2637 /* This, at least, is what Intel coff sets the values to. */
2638 _bfd_ar_spacepad (hdr.ar_uid, sizeof (hdr.ar_uid), "%ld", 0);
2639 _bfd_ar_spacepad (hdr.ar_gid, sizeof (hdr.ar_gid), "%ld", 0);
2640 _bfd_ar_spacepad (hdr.ar_mode, sizeof (hdr.ar_mode), "%-7lo", 0);
2641 memcpy (hdr.ar_fmag, ARFMAG, 2);
2642
2643 /* Write the ar header for this item and the number of symbols. */
2644 if (bfd_bwrite (&hdr, sizeof (struct ar_hdr), arch)
2645 != sizeof (struct ar_hdr))
2646 return FALSE;
2647
2648 if (!bfd_write_bigendian_4byte_int (arch, symbol_count))
2649 return FALSE;
2650
2651 /* Two passes, first write the file offsets for each symbol -
2652 remembering that each offset is on a two byte boundary. */
2653
2654 /* Write out the file offset for the file associated with each
2655 symbol, and remember to keep the offsets padded out. */
2656
2657 current = arch->archive_head;
2658 count = 0;
2659 while (current != NULL && count < symbol_count)
2660 {
2661 /* For each symbol which is used defined in this object, write
2662 out the object file's address in the archive. */
2663
2664 while (count < symbol_count && map[count].u.abfd == current)
2665 {
2666 unsigned int offset = (unsigned int) archive_member_file_ptr;
2667
2668 /* Catch an attempt to grow an archive past its 4Gb limit. */
2669 if (archive_member_file_ptr != (file_ptr) offset)
2670 {
2671 bfd_set_error (bfd_error_file_truncated);
2672 return FALSE;
2673 }
2674 if (!bfd_write_bigendian_4byte_int (arch, offset))
2675 return FALSE;
2676 count++;
2677 }
2678 archive_member_file_ptr += sizeof (struct ar_hdr);
2679 if (! bfd_is_thin_archive (arch))
2680 {
2681 /* Add size of this archive entry. */
2682 archive_member_file_ptr += arelt_size (current);
2683 /* Remember about the even alignment. */
2684 archive_member_file_ptr += archive_member_file_ptr % 2;
2685 }
2686 current = current->archive_next;
2687 }
2688
2689 /* Now write the strings themselves. */
2690 for (count = 0; count < symbol_count; count++)
2691 {
2692 size_t len = strlen (*map[count].name) + 1;
2693
2694 if (bfd_bwrite (*map[count].name, len, arch) != len)
2695 return FALSE;
2696 }
2697
2698 /* The spec sez this should be a newline. But in order to be
2699 bug-compatible for arc960 we use a null. */
2700 if (padit)
2701 {
2702 if (bfd_bwrite ("", 1, arch) != 1)
2703 return FALSE;
2704 }
2705
2706 return TRUE;
2707 }
2708
2709 static int
2710 archive_close_worker (void **slot, void *inf ATTRIBUTE_UNUSED)
2711 {
2712 struct ar_cache *ent = (struct ar_cache *) *slot;
2713
2714 bfd_close_all_done (ent->arbfd);
2715 return 1;
2716 }
2717
2718 bfd_boolean
2719 _bfd_archive_close_and_cleanup (bfd *abfd)
2720 {
2721 if (bfd_read_p (abfd) && abfd->format == bfd_archive)
2722 {
2723 bfd *nbfd;
2724 bfd *next;
2725 htab_t htab;
2726
2727 /* Close nested archives (if this bfd is a thin archive). */
2728 for (nbfd = abfd->nested_archives; nbfd; nbfd = next)
2729 {
2730 next = nbfd->archive_next;
2731 bfd_close (nbfd);
2732 }
2733
2734 htab = bfd_ardata (abfd)->cache;
2735 if (htab)
2736 {
2737 htab_traverse_noresize (htab, archive_close_worker, NULL);
2738 htab_delete (htab);
2739 bfd_ardata (abfd)->cache = NULL;
2740 }
2741 }
2742 else if (arch_eltdata (abfd) != NULL)
2743 {
2744 struct areltdata *ared = arch_eltdata (abfd);
2745 htab_t htab = (htab_t) ared->parent_cache;
2746
2747 if (htab)
2748 {
2749 struct ar_cache ent;
2750 void **slot;
2751
2752 ent.ptr = ared->key;
2753 slot = htab_find_slot (htab, &ent, NO_INSERT);
2754 if (slot != NULL)
2755 {
2756 BFD_ASSERT (((struct ar_cache *) *slot)->arbfd == abfd);
2757 htab_clear_slot (htab, slot);
2758 }
2759 }
2760 }
2761 return TRUE;
2762 }