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