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., 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)
191 bfd_set_error (bfd_error_no_memory);
195 bfd_ardata (abfd)->cache = NULL;
196 bfd_ardata (abfd)->archive_head = NULL;
197 bfd_ardata (abfd)->symdefs = NULL;
198 bfd_ardata (abfd)->extended_names = NULL;
199 bfd_ardata (abfd)->tdata = NULL;
209 symindex bfd_get_next_mapent(bfd *abfd, symindex previous, carsym **sym);
212 Step through archive @var{abfd}'s symbol table (if it
213 has one). Successively update @var{sym} with the next symbol's
214 information, returning that symbol's (internal) index into the
217 Supply <<BFD_NO_MORE_SYMBOLS>> as the @var{previous} entry to get
218 the first one; returns <<BFD_NO_MORE_SYMBOLS>> when you've already
221 A <<carsym>> is a canonical archive symbol. The only
222 user-visible element is its name, a null-terminated string.
226 bfd_get_next_mapent (abfd, prev, entry)
231 if (!bfd_has_map (abfd))
233 bfd_set_error (bfd_error_invalid_operation);
234 return BFD_NO_MORE_SYMBOLS;
237 if (prev == BFD_NO_MORE_SYMBOLS)
241 if (prev >= bfd_ardata (abfd)->symdef_count)
242 return BFD_NO_MORE_SYMBOLS;
244 *entry = (bfd_ardata (abfd)->symdefs + prev);
248 /* To be called by backends only */
251 _bfd_create_empty_archive_element_shell (obfd)
256 nbfd = _bfd_new_bfd_contained_in (obfd);
259 bfd_set_error (bfd_error_no_memory);
270 boolean bfd_set_archive_head(bfd *output, bfd *new_head);
273 Set the head of the chain of
274 BFDs contained in the archive @var{output} to @var{new_head}.
278 bfd_set_archive_head (output_archive, new_head)
283 output_archive->archive_head = new_head;
288 _bfd_look_for_bfd_in_cache (arch_bfd, filepos)
292 struct ar_cache *current;
294 for (current = bfd_ardata (arch_bfd)->cache; current != NULL;
295 current = current->next)
296 if (current->ptr == filepos)
297 return current->arelt;
302 /* Kind of stupid to call cons for each one, but we don't do too many */
304 _bfd_add_bfd_to_archive_cache (arch_bfd, filepos, new_elt)
305 bfd *arch_bfd, *new_elt;
308 struct ar_cache *new_cache = ((struct ar_cache *)
309 bfd_zalloc (arch_bfd,
310 sizeof (struct ar_cache)));
312 if (new_cache == NULL)
314 bfd_set_error (bfd_error_no_memory);
318 new_cache->ptr = filepos;
319 new_cache->arelt = new_elt;
320 new_cache->next = (struct ar_cache *) NULL;
321 if (bfd_ardata (arch_bfd)->cache == NULL)
322 bfd_ardata (arch_bfd)->cache = new_cache;
325 struct ar_cache *current = bfd_ardata (arch_bfd)->cache;
327 while (current->next != NULL)
328 current = current->next;
329 current->next = new_cache;
335 /* The name begins with space. Hence the rest of the name is an index into
339 get_extended_arelt_filename (arch, name)
343 unsigned long index = 0;
345 /* Should extract string so that I can guarantee not to overflow into
346 the next region, but I'm too lazy. */
348 /* Skip first char, which is '/' in SVR4 or ' ' in some other variants. */
349 index = strtol (name + 1, NULL, 10);
352 bfd_set_error (bfd_error_malformed_archive);
356 return bfd_ardata (arch)->extended_names + index;
359 /* This functions reads an arch header and returns an areltdata pointer, or
362 Presumes the file pointer is already in the right place (ie pointing
363 to the ar_hdr in the file). Moves the file pointer; on success it
364 should be pointing to the front of the file contents; on failure it
365 could have been moved arbitrarily.
369 _bfd_generic_read_ar_hdr (abfd)
377 char *hdrp = (char *) &hdr;
378 unsigned int parsed_size;
379 struct areltdata *ared;
380 char *filename = NULL;
381 unsigned int namelen = 0;
382 unsigned int allocsize = sizeof (struct areltdata) + sizeof (struct ar_hdr);
385 if (bfd_read ((PTR) hdrp, 1, sizeof (struct ar_hdr), abfd)
386 != sizeof (struct ar_hdr))
388 if (bfd_get_error () != bfd_error_system_call)
389 bfd_set_error (bfd_error_no_more_archived_files);
392 if (strncmp (hdr.ar_fmag, ARFMAG, 2))
394 bfd_set_error (bfd_error_malformed_archive);
399 parsed_size = strtol (hdr.ar_size, NULL, 10);
402 bfd_set_error (bfd_error_malformed_archive);
406 /* Extract the filename from the archive - there are two ways to
407 specify an extendend name table, either the first char of the
408 name is a space, or it's a slash. */
409 if ((hdr.ar_name[0] == '/'
410 || (hdr.ar_name[0] == ' '
411 && memchr (hdr.ar_name, '/', ar_maxnamelen (abfd)) == NULL))
412 && bfd_ardata (abfd)->extended_names != NULL)
414 filename = get_extended_arelt_filename (abfd, hdr.ar_name);
415 if (filename == NULL)
417 bfd_set_error (bfd_error_malformed_archive);
421 /* BSD4.4-style long filename.
422 Only implemented for reading, so far! */
423 else if (hdr.ar_name[0] == '#' && hdr.ar_name[1] == '1'
424 && hdr.ar_name[2] == '/' && isdigit (hdr.ar_name[3]))
426 /* BSD-4.4 extended name */
427 namelen = atoi (&hdr.ar_name[3]);
428 allocsize += namelen + 1;
429 parsed_size -= namelen;
431 allocptr = bfd_zalloc (abfd, allocsize);
432 if (allocptr == NULL)
434 bfd_set_error (bfd_error_no_memory);
438 + sizeof (struct areltdata)
439 + sizeof (struct ar_hdr));
440 if (bfd_read (filename, 1, namelen, abfd) != namelen)
442 if (bfd_get_error () != bfd_error_system_call)
443 bfd_set_error (bfd_error_no_more_archived_files);
446 filename[namelen] = '\0';
450 /* We judge the end of the name by looking for '/' or ' '.
451 Note: The SYSV format (terminated by '/') allows embedded
452 spaces, so only look for ' ' if we don't find '/'. */
455 while (hdr.ar_name[namelen] != '\0' &&
456 hdr.ar_name[namelen] != '/')
459 if (namelen == (unsigned) ar_maxnamelen (abfd))
462 while (hdr.ar_name[namelen] != ' '
463 && namelen < (unsigned) ar_maxnamelen (abfd))
469 allocsize += namelen + 1;
474 allocptr = bfd_zalloc (abfd, allocsize);
475 if (allocptr == NULL)
477 bfd_set_error (bfd_error_no_memory);
482 ared = (struct areltdata *) allocptr;
484 ared->arch_header = allocptr + sizeof (struct areltdata);
485 memcpy ((char *) ared->arch_header, (char *) &hdr, sizeof (struct ar_hdr));
486 ared->parsed_size = parsed_size;
488 if (filename != NULL)
489 ared->filename = filename;
492 ared->filename = allocptr + (sizeof (struct areltdata) +
493 sizeof (struct ar_hdr));
495 memcpy (ared->filename, hdr.ar_name, namelen);
496 ared->filename[namelen] = '\0';
502 /* This is an internal function; it's mainly used when indexing
503 through the archive symbol table, but also used to get the next
504 element, since it handles the bookkeeping so nicely for us. */
507 _bfd_get_elt_at_filepos (archive, filepos)
511 struct areltdata *new_areldata;
514 n_nfd = _bfd_look_for_bfd_in_cache (archive, filepos);
518 if (0 > bfd_seek (archive, filepos, SEEK_SET))
521 if ((new_areldata = _bfd_read_ar_hdr (archive)) == NULL)
524 n_nfd = _bfd_create_empty_archive_element_shell (archive);
527 bfd_release (archive, (PTR) new_areldata);
531 n_nfd->origin = bfd_tell (archive);
532 n_nfd->arelt_data = (PTR) new_areldata;
533 n_nfd->filename = new_areldata->filename;
535 if (_bfd_add_bfd_to_archive_cache (archive, filepos, n_nfd))
539 bfd_release (archive, (PTR) n_nfd);
540 bfd_release (archive, (PTR) new_areldata);
549 bfd *bfd_get_elt_at_index(bfd *archive, int index);
552 Return the BFD which is referenced by the symbol in @var{archive}
553 indexed by @var{index}. @var{index} should have been returned by
554 <<bfd_get_next_mapent>> (q.v.).
558 bfd_get_elt_at_index (abfd, index)
564 entry = bfd_ardata (abfd)->symdefs + index;
565 return _bfd_get_elt_at_filepos (abfd, entry->file_offset);
570 bfd_openr_next_archived_file
573 bfd *bfd_openr_next_archived_file(bfd *archive, bfd *previous);
576 Provided a BFD, @var{archive}, containing an archive and NULL, open
577 an input BFD on the first contained element and returns that.
578 Subsequent calls should pass
579 the archive and the previous return value to return a created
580 BFD to the next contained element. NULL is returned when there
586 bfd_openr_next_archived_file (archive, last_file)
590 if ((bfd_get_format (archive) != bfd_archive) ||
591 (archive->direction == write_direction))
593 bfd_set_error (bfd_error_invalid_operation);
597 return BFD_SEND (archive,
598 openr_next_archived_file,
604 bfd_generic_openr_next_archived_file (archive, last_file)
611 filestart = bfd_ardata (archive)->first_file_filepos;
614 unsigned int size = arelt_size (last_file);
615 /* Pad to an even boundary...
616 Note that last_file->origin can be odd in the case of
617 BSD-4.4-style element with a long odd size. */
618 filestart = last_file->origin + size;
619 filestart += filestart % 2;
622 return _bfd_get_elt_at_filepos (archive, filestart);
627 bfd_generic_archive_p (abfd)
630 char armag[SARMAG + 1];
632 if (bfd_read ((PTR) armag, 1, SARMAG, abfd) != SARMAG)
634 if (bfd_get_error () != bfd_error_system_call)
635 bfd_set_error (bfd_error_wrong_format);
640 if (strncmp (armag, BFD_GNU960_ARMAG (abfd), SARMAG) != 0)
643 if (strncmp (armag, ARMAG, SARMAG) != 0 &&
644 strncmp (armag, ARMAGB, SARMAG) != 0)
648 /* We are setting bfd_ardata(abfd) here, but since bfd_ardata
649 involves a cast, we can't do it as the left operand of assignment. */
650 abfd->tdata.aout_ar_data = ((struct artdata *)
651 bfd_zalloc (abfd, sizeof (struct artdata)));
653 if (bfd_ardata (abfd) == NULL)
655 bfd_set_error (bfd_error_no_memory);
659 bfd_ardata (abfd)->first_file_filepos = SARMAG;
660 bfd_ardata (abfd)->cache = NULL;
661 bfd_ardata (abfd)->archive_head = NULL;
662 bfd_ardata (abfd)->symdefs = NULL;
663 bfd_ardata (abfd)->extended_names = NULL;
664 bfd_ardata (abfd)->tdata = NULL;
666 if (!BFD_SEND (abfd, _bfd_slurp_armap, (abfd)))
668 bfd_release (abfd, bfd_ardata (abfd));
669 abfd->tdata.aout_ar_data = NULL;
673 if (!BFD_SEND (abfd, _bfd_slurp_extended_name_table, (abfd)))
675 bfd_release (abfd, bfd_ardata (abfd));
676 abfd->tdata.aout_ar_data = NULL;
680 if (bfd_has_map (abfd) && abfd->target_defaulted)
684 /* This archive has a map, so we may presume that the contents
685 are object files. Make sure that the first file in the
686 archive can be recognized as an object file for this target.
687 If not, assume that this is the wrong format.
689 This is done because any normal format will recognize any
690 normal archive, regardless of the format of the object files.
691 We do accept an empty archive. */
693 first = bfd_openr_next_archived_file (abfd, (bfd *) NULL);
696 first->target_defaulted = false;
697 if (! bfd_check_format (first, bfd_object))
701 err = bfd_get_error ();
702 (void) bfd_close (first);
703 bfd_release (abfd, bfd_ardata (abfd));
704 abfd->tdata.aout_ar_data = NULL;
709 /* We ought to close first here, but we can't, because we
710 have no way to remove it from the archive cache. FIXME. */
717 /* Some constants for a 32 bit BSD archive structure. We do not
718 support 64 bit archives presently; so far as I know, none actually
719 exist. Supporting them would require changing these constants, and
720 changing some bfd_h_get_32 to bfd_h_get_64. */
722 /* The size of an external symdef structure. */
723 #define BSD_SYMDEF_SIZE 8
725 /* The offset from the start of a symdef structure to the file offset. */
726 #define BSD_SYMDEF_OFFSET_SIZE 4
728 /* The size of the symdef count. */
729 #define BSD_SYMDEF_COUNT_SIZE 4
731 /* The size of the string count. */
732 #define BSD_STRING_COUNT_SIZE 4
734 /* Returns false on error, true otherwise */
737 do_slurp_bsd_armap (abfd)
740 struct areltdata *mapdata;
741 unsigned int counter;
742 bfd_byte *raw_armap, *rbase;
743 struct artdata *ardata = bfd_ardata (abfd);
745 unsigned int parsed_size;
748 mapdata = _bfd_read_ar_hdr (abfd);
751 parsed_size = mapdata->parsed_size;
752 bfd_release (abfd, (PTR) mapdata); /* Don't need it any more. */
754 raw_armap = (bfd_byte *) bfd_zalloc (abfd, parsed_size);
755 if (raw_armap == (bfd_byte *) NULL)
757 bfd_set_error (bfd_error_no_memory);
761 if (bfd_read ((PTR) raw_armap, 1, parsed_size, abfd) != parsed_size)
763 if (bfd_get_error () != bfd_error_system_call)
764 bfd_set_error (bfd_error_malformed_archive);
766 bfd_release (abfd, (PTR) raw_armap);
770 ardata->symdef_count = bfd_h_get_32 (abfd, raw_armap) / BSD_SYMDEF_SIZE;
772 if (ardata->symdef_count * BSD_SYMDEF_SIZE >
773 parsed_size - BSD_SYMDEF_COUNT_SIZE)
775 /* Probably we're using the wrong byte ordering. */
776 bfd_set_error (bfd_error_wrong_format);
781 rbase = raw_armap + BSD_SYMDEF_COUNT_SIZE;
782 stringbase = ((char *) rbase
783 + ardata->symdef_count * BSD_SYMDEF_SIZE
784 + BSD_STRING_COUNT_SIZE);
785 ardata->symdefs = (carsym *) bfd_alloc (abfd,
786 (ardata->symdef_count
788 if (!ardata->symdefs)
790 bfd_set_error (bfd_error_no_memory);
794 for (counter = 0, set = ardata->symdefs;
795 counter < ardata->symdef_count;
796 counter++, set++, rbase += BSD_SYMDEF_SIZE)
798 set->name = bfd_h_get_32 (abfd, rbase) + stringbase;
799 set->file_offset = bfd_h_get_32 (abfd, rbase + BSD_SYMDEF_OFFSET_SIZE);
802 ardata->first_file_filepos = bfd_tell (abfd);
803 /* Pad to an even boundary if you have to */
804 ardata->first_file_filepos += (ardata->first_file_filepos) % 2;
805 /* FIXME, we should provide some way to free raw_ardata when
806 we are done using the strings from it. For now, it seems
807 to be allocated on an obstack anyway... */
808 bfd_has_map (abfd) = true;
812 /* Returns false on error, true otherwise */
814 do_slurp_coff_armap (abfd)
817 struct areltdata *mapdata;
818 int *raw_armap, *rawptr;
819 struct artdata *ardata = bfd_ardata (abfd);
821 unsigned int stringsize;
822 unsigned int parsed_size;
824 unsigned int nsymz; /* Number of symbols in armap. */
825 bfd_vma (*swap) PARAMS ((const bfd_byte *));
826 char int_buf[sizeof (long)];
827 unsigned int carsym_size, ptrsize, i;
829 mapdata = _bfd_read_ar_hdr (abfd);
832 parsed_size = mapdata->parsed_size;
833 bfd_release (abfd, (PTR) mapdata); /* Don't need it any more. */
835 if (bfd_read ((PTR) int_buf, 1, 4, abfd) != 4)
837 if (bfd_get_error () != bfd_error_system_call)
838 bfd_set_error (bfd_error_malformed_archive);
841 /* It seems that all numeric information in a coff archive is always
842 in big endian format, nomatter the host or target. */
844 nsymz = bfd_getb32 ((PTR) int_buf);
845 stringsize = parsed_size - (4 * nsymz) - 4;
848 /* ... except that some archive formats are broken, and it may be our
849 fault - the i960 little endian coff sometimes has big and sometimes
850 little, because our tools changed. Here's a horrible hack to clean
853 if (stringsize > 0xfffff)
855 /* This looks dangerous, let's do it the other way around */
856 nsymz = bfd_getl32 ((PTR) int_buf);
857 stringsize = parsed_size - (4 * nsymz) - 4;
862 /* The coff armap must be read sequentially. So we construct a
863 bsd-style one in core all at once, for simplicity. */
865 carsym_size = (nsymz * sizeof (carsym));
866 ptrsize = (4 * nsymz);
868 ardata->symdefs = (carsym *) bfd_zalloc (abfd, carsym_size + stringsize + 1);
869 if (ardata->symdefs == NULL)
871 bfd_set_error (bfd_error_no_memory);
874 carsyms = ardata->symdefs;
875 stringbase = ((char *) ardata->symdefs) + carsym_size;
877 /* Allocate and read in the raw offsets. */
878 raw_armap = (int *) bfd_alloc (abfd, ptrsize);
879 if (raw_armap == NULL)
881 bfd_set_error (bfd_error_no_memory);
882 goto release_symdefs;
884 if (bfd_read ((PTR) raw_armap, 1, ptrsize, abfd) != ptrsize
885 || bfd_read ((PTR) stringbase, 1, stringsize, abfd) != stringsize)
887 if (bfd_get_error () != bfd_error_system_call)
888 bfd_set_error (bfd_error_malformed_archive);
889 goto release_raw_armap;
892 /* OK, build the carsyms */
893 for (i = 0; i < nsymz; i++)
895 rawptr = raw_armap + i;
896 carsyms->file_offset = swap ((PTR) rawptr);
897 carsyms->name = stringbase;
898 stringbase += strlen (stringbase) + 1;
903 ardata->symdef_count = nsymz;
904 ardata->first_file_filepos = bfd_tell (abfd);
905 /* Pad to an even boundary if you have to */
906 ardata->first_file_filepos += (ardata->first_file_filepos) % 2;
909 bfd_has_map (abfd) = true;
910 bfd_release (abfd, (PTR) raw_armap);
913 /* Check for a second archive header (as used by PE) */
915 struct areltdata *tmp;
917 bfd_seek (abfd, ardata->first_file_filepos, SEEK_SET);
918 tmp = _bfd_read_ar_hdr (abfd);
921 if (tmp->arch_header[0] == '/'
922 && tmp->arch_header[1] == ' ')
924 ardata->first_file_filepos +=
925 (tmp->parsed_size + sizeof(struct ar_hdr) + 1) & ~1;
927 bfd_release (abfd, tmp);
934 bfd_release (abfd, (PTR) raw_armap);
936 bfd_release (abfd, (PTR) (ardata)->symdefs);
940 /* This routine can handle either coff-style or bsd-style armaps.
941 Returns false on error, true otherwise */
944 bfd_slurp_armap (abfd)
948 int i = bfd_read ((PTR) nextname, 1, 16, abfd);
955 if (bfd_seek (abfd, (file_ptr) - 16, SEEK_CUR) != 0)
958 if (!strncmp (nextname, "__.SYMDEF ", 16)
959 || !strncmp (nextname, "__.SYMDEF/ ", 16)) /* old Linux archives */
960 return do_slurp_bsd_armap (abfd);
961 else if (!strncmp (nextname, "/ ", 16))
962 return do_slurp_coff_armap (abfd);
964 bfd_has_map (abfd) = false;
968 /* Returns false on error, true otherwise */
969 /* flavor 2 of a bsd armap, similar to bfd_slurp_bsd_armap except the
970 header is in a slightly different order and the map name is '/'.
971 This flavour is used by hp300hpux. */
973 #define HPUX_SYMDEF_COUNT_SIZE 2
976 bfd_slurp_bsd_armap_f2 (abfd)
979 struct areltdata *mapdata;
981 unsigned int counter;
982 bfd_byte *raw_armap, *rbase;
983 struct artdata *ardata = bfd_ardata (abfd);
985 unsigned int stringsize;
987 int i = bfd_read ((PTR) nextname, 1, 16, abfd);
994 /* The archive has at least 16 bytes in it */
995 if (bfd_seek (abfd, -16L, SEEK_CUR) != 0)
998 if (!strncmp (nextname, "__.SYMDEF ", 16)
999 || !strncmp (nextname, "__.SYMDEF/ ", 16)) /* old Linux archives */
1000 return do_slurp_bsd_armap (abfd);
1002 if (strncmp (nextname, "/ ", 16))
1004 bfd_has_map (abfd) = false;
1008 mapdata = _bfd_read_ar_hdr (abfd);
1009 if (mapdata == NULL)
1012 raw_armap = (bfd_byte *) bfd_zalloc (abfd, mapdata->parsed_size);
1013 if (raw_armap == NULL)
1015 bfd_set_error (bfd_error_no_memory);
1017 bfd_release (abfd, (PTR) mapdata);
1021 if (bfd_read ((PTR) raw_armap, 1, mapdata->parsed_size, abfd) !=
1022 mapdata->parsed_size)
1024 if (bfd_get_error () != bfd_error_system_call)
1025 bfd_set_error (bfd_error_malformed_archive);
1027 bfd_release (abfd, (PTR) raw_armap);
1031 ardata->symdef_count = bfd_h_get_16 (abfd, (PTR) raw_armap);
1033 if (ardata->symdef_count * BSD_SYMDEF_SIZE
1034 > mapdata->parsed_size - HPUX_SYMDEF_COUNT_SIZE)
1036 /* Probably we're using the wrong byte ordering. */
1037 bfd_set_error (bfd_error_wrong_format);
1043 stringsize = bfd_h_get_32 (abfd, raw_armap + HPUX_SYMDEF_COUNT_SIZE);
1044 /* skip sym count and string sz */
1045 stringbase = ((char *) raw_armap
1046 + HPUX_SYMDEF_COUNT_SIZE
1047 + BSD_STRING_COUNT_SIZE);
1048 rbase = (bfd_byte *) stringbase + stringsize;
1049 ardata->symdefs = (carsym *) bfd_alloc (abfd,
1050 (ardata->symdef_count
1051 * BSD_SYMDEF_SIZE));
1052 if (!ardata->symdefs)
1054 bfd_set_error (bfd_error_no_memory);
1058 for (counter = 0, set = ardata->symdefs;
1059 counter < ardata->symdef_count;
1060 counter++, set++, rbase += BSD_SYMDEF_SIZE)
1062 set->name = bfd_h_get_32 (abfd, rbase) + stringbase;
1063 set->file_offset = bfd_h_get_32 (abfd, rbase + BSD_SYMDEF_OFFSET_SIZE);
1066 ardata->first_file_filepos = bfd_tell (abfd);
1067 /* Pad to an even boundary if you have to */
1068 ardata->first_file_filepos += (ardata->first_file_filepos) % 2;
1069 /* FIXME, we should provide some way to free raw_ardata when
1070 we are done using the strings from it. For now, it seems
1071 to be allocated on an obstack anyway... */
1072 bfd_has_map (abfd) = true;
1076 /** Extended name table.
1078 Normally archives support only 14-character filenames.
1080 Intel has extended the format: longer names are stored in a special
1081 element (the first in the archive, or second if there is an armap);
1082 the name in the ar_hdr is replaced by <space><index into filename
1083 element>. Index is the P.R. of an int (decimal). Data General have
1084 extended the format by using the prefix // for the special element */
1086 /* Returns false on error, true otherwise */
1088 _bfd_slurp_extended_name_table (abfd)
1092 struct areltdata *namedata;
1094 /* FIXME: Formatting sucks here, and in case of failure of BFD_READ,
1095 we probably don't want to return true. */
1096 bfd_seek (abfd, bfd_ardata (abfd)->first_file_filepos, SEEK_SET);
1097 if (bfd_read ((PTR) nextname, 1, 16, abfd) == 16)
1099 if (bfd_seek (abfd, (file_ptr) - 16, SEEK_CUR) != 0)
1102 if (strncmp (nextname, "ARFILENAMES/ ", 16) != 0 &&
1103 strncmp (nextname, "// ", 16) != 0)
1105 bfd_ardata (abfd)->extended_names = NULL;
1109 namedata = _bfd_read_ar_hdr (abfd);
1110 if (namedata == NULL)
1113 bfd_ardata (abfd)->extended_names =
1114 bfd_zalloc (abfd, namedata->parsed_size);
1115 if (bfd_ardata (abfd)->extended_names == NULL)
1117 bfd_set_error (bfd_error_no_memory);
1119 bfd_release (abfd, (PTR) namedata);
1123 if (bfd_read ((PTR) bfd_ardata (abfd)->extended_names, 1,
1124 namedata->parsed_size, abfd) != namedata->parsed_size)
1126 if (bfd_get_error () != bfd_error_system_call)
1127 bfd_set_error (bfd_error_malformed_archive);
1128 bfd_release (abfd, (PTR) (bfd_ardata (abfd)->extended_names));
1129 bfd_ardata (abfd)->extended_names = NULL;
1133 /* Since the archive is supposed to be printable if it contains
1134 text, the entries in the list are newline-padded, not null
1135 padded. In SVR4-style archives, the names also have a
1136 trailing '/'. DOS/NT created archive often have \ in them
1137 We'll fix all problems here.. */
1139 char *temp = bfd_ardata (abfd)->extended_names;
1140 char *limit = temp + namedata->parsed_size;
1141 for (; temp < limit; ++temp) {
1142 if (*temp == '\012')
1143 temp[temp[-1] == '/' ? -1 : 0] = '\0';
1149 /* Pad to an even boundary if you have to */
1150 bfd_ardata (abfd)->first_file_filepos = bfd_tell (abfd);
1151 bfd_ardata (abfd)->first_file_filepos +=
1152 (bfd_ardata (abfd)->first_file_filepos) % 2;
1154 /* FIXME, we can't release namedata here because it was allocated
1155 below extended_names on the obstack... */
1156 /* bfd_release (abfd, namedata); */
1163 /* Return a copy of the stuff in the filename between any :]> and a
1166 normalize (abfd, file)
1174 first = file + strlen (file) - 1;
1177 while (first != file)
1181 if (*first == ':' || *first == ']' || *first == '>')
1189 copy = (char *) bfd_alloc (abfd, last - first + 1);
1192 bfd_set_error (bfd_error_no_memory);
1196 memcpy (copy, first, last - first);
1197 copy[last - first] = 0;
1204 normalize (abfd, file)
1208 const char *filename = strrchr (file, '/');
1210 if (filename != (char *) NULL)
1218 /* Build a BFD style extended name table. */
1221 _bfd_archive_bsd_construct_extended_name_table (abfd, tabloc, tablen, name)
1224 bfd_size_type *tablen;
1227 *name = "ARFILENAMES/";
1228 return _bfd_construct_extended_name_table (abfd, false, tabloc, tablen);
1231 /* Build an SVR4 style extended name table. */
1234 _bfd_archive_coff_construct_extended_name_table (abfd, tabloc, tablen, name)
1237 bfd_size_type *tablen;
1241 return _bfd_construct_extended_name_table (abfd, true, tabloc, tablen);
1244 /* Follows archive_head and produces an extended name table if
1245 necessary. Returns (in tabloc) a pointer to an extended name
1246 table, and in tablen the length of the table. If it makes an entry
1247 it clobbers the filename so that the element may be written without
1248 further massage. Returns true if it ran successfully, false if
1249 something went wrong. A successful return may still involve a
1250 zero-length tablen! */
1253 _bfd_construct_extended_name_table (abfd, trailing_slash, tabloc, tablen)
1255 boolean trailing_slash;
1257 bfd_size_type *tablen;
1259 unsigned int maxname = abfd->xvec->ar_max_namelen;
1260 unsigned int total_namelen = 0;
1266 /* Figure out how long the table should be */
1267 for (current = abfd->archive_head; current != NULL; current = current->next)
1270 unsigned int thislen;
1272 normal = normalize (current, current->filename);
1276 thislen = strlen (normal);
1278 if (thislen > maxname
1279 && (bfd_get_file_flags (abfd) & BFD_TRADITIONAL_FORMAT) != 0)
1282 if (thislen > maxname)
1284 /* Add one to leave room for \n. */
1285 total_namelen += thislen + 1;
1288 /* Leave room for trailing slash. */
1294 struct ar_hdr *hdr = arch_hdr (current);
1295 if (strncmp (normal, hdr->ar_name, thislen) != 0
1296 || (thislen < sizeof hdr->ar_name
1297 && hdr->ar_name[thislen] != ar_padchar (current)))
1299 /* Must have been using extended format even though it
1300 didn't need to. Fix it to use normal format. */
1301 memcpy (hdr->ar_name, normal, thislen);
1302 if (thislen < maxname
1303 || (thislen == maxname && thislen < sizeof hdr->ar_name))
1304 hdr->ar_name[thislen] = ar_padchar (current);
1309 if (total_namelen == 0)
1312 *tabloc = bfd_zalloc (abfd, total_namelen);
1313 if (*tabloc == NULL)
1315 bfd_set_error (bfd_error_no_memory);
1319 *tablen = total_namelen;
1322 for (current = abfd->archive_head; current != NULL; current =
1326 unsigned int thislen;
1328 normal = normalize (current, current->filename);
1332 thislen = strlen (normal);
1333 if (thislen > maxname)
1335 /* Works for now; may need to be re-engineered if we
1336 encounter an oddball archive format and want to
1337 generalise this hack. */
1338 struct ar_hdr *hdr = arch_hdr (current);
1339 strcpy (strptr, normal);
1340 if (! trailing_slash)
1341 strptr[thislen] = '\012';
1344 strptr[thislen] = '/';
1345 strptr[thislen + 1] = '\012';
1347 hdr->ar_name[0] = ar_padchar (current);
1348 /* We know there will always be enough room (one of the few
1349 cases where you may safely use sprintf). */
1350 sprintf ((hdr->ar_name) + 1, "%-d", (unsigned) (strptr - *tabloc));
1351 /* Kinda Kludgy. We should just use the returned value of
1352 sprintf but not all implementations get this right */
1354 char *temp = hdr->ar_name + 2;
1355 for (; temp < hdr->ar_name + maxname; temp++)
1359 strptr += thislen + 1;
1368 /** A couple of functions for creating ar_hdrs */
1370 /* Takes a filename, returns an arelt_data for it, or NULL if it can't
1371 make one. The filename must refer to a filename in the filesystem.
1372 The filename field of the ar_hdr will NOT be initialized */
1374 static struct areltdata *
1375 bfd_ar_hdr_from_filesystem (abfd, filename)
1377 const char *filename;
1380 struct areltdata *ared;
1384 if (stat (filename, &status) != 0)
1386 bfd_set_error (bfd_error_system_call);
1390 ared = (struct areltdata *) bfd_zalloc (abfd, sizeof (struct ar_hdr) +
1391 sizeof (struct areltdata));
1394 bfd_set_error (bfd_error_no_memory);
1397 hdr = (struct ar_hdr *) (((char *) ared) + sizeof (struct areltdata));
1399 /* ar headers are space padded, not null padded! */
1400 memset ((PTR) hdr, ' ', sizeof (struct ar_hdr));
1402 strncpy (hdr->ar_fmag, ARFMAG, 2);
1404 /* Goddamned sprintf doesn't permit MAXIMUM field lengths */
1405 sprintf ((hdr->ar_date), "%-12ld", (long) status.st_mtime);
1406 sprintf ((hdr->ar_uid), "%ld", (long) status.st_uid);
1407 sprintf ((hdr->ar_gid), "%ld", (long) status.st_gid);
1408 sprintf ((hdr->ar_mode), "%-8o", (unsigned int) status.st_mode);
1409 sprintf ((hdr->ar_size), "%-10ld", (long) status.st_size);
1410 /* Correct for a lossage in sprintf whereby it null-terminates. I cannot
1411 understand how these C losers could design such a ramshackle bunch of
1413 temp = (char *) hdr;
1414 temp1 = temp + sizeof (struct ar_hdr) - 2;
1415 for (; temp < temp1; temp++)
1420 strncpy (hdr->ar_fmag, ARFMAG, 2);
1421 ared->parsed_size = status.st_size;
1422 ared->arch_header = (char *) hdr;
1427 /* This is magic required by the "ar" program. Since it's
1428 undocumented, it's undocumented. You may think that it would take
1429 a strong stomach to write this, and it does, but it takes even a
1430 stronger stomach to try to code around such a thing! */
1433 bfd_special_undocumented_glue (abfd, filename)
1437 struct areltdata *ar_elt = bfd_ar_hdr_from_filesystem (abfd, filename);
1440 return (struct ar_hdr *) ar_elt->arch_header;
1444 /* Analogous to stat call */
1446 bfd_generic_stat_arch_elt (abfd, buf)
1453 if (abfd->arelt_data == NULL)
1455 bfd_set_error (bfd_error_invalid_operation);
1459 hdr = arch_hdr (abfd);
1461 #define foo(arelt, stelt, size) \
1462 buf->stelt = strtol (hdr->arelt, &aloser, size); \
1463 if (aloser == hdr->arelt) return -1;
1465 foo (ar_date, st_mtime, 10);
1466 foo (ar_uid, st_uid, 10);
1467 foo (ar_gid, st_gid, 10);
1468 foo (ar_mode, st_mode, 8);
1470 buf->st_size = arch_eltdata (abfd)->parsed_size;
1476 bfd_dont_truncate_arname (abfd, pathname, arhdr)
1478 CONST char *pathname;
1481 /* FIXME: This interacts unpleasantly with ar's quick-append option.
1482 Fortunately ic960 users will never use that option. Fixing this
1483 is very hard; fortunately I know how to do it and will do so once
1484 intel's release is out the door. */
1486 struct ar_hdr *hdr = (struct ar_hdr *) arhdr;
1488 const char *filename;
1489 size_t maxlen = ar_maxnamelen (abfd);
1491 if ((bfd_get_file_flags (abfd) & BFD_TRADITIONAL_FORMAT) != 0)
1493 bfd_bsd_truncate_arname (abfd, pathname, arhdr);
1497 filename = normalize (abfd, pathname);
1498 if (filename == NULL)
1504 length = strlen (filename);
1506 if (length <= maxlen)
1507 memcpy (hdr->ar_name, filename, length);
1509 /* Add the padding character if there is room for it. */
1511 || (length == maxlen && length < sizeof hdr->ar_name))
1512 (hdr->ar_name)[length] = ar_padchar (abfd);
1516 bfd_bsd_truncate_arname (abfd, pathname, arhdr)
1518 CONST char *pathname;
1521 struct ar_hdr *hdr = (struct ar_hdr *) arhdr;
1523 CONST char *filename = strrchr (pathname, '/');
1524 int maxlen = ar_maxnamelen (abfd);
1526 if (filename == NULL)
1527 filename = pathname;
1531 length = strlen (filename);
1533 if (length <= maxlen)
1534 memcpy (hdr->ar_name, filename, length);
1537 /* pathname: meet procrustes */
1538 memcpy (hdr->ar_name, filename, maxlen);
1542 if (length < maxlen)
1543 (hdr->ar_name)[length] = ar_padchar (abfd);
1546 /* Store name into ar header. Truncates the name to fit.
1547 1> strip pathname to be just the basename.
1548 2> if it's short enuf to fit, stuff it in.
1549 3> If it doesn't end with .o, truncate it to fit
1550 4> truncate it before the .o, append .o, stuff THAT in. */
1552 /* This is what gnu ar does. It's better but incompatible with the
1556 bfd_gnu_truncate_arname (abfd, pathname, arhdr)
1558 CONST char *pathname;
1561 struct ar_hdr *hdr = (struct ar_hdr *) arhdr;
1563 CONST char *filename = strrchr (pathname, '/');
1564 int maxlen = ar_maxnamelen (abfd);
1566 if (filename == NULL)
1567 filename = pathname;
1571 length = strlen (filename);
1573 if (length <= maxlen)
1574 memcpy (hdr->ar_name, filename, length);
1576 { /* pathname: meet procrustes */
1577 memcpy (hdr->ar_name, filename, maxlen);
1578 if ((filename[length - 2] == '.') && (filename[length - 1] == 'o'))
1580 hdr->ar_name[maxlen - 2] = '.';
1581 hdr->ar_name[maxlen - 1] = 'o';
1587 (hdr->ar_name)[length] = ar_padchar (abfd);
1590 /* The BFD is open for write and has its format set to bfd_archive */
1593 _bfd_write_archive_contents (arch)
1597 char *etable = NULL;
1598 bfd_size_type elength = 0;
1599 const char *ename = NULL;
1600 boolean makemap = bfd_has_map (arch);
1601 boolean hasobjects = false; /* if no .o's, don't bother to make a map */
1602 bfd_size_type wrote;
1606 /* Verify the viability of all entries; if any of them live in the
1607 filesystem (as opposed to living in an archive open for input)
1608 then construct a fresh ar_hdr for them. */
1609 for (current = arch->archive_head; current; current = current->next)
1611 if (bfd_write_p (current))
1613 bfd_set_error (bfd_error_invalid_operation);
1616 if (!current->arelt_data)
1618 current->arelt_data =
1619 (PTR) bfd_ar_hdr_from_filesystem (arch, current->filename);
1620 if (!current->arelt_data)
1623 /* Put in the file name */
1624 BFD_SEND (arch, _bfd_truncate_arname, (arch,
1626 (char *) arch_hdr (current)));
1629 if (makemap && ! hasobjects)
1630 { /* don't bother if we won't make a map! */
1631 if ((bfd_check_format (current, bfd_object))
1632 #if 0 /* FIXME -- these are not set correctly */
1633 && ((bfd_get_file_flags (current) & HAS_SYMS))
1640 if (!BFD_SEND (arch, _bfd_construct_extended_name_table,
1641 (arch, &etable, &elength, &ename)))
1644 if (bfd_seek (arch, (file_ptr) 0, SEEK_SET) != 0)
1647 wrote = bfd_write (BFD_GNU960_ARMAG (arch), 1, SARMAG, arch);
1649 wrote = bfd_write (ARMAG, 1, SARMAG, arch);
1651 if (wrote != SARMAG)
1654 if (makemap && hasobjects)
1656 if (_bfd_compute_and_write_armap (arch, elength) != true)
1664 memset ((char *) (&hdr), 0, sizeof (struct ar_hdr));
1665 strcpy (hdr.ar_name, ename);
1666 /* Round size up to even number in archive header. */
1667 sprintf (&(hdr.ar_size[0]), "%-10d",
1668 (int) ((elength + 1) & ~1));
1669 strncpy (hdr.ar_fmag, ARFMAG, 2);
1670 for (i = 0; i < sizeof (struct ar_hdr); i++)
1671 if (((char *) (&hdr))[i] == '\0')
1672 (((char *) (&hdr))[i]) = ' ';
1673 if ((bfd_write ((char *) &hdr, 1, sizeof (struct ar_hdr), arch)
1674 != sizeof (struct ar_hdr))
1675 || bfd_write (etable, 1, elength, arch) != elength)
1677 if ((elength % 2) == 1)
1679 if (bfd_write ("\012", 1, 1, arch) != 1)
1684 for (current = arch->archive_head; current; current = current->next)
1686 char buffer[DEFAULT_BUFFERSIZE];
1687 unsigned int remaining = arelt_size (current);
1688 struct ar_hdr *hdr = arch_hdr (current);
1690 /* write ar header */
1691 if (bfd_write ((char *) hdr, 1, sizeof (*hdr), arch) != sizeof (*hdr))
1693 if (bfd_seek (current, (file_ptr) 0, SEEK_SET) != 0)
1697 unsigned int amt = DEFAULT_BUFFERSIZE;
1698 if (amt > remaining)
1701 if (bfd_read (buffer, amt, 1, current) != amt)
1703 if (bfd_get_error () != bfd_error_system_call)
1704 bfd_set_error (bfd_error_malformed_archive);
1707 if (bfd_write (buffer, amt, 1, arch) != amt)
1711 if ((arelt_size (current) % 2) == 1)
1713 if (bfd_write ("\012", 1, 1, arch) != 1)
1718 if (makemap && hasobjects)
1720 /* Verify the timestamp in the archive file. If it would not be
1721 accepted by the linker, rewrite it until it would be. If
1722 anything odd happens, break out and just return. (The
1723 Berkeley linker checks the timestamp and refuses to read the
1724 table-of-contents if it is >60 seconds less than the file's
1725 modified-time. That painful hack requires this painful hack. */
1729 if (bfd_update_armap_timestamp (arch))
1731 (*_bfd_error_handler)
1732 ("Warning: writing archive was slow: rewriting timestamp\n");
1734 while (++tries < 6);
1740 /* Note that the namidx for the first symbol is 0 */
1743 _bfd_compute_and_write_armap (arch, elength)
1745 unsigned int elength;
1747 char *first_name = NULL;
1749 file_ptr elt_no = 0;
1750 struct orl *map = NULL;
1751 int orl_max = 1024; /* fine initial default */
1753 int stridx = 0; /* string index */
1754 asymbol **syms = NULL;
1758 /* Dunno if this is the best place for this info... */
1760 elength += sizeof (struct ar_hdr);
1761 elength += elength % 2;
1763 map = (struct orl *) malloc (orl_max * sizeof (struct orl));
1765 goto no_memory_return;
1767 /* We put the symbol names on the arch obstack, and then discard
1769 first_name = bfd_alloc (arch, 1);
1770 if (first_name == NULL)
1771 goto no_memory_return;
1773 /* Drop all the files called __.SYMDEF, we're going to make our
1775 while (arch->archive_head &&
1776 strcmp (arch->archive_head->filename, "__.SYMDEF") == 0)
1777 arch->archive_head = arch->archive_head->next;
1779 /* Map over each element */
1780 for (current = arch->archive_head;
1781 current != (bfd *) NULL;
1782 current = current->next, elt_no++)
1784 if ((bfd_check_format (current, bfd_object) == true)
1785 && ((bfd_get_file_flags (current) & HAS_SYMS)))
1791 storage = bfd_get_symtab_upper_bound (current);
1797 if (storage > syms_max)
1802 syms = (asymbol **) malloc ((size_t) syms_max);
1804 goto no_memory_return;
1806 symcount = bfd_canonicalize_symtab (current, syms);
1810 /* Now map over all the symbols, picking out the ones we want */
1811 for (src_count = 0; src_count < symcount; src_count++)
1813 flagword flags = (syms[src_count])->flags;
1814 asection *sec = syms[src_count]->section;
1816 if ((flags & BSF_GLOBAL ||
1818 flags & BSF_INDIRECT ||
1819 bfd_is_com_section (sec))
1820 && ! bfd_is_und_section (sec))
1823 struct orl *new_map;
1825 /* This symbol will go into the archive header */
1826 if (orl_count == orl_max)
1829 new_map = ((struct orl *)
1831 orl_max * sizeof (struct orl)));
1832 if (new_map == (struct orl *) NULL)
1833 goto no_memory_return;
1838 namelen = strlen (syms[src_count]->name);
1839 map[orl_count].name = ((char **)
1842 if (map[orl_count].name == NULL)
1843 goto no_memory_return;
1844 *(map[orl_count].name) = bfd_alloc (arch, namelen + 1);
1845 if (*(map[orl_count].name) == NULL)
1846 goto no_memory_return;
1847 strcpy (*(map[orl_count].name), syms[src_count]->name);
1848 (map[orl_count]).pos = (file_ptr) current;
1849 (map[orl_count]).namidx = stridx;
1851 stridx += namelen + 1;
1857 /* Now ask the BFD to free up any cached information, so we
1858 don't fill all of memory with symbol tables. */
1859 if (! bfd_free_cached_info (current))
1864 /* OK, now we have collected all the data, let's write them out */
1865 ret = BFD_SEND (arch, write_armap,
1866 (arch, elength, map, orl_count, stridx));
1872 if (first_name != NULL)
1873 bfd_release (arch, first_name);
1878 bfd_set_error (bfd_error_no_memory);
1885 if (first_name != NULL)
1886 bfd_release (arch, first_name);
1892 bsd_write_armap (arch, elength, map, orl_count, stridx)
1894 unsigned int elength;
1896 unsigned int orl_count;
1899 int padit = stridx & 1;
1900 unsigned int ranlibsize = orl_count * BSD_SYMDEF_SIZE;
1901 unsigned int stringsize = stridx + padit;
1902 /* Include 8 bytes to store ranlibsize and stringsize in output. */
1903 unsigned int mapsize = ranlibsize + stringsize + 8;
1905 bfd *current = arch->archive_head;
1906 bfd *last_elt = current; /* last element arch seen */
1910 struct stat statbuf;
1913 firstreal = mapsize + elength + sizeof (struct ar_hdr) + SARMAG;
1915 stat (arch->filename, &statbuf);
1916 memset ((char *) (&hdr), 0, sizeof (struct ar_hdr));
1917 sprintf (hdr.ar_name, RANLIBMAG);
1918 /* Remember the timestamp, to keep it holy. But fudge it a little. */
1919 bfd_ardata (arch)->armap_timestamp = statbuf.st_mtime + ARMAP_TIME_OFFSET;
1920 bfd_ardata (arch)->armap_datepos = (SARMAG
1921 + offsetof (struct ar_hdr, ar_date[0]));
1922 sprintf (hdr.ar_date, "%ld", bfd_ardata (arch)->armap_timestamp);
1923 sprintf (hdr.ar_uid, "%ld", (long) getuid ());
1924 sprintf (hdr.ar_gid, "%ld", (long) getgid ());
1925 sprintf (hdr.ar_size, "%-10d", (int) mapsize);
1926 strncpy (hdr.ar_fmag, ARFMAG, 2);
1927 for (i = 0; i < sizeof (struct ar_hdr); i++)
1928 if (((char *) (&hdr))[i] == '\0')
1929 (((char *) (&hdr))[i]) = ' ';
1930 if (bfd_write ((char *) &hdr, 1, sizeof (struct ar_hdr), arch)
1931 != sizeof (struct ar_hdr))
1933 bfd_h_put_32 (arch, (bfd_vma) ranlibsize, temp);
1934 if (bfd_write (temp, 1, sizeof (temp), arch) != sizeof (temp))
1937 for (count = 0; count < orl_count; count++)
1939 bfd_byte buf[BSD_SYMDEF_SIZE];
1941 if (((bfd *) (map[count]).pos) != last_elt)
1945 firstreal += arelt_size (current) + sizeof (struct ar_hdr);
1946 firstreal += firstreal % 2;
1947 current = current->next;
1949 while (current != (bfd *) (map[count]).pos);
1950 } /* if new archive element */
1953 bfd_h_put_32 (arch, map[count].namidx, buf);
1954 bfd_h_put_32 (arch, firstreal, buf + BSD_SYMDEF_OFFSET_SIZE);
1955 if (bfd_write (buf, BSD_SYMDEF_SIZE, 1, arch) != BSD_SYMDEF_SIZE)
1959 /* now write the strings themselves */
1960 bfd_h_put_32 (arch, stringsize, temp);
1961 if (bfd_write (temp, 1, sizeof (temp), arch) != sizeof (temp))
1963 for (count = 0; count < orl_count; count++)
1965 size_t len = strlen (*map[count].name) + 1;
1967 if (bfd_write (*map[count].name, 1, len, arch) != len)
1971 /* The spec sez this should be a newline. But in order to be
1972 bug-compatible for sun's ar we use a null. */
1975 if (bfd_write ("", 1, 1, arch) != 1)
1982 /* At the end of archive file handling, update the timestamp in the
1983 file, so the linker will accept it.
1985 Return true if the timestamp was OK, or an unusual problem happened.
1986 Return false if we updated the timestamp. */
1989 _bfd_archive_bsd_update_armap_timestamp (arch)
1992 struct stat archstat;
1996 /* Flush writes, get last-write timestamp from file, and compare it
1997 to the timestamp IN the file. */
1999 if (bfd_stat (arch, &archstat) == -1)
2001 perror ("Reading archive file mod timestamp");
2002 return true; /* Can't read mod time for some reason */
2004 if (archstat.st_mtime <= bfd_ardata (arch)->armap_timestamp)
2005 return true; /* OK by the linker's rules */
2007 /* Update the timestamp. */
2008 bfd_ardata (arch)->armap_timestamp = archstat.st_mtime + ARMAP_TIME_OFFSET;
2010 /* Prepare an ASCII version suitable for writing. */
2011 memset (hdr.ar_date, 0, sizeof (hdr.ar_date));
2012 sprintf (hdr.ar_date, "%ld", bfd_ardata (arch)->armap_timestamp);
2013 for (i = 0; i < sizeof (hdr.ar_date); i++)
2014 if (hdr.ar_date[i] == '\0')
2015 (hdr.ar_date)[i] = ' ';
2017 /* Write it into the file. */
2018 bfd_ardata (arch)->armap_datepos = (SARMAG
2019 + offsetof (struct ar_hdr, ar_date[0]));
2020 if (bfd_seek (arch, bfd_ardata (arch)->armap_datepos, SEEK_SET) != 0
2021 || (bfd_write (hdr.ar_date, sizeof (hdr.ar_date), 1, arch)
2022 != sizeof (hdr.ar_date)))
2024 /* FIXME: bfd can't call perror. */
2025 perror ("Writing updated armap timestamp");
2026 return true; /* Some error while writing */
2029 return false; /* We updated the timestamp successfully. */
2032 /* A coff armap looks like :
2034 struct ar_hdr with name = '/'
2036 offset of file for symbol 0
2037 offset of file for symbol 1
2039 offset of file for symbol n-1
2047 coff_write_armap (arch, elength, map, symbol_count, stridx)
2049 unsigned int elength;
2051 unsigned int symbol_count;
2054 /* The size of the ranlib is the number of exported symbols in the
2055 archive * the number of bytes in a int, + an int for the count */
2056 unsigned int ranlibsize = (symbol_count * 4) + 4;
2057 unsigned int stringsize = stridx;
2058 unsigned int mapsize = stringsize + ranlibsize;
2059 file_ptr archive_member_file_ptr;
2060 bfd *current = arch->archive_head;
2064 int padit = mapsize & 1;
2069 /* work out where the first object file will go in the archive */
2070 archive_member_file_ptr = (mapsize
2072 + sizeof (struct ar_hdr)
2075 memset ((char *) (&hdr), 0, sizeof (struct ar_hdr));
2076 hdr.ar_name[0] = '/';
2077 sprintf (hdr.ar_size, "%-10d", (int) mapsize);
2078 sprintf (hdr.ar_date, "%ld", (long) time (NULL));
2079 /* This, at least, is what Intel coff sets the values to.: */
2080 sprintf ((hdr.ar_uid), "%d", 0);
2081 sprintf ((hdr.ar_gid), "%d", 0);
2082 sprintf ((hdr.ar_mode), "%-7o", (unsigned) 0);
2083 strncpy (hdr.ar_fmag, ARFMAG, 2);
2085 for (i = 0; i < sizeof (struct ar_hdr); i++)
2086 if (((char *) (&hdr))[i] == '\0')
2087 (((char *) (&hdr))[i]) = ' ';
2089 /* Write the ar header for this item and the number of symbols */
2091 if (bfd_write ((PTR) &hdr, 1, sizeof (struct ar_hdr), arch)
2092 != sizeof (struct ar_hdr))
2095 bfd_write_bigendian_4byte_int (arch, symbol_count);
2097 /* Two passes, first write the file offsets for each symbol -
2098 remembering that each offset is on a two byte boundary. */
2100 /* Write out the file offset for the file associated with each
2101 symbol, and remember to keep the offsets padded out. */
2103 current = arch->archive_head;
2105 while (current != (bfd *) NULL && count < symbol_count)
2107 /* For each symbol which is used defined in this object, write out
2108 the object file's address in the archive */
2110 while (((bfd *) (map[count]).pos) == current)
2112 bfd_write_bigendian_4byte_int (arch, archive_member_file_ptr);
2115 /* Add size of this archive entry */
2116 archive_member_file_ptr += (arelt_size (current)
2117 + sizeof (struct ar_hdr));
2118 /* remember aboout the even alignment */
2119 archive_member_file_ptr += archive_member_file_ptr % 2;
2120 current = current->next;
2123 /* now write the strings themselves */
2124 for (count = 0; count < symbol_count; count++)
2126 size_t len = strlen (*map[count].name) + 1;
2128 if (bfd_write (*map[count].name, 1, len, arch) != len)
2132 /* The spec sez this should be a newline. But in order to be
2133 bug-compatible for arc960 we use a null. */
2136 if (bfd_write ("", 1, 1, arch) != 1)