Add support for decoding DWARF v5 DW_AT_addr_base tags.
[deliverable/binutils-gdb.git] / bfd / coff-rs6000.c
1 /* BFD back-end for IBM RS/6000 "XCOFF" files.
2 Copyright (C) 1990-2021 Free Software Foundation, Inc.
3 Written by Metin G. Ozisik, Mimi Phuong-Thao Vo, and John Gilmore.
4 Archive support from Damon A. Permezel.
5 Contributed by IBM Corporation and Cygnus Support.
6
7 This file is part of BFD, the Binary File Descriptor library.
8
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
13
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
22 MA 02110-1301, USA. */
23
24 #include "sysdep.h"
25 #include "libiberty.h"
26 #include "bfd.h"
27 #include "bfdlink.h"
28 #include "libbfd.h"
29 #include "coff/internal.h"
30 #include "coff/xcoff.h"
31 #include "coff/rs6000.h"
32 #include "libcoff.h"
33 #include "libxcoff.h"
34
35 extern bfd_boolean _bfd_xcoff_mkobject (bfd *);
36 extern bfd_boolean _bfd_xcoff_copy_private_bfd_data (bfd *, bfd *);
37 extern bfd_boolean _bfd_xcoff_is_local_label_name (bfd *, const char *);
38 extern reloc_howto_type *_bfd_xcoff_reloc_type_lookup
39 (bfd *, bfd_reloc_code_real_type);
40 extern bfd_boolean _bfd_xcoff_slurp_armap (bfd *);
41 extern bfd_cleanup _bfd_xcoff_archive_p (bfd *);
42 extern void * _bfd_xcoff_read_ar_hdr (bfd *);
43 extern bfd *_bfd_xcoff_openr_next_archived_file (bfd *, bfd *);
44 extern int _bfd_xcoff_stat_arch_elt (bfd *, struct stat *);
45 extern bfd_boolean _bfd_xcoff_write_armap
46 (bfd *, unsigned int, struct orl *, unsigned int, int);
47 extern bfd_boolean _bfd_xcoff_write_archive_contents (bfd *);
48 extern int _bfd_xcoff_sizeof_headers (bfd *, struct bfd_link_info *);
49 extern void _bfd_xcoff_swap_sym_in (bfd *, void *, void *);
50 extern unsigned int _bfd_xcoff_swap_sym_out (bfd *, void *, void *);
51 extern void _bfd_xcoff_swap_aux_in (bfd *, void *, int, int, int, int, void *);
52 extern unsigned int _bfd_xcoff_swap_aux_out
53 (bfd *, void *, int, int, int, int, void *);
54 static void xcoff_swap_reloc_in (bfd *, void *, void *);
55 static unsigned int xcoff_swap_reloc_out (bfd *, void *, void *);
56
57 /* Forward declare xcoff_rtype2howto for coffcode.h macro. */
58 void xcoff_rtype2howto (arelent *, struct internal_reloc *);
59
60 /* coffcode.h needs these to be defined. */
61 #define RS6000COFF_C 1
62
63 #define SELECT_RELOC(internal, howto) \
64 { \
65 internal.r_type = howto->type; \
66 internal.r_size = \
67 ((howto->complain_on_overflow == complain_overflow_signed \
68 ? 0x80 \
69 : 0) \
70 | (howto->bitsize - 1)); \
71 }
72
73 #define COFF_DEFAULT_SECTION_ALIGNMENT_POWER (3)
74 #define COFF_LONG_FILENAMES
75 #define NO_COFF_SYMBOLS
76 #define RTYPE2HOWTO(cache_ptr, dst) xcoff_rtype2howto (cache_ptr, dst)
77 #define coff_mkobject _bfd_xcoff_mkobject
78 #define coff_bfd_is_local_label_name _bfd_xcoff_is_local_label_name
79 #ifdef AIX_CORE
80 extern bfd_cleanup rs6000coff_core_p (bfd *abfd);
81 extern bfd_boolean rs6000coff_core_file_matches_executable_p
82 (bfd *cbfd, bfd *ebfd);
83 extern char *rs6000coff_core_file_failing_command (bfd *abfd);
84 extern int rs6000coff_core_file_failing_signal (bfd *abfd);
85 #define CORE_FILE_P rs6000coff_core_p
86 #define coff_core_file_failing_command \
87 rs6000coff_core_file_failing_command
88 #define coff_core_file_failing_signal \
89 rs6000coff_core_file_failing_signal
90 #define coff_core_file_matches_executable_p \
91 rs6000coff_core_file_matches_executable_p
92 #define coff_core_file_pid \
93 _bfd_nocore_core_file_pid
94 #else
95 #define CORE_FILE_P _bfd_dummy_target
96 #define coff_core_file_failing_command \
97 _bfd_nocore_core_file_failing_command
98 #define coff_core_file_failing_signal \
99 _bfd_nocore_core_file_failing_signal
100 #define coff_core_file_matches_executable_p \
101 _bfd_nocore_core_file_matches_executable_p
102 #define coff_core_file_pid \
103 _bfd_nocore_core_file_pid
104 #endif
105 #define coff_SWAP_sym_in _bfd_xcoff_swap_sym_in
106 #define coff_SWAP_sym_out _bfd_xcoff_swap_sym_out
107 #define coff_SWAP_aux_in _bfd_xcoff_swap_aux_in
108 #define coff_SWAP_aux_out _bfd_xcoff_swap_aux_out
109 #define coff_swap_reloc_in xcoff_swap_reloc_in
110 #define coff_swap_reloc_out xcoff_swap_reloc_out
111 #define NO_COFF_RELOCS
112
113 #ifndef bfd_pe_print_pdata
114 #define bfd_pe_print_pdata NULL
115 #endif
116
117 #include "coffcode.h"
118
119 /* The main body of code is in coffcode.h. */
120
121 static const char *normalize_filename (bfd *);
122 static bfd_boolean xcoff_write_armap_old
123 (bfd *, unsigned int, struct orl *, unsigned int, int);
124 static bfd_boolean xcoff_write_armap_big
125 (bfd *, unsigned int, struct orl *, unsigned int, int);
126 static bfd_boolean xcoff_write_archive_contents_old (bfd *);
127 static bfd_boolean xcoff_write_archive_contents_big (bfd *);
128 static void xcoff_swap_ldhdr_in (bfd *, const void *, struct internal_ldhdr *);
129 static void xcoff_swap_ldhdr_out (bfd *, const struct internal_ldhdr *, void *);
130 static void xcoff_swap_ldsym_in (bfd *, const void *, struct internal_ldsym *);
131 static void xcoff_swap_ldsym_out (bfd *, const struct internal_ldsym *, void *);
132 static void xcoff_swap_ldrel_in (bfd *, const void *, struct internal_ldrel *);
133 static void xcoff_swap_ldrel_out (bfd *, const struct internal_ldrel *, void *);
134 static bfd_boolean xcoff_ppc_relocate_section
135 (bfd *, struct bfd_link_info *, bfd *, asection *, bfd_byte *,
136 struct internal_reloc *, struct internal_syment *, asection **);
137 static bfd_boolean _bfd_xcoff_put_ldsymbol_name
138 (bfd *, struct xcoff_loader_info *, struct internal_ldsym *, const char *);
139 static asection *xcoff_create_csect_from_smclas
140 (bfd *, union internal_auxent *, const char *);
141 static bfd_boolean xcoff_is_lineno_count_overflow (bfd *, bfd_vma);
142 static bfd_boolean xcoff_is_reloc_count_overflow (bfd *, bfd_vma);
143 static bfd_vma xcoff_loader_symbol_offset (bfd *, struct internal_ldhdr *);
144 static bfd_vma xcoff_loader_reloc_offset (bfd *, struct internal_ldhdr *);
145 static bfd_boolean xcoff_generate_rtinit
146 (bfd *, const char *, const char *, bfd_boolean);
147 static bfd_boolean do_pad (bfd *, unsigned int);
148 static bfd_boolean do_copy (bfd *, bfd *);
149
150 /* Relocation functions */
151 static xcoff_reloc_function xcoff_reloc_type_br;
152
153 static xcoff_complain_function xcoff_complain_overflow_dont_func;
154 static xcoff_complain_function xcoff_complain_overflow_bitfield_func;
155 static xcoff_complain_function xcoff_complain_overflow_signed_func;
156 static xcoff_complain_function xcoff_complain_overflow_unsigned_func;
157
158 xcoff_reloc_function *const
159 xcoff_calculate_relocation[XCOFF_MAX_CALCULATE_RELOCATION] =
160 {
161 xcoff_reloc_type_pos, /* R_POS (0x00) */
162 xcoff_reloc_type_neg, /* R_NEG (0x01) */
163 xcoff_reloc_type_rel, /* R_REL (0x02) */
164 xcoff_reloc_type_toc, /* R_TOC (0x03) */
165 xcoff_reloc_type_fail, /* R_RTB (0x04) */
166 xcoff_reloc_type_toc, /* R_GL (0x05) */
167 xcoff_reloc_type_toc, /* R_TCL (0x06) */
168 xcoff_reloc_type_fail, /* (0x07) */
169 xcoff_reloc_type_ba, /* R_BA (0x08) */
170 xcoff_reloc_type_fail, /* (0x09) */
171 xcoff_reloc_type_br, /* R_BR (0x0a) */
172 xcoff_reloc_type_fail, /* (0x0b) */
173 xcoff_reloc_type_pos, /* R_RL (0x0c) */
174 xcoff_reloc_type_pos, /* R_RLA (0x0d) */
175 xcoff_reloc_type_fail, /* (0x0e) */
176 xcoff_reloc_type_noop, /* R_REF (0x0f) */
177 xcoff_reloc_type_fail, /* (0x10) */
178 xcoff_reloc_type_fail, /* (0x11) */
179 xcoff_reloc_type_toc, /* R_TRL (0x12) */
180 xcoff_reloc_type_toc, /* R_TRLA (0x13) */
181 xcoff_reloc_type_fail, /* R_RRTBI (0x14) */
182 xcoff_reloc_type_fail, /* R_RRTBA (0x15) */
183 xcoff_reloc_type_ba, /* R_CAI (0x16) */
184 xcoff_reloc_type_crel, /* R_CREL (0x17) */
185 xcoff_reloc_type_ba, /* R_RBA (0x18) */
186 xcoff_reloc_type_ba, /* R_RBAC (0x19) */
187 xcoff_reloc_type_br, /* R_RBR (0x1a) */
188 xcoff_reloc_type_ba, /* R_RBRC (0x1b) */
189 };
190
191 xcoff_complain_function *const
192 xcoff_complain_overflow[XCOFF_MAX_COMPLAIN_OVERFLOW] =
193 {
194 xcoff_complain_overflow_dont_func,
195 xcoff_complain_overflow_bitfield_func,
196 xcoff_complain_overflow_signed_func,
197 xcoff_complain_overflow_unsigned_func,
198 };
199
200 /* Information about one member of an archive. */
201 struct member_layout
202 {
203 /* The archive member that this structure describes. */
204 bfd *member;
205
206 /* The number of bytes of padding that must be inserted before the
207 start of the member in order to ensure that the section contents
208 are correctly aligned. */
209 unsigned int leading_padding;
210
211 /* The offset of MEMBER from the start of the archive (i.e. the end
212 of the leading padding). */
213 file_ptr offset;
214
215 /* The normalized name of MEMBER. */
216 const char *name;
217
218 /* The length of NAME, without padding. */
219 bfd_size_type namlen;
220
221 /* The length of NAME, with padding. */
222 bfd_size_type padded_namlen;
223
224 /* The size of MEMBER's header, including the name and magic sequence. */
225 bfd_size_type header_size;
226
227 /* The size of the MEMBER's contents. */
228 bfd_size_type contents_size;
229
230 /* The number of bytes of padding that must be inserted after MEMBER
231 in order to preserve even alignment. */
232 bfd_size_type trailing_padding;
233 };
234
235 /* A structure used for iterating over the members of an archive. */
236 struct archive_iterator
237 {
238 /* The archive itself. */
239 bfd *archive;
240
241 /* Information about the current archive member. */
242 struct member_layout current;
243
244 /* Information about the next archive member. MEMBER is null if there
245 are no more archive members, in which case OFFSET is the offset of
246 the first unused byte. */
247 struct member_layout next;
248 };
249
250 /* Initialize INFO so that it describes member MEMBER of archive ARCHIVE.
251 OFFSET is the even-padded offset of MEMBER, not including any leading
252 padding needed for section alignment. */
253
254 static void
255 member_layout_init (struct member_layout *info, bfd *archive,
256 bfd *member, file_ptr offset)
257 {
258 info->member = member;
259 info->leading_padding = 0;
260 if (member)
261 {
262 info->name = normalize_filename (member);
263 info->namlen = strlen (info->name);
264 info->padded_namlen = info->namlen + (info->namlen & 1);
265 if (xcoff_big_format_p (archive))
266 info->header_size = SIZEOF_AR_HDR_BIG;
267 else
268 info->header_size = SIZEOF_AR_HDR;
269 info->header_size += info->padded_namlen + SXCOFFARFMAG;
270 info->contents_size = arelt_size (member);
271 info->trailing_padding = info->contents_size & 1;
272
273 if (bfd_check_format (member, bfd_object)
274 && bfd_get_flavour (member) == bfd_target_xcoff_flavour
275 && (member->flags & DYNAMIC) != 0)
276 info->leading_padding
277 = (-(offset + info->header_size)
278 & ((1 << bfd_xcoff_text_align_power (member)) - 1));
279 }
280 info->offset = offset + info->leading_padding;
281 }
282
283 /* Set up ITERATOR to iterate through archive ARCHIVE. */
284
285 static void
286 archive_iterator_begin (struct archive_iterator *iterator,
287 bfd *archive)
288 {
289 iterator->archive = archive;
290 member_layout_init (&iterator->next, archive, archive->archive_head,
291 xcoff_big_format_p (archive)
292 ? SIZEOF_AR_FILE_HDR_BIG
293 : SIZEOF_AR_FILE_HDR);
294 }
295
296 /* Make ITERATOR visit the first unvisited archive member. Return true
297 on success; return false if all members have been visited. */
298
299 static bfd_boolean
300 archive_iterator_next (struct archive_iterator *iterator)
301 {
302 if (!iterator->next.member)
303 return FALSE;
304
305 iterator->current = iterator->next;
306 member_layout_init (&iterator->next, iterator->archive,
307 iterator->current.member->archive_next,
308 iterator->current.offset
309 + iterator->current.header_size
310 + iterator->current.contents_size
311 + iterator->current.trailing_padding);
312 return TRUE;
313 }
314
315 /* We use our own tdata type. Its first field is the COFF tdata type,
316 so the COFF routines are compatible. */
317
318 bfd_boolean
319 _bfd_xcoff_mkobject (bfd *abfd)
320 {
321 coff_data_type *coff;
322 size_t amt = sizeof (struct xcoff_tdata);
323
324 abfd->tdata.xcoff_obj_data = (struct xcoff_tdata *) bfd_zalloc (abfd, amt);
325 if (abfd->tdata.xcoff_obj_data == NULL)
326 return FALSE;
327 coff = coff_data (abfd);
328 coff->symbols = (coff_symbol_type *) NULL;
329 coff->conversion_table = (unsigned int *) NULL;
330 coff->raw_syments = (struct coff_ptr_struct *) NULL;
331 coff->relocbase = 0;
332
333 xcoff_data (abfd)->modtype = ('1' << 8) | 'L';
334
335 /* We set cputype to -1 to indicate that it has not been
336 initialized. */
337 xcoff_data (abfd)->cputype = -1;
338
339 xcoff_data (abfd)->csects = NULL;
340 xcoff_data (abfd)->debug_indices = NULL;
341
342 /* text section alignment is different than the default */
343 bfd_xcoff_text_align_power (abfd) = 2;
344
345 return TRUE;
346 }
347
348 /* Copy XCOFF data from one BFD to another. */
349
350 bfd_boolean
351 _bfd_xcoff_copy_private_bfd_data (bfd *ibfd, bfd *obfd)
352 {
353 struct xcoff_tdata *ix, *ox;
354 asection *sec;
355
356 if (ibfd->xvec != obfd->xvec)
357 return TRUE;
358 ix = xcoff_data (ibfd);
359 ox = xcoff_data (obfd);
360 ox->full_aouthdr = ix->full_aouthdr;
361 ox->toc = ix->toc;
362 if (ix->sntoc == 0)
363 ox->sntoc = 0;
364 else
365 {
366 sec = coff_section_from_bfd_index (ibfd, ix->sntoc);
367 if (sec == NULL)
368 ox->sntoc = 0;
369 else
370 ox->sntoc = sec->output_section->target_index;
371 }
372 if (ix->snentry == 0)
373 ox->snentry = 0;
374 else
375 {
376 sec = coff_section_from_bfd_index (ibfd, ix->snentry);
377 if (sec == NULL)
378 ox->snentry = 0;
379 else
380 ox->snentry = sec->output_section->target_index;
381 }
382 bfd_xcoff_text_align_power (obfd) = bfd_xcoff_text_align_power (ibfd);
383 bfd_xcoff_data_align_power (obfd) = bfd_xcoff_data_align_power (ibfd);
384 ox->modtype = ix->modtype;
385 ox->cputype = ix->cputype;
386 ox->maxdata = ix->maxdata;
387 ox->maxstack = ix->maxstack;
388 return TRUE;
389 }
390
391 /* I don't think XCOFF really has a notion of local labels based on
392 name. This will mean that ld -X doesn't actually strip anything.
393 The AIX native linker does not have a -X option, and it ignores the
394 -x option. */
395
396 bfd_boolean
397 _bfd_xcoff_is_local_label_name (bfd *abfd ATTRIBUTE_UNUSED,
398 const char *name ATTRIBUTE_UNUSED)
399 {
400 return FALSE;
401 }
402 \f
403 void
404 _bfd_xcoff_swap_sym_in (bfd *abfd, void * ext1, void * in1)
405 {
406 SYMENT *ext = (SYMENT *)ext1;
407 struct internal_syment * in = (struct internal_syment *)in1;
408
409 if (ext->e.e_name[0] != 0)
410 {
411 memcpy (in->_n._n_name, ext->e.e_name, SYMNMLEN);
412 }
413 else
414 {
415 in->_n._n_n._n_zeroes = 0;
416 in->_n._n_n._n_offset = H_GET_32 (abfd, ext->e.e.e_offset);
417 }
418
419 in->n_value = H_GET_32 (abfd, ext->e_value);
420 in->n_scnum = (short) H_GET_16 (abfd, ext->e_scnum);
421 in->n_type = H_GET_16 (abfd, ext->e_type);
422 in->n_sclass = H_GET_8 (abfd, ext->e_sclass);
423 in->n_numaux = H_GET_8 (abfd, ext->e_numaux);
424 }
425
426 unsigned int
427 _bfd_xcoff_swap_sym_out (bfd *abfd, void * inp, void * extp)
428 {
429 struct internal_syment *in = (struct internal_syment *)inp;
430 SYMENT *ext =(SYMENT *)extp;
431
432 if (in->_n._n_name[0] != 0)
433 {
434 memcpy (ext->e.e_name, in->_n._n_name, SYMNMLEN);
435 }
436 else
437 {
438 H_PUT_32 (abfd, 0, ext->e.e.e_zeroes);
439 H_PUT_32 (abfd, in->_n._n_n._n_offset, ext->e.e.e_offset);
440 }
441
442 H_PUT_32 (abfd, in->n_value, ext->e_value);
443 H_PUT_16 (abfd, in->n_scnum, ext->e_scnum);
444 H_PUT_16 (abfd, in->n_type, ext->e_type);
445 H_PUT_8 (abfd, in->n_sclass, ext->e_sclass);
446 H_PUT_8 (abfd, in->n_numaux, ext->e_numaux);
447 return bfd_coff_symesz (abfd);
448 }
449
450 void
451 _bfd_xcoff_swap_aux_in (bfd *abfd, void * ext1, int type, int in_class,
452 int indx, int numaux, void * in1)
453 {
454 AUXENT * ext = (AUXENT *)ext1;
455 union internal_auxent *in = (union internal_auxent *)in1;
456
457 switch (in_class)
458 {
459 case C_FILE:
460 if (ext->x_file.x_n.x_fname[0] == 0)
461 {
462 in->x_file.x_n.x_zeroes = 0;
463 in->x_file.x_n.x_offset =
464 H_GET_32 (abfd, ext->x_file.x_n.x_n.x_offset);
465 }
466 else
467 {
468 if (numaux > 1)
469 {
470 if (indx == 0)
471 memcpy (in->x_file.x_fname, ext->x_file.x_n.x_fname,
472 numaux * sizeof (AUXENT));
473 }
474 else
475 {
476 memcpy (in->x_file.x_fname, ext->x_file.x_n.x_fname, FILNMLEN);
477 }
478 }
479 goto end;
480
481 /* RS/6000 "csect" auxents */
482 case C_EXT:
483 case C_AIX_WEAKEXT:
484 case C_HIDEXT:
485 if (indx + 1 == numaux)
486 {
487 in->x_csect.x_scnlen.l = H_GET_32 (abfd, ext->x_csect.x_scnlen);
488 in->x_csect.x_parmhash = H_GET_32 (abfd, ext->x_csect.x_parmhash);
489 in->x_csect.x_snhash = H_GET_16 (abfd, ext->x_csect.x_snhash);
490 /* We don't have to hack bitfields in x_smtyp because it's
491 defined by shifts-and-ands, which are equivalent on all
492 byte orders. */
493 in->x_csect.x_smtyp = H_GET_8 (abfd, ext->x_csect.x_smtyp);
494 in->x_csect.x_smclas = H_GET_8 (abfd, ext->x_csect.x_smclas);
495 in->x_csect.x_stab = H_GET_32 (abfd, ext->x_csect.x_stab);
496 in->x_csect.x_snstab = H_GET_16 (abfd, ext->x_csect.x_snstab);
497 goto end;
498 }
499 break;
500
501 case C_STAT:
502 case C_LEAFSTAT:
503 case C_HIDDEN:
504 if (type == T_NULL)
505 {
506 in->x_scn.x_scnlen = H_GET_32 (abfd, ext->x_scn.x_scnlen);
507 in->x_scn.x_nreloc = H_GET_16 (abfd, ext->x_scn.x_nreloc);
508 in->x_scn.x_nlinno = H_GET_16 (abfd, ext->x_scn.x_nlinno);
509 /* PE defines some extra fields; we zero them out for
510 safety. */
511 in->x_scn.x_checksum = 0;
512 in->x_scn.x_associated = 0;
513 in->x_scn.x_comdat = 0;
514
515 goto end;
516 }
517 break;
518 }
519
520 in->x_sym.x_tagndx.l = H_GET_32 (abfd, ext->x_sym.x_tagndx);
521 in->x_sym.x_tvndx = H_GET_16 (abfd, ext->x_sym.x_tvndx);
522
523 if (in_class == C_BLOCK || in_class == C_FCN || ISFCN (type)
524 || ISTAG (in_class))
525 {
526 in->x_sym.x_fcnary.x_fcn.x_lnnoptr =
527 H_GET_32 (abfd, ext->x_sym.x_fcnary.x_fcn.x_lnnoptr);
528 in->x_sym.x_fcnary.x_fcn.x_endndx.l =
529 H_GET_32 (abfd, ext->x_sym.x_fcnary.x_fcn.x_endndx);
530 }
531 else
532 {
533 in->x_sym.x_fcnary.x_ary.x_dimen[0] =
534 H_GET_16 (abfd, ext->x_sym.x_fcnary.x_ary.x_dimen[0]);
535 in->x_sym.x_fcnary.x_ary.x_dimen[1] =
536 H_GET_16 (abfd, ext->x_sym.x_fcnary.x_ary.x_dimen[1]);
537 in->x_sym.x_fcnary.x_ary.x_dimen[2] =
538 H_GET_16 (abfd, ext->x_sym.x_fcnary.x_ary.x_dimen[2]);
539 in->x_sym.x_fcnary.x_ary.x_dimen[3] =
540 H_GET_16 (abfd, ext->x_sym.x_fcnary.x_ary.x_dimen[3]);
541 }
542
543 if (ISFCN (type))
544 {
545 in->x_sym.x_misc.x_fsize = H_GET_32 (abfd, ext->x_sym.x_misc.x_fsize);
546 }
547 else
548 {
549 in->x_sym.x_misc.x_lnsz.x_lnno =
550 H_GET_16 (abfd, ext->x_sym.x_misc.x_lnsz.x_lnno);
551 in->x_sym.x_misc.x_lnsz.x_size =
552 H_GET_16 (abfd, ext->x_sym.x_misc.x_lnsz.x_size);
553 }
554
555 end: ;
556 /* The semicolon is because MSVC doesn't like labels at
557 end of block. */
558 }
559
560 unsigned int
561 _bfd_xcoff_swap_aux_out (bfd *abfd, void * inp, int type, int in_class,
562 int indx ATTRIBUTE_UNUSED,
563 int numaux ATTRIBUTE_UNUSED,
564 void * extp)
565 {
566 union internal_auxent *in = (union internal_auxent *)inp;
567 AUXENT *ext = (AUXENT *)extp;
568
569 memset (ext, 0, bfd_coff_auxesz (abfd));
570 switch (in_class)
571 {
572 case C_FILE:
573 if (in->x_file.x_fname[0] == 0)
574 {
575 H_PUT_32 (abfd, 0, ext->x_file.x_n.x_n.x_zeroes);
576 H_PUT_32 (abfd, in->x_file.x_n.x_offset,
577 ext->x_file.x_n.x_n.x_offset);
578 }
579 else
580 {
581 memcpy (ext->x_file.x_n.x_fname, in->x_file.x_fname, FILNMLEN);
582 }
583 goto end;
584
585 /* RS/6000 "csect" auxents */
586 case C_EXT:
587 case C_AIX_WEAKEXT:
588 case C_HIDEXT:
589 if (indx + 1 == numaux)
590 {
591 H_PUT_32 (abfd, in->x_csect.x_scnlen.l, ext->x_csect.x_scnlen);
592 H_PUT_32 (abfd, in->x_csect.x_parmhash, ext->x_csect.x_parmhash);
593 H_PUT_16 (abfd, in->x_csect.x_snhash, ext->x_csect.x_snhash);
594 /* We don't have to hack bitfields in x_smtyp because it's
595 defined by shifts-and-ands, which are equivalent on all
596 byte orders. */
597 H_PUT_8 (abfd, in->x_csect.x_smtyp, ext->x_csect.x_smtyp);
598 H_PUT_8 (abfd, in->x_csect.x_smclas, ext->x_csect.x_smclas);
599 H_PUT_32 (abfd, in->x_csect.x_stab, ext->x_csect.x_stab);
600 H_PUT_16 (abfd, in->x_csect.x_snstab, ext->x_csect.x_snstab);
601 goto end;
602 }
603 break;
604
605 case C_STAT:
606 case C_LEAFSTAT:
607 case C_HIDDEN:
608 if (type == T_NULL)
609 {
610 H_PUT_32 (abfd, in->x_scn.x_scnlen, ext->x_scn.x_scnlen);
611 H_PUT_16 (abfd, in->x_scn.x_nreloc, ext->x_scn.x_nreloc);
612 H_PUT_16 (abfd, in->x_scn.x_nlinno, ext->x_scn.x_nlinno);
613 goto end;
614 }
615 break;
616 }
617
618 H_PUT_32 (abfd, in->x_sym.x_tagndx.l, ext->x_sym.x_tagndx);
619 H_PUT_16 (abfd, in->x_sym.x_tvndx, ext->x_sym.x_tvndx);
620
621 if (in_class == C_BLOCK || in_class == C_FCN || ISFCN (type)
622 || ISTAG (in_class))
623 {
624 H_PUT_32 (abfd, in->x_sym.x_fcnary.x_fcn.x_lnnoptr,
625 ext->x_sym.x_fcnary.x_fcn.x_lnnoptr);
626 H_PUT_32 (abfd, in->x_sym.x_fcnary.x_fcn.x_endndx.l,
627 ext->x_sym.x_fcnary.x_fcn.x_endndx);
628 }
629 else
630 {
631 H_PUT_16 (abfd, in->x_sym.x_fcnary.x_ary.x_dimen[0],
632 ext->x_sym.x_fcnary.x_ary.x_dimen[0]);
633 H_PUT_16 (abfd, in->x_sym.x_fcnary.x_ary.x_dimen[1],
634 ext->x_sym.x_fcnary.x_ary.x_dimen[1]);
635 H_PUT_16 (abfd, in->x_sym.x_fcnary.x_ary.x_dimen[2],
636 ext->x_sym.x_fcnary.x_ary.x_dimen[2]);
637 H_PUT_16 (abfd, in->x_sym.x_fcnary.x_ary.x_dimen[3],
638 ext->x_sym.x_fcnary.x_ary.x_dimen[3]);
639 }
640
641 if (ISFCN (type))
642 H_PUT_32 (abfd, in->x_sym.x_misc.x_fsize, ext->x_sym.x_misc.x_fsize);
643 else
644 {
645 H_PUT_16 (abfd, in->x_sym.x_misc.x_lnsz.x_lnno,
646 ext->x_sym.x_misc.x_lnsz.x_lnno);
647 H_PUT_16 (abfd, in->x_sym.x_misc.x_lnsz.x_size,
648 ext->x_sym.x_misc.x_lnsz.x_size);
649 }
650
651 end:
652 return bfd_coff_auxesz (abfd);
653 }
654 \f
655 /* The XCOFF reloc table. Actually, XCOFF relocations specify the
656 bitsize and whether they are signed or not, along with a
657 conventional type. This table is for the types, which are used for
658 different algorithms for putting in the reloc. Many of these
659 relocs need special_function entries, which I have not written. */
660
661 reloc_howto_type xcoff_howto_table[] =
662 {
663 /* 0x00: Standard 32 bit relocation. */
664 HOWTO (R_POS, /* type */
665 0, /* rightshift */
666 2, /* size (0 = byte, 1 = short, 2 = long) */
667 32, /* bitsize */
668 FALSE, /* pc_relative */
669 0, /* bitpos */
670 complain_overflow_bitfield, /* complain_on_overflow */
671 0, /* special_function */
672 "R_POS", /* name */
673 TRUE, /* partial_inplace */
674 0xffffffff, /* src_mask */
675 0xffffffff, /* dst_mask */
676 FALSE), /* pcrel_offset */
677
678 /* 0x01: 32 bit relocation, but store negative value. */
679 HOWTO (R_NEG, /* type */
680 0, /* rightshift */
681 -2, /* size (0 = byte, 1 = short, 2 = long) */
682 32, /* bitsize */
683 FALSE, /* pc_relative */
684 0, /* bitpos */
685 complain_overflow_bitfield, /* complain_on_overflow */
686 0, /* special_function */
687 "R_NEG", /* name */
688 TRUE, /* partial_inplace */
689 0xffffffff, /* src_mask */
690 0xffffffff, /* dst_mask */
691 FALSE), /* pcrel_offset */
692
693 /* 0x02: 32 bit PC relative relocation. */
694 HOWTO (R_REL, /* type */
695 0, /* rightshift */
696 2, /* size (0 = byte, 1 = short, 2 = long) */
697 32, /* bitsize */
698 TRUE, /* pc_relative */
699 0, /* bitpos */
700 complain_overflow_signed, /* complain_on_overflow */
701 0, /* special_function */
702 "R_REL", /* name */
703 TRUE, /* partial_inplace */
704 0xffffffff, /* src_mask */
705 0xffffffff, /* dst_mask */
706 FALSE), /* pcrel_offset */
707
708 /* 0x03: 16 bit TOC relative relocation. */
709 HOWTO (R_TOC, /* type */
710 0, /* rightshift */
711 1, /* size (0 = byte, 1 = short, 2 = long) */
712 16, /* bitsize */
713 FALSE, /* pc_relative */
714 0, /* bitpos */
715 complain_overflow_bitfield, /* complain_on_overflow */
716 0, /* special_function */
717 "R_TOC", /* name */
718 TRUE, /* partial_inplace */
719 0xffff, /* src_mask */
720 0xffff, /* dst_mask */
721 FALSE), /* pcrel_offset */
722
723 /* 0x04: I don't really know what this is. */
724 HOWTO (R_RTB, /* type */
725 1, /* rightshift */
726 2, /* size (0 = byte, 1 = short, 2 = long) */
727 32, /* bitsize */
728 FALSE, /* pc_relative */
729 0, /* bitpos */
730 complain_overflow_bitfield, /* complain_on_overflow */
731 0, /* special_function */
732 "R_RTB", /* name */
733 TRUE, /* partial_inplace */
734 0xffffffff, /* src_mask */
735 0xffffffff, /* dst_mask */
736 FALSE), /* pcrel_offset */
737
738 /* 0x05: External TOC relative symbol. */
739 HOWTO (R_GL, /* type */
740 0, /* rightshift */
741 1, /* size (0 = byte, 1 = short, 2 = long) */
742 16, /* bitsize */
743 FALSE, /* pc_relative */
744 0, /* bitpos */
745 complain_overflow_bitfield, /* complain_on_overflow */
746 0, /* special_function */
747 "R_GL", /* name */
748 TRUE, /* partial_inplace */
749 0xffff, /* src_mask */
750 0xffff, /* dst_mask */
751 FALSE), /* pcrel_offset */
752
753 /* 0x06: Local TOC relative symbol. */
754 HOWTO (R_TCL, /* type */
755 0, /* rightshift */
756 1, /* size (0 = byte, 1 = short, 2 = long) */
757 16, /* bitsize */
758 FALSE, /* pc_relative */
759 0, /* bitpos */
760 complain_overflow_bitfield, /* complain_on_overflow */
761 0, /* special_function */
762 "R_TCL", /* name */
763 TRUE, /* partial_inplace */
764 0xffff, /* src_mask */
765 0xffff, /* dst_mask */
766 FALSE), /* pcrel_offset */
767
768 EMPTY_HOWTO (7),
769
770 /* 0x08: Non modifiable absolute branch. */
771 HOWTO (R_BA, /* type */
772 0, /* rightshift */
773 2, /* size (0 = byte, 1 = short, 2 = long) */
774 26, /* bitsize */
775 FALSE, /* pc_relative */
776 0, /* bitpos */
777 complain_overflow_bitfield, /* complain_on_overflow */
778 0, /* special_function */
779 "R_BA_26", /* name */
780 TRUE, /* partial_inplace */
781 0x03fffffc, /* src_mask */
782 0x03fffffc, /* dst_mask */
783 FALSE), /* pcrel_offset */
784
785 EMPTY_HOWTO (9),
786
787 /* 0x0a: Non modifiable relative branch. */
788 HOWTO (R_BR, /* type */
789 0, /* rightshift */
790 2, /* size (0 = byte, 1 = short, 2 = long) */
791 26, /* bitsize */
792 TRUE, /* pc_relative */
793 0, /* bitpos */
794 complain_overflow_signed, /* complain_on_overflow */
795 0, /* special_function */
796 "R_BR", /* name */
797 TRUE, /* partial_inplace */
798 0x03fffffc, /* src_mask */
799 0x03fffffc, /* dst_mask */
800 FALSE), /* pcrel_offset */
801
802 EMPTY_HOWTO (0xb),
803
804 /* 0x0c: Indirect load. */
805 HOWTO (R_RL, /* type */
806 0, /* rightshift */
807 1, /* size (0 = byte, 1 = short, 2 = long) */
808 16, /* bitsize */
809 FALSE, /* pc_relative */
810 0, /* bitpos */
811 complain_overflow_bitfield, /* complain_on_overflow */
812 0, /* special_function */
813 "R_RL", /* name */
814 TRUE, /* partial_inplace */
815 0xffff, /* src_mask */
816 0xffff, /* dst_mask */
817 FALSE), /* pcrel_offset */
818
819 /* 0x0d: Load address. */
820 HOWTO (R_RLA, /* type */
821 0, /* rightshift */
822 1, /* size (0 = byte, 1 = short, 2 = long) */
823 16, /* bitsize */
824 FALSE, /* pc_relative */
825 0, /* bitpos */
826 complain_overflow_bitfield, /* complain_on_overflow */
827 0, /* special_function */
828 "R_RLA", /* name */
829 TRUE, /* partial_inplace */
830 0xffff, /* src_mask */
831 0xffff, /* dst_mask */
832 FALSE), /* pcrel_offset */
833
834 EMPTY_HOWTO (0xe),
835
836 /* 0x0f: Non-relocating reference. Bitsize is 1 so that r_rsize is 0. */
837 HOWTO (R_REF, /* type */
838 0, /* rightshift */
839 0, /* size (0 = byte, 1 = short, 2 = long) */
840 1, /* bitsize */
841 FALSE, /* pc_relative */
842 0, /* bitpos */
843 complain_overflow_dont, /* complain_on_overflow */
844 0, /* special_function */
845 "R_REF", /* name */
846 FALSE, /* partial_inplace */
847 0, /* src_mask */
848 0, /* dst_mask */
849 FALSE), /* pcrel_offset */
850
851 EMPTY_HOWTO (0x10),
852 EMPTY_HOWTO (0x11),
853
854 /* 0x12: TOC relative indirect load. */
855 HOWTO (R_TRL, /* type */
856 0, /* rightshift */
857 1, /* size (0 = byte, 1 = short, 2 = long) */
858 16, /* bitsize */
859 FALSE, /* pc_relative */
860 0, /* bitpos */
861 complain_overflow_bitfield, /* complain_on_overflow */
862 0, /* special_function */
863 "R_TRL", /* name */
864 TRUE, /* partial_inplace */
865 0xffff, /* src_mask */
866 0xffff, /* dst_mask */
867 FALSE), /* pcrel_offset */
868
869 /* 0x13: TOC relative load address. */
870 HOWTO (R_TRLA, /* type */
871 0, /* rightshift */
872 1, /* size (0 = byte, 1 = short, 2 = long) */
873 16, /* bitsize */
874 FALSE, /* pc_relative */
875 0, /* bitpos */
876 complain_overflow_bitfield, /* complain_on_overflow */
877 0, /* special_function */
878 "R_TRLA", /* name */
879 TRUE, /* partial_inplace */
880 0xffff, /* src_mask */
881 0xffff, /* dst_mask */
882 FALSE), /* pcrel_offset */
883
884 /* 0x14: Modifiable relative branch. */
885 HOWTO (R_RRTBI, /* type */
886 1, /* rightshift */
887 2, /* size (0 = byte, 1 = short, 2 = long) */
888 32, /* bitsize */
889 FALSE, /* pc_relative */
890 0, /* bitpos */
891 complain_overflow_bitfield, /* complain_on_overflow */
892 0, /* special_function */
893 "R_RRTBI", /* name */
894 TRUE, /* partial_inplace */
895 0xffffffff, /* src_mask */
896 0xffffffff, /* dst_mask */
897 FALSE), /* pcrel_offset */
898
899 /* 0x15: Modifiable absolute branch. */
900 HOWTO (R_RRTBA, /* type */
901 1, /* rightshift */
902 2, /* size (0 = byte, 1 = short, 2 = long) */
903 32, /* bitsize */
904 FALSE, /* pc_relative */
905 0, /* bitpos */
906 complain_overflow_bitfield, /* complain_on_overflow */
907 0, /* special_function */
908 "R_RRTBA", /* name */
909 TRUE, /* partial_inplace */
910 0xffffffff, /* src_mask */
911 0xffffffff, /* dst_mask */
912 FALSE), /* pcrel_offset */
913
914 /* 0x16: Modifiable call absolute indirect. */
915 HOWTO (R_CAI, /* type */
916 0, /* rightshift */
917 1, /* size (0 = byte, 1 = short, 2 = long) */
918 16, /* bitsize */
919 FALSE, /* pc_relative */
920 0, /* bitpos */
921 complain_overflow_bitfield, /* complain_on_overflow */
922 0, /* special_function */
923 "R_CAI", /* name */
924 TRUE, /* partial_inplace */
925 0xffff, /* src_mask */
926 0xffff, /* dst_mask */
927 FALSE), /* pcrel_offset */
928
929 /* 0x17: Modifiable call relative. */
930 HOWTO (R_CREL, /* type */
931 0, /* rightshift */
932 1, /* size (0 = byte, 1 = short, 2 = long) */
933 16, /* bitsize */
934 FALSE, /* pc_relative */
935 0, /* bitpos */
936 complain_overflow_bitfield, /* complain_on_overflow */
937 0, /* special_function */
938 "R_CREL", /* name */
939 TRUE, /* partial_inplace */
940 0xffff, /* src_mask */
941 0xffff, /* dst_mask */
942 FALSE), /* pcrel_offset */
943
944 /* 0x18: Modifiable branch absolute. */
945 HOWTO (R_RBA, /* type */
946 0, /* rightshift */
947 2, /* size (0 = byte, 1 = short, 2 = long) */
948 26, /* bitsize */
949 FALSE, /* pc_relative */
950 0, /* bitpos */
951 complain_overflow_bitfield, /* complain_on_overflow */
952 0, /* special_function */
953 "R_RBA", /* name */
954 TRUE, /* partial_inplace */
955 0x03fffffc, /* src_mask */
956 0x03fffffc, /* dst_mask */
957 FALSE), /* pcrel_offset */
958
959 /* 0x19: Modifiable branch absolute. */
960 HOWTO (R_RBAC, /* type */
961 0, /* rightshift */
962 2, /* size (0 = byte, 1 = short, 2 = long) */
963 32, /* bitsize */
964 FALSE, /* pc_relative */
965 0, /* bitpos */
966 complain_overflow_bitfield, /* complain_on_overflow */
967 0, /* special_function */
968 "R_RBAC", /* name */
969 TRUE, /* partial_inplace */
970 0xffffffff, /* src_mask */
971 0xffffffff, /* dst_mask */
972 FALSE), /* pcrel_offset */
973
974 /* 0x1a: Modifiable branch relative. */
975 HOWTO (R_RBR, /* type */
976 0, /* rightshift */
977 2, /* size (0 = byte, 1 = short, 2 = long) */
978 26, /* bitsize */
979 FALSE, /* pc_relative */
980 0, /* bitpos */
981 complain_overflow_signed, /* complain_on_overflow */
982 0, /* special_function */
983 "R_RBR_26", /* name */
984 TRUE, /* partial_inplace */
985 0x03fffffc, /* src_mask */
986 0x03fffffc, /* dst_mask */
987 FALSE), /* pcrel_offset */
988
989 /* 0x1b: Modifiable branch absolute. */
990 HOWTO (R_RBRC, /* type */
991 0, /* rightshift */
992 1, /* size (0 = byte, 1 = short, 2 = long) */
993 16, /* bitsize */
994 FALSE, /* pc_relative */
995 0, /* bitpos */
996 complain_overflow_bitfield, /* complain_on_overflow */
997 0, /* special_function */
998 "R_RBRC", /* name */
999 TRUE, /* partial_inplace */
1000 0xffff, /* src_mask */
1001 0xffff, /* dst_mask */
1002 FALSE), /* pcrel_offset */
1003
1004 /* 0x1c: 16 bit Non modifiable absolute branch. */
1005 HOWTO (R_BA, /* type */
1006 0, /* rightshift */
1007 1, /* size (0 = byte, 1 = short, 2 = long) */
1008 16, /* bitsize */
1009 FALSE, /* pc_relative */
1010 0, /* bitpos */
1011 complain_overflow_bitfield, /* complain_on_overflow */
1012 0, /* special_function */
1013 "R_BA_16", /* name */
1014 TRUE, /* partial_inplace */
1015 0xfffc, /* src_mask */
1016 0xfffc, /* dst_mask */
1017 FALSE), /* pcrel_offset */
1018
1019 /* 0x1d: Modifiable branch relative. */
1020 HOWTO (R_RBR, /* type */
1021 0, /* rightshift */
1022 1, /* size (0 = byte, 1 = short, 2 = long) */
1023 16, /* bitsize */
1024 TRUE, /* pc_relative */
1025 0, /* bitpos */
1026 complain_overflow_signed, /* complain_on_overflow */
1027 0, /* special_function */
1028 "R_RBR_16", /* name */
1029 TRUE, /* partial_inplace */
1030 0xfffc, /* src_mask */
1031 0xfffc, /* dst_mask */
1032 FALSE), /* pcrel_offset */
1033
1034 /* 0x1e: Modifiable branch relative. */
1035 HOWTO (R_RBA, /* type */
1036 0, /* rightshift */
1037 1, /* size (0 = byte, 1 = short, 2 = long) */
1038 16, /* bitsize */
1039 FALSE, /* pc_relative */
1040 0, /* bitpos */
1041 complain_overflow_signed, /* complain_on_overflow */
1042 0, /* special_function */
1043 "R_RBA_16", /* name */
1044 TRUE, /* partial_inplace */
1045 0xffff, /* src_mask */
1046 0xffff, /* dst_mask */
1047 FALSE), /* pcrel_offset */
1048 };
1049
1050 void
1051 xcoff_rtype2howto (arelent *relent, struct internal_reloc *internal)
1052 {
1053 if (internal->r_type > R_RBRC)
1054 abort ();
1055
1056 /* Default howto layout works most of the time */
1057 relent->howto = &xcoff_howto_table[internal->r_type];
1058
1059 /* Special case some 16 bit reloc */
1060 if (15 == (internal->r_size & 0x1f))
1061 {
1062 if (R_BA == internal->r_type)
1063 relent->howto = &xcoff_howto_table[0x1c];
1064 else if (R_RBR == internal->r_type)
1065 relent->howto = &xcoff_howto_table[0x1d];
1066 else if (R_RBA == internal->r_type)
1067 relent->howto = &xcoff_howto_table[0x1e];
1068 }
1069
1070 /* The r_size field of an XCOFF reloc encodes the bitsize of the
1071 relocation, as well as indicating whether it is signed or not.
1072 Doublecheck that the relocation information gathered from the
1073 type matches this information. The bitsize is not significant
1074 for R_REF relocs. */
1075 if (relent->howto->dst_mask != 0
1076 && (relent->howto->bitsize
1077 != ((unsigned int) internal->r_size & 0x1f) + 1))
1078 abort ();
1079 }
1080
1081 reloc_howto_type *
1082 _bfd_xcoff_reloc_type_lookup (bfd *abfd ATTRIBUTE_UNUSED,
1083 bfd_reloc_code_real_type code)
1084 {
1085 switch (code)
1086 {
1087 case BFD_RELOC_PPC_B26:
1088 return &xcoff_howto_table[0xa];
1089 case BFD_RELOC_PPC_BA16:
1090 return &xcoff_howto_table[0x1c];
1091 case BFD_RELOC_PPC_BA26:
1092 return &xcoff_howto_table[8];
1093 case BFD_RELOC_PPC_TOC16:
1094 return &xcoff_howto_table[3];
1095 case BFD_RELOC_PPC_B16:
1096 return &xcoff_howto_table[0x1d];
1097 case BFD_RELOC_32:
1098 case BFD_RELOC_CTOR:
1099 return &xcoff_howto_table[0];
1100 case BFD_RELOC_NONE:
1101 return &xcoff_howto_table[0xf];
1102 default:
1103 return NULL;
1104 }
1105 }
1106
1107 static reloc_howto_type *
1108 _bfd_xcoff_reloc_name_lookup (bfd *abfd ATTRIBUTE_UNUSED,
1109 const char *r_name)
1110 {
1111 unsigned int i;
1112
1113 for (i = 0;
1114 i < sizeof (xcoff_howto_table) / sizeof (xcoff_howto_table[0]);
1115 i++)
1116 if (xcoff_howto_table[i].name != NULL
1117 && strcasecmp (xcoff_howto_table[i].name, r_name) == 0)
1118 return &xcoff_howto_table[i];
1119
1120 return NULL;
1121 }
1122 \f
1123 /* XCOFF archive support. The original version of this code was by
1124 Damon A. Permezel. It was enhanced to permit cross support, and
1125 writing archive files, by Ian Lance Taylor, Cygnus Support.
1126
1127 XCOFF uses its own archive format. Everything is hooked together
1128 with file offset links, so it is possible to rapidly update an
1129 archive in place. Of course, we don't do that. An XCOFF archive
1130 has a real file header, not just an ARMAG string. The structure of
1131 the file header and of each archive header appear below.
1132
1133 An XCOFF archive also has a member table, which is a list of
1134 elements in the archive (you can get that by looking through the
1135 linked list, but you have to read a lot more of the file). The
1136 member table has a normal archive header with an empty name. It is
1137 normally (and perhaps must be) the second to last entry in the
1138 archive. The member table data is almost printable ASCII. It
1139 starts with a 12 character decimal string which is the number of
1140 entries in the table. For each entry it has a 12 character decimal
1141 string which is the offset in the archive of that member. These
1142 entries are followed by a series of null terminated strings which
1143 are the member names for each entry.
1144
1145 Finally, an XCOFF archive has a global symbol table, which is what
1146 we call the armap. The global symbol table has a normal archive
1147 header with an empty name. It is normally (and perhaps must be)
1148 the last entry in the archive. The contents start with a four byte
1149 binary number which is the number of entries. This is followed by
1150 a that many four byte binary numbers; each is the file offset of an
1151 entry in the archive. These numbers are followed by a series of
1152 null terminated strings, which are symbol names.
1153
1154 AIX 4.3 introduced a new archive format which can handle larger
1155 files and also 32- and 64-bit objects in the same archive. The
1156 things said above remain true except that there is now more than
1157 one global symbol table. The one is used to index 32-bit objects,
1158 the other for 64-bit objects.
1159
1160 The new archives (recognizable by the new ARMAG string) has larger
1161 field lengths so that we cannot really share any code. Also we have
1162 to take care that we are not generating the new form of archives
1163 on AIX 4.2 or earlier systems. */
1164
1165 /* PR 21786: The PE/COFF standard does not require NUL termination for any of
1166 the ASCII fields in the archive headers. So in order to be able to extract
1167 numerical values we provide our own versions of strtol and strtoll which
1168 take a maximum length as an additional parameter. Also - just to save space,
1169 we omit the endptr return parameter, since we know that it is never used. */
1170
1171 static long
1172 _bfd_strntol (const char * nptr, int base, unsigned int maxlen)
1173 {
1174 char buf[24]; /* Should be enough. */
1175
1176 BFD_ASSERT (maxlen < (sizeof (buf) - 1));
1177
1178 memcpy (buf, nptr, maxlen);
1179 buf[maxlen] = 0;
1180 return strtol (buf, NULL, base);
1181 }
1182
1183 static long long
1184 _bfd_strntoll (const char * nptr, int base, unsigned int maxlen)
1185 {
1186 char buf[32]; /* Should be enough. */
1187
1188 BFD_ASSERT (maxlen < (sizeof (buf) - 1));
1189
1190 memcpy (buf, nptr, maxlen);
1191 buf[maxlen] = 0;
1192 return strtoll (buf, NULL, base);
1193 }
1194
1195 /* Macro to read an ASCII value stored in an archive header field. */
1196 #define GET_VALUE_IN_FIELD(VAR, FIELD, BASE) \
1197 do \
1198 { \
1199 (VAR) = (sizeof (VAR) > sizeof (long) \
1200 ? _bfd_strntoll (FIELD, BASE, sizeof FIELD) \
1201 : _bfd_strntol (FIELD, BASE, sizeof FIELD)); \
1202 } \
1203 while (0)
1204
1205 #define EQ_VALUE_IN_FIELD(VAR, FIELD, BASE) \
1206 (sizeof (VAR) > sizeof (long) \
1207 ? (VAR) == _bfd_strntoll (FIELD, BASE, sizeof FIELD) \
1208 : (VAR) == _bfd_strntol (FIELD, BASE, sizeof FIELD))
1209
1210 /* Read in the armap of an XCOFF archive. */
1211
1212 bfd_boolean
1213 _bfd_xcoff_slurp_armap (bfd *abfd)
1214 {
1215 file_ptr off;
1216 size_t namlen;
1217 bfd_size_type sz;
1218 bfd_byte *contents, *cend;
1219 bfd_vma c, i;
1220 carsym *arsym;
1221 bfd_byte *p;
1222
1223 if (xcoff_ardata (abfd) == NULL)
1224 {
1225 abfd->has_armap = FALSE;
1226 return TRUE;
1227 }
1228
1229 if (! xcoff_big_format_p (abfd))
1230 {
1231 /* This is for the old format. */
1232 struct xcoff_ar_hdr hdr;
1233
1234 GET_VALUE_IN_FIELD (off, xcoff_ardata (abfd)->symoff, 10);
1235 if (off == 0)
1236 {
1237 abfd->has_armap = FALSE;
1238 return TRUE;
1239 }
1240
1241 if (bfd_seek (abfd, off, SEEK_SET) != 0)
1242 return FALSE;
1243
1244 /* The symbol table starts with a normal archive header. */
1245 if (bfd_bread (&hdr, (bfd_size_type) SIZEOF_AR_HDR, abfd)
1246 != SIZEOF_AR_HDR)
1247 return FALSE;
1248
1249 /* Skip the name (normally empty). */
1250 GET_VALUE_IN_FIELD (namlen, hdr.namlen, 10);
1251 off = ((namlen + 1) & ~ (size_t) 1) + SXCOFFARFMAG;
1252 if (bfd_seek (abfd, off, SEEK_CUR) != 0)
1253 return FALSE;
1254
1255 GET_VALUE_IN_FIELD (sz, hdr.size, 10);
1256 if (sz + 1 < 5)
1257 {
1258 bfd_set_error (bfd_error_bad_value);
1259 return FALSE;
1260 }
1261
1262 /* Read in the entire symbol table. */
1263 contents = (bfd_byte *) _bfd_alloc_and_read (abfd, sz + 1, sz);
1264 if (contents == NULL)
1265 return FALSE;
1266
1267 /* Ensure strings are NULL terminated so we don't wander off the
1268 end of the buffer. */
1269 contents[sz] = 0;
1270
1271 /* The symbol table starts with a four byte count. */
1272 c = H_GET_32 (abfd, contents);
1273
1274 if (c >= sz / 4)
1275 {
1276 bfd_set_error (bfd_error_bad_value);
1277 return FALSE;
1278 }
1279
1280 bfd_ardata (abfd)->symdefs =
1281 ((carsym *) bfd_alloc (abfd, c * sizeof (carsym)));
1282 if (bfd_ardata (abfd)->symdefs == NULL)
1283 return FALSE;
1284
1285 /* After the count comes a list of four byte file offsets. */
1286 for (i = 0, arsym = bfd_ardata (abfd)->symdefs, p = contents + 4;
1287 i < c;
1288 ++i, ++arsym, p += 4)
1289 arsym->file_offset = H_GET_32 (abfd, p);
1290 }
1291 else
1292 {
1293 /* This is for the new format. */
1294 struct xcoff_ar_hdr_big hdr;
1295
1296 GET_VALUE_IN_FIELD (off, xcoff_ardata_big (abfd)->symoff, 10);
1297 if (off == 0)
1298 {
1299 abfd->has_armap = FALSE;
1300 return TRUE;
1301 }
1302
1303 if (bfd_seek (abfd, off, SEEK_SET) != 0)
1304 return FALSE;
1305
1306 /* The symbol table starts with a normal archive header. */
1307 if (bfd_bread (&hdr, (bfd_size_type) SIZEOF_AR_HDR_BIG, abfd)
1308 != SIZEOF_AR_HDR_BIG)
1309 return FALSE;
1310
1311 /* Skip the name (normally empty). */
1312 GET_VALUE_IN_FIELD (namlen, hdr.namlen, 10);
1313 off = ((namlen + 1) & ~ (size_t) 1) + SXCOFFARFMAG;
1314 if (bfd_seek (abfd, off, SEEK_CUR) != 0)
1315 return FALSE;
1316
1317 GET_VALUE_IN_FIELD (sz, hdr.size, 10);
1318 if (sz + 1 < 9)
1319 {
1320 bfd_set_error (bfd_error_bad_value);
1321 return FALSE;
1322 }
1323
1324 /* Read in the entire symbol table. */
1325 contents = (bfd_byte *) _bfd_alloc_and_read (abfd, sz + 1, sz);
1326 if (contents == NULL)
1327 return FALSE;
1328
1329 /* Ensure strings are NULL terminated so we don't wander off the
1330 end of the buffer. */
1331 contents[sz] = 0;
1332
1333 /* The symbol table starts with an eight byte count. */
1334 c = H_GET_64 (abfd, contents);
1335
1336 if (c >= sz / 8)
1337 {
1338 bfd_set_error (bfd_error_bad_value);
1339 return FALSE;
1340 }
1341
1342 bfd_ardata (abfd)->symdefs =
1343 ((carsym *) bfd_alloc (abfd, c * sizeof (carsym)));
1344 if (bfd_ardata (abfd)->symdefs == NULL)
1345 return FALSE;
1346
1347 /* After the count comes a list of eight byte file offsets. */
1348 for (i = 0, arsym = bfd_ardata (abfd)->symdefs, p = contents + 8;
1349 i < c;
1350 ++i, ++arsym, p += 8)
1351 arsym->file_offset = H_GET_64 (abfd, p);
1352 }
1353
1354 /* After the file offsets come null terminated symbol names. */
1355 cend = contents + sz;
1356 for (i = 0, arsym = bfd_ardata (abfd)->symdefs;
1357 i < c;
1358 ++i, ++arsym, p += strlen ((char *) p) + 1)
1359 {
1360 if (p >= cend)
1361 {
1362 bfd_set_error (bfd_error_bad_value);
1363 return FALSE;
1364 }
1365 arsym->name = (char *) p;
1366 }
1367
1368 bfd_ardata (abfd)->symdef_count = c;
1369 abfd->has_armap = TRUE;
1370
1371 return TRUE;
1372 }
1373
1374 /* See if this is an XCOFF archive. */
1375
1376 bfd_cleanup
1377 _bfd_xcoff_archive_p (bfd *abfd)
1378 {
1379 struct artdata *tdata_hold;
1380 char magic[SXCOFFARMAG];
1381 size_t amt = SXCOFFARMAG;
1382
1383 if (bfd_bread (magic, amt, abfd) != amt)
1384 {
1385 if (bfd_get_error () != bfd_error_system_call)
1386 bfd_set_error (bfd_error_wrong_format);
1387 return NULL;
1388 }
1389
1390 if (strncmp (magic, XCOFFARMAG, SXCOFFARMAG) != 0
1391 && strncmp (magic, XCOFFARMAGBIG, SXCOFFARMAG) != 0)
1392 {
1393 bfd_set_error (bfd_error_wrong_format);
1394 return NULL;
1395 }
1396
1397 tdata_hold = bfd_ardata (abfd);
1398
1399 amt = sizeof (struct artdata);
1400 bfd_ardata (abfd) = (struct artdata *) bfd_zalloc (abfd, amt);
1401 if (bfd_ardata (abfd) == (struct artdata *) NULL)
1402 goto error_ret_restore;
1403
1404 /* Cleared by bfd_zalloc above.
1405 bfd_ardata (abfd)->cache = NULL;
1406 bfd_ardata (abfd)->archive_head = NULL;
1407 bfd_ardata (abfd)->symdefs = NULL;
1408 bfd_ardata (abfd)->extended_names = NULL;
1409 bfd_ardata (abfd)->extended_names_size = 0; */
1410
1411 /* Now handle the two formats. */
1412 if (magic[1] != 'b')
1413 {
1414 /* This is the old format. */
1415 struct xcoff_ar_file_hdr hdr;
1416
1417 /* Copy over the magic string. */
1418 memcpy (hdr.magic, magic, SXCOFFARMAG);
1419
1420 /* Now read the rest of the file header. */
1421 amt = SIZEOF_AR_FILE_HDR - SXCOFFARMAG;
1422 if (bfd_bread (&hdr.memoff, amt, abfd) != amt)
1423 {
1424 if (bfd_get_error () != bfd_error_system_call)
1425 bfd_set_error (bfd_error_wrong_format);
1426 goto error_ret;
1427 }
1428
1429 GET_VALUE_IN_FIELD (bfd_ardata (abfd)->first_file_filepos,
1430 hdr.firstmemoff, 10);
1431
1432 amt = SIZEOF_AR_FILE_HDR;
1433 bfd_ardata (abfd)->tdata = bfd_zalloc (abfd, amt);
1434 if (bfd_ardata (abfd)->tdata == NULL)
1435 goto error_ret;
1436
1437 memcpy (bfd_ardata (abfd)->tdata, &hdr, SIZEOF_AR_FILE_HDR);
1438 }
1439 else
1440 {
1441 /* This is the new format. */
1442 struct xcoff_ar_file_hdr_big hdr;
1443
1444 /* Copy over the magic string. */
1445 memcpy (hdr.magic, magic, SXCOFFARMAG);
1446
1447 /* Now read the rest of the file header. */
1448 amt = SIZEOF_AR_FILE_HDR_BIG - SXCOFFARMAG;
1449 if (bfd_bread (&hdr.memoff, amt, abfd) != amt)
1450 {
1451 if (bfd_get_error () != bfd_error_system_call)
1452 bfd_set_error (bfd_error_wrong_format);
1453 goto error_ret;
1454 }
1455
1456 bfd_ardata (abfd)->first_file_filepos = bfd_scan_vma (hdr.firstmemoff,
1457 (const char **) 0,
1458 10);
1459
1460 amt = SIZEOF_AR_FILE_HDR_BIG;
1461 bfd_ardata (abfd)->tdata = bfd_zalloc (abfd, amt);
1462 if (bfd_ardata (abfd)->tdata == NULL)
1463 goto error_ret;
1464
1465 memcpy (bfd_ardata (abfd)->tdata, &hdr, SIZEOF_AR_FILE_HDR_BIG);
1466 }
1467
1468 if (! _bfd_xcoff_slurp_armap (abfd))
1469 {
1470 error_ret:
1471 bfd_release (abfd, bfd_ardata (abfd));
1472 error_ret_restore:
1473 bfd_ardata (abfd) = tdata_hold;
1474 return NULL;
1475 }
1476
1477 return _bfd_no_cleanup;
1478 }
1479
1480 /* Read the archive header in an XCOFF archive. */
1481
1482 void *
1483 _bfd_xcoff_read_ar_hdr (bfd *abfd)
1484 {
1485 bfd_size_type namlen;
1486 struct areltdata *ret;
1487 bfd_size_type amt;
1488
1489 if (! xcoff_big_format_p (abfd))
1490 {
1491 struct xcoff_ar_hdr hdr;
1492 struct xcoff_ar_hdr *hdrp;
1493
1494 if (bfd_bread (&hdr, SIZEOF_AR_HDR, abfd) != SIZEOF_AR_HDR)
1495 return NULL;
1496
1497 GET_VALUE_IN_FIELD (namlen, hdr.namlen, 10);
1498 amt = sizeof (struct areltdata) + SIZEOF_AR_HDR + namlen + 1;
1499 ret = (struct areltdata *) bfd_malloc (amt);
1500 if (ret == NULL)
1501 return ret;
1502
1503 hdrp = (struct xcoff_ar_hdr *) (ret + 1);
1504 memcpy (hdrp, &hdr, SIZEOF_AR_HDR);
1505 if (bfd_bread ((char *) hdrp + SIZEOF_AR_HDR, namlen, abfd) != namlen)
1506 {
1507 free (ret);
1508 return NULL;
1509 }
1510 ((char *) hdrp)[SIZEOF_AR_HDR + namlen] = '\0';
1511
1512 ret->arch_header = (char *) hdrp;
1513 GET_VALUE_IN_FIELD (ret->parsed_size, hdr.size, 10);
1514 ret->filename = (char *) hdrp + SIZEOF_AR_HDR;
1515 }
1516 else
1517 {
1518 struct xcoff_ar_hdr_big hdr;
1519 struct xcoff_ar_hdr_big *hdrp;
1520
1521 if (bfd_bread (&hdr, SIZEOF_AR_HDR_BIG, abfd) != SIZEOF_AR_HDR_BIG)
1522 return NULL;
1523
1524 GET_VALUE_IN_FIELD (namlen, hdr.namlen, 10);
1525 amt = sizeof (struct areltdata) + SIZEOF_AR_HDR_BIG + namlen + 1;
1526 ret = (struct areltdata *) bfd_malloc (amt);
1527 if (ret == NULL)
1528 return ret;
1529
1530 hdrp = (struct xcoff_ar_hdr_big *) (ret + 1);
1531 memcpy (hdrp, &hdr, SIZEOF_AR_HDR_BIG);
1532 if (bfd_bread ((char *) hdrp + SIZEOF_AR_HDR_BIG, namlen, abfd) != namlen)
1533 {
1534 free (ret);
1535 return NULL;
1536 }
1537 ((char *) hdrp)[SIZEOF_AR_HDR_BIG + namlen] = '\0';
1538
1539 ret->arch_header = (char *) hdrp;
1540 GET_VALUE_IN_FIELD (ret->parsed_size, hdr.size, 10);
1541 ret->filename = (char *) hdrp + SIZEOF_AR_HDR_BIG;
1542 }
1543
1544 /* Skip over the XCOFFARFMAG at the end of the file name. */
1545 if (bfd_seek (abfd, (file_ptr) ((namlen & 1) + SXCOFFARFMAG), SEEK_CUR) != 0)
1546 return NULL;
1547
1548 return ret;
1549 }
1550
1551 /* Open the next element in an XCOFF archive. */
1552
1553 bfd *
1554 _bfd_xcoff_openr_next_archived_file (bfd *archive, bfd *last_file)
1555 {
1556 file_ptr filestart;
1557
1558 if (xcoff_ardata (archive) == NULL)
1559 {
1560 bfd_set_error (bfd_error_invalid_operation);
1561 return NULL;
1562 }
1563
1564 if (! xcoff_big_format_p (archive))
1565 {
1566 if (last_file == NULL)
1567 filestart = bfd_ardata (archive)->first_file_filepos;
1568 else
1569 GET_VALUE_IN_FIELD (filestart, arch_xhdr (last_file)->nextoff, 10);
1570
1571 if (filestart == 0
1572 || EQ_VALUE_IN_FIELD (filestart, xcoff_ardata (archive)->memoff, 10)
1573 || EQ_VALUE_IN_FIELD (filestart, xcoff_ardata (archive)->symoff, 10))
1574 {
1575 bfd_set_error (bfd_error_no_more_archived_files);
1576 return NULL;
1577 }
1578 }
1579 else
1580 {
1581 if (last_file == NULL)
1582 filestart = bfd_ardata (archive)->first_file_filepos;
1583 else
1584 GET_VALUE_IN_FIELD (filestart, arch_xhdr_big (last_file)->nextoff, 10);
1585
1586 if (filestart == 0
1587 || EQ_VALUE_IN_FIELD (filestart, xcoff_ardata_big (archive)->memoff, 10)
1588 || EQ_VALUE_IN_FIELD (filestart, xcoff_ardata_big (archive)->symoff, 10))
1589 {
1590 bfd_set_error (bfd_error_no_more_archived_files);
1591 return NULL;
1592 }
1593 }
1594
1595 return _bfd_get_elt_at_filepos (archive, filestart);
1596 }
1597
1598 /* Stat an element in an XCOFF archive. */
1599
1600 int
1601 _bfd_xcoff_stat_arch_elt (bfd *abfd, struct stat *s)
1602 {
1603 if (abfd->arelt_data == NULL)
1604 {
1605 bfd_set_error (bfd_error_invalid_operation);
1606 return -1;
1607 }
1608
1609 if (! xcoff_big_format_p (abfd->my_archive))
1610 {
1611 struct xcoff_ar_hdr *hdrp = arch_xhdr (abfd);
1612
1613 GET_VALUE_IN_FIELD (s->st_mtime, hdrp->date, 10);
1614 GET_VALUE_IN_FIELD (s->st_uid, hdrp->uid, 10);
1615 GET_VALUE_IN_FIELD (s->st_gid, hdrp->gid, 10);
1616 GET_VALUE_IN_FIELD (s->st_mode, hdrp->mode, 8);
1617 s->st_size = arch_eltdata (abfd)->parsed_size;
1618 }
1619 else
1620 {
1621 struct xcoff_ar_hdr_big *hdrp = arch_xhdr_big (abfd);
1622
1623 GET_VALUE_IN_FIELD (s->st_mtime, hdrp->date, 10);
1624 GET_VALUE_IN_FIELD (s->st_uid, hdrp->uid, 10);
1625 GET_VALUE_IN_FIELD (s->st_gid, hdrp->gid, 10);
1626 GET_VALUE_IN_FIELD (s->st_mode, hdrp->mode, 8);
1627 s->st_size = arch_eltdata (abfd)->parsed_size;
1628 }
1629
1630 return 0;
1631 }
1632
1633 /* Normalize a file name for inclusion in an archive. */
1634
1635 static const char *
1636 normalize_filename (bfd *abfd)
1637 {
1638 const char *file;
1639 const char *filename;
1640
1641 file = bfd_get_filename (abfd);
1642 filename = strrchr (file, '/');
1643 if (filename != NULL)
1644 filename++;
1645 else
1646 filename = file;
1647 return filename;
1648 }
1649
1650 /* Write out an XCOFF armap. */
1651
1652 static bfd_boolean
1653 xcoff_write_armap_old (bfd *abfd, unsigned int elength ATTRIBUTE_UNUSED,
1654 struct orl *map, unsigned int orl_count, int stridx)
1655 {
1656 struct archive_iterator iterator;
1657 struct xcoff_ar_hdr hdr;
1658 char *p;
1659 unsigned char buf[4];
1660 unsigned int i;
1661
1662 memset (&hdr, 0, sizeof hdr);
1663 sprintf (hdr.size, "%ld", (long) (4 + orl_count * 4 + stridx));
1664 sprintf (hdr.nextoff, "%d", 0);
1665 memcpy (hdr.prevoff, xcoff_ardata (abfd)->memoff, XCOFFARMAG_ELEMENT_SIZE);
1666 sprintf (hdr.date, "%d", 0);
1667 sprintf (hdr.uid, "%d", 0);
1668 sprintf (hdr.gid, "%d", 0);
1669 sprintf (hdr.mode, "%d", 0);
1670 sprintf (hdr.namlen, "%d", 0);
1671
1672 /* We need spaces, not null bytes, in the header. */
1673 for (p = (char *) &hdr; p < (char *) &hdr + SIZEOF_AR_HDR; p++)
1674 if (*p == '\0')
1675 *p = ' ';
1676
1677 if (bfd_bwrite (&hdr, (bfd_size_type) SIZEOF_AR_HDR, abfd)
1678 != SIZEOF_AR_HDR
1679 || (bfd_bwrite (XCOFFARFMAG, (bfd_size_type) SXCOFFARFMAG, abfd)
1680 != SXCOFFARFMAG))
1681 return FALSE;
1682
1683 H_PUT_32 (abfd, orl_count, buf);
1684 if (bfd_bwrite (buf, (bfd_size_type) 4, abfd) != 4)
1685 return FALSE;
1686
1687 i = 0;
1688 archive_iterator_begin (&iterator, abfd);
1689 while (i < orl_count && archive_iterator_next (&iterator))
1690 while (map[i].u.abfd == iterator.current.member)
1691 {
1692 H_PUT_32 (abfd, iterator.current.offset, buf);
1693 if (bfd_bwrite (buf, (bfd_size_type) 4, abfd) != 4)
1694 return FALSE;
1695 ++i;
1696 }
1697
1698 for (i = 0; i < orl_count; i++)
1699 {
1700 const char *name;
1701 size_t namlen;
1702
1703 name = *map[i].name;
1704 namlen = strlen (name);
1705 if (bfd_bwrite (name, (bfd_size_type) (namlen + 1), abfd) != namlen + 1)
1706 return FALSE;
1707 }
1708
1709 if ((stridx & 1) != 0)
1710 {
1711 char b;
1712
1713 b = '\0';
1714 if (bfd_bwrite (&b, (bfd_size_type) 1, abfd) != 1)
1715 return FALSE;
1716 }
1717
1718 return TRUE;
1719 }
1720
1721 static char buff20[XCOFFARMAGBIG_ELEMENT_SIZE + 1];
1722 #if BFD_HOST_64BIT_LONG
1723 #define FMT20 "%-20ld"
1724 #elif defined (__MSVCRT__)
1725 #define FMT20 "%-20I64d"
1726 #else
1727 #define FMT20 "%-20lld"
1728 #endif
1729 #define FMT12 "%-12d"
1730 #define FMT12_OCTAL "%-12o"
1731 #define FMT4 "%-4d"
1732 #define PRINT20(d, v) \
1733 sprintf (buff20, FMT20, (bfd_uint64_t)(v)), \
1734 memcpy ((void *) (d), buff20, 20)
1735
1736 #define PRINT12(d, v) \
1737 sprintf (buff20, FMT12, (int)(v)), \
1738 memcpy ((void *) (d), buff20, 12)
1739
1740 #define PRINT12_OCTAL(d, v) \
1741 sprintf (buff20, FMT12_OCTAL, (unsigned int)(v)), \
1742 memcpy ((void *) (d), buff20, 12)
1743
1744 #define PRINT4(d, v) \
1745 sprintf (buff20, FMT4, (int)(v)), \
1746 memcpy ((void *) (d), buff20, 4)
1747
1748 #define READ20(d, v) \
1749 buff20[20] = 0, \
1750 memcpy (buff20, (d), 20), \
1751 (v) = bfd_scan_vma (buff20, (const char **) NULL, 10)
1752
1753 static bfd_boolean
1754 do_pad (bfd *abfd, unsigned int number)
1755 {
1756 bfd_byte b = 0;
1757
1758 /* Limit pad to <= 4096. */
1759 if (number > 4096)
1760 return FALSE;
1761
1762 while (number--)
1763 if (bfd_bwrite (&b, (bfd_size_type) 1, abfd) != 1)
1764 return FALSE;
1765
1766 return TRUE;
1767 }
1768
1769 static bfd_boolean
1770 do_copy (bfd *out_bfd, bfd *in_bfd)
1771 {
1772 bfd_size_type remaining;
1773 bfd_byte buffer[DEFAULT_BUFFERSIZE];
1774
1775 if (bfd_seek (in_bfd, (file_ptr) 0, SEEK_SET) != 0)
1776 return FALSE;
1777
1778 remaining = arelt_size (in_bfd);
1779
1780 while (remaining >= DEFAULT_BUFFERSIZE)
1781 {
1782 if (bfd_bread (buffer, DEFAULT_BUFFERSIZE, in_bfd) != DEFAULT_BUFFERSIZE
1783 || bfd_bwrite (buffer, DEFAULT_BUFFERSIZE, out_bfd) != DEFAULT_BUFFERSIZE)
1784 return FALSE;
1785
1786 remaining -= DEFAULT_BUFFERSIZE;
1787 }
1788
1789 if (remaining)
1790 {
1791 if (bfd_bread (buffer, remaining, in_bfd) != remaining
1792 || bfd_bwrite (buffer, remaining, out_bfd) != remaining)
1793 return FALSE;
1794 }
1795
1796 return TRUE;
1797 }
1798
1799 static bfd_boolean
1800 xcoff_write_armap_big (bfd *abfd, unsigned int elength ATTRIBUTE_UNUSED,
1801 struct orl *map, unsigned int orl_count, int stridx)
1802 {
1803 struct archive_iterator iterator;
1804 struct xcoff_ar_file_hdr_big *fhdr;
1805 bfd_vma i, sym_32, sym_64, str_32, str_64;
1806 const bfd_arch_info_type *arch_info;
1807 bfd *current_bfd;
1808 size_t string_length;
1809 file_ptr nextoff, prevoff;
1810
1811 /* First, we look through the symbols and work out which are
1812 from 32-bit objects and which from 64-bit ones. */
1813 sym_32 = sym_64 = str_32 = str_64 = 0;
1814
1815 i = 0;
1816 for (current_bfd = abfd->archive_head;
1817 current_bfd != NULL && i < orl_count;
1818 current_bfd = current_bfd->archive_next)
1819 {
1820 arch_info = bfd_get_arch_info (current_bfd);
1821 while (map[i].u.abfd == current_bfd)
1822 {
1823 string_length = strlen (*map[i].name) + 1;
1824 if (arch_info->bits_per_address == 64)
1825 {
1826 sym_64++;
1827 str_64 += string_length;
1828 }
1829 else
1830 {
1831 sym_32++;
1832 str_32 += string_length;
1833 }
1834 i++;
1835 }
1836 }
1837
1838 /* A quick sanity check... */
1839 BFD_ASSERT (sym_64 + sym_32 == orl_count);
1840 /* Explicit cast to int for compiler. */
1841 BFD_ASSERT ((int)(str_64 + str_32) == stridx);
1842
1843 fhdr = xcoff_ardata_big (abfd);
1844
1845 /* xcoff_write_archive_contents_big passes nextoff in symoff. */
1846 READ20 (fhdr->memoff, prevoff);
1847 READ20 (fhdr->symoff, nextoff);
1848
1849 BFD_ASSERT (nextoff == bfd_tell (abfd));
1850
1851 /* Write out the symbol table.
1852 Layout :
1853
1854 standard big archive header
1855 0x0000 ar_size [0x14]
1856 0x0014 ar_nxtmem [0x14]
1857 0x0028 ar_prvmem [0x14]
1858 0x003C ar_date [0x0C]
1859 0x0048 ar_uid [0x0C]
1860 0x0054 ar_gid [0x0C]
1861 0x0060 ar_mod [0x0C]
1862 0x006C ar_namelen[0x04]
1863 0x0070 ar_fmag [SXCOFFARFMAG]
1864
1865 Symbol table
1866 0x0072 num_syms [0x08], binary
1867 0x0078 offsets [0x08 * num_syms], binary
1868 0x0086 + 0x08 * num_syms names [??]
1869 ?? pad to even bytes.
1870 */
1871
1872 if (sym_32)
1873 {
1874 struct xcoff_ar_hdr_big *hdr;
1875 char *symbol_table;
1876 char *st;
1877
1878 bfd_vma symbol_table_size =
1879 SIZEOF_AR_HDR_BIG
1880 + SXCOFFARFMAG
1881 + 8
1882 + 8 * sym_32
1883 + str_32 + (str_32 & 1);
1884
1885 symbol_table = bfd_zmalloc (symbol_table_size);
1886 if (symbol_table == NULL)
1887 return FALSE;
1888
1889 hdr = (struct xcoff_ar_hdr_big *) symbol_table;
1890
1891 PRINT20 (hdr->size, 8 + 8 * sym_32 + str_32 + (str_32 & 1));
1892
1893 if (sym_64)
1894 PRINT20 (hdr->nextoff, nextoff + symbol_table_size);
1895 else
1896 PRINT20 (hdr->nextoff, 0);
1897
1898 PRINT20 (hdr->prevoff, prevoff);
1899 PRINT12 (hdr->date, 0);
1900 PRINT12 (hdr->uid, 0);
1901 PRINT12 (hdr->gid, 0);
1902 PRINT12 (hdr->mode, 0);
1903 PRINT4 (hdr->namlen, 0) ;
1904
1905 st = symbol_table + SIZEOF_AR_HDR_BIG;
1906 memcpy (st, XCOFFARFMAG, SXCOFFARFMAG);
1907 st += SXCOFFARFMAG;
1908
1909 bfd_h_put_64 (abfd, sym_32, st);
1910 st += 8;
1911
1912 /* loop over the 32 bit offsets */
1913 i = 0;
1914 archive_iterator_begin (&iterator, abfd);
1915 while (i < orl_count && archive_iterator_next (&iterator))
1916 {
1917 arch_info = bfd_get_arch_info (iterator.current.member);
1918 while (map[i].u.abfd == iterator.current.member)
1919 {
1920 if (arch_info->bits_per_address == 32)
1921 {
1922 bfd_h_put_64 (abfd, iterator.current.offset, st);
1923 st += 8;
1924 }
1925 i++;
1926 }
1927 }
1928
1929 /* loop over the 32 bit symbol names */
1930 i = 0;
1931 for (current_bfd = abfd->archive_head;
1932 current_bfd != NULL && i < orl_count;
1933 current_bfd = current_bfd->archive_next)
1934 {
1935 arch_info = bfd_get_arch_info (current_bfd);
1936 while (map[i].u.abfd == current_bfd)
1937 {
1938 if (arch_info->bits_per_address == 32)
1939 {
1940 string_length = sprintf (st, "%s", *map[i].name);
1941 st += string_length + 1;
1942 }
1943 i++;
1944 }
1945 }
1946
1947 bfd_bwrite (symbol_table, symbol_table_size, abfd);
1948
1949 free (symbol_table);
1950
1951 prevoff = nextoff;
1952 nextoff = nextoff + symbol_table_size;
1953 }
1954 else
1955 PRINT20 (fhdr->symoff, 0);
1956
1957 if (sym_64)
1958 {
1959 struct xcoff_ar_hdr_big *hdr;
1960 char *symbol_table;
1961 char *st;
1962
1963 bfd_vma symbol_table_size =
1964 SIZEOF_AR_HDR_BIG
1965 + SXCOFFARFMAG
1966 + 8
1967 + 8 * sym_64
1968 + str_64 + (str_64 & 1);
1969
1970 symbol_table = bfd_zmalloc (symbol_table_size);
1971 if (symbol_table == NULL)
1972 return FALSE;
1973
1974 hdr = (struct xcoff_ar_hdr_big *) symbol_table;
1975
1976 PRINT20 (hdr->size, 8 + 8 * sym_64 + str_64 + (str_64 & 1));
1977 PRINT20 (hdr->nextoff, 0);
1978 PRINT20 (hdr->prevoff, prevoff);
1979 PRINT12 (hdr->date, 0);
1980 PRINT12 (hdr->uid, 0);
1981 PRINT12 (hdr->gid, 0);
1982 PRINT12 (hdr->mode, 0);
1983 PRINT4 (hdr->namlen, 0);
1984
1985 st = symbol_table + SIZEOF_AR_HDR_BIG;
1986 memcpy (st, XCOFFARFMAG, SXCOFFARFMAG);
1987 st += SXCOFFARFMAG;
1988
1989 bfd_h_put_64 (abfd, sym_64, st);
1990 st += 8;
1991
1992 /* loop over the 64 bit offsets */
1993 i = 0;
1994 archive_iterator_begin (&iterator, abfd);
1995 while (i < orl_count && archive_iterator_next (&iterator))
1996 {
1997 arch_info = bfd_get_arch_info (iterator.current.member);
1998 while (map[i].u.abfd == iterator.current.member)
1999 {
2000 if (arch_info->bits_per_address == 64)
2001 {
2002 bfd_h_put_64 (abfd, iterator.current.offset, st);
2003 st += 8;
2004 }
2005 i++;
2006 }
2007 }
2008
2009 /* loop over the 64 bit symbol names */
2010 i = 0;
2011 for (current_bfd = abfd->archive_head;
2012 current_bfd != NULL && i < orl_count;
2013 current_bfd = current_bfd->archive_next)
2014 {
2015 arch_info = bfd_get_arch_info (current_bfd);
2016 while (map[i].u.abfd == current_bfd)
2017 {
2018 if (arch_info->bits_per_address == 64)
2019 {
2020 string_length = sprintf (st, "%s", *map[i].name);
2021 st += string_length + 1;
2022 }
2023 i++;
2024 }
2025 }
2026
2027 bfd_bwrite (symbol_table, symbol_table_size, abfd);
2028
2029 free (symbol_table);
2030
2031 PRINT20 (fhdr->symoff64, nextoff);
2032 }
2033 else
2034 PRINT20 (fhdr->symoff64, 0);
2035
2036 return TRUE;
2037 }
2038
2039 bfd_boolean
2040 _bfd_xcoff_write_armap (bfd *abfd, unsigned int elength ATTRIBUTE_UNUSED,
2041 struct orl *map, unsigned int orl_count, int stridx)
2042 {
2043 if (! xcoff_big_format_p (abfd))
2044 return xcoff_write_armap_old (abfd, elength, map, orl_count, stridx);
2045 else
2046 return xcoff_write_armap_big (abfd, elength, map, orl_count, stridx);
2047 }
2048
2049 /* Write out an XCOFF archive. We always write an entire archive,
2050 rather than fussing with the freelist and so forth. */
2051
2052 static bfd_boolean
2053 xcoff_write_archive_contents_old (bfd *abfd)
2054 {
2055 struct archive_iterator iterator;
2056 struct xcoff_ar_file_hdr fhdr;
2057 bfd_size_type count;
2058 bfd_size_type total_namlen;
2059 file_ptr *offsets;
2060 bfd_boolean makemap;
2061 bfd_boolean hasobjects;
2062 file_ptr prevoff, nextoff;
2063 bfd *sub;
2064 size_t i;
2065 struct xcoff_ar_hdr ahdr;
2066 bfd_size_type size;
2067 char *p;
2068 char decbuf[XCOFFARMAG_ELEMENT_SIZE + 1];
2069
2070 memset (&fhdr, 0, sizeof fhdr);
2071 (void) memcpy (fhdr.magic, XCOFFARMAG, SXCOFFARMAG);
2072 sprintf (fhdr.firstmemoff, "%d", SIZEOF_AR_FILE_HDR);
2073 sprintf (fhdr.freeoff, "%d", 0);
2074
2075 count = 0;
2076 total_namlen = 0;
2077 for (sub = abfd->archive_head; sub != NULL; sub = sub->archive_next)
2078 {
2079 ++count;
2080 total_namlen += strlen (normalize_filename (sub)) + 1;
2081 if (sub->arelt_data == NULL)
2082 {
2083 sub->arelt_data = bfd_zmalloc (sizeof (struct areltdata));
2084 if (sub->arelt_data == NULL)
2085 return FALSE;
2086 }
2087 if (arch_xhdr (sub) == NULL)
2088 {
2089 struct xcoff_ar_hdr *ahdrp;
2090 struct stat s;
2091
2092 if ((sub->flags & BFD_IN_MEMORY) != 0)
2093 {
2094 /* Assume we just "made" the member, and fake it. */
2095 struct bfd_in_memory *bim
2096 = (struct bfd_in_memory *) sub->iostream;
2097 time (&s.st_mtime);
2098 s.st_uid = getuid ();
2099 s.st_gid = getgid ();
2100 s.st_mode = 0644;
2101 s.st_size = bim->size;
2102 }
2103 else if (stat (bfd_get_filename (sub), &s) != 0)
2104 {
2105 bfd_set_input_error (sub, bfd_error_system_call);
2106 return FALSE;
2107 }
2108
2109 if ((abfd->flags & BFD_DETERMINISTIC_OUTPUT) != 0)
2110 {
2111 s.st_mtime = 0;
2112 s.st_uid = 0;
2113 s.st_gid = 0;
2114 s.st_mode = 0644;
2115 }
2116
2117 ahdrp = bfd_zalloc (sub, sizeof (*ahdrp));
2118 if (ahdrp == NULL)
2119 return FALSE;
2120
2121 sprintf (ahdrp->size, "%ld", (long) s.st_size);
2122 sprintf (ahdrp->date, "%ld", (long) s.st_mtime);
2123 sprintf (ahdrp->uid, "%ld", (long) s.st_uid);
2124 sprintf (ahdrp->gid, "%ld", (long) s.st_gid);
2125 sprintf (ahdrp->mode, "%o", (unsigned int) s.st_mode);
2126
2127 arch_eltdata (sub)->arch_header = (char *) ahdrp;
2128 arch_eltdata (sub)->parsed_size = s.st_size;
2129 }
2130 }
2131 offsets = (file_ptr *) bfd_alloc (abfd, count * sizeof (file_ptr));
2132 if (offsets == NULL)
2133 return FALSE;
2134
2135 if (bfd_seek (abfd, (file_ptr) SIZEOF_AR_FILE_HDR, SEEK_SET) != 0)
2136 return FALSE;
2137
2138 makemap = bfd_has_map (abfd);
2139 hasobjects = FALSE;
2140 prevoff = 0;
2141 for (archive_iterator_begin (&iterator, abfd), i = 0;
2142 archive_iterator_next (&iterator);
2143 i++)
2144 {
2145 bfd_size_type namlen;
2146 struct xcoff_ar_hdr *ahdrp;
2147
2148 if (makemap && ! hasobjects)
2149 {
2150 if (bfd_check_format (iterator.current.member, bfd_object))
2151 hasobjects = TRUE;
2152 }
2153
2154 ahdrp = arch_xhdr (iterator.current.member);
2155 sprintf (ahdrp->prevoff, "%ld", (long) prevoff);
2156 sprintf (ahdrp->namlen, "%ld", (long) iterator.current.namlen);
2157 sprintf (ahdrp->nextoff, "%ld", (long) iterator.next.offset);
2158
2159 /* We need spaces, not null bytes, in the header. */
2160 for (p = (char *) ahdrp; p < (char *) ahdrp + SIZEOF_AR_HDR; p++)
2161 if (*p == '\0')
2162 *p = ' ';
2163
2164 if (!do_pad (abfd, iterator.current.leading_padding))
2165 return FALSE;
2166
2167 BFD_ASSERT (iterator.current.offset == bfd_tell (abfd));
2168 namlen = iterator.current.padded_namlen;
2169 if (bfd_bwrite (ahdrp, SIZEOF_AR_HDR, abfd) != SIZEOF_AR_HDR
2170 || bfd_bwrite (iterator.current.name, namlen, abfd) != namlen
2171 || bfd_bwrite (XCOFFARFMAG, SXCOFFARFMAG, abfd) != SXCOFFARFMAG
2172 || bfd_seek (iterator.current.member, 0, SEEK_SET) != 0
2173 || !do_copy (abfd, iterator.current.member)
2174 || !do_pad (abfd, iterator.current.trailing_padding))
2175 return FALSE;
2176
2177 offsets[i] = iterator.current.offset;
2178 prevoff = iterator.current.offset;
2179 }
2180
2181 sprintf (fhdr.lastmemoff, "%ld", (long) prevoff);
2182
2183 /* Write out the member table. */
2184
2185 nextoff = iterator.next.offset;
2186 BFD_ASSERT (nextoff == bfd_tell (abfd));
2187 sprintf (fhdr.memoff, "%ld", (long) nextoff);
2188
2189 memset (&ahdr, 0, sizeof ahdr);
2190 sprintf (ahdr.size, "%ld", (long) (XCOFFARMAG_ELEMENT_SIZE
2191 + count * XCOFFARMAG_ELEMENT_SIZE
2192 + total_namlen));
2193 sprintf (ahdr.prevoff, "%ld", (long) prevoff);
2194 sprintf (ahdr.date, "%d", 0);
2195 sprintf (ahdr.uid, "%d", 0);
2196 sprintf (ahdr.gid, "%d", 0);
2197 sprintf (ahdr.mode, "%d", 0);
2198 sprintf (ahdr.namlen, "%d", 0);
2199
2200 size = (SIZEOF_AR_HDR
2201 + XCOFFARMAG_ELEMENT_SIZE
2202 + count * XCOFFARMAG_ELEMENT_SIZE
2203 + total_namlen
2204 + SXCOFFARFMAG);
2205
2206 prevoff = nextoff;
2207 nextoff += size + (size & 1);
2208
2209 if (makemap && hasobjects)
2210 sprintf (ahdr.nextoff, "%ld", (long) nextoff);
2211 else
2212 sprintf (ahdr.nextoff, "%d", 0);
2213
2214 /* We need spaces, not null bytes, in the header. */
2215 for (p = (char *) &ahdr; p < (char *) &ahdr + SIZEOF_AR_HDR; p++)
2216 if (*p == '\0')
2217 *p = ' ';
2218
2219 if ((bfd_bwrite (&ahdr, (bfd_size_type) SIZEOF_AR_HDR, abfd)
2220 != SIZEOF_AR_HDR)
2221 || (bfd_bwrite (XCOFFARFMAG, (bfd_size_type) SXCOFFARFMAG, abfd)
2222 != SXCOFFARFMAG))
2223 return FALSE;
2224
2225 sprintf (decbuf, "%-12ld", (long) count);
2226 if (bfd_bwrite (decbuf, (bfd_size_type) XCOFFARMAG_ELEMENT_SIZE, abfd)
2227 != XCOFFARMAG_ELEMENT_SIZE)
2228 return FALSE;
2229 for (i = 0; i < (size_t) count; i++)
2230 {
2231 sprintf (decbuf, "%-12ld", (long) offsets[i]);
2232 if (bfd_bwrite (decbuf, (bfd_size_type) XCOFFARMAG_ELEMENT_SIZE,
2233 abfd) != XCOFFARMAG_ELEMENT_SIZE)
2234 return FALSE;
2235 }
2236 for (sub = abfd->archive_head; sub != NULL; sub = sub->archive_next)
2237 {
2238 const char *name;
2239 bfd_size_type namlen;
2240
2241 name = normalize_filename (sub);
2242 namlen = strlen (name);
2243 if (bfd_bwrite (name, namlen + 1, abfd) != namlen + 1)
2244 return FALSE;
2245 }
2246
2247 if (! do_pad (abfd, size & 1))
2248 return FALSE;
2249
2250 /* Write out the armap, if appropriate. */
2251 if (! makemap || ! hasobjects)
2252 sprintf (fhdr.symoff, "%d", 0);
2253 else
2254 {
2255 BFD_ASSERT (nextoff == bfd_tell (abfd));
2256 sprintf (fhdr.symoff, "%ld", (long) nextoff);
2257 bfd_ardata (abfd)->tdata = &fhdr;
2258 if (! _bfd_compute_and_write_armap (abfd, 0))
2259 return FALSE;
2260 }
2261
2262 /* Write out the archive file header. */
2263
2264 /* We need spaces, not null bytes, in the header. */
2265 for (p = (char *) &fhdr; p < (char *) &fhdr + SIZEOF_AR_FILE_HDR; p++)
2266 if (*p == '\0')
2267 *p = ' ';
2268
2269 if (bfd_seek (abfd, (file_ptr) 0, SEEK_SET) != 0
2270 || (bfd_bwrite (&fhdr, (bfd_size_type) SIZEOF_AR_FILE_HDR, abfd)
2271 != SIZEOF_AR_FILE_HDR))
2272 return FALSE;
2273
2274 return TRUE;
2275 }
2276
2277 static bfd_boolean
2278 xcoff_write_archive_contents_big (bfd *abfd)
2279 {
2280 struct xcoff_ar_file_hdr_big fhdr;
2281 bfd_size_type count;
2282 bfd_size_type total_namlen;
2283 file_ptr *offsets;
2284 bfd_boolean makemap;
2285 bfd_boolean hasobjects;
2286 file_ptr prevoff, nextoff;
2287 bfd *current_bfd;
2288 size_t i;
2289 struct xcoff_ar_hdr_big *hdr;
2290 bfd_size_type size;
2291 char *member_table, *mt;
2292 bfd_vma member_table_size;
2293 struct archive_iterator iterator;
2294
2295 memset (&fhdr, 0, SIZEOF_AR_FILE_HDR_BIG);
2296 memcpy (fhdr.magic, XCOFFARMAGBIG, SXCOFFARMAG);
2297
2298 if (bfd_seek (abfd, (file_ptr) SIZEOF_AR_FILE_HDR_BIG, SEEK_SET) != 0)
2299 return FALSE;
2300
2301 /* Calculate count and total_namlen. */
2302 makemap = bfd_has_map (abfd);
2303 hasobjects = FALSE;
2304 for (current_bfd = abfd->archive_head, count = 0, total_namlen = 0;
2305 current_bfd != NULL;
2306 current_bfd = current_bfd->archive_next, count++)
2307 {
2308 total_namlen += strlen (normalize_filename (current_bfd)) + 1;
2309
2310 if (makemap
2311 && ! hasobjects
2312 && bfd_check_format (current_bfd, bfd_object))
2313 hasobjects = TRUE;
2314
2315 if (current_bfd->arelt_data == NULL)
2316 {
2317 size = sizeof (struct areltdata);
2318 current_bfd->arelt_data = bfd_zmalloc (size);
2319 if (current_bfd->arelt_data == NULL)
2320 return FALSE;
2321 }
2322
2323 if (arch_xhdr_big (current_bfd) == NULL)
2324 {
2325 struct xcoff_ar_hdr_big *ahdrp;
2326 struct stat s;
2327
2328 if ((current_bfd->flags & BFD_IN_MEMORY) != 0)
2329 {
2330 /* Assume we just "made" the member, and fake it. */
2331 struct bfd_in_memory *bim
2332 = (struct bfd_in_memory *) current_bfd->iostream;
2333 time (&s.st_mtime);
2334 s.st_uid = getuid ();
2335 s.st_gid = getgid ();
2336 s.st_mode = 0644;
2337 s.st_size = bim->size;
2338 }
2339 else if (stat (bfd_get_filename (current_bfd), &s) != 0)
2340 {
2341 bfd_set_input_error (current_bfd, bfd_error_system_call);
2342 return FALSE;
2343 }
2344
2345 if ((abfd->flags & BFD_DETERMINISTIC_OUTPUT) != 0)
2346 {
2347 s.st_mtime = 0;
2348 s.st_uid = 0;
2349 s.st_gid = 0;
2350 s.st_mode = 0644;
2351 }
2352
2353 ahdrp = bfd_zalloc (current_bfd, sizeof (*ahdrp));
2354 if (ahdrp == NULL)
2355 return FALSE;
2356
2357 PRINT20 (ahdrp->size, s.st_size);
2358 PRINT12 (ahdrp->date, s.st_mtime);
2359 PRINT12 (ahdrp->uid, s.st_uid);
2360 PRINT12 (ahdrp->gid, s.st_gid);
2361 PRINT12_OCTAL (ahdrp->mode, s.st_mode);
2362
2363 arch_eltdata (current_bfd)->arch_header = (char *) ahdrp;
2364 arch_eltdata (current_bfd)->parsed_size = s.st_size;
2365 }
2366 }
2367
2368 offsets = NULL;
2369 if (count)
2370 {
2371 offsets = (file_ptr *) bfd_malloc (count * sizeof (file_ptr));
2372 if (offsets == NULL)
2373 return FALSE;
2374 }
2375
2376 prevoff = 0;
2377 for (archive_iterator_begin (&iterator, abfd), i = 0;
2378 archive_iterator_next (&iterator);
2379 i++)
2380 {
2381 bfd_size_type namlen;
2382 struct xcoff_ar_hdr_big *ahdrp;
2383
2384 ahdrp = arch_xhdr_big (iterator.current.member);
2385 PRINT20 (ahdrp->prevoff, prevoff);
2386 PRINT4 (ahdrp->namlen, iterator.current.namlen);
2387 PRINT20 (ahdrp->nextoff, iterator.next.offset);
2388
2389 if (!do_pad (abfd, iterator.current.leading_padding))
2390 {
2391 free (offsets);
2392 return FALSE;
2393 }
2394
2395 BFD_ASSERT (iterator.current.offset == bfd_tell (abfd));
2396 namlen = iterator.current.padded_namlen;
2397 if (bfd_bwrite (ahdrp, SIZEOF_AR_HDR_BIG, abfd) != SIZEOF_AR_HDR_BIG
2398 || bfd_bwrite (iterator.current.name, namlen, abfd) != namlen
2399 || bfd_bwrite (XCOFFARFMAG, SXCOFFARFMAG, abfd) != SXCOFFARFMAG
2400 || bfd_seek (iterator.current.member, 0, SEEK_SET) != 0
2401 || !do_copy (abfd, iterator.current.member)
2402 || !do_pad (abfd, iterator.current.trailing_padding))
2403 {
2404 free (offsets);
2405 return FALSE;
2406 }
2407
2408 offsets[i] = iterator.current.offset;
2409 prevoff = iterator.current.offset;
2410 }
2411
2412 if (count)
2413 {
2414 PRINT20 (fhdr.firstmemoff, offsets[0]);
2415 PRINT20 (fhdr.lastmemoff, prevoff);
2416 }
2417
2418 /* Write out the member table.
2419 Layout :
2420
2421 standard big archive header
2422 0x0000 ar_size [0x14]
2423 0x0014 ar_nxtmem [0x14]
2424 0x0028 ar_prvmem [0x14]
2425 0x003C ar_date [0x0C]
2426 0x0048 ar_uid [0x0C]
2427 0x0054 ar_gid [0x0C]
2428 0x0060 ar_mod [0x0C]
2429 0x006C ar_namelen[0x04]
2430 0x0070 ar_fmag [0x02]
2431
2432 Member table
2433 0x0072 count [0x14]
2434 0x0086 offsets [0x14 * counts]
2435 0x0086 + 0x14 * counts names [??]
2436 ?? pad to even bytes.
2437 */
2438
2439 nextoff = iterator.next.offset;
2440 BFD_ASSERT (nextoff == bfd_tell (abfd));
2441
2442 member_table_size = (SIZEOF_AR_HDR_BIG
2443 + SXCOFFARFMAG
2444 + XCOFFARMAGBIG_ELEMENT_SIZE
2445 + count * XCOFFARMAGBIG_ELEMENT_SIZE
2446 + total_namlen);
2447
2448 member_table_size += member_table_size & 1;
2449 member_table = bfd_zmalloc (member_table_size);
2450 if (member_table == NULL)
2451 {
2452 free (offsets);
2453 return FALSE;
2454 }
2455
2456 hdr = (struct xcoff_ar_hdr_big *) member_table;
2457
2458 PRINT20 (hdr->size, (XCOFFARMAGBIG_ELEMENT_SIZE
2459 + count * XCOFFARMAGBIG_ELEMENT_SIZE
2460 + total_namlen + (total_namlen & 1)));
2461 if (makemap && hasobjects)
2462 PRINT20 (hdr->nextoff, nextoff + member_table_size);
2463 else
2464 PRINT20 (hdr->nextoff, 0);
2465 PRINT20 (hdr->prevoff, prevoff);
2466 PRINT12 (hdr->date, 0);
2467 PRINT12 (hdr->uid, 0);
2468 PRINT12 (hdr->gid, 0);
2469 PRINT12 (hdr->mode, 0);
2470 PRINT4 (hdr->namlen, 0);
2471
2472 mt = member_table + SIZEOF_AR_HDR_BIG;
2473 memcpy (mt, XCOFFARFMAG, SXCOFFARFMAG);
2474 mt += SXCOFFARFMAG;
2475
2476 PRINT20 (mt, count);
2477 mt += XCOFFARMAGBIG_ELEMENT_SIZE;
2478 for (i = 0; i < (size_t) count; i++)
2479 {
2480 PRINT20 (mt, offsets[i]);
2481 mt += XCOFFARMAGBIG_ELEMENT_SIZE;
2482 }
2483
2484 if (count)
2485 {
2486 free (offsets);
2487 offsets = NULL;
2488 }
2489
2490 for (current_bfd = abfd->archive_head;
2491 current_bfd != NULL;
2492 current_bfd = current_bfd->archive_next)
2493 {
2494 const char *name;
2495 size_t namlen;
2496
2497 name = normalize_filename (current_bfd);
2498 namlen = sprintf (mt, "%s", name);
2499 mt += namlen + 1;
2500 }
2501
2502 if (bfd_bwrite (member_table, member_table_size, abfd) != member_table_size)
2503 return FALSE;
2504
2505 free (member_table);
2506
2507 PRINT20 (fhdr.memoff, nextoff);
2508
2509 prevoff = nextoff;
2510 nextoff += member_table_size;
2511
2512 /* Write out the armap, if appropriate. */
2513
2514 if (! makemap || ! hasobjects)
2515 PRINT20 (fhdr.symoff, 0);
2516 else
2517 {
2518 BFD_ASSERT (nextoff == bfd_tell (abfd));
2519
2520 /* Save nextoff in fhdr.symoff so the armap routine can use it. */
2521 PRINT20 (fhdr.symoff, nextoff);
2522
2523 bfd_ardata (abfd)->tdata = &fhdr;
2524 if (! _bfd_compute_and_write_armap (abfd, 0))
2525 return FALSE;
2526 }
2527
2528 /* Write out the archive file header. */
2529
2530 if (bfd_seek (abfd, (file_ptr) 0, SEEK_SET) != 0
2531 || (bfd_bwrite (&fhdr, (bfd_size_type) SIZEOF_AR_FILE_HDR_BIG,
2532 abfd) != SIZEOF_AR_FILE_HDR_BIG))
2533 return FALSE;
2534
2535 return TRUE;
2536 }
2537
2538 bfd_boolean
2539 _bfd_xcoff_write_archive_contents (bfd *abfd)
2540 {
2541 if (! xcoff_big_format_p (abfd))
2542 return xcoff_write_archive_contents_old (abfd);
2543 else
2544 return xcoff_write_archive_contents_big (abfd);
2545 }
2546 \f
2547 /* We can't use the usual coff_sizeof_headers routine, because AIX
2548 always uses an a.out header. */
2549
2550 int
2551 _bfd_xcoff_sizeof_headers (bfd *abfd,
2552 struct bfd_link_info *info ATTRIBUTE_UNUSED)
2553 {
2554 int size;
2555
2556 size = FILHSZ;
2557 if (xcoff_data (abfd)->full_aouthdr)
2558 size += AOUTSZ;
2559 else
2560 size += SMALL_AOUTSZ;
2561 size += abfd->section_count * SCNHSZ;
2562
2563 if (info->strip != strip_all)
2564 {
2565 /* There can be additional sections just for dealing with overflow in
2566 reloc and lineno counts. But the numbers of relocs and lineno aren't
2567 known when bfd_sizeof_headers is called, so we compute them by
2568 summing the numbers from input sections. */
2569 struct nbr_reloc_lineno
2570 {
2571 unsigned int reloc_count;
2572 unsigned int lineno_count;
2573 };
2574 struct nbr_reloc_lineno *n_rl;
2575 bfd *sub;
2576 unsigned int max_index;
2577 asection *s;
2578
2579 /* Although the number of sections is known, the maximum value of
2580 section->index isn't (because some sections may have been removed).
2581 Don't try to renumber sections, just compute the upper bound. */
2582 max_index = 0;
2583 for (s = abfd->sections; s != NULL; s = s->next)
2584 if (s->index > max_index)
2585 max_index = s->index;
2586
2587 /* Allocate the per section counters. It could be possible to use a
2588 preallocated array as the number of sections is limited on XCOFF,
2589 but this creates a maintainance issue. */
2590 n_rl = bfd_zmalloc ((max_index + 1) * sizeof (*n_rl));
2591 if (n_rl == NULL)
2592 return -1;
2593
2594 /* Sum. */
2595 for (sub = info->input_bfds; sub != NULL; sub = sub->link.next)
2596 for (s = sub->sections; s != NULL; s = s->next)
2597 if (s->output_section->owner == abfd
2598 && !bfd_section_removed_from_list (abfd, s->output_section))
2599 {
2600 struct nbr_reloc_lineno *e = &n_rl[s->output_section->index];
2601 e->reloc_count += s->reloc_count;
2602 e->lineno_count += s->lineno_count;
2603 }
2604
2605 /* Add the size of a section for each section with an overflow. */
2606 for (s = abfd->sections; s != NULL; s = s->next)
2607 {
2608 struct nbr_reloc_lineno *e = &n_rl[s->index];
2609
2610 if (e->reloc_count >= 0xffff
2611 || (e->lineno_count >= 0xffff && info->strip != strip_debugger))
2612 size += SCNHSZ;
2613 }
2614
2615 free (n_rl);
2616 }
2617
2618 return size;
2619 }
2620 \f
2621 /* Routines to swap information in the XCOFF .loader section. If we
2622 ever need to write an XCOFF loader, this stuff will need to be
2623 moved to another file shared by the linker (which XCOFF calls the
2624 ``binder'') and the loader. */
2625
2626 /* Swap in the ldhdr structure. */
2627
2628 static void
2629 xcoff_swap_ldhdr_in (bfd *abfd, const void * s, struct internal_ldhdr *dst)
2630 {
2631 const struct external_ldhdr *src = (const struct external_ldhdr *) s;
2632
2633 dst->l_version = bfd_get_32 (abfd, src->l_version);
2634 dst->l_nsyms = bfd_get_32 (abfd, src->l_nsyms);
2635 dst->l_nreloc = bfd_get_32 (abfd, src->l_nreloc);
2636 dst->l_istlen = bfd_get_32 (abfd, src->l_istlen);
2637 dst->l_nimpid = bfd_get_32 (abfd, src->l_nimpid);
2638 dst->l_impoff = bfd_get_32 (abfd, src->l_impoff);
2639 dst->l_stlen = bfd_get_32 (abfd, src->l_stlen);
2640 dst->l_stoff = bfd_get_32 (abfd, src->l_stoff);
2641 }
2642
2643 /* Swap out the ldhdr structure. */
2644
2645 static void
2646 xcoff_swap_ldhdr_out (bfd *abfd, const struct internal_ldhdr *src, void * d)
2647 {
2648 struct external_ldhdr *dst = (struct external_ldhdr *) d;
2649
2650 bfd_put_32 (abfd, (bfd_vma) src->l_version, dst->l_version);
2651 bfd_put_32 (abfd, src->l_nsyms, dst->l_nsyms);
2652 bfd_put_32 (abfd, src->l_nreloc, dst->l_nreloc);
2653 bfd_put_32 (abfd, src->l_istlen, dst->l_istlen);
2654 bfd_put_32 (abfd, src->l_nimpid, dst->l_nimpid);
2655 bfd_put_32 (abfd, src->l_impoff, dst->l_impoff);
2656 bfd_put_32 (abfd, src->l_stlen, dst->l_stlen);
2657 bfd_put_32 (abfd, src->l_stoff, dst->l_stoff);
2658 }
2659
2660 /* Swap in the ldsym structure. */
2661
2662 static void
2663 xcoff_swap_ldsym_in (bfd *abfd, const void * s, struct internal_ldsym *dst)
2664 {
2665 const struct external_ldsym *src = (const struct external_ldsym *) s;
2666
2667 if (bfd_get_32 (abfd, src->_l._l_l._l_zeroes) != 0) {
2668 memcpy (dst->_l._l_name, src->_l._l_name, SYMNMLEN);
2669 } else {
2670 dst->_l._l_l._l_zeroes = 0;
2671 dst->_l._l_l._l_offset = bfd_get_32 (abfd, src->_l._l_l._l_offset);
2672 }
2673 dst->l_value = bfd_get_32 (abfd, src->l_value);
2674 dst->l_scnum = bfd_get_16 (abfd, src->l_scnum);
2675 dst->l_smtype = bfd_get_8 (abfd, src->l_smtype);
2676 dst->l_smclas = bfd_get_8 (abfd, src->l_smclas);
2677 dst->l_ifile = bfd_get_32 (abfd, src->l_ifile);
2678 dst->l_parm = bfd_get_32 (abfd, src->l_parm);
2679 }
2680
2681 /* Swap out the ldsym structure. */
2682
2683 static void
2684 xcoff_swap_ldsym_out (bfd *abfd, const struct internal_ldsym *src, void * d)
2685 {
2686 struct external_ldsym *dst = (struct external_ldsym *) d;
2687
2688 if (src->_l._l_l._l_zeroes != 0)
2689 memcpy (dst->_l._l_name, src->_l._l_name, SYMNMLEN);
2690 else
2691 {
2692 bfd_put_32 (abfd, (bfd_vma) 0, dst->_l._l_l._l_zeroes);
2693 bfd_put_32 (abfd, (bfd_vma) src->_l._l_l._l_offset,
2694 dst->_l._l_l._l_offset);
2695 }
2696 bfd_put_32 (abfd, src->l_value, dst->l_value);
2697 bfd_put_16 (abfd, (bfd_vma) src->l_scnum, dst->l_scnum);
2698 bfd_put_8 (abfd, src->l_smtype, dst->l_smtype);
2699 bfd_put_8 (abfd, src->l_smclas, dst->l_smclas);
2700 bfd_put_32 (abfd, src->l_ifile, dst->l_ifile);
2701 bfd_put_32 (abfd, src->l_parm, dst->l_parm);
2702 }
2703
2704 static void
2705 xcoff_swap_reloc_in (bfd *abfd, void * s, void * d)
2706 {
2707 struct external_reloc *src = (struct external_reloc *) s;
2708 struct internal_reloc *dst = (struct internal_reloc *) d;
2709
2710 memset (dst, 0, sizeof (struct internal_reloc));
2711
2712 dst->r_vaddr = bfd_get_32 (abfd, src->r_vaddr);
2713 dst->r_symndx = bfd_get_32 (abfd, src->r_symndx);
2714 dst->r_size = bfd_get_8 (abfd, src->r_size);
2715 dst->r_type = bfd_get_8 (abfd, src->r_type);
2716 }
2717
2718 static unsigned int
2719 xcoff_swap_reloc_out (bfd *abfd, void * s, void * d)
2720 {
2721 struct internal_reloc *src = (struct internal_reloc *) s;
2722 struct external_reloc *dst = (struct external_reloc *) d;
2723
2724 bfd_put_32 (abfd, src->r_vaddr, dst->r_vaddr);
2725 bfd_put_32 (abfd, src->r_symndx, dst->r_symndx);
2726 bfd_put_8 (abfd, src->r_type, dst->r_type);
2727 bfd_put_8 (abfd, src->r_size, dst->r_size);
2728
2729 return bfd_coff_relsz (abfd);
2730 }
2731
2732 /* Swap in the ldrel structure. */
2733
2734 static void
2735 xcoff_swap_ldrel_in (bfd *abfd, const void * s, struct internal_ldrel *dst)
2736 {
2737 const struct external_ldrel *src = (const struct external_ldrel *) s;
2738
2739 dst->l_vaddr = bfd_get_32 (abfd, src->l_vaddr);
2740 dst->l_symndx = bfd_get_32 (abfd, src->l_symndx);
2741 dst->l_rtype = bfd_get_16 (abfd, src->l_rtype);
2742 dst->l_rsecnm = bfd_get_16 (abfd, src->l_rsecnm);
2743 }
2744
2745 /* Swap out the ldrel structure. */
2746
2747 static void
2748 xcoff_swap_ldrel_out (bfd *abfd, const struct internal_ldrel *src, void * d)
2749 {
2750 struct external_ldrel *dst = (struct external_ldrel *) d;
2751
2752 bfd_put_32 (abfd, src->l_vaddr, dst->l_vaddr);
2753 bfd_put_32 (abfd, src->l_symndx, dst->l_symndx);
2754 bfd_put_16 (abfd, (bfd_vma) src->l_rtype, dst->l_rtype);
2755 bfd_put_16 (abfd, (bfd_vma) src->l_rsecnm, dst->l_rsecnm);
2756 }
2757 \f
2758
2759 bfd_boolean
2760 xcoff_reloc_type_noop (bfd *input_bfd ATTRIBUTE_UNUSED,
2761 asection *input_section ATTRIBUTE_UNUSED,
2762 bfd *output_bfd ATTRIBUTE_UNUSED,
2763 struct internal_reloc *rel ATTRIBUTE_UNUSED,
2764 struct internal_syment *sym ATTRIBUTE_UNUSED,
2765 struct reloc_howto_struct *howto ATTRIBUTE_UNUSED,
2766 bfd_vma val ATTRIBUTE_UNUSED,
2767 bfd_vma addend ATTRIBUTE_UNUSED,
2768 bfd_vma *relocation ATTRIBUTE_UNUSED,
2769 bfd_byte *contents ATTRIBUTE_UNUSED)
2770 {
2771 return TRUE;
2772 }
2773
2774 bfd_boolean
2775 xcoff_reloc_type_fail (bfd *input_bfd,
2776 asection *input_section ATTRIBUTE_UNUSED,
2777 bfd *output_bfd ATTRIBUTE_UNUSED,
2778 struct internal_reloc *rel,
2779 struct internal_syment *sym ATTRIBUTE_UNUSED,
2780 struct reloc_howto_struct *howto ATTRIBUTE_UNUSED,
2781 bfd_vma val ATTRIBUTE_UNUSED,
2782 bfd_vma addend ATTRIBUTE_UNUSED,
2783 bfd_vma *relocation ATTRIBUTE_UNUSED,
2784 bfd_byte *contents ATTRIBUTE_UNUSED)
2785 {
2786 _bfd_error_handler
2787 /* xgettext: c-format */
2788 (_("%pB: unsupported relocation type %#x"),
2789 input_bfd, (unsigned int) rel->r_type);
2790 bfd_set_error (bfd_error_bad_value);
2791 return FALSE;
2792 }
2793
2794 bfd_boolean
2795 xcoff_reloc_type_pos (bfd *input_bfd ATTRIBUTE_UNUSED,
2796 asection *input_section ATTRIBUTE_UNUSED,
2797 bfd *output_bfd ATTRIBUTE_UNUSED,
2798 struct internal_reloc *rel ATTRIBUTE_UNUSED,
2799 struct internal_syment *sym ATTRIBUTE_UNUSED,
2800 struct reloc_howto_struct *howto ATTRIBUTE_UNUSED,
2801 bfd_vma val,
2802 bfd_vma addend,
2803 bfd_vma *relocation,
2804 bfd_byte *contents ATTRIBUTE_UNUSED)
2805 {
2806 *relocation = val + addend;
2807 return TRUE;
2808 }
2809
2810 bfd_boolean
2811 xcoff_reloc_type_neg (bfd *input_bfd ATTRIBUTE_UNUSED,
2812 asection *input_section ATTRIBUTE_UNUSED,
2813 bfd *output_bfd ATTRIBUTE_UNUSED,
2814 struct internal_reloc *rel ATTRIBUTE_UNUSED,
2815 struct internal_syment *sym ATTRIBUTE_UNUSED,
2816 struct reloc_howto_struct *howto ATTRIBUTE_UNUSED,
2817 bfd_vma val,
2818 bfd_vma addend,
2819 bfd_vma *relocation,
2820 bfd_byte *contents ATTRIBUTE_UNUSED)
2821 {
2822 *relocation = addend - val;
2823 return TRUE;
2824 }
2825
2826 bfd_boolean
2827 xcoff_reloc_type_rel (bfd *input_bfd ATTRIBUTE_UNUSED,
2828 asection *input_section,
2829 bfd *output_bfd ATTRIBUTE_UNUSED,
2830 struct internal_reloc *rel ATTRIBUTE_UNUSED,
2831 struct internal_syment *sym ATTRIBUTE_UNUSED,
2832 struct reloc_howto_struct *howto,
2833 bfd_vma val,
2834 bfd_vma addend,
2835 bfd_vma *relocation,
2836 bfd_byte *contents ATTRIBUTE_UNUSED)
2837 {
2838 howto->pc_relative = TRUE;
2839
2840 /* A PC relative reloc includes the section address. */
2841 addend += input_section->vma;
2842
2843 *relocation = val + addend;
2844 *relocation -= (input_section->output_section->vma
2845 + input_section->output_offset);
2846 return TRUE;
2847 }
2848
2849 bfd_boolean
2850 xcoff_reloc_type_toc (bfd *input_bfd,
2851 asection *input_section ATTRIBUTE_UNUSED,
2852 bfd *output_bfd,
2853 struct internal_reloc *rel,
2854 struct internal_syment *sym,
2855 struct reloc_howto_struct *howto ATTRIBUTE_UNUSED,
2856 bfd_vma val,
2857 bfd_vma addend ATTRIBUTE_UNUSED,
2858 bfd_vma *relocation,
2859 bfd_byte *contents ATTRIBUTE_UNUSED)
2860 {
2861 struct xcoff_link_hash_entry *h;
2862
2863 if (0 > rel->r_symndx)
2864 return FALSE;
2865
2866 h = obj_xcoff_sym_hashes (input_bfd)[rel->r_symndx];
2867
2868 if (h != NULL && h->smclas != XMC_TD)
2869 {
2870 if (h->toc_section == NULL)
2871 {
2872 _bfd_error_handler
2873 /* xgettext: c-format */
2874 (_("%pB: TOC reloc at %#" PRIx64 " to symbol `%s' with no TOC entry"),
2875 input_bfd, (uint64_t) rel->r_vaddr, h->root.root.string);
2876 bfd_set_error (bfd_error_bad_value);
2877 return FALSE;
2878 }
2879
2880 BFD_ASSERT ((h->flags & XCOFF_SET_TOC) == 0);
2881 val = (h->toc_section->output_section->vma
2882 + h->toc_section->output_offset);
2883 }
2884
2885 *relocation = ((val - xcoff_data (output_bfd)->toc)
2886 - (sym->n_value - xcoff_data (input_bfd)->toc));
2887 return TRUE;
2888 }
2889
2890 bfd_boolean
2891 xcoff_reloc_type_ba (bfd *input_bfd ATTRIBUTE_UNUSED,
2892 asection *input_section ATTRIBUTE_UNUSED,
2893 bfd *output_bfd ATTRIBUTE_UNUSED,
2894 struct internal_reloc *rel ATTRIBUTE_UNUSED,
2895 struct internal_syment *sym ATTRIBUTE_UNUSED,
2896 struct reloc_howto_struct *howto,
2897 bfd_vma val,
2898 bfd_vma addend,
2899 bfd_vma *relocation,
2900 bfd_byte *contents ATTRIBUTE_UNUSED)
2901 {
2902 howto->src_mask &= ~3;
2903 howto->dst_mask = howto->src_mask;
2904
2905 *relocation = val + addend;
2906
2907 return TRUE;
2908 }
2909
2910 static bfd_boolean
2911 xcoff_reloc_type_br (bfd *input_bfd,
2912 asection *input_section,
2913 bfd *output_bfd ATTRIBUTE_UNUSED,
2914 struct internal_reloc *rel,
2915 struct internal_syment *sym ATTRIBUTE_UNUSED,
2916 struct reloc_howto_struct *howto,
2917 bfd_vma val,
2918 bfd_vma addend,
2919 bfd_vma *relocation,
2920 bfd_byte *contents)
2921 {
2922 struct xcoff_link_hash_entry *h;
2923 bfd_vma section_offset;
2924
2925 if (0 > rel->r_symndx)
2926 return FALSE;
2927
2928 h = obj_xcoff_sym_hashes (input_bfd)[rel->r_symndx];
2929 section_offset = rel->r_vaddr - input_section->vma;
2930
2931 /* If we see an R_BR or R_RBR reloc which is jumping to global
2932 linkage code, and it is followed by an appropriate cror nop
2933 instruction, we replace the cror with lwz r2,20(r1). This
2934 restores the TOC after the glink code. Contrariwise, if the
2935 call is followed by a lwz r2,20(r1), but the call is not
2936 going to global linkage code, we can replace the load with a
2937 cror. */
2938 if (NULL != h
2939 && (bfd_link_hash_defined == h->root.type
2940 || bfd_link_hash_defweak == h->root.type)
2941 && section_offset + 8 <= input_section->size)
2942 {
2943 bfd_byte *pnext;
2944 unsigned long next;
2945
2946 pnext = contents + section_offset + 4;
2947 next = bfd_get_32 (input_bfd, pnext);
2948
2949 /* The _ptrgl function is magic. It is used by the AIX
2950 compiler to call a function through a pointer. */
2951 if (h->smclas == XMC_GL || strcmp (h->root.root.string, "._ptrgl") == 0)
2952 {
2953 if (next == 0x4def7b82 /* cror 15,15,15 */
2954 || next == 0x4ffffb82 /* cror 31,31,31 */
2955 || next == 0x60000000) /* ori r0,r0,0 */
2956 bfd_put_32 (input_bfd, 0x80410014, pnext); /* lwz r2,20(r1) */
2957
2958 }
2959 else
2960 {
2961 if (next == 0x80410014) /* lwz r2,20(r1) */
2962 bfd_put_32 (input_bfd, 0x60000000, pnext); /* ori r0,r0,0 */
2963 }
2964 }
2965 else if (NULL != h && bfd_link_hash_undefined == h->root.type)
2966 {
2967 /* Normally, this relocation is against a defined symbol. In the
2968 case where this is a partial link and the output section offset
2969 is greater than 2^25, the linker will return an invalid error
2970 message that the relocation has been truncated. Yes it has been
2971 truncated but no it not important. For this case, disable the
2972 overflow checking. */
2973
2974 howto->complain_on_overflow = complain_overflow_dont;
2975 }
2976
2977 /* The original PC-relative relocation is biased by -r_vaddr, so adding
2978 the value below will give the absolute target address. */
2979 *relocation = val + addend + rel->r_vaddr;
2980
2981 howto->src_mask &= ~3;
2982 howto->dst_mask = howto->src_mask;
2983
2984 if (h != NULL
2985 && (h->root.type == bfd_link_hash_defined
2986 || h->root.type == bfd_link_hash_defweak)
2987 && bfd_is_abs_section (h->root.u.def.section)
2988 && section_offset + 4 <= input_section->size)
2989 {
2990 bfd_byte *ptr;
2991 bfd_vma insn;
2992
2993 /* Turn the relative branch into an absolute one by setting the
2994 AA bit. */
2995 ptr = contents + section_offset;
2996 insn = bfd_get_32 (input_bfd, ptr);
2997 insn |= 2;
2998 bfd_put_32 (input_bfd, insn, ptr);
2999
3000 /* Make the howto absolute too. */
3001 howto->pc_relative = FALSE;
3002 howto->complain_on_overflow = complain_overflow_bitfield;
3003 }
3004 else
3005 {
3006 /* Use a PC-relative howto and subtract the instruction's address
3007 from the target address we calculated above. */
3008 howto->pc_relative = TRUE;
3009 *relocation -= (input_section->output_section->vma
3010 + input_section->output_offset
3011 + section_offset);
3012 }
3013 return TRUE;
3014 }
3015
3016 bfd_boolean
3017 xcoff_reloc_type_crel (bfd *input_bfd ATTRIBUTE_UNUSED,
3018 asection *input_section,
3019 bfd *output_bfd ATTRIBUTE_UNUSED,
3020 struct internal_reloc *rel ATTRIBUTE_UNUSED,
3021 struct internal_syment *sym ATTRIBUTE_UNUSED,
3022 struct reloc_howto_struct *howto,
3023 bfd_vma val ATTRIBUTE_UNUSED,
3024 bfd_vma addend,
3025 bfd_vma *relocation,
3026 bfd_byte *contents ATTRIBUTE_UNUSED)
3027 {
3028 howto->pc_relative = TRUE;
3029 howto->src_mask &= ~3;
3030 howto->dst_mask = howto->src_mask;
3031
3032 /* A PC relative reloc includes the section address. */
3033 addend += input_section->vma;
3034
3035 *relocation = val + addend;
3036 *relocation -= (input_section->output_section->vma
3037 + input_section->output_offset);
3038 return TRUE;
3039 }
3040
3041 static bfd_boolean
3042 xcoff_complain_overflow_dont_func (bfd *input_bfd ATTRIBUTE_UNUSED,
3043 bfd_vma val ATTRIBUTE_UNUSED,
3044 bfd_vma relocation ATTRIBUTE_UNUSED,
3045 struct reloc_howto_struct *
3046 howto ATTRIBUTE_UNUSED)
3047 {
3048 return FALSE;
3049 }
3050
3051 static bfd_boolean
3052 xcoff_complain_overflow_bitfield_func (bfd *input_bfd,
3053 bfd_vma val,
3054 bfd_vma relocation,
3055 struct reloc_howto_struct *howto)
3056 {
3057 bfd_vma fieldmask, signmask, ss;
3058 bfd_vma a, b, sum;
3059
3060 /* Get the values to be added together. For signed and unsigned
3061 relocations, we assume that all values should be truncated to
3062 the size of an address. For bitfields, all the bits matter.
3063 See also bfd_check_overflow. */
3064 fieldmask = N_ONES (howto->bitsize);
3065 a = relocation;
3066 b = val & howto->src_mask;
3067
3068 /* Much like unsigned, except no trimming with addrmask. In
3069 addition, the sum overflows if there is a carry out of
3070 the bfd_vma, i.e., the sum is less than either input
3071 operand. */
3072 a >>= howto->rightshift;
3073 b >>= howto->bitpos;
3074
3075 /* Bitfields are sometimes used for signed numbers; for
3076 example, a 13-bit field sometimes represents values in
3077 0..8191 and sometimes represents values in -4096..4095.
3078 If the field is signed and a is -4095 (0x1001) and b is
3079 -1 (0x1fff), the sum is -4096 (0x1000), but (0x1001 +
3080 0x1fff is 0x3000). It's not clear how to handle this
3081 everywhere, since there is not way to know how many bits
3082 are significant in the relocation, but the original code
3083 assumed that it was fully sign extended, and we will keep
3084 that assumption. */
3085 signmask = (fieldmask >> 1) + 1;
3086
3087 if ((a & ~ fieldmask) != 0)
3088 {
3089 /* Some bits out of the field are set. This might not
3090 be a problem: if this is a signed bitfield, it is OK
3091 iff all the high bits are set, including the sign
3092 bit. We'll try setting all but the most significant
3093 bit in the original relocation value: if this is all
3094 ones, we are OK, assuming a signed bitfield. */
3095 ss = (signmask << howto->rightshift) - 1;
3096 if ((ss | relocation) != ~ (bfd_vma) 0)
3097 return TRUE;
3098 a &= fieldmask;
3099 }
3100
3101 /* We just assume (b & ~ fieldmask) == 0. */
3102
3103 /* We explicitly permit wrap around if this relocation
3104 covers the high bit of an address. The Linux kernel
3105 relies on it, and it is the only way to write assembler
3106 code which can run when loaded at a location 0x80000000
3107 away from the location at which it is linked. */
3108 if ((unsigned) howto->bitsize + howto->rightshift
3109 == bfd_arch_bits_per_address (input_bfd))
3110 return FALSE;
3111
3112 sum = a + b;
3113 if (sum < a || (sum & ~ fieldmask) != 0)
3114 {
3115 /* There was a carry out, or the field overflow. Test
3116 for signed operands again. Here is the overflow test
3117 is as for complain_overflow_signed. */
3118 if (((~ (a ^ b)) & (a ^ sum)) & signmask)
3119 return TRUE;
3120 }
3121
3122 return FALSE;
3123 }
3124
3125 static bfd_boolean
3126 xcoff_complain_overflow_signed_func (bfd *input_bfd,
3127 bfd_vma val,
3128 bfd_vma relocation,
3129 struct reloc_howto_struct *howto)
3130 {
3131 bfd_vma addrmask, fieldmask, signmask, ss;
3132 bfd_vma a, b, sum;
3133
3134 /* Get the values to be added together. For signed and unsigned
3135 relocations, we assume that all values should be truncated to
3136 the size of an address. For bitfields, all the bits matter.
3137 See also bfd_check_overflow. */
3138 fieldmask = N_ONES (howto->bitsize);
3139 addrmask = N_ONES (bfd_arch_bits_per_address (input_bfd)) | fieldmask;
3140 a = relocation;
3141 b = val & howto->src_mask;
3142
3143 a = (a & addrmask) >> howto->rightshift;
3144
3145 /* If any sign bits are set, all sign bits must be set.
3146 That is, A must be a valid negative address after
3147 shifting. */
3148 signmask = ~ (fieldmask >> 1);
3149 ss = a & signmask;
3150 if (ss != 0 && ss != ((addrmask >> howto->rightshift) & signmask))
3151 return TRUE;
3152
3153 /* We only need this next bit of code if the sign bit of B
3154 is below the sign bit of A. This would only happen if
3155 SRC_MASK had fewer bits than BITSIZE. Note that if
3156 SRC_MASK has more bits than BITSIZE, we can get into
3157 trouble; we would need to verify that B is in range, as
3158 we do for A above. */
3159 signmask = ((~ howto->src_mask) >> 1) & howto->src_mask;
3160 if ((b & signmask) != 0)
3161 {
3162 /* Set all the bits above the sign bit. */
3163 b -= signmask <<= 1;
3164 }
3165
3166 b = (b & addrmask) >> howto->bitpos;
3167
3168 /* Now we can do the addition. */
3169 sum = a + b;
3170
3171 /* See if the result has the correct sign. Bits above the
3172 sign bit are junk now; ignore them. If the sum is
3173 positive, make sure we did not have all negative inputs;
3174 if the sum is negative, make sure we did not have all
3175 positive inputs. The test below looks only at the sign
3176 bits, and it really just
3177 SIGN (A) == SIGN (B) && SIGN (A) != SIGN (SUM)
3178 */
3179 signmask = (fieldmask >> 1) + 1;
3180 if (((~ (a ^ b)) & (a ^ sum)) & signmask)
3181 return TRUE;
3182
3183 return FALSE;
3184 }
3185
3186 static bfd_boolean
3187 xcoff_complain_overflow_unsigned_func (bfd *input_bfd,
3188 bfd_vma val,
3189 bfd_vma relocation,
3190 struct reloc_howto_struct *howto)
3191 {
3192 bfd_vma addrmask, fieldmask;
3193 bfd_vma a, b, sum;
3194
3195 /* Get the values to be added together. For signed and unsigned
3196 relocations, we assume that all values should be truncated to
3197 the size of an address. For bitfields, all the bits matter.
3198 See also bfd_check_overflow. */
3199 fieldmask = N_ONES (howto->bitsize);
3200 addrmask = N_ONES (bfd_arch_bits_per_address (input_bfd)) | fieldmask;
3201 a = relocation;
3202 b = val & howto->src_mask;
3203
3204 /* Checking for an unsigned overflow is relatively easy:
3205 trim the addresses and add, and trim the result as well.
3206 Overflow is normally indicated when the result does not
3207 fit in the field. However, we also need to consider the
3208 case when, e.g., fieldmask is 0x7fffffff or smaller, an
3209 input is 0x80000000, and bfd_vma is only 32 bits; then we
3210 will get sum == 0, but there is an overflow, since the
3211 inputs did not fit in the field. Instead of doing a
3212 separate test, we can check for this by or-ing in the
3213 operands when testing for the sum overflowing its final
3214 field. */
3215 a = (a & addrmask) >> howto->rightshift;
3216 b = (b & addrmask) >> howto->bitpos;
3217 sum = (a + b) & addrmask;
3218 if ((a | b | sum) & ~ fieldmask)
3219 return TRUE;
3220
3221 return FALSE;
3222 }
3223
3224 /* This is the relocation function for the RS/6000/POWER/PowerPC.
3225 This is currently the only processor which uses XCOFF; I hope that
3226 will never change.
3227
3228 I took the relocation type definitions from two documents:
3229 the PowerPC AIX Version 4 Application Binary Interface, First
3230 Edition (April 1992), and the PowerOpen ABI, Big-Endian
3231 32-Bit Hardware Implementation (June 30, 1994). Differences
3232 between the documents are noted below.
3233
3234 Unsupported r_type's
3235
3236 R_RTB:
3237 R_RRTBI:
3238 R_RRTBA:
3239
3240 These relocs are defined by the PowerPC ABI to be
3241 relative branches which use half of the difference
3242 between the symbol and the program counter. I can't
3243 quite figure out when this is useful. These relocs are
3244 not defined by the PowerOpen ABI.
3245
3246 Supported r_type's
3247
3248 R_POS:
3249 Simple positive relocation.
3250
3251 R_NEG:
3252 Simple negative relocation.
3253
3254 R_REL:
3255 Simple PC relative relocation.
3256
3257 R_TOC:
3258 TOC relative relocation. The value in the instruction in
3259 the input file is the offset from the input file TOC to
3260 the desired location. We want the offset from the final
3261 TOC to the desired location. We have:
3262 isym = iTOC + in
3263 iinsn = in + o
3264 osym = oTOC + on
3265 oinsn = on + o
3266 so we must change insn by on - in.
3267
3268 R_GL:
3269 GL linkage relocation. The value of this relocation
3270 is the address of the entry in the TOC section.
3271
3272 R_TCL:
3273 Local object TOC address. I can't figure out the
3274 difference between this and case R_GL.
3275
3276 R_TRL:
3277 TOC relative relocation. A TOC relative load instruction
3278 which may be changed to a load address instruction.
3279 FIXME: We don't currently implement this optimization.
3280
3281 R_TRLA:
3282 TOC relative relocation. This is a TOC relative load
3283 address instruction which may be changed to a load
3284 instruction. FIXME: I don't know if this is the correct
3285 implementation.
3286
3287 R_BA:
3288 Absolute branch. We don't want to mess with the lower
3289 two bits of the instruction.
3290
3291 R_CAI:
3292 The PowerPC ABI defines this as an absolute call which
3293 may be modified to become a relative call. The PowerOpen
3294 ABI does not define this relocation type.
3295
3296 R_RBA:
3297 Absolute branch which may be modified to become a
3298 relative branch.
3299
3300 R_RBAC:
3301 The PowerPC ABI defines this as an absolute branch to a
3302 fixed address which may be modified to an absolute branch
3303 to a symbol. The PowerOpen ABI does not define this
3304 relocation type.
3305
3306 R_RBRC:
3307 The PowerPC ABI defines this as an absolute branch to a
3308 fixed address which may be modified to a relative branch.
3309 The PowerOpen ABI does not define this relocation type.
3310
3311 R_BR:
3312 Relative branch. We don't want to mess with the lower
3313 two bits of the instruction.
3314
3315 R_CREL:
3316 The PowerPC ABI defines this as a relative call which may
3317 be modified to become an absolute call. The PowerOpen
3318 ABI does not define this relocation type.
3319
3320 R_RBR:
3321 A relative branch which may be modified to become an
3322 absolute branch.
3323
3324 R_RL:
3325 The PowerPC AIX ABI describes this as a load which may be
3326 changed to a load address. The PowerOpen ABI says this
3327 is the same as case R_POS.
3328
3329 R_RLA:
3330 The PowerPC AIX ABI describes this as a load address
3331 which may be changed to a load. The PowerOpen ABI says
3332 this is the same as R_POS.
3333 */
3334
3335 bfd_boolean
3336 xcoff_ppc_relocate_section (bfd *output_bfd,
3337 struct bfd_link_info *info,
3338 bfd *input_bfd,
3339 asection *input_section,
3340 bfd_byte *contents,
3341 struct internal_reloc *relocs,
3342 struct internal_syment *syms,
3343 asection **sections)
3344 {
3345 struct internal_reloc *rel;
3346 struct internal_reloc *relend;
3347
3348 rel = relocs;
3349 relend = rel + input_section->reloc_count;
3350 for (; rel < relend; rel++)
3351 {
3352 long symndx;
3353 struct xcoff_link_hash_entry *h;
3354 struct internal_syment *sym;
3355 bfd_vma addend;
3356 bfd_vma val;
3357 struct reloc_howto_struct howto;
3358 bfd_vma relocation;
3359 bfd_vma value_to_relocate;
3360 bfd_vma address;
3361 bfd_byte *location;
3362
3363 /* Relocation type R_REF is a special relocation type which is
3364 merely used to prevent garbage collection from occurring for
3365 the csect including the symbol which it references. */
3366 if (rel->r_type == R_REF)
3367 continue;
3368
3369 /* howto */
3370 howto.type = rel->r_type;
3371 howto.rightshift = 0;
3372 howto.bitsize = (rel->r_size & 0x1f) + 1;
3373 howto.size = howto.bitsize > 16 ? 2 : 1;
3374 howto.pc_relative = FALSE;
3375 howto.bitpos = 0;
3376 howto.complain_on_overflow = (rel->r_size & 0x80
3377 ? complain_overflow_signed
3378 : complain_overflow_bitfield);
3379 howto.special_function = NULL;
3380 howto.name = "internal";
3381 howto.partial_inplace = TRUE;
3382 howto.src_mask = howto.dst_mask = N_ONES (howto.bitsize);
3383 howto.pcrel_offset = FALSE;
3384
3385 /* symbol */
3386 val = 0;
3387 addend = 0;
3388 h = NULL;
3389 sym = NULL;
3390 symndx = rel->r_symndx;
3391
3392 if (-1 != symndx)
3393 {
3394 asection *sec;
3395
3396 h = obj_xcoff_sym_hashes (input_bfd)[symndx];
3397 sym = syms + symndx;
3398 addend = - sym->n_value;
3399
3400 if (NULL == h)
3401 {
3402 sec = sections[symndx];
3403 /* Hack to make sure we use the right TOC anchor value
3404 if this reloc is against the TOC anchor. */
3405 if (sec->name[3] == '0'
3406 && strcmp (sec->name, ".tc0") == 0)
3407 val = xcoff_data (output_bfd)->toc;
3408 else
3409 val = (sec->output_section->vma
3410 + sec->output_offset
3411 + sym->n_value
3412 - sec->vma);
3413 }
3414 else
3415 {
3416 if (info->unresolved_syms_in_objects != RM_IGNORE
3417 && (h->flags & XCOFF_WAS_UNDEFINED) != 0)
3418 (*info->callbacks->undefined_symbol)
3419 (info, h->root.root.string,
3420 input_bfd, input_section,
3421 rel->r_vaddr - input_section->vma,
3422 info->unresolved_syms_in_objects == RM_DIAGNOSE &&
3423 !info->warn_unresolved_syms);
3424
3425 if (h->root.type == bfd_link_hash_defined
3426 || h->root.type == bfd_link_hash_defweak)
3427 {
3428 sec = h->root.u.def.section;
3429 val = (h->root.u.def.value
3430 + sec->output_section->vma
3431 + sec->output_offset);
3432 }
3433 else if (h->root.type == bfd_link_hash_common)
3434 {
3435 sec = h->root.u.c.p->section;
3436 val = (sec->output_section->vma
3437 + sec->output_offset);
3438
3439 }
3440 else
3441 {
3442 BFD_ASSERT (bfd_link_relocatable (info)
3443 || (info->static_link
3444 && (h->flags & XCOFF_WAS_UNDEFINED) != 0)
3445 || (h->flags & XCOFF_DEF_DYNAMIC) != 0
3446 || (h->flags & XCOFF_IMPORT) != 0);
3447 }
3448 }
3449 }
3450
3451 if (rel->r_type >= XCOFF_MAX_CALCULATE_RELOCATION
3452 || !((*xcoff_calculate_relocation[rel->r_type])
3453 (input_bfd, input_section, output_bfd, rel, sym, &howto, val,
3454 addend, &relocation, contents)))
3455 return FALSE;
3456
3457 /* address */
3458 address = rel->r_vaddr - input_section->vma;
3459 location = contents + address;
3460
3461 if (address > input_section->size)
3462 abort ();
3463
3464 /* Get the value we are going to relocate. */
3465 if (1 == howto.size)
3466 value_to_relocate = bfd_get_16 (input_bfd, location);
3467 else
3468 value_to_relocate = bfd_get_32 (input_bfd, location);
3469
3470 /* overflow.
3471
3472 FIXME: We may drop bits during the addition
3473 which we don't check for. We must either check at every single
3474 operation, which would be tedious, or we must do the computations
3475 in a type larger than bfd_vma, which would be inefficient. */
3476
3477 if (((*xcoff_complain_overflow[howto.complain_on_overflow])
3478 (input_bfd, value_to_relocate, relocation, &howto)))
3479 {
3480 const char *name;
3481 char buf[SYMNMLEN + 1];
3482 char reloc_type_name[10];
3483
3484 if (symndx == -1)
3485 {
3486 name = "*ABS*";
3487 }
3488 else if (h != NULL)
3489 {
3490 name = NULL;
3491 }
3492 else
3493 {
3494 name = _bfd_coff_internal_syment_name (input_bfd, sym, buf);
3495 if (name == NULL)
3496 name = "UNKNOWN";
3497 }
3498 sprintf (reloc_type_name, "0x%02x", rel->r_type);
3499
3500 (*info->callbacks->reloc_overflow)
3501 (info, (h ? &h->root : NULL), name, reloc_type_name,
3502 (bfd_vma) 0, input_bfd, input_section,
3503 rel->r_vaddr - input_section->vma);
3504 }
3505
3506 /* Add RELOCATION to the right bits of VALUE_TO_RELOCATE. */
3507 value_to_relocate = ((value_to_relocate & ~howto.dst_mask)
3508 | (((value_to_relocate & howto.src_mask)
3509 + relocation) & howto.dst_mask));
3510
3511 /* Put the value back in the object file. */
3512 if (1 == howto.size)
3513 bfd_put_16 (input_bfd, value_to_relocate, location);
3514 else
3515 bfd_put_32 (input_bfd, value_to_relocate, location);
3516 }
3517
3518 return TRUE;
3519 }
3520
3521 /* gcc-8 warns (*) on all the strncpy calls in this function about
3522 possible string truncation. The "truncation" is not a bug. We
3523 have an external representation of structs with fields that are not
3524 necessarily NULL terminated and corresponding internal
3525 representation fields that are one larger so that they can always
3526 be NULL terminated.
3527 gcc versions between 4.2 and 4.6 do not allow pragma control of
3528 diagnostics inside functions, giving a hard error if you try to use
3529 the finer control available with later versions.
3530 gcc prior to 4.2 warns about diagnostic push and pop.
3531 gcc-5, gcc-6 and gcc-7 warn that -Wstringop-truncation is unknown,
3532 unless you also add #pragma GCC diagnostic ignored "-Wpragma".
3533 (*) Depending on your system header files! */
3534 #if GCC_VERSION >= 8000
3535 # pragma GCC diagnostic push
3536 # pragma GCC diagnostic ignored "-Wstringop-truncation"
3537 #endif
3538 static bfd_boolean
3539 _bfd_xcoff_put_ldsymbol_name (bfd *abfd ATTRIBUTE_UNUSED,
3540 struct xcoff_loader_info *ldinfo,
3541 struct internal_ldsym *ldsym,
3542 const char *name)
3543 {
3544 size_t len;
3545 len = strlen (name);
3546
3547 if (len <= SYMNMLEN)
3548 strncpy (ldsym->_l._l_name, name, SYMNMLEN);
3549 else
3550 {
3551 if (ldinfo->string_size + len + 3 > ldinfo->string_alc)
3552 {
3553 bfd_size_type newalc;
3554 char *newstrings;
3555
3556 newalc = ldinfo->string_alc * 2;
3557 if (newalc == 0)
3558 newalc = 32;
3559 while (ldinfo->string_size + len + 3 > newalc)
3560 newalc *= 2;
3561
3562 newstrings = bfd_realloc (ldinfo->strings, newalc);
3563 if (newstrings == NULL)
3564 {
3565 ldinfo->failed = TRUE;
3566 return FALSE;
3567 }
3568 ldinfo->string_alc = newalc;
3569 ldinfo->strings = newstrings;
3570 }
3571
3572 bfd_put_16 (ldinfo->output_bfd, (bfd_vma) (len + 1),
3573 ldinfo->strings + ldinfo->string_size);
3574 strcpy (ldinfo->strings + ldinfo->string_size + 2, name);
3575 ldsym->_l._l_l._l_zeroes = 0;
3576 ldsym->_l._l_l._l_offset = ldinfo->string_size + 2;
3577 ldinfo->string_size += len + 3;
3578 }
3579
3580 return TRUE;
3581 }
3582
3583 static bfd_boolean
3584 _bfd_xcoff_put_symbol_name (struct bfd_link_info *info,
3585 struct bfd_strtab_hash *strtab,
3586 struct internal_syment *sym,
3587 const char *name)
3588 {
3589 if (strlen (name) <= SYMNMLEN)
3590 {
3591 strncpy (sym->_n._n_name, name, SYMNMLEN);
3592 }
3593 else
3594 {
3595 bfd_boolean hash;
3596 bfd_size_type indx;
3597
3598 hash = !info->traditional_format;
3599 indx = _bfd_stringtab_add (strtab, name, hash, FALSE);
3600 if (indx == (bfd_size_type) -1)
3601 return FALSE;
3602 sym->_n._n_n._n_zeroes = 0;
3603 sym->_n._n_n._n_offset = STRING_SIZE_SIZE + indx;
3604 }
3605 return TRUE;
3606 }
3607 #if GCC_VERSION >= 8000
3608 # pragma GCC diagnostic pop
3609 #endif
3610
3611 static asection *
3612 xcoff_create_csect_from_smclas (bfd *abfd,
3613 union internal_auxent *aux,
3614 const char *symbol_name)
3615 {
3616 asection *return_value = NULL;
3617
3618 /* .sv64 = x_smclas == 17
3619 This is an invalid csect for 32 bit apps. */
3620 static const char * const names[] =
3621 {
3622 ".pr", ".ro", ".db", ".tc", ".ua", ".rw", ".gl", ".xo", /* 0 - 7 */
3623 ".sv", ".bs", ".ds", ".uc", ".ti", ".tb", NULL, ".tc0", /* 8 - 15 */
3624 ".td", NULL, ".sv3264", NULL, ".tl", ".ul", ".te"
3625 };
3626
3627 if ((aux->x_csect.x_smclas < ARRAY_SIZE (names))
3628 && (NULL != names[aux->x_csect.x_smclas]))
3629 {
3630 return_value = bfd_make_section_anyway
3631 (abfd, names[aux->x_csect.x_smclas]);
3632 }
3633 else
3634 {
3635 _bfd_error_handler
3636 /* xgettext: c-format */
3637 (_("%pB: symbol `%s' has unrecognized smclas %d"),
3638 abfd, symbol_name, aux->x_csect.x_smclas);
3639 bfd_set_error (bfd_error_bad_value);
3640 }
3641
3642 return return_value;
3643 }
3644
3645 static bfd_boolean
3646 xcoff_is_lineno_count_overflow (bfd *abfd ATTRIBUTE_UNUSED, bfd_vma value)
3647 {
3648 if (0xffff <= value)
3649 return TRUE;
3650
3651 return FALSE;
3652 }
3653
3654 static bfd_boolean
3655 xcoff_is_reloc_count_overflow (bfd *abfd ATTRIBUTE_UNUSED, bfd_vma value)
3656 {
3657 if (0xffff <= value)
3658 return TRUE;
3659
3660 return FALSE;
3661 }
3662
3663 static bfd_vma
3664 xcoff_loader_symbol_offset (bfd *abfd,
3665 struct internal_ldhdr *ldhdr ATTRIBUTE_UNUSED)
3666 {
3667 return bfd_xcoff_ldhdrsz (abfd);
3668 }
3669
3670 static bfd_vma
3671 xcoff_loader_reloc_offset (bfd *abfd, struct internal_ldhdr *ldhdr)
3672 {
3673 return bfd_xcoff_ldhdrsz (abfd) + ldhdr->l_nsyms * bfd_xcoff_ldsymsz (abfd);
3674 }
3675
3676 static bfd_boolean
3677 xcoff_generate_rtinit (bfd *abfd, const char *init, const char *fini,
3678 bfd_boolean rtld)
3679 {
3680 bfd_byte filehdr_ext[FILHSZ];
3681 bfd_byte scnhdr_ext[SCNHSZ];
3682 bfd_byte syment_ext[SYMESZ * 10];
3683 bfd_byte reloc_ext[RELSZ * 3];
3684 bfd_byte *data_buffer;
3685 bfd_size_type data_buffer_size;
3686 bfd_byte *string_table = NULL, *st_tmp = NULL;
3687 bfd_size_type string_table_size;
3688 bfd_vma val;
3689 size_t initsz, finisz;
3690 struct internal_filehdr filehdr;
3691 struct internal_scnhdr scnhdr;
3692 struct internal_syment syment;
3693 union internal_auxent auxent;
3694 struct internal_reloc reloc;
3695
3696 char *data_name = ".data";
3697 char *rtinit_name = "__rtinit";
3698 char *rtld_name = "__rtld";
3699
3700 if (! bfd_xcoff_rtinit_size (abfd))
3701 return FALSE;
3702
3703 initsz = (init == NULL ? 0 : 1 + strlen (init));
3704 finisz = (fini == NULL ? 0 : 1 + strlen (fini));
3705
3706 /* file header */
3707 memset (filehdr_ext, 0, FILHSZ);
3708 memset (&filehdr, 0, sizeof (struct internal_filehdr));
3709 filehdr.f_magic = bfd_xcoff_magic_number (abfd);
3710 filehdr.f_nscns = 1;
3711 filehdr.f_timdat = 0;
3712 filehdr.f_nsyms = 0; /* at least 6, no more than 10 */
3713 filehdr.f_symptr = 0; /* set below */
3714 filehdr.f_opthdr = 0;
3715 filehdr.f_flags = 0;
3716
3717 /* section header */
3718 memset (scnhdr_ext, 0, SCNHSZ);
3719 memset (&scnhdr, 0, sizeof (struct internal_scnhdr));
3720 memcpy (scnhdr.s_name, data_name, strlen (data_name));
3721 scnhdr.s_paddr = 0;
3722 scnhdr.s_vaddr = 0;
3723 scnhdr.s_size = 0; /* set below */
3724 scnhdr.s_scnptr = FILHSZ + SCNHSZ;
3725 scnhdr.s_relptr = 0; /* set below */
3726 scnhdr.s_lnnoptr = 0;
3727 scnhdr.s_nreloc = 0; /* either 1 or 2 */
3728 scnhdr.s_nlnno = 0;
3729 scnhdr.s_flags = STYP_DATA;
3730
3731 /* .data
3732 0x0000 0x00000000 : rtl
3733 0x0004 0x00000010 : offset to init, or 0
3734 0x0008 0x00000028 : offset to fini, or 0
3735 0x000C 0x0000000C : size of descriptor
3736 0x0010 0x00000000 : init, needs a reloc
3737 0x0014 0x00000040 : offset to init name
3738 0x0018 0x00000000 : flags, padded to a word
3739 0x001C 0x00000000 : empty init
3740 0x0020 0x00000000 :
3741 0x0024 0x00000000 :
3742 0x0028 0x00000000 : fini, needs a reloc
3743 0x002C 0x00000??? : offset to fini name
3744 0x0030 0x00000000 : flags, padded to a word
3745 0x0034 0x00000000 : empty fini
3746 0x0038 0x00000000 :
3747 0x003C 0x00000000 :
3748 0x0040 init name
3749 0x0040 + initsz fini name */
3750
3751 data_buffer_size = 0x0040 + initsz + finisz;
3752 data_buffer_size = (data_buffer_size + 7) &~ (bfd_size_type) 7;
3753 data_buffer = NULL;
3754 data_buffer = (bfd_byte *) bfd_zmalloc (data_buffer_size);
3755 if (data_buffer == NULL)
3756 return FALSE;
3757
3758 if (initsz)
3759 {
3760 val = 0x10;
3761 bfd_h_put_32 (abfd, val, &data_buffer[0x04]);
3762 val = 0x40;
3763 bfd_h_put_32 (abfd, val, &data_buffer[0x14]);
3764 memcpy (&data_buffer[val], init, initsz);
3765 }
3766
3767 if (finisz)
3768 {
3769 val = 0x28;
3770 bfd_h_put_32 (abfd, val, &data_buffer[0x08]);
3771 val = 0x40 + initsz;
3772 bfd_h_put_32 (abfd, val, &data_buffer[0x2C]);
3773 memcpy (&data_buffer[val], fini, finisz);
3774 }
3775
3776 val = 0x0C;
3777 bfd_h_put_32 (abfd, val, &data_buffer[0x0C]);
3778
3779 scnhdr.s_size = data_buffer_size;
3780
3781 /* string table */
3782 string_table_size = 0;
3783 if (initsz > 9)
3784 string_table_size += initsz;
3785 if (finisz > 9)
3786 string_table_size += finisz;
3787 if (string_table_size)
3788 {
3789 string_table_size += 4;
3790 string_table = (bfd_byte *) bfd_zmalloc (string_table_size);
3791 if (string_table == NULL)
3792 return FALSE;
3793
3794 val = string_table_size;
3795 bfd_h_put_32 (abfd, val, &string_table[0]);
3796 st_tmp = string_table + 4;
3797 }
3798
3799 /* symbols
3800 0. .data csect
3801 2. __rtinit
3802 4. init function
3803 6. fini function
3804 8. __rtld */
3805 memset (syment_ext, 0, 10 * SYMESZ);
3806 memset (reloc_ext, 0, 3 * RELSZ);
3807
3808 /* .data csect */
3809 memset (&syment, 0, sizeof (struct internal_syment));
3810 memset (&auxent, 0, sizeof (union internal_auxent));
3811 memcpy (syment._n._n_name, data_name, strlen (data_name));
3812 syment.n_scnum = 1;
3813 syment.n_sclass = C_HIDEXT;
3814 syment.n_numaux = 1;
3815 auxent.x_csect.x_scnlen.l = data_buffer_size;
3816 auxent.x_csect.x_smtyp = 3 << 3 | XTY_SD;
3817 auxent.x_csect.x_smclas = XMC_RW;
3818 bfd_coff_swap_sym_out (abfd, &syment,
3819 &syment_ext[filehdr.f_nsyms * SYMESZ]);
3820 bfd_coff_swap_aux_out (abfd, &auxent, syment.n_type, syment.n_sclass, 0,
3821 syment.n_numaux,
3822 &syment_ext[(filehdr.f_nsyms + 1) * SYMESZ]);
3823 filehdr.f_nsyms += 2;
3824
3825 /* __rtinit */
3826 memset (&syment, 0, sizeof (struct internal_syment));
3827 memset (&auxent, 0, sizeof (union internal_auxent));
3828 memcpy (syment._n._n_name, rtinit_name, strlen (rtinit_name));
3829 syment.n_scnum = 1;
3830 syment.n_sclass = C_EXT;
3831 syment.n_numaux = 1;
3832 auxent.x_csect.x_smtyp = XTY_LD;
3833 auxent.x_csect.x_smclas = XMC_RW;
3834 bfd_coff_swap_sym_out (abfd, &syment,
3835 &syment_ext[filehdr.f_nsyms * SYMESZ]);
3836 bfd_coff_swap_aux_out (abfd, &auxent, syment.n_type, syment.n_sclass, 0,
3837 syment.n_numaux,
3838 &syment_ext[(filehdr.f_nsyms + 1) * SYMESZ]);
3839 filehdr.f_nsyms += 2;
3840
3841 /* init */
3842 if (initsz)
3843 {
3844 memset (&syment, 0, sizeof (struct internal_syment));
3845 memset (&auxent, 0, sizeof (union internal_auxent));
3846
3847 if (initsz > 9)
3848 {
3849 syment._n._n_n._n_offset = st_tmp - string_table;
3850 memcpy (st_tmp, init, initsz);
3851 st_tmp += initsz;
3852 }
3853 else
3854 memcpy (syment._n._n_name, init, initsz - 1);
3855
3856 syment.n_sclass = C_EXT;
3857 syment.n_numaux = 1;
3858 bfd_coff_swap_sym_out (abfd, &syment,
3859 &syment_ext[filehdr.f_nsyms * SYMESZ]);
3860 bfd_coff_swap_aux_out (abfd, &auxent, syment.n_type, syment.n_sclass, 0,
3861 syment.n_numaux,
3862 &syment_ext[(filehdr.f_nsyms + 1) * SYMESZ]);
3863
3864 /* reloc */
3865 memset (&reloc, 0, sizeof (struct internal_reloc));
3866 reloc.r_vaddr = 0x0010;
3867 reloc.r_symndx = filehdr.f_nsyms;
3868 reloc.r_type = R_POS;
3869 reloc.r_size = 31;
3870 bfd_coff_swap_reloc_out (abfd, &reloc, &reloc_ext[0]);
3871
3872 filehdr.f_nsyms += 2;
3873 scnhdr.s_nreloc += 1;
3874 }
3875
3876 /* fini */
3877 if (finisz)
3878 {
3879 memset (&syment, 0, sizeof (struct internal_syment));
3880 memset (&auxent, 0, sizeof (union internal_auxent));
3881
3882 if (finisz > 9)
3883 {
3884 syment._n._n_n._n_offset = st_tmp - string_table;
3885 memcpy (st_tmp, fini, finisz);
3886 st_tmp += finisz;
3887 }
3888 else
3889 memcpy (syment._n._n_name, fini, finisz - 1);
3890
3891 syment.n_sclass = C_EXT;
3892 syment.n_numaux = 1;
3893 bfd_coff_swap_sym_out (abfd, &syment,
3894 &syment_ext[filehdr.f_nsyms * SYMESZ]);
3895 bfd_coff_swap_aux_out (abfd, &auxent, syment.n_type, syment.n_sclass, 0,
3896 syment.n_numaux,
3897 &syment_ext[(filehdr.f_nsyms + 1) * SYMESZ]);
3898
3899 /* reloc */
3900 memset (&reloc, 0, sizeof (struct internal_reloc));
3901 reloc.r_vaddr = 0x0028;
3902 reloc.r_symndx = filehdr.f_nsyms;
3903 reloc.r_type = R_POS;
3904 reloc.r_size = 31;
3905 bfd_coff_swap_reloc_out (abfd, &reloc,
3906 &reloc_ext[scnhdr.s_nreloc * RELSZ]);
3907
3908 filehdr.f_nsyms += 2;
3909 scnhdr.s_nreloc += 1;
3910 }
3911
3912 if (rtld)
3913 {
3914 memset (&syment, 0, sizeof (struct internal_syment));
3915 memset (&auxent, 0, sizeof (union internal_auxent));
3916 memcpy (syment._n._n_name, rtld_name, strlen (rtld_name));
3917 syment.n_sclass = C_EXT;
3918 syment.n_numaux = 1;
3919 bfd_coff_swap_sym_out (abfd, &syment,
3920 &syment_ext[filehdr.f_nsyms * SYMESZ]);
3921 bfd_coff_swap_aux_out (abfd, &auxent, syment.n_type, syment.n_sclass, 0,
3922 syment.n_numaux,
3923 &syment_ext[(filehdr.f_nsyms + 1) * SYMESZ]);
3924
3925 /* reloc */
3926 memset (&reloc, 0, sizeof (struct internal_reloc));
3927 reloc.r_vaddr = 0x0000;
3928 reloc.r_symndx = filehdr.f_nsyms;
3929 reloc.r_type = R_POS;
3930 reloc.r_size = 31;
3931 bfd_coff_swap_reloc_out (abfd, &reloc,
3932 &reloc_ext[scnhdr.s_nreloc * RELSZ]);
3933
3934 filehdr.f_nsyms += 2;
3935 scnhdr.s_nreloc += 1;
3936 }
3937
3938 scnhdr.s_relptr = scnhdr.s_scnptr + data_buffer_size;
3939 filehdr.f_symptr = scnhdr.s_relptr + scnhdr.s_nreloc * RELSZ;
3940
3941 bfd_coff_swap_filehdr_out (abfd, &filehdr, filehdr_ext);
3942 bfd_bwrite (filehdr_ext, FILHSZ, abfd);
3943 bfd_coff_swap_scnhdr_out (abfd, &scnhdr, scnhdr_ext);
3944 bfd_bwrite (scnhdr_ext, SCNHSZ, abfd);
3945 bfd_bwrite (data_buffer, data_buffer_size, abfd);
3946 bfd_bwrite (reloc_ext, scnhdr.s_nreloc * RELSZ, abfd);
3947 bfd_bwrite (syment_ext, filehdr.f_nsyms * SYMESZ, abfd);
3948 bfd_bwrite (string_table, string_table_size, abfd);
3949
3950 free (data_buffer);
3951 data_buffer = NULL;
3952
3953 return TRUE;
3954 }
3955
3956
3957 static reloc_howto_type xcoff_dynamic_reloc =
3958 HOWTO (0, /* type */
3959 0, /* rightshift */
3960 2, /* size (0 = byte, 1 = short, 2 = long) */
3961 32, /* bitsize */
3962 FALSE, /* pc_relative */
3963 0, /* bitpos */
3964 complain_overflow_bitfield, /* complain_on_overflow */
3965 0, /* special_function */
3966 "R_POS", /* name */
3967 TRUE, /* partial_inplace */
3968 0xffffffff, /* src_mask */
3969 0xffffffff, /* dst_mask */
3970 FALSE); /* pcrel_offset */
3971
3972 /* glink
3973
3974 The first word of global linkage code must be modified by filling in
3975 the correct TOC offset. */
3976
3977 static const unsigned long xcoff_glink_code[9] =
3978 {
3979 0x81820000, /* lwz r12,0(r2) */
3980 0x90410014, /* stw r2,20(r1) */
3981 0x800c0000, /* lwz r0,0(r12) */
3982 0x804c0004, /* lwz r2,4(r12) */
3983 0x7c0903a6, /* mtctr r0 */
3984 0x4e800420, /* bctr */
3985 0x00000000, /* start of traceback table */
3986 0x000c8000, /* traceback table */
3987 0x00000000, /* traceback table */
3988 };
3989
3990 /* Table to convert DWARF flags to section names. */
3991
3992 const struct xcoff_dwsect_name xcoff_dwsect_names[] = {
3993 { SSUBTYP_DWINFO, ".dwinfo", TRUE },
3994 { SSUBTYP_DWLINE, ".dwline", TRUE },
3995 { SSUBTYP_DWPBNMS, ".dwpbnms", TRUE },
3996 { SSUBTYP_DWPBTYP, ".dwpbtyp", TRUE },
3997 { SSUBTYP_DWARNGE, ".dwarnge", TRUE },
3998 { SSUBTYP_DWABREV, ".dwabrev", FALSE },
3999 { SSUBTYP_DWSTR, ".dwstr", TRUE },
4000 { SSUBTYP_DWRNGES, ".dwrnges", TRUE }
4001 };
4002
4003 /* For generic entry points. */
4004 #define _bfd_xcoff_close_and_cleanup _bfd_archive_close_and_cleanup
4005 #define _bfd_xcoff_bfd_free_cached_info _bfd_bool_bfd_true
4006 #define _bfd_xcoff_new_section_hook coff_new_section_hook
4007 #define _bfd_xcoff_get_section_contents _bfd_generic_get_section_contents
4008 #define _bfd_xcoff_get_section_contents_in_window \
4009 _bfd_generic_get_section_contents_in_window
4010
4011 /* For copy private data entry points. */
4012 #define _bfd_xcoff_bfd_copy_private_bfd_data \
4013 _bfd_xcoff_copy_private_bfd_data
4014 #define _bfd_xcoff_bfd_merge_private_bfd_data \
4015 _bfd_generic_bfd_merge_private_bfd_data
4016 #define _bfd_xcoff_bfd_copy_private_section_data \
4017 _bfd_generic_bfd_copy_private_section_data
4018 #define _bfd_xcoff_bfd_copy_private_symbol_data \
4019 _bfd_generic_bfd_copy_private_symbol_data
4020 #define _bfd_xcoff_bfd_copy_private_header_data \
4021 _bfd_generic_bfd_copy_private_header_data
4022 #define _bfd_xcoff_bfd_set_private_flags \
4023 _bfd_generic_bfd_set_private_flags
4024 #define _bfd_xcoff_bfd_print_private_bfd_data \
4025 _bfd_generic_bfd_print_private_bfd_data
4026
4027 /* For archive entry points. */
4028 #define _bfd_xcoff_slurp_extended_name_table \
4029 _bfd_noarchive_slurp_extended_name_table
4030 #define _bfd_xcoff_construct_extended_name_table \
4031 _bfd_noarchive_construct_extended_name_table
4032 #define _bfd_xcoff_truncate_arname bfd_dont_truncate_arname
4033 #define _bfd_xcoff_write_ar_hdr _bfd_generic_write_ar_hdr
4034 #define _bfd_xcoff_get_elt_at_index _bfd_generic_get_elt_at_index
4035 #define _bfd_xcoff_generic_stat_arch_elt _bfd_xcoff_stat_arch_elt
4036 #define _bfd_xcoff_update_armap_timestamp _bfd_bool_bfd_true
4037
4038 /* For symbols entry points. */
4039 #define _bfd_xcoff_get_symtab_upper_bound coff_get_symtab_upper_bound
4040 #define _bfd_xcoff_canonicalize_symtab coff_canonicalize_symtab
4041 #define _bfd_xcoff_make_empty_symbol coff_make_empty_symbol
4042 #define _bfd_xcoff_print_symbol coff_print_symbol
4043 #define _bfd_xcoff_get_symbol_info coff_get_symbol_info
4044 #define _bfd_xcoff_get_symbol_version_string \
4045 _bfd_nosymbols_get_symbol_version_string
4046 #define _bfd_xcoff_bfd_is_local_label_name _bfd_xcoff_is_local_label_name
4047 #define _bfd_xcoff_bfd_is_target_special_symbol \
4048 coff_bfd_is_target_special_symbol
4049 #define _bfd_xcoff_get_lineno coff_get_lineno
4050 #define _bfd_xcoff_find_nearest_line coff_find_nearest_line
4051 #define _bfd_xcoff_find_line coff_find_line
4052 #define _bfd_xcoff_find_inliner_info coff_find_inliner_info
4053 #define _bfd_xcoff_bfd_make_debug_symbol coff_bfd_make_debug_symbol
4054 #define _bfd_xcoff_read_minisymbols _bfd_generic_read_minisymbols
4055 #define _bfd_xcoff_minisymbol_to_symbol _bfd_generic_minisymbol_to_symbol
4056
4057 /* For reloc entry points. */
4058 #define _bfd_xcoff_get_reloc_upper_bound coff_get_reloc_upper_bound
4059 #define _bfd_xcoff_canonicalize_reloc coff_canonicalize_reloc
4060 #define _bfd_xcoff_set_reloc _bfd_generic_set_reloc
4061 #define _bfd_xcoff_bfd_reloc_type_lookup _bfd_xcoff_reloc_type_lookup
4062 #define _bfd_xcoff_bfd_reloc_name_lookup _bfd_xcoff_reloc_name_lookup
4063
4064 /* For link entry points. */
4065 #define _bfd_xcoff_bfd_get_relocated_section_contents \
4066 bfd_generic_get_relocated_section_contents
4067 #define _bfd_xcoff_bfd_relax_section bfd_generic_relax_section
4068 #define _bfd_xcoff_bfd_link_hash_table_free _bfd_generic_link_hash_table_free
4069 #define _bfd_xcoff_bfd_link_just_syms _bfd_generic_link_just_syms
4070 #define _bfd_xcoff_bfd_copy_link_hash_symbol_type \
4071 _bfd_generic_copy_link_hash_symbol_type
4072 #define _bfd_xcoff_bfd_link_split_section _bfd_generic_link_split_section
4073 #define _bfd_xcoff_bfd_gc_sections bfd_generic_gc_sections
4074 #define _bfd_xcoff_bfd_lookup_section_flags bfd_generic_lookup_section_flags
4075 #define _bfd_xcoff_bfd_merge_sections bfd_generic_merge_sections
4076 #define _bfd_xcoff_bfd_is_group_section bfd_generic_is_group_section
4077 #define _bfd_xcoff_bfd_group_name bfd_generic_group_name
4078 #define _bfd_xcoff_bfd_discard_group bfd_generic_discard_group
4079 #define _bfd_xcoff_section_already_linked _bfd_generic_section_already_linked
4080 #define _bfd_xcoff_bfd_define_common_symbol _bfd_xcoff_define_common_symbol
4081 #define _bfd_xcoff_bfd_link_hide_symbol _bfd_generic_link_hide_symbol
4082 #define _bfd_xcoff_bfd_define_start_stop bfd_generic_define_start_stop
4083 #define _bfd_xcoff_bfd_link_check_relocs _bfd_generic_link_check_relocs
4084
4085 /* For dynamic symbols and relocs entry points. */
4086 #define _bfd_xcoff_get_synthetic_symtab _bfd_nodynamic_get_synthetic_symtab
4087
4088 static const struct xcoff_backend_data_rec bfd_xcoff_backend_data =
4089 {
4090 { /* COFF backend, defined in libcoff.h. */
4091 _bfd_xcoff_swap_aux_in,
4092 _bfd_xcoff_swap_sym_in,
4093 coff_swap_lineno_in,
4094 _bfd_xcoff_swap_aux_out,
4095 _bfd_xcoff_swap_sym_out,
4096 coff_swap_lineno_out,
4097 xcoff_swap_reloc_out,
4098 coff_swap_filehdr_out,
4099 coff_swap_aouthdr_out,
4100 coff_swap_scnhdr_out,
4101 FILHSZ,
4102 AOUTSZ,
4103 SCNHSZ,
4104 SYMESZ,
4105 AUXESZ,
4106 RELSZ,
4107 LINESZ,
4108 FILNMLEN,
4109 TRUE, /* _bfd_coff_long_filenames */
4110 XCOFF_NO_LONG_SECTION_NAMES, /* _bfd_coff_long_section_names */
4111 3, /* _bfd_coff_default_section_alignment_power */
4112 FALSE, /* _bfd_coff_force_symnames_in_strings */
4113 2, /* _bfd_coff_debug_string_prefix_length */
4114 32768, /* _bfd_coff_max_nscns */
4115 coff_swap_filehdr_in,
4116 coff_swap_aouthdr_in,
4117 coff_swap_scnhdr_in,
4118 xcoff_swap_reloc_in,
4119 coff_bad_format_hook,
4120 coff_set_arch_mach_hook,
4121 coff_mkobject_hook,
4122 styp_to_sec_flags,
4123 coff_set_alignment_hook,
4124 coff_slurp_symbol_table,
4125 symname_in_debug_hook,
4126 coff_pointerize_aux_hook,
4127 coff_print_aux,
4128 dummy_reloc16_extra_cases,
4129 dummy_reloc16_estimate,
4130 NULL, /* bfd_coff_sym_is_global */
4131 coff_compute_section_file_positions,
4132 NULL, /* _bfd_coff_start_final_link */
4133 xcoff_ppc_relocate_section,
4134 coff_rtype_to_howto,
4135 NULL, /* _bfd_coff_adjust_symndx */
4136 _bfd_generic_link_add_one_symbol,
4137 coff_link_output_has_begun,
4138 coff_final_link_postscript,
4139 NULL /* print_pdata. */
4140 },
4141
4142 0x01DF, /* magic number */
4143 bfd_arch_rs6000,
4144 bfd_mach_rs6k,
4145
4146 /* Function pointers to xcoff specific swap routines. */
4147 xcoff_swap_ldhdr_in,
4148 xcoff_swap_ldhdr_out,
4149 xcoff_swap_ldsym_in,
4150 xcoff_swap_ldsym_out,
4151 xcoff_swap_ldrel_in,
4152 xcoff_swap_ldrel_out,
4153
4154 /* Sizes. */
4155 LDHDRSZ,
4156 LDSYMSZ,
4157 LDRELSZ,
4158 12, /* _xcoff_function_descriptor_size */
4159 SMALL_AOUTSZ,
4160
4161 /* Versions. */
4162 1, /* _xcoff_ldhdr_version */
4163
4164 _bfd_xcoff_put_symbol_name,
4165 _bfd_xcoff_put_ldsymbol_name,
4166 &xcoff_dynamic_reloc,
4167 xcoff_create_csect_from_smclas,
4168
4169 /* Lineno and reloc count overflow. */
4170 xcoff_is_lineno_count_overflow,
4171 xcoff_is_reloc_count_overflow,
4172
4173 xcoff_loader_symbol_offset,
4174 xcoff_loader_reloc_offset,
4175
4176 /* glink. */
4177 &xcoff_glink_code[0],
4178 36, /* _xcoff_glink_size */
4179
4180 /* rtinit */
4181 64, /* _xcoff_rtinit_size */
4182 xcoff_generate_rtinit,
4183 };
4184
4185 /* The transfer vector that leads the outside world to all of the above. */
4186 const bfd_target rs6000_xcoff_vec =
4187 {
4188 "aixcoff-rs6000",
4189 bfd_target_xcoff_flavour,
4190 BFD_ENDIAN_BIG, /* data byte order is big */
4191 BFD_ENDIAN_BIG, /* header byte order is big */
4192
4193 (HAS_RELOC | EXEC_P | HAS_LINENO | HAS_DEBUG | DYNAMIC
4194 | HAS_SYMS | HAS_LOCALS | WP_TEXT),
4195
4196 SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_RELOC | SEC_CODE | SEC_DATA,
4197 0, /* leading char */
4198 '/', /* ar_pad_char */
4199 15, /* ar_max_namelen */
4200 0, /* match priority. */
4201 TARGET_KEEP_UNUSED_SECTION_SYMBOLS, /* keep unused section symbols. */
4202
4203 /* data */
4204 bfd_getb64,
4205 bfd_getb_signed_64,
4206 bfd_putb64,
4207 bfd_getb32,
4208 bfd_getb_signed_32,
4209 bfd_putb32,
4210 bfd_getb16,
4211 bfd_getb_signed_16,
4212 bfd_putb16,
4213
4214 /* hdrs */
4215 bfd_getb64,
4216 bfd_getb_signed_64,
4217 bfd_putb64,
4218 bfd_getb32,
4219 bfd_getb_signed_32,
4220 bfd_putb32,
4221 bfd_getb16,
4222 bfd_getb_signed_16,
4223 bfd_putb16,
4224
4225 { /* bfd_check_format */
4226 _bfd_dummy_target,
4227 coff_object_p,
4228 _bfd_xcoff_archive_p,
4229 CORE_FILE_P
4230 },
4231
4232 { /* bfd_set_format */
4233 _bfd_bool_bfd_false_error,
4234 coff_mkobject,
4235 _bfd_generic_mkarchive,
4236 _bfd_bool_bfd_false_error
4237 },
4238
4239 {/* bfd_write_contents */
4240 _bfd_bool_bfd_false_error,
4241 coff_write_object_contents,
4242 _bfd_xcoff_write_archive_contents,
4243 _bfd_bool_bfd_false_error
4244 },
4245
4246 BFD_JUMP_TABLE_GENERIC (_bfd_xcoff),
4247 BFD_JUMP_TABLE_COPY (_bfd_xcoff),
4248 BFD_JUMP_TABLE_CORE (coff),
4249 BFD_JUMP_TABLE_ARCHIVE (_bfd_xcoff),
4250 BFD_JUMP_TABLE_SYMBOLS (_bfd_xcoff),
4251 BFD_JUMP_TABLE_RELOCS (_bfd_xcoff),
4252 BFD_JUMP_TABLE_WRITE (coff),
4253 BFD_JUMP_TABLE_LINK (_bfd_xcoff),
4254 BFD_JUMP_TABLE_DYNAMIC (_bfd_xcoff),
4255
4256 /* Opposite endian version, none exists */
4257 NULL,
4258
4259 & bfd_xcoff_backend_data,
4260 };
4261
4262 /* xcoff-powermac target
4263 Old target.
4264 Only difference between this target and the rs6000 target is the
4265 the default architecture and machine type used in coffcode.h
4266
4267 PowerPC Macs use the same magic numbers as RS/6000
4268 (because that's how they were bootstrapped originally),
4269 but they are always PowerPC architecture. */
4270 static const struct xcoff_backend_data_rec bfd_pmac_xcoff_backend_data =
4271 {
4272 { /* COFF backend, defined in libcoff.h. */
4273 _bfd_xcoff_swap_aux_in,
4274 _bfd_xcoff_swap_sym_in,
4275 coff_swap_lineno_in,
4276 _bfd_xcoff_swap_aux_out,
4277 _bfd_xcoff_swap_sym_out,
4278 coff_swap_lineno_out,
4279 xcoff_swap_reloc_out,
4280 coff_swap_filehdr_out,
4281 coff_swap_aouthdr_out,
4282 coff_swap_scnhdr_out,
4283 FILHSZ,
4284 AOUTSZ,
4285 SCNHSZ,
4286 SYMESZ,
4287 AUXESZ,
4288 RELSZ,
4289 LINESZ,
4290 FILNMLEN,
4291 TRUE, /* _bfd_coff_long_filenames */
4292 XCOFF_NO_LONG_SECTION_NAMES, /* _bfd_coff_long_section_names */
4293 3, /* _bfd_coff_default_section_alignment_power */
4294 FALSE, /* _bfd_coff_force_symnames_in_strings */
4295 2, /* _bfd_coff_debug_string_prefix_length */
4296 32768, /* _bfd_coff_max_nscns */
4297 coff_swap_filehdr_in,
4298 coff_swap_aouthdr_in,
4299 coff_swap_scnhdr_in,
4300 xcoff_swap_reloc_in,
4301 coff_bad_format_hook,
4302 coff_set_arch_mach_hook,
4303 coff_mkobject_hook,
4304 styp_to_sec_flags,
4305 coff_set_alignment_hook,
4306 coff_slurp_symbol_table,
4307 symname_in_debug_hook,
4308 coff_pointerize_aux_hook,
4309 coff_print_aux,
4310 dummy_reloc16_extra_cases,
4311 dummy_reloc16_estimate,
4312 NULL, /* bfd_coff_sym_is_global */
4313 coff_compute_section_file_positions,
4314 NULL, /* _bfd_coff_start_final_link */
4315 xcoff_ppc_relocate_section,
4316 coff_rtype_to_howto,
4317 NULL, /* _bfd_coff_adjust_symndx */
4318 _bfd_generic_link_add_one_symbol,
4319 coff_link_output_has_begun,
4320 coff_final_link_postscript,
4321 NULL /* print_pdata. */
4322 },
4323
4324 0x01DF, /* magic number */
4325 bfd_arch_powerpc,
4326 bfd_mach_ppc,
4327
4328 /* Function pointers to xcoff specific swap routines. */
4329 xcoff_swap_ldhdr_in,
4330 xcoff_swap_ldhdr_out,
4331 xcoff_swap_ldsym_in,
4332 xcoff_swap_ldsym_out,
4333 xcoff_swap_ldrel_in,
4334 xcoff_swap_ldrel_out,
4335
4336 /* Sizes. */
4337 LDHDRSZ,
4338 LDSYMSZ,
4339 LDRELSZ,
4340 12, /* _xcoff_function_descriptor_size */
4341 SMALL_AOUTSZ,
4342
4343 /* Versions. */
4344 1, /* _xcoff_ldhdr_version */
4345
4346 _bfd_xcoff_put_symbol_name,
4347 _bfd_xcoff_put_ldsymbol_name,
4348 &xcoff_dynamic_reloc,
4349 xcoff_create_csect_from_smclas,
4350
4351 /* Lineno and reloc count overflow. */
4352 xcoff_is_lineno_count_overflow,
4353 xcoff_is_reloc_count_overflow,
4354
4355 xcoff_loader_symbol_offset,
4356 xcoff_loader_reloc_offset,
4357
4358 /* glink. */
4359 &xcoff_glink_code[0],
4360 36, /* _xcoff_glink_size */
4361
4362 /* rtinit */
4363 0, /* _xcoff_rtinit_size */
4364 xcoff_generate_rtinit,
4365 };
4366
4367 /* The transfer vector that leads the outside world to all of the above. */
4368 const bfd_target powerpc_xcoff_vec =
4369 {
4370 "xcoff-powermac",
4371 bfd_target_xcoff_flavour,
4372 BFD_ENDIAN_BIG, /* data byte order is big */
4373 BFD_ENDIAN_BIG, /* header byte order is big */
4374
4375 (HAS_RELOC | EXEC_P | HAS_LINENO | HAS_DEBUG | DYNAMIC
4376 | HAS_SYMS | HAS_LOCALS | WP_TEXT),
4377
4378 SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_RELOC | SEC_CODE | SEC_DATA,
4379 0, /* leading char */
4380 '/', /* ar_pad_char */
4381 15, /* ar_max_namelen */
4382 0, /* match priority. */
4383 TARGET_KEEP_UNUSED_SECTION_SYMBOLS, /* keep unused section symbols. */
4384
4385 /* data */
4386 bfd_getb64,
4387 bfd_getb_signed_64,
4388 bfd_putb64,
4389 bfd_getb32,
4390 bfd_getb_signed_32,
4391 bfd_putb32,
4392 bfd_getb16,
4393 bfd_getb_signed_16,
4394 bfd_putb16,
4395
4396 /* hdrs */
4397 bfd_getb64,
4398 bfd_getb_signed_64,
4399 bfd_putb64,
4400 bfd_getb32,
4401 bfd_getb_signed_32,
4402 bfd_putb32,
4403 bfd_getb16,
4404 bfd_getb_signed_16,
4405 bfd_putb16,
4406
4407 { /* bfd_check_format */
4408 _bfd_dummy_target,
4409 coff_object_p,
4410 _bfd_xcoff_archive_p,
4411 CORE_FILE_P
4412 },
4413
4414 { /* bfd_set_format */
4415 _bfd_bool_bfd_false_error,
4416 coff_mkobject,
4417 _bfd_generic_mkarchive,
4418 _bfd_bool_bfd_false_error
4419 },
4420
4421 {/* bfd_write_contents */
4422 _bfd_bool_bfd_false_error,
4423 coff_write_object_contents,
4424 _bfd_xcoff_write_archive_contents,
4425 _bfd_bool_bfd_false_error
4426 },
4427
4428 BFD_JUMP_TABLE_GENERIC (_bfd_xcoff),
4429 BFD_JUMP_TABLE_COPY (_bfd_xcoff),
4430 BFD_JUMP_TABLE_CORE (coff),
4431 BFD_JUMP_TABLE_ARCHIVE (_bfd_xcoff),
4432 BFD_JUMP_TABLE_SYMBOLS (_bfd_xcoff),
4433 BFD_JUMP_TABLE_RELOCS (_bfd_xcoff),
4434 BFD_JUMP_TABLE_WRITE (coff),
4435 BFD_JUMP_TABLE_LINK (_bfd_xcoff),
4436 BFD_JUMP_TABLE_DYNAMIC (_bfd_xcoff),
4437
4438 /* Opposite endian version, none exists */
4439 NULL,
4440
4441 & bfd_pmac_xcoff_backend_data,
4442 };
This page took 0.1208 seconds and 4 git commands to generate.