1 /* BFD back-end for archive files (libraries).
2 Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
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 2 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, 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>>.
80 o - all archive elements start on an even boundary, newline padded;
81 o - all arch headers are char *;
82 o - all arch headers are the same size (across architectures).
85 /* Some formats provide a way to cram a long filename into the short
86 (16 chars) space provided by a BSD archive. The trick is: make a
87 special "file" in the front of the archive, sort of like the SYMDEF
88 entry. If the filename is too long to fit, put it in the extended
89 name table, and use its index as the filename. To prevent
90 confusion prepend the index with a space. This means you can't
91 have filenames that start with a space, but then again, many Unix
92 utilities can't handle that anyway.
94 This scheme unfortunately requires that you stand on your head in
95 order to write an archive since you need to put a magic file at the
96 front, and need to touch every entry to do so. C'est la vie.
98 We support two variants of this idea:
99 The SVR4 format (extended name table is named "//"),
100 and an extended pseudo-BSD variant (extended name table is named
101 "ARFILENAMES/"). The origin of the latter format is uncertain.
103 BSD 4.4 uses a third scheme: It writes a long filename
104 directly after the header. This allows 'ar q' to work.
105 We currently can read BSD 4.4 archives, but not write them.
108 /* Summary of archive member names:
110 Symbol table (must be first):
111 "__.SYMDEF " - Symbol table, Berkeley style, produced by ranlib.
112 "/ " - Symbol table, system 5 style.
114 Long name table (must be before regular file members):
115 "// " - Long name table, System 5 R4 style.
116 "ARFILENAMES/ " - Long name table, non-standard extended BSD (not BSD 4.4).
118 Regular file members with short names:
119 "filename.o/ " - Regular file, System 5 style (embedded spaces ok).
120 "filename.o " - Regular file, Berkeley style (no embedded spaces).
122 Regular files with long names (or embedded spaces, for BSD variants):
123 "/18 " - SVR4 style, name at offset 18 in name table.
124 "#1/23 " - Long name (or embedded paces) 23 characters long,
125 BSD 4.4 style, full name follows header.
126 Implemented for reading, not writing.
127 " 18 " - Long name 18 characters long, extended pseudo-BSD.
134 #include "aout/ranlib.h"
135 #include "safe-ctype.h"
142 #define BFD_GNU960_ARMAG(abfd) (BFD_COFF_FILE_P((abfd)) ? ARMAG : ARMAGB)
145 /* We keep a cache of archive filepointers to archive elements to
146 speed up searching the archive by filepos. We only add an entry to
147 the cache when we actually read one. We also don't sort the cache;
148 it's generally short enough to search linearly.
149 Note that the pointers here point to the front of the ar_hdr, not
150 to the front of the contents! */
154 struct ar_cache
*next
;
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))
161 #define arch_hdr(bfd) ((struct ar_hdr *) arch_eltdata(bfd)->arch_header)
165 _bfd_generic_mkarchive (bfd
*abfd
)
167 bfd_size_type amt
= sizeof (struct artdata
);
169 abfd
->tdata
.aout_ar_data
= bfd_zalloc (abfd
, amt
);
170 if (bfd_ardata (abfd
) == NULL
)
173 bfd_ardata (abfd
)->cache
= NULL
;
174 bfd_ardata (abfd
)->archive_head
= NULL
;
175 bfd_ardata (abfd
)->symdefs
= NULL
;
176 bfd_ardata (abfd
)->extended_names
= NULL
;
177 bfd_ardata (abfd
)->tdata
= NULL
;
187 symindex bfd_get_next_mapent
188 (bfd *abfd, symindex previous, carsym **sym);
191 Step through archive @var{abfd}'s symbol table (if it
192 has one). Successively update @var{sym} with the next symbol's
193 information, returning that symbol's (internal) index into the
196 Supply <<BFD_NO_MORE_SYMBOLS>> as the @var{previous} entry to get
197 the first one; returns <<BFD_NO_MORE_SYMBOLS>> when you've already
200 A <<carsym>> is a canonical archive symbol. The only
201 user-visible element is its name, a null-terminated string.
205 bfd_get_next_mapent (bfd
*abfd
, symindex prev
, carsym
**entry
)
207 if (!bfd_has_map (abfd
))
209 bfd_set_error (bfd_error_invalid_operation
);
210 return BFD_NO_MORE_SYMBOLS
;
213 if (prev
== BFD_NO_MORE_SYMBOLS
)
217 if (prev
>= bfd_ardata (abfd
)->symdef_count
)
218 return BFD_NO_MORE_SYMBOLS
;
220 *entry
= (bfd_ardata (abfd
)->symdefs
+ prev
);
224 /* To be called by backends only */
227 _bfd_create_empty_archive_element_shell (bfd
*obfd
)
229 return _bfd_new_bfd_contained_in (obfd
);
237 bfd_boolean bfd_set_archive_head (bfd *output, bfd *new_head);
240 Set the head of the chain of
241 BFDs contained in the archive @var{output} to @var{new_head}.
245 bfd_set_archive_head (bfd
*output_archive
, bfd
*new_head
)
247 output_archive
->archive_head
= new_head
;
252 _bfd_look_for_bfd_in_cache (bfd
*arch_bfd
, file_ptr filepos
)
254 struct ar_cache
*current
;
256 for (current
= bfd_ardata (arch_bfd
)->cache
; current
!= NULL
;
257 current
= current
->next
)
258 if (current
->ptr
== filepos
)
259 return current
->arelt
;
264 /* Kind of stupid to call cons for each one, but we don't do too many */
266 _bfd_add_bfd_to_archive_cache (bfd
*arch_bfd
, file_ptr filepos
, bfd
*new_elt
)
268 bfd_size_type amt
= sizeof (struct ar_cache
);
270 struct ar_cache
*new_cache
= bfd_zalloc (arch_bfd
, amt
);
271 if (new_cache
== NULL
)
274 new_cache
->ptr
= filepos
;
275 new_cache
->arelt
= new_elt
;
276 new_cache
->next
= NULL
;
277 if (bfd_ardata (arch_bfd
)->cache
== NULL
)
278 bfd_ardata (arch_bfd
)->cache
= new_cache
;
281 struct ar_cache
*current
= bfd_ardata (arch_bfd
)->cache
;
283 while (current
->next
!= NULL
)
284 current
= current
->next
;
285 current
->next
= new_cache
;
291 /* The name begins with space. Hence the rest of the name is an index into
295 get_extended_arelt_filename (bfd
*arch
, const char *name
)
297 unsigned long index
= 0;
299 /* Should extract string so that I can guarantee not to overflow into
300 the next region, but I'm too lazy. */
302 /* Skip first char, which is '/' in SVR4 or ' ' in some other variants. */
303 index
= strtol (name
+ 1, NULL
, 10);
306 bfd_set_error (bfd_error_malformed_archive
);
310 return bfd_ardata (arch
)->extended_names
+ index
;
313 /* This functions reads an arch header and returns an areltdata pointer, or
316 Presumes the file pointer is already in the right place (ie pointing
317 to the ar_hdr in the file). Moves the file pointer; on success it
318 should be pointing to the front of the file contents; on failure it
319 could have been moved arbitrarily.
323 _bfd_generic_read_ar_hdr (bfd
*abfd
)
325 return _bfd_generic_read_ar_hdr_mag (abfd
, NULL
);
328 /* Alpha ECOFF uses an optional different ARFMAG value, so we have a
329 variant of _bfd_generic_read_ar_hdr which accepts a magic string. */
332 _bfd_generic_read_ar_hdr_mag (bfd
*abfd
, const char *mag
)
335 char *hdrp
= (char *) &hdr
;
337 struct areltdata
*ared
;
338 char *filename
= NULL
;
339 bfd_size_type namelen
= 0;
340 bfd_size_type allocsize
= sizeof (struct areltdata
) + sizeof (struct ar_hdr
);
343 if (bfd_bread (hdrp
, sizeof (struct ar_hdr
), abfd
) != sizeof (struct ar_hdr
))
345 if (bfd_get_error () != bfd_error_system_call
)
346 bfd_set_error (bfd_error_no_more_archived_files
);
349 if (strncmp (hdr
.ar_fmag
, ARFMAG
, 2) != 0
351 || strncmp (hdr
.ar_fmag
, mag
, 2) != 0))
353 bfd_set_error (bfd_error_malformed_archive
);
358 parsed_size
= strtol (hdr
.ar_size
, NULL
, 10);
361 bfd_set_error (bfd_error_malformed_archive
);
365 /* Extract the filename from the archive - there are two ways to
366 specify an extended name table, either the first char of the
367 name is a space, or it's a slash. */
368 if ((hdr
.ar_name
[0] == '/'
369 || (hdr
.ar_name
[0] == ' '
370 && memchr (hdr
.ar_name
, '/', ar_maxnamelen (abfd
)) == NULL
))
371 && bfd_ardata (abfd
)->extended_names
!= NULL
)
373 filename
= get_extended_arelt_filename (abfd
, hdr
.ar_name
);
374 if (filename
== NULL
)
376 bfd_set_error (bfd_error_malformed_archive
);
380 /* BSD4.4-style long filename.
381 Only implemented for reading, so far! */
382 else if (hdr
.ar_name
[0] == '#'
383 && hdr
.ar_name
[1] == '1'
384 && hdr
.ar_name
[2] == '/'
385 && ISDIGIT (hdr
.ar_name
[3]))
387 /* BSD-4.4 extended name */
388 namelen
= atoi (&hdr
.ar_name
[3]);
389 allocsize
+= namelen
+ 1;
390 parsed_size
-= namelen
;
392 allocptr
= bfd_zalloc (abfd
, allocsize
);
393 if (allocptr
== NULL
)
396 + sizeof (struct areltdata
)
397 + sizeof (struct ar_hdr
));
398 if (bfd_bread (filename
, namelen
, abfd
) != namelen
)
400 if (bfd_get_error () != bfd_error_system_call
)
401 bfd_set_error (bfd_error_no_more_archived_files
);
404 filename
[namelen
] = '\0';
408 /* We judge the end of the name by looking for '/' or ' '.
409 Note: The SYSV format (terminated by '/') allows embedded
410 spaces, so only look for ' ' if we don't find '/'. */
413 e
= memchr (hdr
.ar_name
, '\0', ar_maxnamelen (abfd
));
416 e
= memchr (hdr
.ar_name
, '/', ar_maxnamelen (abfd
));
418 e
= memchr (hdr
.ar_name
, ' ', ar_maxnamelen (abfd
));
422 namelen
= e
- hdr
.ar_name
;
425 /* If we didn't find a termination character, then the name
426 must be the entire field. */
427 namelen
= ar_maxnamelen (abfd
);
430 allocsize
+= namelen
+ 1;
435 allocptr
= bfd_zalloc (abfd
, allocsize
);
436 if (allocptr
== NULL
)
440 ared
= (struct areltdata
*) allocptr
;
442 ared
->arch_header
= allocptr
+ sizeof (struct areltdata
);
443 memcpy (ared
->arch_header
, &hdr
, sizeof (struct ar_hdr
));
444 ared
->parsed_size
= parsed_size
;
446 if (filename
!= NULL
)
447 ared
->filename
= filename
;
450 ared
->filename
= allocptr
+ (sizeof (struct areltdata
) +
451 sizeof (struct ar_hdr
));
453 memcpy (ared
->filename
, hdr
.ar_name
, namelen
);
454 ared
->filename
[namelen
] = '\0';
460 /* This is an internal function; it's mainly used when indexing
461 through the archive symbol table, but also used to get the next
462 element, since it handles the bookkeeping so nicely for us. */
465 _bfd_get_elt_at_filepos (bfd
*archive
, file_ptr filepos
)
467 struct areltdata
*new_areldata
;
470 n_nfd
= _bfd_look_for_bfd_in_cache (archive
, filepos
);
474 if (0 > bfd_seek (archive
, filepos
, SEEK_SET
))
477 if ((new_areldata
= _bfd_read_ar_hdr (archive
)) == NULL
)
480 n_nfd
= _bfd_create_empty_archive_element_shell (archive
);
483 bfd_release (archive
, new_areldata
);
487 n_nfd
->origin
= bfd_tell (archive
);
488 n_nfd
->arelt_data
= new_areldata
;
489 n_nfd
->filename
= new_areldata
->filename
;
491 if (_bfd_add_bfd_to_archive_cache (archive
, filepos
, n_nfd
))
495 bfd_release (archive
, n_nfd
);
496 bfd_release (archive
, new_areldata
);
500 /* Return the BFD which is referenced by the symbol in ABFD indexed by
501 INDEX. INDEX should have been returned by bfd_get_next_mapent. */
504 _bfd_generic_get_elt_at_index (bfd
*abfd
, symindex index
)
508 entry
= bfd_ardata (abfd
)->symdefs
+ index
;
509 return _bfd_get_elt_at_filepos (abfd
, entry
->file_offset
);
514 bfd_openr_next_archived_file
517 bfd *bfd_openr_next_archived_file (bfd *archive, bfd *previous);
520 Provided a BFD, @var{archive}, containing an archive and NULL, open
521 an input BFD on the first contained element and returns that.
522 Subsequent calls should pass
523 the archive and the previous return value to return a created
524 BFD to the next contained element. NULL is returned when there
529 bfd_openr_next_archived_file (bfd
*archive
, bfd
*last_file
)
531 if ((bfd_get_format (archive
) != bfd_archive
) ||
532 (archive
->direction
== write_direction
))
534 bfd_set_error (bfd_error_invalid_operation
);
538 return BFD_SEND (archive
,
539 openr_next_archived_file
, (archive
, last_file
));
543 bfd_generic_openr_next_archived_file (bfd
*archive
, bfd
*last_file
)
548 filestart
= bfd_ardata (archive
)->first_file_filepos
;
551 unsigned int size
= arelt_size (last_file
);
552 /* Pad to an even boundary...
553 Note that last_file->origin can be odd in the case of
554 BSD-4.4-style element with a long odd size. */
555 filestart
= last_file
->origin
+ size
;
556 filestart
+= filestart
% 2;
559 return _bfd_get_elt_at_filepos (archive
, filestart
);
563 bfd_generic_archive_p (bfd
*abfd
)
565 struct artdata
*tdata_hold
;
566 char armag
[SARMAG
+ 1];
569 if (bfd_bread (armag
, SARMAG
, abfd
) != SARMAG
)
571 if (bfd_get_error () != bfd_error_system_call
)
572 bfd_set_error (bfd_error_wrong_format
);
577 if (strncmp (armag
, BFD_GNU960_ARMAG (abfd
), SARMAG
) != 0)
580 if (strncmp (armag
, ARMAG
, SARMAG
) != 0 &&
581 strncmp (armag
, ARMAGB
, SARMAG
) != 0)
585 tdata_hold
= bfd_ardata (abfd
);
587 amt
= sizeof (struct artdata
);
588 bfd_ardata (abfd
) = bfd_zalloc (abfd
, amt
);
589 if (bfd_ardata (abfd
) == NULL
)
591 bfd_ardata (abfd
) = tdata_hold
;
595 bfd_ardata (abfd
)->first_file_filepos
= SARMAG
;
596 bfd_ardata (abfd
)->cache
= NULL
;
597 bfd_ardata (abfd
)->archive_head
= NULL
;
598 bfd_ardata (abfd
)->symdefs
= NULL
;
599 bfd_ardata (abfd
)->extended_names
= NULL
;
600 bfd_ardata (abfd
)->tdata
= NULL
;
602 if (!BFD_SEND (abfd
, _bfd_slurp_armap
, (abfd
))
603 || !BFD_SEND (abfd
, _bfd_slurp_extended_name_table
, (abfd
)))
605 if (bfd_get_error () != bfd_error_system_call
)
606 bfd_set_error (bfd_error_wrong_format
);
607 bfd_release (abfd
, bfd_ardata (abfd
));
608 bfd_ardata (abfd
) = tdata_hold
;
612 if (bfd_has_map (abfd
))
616 /* This archive has a map, so we may presume that the contents
617 are object files. Make sure that if the first file in the
618 archive can be recognized as an object file, it is for this
619 target. If not, assume that this is the wrong format. If
620 the first file is not an object file, somebody is doing
621 something weird, and we permit it so that ar -t will work.
623 This is done because any normal format will recognize any
624 normal archive, regardless of the format of the object files.
625 We do accept an empty archive. */
627 first
= bfd_openr_next_archived_file (abfd
, NULL
);
632 first
->target_defaulted
= FALSE
;
634 if (bfd_check_format (first
, bfd_object
)
635 && first
->xvec
!= abfd
->xvec
)
638 /* We ought to close `first' here, but we can't, because
639 we have no way to remove it from the archive cache.
640 It's close to impossible to figure out when we can
641 release bfd_ardata. FIXME. */
643 bfd_release (abfd
, bfd_ardata (abfd
));
645 bfd_set_error (bfd_error_wrong_object_format
);
646 bfd_ardata (abfd
) = tdata_hold
;
649 /* And we ought to close `first' here too. */
656 /* Some constants for a 32 bit BSD archive structure. We do not
657 support 64 bit archives presently; so far as I know, none actually
658 exist. Supporting them would require changing these constants, and
659 changing some H_GET_32 to H_GET_64. */
661 /* The size of an external symdef structure. */
662 #define BSD_SYMDEF_SIZE 8
664 /* The offset from the start of a symdef structure to the file offset. */
665 #define BSD_SYMDEF_OFFSET_SIZE 4
667 /* The size of the symdef count. */
668 #define BSD_SYMDEF_COUNT_SIZE 4
670 /* The size of the string count. */
671 #define BSD_STRING_COUNT_SIZE 4
673 /* Returns FALSE on error, TRUE otherwise */
676 do_slurp_bsd_armap (bfd
*abfd
)
678 struct areltdata
*mapdata
;
679 unsigned int counter
;
680 bfd_byte
*raw_armap
, *rbase
;
681 struct artdata
*ardata
= bfd_ardata (abfd
);
683 bfd_size_type parsed_size
, amt
;
686 mapdata
= _bfd_read_ar_hdr (abfd
);
689 parsed_size
= mapdata
->parsed_size
;
690 bfd_release (abfd
, mapdata
); /* Don't need it any more. */
692 raw_armap
= bfd_zalloc (abfd
, parsed_size
);
693 if (raw_armap
== NULL
)
696 if (bfd_bread (raw_armap
, parsed_size
, abfd
) != parsed_size
)
698 if (bfd_get_error () != bfd_error_system_call
)
699 bfd_set_error (bfd_error_malformed_archive
);
701 bfd_release (abfd
, raw_armap
);
705 ardata
->symdef_count
= H_GET_32 (abfd
, raw_armap
) / BSD_SYMDEF_SIZE
;
707 if (ardata
->symdef_count
* BSD_SYMDEF_SIZE
>
708 parsed_size
- BSD_SYMDEF_COUNT_SIZE
)
710 /* Probably we're using the wrong byte ordering. */
711 bfd_set_error (bfd_error_wrong_format
);
716 rbase
= raw_armap
+ BSD_SYMDEF_COUNT_SIZE
;
717 stringbase
= ((char *) rbase
718 + ardata
->symdef_count
* BSD_SYMDEF_SIZE
719 + BSD_STRING_COUNT_SIZE
);
720 amt
= ardata
->symdef_count
* sizeof (carsym
);
721 ardata
->symdefs
= bfd_alloc (abfd
, amt
);
722 if (!ardata
->symdefs
)
725 for (counter
= 0, set
= ardata
->symdefs
;
726 counter
< ardata
->symdef_count
;
727 counter
++, set
++, rbase
+= BSD_SYMDEF_SIZE
)
729 set
->name
= H_GET_32 (abfd
, rbase
) + stringbase
;
730 set
->file_offset
= H_GET_32 (abfd
, rbase
+ BSD_SYMDEF_OFFSET_SIZE
);
733 ardata
->first_file_filepos
= bfd_tell (abfd
);
734 /* Pad to an even boundary if you have to. */
735 ardata
->first_file_filepos
+= (ardata
->first_file_filepos
) % 2;
736 /* FIXME, we should provide some way to free raw_ardata when
737 we are done using the strings from it. For now, it seems
738 to be allocated on an objalloc anyway... */
739 bfd_has_map (abfd
) = TRUE
;
743 /* Returns FALSE on error, TRUE otherwise. */
746 do_slurp_coff_armap (bfd
*abfd
)
748 struct areltdata
*mapdata
;
749 int *raw_armap
, *rawptr
;
750 struct artdata
*ardata
= bfd_ardata (abfd
);
752 bfd_size_type stringsize
;
753 unsigned int parsed_size
;
755 bfd_size_type nsymz
; /* Number of symbols in armap. */
756 bfd_vma (*swap
) (const void *);
757 char int_buf
[sizeof (long)];
758 bfd_size_type carsym_size
, ptrsize
;
761 mapdata
= _bfd_read_ar_hdr (abfd
);
764 parsed_size
= mapdata
->parsed_size
;
765 bfd_release (abfd
, mapdata
); /* Don't need it any more. */
767 if (bfd_bread (int_buf
, 4, abfd
) != 4)
769 if (bfd_get_error () != bfd_error_system_call
)
770 bfd_set_error (bfd_error_malformed_archive
);
773 /* It seems that all numeric information in a coff archive is always
774 in big endian format, nomatter the host or target. */
776 nsymz
= bfd_getb32 (int_buf
);
777 stringsize
= parsed_size
- (4 * nsymz
) - 4;
780 /* ... except that some archive formats are broken, and it may be our
781 fault - the i960 little endian coff sometimes has big and sometimes
782 little, because our tools changed. Here's a horrible hack to clean
785 if (stringsize
> 0xfffff
786 && bfd_get_arch (abfd
) == bfd_arch_i960
787 && bfd_get_flavour (abfd
) == bfd_target_coff_flavour
)
789 /* This looks dangerous, let's do it the other way around. */
790 nsymz
= bfd_getl32 (int_buf
);
791 stringsize
= parsed_size
- (4 * nsymz
) - 4;
796 /* The coff armap must be read sequentially. So we construct a
797 bsd-style one in core all at once, for simplicity. */
799 carsym_size
= (nsymz
* sizeof (carsym
));
800 ptrsize
= (4 * nsymz
);
802 ardata
->symdefs
= bfd_zalloc (abfd
, carsym_size
+ stringsize
+ 1);
803 if (ardata
->symdefs
== NULL
)
805 carsyms
= ardata
->symdefs
;
806 stringbase
= ((char *) ardata
->symdefs
) + carsym_size
;
808 /* Allocate and read in the raw offsets. */
809 raw_armap
= bfd_alloc (abfd
, ptrsize
);
810 if (raw_armap
== NULL
)
811 goto release_symdefs
;
812 if (bfd_bread (raw_armap
, ptrsize
, abfd
) != ptrsize
813 || (bfd_bread (stringbase
, stringsize
, abfd
) != stringsize
))
815 if (bfd_get_error () != bfd_error_system_call
)
816 bfd_set_error (bfd_error_malformed_archive
);
817 goto release_raw_armap
;
820 /* OK, build the carsyms. */
821 for (i
= 0; i
< nsymz
; i
++)
823 rawptr
= raw_armap
+ i
;
824 carsyms
->file_offset
= swap ((bfd_byte
*) rawptr
);
825 carsyms
->name
= stringbase
;
826 stringbase
+= strlen (stringbase
) + 1;
831 ardata
->symdef_count
= nsymz
;
832 ardata
->first_file_filepos
= bfd_tell (abfd
);
833 /* Pad to an even boundary if you have to. */
834 ardata
->first_file_filepos
+= (ardata
->first_file_filepos
) % 2;
836 bfd_has_map (abfd
) = TRUE
;
837 bfd_release (abfd
, raw_armap
);
839 /* Check for a second archive header (as used by PE). */
841 struct areltdata
*tmp
;
843 bfd_seek (abfd
, ardata
->first_file_filepos
, SEEK_SET
);
844 tmp
= _bfd_read_ar_hdr (abfd
);
847 if (tmp
->arch_header
[0] == '/'
848 && tmp
->arch_header
[1] == ' ')
850 ardata
->first_file_filepos
+=
851 (tmp
->parsed_size
+ sizeof (struct ar_hdr
) + 1) & ~(unsigned) 1;
853 bfd_release (abfd
, tmp
);
860 bfd_release (abfd
, raw_armap
);
862 bfd_release (abfd
, (ardata
)->symdefs
);
866 /* This routine can handle either coff-style or bsd-style armaps.
867 Returns FALSE on error, TRUE otherwise */
870 bfd_slurp_armap (bfd
*abfd
)
873 int i
= bfd_bread (nextname
, 16, abfd
);
880 if (bfd_seek (abfd
, (file_ptr
) -16, SEEK_CUR
) != 0)
883 if (!strncmp (nextname
, "__.SYMDEF ", 16)
884 || !strncmp (nextname
, "__.SYMDEF/ ", 16)) /* old Linux archives */
885 return do_slurp_bsd_armap (abfd
);
886 else if (!strncmp (nextname
, "/ ", 16))
887 return do_slurp_coff_armap (abfd
);
888 else if (!strncmp (nextname
, "/SYM64/ ", 16))
890 /* 64bit ELF (Irix 6) archive. */
892 extern bfd_boolean
bfd_elf64_archive_slurp_armap (bfd
*);
893 return bfd_elf64_archive_slurp_armap (abfd
);
895 bfd_set_error (bfd_error_wrong_format
);
900 bfd_has_map (abfd
) = FALSE
;
904 /* Returns FALSE on error, TRUE otherwise */
905 /* flavor 2 of a bsd armap, similar to bfd_slurp_bsd_armap except the
906 header is in a slightly different order and the map name is '/'.
907 This flavour is used by hp300hpux. */
909 #define HPUX_SYMDEF_COUNT_SIZE 2
912 bfd_slurp_bsd_armap_f2 (bfd
*abfd
)
914 struct areltdata
*mapdata
;
916 unsigned int counter
;
917 bfd_byte
*raw_armap
, *rbase
;
918 struct artdata
*ardata
= bfd_ardata (abfd
);
920 unsigned int stringsize
;
923 int i
= bfd_bread (nextname
, 16, abfd
);
930 /* The archive has at least 16 bytes in it. */
931 if (bfd_seek (abfd
, (file_ptr
) -16, SEEK_CUR
) != 0)
934 if (!strncmp (nextname
, "__.SYMDEF ", 16)
935 || !strncmp (nextname
, "__.SYMDEF/ ", 16)) /* old Linux archives */
936 return do_slurp_bsd_armap (abfd
);
938 if (strncmp (nextname
, "/ ", 16))
940 bfd_has_map (abfd
) = FALSE
;
944 mapdata
= _bfd_read_ar_hdr (abfd
);
948 amt
= mapdata
->parsed_size
;
949 raw_armap
= bfd_zalloc (abfd
, amt
);
950 if (raw_armap
== NULL
)
953 bfd_release (abfd
, mapdata
);
957 if (bfd_bread (raw_armap
, amt
, abfd
) != amt
)
959 if (bfd_get_error () != bfd_error_system_call
)
960 bfd_set_error (bfd_error_malformed_archive
);
962 bfd_release (abfd
, raw_armap
);
966 ardata
->symdef_count
= H_GET_16 (abfd
, raw_armap
);
968 if (ardata
->symdef_count
* BSD_SYMDEF_SIZE
969 > mapdata
->parsed_size
- HPUX_SYMDEF_COUNT_SIZE
)
971 /* Probably we're using the wrong byte ordering. */
972 bfd_set_error (bfd_error_wrong_format
);
978 stringsize
= H_GET_32 (abfd
, raw_armap
+ HPUX_SYMDEF_COUNT_SIZE
);
979 /* Skip sym count and string sz. */
980 stringbase
= ((char *) raw_armap
981 + HPUX_SYMDEF_COUNT_SIZE
982 + BSD_STRING_COUNT_SIZE
);
983 rbase
= (bfd_byte
*) stringbase
+ stringsize
;
984 amt
= ardata
->symdef_count
* BSD_SYMDEF_SIZE
;
985 ardata
->symdefs
= bfd_alloc (abfd
, amt
);
986 if (!ardata
->symdefs
)
989 for (counter
= 0, set
= ardata
->symdefs
;
990 counter
< ardata
->symdef_count
;
991 counter
++, set
++, rbase
+= BSD_SYMDEF_SIZE
)
993 set
->name
= H_GET_32 (abfd
, rbase
) + stringbase
;
994 set
->file_offset
= H_GET_32 (abfd
, rbase
+ BSD_SYMDEF_OFFSET_SIZE
);
997 ardata
->first_file_filepos
= bfd_tell (abfd
);
998 /* Pad to an even boundary if you have to. */
999 ardata
->first_file_filepos
+= (ardata
->first_file_filepos
) % 2;
1000 /* FIXME, we should provide some way to free raw_ardata when
1001 we are done using the strings from it. For now, it seems
1002 to be allocated on an objalloc anyway... */
1003 bfd_has_map (abfd
) = TRUE
;
1007 /** Extended name table.
1009 Normally archives support only 14-character filenames.
1011 Intel has extended the format: longer names are stored in a special
1012 element (the first in the archive, or second if there is an armap);
1013 the name in the ar_hdr is replaced by <space><index into filename
1014 element>. Index is the P.R. of an int (decimal). Data General have
1015 extended the format by using the prefix // for the special element. */
1017 /* Returns FALSE on error, TRUE otherwise. */
1020 _bfd_slurp_extended_name_table (bfd
*abfd
)
1023 struct areltdata
*namedata
;
1026 /* FIXME: Formatting sucks here, and in case of failure of BFD_READ,
1027 we probably don't want to return TRUE. */
1028 bfd_seek (abfd
, bfd_ardata (abfd
)->first_file_filepos
, SEEK_SET
);
1029 if (bfd_bread (nextname
, 16, abfd
) == 16)
1031 if (bfd_seek (abfd
, (file_ptr
) -16, SEEK_CUR
) != 0)
1034 if (strncmp (nextname
, "ARFILENAMES/ ", 16) != 0 &&
1035 strncmp (nextname
, "// ", 16) != 0)
1037 bfd_ardata (abfd
)->extended_names
= NULL
;
1041 namedata
= _bfd_read_ar_hdr (abfd
);
1042 if (namedata
== NULL
)
1045 amt
= namedata
->parsed_size
;
1046 bfd_ardata (abfd
)->extended_names
= bfd_zalloc (abfd
, amt
);
1047 if (bfd_ardata (abfd
)->extended_names
== NULL
)
1050 bfd_release (abfd
, namedata
);
1054 if (bfd_bread (bfd_ardata (abfd
)->extended_names
, amt
, abfd
) != amt
)
1056 if (bfd_get_error () != bfd_error_system_call
)
1057 bfd_set_error (bfd_error_malformed_archive
);
1058 bfd_release (abfd
, (bfd_ardata (abfd
)->extended_names
));
1059 bfd_ardata (abfd
)->extended_names
= NULL
;
1063 /* Since the archive is supposed to be printable if it contains
1064 text, the entries in the list are newline-padded, not null
1065 padded. In SVR4-style archives, the names also have a
1066 trailing '/'. DOS/NT created archive often have \ in them
1067 We'll fix all problems here.. */
1069 char *temp
= bfd_ardata (abfd
)->extended_names
;
1070 char *limit
= temp
+ namedata
->parsed_size
;
1071 for (; temp
< limit
; ++temp
)
1073 if (*temp
== '\012')
1074 temp
[temp
[-1] == '/' ? -1 : 0] = '\0';
1080 /* Pad to an even boundary if you have to. */
1081 bfd_ardata (abfd
)->first_file_filepos
= bfd_tell (abfd
);
1082 bfd_ardata (abfd
)->first_file_filepos
+=
1083 (bfd_ardata (abfd
)->first_file_filepos
) % 2;
1085 /* FIXME, we can't release namedata here because it was allocated
1086 below extended_names on the objalloc... */
1088 bfd_release (abfd
, namedata
);
1096 /* Return a copy of the stuff in the filename between any :]> and a
1100 normalize (bfd
*abfd
, const char *file
)
1106 first
= file
+ strlen (file
) - 1;
1109 while (first
!= file
)
1113 if (*first
== ':' || *first
== ']' || *first
== '>')
1121 copy
= bfd_alloc (abfd
, last
- first
+ 1);
1125 memcpy (copy
, first
, last
- first
);
1126 copy
[last
- first
] = 0;
1133 normalize (bfd
*abfd ATTRIBUTE_UNUSED
, const char *file
)
1135 const char *filename
= strrchr (file
, '/');
1137 #ifdef HAVE_DOS_BASED_FILE_SYSTEM
1139 /* We could have foo/bar\\baz, or foo\\bar, or d:bar. */
1140 char *bslash
= strrchr (file
, '\\');
1141 if (filename
== NULL
|| (bslash
!= NULL
&& bslash
> filename
))
1143 if (filename
== NULL
&& file
[0] != '\0' && file
[1] == ':')
1144 filename
= file
+ 1;
1147 if (filename
!= NULL
)
1155 /* Build a BFD style extended name table. */
1158 _bfd_archive_bsd_construct_extended_name_table (bfd
*abfd
,
1160 bfd_size_type
*tablen
,
1163 *name
= "ARFILENAMES/";
1164 return _bfd_construct_extended_name_table (abfd
, FALSE
, tabloc
, tablen
);
1167 /* Build an SVR4 style extended name table. */
1170 _bfd_archive_coff_construct_extended_name_table (bfd
*abfd
,
1172 bfd_size_type
*tablen
,
1176 return _bfd_construct_extended_name_table (abfd
, TRUE
, tabloc
, tablen
);
1179 /* Follows archive_head and produces an extended name table if
1180 necessary. Returns (in tabloc) a pointer to an extended name
1181 table, and in tablen the length of the table. If it makes an entry
1182 it clobbers the filename so that the element may be written without
1183 further massage. Returns TRUE if it ran successfully, FALSE if
1184 something went wrong. A successful return may still involve a
1185 zero-length tablen! */
1188 _bfd_construct_extended_name_table (bfd
*abfd
,
1189 bfd_boolean trailing_slash
,
1191 bfd_size_type
*tablen
)
1193 unsigned int maxname
= abfd
->xvec
->ar_max_namelen
;
1194 bfd_size_type total_namelen
= 0;
1200 /* Figure out how long the table should be. */
1201 for (current
= abfd
->archive_head
; current
!= NULL
; current
= current
->next
)
1204 unsigned int thislen
;
1206 normal
= normalize (current
, current
->filename
);
1210 thislen
= strlen (normal
);
1212 if (thislen
> maxname
1213 && (bfd_get_file_flags (abfd
) & BFD_TRADITIONAL_FORMAT
) != 0)
1216 if (thislen
> maxname
)
1218 /* Add one to leave room for \n. */
1219 total_namelen
+= thislen
+ 1;
1222 /* Leave room for trailing slash. */
1228 struct ar_hdr
*hdr
= arch_hdr (current
);
1229 if (strncmp (normal
, hdr
->ar_name
, thislen
) != 0
1230 || (thislen
< sizeof hdr
->ar_name
1231 && hdr
->ar_name
[thislen
] != ar_padchar (current
)))
1233 /* Must have been using extended format even though it
1234 didn't need to. Fix it to use normal format. */
1235 memcpy (hdr
->ar_name
, normal
, thislen
);
1236 if (thislen
< maxname
1237 || (thislen
== maxname
&& thislen
< sizeof hdr
->ar_name
))
1238 hdr
->ar_name
[thislen
] = ar_padchar (current
);
1243 if (total_namelen
== 0)
1246 *tabloc
= bfd_zalloc (abfd
, total_namelen
);
1247 if (*tabloc
== NULL
)
1250 *tablen
= total_namelen
;
1253 for (current
= abfd
->archive_head
; current
!= NULL
; current
=
1257 unsigned int thislen
;
1259 normal
= normalize (current
, current
->filename
);
1263 thislen
= strlen (normal
);
1264 if (thislen
> maxname
)
1266 /* Works for now; may need to be re-engineered if we
1267 encounter an oddball archive format and want to
1268 generalise this hack. */
1269 struct ar_hdr
*hdr
= arch_hdr (current
);
1270 strcpy (strptr
, normal
);
1271 if (! trailing_slash
)
1272 strptr
[thislen
] = '\012';
1275 strptr
[thislen
] = '/';
1276 strptr
[thislen
+ 1] = '\012';
1278 hdr
->ar_name
[0] = ar_padchar (current
);
1279 /* We know there will always be enough room (one of the few
1280 cases where you may safely use sprintf). */
1281 sprintf ((hdr
->ar_name
) + 1, "%-d", (unsigned) (strptr
- *tabloc
));
1282 /* Kinda Kludgy. We should just use the returned value of
1283 sprintf but not all implementations get this right. */
1285 char *temp
= hdr
->ar_name
+ 2;
1286 for (; temp
< hdr
->ar_name
+ maxname
; temp
++)
1290 strptr
+= thislen
+ 1;
1299 /** A couple of functions for creating ar_hdrs */
1301 #ifdef HPUX_LARGE_AR_IDS
1302 /* Function to encode large UID/GID values according to HP. */
1305 hpux_uid_gid_encode (char str
[6], long int id
)
1309 str
[5] = '@' + (id
& 3);
1312 for (cnt
= 4; cnt
>= 0; ++cnt
, id
>>= 6)
1313 str
[cnt
] = ' ' + (id
& 0x3f);
1315 #endif /* HPUX_LARGE_AR_IDS */
1325 /* Takes a filename, returns an arelt_data for it, or NULL if it can't
1326 make one. The filename must refer to a filename in the filesystem.
1327 The filename field of the ar_hdr will NOT be initialized. If member
1328 is set, and it's an in-memory bfd, we fake it. */
1330 static struct areltdata
*
1331 bfd_ar_hdr_from_filesystem (bfd
*abfd
, const char *filename
, bfd
*member
)
1334 struct areltdata
*ared
;
1339 if (member
&& (member
->flags
& BFD_IN_MEMORY
) != 0)
1341 /* Assume we just "made" the member, and fake it. */
1342 struct bfd_in_memory
*bim
= member
->iostream
;
1343 time (&status
.st_mtime
);
1344 status
.st_uid
= getuid ();
1345 status
.st_gid
= getgid ();
1346 status
.st_mode
= 0644;
1347 status
.st_size
= bim
->size
;
1349 else if (stat (filename
, &status
) != 0)
1351 bfd_set_error (bfd_error_system_call
);
1355 amt
= sizeof (struct ar_hdr
) + sizeof (struct areltdata
);
1356 ared
= bfd_zalloc (abfd
, amt
);
1359 hdr
= (struct ar_hdr
*) (((char *) ared
) + sizeof (struct areltdata
));
1361 /* ar headers are space padded, not null padded! */
1362 memset (hdr
, ' ', sizeof (struct ar_hdr
));
1364 strncpy (hdr
->ar_fmag
, ARFMAG
, 2);
1366 /* Goddamned sprintf doesn't permit MAXIMUM field lengths. */
1367 sprintf ((hdr
->ar_date
), "%-12ld", (long) status
.st_mtime
);
1368 #ifdef HPUX_LARGE_AR_IDS
1369 /* HP has a very "special" way to handle UID/GID's with numeric values
1371 if (status
.st_uid
> 99999)
1372 hpux_uid_gid_encode (hdr
->ar_gid
, (long) status
.st_uid
);
1375 sprintf ((hdr
->ar_uid
), "%ld", (long) status
.st_uid
);
1376 #ifdef HPUX_LARGE_AR_IDS
1377 /* HP has a very "special" way to handle UID/GID's with numeric values
1379 if (status
.st_gid
> 99999)
1380 hpux_uid_gid_encode (hdr
->ar_uid
, (long) status
.st_gid
);
1383 sprintf ((hdr
->ar_gid
), "%ld", (long) status
.st_gid
);
1384 sprintf ((hdr
->ar_mode
), "%-8o", (unsigned int) status
.st_mode
);
1385 char tmpbuf
[12]; // \0 and possibly - (negative)
1386 sprintf (tmpbuf
, "%-10ld", (long) status
.st_size
);
1387 memcpy(hdr
->ar_size
, tmpbuf
, 10);
1388 /* Correct for a lossage in sprintf whereby it null-terminates. I cannot
1389 understand how these C losers could design such a ramshackle bunch of
1391 temp
= (char *) hdr
;
1392 temp1
= temp
+ sizeof (struct ar_hdr
) - 2;
1393 for (; temp
< temp1
; temp
++)
1398 strncpy (hdr
->ar_fmag
, ARFMAG
, 2);
1399 ared
->parsed_size
= status
.st_size
;
1400 ared
->arch_header
= (char *) hdr
;
1405 /* This is magic required by the "ar" program. Since it's
1406 undocumented, it's undocumented. You may think that it would take
1407 a strong stomach to write this, and it does, but it takes even a
1408 stronger stomach to try to code around such a thing! */
1410 struct ar_hdr
*bfd_special_undocumented_glue (bfd
*, const char *);
1413 bfd_special_undocumented_glue (bfd
*abfd
, const char *filename
)
1415 struct areltdata
*ar_elt
= bfd_ar_hdr_from_filesystem (abfd
, filename
, 0);
1418 return (struct ar_hdr
*) ar_elt
->arch_header
;
1421 /* Analogous to stat call. */
1424 bfd_generic_stat_arch_elt (bfd
*abfd
, struct stat
*buf
)
1429 if (abfd
->arelt_data
== NULL
)
1431 bfd_set_error (bfd_error_invalid_operation
);
1435 hdr
= arch_hdr (abfd
);
1437 #define foo(arelt, stelt, size) \
1438 buf->stelt = strtol (hdr->arelt, &aloser, size); \
1439 if (aloser == hdr->arelt) \
1442 /* Some platforms support special notations for large IDs. */
1443 #ifdef HPUX_LARGE_AR_IDS
1444 # define foo2(arelt, stelt, size) \
1445 if (hdr->arelt[5] == ' ') \
1447 foo (arelt, stelt, size); \
1452 for (buf->stelt = cnt = 0; cnt < 5; ++cnt) \
1454 if (hdr->arelt[cnt] < ' ' || hdr->arelt[cnt] > ' ' + 0x3f) \
1457 buf->stelt += hdr->arelt[cnt] - ' '; \
1459 if (hdr->arelt[5] < '@' || hdr->arelt[5] > '@' + 3) \
1462 buf->stelt += hdr->arelt[5] - '@'; \
1465 # define foo2(arelt, stelt, size) foo (arelt, stelt, size)
1468 foo (ar_date
, st_mtime
, 10);
1469 foo2 (ar_uid
, st_uid
, 10);
1470 foo2 (ar_gid
, st_gid
, 10);
1471 foo (ar_mode
, st_mode
, 8);
1473 buf
->st_size
= arch_eltdata (abfd
)->parsed_size
;
1479 bfd_dont_truncate_arname (bfd
*abfd
, const char *pathname
, char *arhdr
)
1481 /* FIXME: This interacts unpleasantly with ar's quick-append option.
1482 Fortunately ic960 users will never use that option. Fixing this
1483 is very hard; fortunately I know how to do it and will do so once
1484 intel's release is out the door. */
1486 struct ar_hdr
*hdr
= (struct ar_hdr
*) arhdr
;
1488 const char *filename
;
1489 size_t maxlen
= ar_maxnamelen (abfd
);
1491 if ((bfd_get_file_flags (abfd
) & BFD_TRADITIONAL_FORMAT
) != 0)
1493 bfd_bsd_truncate_arname (abfd
, pathname
, arhdr
);
1497 filename
= normalize (abfd
, pathname
);
1498 if (filename
== NULL
)
1504 length
= strlen (filename
);
1506 if (length
<= maxlen
)
1507 memcpy (hdr
->ar_name
, filename
, length
);
1509 /* Add the padding character if there is room for it. */
1511 || (length
== maxlen
&& length
< sizeof hdr
->ar_name
))
1512 (hdr
->ar_name
)[length
] = ar_padchar (abfd
);
1516 bfd_bsd_truncate_arname (bfd
*abfd
, const char *pathname
, char *arhdr
)
1518 struct ar_hdr
*hdr
= (struct ar_hdr
*) arhdr
;
1520 const char *filename
= strrchr (pathname
, '/');
1521 size_t maxlen
= ar_maxnamelen (abfd
);
1523 #ifdef HAVE_DOS_BASED_FILE_SYSTEM
1525 /* We could have foo/bar\\baz, or foo\\bar, or d:bar. */
1526 char *bslash
= strrchr (pathname
, '\\');
1527 if (filename
== NULL
|| (bslash
!= NULL
&& bslash
> filename
))
1529 if (filename
== NULL
&& pathname
[0] != '\0' && pathname
[1] == ':')
1530 filename
= pathname
+ 1;
1534 if (filename
== NULL
)
1535 filename
= pathname
;
1539 length
= strlen (filename
);
1541 if (length
<= maxlen
)
1542 memcpy (hdr
->ar_name
, filename
, length
);
1545 /* pathname: meet procrustes */
1546 memcpy (hdr
->ar_name
, filename
, maxlen
);
1550 if (length
< maxlen
)
1551 (hdr
->ar_name
)[length
] = ar_padchar (abfd
);
1554 /* Store name into ar header. Truncates the name to fit.
1555 1> strip pathname to be just the basename.
1556 2> if it's short enuf to fit, stuff it in.
1557 3> If it doesn't end with .o, truncate it to fit
1558 4> truncate it before the .o, append .o, stuff THAT in. */
1560 /* This is what gnu ar does. It's better but incompatible with the
1564 bfd_gnu_truncate_arname (bfd
*abfd
, const char *pathname
, char *arhdr
)
1566 struct ar_hdr
*hdr
= (struct ar_hdr
*) arhdr
;
1568 const char *filename
= strrchr (pathname
, '/');
1569 size_t maxlen
= ar_maxnamelen (abfd
);
1571 #ifdef HAVE_DOS_BASED_FILE_SYSTEM
1573 /* We could have foo/bar\\baz, or foo\\bar, or d:bar. */
1574 char *bslash
= strrchr (pathname
, '\\');
1575 if (filename
== NULL
|| (bslash
!= NULL
&& bslash
> filename
))
1577 if (filename
== NULL
&& pathname
[0] != '\0' && pathname
[1] == ':')
1578 filename
= pathname
+ 1;
1582 if (filename
== NULL
)
1583 filename
= pathname
;
1587 length
= strlen (filename
);
1589 if (length
<= maxlen
)
1590 memcpy (hdr
->ar_name
, filename
, length
);
1592 { /* pathname: meet procrustes */
1593 memcpy (hdr
->ar_name
, filename
, maxlen
);
1594 if ((filename
[length
- 2] == '.') && (filename
[length
- 1] == 'o'))
1596 hdr
->ar_name
[maxlen
- 2] = '.';
1597 hdr
->ar_name
[maxlen
- 1] = 'o';
1603 (hdr
->ar_name
)[length
] = ar_padchar (abfd
);
1606 /* The BFD is open for write and has its format set to bfd_archive. */
1609 _bfd_write_archive_contents (bfd
*arch
)
1612 char *etable
= NULL
;
1613 bfd_size_type elength
= 0;
1614 const char *ename
= NULL
;
1615 bfd_boolean makemap
= bfd_has_map (arch
);
1616 /* If no .o's, don't bother to make a map. */
1617 bfd_boolean hasobjects
= FALSE
;
1618 bfd_size_type wrote
;
1622 /* Verify the viability of all entries; if any of them live in the
1623 filesystem (as opposed to living in an archive open for input)
1624 then construct a fresh ar_hdr for them. */
1625 for (current
= arch
->archive_head
; current
; current
= current
->next
)
1627 /* This check is checking the bfds for the objects we're reading
1628 from (which are usually either an object file or archive on
1629 disk), not the archive entries we're writing to. We don't
1630 actually create bfds for the archive members, we just copy
1631 them byte-wise when we write out the archive. */
1632 if (bfd_write_p (current
))
1634 bfd_set_error (bfd_error_invalid_operation
);
1637 if (!current
->arelt_data
)
1639 current
->arelt_data
=
1640 bfd_ar_hdr_from_filesystem (arch
, current
->filename
, current
);
1641 if (!current
->arelt_data
)
1644 /* Put in the file name. */
1645 BFD_SEND (arch
, _bfd_truncate_arname
,
1646 (arch
, current
->filename
, (char *) arch_hdr (current
)));
1649 if (makemap
&& ! hasobjects
)
1650 { /* Don't bother if we won't make a map! */
1651 if ((bfd_check_format (current
, bfd_object
))
1652 #if 0 /* FIXME -- these are not set correctly */
1653 && ((bfd_get_file_flags (current
) & HAS_SYMS
))
1660 if (!BFD_SEND (arch
, _bfd_construct_extended_name_table
,
1661 (arch
, &etable
, &elength
, &ename
)))
1664 if (bfd_seek (arch
, (file_ptr
) 0, SEEK_SET
) != 0)
1667 wrote
= bfd_bwrite (BFD_GNU960_ARMAG (arch
), SARMAG
, arch
);
1669 wrote
= bfd_bwrite (ARMAG
, SARMAG
, arch
);
1671 if (wrote
!= SARMAG
)
1674 if (makemap
&& hasobjects
)
1676 if (! _bfd_compute_and_write_armap (arch
, (unsigned int) elength
))
1684 memset (&hdr
, 0, sizeof (struct ar_hdr
));
1685 strcpy (hdr
.ar_name
, ename
);
1686 /* Round size up to even number in archive header. */
1687 char tmpbuf
[12]; // \0 and possibly - (negative)
1688 sprintf (tmpbuf
, "%-10d", (int) ((elength
+ 1) & ~(bfd_size_type
) 1));
1689 memcpy (hdr
.ar_size
, tmpbuf
, 10);
1690 strncpy (hdr
.ar_fmag
, ARFMAG
, 2);
1691 for (i
= 0; i
< sizeof (struct ar_hdr
); i
++)
1692 if (((char *) (&hdr
))[i
] == '\0')
1693 (((char *) (&hdr
))[i
]) = ' ';
1694 if ((bfd_bwrite (&hdr
, sizeof (struct ar_hdr
), arch
)
1695 != sizeof (struct ar_hdr
))
1696 || bfd_bwrite (etable
, elength
, arch
) != elength
)
1698 if ((elength
% 2) == 1)
1700 if (bfd_bwrite ("\012", 1, arch
) != 1)
1705 for (current
= arch
->archive_head
; current
; current
= current
->next
)
1707 char buffer
[DEFAULT_BUFFERSIZE
];
1708 unsigned int remaining
= arelt_size (current
);
1709 struct ar_hdr
*hdr
= arch_hdr (current
);
1711 /* Write ar header. */
1712 if (bfd_bwrite (hdr
, sizeof (*hdr
), arch
)
1715 if (bfd_seek (current
, (file_ptr
) 0, SEEK_SET
) != 0)
1719 unsigned int amt
= DEFAULT_BUFFERSIZE
;
1720 if (amt
> remaining
)
1723 if (bfd_bread (buffer
, amt
, current
) != amt
)
1725 if (bfd_get_error () != bfd_error_system_call
)
1726 bfd_set_error (bfd_error_malformed_archive
);
1729 if (bfd_bwrite (buffer
, amt
, arch
) != amt
)
1733 if ((arelt_size (current
) % 2) == 1)
1735 if (bfd_bwrite ("\012", 1, arch
) != 1)
1740 if (makemap
&& hasobjects
)
1742 /* Verify the timestamp in the archive file. If it would not be
1743 accepted by the linker, rewrite it until it would be. If
1744 anything odd happens, break out and just return. (The
1745 Berkeley linker checks the timestamp and refuses to read the
1746 table-of-contents if it is >60 seconds less than the file's
1747 modified-time. That painful hack requires this painful hack. */
1751 if (bfd_update_armap_timestamp (arch
))
1753 (*_bfd_error_handler
)
1754 (_("Warning: writing archive was slow: rewriting timestamp\n"));
1756 while (++tries
< 6);
1762 /* Note that the namidx for the first symbol is 0. */
1765 _bfd_compute_and_write_armap (bfd
*arch
, unsigned int elength
)
1767 char *first_name
= NULL
;
1769 file_ptr elt_no
= 0;
1770 struct orl
*map
= NULL
;
1771 unsigned int orl_max
= 1024; /* fine initial default */
1772 unsigned int orl_count
= 0;
1773 int stridx
= 0; /* string index */
1774 asymbol
**syms
= NULL
;
1779 /* Dunno if this is the best place for this info... */
1781 elength
+= sizeof (struct ar_hdr
);
1782 elength
+= elength
% 2;
1784 amt
= orl_max
* sizeof (struct orl
);
1785 map
= bfd_malloc (amt
);
1789 /* We put the symbol names on the arch objalloc, and then discard
1791 first_name
= bfd_alloc (arch
, 1);
1792 if (first_name
== NULL
)
1795 /* Drop all the files called __.SYMDEF, we're going to make our own. */
1796 while (arch
->archive_head
&&
1797 strcmp (arch
->archive_head
->filename
, "__.SYMDEF") == 0)
1798 arch
->archive_head
= arch
->archive_head
->next
;
1800 /* Map over each element. */
1801 for (current
= arch
->archive_head
;
1803 current
= current
->next
, elt_no
++)
1805 if (bfd_check_format (current
, bfd_object
)
1806 && (bfd_get_file_flags (current
) & HAS_SYMS
) != 0)
1812 storage
= bfd_get_symtab_upper_bound (current
);
1818 if (storage
> syms_max
)
1823 syms
= bfd_malloc (syms_max
);
1827 symcount
= bfd_canonicalize_symtab (current
, syms
);
1831 /* Now map over all the symbols, picking out the ones we
1833 for (src_count
= 0; src_count
< symcount
; src_count
++)
1835 flagword flags
= (syms
[src_count
])->flags
;
1836 asection
*sec
= syms
[src_count
]->section
;
1838 if ((flags
& BSF_GLOBAL
||
1840 flags
& BSF_INDIRECT
||
1841 bfd_is_com_section (sec
))
1842 && ! bfd_is_und_section (sec
))
1844 bfd_size_type namelen
;
1845 struct orl
*new_map
;
1847 /* This symbol will go into the archive header. */
1848 if (orl_count
== orl_max
)
1851 amt
= orl_max
* sizeof (struct orl
);
1852 new_map
= bfd_realloc (map
, amt
);
1853 if (new_map
== NULL
)
1859 namelen
= strlen (syms
[src_count
]->name
);
1860 amt
= sizeof (char *);
1861 map
[orl_count
].name
= bfd_alloc (arch
, amt
);
1862 if (map
[orl_count
].name
== NULL
)
1864 *(map
[orl_count
].name
) = bfd_alloc (arch
, namelen
+ 1);
1865 if (*(map
[orl_count
].name
) == NULL
)
1867 strcpy (*(map
[orl_count
].name
), syms
[src_count
]->name
);
1868 map
[orl_count
].u
.abfd
= current
;
1869 map
[orl_count
].namidx
= stridx
;
1871 stridx
+= namelen
+ 1;
1877 /* Now ask the BFD to free up any cached information, so we
1878 don't fill all of memory with symbol tables. */
1879 if (! bfd_free_cached_info (current
))
1884 /* OK, now we have collected all the data, let's write them out. */
1885 ret
= BFD_SEND (arch
, write_armap
,
1886 (arch
, elength
, map
, orl_count
, stridx
));
1892 if (first_name
!= NULL
)
1893 bfd_release (arch
, first_name
);
1902 if (first_name
!= NULL
)
1903 bfd_release (arch
, first_name
);
1909 bsd_write_armap (bfd
*arch
,
1910 unsigned int elength
,
1912 unsigned int orl_count
,
1915 int padit
= stridx
& 1;
1916 unsigned int ranlibsize
= orl_count
* BSD_SYMDEF_SIZE
;
1917 unsigned int stringsize
= stridx
+ padit
;
1918 /* Include 8 bytes to store ranlibsize and stringsize in output. */
1919 unsigned int mapsize
= ranlibsize
+ stringsize
+ 8;
1921 bfd
*current
= arch
->archive_head
;
1922 bfd
*last_elt
= current
; /* last element arch seen */
1926 struct stat statbuf
;
1929 firstreal
= mapsize
+ elength
+ sizeof (struct ar_hdr
) + SARMAG
;
1931 stat (arch
->filename
, &statbuf
);
1932 memset (&hdr
, 0, sizeof (struct ar_hdr
));
1933 sprintf (hdr
.ar_name
, RANLIBMAG
);
1934 /* Remember the timestamp, to keep it holy. But fudge it a little. */
1935 bfd_ardata (arch
)->armap_timestamp
= statbuf
.st_mtime
+ ARMAP_TIME_OFFSET
;
1936 bfd_ardata (arch
)->armap_datepos
= (SARMAG
1937 + offsetof (struct ar_hdr
, ar_date
[0]));
1938 sprintf (hdr
.ar_date
, "%ld", bfd_ardata (arch
)->armap_timestamp
);
1939 sprintf (hdr
.ar_uid
, "%ld", (long) getuid ());
1940 sprintf (hdr
.ar_gid
, "%ld", (long) getgid ());
1941 char tmpbuf
[12]; // \0 and possibly - (negative)
1942 sprintf (tmpbuf
, "%-10d", (int) mapsize
);
1943 memcpy (hdr
.ar_size
, tmpbuf
, 10);
1944 strncpy (hdr
.ar_fmag
, ARFMAG
, 2);
1945 for (i
= 0; i
< sizeof (struct ar_hdr
); i
++)
1946 if (((char *) (&hdr
))[i
] == '\0')
1947 (((char *) (&hdr
))[i
]) = ' ';
1948 if (bfd_bwrite (&hdr
, sizeof (struct ar_hdr
), arch
)
1949 != sizeof (struct ar_hdr
))
1951 H_PUT_32 (arch
, ranlibsize
, temp
);
1952 if (bfd_bwrite (temp
, sizeof (temp
), arch
) != sizeof (temp
))
1955 for (count
= 0; count
< orl_count
; count
++)
1957 bfd_byte buf
[BSD_SYMDEF_SIZE
];
1959 if (map
[count
].u
.abfd
!= last_elt
)
1963 firstreal
+= arelt_size (current
) + sizeof (struct ar_hdr
);
1964 firstreal
+= firstreal
% 2;
1965 current
= current
->next
;
1967 while (current
!= map
[count
].u
.abfd
);
1968 } /* if new archive element */
1971 H_PUT_32 (arch
, map
[count
].namidx
, buf
);
1972 H_PUT_32 (arch
, firstreal
, buf
+ BSD_SYMDEF_OFFSET_SIZE
);
1973 if (bfd_bwrite (buf
, BSD_SYMDEF_SIZE
, arch
)
1978 /* Now write the strings themselves. */
1979 H_PUT_32 (arch
, stringsize
, temp
);
1980 if (bfd_bwrite (temp
, sizeof (temp
), arch
) != sizeof (temp
))
1982 for (count
= 0; count
< orl_count
; count
++)
1984 size_t len
= strlen (*map
[count
].name
) + 1;
1986 if (bfd_bwrite (*map
[count
].name
, len
, arch
) != len
)
1990 /* The spec sez this should be a newline. But in order to be
1991 bug-compatible for sun's ar we use a null. */
1994 if (bfd_bwrite ("", 1, arch
) != 1)
2001 /* At the end of archive file handling, update the timestamp in the
2002 file, so the linker will accept it.
2004 Return TRUE if the timestamp was OK, or an unusual problem happened.
2005 Return FALSE if we updated the timestamp. */
2008 _bfd_archive_bsd_update_armap_timestamp (bfd
*arch
)
2010 struct stat archstat
;
2014 /* Flush writes, get last-write timestamp from file, and compare it
2015 to the timestamp IN the file. */
2017 if (bfd_stat (arch
, &archstat
) == -1)
2019 bfd_perror (_("Reading archive file mod timestamp"));
2021 /* Can't read mod time for some reason. */
2024 if (archstat
.st_mtime
<= bfd_ardata (arch
)->armap_timestamp
)
2025 /* OK by the linker's rules. */
2028 /* Update the timestamp. */
2029 bfd_ardata (arch
)->armap_timestamp
= archstat
.st_mtime
+ ARMAP_TIME_OFFSET
;
2031 /* Prepare an ASCII version suitable for writing. */
2032 memset (hdr
.ar_date
, 0, sizeof (hdr
.ar_date
));
2033 sprintf (hdr
.ar_date
, "%ld", bfd_ardata (arch
)->armap_timestamp
);
2034 for (i
= 0; i
< sizeof (hdr
.ar_date
); i
++)
2035 if (hdr
.ar_date
[i
] == '\0')
2036 (hdr
.ar_date
)[i
] = ' ';
2038 /* Write it into the file. */
2039 bfd_ardata (arch
)->armap_datepos
= (SARMAG
2040 + offsetof (struct ar_hdr
, ar_date
[0]));
2041 if (bfd_seek (arch
, bfd_ardata (arch
)->armap_datepos
, SEEK_SET
) != 0
2042 || (bfd_bwrite (hdr
.ar_date
, sizeof (hdr
.ar_date
), arch
)
2043 != sizeof (hdr
.ar_date
)))
2045 bfd_perror (_("Writing updated armap timestamp"));
2047 /* Some error while writing. */
2051 /* We updated the timestamp successfully. */
2055 /* A coff armap looks like :
2057 struct ar_hdr with name = '/'
2059 offset of file for symbol 0
2060 offset of file for symbol 1
2062 offset of file for symbol n-1
2070 coff_write_armap (bfd
*arch
,
2071 unsigned int elength
,
2073 unsigned int symbol_count
,
2076 /* The size of the ranlib is the number of exported symbols in the
2077 archive * the number of bytes in an int, + an int for the count. */
2078 unsigned int ranlibsize
= (symbol_count
* 4) + 4;
2079 unsigned int stringsize
= stridx
;
2080 unsigned int mapsize
= stringsize
+ ranlibsize
;
2081 unsigned int archive_member_file_ptr
;
2082 bfd
*current
= arch
->archive_head
;
2086 int padit
= mapsize
& 1;
2091 /* Work out where the first object file will go in the archive. */
2092 archive_member_file_ptr
= (mapsize
2094 + sizeof (struct ar_hdr
)
2097 memset (&hdr
, 0, sizeof (struct ar_hdr
));
2098 hdr
.ar_name
[0] = '/';
2099 char tmpbuf
[12]; // \0 and possibly - (negative)
2100 sprintf (tmpbuf
, "%-10d", (int) mapsize
);
2101 memcpy(hdr
.ar_size
, tmpbuf
, 10);
2102 sprintf (hdr
.ar_date
, "%ld", (long) time (NULL
));
2103 /* This, at least, is what Intel coff sets the values to. */
2104 sprintf ((hdr
.ar_uid
), "%d", 0);
2105 sprintf ((hdr
.ar_gid
), "%d", 0);
2106 sprintf ((hdr
.ar_mode
), "%-7o", (unsigned) 0);
2107 strncpy (hdr
.ar_fmag
, ARFMAG
, 2);
2109 for (i
= 0; i
< sizeof (struct ar_hdr
); i
++)
2110 if (((char *) (&hdr
))[i
] == '\0')
2111 (((char *) (&hdr
))[i
]) = ' ';
2113 /* Write the ar header for this item and the number of symbols. */
2115 if (bfd_bwrite (&hdr
, sizeof (struct ar_hdr
), arch
)
2116 != sizeof (struct ar_hdr
))
2119 if (!bfd_write_bigendian_4byte_int (arch
, symbol_count
))
2122 /* Two passes, first write the file offsets for each symbol -
2123 remembering that each offset is on a two byte boundary. */
2125 /* Write out the file offset for the file associated with each
2126 symbol, and remember to keep the offsets padded out. */
2128 current
= arch
->archive_head
;
2130 while (current
!= NULL
&& count
< symbol_count
)
2132 /* For each symbol which is used defined in this object, write
2133 out the object file's address in the archive. */
2135 while (count
< symbol_count
&& map
[count
].u
.abfd
== current
)
2137 if (!bfd_write_bigendian_4byte_int (arch
, archive_member_file_ptr
))
2141 /* Add size of this archive entry. */
2142 archive_member_file_ptr
+= arelt_size (current
) + sizeof (struct ar_hdr
);
2143 /* Remember aboout the even alignment. */
2144 archive_member_file_ptr
+= archive_member_file_ptr
% 2;
2145 current
= current
->next
;
2148 /* Now write the strings themselves. */
2149 for (count
= 0; count
< symbol_count
; count
++)
2151 size_t len
= strlen (*map
[count
].name
) + 1;
2153 if (bfd_bwrite (*map
[count
].name
, len
, arch
) != len
)
2157 /* The spec sez this should be a newline. But in order to be
2158 bug-compatible for arc960 we use a null. */
2161 if (bfd_bwrite ("", 1, arch
) != 1)