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