1 /* BFD back-end for archive files (libraries).
2 Copyright 1990, 91, 92, 93, 94 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., 675 Mass Ave, Cambridge, MA 02139, 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 ((const char *file));
179 static boolean bfd_construct_extended_name_table PARAMS ((bfd *abfd,
182 static struct areltdata *bfd_ar_hdr_from_filesystem PARAMS ((bfd *abfd,
184 static boolean compute_and_write_armap PARAMS ((bfd *arch,
185 unsigned int elength));
186 static boolean bsd_update_armap_timestamp PARAMS ((bfd *arch));
189 _bfd_generic_mkarchive (abfd)
192 abfd->tdata.aout_ar_data = ((struct artdata *)
193 bfd_zalloc (abfd, sizeof (struct artdata)));
195 if (bfd_ardata (abfd) == NULL)
197 bfd_error = no_memory;
201 bfd_ardata (abfd)->cache = NULL;
202 bfd_ardata (abfd)->archive_head = NULL;
203 bfd_ardata (abfd)->symdefs = NULL;
204 bfd_ardata (abfd)->extended_names = NULL;
205 bfd_ardata (abfd)->tdata = NULL;
215 symindex bfd_get_next_mapent(bfd *abfd, symindex previous, carsym **sym);
218 Step through archive @var{abfd}'s symbol table (if it
219 has one). Successively update @var{sym} with the next symbol's
220 information, returning that symbol's (internal) index into the
223 Supply <<BFD_NO_MORE_SYMBOLS>> as the @var{previous} entry to get
224 the first one; returns <<BFD_NO_MORE_SYMBOLS>> when you've already
227 A <<carsym>> is a canonical archive symbol. The only
228 user-visible element is its name, a null-terminated string.
232 bfd_get_next_mapent (abfd, prev, entry)
237 if (!bfd_has_map (abfd))
239 bfd_error = invalid_operation;
240 return BFD_NO_MORE_SYMBOLS;
243 if (prev == BFD_NO_MORE_SYMBOLS)
245 else if (++prev >= bfd_ardata (abfd)->symdef_count)
246 return BFD_NO_MORE_SYMBOLS;
248 *entry = (bfd_ardata (abfd)->symdefs + prev);
252 /* To be called by backends only */
255 _bfd_create_empty_archive_element_shell (obfd)
260 nbfd = _bfd_new_bfd_contained_in (obfd);
263 bfd_error = no_memory;
274 boolean bfd_set_archive_head(bfd *output, bfd *new_head);
277 Set the head of the chain of
278 BFDs contained in the archive @var{output} to @var{new_head}.
282 bfd_set_archive_head (output_archive, new_head)
287 output_archive->archive_head = new_head;
292 _bfd_look_for_bfd_in_cache (arch_bfd, filepos)
296 struct ar_cache *current;
298 for (current = bfd_ardata (arch_bfd)->cache; current != NULL;
299 current = current->next)
300 if (current->ptr == filepos)
301 return current->arelt;
306 /* Kind of stupid to call cons for each one, but we don't do too many */
308 _bfd_add_bfd_to_archive_cache (arch_bfd, filepos, new_elt)
309 bfd *arch_bfd, *new_elt;
312 struct ar_cache *new_cache = ((struct ar_cache *)
313 bfd_zalloc (arch_bfd,
314 sizeof (struct ar_cache)));
316 if (new_cache == NULL)
318 bfd_error = no_memory;
322 new_cache->ptr = filepos;
323 new_cache->arelt = new_elt;
324 new_cache->next = (struct ar_cache *) NULL;
325 if (bfd_ardata (arch_bfd)->cache == NULL)
326 bfd_ardata (arch_bfd)->cache = new_cache;
329 struct ar_cache *current = bfd_ardata (arch_bfd)->cache;
331 while (current->next != NULL)
332 current = current->next;
333 current->next = new_cache;
339 /* The name begins with space. Hence the rest of the name is an index into
343 get_extended_arelt_filename (arch, name)
347 unsigned long index = 0;
349 /* Should extract string so that I can guarantee not to overflow into
350 the next region, but I'm too lazy. */
352 /* Skip first char, which is '/' in SVR4 or ' ' in some other variants. */
353 index = strtol (name + 1, NULL, 10);
356 bfd_error = malformed_archive;
360 return bfd_ardata (arch)->extended_names + index;
363 /* This functions reads an arch header and returns an areltdata pointer, or
366 Presumes the file pointer is already in the right place (ie pointing
367 to the ar_hdr in the file). Moves the file pointer; on success it
368 should be pointing to the front of the file contents; on failure it
369 could have been moved arbitrarily.
373 _bfd_snarf_ar_hdr (abfd)
381 char *hdrp = (char *) &hdr;
382 unsigned int parsed_size;
383 struct areltdata *ared;
384 char *filename = NULL;
385 unsigned int namelen = 0;
386 unsigned int allocsize = sizeof (struct areltdata) + sizeof (struct ar_hdr);
389 if (bfd_read ((PTR) hdrp, 1, sizeof (struct ar_hdr), abfd)
390 != sizeof (struct ar_hdr))
392 bfd_error = no_more_archived_files;
395 if (strncmp (hdr.ar_fmag, ARFMAG, 2))
397 bfd_error = malformed_archive;
402 parsed_size = strtol (hdr.ar_size, NULL, 10);
405 bfd_error = malformed_archive;
409 /* Extract the filename from the archive - there are two ways to
410 specify an extendend name table, either the first char of the
411 name is a space, or it's a slash. */
412 if ((hdr.ar_name[0] == '/'
413 || (hdr.ar_name[0] == ' '
414 && memchr (hdr.ar_name, '/', ar_maxnamelen (abfd)) == NULL))
415 && bfd_ardata (abfd)->extended_names != NULL)
417 filename = get_extended_arelt_filename (abfd, hdr.ar_name);
418 if (filename == NULL)
420 bfd_error = malformed_archive;
424 /* BSD4.4-style long filename.
425 Only implemented for reading, so far! */
426 else if (hdr.ar_name[0] == '#' && hdr.ar_name[1] == '1'
427 && hdr.ar_name[2] == '/' && isdigit (hdr.ar_name[3]))
429 /* BSD-4.4 extended name */
430 namelen = atoi (&hdr.ar_name[3]);
431 allocsize += namelen + 1;
432 parsed_size -= namelen;
434 allocptr = bfd_zalloc (abfd, allocsize);
435 if (allocptr == NULL)
437 bfd_error = no_memory;
441 + sizeof (struct areltdata)
442 + sizeof (struct ar_hdr));
443 if (bfd_read (filename, 1, namelen, abfd) != namelen)
445 bfd_error = no_more_archived_files;
448 filename[namelen] = '\0';
452 /* We judge the end of the name by looking for '/' or ' '.
453 Note: The SYSV format (terminated by '/') allows embedded
454 spaces, so only look for ' ' if we don't find '/'. */
457 while (hdr.ar_name[namelen] != '\0' &&
458 hdr.ar_name[namelen] != '/')
461 if (namelen == (unsigned) ar_maxnamelen (abfd))
464 while (hdr.ar_name[namelen] != ' '
465 && namelen < (unsigned) ar_maxnamelen (abfd))
471 allocsize += namelen + 1;
476 allocptr = bfd_zalloc (abfd, allocsize);
477 if (allocptr == NULL)
479 bfd_error = no_memory;
484 ared = (struct areltdata *) allocptr;
486 ared->arch_header = allocptr + sizeof (struct areltdata);
487 memcpy ((char *) ared->arch_header, (char *) &hdr, sizeof (struct ar_hdr));
488 ared->parsed_size = parsed_size;
490 if (filename != NULL)
491 ared->filename = filename;
494 ared->filename = allocptr + (sizeof (struct areltdata) +
495 sizeof (struct ar_hdr));
497 memcpy (ared->filename, hdr.ar_name, namelen);
498 ared->filename[namelen] = '\0';
504 /* This is an internal function; it's mainly used when indexing
505 through the archive symbol table, but also used to get the next
506 element, since it handles the bookkeeping so nicely for us. */
509 _bfd_get_elt_at_filepos (archive, filepos)
513 struct areltdata *new_areldata;
516 n_nfd = _bfd_look_for_bfd_in_cache (archive, filepos);
520 if (0 > bfd_seek (archive, filepos, SEEK_SET))
522 bfd_error = system_call_error;
526 if ((new_areldata = _bfd_snarf_ar_hdr (archive)) == NULL)
529 n_nfd = _bfd_create_empty_archive_element_shell (archive);
532 bfd_release (archive, (PTR) new_areldata);
536 n_nfd->origin = bfd_tell (archive);
537 n_nfd->arelt_data = (PTR) new_areldata;
538 n_nfd->filename = new_areldata->filename;
540 if (_bfd_add_bfd_to_archive_cache (archive, filepos, n_nfd))
544 bfd_release (archive, (PTR) n_nfd);
545 bfd_release (archive, (PTR) new_areldata);
554 bfd *bfd_get_elt_at_index(bfd *archive, int index);
557 Return the BFD which is referenced by the symbol in @var{archive}
558 indexed by @var{index}. @var{index} should have been returned by
559 <<bfd_get_next_mapent>> (q.v.).
563 bfd_get_elt_at_index (abfd, index)
569 entry = bfd_ardata (abfd)->symdefs + index;
570 return _bfd_get_elt_at_filepos (abfd, entry->file_offset);
575 bfd_openr_next_archived_file
578 bfd *bfd_openr_next_archived_file(bfd *archive, bfd *previous);
581 Provided a BFD, @var{archive}, containing an archive and NULL, open
582 an input BFD on the first contained element and returns that.
583 Subsequent calls should pass
584 the archive and the previous return value to return a created
585 BFD to the next contained element. NULL is returned when there
591 bfd_openr_next_archived_file (archive, last_file)
595 if ((bfd_get_format (archive) != bfd_archive) ||
596 (archive->direction == write_direction))
598 bfd_error = invalid_operation;
602 return BFD_SEND (archive,
603 openr_next_archived_file,
609 bfd_generic_openr_next_archived_file (archive, last_file)
616 filestart = bfd_ardata (archive)->first_file_filepos;
619 unsigned int size = arelt_size (last_file);
620 /* Pad to an even boundary...
621 Note that last_file->origin can be odd in the case of
622 BSD-4.4-style element with a long odd size. */
623 filestart = last_file->origin + size;
624 filestart += filestart % 2;
627 return _bfd_get_elt_at_filepos (archive, filestart);
632 bfd_generic_archive_p (abfd)
635 char armag[SARMAG + 1];
637 if (bfd_read ((PTR) armag, 1, SARMAG, abfd) != SARMAG)
639 bfd_error = wrong_format;
644 if (strncmp (armag, BFD_GNU960_ARMAG (abfd), SARMAG) != 0)
647 if (strncmp (armag, ARMAG, SARMAG) != 0 &&
648 strncmp (armag, ARMAGB, SARMAG) != 0)
652 /* We are setting bfd_ardata(abfd) here, but since bfd_ardata
653 involves a cast, we can't do it as the left operand of assignment. */
654 abfd->tdata.aout_ar_data = ((struct artdata *)
655 bfd_zalloc (abfd, sizeof (struct artdata)));
657 if (bfd_ardata (abfd) == NULL)
659 bfd_error = no_memory;
663 bfd_ardata (abfd)->first_file_filepos = SARMAG;
664 bfd_ardata (abfd)->cache = NULL;
665 bfd_ardata (abfd)->archive_head = NULL;
666 bfd_ardata (abfd)->symdefs = NULL;
667 bfd_ardata (abfd)->extended_names = NULL;
668 bfd_ardata (abfd)->tdata = NULL;
670 if (!BFD_SEND (abfd, _bfd_slurp_armap, (abfd)))
672 bfd_release (abfd, bfd_ardata (abfd));
673 abfd->tdata.aout_ar_data = NULL;
677 if (!BFD_SEND (abfd, _bfd_slurp_extended_name_table, (abfd)))
679 bfd_release (abfd, bfd_ardata (abfd));
680 abfd->tdata.aout_ar_data = NULL;
687 /* Some constants for a 32 bit BSD archive structure. We do not
688 support 64 bit archives presently; so far as I know, none actually
689 exist. Supporting them would require changing these constants, and
690 changing some bfd_h_get_32 to bfd_h_get_64. */
692 /* The size of an external symdef structure. */
693 #define BSD_SYMDEF_SIZE 8
695 /* The offset from the start of a symdef structure to the file offset. */
696 #define BSD_SYMDEF_OFFSET_SIZE 4
698 /* The size of the symdef count. */
699 #define BSD_SYMDEF_COUNT_SIZE 4
701 /* The size of the string count. */
702 #define BSD_STRING_COUNT_SIZE 4
704 /* Returns false on error, true otherwise */
707 do_slurp_bsd_armap (abfd)
710 struct areltdata *mapdata;
711 unsigned int counter;
712 bfd_byte *raw_armap, *rbase;
713 struct artdata *ardata = bfd_ardata (abfd);
715 unsigned int parsed_size;
718 mapdata = _bfd_snarf_ar_hdr (abfd);
721 parsed_size = mapdata->parsed_size;
722 bfd_release (abfd, (PTR) mapdata); /* Don't need it any more. */
724 raw_armap = (bfd_byte *) bfd_zalloc (abfd, parsed_size);
725 if (raw_armap == (bfd_byte *) NULL)
727 bfd_error = no_memory;
731 if (bfd_read ((PTR) raw_armap, 1, parsed_size, abfd) != parsed_size)
733 bfd_error = malformed_archive;
735 bfd_release (abfd, (PTR) raw_armap);
739 ardata->symdef_count = bfd_h_get_32 (abfd, raw_armap) / BSD_SYMDEF_SIZE;
741 if (ardata->symdef_count * BSD_SYMDEF_SIZE >
742 parsed_size - BSD_SYMDEF_COUNT_SIZE)
744 /* Probably we're using the wrong byte ordering. */
745 bfd_error = wrong_format;
750 rbase = raw_armap + BSD_SYMDEF_COUNT_SIZE;
751 stringbase = ((char *) rbase
752 + ardata->symdef_count * BSD_SYMDEF_SIZE
753 + BSD_STRING_COUNT_SIZE);
754 ardata->symdefs = (carsym *) bfd_alloc (abfd,
755 (ardata->symdef_count
757 if (!ardata->symdefs)
759 bfd_error = no_memory;
763 for (counter = 0, set = ardata->symdefs;
764 counter < ardata->symdef_count;
765 counter++, set++, rbase += BSD_SYMDEF_SIZE)
767 set->name = bfd_h_get_32 (abfd, rbase) + stringbase;
768 set->file_offset = bfd_h_get_32 (abfd, rbase + BSD_SYMDEF_OFFSET_SIZE);
771 ardata->first_file_filepos = bfd_tell (abfd);
772 /* Pad to an even boundary if you have to */
773 ardata->first_file_filepos += (ardata->first_file_filepos) % 2;
774 /* FIXME, we should provide some way to free raw_ardata when
775 we are done using the strings from it. For now, it seems
776 to be allocated on an obstack anyway... */
777 bfd_has_map (abfd) = true;
781 /* Returns false on error, true otherwise */
783 do_slurp_coff_armap (abfd)
786 struct areltdata *mapdata;
787 int *raw_armap, *rawptr;
788 struct artdata *ardata = bfd_ardata (abfd);
790 unsigned int stringsize;
791 unsigned int parsed_size;
793 unsigned int nsymz; /* Number of symbols in armap. */
794 bfd_vma (*swap) PARAMS ((const bfd_byte *));
795 char int_buf[sizeof (long)];
796 unsigned int carsym_size, ptrsize, i;
798 mapdata = _bfd_snarf_ar_hdr (abfd);
801 parsed_size = mapdata->parsed_size;
802 bfd_release (abfd, (PTR) mapdata); /* Don't need it any more. */
804 if (bfd_read ((PTR) int_buf, 1, 4, abfd) != 4)
806 bfd_error = malformed_archive;
809 /* It seems that all numeric information in a coff archive is always
810 in big endian format, nomatter the host or target. */
812 nsymz = bfd_getb32 ((PTR) int_buf);
813 stringsize = parsed_size - (4 * nsymz) - 4;
816 /* ... except that some archive formats are broken, and it may be our
817 fault - the i960 little endian coff sometimes has big and sometimes
818 little, because our tools changed. Here's a horrible hack to clean
821 if (stringsize > 0xfffff)
823 /* This looks dangerous, let's do it the other way around */
824 nsymz = bfd_getl32 ((PTR) int_buf);
825 stringsize = parsed_size - (4 * nsymz) - 4;
830 /* The coff armap must be read sequentially. So we construct a
831 bsd-style one in core all at once, for simplicity. */
833 carsym_size = (nsymz * sizeof (carsym));
834 ptrsize = (4 * nsymz);
836 ardata->symdefs = (carsym *) bfd_zalloc (abfd, carsym_size + stringsize + 1);
837 if (ardata->symdefs == NULL)
839 bfd_error = no_memory;
842 carsyms = ardata->symdefs;
843 stringbase = ((char *) ardata->symdefs) + carsym_size;
845 /* Allocate and read in the raw offsets. */
846 raw_armap = (int *) bfd_alloc (abfd, ptrsize);
847 if (raw_armap == NULL)
849 bfd_error = no_memory;
850 goto release_symdefs;
852 if (bfd_read ((PTR) raw_armap, 1, ptrsize, abfd) != ptrsize
853 || bfd_read ((PTR) stringbase, 1, stringsize, abfd) != stringsize)
855 bfd_error = malformed_archive;
856 goto release_raw_armap;
859 /* OK, build the carsyms */
860 for (i = 0; i < nsymz; i++)
862 rawptr = raw_armap + i;
863 carsyms->file_offset = swap ((PTR) rawptr);
864 carsyms->name = stringbase;
865 stringbase += strlen (stringbase) + 1;
870 ardata->symdef_count = nsymz;
871 ardata->first_file_filepos = bfd_tell (abfd);
872 /* Pad to an even boundary if you have to */
873 ardata->first_file_filepos += (ardata->first_file_filepos) % 2;
875 bfd_has_map (abfd) = true;
876 bfd_release (abfd, (PTR) raw_armap);
880 bfd_release (abfd, (PTR) raw_armap);
882 bfd_release (abfd, (PTR) (ardata)->symdefs);
886 /* This routine can handle either coff-style or bsd-style armaps.
887 Returns false on error, true otherwise */
890 bfd_slurp_armap (abfd)
894 int i = bfd_read ((PTR) nextname, 1, 16, abfd);
901 bfd_seek (abfd, (file_ptr) - 16, SEEK_CUR);
903 if (!strncmp (nextname, "__.SYMDEF ", 16))
904 return do_slurp_bsd_armap (abfd);
905 else if (!strncmp (nextname, "/ ", 16))
906 return do_slurp_coff_armap (abfd);
908 bfd_has_map (abfd) = false;
912 /* Returns false on error, true otherwise */
913 /* flavor 2 of a bsd armap, similar to bfd_slurp_bsd_armap except the
914 header is in a slightly different order and the map name is '/'.
915 This flavour is used by hp300hpux. */
917 #define HPUX_SYMDEF_COUNT_SIZE 2
920 bfd_slurp_bsd_armap_f2 (abfd)
923 struct areltdata *mapdata;
925 unsigned int counter;
926 bfd_byte *raw_armap, *rbase;
927 struct artdata *ardata = bfd_ardata (abfd);
929 unsigned int stringsize;
931 int i = bfd_read ((PTR) nextname, 1, 16, abfd);
938 /* The archive has at least 16 bytes in it */
939 bfd_seek (abfd, -16L, SEEK_CUR);
941 if (!strncmp (nextname, "__.SYMDEF ", 16))
942 return do_slurp_bsd_armap (abfd);
944 if (strncmp (nextname, "/ ", 16))
946 bfd_has_map (abfd) = false;
950 mapdata = _bfd_snarf_ar_hdr (abfd);
954 raw_armap = (bfd_byte *) bfd_zalloc (abfd, mapdata->parsed_size);
955 if (raw_armap == NULL)
957 bfd_error = no_memory;
959 bfd_release (abfd, (PTR) mapdata);
963 if (bfd_read ((PTR) raw_armap, 1, mapdata->parsed_size, abfd) !=
964 mapdata->parsed_size)
966 bfd_error = malformed_archive;
968 bfd_release (abfd, (PTR) raw_armap);
972 ardata->symdef_count = bfd_h_get_16 (abfd, (PTR) raw_armap);
974 if (ardata->symdef_count * BSD_SYMDEF_SIZE
975 > mapdata->parsed_size - HPUX_SYMDEF_COUNT_SIZE)
977 /* Probably we're using the wrong byte ordering. */
978 bfd_error = wrong_format;
984 stringsize = bfd_h_get_32 (abfd, raw_armap + HPUX_SYMDEF_COUNT_SIZE);
985 /* skip sym count and string sz */
986 stringbase = ((char *) raw_armap
987 + HPUX_SYMDEF_COUNT_SIZE
988 + BSD_STRING_COUNT_SIZE);
989 rbase = (bfd_byte *) stringbase + stringsize;
990 ardata->symdefs = (carsym *) bfd_alloc (abfd,
991 (ardata->symdef_count
993 if (!ardata->symdefs)
995 bfd_error = no_memory;
999 for (counter = 0, set = ardata->symdefs;
1000 counter < ardata->symdef_count;
1001 counter++, set++, rbase += BSD_SYMDEF_SIZE)
1003 set->name = bfd_h_get_32 (abfd, rbase) + stringbase;
1004 set->file_offset = bfd_h_get_32 (abfd, rbase + BSD_SYMDEF_OFFSET_SIZE);
1007 ardata->first_file_filepos = bfd_tell (abfd);
1008 /* Pad to an even boundary if you have to */
1009 ardata->first_file_filepos += (ardata->first_file_filepos) % 2;
1010 /* FIXME, we should provide some way to free raw_ardata when
1011 we are done using the strings from it. For now, it seems
1012 to be allocated on an obstack anyway... */
1013 bfd_has_map (abfd) = true;
1017 /** Extended name table.
1019 Normally archives support only 14-character filenames.
1021 Intel has extended the format: longer names are stored in a special
1022 element (the first in the archive, or second if there is an armap);
1023 the name in the ar_hdr is replaced by <space><index into filename
1024 element>. Index is the P.R. of an int (decimal). Data General have
1025 extended the format by using the prefix // for the special element */
1027 /* Returns false on error, true otherwise */
1029 _bfd_slurp_extended_name_table (abfd)
1033 struct areltdata *namedata;
1035 /* FIXME: Formatting sucks here, and in case of failure of BFD_READ,
1036 we probably don't want to return true. */
1037 if (bfd_read ((PTR) nextname, 1, 16, abfd) == 16)
1040 bfd_seek (abfd, (file_ptr) - 16, SEEK_CUR);
1042 if (strncmp (nextname, "ARFILENAMES/ ", 16) != 0 &&
1043 strncmp (nextname, "// ", 16) != 0)
1045 bfd_ardata (abfd)->extended_names = NULL;
1049 namedata = _bfd_snarf_ar_hdr (abfd);
1050 if (namedata == NULL)
1053 bfd_ardata (abfd)->extended_names =
1054 bfd_zalloc (abfd, namedata->parsed_size);
1055 if (bfd_ardata (abfd)->extended_names == NULL)
1057 bfd_error = no_memory;
1059 bfd_release (abfd, (PTR) namedata);
1063 if (bfd_read ((PTR) bfd_ardata (abfd)->extended_names, 1,
1064 namedata->parsed_size, abfd) != namedata->parsed_size)
1066 bfd_error = malformed_archive;
1067 bfd_release (abfd, (PTR) (bfd_ardata (abfd)->extended_names));
1068 bfd_ardata (abfd)->extended_names = NULL;
1072 /* Since the archive is supposed to be printable if it contains
1073 text, the entries in the list are newline-padded, not null
1074 padded. In SVR4-style archives, the names also have a
1075 trailing '/'. We'll fix both problems here.. */
1077 char *temp = bfd_ardata (abfd)->extended_names;
1078 char *limit = temp + namedata->parsed_size;
1079 for (; temp < limit; ++temp)
1080 if (*temp == '\012')
1081 temp[temp[-1] == '/' ? -1 : 0] = '\0';
1084 /* Pad to an even boundary if you have to */
1085 bfd_ardata (abfd)->first_file_filepos = bfd_tell (abfd);
1086 bfd_ardata (abfd)->first_file_filepos +=
1087 (bfd_ardata (abfd)->first_file_filepos) % 2;
1089 /* FIXME, we can't release namedata here because it was allocated
1090 below extended_names on the obstack... */
1091 /* bfd_release (abfd, namedata); */
1098 /* Return a copy of the stuff in the filename between any :]> and a
1108 first = file + strlen (file) - 1;
1111 while (first != file)
1115 if (*first == ':' || *first == ']' || *first == '>')
1124 copy = malloc (last - first + 1);
1128 memcpy (copy, first, last - first);
1129 copy[last - first] = 0;
1139 CONST char *filename = strrchr (file, '/');
1141 if (filename != (char *) NULL)
1149 /* Follows archive_head and produces an extended name table if
1150 necessary. Returns (in tabloc) a pointer to an extended name
1151 table, and in tablen the length of the table. If it makes an entry
1152 it clobbers the filename so that the element may be written without
1153 further massage. Returns true if it ran successfully, false if
1154 something went wrong. A successful return may still involve a
1155 zero-length tablen! */
1158 bfd_construct_extended_name_table (abfd, tabloc, tablen)
1161 unsigned int *tablen;
1163 unsigned int maxname = abfd->xvec->ar_max_namelen;
1164 unsigned int total_namelen = 0;
1170 /* Figure out how long the table should be */
1171 for (current = abfd->archive_head; current != NULL; current = current->next)
1173 CONST char *normal = normalize (current->filename);
1174 unsigned int thislen;
1178 bfd_error = no_memory;
1181 thislen = strlen (normal);
1182 if (thislen > maxname)
1183 total_namelen += thislen + 1; /* leave room for \n */
1186 if (total_namelen == 0)
1189 *tabloc = bfd_zalloc (abfd, total_namelen);
1190 if (*tabloc == NULL)
1192 bfd_error = no_memory;
1196 *tablen = total_namelen;
1199 for (current = abfd->archive_head; current != NULL; current =
1202 CONST char *normal = normalize (current->filename);
1203 unsigned int thislen;
1207 bfd_error = no_memory;
1210 thislen = strlen (normal);
1211 if (thislen > maxname)
1213 /* Works for now; may need to be re-engineered if we
1214 encounter an oddball archive format and want to
1215 generalise this hack. */
1216 struct ar_hdr *hdr = arch_hdr (current);
1217 strcpy (strptr, normal);
1218 strptr[thislen] = '\012';
1219 hdr->ar_name[0] = ' ';
1220 /* We know there will always be enough room (one of the few
1221 cases where you may safely use sprintf). */
1222 sprintf ((hdr->ar_name) + 1, "%-d", (unsigned) (strptr - *tabloc));
1223 /* Kinda Kludgy. We should just use the returned value of
1224 sprintf but not all implementations get this right */
1226 char *temp = hdr->ar_name + 2;
1227 for (; temp < hdr->ar_name + maxname; temp++)
1231 strptr += thislen + 1;
1238 /** A couple of functions for creating ar_hdrs */
1240 /* Takes a filename, returns an arelt_data for it, or NULL if it can't
1241 make one. The filename must refer to a filename in the filesystem.
1242 The filename field of the ar_hdr will NOT be initialized */
1244 static struct areltdata *
1245 bfd_ar_hdr_from_filesystem (abfd, filename)
1247 const char *filename;
1250 struct areltdata *ared;
1254 if (stat (filename, &status) != 0)
1256 bfd_error = system_call_error;
1260 ared = (struct areltdata *) bfd_zalloc (abfd, sizeof (struct ar_hdr) +
1261 sizeof (struct areltdata));
1264 bfd_error = no_memory;
1267 hdr = (struct ar_hdr *) (((char *) ared) + sizeof (struct areltdata));
1269 /* ar headers are space padded, not null padded! */
1270 memset (hdr, ' ', sizeof (struct ar_hdr));
1272 strncpy (hdr->ar_fmag, ARFMAG, 2);
1274 /* Goddamned sprintf doesn't permit MAXIMUM field lengths */
1275 sprintf ((hdr->ar_date), "%-12ld", (long) status.st_mtime);
1276 sprintf ((hdr->ar_uid), "%ld", (long) status.st_uid);
1277 sprintf ((hdr->ar_gid), "%ld", (long) status.st_gid);
1278 sprintf ((hdr->ar_mode), "%-8o", (unsigned int) status.st_mode);
1279 sprintf ((hdr->ar_size), "%-10ld", (long) status.st_size);
1280 /* Correct for a lossage in sprintf whereby it null-terminates. I cannot
1281 understand how these C losers could design such a ramshackle bunch of
1283 temp = (char *) hdr;
1284 temp1 = temp + sizeof (struct ar_hdr) - 2;
1285 for (; temp < temp1; temp++)
1290 strncpy (hdr->ar_fmag, ARFMAG, 2);
1291 ared->parsed_size = status.st_size;
1292 ared->arch_header = (char *) hdr;
1297 /* This is magic required by the "ar" program. Since it's
1298 undocumented, it's undocumented. You may think that it would take
1299 a strong stomach to write this, and it does, but it takes even a
1300 stronger stomach to try to code around such a thing! */
1303 bfd_special_undocumented_glue (abfd, filename)
1307 struct areltdata *ar_elt = bfd_ar_hdr_from_filesystem (abfd, filename);
1310 return (struct ar_hdr *) ar_elt->arch_header;
1314 /* Analogous to stat call */
1316 bfd_generic_stat_arch_elt (abfd, buf)
1323 if (abfd->arelt_data == NULL)
1325 bfd_error = invalid_operation;
1329 hdr = arch_hdr (abfd);
1331 #define foo(arelt, stelt, size) \
1332 buf->stelt = strtol (hdr->arelt, &aloser, size); \
1333 if (aloser == hdr->arelt) return -1;
1335 foo (ar_date, st_mtime, 10);
1336 foo (ar_uid, st_uid, 10);
1337 foo (ar_gid, st_gid, 10);
1338 foo (ar_mode, st_mode, 8);
1340 buf->st_size = arch_eltdata (abfd)->parsed_size;
1346 bfd_dont_truncate_arname (abfd, pathname, arhdr)
1348 CONST char *pathname;
1351 /* FIXME: This interacts unpleasantly with ar's quick-append option.
1352 Fortunately ic960 users will never use that option. Fixing this
1353 is very hard; fortunately I know how to do it and will do so once
1354 intel's release is out the door. */
1356 struct ar_hdr *hdr = (struct ar_hdr *) arhdr;
1358 CONST char *filename = normalize (pathname);
1359 int maxlen = ar_maxnamelen (abfd);
1361 length = strlen (filename);
1363 if (length <= maxlen)
1364 memcpy (hdr->ar_name, filename, length);
1366 if (length < maxlen)
1367 (hdr->ar_name)[length] = ar_padchar (abfd);
1371 bfd_bsd_truncate_arname (abfd, pathname, arhdr)
1373 CONST char *pathname;
1376 struct ar_hdr *hdr = (struct ar_hdr *) arhdr;
1378 CONST char *filename = strrchr (pathname, '/');
1379 int maxlen = ar_maxnamelen (abfd);
1381 if (filename == NULL)
1382 filename = pathname;
1386 length = strlen (filename);
1388 if (length <= maxlen)
1389 memcpy (hdr->ar_name, filename, length);
1392 /* pathname: meet procrustes */
1393 memcpy (hdr->ar_name, filename, maxlen);
1397 if (length < maxlen)
1398 (hdr->ar_name)[length] = ar_padchar (abfd);
1401 /* Store name into ar header. Truncates the name to fit.
1402 1> strip pathname to be just the basename.
1403 2> if it's short enuf to fit, stuff it in.
1404 3> If it doesn't end with .o, truncate it to fit
1405 4> truncate it before the .o, append .o, stuff THAT in. */
1407 /* This is what gnu ar does. It's better but incompatible with the
1411 bfd_gnu_truncate_arname (abfd, pathname, arhdr)
1413 CONST char *pathname;
1416 struct ar_hdr *hdr = (struct ar_hdr *) arhdr;
1418 CONST char *filename = strrchr (pathname, '/');
1419 int maxlen = ar_maxnamelen (abfd);
1421 if (filename == NULL)
1422 filename = pathname;
1426 length = strlen (filename);
1428 if (length <= maxlen)
1429 memcpy (hdr->ar_name, filename, length);
1431 { /* pathname: meet procrustes */
1432 memcpy (hdr->ar_name, filename, maxlen);
1433 if ((filename[length - 2] == '.') && (filename[length - 1] == 'o'))
1435 hdr->ar_name[maxlen - 2] = '.';
1436 hdr->ar_name[maxlen - 1] = 'o';
1442 (hdr->ar_name)[length] = ar_padchar (abfd);
1445 /* The BFD is open for write and has its format set to bfd_archive */
1448 _bfd_write_archive_contents (arch)
1452 char *etable = NULL;
1453 unsigned int elength = 0;
1454 boolean makemap = bfd_has_map (arch);
1455 boolean hasobjects = false; /* if no .o's, don't bother to make a map */
1459 /* Verify the viability of all entries; if any of them live in the
1460 filesystem (as opposed to living in an archive open for input)
1461 then construct a fresh ar_hdr for them. */
1462 for (current = arch->archive_head; current; current = current->next)
1464 if (bfd_write_p (current))
1466 bfd_error = invalid_operation;
1469 if (!current->arelt_data)
1471 current->arelt_data =
1472 (PTR) bfd_ar_hdr_from_filesystem (arch, current->filename);
1473 if (!current->arelt_data)
1476 /* Put in the file name */
1477 BFD_SEND (arch, _bfd_truncate_arname, (arch,
1479 (char *) arch_hdr (current)));
1483 { /* don't bother if we won't make a map! */
1484 if ((bfd_check_format (current, bfd_object))
1485 #if 0 /* FIXME -- these are not set correctly */
1486 && ((bfd_get_file_flags (current) & HAS_SYMS))
1493 if (!bfd_construct_extended_name_table (arch, &etable, &elength))
1496 bfd_seek (arch, (file_ptr) 0, SEEK_SET);
1498 bfd_write (BFD_GNU960_ARMAG (arch), 1, SARMAG, arch);
1500 bfd_write (ARMAG, 1, SARMAG, arch);
1503 if (makemap && hasobjects)
1505 if (compute_and_write_armap (arch, elength) != true)
1513 memset ((char *) (&hdr), 0, sizeof (struct ar_hdr));
1514 sprintf (&(hdr.ar_name[0]), "ARFILENAMES/");
1515 sprintf (&(hdr.ar_size[0]), "%-10d", (int) elength);
1516 hdr.ar_fmag[0] = '`';
1517 hdr.ar_fmag[1] = '\012';
1518 for (i = 0; i < sizeof (struct ar_hdr); i++)
1519 if (((char *) (&hdr))[i] == '\0')
1520 (((char *) (&hdr))[i]) = ' ';
1521 bfd_write ((char *) &hdr, 1, sizeof (struct ar_hdr), arch);
1522 bfd_write (etable, 1, elength, arch);
1523 if ((elength % 2) == 1)
1524 bfd_write ("\012", 1, 1, arch);
1527 for (current = arch->archive_head; current; current = current->next)
1529 char buffer[DEFAULT_BUFFERSIZE];
1530 unsigned int remaining = arelt_size (current);
1531 struct ar_hdr *hdr = arch_hdr (current);
1533 /* write ar header */
1534 if (bfd_write ((char *) hdr, 1, sizeof (*hdr), arch) != sizeof (*hdr))
1537 bfd_error = system_call_error;
1540 if (bfd_seek (current, (file_ptr) 0, SEEK_SET) != 0)
1544 unsigned int amt = DEFAULT_BUFFERSIZE;
1545 if (amt > remaining)
1548 if (bfd_read (buffer, amt, 1, current) != amt)
1552 /* Looks like a truncated archive. */
1553 bfd_error = malformed_archive;
1556 if (bfd_write (buffer, amt, 1, arch) != amt)
1560 if ((arelt_size (current) % 2) == 1)
1561 bfd_write ("\012", 1, 1, arch);
1564 /* Verify the timestamp in the archive file. If it would not be
1565 accepted by the linker, rewrite it until it would be. If
1566 anything odd happens, break out and just return. (The Berkeley
1567 linker checks the timestamp and refuses to read the
1568 table-of-contents if it is >60 seconds less than the file's
1569 modified-time. That painful hack requires this painful hack. */
1574 /* FIXME! This kludge is to avoid adding a member to the xvec,
1575 while generating a small patch for Adobe. FIXME! The
1576 update_armap_timestamp function call should be in the xvec,
1579 if (bfd_update_armap_timestamp (arch) == true) break;
1582 Instead, we check whether in a BSD archive, and call
1585 if (arch->xvec->write_armap != bsd_write_armap)
1587 if (bsd_update_armap_timestamp (arch) == true) /* FIXME!!! Vector it */
1591 "Warning: writing archive was slow: rewriting timestamp\n");
1593 while (++tries < 6);
1598 /* Note that the namidx for the first symbol is 0 */
1601 compute_and_write_armap (arch, elength)
1603 unsigned int elength;
1607 file_ptr elt_no = 0;
1609 int orl_max = 1024; /* fine initial default */
1611 int stridx = 0; /* string index */
1612 asymbol **syms = NULL;
1613 unsigned int syms_max = 0;
1616 /* Dunno if this is the best place for this info... */
1618 elength += sizeof (struct ar_hdr);
1619 elength += elength % 2;
1621 map = (struct orl *) malloc (orl_max * sizeof (struct orl));
1624 bfd_error = no_memory;
1628 /* We put the symbol names on the arch obstack, and then discard
1630 first_name = bfd_alloc (arch, 1);
1631 if (first_name == NULL)
1634 bfd_error = no_memory;
1638 /* Drop all the files called __.SYMDEF, we're going to make our
1640 while (arch->archive_head &&
1641 strcmp (arch->archive_head->filename, "__.SYMDEF") == 0)
1642 arch->archive_head = arch->archive_head->next;
1644 /* Map over each element */
1645 for (current = arch->archive_head;
1646 current != (bfd *) NULL;
1647 current = current->next, elt_no++)
1649 if ((bfd_check_format (current, bfd_object) == true)
1650 && ((bfd_get_file_flags (current) & HAS_SYMS)))
1652 unsigned int storage;
1653 unsigned int symcount;
1654 unsigned int src_count;
1656 storage = get_symtab_upper_bound (current);
1659 if (storage > syms_max)
1664 syms = (asymbol **) malloc (syms_max);
1668 bfd_release (arch, first_name);
1669 bfd_error = no_memory;
1673 symcount = bfd_canonicalize_symtab (current, syms);
1675 /* Now map over all the symbols, picking out the ones we want */
1676 for (src_count = 0; src_count < symcount; src_count++)
1678 flagword flags = (syms[src_count])->flags;
1679 asection *sec = syms[src_count]->section;
1681 if ((flags & BSF_GLOBAL ||
1683 flags & BSF_INDIRECT ||
1684 bfd_is_com_section (sec))
1685 && (sec != &bfd_und_section))
1688 struct orl *new_map;
1690 /* This symbol will go into the archive header */
1691 if (orl_count == orl_max)
1694 new_map = ((struct orl *)
1696 orl_max * sizeof (struct orl)));
1697 if (new_map == (struct orl *) NULL)
1702 bfd_release (arch, first_name);
1703 bfd_error = no_memory;
1710 namelen = strlen (syms[src_count]->name);
1711 map[orl_count].name = ((char **)
1714 if (map[orl_count].name == NULL)
1716 *(map[orl_count].name) = bfd_alloc (arch, namelen + 1);
1717 if (*(map[orl_count].name) == NULL)
1719 strcpy (*(map[orl_count].name), syms[src_count]->name);
1720 (map[orl_count]).pos = (file_ptr) current;
1721 (map[orl_count]).namidx = stridx;
1723 stridx += namelen + 1;
1731 /* OK, now we have collected all the data, let's write them out */
1732 ret = BFD_SEND (arch, write_armap,
1733 (arch, elength, map, orl_count, stridx));
1738 bfd_release (arch, first_name);
1744 bsd_write_armap (arch, elength, map, orl_count, stridx)
1746 unsigned int elength;
1748 unsigned int orl_count;
1751 int padit = stridx & 1;
1752 unsigned int ranlibsize = orl_count * sizeof (struct ranlib);
1753 unsigned int stringsize = stridx + padit;
1754 /* Include 8 bytes to store ranlibsize and stringsize in output. */
1755 unsigned int mapsize = ranlibsize + stringsize + 8;
1757 bfd *current = arch->archive_head;
1758 bfd *last_elt = current; /* last element arch seen */
1762 struct stat statbuf;
1765 firstreal = mapsize + elength + sizeof (struct ar_hdr) + SARMAG;
1767 stat (arch->filename, &statbuf);
1768 memset ((char *) (&hdr), 0, sizeof (struct ar_hdr));
1769 sprintf (hdr.ar_name, RANLIBMAG);
1770 /* Remember the timestamp, to keep it holy. But fudge it a little. */
1771 bfd_ardata (arch)->armap_timestamp = statbuf.st_mtime + ARMAP_TIME_OFFSET;
1772 bfd_ardata (arch)->armap_datepos = (SARMAG
1773 + offsetof (struct ar_hdr, ar_date[0]));
1774 sprintf (hdr.ar_date, "%ld", bfd_ardata (arch)->armap_timestamp);
1775 sprintf (hdr.ar_uid, "%d", getuid ());
1776 sprintf (hdr.ar_gid, "%d", getgid ());
1777 sprintf (hdr.ar_size, "%-10d", (int) mapsize);
1778 hdr.ar_fmag[0] = '`';
1779 hdr.ar_fmag[1] = '\012';
1780 for (i = 0; i < sizeof (struct ar_hdr); i++)
1781 if (((char *) (&hdr))[i] == '\0')
1782 (((char *) (&hdr))[i]) = ' ';
1783 bfd_write ((char *) &hdr, 1, sizeof (struct ar_hdr), arch);
1784 bfd_h_put_32 (arch, (bfd_vma) ranlibsize, (PTR) &temp);
1785 bfd_write (&temp, 1, sizeof (temp), arch);
1787 for (count = 0; count < orl_count; count++)
1790 struct symdef *outp = &outs;
1792 if (((bfd *) (map[count]).pos) != last_elt)
1796 firstreal += arelt_size (current) + sizeof (struct ar_hdr);
1797 firstreal += firstreal % 2;
1798 current = current->next;
1800 while (current != (bfd *) (map[count]).pos);
1801 } /* if new archive element */
1804 bfd_h_put_32 (arch, ((map[count]).namidx), (PTR) &outs.s.string_offset);
1805 bfd_h_put_32 (arch, firstreal, (PTR) &outs.file_offset);
1806 bfd_write ((char *) outp, 1, sizeof (outs), arch);
1809 /* now write the strings themselves */
1810 bfd_h_put_32 (arch, stringsize, (PTR) &temp);
1811 bfd_write ((PTR) &temp, 1, sizeof (temp), arch);
1812 for (count = 0; count < orl_count; count++)
1813 bfd_write (*((map[count]).name), 1,
1814 strlen (*((map[count]).name)) + 1, arch);
1816 /* The spec sez this should be a newline. But in order to be
1817 bug-compatible for sun's ar we use a null. */
1819 bfd_write ("", 1, 1, arch);
1824 /* At the end of archive file handling, update the timestamp in the
1825 file, so the linker will accept it.
1827 Return true if the timestamp was OK, or an unusual problem happened.
1828 Return false if we updated the timestamp. */
1831 bsd_update_armap_timestamp (arch)
1834 struct stat archstat;
1838 /* Flush writes, get last-write timestamp from file, and compare it
1839 to the timestamp IN the file. */
1841 if (bfd_stat (arch, &archstat) == -1)
1843 perror ("Reading archive file mod timestamp");
1844 return true; /* Can't read mod time for some reason */
1846 if (archstat.st_mtime <= bfd_ardata (arch)->armap_timestamp)
1847 return true; /* OK by the linker's rules */
1849 /* Update the timestamp. */
1850 bfd_ardata (arch)->armap_timestamp = archstat.st_mtime + ARMAP_TIME_OFFSET;
1852 /* Prepare an ASCII version suitable for writing. */
1853 memset (hdr.ar_date, 0, sizeof (hdr.ar_date));
1854 sprintf (hdr.ar_date, "%ld", bfd_ardata (arch)->armap_timestamp);
1855 for (i = 0; i < sizeof (hdr.ar_date); i++)
1856 if (hdr.ar_date[i] == '\0')
1857 (hdr.ar_date)[i] = ' ';
1859 /* Write it into the file. */
1860 bfd_seek (arch, bfd_ardata (arch)->armap_datepos, SEEK_SET);
1861 if (bfd_write (hdr.ar_date, sizeof (hdr.ar_date), 1, arch)
1862 != sizeof (hdr.ar_date))
1864 perror ("Writing updated armap timestamp");
1865 return true; /* Some error while writing */
1868 return false; /* We updated the timestamp successfully. */
1871 /* A coff armap looks like :
1873 struct ar_hdr with name = '/'
1875 offset of file for symbol 0
1876 offset of file for symbol 1
1878 offset of file for symbol n-1
1886 coff_write_armap (arch, elength, map, symbol_count, stridx)
1888 unsigned int elength;
1890 unsigned int symbol_count;
1893 /* The size of the ranlib is the number of exported symbols in the
1894 archive * the number of bytes in a int, + an int for the count */
1895 unsigned int ranlibsize = (symbol_count * 4) + 4;
1896 unsigned int stringsize = stridx;
1897 unsigned int mapsize = stringsize + ranlibsize;
1898 file_ptr archive_member_file_ptr;
1899 bfd *current = arch->archive_head;
1903 int padit = mapsize & 1;
1908 /* work out where the first object file will go in the archive */
1909 archive_member_file_ptr = (mapsize
1911 + sizeof (struct ar_hdr)
1914 memset ((char *) (&hdr), 0, sizeof (struct ar_hdr));
1915 hdr.ar_name[0] = '/';
1916 sprintf (hdr.ar_size, "%-10d", (int) mapsize);
1917 sprintf (hdr.ar_date, "%ld", (long) time (NULL));
1918 /* This, at least, is what Intel coff sets the values to.: */
1919 sprintf ((hdr.ar_uid), "%d", 0);
1920 sprintf ((hdr.ar_gid), "%d", 0);
1921 sprintf ((hdr.ar_mode), "%-7o", (unsigned) 0);
1922 hdr.ar_fmag[0] = '`';
1923 hdr.ar_fmag[1] = '\012';
1925 for (i = 0; i < sizeof (struct ar_hdr); i++)
1926 if (((char *) (&hdr))[i] == '\0')
1927 (((char *) (&hdr))[i]) = ' ';
1929 /* Write the ar header for this item and the number of symbols */
1931 bfd_write ((PTR) &hdr, 1, sizeof (struct ar_hdr), arch);
1933 bfd_write_bigendian_4byte_int (arch, symbol_count);
1935 /* Two passes, first write the file offsets for each symbol -
1936 remembering that each offset is on a two byte boundary. */
1938 /* Write out the file offset for the file associated with each
1939 symbol, and remember to keep the offsets padded out. */
1941 current = arch->archive_head;
1943 while (current != (bfd *) NULL && count < symbol_count)
1945 /* For each symbol which is used defined in this object, write out
1946 the object file's address in the archive */
1948 while (((bfd *) (map[count]).pos) == current)
1950 bfd_write_bigendian_4byte_int (arch, archive_member_file_ptr);
1953 /* Add size of this archive entry */
1954 archive_member_file_ptr += (arelt_size (current)
1955 + sizeof (struct ar_hdr));
1956 /* remember aboout the even alignment */
1957 archive_member_file_ptr += archive_member_file_ptr % 2;
1958 current = current->next;
1961 /* now write the strings themselves */
1962 for (count = 0; count < symbol_count; count++)
1963 bfd_write ((PTR) * ((map[count]).name),
1965 strlen (*((map[count]).name)) + 1, arch);
1967 /* The spec sez this should be a newline. But in order to be
1968 bug-compatible for arc960 we use a null. */
1970 bfd_write ("", 1, 1, arch);