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