Allow for some recursion when scanning archives.
[deliverable/binutils-gdb.git] / bfd / archive.c
CommitLineData
252b5132 1/* BFD back-end for archive files (libraries).
a043396b 2 Copyright 1990-2013 Free Software Foundation, Inc.
252b5132
RH
3 Written by Cygnus Support. Mostly Gumby Henkel-Wallace's fault.
4
1b09e940 5 This file is part of BFD, the Binary File Descriptor library.
252b5132 6
1b09e940
NC
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
cd123cb7 9 the Free Software Foundation; either version 3 of the License, or
1b09e940 10 (at your option) any later version.
252b5132 11
1b09e940
NC
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
252b5132 16
1b09e940
NC
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
3e110533 19 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */
252b5132
RH
20
21/*
22@setfilename archive-info
23SECTION
24 Archives
25
26DESCRIPTION
27 An archive (or library) is just another BFD. It has a symbol
28 table, although there's not much a user program will do with it.
29
30 The big difference between an archive BFD and an ordinary BFD
31 is that the archive doesn't have sections. Instead it has a
32 chain of BFDs that are considered its contents. These BFDs can
33 be manipulated like any other. The BFDs contained in an
34 archive opened for reading will all be opened for reading. You
35 may put either input or output BFDs into an archive opened for
36 output; they will be handled correctly when the archive is closed.
37
38 Use <<bfd_openr_next_archived_file>> to step through
39 the contents of an archive opened for input. You don't
40 have to read the entire archive if you don't want
41 to! Read it until you find what you want.
42
eeb1f9ae
AM
43 A BFD returned by <<bfd_openr_next_archived_file>> can be
44 closed manually with <<bfd_close>>. If you do not close it,
45 then a second iteration through the members of an archive may
46 return the same BFD. If you close the archive BFD, then all
47 the member BFDs will automatically be closed as well.
48
252b5132 49 Archive contents of output BFDs are chained through the
eeb1f9ae
AM
50 <<archive_next>> pointer in a BFD. The first one is findable
51 through the <<archive_head>> slot of the archive. Set it with
52 <<bfd_set_archive_head>> (q.v.). A given BFD may be in only
53 one open output archive at a time.
252b5132
RH
54
55 As expected, the BFD archive code is more general than the
56 archive code of any given environment. BFD archives may
57 contain files of different formats (e.g., a.out and coff) and
58 even different architectures. You may even place archives
59 recursively into archives!
60
61 This can cause unexpected confusion, since some archive
62 formats are more expressive than others. For instance, Intel
63 COFF archives can preserve long filenames; SunOS a.out archives
64 cannot. If you move a file from the first to the second
65 format and back again, the filename may be truncated.
66 Likewise, different a.out environments have different
67 conventions as to how they truncate filenames, whether they
68 preserve directory names in filenames, etc. When
69 interoperating with native tools, be sure your files are
70 homogeneous.
71
72 Beware: most of these formats do not react well to the
73 presence of spaces in filenames. We do the best we can, but
74 can't always handle this case due to restrictions in the format of
75 archives. Many Unix utilities are braindead in regards to
76 spaces and such in filenames anyway, so this shouldn't be much
77 of a restriction.
78
79 Archives are supported in BFD in <<archive.c>>.
80
1b74d094
BW
81SUBSECTION
82 Archive functions
252b5132
RH
83*/
84
85/* Assumes:
86 o - all archive elements start on an even boundary, newline padded;
87 o - all arch headers are char *;
88 o - all arch headers are the same size (across architectures).
89*/
90
91/* Some formats provide a way to cram a long filename into the short
92 (16 chars) space provided by a BSD archive. The trick is: make a
93 special "file" in the front of the archive, sort of like the SYMDEF
94 entry. If the filename is too long to fit, put it in the extended
95 name table, and use its index as the filename. To prevent
96 confusion prepend the index with a space. This means you can't
97 have filenames that start with a space, but then again, many Unix
98 utilities can't handle that anyway.
99
100 This scheme unfortunately requires that you stand on your head in
101 order to write an archive since you need to put a magic file at the
102 front, and need to touch every entry to do so. C'est la vie.
103
104 We support two variants of this idea:
105 The SVR4 format (extended name table is named "//"),
106 and an extended pseudo-BSD variant (extended name table is named
107 "ARFILENAMES/"). The origin of the latter format is uncertain.
108
109 BSD 4.4 uses a third scheme: It writes a long filename
110 directly after the header. This allows 'ar q' to work.
252b5132
RH
111*/
112
113/* Summary of archive member names:
114
115 Symbol table (must be first):
116 "__.SYMDEF " - Symbol table, Berkeley style, produced by ranlib.
117 "/ " - Symbol table, system 5 style.
118
119 Long name table (must be before regular file members):
120 "// " - Long name table, System 5 R4 style.
121 "ARFILENAMES/ " - Long name table, non-standard extended BSD (not BSD 4.4).
122
123 Regular file members with short names:
124 "filename.o/ " - Regular file, System 5 style (embedded spaces ok).
125 "filename.o " - Regular file, Berkeley style (no embedded spaces).
126
127 Regular files with long names (or embedded spaces, for BSD variants):
128 "/18 " - SVR4 style, name at offset 18 in name table.
390c0e42 129 "#1/23 " - Long name (or embedded spaces) 23 characters long,
252b5132 130 BSD 4.4 style, full name follows header.
252b5132
RH
131 " 18 " - Long name 18 characters long, extended pseudo-BSD.
132 */
133
252b5132 134#include "sysdep.h"
3db64b00 135#include "bfd.h"
b820f1e4 136#include "libiberty.h"
252b5132
RH
137#include "libbfd.h"
138#include "aout/ar.h"
139#include "aout/ranlib.h"
3882b010 140#include "safe-ctype.h"
109f7096 141#include "hashtab.h"
a8da6403 142#include "filenames.h"
252b5132
RH
143
144#ifndef errno
145extern int errno;
146#endif
147
252b5132
RH
148/* We keep a cache of archive filepointers to archive elements to
149 speed up searching the archive by filepos. We only add an entry to
150 the cache when we actually read one. We also don't sort the cache;
151 it's generally short enough to search linearly.
152 Note that the pointers here point to the front of the ar_hdr, not
047066e1 153 to the front of the contents! */
2c3fc389
NC
154struct ar_cache
155{
252b5132 156 file_ptr ptr;
109f7096 157 bfd *arbfd;
252b5132
RH
158};
159
160#define ar_padchar(abfd) ((abfd)->xvec->ar_pad_char)
161#define ar_maxnamelen(abfd) ((abfd)->xvec->ar_max_namelen)
162
beb0d161 163#define arch_eltdata(bfd) ((struct areltdata *) ((bfd)->arelt_data))
a8da6403 164#define arch_hdr(bfd) ((struct ar_hdr *) arch_eltdata (bfd)->arch_header)
8f95b6e4
TG
165
166/* True iff NAME designated a BSD 4.4 extended name. */
167
168#define is_bsd44_extended_name(NAME) \
169 (NAME[0] == '#' && NAME[1] == '1' && NAME[2] == '/' && ISDIGIT (NAME[3]))
390c0e42
JJ
170\f
171void
172_bfd_ar_spacepad (char *p, size_t n, const char *fmt, long val)
173{
174 static char buf[20];
175 size_t len;
2c3fc389 176
390c0e42
JJ
177 snprintf (buf, sizeof (buf), fmt, val);
178 len = strlen (buf);
179 if (len < n)
180 {
181 memcpy (p, buf, len);
182 memset (p + len, ' ', n - len);
183 }
184 else
185 memcpy (p, buf, n);
186}
f1bb16f8
NC
187
188bfd_boolean
189_bfd_ar_sizepad (char *p, size_t n, bfd_size_type size)
190{
191 static char buf[21];
192 size_t len;
193
194 snprintf (buf, sizeof (buf), "%-10" BFD_VMA_FMT "u", size);
195 len = strlen (buf);
196 if (len > n)
197 {
198 bfd_set_error (bfd_error_file_too_big);
199 return FALSE;
200 }
201 if (len < n)
202 {
203 memcpy (p, buf, len);
204 memset (p + len, ' ', n - len);
205 }
206 else
207 memcpy (p, buf, n);
208 return TRUE;
209}
252b5132 210\f
b34976b6 211bfd_boolean
c58b9523 212_bfd_generic_mkarchive (bfd *abfd)
252b5132 213{
dc810e39 214 bfd_size_type amt = sizeof (struct artdata);
252b5132 215
a50b1753 216 abfd->tdata.aout_ar_data = (struct artdata *) bfd_zalloc (abfd, amt);
252b5132 217 if (bfd_ardata (abfd) == NULL)
b34976b6 218 return FALSE;
252b5132 219
9e492e05
JJ
220 /* Already cleared by bfd_zalloc above.
221 bfd_ardata (abfd)->cache = NULL;
222 bfd_ardata (abfd)->archive_head = NULL;
223 bfd_ardata (abfd)->symdefs = NULL;
224 bfd_ardata (abfd)->extended_names = NULL;
225 bfd_ardata (abfd)->extended_names_size = 0;
226 bfd_ardata (abfd)->tdata = NULL; */
252b5132 227
b34976b6 228 return TRUE;
252b5132
RH
229}
230
231/*
232FUNCTION
233 bfd_get_next_mapent
234
235SYNOPSIS
c58b9523
AM
236 symindex bfd_get_next_mapent
237 (bfd *abfd, symindex previous, carsym **sym);
252b5132
RH
238
239DESCRIPTION
240 Step through archive @var{abfd}'s symbol table (if it
241 has one). Successively update @var{sym} with the next symbol's
242 information, returning that symbol's (internal) index into the
243 symbol table.
244
245 Supply <<BFD_NO_MORE_SYMBOLS>> as the @var{previous} entry to get
246 the first one; returns <<BFD_NO_MORE_SYMBOLS>> when you've already
247 got the last one.
248
249 A <<carsym>> is a canonical archive symbol. The only
250 user-visible element is its name, a null-terminated string.
251*/
252
253symindex
c58b9523 254bfd_get_next_mapent (bfd *abfd, symindex prev, carsym **entry)
252b5132
RH
255{
256 if (!bfd_has_map (abfd))
257 {
258 bfd_set_error (bfd_error_invalid_operation);
259 return BFD_NO_MORE_SYMBOLS;
260 }
261
262 if (prev == BFD_NO_MORE_SYMBOLS)
263 prev = 0;
264 else
265 ++prev;
266 if (prev >= bfd_ardata (abfd)->symdef_count)
267 return BFD_NO_MORE_SYMBOLS;
268
269 *entry = (bfd_ardata (abfd)->symdefs + prev);
270 return prev;
271}
272
06fc8a8c 273/* To be called by backends only. */
252b5132
RH
274
275bfd *
c58b9523 276_bfd_create_empty_archive_element_shell (bfd *obfd)
252b5132
RH
277{
278 return _bfd_new_bfd_contained_in (obfd);
279}
280
281/*
282FUNCTION
283 bfd_set_archive_head
284
285SYNOPSIS
c58b9523 286 bfd_boolean bfd_set_archive_head (bfd *output, bfd *new_head);
252b5132
RH
287
288DESCRIPTION
289 Set the head of the chain of
290 BFDs contained in the archive @var{output} to @var{new_head}.
291*/
292
b34976b6 293bfd_boolean
c58b9523 294bfd_set_archive_head (bfd *output_archive, bfd *new_head)
252b5132 295{
252b5132 296 output_archive->archive_head = new_head;
b34976b6 297 return TRUE;
252b5132
RH
298}
299
300bfd *
c58b9523 301_bfd_look_for_bfd_in_cache (bfd *arch_bfd, file_ptr filepos)
252b5132 302{
a2633f4e 303 htab_t hash_table = bfd_ardata (arch_bfd)->cache;
109f7096 304 struct ar_cache m;
2c3fc389 305
109f7096 306 m.ptr = filepos;
252b5132 307
109f7096
BE
308 if (hash_table)
309 {
310 struct ar_cache *entry = (struct ar_cache *) htab_find (hash_table, &m);
311 if (!entry)
312 return NULL;
313 else
314 return entry->arbfd;
315 }
316 else
317 return NULL;
318}
319
320static hashval_t
2c3fc389 321hash_file_ptr (const void * p)
109f7096
BE
322{
323 return (hashval_t) (((struct ar_cache *) p)->ptr);
324}
252b5132 325
109f7096
BE
326/* Returns non-zero if P1 and P2 are equal. */
327
328static int
2c3fc389 329eq_file_ptr (const void * p1, const void * p2)
109f7096
BE
330{
331 struct ar_cache *arc1 = (struct ar_cache *) p1;
332 struct ar_cache *arc2 = (struct ar_cache *) p2;
333 return arc1->ptr == arc2->ptr;
252b5132
RH
334}
335
9fcd9da6
NC
336/* The calloc function doesn't always take size_t (e.g. on VMS)
337 so wrap it to avoid a compile time warning. */
338
339static void *
340_bfd_calloc_wrapper (size_t a, size_t b)
341{
342 return calloc (a, b);
343}
344
06fc8a8c
NC
345/* Kind of stupid to call cons for each one, but we don't do too many. */
346
b34976b6 347bfd_boolean
c58b9523 348_bfd_add_bfd_to_archive_cache (bfd *arch_bfd, file_ptr filepos, bfd *new_elt)
252b5132 349{
109f7096
BE
350 struct ar_cache *cache;
351 htab_t hash_table = bfd_ardata (arch_bfd)->cache;
252b5132 352
109f7096
BE
353 /* If the hash table hasn't been created, create it. */
354 if (hash_table == NULL)
252b5132 355 {
109f7096 356 hash_table = htab_create_alloc (16, hash_file_ptr, eq_file_ptr,
9fcd9da6 357 NULL, _bfd_calloc_wrapper, free);
109f7096
BE
358 if (hash_table == NULL)
359 return FALSE;
360 bfd_ardata (arch_bfd)->cache = hash_table;
252b5132
RH
361 }
362
109f7096 363 /* Insert new_elt into the hash table by filepos. */
a50b1753 364 cache = (struct ar_cache *) bfd_zalloc (arch_bfd, sizeof (struct ar_cache));
109f7096
BE
365 cache->ptr = filepos;
366 cache->arbfd = new_elt;
367 *htab_find_slot (hash_table, (const void *) cache, INSERT) = cache;
368
eeb1f9ae
AM
369 /* Provide a means of accessing this from child. */
370 arch_eltdata (new_elt)->parent_cache = hash_table;
371 arch_eltdata (new_elt)->key = filepos;
372
b34976b6 373 return TRUE;
252b5132
RH
374}
375\f
a8da6403
NC
376static bfd *
377_bfd_find_nested_archive (bfd *arch_bfd, const char *filename)
378{
379 bfd *abfd;
98c53ba3 380 const char *target;
a8da6403
NC
381
382 for (abfd = arch_bfd->nested_archives;
383 abfd != NULL;
384 abfd = abfd->archive_next)
385 {
007d6189 386 if (filename_cmp (filename, abfd->filename) == 0)
3a11e31e 387 return abfd;
a8da6403 388 }
98c53ba3
AM
389 target = NULL;
390 if (!arch_bfd->target_defaulted)
391 target = arch_bfd->xvec->name;
392 abfd = bfd_openr (filename, target);
a8da6403
NC
393 if (abfd)
394 {
395 abfd->archive_next = arch_bfd->nested_archives;
396 arch_bfd->nested_archives = abfd;
397 }
398 return abfd;
399}
400
252b5132 401/* The name begins with space. Hence the rest of the name is an index into
d70910e8 402 the string table. */
252b5132
RH
403
404static char *
a8da6403 405get_extended_arelt_filename (bfd *arch, const char *name, file_ptr *originp)
252b5132 406{
91d6fa6a 407 unsigned long table_index = 0;
a8da6403 408 const char *endp;
252b5132
RH
409
410 /* Should extract string so that I can guarantee not to overflow into
d70910e8 411 the next region, but I'm too lazy. */
252b5132 412 errno = 0;
d70910e8 413 /* Skip first char, which is '/' in SVR4 or ' ' in some other variants. */
91d6fa6a
NC
414 table_index = strtol (name + 1, (char **) &endp, 10);
415 if (errno != 0 || table_index >= bfd_ardata (arch)->extended_names_size)
252b5132
RH
416 {
417 bfd_set_error (bfd_error_malformed_archive);
418 return NULL;
419 }
a8da6403
NC
420 /* In a thin archive, a member of an archive-within-an-archive
421 will have the offset in the inner archive encoded here. */
422 if (bfd_is_thin_archive (arch) && endp != NULL && *endp == ':')
423 {
424 file_ptr origin = strtol (endp + 1, NULL, 10);
425
4ad4f3cb 426 if (errno != 0)
3a11e31e
RM
427 {
428 bfd_set_error (bfd_error_malformed_archive);
429 return NULL;
430 }
a8da6403
NC
431 *originp = origin;
432 }
433 else
434 *originp = 0;
252b5132 435
91d6fa6a 436 return bfd_ardata (arch)->extended_names + table_index;
252b5132
RH
437}
438
439/* This functions reads an arch header and returns an areltdata pointer, or
440 NULL on error.
441
442 Presumes the file pointer is already in the right place (ie pointing
443 to the ar_hdr in the file). Moves the file pointer; on success it
444 should be pointing to the front of the file contents; on failure it
06fc8a8c 445 could have been moved arbitrarily. */
252b5132 446
c58b9523
AM
447void *
448_bfd_generic_read_ar_hdr (bfd *abfd)
252b5132 449{
c58b9523 450 return _bfd_generic_read_ar_hdr_mag (abfd, NULL);
252b5132
RH
451}
452
453/* Alpha ECOFF uses an optional different ARFMAG value, so we have a
454 variant of _bfd_generic_read_ar_hdr which accepts a magic string. */
455
c58b9523
AM
456void *
457_bfd_generic_read_ar_hdr_mag (bfd *abfd, const char *mag)
252b5132
RH
458{
459 struct ar_hdr hdr;
460 char *hdrp = (char *) &hdr;
f1bb16f8 461 bfd_size_type parsed_size;
252b5132
RH
462 struct areltdata *ared;
463 char *filename = NULL;
dc810e39
AM
464 bfd_size_type namelen = 0;
465 bfd_size_type allocsize = sizeof (struct areltdata) + sizeof (struct ar_hdr);
252b5132 466 char *allocptr = 0;
a8da6403 467 file_ptr origin = 0;
8f95b6e4 468 unsigned int extra_size = 0;
3a11e31e
RM
469 char fmag_save;
470 int scan;
252b5132 471
c58b9523 472 if (bfd_bread (hdrp, sizeof (struct ar_hdr), abfd) != sizeof (struct ar_hdr))
252b5132
RH
473 {
474 if (bfd_get_error () != bfd_error_system_call)
475 bfd_set_error (bfd_error_no_more_archived_files);
476 return NULL;
477 }
478 if (strncmp (hdr.ar_fmag, ARFMAG, 2) != 0
479 && (mag == NULL
480 || strncmp (hdr.ar_fmag, mag, 2) != 0))
481 {
482 bfd_set_error (bfd_error_malformed_archive);
483 return NULL;
484 }
485
486 errno = 0;
3a11e31e 487 fmag_save = hdr.ar_fmag[0];
df35687a 488 hdr.ar_fmag[0] = 0;
3a11e31e
RM
489 scan = sscanf (hdr.ar_size, "%" BFD_VMA_FMT "u", &parsed_size);
490 hdr.ar_fmag[0] = fmag_save;
491 if (scan != 1)
252b5132
RH
492 {
493 bfd_set_error (bfd_error_malformed_archive);
494 return NULL;
495 }
496
497 /* Extract the filename from the archive - there are two ways to
498 specify an extended name table, either the first char of the
499 name is a space, or it's a slash. */
500 if ((hdr.ar_name[0] == '/'
501 || (hdr.ar_name[0] == ' '
502 && memchr (hdr.ar_name, '/', ar_maxnamelen (abfd)) == NULL))
503 && bfd_ardata (abfd)->extended_names != NULL)
504 {
a8da6403 505 filename = get_extended_arelt_filename (abfd, hdr.ar_name, &origin);
252b5132 506 if (filename == NULL)
9e492e05 507 return NULL;
252b5132 508 }
8f95b6e4
TG
509 /* BSD4.4-style long filename. */
510 else if (is_bsd44_extended_name (hdr.ar_name))
252b5132
RH
511 {
512 /* BSD-4.4 extended name */
513 namelen = atoi (&hdr.ar_name[3]);
514 allocsize += namelen + 1;
515 parsed_size -= namelen;
8f95b6e4 516 extra_size = namelen;
252b5132 517
06e7acd7 518 allocptr = (char *) bfd_zmalloc (allocsize);
252b5132
RH
519 if (allocptr == NULL)
520 return NULL;
521 filename = (allocptr
522 + sizeof (struct areltdata)
523 + sizeof (struct ar_hdr));
dc810e39 524 if (bfd_bread (filename, namelen, abfd) != namelen)
252b5132 525 {
06e7acd7 526 free (allocptr);
252b5132
RH
527 if (bfd_get_error () != bfd_error_system_call)
528 bfd_set_error (bfd_error_no_more_archived_files);
529 return NULL;
530 }
531 filename[namelen] = '\0';
532 }
533 else
534 {
535 /* We judge the end of the name by looking for '/' or ' '.
536 Note: The SYSV format (terminated by '/') allows embedded
d70910e8 537 spaces, so only look for ' ' if we don't find '/'. */
252b5132
RH
538
539 char *e;
a50b1753 540 e = (char *) memchr (hdr.ar_name, '\0', ar_maxnamelen (abfd));
252b5132
RH
541 if (e == NULL)
542 {
a50b1753 543 e = (char *) memchr (hdr.ar_name, '/', ar_maxnamelen (abfd));
252b5132 544 if (e == NULL)
a50b1753 545 e = (char *) memchr (hdr.ar_name, ' ', ar_maxnamelen (abfd));
252b5132
RH
546 }
547
548 if (e != NULL)
549 namelen = e - hdr.ar_name;
550 else
551 {
552 /* If we didn't find a termination character, then the name
553 must be the entire field. */
554 namelen = ar_maxnamelen (abfd);
555 }
556
557 allocsize += namelen + 1;
558 }
559
560 if (!allocptr)
561 {
06e7acd7 562 allocptr = (char *) bfd_zmalloc (allocsize);
252b5132
RH
563 if (allocptr == NULL)
564 return NULL;
565 }
566
567 ared = (struct areltdata *) allocptr;
568
569 ared->arch_header = allocptr + sizeof (struct areltdata);
c58b9523 570 memcpy (ared->arch_header, &hdr, sizeof (struct ar_hdr));
252b5132 571 ared->parsed_size = parsed_size;
8f95b6e4 572 ared->extra_size = extra_size;
a8da6403 573 ared->origin = origin;
252b5132
RH
574
575 if (filename != NULL)
576 ared->filename = filename;
577 else
578 {
579 ared->filename = allocptr + (sizeof (struct areltdata) +
580 sizeof (struct ar_hdr));
581 if (namelen)
c58b9523 582 memcpy (ared->filename, hdr.ar_name, namelen);
252b5132
RH
583 ared->filename[namelen] = '\0';
584 }
585
c58b9523 586 return ared;
252b5132
RH
587}
588\f
a8da6403
NC
589/* Append the relative pathname for a member of the thin archive
590 to the pathname of the directory containing the archive. */
591
4b544b64
TG
592char *
593_bfd_append_relative_path (bfd *arch, char *elt_name)
a8da6403
NC
594{
595 const char *arch_name = arch->filename;
596 const char *base_name = lbasename (arch_name);
597 size_t prefix_len;
598 char *filename;
599
600 if (base_name == arch_name)
601 return elt_name;
602
603 prefix_len = base_name - arch_name;
a50b1753 604 filename = (char *) bfd_alloc (arch, prefix_len + strlen (elt_name) + 1);
a8da6403
NC
605 if (filename == NULL)
606 return NULL;
607
608 strncpy (filename, arch_name, prefix_len);
609 strcpy (filename + prefix_len, elt_name);
610 return filename;
611}
612
252b5132
RH
613/* This is an internal function; it's mainly used when indexing
614 through the archive symbol table, but also used to get the next
615 element, since it handles the bookkeeping so nicely for us. */
616
617bfd *
c58b9523 618_bfd_get_elt_at_filepos (bfd *archive, file_ptr filepos)
252b5132 619{
a043396b 620 static file_ptr prev_filepos;
088f7bb9 621 static unsigned int dup_filepos_count = 0;
252b5132
RH
622 struct areltdata *new_areldata;
623 bfd *n_nfd;
a8da6403 624 char *filename;
252b5132
RH
625
626 n_nfd = _bfd_look_for_bfd_in_cache (archive, filepos);
627 if (n_nfd)
628 return n_nfd;
088f7bb9 629 /* PR15140: Prevent an infinite recursion scanning a malformed nested archive. */
a043396b
NC
630 if (filepos == prev_filepos)
631 {
088f7bb9
NC
632 if (++ dup_filepos_count > 100)
633 {
634 bfd_set_error (bfd_error_malformed_archive);
635 return NULL;
636 }
a043396b 637 }
088f7bb9
NC
638 else
639 dup_filepos_count = 0;
252b5132
RH
640
641 if (0 > bfd_seek (archive, filepos, SEEK_SET))
642 return NULL;
643
a50b1753 644 if ((new_areldata = (struct areltdata *) _bfd_read_ar_hdr (archive)) == NULL)
252b5132
RH
645 return NULL;
646
a8da6403 647 filename = new_areldata->filename;
a043396b 648 prev_filepos = filepos;
a8da6403
NC
649
650 if (bfd_is_thin_archive (archive))
651 {
98c53ba3
AM
652 const char *target;
653
a8da6403
NC
654 /* This is a proxy entry for an external file. */
655 if (! IS_ABSOLUTE_PATH (filename))
3a11e31e
RM
656 {
657 filename = _bfd_append_relative_path (archive, filename);
658 if (filename == NULL)
06e7acd7
TT
659 {
660 free (new_areldata);
661 return NULL;
662 }
3a11e31e 663 }
a8da6403
NC
664
665 if (new_areldata->origin > 0)
3a11e31e
RM
666 {
667 /* This proxy entry refers to an element of a nested archive.
668 Locate the member of that archive and return a bfd for it. */
669 bfd *ext_arch = _bfd_find_nested_archive (archive, filename);
670
671 if (ext_arch == NULL
672 || ! bfd_check_format (ext_arch, bfd_archive))
673 {
06e7acd7 674 free (new_areldata);
3a11e31e
RM
675 return NULL;
676 }
677 n_nfd = _bfd_get_elt_at_filepos (ext_arch, new_areldata->origin);
678 if (n_nfd == NULL)
679 {
06e7acd7 680 free (new_areldata);
3a11e31e
RM
681 return NULL;
682 }
683 n_nfd->proxy_origin = bfd_tell (archive);
684 return n_nfd;
685 }
a8da6403 686 /* It's not an element of a nested archive;
3a11e31e 687 open the external file as a bfd. */
98c53ba3
AM
688 target = NULL;
689 if (!archive->target_defaulted)
690 target = archive->xvec->name;
691 n_nfd = bfd_openr (filename, target);
c4948609
NC
692 if (n_nfd == NULL)
693 bfd_set_error (bfd_error_malformed_archive);
a8da6403
NC
694 }
695 else
696 {
697 n_nfd = _bfd_create_empty_archive_element_shell (archive);
698 }
699
252b5132
RH
700 if (n_nfd == NULL)
701 {
06e7acd7 702 free (new_areldata);
252b5132
RH
703 return NULL;
704 }
705
a8da6403
NC
706 n_nfd->proxy_origin = bfd_tell (archive);
707
708 if (bfd_is_thin_archive (archive))
709 {
710 n_nfd->origin = 0;
711 }
712 else
713 {
714 n_nfd->origin = n_nfd->proxy_origin;
715 n_nfd->filename = filename;
716 }
717
c58b9523 718 n_nfd->arelt_data = new_areldata;
252b5132 719
e326bf5f
L
720 /* Copy BFD_COMPRESS and BFD_DECOMPRESS flags. */
721 n_nfd->flags |= archive->flags & (BFD_COMPRESS | BFD_DECOMPRESS);
722
252b5132
RH
723 if (_bfd_add_bfd_to_archive_cache (archive, filepos, n_nfd))
724 return n_nfd;
725
06e7acd7
TT
726 free (new_areldata);
727 n_nfd->arelt_data = NULL;
252b5132
RH
728 return NULL;
729}
730
731/* Return the BFD which is referenced by the symbol in ABFD indexed by
91d6fa6a 732 SYM_INDEX. SYM_INDEX should have been returned by bfd_get_next_mapent. */
252b5132
RH
733
734bfd *
91d6fa6a 735_bfd_generic_get_elt_at_index (bfd *abfd, symindex sym_index)
252b5132
RH
736{
737 carsym *entry;
738
91d6fa6a 739 entry = bfd_ardata (abfd)->symdefs + sym_index;
252b5132
RH
740 return _bfd_get_elt_at_filepos (abfd, entry->file_offset);
741}
742
743/*
744FUNCTION
745 bfd_openr_next_archived_file
746
747SYNOPSIS
c58b9523 748 bfd *bfd_openr_next_archived_file (bfd *archive, bfd *previous);
252b5132
RH
749
750DESCRIPTION
751 Provided a BFD, @var{archive}, containing an archive and NULL, open
752 an input BFD on the first contained element and returns that.
753 Subsequent calls should pass
754 the archive and the previous return value to return a created
755 BFD to the next contained element. NULL is returned when there
756 are no more.
252b5132
RH
757*/
758
759bfd *
c58b9523 760bfd_openr_next_archived_file (bfd *archive, bfd *last_file)
252b5132 761{
a8da6403
NC
762 if ((bfd_get_format (archive) != bfd_archive)
763 || (archive->direction == write_direction))
252b5132
RH
764 {
765 bfd_set_error (bfd_error_invalid_operation);
766 return NULL;
767 }
768
e326bf5f 769 return BFD_SEND (archive,
c58b9523 770 openr_next_archived_file, (archive, last_file));
252b5132
RH
771}
772
773bfd *
c58b9523 774bfd_generic_openr_next_archived_file (bfd *archive, bfd *last_file)
252b5132
RH
775{
776 file_ptr filestart;
777
778 if (!last_file)
779 filestart = bfd_ardata (archive)->first_file_filepos;
780 else
781 {
f1bb16f8 782 bfd_size_type size = arelt_size (last_file);
c4948609 783
a8da6403
NC
784 filestart = last_file->proxy_origin;
785 if (! bfd_is_thin_archive (archive))
3a11e31e 786 filestart += size;
252b5132
RH
787 /* Pad to an even boundary...
788 Note that last_file->origin can be odd in the case of
d70910e8 789 BSD-4.4-style element with a long odd size. */
252b5132
RH
790 filestart += filestart % 2;
791 }
792
793 return _bfd_get_elt_at_filepos (archive, filestart);
794}
795
252b5132 796const bfd_target *
c58b9523 797bfd_generic_archive_p (bfd *abfd)
252b5132
RH
798{
799 struct artdata *tdata_hold;
800 char armag[SARMAG + 1];
dc810e39 801 bfd_size_type amt;
252b5132 802
c58b9523 803 if (bfd_bread (armag, SARMAG, abfd) != SARMAG)
252b5132
RH
804 {
805 if (bfd_get_error () != bfd_error_system_call)
806 bfd_set_error (bfd_error_wrong_format);
807 return NULL;
808 }
809
a8da6403
NC
810 bfd_is_thin_archive (abfd) = (strncmp (armag, ARMAGT, SARMAG) == 0);
811
812 if (strncmp (armag, ARMAG, SARMAG) != 0
813 && strncmp (armag, ARMAGB, SARMAG) != 0
814 && ! bfd_is_thin_archive (abfd))
c4948609 815 return NULL;
252b5132 816
487e54f2 817 tdata_hold = bfd_ardata (abfd);
252b5132 818
487e54f2 819 amt = sizeof (struct artdata);
a50b1753 820 bfd_ardata (abfd) = (struct artdata *) bfd_zalloc (abfd, amt);
252b5132 821 if (bfd_ardata (abfd) == NULL)
487e54f2
AM
822 {
823 bfd_ardata (abfd) = tdata_hold;
824 return NULL;
825 }
252b5132
RH
826
827 bfd_ardata (abfd)->first_file_filepos = SARMAG;
9e492e05
JJ
828 /* Cleared by bfd_zalloc above.
829 bfd_ardata (abfd)->cache = NULL;
830 bfd_ardata (abfd)->archive_head = NULL;
831 bfd_ardata (abfd)->symdefs = NULL;
832 bfd_ardata (abfd)->extended_names = NULL;
833 bfd_ardata (abfd)->extended_names_size = 0;
834 bfd_ardata (abfd)->tdata = NULL; */
252b5132 835
487e54f2
AM
836 if (!BFD_SEND (abfd, _bfd_slurp_armap, (abfd))
837 || !BFD_SEND (abfd, _bfd_slurp_extended_name_table, (abfd)))
252b5132 838 {
252b5132
RH
839 if (bfd_get_error () != bfd_error_system_call)
840 bfd_set_error (bfd_error_wrong_format);
252b5132 841 bfd_release (abfd, bfd_ardata (abfd));
487e54f2 842 bfd_ardata (abfd) = tdata_hold;
252b5132
RH
843 return NULL;
844 }
845
b228303d 846 if (abfd->target_defaulted && bfd_has_map (abfd))
252b5132
RH
847 {
848 bfd *first;
849
850 /* This archive has a map, so we may presume that the contents
851 are object files. Make sure that if the first file in the
852 archive can be recognized as an object file, it is for this
853 target. If not, assume that this is the wrong format. If
854 the first file is not an object file, somebody is doing
855 something weird, and we permit it so that ar -t will work.
856
857 This is done because any normal format will recognize any
858 normal archive, regardless of the format of the object files.
859 We do accept an empty archive. */
860
c58b9523 861 first = bfd_openr_next_archived_file (abfd, NULL);
252b5132
RH
862 if (first != NULL)
863 {
b34976b6 864 first->target_defaulted = FALSE;
252b5132
RH
865 if (bfd_check_format (first, bfd_object)
866 && first->xvec != abfd->xvec)
89d7b8aa 867 bfd_set_error (bfd_error_wrong_object_format);
3619ad04 868 /* And we ought to close `first' here too. */
252b5132
RH
869 }
870 }
871
872 return abfd->xvec;
873}
874
875/* Some constants for a 32 bit BSD archive structure. We do not
876 support 64 bit archives presently; so far as I know, none actually
877 exist. Supporting them would require changing these constants, and
dc810e39 878 changing some H_GET_32 to H_GET_64. */
252b5132
RH
879
880/* The size of an external symdef structure. */
881#define BSD_SYMDEF_SIZE 8
882
883/* The offset from the start of a symdef structure to the file offset. */
884#define BSD_SYMDEF_OFFSET_SIZE 4
885
886/* The size of the symdef count. */
887#define BSD_SYMDEF_COUNT_SIZE 4
888
889/* The size of the string count. */
890#define BSD_STRING_COUNT_SIZE 4
891
36e44abd
AN
892/* Read a BSD-style archive symbol table. Returns FALSE on error,
893 TRUE otherwise. */
252b5132 894
b34976b6 895static bfd_boolean
c58b9523 896do_slurp_bsd_armap (bfd *abfd)
252b5132
RH
897{
898 struct areltdata *mapdata;
899 unsigned int counter;
900 bfd_byte *raw_armap, *rbase;
901 struct artdata *ardata = bfd_ardata (abfd);
902 char *stringbase;
dc810e39 903 bfd_size_type parsed_size, amt;
252b5132
RH
904 carsym *set;
905
a50b1753 906 mapdata = (struct areltdata *) _bfd_read_ar_hdr (abfd);
252b5132 907 if (mapdata == NULL)
b34976b6 908 return FALSE;
252b5132 909 parsed_size = mapdata->parsed_size;
06e7acd7 910 free (mapdata);
252b5132 911
a50b1753 912 raw_armap = (bfd_byte *) bfd_zalloc (abfd, parsed_size);
c58b9523 913 if (raw_armap == NULL)
b34976b6 914 return FALSE;
252b5132 915
c58b9523 916 if (bfd_bread (raw_armap, parsed_size, abfd) != parsed_size)
252b5132
RH
917 {
918 if (bfd_get_error () != bfd_error_system_call)
919 bfd_set_error (bfd_error_malformed_archive);
920 byebye:
c58b9523 921 bfd_release (abfd, raw_armap);
b34976b6 922 return FALSE;
252b5132
RH
923 }
924
dc810e39 925 ardata->symdef_count = H_GET_32 (abfd, raw_armap) / BSD_SYMDEF_SIZE;
252b5132
RH
926
927 if (ardata->symdef_count * BSD_SYMDEF_SIZE >
928 parsed_size - BSD_SYMDEF_COUNT_SIZE)
929 {
930 /* Probably we're using the wrong byte ordering. */
931 bfd_set_error (bfd_error_wrong_format);
932 goto byebye;
933 }
934
935 ardata->cache = 0;
936 rbase = raw_armap + BSD_SYMDEF_COUNT_SIZE;
937 stringbase = ((char *) rbase
938 + ardata->symdef_count * BSD_SYMDEF_SIZE
939 + BSD_STRING_COUNT_SIZE);
c58b9523 940 amt = ardata->symdef_count * sizeof (carsym);
a50b1753 941 ardata->symdefs = (struct carsym *) bfd_alloc (abfd, amt);
252b5132 942 if (!ardata->symdefs)
b34976b6 943 return FALSE;
252b5132
RH
944
945 for (counter = 0, set = ardata->symdefs;
946 counter < ardata->symdef_count;
947 counter++, set++, rbase += BSD_SYMDEF_SIZE)
948 {
dc810e39
AM
949 set->name = H_GET_32 (abfd, rbase) + stringbase;
950 set->file_offset = H_GET_32 (abfd, rbase + BSD_SYMDEF_OFFSET_SIZE);
252b5132
RH
951 }
952
953 ardata->first_file_filepos = bfd_tell (abfd);
047066e1 954 /* Pad to an even boundary if you have to. */
252b5132
RH
955 ardata->first_file_filepos += (ardata->first_file_filepos) % 2;
956 /* FIXME, we should provide some way to free raw_ardata when
957 we are done using the strings from it. For now, it seems
d70910e8 958 to be allocated on an objalloc anyway... */
b34976b6
AM
959 bfd_has_map (abfd) = TRUE;
960 return TRUE;
252b5132
RH
961}
962
36e44abd
AN
963/* Read a COFF archive symbol table. Returns FALSE on error, TRUE
964 otherwise. */
047066e1 965
b34976b6 966static bfd_boolean
c58b9523 967do_slurp_coff_armap (bfd *abfd)
252b5132
RH
968{
969 struct areltdata *mapdata;
970 int *raw_armap, *rawptr;
971 struct artdata *ardata = bfd_ardata (abfd);
972 char *stringbase;
dc810e39 973 bfd_size_type stringsize;
f1bb16f8 974 bfd_size_type parsed_size;
252b5132 975 carsym *carsyms;
dc810e39 976 bfd_size_type nsymz; /* Number of symbols in armap. */
edeb6e24 977 bfd_vma (*swap) (const void *);
252b5132 978 char int_buf[sizeof (long)];
dc810e39
AM
979 bfd_size_type carsym_size, ptrsize;
980 unsigned int i;
252b5132 981
a50b1753 982 mapdata = (struct areltdata *) _bfd_read_ar_hdr (abfd);
252b5132 983 if (mapdata == NULL)
b34976b6 984 return FALSE;
252b5132 985 parsed_size = mapdata->parsed_size;
06e7acd7 986 free (mapdata);
252b5132 987
c58b9523 988 if (bfd_bread (int_buf, 4, abfd) != 4)
252b5132
RH
989 {
990 if (bfd_get_error () != bfd_error_system_call)
991 bfd_set_error (bfd_error_malformed_archive);
b34976b6 992 return FALSE;
252b5132
RH
993 }
994 /* It seems that all numeric information in a coff archive is always
d70910e8 995 in big endian format, nomatter the host or target. */
252b5132 996 swap = bfd_getb32;
c58b9523 997 nsymz = bfd_getb32 (int_buf);
252b5132
RH
998 stringsize = parsed_size - (4 * nsymz) - 4;
999
252b5132
RH
1000 /* ... except that some archive formats are broken, and it may be our
1001 fault - the i960 little endian coff sometimes has big and sometimes
1002 little, because our tools changed. Here's a horrible hack to clean
1003 up the crap. */
1004
1005 if (stringsize > 0xfffff
1006 && bfd_get_arch (abfd) == bfd_arch_i960
1007 && bfd_get_flavour (abfd) == bfd_target_coff_flavour)
1008 {
047066e1 1009 /* This looks dangerous, let's do it the other way around. */
c58b9523 1010 nsymz = bfd_getl32 (int_buf);
252b5132
RH
1011 stringsize = parsed_size - (4 * nsymz) - 4;
1012 swap = bfd_getl32;
1013 }
252b5132
RH
1014
1015 /* The coff armap must be read sequentially. So we construct a
d70910e8 1016 bsd-style one in core all at once, for simplicity. */
252b5132 1017
933d961a
JJ
1018 if (nsymz > ~ (bfd_size_type) 0 / sizeof (carsym))
1019 return FALSE;
1020
252b5132
RH
1021 carsym_size = (nsymz * sizeof (carsym));
1022 ptrsize = (4 * nsymz);
1023
933d961a
JJ
1024 if (carsym_size + stringsize + 1 <= carsym_size)
1025 return FALSE;
1026
a50b1753 1027 ardata->symdefs = (struct carsym *) bfd_zalloc (abfd,
3a11e31e 1028 carsym_size + stringsize + 1);
252b5132 1029 if (ardata->symdefs == NULL)
b34976b6 1030 return FALSE;
252b5132
RH
1031 carsyms = ardata->symdefs;
1032 stringbase = ((char *) ardata->symdefs) + carsym_size;
1033
d70910e8 1034 /* Allocate and read in the raw offsets. */
a50b1753 1035 raw_armap = (int *) bfd_alloc (abfd, ptrsize);
252b5132
RH
1036 if (raw_armap == NULL)
1037 goto release_symdefs;
c58b9523
AM
1038 if (bfd_bread (raw_armap, ptrsize, abfd) != ptrsize
1039 || (bfd_bread (stringbase, stringsize, abfd) != stringsize))
252b5132
RH
1040 {
1041 if (bfd_get_error () != bfd_error_system_call)
1042 bfd_set_error (bfd_error_malformed_archive);
1043 goto release_raw_armap;
1044 }
1045
047066e1 1046 /* OK, build the carsyms. */
252b5132
RH
1047 for (i = 0; i < nsymz; i++)
1048 {
1049 rawptr = raw_armap + i;
c58b9523 1050 carsyms->file_offset = swap ((bfd_byte *) rawptr);
252b5132
RH
1051 carsyms->name = stringbase;
1052 stringbase += strlen (stringbase) + 1;
1053 carsyms++;
1054 }
1055 *stringbase = 0;
1056
1057 ardata->symdef_count = nsymz;
1058 ardata->first_file_filepos = bfd_tell (abfd);
047066e1 1059 /* Pad to an even boundary if you have to. */
252b5132
RH
1060 ardata->first_file_filepos += (ardata->first_file_filepos) % 2;
1061
b34976b6 1062 bfd_has_map (abfd) = TRUE;
c58b9523 1063 bfd_release (abfd, raw_armap);
252b5132 1064
047066e1 1065 /* Check for a second archive header (as used by PE). */
252b5132
RH
1066 {
1067 struct areltdata *tmp;
1068
dc810e39 1069 bfd_seek (abfd, ardata->first_file_filepos, SEEK_SET);
a50b1753 1070 tmp = (struct areltdata *) _bfd_read_ar_hdr (abfd);
23afc6f6 1071 if (tmp != NULL)
252b5132
RH
1072 {
1073 if (tmp->arch_header[0] == '/'
23afc6f6 1074 && tmp->arch_header[1] == ' ')
252b5132
RH
1075 {
1076 ardata->first_file_filepos +=
dc810e39 1077 (tmp->parsed_size + sizeof (struct ar_hdr) + 1) & ~(unsigned) 1;
252b5132 1078 }
06e7acd7 1079 free (tmp);
252b5132
RH
1080 }
1081 }
1082
b34976b6 1083 return TRUE;
252b5132
RH
1084
1085release_raw_armap:
c58b9523 1086 bfd_release (abfd, raw_armap);
252b5132 1087release_symdefs:
c58b9523 1088 bfd_release (abfd, (ardata)->symdefs);
b34976b6 1089 return FALSE;
252b5132
RH
1090}
1091
36e44abd
AN
1092/* This routine can handle either coff-style or bsd-style armaps
1093 (archive symbol table). Returns FALSE on error, TRUE otherwise */
252b5132 1094
b34976b6 1095bfd_boolean
c58b9523 1096bfd_slurp_armap (bfd *abfd)
252b5132
RH
1097{
1098 char nextname[17];
c58b9523 1099 int i = bfd_bread (nextname, 16, abfd);
252b5132
RH
1100
1101 if (i == 0)
b34976b6 1102 return TRUE;
252b5132 1103 if (i != 16)
b34976b6 1104 return FALSE;
252b5132 1105
dc810e39 1106 if (bfd_seek (abfd, (file_ptr) -16, SEEK_CUR) != 0)
b34976b6 1107 return FALSE;
252b5132 1108
0112cd26
NC
1109 if (CONST_STRNEQ (nextname, "__.SYMDEF ")
1110 || CONST_STRNEQ (nextname, "__.SYMDEF/ ")) /* Old Linux archives. */
252b5132 1111 return do_slurp_bsd_armap (abfd);
0112cd26 1112 else if (CONST_STRNEQ (nextname, "/ "))
252b5132 1113 return do_slurp_coff_armap (abfd);
0112cd26 1114 else if (CONST_STRNEQ (nextname, "/SYM64/ "))
252b5132 1115 {
36b45482
TS
1116 /* 64bit ELF (Irix 6) archive. */
1117#ifdef BFD64
c58b9523 1118 extern bfd_boolean bfd_elf64_archive_slurp_armap (bfd *);
36b45482
TS
1119 return bfd_elf64_archive_slurp_armap (abfd);
1120#else
252b5132 1121 bfd_set_error (bfd_error_wrong_format);
b34976b6 1122 return FALSE;
36b45482 1123#endif
252b5132 1124 }
cba0723b
TG
1125 else if (CONST_STRNEQ (nextname, "#1/20 "))
1126 {
1127 /* Mach-O has a special name for armap when the map is sorted by name.
3a11e31e
RM
1128 However because this name has a space it is slightly more difficult
1129 to check it. */
cba0723b
TG
1130 struct ar_hdr hdr;
1131 char extname[21];
1132
1133 if (bfd_bread (&hdr, sizeof (hdr), abfd) != sizeof (hdr))
3a11e31e 1134 return FALSE;
cba0723b
TG
1135 /* Read the extended name. We know its length. */
1136 if (bfd_bread (extname, 20, abfd) != 20)
3a11e31e 1137 return FALSE;
cd99171c 1138 if (bfd_seek (abfd, -(file_ptr) (sizeof (hdr) + 20), SEEK_CUR) != 0)
3a11e31e 1139 return FALSE;
8f95b6e4 1140 if (CONST_STRNEQ (extname, "__.SYMDEF SORTED")
3a11e31e
RM
1141 || CONST_STRNEQ (extname, "__.SYMDEF"))
1142 return do_slurp_bsd_armap (abfd);
cba0723b 1143 }
252b5132 1144
b34976b6
AM
1145 bfd_has_map (abfd) = FALSE;
1146 return TRUE;
252b5132
RH
1147}
1148\f
06fc8a8c
NC
1149/* Returns FALSE on error, TRUE otherwise. */
1150/* Flavor 2 of a bsd armap, similar to bfd_slurp_bsd_armap except the
252b5132 1151 header is in a slightly different order and the map name is '/'.
d70910e8 1152 This flavour is used by hp300hpux. */
252b5132
RH
1153
1154#define HPUX_SYMDEF_COUNT_SIZE 2
1155
b34976b6 1156bfd_boolean
c58b9523 1157bfd_slurp_bsd_armap_f2 (bfd *abfd)
252b5132
RH
1158{
1159 struct areltdata *mapdata;
1160 char nextname[17];
1161 unsigned int counter;
1162 bfd_byte *raw_armap, *rbase;
1163 struct artdata *ardata = bfd_ardata (abfd);
1164 char *stringbase;
1165 unsigned int stringsize;
8616ad89 1166 unsigned int left;
dc810e39 1167 bfd_size_type amt;
252b5132 1168 carsym *set;
c58b9523 1169 int i = bfd_bread (nextname, 16, abfd);
252b5132
RH
1170
1171 if (i == 0)
b34976b6 1172 return TRUE;
252b5132 1173 if (i != 16)
b34976b6 1174 return FALSE;
252b5132 1175
047066e1 1176 /* The archive has at least 16 bytes in it. */
dc810e39 1177 if (bfd_seek (abfd, (file_ptr) -16, SEEK_CUR) != 0)
b34976b6 1178 return FALSE;
252b5132 1179
0112cd26
NC
1180 if (CONST_STRNEQ (nextname, "__.SYMDEF ")
1181 || CONST_STRNEQ (nextname, "__.SYMDEF/ ")) /* Old Linux archives. */
252b5132
RH
1182 return do_slurp_bsd_armap (abfd);
1183
0112cd26 1184 if (! CONST_STRNEQ (nextname, "/ "))
252b5132 1185 {
b34976b6
AM
1186 bfd_has_map (abfd) = FALSE;
1187 return TRUE;
252b5132
RH
1188 }
1189
a50b1753 1190 mapdata = (struct areltdata *) _bfd_read_ar_hdr (abfd);
252b5132 1191 if (mapdata == NULL)
b34976b6 1192 return FALSE;
252b5132 1193
8616ad89 1194 if (mapdata->parsed_size < HPUX_SYMDEF_COUNT_SIZE + BSD_STRING_COUNT_SIZE)
252b5132 1195 {
06e7acd7 1196 free (mapdata);
8616ad89
AM
1197 wrong_format:
1198 bfd_set_error (bfd_error_wrong_format);
252b5132 1199 byebye:
b34976b6 1200 return FALSE;
252b5132 1201 }
8616ad89
AM
1202 left = mapdata->parsed_size - HPUX_SYMDEF_COUNT_SIZE - BSD_STRING_COUNT_SIZE;
1203
1204 amt = mapdata->parsed_size;
06e7acd7
TT
1205 free (mapdata);
1206
8616ad89
AM
1207 raw_armap = (bfd_byte *) bfd_zalloc (abfd, amt);
1208 if (raw_armap == NULL)
1209 goto byebye;
252b5132 1210
c58b9523 1211 if (bfd_bread (raw_armap, amt, abfd) != amt)
252b5132
RH
1212 {
1213 if (bfd_get_error () != bfd_error_system_call)
1214 bfd_set_error (bfd_error_malformed_archive);
252b5132
RH
1215 goto byebye;
1216 }
1217
c58b9523 1218 ardata->symdef_count = H_GET_16 (abfd, raw_armap);
252b5132 1219
252b5132
RH
1220 ardata->cache = 0;
1221
dc810e39 1222 stringsize = H_GET_32 (abfd, raw_armap + HPUX_SYMDEF_COUNT_SIZE);
8616ad89
AM
1223 if (stringsize > left)
1224 goto wrong_format;
1225 left -= stringsize;
1226
047066e1 1227 /* Skip sym count and string sz. */
252b5132
RH
1228 stringbase = ((char *) raw_armap
1229 + HPUX_SYMDEF_COUNT_SIZE
1230 + BSD_STRING_COUNT_SIZE);
1231 rbase = (bfd_byte *) stringbase + stringsize;
c58b9523 1232 amt = ardata->symdef_count * BSD_SYMDEF_SIZE;
8616ad89
AM
1233 if (amt > left)
1234 goto wrong_format;
1235
a50b1753 1236 ardata->symdefs = (struct carsym *) bfd_alloc (abfd, amt);
252b5132 1237 if (!ardata->symdefs)
b34976b6 1238 return FALSE;
252b5132
RH
1239
1240 for (counter = 0, set = ardata->symdefs;
1241 counter < ardata->symdef_count;
1242 counter++, set++, rbase += BSD_SYMDEF_SIZE)
1243 {
dc810e39
AM
1244 set->name = H_GET_32 (abfd, rbase) + stringbase;
1245 set->file_offset = H_GET_32 (abfd, rbase + BSD_SYMDEF_OFFSET_SIZE);
252b5132
RH
1246 }
1247
1248 ardata->first_file_filepos = bfd_tell (abfd);
047066e1 1249 /* Pad to an even boundary if you have to. */
252b5132
RH
1250 ardata->first_file_filepos += (ardata->first_file_filepos) % 2;
1251 /* FIXME, we should provide some way to free raw_ardata when
1252 we are done using the strings from it. For now, it seems
d70910e8 1253 to be allocated on an objalloc anyway... */
b34976b6
AM
1254 bfd_has_map (abfd) = TRUE;
1255 return TRUE;
252b5132
RH
1256}
1257\f
1258/** Extended name table.
1259
1260 Normally archives support only 14-character filenames.
1261
1262 Intel has extended the format: longer names are stored in a special
1263 element (the first in the archive, or second if there is an armap);
1264 the name in the ar_hdr is replaced by <space><index into filename
1265 element>. Index is the P.R. of an int (decimal). Data General have
047066e1
KH
1266 extended the format by using the prefix // for the special element. */
1267
b34976b6 1268/* Returns FALSE on error, TRUE otherwise. */
252b5132 1269
b34976b6 1270bfd_boolean
c58b9523 1271_bfd_slurp_extended_name_table (bfd *abfd)
252b5132
RH
1272{
1273 char nextname[17];
1274 struct areltdata *namedata;
dc810e39 1275 bfd_size_type amt;
252b5132
RH
1276
1277 /* FIXME: Formatting sucks here, and in case of failure of BFD_READ,
b34976b6 1278 we probably don't want to return TRUE. */
eb00922a
MS
1279 if (bfd_seek (abfd, bfd_ardata (abfd)->first_file_filepos, SEEK_SET) != 0)
1280 return FALSE;
1281
c58b9523 1282 if (bfd_bread (nextname, 16, abfd) == 16)
252b5132 1283 {
dc810e39 1284 if (bfd_seek (abfd, (file_ptr) -16, SEEK_CUR) != 0)
b34976b6 1285 return FALSE;
252b5132 1286
0112cd26
NC
1287 if (! CONST_STRNEQ (nextname, "ARFILENAMES/ ")
1288 && ! CONST_STRNEQ (nextname, "// "))
252b5132
RH
1289 {
1290 bfd_ardata (abfd)->extended_names = NULL;
9e492e05 1291 bfd_ardata (abfd)->extended_names_size = 0;
b34976b6 1292 return TRUE;
252b5132
RH
1293 }
1294
a50b1753 1295 namedata = (struct areltdata *) _bfd_read_ar_hdr (abfd);
252b5132 1296 if (namedata == NULL)
b34976b6 1297 return FALSE;
252b5132 1298
dc810e39 1299 amt = namedata->parsed_size;
9e492e05 1300 if (amt + 1 == 0)
3a11e31e 1301 goto byebye;
9e492e05
JJ
1302
1303 bfd_ardata (abfd)->extended_names_size = amt;
a50b1753 1304 bfd_ardata (abfd)->extended_names = (char *) bfd_zalloc (abfd, amt + 1);
252b5132
RH
1305 if (bfd_ardata (abfd)->extended_names == NULL)
1306 {
1307 byebye:
06e7acd7 1308 free (namedata);
b34976b6 1309 return FALSE;
252b5132
RH
1310 }
1311
c58b9523 1312 if (bfd_bread (bfd_ardata (abfd)->extended_names, amt, abfd) != amt)
252b5132
RH
1313 {
1314 if (bfd_get_error () != bfd_error_system_call)
1315 bfd_set_error (bfd_error_malformed_archive);
c58b9523 1316 bfd_release (abfd, (bfd_ardata (abfd)->extended_names));
252b5132
RH
1317 bfd_ardata (abfd)->extended_names = NULL;
1318 goto byebye;
1319 }
1320
1321 /* Since the archive is supposed to be printable if it contains
1322 text, the entries in the list are newline-padded, not null
1323 padded. In SVR4-style archives, the names also have a
1324 trailing '/'. DOS/NT created archive often have \ in them
1325 We'll fix all problems here.. */
1326 {
3a11e31e 1327 char *ext_names = bfd_ardata (abfd)->extended_names;
9e492e05 1328 char *temp = ext_names;
252b5132 1329 char *limit = temp + namedata->parsed_size;
047066e1
KH
1330 for (; temp < limit; ++temp)
1331 {
89a58aeb 1332 if (*temp == ARFMAG[1])
9e492e05 1333 temp[temp > ext_names && temp[-1] == '/' ? -1 : 0] = '\0';
047066e1
KH
1334 if (*temp == '\\')
1335 *temp = '/';
1336 }
9e492e05 1337 *limit = '\0';
252b5132
RH
1338 }
1339
047066e1 1340 /* Pad to an even boundary if you have to. */
252b5132
RH
1341 bfd_ardata (abfd)->first_file_filepos = bfd_tell (abfd);
1342 bfd_ardata (abfd)->first_file_filepos +=
1343 (bfd_ardata (abfd)->first_file_filepos) % 2;
1344
06e7acd7 1345 free (namedata);
252b5132 1346 }
b34976b6 1347 return TRUE;
252b5132
RH
1348}
1349
1350#ifdef VMS
1351
1352/* Return a copy of the stuff in the filename between any :]> and a
047066e1
KH
1353 semicolon. */
1354
252b5132 1355static const char *
c58b9523 1356normalize (bfd *abfd, const char *file)
252b5132 1357{
dc810e39
AM
1358 const char *first;
1359 const char *last;
252b5132
RH
1360 char *copy;
1361
1362 first = file + strlen (file) - 1;
1363 last = first + 1;
1364
1365 while (first != file)
1366 {
1367 if (*first == ';')
1368 last = first;
1369 if (*first == ':' || *first == ']' || *first == '>')
1370 {
1371 first++;
1372 break;
1373 }
1374 first--;
1375 }
1376
c58b9523 1377 copy = bfd_alloc (abfd, last - first + 1);
252b5132
RH
1378 if (copy == NULL)
1379 return NULL;
1380
1381 memcpy (copy, first, last - first);
1382 copy[last - first] = 0;
1383
1384 return copy;
1385}
1386
1387#else
1388static const char *
c58b9523 1389normalize (bfd *abfd ATTRIBUTE_UNUSED, const char *file)
252b5132 1390{
19172f39 1391 return lbasename (file);
252b5132
RH
1392}
1393#endif
1394
c4948609
NC
1395/* Adjust a relative path name based on the reference path.
1396 For example:
1397
1398 Relative path Reference path Result
1399 ------------- -------------- ------
1400 bar.o lib.a bar.o
1401 foo/bar.o lib.a foo/bar.o
1402 bar.o foo/lib.a ../bar.o
1403 foo/bar.o baz/lib.a ../foo/bar.o
1404 bar.o ../lib.a <parent of current dir>/bar.o
74ce8de7
NC
1405 ; ../bar.o ../lib.a bar.o
1406 ; ../bar.o lib.a ../bar.o
c4948609
NC
1407 foo/bar.o ../lib.a <parent of current dir>/foo/bar.o
1408 bar.o ../../lib.a <grandparent>/<parent>/bar.o
1409 bar.o foo/baz/lib.a ../../bar.o
1410
74ce8de7
NC
1411 Note - the semicolons above are there to prevent the BFD chew
1412 utility from interpreting those lines as prototypes to put into
1413 the autogenerated bfd.h header...
a8da6403 1414
74ce8de7 1415 Note - the string is returned in a static buffer. */
3a11e31e 1416
a8da6403
NC
1417static const char *
1418adjust_relative_path (const char * path, const char * ref_path)
1419{
1420 static char *pathbuf = NULL;
c4948609
NC
1421 static unsigned int pathbuf_len = 0;
1422 const char *pathp;
1423 const char *refp;
1424 char * lpath;
1425 char * rpath;
1426 unsigned int len;
1427 unsigned int dir_up = 0;
1428 unsigned int dir_down = 0;
a8da6403 1429 char *newp;
c4948609
NC
1430 char * pwd = getpwd ();
1431 const char * down;
a8da6403 1432
c4948609
NC
1433 /* Remove symlinks, '.' and '..' from the paths, if possible. */
1434 lpath = lrealpath (path);
1435 pathp = lpath == NULL ? path : lpath;
1436
1437 rpath = lrealpath (ref_path);
1438 refp = rpath == NULL ? ref_path : rpath;
3a11e31e 1439
a8da6403
NC
1440 /* Remove common leading path elements. */
1441 for (;;)
1442 {
1443 const char *e1 = pathp;
1444 const char *e2 = refp;
1445
1446 while (*e1 && ! IS_DIR_SEPARATOR (*e1))
1447 ++e1;
1448 while (*e2 && ! IS_DIR_SEPARATOR (*e2))
1449 ++e2;
1450 if (*e1 == '\0' || *e2 == '\0' || e1 - pathp != e2 - refp
007d6189 1451 || filename_ncmp (pathp, refp, e1 - pathp) != 0)
a8da6403
NC
1452 break;
1453 pathp = e1 + 1;
1454 refp = e2 + 1;
1455 }
1456
c4948609 1457 len = strlen (pathp) + 1;
a8da6403
NC
1458 /* For each leading path element in the reference path,
1459 insert "../" into the path. */
1460 for (; *refp; ++refp)
1461 if (IS_DIR_SEPARATOR (*refp))
c4948609
NC
1462 {
1463 /* PR 12710: If the path element is "../" then instead of
1464 inserting "../" we need to insert the name of the directory
3a11e31e 1465 at the current level. */
c4948609
NC
1466 if (refp > ref_path + 1
1467 && refp[-1] == '.'
1468 && refp[-2] == '.')
1469 dir_down ++;
1470 else
1471 dir_up ++;
1472 }
1473
1474 /* If the lrealpath calls above succeeded then we should never
1475 see dir_up and dir_down both being non-zero. */
3a11e31e 1476
c4948609
NC
1477 len += 3 * dir_up;
1478
1479 if (dir_down)
1480 {
1481 down = pwd + strlen (pwd) - 1;
1482
1483 while (dir_down && down > pwd)
1484 {
1485 if (IS_DIR_SEPARATOR (*down))
1486 --dir_down;
1487 }
1488 BFD_ASSERT (dir_down == 0);
1489 len += strlen (down) + 1;
1490 }
1491 else
1492 down = NULL;
a8da6403
NC
1493
1494 if (len > pathbuf_len)
1495 {
1496 if (pathbuf != NULL)
1497 free (pathbuf);
1498 pathbuf_len = 0;
a50b1753 1499 pathbuf = (char *) bfd_malloc (len);
a8da6403 1500 if (pathbuf == NULL)
c4948609 1501 goto out;
a8da6403
NC
1502 pathbuf_len = len;
1503 }
1504
1505 newp = pathbuf;
c4948609 1506 while (dir_up-- > 0)
a8da6403
NC
1507 {
1508 /* FIXME: Support Windows style path separators as well. */
1509 strcpy (newp, "../");
1510 newp += 3;
1511 }
a8da6403 1512
c4948609
NC
1513 if (down)
1514 sprintf (newp, "%s/%s", down, pathp);
1515 else
1516 strcpy (newp, pathp);
1517
1518 out:
1519 free (lpath);
1520 free (rpath);
a8da6403
NC
1521 return pathbuf;
1522}
1523
252b5132
RH
1524/* Build a BFD style extended name table. */
1525
b34976b6 1526bfd_boolean
c58b9523
AM
1527_bfd_archive_bsd_construct_extended_name_table (bfd *abfd,
1528 char **tabloc,
1529 bfd_size_type *tablen,
1530 const char **name)
252b5132
RH
1531{
1532 *name = "ARFILENAMES/";
b34976b6 1533 return _bfd_construct_extended_name_table (abfd, FALSE, tabloc, tablen);
252b5132
RH
1534}
1535
1536/* Build an SVR4 style extended name table. */
1537
b34976b6 1538bfd_boolean
c58b9523
AM
1539_bfd_archive_coff_construct_extended_name_table (bfd *abfd,
1540 char **tabloc,
1541 bfd_size_type *tablen,
1542 const char **name)
252b5132
RH
1543{
1544 *name = "//";
b34976b6 1545 return _bfd_construct_extended_name_table (abfd, TRUE, tabloc, tablen);
252b5132
RH
1546}
1547
1548/* Follows archive_head and produces an extended name table if
1549 necessary. Returns (in tabloc) a pointer to an extended name
1550 table, and in tablen the length of the table. If it makes an entry
1551 it clobbers the filename so that the element may be written without
b34976b6 1552 further massage. Returns TRUE if it ran successfully, FALSE if
252b5132
RH
1553 something went wrong. A successful return may still involve a
1554 zero-length tablen! */
1555
b34976b6 1556bfd_boolean
c58b9523
AM
1557_bfd_construct_extended_name_table (bfd *abfd,
1558 bfd_boolean trailing_slash,
1559 char **tabloc,
1560 bfd_size_type *tablen)
252b5132 1561{
b228303d 1562 unsigned int maxname = ar_maxnamelen (abfd);
dc810e39 1563 bfd_size_type total_namelen = 0;
252b5132
RH
1564 bfd *current;
1565 char *strptr;
a8da6403
NC
1566 const char *last_filename;
1567 long last_stroff;
252b5132
RH
1568
1569 *tablen = 0;
a8da6403 1570 last_filename = NULL;
252b5132 1571
047066e1 1572 /* Figure out how long the table should be. */
cc481421
AM
1573 for (current = abfd->archive_head;
1574 current != NULL;
1575 current = current->archive_next)
252b5132
RH
1576 {
1577 const char *normal;
1578 unsigned int thislen;
1579
a8da6403 1580 if (bfd_is_thin_archive (abfd))
3a11e31e
RM
1581 {
1582 const char *filename = current->filename;
1583
1584 /* If the element being added is a member of another archive
1585 (i.e., we are flattening), use the containing archive's name. */
1586 if (current->my_archive
1587 && ! bfd_is_thin_archive (current->my_archive))
1588 filename = current->my_archive->filename;
1589
1590 /* If the path is the same as the previous path seen,
1591 reuse it. This can happen when flattening a thin
1592 archive that contains other archives. */
1593 if (last_filename && filename_cmp (last_filename, filename) == 0)
1594 continue;
1595
1596 last_filename = filename;
1597
1598 /* If the path is relative, adjust it relative to
1599 the containing archive. */
1600 if (! IS_ABSOLUTE_PATH (filename)
1601 && ! IS_ABSOLUTE_PATH (abfd->filename))
1602 normal = adjust_relative_path (filename, abfd->filename);
1603 else
1604 normal = filename;
1605
1606 /* In a thin archive, always store the full pathname
1607 in the extended name table. */
1608 total_namelen += strlen (normal) + 1;
a8da6403
NC
1609 if (trailing_slash)
1610 /* Leave room for trailing slash. */
1611 ++total_namelen;
1612
3a11e31e
RM
1613 continue;
1614 }
a8da6403 1615
252b5132
RH
1616 normal = normalize (current, current->filename);
1617 if (normal == NULL)
b34976b6 1618 return FALSE;
252b5132
RH
1619
1620 thislen = strlen (normal);
1621
1622 if (thislen > maxname
1623 && (bfd_get_file_flags (abfd) & BFD_TRADITIONAL_FORMAT) != 0)
1624 thislen = maxname;
1625
1626 if (thislen > maxname)
1627 {
1628 /* Add one to leave room for \n. */
1629 total_namelen += thislen + 1;
1630 if (trailing_slash)
1631 {
1632 /* Leave room for trailing slash. */
1633 ++total_namelen;
1634 }
1635 }
1636 else
1637 {
1638 struct ar_hdr *hdr = arch_hdr (current);
007d6189 1639 if (filename_ncmp (normal, hdr->ar_name, thislen) != 0
252b5132
RH
1640 || (thislen < sizeof hdr->ar_name
1641 && hdr->ar_name[thislen] != ar_padchar (current)))
1642 {
1643 /* Must have been using extended format even though it
3a11e31e 1644 didn't need to. Fix it to use normal format. */
252b5132
RH
1645 memcpy (hdr->ar_name, normal, thislen);
1646 if (thislen < maxname
1647 || (thislen == maxname && thislen < sizeof hdr->ar_name))
1648 hdr->ar_name[thislen] = ar_padchar (current);
1649 }
1650 }
1651 }
1652
1653 if (total_namelen == 0)
b34976b6 1654 return TRUE;
252b5132 1655
a50b1753 1656 *tabloc = (char *) bfd_zalloc (abfd, total_namelen);
252b5132 1657 if (*tabloc == NULL)
b34976b6 1658 return FALSE;
252b5132
RH
1659
1660 *tablen = total_namelen;
1661 strptr = *tabloc;
1662
a8da6403
NC
1663 last_filename = NULL;
1664 last_stroff = 0;
1665
cc481421
AM
1666 for (current = abfd->archive_head;
1667 current != NULL;
1668 current = current->archive_next)
252b5132
RH
1669 {
1670 const char *normal;
1671 unsigned int thislen;
a8da6403
NC
1672 long stroff;
1673 const char *filename = current->filename;
1674
1675 if (bfd_is_thin_archive (abfd))
3a11e31e
RM
1676 {
1677 /* If the element being added is a member of another archive
1678 (i.e., we are flattening), use the containing archive's name. */
1679 if (current->my_archive
1680 && ! bfd_is_thin_archive (current->my_archive))
1681 filename = current->my_archive->filename;
1682 /* If the path is the same as the previous path seen,
1683 reuse it. This can happen when flattening a thin
1684 archive that contains other archives.
1685 If the path is relative, adjust it relative to
1686 the containing archive. */
1687 if (last_filename && filename_cmp (last_filename, filename) == 0)
1688 normal = last_filename;
1689 else if (! IS_ABSOLUTE_PATH (filename)
1690 && ! IS_ABSOLUTE_PATH (abfd->filename))
1691 normal = adjust_relative_path (filename, abfd->filename);
1692 else
1693 normal = filename;
1694 }
a8da6403 1695 else
3a11e31e
RM
1696 {
1697 normal = normalize (current, filename);
1698 if (normal == NULL)
1699 return FALSE;
1700 }
252b5132
RH
1701
1702 thislen = strlen (normal);
a8da6403 1703 if (thislen > maxname || bfd_is_thin_archive (abfd))
252b5132
RH
1704 {
1705 /* Works for now; may need to be re-engineered if we
1706 encounter an oddball archive format and want to
d70910e8 1707 generalise this hack. */
252b5132 1708 struct ar_hdr *hdr = arch_hdr (current);
a8da6403
NC
1709 if (normal == last_filename)
1710 stroff = last_stroff;
3a11e31e
RM
1711 else
1712 {
a8da6403
NC
1713 strcpy (strptr, normal);
1714 if (! trailing_slash)
3a11e31e 1715 strptr[thislen] = ARFMAG[1];
a8da6403 1716 else
3a11e31e
RM
1717 {
1718 strptr[thislen] = '/';
1719 strptr[thislen + 1] = ARFMAG[1];
1720 }
a8da6403
NC
1721 stroff = strptr - *tabloc;
1722 last_stroff = stroff;
252b5132
RH
1723 }
1724 hdr->ar_name[0] = ar_padchar (current);
a8da6403
NC
1725 if (bfd_is_thin_archive (abfd) && current->origin > 0)
1726 {
1727 int len = snprintf (hdr->ar_name + 1, maxname - 1, "%-ld:",
3a11e31e 1728 stroff);
a8da6403 1729 _bfd_ar_spacepad (hdr->ar_name + 1 + len, maxname - 1 - len,
3a11e31e
RM
1730 "%-ld",
1731 current->origin - sizeof (struct ar_hdr));
a8da6403
NC
1732 }
1733 else
3a11e31e
RM
1734 _bfd_ar_spacepad (hdr->ar_name + 1, maxname - 1, "%-ld", stroff);
1735 if (normal != last_filename)
1736 {
a8da6403
NC
1737 strptr += thislen + 1;
1738 if (trailing_slash)
3a11e31e
RM
1739 ++strptr;
1740 last_filename = filename;
a8da6403 1741 }
252b5132
RH
1742 }
1743 }
1744
b34976b6 1745 return TRUE;
252b5132 1746}
8f95b6e4
TG
1747
1748/* Do not construct an extended name table but transforms name field into
1749 its extended form. */
1750
1751bfd_boolean
1752_bfd_archive_bsd44_construct_extended_name_table (bfd *abfd,
3a11e31e
RM
1753 char **tabloc,
1754 bfd_size_type *tablen,
1755 const char **name)
8f95b6e4 1756{
b228303d 1757 unsigned int maxname = ar_maxnamelen (abfd);
8f95b6e4
TG
1758 bfd *current;
1759
1760 *tablen = 0;
1761 *tabloc = NULL;
1762 *name = NULL;
1763
1764 for (current = abfd->archive_head;
1765 current != NULL;
1766 current = current->archive_next)
1767 {
1768 const char *normal = normalize (current, current->filename);
1769 int has_space = 0;
1770 unsigned int len;
1771
1772 if (normal == NULL)
1773 return FALSE;
1774
1775 for (len = 0; normal[len]; len++)
3a11e31e
RM
1776 if (normal[len] == ' ')
1777 has_space = 1;
8f95b6e4
TG
1778
1779 if (len > maxname || has_space)
1780 {
3a11e31e 1781 struct ar_hdr *hdr = arch_hdr (current);
8f95b6e4 1782
3a11e31e
RM
1783 len = (len + 3) & ~3;
1784 arch_eltdata (current)->extra_size = len;
1785 _bfd_ar_spacepad (hdr->ar_name, maxname, "#1/%lu", len);
8f95b6e4
TG
1786 }
1787 }
1788
1789 return TRUE;
1790}
1791\f
1792/* Write an archive header. */
1793
1794bfd_boolean
1795_bfd_generic_write_ar_hdr (bfd *archive, bfd *abfd)
1796{
1797 struct ar_hdr *hdr = arch_hdr (abfd);
1798
1799 if (bfd_bwrite (hdr, sizeof (*hdr), archive) != sizeof (*hdr))
1800 return FALSE;
1801 return TRUE;
1802}
1803
1804/* Write an archive header using BSD4.4 convention. */
1805
1806bfd_boolean
1807_bfd_bsd44_write_ar_hdr (bfd *archive, bfd *abfd)
1808{
1809 struct ar_hdr *hdr = arch_hdr (abfd);
1810
1811 if (is_bsd44_extended_name (hdr->ar_name))
1812 {
1813 /* This is a BSD 4.4 extended name. */
1814 const char *fullname = normalize (abfd, abfd->filename);
1815 unsigned int len = strlen (fullname);
1816 unsigned int padded_len = (len + 3) & ~3;
1817
1818 BFD_ASSERT (padded_len == arch_eltdata (abfd)->extra_size);
1819
f1bb16f8 1820 if (!_bfd_ar_sizepad (hdr->ar_size, sizeof (hdr->ar_size),
3a11e31e
RM
1821 arch_eltdata (abfd)->parsed_size + padded_len))
1822 return FALSE;
8f95b6e4
TG
1823
1824 if (bfd_bwrite (hdr, sizeof (*hdr), archive) != sizeof (*hdr))
3a11e31e 1825 return FALSE;
8f95b6e4
TG
1826
1827 if (bfd_bwrite (fullname, len, archive) != len)
3a11e31e 1828 return FALSE;
f1bb16f8 1829
8f95b6e4 1830 if (len & 3)
3a11e31e
RM
1831 {
1832 static const char pad[3] = { 0, 0, 0 };
8f95b6e4 1833
3a11e31e
RM
1834 len = 4 - (len & 3);
1835 if (bfd_bwrite (pad, len, archive) != len)
1836 return FALSE;
1837 }
8f95b6e4
TG
1838 }
1839 else
1840 {
1841 if (bfd_bwrite (hdr, sizeof (*hdr), archive) != sizeof (*hdr))
3a11e31e 1842 return FALSE;
8f95b6e4
TG
1843 }
1844 return TRUE;
1845}
252b5132 1846\f
06fc8a8c 1847/* A couple of functions for creating ar_hdrs. */
252b5132 1848
23afc6f6
JL
1849#ifdef HPUX_LARGE_AR_IDS
1850/* Function to encode large UID/GID values according to HP. */
047066e1 1851
23afc6f6 1852static void
c58b9523 1853hpux_uid_gid_encode (char str[6], long int id)
23afc6f6
JL
1854{
1855 int cnt;
1856
1857 str[5] = '@' + (id & 3);
1858 id >>= 2;
1859
174660ce 1860 for (cnt = 4; cnt >= 0; --cnt, id >>= 6)
23afc6f6
JL
1861 str[cnt] = ' ' + (id & 0x3f);
1862}
1863#endif /* HPUX_LARGE_AR_IDS */
1864
633fd09f
ILT
1865#ifndef HAVE_GETUID
1866#define getuid() 0
1867#endif
1868
1869#ifndef HAVE_GETGID
1870#define getgid() 0
1871#endif
1872
252b5132
RH
1873/* Takes a filename, returns an arelt_data for it, or NULL if it can't
1874 make one. The filename must refer to a filename in the filesystem.
1875 The filename field of the ar_hdr will NOT be initialized. If member
d70910e8 1876 is set, and it's an in-memory bfd, we fake it. */
252b5132
RH
1877
1878static struct areltdata *
c58b9523 1879bfd_ar_hdr_from_filesystem (bfd *abfd, const char *filename, bfd *member)
252b5132
RH
1880{
1881 struct stat status;
1882 struct areltdata *ared;
1883 struct ar_hdr *hdr;
dc810e39 1884 bfd_size_type amt;
252b5132
RH
1885
1886 if (member && (member->flags & BFD_IN_MEMORY) != 0)
1887 {
047066e1 1888 /* Assume we just "made" the member, and fake it. */
a50b1753 1889 struct bfd_in_memory *bim = (struct bfd_in_memory *) member->iostream;
047066e1
KH
1890 time (&status.st_mtime);
1891 status.st_uid = getuid ();
1892 status.st_gid = getgid ();
252b5132
RH
1893 status.st_mode = 0644;
1894 status.st_size = bim->size;
1895 }
1896 else if (stat (filename, &status) != 0)
1897 {
1898 bfd_set_error (bfd_error_system_call);
1899 return NULL;
1900 }
1901
36e4dce6
CD
1902 /* If the caller requested that the BFD generate deterministic output,
1903 fake values for modification time, UID, GID, and file mode. */
1904 if ((abfd->flags & BFD_DETERMINISTIC_OUTPUT) != 0)
1905 {
1906 status.st_mtime = 0;
1907 status.st_uid = 0;
1908 status.st_gid = 0;
1909 status.st_mode = 0644;
1910 }
1911
dc810e39 1912 amt = sizeof (struct ar_hdr) + sizeof (struct areltdata);
ed668b34 1913 ared = (struct areltdata *) bfd_zmalloc (amt);
252b5132
RH
1914 if (ared == NULL)
1915 return NULL;
1916 hdr = (struct ar_hdr *) (((char *) ared) + sizeof (struct areltdata));
1917
047066e1 1918 /* ar headers are space padded, not null padded! */
c58b9523 1919 memset (hdr, ' ', sizeof (struct ar_hdr));
252b5132 1920
390c0e42 1921 _bfd_ar_spacepad (hdr->ar_date, sizeof (hdr->ar_date), "%-12ld",
3a11e31e 1922 status.st_mtime);
23afc6f6
JL
1923#ifdef HPUX_LARGE_AR_IDS
1924 /* HP has a very "special" way to handle UID/GID's with numeric values
1925 > 99999. */
1926 if (status.st_uid > 99999)
390c0e42 1927 hpux_uid_gid_encode (hdr->ar_uid, (long) status.st_uid);
23afc6f6
JL
1928 else
1929#endif
390c0e42 1930 _bfd_ar_spacepad (hdr->ar_uid, sizeof (hdr->ar_uid), "%ld",
3a11e31e 1931 status.st_uid);
23afc6f6
JL
1932#ifdef HPUX_LARGE_AR_IDS
1933 /* HP has a very "special" way to handle UID/GID's with numeric values
1934 > 99999. */
1935 if (status.st_gid > 99999)
390c0e42 1936 hpux_uid_gid_encode (hdr->ar_gid, (long) status.st_gid);
23afc6f6
JL
1937 else
1938#endif
390c0e42 1939 _bfd_ar_spacepad (hdr->ar_gid, sizeof (hdr->ar_gid), "%ld",
3a11e31e 1940 status.st_gid);
390c0e42 1941 _bfd_ar_spacepad (hdr->ar_mode, sizeof (hdr->ar_mode), "%-8lo",
3a11e31e 1942 status.st_mode);
f1bb16f8 1943 if (!_bfd_ar_sizepad (hdr->ar_size, sizeof (hdr->ar_size), status.st_size))
ed668b34
AM
1944 {
1945 free (ared);
1946 return NULL;
1947 }
390c0e42 1948 memcpy (hdr->ar_fmag, ARFMAG, 2);
252b5132
RH
1949 ared->parsed_size = status.st_size;
1950 ared->arch_header = (char *) hdr;
1951
1952 return ared;
1953}
1954
047066e1
KH
1955/* Analogous to stat call. */
1956
252b5132 1957int
c58b9523 1958bfd_generic_stat_arch_elt (bfd *abfd, struct stat *buf)
252b5132
RH
1959{
1960 struct ar_hdr *hdr;
1961 char *aloser;
1962
1963 if (abfd->arelt_data == NULL)
1964 {
1965 bfd_set_error (bfd_error_invalid_operation);
1966 return -1;
1967 }
1968
1969 hdr = arch_hdr (abfd);
1970
047066e1
KH
1971#define foo(arelt, stelt, size) \
1972 buf->stelt = strtol (hdr->arelt, &aloser, size); \
1973 if (aloser == hdr->arelt) \
1974 return -1;
1975
23afc6f6
JL
1976 /* Some platforms support special notations for large IDs. */
1977#ifdef HPUX_LARGE_AR_IDS
047066e1
KH
1978# define foo2(arelt, stelt, size) \
1979 if (hdr->arelt[5] == ' ') \
1980 { \
1981 foo (arelt, stelt, size); \
1982 } \
1983 else \
1984 { \
1985 int cnt; \
1986 for (buf->stelt = cnt = 0; cnt < 5; ++cnt) \
1987 { \
1988 if (hdr->arelt[cnt] < ' ' || hdr->arelt[cnt] > ' ' + 0x3f) \
1989 return -1; \
1990 buf->stelt <<= 6; \
1991 buf->stelt += hdr->arelt[cnt] - ' '; \
1992 } \
1993 if (hdr->arelt[5] < '@' || hdr->arelt[5] > '@' + 3) \
1994 return -1; \
1995 buf->stelt <<= 2; \
1996 buf->stelt += hdr->arelt[5] - '@'; \
1997 }
23afc6f6
JL
1998#else
1999# define foo2(arelt, stelt, size) foo (arelt, stelt, size)
2000#endif
252b5132
RH
2001
2002 foo (ar_date, st_mtime, 10);
23afc6f6
JL
2003 foo2 (ar_uid, st_uid, 10);
2004 foo2 (ar_gid, st_gid, 10);
252b5132
RH
2005 foo (ar_mode, st_mode, 8);
2006
2007 buf->st_size = arch_eltdata (abfd)->parsed_size;
2008
2009 return 0;
2010}
2011
2012void
c58b9523 2013bfd_dont_truncate_arname (bfd *abfd, const char *pathname, char *arhdr)
252b5132
RH
2014{
2015 /* FIXME: This interacts unpleasantly with ar's quick-append option.
2016 Fortunately ic960 users will never use that option. Fixing this
2017 is very hard; fortunately I know how to do it and will do so once
d70910e8 2018 intel's release is out the door. */
252b5132
RH
2019
2020 struct ar_hdr *hdr = (struct ar_hdr *) arhdr;
2021 size_t length;
2022 const char *filename;
2023 size_t maxlen = ar_maxnamelen (abfd);
2024
2025 if ((bfd_get_file_flags (abfd) & BFD_TRADITIONAL_FORMAT) != 0)
2026 {
2027 bfd_bsd_truncate_arname (abfd, pathname, arhdr);
2028 return;
2029 }
2030
2031 filename = normalize (abfd, pathname);
2032 if (filename == NULL)
2033 {
2034 /* FIXME */
2035 abort ();
2036 }
2037
2038 length = strlen (filename);
2039
2040 if (length <= maxlen)
2041 memcpy (hdr->ar_name, filename, length);
2042
2043 /* Add the padding character if there is room for it. */
2044 if (length < maxlen
2045 || (length == maxlen && length < sizeof hdr->ar_name))
2046 (hdr->ar_name)[length] = ar_padchar (abfd);
2047}
2048
2049void
c58b9523 2050bfd_bsd_truncate_arname (bfd *abfd, const char *pathname, char *arhdr)
252b5132
RH
2051{
2052 struct ar_hdr *hdr = (struct ar_hdr *) arhdr;
dc810e39 2053 size_t length;
19172f39 2054 const char *filename = lbasename (pathname);
dc810e39 2055 size_t maxlen = ar_maxnamelen (abfd);
252b5132 2056
252b5132
RH
2057 length = strlen (filename);
2058
2059 if (length <= maxlen)
2060 memcpy (hdr->ar_name, filename, length);
2061 else
2062 {
2063 /* pathname: meet procrustes */
2064 memcpy (hdr->ar_name, filename, maxlen);
2065 length = maxlen;
2066 }
2067
2068 if (length < maxlen)
2069 (hdr->ar_name)[length] = ar_padchar (abfd);
2070}
2071
2072/* Store name into ar header. Truncates the name to fit.
2073 1> strip pathname to be just the basename.
2074 2> if it's short enuf to fit, stuff it in.
2075 3> If it doesn't end with .o, truncate it to fit
2076 4> truncate it before the .o, append .o, stuff THAT in. */
2077
2078/* This is what gnu ar does. It's better but incompatible with the
d70910e8 2079 bsd ar. */
252b5132
RH
2080
2081void
c58b9523 2082bfd_gnu_truncate_arname (bfd *abfd, const char *pathname, char *arhdr)
252b5132
RH
2083{
2084 struct ar_hdr *hdr = (struct ar_hdr *) arhdr;
dc810e39 2085 size_t length;
19172f39 2086 const char *filename = lbasename (pathname);
dc810e39 2087 size_t maxlen = ar_maxnamelen (abfd);
252b5132 2088
252b5132
RH
2089 length = strlen (filename);
2090
2091 if (length <= maxlen)
2092 memcpy (hdr->ar_name, filename, length);
2093 else
a8da6403
NC
2094 {
2095 /* pathname: meet procrustes. */
252b5132
RH
2096 memcpy (hdr->ar_name, filename, maxlen);
2097 if ((filename[length - 2] == '.') && (filename[length - 1] == 'o'))
2098 {
2099 hdr->ar_name[maxlen - 2] = '.';
2100 hdr->ar_name[maxlen - 1] = 'o';
2101 }
2102 length = maxlen;
2103 }
2104
2105 if (length < 16)
2106 (hdr->ar_name)[length] = ar_padchar (abfd);
2107}
2108\f
047066e1 2109/* The BFD is open for write and has its format set to bfd_archive. */
252b5132 2110
b34976b6 2111bfd_boolean
c58b9523 2112_bfd_write_archive_contents (bfd *arch)
252b5132
RH
2113{
2114 bfd *current;
2115 char *etable = NULL;
2116 bfd_size_type elength = 0;
2117 const char *ename = NULL;
b34976b6
AM
2118 bfd_boolean makemap = bfd_has_map (arch);
2119 /* If no .o's, don't bother to make a map. */
2120 bfd_boolean hasobjects = FALSE;
252b5132 2121 bfd_size_type wrote;
252b5132 2122 int tries;
a8da6403 2123 char *armag;
252b5132
RH
2124
2125 /* Verify the viability of all entries; if any of them live in the
2126 filesystem (as opposed to living in an archive open for input)
2127 then construct a fresh ar_hdr for them. */
cc481421
AM
2128 for (current = arch->archive_head;
2129 current != NULL;
2130 current = current->archive_next)
252b5132 2131 {
8000a618
DD
2132 /* This check is checking the bfds for the objects we're reading
2133 from (which are usually either an object file or archive on
2134 disk), not the archive entries we're writing to. We don't
2135 actually create bfds for the archive members, we just copy
2136 them byte-wise when we write out the archive. */
252b5132
RH
2137 if (bfd_write_p (current))
2138 {
2139 bfd_set_error (bfd_error_invalid_operation);
ffda70fc 2140 goto input_err;
252b5132
RH
2141 }
2142 if (!current->arelt_data)
2143 {
2144 current->arelt_data =
c58b9523 2145 bfd_ar_hdr_from_filesystem (arch, current->filename, current);
252b5132 2146 if (!current->arelt_data)
ffda70fc 2147 goto input_err;
252b5132 2148
047066e1 2149 /* Put in the file name. */
c58b9523
AM
2150 BFD_SEND (arch, _bfd_truncate_arname,
2151 (arch, current->filename, (char *) arch_hdr (current)));
252b5132
RH
2152 }
2153
2154 if (makemap && ! hasobjects)
047066e1 2155 { /* Don't bother if we won't make a map! */
0e71e495 2156 if ((bfd_check_format (current, bfd_object)))
b34976b6 2157 hasobjects = TRUE;
252b5132
RH
2158 }
2159 }
2160
2161 if (!BFD_SEND (arch, _bfd_construct_extended_name_table,
2162 (arch, &etable, &elength, &ename)))
b34976b6 2163 return FALSE;
252b5132
RH
2164
2165 if (bfd_seek (arch, (file_ptr) 0, SEEK_SET) != 0)
b34976b6 2166 return FALSE;
a8da6403
NC
2167 armag = ARMAG;
2168 if (bfd_is_thin_archive (arch))
2169 armag = ARMAGT;
2170 wrote = bfd_bwrite (armag, SARMAG, arch);
252b5132 2171 if (wrote != SARMAG)
b34976b6 2172 return FALSE;
252b5132
RH
2173
2174 if (makemap && hasobjects)
2175 {
82e51918 2176 if (! _bfd_compute_and_write_armap (arch, (unsigned int) elength))
b34976b6 2177 return FALSE;
252b5132
RH
2178 }
2179
2180 if (elength != 0)
2181 {
2182 struct ar_hdr hdr;
2183
390c0e42
JJ
2184 memset (&hdr, ' ', sizeof (struct ar_hdr));
2185 memcpy (hdr.ar_name, ename, strlen (ename));
252b5132 2186 /* Round size up to even number in archive header. */
f1bb16f8 2187 if (!_bfd_ar_sizepad (hdr.ar_size, sizeof (hdr.ar_size),
3a11e31e
RM
2188 (elength + 1) & ~(bfd_size_type) 1))
2189 return FALSE;
390c0e42 2190 memcpy (hdr.ar_fmag, ARFMAG, 2);
c58b9523 2191 if ((bfd_bwrite (&hdr, sizeof (struct ar_hdr), arch)
252b5132 2192 != sizeof (struct ar_hdr))
dc810e39 2193 || bfd_bwrite (etable, elength, arch) != elength)
b34976b6 2194 return FALSE;
252b5132
RH
2195 if ((elength % 2) == 1)
2196 {
38d6ea5b 2197 if (bfd_bwrite (&ARFMAG[1], 1, arch) != 1)
b34976b6 2198 return FALSE;
252b5132
RH
2199 }
2200 }
2201
cc481421
AM
2202 for (current = arch->archive_head;
2203 current != NULL;
2204 current = current->archive_next)
252b5132
RH
2205 {
2206 char buffer[DEFAULT_BUFFERSIZE];
f1bb16f8 2207 bfd_size_type remaining = arelt_size (current);
252b5132 2208
047066e1 2209 /* Write ar header. */
8f95b6e4 2210 if (!_bfd_write_ar_hdr (arch, current))
3a11e31e 2211 return FALSE;
a8da6403 2212 if (bfd_is_thin_archive (arch))
3a11e31e 2213 continue;
252b5132 2214 if (bfd_seek (current, (file_ptr) 0, SEEK_SET) != 0)
ffda70fc 2215 goto input_err;
a8da6403 2216
252b5132
RH
2217 while (remaining)
2218 {
2219 unsigned int amt = DEFAULT_BUFFERSIZE;
a8da6403 2220
252b5132
RH
2221 if (amt > remaining)
2222 amt = remaining;
2223 errno = 0;
c58b9523 2224 if (bfd_bread (buffer, amt, current) != amt)
252b5132
RH
2225 {
2226 if (bfd_get_error () != bfd_error_system_call)
ffda70fc
AM
2227 bfd_set_error (bfd_error_file_truncated);
2228 goto input_err;
252b5132 2229 }
c58b9523 2230 if (bfd_bwrite (buffer, amt, arch) != amt)
b34976b6 2231 return FALSE;
252b5132
RH
2232 remaining -= amt;
2233 }
a8da6403 2234
252b5132
RH
2235 if ((arelt_size (current) % 2) == 1)
2236 {
38d6ea5b 2237 if (bfd_bwrite (&ARFMAG[1], 1, arch) != 1)
b34976b6 2238 return FALSE;
252b5132
RH
2239 }
2240 }
2241
2242 if (makemap && hasobjects)
2243 {
2244 /* Verify the timestamp in the archive file. If it would not be
2245 accepted by the linker, rewrite it until it would be. If
2246 anything odd happens, break out and just return. (The
2247 Berkeley linker checks the timestamp and refuses to read the
2248 table-of-contents if it is >60 seconds less than the file's
2249 modified-time. That painful hack requires this painful hack. */
2250 tries = 1;
2251 do
2252 {
2253 if (bfd_update_armap_timestamp (arch))
2254 break;
2255 (*_bfd_error_handler)
2256 (_("Warning: writing archive was slow: rewriting timestamp\n"));
2257 }
2258 while (++tries < 6);
2259 }
2260
b34976b6 2261 return TRUE;
ffda70fc
AM
2262
2263 input_err:
2264 bfd_set_error (bfd_error_on_input, current, bfd_get_error ());
2265 return FALSE;
252b5132
RH
2266}
2267\f
047066e1 2268/* Note that the namidx for the first symbol is 0. */
252b5132 2269
b34976b6 2270bfd_boolean
c58b9523 2271_bfd_compute_and_write_armap (bfd *arch, unsigned int elength)
252b5132
RH
2272{
2273 char *first_name = NULL;
2274 bfd *current;
2275 file_ptr elt_no = 0;
2276 struct orl *map = NULL;
06fc8a8c 2277 unsigned int orl_max = 1024; /* Fine initial default. */
dc810e39 2278 unsigned int orl_count = 0;
06fc8a8c 2279 int stridx = 0;
252b5132
RH
2280 asymbol **syms = NULL;
2281 long syms_max = 0;
b34976b6 2282 bfd_boolean ret;
dc810e39 2283 bfd_size_type amt;
252b5132 2284
d70910e8 2285 /* Dunno if this is the best place for this info... */
252b5132
RH
2286 if (elength != 0)
2287 elength += sizeof (struct ar_hdr);
2288 elength += elength % 2;
2289
c58b9523 2290 amt = orl_max * sizeof (struct orl);
a50b1753 2291 map = (struct orl *) bfd_malloc (amt);
252b5132
RH
2292 if (map == NULL)
2293 goto error_return;
2294
2295 /* We put the symbol names on the arch objalloc, and then discard
2296 them when done. */
a50b1753 2297 first_name = (char *) bfd_alloc (arch, 1);
252b5132
RH
2298 if (first_name == NULL)
2299 goto error_return;
2300
047066e1 2301 /* Drop all the files called __.SYMDEF, we're going to make our own. */
a8da6403
NC
2302 while (arch->archive_head
2303 && strcmp (arch->archive_head->filename, "__.SYMDEF") == 0)
cc481421 2304 arch->archive_head = arch->archive_head->archive_next;
252b5132 2305
047066e1 2306 /* Map over each element. */
252b5132 2307 for (current = arch->archive_head;
c58b9523 2308 current != NULL;
cc481421 2309 current = current->archive_next, elt_no++)
252b5132 2310 {
82e51918
AM
2311 if (bfd_check_format (current, bfd_object)
2312 && (bfd_get_file_flags (current) & HAS_SYMS) != 0)
252b5132
RH
2313 {
2314 long storage;
2315 long symcount;
2316 long src_count;
2317
2318 storage = bfd_get_symtab_upper_bound (current);
2319 if (storage < 0)
2320 goto error_return;
2321
2322 if (storage != 0)
2323 {
2324 if (storage > syms_max)
2325 {
2326 if (syms_max > 0)
2327 free (syms);
2328 syms_max = storage;
a50b1753 2329 syms = (asymbol **) bfd_malloc (syms_max);
252b5132
RH
2330 if (syms == NULL)
2331 goto error_return;
2332 }
2333 symcount = bfd_canonicalize_symtab (current, syms);
2334 if (symcount < 0)
2335 goto error_return;
2336
047066e1 2337 /* Now map over all the symbols, picking out the ones we
3a11e31e 2338 want. */
252b5132
RH
2339 for (src_count = 0; src_count < symcount; src_count++)
2340 {
2341 flagword flags = (syms[src_count])->flags;
2342 asection *sec = syms[src_count]->section;
2343
d5abbdf3
L
2344 if (((flags & (BSF_GLOBAL
2345 | BSF_WEAK
2346 | BSF_INDIRECT
2347 | BSF_GNU_UNIQUE)) != 0
a8da6403 2348 || bfd_is_com_section (sec))
77fb9c28 2349 && ! bfd_is_und_section (sec))
252b5132 2350 {
dc810e39 2351 bfd_size_type namelen;
77fb9c28
NC
2352 struct orl *new_map;
2353
047066e1 2354 /* This symbol will go into the archive header. */
252b5132
RH
2355 if (orl_count == orl_max)
2356 {
2357 orl_max *= 2;
c58b9523 2358 amt = orl_max * sizeof (struct orl);
a50b1753 2359 new_map = (struct orl *) bfd_realloc (map, amt);
c58b9523 2360 if (new_map == NULL)
252b5132
RH
2361 goto error_return;
2362
2363 map = new_map;
2364 }
2365
2366 namelen = strlen (syms[src_count]->name);
dc810e39 2367 amt = sizeof (char *);
a50b1753 2368 map[orl_count].name = (char **) bfd_alloc (arch, amt);
252b5132
RH
2369 if (map[orl_count].name == NULL)
2370 goto error_return;
a50b1753 2371 *(map[orl_count].name) = (char *) bfd_alloc (arch,
3a11e31e 2372 namelen + 1);
252b5132
RH
2373 if (*(map[orl_count].name) == NULL)
2374 goto error_return;
2375 strcpy (*(map[orl_count].name), syms[src_count]->name);
dc810e39
AM
2376 map[orl_count].u.abfd = current;
2377 map[orl_count].namidx = stridx;
252b5132
RH
2378
2379 stridx += namelen + 1;
2380 ++orl_count;
77fb9c28 2381 }
252b5132
RH
2382 }
2383 }
2384
2385 /* Now ask the BFD to free up any cached information, so we
2386 don't fill all of memory with symbol tables. */
2387 if (! bfd_free_cached_info (current))
2388 goto error_return;
2389 }
2390 }
2391
047066e1 2392 /* OK, now we have collected all the data, let's write them out. */
252b5132
RH
2393 ret = BFD_SEND (arch, write_armap,
2394 (arch, elength, map, orl_count, stridx));
2395
2396 if (syms_max > 0)
2397 free (syms);
2398 if (map != NULL)
2399 free (map);
2400 if (first_name != NULL)
2401 bfd_release (arch, first_name);
2402
2403 return ret;
2404
2405 error_return:
2406 if (syms_max > 0)
2407 free (syms);
2408 if (map != NULL)
2409 free (map);
2410 if (first_name != NULL)
2411 bfd_release (arch, first_name);
2412
b34976b6 2413 return FALSE;
252b5132
RH
2414}
2415
b34976b6 2416bfd_boolean
c58b9523
AM
2417bsd_write_armap (bfd *arch,
2418 unsigned int elength,
2419 struct orl *map,
2420 unsigned int orl_count,
2421 int stridx)
252b5132
RH
2422{
2423 int padit = stridx & 1;
2424 unsigned int ranlibsize = orl_count * BSD_SYMDEF_SIZE;
2425 unsigned int stringsize = stridx + padit;
d70910e8 2426 /* Include 8 bytes to store ranlibsize and stringsize in output. */
252b5132
RH
2427 unsigned int mapsize = ranlibsize + stringsize + 8;
2428 file_ptr firstreal;
2429 bfd *current = arch->archive_head;
06fc8a8c 2430 bfd *last_elt = current; /* Last element arch seen. */
252b5132
RH
2431 bfd_byte temp[4];
2432 unsigned int count;
2433 struct ar_hdr hdr;
36e4dce6 2434 long uid, gid;
252b5132
RH
2435
2436 firstreal = mapsize + elength + sizeof (struct ar_hdr) + SARMAG;
2437
0e29e6e8
AM
2438 /* If deterministic, we use 0 as the timestamp in the map.
2439 Some linkers may require that the archive filesystem modification
2440 time is less than (or near to) the archive map timestamp. Those
2441 linkers should not be used with deterministic mode. (GNU ld and
2442 Gold do not have this restriction.) */
2443 bfd_ardata (arch)->armap_timestamp = 0;
2444 uid = 0;
2445 gid = 0;
36e4dce6
CD
2446 if ((arch->flags & BFD_DETERMINISTIC_OUTPUT) == 0)
2447 {
0e29e6e8
AM
2448 struct stat statbuf;
2449
2450 if (stat (arch->filename, &statbuf) == 0)
2451 bfd_ardata (arch)->armap_timestamp = (statbuf.st_mtime
2452 + ARMAP_TIME_OFFSET);
36e4dce6
CD
2453 uid = getuid();
2454 gid = getgid();
2455 }
36e4dce6 2456
390c0e42
JJ
2457 memset (&hdr, ' ', sizeof (struct ar_hdr));
2458 memcpy (hdr.ar_name, RANLIBMAG, strlen (RANLIBMAG));
252b5132
RH
2459 bfd_ardata (arch)->armap_datepos = (SARMAG
2460 + offsetof (struct ar_hdr, ar_date[0]));
390c0e42 2461 _bfd_ar_spacepad (hdr.ar_date, sizeof (hdr.ar_date), "%ld",
3a11e31e 2462 bfd_ardata (arch)->armap_timestamp);
36e4dce6
CD
2463 _bfd_ar_spacepad (hdr.ar_uid, sizeof (hdr.ar_uid), "%ld", uid);
2464 _bfd_ar_spacepad (hdr.ar_gid, sizeof (hdr.ar_gid), "%ld", gid);
f1bb16f8
NC
2465 if (!_bfd_ar_sizepad (hdr.ar_size, sizeof (hdr.ar_size), mapsize))
2466 return FALSE;
390c0e42 2467 memcpy (hdr.ar_fmag, ARFMAG, 2);
c58b9523 2468 if (bfd_bwrite (&hdr, sizeof (struct ar_hdr), arch)
252b5132 2469 != sizeof (struct ar_hdr))
b34976b6 2470 return FALSE;
dc810e39 2471 H_PUT_32 (arch, ranlibsize, temp);
c58b9523 2472 if (bfd_bwrite (temp, sizeof (temp), arch) != sizeof (temp))
b34976b6 2473 return FALSE;
252b5132
RH
2474
2475 for (count = 0; count < orl_count; count++)
2476 {
35f0d396 2477 unsigned int offset;
252b5132
RH
2478 bfd_byte buf[BSD_SYMDEF_SIZE];
2479
dc810e39 2480 if (map[count].u.abfd != last_elt)
252b5132
RH
2481 {
2482 do
2483 {
3a11e31e 2484 struct areltdata *ared = arch_eltdata (current);
8f95b6e4
TG
2485
2486 firstreal += (ared->parsed_size + ared->extra_size
3a11e31e 2487 + sizeof (struct ar_hdr));
252b5132 2488 firstreal += firstreal % 2;
cc481421 2489 current = current->archive_next;
252b5132 2490 }
dc810e39 2491 while (current != map[count].u.abfd);
06fc8a8c 2492 }
252b5132 2493
5f8ebec5
NC
2494 /* The archive file format only has 4 bytes to store the offset
2495 of the member. Check to make sure that firstreal has not grown
2496 too big. */
35f0d396
L
2497 offset = (unsigned int) firstreal;
2498 if (firstreal != (file_ptr) offset)
5f8ebec5
NC
2499 {
2500 bfd_set_error (bfd_error_file_truncated);
2501 return FALSE;
2502 }
68ffbac6 2503
252b5132 2504 last_elt = current;
dc810e39
AM
2505 H_PUT_32 (arch, map[count].namidx, buf);
2506 H_PUT_32 (arch, firstreal, buf + BSD_SYMDEF_OFFSET_SIZE);
c58b9523 2507 if (bfd_bwrite (buf, BSD_SYMDEF_SIZE, arch)
dc810e39 2508 != BSD_SYMDEF_SIZE)
b34976b6 2509 return FALSE;
252b5132
RH
2510 }
2511
047066e1 2512 /* Now write the strings themselves. */
dc810e39 2513 H_PUT_32 (arch, stringsize, temp);
c58b9523 2514 if (bfd_bwrite (temp, sizeof (temp), arch) != sizeof (temp))
b34976b6 2515 return FALSE;
252b5132
RH
2516 for (count = 0; count < orl_count; count++)
2517 {
2518 size_t len = strlen (*map[count].name) + 1;
2519
c58b9523 2520 if (bfd_bwrite (*map[count].name, len, arch) != len)
b34976b6 2521 return FALSE;
252b5132
RH
2522 }
2523
2524 /* The spec sez this should be a newline. But in order to be
d70910e8 2525 bug-compatible for sun's ar we use a null. */
252b5132
RH
2526 if (padit)
2527 {
c58b9523 2528 if (bfd_bwrite ("", 1, arch) != 1)
b34976b6 2529 return FALSE;
252b5132
RH
2530 }
2531
b34976b6 2532 return TRUE;
252b5132
RH
2533}
2534
2535/* At the end of archive file handling, update the timestamp in the
2536 file, so the linker will accept it.
2537
b34976b6
AM
2538 Return TRUE if the timestamp was OK, or an unusual problem happened.
2539 Return FALSE if we updated the timestamp. */
252b5132 2540
b34976b6 2541bfd_boolean
c58b9523 2542_bfd_archive_bsd_update_armap_timestamp (bfd *arch)
252b5132
RH
2543{
2544 struct stat archstat;
2545 struct ar_hdr hdr;
252b5132 2546
36e4dce6
CD
2547 /* If creating deterministic archives, just leave the timestamp as-is. */
2548 if ((arch->flags & BFD_DETERMINISTIC_OUTPUT) != 0)
2549 return TRUE;
2550
252b5132
RH
2551 /* Flush writes, get last-write timestamp from file, and compare it
2552 to the timestamp IN the file. */
2553 bfd_flush (arch);
2554 if (bfd_stat (arch, &archstat) == -1)
2555 {
5fe39cae 2556 bfd_perror (_("Reading archive file mod timestamp"));
047066e1
KH
2557
2558 /* Can't read mod time for some reason. */
b34976b6 2559 return TRUE;
252b5132 2560 }
ae38509c 2561 if (((long) archstat.st_mtime) <= bfd_ardata (arch)->armap_timestamp)
047066e1 2562 /* OK by the linker's rules. */
b34976b6 2563 return TRUE;
252b5132
RH
2564
2565 /* Update the timestamp. */
2566 bfd_ardata (arch)->armap_timestamp = archstat.st_mtime + ARMAP_TIME_OFFSET;
2567
2568 /* Prepare an ASCII version suitable for writing. */
390c0e42
JJ
2569 memset (hdr.ar_date, ' ', sizeof (hdr.ar_date));
2570 _bfd_ar_spacepad (hdr.ar_date, sizeof (hdr.ar_date), "%ld",
3a11e31e 2571 bfd_ardata (arch)->armap_timestamp);
252b5132
RH
2572
2573 /* Write it into the file. */
2574 bfd_ardata (arch)->armap_datepos = (SARMAG
2575 + offsetof (struct ar_hdr, ar_date[0]));
2576 if (bfd_seek (arch, bfd_ardata (arch)->armap_datepos, SEEK_SET) != 0
c58b9523 2577 || (bfd_bwrite (hdr.ar_date, sizeof (hdr.ar_date), arch)
252b5132
RH
2578 != sizeof (hdr.ar_date)))
2579 {
5fe39cae 2580 bfd_perror (_("Writing updated armap timestamp"));
047066e1
KH
2581
2582 /* Some error while writing. */
b34976b6 2583 return TRUE;
252b5132
RH
2584 }
2585
047066e1 2586 /* We updated the timestamp successfully. */
b34976b6 2587 return FALSE;
252b5132
RH
2588}
2589\f
2590/* A coff armap looks like :
2591 lARMAG
2592 struct ar_hdr with name = '/'
2593 number of symbols
2594 offset of file for symbol 0
2595 offset of file for symbol 1
2596
2597 offset of file for symbol n-1
2598 symbol name 0
2599 symbol name 1
2600
06fc8a8c 2601 symbol name n-1 */
252b5132 2602
b34976b6 2603bfd_boolean
c58b9523
AM
2604coff_write_armap (bfd *arch,
2605 unsigned int elength,
2606 struct orl *map,
2607 unsigned int symbol_count,
2608 int stridx)
252b5132
RH
2609{
2610 /* The size of the ranlib is the number of exported symbols in the
08da05b0 2611 archive * the number of bytes in an int, + an int for the count. */
252b5132
RH
2612 unsigned int ranlibsize = (symbol_count * 4) + 4;
2613 unsigned int stringsize = stridx;
2614 unsigned int mapsize = stringsize + ranlibsize;
5f8ebec5 2615 file_ptr archive_member_file_ptr;
252b5132
RH
2616 bfd *current = arch->archive_head;
2617 unsigned int count;
2618 struct ar_hdr hdr;
252b5132
RH
2619 int padit = mapsize & 1;
2620
2621 if (padit)
2622 mapsize++;
2623
047066e1 2624 /* Work out where the first object file will go in the archive. */
252b5132
RH
2625 archive_member_file_ptr = (mapsize
2626 + elength
2627 + sizeof (struct ar_hdr)
2628 + SARMAG);
2629
390c0e42 2630 memset (&hdr, ' ', sizeof (struct ar_hdr));
252b5132 2631 hdr.ar_name[0] = '/';
f1bb16f8
NC
2632 if (!_bfd_ar_sizepad (hdr.ar_size, sizeof (hdr.ar_size), mapsize))
2633 return FALSE;
390c0e42 2634 _bfd_ar_spacepad (hdr.ar_date, sizeof (hdr.ar_date), "%ld",
3a11e31e
RM
2635 ((arch->flags & BFD_DETERMINISTIC_OUTPUT) == 0
2636 ? time (NULL) : 0));
047066e1 2637 /* This, at least, is what Intel coff sets the values to. */
390c0e42
JJ
2638 _bfd_ar_spacepad (hdr.ar_uid, sizeof (hdr.ar_uid), "%ld", 0);
2639 _bfd_ar_spacepad (hdr.ar_gid, sizeof (hdr.ar_gid), "%ld", 0);
2640 _bfd_ar_spacepad (hdr.ar_mode, sizeof (hdr.ar_mode), "%-7lo", 0);
2641 memcpy (hdr.ar_fmag, ARFMAG, 2);
252b5132 2642
047066e1 2643 /* Write the ar header for this item and the number of symbols. */
c58b9523 2644 if (bfd_bwrite (&hdr, sizeof (struct ar_hdr), arch)
252b5132 2645 != sizeof (struct ar_hdr))
b34976b6 2646 return FALSE;
252b5132 2647
4dae1ae7 2648 if (!bfd_write_bigendian_4byte_int (arch, symbol_count))
b34976b6 2649 return FALSE;
252b5132
RH
2650
2651 /* Two passes, first write the file offsets for each symbol -
2652 remembering that each offset is on a two byte boundary. */
2653
2654 /* Write out the file offset for the file associated with each
2655 symbol, and remember to keep the offsets padded out. */
2656
2657 current = arch->archive_head;
2658 count = 0;
c58b9523 2659 while (current != NULL && count < symbol_count)
252b5132 2660 {
047066e1
KH
2661 /* For each symbol which is used defined in this object, write
2662 out the object file's address in the archive. */
252b5132 2663
dc810e39 2664 while (count < symbol_count && map[count].u.abfd == current)
252b5132 2665 {
5f8ebec5
NC
2666 unsigned int offset = (unsigned int) archive_member_file_ptr;
2667
2668 /* Catch an attempt to grow an archive past its 4Gb limit. */
2669 if (archive_member_file_ptr != (file_ptr) offset)
2670 {
2671 bfd_set_error (bfd_error_file_truncated);
2672 return FALSE;
2673 }
2674 if (!bfd_write_bigendian_4byte_int (arch, offset))
b34976b6 2675 return FALSE;
252b5132
RH
2676 count++;
2677 }
a8da6403
NC
2678 archive_member_file_ptr += sizeof (struct ar_hdr);
2679 if (! bfd_is_thin_archive (arch))
3a11e31e
RM
2680 {
2681 /* Add size of this archive entry. */
2682 archive_member_file_ptr += arelt_size (current);
2683 /* Remember about the even alignment. */
2684 archive_member_file_ptr += archive_member_file_ptr % 2;
2685 }
cc481421 2686 current = current->archive_next;
252b5132
RH
2687 }
2688
047066e1 2689 /* Now write the strings themselves. */
252b5132
RH
2690 for (count = 0; count < symbol_count; count++)
2691 {
2692 size_t len = strlen (*map[count].name) + 1;
2693
c58b9523 2694 if (bfd_bwrite (*map[count].name, len, arch) != len)
b34976b6 2695 return FALSE;
252b5132
RH
2696 }
2697
2698 /* The spec sez this should be a newline. But in order to be
d70910e8 2699 bug-compatible for arc960 we use a null. */
252b5132
RH
2700 if (padit)
2701 {
c58b9523 2702 if (bfd_bwrite ("", 1, arch) != 1)
b34976b6 2703 return FALSE;
252b5132
RH
2704 }
2705
b34976b6 2706 return TRUE;
252b5132 2707}
eeb1f9ae
AM
2708
2709static int
2710archive_close_worker (void **slot, void *inf ATTRIBUTE_UNUSED)
2711{
2712 struct ar_cache *ent = (struct ar_cache *) *slot;
2713
2714 bfd_close_all_done (ent->arbfd);
2715 return 1;
2716}
2717
2718bfd_boolean
2719_bfd_archive_close_and_cleanup (bfd *abfd)
2720{
2721 if (bfd_read_p (abfd) && abfd->format == bfd_archive)
2722 {
2723 bfd *nbfd;
2724 bfd *next;
2725 htab_t htab;
2726
2727 /* Close nested archives (if this bfd is a thin archive). */
2728 for (nbfd = abfd->nested_archives; nbfd; nbfd = next)
2729 {
2730 next = nbfd->archive_next;
2731 bfd_close (nbfd);
2732 }
2733
2734 htab = bfd_ardata (abfd)->cache;
2735 if (htab)
2736 {
2737 htab_traverse_noresize (htab, archive_close_worker, NULL);
2738 htab_delete (htab);
2739 bfd_ardata (abfd)->cache = NULL;
2740 }
2741 }
2742 else if (arch_eltdata (abfd) != NULL)
2743 {
2744 struct areltdata *ared = arch_eltdata (abfd);
2745 htab_t htab = (htab_t) ared->parent_cache;
2746
2747 if (htab)
2748 {
2749 struct ar_cache ent;
2750 void **slot;
2751
2752 ent.ptr = ared->key;
2753 slot = htab_find_slot (htab, &ent, NO_INSERT);
2754 if (slot != NULL)
2755 {
2756 BFD_ASSERT (((struct ar_cache *) *slot)->arbfd == abfd);
2757 htab_clear_slot (htab, slot);
2758 }
2759 }
2760 }
2761 return TRUE;
2762}
This page took 0.844091 seconds and 4 git commands to generate.