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