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