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