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
4 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 Archive contents of output BFDs are chained through the
46 <<next>> pointer in a BFD. The first one is findable through
47 the <<archive_head>> slot of the archive. Set it with
48 <<bfd_set_archive_head>> (q.v.). A given BFD may be in only one
49 open output archive at a time.
51 As expected, the BFD archive code is more general than the
52 archive code of any given environment. BFD archives may
53 contain files of different formats (e.g., a.out and coff) and
54 even different architectures. You may even place archives
55 recursively into archives!
57 This can cause unexpected confusion, since some archive
58 formats are more expressive than others. For instance, Intel
59 COFF archives can preserve long filenames; SunOS a.out archives
60 cannot. If you move a file from the first to the second
61 format and back again, the filename may be truncated.
62 Likewise, different a.out environments have different
63 conventions as to how they truncate filenames, whether they
64 preserve directory names in filenames, etc. When
65 interoperating with native tools, be sure your files are
68 Beware: most of these formats do not react well to the
69 presence of spaces in filenames. We do the best we can, but
70 can't always handle this case due to restrictions in the format of
71 archives. Many Unix utilities are braindead in regards to
72 spaces and such in filenames anyway, so this shouldn't be much
75 Archives are supported in BFD in <<archive.c>>.
82 o - all archive elements start on an even boundary, newline padded;
83 o - all arch headers are char *;
84 o - all arch headers are the same size (across architectures).
87 /* Some formats provide a way to cram a long filename into the short
88 (16 chars) space provided by a BSD archive. The trick is: make a
89 special "file" in the front of the archive, sort of like the SYMDEF
90 entry. If the filename is too long to fit, put it in the extended
91 name table, and use its index as the filename. To prevent
92 confusion prepend the index with a space. This means you can't
93 have filenames that start with a space, but then again, many Unix
94 utilities can't handle that anyway.
96 This scheme unfortunately requires that you stand on your head in
97 order to write an archive since you need to put a magic file at the
98 front, and need to touch every entry to do so. C'est la vie.
100 We support two variants of this idea:
101 The SVR4 format (extended name table is named "//"),
102 and an extended pseudo-BSD variant (extended name table is named
103 "ARFILENAMES/"). The origin of the latter format is uncertain.
105 BSD 4.4 uses a third scheme: It writes a long filename
106 directly after the header. This allows 'ar q' to work.
107 We currently can read BSD 4.4 archives, but not write them.
110 /* Summary of archive member names:
112 Symbol table (must be first):
113 "__.SYMDEF " - Symbol table, Berkeley style, produced by ranlib.
114 "/ " - Symbol table, system 5 style.
116 Long name table (must be before regular file members):
117 "// " - Long name table, System 5 R4 style.
118 "ARFILENAMES/ " - Long name table, non-standard extended BSD (not BSD 4.4).
120 Regular file members with short names:
121 "filename.o/ " - Regular file, System 5 style (embedded spaces ok).
122 "filename.o " - Regular file, Berkeley style (no embedded spaces).
124 Regular files with long names (or embedded spaces, for BSD variants):
125 "/18 " - SVR4 style, name at offset 18 in name table.
126 "#1/23 " - Long name (or embedded spaces) 23 characters long,
127 BSD 4.4 style, full name follows header.
128 Implemented for reading, not writing.
129 " 18 " - Long name 18 characters long, extended pseudo-BSD.
134 #include "libiberty.h"
137 #include "aout/ranlib.h"
138 #include "safe-ctype.h"
140 #include "filenames.h"
146 /* We keep a cache of archive filepointers to archive elements to
147 speed up searching the archive by filepos. We only add an entry to
148 the cache when we actually read one. We also don't sort the cache;
149 it's generally short enough to search linearly.
150 Note that the pointers here point to the front of the ar_hdr, not
151 to the front of the contents! */
157 #define ar_padchar(abfd) ((abfd)->xvec->ar_pad_char)
158 #define ar_maxnamelen(abfd) ((abfd)->xvec->ar_max_namelen)
160 #define arch_eltdata(bfd) ((struct areltdata *) ((bfd)->arelt_data))
162 static const char * normalize (bfd
*, const char *);
164 #define arch_hdr(bfd) ((struct ar_hdr *) arch_eltdata (bfd)->arch_header)
167 _bfd_ar_spacepad (char *p
, size_t n
, const char *fmt
, long val
)
171 snprintf (buf
, sizeof (buf
), fmt
, val
);
175 memcpy (p
, buf
, len
);
176 memset (p
+ len
, ' ', n
- len
);
183 _bfd_generic_mkarchive (bfd
*abfd
)
185 bfd_size_type amt
= sizeof (struct artdata
);
187 abfd
->tdata
.aout_ar_data
= bfd_zalloc (abfd
, amt
);
188 if (bfd_ardata (abfd
) == NULL
)
191 /* Already cleared by bfd_zalloc above.
192 bfd_ardata (abfd)->cache = NULL;
193 bfd_ardata (abfd)->archive_head = NULL;
194 bfd_ardata (abfd)->symdefs = NULL;
195 bfd_ardata (abfd)->extended_names = NULL;
196 bfd_ardata (abfd)->extended_names_size = 0;
197 bfd_ardata (abfd)->tdata = NULL; */
207 symindex bfd_get_next_mapent
208 (bfd *abfd, symindex previous, carsym **sym);
211 Step through archive @var{abfd}'s symbol table (if it
212 has one). Successively update @var{sym} with the next symbol's
213 information, returning that symbol's (internal) index into the
216 Supply <<BFD_NO_MORE_SYMBOLS>> as the @var{previous} entry to get
217 the first one; returns <<BFD_NO_MORE_SYMBOLS>> when you've already
220 A <<carsym>> is a canonical archive symbol. The only
221 user-visible element is its name, a null-terminated string.
225 bfd_get_next_mapent (bfd
*abfd
, symindex prev
, carsym
**entry
)
227 if (!bfd_has_map (abfd
))
229 bfd_set_error (bfd_error_invalid_operation
);
230 return BFD_NO_MORE_SYMBOLS
;
233 if (prev
== BFD_NO_MORE_SYMBOLS
)
237 if (prev
>= bfd_ardata (abfd
)->symdef_count
)
238 return BFD_NO_MORE_SYMBOLS
;
240 *entry
= (bfd_ardata (abfd
)->symdefs
+ prev
);
244 /* To be called by backends only. */
247 _bfd_create_empty_archive_element_shell (bfd
*obfd
)
249 return _bfd_new_bfd_contained_in (obfd
);
257 bfd_boolean bfd_set_archive_head (bfd *output, bfd *new_head);
260 Set the head of the chain of
261 BFDs contained in the archive @var{output} to @var{new_head}.
265 bfd_set_archive_head (bfd
*output_archive
, bfd
*new_head
)
267 output_archive
->archive_head
= new_head
;
272 _bfd_look_for_bfd_in_cache (bfd
*arch_bfd
, file_ptr filepos
)
274 htab_t hash_table
= bfd_ardata (arch_bfd
)->cache
;
280 struct ar_cache
*entry
= (struct ar_cache
*) htab_find (hash_table
, &m
);
291 hash_file_ptr (const PTR p
)
293 return (hashval_t
) (((struct ar_cache
*) p
)->ptr
);
296 /* Returns non-zero if P1 and P2 are equal. */
299 eq_file_ptr (const PTR p1
, const PTR p2
)
301 struct ar_cache
*arc1
= (struct ar_cache
*) p1
;
302 struct ar_cache
*arc2
= (struct ar_cache
*) p2
;
303 return arc1
->ptr
== arc2
->ptr
;
306 /* Kind of stupid to call cons for each one, but we don't do too many. */
309 _bfd_add_bfd_to_archive_cache (bfd
*arch_bfd
, file_ptr filepos
, bfd
*new_elt
)
311 struct ar_cache
*cache
;
312 htab_t hash_table
= bfd_ardata (arch_bfd
)->cache
;
314 /* If the hash table hasn't been created, create it. */
315 if (hash_table
== NULL
)
317 hash_table
= htab_create_alloc (16, hash_file_ptr
, eq_file_ptr
,
319 if (hash_table
== NULL
)
321 bfd_ardata (arch_bfd
)->cache
= hash_table
;
324 /* Insert new_elt into the hash table by filepos. */
325 cache
= bfd_zalloc (arch_bfd
, sizeof (struct ar_cache
));
326 cache
->ptr
= filepos
;
327 cache
->arbfd
= new_elt
;
328 *htab_find_slot (hash_table
, (const void *) cache
, INSERT
) = cache
;
334 _bfd_find_nested_archive (bfd
*arch_bfd
, const char *filename
)
338 for (abfd
= arch_bfd
->nested_archives
;
340 abfd
= abfd
->archive_next
)
342 if (strcmp (filename
, abfd
->filename
) == 0)
345 abfd
= bfd_openr (filename
, NULL
);
348 abfd
->archive_next
= arch_bfd
->nested_archives
;
349 arch_bfd
->nested_archives
= abfd
;
354 /* The name begins with space. Hence the rest of the name is an index into
358 get_extended_arelt_filename (bfd
*arch
, const char *name
, file_ptr
*originp
)
360 unsigned long index
= 0;
363 /* Should extract string so that I can guarantee not to overflow into
364 the next region, but I'm too lazy. */
366 /* Skip first char, which is '/' in SVR4 or ' ' in some other variants. */
367 index
= strtol (name
+ 1, (char **) &endp
, 10);
368 if (errno
!= 0 || index
>= bfd_ardata (arch
)->extended_names_size
)
370 bfd_set_error (bfd_error_malformed_archive
);
373 /* In a thin archive, a member of an archive-within-an-archive
374 will have the offset in the inner archive encoded here. */
375 if (bfd_is_thin_archive (arch
) && endp
!= NULL
&& *endp
== ':')
377 file_ptr origin
= strtol (endp
+ 1, NULL
, 10);
379 if (errno
!= 0 || index
>= bfd_ardata (arch
)->extended_names_size
)
381 bfd_set_error (bfd_error_malformed_archive
);
389 return bfd_ardata (arch
)->extended_names
+ index
;
392 /* This functions reads an arch header and returns an areltdata pointer, or
395 Presumes the file pointer is already in the right place (ie pointing
396 to the ar_hdr in the file). Moves the file pointer; on success it
397 should be pointing to the front of the file contents; on failure it
398 could have been moved arbitrarily. */
401 _bfd_generic_read_ar_hdr (bfd
*abfd
)
403 return _bfd_generic_read_ar_hdr_mag (abfd
, NULL
);
406 /* Alpha ECOFF uses an optional different ARFMAG value, so we have a
407 variant of _bfd_generic_read_ar_hdr which accepts a magic string. */
410 _bfd_generic_read_ar_hdr_mag (bfd
*abfd
, const char *mag
)
413 char *hdrp
= (char *) &hdr
;
415 struct areltdata
*ared
;
416 char *filename
= NULL
;
417 bfd_size_type namelen
= 0;
418 bfd_size_type allocsize
= sizeof (struct areltdata
) + sizeof (struct ar_hdr
);
422 if (bfd_bread (hdrp
, sizeof (struct ar_hdr
), abfd
) != sizeof (struct ar_hdr
))
424 if (bfd_get_error () != bfd_error_system_call
)
425 bfd_set_error (bfd_error_no_more_archived_files
);
428 if (strncmp (hdr
.ar_fmag
, ARFMAG
, 2) != 0
430 || strncmp (hdr
.ar_fmag
, mag
, 2) != 0))
432 bfd_set_error (bfd_error_malformed_archive
);
437 parsed_size
= strtol (hdr
.ar_size
, NULL
, 10);
440 bfd_set_error (bfd_error_malformed_archive
);
444 /* Extract the filename from the archive - there are two ways to
445 specify an extended name table, either the first char of the
446 name is a space, or it's a slash. */
447 if ((hdr
.ar_name
[0] == '/'
448 || (hdr
.ar_name
[0] == ' '
449 && memchr (hdr
.ar_name
, '/', ar_maxnamelen (abfd
)) == NULL
))
450 && bfd_ardata (abfd
)->extended_names
!= NULL
)
452 filename
= get_extended_arelt_filename (abfd
, hdr
.ar_name
, &origin
);
453 if (filename
== NULL
)
456 /* BSD4.4-style long filename.
457 Only implemented for reading, so far! */
458 else if (hdr
.ar_name
[0] == '#'
459 && hdr
.ar_name
[1] == '1'
460 && hdr
.ar_name
[2] == '/'
461 && ISDIGIT (hdr
.ar_name
[3]))
463 /* BSD-4.4 extended name */
464 namelen
= atoi (&hdr
.ar_name
[3]);
465 allocsize
+= namelen
+ 1;
466 parsed_size
-= namelen
;
468 allocptr
= bfd_zalloc (abfd
, allocsize
);
469 if (allocptr
== NULL
)
472 + sizeof (struct areltdata
)
473 + sizeof (struct ar_hdr
));
474 if (bfd_bread (filename
, namelen
, abfd
) != namelen
)
476 if (bfd_get_error () != bfd_error_system_call
)
477 bfd_set_error (bfd_error_no_more_archived_files
);
480 filename
[namelen
] = '\0';
484 /* We judge the end of the name by looking for '/' or ' '.
485 Note: The SYSV format (terminated by '/') allows embedded
486 spaces, so only look for ' ' if we don't find '/'. */
489 e
= memchr (hdr
.ar_name
, '\0', ar_maxnamelen (abfd
));
492 e
= memchr (hdr
.ar_name
, '/', ar_maxnamelen (abfd
));
494 e
= memchr (hdr
.ar_name
, ' ', ar_maxnamelen (abfd
));
498 namelen
= e
- hdr
.ar_name
;
501 /* If we didn't find a termination character, then the name
502 must be the entire field. */
503 namelen
= ar_maxnamelen (abfd
);
506 allocsize
+= namelen
+ 1;
511 allocptr
= bfd_zalloc (abfd
, allocsize
);
512 if (allocptr
== NULL
)
516 ared
= (struct areltdata
*) allocptr
;
518 ared
->arch_header
= allocptr
+ sizeof (struct areltdata
);
519 memcpy (ared
->arch_header
, &hdr
, sizeof (struct ar_hdr
));
520 ared
->parsed_size
= parsed_size
;
521 ared
->origin
= origin
;
523 if (filename
!= NULL
)
524 ared
->filename
= filename
;
527 ared
->filename
= allocptr
+ (sizeof (struct areltdata
) +
528 sizeof (struct ar_hdr
));
530 memcpy (ared
->filename
, hdr
.ar_name
, namelen
);
531 ared
->filename
[namelen
] = '\0';
537 /* Append the relative pathname for a member of the thin archive
538 to the pathname of the directory containing the archive. */
541 append_relative_path (bfd
*arch
, char *elt_name
)
543 const char *arch_name
= arch
->filename
;
544 const char *base_name
= lbasename (arch_name
);
548 if (base_name
== arch_name
)
551 prefix_len
= base_name
- arch_name
;
552 filename
= bfd_alloc (arch
, prefix_len
+ strlen (elt_name
) + 1);
553 if (filename
== NULL
)
556 strncpy (filename
, arch_name
, prefix_len
);
557 strcpy (filename
+ prefix_len
, elt_name
);
561 /* This is an internal function; it's mainly used when indexing
562 through the archive symbol table, but also used to get the next
563 element, since it handles the bookkeeping so nicely for us. */
566 _bfd_get_elt_at_filepos (bfd
*archive
, file_ptr filepos
)
568 struct areltdata
*new_areldata
;
572 if (archive
->my_archive
)
574 filepos
+= archive
->origin
;
575 archive
= archive
->my_archive
;
578 n_nfd
= _bfd_look_for_bfd_in_cache (archive
, filepos
);
582 if (0 > bfd_seek (archive
, filepos
, SEEK_SET
))
585 if ((new_areldata
= _bfd_read_ar_hdr (archive
)) == NULL
)
588 filename
= new_areldata
->filename
;
590 if (bfd_is_thin_archive (archive
))
592 /* This is a proxy entry for an external file. */
593 if (! IS_ABSOLUTE_PATH (filename
))
595 filename
= append_relative_path (archive
, filename
);
596 if (filename
== NULL
)
600 if (new_areldata
->origin
> 0)
602 /* This proxy entry refers to an element of a nested archive.
603 Locate the member of that archive and return a bfd for it. */
604 bfd
*ext_arch
= _bfd_find_nested_archive (archive
, filename
);
607 || ! bfd_check_format (ext_arch
, bfd_archive
))
609 bfd_release (archive
, new_areldata
);
612 n_nfd
= _bfd_get_elt_at_filepos (ext_arch
, new_areldata
->origin
);
615 bfd_release (archive
, new_areldata
);
618 n_nfd
->proxy_origin
= bfd_tell (archive
);
621 /* It's not an element of a nested archive;
622 open the external file as a bfd. */
623 n_nfd
= bfd_openr (filename
, NULL
);
627 n_nfd
= _bfd_create_empty_archive_element_shell (archive
);
632 bfd_release (archive
, new_areldata
);
636 n_nfd
->proxy_origin
= bfd_tell (archive
);
638 if (bfd_is_thin_archive (archive
))
644 n_nfd
->origin
= n_nfd
->proxy_origin
;
645 n_nfd
->filename
= filename
;
648 n_nfd
->arelt_data
= new_areldata
;
650 if (_bfd_add_bfd_to_archive_cache (archive
, filepos
, n_nfd
))
654 /* FIXME: n_nfd isn't allocated in the archive's memory pool.
655 If we reach this point, I think bfd_release will abort. */
656 bfd_release (archive
, n_nfd
);
657 bfd_release (archive
, new_areldata
);
661 /* Return the BFD which is referenced by the symbol in ABFD indexed by
662 INDEX. INDEX should have been returned by bfd_get_next_mapent. */
665 _bfd_generic_get_elt_at_index (bfd
*abfd
, symindex index
)
669 entry
= bfd_ardata (abfd
)->symdefs
+ index
;
670 return _bfd_get_elt_at_filepos (abfd
, entry
->file_offset
);
675 bfd_openr_next_archived_file
678 bfd *bfd_openr_next_archived_file (bfd *archive, bfd *previous);
681 Provided a BFD, @var{archive}, containing an archive and NULL, open
682 an input BFD on the first contained element and returns that.
683 Subsequent calls should pass
684 the archive and the previous return value to return a created
685 BFD to the next contained element. NULL is returned when there
690 bfd_openr_next_archived_file (bfd
*archive
, bfd
*last_file
)
692 if ((bfd_get_format (archive
) != bfd_archive
)
693 || (archive
->direction
== write_direction
))
695 bfd_set_error (bfd_error_invalid_operation
);
699 return BFD_SEND (archive
,
700 openr_next_archived_file
, (archive
, last_file
));
704 bfd_generic_openr_next_archived_file (bfd
*archive
, bfd
*last_file
)
709 filestart
= bfd_ardata (archive
)->first_file_filepos
;
712 unsigned int size
= arelt_size (last_file
);
713 filestart
= last_file
->proxy_origin
;
714 if (! bfd_is_thin_archive (archive
))
716 if (archive
->my_archive
)
717 filestart
-= archive
->origin
;
718 /* Pad to an even boundary...
719 Note that last_file->origin can be odd in the case of
720 BSD-4.4-style element with a long odd size. */
721 if (!strncmp(arch_hdr (last_file
)->ar_name
, "#1/", 3))
722 size
+= strlen(normalize(last_file
, last_file
->filename
));
723 filestart
+= size
% 2;
726 return _bfd_get_elt_at_filepos (archive
, filestart
);
730 bfd_generic_archive_p (bfd
*abfd
)
732 struct artdata
*tdata_hold
;
733 char armag
[SARMAG
+ 1];
736 if (bfd_bread (armag
, SARMAG
, abfd
) != SARMAG
)
738 if (bfd_get_error () != bfd_error_system_call
)
739 bfd_set_error (bfd_error_wrong_format
);
743 bfd_is_thin_archive (abfd
) = (strncmp (armag
, ARMAGT
, SARMAG
) == 0);
745 if (strncmp (armag
, ARMAG
, SARMAG
) != 0
746 && strncmp (armag
, ARMAGB
, SARMAG
) != 0
747 && ! bfd_is_thin_archive (abfd
))
750 tdata_hold
= bfd_ardata (abfd
);
752 amt
= sizeof (struct artdata
);
753 bfd_ardata (abfd
) = bfd_zalloc (abfd
, amt
);
754 if (bfd_ardata (abfd
) == NULL
)
756 bfd_ardata (abfd
) = tdata_hold
;
760 bfd_ardata (abfd
)->first_file_filepos
= SARMAG
;
761 /* Cleared by bfd_zalloc above.
762 bfd_ardata (abfd)->cache = NULL;
763 bfd_ardata (abfd)->archive_head = NULL;
764 bfd_ardata (abfd)->symdefs = NULL;
765 bfd_ardata (abfd)->extended_names = NULL;
766 bfd_ardata (abfd)->extended_names_size = 0;
767 bfd_ardata (abfd)->tdata = NULL; */
769 if (!BFD_SEND (abfd
, _bfd_slurp_armap
, (abfd
))
770 || !BFD_SEND (abfd
, _bfd_slurp_extended_name_table
, (abfd
)))
772 if (bfd_get_error () != bfd_error_system_call
)
773 bfd_set_error (bfd_error_wrong_format
);
774 bfd_release (abfd
, bfd_ardata (abfd
));
775 bfd_ardata (abfd
) = tdata_hold
;
779 if (bfd_has_map (abfd
))
783 /* This archive has a map, so we may presume that the contents
784 are object files. Make sure that if the first file in the
785 archive can be recognized as an object file, it is for this
786 target. If not, assume that this is the wrong format. If
787 the first file is not an object file, somebody is doing
788 something weird, and we permit it so that ar -t will work.
790 This is done because any normal format will recognize any
791 normal archive, regardless of the format of the object files.
792 We do accept an empty archive. */
794 first
= bfd_openr_next_archived_file (abfd
, NULL
);
797 first
->target_defaulted
= FALSE
;
798 if (bfd_check_format (first
, bfd_object
)
799 && first
->xvec
!= abfd
->xvec
)
801 bfd_set_error (bfd_error_wrong_object_format
);
802 bfd_ardata (abfd
) = tdata_hold
;
805 /* And we ought to close `first' here too. */
812 /* Some constants for a 32 bit BSD archive structure. We do not
813 support 64 bit archives presently; so far as I know, none actually
814 exist. Supporting them would require changing these constants, and
815 changing some H_GET_32 to H_GET_64. */
817 /* The size of an external symdef structure. */
818 #define BSD_SYMDEF_SIZE 8
820 /* The offset from the start of a symdef structure to the file offset. */
821 #define BSD_SYMDEF_OFFSET_SIZE 4
823 /* The size of the symdef count. */
824 #define BSD_SYMDEF_COUNT_SIZE 4
826 /* The size of the string count. */
827 #define BSD_STRING_COUNT_SIZE 4
829 /* Read a BSD-style archive symbol table. Returns FALSE on error,
833 do_slurp_bsd_armap (bfd
*abfd
)
835 struct areltdata
*mapdata
;
836 unsigned int counter
;
837 bfd_byte
*raw_armap
, *rbase
;
838 struct artdata
*ardata
= bfd_ardata (abfd
);
840 bfd_size_type parsed_size
, amt
;
843 mapdata
= _bfd_read_ar_hdr (abfd
);
846 parsed_size
= mapdata
->parsed_size
;
847 bfd_release (abfd
, mapdata
); /* Don't need it any more. */
849 raw_armap
= bfd_zalloc (abfd
, parsed_size
);
850 if (raw_armap
== NULL
)
853 if (bfd_bread (raw_armap
, parsed_size
, abfd
) != parsed_size
)
855 if (bfd_get_error () != bfd_error_system_call
)
856 bfd_set_error (bfd_error_malformed_archive
);
858 bfd_release (abfd
, raw_armap
);
862 ardata
->symdef_count
= H_GET_32 (abfd
, raw_armap
) / BSD_SYMDEF_SIZE
;
864 if (ardata
->symdef_count
* BSD_SYMDEF_SIZE
>
865 parsed_size
- BSD_SYMDEF_COUNT_SIZE
)
867 /* Probably we're using the wrong byte ordering. */
868 bfd_set_error (bfd_error_wrong_format
);
873 rbase
= raw_armap
+ BSD_SYMDEF_COUNT_SIZE
;
874 stringbase
= ((char *) rbase
875 + ardata
->symdef_count
* BSD_SYMDEF_SIZE
876 + BSD_STRING_COUNT_SIZE
);
877 amt
= ardata
->symdef_count
* sizeof (carsym
);
878 ardata
->symdefs
= bfd_alloc (abfd
, amt
);
879 if (!ardata
->symdefs
)
882 for (counter
= 0, set
= ardata
->symdefs
;
883 counter
< ardata
->symdef_count
;
884 counter
++, set
++, rbase
+= BSD_SYMDEF_SIZE
)
886 set
->name
= H_GET_32 (abfd
, rbase
) + stringbase
;
887 set
->file_offset
= H_GET_32 (abfd
, rbase
+ BSD_SYMDEF_OFFSET_SIZE
);
890 ardata
->first_file_filepos
= bfd_tell (abfd
);
891 /* Pad to an even boundary if you have to. */
892 ardata
->first_file_filepos
+= (ardata
->first_file_filepos
) % 2;
893 /* FIXME, we should provide some way to free raw_ardata when
894 we are done using the strings from it. For now, it seems
895 to be allocated on an objalloc anyway... */
896 bfd_has_map (abfd
) = TRUE
;
900 /* Read a COFF archive symbol table. Returns FALSE on error, TRUE
904 do_slurp_coff_armap (bfd
*abfd
)
906 struct areltdata
*mapdata
;
907 int *raw_armap
, *rawptr
;
908 struct artdata
*ardata
= bfd_ardata (abfd
);
910 bfd_size_type stringsize
;
911 unsigned int parsed_size
;
913 bfd_size_type nsymz
; /* Number of symbols in armap. */
914 bfd_vma (*swap
) (const void *);
915 char int_buf
[sizeof (long)];
916 bfd_size_type carsym_size
, ptrsize
;
919 mapdata
= _bfd_read_ar_hdr (abfd
);
922 parsed_size
= mapdata
->parsed_size
;
923 bfd_release (abfd
, mapdata
); /* Don't need it any more. */
925 if (bfd_bread (int_buf
, 4, abfd
) != 4)
927 if (bfd_get_error () != bfd_error_system_call
)
928 bfd_set_error (bfd_error_malformed_archive
);
931 /* It seems that all numeric information in a coff archive is always
932 in big endian format, nomatter the host or target. */
934 nsymz
= bfd_getb32 (int_buf
);
935 stringsize
= parsed_size
- (4 * nsymz
) - 4;
937 /* ... except that some archive formats are broken, and it may be our
938 fault - the i960 little endian coff sometimes has big and sometimes
939 little, because our tools changed. Here's a horrible hack to clean
942 if (stringsize
> 0xfffff
943 && bfd_get_arch (abfd
) == bfd_arch_i960
944 && bfd_get_flavour (abfd
) == bfd_target_coff_flavour
)
946 /* This looks dangerous, let's do it the other way around. */
947 nsymz
= bfd_getl32 (int_buf
);
948 stringsize
= parsed_size
- (4 * nsymz
) - 4;
952 /* The coff armap must be read sequentially. So we construct a
953 bsd-style one in core all at once, for simplicity. */
955 if (nsymz
> ~ (bfd_size_type
) 0 / sizeof (carsym
))
958 carsym_size
= (nsymz
* sizeof (carsym
));
959 ptrsize
= (4 * nsymz
);
961 if (carsym_size
+ stringsize
+ 1 <= carsym_size
)
964 ardata
->symdefs
= bfd_zalloc (abfd
, carsym_size
+ stringsize
+ 1);
965 if (ardata
->symdefs
== NULL
)
967 carsyms
= ardata
->symdefs
;
968 stringbase
= ((char *) ardata
->symdefs
) + carsym_size
;
970 /* Allocate and read in the raw offsets. */
971 raw_armap
= bfd_alloc (abfd
, ptrsize
);
972 if (raw_armap
== NULL
)
973 goto release_symdefs
;
974 if (bfd_bread (raw_armap
, ptrsize
, abfd
) != ptrsize
975 || (bfd_bread (stringbase
, stringsize
, abfd
) != stringsize
))
977 if (bfd_get_error () != bfd_error_system_call
)
978 bfd_set_error (bfd_error_malformed_archive
);
979 goto release_raw_armap
;
982 /* OK, build the carsyms. */
983 for (i
= 0; i
< nsymz
; i
++)
985 rawptr
= raw_armap
+ i
;
986 carsyms
->file_offset
= swap ((bfd_byte
*) rawptr
);
987 carsyms
->name
= stringbase
;
988 stringbase
+= strlen (stringbase
) + 1;
993 ardata
->symdef_count
= nsymz
;
994 ardata
->first_file_filepos
= bfd_tell (abfd
);
995 /* Pad to an even boundary if you have to. */
996 ardata
->first_file_filepos
+= (ardata
->first_file_filepos
) % 2;
998 bfd_has_map (abfd
) = TRUE
;
999 bfd_release (abfd
, raw_armap
);
1001 /* Check for a second archive header (as used by PE). */
1003 struct areltdata
*tmp
;
1005 bfd_seek (abfd
, ardata
->first_file_filepos
, SEEK_SET
);
1006 tmp
= _bfd_read_ar_hdr (abfd
);
1009 if (tmp
->arch_header
[0] == '/'
1010 && tmp
->arch_header
[1] == ' ')
1012 ardata
->first_file_filepos
+=
1013 (tmp
->parsed_size
+ sizeof (struct ar_hdr
) + 1) & ~(unsigned) 1;
1015 bfd_release (abfd
, tmp
);
1022 bfd_release (abfd
, raw_armap
);
1024 bfd_release (abfd
, (ardata
)->symdefs
);
1028 /* This routine can handle either coff-style or bsd-style armaps
1029 (archive symbol table). Returns FALSE on error, TRUE otherwise */
1032 bfd_slurp_armap (bfd
*abfd
)
1035 int i
= bfd_bread (nextname
, 16, abfd
);
1042 if (bfd_seek (abfd
, (file_ptr
) -16, SEEK_CUR
) != 0)
1045 if (CONST_STRNEQ (nextname
, "__.SYMDEF ")
1046 || CONST_STRNEQ (nextname
, "__.SYMDEF/ ")) /* Old Linux archives. */
1047 return do_slurp_bsd_armap (abfd
);
1048 else if (CONST_STRNEQ (nextname
, "/ "))
1049 return do_slurp_coff_armap (abfd
);
1050 else if (CONST_STRNEQ (nextname
, "/SYM64/ "))
1052 /* 64bit ELF (Irix 6) archive. */
1054 extern bfd_boolean
bfd_elf64_archive_slurp_armap (bfd
*);
1055 return bfd_elf64_archive_slurp_armap (abfd
);
1057 bfd_set_error (bfd_error_wrong_format
);
1062 bfd_has_map (abfd
) = FALSE
;
1066 /* Returns FALSE on error, TRUE otherwise. */
1067 /* Flavor 2 of a bsd armap, similar to bfd_slurp_bsd_armap except the
1068 header is in a slightly different order and the map name is '/'.
1069 This flavour is used by hp300hpux. */
1071 #define HPUX_SYMDEF_COUNT_SIZE 2
1074 bfd_slurp_bsd_armap_f2 (bfd
*abfd
)
1076 struct areltdata
*mapdata
;
1078 unsigned int counter
;
1079 bfd_byte
*raw_armap
, *rbase
;
1080 struct artdata
*ardata
= bfd_ardata (abfd
);
1082 unsigned int stringsize
;
1085 int i
= bfd_bread (nextname
, 16, abfd
);
1092 /* The archive has at least 16 bytes in it. */
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
);
1100 if (! CONST_STRNEQ (nextname
, "/ "))
1102 bfd_has_map (abfd
) = FALSE
;
1106 mapdata
= _bfd_read_ar_hdr (abfd
);
1107 if (mapdata
== NULL
)
1110 amt
= mapdata
->parsed_size
;
1111 raw_armap
= bfd_zalloc (abfd
, amt
);
1112 if (raw_armap
== NULL
)
1115 bfd_release (abfd
, mapdata
);
1119 if (bfd_bread (raw_armap
, amt
, abfd
) != amt
)
1121 if (bfd_get_error () != bfd_error_system_call
)
1122 bfd_set_error (bfd_error_malformed_archive
);
1124 bfd_release (abfd
, raw_armap
);
1128 ardata
->symdef_count
= H_GET_16 (abfd
, raw_armap
);
1130 if (ardata
->symdef_count
* BSD_SYMDEF_SIZE
1131 > mapdata
->parsed_size
- HPUX_SYMDEF_COUNT_SIZE
)
1133 /* Probably we're using the wrong byte ordering. */
1134 bfd_set_error (bfd_error_wrong_format
);
1140 stringsize
= H_GET_32 (abfd
, raw_armap
+ HPUX_SYMDEF_COUNT_SIZE
);
1141 /* Skip sym count and string sz. */
1142 stringbase
= ((char *) raw_armap
1143 + HPUX_SYMDEF_COUNT_SIZE
1144 + BSD_STRING_COUNT_SIZE
);
1145 rbase
= (bfd_byte
*) stringbase
+ stringsize
;
1146 amt
= ardata
->symdef_count
* BSD_SYMDEF_SIZE
;
1147 ardata
->symdefs
= bfd_alloc (abfd
, amt
);
1148 if (!ardata
->symdefs
)
1151 for (counter
= 0, set
= ardata
->symdefs
;
1152 counter
< ardata
->symdef_count
;
1153 counter
++, set
++, rbase
+= BSD_SYMDEF_SIZE
)
1155 set
->name
= H_GET_32 (abfd
, rbase
) + stringbase
;
1156 set
->file_offset
= H_GET_32 (abfd
, rbase
+ BSD_SYMDEF_OFFSET_SIZE
);
1159 ardata
->first_file_filepos
= bfd_tell (abfd
);
1160 /* Pad to an even boundary if you have to. */
1161 ardata
->first_file_filepos
+= (ardata
->first_file_filepos
) % 2;
1162 /* FIXME, we should provide some way to free raw_ardata when
1163 we are done using the strings from it. For now, it seems
1164 to be allocated on an objalloc anyway... */
1165 bfd_has_map (abfd
) = TRUE
;
1169 /** Extended name table.
1171 Normally archives support only 14-character filenames.
1173 Intel has extended the format: longer names are stored in a special
1174 element (the first in the archive, or second if there is an armap);
1175 the name in the ar_hdr is replaced by <space><index into filename
1176 element>. Index is the P.R. of an int (decimal). Data General have
1177 extended the format by using the prefix // for the special element. */
1179 /* Returns FALSE on error, TRUE otherwise. */
1182 _bfd_slurp_extended_name_table (bfd
*abfd
)
1185 struct areltdata
*namedata
;
1188 /* FIXME: Formatting sucks here, and in case of failure of BFD_READ,
1189 we probably don't want to return TRUE. */
1190 bfd_seek (abfd
, bfd_ardata (abfd
)->first_file_filepos
, SEEK_SET
);
1191 if (bfd_bread (nextname
, 16, abfd
) == 16)
1193 if (bfd_seek (abfd
, (file_ptr
) -16, SEEK_CUR
) != 0)
1196 if (! CONST_STRNEQ (nextname
, "ARFILENAMES/ ")
1197 && ! CONST_STRNEQ (nextname
, "// "))
1199 bfd_ardata (abfd
)->extended_names
= NULL
;
1200 bfd_ardata (abfd
)->extended_names_size
= 0;
1204 namedata
= _bfd_read_ar_hdr (abfd
);
1205 if (namedata
== NULL
)
1208 amt
= namedata
->parsed_size
;
1212 bfd_ardata (abfd
)->extended_names_size
= amt
;
1213 bfd_ardata (abfd
)->extended_names
= bfd_zalloc (abfd
, amt
+ 1);
1214 if (bfd_ardata (abfd
)->extended_names
== NULL
)
1217 bfd_release (abfd
, namedata
);
1221 if (bfd_bread (bfd_ardata (abfd
)->extended_names
, amt
, abfd
) != amt
)
1223 if (bfd_get_error () != bfd_error_system_call
)
1224 bfd_set_error (bfd_error_malformed_archive
);
1225 bfd_release (abfd
, (bfd_ardata (abfd
)->extended_names
));
1226 bfd_ardata (abfd
)->extended_names
= NULL
;
1230 /* Since the archive is supposed to be printable if it contains
1231 text, the entries in the list are newline-padded, not null
1232 padded. In SVR4-style archives, the names also have a
1233 trailing '/'. DOS/NT created archive often have \ in them
1234 We'll fix all problems here.. */
1236 char *ext_names
= bfd_ardata (abfd
)->extended_names
;
1237 char *temp
= ext_names
;
1238 char *limit
= temp
+ namedata
->parsed_size
;
1239 for (; temp
< limit
; ++temp
)
1241 if (*temp
== ARFMAG
[1])
1242 temp
[temp
> ext_names
&& temp
[-1] == '/' ? -1 : 0] = '\0';
1249 /* Pad to an even boundary if you have to. */
1250 bfd_ardata (abfd
)->first_file_filepos
= bfd_tell (abfd
);
1251 bfd_ardata (abfd
)->first_file_filepos
+=
1252 (bfd_ardata (abfd
)->first_file_filepos
) % 2;
1254 /* FIXME, we can't release namedata here because it was allocated
1255 below extended_names on the objalloc... */
1262 /* Return a copy of the stuff in the filename between any :]> and a
1266 normalize (bfd
*abfd
, const char *file
)
1272 first
= file
+ strlen (file
) - 1;
1275 while (first
!= file
)
1279 if (*first
== ':' || *first
== ']' || *first
== '>')
1287 copy
= bfd_alloc (abfd
, last
- first
+ 1);
1291 memcpy (copy
, first
, last
- first
);
1292 copy
[last
- first
] = 0;
1299 normalize (bfd
*abfd ATTRIBUTE_UNUSED
, const char *file
)
1301 const char *filename
= strrchr (file
, '/');
1303 #ifdef HAVE_DOS_BASED_FILE_SYSTEM
1305 /* We could have foo/bar\\baz, or foo\\bar, or d:bar. */
1306 char *bslash
= strrchr (file
, '\\');
1307 if (filename
== NULL
|| (bslash
!= NULL
&& bslash
> filename
))
1309 if (filename
== NULL
&& file
[0] != '\0' && file
[1] == ':')
1310 filename
= file
+ 1;
1313 if (filename
!= NULL
)
1321 /* Adjust a relative path name based on the reference path. */
1324 adjust_relative_path (const char * path
, const char * ref_path
)
1326 static char *pathbuf
= NULL
;
1327 static int pathbuf_len
= 0;
1328 const char *pathp
= path
;
1329 const char *refp
= ref_path
;
1330 int element_count
= 0;
1334 /* Remove common leading path elements. */
1337 const char *e1
= pathp
;
1338 const char *e2
= refp
;
1340 while (*e1
&& ! IS_DIR_SEPARATOR (*e1
))
1342 while (*e2
&& ! IS_DIR_SEPARATOR (*e2
))
1344 if (*e1
== '\0' || *e2
== '\0' || e1
- pathp
!= e2
- refp
1345 || strncmp (pathp
, refp
, e1
- pathp
) != 0)
1351 /* For each leading path element in the reference path,
1352 insert "../" into the path. */
1353 for (; *refp
; ++refp
)
1354 if (IS_DIR_SEPARATOR (*refp
))
1356 len
= 3 * element_count
+ strlen (path
) + 1;
1358 if (len
> pathbuf_len
)
1360 if (pathbuf
!= NULL
)
1363 pathbuf
= bfd_malloc (len
);
1364 if (pathbuf
== NULL
)
1370 while (element_count
-- > 0)
1372 /* FIXME: Support Windows style path separators as well. */
1373 strcpy (newp
, "../");
1376 strcpy (newp
, pathp
);
1381 /* Build a BFD style extended name table. */
1384 _bfd_archive_bsd_construct_extended_name_table (bfd
*abfd
,
1386 bfd_size_type
*tablen
,
1389 *name
= "ARFILENAMES/";
1390 return _bfd_construct_extended_name_table (abfd
, FALSE
, tabloc
, tablen
);
1393 /* Build an SVR4 style extended name table. */
1396 _bfd_archive_coff_construct_extended_name_table (bfd
*abfd
,
1398 bfd_size_type
*tablen
,
1402 return _bfd_construct_extended_name_table (abfd
, TRUE
, tabloc
, tablen
);
1405 /* Follows archive_head and produces an extended name table if
1406 necessary. Returns (in tabloc) a pointer to an extended name
1407 table, and in tablen the length of the table. If it makes an entry
1408 it clobbers the filename so that the element may be written without
1409 further massage. Returns TRUE if it ran successfully, FALSE if
1410 something went wrong. A successful return may still involve a
1411 zero-length tablen! */
1414 _bfd_construct_extended_name_table (bfd
*abfd
,
1415 bfd_boolean trailing_slash
,
1417 bfd_size_type
*tablen
)
1419 unsigned int maxname
= abfd
->xvec
->ar_max_namelen
;
1420 bfd_size_type total_namelen
= 0;
1423 const char *last_filename
;
1427 last_filename
= NULL
;
1429 /* Figure out how long the table should be. */
1430 for (current
= abfd
->archive_head
;
1432 current
= current
->archive_next
)
1435 unsigned int thislen
;
1437 if (bfd_is_thin_archive (abfd
))
1439 const char *filename
= current
->filename
;
1441 /* If the element being added is a member of another archive
1442 (i.e., we are flattening), use the containing archive's name. */
1443 if (current
->my_archive
1444 && ! bfd_is_thin_archive (current
->my_archive
))
1445 filename
= current
->my_archive
->filename
;
1447 /* If the path is the same as the previous path seen,
1448 reuse it. This can happen when flattening a thin
1449 archive that contains other archives. */
1450 if (last_filename
&& strcmp (last_filename
, filename
) == 0)
1453 last_filename
= filename
;
1455 /* If the path is relative, adjust it relative to
1456 the containing archive. */
1457 if (! IS_ABSOLUTE_PATH (filename
)
1458 && ! IS_ABSOLUTE_PATH (abfd
->filename
))
1459 normal
= adjust_relative_path (filename
, abfd
->filename
);
1463 /* In a thin archive, always store the full pathname
1464 in the extended name table. */
1465 total_namelen
+= strlen (normal
) + 1;
1467 /* Leave room for trailing slash. */
1473 normal
= normalize (current
, current
->filename
);
1477 thislen
= strlen (normal
);
1479 if (thislen
> maxname
1480 && (bfd_get_file_flags (abfd
) & BFD_TRADITIONAL_FORMAT
) != 0)
1483 if (thislen
> maxname
)
1485 /* Add one to leave room for \n. */
1486 total_namelen
+= thislen
+ 1;
1489 /* Leave room for trailing slash. */
1495 struct ar_hdr
*hdr
= arch_hdr (current
);
1496 if (strncmp (normal
, hdr
->ar_name
, thislen
) != 0
1497 || (thislen
< sizeof hdr
->ar_name
1498 && hdr
->ar_name
[thislen
] != ar_padchar (current
)))
1500 /* Must have been using extended format even though it
1501 didn't need to. Fix it to use normal format. */
1502 memcpy (hdr
->ar_name
, normal
, thislen
);
1503 if (thislen
< maxname
1504 || (thislen
== maxname
&& thislen
< sizeof hdr
->ar_name
))
1505 hdr
->ar_name
[thislen
] = ar_padchar (current
);
1510 if (total_namelen
== 0)
1513 *tabloc
= bfd_zalloc (abfd
, total_namelen
);
1514 if (*tabloc
== NULL
)
1517 *tablen
= total_namelen
;
1520 last_filename
= NULL
;
1523 for (current
= abfd
->archive_head
;
1525 current
= current
->archive_next
)
1528 unsigned int thislen
;
1530 const char *filename
= current
->filename
;
1532 if (bfd_is_thin_archive (abfd
))
1534 /* If the element being added is a member of another archive
1535 (i.e., we are flattening), use the containing archive's name. */
1536 if (current
->my_archive
1537 && ! bfd_is_thin_archive (current
->my_archive
))
1538 filename
= current
->my_archive
->filename
;
1539 /* If the path is the same as the previous path seen,
1540 reuse it. This can happen when flattening a thin
1541 archive that contains other archives.
1542 If the path is relative, adjust it relative to
1543 the containing archive. */
1544 if (last_filename
&& strcmp (last_filename
, filename
) == 0)
1545 normal
= last_filename
;
1546 else if (! IS_ABSOLUTE_PATH (filename
)
1547 && ! IS_ABSOLUTE_PATH (abfd
->filename
))
1548 normal
= adjust_relative_path (filename
, abfd
->filename
);
1554 normal
= normalize (current
, filename
);
1559 thislen
= strlen (normal
);
1560 if (thislen
> maxname
|| bfd_is_thin_archive (abfd
))
1562 /* Works for now; may need to be re-engineered if we
1563 encounter an oddball archive format and want to
1564 generalise this hack. */
1565 struct ar_hdr
*hdr
= arch_hdr (current
);
1566 if (normal
== last_filename
)
1567 stroff
= last_stroff
;
1570 strcpy (strptr
, normal
);
1571 if (! trailing_slash
)
1572 strptr
[thislen
] = ARFMAG
[1];
1575 strptr
[thislen
] = '/';
1576 strptr
[thislen
+ 1] = ARFMAG
[1];
1578 stroff
= strptr
- *tabloc
;
1579 last_stroff
= stroff
;
1581 hdr
->ar_name
[0] = ar_padchar (current
);
1582 if (bfd_is_thin_archive (abfd
) && current
->origin
> 0)
1584 int len
= snprintf (hdr
->ar_name
+ 1, maxname
- 1, "%-ld:",
1586 _bfd_ar_spacepad (hdr
->ar_name
+ 1 + len
, maxname
- 1 - len
,
1588 current
->origin
- sizeof (struct ar_hdr
));
1591 _bfd_ar_spacepad (hdr
->ar_name
+ 1, maxname
- 1, "%-ld", stroff
);
1592 if (normal
!= last_filename
)
1594 strptr
+= thislen
+ 1;
1597 last_filename
= filename
;
1605 /* A couple of functions for creating ar_hdrs. */
1607 #ifdef HPUX_LARGE_AR_IDS
1608 /* Function to encode large UID/GID values according to HP. */
1611 hpux_uid_gid_encode (char str
[6], long int id
)
1615 str
[5] = '@' + (id
& 3);
1618 for (cnt
= 4; cnt
>= 0; --cnt
, id
>>= 6)
1619 str
[cnt
] = ' ' + (id
& 0x3f);
1621 #endif /* HPUX_LARGE_AR_IDS */
1631 /* Takes a filename, returns an arelt_data for it, or NULL if it can't
1632 make one. The filename must refer to a filename in the filesystem.
1633 The filename field of the ar_hdr will NOT be initialized. If member
1634 is set, and it's an in-memory bfd, we fake it. */
1636 static struct areltdata
*
1637 bfd_ar_hdr_from_filesystem (bfd
*abfd
, const char *filename
, bfd
*member
)
1640 struct areltdata
*ared
;
1644 if (member
&& (member
->flags
& BFD_IN_MEMORY
) != 0)
1646 /* Assume we just "made" the member, and fake it. */
1647 struct bfd_in_memory
*bim
= member
->iostream
;
1648 time (&status
.st_mtime
);
1649 status
.st_uid
= getuid ();
1650 status
.st_gid
= getgid ();
1651 status
.st_mode
= 0644;
1652 status
.st_size
= bim
->size
;
1654 else if (stat (filename
, &status
) != 0)
1656 bfd_set_error (bfd_error_system_call
);
1660 /* If the caller requested that the BFD generate deterministic output,
1661 fake values for modification time, UID, GID, and file mode. */
1662 if ((abfd
->flags
& BFD_DETERMINISTIC_OUTPUT
) != 0)
1664 status
.st_mtime
= 0;
1667 status
.st_mode
= 0644;
1670 amt
= sizeof (struct ar_hdr
) + sizeof (struct areltdata
);
1671 ared
= bfd_zalloc (abfd
, amt
);
1674 hdr
= (struct ar_hdr
*) (((char *) ared
) + sizeof (struct areltdata
));
1676 /* ar headers are space padded, not null padded! */
1677 memset (hdr
, ' ', sizeof (struct ar_hdr
));
1679 _bfd_ar_spacepad (hdr
->ar_date
, sizeof (hdr
->ar_date
), "%-12ld",
1681 #ifdef HPUX_LARGE_AR_IDS
1682 /* HP has a very "special" way to handle UID/GID's with numeric values
1684 if (status
.st_uid
> 99999)
1685 hpux_uid_gid_encode (hdr
->ar_uid
, (long) status
.st_uid
);
1688 _bfd_ar_spacepad (hdr
->ar_uid
, sizeof (hdr
->ar_uid
), "%ld",
1690 #ifdef HPUX_LARGE_AR_IDS
1691 /* HP has a very "special" way to handle UID/GID's with numeric values
1693 if (status
.st_gid
> 99999)
1694 hpux_uid_gid_encode (hdr
->ar_gid
, (long) status
.st_gid
);
1697 _bfd_ar_spacepad (hdr
->ar_gid
, sizeof (hdr
->ar_gid
), "%ld",
1699 _bfd_ar_spacepad (hdr
->ar_mode
, sizeof (hdr
->ar_mode
), "%-8lo",
1701 _bfd_ar_spacepad (hdr
->ar_size
, sizeof (hdr
->ar_size
), "%-10ld",
1703 memcpy (hdr
->ar_fmag
, ARFMAG
, 2);
1704 ared
->parsed_size
= status
.st_size
;
1705 ared
->arch_header
= (char *) hdr
;
1710 /* This is magic required by the "ar" program. Since it's
1711 undocumented, it's undocumented. You may think that it would take
1712 a strong stomach to write this, and it does, but it takes even a
1713 stronger stomach to try to code around such a thing! */
1715 struct ar_hdr
*bfd_special_undocumented_glue (bfd
*, const char *);
1718 bfd_special_undocumented_glue (bfd
*abfd
, const char *filename
)
1720 struct areltdata
*ar_elt
= bfd_ar_hdr_from_filesystem (abfd
, filename
, 0);
1723 return (struct ar_hdr
*) ar_elt
->arch_header
;
1726 /* Analogous to stat call. */
1729 bfd_generic_stat_arch_elt (bfd
*abfd
, struct stat
*buf
)
1734 if (abfd
->arelt_data
== NULL
)
1736 bfd_set_error (bfd_error_invalid_operation
);
1740 hdr
= arch_hdr (abfd
);
1742 #define foo(arelt, stelt, size) \
1743 buf->stelt = strtol (hdr->arelt, &aloser, size); \
1744 if (aloser == hdr->arelt) \
1747 /* Some platforms support special notations for large IDs. */
1748 #ifdef HPUX_LARGE_AR_IDS
1749 # define foo2(arelt, stelt, size) \
1750 if (hdr->arelt[5] == ' ') \
1752 foo (arelt, stelt, size); \
1757 for (buf->stelt = cnt = 0; cnt < 5; ++cnt) \
1759 if (hdr->arelt[cnt] < ' ' || hdr->arelt[cnt] > ' ' + 0x3f) \
1762 buf->stelt += hdr->arelt[cnt] - ' '; \
1764 if (hdr->arelt[5] < '@' || hdr->arelt[5] > '@' + 3) \
1767 buf->stelt += hdr->arelt[5] - '@'; \
1770 # define foo2(arelt, stelt, size) foo (arelt, stelt, size)
1773 foo (ar_date
, st_mtime
, 10);
1774 foo2 (ar_uid
, st_uid
, 10);
1775 foo2 (ar_gid
, st_gid
, 10);
1776 foo (ar_mode
, st_mode
, 8);
1778 buf
->st_size
= arch_eltdata (abfd
)->parsed_size
;
1784 bfd_dont_truncate_arname (bfd
*abfd
, const char *pathname
, char *arhdr
)
1786 /* FIXME: This interacts unpleasantly with ar's quick-append option.
1787 Fortunately ic960 users will never use that option. Fixing this
1788 is very hard; fortunately I know how to do it and will do so once
1789 intel's release is out the door. */
1791 struct ar_hdr
*hdr
= (struct ar_hdr
*) arhdr
;
1793 const char *filename
;
1794 size_t maxlen
= ar_maxnamelen (abfd
);
1796 if ((bfd_get_file_flags (abfd
) & BFD_TRADITIONAL_FORMAT
) != 0)
1798 bfd_bsd_truncate_arname (abfd
, pathname
, arhdr
);
1802 filename
= normalize (abfd
, pathname
);
1803 if (filename
== NULL
)
1809 length
= strlen (filename
);
1811 if (length
<= maxlen
)
1812 memcpy (hdr
->ar_name
, filename
, length
);
1814 /* Add the padding character if there is room for it. */
1816 || (length
== maxlen
&& length
< sizeof hdr
->ar_name
))
1817 (hdr
->ar_name
)[length
] = ar_padchar (abfd
);
1821 bfd_bsd_truncate_arname (bfd
*abfd
, const char *pathname
, char *arhdr
)
1823 struct ar_hdr
*hdr
= (struct ar_hdr
*) arhdr
;
1825 const char *filename
= strrchr (pathname
, '/');
1826 size_t maxlen
= ar_maxnamelen (abfd
);
1828 #ifdef HAVE_DOS_BASED_FILE_SYSTEM
1830 /* We could have foo/bar\\baz, or foo\\bar, or d:bar. */
1831 char *bslash
= strrchr (pathname
, '\\');
1832 if (filename
== NULL
|| (bslash
!= NULL
&& bslash
> filename
))
1834 if (filename
== NULL
&& pathname
[0] != '\0' && pathname
[1] == ':')
1835 filename
= pathname
+ 1;
1839 if (filename
== NULL
)
1840 filename
= pathname
;
1844 length
= strlen (filename
);
1846 if (length
<= maxlen
)
1847 memcpy (hdr
->ar_name
, filename
, length
);
1850 /* pathname: meet procrustes */
1851 memcpy (hdr
->ar_name
, filename
, maxlen
);
1855 if (length
< maxlen
)
1856 (hdr
->ar_name
)[length
] = ar_padchar (abfd
);
1859 /* Store name into ar header. Truncates the name to fit.
1860 1> strip pathname to be just the basename.
1861 2> if it's short enuf to fit, stuff it in.
1862 3> If it doesn't end with .o, truncate it to fit
1863 4> truncate it before the .o, append .o, stuff THAT in. */
1865 /* This is what gnu ar does. It's better but incompatible with the
1869 bfd_gnu_truncate_arname (bfd
*abfd
, const char *pathname
, char *arhdr
)
1871 struct ar_hdr
*hdr
= (struct ar_hdr
*) arhdr
;
1873 const char *filename
= strrchr (pathname
, '/');
1874 size_t maxlen
= ar_maxnamelen (abfd
);
1876 #ifdef HAVE_DOS_BASED_FILE_SYSTEM
1878 /* We could have foo/bar\\baz, or foo\\bar, or d:bar. */
1879 char *bslash
= strrchr (pathname
, '\\');
1881 if (filename
== NULL
|| (bslash
!= NULL
&& bslash
> filename
))
1883 if (filename
== NULL
&& pathname
[0] != '\0' && pathname
[1] == ':')
1884 filename
= pathname
+ 1;
1888 if (filename
== NULL
)
1889 filename
= pathname
;
1893 length
= strlen (filename
);
1895 if (length
<= maxlen
)
1896 memcpy (hdr
->ar_name
, filename
, length
);
1899 /* pathname: meet procrustes. */
1900 memcpy (hdr
->ar_name
, filename
, maxlen
);
1901 if ((filename
[length
- 2] == '.') && (filename
[length
- 1] == 'o'))
1903 hdr
->ar_name
[maxlen
- 2] = '.';
1904 hdr
->ar_name
[maxlen
- 1] = 'o';
1910 (hdr
->ar_name
)[length
] = ar_padchar (abfd
);
1913 /* The BFD is open for write and has its format set to bfd_archive. */
1916 _bfd_write_archive_contents (bfd
*arch
)
1919 char *etable
= NULL
;
1920 bfd_size_type elength
= 0;
1921 const char *ename
= NULL
;
1922 bfd_boolean makemap
= bfd_has_map (arch
);
1923 /* If no .o's, don't bother to make a map. */
1924 bfd_boolean hasobjects
= FALSE
;
1925 bfd_size_type wrote
;
1929 /* Verify the viability of all entries; if any of them live in the
1930 filesystem (as opposed to living in an archive open for input)
1931 then construct a fresh ar_hdr for them. */
1932 for (current
= arch
->archive_head
;
1934 current
= current
->archive_next
)
1936 /* This check is checking the bfds for the objects we're reading
1937 from (which are usually either an object file or archive on
1938 disk), not the archive entries we're writing to. We don't
1939 actually create bfds for the archive members, we just copy
1940 them byte-wise when we write out the archive. */
1941 if (bfd_write_p (current
))
1943 bfd_set_error (bfd_error_invalid_operation
);
1946 if (!current
->arelt_data
)
1948 current
->arelt_data
=
1949 bfd_ar_hdr_from_filesystem (arch
, current
->filename
, current
);
1950 if (!current
->arelt_data
)
1953 /* Put in the file name. */
1954 BFD_SEND (arch
, _bfd_truncate_arname
,
1955 (arch
, current
->filename
, (char *) arch_hdr (current
)));
1958 if (makemap
&& ! hasobjects
)
1959 { /* Don't bother if we won't make a map! */
1960 if ((bfd_check_format (current
, bfd_object
)))
1965 if (!BFD_SEND (arch
, _bfd_construct_extended_name_table
,
1966 (arch
, &etable
, &elength
, &ename
)))
1969 if (bfd_seek (arch
, (file_ptr
) 0, SEEK_SET
) != 0)
1972 if (bfd_is_thin_archive (arch
))
1974 wrote
= bfd_bwrite (armag
, SARMAG
, arch
);
1975 if (wrote
!= SARMAG
)
1978 if (makemap
&& hasobjects
)
1980 if (! _bfd_compute_and_write_armap (arch
, (unsigned int) elength
))
1988 memset (&hdr
, ' ', sizeof (struct ar_hdr
));
1989 memcpy (hdr
.ar_name
, ename
, strlen (ename
));
1990 /* Round size up to even number in archive header. */
1991 _bfd_ar_spacepad (hdr
.ar_size
, sizeof (hdr
.ar_size
), "%-10ld",
1992 (elength
+ 1) & ~(bfd_size_type
) 1);
1993 memcpy (hdr
.ar_fmag
, ARFMAG
, 2);
1994 if ((bfd_bwrite (&hdr
, sizeof (struct ar_hdr
), arch
)
1995 != sizeof (struct ar_hdr
))
1996 || bfd_bwrite (etable
, elength
, arch
) != elength
)
1998 if ((elength
% 2) == 1)
2000 if (bfd_bwrite (&ARFMAG
[1], 1, arch
) != 1)
2005 for (current
= arch
->archive_head
;
2007 current
= current
->archive_next
)
2009 char buffer
[DEFAULT_BUFFERSIZE
];
2010 unsigned int saved_size
= arelt_size (current
);
2011 unsigned int remaining
= saved_size
;
2012 struct ar_hdr
*hdr
= arch_hdr (current
);
2014 /* Write ar header. */
2015 if (bfd_bwrite (hdr
, sizeof (*hdr
), arch
)
2018 /* Write filename if it is a 4.4BSD extended file, and add to size. */
2019 if (!strncmp (hdr
->ar_name
, "#1/", 3))
2021 const char *normal
= normalize (current
, current
->filename
);
2022 unsigned int thislen
= strlen (normal
);
2023 if (bfd_write (normal
, 1, thislen
, arch
) != thislen
)
2025 saved_size
+= thislen
;
2027 if (bfd_is_thin_archive (arch
))
2029 if (bfd_seek (current
, (file_ptr
) 0, SEEK_SET
) != 0)
2034 unsigned int amt
= DEFAULT_BUFFERSIZE
;
2036 if (amt
> remaining
)
2039 if (bfd_bread (buffer
, amt
, current
) != amt
)
2041 if (bfd_get_error () != bfd_error_system_call
)
2042 bfd_set_error (bfd_error_file_truncated
);
2045 if (bfd_bwrite (buffer
, amt
, arch
) != amt
)
2050 if ((arelt_size (current
) % 2) == 1)
2052 if (bfd_bwrite (&ARFMAG
[1], 1, arch
) != 1)
2057 if (makemap
&& hasobjects
)
2059 /* Verify the timestamp in the archive file. If it would not be
2060 accepted by the linker, rewrite it until it would be. If
2061 anything odd happens, break out and just return. (The
2062 Berkeley linker checks the timestamp and refuses to read the
2063 table-of-contents if it is >60 seconds less than the file's
2064 modified-time. That painful hack requires this painful hack. */
2068 if (bfd_update_armap_timestamp (arch
))
2070 (*_bfd_error_handler
)
2071 (_("Warning: writing archive was slow: rewriting timestamp\n"));
2073 while (++tries
< 6);
2079 bfd_set_error (bfd_error_on_input
, current
, bfd_get_error ());
2083 /* Note that the namidx for the first symbol is 0. */
2086 _bfd_compute_and_write_armap (bfd
*arch
, unsigned int elength
)
2088 char *first_name
= NULL
;
2090 file_ptr elt_no
= 0;
2091 struct orl
*map
= NULL
;
2092 unsigned int orl_max
= 1024; /* Fine initial default. */
2093 unsigned int orl_count
= 0;
2095 asymbol
**syms
= NULL
;
2100 /* Dunno if this is the best place for this info... */
2102 elength
+= sizeof (struct ar_hdr
);
2103 elength
+= elength
% 2;
2105 amt
= orl_max
* sizeof (struct orl
);
2106 map
= bfd_malloc (amt
);
2110 /* We put the symbol names on the arch objalloc, and then discard
2112 first_name
= bfd_alloc (arch
, 1);
2113 if (first_name
== NULL
)
2116 /* Drop all the files called __.SYMDEF, we're going to make our own. */
2117 while (arch
->archive_head
2118 && strcmp (arch
->archive_head
->filename
, "__.SYMDEF") == 0)
2119 arch
->archive_head
= arch
->archive_head
->archive_next
;
2121 /* Map over each element. */
2122 for (current
= arch
->archive_head
;
2124 current
= current
->archive_next
, elt_no
++)
2126 if (bfd_check_format (current
, bfd_object
)
2127 && (bfd_get_file_flags (current
) & HAS_SYMS
) != 0)
2133 storage
= bfd_get_symtab_upper_bound (current
);
2139 if (storage
> syms_max
)
2144 syms
= bfd_malloc (syms_max
);
2148 symcount
= bfd_canonicalize_symtab (current
, syms
);
2152 /* Now map over all the symbols, picking out the ones we
2154 for (src_count
= 0; src_count
< symcount
; src_count
++)
2156 flagword flags
= (syms
[src_count
])->flags
;
2157 asection
*sec
= syms
[src_count
]->section
;
2159 if ((flags
& BSF_GLOBAL
2161 || flags
& BSF_INDIRECT
2162 || bfd_is_com_section (sec
))
2163 && ! bfd_is_und_section (sec
))
2165 bfd_size_type namelen
;
2166 struct orl
*new_map
;
2168 /* This symbol will go into the archive header. */
2169 if (orl_count
== orl_max
)
2172 amt
= orl_max
* sizeof (struct orl
);
2173 new_map
= bfd_realloc (map
, amt
);
2174 if (new_map
== NULL
)
2180 namelen
= strlen (syms
[src_count
]->name
);
2181 amt
= sizeof (char *);
2182 map
[orl_count
].name
= bfd_alloc (arch
, amt
);
2183 if (map
[orl_count
].name
== NULL
)
2185 *(map
[orl_count
].name
) = bfd_alloc (arch
, namelen
+ 1);
2186 if (*(map
[orl_count
].name
) == NULL
)
2188 strcpy (*(map
[orl_count
].name
), syms
[src_count
]->name
);
2189 map
[orl_count
].u
.abfd
= current
;
2190 map
[orl_count
].namidx
= stridx
;
2192 stridx
+= namelen
+ 1;
2198 /* Now ask the BFD to free up any cached information, so we
2199 don't fill all of memory with symbol tables. */
2200 if (! bfd_free_cached_info (current
))
2205 /* OK, now we have collected all the data, let's write them out. */
2206 ret
= BFD_SEND (arch
, write_armap
,
2207 (arch
, elength
, map
, orl_count
, stridx
));
2213 if (first_name
!= NULL
)
2214 bfd_release (arch
, first_name
);
2223 if (first_name
!= NULL
)
2224 bfd_release (arch
, first_name
);
2230 bsd_write_armap (bfd
*arch
,
2231 unsigned int elength
,
2233 unsigned int orl_count
,
2236 int padit
= stridx
& 1;
2237 unsigned int ranlibsize
= orl_count
* BSD_SYMDEF_SIZE
;
2238 unsigned int stringsize
= stridx
+ padit
;
2239 /* Include 8 bytes to store ranlibsize and stringsize in output. */
2240 unsigned int mapsize
= ranlibsize
+ stringsize
+ 8;
2242 bfd
*current
= arch
->archive_head
;
2243 bfd
*last_elt
= current
; /* Last element arch seen. */
2247 struct stat statbuf
;
2250 firstreal
= mapsize
+ elength
+ sizeof (struct ar_hdr
) + SARMAG
;
2252 stat (arch
->filename
, &statbuf
);
2253 if ((arch
->flags
& BFD_DETERMINISTIC_OUTPUT
) == 0)
2255 /* Remember the timestamp, to keep it holy. But fudge it a little. */
2256 bfd_ardata (arch
)->armap_timestamp
= (statbuf
.st_mtime
2257 + ARMAP_TIME_OFFSET
);
2263 /* If deterministic, we use 0 as the timestamp in the map.
2264 Some linkers may require that the archive filesystem modification
2265 time is less than (or near to) the archive map timestamp. Those
2266 linkers should not be used with deterministic mode. (GNU ld and
2267 Gold do not have this restriction.) */
2268 bfd_ardata (arch
)->armap_timestamp
= 0;
2273 memset (&hdr
, ' ', sizeof (struct ar_hdr
));
2274 memcpy (hdr
.ar_name
, RANLIBMAG
, strlen (RANLIBMAG
));
2275 bfd_ardata (arch
)->armap_datepos
= (SARMAG
2276 + offsetof (struct ar_hdr
, ar_date
[0]));
2277 _bfd_ar_spacepad (hdr
.ar_date
, sizeof (hdr
.ar_date
), "%ld",
2278 bfd_ardata (arch
)->armap_timestamp
);
2279 _bfd_ar_spacepad (hdr
.ar_uid
, sizeof (hdr
.ar_uid
), "%ld", uid
);
2280 _bfd_ar_spacepad (hdr
.ar_gid
, sizeof (hdr
.ar_gid
), "%ld", gid
);
2281 _bfd_ar_spacepad (hdr
.ar_size
, sizeof (hdr
.ar_size
), "%-10ld", mapsize
);
2282 memcpy (hdr
.ar_fmag
, ARFMAG
, 2);
2283 if (bfd_bwrite (&hdr
, sizeof (struct ar_hdr
), arch
)
2284 != sizeof (struct ar_hdr
))
2286 H_PUT_32 (arch
, ranlibsize
, temp
);
2287 if (bfd_bwrite (temp
, sizeof (temp
), arch
) != sizeof (temp
))
2290 for (count
= 0; count
< orl_count
; count
++)
2292 bfd_byte buf
[BSD_SYMDEF_SIZE
];
2294 if (map
[count
].u
.abfd
!= last_elt
)
2298 unsigned int size
= arelt_size (current
);
2299 if (!strncmp(arch_hdr (current
)->ar_name
, "#1/", 3))
2300 size
+= strlen(normalize(current
, current
->filename
));
2301 firstreal
+= size
+ sizeof (struct ar_hdr
);
2302 firstreal
+= size
% 2;
2303 current
= current
->archive_next
;
2305 while (current
!= map
[count
].u
.abfd
);
2309 H_PUT_32 (arch
, map
[count
].namidx
, buf
);
2310 H_PUT_32 (arch
, firstreal
, buf
+ BSD_SYMDEF_OFFSET_SIZE
);
2311 if (bfd_bwrite (buf
, BSD_SYMDEF_SIZE
, arch
)
2316 /* Now write the strings themselves. */
2317 H_PUT_32 (arch
, stringsize
, temp
);
2318 if (bfd_bwrite (temp
, sizeof (temp
), arch
) != sizeof (temp
))
2320 for (count
= 0; count
< orl_count
; count
++)
2322 size_t len
= strlen (*map
[count
].name
) + 1;
2324 if (bfd_bwrite (*map
[count
].name
, len
, arch
) != len
)
2328 /* The spec sez this should be a newline. But in order to be
2329 bug-compatible for sun's ar we use a null. */
2332 if (bfd_bwrite ("", 1, arch
) != 1)
2339 /* At the end of archive file handling, update the timestamp in the
2340 file, so the linker will accept it.
2342 Return TRUE if the timestamp was OK, or an unusual problem happened.
2343 Return FALSE if we updated the timestamp. */
2346 _bfd_archive_bsd_update_armap_timestamp (bfd
*arch
)
2348 struct stat archstat
;
2351 /* If creating deterministic archives, just leave the timestamp as-is. */
2352 if ((arch
->flags
& BFD_DETERMINISTIC_OUTPUT
) != 0)
2355 /* Flush writes, get last-write timestamp from file, and compare it
2356 to the timestamp IN the file. */
2358 if (bfd_stat (arch
, &archstat
) == -1)
2360 bfd_perror (_("Reading archive file mod timestamp"));
2362 /* Can't read mod time for some reason. */
2365 if (((long) archstat
.st_mtime
) <= bfd_ardata (arch
)->armap_timestamp
)
2366 /* OK by the linker's rules. */
2369 /* Update the timestamp. */
2370 bfd_ardata (arch
)->armap_timestamp
= archstat
.st_mtime
+ ARMAP_TIME_OFFSET
;
2372 /* Prepare an ASCII version suitable for writing. */
2373 memset (hdr
.ar_date
, ' ', sizeof (hdr
.ar_date
));
2374 _bfd_ar_spacepad (hdr
.ar_date
, sizeof (hdr
.ar_date
), "%ld",
2375 bfd_ardata (arch
)->armap_timestamp
);
2377 /* Write it into the file. */
2378 bfd_ardata (arch
)->armap_datepos
= (SARMAG
2379 + offsetof (struct ar_hdr
, ar_date
[0]));
2380 if (bfd_seek (arch
, bfd_ardata (arch
)->armap_datepos
, SEEK_SET
) != 0
2381 || (bfd_bwrite (hdr
.ar_date
, sizeof (hdr
.ar_date
), arch
)
2382 != sizeof (hdr
.ar_date
)))
2384 bfd_perror (_("Writing updated armap timestamp"));
2386 /* Some error while writing. */
2390 /* We updated the timestamp successfully. */
2394 /* A coff armap looks like :
2396 struct ar_hdr with name = '/'
2398 offset of file for symbol 0
2399 offset of file for symbol 1
2401 offset of file for symbol n-1
2408 coff_write_armap (bfd
*arch
,
2409 unsigned int elength
,
2411 unsigned int symbol_count
,
2414 /* The size of the ranlib is the number of exported symbols in the
2415 archive * the number of bytes in an int, + an int for the count. */
2416 unsigned int ranlibsize
= (symbol_count
* 4) + 4;
2417 unsigned int stringsize
= stridx
;
2418 unsigned int mapsize
= stringsize
+ ranlibsize
;
2419 unsigned int archive_member_file_ptr
;
2420 bfd
*current
= arch
->archive_head
;
2423 int padit
= mapsize
& 1;
2428 /* Work out where the first object file will go in the archive. */
2429 archive_member_file_ptr
= (mapsize
2431 + sizeof (struct ar_hdr
)
2434 memset (&hdr
, ' ', sizeof (struct ar_hdr
));
2435 hdr
.ar_name
[0] = '/';
2436 _bfd_ar_spacepad (hdr
.ar_size
, sizeof (hdr
.ar_size
), "%-10ld",
2438 _bfd_ar_spacepad (hdr
.ar_date
, sizeof (hdr
.ar_date
), "%ld",
2439 ((arch
->flags
& BFD_DETERMINISTIC_OUTPUT
) == 0
2440 ? time (NULL
) : 0));
2441 /* This, at least, is what Intel coff sets the values to. */
2442 _bfd_ar_spacepad (hdr
.ar_uid
, sizeof (hdr
.ar_uid
), "%ld", 0);
2443 _bfd_ar_spacepad (hdr
.ar_gid
, sizeof (hdr
.ar_gid
), "%ld", 0);
2444 _bfd_ar_spacepad (hdr
.ar_mode
, sizeof (hdr
.ar_mode
), "%-7lo", 0);
2445 memcpy (hdr
.ar_fmag
, ARFMAG
, 2);
2447 /* Write the ar header for this item and the number of symbols. */
2448 if (bfd_bwrite (&hdr
, sizeof (struct ar_hdr
), arch
)
2449 != sizeof (struct ar_hdr
))
2452 if (!bfd_write_bigendian_4byte_int (arch
, symbol_count
))
2455 /* Two passes, first write the file offsets for each symbol -
2456 remembering that each offset is on a two byte boundary. */
2458 /* Write out the file offset for the file associated with each
2459 symbol, and remember to keep the offsets padded out. */
2461 current
= arch
->archive_head
;
2463 while (current
!= NULL
&& count
< symbol_count
)
2465 /* For each symbol which is used defined in this object, write
2466 out the object file's address in the archive. */
2468 while (count
< symbol_count
&& map
[count
].u
.abfd
== current
)
2470 if (!bfd_write_bigendian_4byte_int (arch
, archive_member_file_ptr
))
2474 archive_member_file_ptr
+= sizeof (struct ar_hdr
);
2475 if (! bfd_is_thin_archive (arch
))
2477 /* Add size of this archive entry. */
2478 archive_member_file_ptr
+= arelt_size (current
);
2479 /* Remember about the even alignment. */
2480 archive_member_file_ptr
+= archive_member_file_ptr
% 2;
2482 current
= current
->archive_next
;
2485 /* Now write the strings themselves. */
2486 for (count
= 0; count
< symbol_count
; count
++)
2488 size_t len
= strlen (*map
[count
].name
) + 1;
2490 if (bfd_bwrite (*map
[count
].name
, len
, arch
) != len
)
2494 /* The spec sez this should be a newline. But in order to be
2495 bug-compatible for arc960 we use a null. */
2498 if (bfd_bwrite ("", 1, arch
) != 1)