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