1 /* BFD back-end for archive files (libraries).
2 Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
3 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011,
4 2012 Free Software Foundation, Inc.
5 Written by Cygnus Support. Mostly Gumby Henkel-Wallace's fault.
7 This file is part of BFD, the Binary File Descriptor library.
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */
24 @setfilename archive-info
29 An archive (or library) is just another BFD. It has a symbol
30 table, although there's not much a user program will do with it.
32 The big difference between an archive BFD and an ordinary BFD
33 is that the archive doesn't have sections. Instead it has a
34 chain of BFDs that are considered its contents. These BFDs can
35 be manipulated like any other. The BFDs contained in an
36 archive opened for reading will all be opened for reading. You
37 may put either input or output BFDs into an archive opened for
38 output; they will be handled correctly when the archive is closed.
40 Use <<bfd_openr_next_archived_file>> to step through
41 the contents of an archive opened for input. You don't
42 have to read the entire archive if you don't want
43 to! Read it until you find what you want.
45 A BFD returned by <<bfd_openr_next_archived_file>> can be
46 closed manually with <<bfd_close>>. If you do not close it,
47 then a second iteration through the members of an archive may
48 return the same BFD. If you close the archive BFD, then all
49 the member BFDs will automatically be closed as well.
51 Archive contents of output BFDs are chained through the
52 <<archive_next>> pointer in a BFD. The first one is findable
53 through the <<archive_head>> slot of the archive. Set it with
54 <<bfd_set_archive_head>> (q.v.). A given BFD may be in only
55 one open output archive at a time.
57 As expected, the BFD archive code is more general than the
58 archive code of any given environment. BFD archives may
59 contain files of different formats (e.g., a.out and coff) and
60 even different architectures. You may even place archives
61 recursively into archives!
63 This can cause unexpected confusion, since some archive
64 formats are more expressive than others. For instance, Intel
65 COFF archives can preserve long filenames; SunOS a.out archives
66 cannot. If you move a file from the first to the second
67 format and back again, the filename may be truncated.
68 Likewise, different a.out environments have different
69 conventions as to how they truncate filenames, whether they
70 preserve directory names in filenames, etc. When
71 interoperating with native tools, be sure your files are
74 Beware: most of these formats do not react well to the
75 presence of spaces in filenames. We do the best we can, but
76 can't always handle this case due to restrictions in the format of
77 archives. Many Unix utilities are braindead in regards to
78 spaces and such in filenames anyway, so this shouldn't be much
81 Archives are supported in BFD in <<archive.c>>.
88 o - all archive elements start on an even boundary, newline padded;
89 o - all arch headers are char *;
90 o - all arch headers are the same size (across architectures).
93 /* Some formats provide a way to cram a long filename into the short
94 (16 chars) space provided by a BSD archive. The trick is: make a
95 special "file" in the front of the archive, sort of like the SYMDEF
96 entry. If the filename is too long to fit, put it in the extended
97 name table, and use its index as the filename. To prevent
98 confusion prepend the index with a space. This means you can't
99 have filenames that start with a space, but then again, many Unix
100 utilities can't handle that anyway.
102 This scheme unfortunately requires that you stand on your head in
103 order to write an archive since you need to put a magic file at the
104 front, and need to touch every entry to do so. C'est la vie.
106 We support two variants of this idea:
107 The SVR4 format (extended name table is named "//"),
108 and an extended pseudo-BSD variant (extended name table is named
109 "ARFILENAMES/"). The origin of the latter format is uncertain.
111 BSD 4.4 uses a third scheme: It writes a long filename
112 directly after the header. This allows 'ar q' to work.
115 /* Summary of archive member names:
117 Symbol table (must be first):
118 "__.SYMDEF " - Symbol table, Berkeley style, produced by ranlib.
119 "/ " - Symbol table, system 5 style.
121 Long name table (must be before regular file members):
122 "// " - Long name table, System 5 R4 style.
123 "ARFILENAMES/ " - Long name table, non-standard extended BSD (not BSD 4.4).
125 Regular file members with short names:
126 "filename.o/ " - Regular file, System 5 style (embedded spaces ok).
127 "filename.o " - Regular file, Berkeley style (no embedded spaces).
129 Regular files with long names (or embedded spaces, for BSD variants):
130 "/18 " - SVR4 style, name at offset 18 in name table.
131 "#1/23 " - Long name (or embedded spaces) 23 characters long,
132 BSD 4.4 style, full name follows header.
133 " 18 " - Long name 18 characters long, extended pseudo-BSD.
138 #include "libiberty.h"
141 #include "aout/ranlib.h"
142 #include "safe-ctype.h"
144 #include "filenames.h"
150 /* We keep a cache of archive filepointers to archive elements to
151 speed up searching the archive by filepos. We only add an entry to
152 the cache when we actually read one. We also don't sort the cache;
153 it's generally short enough to search linearly.
154 Note that the pointers here point to the front of the ar_hdr, not
155 to the front of the contents! */
162 #define ar_padchar(abfd) ((abfd)->xvec->ar_pad_char)
163 #define ar_maxnamelen(abfd) ((abfd)->xvec->ar_max_namelen)
165 #define arch_eltdata(bfd) ((struct areltdata *) ((bfd)->arelt_data))
166 #define arch_hdr(bfd) ((struct ar_hdr *) arch_eltdata (bfd)->arch_header)
168 /* True iff NAME designated a BSD 4.4 extended name. */
170 #define is_bsd44_extended_name(NAME) \
171 (NAME[0] == '#' && NAME[1] == '1' && NAME[2] == '/' && ISDIGIT (NAME[3]))
174 _bfd_ar_spacepad (char *p
, size_t n
, const char *fmt
, long val
)
179 snprintf (buf
, sizeof (buf
), fmt
, val
);
183 memcpy (p
, buf
, len
);
184 memset (p
+ len
, ' ', n
- len
);
191 _bfd_ar_sizepad (char *p
, size_t n
, bfd_size_type size
)
196 snprintf (buf
, sizeof (buf
), "%-10" BFD_VMA_FMT
"u", size
);
200 bfd_set_error (bfd_error_file_too_big
);
205 memcpy (p
, buf
, len
);
206 memset (p
+ len
, ' ', n
- len
);
214 _bfd_generic_mkarchive (bfd
*abfd
)
216 bfd_size_type amt
= sizeof (struct artdata
);
218 abfd
->tdata
.aout_ar_data
= (struct artdata
*) bfd_zalloc (abfd
, amt
);
219 if (bfd_ardata (abfd
) == NULL
)
222 /* Already cleared by bfd_zalloc above.
223 bfd_ardata (abfd)->cache = NULL;
224 bfd_ardata (abfd)->archive_head = NULL;
225 bfd_ardata (abfd)->symdefs = NULL;
226 bfd_ardata (abfd)->extended_names = NULL;
227 bfd_ardata (abfd)->extended_names_size = 0;
228 bfd_ardata (abfd)->tdata = NULL; */
238 symindex bfd_get_next_mapent
239 (bfd *abfd, symindex previous, carsym **sym);
242 Step through archive @var{abfd}'s symbol table (if it
243 has one). Successively update @var{sym} with the next symbol's
244 information, returning that symbol's (internal) index into the
247 Supply <<BFD_NO_MORE_SYMBOLS>> as the @var{previous} entry to get
248 the first one; returns <<BFD_NO_MORE_SYMBOLS>> when you've already
251 A <<carsym>> is a canonical archive symbol. The only
252 user-visible element is its name, a null-terminated string.
256 bfd_get_next_mapent (bfd
*abfd
, symindex prev
, carsym
**entry
)
258 if (!bfd_has_map (abfd
))
260 bfd_set_error (bfd_error_invalid_operation
);
261 return BFD_NO_MORE_SYMBOLS
;
264 if (prev
== BFD_NO_MORE_SYMBOLS
)
268 if (prev
>= bfd_ardata (abfd
)->symdef_count
)
269 return BFD_NO_MORE_SYMBOLS
;
271 *entry
= (bfd_ardata (abfd
)->symdefs
+ prev
);
275 /* To be called by backends only. */
278 _bfd_create_empty_archive_element_shell (bfd
*obfd
)
280 return _bfd_new_bfd_contained_in (obfd
);
288 bfd_boolean bfd_set_archive_head (bfd *output, bfd *new_head);
291 Set the head of the chain of
292 BFDs contained in the archive @var{output} to @var{new_head}.
296 bfd_set_archive_head (bfd
*output_archive
, bfd
*new_head
)
298 output_archive
->archive_head
= new_head
;
303 _bfd_look_for_bfd_in_cache (bfd
*arch_bfd
, file_ptr filepos
)
305 htab_t hash_table
= bfd_ardata (arch_bfd
)->cache
;
312 struct ar_cache
*entry
= (struct ar_cache
*) htab_find (hash_table
, &m
);
323 hash_file_ptr (const void * p
)
325 return (hashval_t
) (((struct ar_cache
*) p
)->ptr
);
328 /* Returns non-zero if P1 and P2 are equal. */
331 eq_file_ptr (const void * p1
, const void * p2
)
333 struct ar_cache
*arc1
= (struct ar_cache
*) p1
;
334 struct ar_cache
*arc2
= (struct ar_cache
*) p2
;
335 return arc1
->ptr
== arc2
->ptr
;
338 /* The calloc function doesn't always take size_t (e.g. on VMS)
339 so wrap it to avoid a compile time warning. */
342 _bfd_calloc_wrapper (size_t a
, size_t b
)
344 return calloc (a
, b
);
347 /* Kind of stupid to call cons for each one, but we don't do too many. */
350 _bfd_add_bfd_to_archive_cache (bfd
*arch_bfd
, file_ptr filepos
, bfd
*new_elt
)
352 struct ar_cache
*cache
;
353 htab_t hash_table
= bfd_ardata (arch_bfd
)->cache
;
355 /* If the hash table hasn't been created, create it. */
356 if (hash_table
== NULL
)
358 hash_table
= htab_create_alloc (16, hash_file_ptr
, eq_file_ptr
,
359 NULL
, _bfd_calloc_wrapper
, free
);
360 if (hash_table
== NULL
)
362 bfd_ardata (arch_bfd
)->cache
= hash_table
;
365 /* Insert new_elt into the hash table by filepos. */
366 cache
= (struct ar_cache
*) bfd_zalloc (arch_bfd
, sizeof (struct ar_cache
));
367 cache
->ptr
= filepos
;
368 cache
->arbfd
= new_elt
;
369 *htab_find_slot (hash_table
, (const void *) cache
, INSERT
) = cache
;
371 /* Provide a means of accessing this from child. */
372 arch_eltdata (new_elt
)->parent_cache
= hash_table
;
373 arch_eltdata (new_elt
)->key
= filepos
;
379 _bfd_find_nested_archive (bfd
*arch_bfd
, const char *filename
)
384 for (abfd
= arch_bfd
->nested_archives
;
386 abfd
= abfd
->archive_next
)
388 if (filename_cmp (filename
, abfd
->filename
) == 0)
392 if (!arch_bfd
->target_defaulted
)
393 target
= arch_bfd
->xvec
->name
;
394 abfd
= bfd_openr (filename
, target
);
397 abfd
->archive_next
= arch_bfd
->nested_archives
;
398 arch_bfd
->nested_archives
= abfd
;
403 /* The name begins with space. Hence the rest of the name is an index into
407 get_extended_arelt_filename (bfd
*arch
, const char *name
, file_ptr
*originp
)
409 unsigned long table_index
= 0;
412 /* Should extract string so that I can guarantee not to overflow into
413 the next region, but I'm too lazy. */
415 /* Skip first char, which is '/' in SVR4 or ' ' in some other variants. */
416 table_index
= strtol (name
+ 1, (char **) &endp
, 10);
417 if (errno
!= 0 || table_index
>= bfd_ardata (arch
)->extended_names_size
)
419 bfd_set_error (bfd_error_malformed_archive
);
422 /* In a thin archive, a member of an archive-within-an-archive
423 will have the offset in the inner archive encoded here. */
424 if (bfd_is_thin_archive (arch
) && endp
!= NULL
&& *endp
== ':')
426 file_ptr origin
= strtol (endp
+ 1, NULL
, 10);
430 bfd_set_error (bfd_error_malformed_archive
);
438 return bfd_ardata (arch
)->extended_names
+ table_index
;
441 /* This functions reads an arch header and returns an areltdata pointer, or
444 Presumes the file pointer is already in the right place (ie pointing
445 to the ar_hdr in the file). Moves the file pointer; on success it
446 should be pointing to the front of the file contents; on failure it
447 could have been moved arbitrarily. */
450 _bfd_generic_read_ar_hdr (bfd
*abfd
)
452 return _bfd_generic_read_ar_hdr_mag (abfd
, NULL
);
455 /* Alpha ECOFF uses an optional different ARFMAG value, so we have a
456 variant of _bfd_generic_read_ar_hdr which accepts a magic string. */
459 _bfd_generic_read_ar_hdr_mag (bfd
*abfd
, const char *mag
)
462 char *hdrp
= (char *) &hdr
;
463 bfd_size_type parsed_size
;
464 struct areltdata
*ared
;
465 char *filename
= NULL
;
466 bfd_size_type namelen
= 0;
467 bfd_size_type allocsize
= sizeof (struct areltdata
) + sizeof (struct ar_hdr
);
470 unsigned int extra_size
= 0;
474 if (bfd_bread (hdrp
, sizeof (struct ar_hdr
), abfd
) != sizeof (struct ar_hdr
))
476 if (bfd_get_error () != bfd_error_system_call
)
477 bfd_set_error (bfd_error_no_more_archived_files
);
480 if (strncmp (hdr
.ar_fmag
, ARFMAG
, 2) != 0
482 || strncmp (hdr
.ar_fmag
, mag
, 2) != 0))
484 bfd_set_error (bfd_error_malformed_archive
);
489 fmag_save
= hdr
.ar_fmag
[0];
491 scan
= sscanf (hdr
.ar_size
, "%" BFD_VMA_FMT
"u", &parsed_size
);
492 hdr
.ar_fmag
[0] = fmag_save
;
495 bfd_set_error (bfd_error_malformed_archive
);
499 /* Extract the filename from the archive - there are two ways to
500 specify an extended name table, either the first char of the
501 name is a space, or it's a slash. */
502 if ((hdr
.ar_name
[0] == '/'
503 || (hdr
.ar_name
[0] == ' '
504 && memchr (hdr
.ar_name
, '/', ar_maxnamelen (abfd
)) == NULL
))
505 && bfd_ardata (abfd
)->extended_names
!= NULL
)
507 filename
= get_extended_arelt_filename (abfd
, hdr
.ar_name
, &origin
);
508 if (filename
== NULL
)
511 /* BSD4.4-style long filename. */
512 else if (is_bsd44_extended_name (hdr
.ar_name
))
514 /* BSD-4.4 extended name */
515 namelen
= atoi (&hdr
.ar_name
[3]);
516 allocsize
+= namelen
+ 1;
517 parsed_size
-= namelen
;
518 extra_size
= namelen
;
520 allocptr
= (char *) bfd_zalloc (abfd
, allocsize
);
521 if (allocptr
== NULL
)
524 + sizeof (struct areltdata
)
525 + sizeof (struct ar_hdr
));
526 if (bfd_bread (filename
, namelen
, abfd
) != namelen
)
528 if (bfd_get_error () != bfd_error_system_call
)
529 bfd_set_error (bfd_error_no_more_archived_files
);
532 filename
[namelen
] = '\0';
536 /* We judge the end of the name by looking for '/' or ' '.
537 Note: The SYSV format (terminated by '/') allows embedded
538 spaces, so only look for ' ' if we don't find '/'. */
541 e
= (char *) memchr (hdr
.ar_name
, '\0', ar_maxnamelen (abfd
));
544 e
= (char *) memchr (hdr
.ar_name
, '/', ar_maxnamelen (abfd
));
546 e
= (char *) memchr (hdr
.ar_name
, ' ', ar_maxnamelen (abfd
));
550 namelen
= e
- hdr
.ar_name
;
553 /* If we didn't find a termination character, then the name
554 must be the entire field. */
555 namelen
= ar_maxnamelen (abfd
);
558 allocsize
+= namelen
+ 1;
563 allocptr
= (char *) bfd_zalloc (abfd
, allocsize
);
564 if (allocptr
== NULL
)
568 ared
= (struct areltdata
*) allocptr
;
570 ared
->arch_header
= allocptr
+ sizeof (struct areltdata
);
571 memcpy (ared
->arch_header
, &hdr
, sizeof (struct ar_hdr
));
572 ared
->parsed_size
= parsed_size
;
573 ared
->extra_size
= extra_size
;
574 ared
->origin
= origin
;
576 if (filename
!= NULL
)
577 ared
->filename
= filename
;
580 ared
->filename
= allocptr
+ (sizeof (struct areltdata
) +
581 sizeof (struct ar_hdr
));
583 memcpy (ared
->filename
, hdr
.ar_name
, namelen
);
584 ared
->filename
[namelen
] = '\0';
590 /* Append the relative pathname for a member of the thin archive
591 to the pathname of the directory containing the archive. */
594 _bfd_append_relative_path (bfd
*arch
, char *elt_name
)
596 const char *arch_name
= arch
->filename
;
597 const char *base_name
= lbasename (arch_name
);
601 if (base_name
== arch_name
)
604 prefix_len
= base_name
- arch_name
;
605 filename
= (char *) bfd_alloc (arch
, prefix_len
+ strlen (elt_name
) + 1);
606 if (filename
== NULL
)
609 strncpy (filename
, arch_name
, prefix_len
);
610 strcpy (filename
+ prefix_len
, elt_name
);
614 /* This is an internal function; it's mainly used when indexing
615 through the archive symbol table, but also used to get the next
616 element, since it handles the bookkeeping so nicely for us. */
619 _bfd_get_elt_at_filepos (bfd
*archive
, file_ptr filepos
)
621 struct areltdata
*new_areldata
;
625 n_nfd
= _bfd_look_for_bfd_in_cache (archive
, filepos
);
629 if (0 > bfd_seek (archive
, filepos
, SEEK_SET
))
632 if ((new_areldata
= (struct areltdata
*) _bfd_read_ar_hdr (archive
)) == NULL
)
635 filename
= new_areldata
->filename
;
637 if (bfd_is_thin_archive (archive
))
641 /* This is a proxy entry for an external file. */
642 if (! IS_ABSOLUTE_PATH (filename
))
644 filename
= _bfd_append_relative_path (archive
, filename
);
645 if (filename
== NULL
)
649 if (new_areldata
->origin
> 0)
651 /* This proxy entry refers to an element of a nested archive.
652 Locate the member of that archive and return a bfd for it. */
653 bfd
*ext_arch
= _bfd_find_nested_archive (archive
, filename
);
656 || ! bfd_check_format (ext_arch
, bfd_archive
))
658 bfd_release (archive
, new_areldata
);
661 n_nfd
= _bfd_get_elt_at_filepos (ext_arch
, new_areldata
->origin
);
664 bfd_release (archive
, new_areldata
);
667 n_nfd
->proxy_origin
= bfd_tell (archive
);
670 /* It's not an element of a nested archive;
671 open the external file as a bfd. */
673 if (!archive
->target_defaulted
)
674 target
= archive
->xvec
->name
;
675 n_nfd
= bfd_openr (filename
, target
);
677 bfd_set_error (bfd_error_malformed_archive
);
681 n_nfd
= _bfd_create_empty_archive_element_shell (archive
);
686 bfd_release (archive
, new_areldata
);
690 n_nfd
->proxy_origin
= bfd_tell (archive
);
692 if (bfd_is_thin_archive (archive
))
698 n_nfd
->origin
= n_nfd
->proxy_origin
;
699 n_nfd
->filename
= filename
;
702 n_nfd
->arelt_data
= new_areldata
;
704 /* Copy BFD_COMPRESS and BFD_DECOMPRESS flags. */
705 n_nfd
->flags
|= archive
->flags
& (BFD_COMPRESS
| BFD_DECOMPRESS
);
707 if (_bfd_add_bfd_to_archive_cache (archive
, filepos
, n_nfd
))
710 bfd_release (archive
, new_areldata
);
714 /* Return the BFD which is referenced by the symbol in ABFD indexed by
715 SYM_INDEX. SYM_INDEX should have been returned by bfd_get_next_mapent. */
718 _bfd_generic_get_elt_at_index (bfd
*abfd
, symindex sym_index
)
722 entry
= bfd_ardata (abfd
)->symdefs
+ sym_index
;
723 return _bfd_get_elt_at_filepos (abfd
, entry
->file_offset
);
728 bfd_openr_next_archived_file
731 bfd *bfd_openr_next_archived_file (bfd *archive, bfd *previous);
734 Provided a BFD, @var{archive}, containing an archive and NULL, open
735 an input BFD on the first contained element and returns that.
736 Subsequent calls should pass
737 the archive and the previous return value to return a created
738 BFD to the next contained element. NULL is returned when there
743 bfd_openr_next_archived_file (bfd
*archive
, bfd
*last_file
)
745 if ((bfd_get_format (archive
) != bfd_archive
)
746 || (archive
->direction
== write_direction
))
748 bfd_set_error (bfd_error_invalid_operation
);
752 return BFD_SEND (archive
,
753 openr_next_archived_file
, (archive
, last_file
));
757 bfd_generic_openr_next_archived_file (bfd
*archive
, bfd
*last_file
)
762 filestart
= bfd_ardata (archive
)->first_file_filepos
;
765 bfd_size_type size
= arelt_size (last_file
);
767 filestart
= last_file
->proxy_origin
;
768 if (! bfd_is_thin_archive (archive
))
770 /* Pad to an even boundary...
771 Note that last_file->origin can be odd in the case of
772 BSD-4.4-style element with a long odd size. */
773 filestart
+= filestart
% 2;
776 return _bfd_get_elt_at_filepos (archive
, filestart
);
780 bfd_generic_archive_p (bfd
*abfd
)
782 struct artdata
*tdata_hold
;
783 char armag
[SARMAG
+ 1];
786 if (bfd_bread (armag
, SARMAG
, abfd
) != SARMAG
)
788 if (bfd_get_error () != bfd_error_system_call
)
789 bfd_set_error (bfd_error_wrong_format
);
793 bfd_is_thin_archive (abfd
) = (strncmp (armag
, ARMAGT
, SARMAG
) == 0);
795 if (strncmp (armag
, ARMAG
, SARMAG
) != 0
796 && strncmp (armag
, ARMAGB
, SARMAG
) != 0
797 && ! bfd_is_thin_archive (abfd
))
800 tdata_hold
= bfd_ardata (abfd
);
802 amt
= sizeof (struct artdata
);
803 bfd_ardata (abfd
) = (struct artdata
*) bfd_zalloc (abfd
, amt
);
804 if (bfd_ardata (abfd
) == NULL
)
806 bfd_ardata (abfd
) = tdata_hold
;
810 bfd_ardata (abfd
)->first_file_filepos
= SARMAG
;
811 /* Cleared by bfd_zalloc above.
812 bfd_ardata (abfd)->cache = NULL;
813 bfd_ardata (abfd)->archive_head = NULL;
814 bfd_ardata (abfd)->symdefs = NULL;
815 bfd_ardata (abfd)->extended_names = NULL;
816 bfd_ardata (abfd)->extended_names_size = 0;
817 bfd_ardata (abfd)->tdata = NULL; */
819 if (!BFD_SEND (abfd
, _bfd_slurp_armap
, (abfd
))
820 || !BFD_SEND (abfd
, _bfd_slurp_extended_name_table
, (abfd
)))
822 if (bfd_get_error () != bfd_error_system_call
)
823 bfd_set_error (bfd_error_wrong_format
);
824 bfd_release (abfd
, bfd_ardata (abfd
));
825 bfd_ardata (abfd
) = tdata_hold
;
829 if (abfd
->target_defaulted
&& bfd_has_map (abfd
))
833 /* This archive has a map, so we may presume that the contents
834 are object files. Make sure that if the first file in the
835 archive can be recognized as an object file, it is for this
836 target. If not, assume that this is the wrong format. If
837 the first file is not an object file, somebody is doing
838 something weird, and we permit it so that ar -t will work.
840 This is done because any normal format will recognize any
841 normal archive, regardless of the format of the object files.
842 We do accept an empty archive. */
844 first
= bfd_openr_next_archived_file (abfd
, NULL
);
847 first
->target_defaulted
= FALSE
;
848 if (bfd_check_format (first
, bfd_object
)
849 && first
->xvec
!= abfd
->xvec
)
851 bfd_set_error (bfd_error_wrong_object_format
);
852 bfd_ardata (abfd
) = tdata_hold
;
855 /* And we ought to close `first' here too. */
862 /* Some constants for a 32 bit BSD archive structure. We do not
863 support 64 bit archives presently; so far as I know, none actually
864 exist. Supporting them would require changing these constants, and
865 changing some H_GET_32 to H_GET_64. */
867 /* The size of an external symdef structure. */
868 #define BSD_SYMDEF_SIZE 8
870 /* The offset from the start of a symdef structure to the file offset. */
871 #define BSD_SYMDEF_OFFSET_SIZE 4
873 /* The size of the symdef count. */
874 #define BSD_SYMDEF_COUNT_SIZE 4
876 /* The size of the string count. */
877 #define BSD_STRING_COUNT_SIZE 4
879 /* Read a BSD-style archive symbol table. Returns FALSE on error,
883 do_slurp_bsd_armap (bfd
*abfd
)
885 struct areltdata
*mapdata
;
886 unsigned int counter
;
887 bfd_byte
*raw_armap
, *rbase
;
888 struct artdata
*ardata
= bfd_ardata (abfd
);
890 bfd_size_type parsed_size
, amt
;
893 mapdata
= (struct areltdata
*) _bfd_read_ar_hdr (abfd
);
896 parsed_size
= mapdata
->parsed_size
;
897 bfd_release (abfd
, mapdata
); /* Don't need it any more. */
899 raw_armap
= (bfd_byte
*) bfd_zalloc (abfd
, parsed_size
);
900 if (raw_armap
== NULL
)
903 if (bfd_bread (raw_armap
, parsed_size
, abfd
) != parsed_size
)
905 if (bfd_get_error () != bfd_error_system_call
)
906 bfd_set_error (bfd_error_malformed_archive
);
908 bfd_release (abfd
, raw_armap
);
912 ardata
->symdef_count
= H_GET_32 (abfd
, raw_armap
) / BSD_SYMDEF_SIZE
;
914 if (ardata
->symdef_count
* BSD_SYMDEF_SIZE
>
915 parsed_size
- BSD_SYMDEF_COUNT_SIZE
)
917 /* Probably we're using the wrong byte ordering. */
918 bfd_set_error (bfd_error_wrong_format
);
923 rbase
= raw_armap
+ BSD_SYMDEF_COUNT_SIZE
;
924 stringbase
= ((char *) rbase
925 + ardata
->symdef_count
* BSD_SYMDEF_SIZE
926 + BSD_STRING_COUNT_SIZE
);
927 amt
= ardata
->symdef_count
* sizeof (carsym
);
928 ardata
->symdefs
= (struct carsym
*) bfd_alloc (abfd
, amt
);
929 if (!ardata
->symdefs
)
932 for (counter
= 0, set
= ardata
->symdefs
;
933 counter
< ardata
->symdef_count
;
934 counter
++, set
++, rbase
+= BSD_SYMDEF_SIZE
)
936 set
->name
= H_GET_32 (abfd
, rbase
) + stringbase
;
937 set
->file_offset
= H_GET_32 (abfd
, rbase
+ BSD_SYMDEF_OFFSET_SIZE
);
940 ardata
->first_file_filepos
= bfd_tell (abfd
);
941 /* Pad to an even boundary if you have to. */
942 ardata
->first_file_filepos
+= (ardata
->first_file_filepos
) % 2;
943 /* FIXME, we should provide some way to free raw_ardata when
944 we are done using the strings from it. For now, it seems
945 to be allocated on an objalloc anyway... */
946 bfd_has_map (abfd
) = TRUE
;
950 /* Read a COFF archive symbol table. Returns FALSE on error, TRUE
954 do_slurp_coff_armap (bfd
*abfd
)
956 struct areltdata
*mapdata
;
957 int *raw_armap
, *rawptr
;
958 struct artdata
*ardata
= bfd_ardata (abfd
);
960 bfd_size_type stringsize
;
961 bfd_size_type parsed_size
;
963 bfd_size_type nsymz
; /* Number of symbols in armap. */
964 bfd_vma (*swap
) (const void *);
965 char int_buf
[sizeof (long)];
966 bfd_size_type carsym_size
, ptrsize
;
969 mapdata
= (struct areltdata
*) _bfd_read_ar_hdr (abfd
);
972 parsed_size
= mapdata
->parsed_size
;
973 bfd_release (abfd
, mapdata
); /* Don't need it any more. */
975 if (bfd_bread (int_buf
, 4, abfd
) != 4)
977 if (bfd_get_error () != bfd_error_system_call
)
978 bfd_set_error (bfd_error_malformed_archive
);
981 /* It seems that all numeric information in a coff archive is always
982 in big endian format, nomatter the host or target. */
984 nsymz
= bfd_getb32 (int_buf
);
985 stringsize
= parsed_size
- (4 * nsymz
) - 4;
987 /* ... except that some archive formats are broken, and it may be our
988 fault - the i960 little endian coff sometimes has big and sometimes
989 little, because our tools changed. Here's a horrible hack to clean
992 if (stringsize
> 0xfffff
993 && bfd_get_arch (abfd
) == bfd_arch_i960
994 && bfd_get_flavour (abfd
) == bfd_target_coff_flavour
)
996 /* This looks dangerous, let's do it the other way around. */
997 nsymz
= bfd_getl32 (int_buf
);
998 stringsize
= parsed_size
- (4 * nsymz
) - 4;
1002 /* The coff armap must be read sequentially. So we construct a
1003 bsd-style one in core all at once, for simplicity. */
1005 if (nsymz
> ~ (bfd_size_type
) 0 / sizeof (carsym
))
1008 carsym_size
= (nsymz
* sizeof (carsym
));
1009 ptrsize
= (4 * nsymz
);
1011 if (carsym_size
+ stringsize
+ 1 <= carsym_size
)
1014 ardata
->symdefs
= (struct carsym
*) bfd_zalloc (abfd
,
1015 carsym_size
+ stringsize
+ 1);
1016 if (ardata
->symdefs
== NULL
)
1018 carsyms
= ardata
->symdefs
;
1019 stringbase
= ((char *) ardata
->symdefs
) + carsym_size
;
1021 /* Allocate and read in the raw offsets. */
1022 raw_armap
= (int *) bfd_alloc (abfd
, ptrsize
);
1023 if (raw_armap
== NULL
)
1024 goto release_symdefs
;
1025 if (bfd_bread (raw_armap
, ptrsize
, abfd
) != ptrsize
1026 || (bfd_bread (stringbase
, stringsize
, abfd
) != stringsize
))
1028 if (bfd_get_error () != bfd_error_system_call
)
1029 bfd_set_error (bfd_error_malformed_archive
);
1030 goto release_raw_armap
;
1033 /* OK, build the carsyms. */
1034 for (i
= 0; i
< nsymz
; i
++)
1036 rawptr
= raw_armap
+ i
;
1037 carsyms
->file_offset
= swap ((bfd_byte
*) rawptr
);
1038 carsyms
->name
= stringbase
;
1039 stringbase
+= strlen (stringbase
) + 1;
1044 ardata
->symdef_count
= nsymz
;
1045 ardata
->first_file_filepos
= bfd_tell (abfd
);
1046 /* Pad to an even boundary if you have to. */
1047 ardata
->first_file_filepos
+= (ardata
->first_file_filepos
) % 2;
1049 bfd_has_map (abfd
) = TRUE
;
1050 bfd_release (abfd
, raw_armap
);
1052 /* Check for a second archive header (as used by PE). */
1054 struct areltdata
*tmp
;
1056 bfd_seek (abfd
, ardata
->first_file_filepos
, SEEK_SET
);
1057 tmp
= (struct areltdata
*) _bfd_read_ar_hdr (abfd
);
1060 if (tmp
->arch_header
[0] == '/'
1061 && tmp
->arch_header
[1] == ' ')
1063 ardata
->first_file_filepos
+=
1064 (tmp
->parsed_size
+ sizeof (struct ar_hdr
) + 1) & ~(unsigned) 1;
1066 bfd_release (abfd
, tmp
);
1073 bfd_release (abfd
, raw_armap
);
1075 bfd_release (abfd
, (ardata
)->symdefs
);
1079 /* This routine can handle either coff-style or bsd-style armaps
1080 (archive symbol table). Returns FALSE on error, TRUE otherwise */
1083 bfd_slurp_armap (bfd
*abfd
)
1086 int i
= bfd_bread (nextname
, 16, abfd
);
1093 if (bfd_seek (abfd
, (file_ptr
) -16, SEEK_CUR
) != 0)
1096 if (CONST_STRNEQ (nextname
, "__.SYMDEF ")
1097 || CONST_STRNEQ (nextname
, "__.SYMDEF/ ")) /* Old Linux archives. */
1098 return do_slurp_bsd_armap (abfd
);
1099 else if (CONST_STRNEQ (nextname
, "/ "))
1100 return do_slurp_coff_armap (abfd
);
1101 else if (CONST_STRNEQ (nextname
, "/SYM64/ "))
1103 /* 64bit ELF (Irix 6) archive. */
1105 extern bfd_boolean
bfd_elf64_archive_slurp_armap (bfd
*);
1106 return bfd_elf64_archive_slurp_armap (abfd
);
1108 bfd_set_error (bfd_error_wrong_format
);
1112 else if (CONST_STRNEQ (nextname
, "#1/20 "))
1114 /* Mach-O has a special name for armap when the map is sorted by name.
1115 However because this name has a space it is slightly more difficult
1120 if (bfd_bread (&hdr
, sizeof (hdr
), abfd
) != sizeof (hdr
))
1122 /* Read the extended name. We know its length. */
1123 if (bfd_bread (extname
, 20, abfd
) != 20)
1125 if (bfd_seek (abfd
, -(file_ptr
) (sizeof (hdr
) + 20), SEEK_CUR
) != 0)
1127 if (CONST_STRNEQ (extname
, "__.SYMDEF SORTED")
1128 || CONST_STRNEQ (extname
, "__.SYMDEF"))
1129 return do_slurp_bsd_armap (abfd
);
1132 bfd_has_map (abfd
) = FALSE
;
1136 /* Returns FALSE on error, TRUE otherwise. */
1137 /* Flavor 2 of a bsd armap, similar to bfd_slurp_bsd_armap except the
1138 header is in a slightly different order and the map name is '/'.
1139 This flavour is used by hp300hpux. */
1141 #define HPUX_SYMDEF_COUNT_SIZE 2
1144 bfd_slurp_bsd_armap_f2 (bfd
*abfd
)
1146 struct areltdata
*mapdata
;
1148 unsigned int counter
;
1149 bfd_byte
*raw_armap
, *rbase
;
1150 struct artdata
*ardata
= bfd_ardata (abfd
);
1152 unsigned int stringsize
;
1156 int i
= bfd_bread (nextname
, 16, abfd
);
1163 /* The archive has at least 16 bytes in it. */
1164 if (bfd_seek (abfd
, (file_ptr
) -16, SEEK_CUR
) != 0)
1167 if (CONST_STRNEQ (nextname
, "__.SYMDEF ")
1168 || CONST_STRNEQ (nextname
, "__.SYMDEF/ ")) /* Old Linux archives. */
1169 return do_slurp_bsd_armap (abfd
);
1171 if (! CONST_STRNEQ (nextname
, "/ "))
1173 bfd_has_map (abfd
) = FALSE
;
1177 mapdata
= (struct areltdata
*) _bfd_read_ar_hdr (abfd
);
1178 if (mapdata
== NULL
)
1181 if (mapdata
->parsed_size
< HPUX_SYMDEF_COUNT_SIZE
+ BSD_STRING_COUNT_SIZE
)
1184 bfd_set_error (bfd_error_wrong_format
);
1186 bfd_release (abfd
, mapdata
);
1189 left
= mapdata
->parsed_size
- HPUX_SYMDEF_COUNT_SIZE
- BSD_STRING_COUNT_SIZE
;
1191 amt
= mapdata
->parsed_size
;
1192 raw_armap
= (bfd_byte
*) bfd_zalloc (abfd
, amt
);
1193 if (raw_armap
== NULL
)
1196 if (bfd_bread (raw_armap
, amt
, abfd
) != amt
)
1198 if (bfd_get_error () != bfd_error_system_call
)
1199 bfd_set_error (bfd_error_malformed_archive
);
1203 ardata
->symdef_count
= H_GET_16 (abfd
, raw_armap
);
1207 stringsize
= H_GET_32 (abfd
, raw_armap
+ HPUX_SYMDEF_COUNT_SIZE
);
1208 if (stringsize
> left
)
1212 /* Skip sym count and string sz. */
1213 stringbase
= ((char *) raw_armap
1214 + HPUX_SYMDEF_COUNT_SIZE
1215 + BSD_STRING_COUNT_SIZE
);
1216 rbase
= (bfd_byte
*) stringbase
+ stringsize
;
1217 amt
= ardata
->symdef_count
* BSD_SYMDEF_SIZE
;
1221 ardata
->symdefs
= (struct carsym
*) bfd_alloc (abfd
, amt
);
1222 if (!ardata
->symdefs
)
1225 for (counter
= 0, set
= ardata
->symdefs
;
1226 counter
< ardata
->symdef_count
;
1227 counter
++, set
++, rbase
+= BSD_SYMDEF_SIZE
)
1229 set
->name
= H_GET_32 (abfd
, rbase
) + stringbase
;
1230 set
->file_offset
= H_GET_32 (abfd
, rbase
+ BSD_SYMDEF_OFFSET_SIZE
);
1233 ardata
->first_file_filepos
= bfd_tell (abfd
);
1234 /* Pad to an even boundary if you have to. */
1235 ardata
->first_file_filepos
+= (ardata
->first_file_filepos
) % 2;
1236 /* FIXME, we should provide some way to free raw_ardata when
1237 we are done using the strings from it. For now, it seems
1238 to be allocated on an objalloc anyway... */
1239 bfd_has_map (abfd
) = TRUE
;
1243 /** Extended name table.
1245 Normally archives support only 14-character filenames.
1247 Intel has extended the format: longer names are stored in a special
1248 element (the first in the archive, or second if there is an armap);
1249 the name in the ar_hdr is replaced by <space><index into filename
1250 element>. Index is the P.R. of an int (decimal). Data General have
1251 extended the format by using the prefix // for the special element. */
1253 /* Returns FALSE on error, TRUE otherwise. */
1256 _bfd_slurp_extended_name_table (bfd
*abfd
)
1259 struct areltdata
*namedata
;
1262 /* FIXME: Formatting sucks here, and in case of failure of BFD_READ,
1263 we probably don't want to return TRUE. */
1264 if (bfd_seek (abfd
, bfd_ardata (abfd
)->first_file_filepos
, SEEK_SET
) != 0)
1267 if (bfd_bread (nextname
, 16, abfd
) == 16)
1269 if (bfd_seek (abfd
, (file_ptr
) -16, SEEK_CUR
) != 0)
1272 if (! CONST_STRNEQ (nextname
, "ARFILENAMES/ ")
1273 && ! CONST_STRNEQ (nextname
, "// "))
1275 bfd_ardata (abfd
)->extended_names
= NULL
;
1276 bfd_ardata (abfd
)->extended_names_size
= 0;
1280 namedata
= (struct areltdata
*) _bfd_read_ar_hdr (abfd
);
1281 if (namedata
== NULL
)
1284 amt
= namedata
->parsed_size
;
1288 bfd_ardata (abfd
)->extended_names_size
= amt
;
1289 bfd_ardata (abfd
)->extended_names
= (char *) bfd_zalloc (abfd
, amt
+ 1);
1290 if (bfd_ardata (abfd
)->extended_names
== NULL
)
1293 bfd_release (abfd
, namedata
);
1297 if (bfd_bread (bfd_ardata (abfd
)->extended_names
, amt
, abfd
) != amt
)
1299 if (bfd_get_error () != bfd_error_system_call
)
1300 bfd_set_error (bfd_error_malformed_archive
);
1301 bfd_release (abfd
, (bfd_ardata (abfd
)->extended_names
));
1302 bfd_ardata (abfd
)->extended_names
= NULL
;
1306 /* Since the archive is supposed to be printable if it contains
1307 text, the entries in the list are newline-padded, not null
1308 padded. In SVR4-style archives, the names also have a
1309 trailing '/'. DOS/NT created archive often have \ in them
1310 We'll fix all problems here.. */
1312 char *ext_names
= bfd_ardata (abfd
)->extended_names
;
1313 char *temp
= ext_names
;
1314 char *limit
= temp
+ namedata
->parsed_size
;
1315 for (; temp
< limit
; ++temp
)
1317 if (*temp
== ARFMAG
[1])
1318 temp
[temp
> ext_names
&& temp
[-1] == '/' ? -1 : 0] = '\0';
1325 /* Pad to an even boundary if you have to. */
1326 bfd_ardata (abfd
)->first_file_filepos
= bfd_tell (abfd
);
1327 bfd_ardata (abfd
)->first_file_filepos
+=
1328 (bfd_ardata (abfd
)->first_file_filepos
) % 2;
1330 /* FIXME, we can't release namedata here because it was allocated
1331 below extended_names on the objalloc... */
1338 /* Return a copy of the stuff in the filename between any :]> and a
1342 normalize (bfd
*abfd
, const char *file
)
1348 first
= file
+ strlen (file
) - 1;
1351 while (first
!= file
)
1355 if (*first
== ':' || *first
== ']' || *first
== '>')
1363 copy
= bfd_alloc (abfd
, last
- first
+ 1);
1367 memcpy (copy
, first
, last
- first
);
1368 copy
[last
- first
] = 0;
1375 normalize (bfd
*abfd ATTRIBUTE_UNUSED
, const char *file
)
1377 return lbasename (file
);
1381 /* Adjust a relative path name based on the reference path.
1384 Relative path Reference path Result
1385 ------------- -------------- ------
1387 foo/bar.o lib.a foo/bar.o
1388 bar.o foo/lib.a ../bar.o
1389 foo/bar.o baz/lib.a ../foo/bar.o
1390 bar.o ../lib.a <parent of current dir>/bar.o
1391 ; ../bar.o ../lib.a bar.o
1392 ; ../bar.o lib.a ../bar.o
1393 foo/bar.o ../lib.a <parent of current dir>/foo/bar.o
1394 bar.o ../../lib.a <grandparent>/<parent>/bar.o
1395 bar.o foo/baz/lib.a ../../bar.o
1397 Note - the semicolons above are there to prevent the BFD chew
1398 utility from interpreting those lines as prototypes to put into
1399 the autogenerated bfd.h header...
1401 Note - the string is returned in a static buffer. */
1404 adjust_relative_path (const char * path
, const char * ref_path
)
1406 static char *pathbuf
= NULL
;
1407 static unsigned int pathbuf_len
= 0;
1413 unsigned int dir_up
= 0;
1414 unsigned int dir_down
= 0;
1416 char * pwd
= getpwd ();
1419 /* Remove symlinks, '.' and '..' from the paths, if possible. */
1420 lpath
= lrealpath (path
);
1421 pathp
= lpath
== NULL
? path
: lpath
;
1423 rpath
= lrealpath (ref_path
);
1424 refp
= rpath
== NULL
? ref_path
: rpath
;
1426 /* Remove common leading path elements. */
1429 const char *e1
= pathp
;
1430 const char *e2
= refp
;
1432 while (*e1
&& ! IS_DIR_SEPARATOR (*e1
))
1434 while (*e2
&& ! IS_DIR_SEPARATOR (*e2
))
1436 if (*e1
== '\0' || *e2
== '\0' || e1
- pathp
!= e2
- refp
1437 || filename_ncmp (pathp
, refp
, e1
- pathp
) != 0)
1443 len
= strlen (pathp
) + 1;
1444 /* For each leading path element in the reference path,
1445 insert "../" into the path. */
1446 for (; *refp
; ++refp
)
1447 if (IS_DIR_SEPARATOR (*refp
))
1449 /* PR 12710: If the path element is "../" then instead of
1450 inserting "../" we need to insert the name of the directory
1451 at the current level. */
1452 if (refp
> ref_path
+ 1
1460 /* If the lrealpath calls above succeeded then we should never
1461 see dir_up and dir_down both being non-zero. */
1467 down
= pwd
+ strlen (pwd
) - 1;
1469 while (dir_down
&& down
> pwd
)
1471 if (IS_DIR_SEPARATOR (*down
))
1474 BFD_ASSERT (dir_down
== 0);
1475 len
+= strlen (down
) + 1;
1480 if (len
> pathbuf_len
)
1482 if (pathbuf
!= NULL
)
1485 pathbuf
= (char *) bfd_malloc (len
);
1486 if (pathbuf
== NULL
)
1492 while (dir_up
-- > 0)
1494 /* FIXME: Support Windows style path separators as well. */
1495 strcpy (newp
, "../");
1500 sprintf (newp
, "%s/%s", down
, pathp
);
1502 strcpy (newp
, pathp
);
1510 /* Build a BFD style extended name table. */
1513 _bfd_archive_bsd_construct_extended_name_table (bfd
*abfd
,
1515 bfd_size_type
*tablen
,
1518 *name
= "ARFILENAMES/";
1519 return _bfd_construct_extended_name_table (abfd
, FALSE
, tabloc
, tablen
);
1522 /* Build an SVR4 style extended name table. */
1525 _bfd_archive_coff_construct_extended_name_table (bfd
*abfd
,
1527 bfd_size_type
*tablen
,
1531 return _bfd_construct_extended_name_table (abfd
, TRUE
, tabloc
, tablen
);
1534 /* Follows archive_head and produces an extended name table if
1535 necessary. Returns (in tabloc) a pointer to an extended name
1536 table, and in tablen the length of the table. If it makes an entry
1537 it clobbers the filename so that the element may be written without
1538 further massage. Returns TRUE if it ran successfully, FALSE if
1539 something went wrong. A successful return may still involve a
1540 zero-length tablen! */
1543 _bfd_construct_extended_name_table (bfd
*abfd
,
1544 bfd_boolean trailing_slash
,
1546 bfd_size_type
*tablen
)
1548 unsigned int maxname
= ar_maxnamelen (abfd
);
1549 bfd_size_type total_namelen
= 0;
1552 const char *last_filename
;
1556 last_filename
= NULL
;
1558 /* Figure out how long the table should be. */
1559 for (current
= abfd
->archive_head
;
1561 current
= current
->archive_next
)
1564 unsigned int thislen
;
1566 if (bfd_is_thin_archive (abfd
))
1568 const char *filename
= current
->filename
;
1570 /* If the element being added is a member of another archive
1571 (i.e., we are flattening), use the containing archive's name. */
1572 if (current
->my_archive
1573 && ! bfd_is_thin_archive (current
->my_archive
))
1574 filename
= current
->my_archive
->filename
;
1576 /* If the path is the same as the previous path seen,
1577 reuse it. This can happen when flattening a thin
1578 archive that contains other archives. */
1579 if (last_filename
&& filename_cmp (last_filename
, filename
) == 0)
1582 last_filename
= filename
;
1584 /* If the path is relative, adjust it relative to
1585 the containing archive. */
1586 if (! IS_ABSOLUTE_PATH (filename
)
1587 && ! IS_ABSOLUTE_PATH (abfd
->filename
))
1588 normal
= adjust_relative_path (filename
, abfd
->filename
);
1592 /* In a thin archive, always store the full pathname
1593 in the extended name table. */
1594 total_namelen
+= strlen (normal
) + 1;
1596 /* Leave room for trailing slash. */
1602 normal
= normalize (current
, current
->filename
);
1606 thislen
= strlen (normal
);
1608 if (thislen
> maxname
1609 && (bfd_get_file_flags (abfd
) & BFD_TRADITIONAL_FORMAT
) != 0)
1612 if (thislen
> maxname
)
1614 /* Add one to leave room for \n. */
1615 total_namelen
+= thislen
+ 1;
1618 /* Leave room for trailing slash. */
1624 struct ar_hdr
*hdr
= arch_hdr (current
);
1625 if (filename_ncmp (normal
, hdr
->ar_name
, thislen
) != 0
1626 || (thislen
< sizeof hdr
->ar_name
1627 && hdr
->ar_name
[thislen
] != ar_padchar (current
)))
1629 /* Must have been using extended format even though it
1630 didn't need to. Fix it to use normal format. */
1631 memcpy (hdr
->ar_name
, normal
, thislen
);
1632 if (thislen
< maxname
1633 || (thislen
== maxname
&& thislen
< sizeof hdr
->ar_name
))
1634 hdr
->ar_name
[thislen
] = ar_padchar (current
);
1639 if (total_namelen
== 0)
1642 *tabloc
= (char *) bfd_zalloc (abfd
, total_namelen
);
1643 if (*tabloc
== NULL
)
1646 *tablen
= total_namelen
;
1649 last_filename
= NULL
;
1652 for (current
= abfd
->archive_head
;
1654 current
= current
->archive_next
)
1657 unsigned int thislen
;
1659 const char *filename
= current
->filename
;
1661 if (bfd_is_thin_archive (abfd
))
1663 /* If the element being added is a member of another archive
1664 (i.e., we are flattening), use the containing archive's name. */
1665 if (current
->my_archive
1666 && ! bfd_is_thin_archive (current
->my_archive
))
1667 filename
= current
->my_archive
->filename
;
1668 /* If the path is the same as the previous path seen,
1669 reuse it. This can happen when flattening a thin
1670 archive that contains other archives.
1671 If the path is relative, adjust it relative to
1672 the containing archive. */
1673 if (last_filename
&& filename_cmp (last_filename
, filename
) == 0)
1674 normal
= last_filename
;
1675 else if (! IS_ABSOLUTE_PATH (filename
)
1676 && ! IS_ABSOLUTE_PATH (abfd
->filename
))
1677 normal
= adjust_relative_path (filename
, abfd
->filename
);
1683 normal
= normalize (current
, filename
);
1688 thislen
= strlen (normal
);
1689 if (thislen
> maxname
|| bfd_is_thin_archive (abfd
))
1691 /* Works for now; may need to be re-engineered if we
1692 encounter an oddball archive format and want to
1693 generalise this hack. */
1694 struct ar_hdr
*hdr
= arch_hdr (current
);
1695 if (normal
== last_filename
)
1696 stroff
= last_stroff
;
1699 strcpy (strptr
, normal
);
1700 if (! trailing_slash
)
1701 strptr
[thislen
] = ARFMAG
[1];
1704 strptr
[thislen
] = '/';
1705 strptr
[thislen
+ 1] = ARFMAG
[1];
1707 stroff
= strptr
- *tabloc
;
1708 last_stroff
= stroff
;
1710 hdr
->ar_name
[0] = ar_padchar (current
);
1711 if (bfd_is_thin_archive (abfd
) && current
->origin
> 0)
1713 int len
= snprintf (hdr
->ar_name
+ 1, maxname
- 1, "%-ld:",
1715 _bfd_ar_spacepad (hdr
->ar_name
+ 1 + len
, maxname
- 1 - len
,
1717 current
->origin
- sizeof (struct ar_hdr
));
1720 _bfd_ar_spacepad (hdr
->ar_name
+ 1, maxname
- 1, "%-ld", stroff
);
1721 if (normal
!= last_filename
)
1723 strptr
+= thislen
+ 1;
1726 last_filename
= filename
;
1734 /* Do not construct an extended name table but transforms name field into
1735 its extended form. */
1738 _bfd_archive_bsd44_construct_extended_name_table (bfd
*abfd
,
1740 bfd_size_type
*tablen
,
1743 unsigned int maxname
= ar_maxnamelen (abfd
);
1750 for (current
= abfd
->archive_head
;
1752 current
= current
->archive_next
)
1754 const char *normal
= normalize (current
, current
->filename
);
1761 for (len
= 0; normal
[len
]; len
++)
1762 if (normal
[len
] == ' ')
1765 if (len
> maxname
|| has_space
)
1767 struct ar_hdr
*hdr
= arch_hdr (current
);
1769 len
= (len
+ 3) & ~3;
1770 arch_eltdata (current
)->extra_size
= len
;
1771 _bfd_ar_spacepad (hdr
->ar_name
, maxname
, "#1/%lu", len
);
1778 /* Write an archive header. */
1781 _bfd_generic_write_ar_hdr (bfd
*archive
, bfd
*abfd
)
1783 struct ar_hdr
*hdr
= arch_hdr (abfd
);
1785 if (bfd_bwrite (hdr
, sizeof (*hdr
), archive
) != sizeof (*hdr
))
1790 /* Write an archive header using BSD4.4 convention. */
1793 _bfd_bsd44_write_ar_hdr (bfd
*archive
, bfd
*abfd
)
1795 struct ar_hdr
*hdr
= arch_hdr (abfd
);
1797 if (is_bsd44_extended_name (hdr
->ar_name
))
1799 /* This is a BSD 4.4 extended name. */
1800 const char *fullname
= normalize (abfd
, abfd
->filename
);
1801 unsigned int len
= strlen (fullname
);
1802 unsigned int padded_len
= (len
+ 3) & ~3;
1804 BFD_ASSERT (padded_len
== arch_eltdata (abfd
)->extra_size
);
1806 if (!_bfd_ar_sizepad (hdr
->ar_size
, sizeof (hdr
->ar_size
),
1807 arch_eltdata (abfd
)->parsed_size
+ padded_len
))
1810 if (bfd_bwrite (hdr
, sizeof (*hdr
), archive
) != sizeof (*hdr
))
1813 if (bfd_bwrite (fullname
, len
, archive
) != len
)
1818 static const char pad
[3] = { 0, 0, 0 };
1820 len
= 4 - (len
& 3);
1821 if (bfd_bwrite (pad
, len
, archive
) != len
)
1827 if (bfd_bwrite (hdr
, sizeof (*hdr
), archive
) != sizeof (*hdr
))
1833 /* A couple of functions for creating ar_hdrs. */
1835 #ifdef HPUX_LARGE_AR_IDS
1836 /* Function to encode large UID/GID values according to HP. */
1839 hpux_uid_gid_encode (char str
[6], long int id
)
1843 str
[5] = '@' + (id
& 3);
1846 for (cnt
= 4; cnt
>= 0; --cnt
, id
>>= 6)
1847 str
[cnt
] = ' ' + (id
& 0x3f);
1849 #endif /* HPUX_LARGE_AR_IDS */
1859 /* Takes a filename, returns an arelt_data for it, or NULL if it can't
1860 make one. The filename must refer to a filename in the filesystem.
1861 The filename field of the ar_hdr will NOT be initialized. If member
1862 is set, and it's an in-memory bfd, we fake it. */
1864 static struct areltdata
*
1865 bfd_ar_hdr_from_filesystem (bfd
*abfd
, const char *filename
, bfd
*member
)
1868 struct areltdata
*ared
;
1872 if (member
&& (member
->flags
& BFD_IN_MEMORY
) != 0)
1874 /* Assume we just "made" the member, and fake it. */
1875 struct bfd_in_memory
*bim
= (struct bfd_in_memory
*) member
->iostream
;
1876 time (&status
.st_mtime
);
1877 status
.st_uid
= getuid ();
1878 status
.st_gid
= getgid ();
1879 status
.st_mode
= 0644;
1880 status
.st_size
= bim
->size
;
1882 else if (stat (filename
, &status
) != 0)
1884 bfd_set_error (bfd_error_system_call
);
1888 /* If the caller requested that the BFD generate deterministic output,
1889 fake values for modification time, UID, GID, and file mode. */
1890 if ((abfd
->flags
& BFD_DETERMINISTIC_OUTPUT
) != 0)
1892 status
.st_mtime
= 0;
1895 status
.st_mode
= 0644;
1898 amt
= sizeof (struct ar_hdr
) + sizeof (struct areltdata
);
1899 ared
= (struct areltdata
*) bfd_zalloc (abfd
, amt
);
1902 hdr
= (struct ar_hdr
*) (((char *) ared
) + sizeof (struct areltdata
));
1904 /* ar headers are space padded, not null padded! */
1905 memset (hdr
, ' ', sizeof (struct ar_hdr
));
1907 _bfd_ar_spacepad (hdr
->ar_date
, sizeof (hdr
->ar_date
), "%-12ld",
1909 #ifdef HPUX_LARGE_AR_IDS
1910 /* HP has a very "special" way to handle UID/GID's with numeric values
1912 if (status
.st_uid
> 99999)
1913 hpux_uid_gid_encode (hdr
->ar_uid
, (long) status
.st_uid
);
1916 _bfd_ar_spacepad (hdr
->ar_uid
, sizeof (hdr
->ar_uid
), "%ld",
1918 #ifdef HPUX_LARGE_AR_IDS
1919 /* HP has a very "special" way to handle UID/GID's with numeric values
1921 if (status
.st_gid
> 99999)
1922 hpux_uid_gid_encode (hdr
->ar_gid
, (long) status
.st_gid
);
1925 _bfd_ar_spacepad (hdr
->ar_gid
, sizeof (hdr
->ar_gid
), "%ld",
1927 _bfd_ar_spacepad (hdr
->ar_mode
, sizeof (hdr
->ar_mode
), "%-8lo",
1929 if (!_bfd_ar_sizepad (hdr
->ar_size
, sizeof (hdr
->ar_size
), status
.st_size
))
1934 memcpy (hdr
->ar_fmag
, ARFMAG
, 2);
1935 ared
->parsed_size
= status
.st_size
;
1936 ared
->arch_header
= (char *) hdr
;
1941 /* Analogous to stat call. */
1944 bfd_generic_stat_arch_elt (bfd
*abfd
, struct stat
*buf
)
1949 if (abfd
->arelt_data
== NULL
)
1951 bfd_set_error (bfd_error_invalid_operation
);
1955 hdr
= arch_hdr (abfd
);
1957 #define foo(arelt, stelt, size) \
1958 buf->stelt = strtol (hdr->arelt, &aloser, size); \
1959 if (aloser == hdr->arelt) \
1962 /* Some platforms support special notations for large IDs. */
1963 #ifdef HPUX_LARGE_AR_IDS
1964 # define foo2(arelt, stelt, size) \
1965 if (hdr->arelt[5] == ' ') \
1967 foo (arelt, stelt, size); \
1972 for (buf->stelt = cnt = 0; cnt < 5; ++cnt) \
1974 if (hdr->arelt[cnt] < ' ' || hdr->arelt[cnt] > ' ' + 0x3f) \
1977 buf->stelt += hdr->arelt[cnt] - ' '; \
1979 if (hdr->arelt[5] < '@' || hdr->arelt[5] > '@' + 3) \
1982 buf->stelt += hdr->arelt[5] - '@'; \
1985 # define foo2(arelt, stelt, size) foo (arelt, stelt, size)
1988 foo (ar_date
, st_mtime
, 10);
1989 foo2 (ar_uid
, st_uid
, 10);
1990 foo2 (ar_gid
, st_gid
, 10);
1991 foo (ar_mode
, st_mode
, 8);
1993 buf
->st_size
= arch_eltdata (abfd
)->parsed_size
;
1999 bfd_dont_truncate_arname (bfd
*abfd
, const char *pathname
, char *arhdr
)
2001 /* FIXME: This interacts unpleasantly with ar's quick-append option.
2002 Fortunately ic960 users will never use that option. Fixing this
2003 is very hard; fortunately I know how to do it and will do so once
2004 intel's release is out the door. */
2006 struct ar_hdr
*hdr
= (struct ar_hdr
*) arhdr
;
2008 const char *filename
;
2009 size_t maxlen
= ar_maxnamelen (abfd
);
2011 if ((bfd_get_file_flags (abfd
) & BFD_TRADITIONAL_FORMAT
) != 0)
2013 bfd_bsd_truncate_arname (abfd
, pathname
, arhdr
);
2017 filename
= normalize (abfd
, pathname
);
2018 if (filename
== NULL
)
2024 length
= strlen (filename
);
2026 if (length
<= maxlen
)
2027 memcpy (hdr
->ar_name
, filename
, length
);
2029 /* Add the padding character if there is room for it. */
2031 || (length
== maxlen
&& length
< sizeof hdr
->ar_name
))
2032 (hdr
->ar_name
)[length
] = ar_padchar (abfd
);
2036 bfd_bsd_truncate_arname (bfd
*abfd
, const char *pathname
, char *arhdr
)
2038 struct ar_hdr
*hdr
= (struct ar_hdr
*) arhdr
;
2040 const char *filename
= lbasename (pathname
);
2041 size_t maxlen
= ar_maxnamelen (abfd
);
2043 length
= strlen (filename
);
2045 if (length
<= maxlen
)
2046 memcpy (hdr
->ar_name
, filename
, length
);
2049 /* pathname: meet procrustes */
2050 memcpy (hdr
->ar_name
, filename
, maxlen
);
2054 if (length
< maxlen
)
2055 (hdr
->ar_name
)[length
] = ar_padchar (abfd
);
2058 /* Store name into ar header. Truncates the name to fit.
2059 1> strip pathname to be just the basename.
2060 2> if it's short enuf to fit, stuff it in.
2061 3> If it doesn't end with .o, truncate it to fit
2062 4> truncate it before the .o, append .o, stuff THAT in. */
2064 /* This is what gnu ar does. It's better but incompatible with the
2068 bfd_gnu_truncate_arname (bfd
*abfd
, const char *pathname
, char *arhdr
)
2070 struct ar_hdr
*hdr
= (struct ar_hdr
*) arhdr
;
2072 const char *filename
= lbasename (pathname
);
2073 size_t maxlen
= ar_maxnamelen (abfd
);
2075 length
= strlen (filename
);
2077 if (length
<= maxlen
)
2078 memcpy (hdr
->ar_name
, filename
, length
);
2081 /* pathname: meet procrustes. */
2082 memcpy (hdr
->ar_name
, filename
, maxlen
);
2083 if ((filename
[length
- 2] == '.') && (filename
[length
- 1] == 'o'))
2085 hdr
->ar_name
[maxlen
- 2] = '.';
2086 hdr
->ar_name
[maxlen
- 1] = 'o';
2092 (hdr
->ar_name
)[length
] = ar_padchar (abfd
);
2095 /* The BFD is open for write and has its format set to bfd_archive. */
2098 _bfd_write_archive_contents (bfd
*arch
)
2101 char *etable
= NULL
;
2102 bfd_size_type elength
= 0;
2103 const char *ename
= NULL
;
2104 bfd_boolean makemap
= bfd_has_map (arch
);
2105 /* If no .o's, don't bother to make a map. */
2106 bfd_boolean hasobjects
= FALSE
;
2107 bfd_size_type wrote
;
2111 /* Verify the viability of all entries; if any of them live in the
2112 filesystem (as opposed to living in an archive open for input)
2113 then construct a fresh ar_hdr for them. */
2114 for (current
= arch
->archive_head
;
2116 current
= current
->archive_next
)
2118 /* This check is checking the bfds for the objects we're reading
2119 from (which are usually either an object file or archive on
2120 disk), not the archive entries we're writing to. We don't
2121 actually create bfds for the archive members, we just copy
2122 them byte-wise when we write out the archive. */
2123 if (bfd_write_p (current
))
2125 bfd_set_error (bfd_error_invalid_operation
);
2128 if (!current
->arelt_data
)
2130 current
->arelt_data
=
2131 bfd_ar_hdr_from_filesystem (arch
, current
->filename
, current
);
2132 if (!current
->arelt_data
)
2135 /* Put in the file name. */
2136 BFD_SEND (arch
, _bfd_truncate_arname
,
2137 (arch
, current
->filename
, (char *) arch_hdr (current
)));
2140 if (makemap
&& ! hasobjects
)
2141 { /* Don't bother if we won't make a map! */
2142 if ((bfd_check_format (current
, bfd_object
)))
2147 if (!BFD_SEND (arch
, _bfd_construct_extended_name_table
,
2148 (arch
, &etable
, &elength
, &ename
)))
2151 if (bfd_seek (arch
, (file_ptr
) 0, SEEK_SET
) != 0)
2154 if (bfd_is_thin_archive (arch
))
2156 wrote
= bfd_bwrite (armag
, SARMAG
, arch
);
2157 if (wrote
!= SARMAG
)
2160 if (makemap
&& hasobjects
)
2162 if (! _bfd_compute_and_write_armap (arch
, (unsigned int) elength
))
2170 memset (&hdr
, ' ', sizeof (struct ar_hdr
));
2171 memcpy (hdr
.ar_name
, ename
, strlen (ename
));
2172 /* Round size up to even number in archive header. */
2173 if (!_bfd_ar_sizepad (hdr
.ar_size
, sizeof (hdr
.ar_size
),
2174 (elength
+ 1) & ~(bfd_size_type
) 1))
2176 memcpy (hdr
.ar_fmag
, ARFMAG
, 2);
2177 if ((bfd_bwrite (&hdr
, sizeof (struct ar_hdr
), arch
)
2178 != sizeof (struct ar_hdr
))
2179 || bfd_bwrite (etable
, elength
, arch
) != elength
)
2181 if ((elength
% 2) == 1)
2183 if (bfd_bwrite (&ARFMAG
[1], 1, arch
) != 1)
2188 for (current
= arch
->archive_head
;
2190 current
= current
->archive_next
)
2192 char buffer
[DEFAULT_BUFFERSIZE
];
2193 bfd_size_type remaining
= arelt_size (current
);
2195 /* Write ar header. */
2196 if (!_bfd_write_ar_hdr (arch
, current
))
2198 if (bfd_is_thin_archive (arch
))
2200 if (bfd_seek (current
, (file_ptr
) 0, SEEK_SET
) != 0)
2205 unsigned int amt
= DEFAULT_BUFFERSIZE
;
2207 if (amt
> remaining
)
2210 if (bfd_bread (buffer
, amt
, current
) != amt
)
2212 if (bfd_get_error () != bfd_error_system_call
)
2213 bfd_set_error (bfd_error_file_truncated
);
2216 if (bfd_bwrite (buffer
, amt
, arch
) != amt
)
2221 if ((arelt_size (current
) % 2) == 1)
2223 if (bfd_bwrite (&ARFMAG
[1], 1, arch
) != 1)
2228 if (makemap
&& hasobjects
)
2230 /* Verify the timestamp in the archive file. If it would not be
2231 accepted by the linker, rewrite it until it would be. If
2232 anything odd happens, break out and just return. (The
2233 Berkeley linker checks the timestamp and refuses to read the
2234 table-of-contents if it is >60 seconds less than the file's
2235 modified-time. That painful hack requires this painful hack. */
2239 if (bfd_update_armap_timestamp (arch
))
2241 (*_bfd_error_handler
)
2242 (_("Warning: writing archive was slow: rewriting timestamp\n"));
2244 while (++tries
< 6);
2250 bfd_set_error (bfd_error_on_input
, current
, bfd_get_error ());
2254 /* Note that the namidx for the first symbol is 0. */
2257 _bfd_compute_and_write_armap (bfd
*arch
, unsigned int elength
)
2259 char *first_name
= NULL
;
2261 file_ptr elt_no
= 0;
2262 struct orl
*map
= NULL
;
2263 unsigned int orl_max
= 1024; /* Fine initial default. */
2264 unsigned int orl_count
= 0;
2266 asymbol
**syms
= NULL
;
2271 /* Dunno if this is the best place for this info... */
2273 elength
+= sizeof (struct ar_hdr
);
2274 elength
+= elength
% 2;
2276 amt
= orl_max
* sizeof (struct orl
);
2277 map
= (struct orl
*) bfd_malloc (amt
);
2281 /* We put the symbol names on the arch objalloc, and then discard
2283 first_name
= (char *) bfd_alloc (arch
, 1);
2284 if (first_name
== NULL
)
2287 /* Drop all the files called __.SYMDEF, we're going to make our own. */
2288 while (arch
->archive_head
2289 && strcmp (arch
->archive_head
->filename
, "__.SYMDEF") == 0)
2290 arch
->archive_head
= arch
->archive_head
->archive_next
;
2292 /* Map over each element. */
2293 for (current
= arch
->archive_head
;
2295 current
= current
->archive_next
, elt_no
++)
2297 if (bfd_check_format (current
, bfd_object
)
2298 && (bfd_get_file_flags (current
) & HAS_SYMS
) != 0)
2304 storage
= bfd_get_symtab_upper_bound (current
);
2310 if (storage
> syms_max
)
2315 syms
= (asymbol
**) bfd_malloc (syms_max
);
2319 symcount
= bfd_canonicalize_symtab (current
, syms
);
2323 /* Now map over all the symbols, picking out the ones we
2325 for (src_count
= 0; src_count
< symcount
; src_count
++)
2327 flagword flags
= (syms
[src_count
])->flags
;
2328 asection
*sec
= syms
[src_count
]->section
;
2330 if (((flags
& (BSF_GLOBAL
2333 | BSF_GNU_UNIQUE
)) != 0
2334 || bfd_is_com_section (sec
))
2335 && ! bfd_is_und_section (sec
))
2337 bfd_size_type namelen
;
2338 struct orl
*new_map
;
2340 /* This symbol will go into the archive header. */
2341 if (orl_count
== orl_max
)
2344 amt
= orl_max
* sizeof (struct orl
);
2345 new_map
= (struct orl
*) bfd_realloc (map
, amt
);
2346 if (new_map
== NULL
)
2352 namelen
= strlen (syms
[src_count
]->name
);
2353 amt
= sizeof (char *);
2354 map
[orl_count
].name
= (char **) bfd_alloc (arch
, amt
);
2355 if (map
[orl_count
].name
== NULL
)
2357 *(map
[orl_count
].name
) = (char *) bfd_alloc (arch
,
2359 if (*(map
[orl_count
].name
) == NULL
)
2361 strcpy (*(map
[orl_count
].name
), syms
[src_count
]->name
);
2362 map
[orl_count
].u
.abfd
= current
;
2363 map
[orl_count
].namidx
= stridx
;
2365 stridx
+= namelen
+ 1;
2371 /* Now ask the BFD to free up any cached information, so we
2372 don't fill all of memory with symbol tables. */
2373 if (! bfd_free_cached_info (current
))
2378 /* OK, now we have collected all the data, let's write them out. */
2379 ret
= BFD_SEND (arch
, write_armap
,
2380 (arch
, elength
, map
, orl_count
, stridx
));
2386 if (first_name
!= NULL
)
2387 bfd_release (arch
, first_name
);
2396 if (first_name
!= NULL
)
2397 bfd_release (arch
, first_name
);
2403 bsd_write_armap (bfd
*arch
,
2404 unsigned int elength
,
2406 unsigned int orl_count
,
2409 int padit
= stridx
& 1;
2410 unsigned int ranlibsize
= orl_count
* BSD_SYMDEF_SIZE
;
2411 unsigned int stringsize
= stridx
+ padit
;
2412 /* Include 8 bytes to store ranlibsize and stringsize in output. */
2413 unsigned int mapsize
= ranlibsize
+ stringsize
+ 8;
2415 bfd
*current
= arch
->archive_head
;
2416 bfd
*last_elt
= current
; /* Last element arch seen. */
2421 file_ptr max_first_real
= 1;
2423 max_first_real
<<= 31;
2425 firstreal
= mapsize
+ elength
+ sizeof (struct ar_hdr
) + SARMAG
;
2427 /* If deterministic, we use 0 as the timestamp in the map.
2428 Some linkers may require that the archive filesystem modification
2429 time is less than (or near to) the archive map timestamp. Those
2430 linkers should not be used with deterministic mode. (GNU ld and
2431 Gold do not have this restriction.) */
2432 bfd_ardata (arch
)->armap_timestamp
= 0;
2435 if ((arch
->flags
& BFD_DETERMINISTIC_OUTPUT
) == 0)
2437 struct stat statbuf
;
2439 if (stat (arch
->filename
, &statbuf
) == 0)
2440 bfd_ardata (arch
)->armap_timestamp
= (statbuf
.st_mtime
2441 + ARMAP_TIME_OFFSET
);
2446 memset (&hdr
, ' ', sizeof (struct ar_hdr
));
2447 memcpy (hdr
.ar_name
, RANLIBMAG
, strlen (RANLIBMAG
));
2448 bfd_ardata (arch
)->armap_datepos
= (SARMAG
2449 + offsetof (struct ar_hdr
, ar_date
[0]));
2450 _bfd_ar_spacepad (hdr
.ar_date
, sizeof (hdr
.ar_date
), "%ld",
2451 bfd_ardata (arch
)->armap_timestamp
);
2452 _bfd_ar_spacepad (hdr
.ar_uid
, sizeof (hdr
.ar_uid
), "%ld", uid
);
2453 _bfd_ar_spacepad (hdr
.ar_gid
, sizeof (hdr
.ar_gid
), "%ld", gid
);
2454 if (!_bfd_ar_sizepad (hdr
.ar_size
, sizeof (hdr
.ar_size
), mapsize
))
2456 memcpy (hdr
.ar_fmag
, ARFMAG
, 2);
2457 if (bfd_bwrite (&hdr
, sizeof (struct ar_hdr
), arch
)
2458 != sizeof (struct ar_hdr
))
2460 H_PUT_32 (arch
, ranlibsize
, temp
);
2461 if (bfd_bwrite (temp
, sizeof (temp
), arch
) != sizeof (temp
))
2464 for (count
= 0; count
< orl_count
; count
++)
2466 bfd_byte buf
[BSD_SYMDEF_SIZE
];
2468 if (map
[count
].u
.abfd
!= last_elt
)
2472 struct areltdata
*ared
= arch_eltdata (current
);
2474 firstreal
+= (ared
->parsed_size
+ ared
->extra_size
2475 + sizeof (struct ar_hdr
));
2476 firstreal
+= firstreal
% 2;
2477 current
= current
->archive_next
;
2479 while (current
!= map
[count
].u
.abfd
);
2482 /* The archive file format only has 4 bytes to store the offset
2483 of the member. Check to make sure that firstreal has not grown
2485 if (firstreal
>= max_first_real
)
2487 bfd_set_error (bfd_error_file_truncated
);
2492 H_PUT_32 (arch
, map
[count
].namidx
, buf
);
2493 H_PUT_32 (arch
, firstreal
, buf
+ BSD_SYMDEF_OFFSET_SIZE
);
2494 if (bfd_bwrite (buf
, BSD_SYMDEF_SIZE
, arch
)
2499 /* Now write the strings themselves. */
2500 H_PUT_32 (arch
, stringsize
, temp
);
2501 if (bfd_bwrite (temp
, sizeof (temp
), arch
) != sizeof (temp
))
2503 for (count
= 0; count
< orl_count
; count
++)
2505 size_t len
= strlen (*map
[count
].name
) + 1;
2507 if (bfd_bwrite (*map
[count
].name
, len
, arch
) != len
)
2511 /* The spec sez this should be a newline. But in order to be
2512 bug-compatible for sun's ar we use a null. */
2515 if (bfd_bwrite ("", 1, arch
) != 1)
2522 /* At the end of archive file handling, update the timestamp in the
2523 file, so the linker will accept it.
2525 Return TRUE if the timestamp was OK, or an unusual problem happened.
2526 Return FALSE if we updated the timestamp. */
2529 _bfd_archive_bsd_update_armap_timestamp (bfd
*arch
)
2531 struct stat archstat
;
2534 /* If creating deterministic archives, just leave the timestamp as-is. */
2535 if ((arch
->flags
& BFD_DETERMINISTIC_OUTPUT
) != 0)
2538 /* Flush writes, get last-write timestamp from file, and compare it
2539 to the timestamp IN the file. */
2541 if (bfd_stat (arch
, &archstat
) == -1)
2543 bfd_perror (_("Reading archive file mod timestamp"));
2545 /* Can't read mod time for some reason. */
2548 if (((long) archstat
.st_mtime
) <= bfd_ardata (arch
)->armap_timestamp
)
2549 /* OK by the linker's rules. */
2552 /* Update the timestamp. */
2553 bfd_ardata (arch
)->armap_timestamp
= archstat
.st_mtime
+ ARMAP_TIME_OFFSET
;
2555 /* Prepare an ASCII version suitable for writing. */
2556 memset (hdr
.ar_date
, ' ', sizeof (hdr
.ar_date
));
2557 _bfd_ar_spacepad (hdr
.ar_date
, sizeof (hdr
.ar_date
), "%ld",
2558 bfd_ardata (arch
)->armap_timestamp
);
2560 /* Write it into the file. */
2561 bfd_ardata (arch
)->armap_datepos
= (SARMAG
2562 + offsetof (struct ar_hdr
, ar_date
[0]));
2563 if (bfd_seek (arch
, bfd_ardata (arch
)->armap_datepos
, SEEK_SET
) != 0
2564 || (bfd_bwrite (hdr
.ar_date
, sizeof (hdr
.ar_date
), arch
)
2565 != sizeof (hdr
.ar_date
)))
2567 bfd_perror (_("Writing updated armap timestamp"));
2569 /* Some error while writing. */
2573 /* We updated the timestamp successfully. */
2577 /* A coff armap looks like :
2579 struct ar_hdr with name = '/'
2581 offset of file for symbol 0
2582 offset of file for symbol 1
2584 offset of file for symbol n-1
2591 coff_write_armap (bfd
*arch
,
2592 unsigned int elength
,
2594 unsigned int symbol_count
,
2597 /* The size of the ranlib is the number of exported symbols in the
2598 archive * the number of bytes in an int, + an int for the count. */
2599 unsigned int ranlibsize
= (symbol_count
* 4) + 4;
2600 unsigned int stringsize
= stridx
;
2601 unsigned int mapsize
= stringsize
+ ranlibsize
;
2602 file_ptr archive_member_file_ptr
;
2603 bfd
*current
= arch
->archive_head
;
2606 int padit
= mapsize
& 1;
2611 /* Work out where the first object file will go in the archive. */
2612 archive_member_file_ptr
= (mapsize
2614 + sizeof (struct ar_hdr
)
2617 memset (&hdr
, ' ', sizeof (struct ar_hdr
));
2618 hdr
.ar_name
[0] = '/';
2619 if (!_bfd_ar_sizepad (hdr
.ar_size
, sizeof (hdr
.ar_size
), mapsize
))
2621 _bfd_ar_spacepad (hdr
.ar_date
, sizeof (hdr
.ar_date
), "%ld",
2622 ((arch
->flags
& BFD_DETERMINISTIC_OUTPUT
) == 0
2623 ? time (NULL
) : 0));
2624 /* This, at least, is what Intel coff sets the values to. */
2625 _bfd_ar_spacepad (hdr
.ar_uid
, sizeof (hdr
.ar_uid
), "%ld", 0);
2626 _bfd_ar_spacepad (hdr
.ar_gid
, sizeof (hdr
.ar_gid
), "%ld", 0);
2627 _bfd_ar_spacepad (hdr
.ar_mode
, sizeof (hdr
.ar_mode
), "%-7lo", 0);
2628 memcpy (hdr
.ar_fmag
, ARFMAG
, 2);
2630 /* Write the ar header for this item and the number of symbols. */
2631 if (bfd_bwrite (&hdr
, sizeof (struct ar_hdr
), arch
)
2632 != sizeof (struct ar_hdr
))
2635 if (!bfd_write_bigendian_4byte_int (arch
, symbol_count
))
2638 /* Two passes, first write the file offsets for each symbol -
2639 remembering that each offset is on a two byte boundary. */
2641 /* Write out the file offset for the file associated with each
2642 symbol, and remember to keep the offsets padded out. */
2644 current
= arch
->archive_head
;
2646 while (current
!= NULL
&& count
< symbol_count
)
2648 /* For each symbol which is used defined in this object, write
2649 out the object file's address in the archive. */
2651 while (count
< symbol_count
&& map
[count
].u
.abfd
== current
)
2653 unsigned int offset
= (unsigned int) archive_member_file_ptr
;
2655 /* Catch an attempt to grow an archive past its 4Gb limit. */
2656 if (archive_member_file_ptr
!= (file_ptr
) offset
)
2658 bfd_set_error (bfd_error_file_truncated
);
2661 if (!bfd_write_bigendian_4byte_int (arch
, offset
))
2665 archive_member_file_ptr
+= sizeof (struct ar_hdr
);
2666 if (! bfd_is_thin_archive (arch
))
2668 /* Add size of this archive entry. */
2669 archive_member_file_ptr
+= arelt_size (current
);
2670 /* Remember about the even alignment. */
2671 archive_member_file_ptr
+= archive_member_file_ptr
% 2;
2673 current
= current
->archive_next
;
2676 /* Now write the strings themselves. */
2677 for (count
= 0; count
< symbol_count
; count
++)
2679 size_t len
= strlen (*map
[count
].name
) + 1;
2681 if (bfd_bwrite (*map
[count
].name
, len
, arch
) != len
)
2685 /* The spec sez this should be a newline. But in order to be
2686 bug-compatible for arc960 we use a null. */
2689 if (bfd_bwrite ("", 1, arch
) != 1)
2697 archive_close_worker (void **slot
, void *inf ATTRIBUTE_UNUSED
)
2699 struct ar_cache
*ent
= (struct ar_cache
*) *slot
;
2701 bfd_close_all_done (ent
->arbfd
);
2706 _bfd_archive_close_and_cleanup (bfd
*abfd
)
2708 if (bfd_read_p (abfd
) && abfd
->format
== bfd_archive
)
2714 /* Close nested archives (if this bfd is a thin archive). */
2715 for (nbfd
= abfd
->nested_archives
; nbfd
; nbfd
= next
)
2717 next
= nbfd
->archive_next
;
2721 htab
= bfd_ardata (abfd
)->cache
;
2724 htab_traverse_noresize (htab
, archive_close_worker
, NULL
);
2726 bfd_ardata (abfd
)->cache
= NULL
;
2729 else if (arch_eltdata (abfd
) != NULL
)
2731 struct areltdata
*ared
= arch_eltdata (abfd
);
2732 htab_t htab
= (htab_t
) ared
->parent_cache
;
2736 struct ar_cache ent
;
2739 ent
.ptr
= ared
->key
;
2740 slot
= htab_find_slot (htab
, &ent
, NO_INSERT
);
2743 BFD_ASSERT (((struct ar_cache
*) *slot
)->arbfd
== abfd
);
2744 htab_clear_slot (htab
, slot
);