]> Git Repo - binutils.git/blob - bfd/archive.c
Make map_program_segments tend to call abort rather than trash the
[binutils.git] / bfd / archive.c
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.
4
5 This file is part of BFD, the Binary File Descriptor library.
6
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.
11
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.
16
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.  */
20
21 /*
22 @setfilename archive-info
23 SECTION
24         Archives
25
26 DESCRIPTION
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.
29
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.
37
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.
42
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.
48
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!
54
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
64         homogeneous.
65
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
71         of a restriction.
72
73         Archives are supported in BFD in <<archive.c>>.
74
75 */
76
77 /* Assumes:
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).
81 */
82
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.
91
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.
95
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.
100
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.
104 */
105
106 /* Summary of archive member names:
107
108  Symbol table (must be first):
109  "__.SYMDEF       " - Symbol table, Berkeley style, produced by ranlib.
110  "/               " - Symbol table, system 5 style.
111
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).
115
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).
119
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.
126  */
127
128 #include "bfd.h"
129 #include "sysdep.h"
130 #include "libbfd.h"
131 #include "aout/ar.h"
132 #include "aout/ranlib.h"
133 #include <errno.h>
134 #include <string.h>             /* For memchr, strrchr and friends */
135 #include <ctype.h>
136
137 #ifndef errno
138 extern int errno;
139 #endif
140
141 #ifdef GNU960
142 #define BFD_GNU960_ARMAG(abfd)  (BFD_COFF_FILE_P((abfd)) ? ARMAG : ARMAGB)
143 #endif
144
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 */
149
150 #if !defined (offsetof)
151 #define offsetof(TYPE, MEMBER) ((unsigned long) &((TYPE *)0)->MEMBER)
152 #endif
153
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!
160 */
161 struct ar_cache
162 {
163   file_ptr ptr;
164   bfd *arelt;
165   struct ar_cache *next;
166 };
167
168 #define ar_padchar(abfd) ((abfd)->xvec->ar_pad_char)
169 #define ar_maxnamelen(abfd) ((abfd)->xvec->ar_max_namelen)
170
171 #define arch_eltdata(bfd) ((struct areltdata *)((bfd)->arelt_data))
172 #define arch_hdr(bfd) ((struct ar_hdr *)arch_eltdata(bfd)->arch_header)
173
174 static char *get_extended_arelt_filename PARAMS ((bfd *arch,
175                                                   const char *name));
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,
180                                                           char **tabloc,
181                                                           unsigned int *));
182 static struct areltdata *bfd_ar_hdr_from_filesystem PARAMS ((bfd *abfd,
183                                                              const char *));
184 static boolean compute_and_write_armap PARAMS ((bfd *arch,
185                                                 unsigned int elength));
186 static boolean bsd_update_armap_timestamp PARAMS ((bfd *arch));
187 \f
188 boolean
189 _bfd_generic_mkarchive (abfd)
190      bfd *abfd;
191 {
192   abfd->tdata.aout_ar_data = ((struct artdata *)
193                               bfd_zalloc (abfd, sizeof (struct artdata)));
194
195   if (bfd_ardata (abfd) == NULL)
196     {
197       bfd_set_error (bfd_error_no_memory);
198       return false;
199     }
200
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;
206
207   return true;
208 }
209
210 /*
211 FUNCTION
212         bfd_get_next_mapent
213
214 SYNOPSIS
215         symindex bfd_get_next_mapent(bfd *abfd, symindex previous, carsym **sym);
216
217 DESCRIPTION
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
221         symbol table.
222
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
225         got the last one.
226
227         A <<carsym>> is a canonical archive symbol.  The only
228         user-visible element is its name, a null-terminated string.
229 */
230
231 symindex
232 bfd_get_next_mapent (abfd, prev, entry)
233      bfd *abfd;
234      symindex prev;
235      carsym **entry;
236 {
237   if (!bfd_has_map (abfd))
238     {
239       bfd_set_error (bfd_error_invalid_operation);
240       return BFD_NO_MORE_SYMBOLS;
241     }
242
243   if (prev == BFD_NO_MORE_SYMBOLS)
244     prev = 0;
245   else if (++prev >= bfd_ardata (abfd)->symdef_count)
246     return BFD_NO_MORE_SYMBOLS;
247
248   *entry = (bfd_ardata (abfd)->symdefs + prev);
249   return prev;
250 }
251
252 /* To be called by backends only */
253
254 bfd *
255 _bfd_create_empty_archive_element_shell (obfd)
256      bfd *obfd;
257 {
258   bfd *nbfd;
259
260   nbfd = _bfd_new_bfd_contained_in (obfd);
261   if (nbfd == NULL)
262     {
263       bfd_set_error (bfd_error_no_memory);
264       return NULL;
265     }
266   return nbfd;
267 }
268
269 /*
270 FUNCTION
271         bfd_set_archive_head
272
273 SYNOPSIS
274         boolean bfd_set_archive_head(bfd *output, bfd *new_head);
275
276 DESCRIPTION
277         Set the head of the chain of
278         BFDs contained in the archive @var{output} to @var{new_head}.
279 */
280
281 boolean
282 bfd_set_archive_head (output_archive, new_head)
283      bfd *output_archive;
284      bfd *new_head;
285 {
286
287   output_archive->archive_head = new_head;
288   return true;
289 }
290
291 bfd *
292 _bfd_look_for_bfd_in_cache (arch_bfd, filepos)
293      bfd *arch_bfd;
294      file_ptr filepos;
295 {
296   struct ar_cache *current;
297
298   for (current = bfd_ardata (arch_bfd)->cache; current != NULL;
299        current = current->next)
300     if (current->ptr == filepos)
301       return current->arelt;
302
303   return NULL;
304 }
305
306 /* Kind of stupid to call cons for each one, but we don't do too many */
307 boolean
308 _bfd_add_bfd_to_archive_cache (arch_bfd, filepos, new_elt)
309      bfd *arch_bfd, *new_elt;
310      file_ptr filepos;
311 {
312   struct ar_cache *new_cache = ((struct ar_cache *)
313                                 bfd_zalloc (arch_bfd,
314                                             sizeof (struct ar_cache)));
315
316   if (new_cache == NULL)
317     {
318       bfd_set_error (bfd_error_no_memory);
319       return false;
320     }
321
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;
327   else
328     {
329       struct ar_cache *current = bfd_ardata (arch_bfd)->cache;
330
331       while (current->next != NULL)
332         current = current->next;
333       current->next = new_cache;
334     }
335
336   return true;
337 }
338 \f
339 /* The name begins with space.  Hence the rest of the name is an index into
340    the string table. */
341
342 static char *
343 get_extended_arelt_filename (arch, name)
344      bfd *arch;
345      const char *name;
346 {
347   unsigned long index = 0;
348
349   /* Should extract string so that I can guarantee not to overflow into
350      the next region, but I'm too lazy. */
351   errno = 0;
352   /* Skip first char, which is '/' in SVR4 or ' ' in some other variants. */
353   index = strtol (name + 1, NULL, 10);
354   if (errno != 0)
355     {
356       bfd_set_error (bfd_error_malformed_archive);
357       return NULL;
358     }
359
360   return bfd_ardata (arch)->extended_names + index;
361 }
362
363 /* This functions reads an arch header and returns an areltdata pointer, or
364    NULL on error.
365
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.
370 */
371
372 struct areltdata *
373 _bfd_snarf_ar_hdr (abfd)
374      bfd *abfd;
375 {
376 #ifndef errno
377   extern int errno;
378 #endif
379
380   struct ar_hdr hdr;
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);
387   char *allocptr = 0;
388
389   if (bfd_read ((PTR) hdrp, 1, sizeof (struct ar_hdr), abfd)
390       != sizeof (struct ar_hdr))
391     {
392       if (bfd_get_error () != bfd_error_system_call)
393         bfd_set_error (bfd_error_no_more_archived_files);
394       return NULL;
395     }
396   if (strncmp (hdr.ar_fmag, ARFMAG, 2))
397     {
398       bfd_set_error (bfd_error_malformed_archive);
399       return NULL;
400     }
401
402   errno = 0;
403   parsed_size = strtol (hdr.ar_size, NULL, 10);
404   if (errno != 0)
405     {
406       bfd_set_error (bfd_error_malformed_archive);
407       return NULL;
408     }
409
410   /* Extract the filename from the archive - there are two ways to
411      specify an extendend name table, either the first char of the
412      name is a space, or it's a slash.  */
413   if ((hdr.ar_name[0] == '/'
414        || (hdr.ar_name[0] == ' '
415            && memchr (hdr.ar_name, '/', ar_maxnamelen (abfd)) == NULL))
416       && bfd_ardata (abfd)->extended_names != NULL)
417     {
418       filename = get_extended_arelt_filename (abfd, hdr.ar_name);
419       if (filename == NULL)
420         {
421           bfd_set_error (bfd_error_malformed_archive);
422           return NULL;
423         }
424     }
425   /* BSD4.4-style long filename.
426      Only implemented for reading, so far! */
427   else if (hdr.ar_name[0] == '#' && hdr.ar_name[1] == '1'
428            && hdr.ar_name[2] == '/' && isdigit (hdr.ar_name[3]))
429     {
430       /* BSD-4.4 extended name */
431       namelen = atoi (&hdr.ar_name[3]);
432       allocsize += namelen + 1;
433       parsed_size -= namelen;
434
435       allocptr = bfd_zalloc (abfd, allocsize);
436       if (allocptr == NULL)
437         {
438           bfd_set_error (bfd_error_no_memory);
439           return NULL;
440         }
441       filename = (allocptr
442                   + sizeof (struct areltdata)
443                   + sizeof (struct ar_hdr));
444       if (bfd_read (filename, 1, namelen, abfd) != namelen)
445         {
446           if (bfd_get_error () != bfd_error_system_call)
447             bfd_set_error (bfd_error_no_more_archived_files);
448           return NULL;
449         }
450       filename[namelen] = '\0';
451     }
452   else
453     {
454       /* We judge the end of the name by looking for '/' or ' '.
455          Note:  The SYSV format (terminated by '/') allows embedded
456          spaces, so only look for ' ' if we don't find '/'. */
457
458       namelen = 0;
459       while (hdr.ar_name[namelen] != '\0' &&
460              hdr.ar_name[namelen] != '/')
461         {
462           namelen++;
463           if (namelen == (unsigned) ar_maxnamelen (abfd))
464             {
465               namelen = 0;
466               while (hdr.ar_name[namelen] != ' '
467                      && namelen < (unsigned) ar_maxnamelen (abfd))
468                 namelen++;
469               break;
470             }
471         }
472
473       allocsize += namelen + 1;
474     }
475
476   if (!allocptr)
477     {
478       allocptr = bfd_zalloc (abfd, allocsize);
479       if (allocptr == NULL)
480         {
481           bfd_set_error (bfd_error_no_memory);
482           return NULL;
483         }
484     }
485
486   ared = (struct areltdata *) allocptr;
487
488   ared->arch_header = allocptr + sizeof (struct areltdata);
489   memcpy ((char *) ared->arch_header, (char *) &hdr, sizeof (struct ar_hdr));
490   ared->parsed_size = parsed_size;
491
492   if (filename != NULL)
493     ared->filename = filename;
494   else
495     {
496       ared->filename = allocptr + (sizeof (struct areltdata) +
497                                    sizeof (struct ar_hdr));
498       if (namelen)
499         memcpy (ared->filename, hdr.ar_name, namelen);
500       ared->filename[namelen] = '\0';
501     }
502
503   return ared;
504 }
505 \f
506 /* This is an internal function; it's mainly used when indexing
507    through the archive symbol table, but also used to get the next
508    element, since it handles the bookkeeping so nicely for us.  */
509
510 bfd *
511 _bfd_get_elt_at_filepos (archive, filepos)
512      bfd *archive;
513      file_ptr filepos;
514 {
515   struct areltdata *new_areldata;
516   bfd *n_nfd;
517
518   n_nfd = _bfd_look_for_bfd_in_cache (archive, filepos);
519   if (n_nfd)
520     return n_nfd;
521
522   if (0 > bfd_seek (archive, filepos, SEEK_SET))
523     return NULL;
524
525   if ((new_areldata = _bfd_snarf_ar_hdr (archive)) == NULL)
526     return NULL;
527
528   n_nfd = _bfd_create_empty_archive_element_shell (archive);
529   if (n_nfd == NULL)
530     {
531       bfd_release (archive, (PTR) new_areldata);
532       return NULL;
533     }
534
535   n_nfd->origin = bfd_tell (archive);
536   n_nfd->arelt_data = (PTR) new_areldata;
537   n_nfd->filename = new_areldata->filename;
538
539   if (_bfd_add_bfd_to_archive_cache (archive, filepos, n_nfd))
540     return n_nfd;
541
542   /* huh? */
543   bfd_release (archive, (PTR) n_nfd);
544   bfd_release (archive, (PTR) new_areldata);
545   return NULL;
546 }
547
548 /*
549 FUNCTION
550         bfd_get_elt_at_index
551
552 SYNOPSIS
553         bfd *bfd_get_elt_at_index(bfd *archive, int index);
554
555 DESCRIPTION
556         Return the BFD which is referenced by the symbol in @var{archive}
557         indexed by @var{index}.  @var{index} should have been returned by
558         <<bfd_get_next_mapent>> (q.v.).
559
560 */
561 bfd *
562 bfd_get_elt_at_index (abfd, index)
563      bfd *abfd;
564      int index;
565 {
566   carsym *entry;
567
568   entry = bfd_ardata (abfd)->symdefs + index;
569   return _bfd_get_elt_at_filepos (abfd, entry->file_offset);
570 }
571
572 /*
573 FUNCTION
574         bfd_openr_next_archived_file
575
576 SYNOPSIS
577         bfd *bfd_openr_next_archived_file(bfd *archive, bfd *previous);
578
579 DESCRIPTION
580         Provided a BFD, @var{archive}, containing an archive and NULL, open
581         an input BFD on the first contained element and returns that.
582         Subsequent calls should pass
583         the archive and the previous return value to return a created
584         BFD to the next contained element. NULL is returned when there
585         are no more.
586
587 */
588
589 bfd *
590 bfd_openr_next_archived_file (archive, last_file)
591      bfd *archive;
592      bfd *last_file;
593 {
594   if ((bfd_get_format (archive) != bfd_archive) ||
595       (archive->direction == write_direction))
596     {
597       bfd_set_error (bfd_error_invalid_operation);
598       return NULL;
599     }
600
601   return BFD_SEND (archive,
602                    openr_next_archived_file,
603                    (archive,
604                     last_file));
605 }
606
607 bfd *
608 bfd_generic_openr_next_archived_file (archive, last_file)
609      bfd *archive;
610      bfd *last_file;
611 {
612   file_ptr filestart;
613
614   if (!last_file)
615     filestart = bfd_ardata (archive)->first_file_filepos;
616   else
617     {
618       unsigned int size = arelt_size (last_file);
619       /* Pad to an even boundary...
620          Note that last_file->origin can be odd in the case of
621          BSD-4.4-style element with a long odd size. */
622       filestart = last_file->origin + size;
623       filestart += filestart % 2;
624     }
625
626   return _bfd_get_elt_at_filepos (archive, filestart);
627 }
628
629
630 bfd_target *
631 bfd_generic_archive_p (abfd)
632      bfd *abfd;
633 {
634   char armag[SARMAG + 1];
635
636   if (bfd_read ((PTR) armag, 1, SARMAG, abfd) != SARMAG)
637     {
638       if (bfd_get_error () != bfd_error_system_call)
639         bfd_set_error (bfd_error_wrong_format);
640       return NULL;
641     }
642
643 #ifdef GNU960
644   if (strncmp (armag, BFD_GNU960_ARMAG (abfd), SARMAG) != 0)
645     return 0;
646 #else
647   if (strncmp (armag, ARMAG, SARMAG) != 0 &&
648       strncmp (armag, ARMAGB, SARMAG) != 0)
649     return 0;
650 #endif
651
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)));
656
657   if (bfd_ardata (abfd) == NULL)
658     {
659       bfd_set_error (bfd_error_no_memory);
660       return NULL;
661     }
662
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;
669
670   if (!BFD_SEND (abfd, _bfd_slurp_armap, (abfd)))
671     {
672       bfd_release (abfd, bfd_ardata (abfd));
673       abfd->tdata.aout_ar_data = NULL;
674       return NULL;
675     }
676
677   if (!BFD_SEND (abfd, _bfd_slurp_extended_name_table, (abfd)))
678     {
679       bfd_release (abfd, bfd_ardata (abfd));
680       abfd->tdata.aout_ar_data = NULL;
681       return NULL;
682     }
683
684   return abfd->xvec;
685 }
686
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.  */
691
692 /* The size of an external symdef structure.  */
693 #define BSD_SYMDEF_SIZE 8
694
695 /* The offset from the start of a symdef structure to the file offset.  */
696 #define BSD_SYMDEF_OFFSET_SIZE 4
697
698 /* The size of the symdef count.  */
699 #define BSD_SYMDEF_COUNT_SIZE 4
700
701 /* The size of the string count.  */
702 #define BSD_STRING_COUNT_SIZE 4
703
704 /* Returns false on error, true otherwise */
705
706 static boolean
707 do_slurp_bsd_armap (abfd)
708      bfd *abfd;
709 {
710   struct areltdata *mapdata;
711   unsigned int counter;
712   bfd_byte *raw_armap, *rbase;
713   struct artdata *ardata = bfd_ardata (abfd);
714   char *stringbase;
715   unsigned int parsed_size;
716   carsym *set;
717
718   mapdata = _bfd_snarf_ar_hdr (abfd);
719   if (mapdata == NULL)
720     return false;
721   parsed_size = mapdata->parsed_size;
722   bfd_release (abfd, (PTR) mapdata);    /* Don't need it any more. */
723
724   raw_armap = (bfd_byte *) bfd_zalloc (abfd, parsed_size);
725   if (raw_armap == (bfd_byte *) NULL)
726     {
727       bfd_set_error (bfd_error_no_memory);
728       return false;
729     }
730
731   if (bfd_read ((PTR) raw_armap, 1, parsed_size, abfd) != parsed_size)
732     {
733       if (bfd_get_error () != bfd_error_system_call)
734         bfd_set_error (bfd_error_malformed_archive);
735     byebye:
736       bfd_release (abfd, (PTR) raw_armap);
737       return false;
738     }
739
740   ardata->symdef_count = bfd_h_get_32 (abfd, raw_armap) / BSD_SYMDEF_SIZE;
741
742   if (ardata->symdef_count * BSD_SYMDEF_SIZE >
743       parsed_size - BSD_SYMDEF_COUNT_SIZE)
744     {
745       /* Probably we're using the wrong byte ordering.  */
746       bfd_set_error (bfd_error_wrong_format);
747       goto byebye;
748     }
749
750   ardata->cache = 0;
751   rbase = raw_armap + BSD_SYMDEF_COUNT_SIZE;
752   stringbase = ((char *) rbase
753                 + ardata->symdef_count * BSD_SYMDEF_SIZE
754                 + BSD_STRING_COUNT_SIZE);
755   ardata->symdefs = (carsym *) bfd_alloc (abfd,
756                                           (ardata->symdef_count
757                                            * sizeof (carsym)));
758   if (!ardata->symdefs)
759     {
760       bfd_set_error (bfd_error_no_memory);
761       return false;
762     }
763
764   for (counter = 0, set = ardata->symdefs;
765        counter < ardata->symdef_count;
766        counter++, set++, rbase += BSD_SYMDEF_SIZE)
767     {
768       set->name = bfd_h_get_32 (abfd, rbase) + stringbase;
769       set->file_offset = bfd_h_get_32 (abfd, rbase + BSD_SYMDEF_OFFSET_SIZE);
770     }
771
772   ardata->first_file_filepos = bfd_tell (abfd);
773   /* Pad to an even boundary if you have to */
774   ardata->first_file_filepos += (ardata->first_file_filepos) % 2;
775   /* FIXME, we should provide some way to free raw_ardata when
776      we are done using the strings from it.  For now, it seems
777      to be allocated on an obstack anyway... */
778   bfd_has_map (abfd) = true;
779   return true;
780 }
781
782 /* Returns false on error, true otherwise */
783 static boolean
784 do_slurp_coff_armap (abfd)
785      bfd *abfd;
786 {
787   struct areltdata *mapdata;
788   int *raw_armap, *rawptr;
789   struct artdata *ardata = bfd_ardata (abfd);
790   char *stringbase;
791   unsigned int stringsize;
792   unsigned int parsed_size;
793   carsym *carsyms;
794   unsigned int nsymz;           /* Number of symbols in armap. */
795   bfd_vma (*swap) PARAMS ((const bfd_byte *));
796   char int_buf[sizeof (long)];
797   unsigned int carsym_size, ptrsize, i;
798
799   mapdata = _bfd_snarf_ar_hdr (abfd);
800   if (mapdata == NULL)
801     return false;
802   parsed_size = mapdata->parsed_size;
803   bfd_release (abfd, (PTR) mapdata);    /* Don't need it any more. */
804
805   if (bfd_read ((PTR) int_buf, 1, 4, abfd) != 4)
806     {
807       if (bfd_get_error () != bfd_error_system_call)
808         bfd_set_error (bfd_error_malformed_archive);
809       return false;
810     }
811   /* It seems that all numeric information in a coff archive is always
812      in big endian format, nomatter the host or target. */
813   swap = bfd_getb32;
814   nsymz = bfd_getb32 ((PTR) int_buf);
815   stringsize = parsed_size - (4 * nsymz) - 4;
816
817 #if 1
818   /* ... except that some archive formats are broken, and it may be our
819      fault - the i960 little endian coff sometimes has big and sometimes
820      little, because our tools changed.  Here's a horrible hack to clean
821      up the crap.  */
822
823   if (stringsize > 0xfffff)
824     {
825       /* This looks dangerous, let's do it the other way around */
826       nsymz = bfd_getl32 ((PTR) int_buf);
827       stringsize = parsed_size - (4 * nsymz) - 4;
828       swap = bfd_getl32;
829     }
830 #endif
831
832   /* The coff armap must be read sequentially.  So we construct a
833      bsd-style one in core all at once, for simplicity. */
834
835   carsym_size = (nsymz * sizeof (carsym));
836   ptrsize = (4 * nsymz);
837
838   ardata->symdefs = (carsym *) bfd_zalloc (abfd, carsym_size + stringsize + 1);
839   if (ardata->symdefs == NULL)
840     {
841       bfd_set_error (bfd_error_no_memory);
842       return false;
843     }
844   carsyms = ardata->symdefs;
845   stringbase = ((char *) ardata->symdefs) + carsym_size;
846
847   /* Allocate and read in the raw offsets. */
848   raw_armap = (int *) bfd_alloc (abfd, ptrsize);
849   if (raw_armap == NULL)
850     {
851       bfd_set_error (bfd_error_no_memory);
852       goto release_symdefs;
853     }
854   if (bfd_read ((PTR) raw_armap, 1, ptrsize, abfd) != ptrsize
855       || bfd_read ((PTR) stringbase, 1, stringsize, abfd) != stringsize)
856     {
857       if (bfd_get_error () != bfd_error_system_call)
858         bfd_set_error (bfd_error_malformed_archive);
859       goto release_raw_armap;
860     }
861
862   /* OK, build the carsyms */
863   for (i = 0; i < nsymz; i++)
864     {
865       rawptr = raw_armap + i;
866       carsyms->file_offset = swap ((PTR) rawptr);
867       carsyms->name = stringbase;
868       stringbase += strlen (stringbase) + 1;
869       carsyms++;
870     }
871   *stringbase = 0;
872
873   ardata->symdef_count = nsymz;
874   ardata->first_file_filepos = bfd_tell (abfd);
875   /* Pad to an even boundary if you have to */
876   ardata->first_file_filepos += (ardata->first_file_filepos) % 2;
877
878   bfd_has_map (abfd) = true;
879   bfd_release (abfd, (PTR) raw_armap);
880   return true;
881
882 release_raw_armap:
883   bfd_release (abfd, (PTR) raw_armap);
884 release_symdefs:
885   bfd_release (abfd, (PTR) (ardata)->symdefs);
886   return false;
887 }
888
889 /* This routine can handle either coff-style or bsd-style armaps.
890    Returns false on error, true otherwise */
891
892 boolean
893 bfd_slurp_armap (abfd)
894      bfd *abfd;
895 {
896   char nextname[17];
897   int i = bfd_read ((PTR) nextname, 1, 16, abfd);
898
899   if (i == 0)
900     return true;
901   if (i != 16)
902     return false;
903
904   if (bfd_seek (abfd, (file_ptr) - 16, SEEK_CUR) != 0)
905     return false;
906
907   if (!strncmp (nextname, "__.SYMDEF       ", 16))
908     return do_slurp_bsd_armap (abfd);
909   else if (!strncmp (nextname, "/               ", 16))
910     return do_slurp_coff_armap (abfd);
911
912   bfd_has_map (abfd) = false;
913   return true;
914 }
915 \f
916 /* Returns false on error, true otherwise */
917 /* flavor 2 of a bsd armap, similar to bfd_slurp_bsd_armap except the
918    header is in a slightly different order and the map name is '/'.
919    This flavour is used by hp300hpux. */
920
921 #define HPUX_SYMDEF_COUNT_SIZE 2
922
923 boolean
924 bfd_slurp_bsd_armap_f2 (abfd)
925      bfd *abfd;
926 {
927   struct areltdata *mapdata;
928   char nextname[17];
929   unsigned int counter;
930   bfd_byte *raw_armap, *rbase;
931   struct artdata *ardata = bfd_ardata (abfd);
932   char *stringbase;
933   unsigned int stringsize;
934   carsym *set;
935   int i = bfd_read ((PTR) nextname, 1, 16, abfd);
936
937   if (i == 0)
938     return true;
939   if (i != 16)
940     return false;
941
942   /* The archive has at least 16 bytes in it */
943   if (bfd_seek (abfd, -16L, SEEK_CUR) != 0)
944     return false;
945
946   if (!strncmp (nextname, "__.SYMDEF       ", 16))
947     return do_slurp_bsd_armap (abfd);
948
949   if (strncmp (nextname, "/               ", 16))
950     {
951       bfd_has_map (abfd) = false;
952       return true;
953     }
954
955   mapdata = _bfd_snarf_ar_hdr (abfd);
956   if (mapdata == NULL)
957     return false;
958
959   raw_armap = (bfd_byte *) bfd_zalloc (abfd, mapdata->parsed_size);
960   if (raw_armap == NULL)
961     {
962       bfd_set_error (bfd_error_no_memory);
963     byebye:
964       bfd_release (abfd, (PTR) mapdata);
965       return false;
966     }
967
968   if (bfd_read ((PTR) raw_armap, 1, mapdata->parsed_size, abfd) !=
969       mapdata->parsed_size)
970     {
971       if (bfd_get_error () != bfd_error_system_call)
972         bfd_set_error (bfd_error_malformed_archive);
973     byebyebye:
974       bfd_release (abfd, (PTR) raw_armap);
975       goto byebye;
976     }
977
978   ardata->symdef_count = bfd_h_get_16 (abfd, (PTR) raw_armap);
979
980   if (ardata->symdef_count * BSD_SYMDEF_SIZE
981       > mapdata->parsed_size - HPUX_SYMDEF_COUNT_SIZE)
982     {
983       /* Probably we're using the wrong byte ordering.  */
984       bfd_set_error (bfd_error_wrong_format);
985       goto byebyebye;
986     }
987
988   ardata->cache = 0;
989
990   stringsize = bfd_h_get_32 (abfd, raw_armap + HPUX_SYMDEF_COUNT_SIZE);
991   /* skip sym count and string sz */
992   stringbase = ((char *) raw_armap
993                 + HPUX_SYMDEF_COUNT_SIZE
994                 + BSD_STRING_COUNT_SIZE);
995   rbase = (bfd_byte *) stringbase + stringsize;
996   ardata->symdefs = (carsym *) bfd_alloc (abfd,
997                                           (ardata->symdef_count
998                                            * BSD_SYMDEF_SIZE));
999   if (!ardata->symdefs)
1000     {
1001       bfd_set_error (bfd_error_no_memory);
1002       return false;
1003     }
1004
1005   for (counter = 0, set = ardata->symdefs;
1006        counter < ardata->symdef_count;
1007        counter++, set++, rbase += BSD_SYMDEF_SIZE)
1008     {
1009       set->name = bfd_h_get_32 (abfd, rbase) + stringbase;
1010       set->file_offset = bfd_h_get_32 (abfd, rbase + BSD_SYMDEF_OFFSET_SIZE);
1011     }
1012
1013   ardata->first_file_filepos = bfd_tell (abfd);
1014   /* Pad to an even boundary if you have to */
1015   ardata->first_file_filepos += (ardata->first_file_filepos) % 2;
1016   /* FIXME, we should provide some way to free raw_ardata when
1017      we are done using the strings from it.  For now, it seems
1018      to be allocated on an obstack anyway... */
1019   bfd_has_map (abfd) = true;
1020   return true;
1021 }
1022 \f
1023 /** Extended name table.
1024
1025   Normally archives support only 14-character filenames.
1026
1027   Intel has extended the format: longer names are stored in a special
1028   element (the first in the archive, or second if there is an armap);
1029   the name in the ar_hdr is replaced by <space><index into filename
1030   element>.  Index is the P.R. of an int (decimal).  Data General have
1031   extended the format by using the prefix // for the special element */
1032
1033 /* Returns false on error, true otherwise */
1034 boolean
1035 _bfd_slurp_extended_name_table (abfd)
1036      bfd *abfd;
1037 {
1038   char nextname[17];
1039   struct areltdata *namedata;
1040
1041   /* FIXME:  Formatting sucks here, and in case of failure of BFD_READ,
1042      we probably don't want to return true.  */
1043   if (bfd_read ((PTR) nextname, 1, 16, abfd) == 16)
1044     {
1045
1046       if (bfd_seek (abfd, (file_ptr) - 16, SEEK_CUR) != 0)
1047         return false;
1048
1049       if (strncmp (nextname, "ARFILENAMES/    ", 16) != 0 &&
1050           strncmp (nextname, "//              ", 16) != 0)
1051         {
1052           bfd_ardata (abfd)->extended_names = NULL;
1053           return true;
1054         }
1055
1056       namedata = _bfd_snarf_ar_hdr (abfd);
1057       if (namedata == NULL)
1058         return false;
1059
1060       bfd_ardata (abfd)->extended_names =
1061         bfd_zalloc (abfd, namedata->parsed_size);
1062       if (bfd_ardata (abfd)->extended_names == NULL)
1063         {
1064           bfd_set_error (bfd_error_no_memory);
1065         byebye:
1066           bfd_release (abfd, (PTR) namedata);
1067           return false;
1068         }
1069
1070       if (bfd_read ((PTR) bfd_ardata (abfd)->extended_names, 1,
1071                     namedata->parsed_size, abfd) != namedata->parsed_size)
1072         {
1073           if (bfd_get_error () != bfd_error_system_call)
1074             bfd_set_error (bfd_error_malformed_archive);
1075           bfd_release (abfd, (PTR) (bfd_ardata (abfd)->extended_names));
1076           bfd_ardata (abfd)->extended_names = NULL;
1077           goto byebye;
1078         }
1079
1080       /* Since the archive is supposed to be printable if it contains
1081          text, the entries in the list are newline-padded, not null
1082          padded. In SVR4-style archives, the names also have a
1083          trailing '/'.  We'll fix both problems here..  */
1084       {
1085         char *temp = bfd_ardata (abfd)->extended_names;
1086         char *limit = temp + namedata->parsed_size;
1087         for (; temp < limit; ++temp)
1088           if (*temp == '\012')
1089             temp[temp[-1] == '/' ? -1 : 0] = '\0';
1090       }
1091
1092       /* Pad to an even boundary if you have to */
1093       bfd_ardata (abfd)->first_file_filepos = bfd_tell (abfd);
1094       bfd_ardata (abfd)->first_file_filepos +=
1095         (bfd_ardata (abfd)->first_file_filepos) % 2;
1096
1097       /* FIXME, we can't release namedata here because it was allocated
1098          below extended_names on the obstack... */
1099       /* bfd_release (abfd, namedata); */
1100     }
1101   return true;
1102 }
1103
1104 #ifdef VMS
1105
1106 /* Return a copy of the stuff in the filename between any :]> and a
1107    semicolon */
1108 static const char *
1109 normalize (file)
1110      const char *file;
1111 {
1112   CONST char *first;
1113   CONST char *last;
1114   char *copy;
1115
1116   first = file + strlen (file) - 1;
1117   last = first + 1;
1118
1119   while (first != file)
1120     {
1121       if (*first == ';')
1122         last = first;
1123       if (*first == ':' || *first == ']' || *first == '>')
1124         {
1125           first++;
1126           break;
1127         }
1128       first--;
1129     }
1130
1131
1132   copy = malloc (last - first + 1);
1133   if (!copy)
1134     return copy;
1135
1136   memcpy (copy, first, last - first);
1137   copy[last - first] = 0;
1138
1139   return copy;
1140 }
1141
1142 #else
1143 static const char *
1144 normalize (file)
1145      const char *file;
1146 {
1147   CONST char *filename = strrchr (file, '/');
1148
1149   if (filename != (char *) NULL)
1150     filename++;
1151   else
1152     filename = file;
1153   return filename;
1154 }
1155 #endif
1156
1157 /* Follows archive_head and produces an extended name table if
1158    necessary.  Returns (in tabloc) a pointer to an extended name
1159    table, and in tablen the length of the table.  If it makes an entry
1160    it clobbers the filename so that the element may be written without
1161    further massage.  Returns true if it ran successfully, false if
1162    something went wrong.  A successful return may still involve a
1163    zero-length tablen!  */
1164
1165 static boolean
1166 bfd_construct_extended_name_table (abfd, tabloc, tablen)
1167      bfd *abfd;
1168      char **tabloc;
1169      unsigned int *tablen;
1170 {
1171   unsigned int maxname = abfd->xvec->ar_max_namelen;
1172   unsigned int total_namelen = 0;
1173   bfd *current;
1174   char *strptr;
1175
1176   *tablen = 0;
1177
1178   /* Figure out how long the table should be */
1179   for (current = abfd->archive_head; current != NULL; current = current->next)
1180     {
1181       CONST char *normal = normalize (current->filename);
1182       unsigned int thislen;
1183
1184       if (!normal)
1185         {
1186           bfd_set_error (bfd_error_no_memory);
1187           return false;
1188         }
1189       thislen = strlen (normal);
1190       if (thislen > maxname)
1191         total_namelen += thislen + 1;   /* leave room for \n */
1192     }
1193
1194   if (total_namelen == 0)
1195     return true;
1196
1197   *tabloc = bfd_zalloc (abfd, total_namelen);
1198   if (*tabloc == NULL)
1199     {
1200       bfd_set_error (bfd_error_no_memory);
1201       return false;
1202     }
1203
1204   *tablen = total_namelen;
1205   strptr = *tabloc;
1206
1207   for (current = abfd->archive_head; current != NULL; current =
1208        current->next)
1209     {
1210       CONST char *normal = normalize (current->filename);
1211       unsigned int thislen;
1212
1213       if (!normal)
1214         {
1215           bfd_set_error (bfd_error_no_memory);
1216           return false;
1217         }
1218       thislen = strlen (normal);
1219       if (thislen > maxname)
1220         {
1221           /* Works for now; may need to be re-engineered if we
1222              encounter an oddball archive format and want to
1223              generalise this hack. */
1224           struct ar_hdr *hdr = arch_hdr (current);
1225           strcpy (strptr, normal);
1226           strptr[thislen] = '\012';
1227           hdr->ar_name[0] = ar_padchar (current);
1228           /* We know there will always be enough room (one of the few
1229              cases where you may safely use sprintf). */
1230           sprintf ((hdr->ar_name) + 1, "%-d", (unsigned) (strptr - *tabloc));
1231           /* Kinda Kludgy.  We should just use the returned value of
1232              sprintf but not all implementations get this right */
1233           {
1234             char *temp = hdr->ar_name + 2;
1235             for (; temp < hdr->ar_name + maxname; temp++)
1236               if (*temp == '\0')
1237                 *temp = ' ';
1238           }
1239           strptr += thislen + 1;
1240         }
1241     }
1242
1243   return true;
1244 }
1245 \f
1246 /** A couple of functions for creating ar_hdrs */
1247
1248 /* Takes a filename, returns an arelt_data for it, or NULL if it can't
1249    make one.  The filename must refer to a filename in the filesystem.
1250    The filename field of the ar_hdr will NOT be initialized */
1251
1252 static struct areltdata *
1253 bfd_ar_hdr_from_filesystem (abfd, filename)
1254      bfd *abfd;
1255      const char *filename;
1256 {
1257   struct stat status;
1258   struct areltdata *ared;
1259   struct ar_hdr *hdr;
1260   char *temp, *temp1;
1261
1262   if (stat (filename, &status) != 0)
1263     {
1264       bfd_set_error (bfd_error_system_call);
1265       return NULL;
1266     }
1267
1268   ared = (struct areltdata *) bfd_zalloc (abfd, sizeof (struct ar_hdr) +
1269                                           sizeof (struct areltdata));
1270   if (ared == NULL)
1271     {
1272       bfd_set_error (bfd_error_no_memory);
1273       return NULL;
1274     }
1275   hdr = (struct ar_hdr *) (((char *) ared) + sizeof (struct areltdata));
1276
1277   /* ar headers are space padded, not null padded! */
1278   memset ((PTR) hdr, ' ', sizeof (struct ar_hdr));
1279
1280   strncpy (hdr->ar_fmag, ARFMAG, 2);
1281
1282   /* Goddamned sprintf doesn't permit MAXIMUM field lengths */
1283   sprintf ((hdr->ar_date), "%-12ld", (long) status.st_mtime);
1284   sprintf ((hdr->ar_uid), "%ld", (long) status.st_uid);
1285   sprintf ((hdr->ar_gid), "%ld", (long) status.st_gid);
1286   sprintf ((hdr->ar_mode), "%-8o", (unsigned int) status.st_mode);
1287   sprintf ((hdr->ar_size), "%-10ld", (long) status.st_size);
1288   /* Correct for a lossage in sprintf whereby it null-terminates.  I cannot
1289      understand how these C losers could design such a ramshackle bunch of
1290      IO operations */
1291   temp = (char *) hdr;
1292   temp1 = temp + sizeof (struct ar_hdr) - 2;
1293   for (; temp < temp1; temp++)
1294     {
1295       if (*temp == '\0')
1296         *temp = ' ';
1297     }
1298   strncpy (hdr->ar_fmag, ARFMAG, 2);
1299   ared->parsed_size = status.st_size;
1300   ared->arch_header = (char *) hdr;
1301
1302   return ared;
1303 }
1304
1305 /* This is magic required by the "ar" program.  Since it's
1306     undocumented, it's undocumented.  You may think that it would take
1307     a strong stomach to write this, and it does, but it takes even a
1308     stronger stomach to try to code around such a thing!  */
1309
1310 struct ar_hdr *
1311 bfd_special_undocumented_glue (abfd, filename)
1312      bfd *abfd;
1313      char *filename;
1314 {
1315   struct areltdata *ar_elt = bfd_ar_hdr_from_filesystem (abfd, filename);
1316   if (ar_elt == NULL)
1317     return NULL;
1318   return (struct ar_hdr *) ar_elt->arch_header;
1319 }
1320
1321
1322 /* Analogous to stat call */
1323 int
1324 bfd_generic_stat_arch_elt (abfd, buf)
1325      bfd *abfd;
1326      struct stat *buf;
1327 {
1328   struct ar_hdr *hdr;
1329   char *aloser;
1330
1331   if (abfd->arelt_data == NULL)
1332     {
1333       bfd_set_error (bfd_error_invalid_operation);
1334       return -1;
1335     }
1336
1337   hdr = arch_hdr (abfd);
1338
1339 #define foo(arelt, stelt, size)  \
1340   buf->stelt = strtol (hdr->arelt, &aloser, size); \
1341   if (aloser == hdr->arelt) return -1;
1342
1343   foo (ar_date, st_mtime, 10);
1344   foo (ar_uid, st_uid, 10);
1345   foo (ar_gid, st_gid, 10);
1346   foo (ar_mode, st_mode, 8);
1347
1348   buf->st_size = arch_eltdata (abfd)->parsed_size;
1349
1350   return 0;
1351 }
1352
1353 void
1354 bfd_dont_truncate_arname (abfd, pathname, arhdr)
1355      bfd *abfd;
1356      CONST char *pathname;
1357      char *arhdr;
1358 {
1359   /* FIXME: This interacts unpleasantly with ar's quick-append option.
1360      Fortunately ic960 users will never use that option.  Fixing this
1361      is very hard; fortunately I know how to do it and will do so once
1362      intel's release is out the door. */
1363
1364   struct ar_hdr *hdr = (struct ar_hdr *) arhdr;
1365   int length;
1366   CONST char *filename = normalize (pathname);
1367   int maxlen = ar_maxnamelen (abfd);
1368
1369   length = strlen (filename);
1370
1371   if (length <= maxlen)
1372     memcpy (hdr->ar_name, filename, length);
1373
1374   if (length < maxlen)
1375     (hdr->ar_name)[length] = ar_padchar (abfd);
1376 }
1377
1378 void
1379 bfd_bsd_truncate_arname (abfd, pathname, arhdr)
1380      bfd *abfd;
1381      CONST char *pathname;
1382      char *arhdr;
1383 {
1384   struct ar_hdr *hdr = (struct ar_hdr *) arhdr;
1385   int length;
1386   CONST char *filename = strrchr (pathname, '/');
1387   int maxlen = ar_maxnamelen (abfd);
1388
1389   if (filename == NULL)
1390     filename = pathname;
1391   else
1392     ++filename;
1393
1394   length = strlen (filename);
1395
1396   if (length <= maxlen)
1397     memcpy (hdr->ar_name, filename, length);
1398   else
1399     {
1400       /* pathname: meet procrustes */
1401       memcpy (hdr->ar_name, filename, maxlen);
1402       length = maxlen;
1403     }
1404
1405   if (length < maxlen)
1406     (hdr->ar_name)[length] = ar_padchar (abfd);
1407 }
1408
1409 /* Store name into ar header.  Truncates the name to fit.
1410    1> strip pathname to be just the basename.
1411    2> if it's short enuf to fit, stuff it in.
1412    3> If it doesn't end with .o, truncate it to fit
1413    4> truncate it before the .o, append .o, stuff THAT in.  */
1414
1415 /* This is what gnu ar does.  It's better but incompatible with the
1416    bsd ar. */
1417
1418 void
1419 bfd_gnu_truncate_arname (abfd, pathname, arhdr)
1420      bfd *abfd;
1421      CONST char *pathname;
1422      char *arhdr;
1423 {
1424   struct ar_hdr *hdr = (struct ar_hdr *) arhdr;
1425   int length;
1426   CONST char *filename = strrchr (pathname, '/');
1427   int maxlen = ar_maxnamelen (abfd);
1428
1429   if (filename == NULL)
1430     filename = pathname;
1431   else
1432     ++filename;
1433
1434   length = strlen (filename);
1435
1436   if (length <= maxlen)
1437     memcpy (hdr->ar_name, filename, length);
1438   else
1439     {                           /* pathname: meet procrustes */
1440       memcpy (hdr->ar_name, filename, maxlen);
1441       if ((filename[length - 2] == '.') && (filename[length - 1] == 'o'))
1442         {
1443           hdr->ar_name[maxlen - 2] = '.';
1444           hdr->ar_name[maxlen - 1] = 'o';
1445         }
1446       length = maxlen;
1447     }
1448
1449   if (length < 16)
1450     (hdr->ar_name)[length] = ar_padchar (abfd);
1451 }
1452 \f
1453 /* The BFD is open for write and has its format set to bfd_archive */
1454
1455 boolean
1456 _bfd_write_archive_contents (arch)
1457      bfd *arch;
1458 {
1459   bfd *current;
1460   char *etable = NULL;
1461   unsigned int elength = 0;
1462   boolean makemap = bfd_has_map (arch);
1463   boolean hasobjects = false;   /* if no .o's, don't bother to make a map */
1464   bfd_size_type wrote;
1465   unsigned int i;
1466   int tries;
1467
1468   /* Verify the viability of all entries; if any of them live in the
1469      filesystem (as opposed to living in an archive open for input)
1470      then construct a fresh ar_hdr for them.  */
1471   for (current = arch->archive_head; current; current = current->next)
1472     {
1473       if (bfd_write_p (current))
1474         {
1475           bfd_set_error (bfd_error_invalid_operation);
1476           return false;
1477         }
1478       if (!current->arelt_data)
1479         {
1480           current->arelt_data =
1481             (PTR) bfd_ar_hdr_from_filesystem (arch, current->filename);
1482           if (!current->arelt_data)
1483             return false;
1484
1485           /* Put in the file name */
1486           BFD_SEND (arch, _bfd_truncate_arname, (arch,
1487                                                  current->filename,
1488                                               (char *) arch_hdr (current)));
1489         }
1490
1491       if (makemap && ! hasobjects)
1492         {                       /* don't bother if we won't make a map! */
1493           if ((bfd_check_format (current, bfd_object))
1494 #if 0                           /* FIXME -- these are not set correctly */
1495               && ((bfd_get_file_flags (current) & HAS_SYMS))
1496 #endif
1497             )
1498             hasobjects = true;
1499         }
1500     }
1501
1502   if (!bfd_construct_extended_name_table (arch, &etable, &elength))
1503     return false;
1504
1505   if (bfd_seek (arch, (file_ptr) 0, SEEK_SET) != 0)
1506     return false;
1507 #ifdef GNU960
1508   wrote = bfd_write (BFD_GNU960_ARMAG (arch), 1, SARMAG, arch);
1509 #else
1510   wrote = bfd_write (ARMAG, 1, SARMAG, arch);
1511 #endif
1512   if (wrote != SARMAG)
1513     return false;
1514
1515   if (makemap && hasobjects)
1516     {
1517       if (compute_and_write_armap (arch, elength) != true)
1518         return false;
1519     }
1520
1521   if (elength != 0)
1522     {
1523       struct ar_hdr hdr;
1524
1525       memset ((char *) (&hdr), 0, sizeof (struct ar_hdr));
1526       if (ar_padchar (arch) == '/')
1527         sprintf (&(hdr.ar_name[0]), "//");
1528       else
1529         sprintf (&(hdr.ar_name[0]), "ARFILENAMES/");
1530       sprintf (&(hdr.ar_size[0]), "%-10d", (int) elength);
1531       hdr.ar_fmag[0] = '`';
1532       hdr.ar_fmag[1] = '\012';
1533       for (i = 0; i < sizeof (struct ar_hdr); i++)
1534         if (((char *) (&hdr))[i] == '\0')
1535           (((char *) (&hdr))[i]) = ' ';
1536       if ((bfd_write ((char *) &hdr, 1, sizeof (struct ar_hdr), arch)
1537            != sizeof (struct ar_hdr))
1538           || bfd_write (etable, 1, elength, arch) != elength)
1539         return false;
1540       if ((elength % 2) == 1)
1541         {
1542           if (bfd_write ("\012", 1, 1, arch) != 1)
1543             return false;
1544         }
1545     }
1546
1547   for (current = arch->archive_head; current; current = current->next)
1548     {
1549       char buffer[DEFAULT_BUFFERSIZE];
1550       unsigned int remaining = arelt_size (current);
1551       struct ar_hdr *hdr = arch_hdr (current);
1552
1553       /* write ar header */
1554       if (bfd_write ((char *) hdr, 1, sizeof (*hdr), arch) != sizeof (*hdr))
1555         return false;
1556       if (bfd_seek (current, (file_ptr) 0, SEEK_SET) != 0)
1557         return false;
1558       while (remaining)
1559         {
1560           unsigned int amt = DEFAULT_BUFFERSIZE;
1561           if (amt > remaining)
1562             amt = remaining;
1563           errno = 0;
1564           if (bfd_read (buffer, amt, 1, current) != amt)
1565             {
1566               if (bfd_get_error () != bfd_error_system_call)
1567                 bfd_set_error (bfd_error_malformed_archive);
1568               return false;
1569             }
1570           if (bfd_write (buffer, amt, 1, arch) != amt)
1571             return false;
1572           remaining -= amt;
1573         }
1574       if ((arelt_size (current) % 2) == 1)
1575         {
1576           if (bfd_write ("\012", 1, 1, arch) != 1)
1577             return false;
1578         }
1579     }
1580
1581   /* Verify the timestamp in the archive file.  If it would not be
1582      accepted by the linker, rewrite it until it would be.  If
1583      anything odd happens, break out and just return.  (The Berkeley
1584      linker checks the timestamp and refuses to read the
1585      table-of-contents if it is >60 seconds less than the file's
1586      modified-time.  That painful hack requires this painful hack.  */
1587
1588   tries = 1;
1589   do
1590     {
1591       /* FIXME!  This kludge is to avoid adding a member to the xvec,
1592          while generating a small patch for Adobe.  FIXME!  The
1593          update_armap_timestamp function call should be in the xvec,
1594          thus:
1595
1596                 if (bfd_update_armap_timestamp (arch) == true) break;
1597                      ^
1598
1599          Instead, we check whether in a BSD archive, and call
1600          directly. */
1601
1602       if (arch->xvec->write_armap != bsd_write_armap)
1603         break;
1604       if (bsd_update_armap_timestamp (arch) == true) /* FIXME!!!  Vector it */
1605         break;
1606       if (tries > 0)
1607         fprintf (stderr,
1608                  "Warning: writing archive was slow: rewriting timestamp\n");
1609     }
1610   while (++tries < 6);
1611
1612   return true;
1613 }
1614 \f
1615 /* Note that the namidx for the first symbol is 0 */
1616
1617 static boolean
1618 compute_and_write_armap (arch, elength)
1619      bfd *arch;
1620      unsigned int elength;
1621 {
1622   char *first_name = NULL;
1623   bfd *current;
1624   file_ptr elt_no = 0;
1625   struct orl *map = NULL;
1626   int orl_max = 1024;           /* fine initial default */
1627   int orl_count = 0;
1628   int stridx = 0;               /* string index */
1629   asymbol **syms = NULL;
1630   long syms_max = 0;
1631   boolean ret;
1632
1633   /* Dunno if this is the best place for this info... */
1634   if (elength != 0)
1635     elength += sizeof (struct ar_hdr);
1636   elength += elength % 2;
1637
1638   map = (struct orl *) malloc (orl_max * sizeof (struct orl));
1639   if (map == NULL)
1640     goto no_memory_return;
1641
1642   /* We put the symbol names on the arch obstack, and then discard
1643      them when done.  */
1644   first_name = bfd_alloc (arch, 1);
1645   if (first_name == NULL)
1646     goto no_memory_return;
1647
1648   /* Drop all the files called __.SYMDEF, we're going to make our
1649      own */
1650   while (arch->archive_head &&
1651          strcmp (arch->archive_head->filename, "__.SYMDEF") == 0)
1652     arch->archive_head = arch->archive_head->next;
1653
1654   /* Map over each element */
1655   for (current = arch->archive_head;
1656        current != (bfd *) NULL;
1657        current = current->next, elt_no++)
1658     {
1659       if ((bfd_check_format (current, bfd_object) == true)
1660           && ((bfd_get_file_flags (current) & HAS_SYMS)))
1661         {
1662           long storage;
1663           long symcount;
1664           long src_count;
1665
1666           storage = bfd_get_symtab_upper_bound (current);
1667           if (storage < 0)
1668             goto error_return;
1669
1670           if (storage != 0)
1671             {
1672               if (storage > syms_max)
1673                 {
1674                   if (syms_max > 0)
1675                     free (syms);
1676                   syms_max = storage;
1677                   syms = (asymbol **) malloc ((size_t) syms_max);
1678                   if (syms == NULL)
1679                     goto no_memory_return;
1680                 }
1681               symcount = bfd_canonicalize_symtab (current, syms);
1682               if (symcount < 0)
1683                 goto error_return;
1684
1685               /* Now map over all the symbols, picking out the ones we want */
1686               for (src_count = 0; src_count < symcount; src_count++)
1687                 {
1688                   flagword flags = (syms[src_count])->flags;
1689                   asection *sec = syms[src_count]->section;
1690
1691                   if ((flags & BSF_GLOBAL ||
1692                        flags & BSF_WEAK ||
1693                        flags & BSF_INDIRECT ||
1694                        bfd_is_com_section (sec))
1695                       && (sec != &bfd_und_section))
1696                     {
1697                       size_t namelen;
1698                       struct orl *new_map;
1699
1700                       /* This symbol will go into the archive header */
1701                       if (orl_count == orl_max)
1702                         {
1703                           orl_max *= 2;
1704                           new_map = ((struct orl *)
1705                                      realloc ((PTR) map,
1706                                               orl_max * sizeof (struct orl)));
1707                           if (new_map == (struct orl *) NULL)
1708                             goto no_memory_return;
1709
1710                           map = new_map;
1711                         }
1712
1713                       namelen = strlen (syms[src_count]->name);
1714                       map[orl_count].name = ((char **)
1715                                              bfd_alloc (arch,
1716                                                         sizeof (char *)));
1717                       if (map[orl_count].name == NULL)
1718                         goto no_memory_return;
1719                       *(map[orl_count].name) = bfd_alloc (arch, namelen + 1);
1720                       if (*(map[orl_count].name) == NULL)
1721                         goto no_memory_return;
1722                       strcpy (*(map[orl_count].name), syms[src_count]->name);
1723                       (map[orl_count]).pos = (file_ptr) current;
1724                       (map[orl_count]).namidx = stridx;
1725
1726                       stridx += namelen + 1;
1727                       ++orl_count;
1728                     }
1729                 }
1730             }
1731
1732           /* Now ask the BFD to free up any cached information, so we
1733              don't fill all of memory with symbol tables.  */
1734           if (! bfd_free_cached_info (current))
1735             goto error_return;
1736         }
1737     }
1738
1739   /* OK, now we have collected all the data, let's write them out */
1740   ret = BFD_SEND (arch, write_armap,
1741                   (arch, elength, map, orl_count, stridx));
1742
1743   if (syms_max > 0)
1744     free (syms);
1745   if (map != NULL)
1746     free (map);
1747   if (first_name != NULL)
1748     bfd_release (arch, first_name);
1749
1750   return ret;
1751
1752  no_memory_return:
1753   bfd_set_error (bfd_error_no_memory);
1754
1755  error_return:
1756   if (syms_max > 0)
1757     free (syms);
1758   if (map != NULL)
1759     free (map);
1760   if (first_name != NULL)
1761     bfd_release (arch, first_name);
1762
1763   return false;
1764 }
1765
1766 boolean
1767 bsd_write_armap (arch, elength, map, orl_count, stridx)
1768      bfd *arch;
1769      unsigned int elength;
1770      struct orl *map;
1771      unsigned int orl_count;
1772      int stridx;
1773 {
1774   int padit = stridx & 1;
1775   unsigned int ranlibsize = orl_count * sizeof (struct ranlib);
1776   unsigned int stringsize = stridx + padit;
1777   /* Include 8 bytes to store ranlibsize and stringsize in output. */
1778   unsigned int mapsize = ranlibsize + stringsize + 8;
1779   file_ptr firstreal;
1780   bfd *current = arch->archive_head;
1781   bfd *last_elt = current;      /* last element arch seen */
1782   int temp;
1783   int count;
1784   struct ar_hdr hdr;
1785   struct stat statbuf;
1786   unsigned int i;
1787
1788   firstreal = mapsize + elength + sizeof (struct ar_hdr) + SARMAG;
1789
1790   stat (arch->filename, &statbuf);
1791   memset ((char *) (&hdr), 0, sizeof (struct ar_hdr));
1792   sprintf (hdr.ar_name, RANLIBMAG);
1793   /* Remember the timestamp, to keep it holy.  But fudge it a little.  */
1794   bfd_ardata (arch)->armap_timestamp = statbuf.st_mtime + ARMAP_TIME_OFFSET;
1795   bfd_ardata (arch)->armap_datepos = (SARMAG
1796                                       + offsetof (struct ar_hdr, ar_date[0]));
1797   sprintf (hdr.ar_date, "%ld", bfd_ardata (arch)->armap_timestamp);
1798   sprintf (hdr.ar_uid, "%d", getuid ());
1799   sprintf (hdr.ar_gid, "%d", getgid ());
1800   sprintf (hdr.ar_size, "%-10d", (int) mapsize);
1801   hdr.ar_fmag[0] = '`';
1802   hdr.ar_fmag[1] = '\012';
1803   for (i = 0; i < sizeof (struct ar_hdr); i++)
1804     if (((char *) (&hdr))[i] == '\0')
1805       (((char *) (&hdr))[i]) = ' ';
1806   if (bfd_write ((char *) &hdr, 1, sizeof (struct ar_hdr), arch)
1807       != sizeof (struct ar_hdr))
1808     return false;
1809   bfd_h_put_32 (arch, (bfd_vma) ranlibsize, (PTR) &temp);
1810   if (bfd_write (&temp, 1, sizeof (temp), arch) != sizeof (temp))
1811     return false;
1812
1813   for (count = 0; count < orl_count; count++)
1814     {
1815       struct symdef outs;
1816       struct symdef *outp = &outs;
1817
1818       if (((bfd *) (map[count]).pos) != last_elt)
1819         {
1820           do
1821             {
1822               firstreal += arelt_size (current) + sizeof (struct ar_hdr);
1823               firstreal += firstreal % 2;
1824               current = current->next;
1825             }
1826           while (current != (bfd *) (map[count]).pos);
1827         }                       /* if new archive element */
1828
1829       last_elt = current;
1830       bfd_h_put_32 (arch, ((map[count]).namidx), (PTR) &outs.s.string_offset);
1831       bfd_h_put_32 (arch, firstreal, (PTR) &outs.file_offset);
1832       if (bfd_write ((char *) outp, 1, sizeof (outs), arch) != sizeof (outs))
1833         return false;
1834     }
1835
1836   /* now write the strings themselves */
1837   bfd_h_put_32 (arch, stringsize, (PTR) &temp);
1838   if (bfd_write ((PTR) &temp, 1, sizeof (temp), arch) != sizeof (temp))
1839     return false;
1840   for (count = 0; count < orl_count; count++)
1841     {
1842       size_t len = strlen (*map[count].name) + 1;
1843
1844       if (bfd_write (*map[count].name, 1, len, arch) != len)
1845         return false;
1846     }
1847
1848   /* The spec sez this should be a newline.  But in order to be
1849      bug-compatible for sun's ar we use a null. */
1850   if (padit)
1851     {
1852       if (bfd_write ("", 1, 1, arch) != 1)
1853         return false;
1854     }
1855
1856   return true;
1857 }
1858
1859 /* At the end of archive file handling, update the timestamp in the
1860    file, so the linker will accept it.
1861
1862    Return true if the timestamp was OK, or an unusual problem happened.
1863    Return false if we updated the timestamp.  */
1864
1865 static boolean
1866 bsd_update_armap_timestamp (arch)
1867      bfd *arch;
1868 {
1869   struct stat archstat;
1870   struct ar_hdr hdr;
1871   int i;
1872
1873   /* Flush writes, get last-write timestamp from file, and compare it
1874      to the timestamp IN the file.  */
1875   bfd_flush (arch);
1876   if (bfd_stat (arch, &archstat) == -1)
1877     {
1878       perror ("Reading archive file mod timestamp");
1879       return true;              /* Can't read mod time for some reason */
1880     }
1881   if (archstat.st_mtime <= bfd_ardata (arch)->armap_timestamp)
1882     return true;                /* OK by the linker's rules */
1883
1884   /* Update the timestamp.  */
1885   bfd_ardata (arch)->armap_timestamp = archstat.st_mtime + ARMAP_TIME_OFFSET;
1886
1887   /* Prepare an ASCII version suitable for writing.  */
1888   memset (hdr.ar_date, 0, sizeof (hdr.ar_date));
1889   sprintf (hdr.ar_date, "%ld", bfd_ardata (arch)->armap_timestamp);
1890   for (i = 0; i < sizeof (hdr.ar_date); i++)
1891     if (hdr.ar_date[i] == '\0')
1892       (hdr.ar_date)[i] = ' ';
1893
1894   /* Write it into the file.  */
1895   if (bfd_seek (arch, bfd_ardata (arch)->armap_datepos, SEEK_SET) != 0
1896       || (bfd_write (hdr.ar_date, sizeof (hdr.ar_date), 1, arch)
1897           != sizeof (hdr.ar_date)))
1898     {
1899       /* FIXME: bfd can't call perror.  */
1900       perror ("Writing updated armap timestamp");
1901       return true;              /* Some error while writing */
1902     }
1903
1904   return false;                 /* We updated the timestamp successfully.  */
1905 }
1906 \f
1907 /* A coff armap looks like :
1908    lARMAG
1909    struct ar_hdr with name = '/'
1910    number of symbols
1911    offset of file for symbol 0
1912    offset of file for symbol 1
1913
1914    offset of file for symbol n-1
1915    symbol name 0
1916    symbol name 1
1917
1918    symbol name n-1
1919 */
1920
1921 boolean
1922 coff_write_armap (arch, elength, map, symbol_count, stridx)
1923      bfd *arch;
1924      unsigned int elength;
1925      struct orl *map;
1926      unsigned int symbol_count;
1927      int stridx;
1928 {
1929   /* The size of the ranlib is the number of exported symbols in the
1930      archive * the number of bytes in a int, + an int for the count */
1931   unsigned int ranlibsize = (symbol_count * 4) + 4;
1932   unsigned int stringsize = stridx;
1933   unsigned int mapsize = stringsize + ranlibsize;
1934   file_ptr archive_member_file_ptr;
1935   bfd *current = arch->archive_head;
1936   int count;
1937   struct ar_hdr hdr;
1938   unsigned int i;
1939   int padit = mapsize & 1;
1940
1941   if (padit)
1942     mapsize++;
1943
1944   /* work out where the first object file will go in the archive */
1945   archive_member_file_ptr = (mapsize
1946                              + elength
1947                              + sizeof (struct ar_hdr)
1948                              + SARMAG);
1949
1950   memset ((char *) (&hdr), 0, sizeof (struct ar_hdr));
1951   hdr.ar_name[0] = '/';
1952   sprintf (hdr.ar_size, "%-10d", (int) mapsize);
1953   sprintf (hdr.ar_date, "%ld", (long) time (NULL));
1954   /* This, at least, is what Intel coff sets the values to.: */
1955   sprintf ((hdr.ar_uid), "%d", 0);
1956   sprintf ((hdr.ar_gid), "%d", 0);
1957   sprintf ((hdr.ar_mode), "%-7o", (unsigned) 0);
1958   hdr.ar_fmag[0] = '`';
1959   hdr.ar_fmag[1] = '\012';
1960
1961   for (i = 0; i < sizeof (struct ar_hdr); i++)
1962     if (((char *) (&hdr))[i] == '\0')
1963       (((char *) (&hdr))[i]) = ' ';
1964
1965   /* Write the ar header for this item and the number of symbols */
1966
1967   if (bfd_write ((PTR) &hdr, 1, sizeof (struct ar_hdr), arch)
1968       != sizeof (struct ar_hdr))
1969     return false;
1970
1971   bfd_write_bigendian_4byte_int (arch, symbol_count);
1972
1973   /* Two passes, first write the file offsets for each symbol -
1974      remembering that each offset is on a two byte boundary.  */
1975
1976   /* Write out the file offset for the file associated with each
1977      symbol, and remember to keep the offsets padded out.  */
1978
1979   current = arch->archive_head;
1980   count = 0;
1981   while (current != (bfd *) NULL && count < symbol_count)
1982     {
1983       /* For each symbol which is used defined in this object, write out
1984          the object file's address in the archive */
1985
1986       while (((bfd *) (map[count]).pos) == current)
1987         {
1988           bfd_write_bigendian_4byte_int (arch, archive_member_file_ptr);
1989           count++;
1990         }
1991       /* Add size of this archive entry */
1992       archive_member_file_ptr += (arelt_size (current)
1993                                   + sizeof (struct ar_hdr));
1994       /* remember aboout the even alignment */
1995       archive_member_file_ptr += archive_member_file_ptr % 2;
1996       current = current->next;
1997     }
1998
1999   /* now write the strings themselves */
2000   for (count = 0; count < symbol_count; count++)
2001     {
2002       size_t len = strlen (*map[count].name) + 1;
2003
2004       if (bfd_write (*map[count].name, 1, len, arch) != len)
2005         return false;
2006     }
2007
2008   /* The spec sez this should be a newline.  But in order to be
2009      bug-compatible for arc960 we use a null. */
2010   if (padit)
2011     {
2012       if (bfd_write ("", 1, 1, arch) != 1)
2013         return false;
2014     }
2015
2016   return true;
2017 }
This page took 0.139537 seconds and 4 git commands to generate.