1 /* BFD back-end for archive files (libraries).
2 Copyright 1990, 91, 92, 93, 94, 95, 1996 Free Software Foundation, Inc.
3 Written by Cygnus Support. Mostly Gumby Henkel-Wallace's fault.
5 This file is part of BFD, the Binary File Descriptor library.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
22 @setfilename archive-info
27 An archive (or library) is just another BFD. It has a symbol
28 table, although there's not much a user program will do with it.
30 The big difference between an archive BFD and an ordinary BFD
31 is that the archive doesn't have sections. Instead it has a
32 chain of BFDs that are considered its contents. These BFDs can
33 be manipulated like any other. The BFDs contained in an
34 archive opened for reading will all be opened for reading. You
35 may put either input or output BFDs into an archive opened for
36 output; they will be handled correctly when the archive is closed.
38 Use <<bfd_openr_next_archived_file>> to step through
39 the contents of an archive opened for input. You don't
40 have to read the entire archive if you don't want
41 to! Read it until you find what you want.
43 Archive contents of output BFDs are chained through the
44 <<next>> pointer in a BFD. The first one is findable through
45 the <<archive_head>> slot of the archive. Set it with
46 <<bfd_set_archive_head>> (q.v.). A given BFD may be in only one
47 open output archive at a time.
49 As expected, the BFD archive code is more general than the
50 archive code of any given environment. BFD archives may
51 contain files of different formats (e.g., a.out and coff) and
52 even different architectures. You may even place archives
53 recursively into archives!
55 This can cause unexpected confusion, since some archive
56 formats are more expressive than others. For instance, Intel
57 COFF archives can preserve long filenames; SunOS a.out archives
58 cannot. If you move a file from the first to the second
59 format and back again, the filename may be truncated.
60 Likewise, different a.out environments have different
61 conventions as to how they truncate filenames, whether they
62 preserve directory names in filenames, etc. When
63 interoperating with native tools, be sure your files are
66 Beware: most of these formats do not react well to the
67 presence of spaces in filenames. We do the best we can, but
68 can't always handle this case due to restrictions in the format of
69 archives. Many Unix utilities are braindead in regards to
70 spaces and such in filenames anyway, so this shouldn't be much
73 Archives are supported in BFD in <<archive.c>>.
78 o - all archive elements start on an even boundary, newline padded;
79 o - all arch headers are char *;
80 o - all arch headers are the same size (across architectures).
83 /* Some formats provide a way to cram a long filename into the short
84 (16 chars) space provided by a BSD archive. The trick is: make a
85 special "file" in the front of the archive, sort of like the SYMDEF
86 entry. If the filename is too long to fit, put it in the extended
87 name table, and use its index as the filename. To prevent
88 confusion prepend the index with a space. This means you can't
89 have filenames that start with a space, but then again, many Unix
90 utilities can't handle that anyway.
92 This scheme unfortunately requires that you stand on your head in
93 order to write an archive since you need to put a magic file at the
94 front, and need to touch every entry to do so. C'est la vie.
96 We support two variants of this idea:
97 The SVR4 format (extended name table is named "//"),
98 and an extended pseudo-BSD variant (extended name table is named
99 "ARFILENAMES/"). The origin of the latter format is uncertain.
101 BSD 4.4 uses a third scheme: It writes a long filename
102 directly after the header. This allows 'ar q' to work.
103 We currently can read BSD 4.4 archives, but not write them.
106 /* Summary of archive member names:
108 Symbol table (must be first):
109 "__.SYMDEF " - Symbol table, Berkeley style, produced by ranlib.
110 "/ " - Symbol table, system 5 style.
112 Long name table (must be before regular file members):
113 "// " - Long name table, System 5 R4 style.
114 "ARFILENAMES/ " - Long name table, non-standard extended BSD (not BSD 4.4).
116 Regular file members with short names:
117 "filename.o/ " - Regular file, System 5 style (embedded spaces ok).
118 "filename.o " - Regular file, Berkeley style (no embedded spaces).
120 Regular files with long names (or embedded spaces, for BSD variants):
121 "/18 " - SVR4 style, name at offset 18 in name table.
122 "#1/23 " - Long name (or embedded paces) 23 characters long,
123 BSD 4.4 style, full name follows header.
124 Implemented for reading, not writing.
125 " 18 " - Long name 18 characters long, extended pseudo-BSD.
132 #include "aout/ranlib.h"
134 #include <string.h> /* For memchr, strrchr and friends */
142 #define BFD_GNU960_ARMAG(abfd) (BFD_COFF_FILE_P((abfd)) ? ARMAG : ARMAGB)
145 /* Can't define this in hosts/foo.h, because (e.g. in gprof) the hosts file
146 is included, then obstack.h, which thinks if offsetof is defined, it
147 doesn't need to include stddef.h. */
148 /* Define offsetof for those systems which lack it */
150 #if !defined (offsetof)
151 #define offsetof(TYPE, MEMBER) ((unsigned long) &((TYPE *)0)->MEMBER)
154 /* We keep a cache of archive filepointers to archive elements to
155 speed up searching the archive by filepos. We only add an entry to
156 the cache when we actually read one. We also don't sort the cache;
157 it's generally short enough to search linearly.
158 Note that the pointers here point to the front of the ar_hdr, not
159 to the front of the contents!
165 struct ar_cache *next;
168 #define ar_padchar(abfd) ((abfd)->xvec->ar_pad_char)
169 #define ar_maxnamelen(abfd) ((abfd)->xvec->ar_max_namelen)
171 #define arch_eltdata(bfd) ((struct areltdata *)((bfd)->arelt_data))
172 #define arch_hdr(bfd) ((struct ar_hdr *)arch_eltdata(bfd)->arch_header)
174 static char *get_extended_arelt_filename PARAMS ((bfd *arch,
176 static boolean do_slurp_bsd_armap PARAMS ((bfd *abfd));
177 static boolean do_slurp_coff_armap PARAMS ((bfd *abfd));
178 static const char *normalize PARAMS ((bfd *, const char *file));
179 static struct areltdata *bfd_ar_hdr_from_filesystem PARAMS ((bfd *abfd,
183 _bfd_generic_mkarchive (abfd)
186 abfd->tdata.aout_ar_data = ((struct artdata *)
187 bfd_zalloc (abfd, sizeof (struct artdata)));
189 if (bfd_ardata (abfd) == NULL)
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)->tdata = NULL;
206 symindex bfd_get_next_mapent(bfd *abfd, symindex previous, carsym **sym);
209 Step through archive @var{abfd}'s symbol table (if it
210 has one). Successively update @var{sym} with the next symbol's
211 information, returning that symbol's (internal) index into the
214 Supply <<BFD_NO_MORE_SYMBOLS>> as the @var{previous} entry to get
215 the first one; returns <<BFD_NO_MORE_SYMBOLS>> when you've already
218 A <<carsym>> is a canonical archive symbol. The only
219 user-visible element is its name, a null-terminated string.
223 bfd_get_next_mapent (abfd, prev, entry)
228 if (!bfd_has_map (abfd))
230 bfd_set_error (bfd_error_invalid_operation);
231 return BFD_NO_MORE_SYMBOLS;
234 if (prev == BFD_NO_MORE_SYMBOLS)
238 if (prev >= bfd_ardata (abfd)->symdef_count)
239 return BFD_NO_MORE_SYMBOLS;
241 *entry = (bfd_ardata (abfd)->symdefs + prev);
245 /* To be called by backends only */
248 _bfd_create_empty_archive_element_shell (obfd)
251 return _bfd_new_bfd_contained_in (obfd);
259 boolean bfd_set_archive_head(bfd *output, bfd *new_head);
262 Set the head of the chain of
263 BFDs contained in the archive @var{output} to @var{new_head}.
267 bfd_set_archive_head (output_archive, new_head)
272 output_archive->archive_head = new_head;
277 _bfd_look_for_bfd_in_cache (arch_bfd, filepos)
281 struct ar_cache *current;
283 for (current = bfd_ardata (arch_bfd)->cache; current != NULL;
284 current = current->next)
285 if (current->ptr == filepos)
286 return current->arelt;
291 /* Kind of stupid to call cons for each one, but we don't do too many */
293 _bfd_add_bfd_to_archive_cache (arch_bfd, filepos, new_elt)
294 bfd *arch_bfd, *new_elt;
297 struct ar_cache *new_cache = ((struct ar_cache *)
298 bfd_zalloc (arch_bfd,
299 sizeof (struct ar_cache)));
301 if (new_cache == NULL)
304 new_cache->ptr = filepos;
305 new_cache->arelt = new_elt;
306 new_cache->next = (struct ar_cache *) NULL;
307 if (bfd_ardata (arch_bfd)->cache == NULL)
308 bfd_ardata (arch_bfd)->cache = new_cache;
311 struct ar_cache *current = bfd_ardata (arch_bfd)->cache;
313 while (current->next != NULL)
314 current = current->next;
315 current->next = new_cache;
321 /* The name begins with space. Hence the rest of the name is an index into
325 get_extended_arelt_filename (arch, name)
329 unsigned long index = 0;
331 /* Should extract string so that I can guarantee not to overflow into
332 the next region, but I'm too lazy. */
334 /* Skip first char, which is '/' in SVR4 or ' ' in some other variants. */
335 index = strtol (name + 1, NULL, 10);
338 bfd_set_error (bfd_error_malformed_archive);
342 return bfd_ardata (arch)->extended_names + index;
345 /* This functions reads an arch header and returns an areltdata pointer, or
348 Presumes the file pointer is already in the right place (ie pointing
349 to the ar_hdr in the file). Moves the file pointer; on success it
350 should be pointing to the front of the file contents; on failure it
351 could have been moved arbitrarily.
355 _bfd_generic_read_ar_hdr (abfd)
358 return _bfd_generic_read_ar_hdr_mag (abfd, (const char *) NULL);
361 /* Alpha ECOFF uses an optional different ARFMAG value, so we have a
362 variant of _bfd_generic_read_ar_hdr which accepts a magic string. */
365 _bfd_generic_read_ar_hdr_mag (abfd, mag)
370 char *hdrp = (char *) &hdr;
371 unsigned int parsed_size;
372 struct areltdata *ared;
373 char *filename = NULL;
374 unsigned int namelen = 0;
375 unsigned int allocsize = sizeof (struct areltdata) + sizeof (struct ar_hdr);
378 if (bfd_read ((PTR) hdrp, 1, sizeof (struct ar_hdr), abfd)
379 != sizeof (struct ar_hdr))
381 if (bfd_get_error () != bfd_error_system_call)
382 bfd_set_error (bfd_error_no_more_archived_files);
385 if (strncmp (hdr.ar_fmag, ARFMAG, 2) != 0
387 || strncmp (hdr.ar_fmag, mag, 2) != 0))
389 bfd_set_error (bfd_error_malformed_archive);
394 parsed_size = strtol (hdr.ar_size, NULL, 10);
397 bfd_set_error (bfd_error_malformed_archive);
401 /* Extract the filename from the archive - there are two ways to
402 specify an extendend name table, either the first char of the
403 name is a space, or it's a slash. */
404 if ((hdr.ar_name[0] == '/'
405 || (hdr.ar_name[0] == ' '
406 && memchr (hdr.ar_name, '/', ar_maxnamelen (abfd)) == NULL))
407 && bfd_ardata (abfd)->extended_names != NULL)
409 filename = get_extended_arelt_filename (abfd, hdr.ar_name);
410 if (filename == NULL)
412 bfd_set_error (bfd_error_malformed_archive);
416 /* BSD4.4-style long filename.
417 Only implemented for reading, so far! */
418 else if (hdr.ar_name[0] == '#' && hdr.ar_name[1] == '1'
419 && hdr.ar_name[2] == '/' && isdigit (hdr.ar_name[3]))
421 /* BSD-4.4 extended name */
422 namelen = atoi (&hdr.ar_name[3]);
423 allocsize += namelen + 1;
424 parsed_size -= namelen;
426 allocptr = bfd_zalloc (abfd, allocsize);
427 if (allocptr == NULL)
430 + sizeof (struct areltdata)
431 + sizeof (struct ar_hdr));
432 if (bfd_read (filename, 1, namelen, abfd) != namelen)
434 if (bfd_get_error () != bfd_error_system_call)
435 bfd_set_error (bfd_error_no_more_archived_files);
438 filename[namelen] = '\0';
442 /* We judge the end of the name by looking for '/' or ' '.
443 Note: The SYSV format (terminated by '/') allows embedded
444 spaces, so only look for ' ' if we don't find '/'. */
447 while (hdr.ar_name[namelen] != '\0' &&
448 hdr.ar_name[namelen] != '/')
451 if (namelen == (unsigned) ar_maxnamelen (abfd))
454 while (hdr.ar_name[namelen] != ' '
455 && namelen < (unsigned) ar_maxnamelen (abfd))
461 allocsize += namelen + 1;
466 allocptr = bfd_zalloc (abfd, allocsize);
467 if (allocptr == NULL)
471 ared = (struct areltdata *) allocptr;
473 ared->arch_header = allocptr + sizeof (struct areltdata);
474 memcpy ((char *) ared->arch_header, (char *) &hdr, sizeof (struct ar_hdr));
475 ared->parsed_size = parsed_size;
477 if (filename != NULL)
478 ared->filename = filename;
481 ared->filename = allocptr + (sizeof (struct areltdata) +
482 sizeof (struct ar_hdr));
484 memcpy (ared->filename, hdr.ar_name, namelen);
485 ared->filename[namelen] = '\0';
491 /* This is an internal function; it's mainly used when indexing
492 through the archive symbol table, but also used to get the next
493 element, since it handles the bookkeeping so nicely for us. */
496 _bfd_get_elt_at_filepos (archive, filepos)
500 struct areltdata *new_areldata;
503 n_nfd = _bfd_look_for_bfd_in_cache (archive, filepos);
507 if (0 > bfd_seek (archive, filepos, SEEK_SET))
510 if ((new_areldata = (struct areltdata *) _bfd_read_ar_hdr (archive)) == NULL)
513 n_nfd = _bfd_create_empty_archive_element_shell (archive);
516 bfd_release (archive, (PTR) new_areldata);
520 n_nfd->origin = bfd_tell (archive);
521 n_nfd->arelt_data = (PTR) new_areldata;
522 n_nfd->filename = new_areldata->filename;
524 if (_bfd_add_bfd_to_archive_cache (archive, filepos, n_nfd))
528 bfd_release (archive, (PTR) n_nfd);
529 bfd_release (archive, (PTR) new_areldata);
533 /* Return the BFD which is referenced by the symbol in ABFD indexed by
534 INDEX. INDEX should have been returned by bfd_get_next_mapent. */
537 _bfd_generic_get_elt_at_index (abfd, index)
543 entry = bfd_ardata (abfd)->symdefs + index;
544 return _bfd_get_elt_at_filepos (abfd, entry->file_offset);
549 bfd_openr_next_archived_file
552 bfd *bfd_openr_next_archived_file(bfd *archive, bfd *previous);
555 Provided a BFD, @var{archive}, containing an archive and NULL, open
556 an input BFD on the first contained element and returns that.
557 Subsequent calls should pass
558 the archive and the previous return value to return a created
559 BFD to the next contained element. NULL is returned when there
565 bfd_openr_next_archived_file (archive, last_file)
569 if ((bfd_get_format (archive) != bfd_archive) ||
570 (archive->direction == write_direction))
572 bfd_set_error (bfd_error_invalid_operation);
576 return BFD_SEND (archive,
577 openr_next_archived_file,
583 bfd_generic_openr_next_archived_file (archive, last_file)
590 filestart = bfd_ardata (archive)->first_file_filepos;
593 unsigned int size = arelt_size (last_file);
594 /* Pad to an even boundary...
595 Note that last_file->origin can be odd in the case of
596 BSD-4.4-style element with a long odd size. */
597 filestart = last_file->origin + size;
598 filestart += filestart % 2;
601 return _bfd_get_elt_at_filepos (archive, filestart);
606 bfd_generic_archive_p (abfd)
609 struct artdata *tdata_hold;
610 char armag[SARMAG + 1];
612 tdata_hold = abfd->tdata.aout_ar_data;
614 if (bfd_read ((PTR) armag, 1, SARMAG, abfd) != SARMAG)
616 if (bfd_get_error () != bfd_error_system_call)
617 bfd_set_error (bfd_error_wrong_format);
622 if (strncmp (armag, BFD_GNU960_ARMAG (abfd), SARMAG) != 0)
625 if (strncmp (armag, ARMAG, SARMAG) != 0 &&
626 strncmp (armag, ARMAGB, SARMAG) != 0)
630 /* We are setting bfd_ardata(abfd) here, but since bfd_ardata
631 involves a cast, we can't do it as the left operand of assignment. */
632 abfd->tdata.aout_ar_data = ((struct artdata *)
633 bfd_zalloc (abfd, sizeof (struct artdata)));
635 if (bfd_ardata (abfd) == NULL)
638 bfd_ardata (abfd)->first_file_filepos = SARMAG;
639 bfd_ardata (abfd)->cache = NULL;
640 bfd_ardata (abfd)->archive_head = NULL;
641 bfd_ardata (abfd)->symdefs = NULL;
642 bfd_ardata (abfd)->extended_names = NULL;
643 bfd_ardata (abfd)->tdata = NULL;
645 if (!BFD_SEND (abfd, _bfd_slurp_armap, (abfd)))
647 bfd_release (abfd, bfd_ardata (abfd));
648 abfd->tdata.aout_ar_data = tdata_hold;
652 if (!BFD_SEND (abfd, _bfd_slurp_extended_name_table, (abfd)))
654 bfd_release (abfd, bfd_ardata (abfd));
655 abfd->tdata.aout_ar_data = tdata_hold;
659 if (bfd_has_map (abfd))
663 /* This archive has a map, so we may presume that the contents
664 are object files. Make sure that if the first file in the
665 archive can be recognized as an object file, it is for this
666 target. If not, assume that this is the wrong format. If
667 the first file is not an object file, somebody is doing
668 something weird, and we permit it so that ar -t will work.
670 This is done because any normal format will recognize any
671 normal archive, regardless of the format of the object files.
672 We do accept an empty archive. */
674 first = bfd_openr_next_archived_file (abfd, (bfd *) NULL);
679 first->target_defaulted = false;
681 if (bfd_check_format (first, bfd_object)
682 && first->xvec != abfd->xvec)
684 (void) bfd_close (first);
685 bfd_release (abfd, bfd_ardata (abfd));
686 abfd->tdata.aout_ar_data = tdata_hold;
687 bfd_set_error (bfd_error_wrong_format);
691 /* We ought to close first here, but we can't, because we
692 have no way to remove it from the archive cache. FIXME. */
699 /* Some constants for a 32 bit BSD archive structure. We do not
700 support 64 bit archives presently; so far as I know, none actually
701 exist. Supporting them would require changing these constants, and
702 changing some bfd_h_get_32 to bfd_h_get_64. */
704 /* The size of an external symdef structure. */
705 #define BSD_SYMDEF_SIZE 8
707 /* The offset from the start of a symdef structure to the file offset. */
708 #define BSD_SYMDEF_OFFSET_SIZE 4
710 /* The size of the symdef count. */
711 #define BSD_SYMDEF_COUNT_SIZE 4
713 /* The size of the string count. */
714 #define BSD_STRING_COUNT_SIZE 4
716 /* Returns false on error, true otherwise */
719 do_slurp_bsd_armap (abfd)
722 struct areltdata *mapdata;
723 unsigned int counter;
724 bfd_byte *raw_armap, *rbase;
725 struct artdata *ardata = bfd_ardata (abfd);
727 unsigned int parsed_size;
730 mapdata = (struct areltdata *) _bfd_read_ar_hdr (abfd);
733 parsed_size = mapdata->parsed_size;
734 bfd_release (abfd, (PTR) mapdata); /* Don't need it any more. */
736 raw_armap = (bfd_byte *) bfd_zalloc (abfd, parsed_size);
737 if (raw_armap == (bfd_byte *) NULL)
740 if (bfd_read ((PTR) raw_armap, 1, parsed_size, abfd) != parsed_size)
742 if (bfd_get_error () != bfd_error_system_call)
743 bfd_set_error (bfd_error_malformed_archive);
745 bfd_release (abfd, (PTR) raw_armap);
749 ardata->symdef_count = bfd_h_get_32 (abfd, raw_armap) / BSD_SYMDEF_SIZE;
751 if (ardata->symdef_count * BSD_SYMDEF_SIZE >
752 parsed_size - BSD_SYMDEF_COUNT_SIZE)
754 /* Probably we're using the wrong byte ordering. */
755 bfd_set_error (bfd_error_wrong_format);
760 rbase = raw_armap + BSD_SYMDEF_COUNT_SIZE;
761 stringbase = ((char *) rbase
762 + ardata->symdef_count * BSD_SYMDEF_SIZE
763 + BSD_STRING_COUNT_SIZE);
764 ardata->symdefs = (carsym *) bfd_alloc (abfd,
765 (ardata->symdef_count
767 if (!ardata->symdefs)
770 for (counter = 0, set = ardata->symdefs;
771 counter < ardata->symdef_count;
772 counter++, set++, rbase += BSD_SYMDEF_SIZE)
774 set->name = bfd_h_get_32 (abfd, rbase) + stringbase;
775 set->file_offset = bfd_h_get_32 (abfd, rbase + BSD_SYMDEF_OFFSET_SIZE);
778 ardata->first_file_filepos = bfd_tell (abfd);
779 /* Pad to an even boundary if you have to */
780 ardata->first_file_filepos += (ardata->first_file_filepos) % 2;
781 /* FIXME, we should provide some way to free raw_ardata when
782 we are done using the strings from it. For now, it seems
783 to be allocated on an obstack anyway... */
784 bfd_has_map (abfd) = true;
788 /* Returns false on error, true otherwise */
790 do_slurp_coff_armap (abfd)
793 struct areltdata *mapdata;
794 int *raw_armap, *rawptr;
795 struct artdata *ardata = bfd_ardata (abfd);
797 unsigned int stringsize;
798 unsigned int parsed_size;
800 unsigned int nsymz; /* Number of symbols in armap. */
801 bfd_vma (*swap) PARAMS ((const bfd_byte *));
802 char int_buf[sizeof (long)];
803 unsigned int carsym_size, ptrsize, i;
805 mapdata = (struct areltdata *) _bfd_read_ar_hdr (abfd);
808 parsed_size = mapdata->parsed_size;
809 bfd_release (abfd, (PTR) mapdata); /* Don't need it any more. */
811 if (bfd_read ((PTR) int_buf, 1, 4, abfd) != 4)
813 if (bfd_get_error () != bfd_error_system_call)
814 bfd_set_error (bfd_error_malformed_archive);
817 /* It seems that all numeric information in a coff archive is always
818 in big endian format, nomatter the host or target. */
820 nsymz = bfd_getb32 ((PTR) int_buf);
821 stringsize = parsed_size - (4 * nsymz) - 4;
824 /* ... except that some archive formats are broken, and it may be our
825 fault - the i960 little endian coff sometimes has big and sometimes
826 little, because our tools changed. Here's a horrible hack to clean
829 if (stringsize > 0xfffff)
831 /* This looks dangerous, let's do it the other way around */
832 nsymz = bfd_getl32 ((PTR) int_buf);
833 stringsize = parsed_size - (4 * nsymz) - 4;
838 /* The coff armap must be read sequentially. So we construct a
839 bsd-style one in core all at once, for simplicity. */
841 carsym_size = (nsymz * sizeof (carsym));
842 ptrsize = (4 * nsymz);
844 ardata->symdefs = (carsym *) bfd_zalloc (abfd, carsym_size + stringsize + 1);
845 if (ardata->symdefs == NULL)
847 carsyms = ardata->symdefs;
848 stringbase = ((char *) ardata->symdefs) + carsym_size;
850 /* Allocate and read in the raw offsets. */
851 raw_armap = (int *) bfd_alloc (abfd, ptrsize);
852 if (raw_armap == NULL)
853 goto release_symdefs;
854 if (bfd_read ((PTR) raw_armap, 1, ptrsize, abfd) != ptrsize
855 || bfd_read ((PTR) stringbase, 1, stringsize, abfd) != stringsize)
857 if (bfd_get_error () != bfd_error_system_call)
858 bfd_set_error (bfd_error_malformed_archive);
859 goto release_raw_armap;
862 /* OK, build the carsyms */
863 for (i = 0; i < nsymz; i++)
865 rawptr = raw_armap + i;
866 carsyms->file_offset = swap ((PTR) rawptr);
867 carsyms->name = stringbase;
868 stringbase += strlen (stringbase) + 1;
873 ardata->symdef_count = nsymz;
874 ardata->first_file_filepos = bfd_tell (abfd);
875 /* Pad to an even boundary if you have to */
876 ardata->first_file_filepos += (ardata->first_file_filepos) % 2;
879 bfd_has_map (abfd) = true;
880 bfd_release (abfd, (PTR) raw_armap);
883 /* Check for a second archive header (as used by PE) */
885 struct areltdata *tmp;
887 bfd_seek (abfd, ardata->first_file_filepos, SEEK_SET);
888 tmp = (struct areltdata *) _bfd_read_ar_hdr (abfd);
891 if (tmp->arch_header[0] == '/'
892 && tmp->arch_header[1] == ' ')
894 ardata->first_file_filepos +=
895 (tmp->parsed_size + sizeof(struct ar_hdr) + 1) & ~1;
897 bfd_release (abfd, tmp);
904 bfd_release (abfd, (PTR) raw_armap);
906 bfd_release (abfd, (PTR) (ardata)->symdefs);
910 /* This routine can handle either coff-style or bsd-style armaps.
911 Returns false on error, true otherwise */
914 bfd_slurp_armap (abfd)
918 int i = bfd_read ((PTR) nextname, 1, 16, abfd);
925 if (bfd_seek (abfd, (file_ptr) - 16, SEEK_CUR) != 0)
928 if (!strncmp (nextname, "__.SYMDEF ", 16)
929 || !strncmp (nextname, "__.SYMDEF/ ", 16)) /* old Linux archives */
930 return do_slurp_bsd_armap (abfd);
931 else if (!strncmp (nextname, "/ ", 16))
932 return do_slurp_coff_armap (abfd);
933 else if (!strncmp (nextname, "/SYM64/ ", 16))
935 /* Irix 6 archive--must be recognized by code in elf64-mips.c. */
936 bfd_set_error (bfd_error_wrong_format);
940 bfd_has_map (abfd) = false;
944 /* Returns false on error, true otherwise */
945 /* flavor 2 of a bsd armap, similar to bfd_slurp_bsd_armap except the
946 header is in a slightly different order and the map name is '/'.
947 This flavour is used by hp300hpux. */
949 #define HPUX_SYMDEF_COUNT_SIZE 2
952 bfd_slurp_bsd_armap_f2 (abfd)
955 struct areltdata *mapdata;
957 unsigned int counter;
958 bfd_byte *raw_armap, *rbase;
959 struct artdata *ardata = bfd_ardata (abfd);
961 unsigned int stringsize;
963 int i = bfd_read ((PTR) nextname, 1, 16, abfd);
970 /* The archive has at least 16 bytes in it */
971 if (bfd_seek (abfd, -16L, SEEK_CUR) != 0)
974 if (!strncmp (nextname, "__.SYMDEF ", 16)
975 || !strncmp (nextname, "__.SYMDEF/ ", 16)) /* old Linux archives */
976 return do_slurp_bsd_armap (abfd);
978 if (strncmp (nextname, "/ ", 16))
980 bfd_has_map (abfd) = false;
984 mapdata = (struct areltdata *) _bfd_read_ar_hdr (abfd);
988 raw_armap = (bfd_byte *) bfd_zalloc (abfd, mapdata->parsed_size);
989 if (raw_armap == NULL)
992 bfd_release (abfd, (PTR) mapdata);
996 if (bfd_read ((PTR) raw_armap, 1, mapdata->parsed_size, abfd) !=
997 mapdata->parsed_size)
999 if (bfd_get_error () != bfd_error_system_call)
1000 bfd_set_error (bfd_error_malformed_archive);
1002 bfd_release (abfd, (PTR) raw_armap);
1006 ardata->symdef_count = bfd_h_get_16 (abfd, (PTR) raw_armap);
1008 if (ardata->symdef_count * BSD_SYMDEF_SIZE
1009 > mapdata->parsed_size - HPUX_SYMDEF_COUNT_SIZE)
1011 /* Probably we're using the wrong byte ordering. */
1012 bfd_set_error (bfd_error_wrong_format);
1018 stringsize = bfd_h_get_32 (abfd, raw_armap + HPUX_SYMDEF_COUNT_SIZE);
1019 /* skip sym count and string sz */
1020 stringbase = ((char *) raw_armap
1021 + HPUX_SYMDEF_COUNT_SIZE
1022 + BSD_STRING_COUNT_SIZE);
1023 rbase = (bfd_byte *) stringbase + stringsize;
1024 ardata->symdefs = (carsym *) bfd_alloc (abfd,
1025 (ardata->symdef_count
1026 * BSD_SYMDEF_SIZE));
1027 if (!ardata->symdefs)
1030 for (counter = 0, set = ardata->symdefs;
1031 counter < ardata->symdef_count;
1032 counter++, set++, rbase += BSD_SYMDEF_SIZE)
1034 set->name = bfd_h_get_32 (abfd, rbase) + stringbase;
1035 set->file_offset = bfd_h_get_32 (abfd, rbase + BSD_SYMDEF_OFFSET_SIZE);
1038 ardata->first_file_filepos = bfd_tell (abfd);
1039 /* Pad to an even boundary if you have to */
1040 ardata->first_file_filepos += (ardata->first_file_filepos) % 2;
1041 /* FIXME, we should provide some way to free raw_ardata when
1042 we are done using the strings from it. For now, it seems
1043 to be allocated on an obstack anyway... */
1044 bfd_has_map (abfd) = true;
1048 /** Extended name table.
1050 Normally archives support only 14-character filenames.
1052 Intel has extended the format: longer names are stored in a special
1053 element (the first in the archive, or second if there is an armap);
1054 the name in the ar_hdr is replaced by <space><index into filename
1055 element>. Index is the P.R. of an int (decimal). Data General have
1056 extended the format by using the prefix // for the special element */
1058 /* Returns false on error, true otherwise */
1060 _bfd_slurp_extended_name_table (abfd)
1064 struct areltdata *namedata;
1066 /* FIXME: Formatting sucks here, and in case of failure of BFD_READ,
1067 we probably don't want to return true. */
1068 bfd_seek (abfd, bfd_ardata (abfd)->first_file_filepos, SEEK_SET);
1069 if (bfd_read ((PTR) nextname, 1, 16, abfd) == 16)
1071 if (bfd_seek (abfd, (file_ptr) - 16, SEEK_CUR) != 0)
1074 if (strncmp (nextname, "ARFILENAMES/ ", 16) != 0 &&
1075 strncmp (nextname, "// ", 16) != 0)
1077 bfd_ardata (abfd)->extended_names = NULL;
1081 namedata = (struct areltdata *) _bfd_read_ar_hdr (abfd);
1082 if (namedata == NULL)
1085 bfd_ardata (abfd)->extended_names =
1086 bfd_zalloc (abfd, namedata->parsed_size);
1087 if (bfd_ardata (abfd)->extended_names == NULL)
1090 bfd_release (abfd, (PTR) namedata);
1094 if (bfd_read ((PTR) bfd_ardata (abfd)->extended_names, 1,
1095 namedata->parsed_size, abfd) != namedata->parsed_size)
1097 if (bfd_get_error () != bfd_error_system_call)
1098 bfd_set_error (bfd_error_malformed_archive);
1099 bfd_release (abfd, (PTR) (bfd_ardata (abfd)->extended_names));
1100 bfd_ardata (abfd)->extended_names = NULL;
1104 /* Since the archive is supposed to be printable if it contains
1105 text, the entries in the list are newline-padded, not null
1106 padded. In SVR4-style archives, the names also have a
1107 trailing '/'. DOS/NT created archive often have \ in them
1108 We'll fix all problems here.. */
1110 char *temp = bfd_ardata (abfd)->extended_names;
1111 char *limit = temp + namedata->parsed_size;
1112 for (; temp < limit; ++temp) {
1113 if (*temp == '\012')
1114 temp[temp[-1] == '/' ? -1 : 0] = '\0';
1120 /* Pad to an even boundary if you have to */
1121 bfd_ardata (abfd)->first_file_filepos = bfd_tell (abfd);
1122 bfd_ardata (abfd)->first_file_filepos +=
1123 (bfd_ardata (abfd)->first_file_filepos) % 2;
1125 /* FIXME, we can't release namedata here because it was allocated
1126 below extended_names on the obstack... */
1127 /* bfd_release (abfd, namedata); */
1134 /* Return a copy of the stuff in the filename between any :]> and a
1137 normalize (abfd, file)
1145 first = file + strlen (file) - 1;
1148 while (first != file)
1152 if (*first == ':' || *first == ']' || *first == '>')
1160 copy = (char *) bfd_alloc (abfd, last - first + 1);
1164 memcpy (copy, first, last - first);
1165 copy[last - first] = 0;
1172 normalize (abfd, file)
1176 const char *filename = strrchr (file, '/');
1178 if (filename != (char *) NULL)
1186 /* Build a BFD style extended name table. */
1189 _bfd_archive_bsd_construct_extended_name_table (abfd, tabloc, tablen, name)
1192 bfd_size_type *tablen;
1195 *name = "ARFILENAMES/";
1196 return _bfd_construct_extended_name_table (abfd, false, tabloc, tablen);
1199 /* Build an SVR4 style extended name table. */
1202 _bfd_archive_coff_construct_extended_name_table (abfd, tabloc, tablen, name)
1205 bfd_size_type *tablen;
1209 return _bfd_construct_extended_name_table (abfd, true, tabloc, tablen);
1212 /* Follows archive_head and produces an extended name table if
1213 necessary. Returns (in tabloc) a pointer to an extended name
1214 table, and in tablen the length of the table. If it makes an entry
1215 it clobbers the filename so that the element may be written without
1216 further massage. Returns true if it ran successfully, false if
1217 something went wrong. A successful return may still involve a
1218 zero-length tablen! */
1221 _bfd_construct_extended_name_table (abfd, trailing_slash, tabloc, tablen)
1223 boolean trailing_slash;
1225 bfd_size_type *tablen;
1227 unsigned int maxname = abfd->xvec->ar_max_namelen;
1228 unsigned int total_namelen = 0;
1234 /* Figure out how long the table should be */
1235 for (current = abfd->archive_head; current != NULL; current = current->next)
1238 unsigned int thislen;
1240 normal = normalize (current, current->filename);
1244 thislen = strlen (normal);
1246 if (thislen > maxname
1247 && (bfd_get_file_flags (abfd) & BFD_TRADITIONAL_FORMAT) != 0)
1250 if (thislen > maxname)
1252 /* Add one to leave room for \n. */
1253 total_namelen += thislen + 1;
1256 /* Leave room for trailing slash. */
1262 struct ar_hdr *hdr = arch_hdr (current);
1263 if (strncmp (normal, hdr->ar_name, thislen) != 0
1264 || (thislen < sizeof hdr->ar_name
1265 && hdr->ar_name[thislen] != ar_padchar (current)))
1267 /* Must have been using extended format even though it
1268 didn't need to. Fix it to use normal format. */
1269 memcpy (hdr->ar_name, normal, thislen);
1270 if (thislen < maxname
1271 || (thislen == maxname && thislen < sizeof hdr->ar_name))
1272 hdr->ar_name[thislen] = ar_padchar (current);
1277 if (total_namelen == 0)
1280 *tabloc = bfd_zalloc (abfd, total_namelen);
1281 if (*tabloc == NULL)
1284 *tablen = total_namelen;
1287 for (current = abfd->archive_head; current != NULL; current =
1291 unsigned int thislen;
1293 normal = normalize (current, current->filename);
1297 thislen = strlen (normal);
1298 if (thislen > maxname)
1300 /* Works for now; may need to be re-engineered if we
1301 encounter an oddball archive format and want to
1302 generalise this hack. */
1303 struct ar_hdr *hdr = arch_hdr (current);
1304 strcpy (strptr, normal);
1305 if (! trailing_slash)
1306 strptr[thislen] = '\012';
1309 strptr[thislen] = '/';
1310 strptr[thislen + 1] = '\012';
1312 hdr->ar_name[0] = ar_padchar (current);
1313 /* We know there will always be enough room (one of the few
1314 cases where you may safely use sprintf). */
1315 sprintf ((hdr->ar_name) + 1, "%-d", (unsigned) (strptr - *tabloc));
1316 /* Kinda Kludgy. We should just use the returned value of
1317 sprintf but not all implementations get this right */
1319 char *temp = hdr->ar_name + 2;
1320 for (; temp < hdr->ar_name + maxname; temp++)
1324 strptr += thislen + 1;
1333 /** A couple of functions for creating ar_hdrs */
1335 /* Takes a filename, returns an arelt_data for it, or NULL if it can't
1336 make one. The filename must refer to a filename in the filesystem.
1337 The filename field of the ar_hdr will NOT be initialized */
1339 static struct areltdata *
1340 bfd_ar_hdr_from_filesystem (abfd, filename)
1342 const char *filename;
1345 struct areltdata *ared;
1349 if (stat (filename, &status) != 0)
1351 bfd_set_error (bfd_error_system_call);
1355 ared = (struct areltdata *) bfd_zalloc (abfd, sizeof (struct ar_hdr) +
1356 sizeof (struct areltdata));
1359 hdr = (struct ar_hdr *) (((char *) ared) + sizeof (struct areltdata));
1361 /* ar headers are space padded, not null padded! */
1362 memset ((PTR) 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 sprintf ((hdr->ar_uid), "%ld", (long) status.st_uid);
1369 sprintf ((hdr->ar_gid), "%ld", (long) status.st_gid);
1370 sprintf ((hdr->ar_mode), "%-8o", (unsigned int) status.st_mode);
1371 sprintf ((hdr->ar_size), "%-10ld", (long) status.st_size);
1372 /* Correct for a lossage in sprintf whereby it null-terminates. I cannot
1373 understand how these C losers could design such a ramshackle bunch of
1375 temp = (char *) hdr;
1376 temp1 = temp + sizeof (struct ar_hdr) - 2;
1377 for (; temp < temp1; temp++)
1382 strncpy (hdr->ar_fmag, ARFMAG, 2);
1383 ared->parsed_size = status.st_size;
1384 ared->arch_header = (char *) hdr;
1389 /* This is magic required by the "ar" program. Since it's
1390 undocumented, it's undocumented. You may think that it would take
1391 a strong stomach to write this, and it does, but it takes even a
1392 stronger stomach to try to code around such a thing! */
1395 bfd_special_undocumented_glue (abfd, filename)
1399 struct areltdata *ar_elt = bfd_ar_hdr_from_filesystem (abfd, filename);
1402 return (struct ar_hdr *) ar_elt->arch_header;
1406 /* Analogous to stat call */
1408 bfd_generic_stat_arch_elt (abfd, buf)
1415 if (abfd->arelt_data == NULL)
1417 bfd_set_error (bfd_error_invalid_operation);
1421 hdr = arch_hdr (abfd);
1423 #define foo(arelt, stelt, size) \
1424 buf->stelt = strtol (hdr->arelt, &aloser, size); \
1425 if (aloser == hdr->arelt) return -1;
1427 foo (ar_date, st_mtime, 10);
1428 foo (ar_uid, st_uid, 10);
1429 foo (ar_gid, st_gid, 10);
1430 foo (ar_mode, st_mode, 8);
1432 buf->st_size = arch_eltdata (abfd)->parsed_size;
1438 bfd_dont_truncate_arname (abfd, pathname, arhdr)
1440 CONST char *pathname;
1443 /* FIXME: This interacts unpleasantly with ar's quick-append option.
1444 Fortunately ic960 users will never use that option. Fixing this
1445 is very hard; fortunately I know how to do it and will do so once
1446 intel's release is out the door. */
1448 struct ar_hdr *hdr = (struct ar_hdr *) arhdr;
1450 const char *filename;
1451 size_t maxlen = ar_maxnamelen (abfd);
1453 if ((bfd_get_file_flags (abfd) & BFD_TRADITIONAL_FORMAT) != 0)
1455 bfd_bsd_truncate_arname (abfd, pathname, arhdr);
1459 filename = normalize (abfd, pathname);
1460 if (filename == NULL)
1466 length = strlen (filename);
1468 if (length <= maxlen)
1469 memcpy (hdr->ar_name, filename, length);
1471 /* Add the padding character if there is room for it. */
1473 || (length == maxlen && length < sizeof hdr->ar_name))
1474 (hdr->ar_name)[length] = ar_padchar (abfd);
1478 bfd_bsd_truncate_arname (abfd, pathname, arhdr)
1480 CONST char *pathname;
1483 struct ar_hdr *hdr = (struct ar_hdr *) arhdr;
1485 CONST char *filename = strrchr (pathname, '/');
1486 int maxlen = ar_maxnamelen (abfd);
1488 if (filename == NULL)
1489 filename = pathname;
1493 length = strlen (filename);
1495 if (length <= maxlen)
1496 memcpy (hdr->ar_name, filename, length);
1499 /* pathname: meet procrustes */
1500 memcpy (hdr->ar_name, filename, maxlen);
1504 if (length < maxlen)
1505 (hdr->ar_name)[length] = ar_padchar (abfd);
1508 /* Store name into ar header. Truncates the name to fit.
1509 1> strip pathname to be just the basename.
1510 2> if it's short enuf to fit, stuff it in.
1511 3> If it doesn't end with .o, truncate it to fit
1512 4> truncate it before the .o, append .o, stuff THAT in. */
1514 /* This is what gnu ar does. It's better but incompatible with the
1518 bfd_gnu_truncate_arname (abfd, pathname, arhdr)
1520 CONST char *pathname;
1523 struct ar_hdr *hdr = (struct ar_hdr *) arhdr;
1525 CONST char *filename = strrchr (pathname, '/');
1526 int maxlen = ar_maxnamelen (abfd);
1528 if (filename == NULL)
1529 filename = pathname;
1533 length = strlen (filename);
1535 if (length <= maxlen)
1536 memcpy (hdr->ar_name, filename, length);
1538 { /* pathname: meet procrustes */
1539 memcpy (hdr->ar_name, filename, maxlen);
1540 if ((filename[length - 2] == '.') && (filename[length - 1] == 'o'))
1542 hdr->ar_name[maxlen - 2] = '.';
1543 hdr->ar_name[maxlen - 1] = 'o';
1549 (hdr->ar_name)[length] = ar_padchar (abfd);
1552 /* The BFD is open for write and has its format set to bfd_archive */
1555 _bfd_write_archive_contents (arch)
1559 char *etable = NULL;
1560 bfd_size_type elength = 0;
1561 const char *ename = NULL;
1562 boolean makemap = bfd_has_map (arch);
1563 boolean hasobjects = false; /* if no .o's, don't bother to make a map */
1564 bfd_size_type wrote;
1568 /* Verify the viability of all entries; if any of them live in the
1569 filesystem (as opposed to living in an archive open for input)
1570 then construct a fresh ar_hdr for them. */
1571 for (current = arch->archive_head; current; current = current->next)
1573 if (bfd_write_p (current))
1575 bfd_set_error (bfd_error_invalid_operation);
1578 if (!current->arelt_data)
1580 current->arelt_data =
1581 (PTR) bfd_ar_hdr_from_filesystem (arch, current->filename);
1582 if (!current->arelt_data)
1585 /* Put in the file name */
1586 BFD_SEND (arch, _bfd_truncate_arname, (arch,
1588 (char *) arch_hdr (current)));
1591 if (makemap && ! hasobjects)
1592 { /* don't bother if we won't make a map! */
1593 if ((bfd_check_format (current, bfd_object))
1594 #if 0 /* FIXME -- these are not set correctly */
1595 && ((bfd_get_file_flags (current) & HAS_SYMS))
1602 if (!BFD_SEND (arch, _bfd_construct_extended_name_table,
1603 (arch, &etable, &elength, &ename)))
1606 if (bfd_seek (arch, (file_ptr) 0, SEEK_SET) != 0)
1609 wrote = bfd_write (BFD_GNU960_ARMAG (arch), 1, SARMAG, arch);
1611 wrote = bfd_write (ARMAG, 1, SARMAG, arch);
1613 if (wrote != SARMAG)
1616 if (makemap && hasobjects)
1618 if (_bfd_compute_and_write_armap (arch, elength) != true)
1626 memset ((char *) (&hdr), 0, sizeof (struct ar_hdr));
1627 strcpy (hdr.ar_name, ename);
1628 /* Round size up to even number in archive header. */
1629 sprintf (&(hdr.ar_size[0]), "%-10d",
1630 (int) ((elength + 1) & ~1));
1631 strncpy (hdr.ar_fmag, ARFMAG, 2);
1632 for (i = 0; i < sizeof (struct ar_hdr); i++)
1633 if (((char *) (&hdr))[i] == '\0')
1634 (((char *) (&hdr))[i]) = ' ';
1635 if ((bfd_write ((char *) &hdr, 1, sizeof (struct ar_hdr), arch)
1636 != sizeof (struct ar_hdr))
1637 || bfd_write (etable, 1, elength, arch) != elength)
1639 if ((elength % 2) == 1)
1641 if (bfd_write ("\012", 1, 1, arch) != 1)
1646 for (current = arch->archive_head; current; current = current->next)
1648 char buffer[DEFAULT_BUFFERSIZE];
1649 unsigned int remaining = arelt_size (current);
1650 struct ar_hdr *hdr = arch_hdr (current);
1652 /* write ar header */
1653 if (bfd_write ((char *) hdr, 1, sizeof (*hdr), arch) != sizeof (*hdr))
1655 if (bfd_seek (current, (file_ptr) 0, SEEK_SET) != 0)
1659 unsigned int amt = DEFAULT_BUFFERSIZE;
1660 if (amt > remaining)
1663 if (bfd_read (buffer, amt, 1, current) != amt)
1665 if (bfd_get_error () != bfd_error_system_call)
1666 bfd_set_error (bfd_error_malformed_archive);
1669 if (bfd_write (buffer, amt, 1, arch) != amt)
1673 if ((arelt_size (current) % 2) == 1)
1675 if (bfd_write ("\012", 1, 1, arch) != 1)
1680 if (makemap && hasobjects)
1682 /* Verify the timestamp in the archive file. If it would not be
1683 accepted by the linker, rewrite it until it would be. If
1684 anything odd happens, break out and just return. (The
1685 Berkeley linker checks the timestamp and refuses to read the
1686 table-of-contents if it is >60 seconds less than the file's
1687 modified-time. That painful hack requires this painful hack. */
1691 if (bfd_update_armap_timestamp (arch))
1693 (*_bfd_error_handler)
1694 ("Warning: writing archive was slow: rewriting timestamp\n");
1696 while (++tries < 6);
1702 /* Note that the namidx for the first symbol is 0 */
1705 _bfd_compute_and_write_armap (arch, elength)
1707 unsigned int elength;
1709 char *first_name = NULL;
1711 file_ptr elt_no = 0;
1712 struct orl *map = NULL;
1713 int orl_max = 1024; /* fine initial default */
1715 int stridx = 0; /* string index */
1716 asymbol **syms = NULL;
1720 /* Dunno if this is the best place for this info... */
1722 elength += sizeof (struct ar_hdr);
1723 elength += elength % 2;
1725 map = (struct orl *) bfd_malloc (orl_max * sizeof (struct orl));
1729 /* We put the symbol names on the arch obstack, and then discard
1731 first_name = bfd_alloc (arch, 1);
1732 if (first_name == NULL)
1735 /* Drop all the files called __.SYMDEF, we're going to make our
1737 while (arch->archive_head &&
1738 strcmp (arch->archive_head->filename, "__.SYMDEF") == 0)
1739 arch->archive_head = arch->archive_head->next;
1741 /* Map over each element */
1742 for (current = arch->archive_head;
1743 current != (bfd *) NULL;
1744 current = current->next, elt_no++)
1746 if ((bfd_check_format (current, bfd_object) == true)
1747 && ((bfd_get_file_flags (current) & HAS_SYMS)))
1753 storage = bfd_get_symtab_upper_bound (current);
1759 if (storage > syms_max)
1764 syms = (asymbol **) bfd_malloc ((size_t) syms_max);
1768 symcount = bfd_canonicalize_symtab (current, syms);
1772 /* Now map over all the symbols, picking out the ones we want */
1773 for (src_count = 0; src_count < symcount; src_count++)
1775 flagword flags = (syms[src_count])->flags;
1776 asection *sec = syms[src_count]->section;
1778 if ((flags & BSF_GLOBAL ||
1780 flags & BSF_INDIRECT ||
1781 bfd_is_com_section (sec))
1782 && ! bfd_is_und_section (sec))
1785 struct orl *new_map;
1787 /* This symbol will go into the archive header */
1788 if (orl_count == orl_max)
1793 bfd_realloc (map, orl_max * sizeof (struct orl)));
1794 if (new_map == (struct orl *) NULL)
1800 namelen = strlen (syms[src_count]->name);
1801 map[orl_count].name = ((char **)
1804 if (map[orl_count].name == NULL)
1806 *(map[orl_count].name) = bfd_alloc (arch, namelen + 1);
1807 if (*(map[orl_count].name) == NULL)
1809 strcpy (*(map[orl_count].name), syms[src_count]->name);
1810 (map[orl_count]).pos = (file_ptr) current;
1811 (map[orl_count]).namidx = stridx;
1813 stridx += namelen + 1;
1819 /* Now ask the BFD to free up any cached information, so we
1820 don't fill all of memory with symbol tables. */
1821 if (! bfd_free_cached_info (current))
1826 /* OK, now we have collected all the data, let's write them out */
1827 ret = BFD_SEND (arch, write_armap,
1828 (arch, elength, map, orl_count, stridx));
1834 if (first_name != NULL)
1835 bfd_release (arch, first_name);
1844 if (first_name != NULL)
1845 bfd_release (arch, first_name);
1851 bsd_write_armap (arch, elength, map, orl_count, stridx)
1853 unsigned int elength;
1855 unsigned int orl_count;
1858 int padit = stridx & 1;
1859 unsigned int ranlibsize = orl_count * BSD_SYMDEF_SIZE;
1860 unsigned int stringsize = stridx + padit;
1861 /* Include 8 bytes to store ranlibsize and stringsize in output. */
1862 unsigned int mapsize = ranlibsize + stringsize + 8;
1864 bfd *current = arch->archive_head;
1865 bfd *last_elt = current; /* last element arch seen */
1869 struct stat statbuf;
1872 firstreal = mapsize + elength + sizeof (struct ar_hdr) + SARMAG;
1874 stat (arch->filename, &statbuf);
1875 memset ((char *) (&hdr), 0, sizeof (struct ar_hdr));
1876 sprintf (hdr.ar_name, RANLIBMAG);
1877 /* Remember the timestamp, to keep it holy. But fudge it a little. */
1878 bfd_ardata (arch)->armap_timestamp = statbuf.st_mtime + ARMAP_TIME_OFFSET;
1879 bfd_ardata (arch)->armap_datepos = (SARMAG
1880 + offsetof (struct ar_hdr, ar_date[0]));
1881 sprintf (hdr.ar_date, "%ld", bfd_ardata (arch)->armap_timestamp);
1882 sprintf (hdr.ar_uid, "%ld", (long) getuid ());
1883 sprintf (hdr.ar_gid, "%ld", (long) getgid ());
1884 sprintf (hdr.ar_size, "%-10d", (int) mapsize);
1885 strncpy (hdr.ar_fmag, ARFMAG, 2);
1886 for (i = 0; i < sizeof (struct ar_hdr); i++)
1887 if (((char *) (&hdr))[i] == '\0')
1888 (((char *) (&hdr))[i]) = ' ';
1889 if (bfd_write ((char *) &hdr, 1, sizeof (struct ar_hdr), arch)
1890 != sizeof (struct ar_hdr))
1892 bfd_h_put_32 (arch, (bfd_vma) ranlibsize, temp);
1893 if (bfd_write (temp, 1, sizeof (temp), arch) != sizeof (temp))
1896 for (count = 0; count < orl_count; count++)
1898 bfd_byte buf[BSD_SYMDEF_SIZE];
1900 if (((bfd *) (map[count]).pos) != last_elt)
1904 firstreal += arelt_size (current) + sizeof (struct ar_hdr);
1905 firstreal += firstreal % 2;
1906 current = current->next;
1908 while (current != (bfd *) (map[count]).pos);
1909 } /* if new archive element */
1912 bfd_h_put_32 (arch, map[count].namidx, buf);
1913 bfd_h_put_32 (arch, firstreal, buf + BSD_SYMDEF_OFFSET_SIZE);
1914 if (bfd_write (buf, BSD_SYMDEF_SIZE, 1, arch) != BSD_SYMDEF_SIZE)
1918 /* now write the strings themselves */
1919 bfd_h_put_32 (arch, stringsize, temp);
1920 if (bfd_write (temp, 1, sizeof (temp), arch) != sizeof (temp))
1922 for (count = 0; count < orl_count; count++)
1924 size_t len = strlen (*map[count].name) + 1;
1926 if (bfd_write (*map[count].name, 1, len, arch) != len)
1930 /* The spec sez this should be a newline. But in order to be
1931 bug-compatible for sun's ar we use a null. */
1934 if (bfd_write ("", 1, 1, arch) != 1)
1941 /* At the end of archive file handling, update the timestamp in the
1942 file, so the linker will accept it.
1944 Return true if the timestamp was OK, or an unusual problem happened.
1945 Return false if we updated the timestamp. */
1948 _bfd_archive_bsd_update_armap_timestamp (arch)
1951 struct stat archstat;
1955 /* Flush writes, get last-write timestamp from file, and compare it
1956 to the timestamp IN the file. */
1958 if (bfd_stat (arch, &archstat) == -1)
1960 perror ("Reading archive file mod timestamp");
1961 return true; /* Can't read mod time for some reason */
1963 if (archstat.st_mtime <= bfd_ardata (arch)->armap_timestamp)
1964 return true; /* OK by the linker's rules */
1966 /* Update the timestamp. */
1967 bfd_ardata (arch)->armap_timestamp = archstat.st_mtime + ARMAP_TIME_OFFSET;
1969 /* Prepare an ASCII version suitable for writing. */
1970 memset (hdr.ar_date, 0, sizeof (hdr.ar_date));
1971 sprintf (hdr.ar_date, "%ld", bfd_ardata (arch)->armap_timestamp);
1972 for (i = 0; i < sizeof (hdr.ar_date); i++)
1973 if (hdr.ar_date[i] == '\0')
1974 (hdr.ar_date)[i] = ' ';
1976 /* Write it into the file. */
1977 bfd_ardata (arch)->armap_datepos = (SARMAG
1978 + offsetof (struct ar_hdr, ar_date[0]));
1979 if (bfd_seek (arch, bfd_ardata (arch)->armap_datepos, SEEK_SET) != 0
1980 || (bfd_write (hdr.ar_date, sizeof (hdr.ar_date), 1, arch)
1981 != sizeof (hdr.ar_date)))
1983 /* FIXME: bfd can't call perror. */
1984 perror ("Writing updated armap timestamp");
1985 return true; /* Some error while writing */
1988 return false; /* We updated the timestamp successfully. */
1991 /* A coff armap looks like :
1993 struct ar_hdr with name = '/'
1995 offset of file for symbol 0
1996 offset of file for symbol 1
1998 offset of file for symbol n-1
2006 coff_write_armap (arch, elength, map, symbol_count, stridx)
2008 unsigned int elength;
2010 unsigned int symbol_count;
2013 /* The size of the ranlib is the number of exported symbols in the
2014 archive * the number of bytes in a int, + an int for the count */
2015 unsigned int ranlibsize = (symbol_count * 4) + 4;
2016 unsigned int stringsize = stridx;
2017 unsigned int mapsize = stringsize + ranlibsize;
2018 file_ptr archive_member_file_ptr;
2019 bfd *current = arch->archive_head;
2023 int padit = mapsize & 1;
2028 /* work out where the first object file will go in the archive */
2029 archive_member_file_ptr = (mapsize
2031 + sizeof (struct ar_hdr)
2034 memset ((char *) (&hdr), 0, sizeof (struct ar_hdr));
2035 hdr.ar_name[0] = '/';
2036 sprintf (hdr.ar_size, "%-10d", (int) mapsize);
2037 sprintf (hdr.ar_date, "%ld", (long) time (NULL));
2038 /* This, at least, is what Intel coff sets the values to.: */
2039 sprintf ((hdr.ar_uid), "%d", 0);
2040 sprintf ((hdr.ar_gid), "%d", 0);
2041 sprintf ((hdr.ar_mode), "%-7o", (unsigned) 0);
2042 strncpy (hdr.ar_fmag, ARFMAG, 2);
2044 for (i = 0; i < sizeof (struct ar_hdr); i++)
2045 if (((char *) (&hdr))[i] == '\0')
2046 (((char *) (&hdr))[i]) = ' ';
2048 /* Write the ar header for this item and the number of symbols */
2050 if (bfd_write ((PTR) &hdr, 1, sizeof (struct ar_hdr), arch)
2051 != sizeof (struct ar_hdr))
2054 bfd_write_bigendian_4byte_int (arch, symbol_count);
2056 /* Two passes, first write the file offsets for each symbol -
2057 remembering that each offset is on a two byte boundary. */
2059 /* Write out the file offset for the file associated with each
2060 symbol, and remember to keep the offsets padded out. */
2062 current = arch->archive_head;
2064 while (current != (bfd *) NULL && count < symbol_count)
2066 /* For each symbol which is used defined in this object, write out
2067 the object file's address in the archive */
2069 while (((bfd *) (map[count]).pos) == current)
2071 bfd_write_bigendian_4byte_int (arch, archive_member_file_ptr);
2074 /* Add size of this archive entry */
2075 archive_member_file_ptr += (arelt_size (current)
2076 + sizeof (struct ar_hdr));
2077 /* remember aboout the even alignment */
2078 archive_member_file_ptr += archive_member_file_ptr % 2;
2079 current = current->next;
2082 /* now write the strings themselves */
2083 for (count = 0; count < symbol_count; count++)
2085 size_t len = strlen (*map[count].name) + 1;
2087 if (bfd_write (*map[count].name, 1, len, arch) != len)
2091 /* The spec sez this should be a newline. But in order to be
2092 bug-compatible for arc960 we use a null. */
2095 if (bfd_write ("", 1, 1, arch) != 1)