PowerPC Rename powerxx to power10
[deliverable/binutils-gdb.git] / bfd / vms-lib.c
1 /* BFD back-end for VMS archive files.
2
3 Copyright (C) 2010-2020 Free Software Foundation, Inc.
4 Written by Tristan Gingold <gingold@adacore.com>, AdaCore.
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 3 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., 51 Franklin Street - Fifth Floor, Boston,
21 MA 02110-1301, USA. */
22
23 #include "sysdep.h"
24 #include "bfd.h"
25 #include "libbfd.h"
26 #include "safe-ctype.h"
27 #include "bfdver.h"
28 #include "libiberty.h"
29 #include "vms.h"
30 #include "vms/lbr.h"
31 #include "vms/dcx.h"
32
33 /* The standard VMS disk block size. */
34 #ifndef VMS_BLOCK_SIZE
35 #define VMS_BLOCK_SIZE 512
36 #endif
37
38 /* Maximum key length (which is also the maximum symbol length in archive). */
39 #define MAX_KEYLEN 128
40 #define MAX_EKEYLEN 1024
41
42 /* DCX Submaps. */
43
44 struct dcxsbm_desc
45 {
46 unsigned char min_char;
47 unsigned char max_char;
48 unsigned char *flags;
49 unsigned char *nodes;
50 unsigned short *next;
51 };
52
53 /* Kind of library. Used to filter in archive_p. */
54
55 enum vms_lib_kind
56 {
57 vms_lib_vax,
58 vms_lib_alpha,
59 vms_lib_ia64,
60 vms_lib_txt
61 };
62
63 /* Back-end private data. */
64
65 struct lib_tdata
66 {
67 /* Standard tdata for an archive. But we don't use many fields. */
68 struct artdata artdata;
69
70 /* Major version. */
71 unsigned char ver;
72
73 /* Type of the archive. */
74 unsigned char type;
75
76 /* Kind of archive. Summary of its type. */
77 enum vms_lib_kind kind;
78
79 /* Total size of the mhd (element header). */
80 unsigned int mhd_size;
81
82 /* Creation date. */
83 unsigned int credat_lo;
84 unsigned int credat_hi;
85
86 /* Vector of modules (archive elements), already sorted. */
87 unsigned int nbr_modules;
88 struct carsym *modules;
89 bfd **cache;
90
91 /* DCX (decompression) data. */
92 unsigned int nbr_dcxsbm;
93 struct dcxsbm_desc *dcxsbm;
94 };
95
96 #define bfd_libdata(bfd) ((struct lib_tdata *)((bfd)->tdata.any))
97
98 /* End-Of-Text pattern. This is a special record to mark the end of file. */
99
100 static const unsigned char eotdesc[] = { 0x03, 0x00, 0x77, 0x00, 0x77, 0x00 };
101
102 /* Describe the current state of carsym entries while building the archive
103 table of content. Things are simple with Alpha archives as the number
104 of entries is known, but with IA64 archives a entry can make a reference
105 to severals members. Therefore we must be able to extend the table on the
106 fly, but it should be allocated on the bfd - which doesn't support realloc.
107 To reduce the overhead, the table is initially allocated in the BFD's
108 objalloc and extended if necessary on the heap. In the later case, it
109 is finally copied to the BFD's objalloc so that it will automatically be
110 freed. */
111
112 struct carsym_mem
113 {
114 /* The table of content. */
115 struct carsym *idx;
116
117 /* Number of entries used in the table. */
118 unsigned int nbr;
119
120 /* Maximum number of entries. */
121 unsigned int max;
122
123 /* Do not allocate more that this number of entries. */
124 unsigned int limit;
125
126 /* If true, the table was reallocated on the heap. If false, it is still
127 in the BFD's objalloc. */
128 bfd_boolean realloced;
129 };
130
131 /* Simply add a name to the index. */
132
133 static bfd_boolean
134 vms_add_index (struct carsym_mem *cs, char *name,
135 unsigned int idx_vbn, unsigned int idx_off)
136 {
137 if (cs->nbr == cs->max)
138 {
139 struct carsym *n;
140 size_t amt;
141
142 if (cs->max > -33u / 2 || cs->max >= cs->limit)
143 {
144 bfd_set_error (bfd_error_file_too_big);
145 return FALSE;
146 }
147 cs->max = 2 * cs->max + 32;
148 if (cs->max > cs->limit)
149 cs->max = cs->limit;
150 if (_bfd_mul_overflow (cs->max, sizeof (struct carsym), &amt))
151 {
152 bfd_set_error (bfd_error_file_too_big);
153 return FALSE;
154 }
155
156 if (!cs->realloced)
157 {
158 n = bfd_malloc (amt);
159 if (n == NULL)
160 return FALSE;
161 memcpy (n, cs->idx, cs->nbr * sizeof (struct carsym));
162 /* And unfortunately we can't free cs->idx. */
163 }
164 else
165 {
166 n = bfd_realloc_or_free (cs->idx, amt);
167 if (n == NULL)
168 return FALSE;
169 }
170 cs->idx = n;
171 cs->realloced = TRUE;
172 }
173 cs->idx[cs->nbr].file_offset = (idx_vbn - 1) * VMS_BLOCK_SIZE + idx_off;
174 cs->idx[cs->nbr].name = name;
175 cs->nbr++;
176 return TRUE;
177 }
178
179 /* Follow all member of a lns list (pointed by RFA) and add indexes for
180 NAME. Return FALSE in case of error. */
181
182 static bfd_boolean
183 vms_add_indexes_from_list (bfd *abfd, struct carsym_mem *cs, char *name,
184 struct vms_rfa *rfa)
185 {
186 struct vms_lns lns;
187 unsigned int vbn;
188 file_ptr off;
189
190 while (1)
191 {
192 vbn = bfd_getl32 (rfa->vbn);
193 if (vbn == 0)
194 return TRUE;
195
196 /* Read the LHS. */
197 off = (vbn - 1) * VMS_BLOCK_SIZE + bfd_getl16 (rfa->offset);
198 if (bfd_seek (abfd, off, SEEK_SET) != 0
199 || bfd_bread (&lns, sizeof (lns), abfd) != sizeof (lns))
200 return FALSE;
201
202 if (!vms_add_index (cs, name,
203 bfd_getl32 (lns.modrfa.vbn),
204 bfd_getl16 (lns.modrfa.offset)))
205 return FALSE;
206
207 rfa = &lns.nxtrfa;
208 }
209 }
210
211 /* Read block VBN from ABFD and store it into BLK. Return FALSE in case of error. */
212
213 static bfd_boolean
214 vms_read_block (bfd *abfd, unsigned int vbn, void *blk)
215 {
216 file_ptr off;
217
218 off = (vbn - 1) * VMS_BLOCK_SIZE;
219 if (bfd_seek (abfd, off, SEEK_SET) != 0
220 || bfd_bread (blk, VMS_BLOCK_SIZE, abfd) != VMS_BLOCK_SIZE)
221 return FALSE;
222
223 return TRUE;
224 }
225
226 /* Write the content of BLK to block VBN of ABFD. Return FALSE in case of error. */
227
228 static bfd_boolean
229 vms_write_block (bfd *abfd, unsigned int vbn, void *blk)
230 {
231 file_ptr off;
232
233 off = (vbn - 1) * VMS_BLOCK_SIZE;
234 if (bfd_seek (abfd, off, SEEK_SET) != 0
235 || bfd_bwrite (blk, VMS_BLOCK_SIZE, abfd) != VMS_BLOCK_SIZE)
236 return FALSE;
237
238 return TRUE;
239 }
240
241 /* Read index block VBN and put the entry in **IDX (which is updated).
242 If the entry is indirect, recurse. */
243
244 static bfd_boolean
245 vms_traverse_index (bfd *abfd, unsigned int vbn, struct carsym_mem *cs,
246 unsigned int recur_count)
247 {
248 struct vms_indexdef indexdef;
249 file_ptr off;
250 unsigned char *p;
251 unsigned char *endp;
252 unsigned int n;
253
254 if (recur_count == 100)
255 {
256 bfd_set_error (bfd_error_bad_value);
257 return FALSE;
258 }
259
260 /* Read the index block. */
261 BFD_ASSERT (sizeof (indexdef) == VMS_BLOCK_SIZE);
262 if (!vms_read_block (abfd, vbn, &indexdef))
263 return FALSE;
264
265 /* Traverse it. */
266 p = &indexdef.keys[0];
267 n = bfd_getl16 (indexdef.used);
268 if (n > sizeof (indexdef.keys))
269 return FALSE;
270 endp = p + n;
271 while (p < endp)
272 {
273 unsigned int idx_vbn;
274 unsigned int idx_off;
275 unsigned int keylen;
276 unsigned char *keyname;
277 unsigned int flags;
278
279 /* Extract key length. */
280 if (bfd_libdata (abfd)->ver == LBR_MAJORID)
281 {
282 struct vms_idx *ridx = (struct vms_idx *)p;
283
284 idx_vbn = bfd_getl32 (ridx->rfa.vbn);
285 idx_off = bfd_getl16 (ridx->rfa.offset);
286
287 keylen = ridx->keylen;
288 flags = 0;
289 keyname = ridx->keyname;
290 }
291 else if (bfd_libdata (abfd)->ver == LBR_ELFMAJORID)
292 {
293 struct vms_elfidx *ridx = (struct vms_elfidx *)p;
294
295 idx_vbn = bfd_getl32 (ridx->rfa.vbn);
296 idx_off = bfd_getl16 (ridx->rfa.offset);
297
298 keylen = bfd_getl16 (ridx->keylen);
299 flags = ridx->flags;
300 keyname = ridx->keyname;
301 }
302 else
303 return FALSE;
304
305 /* Illegal value. */
306 if (idx_vbn == 0)
307 return FALSE;
308
309 /* Point to the next index entry. */
310 p = keyname + keylen;
311 if (p > endp)
312 return FALSE;
313
314 if (idx_off == RFADEF__C_INDEX)
315 {
316 /* Indirect entry. Recurse. */
317 if (!vms_traverse_index (abfd, idx_vbn, cs, recur_count + 1))
318 return FALSE;
319 }
320 else
321 {
322 /* Add a new entry. */
323 char *name;
324
325 if (flags & ELFIDX__SYMESC)
326 {
327 /* Extended key name. */
328 unsigned int noff = 0;
329 unsigned int koff;
330 unsigned int kvbn;
331 struct vms_kbn *kbn;
332 unsigned char kblk[VMS_BLOCK_SIZE];
333
334 /* Sanity check. */
335 if (keylen != sizeof (struct vms_kbn))
336 return FALSE;
337
338 kbn = (struct vms_kbn *)keyname;
339 keylen = bfd_getl16 (kbn->keylen);
340
341 name = bfd_alloc (abfd, keylen + 1);
342 if (name == NULL)
343 return FALSE;
344 kvbn = bfd_getl32 (kbn->rfa.vbn);
345 koff = bfd_getl16 (kbn->rfa.offset);
346
347 /* Read the key, chunk by chunk. */
348 do
349 {
350 unsigned int klen;
351
352 if (!vms_read_block (abfd, kvbn, kblk))
353 return FALSE;
354 if (koff > sizeof (kblk) - sizeof (struct vms_kbn))
355 return FALSE;
356 kbn = (struct vms_kbn *)(kblk + koff);
357 klen = bfd_getl16 (kbn->keylen);
358 if (klen > sizeof (kblk) - koff)
359 return FALSE;
360 kvbn = bfd_getl32 (kbn->rfa.vbn);
361 koff = bfd_getl16 (kbn->rfa.offset);
362
363 if (noff + klen > keylen)
364 return FALSE;
365 memcpy (name + noff, kbn + 1, klen);
366 noff += klen;
367 }
368 while (kvbn != 0);
369
370 /* Sanity check. */
371 if (noff != keylen)
372 return FALSE;
373 }
374 else
375 {
376 /* Usual key name. */
377 name = bfd_alloc (abfd, keylen + 1);
378 if (name == NULL)
379 return FALSE;
380
381 memcpy (name, keyname, keylen);
382 }
383 name[keylen] = 0;
384
385 if (flags & ELFIDX__LISTRFA)
386 {
387 struct vms_lhs lhs;
388
389 /* Read the LHS. */
390 off = (idx_vbn - 1) * VMS_BLOCK_SIZE + idx_off;
391 if (bfd_seek (abfd, off, SEEK_SET) != 0
392 || bfd_bread (&lhs, sizeof (lhs), abfd) != sizeof (lhs))
393 return FALSE;
394
395 /* These extra entries may cause reallocation of CS. */
396 if (!vms_add_indexes_from_list (abfd, cs, name, &lhs.ng_g_rfa))
397 return FALSE;
398 if (!vms_add_indexes_from_list (abfd, cs, name, &lhs.ng_wk_rfa))
399 return FALSE;
400 if (!vms_add_indexes_from_list (abfd, cs, name, &lhs.g_g_rfa))
401 return FALSE;
402 if (!vms_add_indexes_from_list (abfd, cs, name, &lhs.g_wk_rfa))
403 return FALSE;
404 }
405 else
406 {
407 if (!vms_add_index (cs, name, idx_vbn, idx_off))
408 return FALSE;
409 }
410 }
411 }
412
413 return TRUE;
414 }
415
416 /* Read index #IDX, which must have NBREL entries. */
417
418 static struct carsym *
419 vms_lib_read_index (bfd *abfd, int idx, unsigned int *nbrel)
420 {
421 struct vms_idd idd;
422 unsigned int flags;
423 unsigned int vbn;
424 ufile_ptr filesize;
425 size_t amt;
426 struct carsym *csbuf;
427 struct carsym_mem csm;
428
429 /* Read index desription. */
430 if (bfd_seek (abfd, LHD_IDXDESC + idx * IDD_LENGTH, SEEK_SET) != 0
431 || bfd_bread (&idd, sizeof (idd), abfd) != sizeof (idd))
432 return NULL;
433
434 /* Sanity checks. */
435 flags = bfd_getl16 (idd.flags);
436 if (!(flags & IDD__FLAGS_ASCII)
437 || !(flags & IDD__FLAGS_VARLENIDX))
438 return NULL;
439
440 filesize = bfd_get_file_size (abfd);
441 csm.nbr = 0;
442 csm.max = *nbrel;
443 csm.limit = -1u;
444 csm.realloced = FALSE;
445 if (filesize != 0)
446 {
447 /* Put an upper bound based on a file full of single char keys.
448 This is to prevent fuzzed binary silliness. It is easily
449 possible to set up loops over file blocks that add syms
450 without end. */
451 if (filesize / (sizeof (struct vms_rfa) + 2) <= -1u)
452 csm.limit = filesize / (sizeof (struct vms_rfa) + 2);
453 }
454 if (csm.max > csm.limit)
455 csm.max = csm.limit;
456 if (_bfd_mul_overflow (csm.max, sizeof (struct carsym), &amt))
457 return NULL;
458 csm.idx = csbuf = bfd_alloc (abfd, amt);
459 if (csm.idx == NULL)
460 return NULL;
461
462 /* Note: if the index is empty, there is no block to traverse. */
463 vbn = bfd_getl32 (idd.vbn);
464 if (vbn != 0 && !vms_traverse_index (abfd, vbn, &csm, 0))
465 {
466 if (csm.realloced)
467 free (csm.idx);
468
469 /* Note: in case of error, we can free what was allocated on the
470 BFD's objalloc. */
471 bfd_release (abfd, csbuf);
472 return NULL;
473 }
474
475 if (csm.realloced)
476 {
477 /* There are more entries than the first estimate. Allocate on
478 the BFD's objalloc. */
479 csbuf = bfd_alloc (abfd, csm.nbr * sizeof (struct carsym));
480 if (csbuf == NULL)
481 return NULL;
482 memcpy (csbuf, csm.idx, csm.nbr * sizeof (struct carsym));
483 free (csm.idx);
484 csm.idx = csbuf;
485 }
486 *nbrel = csm.nbr;
487 return csm.idx;
488 }
489
490 /* Standard function. */
491
492 static bfd_cleanup
493 _bfd_vms_lib_archive_p (bfd *abfd, enum vms_lib_kind kind)
494 {
495 struct vms_lhd lhd;
496 unsigned int sanity;
497 unsigned int majorid;
498 struct lib_tdata *tdata_hold;
499 struct lib_tdata *tdata;
500 unsigned int dcxvbn;
501 unsigned int nbr_ent;
502
503 /* Read header. */
504 if (bfd_bread (&lhd, sizeof (lhd), abfd) != sizeof (lhd))
505 {
506 if (bfd_get_error () != bfd_error_system_call)
507 bfd_set_error (bfd_error_wrong_format);
508 return NULL;
509 }
510
511 /* Check sanity (= magic) number. */
512 sanity = bfd_getl32 (lhd.sanity);
513 if (!(sanity == LHD_SANEID3
514 || sanity == LHD_SANEID6
515 || sanity == LHD_SANEID_DCX))
516 {
517 bfd_set_error (bfd_error_wrong_format);
518 return NULL;
519 }
520 majorid = bfd_getl32 (lhd.majorid);
521
522 /* Check archive kind. */
523 switch (kind)
524 {
525 case vms_lib_alpha:
526 if ((lhd.type != LBR__C_TYP_EOBJ && lhd.type != LBR__C_TYP_ESHSTB)
527 || majorid != LBR_MAJORID
528 || lhd.nindex != 2)
529 {
530 bfd_set_error (bfd_error_wrong_format);
531 return NULL;
532 }
533 break;
534 case vms_lib_ia64:
535 if ((lhd.type != LBR__C_TYP_IOBJ && lhd.type != LBR__C_TYP_ISHSTB)
536 || majorid != LBR_ELFMAJORID
537 || lhd.nindex != 2)
538 {
539 bfd_set_error (bfd_error_wrong_format);
540 return NULL;
541 }
542 break;
543 case vms_lib_txt:
544 if ((lhd.type != LBR__C_TYP_TXT
545 && lhd.type != LBR__C_TYP_MLB
546 && lhd.type != LBR__C_TYP_HLP)
547 || majorid != LBR_MAJORID
548 || lhd.nindex != 1)
549 {
550 bfd_set_error (bfd_error_wrong_format);
551 return NULL;
552 }
553 break;
554 default:
555 abort ();
556 }
557
558 /* Allocate and initialize private data. */
559 tdata_hold = bfd_libdata (abfd);
560 tdata = (struct lib_tdata *) bfd_zalloc (abfd, sizeof (struct lib_tdata));
561 if (tdata == NULL)
562 return NULL;
563 abfd->tdata.any = (void *)tdata;
564 tdata->ver = majorid;
565 tdata->mhd_size = MHD__C_USRDAT + lhd.mhdusz;
566 tdata->type = lhd.type;
567 tdata->kind = kind;
568 tdata->credat_lo = bfd_getl32 (lhd.credat + 0);
569 tdata->credat_hi = bfd_getl32 (lhd.credat + 4);
570
571 /* Read indexes. */
572 tdata->nbr_modules = bfd_getl32 (lhd.modcnt);
573 tdata->artdata.symdef_count = bfd_getl32 (lhd.idxcnt) - tdata->nbr_modules;
574 nbr_ent = tdata->nbr_modules;
575 tdata->modules = vms_lib_read_index (abfd, 0, &nbr_ent);
576 if (tdata->modules == NULL || nbr_ent != tdata->nbr_modules)
577 goto err;
578 if (lhd.nindex == 2)
579 {
580 nbr_ent = tdata->artdata.symdef_count;
581 tdata->artdata.symdefs = vms_lib_read_index (abfd, 1, &nbr_ent);
582 if (tdata->artdata.symdefs == NULL)
583 goto err;
584 /* Only IA64 archives may have more entries in the index that what
585 was declared. */
586 if (nbr_ent != tdata->artdata.symdef_count
587 && kind != vms_lib_ia64)
588 goto err;
589 tdata->artdata.symdef_count = nbr_ent;
590 }
591 tdata->cache = bfd_zalloc (abfd, sizeof (bfd *) * tdata->nbr_modules);
592 if (tdata->cache == NULL)
593 goto err;
594
595 /* Read DCX submaps. */
596 dcxvbn = bfd_getl32 (lhd.dcxmapvbn);
597 if (dcxvbn != 0)
598 {
599 unsigned char buf_reclen[4];
600 unsigned int reclen;
601 unsigned char *buf;
602 struct vms_dcxmap *map;
603 unsigned int sbm_off;
604 unsigned int i;
605
606 if (bfd_seek (abfd, (dcxvbn - 1) * VMS_BLOCK_SIZE, SEEK_SET) != 0
607 || bfd_bread (buf_reclen, sizeof (buf_reclen), abfd)
608 != sizeof (buf_reclen))
609 goto err;
610 reclen = bfd_getl32 (buf_reclen);
611 if (reclen < sizeof (struct vms_dcxmap))
612 goto err;
613 buf = _bfd_malloc_and_read (abfd, reclen, reclen);
614 if (buf == NULL)
615 goto err;
616 map = (struct vms_dcxmap *)buf;
617 tdata->nbr_dcxsbm = bfd_getl16 (map->nsubs);
618 sbm_off = bfd_getl16 (map->sub0);
619 tdata->dcxsbm = (struct dcxsbm_desc *)bfd_alloc
620 (abfd, tdata->nbr_dcxsbm * sizeof (struct dcxsbm_desc));
621 for (i = 0; i < tdata->nbr_dcxsbm; i++)
622 {
623 struct vms_dcxsbm *sbm;
624 struct dcxsbm_desc *sbmdesc = &tdata->dcxsbm[i];
625 unsigned int sbm_len;
626 unsigned int sbm_sz;
627 unsigned int off;
628 unsigned char *buf1;
629 unsigned int l, j;
630
631 if (sbm_off > reclen
632 || reclen - sbm_off < sizeof (struct vms_dcxsbm))
633 {
634 err_free_buf:
635 free (buf);
636 goto err;
637 }
638 sbm = (struct vms_dcxsbm *) (buf + sbm_off);
639 sbm_sz = bfd_getl16 (sbm->size);
640 sbm_off += sbm_sz;
641 if (sbm_off > reclen)
642 goto err_free_buf;
643
644 sbmdesc->min_char = sbm->min_char;
645 BFD_ASSERT (sbmdesc->min_char == 0);
646 sbmdesc->max_char = sbm->max_char;
647 sbm_len = sbmdesc->max_char - sbmdesc->min_char + 1;
648 l = (2 * sbm_len + 7) / 8;
649 if (sbm_sz < sizeof (struct vms_dcxsbm) + l + sbm_len
650 || (tdata->nbr_dcxsbm > 1
651 && sbm_sz < sizeof (struct vms_dcxsbm) + l + 3 * sbm_len))
652 goto err_free_buf;
653 sbmdesc->flags = (unsigned char *)bfd_alloc (abfd, l);
654 off = bfd_getl16 (sbm->flags);
655 if (off > sbm_sz
656 || sbm_sz - off < l)
657 goto err_free_buf;
658 memcpy (sbmdesc->flags, (bfd_byte *) sbm + off, l);
659 sbmdesc->nodes = (unsigned char *)bfd_alloc (abfd, 2 * sbm_len);
660 off = bfd_getl16 (sbm->nodes);
661 if (off > sbm_sz
662 || sbm_sz - off < 2 * sbm_len)
663 goto err_free_buf;
664 memcpy (sbmdesc->nodes, (bfd_byte *) sbm + off, 2 * sbm_len);
665 off = bfd_getl16 (sbm->next);
666 if (off != 0)
667 {
668 if (off > sbm_sz
669 || sbm_sz - off < 2 * sbm_len)
670 goto err_free_buf;
671 /* Read the 'next' array. */
672 sbmdesc->next = (unsigned short *) bfd_alloc (abfd, 2 * sbm_len);
673 buf1 = (bfd_byte *) sbm + off;
674 for (j = 0; j < sbm_len; j++)
675 sbmdesc->next[j] = bfd_getl16 (buf1 + j * 2);
676 }
677 else
678 {
679 /* There is no next array if there is only one submap. */
680 BFD_ASSERT (tdata->nbr_dcxsbm == 1);
681 sbmdesc->next = NULL;
682 }
683 }
684 free (buf);
685 }
686 else
687 {
688 tdata->nbr_dcxsbm = 0;
689 }
690
691 /* The map is always present. Also mark shared image library. */
692 abfd->has_armap = TRUE;
693 if (tdata->type == LBR__C_TYP_ESHSTB || tdata->type == LBR__C_TYP_ISHSTB)
694 abfd->is_thin_archive = TRUE;
695
696 return _bfd_no_cleanup;
697
698 err:
699 bfd_release (abfd, tdata);
700 abfd->tdata.any = (void *)tdata_hold;
701 return NULL;
702 }
703
704 /* Standard function for alpha libraries. */
705
706 bfd_cleanup
707 _bfd_vms_lib_alpha_archive_p (bfd *abfd)
708 {
709 return _bfd_vms_lib_archive_p (abfd, vms_lib_alpha);
710 }
711
712 /* Standard function for ia64 libraries. */
713
714 bfd_cleanup
715 _bfd_vms_lib_ia64_archive_p (bfd *abfd)
716 {
717 return _bfd_vms_lib_archive_p (abfd, vms_lib_ia64);
718 }
719
720 /* Standard function for text libraries. */
721
722 static bfd_cleanup
723 _bfd_vms_lib_txt_archive_p (bfd *abfd)
724 {
725 return _bfd_vms_lib_archive_p (abfd, vms_lib_txt);
726 }
727
728 /* Standard bfd function. */
729
730 static bfd_boolean
731 _bfd_vms_lib_mkarchive (bfd *abfd, enum vms_lib_kind kind)
732 {
733 struct lib_tdata *tdata;
734
735 tdata = (struct lib_tdata *) bfd_zalloc (abfd, sizeof (struct lib_tdata));
736 if (tdata == NULL)
737 return FALSE;
738
739 abfd->tdata.any = (void *)tdata;
740 vms_get_time (&tdata->credat_hi, &tdata->credat_lo);
741
742 tdata->kind = kind;
743 switch (kind)
744 {
745 case vms_lib_alpha:
746 tdata->ver = LBR_MAJORID;
747 tdata->mhd_size = offsetof (struct vms_mhd, pad1);
748 tdata->type = LBR__C_TYP_EOBJ;
749 break;
750 case vms_lib_ia64:
751 tdata->ver = LBR_ELFMAJORID;
752 tdata->mhd_size = sizeof (struct vms_mhd);
753 tdata->type = LBR__C_TYP_IOBJ;
754 break;
755 default:
756 abort ();
757 }
758
759 tdata->nbr_modules = 0;
760 tdata->artdata.symdef_count = 0;
761 tdata->modules = NULL;
762 tdata->artdata.symdefs = NULL;
763 tdata->cache = NULL;
764
765 return TRUE;
766 }
767
768 bfd_boolean
769 _bfd_vms_lib_alpha_mkarchive (bfd *abfd)
770 {
771 return _bfd_vms_lib_mkarchive (abfd, vms_lib_alpha);
772 }
773
774 bfd_boolean
775 _bfd_vms_lib_ia64_mkarchive (bfd *abfd)
776 {
777 return _bfd_vms_lib_mkarchive (abfd, vms_lib_ia64);
778 }
779
780 /* Find NAME in the symbol index. Return the index. */
781
782 symindex
783 _bfd_vms_lib_find_symbol (bfd *abfd, const char *name)
784 {
785 struct lib_tdata *tdata = bfd_libdata (abfd);
786 carsym *syms = tdata->artdata.symdefs;
787 int lo, hi;
788
789 /* Open-coded binary search for speed. */
790 lo = 0;
791 hi = tdata->artdata.symdef_count - 1;
792
793 while (lo <= hi)
794 {
795 int mid = lo + (hi - lo) / 2;
796 int diff;
797
798 diff = (char)(name[0] - syms[mid].name[0]);
799 if (diff == 0)
800 diff = strcmp (name, syms[mid].name);
801 if (diff == 0)
802 return mid;
803 else if (diff < 0)
804 hi = mid - 1;
805 else
806 lo = mid + 1;
807 }
808 return BFD_NO_MORE_SYMBOLS;
809 }
810
811 /* IO vector for archive member. Need that because members are not linearly
812 stored in archives. */
813
814 struct vms_lib_iovec
815 {
816 /* Current offset. */
817 ufile_ptr where;
818
819 /* Length of the module, when known. */
820 ufile_ptr file_len;
821
822 /* Current position in the record from bfd_bread point of view (ie, after
823 decompression). 0 means that no data byte have been read, -2 and -1
824 are reserved for the length word. */
825 int rec_pos;
826 #define REC_POS_NL -4
827 #define REC_POS_PAD -3
828 #define REC_POS_LEN0 -2
829 #define REC_POS_LEN1 -1
830
831 /* Record length. */
832 unsigned short rec_len;
833 /* Number of bytes to read in the current record. */
834 unsigned short rec_rem;
835 /* Offset of the next block. */
836 file_ptr next_block;
837 /* Current *data* offset in the data block. */
838 unsigned short blk_off;
839
840 /* Offset of the first block. Extracted from the index. */
841 file_ptr first_block;
842
843 /* Initial next_block. Extracted when the MHD is read. */
844 file_ptr init_next_block;
845 /* Initial blk_off, once the MHD is read. */
846 unsigned short init_blk_off;
847
848 /* Used to store any 3 byte record, which could be the EOF pattern. */
849 unsigned char pattern[4];
850
851 /* DCX. */
852 struct dcxsbm_desc *dcxsbms;
853 /* Current submap. */
854 struct dcxsbm_desc *dcx_sbm;
855 /* Current offset in the submap. */
856 unsigned int dcx_offset;
857 int dcx_pos;
858
859 /* Compressed buffer. */
860 unsigned char *dcx_buf;
861 /* Size of the buffer. Used to resize. */
862 unsigned int dcx_max;
863 /* Number of valid bytes in the buffer. */
864 unsigned int dcx_rlen;
865 };
866
867 /* Return the current position. */
868
869 static file_ptr
870 vms_lib_btell (struct bfd *abfd)
871 {
872 struct vms_lib_iovec *vec = (struct vms_lib_iovec *) abfd->iostream;
873 return vec->where;
874 }
875
876 /* Read the header of the next data block if all bytes of the current block
877 have been read. */
878
879 static bfd_boolean
880 vms_lib_read_block (struct bfd *abfd)
881 {
882 struct vms_lib_iovec *vec = (struct vms_lib_iovec *) abfd->iostream;
883
884 if (vec->blk_off == DATA__LENGTH)
885 {
886 unsigned char hdr[DATA__DATA];
887
888 /* Read next block. */
889 if (bfd_seek (abfd->my_archive, vec->next_block, SEEK_SET) != 0)
890 return FALSE;
891 if (bfd_bread (hdr, sizeof (hdr), abfd->my_archive) != sizeof (hdr))
892 return FALSE;
893 vec->next_block = (bfd_getl32 (hdr + 2) - 1) * VMS_BLOCK_SIZE;
894 vec->blk_off = sizeof (hdr);
895 }
896 return TRUE;
897 }
898
899 /* Read NBYTES from ABFD into BUF if not NULL. If BUF is NULL, bytes are
900 not stored. Read linearly from the library, but handle blocks. This
901 function does not handle records nor EOF. */
902
903 static file_ptr
904 vms_lib_bread_raw (struct bfd *abfd, unsigned char *buf, file_ptr nbytes)
905 {
906 struct vms_lib_iovec *vec = (struct vms_lib_iovec *) abfd->iostream;
907 file_ptr res;
908
909 res = 0;
910 while (nbytes > 0)
911 {
912 unsigned int l;
913
914 /* Be sure the current data block is read. */
915 if (!vms_lib_read_block (abfd))
916 return -1;
917
918 /* Do not read past the data block, do not read more than requested. */
919 l = DATA__LENGTH - vec->blk_off;
920 if (l > nbytes)
921 l = nbytes;
922 if (l == 0)
923 return 0;
924 if (buf != NULL)
925 {
926 /* Really read into BUF. */
927 if (bfd_bread (buf, l, abfd->my_archive) != l)
928 return -1;
929 }
930 else
931 {
932 /* Make as if we are reading. */
933 if (bfd_seek (abfd->my_archive, l, SEEK_CUR) != 0)
934 return -1;
935 }
936
937 if (buf != NULL)
938 buf += l;
939 vec->blk_off += l;
940 nbytes -= l;
941 res += l;
942 }
943 return res;
944 }
945
946 /* Decompress NBYTES from VEC. Store the bytes into BUF if not NULL. */
947
948 static file_ptr
949 vms_lib_dcx (struct vms_lib_iovec *vec, unsigned char *buf, file_ptr nbytes)
950 {
951 struct dcxsbm_desc *sbm;
952 unsigned int i;
953 unsigned int offset;
954 unsigned int j;
955 file_ptr res = 0;
956
957 /* The loop below expect to deliver at least one byte. */
958 if (nbytes == 0)
959 return 0;
960
961 /* Get the current state. */
962 sbm = vec->dcx_sbm;
963 offset = vec->dcx_offset;
964 j = vec->dcx_pos & 7;
965
966 for (i = vec->dcx_pos >> 3; i < vec->dcx_rlen; i++)
967 {
968 unsigned char b = vec->dcx_buf[i];
969
970 for (; j < 8; j++)
971 {
972 if (b & (1 << j))
973 offset++;
974 if (!(sbm->flags[offset >> 3] & (1 << (offset & 7))))
975 {
976 unsigned int n_offset = sbm->nodes[offset];
977 if (n_offset == 0)
978 {
979 /* End of buffer. Stay where we are. */
980 vec->dcx_pos = (i << 3) + j;
981 if (b & (1 << j))
982 offset--;
983 vec->dcx_offset = offset;
984 vec->dcx_sbm = sbm;
985 return res;
986 }
987 offset = 2 * n_offset;
988 }
989 else
990 {
991 unsigned char v = sbm->nodes[offset];
992
993 if (sbm->next != NULL)
994 sbm = vec->dcxsbms + sbm->next[v];
995 offset = 0;
996 res++;
997
998 if (buf)
999 {
1000 *buf++ = v;
1001 nbytes--;
1002
1003 if (nbytes == 0)
1004 {
1005 vec->dcx_pos = (i << 3) + j + 1;
1006 vec->dcx_offset = offset;
1007 vec->dcx_sbm = sbm;
1008
1009 return res;
1010 }
1011 }
1012 }
1013 }
1014 j = 0;
1015 }
1016 return -1;
1017 }
1018
1019 /* Standard IOVEC function. */
1020
1021 static file_ptr
1022 vms_lib_bread (struct bfd *abfd, void *vbuf, file_ptr nbytes)
1023 {
1024 struct vms_lib_iovec *vec = (struct vms_lib_iovec *) abfd->iostream;
1025 file_ptr res;
1026 file_ptr chunk;
1027 unsigned char *buf = (unsigned char *)vbuf;
1028
1029 /* Do not read past the end. */
1030 if (vec->where >= vec->file_len)
1031 return 0;
1032
1033 res = 0;
1034 while (nbytes > 0)
1035 {
1036 if (vec->rec_rem == 0)
1037 {
1038 unsigned char blen[2];
1039
1040 /* Read record length. */
1041 if (vms_lib_bread_raw (abfd, blen, sizeof (blen)) != sizeof (blen))
1042 return -1;
1043 vec->rec_len = bfd_getl16 (blen);
1044 if (bfd_libdata (abfd->my_archive)->kind == vms_lib_txt)
1045 {
1046 /* Discard record size and align byte. */
1047 vec->rec_pos = 0;
1048 vec->rec_rem = vec->rec_len;
1049 }
1050 else
1051 {
1052 /* Prepend record size. */
1053 vec->rec_pos = REC_POS_LEN0;
1054 vec->rec_rem = (vec->rec_len + 1) & ~1; /* With align byte. */
1055 }
1056 if (vec->rec_len == 3)
1057 {
1058 /* Possibly end of file. Check the pattern. */
1059 if (vms_lib_bread_raw (abfd, vec->pattern, 4) != 4)
1060 return -1;
1061 if (!memcmp (vec->pattern, eotdesc + 2, 3))
1062 {
1063 /* This is really an EOF. */
1064 vec->where += res;
1065 vec->file_len = vec->where;
1066 return res;
1067 }
1068 }
1069
1070 if (vec->dcxsbms != NULL)
1071 {
1072 /* This is a compressed member. */
1073 unsigned int len;
1074 file_ptr elen;
1075
1076 /* Be sure there is enough room for the expansion. */
1077 len = (vec->rec_len + 1) & ~1;
1078 if (len > vec->dcx_max)
1079 {
1080 while (len > vec->dcx_max)
1081 vec->dcx_max *= 2;
1082 vec->dcx_buf = bfd_alloc (abfd, vec->dcx_max);
1083 if (vec->dcx_buf == NULL)
1084 return -1;
1085 }
1086
1087 /* Read the compressed record. */
1088 vec->dcx_rlen = len;
1089 if (vec->rec_len == 3)
1090 {
1091 /* Already read. */
1092 memcpy (vec->dcx_buf, vec->pattern, 3);
1093 }
1094 else
1095 {
1096 elen = vms_lib_bread_raw (abfd, vec->dcx_buf, len);
1097 if (elen != len)
1098 return -1;
1099 }
1100
1101 /* Dummy expansion to get the expanded length. */
1102 vec->dcx_offset = 0;
1103 vec->dcx_sbm = vec->dcxsbms;
1104 vec->dcx_pos = 0;
1105 elen = vms_lib_dcx (vec, NULL, 0x10000);
1106 if (elen < 0)
1107 return -1;
1108 vec->rec_len = elen;
1109 vec->rec_rem = elen;
1110
1111 /* Reset the state. */
1112 vec->dcx_offset = 0;
1113 vec->dcx_sbm = vec->dcxsbms;
1114 vec->dcx_pos = 0;
1115 }
1116 }
1117 if (vec->rec_pos < 0)
1118 {
1119 unsigned char c;
1120 switch (vec->rec_pos)
1121 {
1122 case REC_POS_LEN0:
1123 c = vec->rec_len & 0xff;
1124 vec->rec_pos = REC_POS_LEN1;
1125 break;
1126 case REC_POS_LEN1:
1127 c = (vec->rec_len >> 8) & 0xff;
1128 vec->rec_pos = 0;
1129 break;
1130 case REC_POS_PAD:
1131 c = 0;
1132 vec->rec_rem = 0;
1133 break;
1134 case REC_POS_NL:
1135 c = '\n';
1136 vec->rec_rem = 0;
1137 break;
1138 default:
1139 abort ();
1140 }
1141 if (buf != NULL)
1142 {
1143 *buf = c;
1144 buf++;
1145 }
1146 nbytes--;
1147 res++;
1148 continue;
1149 }
1150
1151 if (nbytes > vec->rec_rem)
1152 chunk = vec->rec_rem;
1153 else
1154 chunk = nbytes;
1155
1156 if (vec->dcxsbms != NULL)
1157 {
1158 /* Optimize the stat() case: no need to decompress again as we
1159 know the length. */
1160 if (!(buf == NULL && chunk == vec->rec_rem))
1161 chunk = vms_lib_dcx (vec, buf, chunk);
1162 }
1163 else
1164 {
1165 if (vec->rec_len == 3)
1166 {
1167 if (buf != NULL)
1168 memcpy (buf, vec->pattern + vec->rec_pos, chunk);
1169 }
1170 else
1171 chunk = vms_lib_bread_raw (abfd, buf, chunk);
1172 }
1173 if (chunk < 0)
1174 return -1;
1175 res += chunk;
1176 if (buf != NULL)
1177 buf += chunk;
1178 nbytes -= chunk;
1179 vec->rec_pos += chunk;
1180 vec->rec_rem -= chunk;
1181
1182 if (vec->rec_rem == 0)
1183 {
1184 /* End of record reached. */
1185 if (bfd_libdata (abfd->my_archive)->kind == vms_lib_txt)
1186 {
1187 if ((vec->rec_len & 1) == 1
1188 && vec->rec_len != 3
1189 && vec->dcxsbms == NULL)
1190 {
1191 /* Eat the pad byte. */
1192 unsigned char pad;
1193 if (vms_lib_bread_raw (abfd, &pad, 1) != 1)
1194 return -1;
1195 }
1196 vec->rec_pos = REC_POS_NL;
1197 vec->rec_rem = 1;
1198 }
1199 else
1200 {
1201 if ((vec->rec_len & 1) == 1 && vec->dcxsbms != NULL)
1202 {
1203 vec->rec_pos = REC_POS_PAD;
1204 vec->rec_rem = 1;
1205 }
1206 }
1207 }
1208 }
1209 vec->where += res;
1210 return res;
1211 }
1212
1213 /* Standard function, but we currently only handle the rewind case. */
1214
1215 static int
1216 vms_lib_bseek (struct bfd *abfd, file_ptr offset, int whence)
1217 {
1218 struct vms_lib_iovec *vec = (struct vms_lib_iovec *) abfd->iostream;
1219
1220 if (whence == SEEK_SET && offset == 0)
1221 {
1222 vec->where = 0;
1223 vec->rec_rem = 0;
1224 vec->dcx_pos = -1;
1225 vec->blk_off = vec->init_blk_off;
1226 vec->next_block = vec->init_next_block;
1227
1228 if (bfd_seek (abfd->my_archive, vec->first_block, SEEK_SET) != 0)
1229 return -1;
1230 }
1231 else
1232 abort ();
1233 return 0;
1234 }
1235
1236 static file_ptr
1237 vms_lib_bwrite (struct bfd *abfd ATTRIBUTE_UNUSED,
1238 const void *where ATTRIBUTE_UNUSED,
1239 file_ptr nbytes ATTRIBUTE_UNUSED)
1240 {
1241 return -1;
1242 }
1243
1244 static int
1245 vms_lib_bclose (struct bfd *abfd)
1246 {
1247 abfd->iostream = NULL;
1248 return 0;
1249 }
1250
1251 static int
1252 vms_lib_bflush (struct bfd *abfd ATTRIBUTE_UNUSED)
1253 {
1254 return 0;
1255 }
1256
1257 static int
1258 vms_lib_bstat (struct bfd *abfd ATTRIBUTE_UNUSED,
1259 struct stat *sb ATTRIBUTE_UNUSED)
1260 {
1261 /* Not supported. */
1262 return 0;
1263 }
1264
1265 static void *
1266 vms_lib_bmmap (struct bfd *abfd ATTRIBUTE_UNUSED,
1267 void *addr ATTRIBUTE_UNUSED,
1268 bfd_size_type len ATTRIBUTE_UNUSED,
1269 int prot ATTRIBUTE_UNUSED,
1270 int flags ATTRIBUTE_UNUSED,
1271 file_ptr offset ATTRIBUTE_UNUSED,
1272 void **map_addr ATTRIBUTE_UNUSED,
1273 bfd_size_type *map_len ATTRIBUTE_UNUSED)
1274 {
1275 return (void *) -1;
1276 }
1277
1278 static const struct bfd_iovec vms_lib_iovec = {
1279 &vms_lib_bread, &vms_lib_bwrite, &vms_lib_btell, &vms_lib_bseek,
1280 &vms_lib_bclose, &vms_lib_bflush, &vms_lib_bstat, &vms_lib_bmmap
1281 };
1282
1283 /* Open a library module. FILEPOS is the position of the module header. */
1284
1285 static bfd_boolean
1286 vms_lib_bopen (bfd *el, file_ptr filepos)
1287 {
1288 struct vms_lib_iovec *vec;
1289 unsigned char buf[256];
1290 struct vms_mhd *mhd;
1291 struct lib_tdata *tdata = bfd_libdata (el->my_archive);
1292 unsigned int len;
1293
1294 /* Allocate and initialized the iovec. */
1295 vec = bfd_zalloc (el, sizeof (*vec));
1296 if (vec == NULL)
1297 return FALSE;
1298
1299 el->iostream = vec;
1300 el->iovec = &vms_lib_iovec;
1301
1302 /* File length is not known. */
1303 vec->file_len = -1;
1304
1305 /* Read the first data block. */
1306 vec->next_block = filepos & ~(VMS_BLOCK_SIZE - 1);
1307 vec->blk_off = DATA__LENGTH;
1308 if (!vms_lib_read_block (el))
1309 return FALSE;
1310
1311 /* Prepare to read the first record. */
1312 vec->blk_off = filepos & (VMS_BLOCK_SIZE - 1);
1313 vec->rec_rem = 0;
1314 if (bfd_seek (el->my_archive, filepos, SEEK_SET) != 0)
1315 return FALSE;
1316
1317 /* Read Record length + MHD + align byte. */
1318 len = tdata->mhd_size;
1319 if (vms_lib_bread_raw (el, buf, 2) != 2)
1320 return FALSE;
1321 if (bfd_getl16 (buf) != len)
1322 return FALSE;
1323 len = (len + 1) & ~1;
1324 BFD_ASSERT (len <= sizeof (buf));
1325 if (vms_lib_bread_raw (el, buf, len) != len)
1326 return FALSE;
1327
1328 /* Get info from mhd. */
1329 mhd = (struct vms_mhd *)buf;
1330 /* Check id. */
1331 if (mhd->id != MHD__C_MHDID)
1332 return FALSE;
1333 if (len >= MHD__C_MHDLEN + 1)
1334 el->selective_search = (mhd->objstat & MHD__M_SELSRC) ? 1 : 0;
1335 el->mtime = vms_rawtime_to_time_t (mhd->datim);
1336 el->mtime_set = TRUE;
1337
1338 /* Reinit the iovec so that seek() will point to the first record after
1339 the mhd. */
1340 vec->where = 0;
1341 vec->init_blk_off = vec->blk_off;
1342 vec->init_next_block = vec->next_block;
1343 vec->first_block = bfd_tell (el->my_archive);
1344 vec->dcxsbms = bfd_libdata (el->my_archive)->dcxsbm;
1345
1346 if (vec->dcxsbms != NULL)
1347 {
1348 /* Handle DCX. */
1349 vec->dcx_max = 10 * 1024;
1350 vec->dcx_buf = bfd_alloc (el, vec->dcx_max);
1351 vec->dcx_pos = -1;
1352 if (vec->dcx_buf == NULL)
1353 return -1;
1354 }
1355 return TRUE;
1356 }
1357
1358 /* Get member MODIDX. Return NULL in case of error. */
1359
1360 static bfd *
1361 _bfd_vms_lib_get_module (bfd *abfd, unsigned int modidx)
1362 {
1363 struct lib_tdata *tdata = bfd_libdata (abfd);
1364 bfd *res;
1365 file_ptr file_off;
1366 const char *name;
1367 char *newname;
1368 size_t namelen;
1369
1370 /* Sanity check. */
1371 if (modidx >= tdata->nbr_modules)
1372 return NULL;
1373
1374 /* Already loaded. */
1375 if (tdata->cache[modidx])
1376 return tdata->cache[modidx];
1377
1378 /* Build it. */
1379 file_off = tdata->modules[modidx].file_offset;
1380 if (tdata->type != LBR__C_TYP_IOBJ)
1381 {
1382 res = _bfd_create_empty_archive_element_shell (abfd);
1383 if (res == NULL)
1384 return NULL;
1385
1386 /* Special reader to deal with data blocks. */
1387 if (!vms_lib_bopen (res, file_off))
1388 return NULL;
1389 }
1390 else
1391 {
1392 char buf[256];
1393 struct vms_mhd *mhd;
1394 struct areltdata *arelt;
1395
1396 /* Sanity check. The MHD must be big enough to contain module size. */
1397 if (tdata->mhd_size < offsetof (struct vms_mhd, modsize) + 4)
1398 return NULL;
1399
1400 /* Read the MHD now. */
1401 if (bfd_seek (abfd, file_off, SEEK_SET) != 0)
1402 return NULL;
1403 if (bfd_bread (buf, tdata->mhd_size, abfd) != tdata->mhd_size)
1404 return NULL;
1405
1406 mhd = (struct vms_mhd *) buf;
1407 if (mhd->id != MHD__C_MHDID)
1408 return NULL;
1409
1410 res = _bfd_create_empty_archive_element_shell (abfd);
1411 if (res == NULL)
1412 return NULL;
1413 arelt = bfd_zmalloc (sizeof (*arelt));
1414 if (arelt == NULL)
1415 {
1416 bfd_close (res);
1417 return NULL;
1418 }
1419 res->arelt_data = arelt;
1420
1421 /* Get info from mhd. */
1422 if (tdata->mhd_size >= offsetof (struct vms_mhd, objstat) + 1)
1423 res->selective_search = (mhd->objstat & MHD__M_SELSRC) ? 1 : 0;
1424 res->mtime = vms_rawtime_to_time_t (mhd->datim);
1425 res->mtime_set = TRUE;
1426
1427 arelt->parsed_size = bfd_getl32 (mhd->modsize);
1428
1429 /* No need for a special reader as members are stored linearly.
1430 Just skip the MHD. */
1431 res->origin = file_off + tdata->mhd_size;
1432 }
1433
1434 /* Set filename. */
1435 name = tdata->modules[modidx].name;
1436 namelen = strlen (name);
1437 newname = bfd_malloc (namelen + 4 + 1);
1438 if (newname == NULL)
1439 {
1440 bfd_close (res);
1441 return NULL;
1442 }
1443 strcpy (newname, name);
1444 switch (tdata->type)
1445 {
1446 case LBR__C_TYP_IOBJ:
1447 case LBR__C_TYP_EOBJ:
1448 /* For object archives, append .obj to mimic standard behaviour. */
1449 strcpy (newname + namelen, ".obj");
1450 break;
1451 default:
1452 break;
1453 }
1454 bfd_set_filename (res, newname);
1455
1456 tdata->cache[modidx] = res;
1457
1458 return res;
1459 }
1460
1461 /* Standard function: get member at IDX. */
1462
1463 bfd *
1464 _bfd_vms_lib_get_elt_at_index (bfd *abfd, symindex symidx)
1465 {
1466 struct lib_tdata *tdata = bfd_libdata (abfd);
1467 file_ptr file_off;
1468 unsigned int modidx;
1469
1470 /* Check symidx. */
1471 if (symidx > tdata->artdata.symdef_count)
1472 return NULL;
1473 file_off = tdata->artdata.symdefs[symidx].file_offset;
1474
1475 /* Linear-scan. */
1476 for (modidx = 0; modidx < tdata->nbr_modules; modidx++)
1477 {
1478 if (tdata->modules[modidx].file_offset == file_off)
1479 break;
1480 }
1481 if (modidx >= tdata->nbr_modules)
1482 return NULL;
1483
1484 return _bfd_vms_lib_get_module (abfd, modidx);
1485 }
1486
1487 /* Elements of an imagelib are stubs. You can get the real image with this
1488 function. */
1489
1490 bfd *
1491 _bfd_vms_lib_get_imagelib_file (bfd *el)
1492 {
1493 bfd *archive = el->my_archive;
1494 const char *modname = el->filename;
1495 int modlen = strlen (modname);
1496 char *filename;
1497 int j;
1498 bfd *res;
1499
1500 /* Convert module name to lower case and append '.exe'. */
1501 filename = bfd_alloc (el, modlen + 5);
1502 if (filename == NULL)
1503 return NULL;
1504 for (j = 0; j < modlen; j++)
1505 if (ISALPHA (modname[j]))
1506 filename[j] = TOLOWER (modname[j]);
1507 else
1508 filename[j] = modname[j];
1509 memcpy (filename + modlen, ".exe", 5);
1510
1511 filename = _bfd_append_relative_path (archive, filename);
1512 if (filename == NULL)
1513 return NULL;
1514 res = bfd_openr (filename, NULL);
1515
1516 if (res == NULL)
1517 {
1518 /* xgettext:c-format */
1519 _bfd_error_handler(_("could not open shared image '%s' from '%s'"),
1520 filename, archive->filename);
1521 bfd_release (archive, filename);
1522 return NULL;
1523 }
1524
1525 /* FIXME: put it in a cache ? */
1526 return res;
1527 }
1528
1529 /* Standard function. */
1530
1531 bfd *
1532 _bfd_vms_lib_openr_next_archived_file (bfd *archive,
1533 bfd *last_file)
1534 {
1535 unsigned int idx;
1536 bfd *res;
1537
1538 if (!last_file)
1539 idx = 0;
1540 else
1541 idx = last_file->proxy_origin + 1;
1542
1543 if (idx >= bfd_libdata (archive)->nbr_modules)
1544 {
1545 bfd_set_error (bfd_error_no_more_archived_files);
1546 return NULL;
1547 }
1548
1549 res = _bfd_vms_lib_get_module (archive, idx);
1550 if (res == NULL)
1551 return res;
1552 res->proxy_origin = idx;
1553 return res;
1554 }
1555
1556 /* Standard function. Just compute the length. */
1557
1558 int
1559 _bfd_vms_lib_generic_stat_arch_elt (bfd *abfd, struct stat *st)
1560 {
1561 struct lib_tdata *tdata;
1562
1563 /* Sanity check. */
1564 if (abfd->my_archive == NULL)
1565 {
1566 bfd_set_error (bfd_error_invalid_operation);
1567 return -1;
1568 }
1569
1570 tdata = bfd_libdata (abfd->my_archive);
1571 if (tdata->type != LBR__C_TYP_IOBJ)
1572 {
1573 struct vms_lib_iovec *vec = (struct vms_lib_iovec *) abfd->iostream;
1574
1575 if (vec->file_len == (ufile_ptr)-1)
1576 {
1577 if (vms_lib_bseek (abfd, 0, SEEK_SET) != 0)
1578 return -1;
1579
1580 /* Compute length. */
1581 while (vms_lib_bread (abfd, NULL, 1 << 20) > 0)
1582 ;
1583 }
1584 st->st_size = vec->file_len;
1585 }
1586 else
1587 {
1588 st->st_size = ((struct areltdata *)abfd->arelt_data)->parsed_size;
1589 }
1590
1591 if (abfd->mtime_set)
1592 st->st_mtime = abfd->mtime;
1593 else
1594 st->st_mtime = 0;
1595 st->st_uid = 0;
1596 st->st_gid = 0;
1597 st->st_mode = 0644;
1598
1599 return 0;
1600 }
1601
1602 /* Internal representation of an index entry. */
1603
1604 struct lib_index
1605 {
1606 /* Corresponding archive member. */
1607 bfd *abfd;
1608
1609 /* Number of reference to this entry. */
1610 unsigned int ref;
1611
1612 /* Length of the key. */
1613 unsigned short namlen;
1614
1615 /* Key. */
1616 const char *name;
1617 };
1618
1619 /* Used to sort index entries. */
1620
1621 static int
1622 lib_index_cmp (const void *lv, const void *rv)
1623 {
1624 const struct lib_index *l = lv;
1625 const struct lib_index *r = rv;
1626
1627 return strcmp (l->name, r->name);
1628 }
1629
1630 /* Maximum number of index blocks level. */
1631
1632 #define MAX_LEVEL 10
1633
1634 /* Get the size of an index entry. */
1635
1636 static unsigned int
1637 get_idxlen (struct lib_index *idx, bfd_boolean is_elfidx)
1638 {
1639 if (is_elfidx)
1640 {
1641 /* 9 is the size of struct vms_elfidx without keyname. */
1642 if (idx->namlen > MAX_KEYLEN)
1643 return 9 + sizeof (struct vms_kbn);
1644 else
1645 return 9 + idx->namlen;
1646 }
1647 else
1648 {
1649 /* 7 is the size of struct vms_idx without keyname. */
1650 return 7 + idx->namlen;
1651 }
1652 }
1653
1654 /* Write the index composed by NBR symbols contained in IDX.
1655 VBN is the first vbn to be used, and will contain on return the last vbn.
1656 Can be called with ABFD set to NULL just to size the index.
1657 If not null, TOPVBN will be assigned to the vbn of the root index tree.
1658 IS_ELFIDX is true for elfidx (ie ia64) indexes layout.
1659 Return TRUE on success. */
1660
1661 static bfd_boolean
1662 vms_write_index (bfd *abfd,
1663 struct lib_index *idx, unsigned int nbr, unsigned int *vbn,
1664 unsigned int *topvbn, bfd_boolean is_elfidx)
1665 {
1666 /* The index is organized as a tree. This function implements a naive
1667 algorithm to balance the tree: it fills the leaves, and create a new
1668 branch when all upper leaves and branches are full. We only keep in
1669 memory a path to the current leaf. */
1670 unsigned int i;
1671 int j;
1672 int level;
1673 /* Disk blocks for the current path. */
1674 struct vms_indexdef *rblk[MAX_LEVEL];
1675 /* Info on the current blocks. */
1676 struct idxblk
1677 {
1678 unsigned int vbn; /* VBN of the block. */
1679 /* The last entry is identified so that it could be copied to the
1680 parent block. */
1681 unsigned short len; /* Length up to the last entry. */
1682 unsigned short lastlen; /* Length of the last entry. */
1683 } blk[MAX_LEVEL];
1684
1685 /* The kbn blocks are used to store long symbol names. */
1686 unsigned int kbn_sz = 0; /* Number of bytes available in the kbn block. */
1687 unsigned int kbn_vbn = 0; /* VBN of the kbn block. */
1688 unsigned char *kbn_blk = NULL; /* Contents of the kbn block. */
1689
1690 if (nbr == 0)
1691 {
1692 /* No entries. Very easy to handle. */
1693 if (topvbn != NULL)
1694 *topvbn = 0;
1695 return TRUE;
1696 }
1697
1698 if (abfd == NULL)
1699 {
1700 /* Sort the index the first time this function is called. */
1701 qsort (idx, nbr, sizeof (struct lib_index), lib_index_cmp);
1702 }
1703
1704 /* Allocate first index block. */
1705 level = 1;
1706 if (abfd != NULL)
1707 rblk[0] = bfd_zmalloc (sizeof (struct vms_indexdef));
1708 blk[0].vbn = (*vbn)++;
1709 blk[0].len = 0;
1710 blk[0].lastlen = 0;
1711
1712 for (i = 0; i < nbr; i++, idx++)
1713 {
1714 unsigned int idxlen;
1715 int flush = 0;
1716 unsigned int key_vbn = 0;
1717 unsigned int key_off = 0;
1718
1719 idxlen = get_idxlen (idx, is_elfidx);
1720
1721 if (is_elfidx && idx->namlen > MAX_KEYLEN)
1722 {
1723 /* If the key (ie name) is too long, write it in the kbn block. */
1724 unsigned int kl = idx->namlen;
1725 unsigned int kl_chunk;
1726 const char *key = idx->name;
1727
1728 /* Write the key in the kbn, chunk after chunk. */
1729 do
1730 {
1731 if (kbn_sz < sizeof (struct vms_kbn))
1732 {
1733 /* Not enough room in the kbn block. */
1734 if (abfd != NULL)
1735 {
1736 /* Write it to the disk (if there is one). */
1737 if (kbn_vbn != 0)
1738 {
1739 if (!vms_write_block (abfd, kbn_vbn, kbn_blk))
1740 return FALSE;
1741 }
1742 else
1743 {
1744 kbn_blk = bfd_malloc (VMS_BLOCK_SIZE);
1745 if (kbn_blk == NULL)
1746 return FALSE;
1747 }
1748 *(unsigned short *)kbn_blk = 0;
1749 }
1750 /* Allocate a new block for the keys. */
1751 kbn_vbn = (*vbn)++;
1752 kbn_sz = VMS_BLOCK_SIZE - 2;
1753 }
1754 /* Size of the chunk written to the current key block. */
1755 if (kl + sizeof (struct vms_kbn) > kbn_sz)
1756 kl_chunk = kbn_sz - sizeof (struct vms_kbn);
1757 else
1758 kl_chunk = kl;
1759
1760 if (kbn_blk != NULL)
1761 {
1762 struct vms_kbn *kbn;
1763
1764 kbn = (struct vms_kbn *)(kbn_blk + VMS_BLOCK_SIZE - kbn_sz);
1765
1766 if (key_vbn == 0)
1767 {
1768 /* Save the rfa of the first chunk. */
1769 key_vbn = kbn_vbn;
1770 key_off = VMS_BLOCK_SIZE - kbn_sz;
1771 }
1772
1773 bfd_putl16 (kl_chunk, kbn->keylen);
1774 if (kl_chunk == kl)
1775 {
1776 /* No next chunk. */
1777 bfd_putl32 (0, kbn->rfa.vbn);
1778 bfd_putl16 (0, kbn->rfa.offset);
1779 }
1780 else
1781 {
1782 /* Next chunk will be at the start of the next block. */
1783 bfd_putl32 (*vbn, kbn->rfa.vbn);
1784 bfd_putl16 (2, kbn->rfa.offset);
1785 }
1786 memcpy ((char *)(kbn + 1), key, kl_chunk);
1787 key += kl_chunk;
1788 }
1789 kl -= kl_chunk;
1790 kl_chunk = (kl_chunk + 1) & ~1; /* Always align. */
1791 kbn_sz -= kl_chunk + sizeof (struct vms_kbn);
1792 }
1793 while (kl > 0);
1794 }
1795
1796 /* Check if a block might overflow. In this case we will flush this
1797 block and all the blocks below it. */
1798 for (j = 0; j < level; j++)
1799 if (blk[j].len + blk[j].lastlen + idxlen > INDEXDEF__BLKSIZ)
1800 flush = j + 1;
1801
1802 for (j = 0; j < level; j++)
1803 {
1804 if (j < flush)
1805 {
1806 /* There is not enough room to write the new entry in this
1807 block or in a parent block. */
1808
1809 if (j + 1 == level)
1810 {
1811 BFD_ASSERT (level < MAX_LEVEL);
1812
1813 /* Need to create a parent. */
1814 if (abfd != NULL)
1815 {
1816 rblk[level] = bfd_zmalloc (sizeof (struct vms_indexdef));
1817 bfd_putl32 (*vbn, rblk[j]->parent);
1818 }
1819 blk[level].vbn = (*vbn)++;
1820 blk[level].len = 0;
1821 blk[level].lastlen = blk[j].lastlen;
1822
1823 level++;
1824 }
1825
1826 /* Update parent block: write the last entry from the current
1827 block. */
1828 if (abfd != NULL)
1829 {
1830 struct vms_rfa *rfa;
1831
1832 /* Pointer to the last entry in parent block. */
1833 rfa = (struct vms_rfa *)(rblk[j + 1]->keys + blk[j + 1].len);
1834
1835 /* Copy the whole entry. */
1836 BFD_ASSERT (blk[j + 1].lastlen == blk[j].lastlen);
1837 memcpy (rfa, rblk[j]->keys + blk[j].len, blk[j].lastlen);
1838 /* Fix the entry (which in always the first field of an
1839 entry. */
1840 bfd_putl32 (blk[j].vbn, rfa->vbn);
1841 bfd_putl16 (RFADEF__C_INDEX, rfa->offset);
1842 }
1843
1844 if (j + 1 == flush)
1845 {
1846 /* And allocate it. Do it only on the block that won't be
1847 flushed (so that the parent of the parent can be
1848 updated too). */
1849 blk[j + 1].len += blk[j + 1].lastlen;
1850 blk[j + 1].lastlen = 0;
1851 }
1852
1853 /* Write this block on the disk. */
1854 if (abfd != NULL)
1855 {
1856 bfd_putl16 (blk[j].len + blk[j].lastlen, rblk[j]->used);
1857 if (!vms_write_block (abfd, blk[j].vbn, rblk[j]))
1858 return FALSE;
1859 }
1860
1861 /* Reset this block. */
1862 blk[j].len = 0;
1863 blk[j].lastlen = 0;
1864 blk[j].vbn = (*vbn)++;
1865 }
1866
1867 /* Append it to the block. */
1868 if (j == 0)
1869 {
1870 /* Keep the previous last entry. */
1871 blk[j].len += blk[j].lastlen;
1872
1873 if (abfd != NULL)
1874 {
1875 struct vms_rfa *rfa;
1876
1877 rfa = (struct vms_rfa *)(rblk[j]->keys + blk[j].len);
1878 bfd_putl32 ((idx->abfd->proxy_origin / VMS_BLOCK_SIZE) + 1,
1879 rfa->vbn);
1880 bfd_putl16
1881 ((idx->abfd->proxy_origin % VMS_BLOCK_SIZE)
1882 + (is_elfidx ? 0 : DATA__DATA),
1883 rfa->offset);
1884
1885 if (is_elfidx)
1886 {
1887 /* Use elfidx format. */
1888 struct vms_elfidx *en = (struct vms_elfidx *)rfa;
1889
1890 en->flags = 0;
1891 if (key_vbn != 0)
1892 {
1893 /* Long symbol name. */
1894 struct vms_kbn *k = (struct vms_kbn *)(en->keyname);
1895 bfd_putl16 (sizeof (struct vms_kbn), en->keylen);
1896 bfd_putl16 (idx->namlen, k->keylen);
1897 bfd_putl32 (key_vbn, k->rfa.vbn);
1898 bfd_putl16 (key_off, k->rfa.offset);
1899 en->flags |= ELFIDX__SYMESC;
1900 }
1901 else
1902 {
1903 bfd_putl16 (idx->namlen, en->keylen);
1904 memcpy (en->keyname, idx->name, idx->namlen);
1905 }
1906 }
1907 else
1908 {
1909 /* Use idx format. */
1910 struct vms_idx *en = (struct vms_idx *)rfa;
1911 en->keylen = idx->namlen;
1912 memcpy (en->keyname, idx->name, idx->namlen);
1913 }
1914 }
1915 }
1916 /* The last added key can now be the last one all blocks in the
1917 path. */
1918 blk[j].lastlen = idxlen;
1919 }
1920 }
1921
1922 /* Save VBN of the root. */
1923 if (topvbn != NULL)
1924 *topvbn = blk[level - 1].vbn;
1925
1926 if (abfd == NULL)
1927 return TRUE;
1928
1929 /* Flush. */
1930 for (j = 1; j < level; j++)
1931 {
1932 /* Update parent block: write the new entry. */
1933 unsigned char *en;
1934 unsigned char *par;
1935 struct vms_rfa *rfa;
1936
1937 en = rblk[j - 1]->keys + blk[j - 1].len;
1938 par = rblk[j]->keys + blk[j].len;
1939 BFD_ASSERT (blk[j].lastlen == blk[j - 1].lastlen);
1940 memcpy (par, en, blk[j - 1].lastlen);
1941 rfa = (struct vms_rfa *)par;
1942 bfd_putl32 (blk[j - 1].vbn, rfa->vbn);
1943 bfd_putl16 (RFADEF__C_INDEX, rfa->offset);
1944 }
1945
1946 for (j = 0; j < level; j++)
1947 {
1948 /* Write this block on the disk. */
1949 bfd_putl16 (blk[j].len + blk[j].lastlen, rblk[j]->used);
1950 if (!vms_write_block (abfd, blk[j].vbn, rblk[j]))
1951 return FALSE;
1952
1953 free (rblk[j]);
1954 }
1955
1956 /* Write the last kbn (if any). */
1957 if (kbn_vbn != 0)
1958 {
1959 if (!vms_write_block (abfd, kbn_vbn, kbn_blk))
1960 return FALSE;
1961 free (kbn_blk);
1962 }
1963
1964 return TRUE;
1965 }
1966
1967 /* Append data to the data block DATA. Force write if PAD is true. */
1968
1969 static bfd_boolean
1970 vms_write_data_block (bfd *arch, struct vms_datadef *data, file_ptr *off,
1971 const unsigned char *buf, unsigned int len, int pad)
1972 {
1973 while (len > 0 || pad)
1974 {
1975 unsigned int doff = *off & (VMS_BLOCK_SIZE - 1);
1976 unsigned int remlen = (DATA__LENGTH - DATA__DATA) - doff;
1977 unsigned int l;
1978
1979 l = (len > remlen) ? remlen : len;
1980 memcpy (data->data + doff, buf, l);
1981 buf += l;
1982 len -= l;
1983 doff += l;
1984 *off += l;
1985
1986 if (doff == (DATA__LENGTH - DATA__DATA) || (len == 0 && pad))
1987 {
1988 data->recs = 0;
1989 data->fill_1 = 0;
1990 bfd_putl32 ((*off / VMS_BLOCK_SIZE) + 2, data->link);
1991
1992 if (bfd_bwrite (data, sizeof (*data), arch) != sizeof (*data))
1993 return FALSE;
1994
1995 *off += DATA__LENGTH - doff;
1996
1997 if (len == 0)
1998 break;
1999 }
2000 }
2001 return TRUE;
2002 }
2003
2004 /* Build the symbols index. */
2005
2006 static bfd_boolean
2007 _bfd_vms_lib_build_map (unsigned int nbr_modules,
2008 struct lib_index *modules,
2009 unsigned int *res_cnt,
2010 struct lib_index **res)
2011 {
2012 unsigned int i;
2013 asymbol **syms = NULL;
2014 long syms_max = 0;
2015 struct lib_index *map = NULL;
2016 unsigned int map_max = 1024; /* Fine initial default. */
2017 unsigned int map_count = 0;
2018
2019 map = (struct lib_index *) bfd_malloc (map_max * sizeof (struct lib_index));
2020 if (map == NULL)
2021 goto error_return;
2022
2023 /* Gather symbols. */
2024 for (i = 0; i < nbr_modules; i++)
2025 {
2026 long storage;
2027 long symcount;
2028 long src_count;
2029 bfd *current = modules[i].abfd;
2030
2031 if ((bfd_get_file_flags (current) & HAS_SYMS) == 0)
2032 continue;
2033
2034 storage = bfd_get_symtab_upper_bound (current);
2035 if (storage < 0)
2036 goto error_return;
2037
2038 if (storage != 0)
2039 {
2040 if (storage > syms_max)
2041 {
2042 if (syms_max > 0)
2043 free (syms);
2044 syms_max = storage;
2045 syms = (asymbol **) bfd_malloc (syms_max);
2046 if (syms == NULL)
2047 goto error_return;
2048 }
2049 symcount = bfd_canonicalize_symtab (current, syms);
2050 if (symcount < 0)
2051 goto error_return;
2052
2053 /* Now map over all the symbols, picking out the ones we
2054 want. */
2055 for (src_count = 0; src_count < symcount; src_count++)
2056 {
2057 flagword flags = (syms[src_count])->flags;
2058 asection *sec = syms[src_count]->section;
2059
2060 if ((flags & BSF_GLOBAL
2061 || flags & BSF_WEAK
2062 || flags & BSF_INDIRECT
2063 || bfd_is_com_section (sec))
2064 && ! bfd_is_und_section (sec))
2065 {
2066 struct lib_index *new_map;
2067
2068 /* This symbol will go into the archive header. */
2069 if (map_count == map_max)
2070 {
2071 map_max *= 2;
2072 new_map = (struct lib_index *)
2073 bfd_realloc (map, map_max * sizeof (struct lib_index));
2074 if (new_map == NULL)
2075 goto error_return;
2076 map = new_map;
2077 }
2078
2079 map[map_count].abfd = current;
2080 map[map_count].namlen = strlen (syms[src_count]->name);
2081 map[map_count].name = syms[src_count]->name;
2082 map_count++;
2083 modules[i].ref++;
2084 }
2085 }
2086 }
2087 }
2088
2089 *res_cnt = map_count;
2090 *res = map;
2091 return TRUE;
2092
2093 error_return:
2094 if (syms_max > 0)
2095 free (syms);
2096 if (map != NULL)
2097 free (map);
2098 return FALSE;
2099 }
2100
2101 /* Do the hard work: write an archive on the disk. */
2102
2103 bfd_boolean
2104 _bfd_vms_lib_write_archive_contents (bfd *arch)
2105 {
2106 bfd *current;
2107 unsigned int nbr_modules;
2108 struct lib_index *modules;
2109 unsigned int nbr_symbols;
2110 struct lib_index *symbols;
2111 struct lib_tdata *tdata = bfd_libdata (arch);
2112 unsigned int i;
2113 file_ptr off;
2114 unsigned int nbr_mod_iblk;
2115 unsigned int nbr_sym_iblk;
2116 unsigned int vbn;
2117 unsigned int mod_idx_vbn;
2118 unsigned int sym_idx_vbn;
2119 bfd_boolean is_elfidx = tdata->kind == vms_lib_ia64;
2120 unsigned int max_keylen = is_elfidx ? MAX_EKEYLEN : MAX_KEYLEN;
2121
2122 /* Count the number of modules (and do a first sanity check). */
2123 nbr_modules = 0;
2124 for (current = arch->archive_head;
2125 current != NULL;
2126 current = current->archive_next)
2127 {
2128 /* This check is checking the bfds for the objects we're reading
2129 from (which are usually either an object file or archive on
2130 disk), not the archive entries we're writing to. We don't
2131 actually create bfds for the archive members, we just copy
2132 them byte-wise when we write out the archive. */
2133 if (bfd_write_p (current) || !bfd_check_format (current, bfd_object))
2134 {
2135 bfd_set_error (bfd_error_invalid_operation);
2136 goto input_err;
2137 }
2138
2139 nbr_modules++;
2140 }
2141
2142 /* Build the modules list. */
2143 BFD_ASSERT (tdata->modules == NULL);
2144 modules = bfd_alloc (arch, nbr_modules * sizeof (struct lib_index));
2145 if (modules == NULL)
2146 return FALSE;
2147
2148 for (current = arch->archive_head, i = 0;
2149 current != NULL;
2150 current = current->archive_next, i++)
2151 {
2152 unsigned int nl;
2153
2154 modules[i].abfd = current;
2155 modules[i].name = vms_get_module_name (current->filename, FALSE);
2156 modules[i].ref = 1;
2157
2158 /* FIXME: silently truncate long names ? */
2159 nl = strlen (modules[i].name);
2160 modules[i].namlen = (nl > max_keylen ? max_keylen : nl);
2161 }
2162
2163 /* Create the module index. */
2164 vbn = 0;
2165 if (!vms_write_index (NULL, modules, nbr_modules, &vbn, NULL, is_elfidx))
2166 return FALSE;
2167 nbr_mod_iblk = vbn;
2168
2169 /* Create symbol index. */
2170 if (!_bfd_vms_lib_build_map (nbr_modules, modules, &nbr_symbols, &symbols))
2171 return FALSE;
2172
2173 vbn = 0;
2174 if (!vms_write_index (NULL, symbols, nbr_symbols, &vbn, NULL, is_elfidx))
2175 return FALSE;
2176 nbr_sym_iblk = vbn;
2177
2178 /* Write modules and remember their position. */
2179 off = (1 + nbr_mod_iblk + nbr_sym_iblk) * VMS_BLOCK_SIZE;
2180
2181 if (bfd_seek (arch, off, SEEK_SET) != 0)
2182 return FALSE;
2183
2184 for (i = 0; i < nbr_modules; i++)
2185 {
2186 struct vms_datadef data;
2187 unsigned char blk[VMS_BLOCK_SIZE];
2188 struct vms_mhd *mhd;
2189 unsigned int sz;
2190
2191 current = modules[i].abfd;
2192 current->proxy_origin = off;
2193
2194 if (is_elfidx)
2195 sz = 0;
2196 else
2197 {
2198 /* Write the MHD as a record (ie, size first). */
2199 sz = 2;
2200 bfd_putl16 (tdata->mhd_size, blk);
2201 }
2202 mhd = (struct vms_mhd *)(blk + sz);
2203 memset (mhd, 0, sizeof (struct vms_mhd));
2204 mhd->lbrflag = 0;
2205 mhd->id = MHD__C_MHDID;
2206 mhd->objidlng = 4;
2207 memcpy (mhd->objid, "V1.0", 4);
2208 bfd_putl32 (modules[i].ref, mhd->refcnt);
2209 /* FIXME: datim. */
2210
2211 sz += tdata->mhd_size;
2212 sz = (sz + 1) & ~1;
2213
2214 /* Rewind the member to be put into the archive. */
2215 if (bfd_seek (current, 0, SEEK_SET) != 0)
2216 goto input_err;
2217
2218 /* Copy the member into the archive. */
2219 if (is_elfidx)
2220 {
2221 unsigned int modsize = 0;
2222 bfd_size_type amt;
2223 file_ptr off_hdr = off;
2224
2225 /* Read to complete the first block. */
2226 amt = bfd_bread (blk + sz, VMS_BLOCK_SIZE - sz, current);
2227 if (amt == (bfd_size_type)-1)
2228 goto input_err;
2229 modsize = amt;
2230 if (amt < VMS_BLOCK_SIZE - sz)
2231 {
2232 /* The member size is less than a block. Pad the block. */
2233 memset (blk + sz + amt, 0, VMS_BLOCK_SIZE - sz - amt);
2234 }
2235 bfd_putl32 (modsize, mhd->modsize);
2236
2237 /* Write the first block (which contains an mhd). */
2238 if (bfd_bwrite (blk, VMS_BLOCK_SIZE, arch) != VMS_BLOCK_SIZE)
2239 goto input_err;
2240 off += VMS_BLOCK_SIZE;
2241
2242 if (amt == VMS_BLOCK_SIZE - sz)
2243 {
2244 /* Copy the remaining. */
2245 char buffer[DEFAULT_BUFFERSIZE];
2246
2247 while (1)
2248 {
2249 amt = bfd_bread (buffer, sizeof (buffer), current);
2250 if (amt == (bfd_size_type)-1)
2251 goto input_err;
2252 if (amt == 0)
2253 break;
2254 modsize += amt;
2255 if (amt != sizeof (buffer))
2256 {
2257 /* Clear the padding. */
2258 memset (buffer + amt, 0, sizeof (buffer) - amt);
2259 amt = (amt + VMS_BLOCK_SIZE) & ~(VMS_BLOCK_SIZE - 1);
2260 }
2261 if (bfd_bwrite (buffer, amt, arch) != amt)
2262 goto input_err;
2263 off += amt;
2264 }
2265
2266 /* Now that the size is known, write the first block (again). */
2267 bfd_putl32 (modsize, mhd->modsize);
2268 if (bfd_seek (arch, off_hdr, SEEK_SET) != 0
2269 || bfd_bwrite (blk, VMS_BLOCK_SIZE, arch) != VMS_BLOCK_SIZE)
2270 goto input_err;
2271 if (bfd_seek (arch, off, SEEK_SET) != 0)
2272 goto input_err;
2273 }
2274 }
2275 else
2276 {
2277 /* Write the MHD. */
2278 if (vms_write_data_block (arch, &data, &off, blk, sz, 0) < 0)
2279 goto input_err;
2280
2281 /* Write the member. */
2282 while (1)
2283 {
2284 sz = bfd_bread (blk, sizeof (blk), current);
2285 if (sz == 0)
2286 break;
2287 if (vms_write_data_block (arch, &data, &off, blk, sz, 0) < 0)
2288 goto input_err;
2289 }
2290
2291 /* Write the end of module marker. */
2292 if (vms_write_data_block (arch, &data, &off,
2293 eotdesc, sizeof (eotdesc), 1) < 0)
2294 goto input_err;
2295 }
2296 }
2297
2298 /* Write the indexes. */
2299 vbn = 2;
2300 if (!vms_write_index (arch, modules, nbr_modules, &vbn, &mod_idx_vbn,
2301 is_elfidx))
2302 return FALSE;
2303 if (!vms_write_index (arch, symbols, nbr_symbols, &vbn, &sym_idx_vbn,
2304 is_elfidx))
2305 return FALSE;
2306
2307 /* Write libary header. */
2308 {
2309 unsigned char blk[VMS_BLOCK_SIZE];
2310 struct vms_lhd *lhd = (struct vms_lhd *)blk;
2311 struct vms_idd *idd = (struct vms_idd *)(blk + sizeof (*lhd));
2312 unsigned int idd_flags;
2313 unsigned int saneid;
2314
2315 memset (blk, 0, sizeof (blk));
2316
2317 lhd->type = tdata->type;
2318 lhd->nindex = 2;
2319 switch (tdata->kind)
2320 {
2321 case vms_lib_alpha:
2322 saneid = LHD_SANEID3;
2323 break;
2324 case vms_lib_ia64:
2325 saneid = LHD_SANEID6;
2326 break;
2327 default:
2328 abort ();
2329 }
2330 bfd_putl32 (saneid, lhd->sanity);
2331 bfd_putl16 (tdata->ver, lhd->majorid);
2332 bfd_putl16 (0, lhd->minorid);
2333 snprintf ((char *)lhd->lbrver + 1, sizeof (lhd->lbrver) - 1,
2334 "GNU ar %u.%u.%u",
2335 (unsigned)(BFD_VERSION / 100000000UL),
2336 (unsigned)(BFD_VERSION / 1000000UL) % 100,
2337 (unsigned)(BFD_VERSION / 10000UL) % 100);
2338 lhd->lbrver[sizeof (lhd->lbrver) - 1] = 0;
2339 lhd->lbrver[0] = strlen ((char *)lhd->lbrver + 1);
2340
2341 bfd_putl32 (tdata->credat_lo, lhd->credat + 0);
2342 bfd_putl32 (tdata->credat_hi, lhd->credat + 4);
2343 vms_raw_get_time (lhd->updtim);
2344
2345 lhd->mhdusz = tdata->mhd_size - MHD__C_USRDAT;
2346
2347 bfd_putl32 (nbr_modules + nbr_symbols, lhd->idxcnt);
2348 bfd_putl32 (nbr_modules, lhd->modcnt);
2349 bfd_putl32 (nbr_modules, lhd->modhdrs);
2350
2351 /* Number of blocks for index. */
2352 bfd_putl32 (nbr_mod_iblk + nbr_sym_iblk, lhd->idxblks);
2353 bfd_putl32 (vbn - 1, lhd->hipreal);
2354 bfd_putl32 (vbn - 1, lhd->hiprusd);
2355
2356 /* VBN of the next free block. */
2357 bfd_putl32 ((off / VMS_BLOCK_SIZE) + 1, lhd->nextvbn);
2358 bfd_putl32 ((off / VMS_BLOCK_SIZE) + 1, lhd->nextrfa + 0);
2359 bfd_putl16 (0, lhd->nextrfa + 4);
2360
2361 /* First index (modules name). */
2362 idd_flags = IDD__FLAGS_ASCII | IDD__FLAGS_VARLENIDX
2363 | IDD__FLAGS_NOCASECMP | IDD__FLAGS_NOCASENTR;
2364 bfd_putl16 (idd_flags, idd->flags);
2365 bfd_putl16 (max_keylen + 1, idd->keylen);
2366 bfd_putl16 (mod_idx_vbn, idd->vbn);
2367 idd++;
2368
2369 /* Second index (symbols name). */
2370 bfd_putl16 (idd_flags, idd->flags);
2371 bfd_putl16 (max_keylen + 1, idd->keylen);
2372 bfd_putl16 (sym_idx_vbn, idd->vbn);
2373 idd++;
2374
2375 if (!vms_write_block (arch, 1, blk))
2376 return FALSE;
2377 }
2378
2379 return TRUE;
2380
2381 input_err:
2382 bfd_set_input_error (current, bfd_get_error ());
2383 return FALSE;
2384 }
2385
2386 /* Add a target for text library. This costs almost nothing and is useful to
2387 read VMS library on the host. */
2388
2389 const bfd_target alpha_vms_lib_txt_vec =
2390 {
2391 "vms-libtxt", /* Name. */
2392 bfd_target_unknown_flavour,
2393 BFD_ENDIAN_UNKNOWN, /* byteorder */
2394 BFD_ENDIAN_UNKNOWN, /* header_byteorder */
2395 0, /* Object flags. */
2396 0, /* Sect flags. */
2397 0, /* symbol_leading_char. */
2398 ' ', /* ar_pad_char. */
2399 15, /* ar_max_namelen. */
2400 0, /* match priority. */
2401 bfd_getl64, bfd_getl_signed_64, bfd_putl64,
2402 bfd_getl32, bfd_getl_signed_32, bfd_putl32,
2403 bfd_getl16, bfd_getl_signed_16, bfd_putl16,
2404 bfd_getl64, bfd_getl_signed_64, bfd_putl64,
2405 bfd_getl32, bfd_getl_signed_32, bfd_putl32,
2406 bfd_getl16, bfd_getl_signed_16, bfd_putl16,
2407 { /* bfd_check_format. */
2408 _bfd_dummy_target,
2409 _bfd_dummy_target,
2410 _bfd_vms_lib_txt_archive_p,
2411 _bfd_dummy_target
2412 },
2413 { /* bfd_set_format. */
2414 _bfd_bool_bfd_false_error,
2415 _bfd_bool_bfd_false_error,
2416 _bfd_bool_bfd_false_error,
2417 _bfd_bool_bfd_false_error
2418 },
2419 { /* bfd_write_contents. */
2420 _bfd_bool_bfd_false_error,
2421 _bfd_bool_bfd_false_error,
2422 _bfd_bool_bfd_false_error,
2423 _bfd_bool_bfd_false_error
2424 },
2425 BFD_JUMP_TABLE_GENERIC (_bfd_generic),
2426 BFD_JUMP_TABLE_COPY (_bfd_generic),
2427 BFD_JUMP_TABLE_CORE (_bfd_nocore),
2428 BFD_JUMP_TABLE_ARCHIVE (_bfd_vms_lib),
2429 BFD_JUMP_TABLE_SYMBOLS (_bfd_nosymbols),
2430 BFD_JUMP_TABLE_RELOCS (_bfd_norelocs),
2431 BFD_JUMP_TABLE_WRITE (_bfd_nowrite),
2432 BFD_JUMP_TABLE_LINK (_bfd_nolink),
2433 BFD_JUMP_TABLE_DYNAMIC (_bfd_nodynamic),
2434
2435 NULL,
2436
2437 NULL
2438 };
This page took 0.079215 seconds and 4 git commands to generate.