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