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