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