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