gdb: add target_ops::supports_displaced_step
[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 free (newname);
1456 if (bfd_get_filename (res) == NULL)
1457 {
1458 bfd_close (res);
1459 return NULL;
1460 }
1461
1462 tdata->cache[modidx] = res;
1463
1464 return res;
1465 }
1466
1467 /* Standard function: get member at IDX. */
1468
1469 bfd *
1470 _bfd_vms_lib_get_elt_at_index (bfd *abfd, symindex symidx)
1471 {
1472 struct lib_tdata *tdata = bfd_libdata (abfd);
1473 file_ptr file_off;
1474 unsigned int modidx;
1475
1476 /* Check symidx. */
1477 if (symidx > tdata->artdata.symdef_count)
1478 return NULL;
1479 file_off = tdata->artdata.symdefs[symidx].file_offset;
1480
1481 /* Linear-scan. */
1482 for (modidx = 0; modidx < tdata->nbr_modules; modidx++)
1483 {
1484 if (tdata->modules[modidx].file_offset == file_off)
1485 break;
1486 }
1487 if (modidx >= tdata->nbr_modules)
1488 return NULL;
1489
1490 return _bfd_vms_lib_get_module (abfd, modidx);
1491 }
1492
1493 /* Elements of an imagelib are stubs. You can get the real image with this
1494 function. */
1495
1496 bfd *
1497 _bfd_vms_lib_get_imagelib_file (bfd *el)
1498 {
1499 bfd *archive = el->my_archive;
1500 const char *modname = bfd_get_filename (el);
1501 int modlen = strlen (modname);
1502 char *filename;
1503 int j;
1504 bfd *res;
1505
1506 /* Convert module name to lower case and append '.exe'. */
1507 filename = bfd_alloc (el, modlen + 5);
1508 if (filename == NULL)
1509 return NULL;
1510 for (j = 0; j < modlen; j++)
1511 if (ISALPHA (modname[j]))
1512 filename[j] = TOLOWER (modname[j]);
1513 else
1514 filename[j] = modname[j];
1515 memcpy (filename + modlen, ".exe", 5);
1516
1517 filename = _bfd_append_relative_path (archive, filename);
1518 if (filename == NULL)
1519 return NULL;
1520 res = bfd_openr (filename, NULL);
1521
1522 if (res == NULL)
1523 {
1524 /* xgettext:c-format */
1525 _bfd_error_handler(_("could not open shared image '%s' from '%s'"),
1526 filename, bfd_get_filename (archive));
1527 bfd_release (archive, filename);
1528 return NULL;
1529 }
1530
1531 /* FIXME: put it in a cache ? */
1532 return res;
1533 }
1534
1535 /* Standard function. */
1536
1537 bfd *
1538 _bfd_vms_lib_openr_next_archived_file (bfd *archive,
1539 bfd *last_file)
1540 {
1541 unsigned int idx;
1542 bfd *res;
1543
1544 if (!last_file)
1545 idx = 0;
1546 else
1547 idx = last_file->proxy_origin + 1;
1548
1549 if (idx >= bfd_libdata (archive)->nbr_modules)
1550 {
1551 bfd_set_error (bfd_error_no_more_archived_files);
1552 return NULL;
1553 }
1554
1555 res = _bfd_vms_lib_get_module (archive, idx);
1556 if (res == NULL)
1557 return res;
1558 res->proxy_origin = idx;
1559 return res;
1560 }
1561
1562 /* Standard function. Just compute the length. */
1563
1564 int
1565 _bfd_vms_lib_generic_stat_arch_elt (bfd *abfd, struct stat *st)
1566 {
1567 struct lib_tdata *tdata;
1568
1569 /* Sanity check. */
1570 if (abfd->my_archive == NULL)
1571 {
1572 bfd_set_error (bfd_error_invalid_operation);
1573 return -1;
1574 }
1575
1576 tdata = bfd_libdata (abfd->my_archive);
1577 if (tdata->type != LBR__C_TYP_IOBJ)
1578 {
1579 struct vms_lib_iovec *vec = (struct vms_lib_iovec *) abfd->iostream;
1580
1581 if (vec->file_len == (ufile_ptr)-1)
1582 {
1583 if (vms_lib_bseek (abfd, 0, SEEK_SET) != 0)
1584 return -1;
1585
1586 /* Compute length. */
1587 while (vms_lib_bread (abfd, NULL, 1 << 20) > 0)
1588 ;
1589 }
1590 st->st_size = vec->file_len;
1591 }
1592 else
1593 {
1594 st->st_size = ((struct areltdata *)abfd->arelt_data)->parsed_size;
1595 }
1596
1597 if (abfd->mtime_set)
1598 st->st_mtime = abfd->mtime;
1599 else
1600 st->st_mtime = 0;
1601 st->st_uid = 0;
1602 st->st_gid = 0;
1603 st->st_mode = 0644;
1604
1605 return 0;
1606 }
1607
1608 /* Internal representation of an index entry. */
1609
1610 struct lib_index
1611 {
1612 /* Corresponding archive member. */
1613 bfd *abfd;
1614
1615 /* Number of reference to this entry. */
1616 unsigned int ref;
1617
1618 /* Length of the key. */
1619 unsigned short namlen;
1620
1621 /* Key. */
1622 const char *name;
1623 };
1624
1625 /* Used to sort index entries. */
1626
1627 static int
1628 lib_index_cmp (const void *lv, const void *rv)
1629 {
1630 const struct lib_index *l = lv;
1631 const struct lib_index *r = rv;
1632
1633 return strcmp (l->name, r->name);
1634 }
1635
1636 /* Maximum number of index blocks level. */
1637
1638 #define MAX_LEVEL 10
1639
1640 /* Get the size of an index entry. */
1641
1642 static unsigned int
1643 get_idxlen (struct lib_index *idx, bfd_boolean is_elfidx)
1644 {
1645 if (is_elfidx)
1646 {
1647 /* 9 is the size of struct vms_elfidx without keyname. */
1648 if (idx->namlen > MAX_KEYLEN)
1649 return 9 + sizeof (struct vms_kbn);
1650 else
1651 return 9 + idx->namlen;
1652 }
1653 else
1654 {
1655 /* 7 is the size of struct vms_idx without keyname. */
1656 return 7 + idx->namlen;
1657 }
1658 }
1659
1660 /* Write the index composed by NBR symbols contained in IDX.
1661 VBN is the first vbn to be used, and will contain on return the last vbn.
1662 Can be called with ABFD set to NULL just to size the index.
1663 If not null, TOPVBN will be assigned to the vbn of the root index tree.
1664 IS_ELFIDX is true for elfidx (ie ia64) indexes layout.
1665 Return TRUE on success. */
1666
1667 static bfd_boolean
1668 vms_write_index (bfd *abfd,
1669 struct lib_index *idx, unsigned int nbr, unsigned int *vbn,
1670 unsigned int *topvbn, bfd_boolean is_elfidx)
1671 {
1672 /* The index is organized as a tree. This function implements a naive
1673 algorithm to balance the tree: it fills the leaves, and create a new
1674 branch when all upper leaves and branches are full. We only keep in
1675 memory a path to the current leaf. */
1676 unsigned int i;
1677 int j;
1678 int level;
1679 /* Disk blocks for the current path. */
1680 struct vms_indexdef *rblk[MAX_LEVEL];
1681 /* Info on the current blocks. */
1682 struct idxblk
1683 {
1684 unsigned int vbn; /* VBN of the block. */
1685 /* The last entry is identified so that it could be copied to the
1686 parent block. */
1687 unsigned short len; /* Length up to the last entry. */
1688 unsigned short lastlen; /* Length of the last entry. */
1689 } blk[MAX_LEVEL];
1690
1691 /* The kbn blocks are used to store long symbol names. */
1692 unsigned int kbn_sz = 0; /* Number of bytes available in the kbn block. */
1693 unsigned int kbn_vbn = 0; /* VBN of the kbn block. */
1694 unsigned char *kbn_blk = NULL; /* Contents of the kbn block. */
1695
1696 if (nbr == 0)
1697 {
1698 /* No entries. Very easy to handle. */
1699 if (topvbn != NULL)
1700 *topvbn = 0;
1701 return TRUE;
1702 }
1703
1704 if (abfd == NULL)
1705 {
1706 /* Sort the index the first time this function is called. */
1707 qsort (idx, nbr, sizeof (struct lib_index), lib_index_cmp);
1708 }
1709
1710 /* Allocate first index block. */
1711 level = 1;
1712 if (abfd != NULL)
1713 rblk[0] = bfd_zmalloc (sizeof (struct vms_indexdef));
1714 blk[0].vbn = (*vbn)++;
1715 blk[0].len = 0;
1716 blk[0].lastlen = 0;
1717
1718 for (i = 0; i < nbr; i++, idx++)
1719 {
1720 unsigned int idxlen;
1721 int flush = 0;
1722 unsigned int key_vbn = 0;
1723 unsigned int key_off = 0;
1724
1725 idxlen = get_idxlen (idx, is_elfidx);
1726
1727 if (is_elfidx && idx->namlen > MAX_KEYLEN)
1728 {
1729 /* If the key (ie name) is too long, write it in the kbn block. */
1730 unsigned int kl = idx->namlen;
1731 unsigned int kl_chunk;
1732 const char *key = idx->name;
1733
1734 /* Write the key in the kbn, chunk after chunk. */
1735 do
1736 {
1737 if (kbn_sz < sizeof (struct vms_kbn))
1738 {
1739 /* Not enough room in the kbn block. */
1740 if (abfd != NULL)
1741 {
1742 /* Write it to the disk (if there is one). */
1743 if (kbn_vbn != 0)
1744 {
1745 if (!vms_write_block (abfd, kbn_vbn, kbn_blk))
1746 return FALSE;
1747 }
1748 else
1749 {
1750 kbn_blk = bfd_malloc (VMS_BLOCK_SIZE);
1751 if (kbn_blk == NULL)
1752 return FALSE;
1753 }
1754 *(unsigned short *)kbn_blk = 0;
1755 }
1756 /* Allocate a new block for the keys. */
1757 kbn_vbn = (*vbn)++;
1758 kbn_sz = VMS_BLOCK_SIZE - 2;
1759 }
1760 /* Size of the chunk written to the current key block. */
1761 if (kl + sizeof (struct vms_kbn) > kbn_sz)
1762 kl_chunk = kbn_sz - sizeof (struct vms_kbn);
1763 else
1764 kl_chunk = kl;
1765
1766 if (kbn_blk != NULL)
1767 {
1768 struct vms_kbn *kbn;
1769
1770 kbn = (struct vms_kbn *)(kbn_blk + VMS_BLOCK_SIZE - kbn_sz);
1771
1772 if (key_vbn == 0)
1773 {
1774 /* Save the rfa of the first chunk. */
1775 key_vbn = kbn_vbn;
1776 key_off = VMS_BLOCK_SIZE - kbn_sz;
1777 }
1778
1779 bfd_putl16 (kl_chunk, kbn->keylen);
1780 if (kl_chunk == kl)
1781 {
1782 /* No next chunk. */
1783 bfd_putl32 (0, kbn->rfa.vbn);
1784 bfd_putl16 (0, kbn->rfa.offset);
1785 }
1786 else
1787 {
1788 /* Next chunk will be at the start of the next block. */
1789 bfd_putl32 (*vbn, kbn->rfa.vbn);
1790 bfd_putl16 (2, kbn->rfa.offset);
1791 }
1792 memcpy ((char *)(kbn + 1), key, kl_chunk);
1793 key += kl_chunk;
1794 }
1795 kl -= kl_chunk;
1796 kl_chunk = (kl_chunk + 1) & ~1; /* Always align. */
1797 kbn_sz -= kl_chunk + sizeof (struct vms_kbn);
1798 }
1799 while (kl > 0);
1800 }
1801
1802 /* Check if a block might overflow. In this case we will flush this
1803 block and all the blocks below it. */
1804 for (j = 0; j < level; j++)
1805 if (blk[j].len + blk[j].lastlen + idxlen > INDEXDEF__BLKSIZ)
1806 flush = j + 1;
1807
1808 for (j = 0; j < level; j++)
1809 {
1810 if (j < flush)
1811 {
1812 /* There is not enough room to write the new entry in this
1813 block or in a parent block. */
1814
1815 if (j + 1 == level)
1816 {
1817 BFD_ASSERT (level < MAX_LEVEL);
1818
1819 /* Need to create a parent. */
1820 if (abfd != NULL)
1821 {
1822 rblk[level] = bfd_zmalloc (sizeof (struct vms_indexdef));
1823 bfd_putl32 (*vbn, rblk[j]->parent);
1824 }
1825 blk[level].vbn = (*vbn)++;
1826 blk[level].len = 0;
1827 blk[level].lastlen = blk[j].lastlen;
1828
1829 level++;
1830 }
1831
1832 /* Update parent block: write the last entry from the current
1833 block. */
1834 if (abfd != NULL)
1835 {
1836 struct vms_rfa *rfa;
1837
1838 /* Pointer to the last entry in parent block. */
1839 rfa = (struct vms_rfa *)(rblk[j + 1]->keys + blk[j + 1].len);
1840
1841 /* Copy the whole entry. */
1842 BFD_ASSERT (blk[j + 1].lastlen == blk[j].lastlen);
1843 memcpy (rfa, rblk[j]->keys + blk[j].len, blk[j].lastlen);
1844 /* Fix the entry (which in always the first field of an
1845 entry. */
1846 bfd_putl32 (blk[j].vbn, rfa->vbn);
1847 bfd_putl16 (RFADEF__C_INDEX, rfa->offset);
1848 }
1849
1850 if (j + 1 == flush)
1851 {
1852 /* And allocate it. Do it only on the block that won't be
1853 flushed (so that the parent of the parent can be
1854 updated too). */
1855 blk[j + 1].len += blk[j + 1].lastlen;
1856 blk[j + 1].lastlen = 0;
1857 }
1858
1859 /* Write this block on the disk. */
1860 if (abfd != NULL)
1861 {
1862 bfd_putl16 (blk[j].len + blk[j].lastlen, rblk[j]->used);
1863 if (!vms_write_block (abfd, blk[j].vbn, rblk[j]))
1864 return FALSE;
1865 }
1866
1867 /* Reset this block. */
1868 blk[j].len = 0;
1869 blk[j].lastlen = 0;
1870 blk[j].vbn = (*vbn)++;
1871 }
1872
1873 /* Append it to the block. */
1874 if (j == 0)
1875 {
1876 /* Keep the previous last entry. */
1877 blk[j].len += blk[j].lastlen;
1878
1879 if (abfd != NULL)
1880 {
1881 struct vms_rfa *rfa;
1882
1883 rfa = (struct vms_rfa *)(rblk[j]->keys + blk[j].len);
1884 bfd_putl32 ((idx->abfd->proxy_origin / VMS_BLOCK_SIZE) + 1,
1885 rfa->vbn);
1886 bfd_putl16
1887 ((idx->abfd->proxy_origin % VMS_BLOCK_SIZE)
1888 + (is_elfidx ? 0 : DATA__DATA),
1889 rfa->offset);
1890
1891 if (is_elfidx)
1892 {
1893 /* Use elfidx format. */
1894 struct vms_elfidx *en = (struct vms_elfidx *)rfa;
1895
1896 en->flags = 0;
1897 if (key_vbn != 0)
1898 {
1899 /* Long symbol name. */
1900 struct vms_kbn *k = (struct vms_kbn *)(en->keyname);
1901 bfd_putl16 (sizeof (struct vms_kbn), en->keylen);
1902 bfd_putl16 (idx->namlen, k->keylen);
1903 bfd_putl32 (key_vbn, k->rfa.vbn);
1904 bfd_putl16 (key_off, k->rfa.offset);
1905 en->flags |= ELFIDX__SYMESC;
1906 }
1907 else
1908 {
1909 bfd_putl16 (idx->namlen, en->keylen);
1910 memcpy (en->keyname, idx->name, idx->namlen);
1911 }
1912 }
1913 else
1914 {
1915 /* Use idx format. */
1916 struct vms_idx *en = (struct vms_idx *)rfa;
1917 en->keylen = idx->namlen;
1918 memcpy (en->keyname, idx->name, idx->namlen);
1919 }
1920 }
1921 }
1922 /* The last added key can now be the last one all blocks in the
1923 path. */
1924 blk[j].lastlen = idxlen;
1925 }
1926 }
1927
1928 /* Save VBN of the root. */
1929 if (topvbn != NULL)
1930 *topvbn = blk[level - 1].vbn;
1931
1932 if (abfd == NULL)
1933 return TRUE;
1934
1935 /* Flush. */
1936 for (j = 1; j < level; j++)
1937 {
1938 /* Update parent block: write the new entry. */
1939 unsigned char *en;
1940 unsigned char *par;
1941 struct vms_rfa *rfa;
1942
1943 en = rblk[j - 1]->keys + blk[j - 1].len;
1944 par = rblk[j]->keys + blk[j].len;
1945 BFD_ASSERT (blk[j].lastlen == blk[j - 1].lastlen);
1946 memcpy (par, en, blk[j - 1].lastlen);
1947 rfa = (struct vms_rfa *)par;
1948 bfd_putl32 (blk[j - 1].vbn, rfa->vbn);
1949 bfd_putl16 (RFADEF__C_INDEX, rfa->offset);
1950 }
1951
1952 for (j = 0; j < level; j++)
1953 {
1954 /* Write this block on the disk. */
1955 bfd_putl16 (blk[j].len + blk[j].lastlen, rblk[j]->used);
1956 if (!vms_write_block (abfd, blk[j].vbn, rblk[j]))
1957 return FALSE;
1958
1959 free (rblk[j]);
1960 }
1961
1962 /* Write the last kbn (if any). */
1963 if (kbn_vbn != 0)
1964 {
1965 if (!vms_write_block (abfd, kbn_vbn, kbn_blk))
1966 return FALSE;
1967 free (kbn_blk);
1968 }
1969
1970 return TRUE;
1971 }
1972
1973 /* Append data to the data block DATA. Force write if PAD is true. */
1974
1975 static bfd_boolean
1976 vms_write_data_block (bfd *arch, struct vms_datadef *data, file_ptr *off,
1977 const unsigned char *buf, unsigned int len, int pad)
1978 {
1979 while (len > 0 || pad)
1980 {
1981 unsigned int doff = *off & (VMS_BLOCK_SIZE - 1);
1982 unsigned int remlen = (DATA__LENGTH - DATA__DATA) - doff;
1983 unsigned int l;
1984
1985 l = (len > remlen) ? remlen : len;
1986 memcpy (data->data + doff, buf, l);
1987 buf += l;
1988 len -= l;
1989 doff += l;
1990 *off += l;
1991
1992 if (doff == (DATA__LENGTH - DATA__DATA) || (len == 0 && pad))
1993 {
1994 data->recs = 0;
1995 data->fill_1 = 0;
1996 bfd_putl32 ((*off / VMS_BLOCK_SIZE) + 2, data->link);
1997
1998 if (bfd_bwrite (data, sizeof (*data), arch) != sizeof (*data))
1999 return FALSE;
2000
2001 *off += DATA__LENGTH - doff;
2002
2003 if (len == 0)
2004 break;
2005 }
2006 }
2007 return TRUE;
2008 }
2009
2010 /* Build the symbols index. */
2011
2012 static bfd_boolean
2013 _bfd_vms_lib_build_map (unsigned int nbr_modules,
2014 struct lib_index *modules,
2015 unsigned int *res_cnt,
2016 struct lib_index **res)
2017 {
2018 unsigned int i;
2019 asymbol **syms = NULL;
2020 long syms_max = 0;
2021 struct lib_index *map = NULL;
2022 unsigned int map_max = 1024; /* Fine initial default. */
2023 unsigned int map_count = 0;
2024
2025 map = (struct lib_index *) bfd_malloc (map_max * sizeof (struct lib_index));
2026 if (map == NULL)
2027 goto error_return;
2028
2029 /* Gather symbols. */
2030 for (i = 0; i < nbr_modules; i++)
2031 {
2032 long storage;
2033 long symcount;
2034 long src_count;
2035 bfd *current = modules[i].abfd;
2036
2037 if ((bfd_get_file_flags (current) & HAS_SYMS) == 0)
2038 continue;
2039
2040 storage = bfd_get_symtab_upper_bound (current);
2041 if (storage < 0)
2042 goto error_return;
2043
2044 if (storage != 0)
2045 {
2046 if (storage > syms_max)
2047 {
2048 free (syms);
2049 syms_max = storage;
2050 syms = (asymbol **) bfd_malloc (syms_max);
2051 if (syms == NULL)
2052 goto error_return;
2053 }
2054 symcount = bfd_canonicalize_symtab (current, syms);
2055 if (symcount < 0)
2056 goto error_return;
2057
2058 /* Now map over all the symbols, picking out the ones we
2059 want. */
2060 for (src_count = 0; src_count < symcount; src_count++)
2061 {
2062 flagword flags = (syms[src_count])->flags;
2063 asection *sec = syms[src_count]->section;
2064
2065 if ((flags & BSF_GLOBAL
2066 || flags & BSF_WEAK
2067 || flags & BSF_INDIRECT
2068 || bfd_is_com_section (sec))
2069 && ! bfd_is_und_section (sec))
2070 {
2071 struct lib_index *new_map;
2072
2073 /* This symbol will go into the archive header. */
2074 if (map_count == map_max)
2075 {
2076 map_max *= 2;
2077 new_map = (struct lib_index *)
2078 bfd_realloc (map, map_max * sizeof (struct lib_index));
2079 if (new_map == NULL)
2080 goto error_return;
2081 map = new_map;
2082 }
2083
2084 map[map_count].abfd = current;
2085 map[map_count].namlen = strlen (syms[src_count]->name);
2086 map[map_count].name = syms[src_count]->name;
2087 map_count++;
2088 modules[i].ref++;
2089 }
2090 }
2091 }
2092 }
2093
2094 *res_cnt = map_count;
2095 *res = map;
2096 return TRUE;
2097
2098 error_return:
2099 free (syms);
2100 free (map);
2101 return FALSE;
2102 }
2103
2104 /* Do the hard work: write an archive on the disk. */
2105
2106 bfd_boolean
2107 _bfd_vms_lib_write_archive_contents (bfd *arch)
2108 {
2109 bfd *current;
2110 unsigned int nbr_modules;
2111 struct lib_index *modules;
2112 unsigned int nbr_symbols;
2113 struct lib_index *symbols;
2114 struct lib_tdata *tdata = bfd_libdata (arch);
2115 unsigned int i;
2116 file_ptr off;
2117 unsigned int nbr_mod_iblk;
2118 unsigned int nbr_sym_iblk;
2119 unsigned int vbn;
2120 unsigned int mod_idx_vbn;
2121 unsigned int sym_idx_vbn;
2122 bfd_boolean is_elfidx = tdata->kind == vms_lib_ia64;
2123 unsigned int max_keylen = is_elfidx ? MAX_EKEYLEN : MAX_KEYLEN;
2124
2125 /* Count the number of modules (and do a first sanity check). */
2126 nbr_modules = 0;
2127 for (current = arch->archive_head;
2128 current != NULL;
2129 current = current->archive_next)
2130 {
2131 /* This check is checking the bfds for the objects we're reading
2132 from (which are usually either an object file or archive on
2133 disk), not the archive entries we're writing to. We don't
2134 actually create bfds for the archive members, we just copy
2135 them byte-wise when we write out the archive. */
2136 if (bfd_write_p (current) || !bfd_check_format (current, bfd_object))
2137 {
2138 bfd_set_error (bfd_error_invalid_operation);
2139 goto input_err;
2140 }
2141
2142 nbr_modules++;
2143 }
2144
2145 /* Build the modules list. */
2146 BFD_ASSERT (tdata->modules == NULL);
2147 modules = bfd_alloc (arch, nbr_modules * sizeof (struct lib_index));
2148 if (modules == NULL)
2149 return FALSE;
2150
2151 for (current = arch->archive_head, i = 0;
2152 current != NULL;
2153 current = current->archive_next, i++)
2154 {
2155 unsigned int nl;
2156
2157 modules[i].abfd = current;
2158 modules[i].name = vms_get_module_name (bfd_get_filename (current), FALSE);
2159 modules[i].ref = 1;
2160
2161 /* FIXME: silently truncate long names ? */
2162 nl = strlen (modules[i].name);
2163 modules[i].namlen = (nl > max_keylen ? max_keylen : nl);
2164 }
2165
2166 /* Create the module index. */
2167 vbn = 0;
2168 if (!vms_write_index (NULL, modules, nbr_modules, &vbn, NULL, is_elfidx))
2169 return FALSE;
2170 nbr_mod_iblk = vbn;
2171
2172 /* Create symbol index. */
2173 if (!_bfd_vms_lib_build_map (nbr_modules, modules, &nbr_symbols, &symbols))
2174 return FALSE;
2175
2176 vbn = 0;
2177 if (!vms_write_index (NULL, symbols, nbr_symbols, &vbn, NULL, is_elfidx))
2178 return FALSE;
2179 nbr_sym_iblk = vbn;
2180
2181 /* Write modules and remember their position. */
2182 off = (1 + nbr_mod_iblk + nbr_sym_iblk) * VMS_BLOCK_SIZE;
2183
2184 if (bfd_seek (arch, off, SEEK_SET) != 0)
2185 return FALSE;
2186
2187 for (i = 0; i < nbr_modules; i++)
2188 {
2189 struct vms_datadef data;
2190 unsigned char blk[VMS_BLOCK_SIZE];
2191 struct vms_mhd *mhd;
2192 unsigned int sz;
2193
2194 current = modules[i].abfd;
2195 current->proxy_origin = off;
2196
2197 if (is_elfidx)
2198 sz = 0;
2199 else
2200 {
2201 /* Write the MHD as a record (ie, size first). */
2202 sz = 2;
2203 bfd_putl16 (tdata->mhd_size, blk);
2204 }
2205 mhd = (struct vms_mhd *)(blk + sz);
2206 memset (mhd, 0, sizeof (struct vms_mhd));
2207 mhd->lbrflag = 0;
2208 mhd->id = MHD__C_MHDID;
2209 mhd->objidlng = 4;
2210 memcpy (mhd->objid, "V1.0", 4);
2211 bfd_putl32 (modules[i].ref, mhd->refcnt);
2212 /* FIXME: datim. */
2213
2214 sz += tdata->mhd_size;
2215 sz = (sz + 1) & ~1;
2216
2217 /* Rewind the member to be put into the archive. */
2218 if (bfd_seek (current, 0, SEEK_SET) != 0)
2219 goto input_err;
2220
2221 /* Copy the member into the archive. */
2222 if (is_elfidx)
2223 {
2224 unsigned int modsize = 0;
2225 bfd_size_type amt;
2226 file_ptr off_hdr = off;
2227
2228 /* Read to complete the first block. */
2229 amt = bfd_bread (blk + sz, VMS_BLOCK_SIZE - sz, current);
2230 if (amt == (bfd_size_type)-1)
2231 goto input_err;
2232 modsize = amt;
2233 if (amt < VMS_BLOCK_SIZE - sz)
2234 {
2235 /* The member size is less than a block. Pad the block. */
2236 memset (blk + sz + amt, 0, VMS_BLOCK_SIZE - sz - amt);
2237 }
2238 bfd_putl32 (modsize, mhd->modsize);
2239
2240 /* Write the first block (which contains an mhd). */
2241 if (bfd_bwrite (blk, VMS_BLOCK_SIZE, arch) != VMS_BLOCK_SIZE)
2242 goto input_err;
2243 off += VMS_BLOCK_SIZE;
2244
2245 if (amt == VMS_BLOCK_SIZE - sz)
2246 {
2247 /* Copy the remaining. */
2248 char buffer[DEFAULT_BUFFERSIZE];
2249
2250 while (1)
2251 {
2252 amt = bfd_bread (buffer, sizeof (buffer), current);
2253 if (amt == (bfd_size_type)-1)
2254 goto input_err;
2255 if (amt == 0)
2256 break;
2257 modsize += amt;
2258 if (amt != sizeof (buffer))
2259 {
2260 /* Clear the padding. */
2261 memset (buffer + amt, 0, sizeof (buffer) - amt);
2262 amt = (amt + VMS_BLOCK_SIZE) & ~(VMS_BLOCK_SIZE - 1);
2263 }
2264 if (bfd_bwrite (buffer, amt, arch) != amt)
2265 goto input_err;
2266 off += amt;
2267 }
2268
2269 /* Now that the size is known, write the first block (again). */
2270 bfd_putl32 (modsize, mhd->modsize);
2271 if (bfd_seek (arch, off_hdr, SEEK_SET) != 0
2272 || bfd_bwrite (blk, VMS_BLOCK_SIZE, arch) != VMS_BLOCK_SIZE)
2273 goto input_err;
2274 if (bfd_seek (arch, off, SEEK_SET) != 0)
2275 goto input_err;
2276 }
2277 }
2278 else
2279 {
2280 /* Write the MHD. */
2281 if (vms_write_data_block (arch, &data, &off, blk, sz, 0) < 0)
2282 goto input_err;
2283
2284 /* Write the member. */
2285 while (1)
2286 {
2287 sz = bfd_bread (blk, sizeof (blk), current);
2288 if (sz == 0)
2289 break;
2290 if (vms_write_data_block (arch, &data, &off, blk, sz, 0) < 0)
2291 goto input_err;
2292 }
2293
2294 /* Write the end of module marker. */
2295 if (vms_write_data_block (arch, &data, &off,
2296 eotdesc, sizeof (eotdesc), 1) < 0)
2297 goto input_err;
2298 }
2299 }
2300
2301 /* Write the indexes. */
2302 vbn = 2;
2303 if (!vms_write_index (arch, modules, nbr_modules, &vbn, &mod_idx_vbn,
2304 is_elfidx))
2305 return FALSE;
2306 if (!vms_write_index (arch, symbols, nbr_symbols, &vbn, &sym_idx_vbn,
2307 is_elfidx))
2308 return FALSE;
2309
2310 /* Write libary header. */
2311 {
2312 unsigned char blk[VMS_BLOCK_SIZE];
2313 struct vms_lhd *lhd = (struct vms_lhd *)blk;
2314 struct vms_idd *idd = (struct vms_idd *)(blk + sizeof (*lhd));
2315 unsigned int idd_flags;
2316 unsigned int saneid;
2317
2318 memset (blk, 0, sizeof (blk));
2319
2320 lhd->type = tdata->type;
2321 lhd->nindex = 2;
2322 switch (tdata->kind)
2323 {
2324 case vms_lib_alpha:
2325 saneid = LHD_SANEID3;
2326 break;
2327 case vms_lib_ia64:
2328 saneid = LHD_SANEID6;
2329 break;
2330 default:
2331 abort ();
2332 }
2333 bfd_putl32 (saneid, lhd->sanity);
2334 bfd_putl16 (tdata->ver, lhd->majorid);
2335 bfd_putl16 (0, lhd->minorid);
2336 snprintf ((char *)lhd->lbrver + 1, sizeof (lhd->lbrver) - 1,
2337 "GNU ar %u.%u.%u",
2338 (unsigned)(BFD_VERSION / 100000000UL),
2339 (unsigned)(BFD_VERSION / 1000000UL) % 100,
2340 (unsigned)(BFD_VERSION / 10000UL) % 100);
2341 lhd->lbrver[sizeof (lhd->lbrver) - 1] = 0;
2342 lhd->lbrver[0] = strlen ((char *)lhd->lbrver + 1);
2343
2344 bfd_putl32 (tdata->credat_lo, lhd->credat + 0);
2345 bfd_putl32 (tdata->credat_hi, lhd->credat + 4);
2346 vms_raw_get_time (lhd->updtim);
2347
2348 lhd->mhdusz = tdata->mhd_size - MHD__C_USRDAT;
2349
2350 bfd_putl32 (nbr_modules + nbr_symbols, lhd->idxcnt);
2351 bfd_putl32 (nbr_modules, lhd->modcnt);
2352 bfd_putl32 (nbr_modules, lhd->modhdrs);
2353
2354 /* Number of blocks for index. */
2355 bfd_putl32 (nbr_mod_iblk + nbr_sym_iblk, lhd->idxblks);
2356 bfd_putl32 (vbn - 1, lhd->hipreal);
2357 bfd_putl32 (vbn - 1, lhd->hiprusd);
2358
2359 /* VBN of the next free block. */
2360 bfd_putl32 ((off / VMS_BLOCK_SIZE) + 1, lhd->nextvbn);
2361 bfd_putl32 ((off / VMS_BLOCK_SIZE) + 1, lhd->nextrfa + 0);
2362 bfd_putl16 (0, lhd->nextrfa + 4);
2363
2364 /* First index (modules name). */
2365 idd_flags = IDD__FLAGS_ASCII | IDD__FLAGS_VARLENIDX
2366 | IDD__FLAGS_NOCASECMP | IDD__FLAGS_NOCASENTR;
2367 bfd_putl16 (idd_flags, idd->flags);
2368 bfd_putl16 (max_keylen + 1, idd->keylen);
2369 bfd_putl16 (mod_idx_vbn, idd->vbn);
2370 idd++;
2371
2372 /* Second index (symbols name). */
2373 bfd_putl16 (idd_flags, idd->flags);
2374 bfd_putl16 (max_keylen + 1, idd->keylen);
2375 bfd_putl16 (sym_idx_vbn, idd->vbn);
2376 idd++;
2377
2378 if (!vms_write_block (arch, 1, blk))
2379 return FALSE;
2380 }
2381
2382 return TRUE;
2383
2384 input_err:
2385 bfd_set_input_error (current, bfd_get_error ());
2386 return FALSE;
2387 }
2388
2389 /* Add a target for text library. This costs almost nothing and is useful to
2390 read VMS library on the host. */
2391
2392 const bfd_target alpha_vms_lib_txt_vec =
2393 {
2394 "vms-libtxt", /* Name. */
2395 bfd_target_unknown_flavour,
2396 BFD_ENDIAN_UNKNOWN, /* byteorder */
2397 BFD_ENDIAN_UNKNOWN, /* header_byteorder */
2398 0, /* Object flags. */
2399 0, /* Sect flags. */
2400 0, /* symbol_leading_char. */
2401 ' ', /* ar_pad_char. */
2402 15, /* ar_max_namelen. */
2403 0, /* match priority. */
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_getl64, bfd_getl_signed_64, bfd_putl64,
2408 bfd_getl32, bfd_getl_signed_32, bfd_putl32,
2409 bfd_getl16, bfd_getl_signed_16, bfd_putl16,
2410 { /* bfd_check_format. */
2411 _bfd_dummy_target,
2412 _bfd_dummy_target,
2413 _bfd_vms_lib_txt_archive_p,
2414 _bfd_dummy_target
2415 },
2416 { /* bfd_set_format. */
2417 _bfd_bool_bfd_false_error,
2418 _bfd_bool_bfd_false_error,
2419 _bfd_bool_bfd_false_error,
2420 _bfd_bool_bfd_false_error
2421 },
2422 { /* bfd_write_contents. */
2423 _bfd_bool_bfd_false_error,
2424 _bfd_bool_bfd_false_error,
2425 _bfd_bool_bfd_false_error,
2426 _bfd_bool_bfd_false_error
2427 },
2428 BFD_JUMP_TABLE_GENERIC (_bfd_generic),
2429 BFD_JUMP_TABLE_COPY (_bfd_generic),
2430 BFD_JUMP_TABLE_CORE (_bfd_nocore),
2431 BFD_JUMP_TABLE_ARCHIVE (_bfd_vms_lib),
2432 BFD_JUMP_TABLE_SYMBOLS (_bfd_nosymbols),
2433 BFD_JUMP_TABLE_RELOCS (_bfd_norelocs),
2434 BFD_JUMP_TABLE_WRITE (_bfd_nowrite),
2435 BFD_JUMP_TABLE_LINK (_bfd_nolink),
2436 BFD_JUMP_TABLE_DYNAMIC (_bfd_nodynamic),
2437
2438 NULL,
2439
2440 NULL
2441 };
This page took 0.082958 seconds and 4 git commands to generate.