c13e742c0da2a2d55a5979f820d7695a901eb81a
[deliverable/binutils-gdb.git] / bfd / pdp11.c
1 /* BFD back-end for PDP-11 a.out binaries.
2 Copyright (C) 2001-2020 Free Software Foundation, Inc.
3
4 This file is part of BFD, the Binary File Descriptor library.
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
19 MA 02110-1301, USA. */
20
21
22 /* BFD backend for PDP-11, running 2.11BSD in particular.
23
24 This file was hacked up by looking hard at the existing vaxnetbsd
25 back end and the header files in 2.11BSD.
26
27 TODO
28 * support for V7 file formats
29 * support for overlay object files (see 2.11 a.out(5))
30 * support for old and very old archives
31 (see 2.11 ar(5), historical section)
32
33 Search for TODO to find other areas needing more work. */
34
35 #define BYTES_IN_WORD 2
36 #define BYTES_IN_LONG 4
37 #define ARCH_SIZE 16
38 #undef TARGET_IS_BIG_ENDIAN_P
39
40 #define TARGET_PAGE_SIZE 8192
41 #define SEGMENT__SIZE TARGET_PAGE_SIZE
42
43 #define DEFAULT_ARCH bfd_arch_pdp11
44 #define DEFAULT_MID M_PDP11
45
46 /* Do not "beautify" the CONCAT* macro args. Traditional C will not
47 remove whitespace added here, and thus will fail to concatenate
48 the tokens. */
49 #define MY(OP) CONCAT2 (pdp11_aout_,OP)
50
51 /* This needs to start with a.out so GDB knows it is an a.out variant. */
52 #define TARGETNAME "a.out-pdp11"
53
54 /* This is the normal load address for executables. */
55 #define TEXT_START_ADDR 0
56
57 /* The header is not included in the text segment. */
58 #define N_HEADER_IN_TEXT(x) 0
59
60 /* There is no flags field. */
61 #define N_FLAGS(execp) 0
62
63 #define N_SET_FLAGS(execp, flags) do { } while (0)
64 #define N_BADMAG(x) (N_MAGIC(x) != OMAGIC \
65 && N_MAGIC(x) != NMAGIC \
66 && N_MAGIC(x) != ZMAGIC)
67
68 #include "sysdep.h"
69 #include <limits.h>
70 #include "bfd.h"
71
72 #define external_exec pdp11_external_exec
73 struct pdp11_external_exec
74 {
75 bfd_byte e_info[2]; /* Magic number. */
76 bfd_byte e_text[2]; /* Length of text section in bytes. */
77 bfd_byte e_data[2]; /* Length of data section in bytes. */
78 bfd_byte e_bss[2]; /* Length of bss area in bytes. */
79 bfd_byte e_syms[2]; /* Length of symbol table in bytes. */
80 bfd_byte e_entry[2]; /* Start address. */
81 bfd_byte e_unused[2]; /* Not used. */
82 bfd_byte e_flag[2]; /* Relocation info stripped. */
83 bfd_byte e_relocatable; /* Ugly hack. */
84 };
85
86 #define EXEC_BYTES_SIZE (8 * 2)
87
88 #define A_MAGIC1 OMAGIC
89 #define OMAGIC 0407 /* ...object file or impure executable. */
90 #define A_MAGIC2 NMAGIC
91 #define NMAGIC 0410 /* Pure executable. */
92 #define ZMAGIC 0413 /* Demand-paged executable. */
93 #define A_MAGIC3 0411 /* Separated I&D. */
94 #define A_MAGIC4 0405 /* Overlay. */
95 #define A_MAGIC5 0430 /* Auto-overlay (nonseparate). */
96 #define A_MAGIC6 0431 /* Auto-overlay (separate). */
97 #define QMAGIC 0
98 #define BMAGIC 0
99
100 #define A_FLAG_RELOC_STRIPPED 0x0001
101
102 #define external_nlist pdp11_external_nlist
103 struct pdp11_external_nlist
104 {
105 bfd_byte e_unused[2]; /* Unused. */
106 bfd_byte e_strx[2]; /* Index into string table of name. */
107 bfd_byte e_type[1]; /* Type of symbol. */
108 bfd_byte e_ovly[1]; /* Overlay number. */
109 bfd_byte e_value[2]; /* Value of symbol. */
110 };
111
112 #define EXTERNAL_NLIST_SIZE 8
113
114 #define N_TXTOFF(x) (EXEC_BYTES_SIZE)
115 #define N_DATOFF(x) (N_TXTOFF(x) + (x)->a_text)
116 #define N_TRELOFF(x) (N_DATOFF(x) + (x)->a_data)
117 #define N_DRELOFF(x) (N_TRELOFF(x) + (x)->a_trsize)
118 #define N_SYMOFF(x) (N_DRELOFF(x) + (x)->a_drsize)
119 #define N_STROFF(x) (N_SYMOFF(x) + (x)->a_syms)
120
121 #define WRITE_HEADERS(abfd, execp) pdp11_aout_write_headers (abfd, execp)
122
123 #include "libbfd.h"
124 #include "libaout.h"
125
126 #define SWAP_MAGIC(ext) bfd_getl16 (ext)
127
128 #define MY_entry_is_text_address 1
129
130 #define MY_write_object_contents MY(write_object_contents)
131 static bfd_boolean MY(write_object_contents) (bfd *);
132 #define MY_text_includes_header 1
133
134 #define MY_BFD_TARGET
135
136 #include "aout-target.h"
137
138 /* Start of modified aoutx.h. */
139 #define KEEPIT udata.i
140
141 #include <string.h> /* For strchr and friends. */
142 #include "bfd.h"
143 #include "sysdep.h"
144 #include "safe-ctype.h"
145 #include "bfdlink.h"
146
147 #include "libaout.h"
148 #include "aout/aout64.h"
149 #include "aout/stab_gnu.h"
150 #include "aout/ar.h"
151
152 #undef N_TYPE
153 #undef N_UNDF
154 #undef N_ABS
155 #undef N_TEXT
156 #undef N_DATA
157 #undef N_BSS
158 #undef N_REG
159 #undef N_FN
160 #undef N_EXT
161 #define N_TYPE 0x1f /* Type mask. */
162 #define N_UNDF 0x00 /* Undefined. */
163 #define N_ABS 0x01 /* Absolute. */
164 #define N_TEXT 0x02 /* Text segment. */
165 #define N_DATA 0x03 /* Data segment. */
166 #define N_BSS 0x04 /* Bss segment. */
167 #define N_REG 0x14 /* Register symbol. */
168 #define N_FN 0x1f /* File name. */
169 #define N_EXT 0x20 /* External flag. */
170
171 #define RELOC_SIZE 2
172
173 #define RELFLG 0x0001 /* PC-relative flag. */
174 #define RTYPE 0x000e /* Type mask. */
175 #define RIDXMASK 0xfff0 /* Index mask. */
176
177 #define RABS 0x00 /* Absolute. */
178 #define RTEXT 0x02 /* Text. */
179 #define RDATA 0x04 /* Data. */
180 #define RBSS 0x06 /* Bss. */
181 #define REXT 0x08 /* External. */
182
183 #define RINDEX(x) (((x) & 0xfff0) >> 4)
184
185 #ifndef MY_final_link_relocate
186 #define MY_final_link_relocate _bfd_final_link_relocate
187 #endif
188
189 #ifndef MY_relocate_contents
190 #define MY_relocate_contents _bfd_relocate_contents
191 #endif
192
193 /* A hash table used for header files with N_BINCL entries. */
194
195 struct aout_link_includes_table
196 {
197 struct bfd_hash_table root;
198 };
199
200 /* A linked list of totals that we have found for a particular header
201 file. */
202
203 struct aout_link_includes_totals
204 {
205 struct aout_link_includes_totals *next;
206 bfd_vma total;
207 };
208
209 /* An entry in the header file hash table. */
210
211 struct aout_link_includes_entry
212 {
213 struct bfd_hash_entry root;
214 /* List of totals we have found for this file. */
215 struct aout_link_includes_totals *totals;
216 };
217
218 /* During the final link step we need to pass around a bunch of
219 information, so we do it in an instance of this structure. */
220
221 struct aout_final_link_info
222 {
223 /* General link information. */
224 struct bfd_link_info *info;
225 /* Output bfd. */
226 bfd *output_bfd;
227 /* Reloc file positions. */
228 file_ptr treloff, dreloff;
229 /* File position of symbols. */
230 file_ptr symoff;
231 /* String table. */
232 struct bfd_strtab_hash *strtab;
233 /* Header file hash table. */
234 struct aout_link_includes_table includes;
235 /* A buffer large enough to hold the contents of any section. */
236 bfd_byte *contents;
237 /* A buffer large enough to hold the relocs of any section. */
238 void * relocs;
239 /* A buffer large enough to hold the symbol map of any input BFD. */
240 int *symbol_map;
241 /* A buffer large enough to hold output symbols of any input BFD. */
242 struct external_nlist *output_syms;
243 };
244
245 reloc_howto_type howto_table_pdp11[] =
246 {
247 /* type rs size bsz pcrel bitpos ovrf sf name part_inpl readmask setmask pcdone */
248 HOWTO( 0, 0, 1, 16, FALSE, 0, complain_overflow_signed,0,"16", TRUE, 0x0000ffff,0x0000ffff, FALSE),
249 HOWTO( 1, 0, 1, 16, TRUE, 0, complain_overflow_signed,0,"DISP16", TRUE, 0x0000ffff,0x0000ffff, FALSE),
250 };
251
252 #define TABLE_SIZE(TABLE) (sizeof(TABLE)/sizeof(TABLE[0]))
253
254
255 static bfd_boolean aout_link_check_archive_element (bfd *, struct bfd_link_info *, struct bfd_link_hash_entry *, const char *, bfd_boolean *);
256 static bfd_boolean aout_link_add_object_symbols (bfd *, struct bfd_link_info *);
257 static bfd_boolean aout_link_add_symbols (bfd *, struct bfd_link_info *);
258 static bfd_boolean aout_link_write_symbols (struct aout_final_link_info *, bfd *);
259
260
261 reloc_howto_type *
262 NAME (aout, reloc_type_lookup) (bfd * abfd ATTRIBUTE_UNUSED,
263 bfd_reloc_code_real_type code)
264 {
265 switch (code)
266 {
267 case BFD_RELOC_16:
268 return &howto_table_pdp11[0];
269 case BFD_RELOC_16_PCREL:
270 return &howto_table_pdp11[1];
271 default:
272 return NULL;
273 }
274 }
275
276 reloc_howto_type *
277 NAME (aout, reloc_name_lookup) (bfd *abfd ATTRIBUTE_UNUSED,
278 const char *r_name)
279 {
280 unsigned int i;
281
282 for (i = 0;
283 i < sizeof (howto_table_pdp11) / sizeof (howto_table_pdp11[0]);
284 i++)
285 if (howto_table_pdp11[i].name != NULL
286 && strcasecmp (howto_table_pdp11[i].name, r_name) == 0)
287 return &howto_table_pdp11[i];
288
289 return NULL;
290 }
291
292 static int
293 pdp11_aout_write_headers (bfd *abfd, struct internal_exec *execp)
294 {
295 struct external_exec exec_bytes;
296
297 if (adata(abfd).magic == undecided_magic)
298 NAME (aout, adjust_sizes_and_vmas) (abfd);
299
300 execp->a_syms = bfd_get_symcount (abfd) * EXTERNAL_NLIST_SIZE;
301 execp->a_entry = bfd_get_start_address (abfd);
302
303 if (obj_textsec (abfd)->reloc_count > 0
304 || obj_datasec (abfd)->reloc_count > 0)
305 {
306 execp->a_trsize = execp->a_text;
307 execp->a_drsize = execp->a_data;
308 }
309 else
310 {
311 execp->a_trsize = 0;
312 execp->a_drsize = 0;
313 }
314
315 NAME (aout, swap_exec_header_out) (abfd, execp, & exec_bytes);
316
317 if (bfd_seek (abfd, (file_ptr) 0, SEEK_SET) != 0)
318 return FALSE;
319
320 if (bfd_bwrite ((void *) &exec_bytes, (bfd_size_type) EXEC_BYTES_SIZE, abfd)
321 != EXEC_BYTES_SIZE)
322 return FALSE;
323
324 /* Now write out reloc info, followed by syms and strings. */
325 if (bfd_get_outsymbols (abfd) != NULL
326 && bfd_get_symcount (abfd) != 0)
327 {
328 if (bfd_seek (abfd, (file_ptr) (N_SYMOFF (execp)), SEEK_SET) != 0)
329 return FALSE;
330
331 if (! NAME (aout, write_syms) (abfd))
332 return FALSE;
333 }
334
335 if (obj_textsec (abfd)->reloc_count > 0
336 || obj_datasec (abfd)->reloc_count > 0)
337 {
338 if (bfd_seek (abfd, (file_ptr) (N_TRELOFF (execp)), SEEK_SET) != 0
339 || !NAME (aout, squirt_out_relocs) (abfd, obj_textsec (abfd))
340 || bfd_seek (abfd, (file_ptr) (N_DRELOFF (execp)), SEEK_SET) != 0
341 || !NAME (aout, squirt_out_relocs) (abfd, obj_datasec (abfd)))
342 return FALSE;
343 }
344
345 return TRUE;
346 }
347
348 /* Write an object file.
349 Section contents have already been written. We write the
350 file header, symbols, and relocation. */
351
352 static bfd_boolean
353 MY(write_object_contents) (bfd *abfd)
354 {
355 struct internal_exec *execp = exec_hdr (abfd);
356
357 /* We must make certain that the magic number has been set. This
358 will normally have been done by set_section_contents, but only if
359 there actually are some section contents. */
360 if (! abfd->output_has_begun)
361 NAME (aout, adjust_sizes_and_vmas) (abfd);
362
363 obj_reloc_entry_size (abfd) = RELOC_SIZE;
364
365 return WRITE_HEADERS (abfd, execp);
366 }
367
368 /* Swap the information in an executable header @var{raw_bytes} taken
369 from a raw byte stream memory image into the internal exec header
370 structure "execp". */
371
372 #ifndef NAME_swap_exec_header_in
373 void
374 NAME (aout, swap_exec_header_in) (bfd *abfd,
375 struct external_exec *bytes,
376 struct internal_exec *execp)
377 {
378 /* The internal_exec structure has some fields that are unused in this
379 configuration (IE for i960), so ensure that all such uninitialized
380 fields are zero'd out. There are places where two of these structs
381 are memcmp'd, and thus the contents do matter. */
382 memset ((void *) execp, 0, sizeof (struct internal_exec));
383 /* Now fill in fields in the execp, from the bytes in the raw data. */
384 execp->a_info = GET_MAGIC (abfd, bytes->e_info);
385 execp->a_text = GET_WORD (abfd, bytes->e_text);
386 execp->a_data = GET_WORD (abfd, bytes->e_data);
387 execp->a_bss = GET_WORD (abfd, bytes->e_bss);
388 execp->a_syms = GET_WORD (abfd, bytes->e_syms);
389 execp->a_entry = GET_WORD (abfd, bytes->e_entry);
390
391 if (GET_WORD (abfd, bytes->e_flag) & A_FLAG_RELOC_STRIPPED)
392 {
393 execp->a_trsize = 0;
394 execp->a_drsize = 0;
395 }
396 else
397 {
398 execp->a_trsize = execp->a_text;
399 execp->a_drsize = execp->a_data;
400 }
401 }
402 #define NAME_swap_exec_header_in NAME (aout, swap_exec_header_in)
403 #endif
404
405 /* Swap the information in an internal exec header structure
406 "execp" into the buffer "bytes" ready for writing to disk. */
407 void
408 NAME (aout, swap_exec_header_out) (bfd *abfd,
409 struct internal_exec *execp,
410 struct external_exec *bytes)
411 {
412 /* Now fill in fields in the raw data, from the fields in the exec struct. */
413 PUT_MAGIC (abfd, execp->a_info, bytes->e_info);
414 PUT_WORD (abfd, execp->a_text, bytes->e_text);
415 PUT_WORD (abfd, execp->a_data, bytes->e_data);
416 PUT_WORD (abfd, execp->a_bss, bytes->e_bss);
417 PUT_WORD (abfd, execp->a_syms, bytes->e_syms);
418 PUT_WORD (abfd, execp->a_entry, bytes->e_entry);
419 PUT_WORD (abfd, 0, bytes->e_unused);
420
421 if ((execp->a_trsize == 0 || execp->a_text == 0)
422 && (execp->a_drsize == 0 || execp->a_data == 0))
423 PUT_WORD (abfd, A_FLAG_RELOC_STRIPPED, bytes->e_flag);
424 else if (execp->a_trsize == execp->a_text
425 && execp->a_drsize == execp->a_data)
426 PUT_WORD (abfd, 0, bytes->e_flag);
427 else
428 {
429 /* TODO: print a proper warning message. */
430 fprintf (stderr, "BFD:%s:%d: internal error\n", __FILE__, __LINE__);
431 PUT_WORD (abfd, 0, bytes->e_flag);
432 }
433 }
434
435 /* Make all the section for an a.out file. */
436
437 bfd_boolean
438 NAME (aout, make_sections) (bfd *abfd)
439 {
440 if (obj_textsec (abfd) == NULL && bfd_make_section (abfd, ".text") == NULL)
441 return FALSE;
442 if (obj_datasec (abfd) == NULL && bfd_make_section (abfd, ".data") == NULL)
443 return FALSE;
444 if (obj_bsssec (abfd) == NULL && bfd_make_section (abfd, ".bss") == NULL)
445 return FALSE;
446 return TRUE;
447 }
448
449 /* Some a.out variant thinks that the file open in ABFD
450 checking is an a.out file. Do some more checking, and set up
451 for access if it really is. Call back to the calling
452 environment's "finish up" function just before returning, to
453 handle any last-minute setup. */
454
455 bfd_cleanup
456 NAME (aout, some_aout_object_p) (bfd *abfd,
457 struct internal_exec *execp,
458 bfd_cleanup (*callback_to_real_object_p) (bfd *))
459 {
460 struct aout_data_struct *rawptr, *oldrawptr;
461 bfd_cleanup cleanup;
462 size_t amt = sizeof (struct aout_data_struct);
463
464 rawptr = bfd_zalloc (abfd, amt);
465 if (rawptr == NULL)
466 return 0;
467
468 oldrawptr = abfd->tdata.aout_data;
469 abfd->tdata.aout_data = rawptr;
470
471 /* Copy the contents of the old tdata struct. */
472 if (oldrawptr != NULL)
473 *abfd->tdata.aout_data = *oldrawptr;
474
475 abfd->tdata.aout_data->a.hdr = &rawptr->e;
476 *(abfd->tdata.aout_data->a.hdr) = *execp; /* Copy in the internal_exec struct. */
477 execp = abfd->tdata.aout_data->a.hdr;
478
479 /* Set the file flags. */
480 abfd->flags = BFD_NO_FLAGS;
481 if (execp->a_drsize || execp->a_trsize)
482 abfd->flags |= HAS_RELOC;
483 /* Setting of EXEC_P has been deferred to the bottom of this function. */
484 if (execp->a_syms)
485 abfd->flags |= HAS_LINENO | HAS_DEBUG | HAS_SYMS | HAS_LOCALS;
486 if (N_DYNAMIC (execp))
487 abfd->flags |= DYNAMIC;
488
489 if (N_MAGIC (execp) == ZMAGIC)
490 {
491 abfd->flags |= D_PAGED | WP_TEXT;
492 adata (abfd).magic = z_magic;
493 }
494 else if (N_MAGIC (execp) == NMAGIC)
495 {
496 abfd->flags |= WP_TEXT;
497 adata (abfd).magic = n_magic;
498 }
499 else if (N_MAGIC (execp) == OMAGIC)
500 adata (abfd).magic = o_magic;
501 else
502 {
503 /* Should have been checked with N_BADMAG before this routine
504 was called. */
505 abort ();
506 }
507
508 abfd->start_address = execp->a_entry;
509
510 obj_aout_symbols (abfd) = NULL;
511 abfd->symcount = execp->a_syms / sizeof (struct external_nlist);
512
513 /* The default relocation entry size is that of traditional V7 Unix. */
514 obj_reloc_entry_size (abfd) = RELOC_SIZE;
515
516 /* The default symbol entry size is that of traditional Unix. */
517 obj_symbol_entry_size (abfd) = EXTERNAL_NLIST_SIZE;
518
519 #ifdef USE_MMAP
520 bfd_init_window (&obj_aout_sym_window (abfd));
521 bfd_init_window (&obj_aout_string_window (abfd));
522 #endif
523
524 obj_aout_external_syms (abfd) = NULL;
525 obj_aout_external_strings (abfd) = NULL;
526 obj_aout_sym_hashes (abfd) = NULL;
527
528 if (! NAME (aout, make_sections) (abfd))
529 return NULL;
530
531 obj_datasec (abfd)->size = execp->a_data;
532 obj_bsssec (abfd)->size = execp->a_bss;
533
534 obj_textsec (abfd)->flags =
535 (execp->a_trsize != 0
536 ? (SEC_ALLOC | SEC_LOAD | SEC_CODE | SEC_HAS_CONTENTS | SEC_RELOC)
537 : (SEC_ALLOC | SEC_LOAD | SEC_CODE | SEC_HAS_CONTENTS));
538 obj_datasec (abfd)->flags =
539 (execp->a_drsize != 0
540 ? (SEC_ALLOC | SEC_LOAD | SEC_DATA | SEC_HAS_CONTENTS | SEC_RELOC)
541 : (SEC_ALLOC | SEC_LOAD | SEC_DATA | SEC_HAS_CONTENTS));
542 obj_bsssec (abfd)->flags = SEC_ALLOC;
543
544 #ifdef THIS_IS_ONLY_DOCUMENTATION
545 /* The common code can't fill in these things because they depend
546 on either the start address of the text segment, the rounding
547 up of virtual addresses between segments, or the starting file
548 position of the text segment -- all of which varies among different
549 versions of a.out. */
550
551 /* Call back to the format-dependent code to fill in the rest of the
552 fields and do any further cleanup. Things that should be filled
553 in by the callback: */
554 struct exec *execp = exec_hdr (abfd);
555
556 obj_textsec (abfd)->size = N_TXTSIZE (execp);
557 /* Data and bss are already filled in since they're so standard. */
558
559 /* The virtual memory addresses of the sections. */
560 obj_textsec (abfd)->vma = N_TXTADDR (execp);
561 obj_datasec (abfd)->vma = N_DATADDR (execp);
562 obj_bsssec (abfd)->vma = N_BSSADDR (execp);
563
564 /* The file offsets of the sections. */
565 obj_textsec (abfd)->filepos = N_TXTOFF (execp);
566 obj_datasec (abfd)->filepos = N_DATOFF (execp);
567
568 /* The file offsets of the relocation info. */
569 obj_textsec (abfd)->rel_filepos = N_TRELOFF (execp);
570 obj_datasec (abfd)->rel_filepos = N_DRELOFF (execp);
571
572 /* The file offsets of the string table and symbol table. */
573 obj_str_filepos (abfd) = N_STROFF (execp);
574 obj_sym_filepos (abfd) = N_SYMOFF (execp);
575
576 /* Determine the architecture and machine type of the object file. */
577 abfd->obj_arch = bfd_arch_obscure;
578
579 adata(abfd)->page_size = TARGET_PAGE_SIZE;
580 adata(abfd)->segment_size = SEGMENT_SIZE;
581 adata(abfd)->exec_bytes_size = EXEC_BYTES_SIZE;
582
583 return _bfd_no_cleanup;
584
585 /* The architecture is encoded in various ways in various a.out variants,
586 or is not encoded at all in some of them. The relocation size depends
587 on the architecture and the a.out variant. Finally, the return value
588 is the bfd_target vector in use. If an error occurs, return zero and
589 set bfd_error to the appropriate error code.
590
591 Formats such as b.out, which have additional fields in the a.out
592 header, should cope with them in this callback as well. */
593 #endif /* DOCUMENTATION */
594
595 cleanup = (*callback_to_real_object_p)(abfd);
596
597 /* Now that the segment addresses have been worked out, take a better
598 guess at whether the file is executable. If the entry point
599 is within the text segment, assume it is. (This makes files
600 executable even if their entry point address is 0, as long as
601 their text starts at zero.).
602
603 This test had to be changed to deal with systems where the text segment
604 runs at a different location than the default. The problem is that the
605 entry address can appear to be outside the text segment, thus causing an
606 erroneous conclusion that the file isn't executable.
607
608 To fix this, we now accept any non-zero entry point as an indication of
609 executability. This will work most of the time, since only the linker
610 sets the entry point, and that is likely to be non-zero for most systems. */
611
612 if (execp->a_entry != 0
613 || (execp->a_entry >= obj_textsec(abfd)->vma
614 && execp->a_entry < obj_textsec(abfd)->vma + obj_textsec(abfd)->size))
615 abfd->flags |= EXEC_P;
616 #ifdef STAT_FOR_EXEC
617 else
618 {
619 struct stat stat_buf;
620
621 /* The original heuristic doesn't work in some important cases.
622 The a.out file has no information about the text start
623 address. For files (like kernels) linked to non-standard
624 addresses (ld -Ttext nnn) the entry point may not be between
625 the default text start (obj_textsec(abfd)->vma) and
626 (obj_textsec(abfd)->vma) + text size. This is not just a mach
627 issue. Many kernels are loaded at non standard addresses. */
628 if (abfd->iostream != NULL
629 && (abfd->flags & BFD_IN_MEMORY) == 0
630 && (fstat(fileno((FILE *) (abfd->iostream)), &stat_buf) == 0)
631 && ((stat_buf.st_mode & 0111) != 0))
632 abfd->flags |= EXEC_P;
633 }
634 #endif /* STAT_FOR_EXEC */
635
636 if (!cleanup)
637 {
638 free (rawptr);
639 abfd->tdata.aout_data = oldrawptr;
640 }
641 return cleanup;
642 }
643
644 /* Initialize ABFD for use with a.out files. */
645
646 bfd_boolean
647 NAME (aout, mkobject) (bfd *abfd)
648 {
649 struct aout_data_struct *rawptr;
650 size_t amt = sizeof (struct aout_data_struct);
651
652 bfd_set_error (bfd_error_system_call);
653
654 /* Use an intermediate variable for clarity. */
655 rawptr = bfd_zalloc (abfd, amt);
656
657 if (rawptr == NULL)
658 return FALSE;
659
660 abfd->tdata.aout_data = rawptr;
661 exec_hdr (abfd) = &(rawptr->e);
662
663 obj_textsec (abfd) = NULL;
664 obj_datasec (abfd) = NULL;
665 obj_bsssec (abfd) = NULL;
666
667 return TRUE;
668 }
669
670 /* Keep track of machine architecture and machine type for
671 a.out's. Return the <<machine_type>> for a particular
672 architecture and machine, or <<M_UNKNOWN>> if that exact architecture
673 and machine can't be represented in a.out format.
674
675 If the architecture is understood, machine type 0 (default)
676 is always understood. */
677
678 enum machine_type
679 NAME (aout, machine_type) (enum bfd_architecture arch,
680 unsigned long machine,
681 bfd_boolean *unknown)
682 {
683 enum machine_type arch_flags;
684
685 arch_flags = M_UNKNOWN;
686 *unknown = TRUE;
687
688 switch (arch)
689 {
690 case bfd_arch_sparc:
691 if (machine == 0
692 || machine == bfd_mach_sparc
693 || machine == bfd_mach_sparc_sparclite
694 || machine == bfd_mach_sparc_v9)
695 arch_flags = M_SPARC;
696 else if (machine == bfd_mach_sparc_sparclet)
697 arch_flags = M_SPARCLET;
698 break;
699
700 case bfd_arch_i386:
701 if (machine == 0
702 || machine == bfd_mach_i386_i386
703 || machine == bfd_mach_i386_i386_intel_syntax)
704 arch_flags = M_386;
705 break;
706
707 case bfd_arch_arm:
708 if (machine == 0) arch_flags = M_ARM;
709 break;
710
711 case bfd_arch_mips:
712 switch (machine)
713 {
714 case 0:
715 case 2000:
716 case bfd_mach_mips3000:
717 arch_flags = M_MIPS1;
718 break;
719 case bfd_mach_mips4000: /* MIPS3 */
720 case bfd_mach_mips4400:
721 case bfd_mach_mips8000: /* MIPS4 */
722 case bfd_mach_mips6000: /* Real MIPS2: */
723 arch_flags = M_MIPS2;
724 break;
725 default:
726 arch_flags = M_UNKNOWN;
727 break;
728 }
729 break;
730
731 case bfd_arch_ns32k:
732 switch (machine)
733 {
734 case 0: arch_flags = M_NS32532; break;
735 case 32032: arch_flags = M_NS32032; break;
736 case 32532: arch_flags = M_NS32532; break;
737 default: arch_flags = M_UNKNOWN; break;
738 }
739 break;
740
741 case bfd_arch_pdp11:
742 /* TODO: arch_flags = M_PDP11; */
743 *unknown = FALSE;
744 break;
745
746 case bfd_arch_vax:
747 *unknown = FALSE;
748 break;
749
750 default:
751 arch_flags = M_UNKNOWN;
752 }
753
754 if (arch_flags != M_UNKNOWN)
755 *unknown = FALSE;
756
757 return arch_flags;
758 }
759
760 /* Set the architecture and the machine of the ABFD to the
761 values ARCH and MACHINE. Verify that @ABFD's format
762 can support the architecture required. */
763
764 bfd_boolean
765 NAME (aout, set_arch_mach) (bfd *abfd,
766 enum bfd_architecture arch,
767 unsigned long machine)
768 {
769 if (! bfd_default_set_arch_mach (abfd, arch, machine))
770 return FALSE;
771
772 if (arch != bfd_arch_unknown)
773 {
774 bfd_boolean unknown;
775
776 NAME (aout, machine_type) (arch, machine, &unknown);
777 if (unknown)
778 return FALSE;
779 }
780
781 obj_reloc_entry_size (abfd) = RELOC_SIZE;
782
783 return (*aout_backend_info(abfd)->set_sizes) (abfd);
784 }
785
786 static void
787 adjust_o_magic (bfd *abfd, struct internal_exec *execp)
788 {
789 file_ptr pos = adata (abfd).exec_bytes_size;
790 bfd_vma vma = 0;
791 int pad = 0;
792 asection *text = obj_textsec (abfd);
793 asection *data = obj_datasec (abfd);
794 asection *bss = obj_bsssec (abfd);
795
796 /* Text. */
797 text->filepos = pos;
798 if (!text->user_set_vma)
799 text->vma = vma;
800 else
801 vma = text->vma;
802
803 pos += execp->a_text;
804 vma += execp->a_text;
805
806 /* Data. */
807 if (!data->user_set_vma)
808 {
809 pos += pad;
810 vma += pad;
811 data->vma = vma;
812 }
813 else
814 vma = data->vma;
815 execp->a_text += pad;
816
817 data->filepos = pos;
818 pos += data->size;
819 vma += data->size;
820
821 /* BSS. */
822 if (!bss->user_set_vma)
823 {
824 pos += pad;
825 vma += pad;
826 bss->vma = vma;
827 }
828 else
829 {
830 /* The VMA of the .bss section is set by the VMA of the
831 .data section plus the size of the .data section. We may
832 need to add padding bytes to make this true. */
833 pad = bss->vma - vma;
834 if (pad < 0)
835 pad = 0;
836 pos += pad;
837 }
838 execp->a_data = data->size + pad;
839 bss->filepos = pos;
840 execp->a_bss = bss->size;
841
842 N_SET_MAGIC (execp, OMAGIC);
843 }
844
845 static void
846 adjust_z_magic (bfd *abfd, struct internal_exec *execp)
847 {
848 bfd_size_type data_pad, text_pad;
849 file_ptr text_end;
850 const struct aout_backend_data *abdp;
851 /* TRUE if text includes exec header. */
852 bfd_boolean ztih;
853 asection *text = obj_textsec (abfd);
854 asection *data = obj_datasec (abfd);
855 asection *bss = obj_bsssec (abfd);
856
857 abdp = aout_backend_info (abfd);
858
859 /* Text. */
860 ztih = (abdp != NULL
861 && (abdp->text_includes_header
862 || obj_aout_subformat (abfd) == q_magic_format));
863 text->filepos = (ztih
864 ? adata (abfd).exec_bytes_size
865 : adata (abfd).zmagic_disk_block_size);
866 if (!text->user_set_vma)
867 {
868 /* ?? Do we really need to check for relocs here? */
869 text->vma = ((abfd->flags & HAS_RELOC)
870 ? 0
871 : (ztih
872 ? abdp->default_text_vma + adata (abfd).exec_bytes_size
873 : abdp->default_text_vma));
874 text_pad = 0;
875 }
876 else
877 {
878 /* The .text section is being loaded at an unusual address. We
879 may need to pad it such that the .data section starts at a page
880 boundary. */
881 if (ztih)
882 text_pad = ((text->filepos - text->vma)
883 & (adata (abfd).page_size - 1));
884 else
885 text_pad = (-text->vma
886 & (adata (abfd).page_size - 1));
887 }
888
889 /* Find start of data. */
890 if (ztih)
891 {
892 text_end = text->filepos + execp->a_text;
893 text_pad += BFD_ALIGN (text_end, adata (abfd).page_size) - text_end;
894 }
895 else
896 {
897 /* Note that if page_size == zmagic_disk_block_size, then
898 filepos == page_size, and this case is the same as the ztih
899 case. */
900 text_end = execp->a_text;
901 text_pad += BFD_ALIGN (text_end, adata (abfd).page_size) - text_end;
902 text_end += text->filepos;
903 }
904 execp->a_text += text_pad;
905
906 /* Data. */
907 if (!data->user_set_vma)
908 {
909 bfd_vma vma;
910 vma = text->vma + execp->a_text;
911 data->vma = BFD_ALIGN (vma, adata (abfd).segment_size);
912 }
913 if (abdp && abdp->zmagic_mapped_contiguous)
914 {
915 text_pad = data->vma - (text->vma + execp->a_text);
916 /* Only pad the text section if the data
917 section is going to be placed after it. */
918 if (text_pad > 0)
919 execp->a_text += text_pad;
920 }
921 data->filepos = text->filepos + execp->a_text;
922
923 /* Fix up exec header while we're at it. */
924 if (ztih && (!abdp || (abdp && !abdp->exec_header_not_counted)))
925 execp->a_text += adata (abfd).exec_bytes_size;
926 N_SET_MAGIC (execp, ZMAGIC);
927
928 /* Spec says data section should be rounded up to page boundary. */
929 execp->a_data = align_power (data->size, bss->alignment_power);
930 execp->a_data = BFD_ALIGN (execp->a_data, adata (abfd).page_size);
931 data_pad = execp->a_data - data->size;
932
933 /* BSS. */
934 if (!bss->user_set_vma)
935 bss->vma = data->vma + execp->a_data;
936 /* If the BSS immediately follows the data section and extra space
937 in the page is left after the data section, fudge data
938 in the header so that the bss section looks smaller by that
939 amount. We'll start the bss section there, and lie to the OS.
940 (Note that a linker script, as well as the above assignment,
941 could have explicitly set the BSS vma to immediately follow
942 the data section.) */
943 if (align_power (bss->vma, bss->alignment_power) == data->vma + execp->a_data)
944 execp->a_bss = data_pad > bss->size ? 0 : bss->size - data_pad;
945 else
946 execp->a_bss = bss->size;
947 }
948
949 static void
950 adjust_n_magic (bfd *abfd, struct internal_exec *execp)
951 {
952 file_ptr pos = adata (abfd).exec_bytes_size;
953 bfd_vma vma = 0;
954 int pad;
955 asection *text = obj_textsec (abfd);
956 asection *data = obj_datasec (abfd);
957 asection *bss = obj_bsssec (abfd);
958
959 /* Text. */
960 text->filepos = pos;
961 if (!text->user_set_vma)
962 text->vma = vma;
963 else
964 vma = text->vma;
965 pos += execp->a_text;
966 vma += execp->a_text;
967
968 /* Data. */
969 data->filepos = pos;
970 if (!data->user_set_vma)
971 data->vma = BFD_ALIGN (vma, adata (abfd).segment_size);
972 vma = data->vma;
973
974 /* Since BSS follows data immediately, see if it needs alignment. */
975 vma += data->size;
976 pad = align_power (vma, bss->alignment_power) - vma;
977 execp->a_data = data->size + pad;
978 pos += execp->a_data;
979
980 /* BSS. */
981 if (!bss->user_set_vma)
982 bss->vma = vma;
983 else
984 vma = bss->vma;
985
986 /* Fix up exec header. */
987 execp->a_bss = bss->size;
988 N_SET_MAGIC (execp, NMAGIC);
989 }
990
991 bfd_boolean
992 NAME (aout, adjust_sizes_and_vmas) (bfd *abfd)
993 {
994 struct internal_exec *execp = exec_hdr (abfd);
995
996 if (! NAME (aout, make_sections) (abfd))
997 return FALSE;
998
999 if (adata (abfd).magic != undecided_magic)
1000 return TRUE;
1001
1002 execp->a_text = align_power (obj_textsec (abfd)->size,
1003 obj_textsec (abfd)->alignment_power);
1004
1005 /* Rule (heuristic) for when to pad to a new page. Note that there
1006 are (at least) two ways demand-paged (ZMAGIC) files have been
1007 handled. Most Berkeley-based systems start the text segment at
1008 (TARGET_PAGE_SIZE). However, newer versions of SUNOS start the text
1009 segment right after the exec header; the latter is counted in the
1010 text segment size, and is paged in by the kernel with the rest of
1011 the text. */
1012
1013 /* This perhaps isn't the right way to do this, but made it simpler for me
1014 to understand enough to implement it. Better would probably be to go
1015 right from BFD flags to alignment/positioning characteristics. But the
1016 old code was sloppy enough about handling the flags, and had enough
1017 other magic, that it was a little hard for me to understand. I think
1018 I understand it better now, but I haven't time to do the cleanup this
1019 minute. */
1020
1021 if (abfd->flags & WP_TEXT)
1022 adata (abfd).magic = n_magic;
1023 else
1024 adata (abfd).magic = o_magic;
1025
1026 #ifdef BFD_AOUT_DEBUG /* requires gcc2 */
1027 #if __GNUC__ >= 2
1028 fprintf (stderr, "%s text=<%x,%x,%x> data=<%x,%x,%x> bss=<%x,%x,%x>\n",
1029 ({ char *str;
1030 switch (adata (abfd).magic)
1031 {
1032 case n_magic: str = "NMAGIC"; break;
1033 case o_magic: str = "OMAGIC"; break;
1034 case z_magic: str = "ZMAGIC"; break;
1035 default: abort ();
1036 }
1037 str;
1038 }),
1039 obj_textsec (abfd)->vma, obj_textsec (abfd)->size,
1040 obj_textsec (abfd)->alignment_power,
1041 obj_datasec (abfd)->vma, obj_datasec (abfd)->size,
1042 obj_datasec (abfd)->alignment_power,
1043 obj_bsssec (abfd)->vma, obj_bsssec (abfd)->size,
1044 obj_bsssec (abfd)->alignment_power);
1045 #endif
1046 #endif
1047
1048 switch (adata (abfd).magic)
1049 {
1050 case o_magic:
1051 adjust_o_magic (abfd, execp);
1052 break;
1053 case z_magic:
1054 adjust_z_magic (abfd, execp);
1055 break;
1056 case n_magic:
1057 adjust_n_magic (abfd, execp);
1058 break;
1059 default:
1060 abort ();
1061 }
1062
1063 #ifdef BFD_AOUT_DEBUG
1064 fprintf (stderr, " text=<%x,%x,%x> data=<%x,%x,%x> bss=<%x,%x>\n",
1065 obj_textsec (abfd)->vma, execp->a_text,
1066 obj_textsec (abfd)->filepos,
1067 obj_datasec (abfd)->vma, execp->a_data,
1068 obj_datasec (abfd)->filepos,
1069 obj_bsssec (abfd)->vma, execp->a_bss);
1070 #endif
1071
1072 return TRUE;
1073 }
1074
1075 /* Called by the BFD in response to a bfd_make_section request. */
1076
1077 bfd_boolean
1078 NAME (aout, new_section_hook) (bfd *abfd, asection *newsect)
1079 {
1080 /* Align to double at least. */
1081 newsect->alignment_power = bfd_get_arch_info(abfd)->section_align_power;
1082
1083 if (bfd_get_format (abfd) == bfd_object)
1084 {
1085 if (obj_textsec (abfd) == NULL
1086 && !strcmp (newsect->name, ".text"))
1087 {
1088 obj_textsec(abfd)= newsect;
1089 newsect->target_index = N_TEXT;
1090 }
1091 else if (obj_datasec (abfd) == NULL
1092 && !strcmp (newsect->name, ".data"))
1093 {
1094 obj_datasec (abfd) = newsect;
1095 newsect->target_index = N_DATA;
1096 }
1097 else if (obj_bsssec (abfd) == NULL
1098 && !strcmp (newsect->name, ".bss"))
1099 {
1100 obj_bsssec (abfd) = newsect;
1101 newsect->target_index = N_BSS;
1102 }
1103 }
1104
1105 /* We allow more than three sections internally. */
1106 return _bfd_generic_new_section_hook (abfd, newsect);
1107 }
1108
1109 bfd_boolean
1110 NAME (aout, set_section_contents) (bfd *abfd,
1111 sec_ptr section,
1112 const void * location,
1113 file_ptr offset,
1114 bfd_size_type count)
1115 {
1116 if (! abfd->output_has_begun)
1117 {
1118 if (! NAME (aout, adjust_sizes_and_vmas) (abfd))
1119 return FALSE;
1120 }
1121
1122 if (section == obj_bsssec (abfd))
1123 {
1124 bfd_set_error (bfd_error_no_contents);
1125 return FALSE;
1126 }
1127
1128 if (section != obj_textsec (abfd)
1129 && section != obj_datasec (abfd))
1130 {
1131 _bfd_error_handler
1132 /* xgettext:c-format */
1133 (_("%pB: can not represent section `%pA' in a.out object file format"),
1134 abfd, section);
1135 bfd_set_error (bfd_error_nonrepresentable_section);
1136 return FALSE;
1137 }
1138
1139 if (count != 0)
1140 {
1141 if (bfd_seek (abfd, section->filepos + offset, SEEK_SET) != 0
1142 || bfd_bwrite (location, count, abfd) != count)
1143 return FALSE;
1144 }
1145
1146 return TRUE;
1147 }
1148 \f
1149 /* Read the external symbols from an a.out file. */
1150
1151 static bfd_boolean
1152 aout_get_external_symbols (bfd *abfd)
1153 {
1154 if (obj_aout_external_syms (abfd) == NULL)
1155 {
1156 bfd_size_type count;
1157 struct external_nlist *syms;
1158
1159 count = exec_hdr (abfd)->a_syms / EXTERNAL_NLIST_SIZE;
1160
1161 /* PR 17512: file: 011f5a08. */
1162 if (count == 0)
1163 {
1164 obj_aout_external_syms (abfd) = NULL;
1165 obj_aout_external_sym_count (abfd) = count;
1166 return TRUE;
1167 }
1168
1169 #ifdef USE_MMAP
1170 if (! bfd_get_file_window (abfd, obj_sym_filepos (abfd),
1171 exec_hdr (abfd)->a_syms,
1172 &obj_aout_sym_window (abfd), TRUE))
1173 return FALSE;
1174 syms = (struct external_nlist *) obj_aout_sym_window (abfd).data;
1175 #else
1176 /* We allocate using malloc to make the values easy to free
1177 later on. If we put them on the objalloc it might not be
1178 possible to free them. */
1179 if (bfd_seek (abfd, obj_sym_filepos (abfd), SEEK_SET) != 0)
1180 return FALSE;
1181 syms = (struct external_nlist *)
1182 _bfd_malloc_and_read (abfd, count * EXTERNAL_NLIST_SIZE,
1183 count * EXTERNAL_NLIST_SIZE);
1184 if (syms == NULL && count != 0)
1185 return FALSE;
1186 #endif
1187
1188 obj_aout_external_syms (abfd) = syms;
1189 obj_aout_external_sym_count (abfd) = count;
1190 }
1191
1192 if (obj_aout_external_strings (abfd) == NULL
1193 && exec_hdr (abfd)->a_syms != 0)
1194 {
1195 unsigned char string_chars[BYTES_IN_LONG];
1196 bfd_size_type stringsize;
1197 char *strings;
1198
1199 /* Get the size of the strings. */
1200 if (bfd_seek (abfd, obj_str_filepos (abfd), SEEK_SET) != 0
1201 || (bfd_bread ((void *) string_chars, (bfd_size_type) BYTES_IN_LONG,
1202 abfd) != BYTES_IN_LONG))
1203 return FALSE;
1204 stringsize = H_GET_32 (abfd, string_chars);
1205
1206 #ifdef USE_MMAP
1207 if (! bfd_get_file_window (abfd, obj_str_filepos (abfd), stringsize,
1208 &obj_aout_string_window (abfd), TRUE))
1209 return FALSE;
1210 strings = (char *) obj_aout_string_window (abfd).data;
1211 #else
1212 strings = bfd_malloc (stringsize + 1);
1213 if (strings == NULL)
1214 return FALSE;
1215
1216 /* Skip space for the string count in the buffer for convenience
1217 when using indexes. */
1218 if (bfd_bread (strings + 4, stringsize - 4, abfd) != stringsize - 4)
1219 {
1220 free (strings);
1221 return FALSE;
1222 }
1223 #endif
1224 /* Ensure that a zero index yields an empty string. */
1225 strings[0] = '\0';
1226
1227 strings[stringsize - 1] = 0;
1228
1229 obj_aout_external_strings (abfd) = strings;
1230 obj_aout_external_string_size (abfd) = stringsize;
1231 }
1232
1233 return TRUE;
1234 }
1235
1236 /* Translate an a.out symbol into a BFD symbol. The desc, other, type
1237 and symbol->value fields of CACHE_PTR will be set from the a.out
1238 nlist structure. This function is responsible for setting
1239 symbol->flags and symbol->section, and adjusting symbol->value. */
1240
1241 static bfd_boolean
1242 translate_from_native_sym_flags (bfd *abfd,
1243 aout_symbol_type *cache_ptr)
1244 {
1245 flagword visible;
1246
1247 if (cache_ptr->type == N_FN)
1248 {
1249 asection *sec;
1250
1251 /* This is a debugging symbol. */
1252 cache_ptr->symbol.flags = BSF_DEBUGGING;
1253
1254 /* Work out the symbol section. */
1255 switch (cache_ptr->type & N_TYPE)
1256 {
1257 case N_TEXT:
1258 case N_FN:
1259 sec = obj_textsec (abfd);
1260 break;
1261 case N_DATA:
1262 sec = obj_datasec (abfd);
1263 break;
1264 case N_BSS:
1265 sec = obj_bsssec (abfd);
1266 break;
1267 default:
1268 case N_ABS:
1269 sec = bfd_abs_section_ptr;
1270 break;
1271 }
1272
1273 cache_ptr->symbol.section = sec;
1274 cache_ptr->symbol.value -= sec->vma;
1275
1276 return TRUE;
1277 }
1278
1279 /* Get the default visibility. This does not apply to all types, so
1280 we just hold it in a local variable to use if wanted. */
1281 if ((cache_ptr->type & N_EXT) == 0)
1282 visible = BSF_LOCAL;
1283 else
1284 visible = BSF_GLOBAL;
1285
1286 switch (cache_ptr->type)
1287 {
1288 default:
1289 case N_ABS: case N_ABS | N_EXT:
1290 cache_ptr->symbol.section = bfd_abs_section_ptr;
1291 cache_ptr->symbol.flags = visible;
1292 break;
1293
1294 case N_UNDF | N_EXT:
1295 if (cache_ptr->symbol.value != 0)
1296 {
1297 /* This is a common symbol. */
1298 cache_ptr->symbol.flags = BSF_GLOBAL;
1299 cache_ptr->symbol.section = bfd_com_section_ptr;
1300 }
1301 else
1302 {
1303 cache_ptr->symbol.flags = 0;
1304 cache_ptr->symbol.section = bfd_und_section_ptr;
1305 }
1306 break;
1307
1308 case N_TEXT: case N_TEXT | N_EXT:
1309 cache_ptr->symbol.section = obj_textsec (abfd);
1310 cache_ptr->symbol.value -= cache_ptr->symbol.section->vma;
1311 cache_ptr->symbol.flags = visible;
1312 break;
1313
1314 case N_DATA: case N_DATA | N_EXT:
1315 cache_ptr->symbol.section = obj_datasec (abfd);
1316 cache_ptr->symbol.value -= cache_ptr->symbol.section->vma;
1317 cache_ptr->symbol.flags = visible;
1318 break;
1319
1320 case N_BSS: case N_BSS | N_EXT:
1321 cache_ptr->symbol.section = obj_bsssec (abfd);
1322 cache_ptr->symbol.value -= cache_ptr->symbol.section->vma;
1323 cache_ptr->symbol.flags = visible;
1324 break;
1325 }
1326
1327 return TRUE;
1328 }
1329
1330 /* Set the fields of SYM_POINTER according to CACHE_PTR. */
1331
1332 static bfd_boolean
1333 translate_to_native_sym_flags (bfd *abfd,
1334 asymbol *cache_ptr,
1335 struct external_nlist *sym_pointer)
1336 {
1337 bfd_vma value = cache_ptr->value;
1338 asection *sec;
1339 bfd_vma off;
1340
1341 /* Mask out any existing type bits in case copying from one section
1342 to another. */
1343 sym_pointer->e_type[0] &= ~N_TYPE;
1344
1345 sec = bfd_asymbol_section (cache_ptr);
1346 off = 0;
1347
1348 if (sec == NULL)
1349 {
1350 /* This case occurs, e.g., for the *DEBUG* section of a COFF
1351 file. */
1352 _bfd_error_handler
1353 /* xgettext:c-format */
1354 (_("%pB: can not represent section for symbol `%s' in a.out object file format"),
1355 abfd, cache_ptr->name != NULL ? cache_ptr->name : "*unknown*");
1356 bfd_set_error (bfd_error_nonrepresentable_section);
1357 return FALSE;
1358 }
1359
1360 if (sec->output_section != NULL)
1361 {
1362 off = sec->output_offset;
1363 sec = sec->output_section;
1364 }
1365
1366 if (bfd_is_abs_section (sec))
1367 sym_pointer->e_type[0] |= N_ABS;
1368 else if (sec == obj_textsec (abfd))
1369 sym_pointer->e_type[0] |= N_TEXT;
1370 else if (sec == obj_datasec (abfd))
1371 sym_pointer->e_type[0] |= N_DATA;
1372 else if (sec == obj_bsssec (abfd))
1373 sym_pointer->e_type[0] |= N_BSS;
1374 else if (bfd_is_und_section (sec))
1375 sym_pointer->e_type[0] = N_UNDF | N_EXT;
1376 else if (bfd_is_com_section (sec))
1377 sym_pointer->e_type[0] = N_UNDF | N_EXT;
1378 else
1379 {
1380 _bfd_error_handler
1381 /* xgettext:c-format */
1382 (_("%pB: can not represent section `%pA' in a.out object file format"),
1383 abfd, sec);
1384 bfd_set_error (bfd_error_nonrepresentable_section);
1385 return FALSE;
1386 }
1387
1388 /* Turn the symbol from section relative to absolute again */
1389 value += sec->vma + off;
1390
1391 if ((cache_ptr->flags & BSF_DEBUGGING) != 0)
1392 sym_pointer->e_type[0] = ((aout_symbol_type *) cache_ptr)->type;
1393 else if ((cache_ptr->flags & BSF_GLOBAL) != 0)
1394 sym_pointer->e_type[0] |= N_EXT;
1395
1396 PUT_WORD(abfd, value, sym_pointer->e_value);
1397
1398 return TRUE;
1399 }
1400 \f
1401 /* Native-level interface to symbols. */
1402
1403 asymbol *
1404 NAME (aout, make_empty_symbol) (bfd *abfd)
1405 {
1406 size_t amt = sizeof (aout_symbol_type);
1407 aout_symbol_type *new_symbol_type = bfd_zalloc (abfd, amt);
1408
1409 if (!new_symbol_type)
1410 return NULL;
1411 new_symbol_type->symbol.the_bfd = abfd;
1412
1413 return &new_symbol_type->symbol;
1414 }
1415
1416 /* Translate a set of internal symbols into external symbols. */
1417
1418 bfd_boolean
1419 NAME (aout, translate_symbol_table) (bfd *abfd,
1420 aout_symbol_type *in,
1421 struct external_nlist *ext,
1422 bfd_size_type count,
1423 char *str,
1424 bfd_size_type strsize,
1425 bfd_boolean dynamic)
1426 {
1427 struct external_nlist *ext_end;
1428
1429 ext_end = ext + count;
1430 for (; ext < ext_end; ext++, in++)
1431 {
1432 bfd_vma x;
1433
1434 x = GET_WORD (abfd, ext->e_strx);
1435 in->symbol.the_bfd = abfd;
1436
1437 /* For the normal symbols, the zero index points at the number
1438 of bytes in the string table but is to be interpreted as the
1439 null string. For the dynamic symbols, the number of bytes in
1440 the string table is stored in the __DYNAMIC structure and the
1441 zero index points at an actual string. */
1442 if (x == 0 && ! dynamic)
1443 in->symbol.name = "";
1444 else if (x < strsize)
1445 in->symbol.name = str + x;
1446 else
1447 return FALSE;
1448
1449 in->symbol.value = GET_SWORD (abfd, ext->e_value);
1450 /* TODO: is 0 a safe value here? */
1451 in->desc = 0;
1452 in->other = 0;
1453 in->type = H_GET_8 (abfd, ext->e_type);
1454 in->symbol.udata.p = NULL;
1455
1456 if (! translate_from_native_sym_flags (abfd, in))
1457 return FALSE;
1458
1459 if (dynamic)
1460 in->symbol.flags |= BSF_DYNAMIC;
1461 }
1462
1463 return TRUE;
1464 }
1465
1466 /* We read the symbols into a buffer, which is discarded when this
1467 function exits. We read the strings into a buffer large enough to
1468 hold them all plus all the cached symbol entries. */
1469
1470 bfd_boolean
1471 NAME (aout, slurp_symbol_table) (bfd *abfd)
1472 {
1473 struct external_nlist *old_external_syms;
1474 aout_symbol_type *cached;
1475 bfd_size_type cached_size;
1476
1477 /* If there's no work to be done, don't do any. */
1478 if (obj_aout_symbols (abfd) != NULL)
1479 return TRUE;
1480
1481 old_external_syms = obj_aout_external_syms (abfd);
1482
1483 if (! aout_get_external_symbols (abfd))
1484 return FALSE;
1485
1486 cached_size = obj_aout_external_sym_count (abfd);
1487 cached_size *= sizeof (aout_symbol_type);
1488 cached = bfd_zmalloc (cached_size);
1489 if (cached == NULL && cached_size != 0)
1490 return FALSE;
1491
1492 /* Convert from external symbol information to internal. */
1493 if (! (NAME (aout, translate_symbol_table)
1494 (abfd, cached,
1495 obj_aout_external_syms (abfd),
1496 obj_aout_external_sym_count (abfd),
1497 obj_aout_external_strings (abfd),
1498 obj_aout_external_string_size (abfd),
1499 FALSE)))
1500 {
1501 free (cached);
1502 return FALSE;
1503 }
1504
1505 abfd->symcount = obj_aout_external_sym_count (abfd);
1506
1507 obj_aout_symbols (abfd) = cached;
1508
1509 /* It is very likely that anybody who calls this function will not
1510 want the external symbol information, so if it was allocated
1511 because of our call to aout_get_external_symbols, we free it up
1512 right away to save space. */
1513 if (old_external_syms == NULL
1514 && obj_aout_external_syms (abfd) != NULL)
1515 {
1516 #ifdef USE_MMAP
1517 bfd_free_window (&obj_aout_sym_window (abfd));
1518 #else
1519 free (obj_aout_external_syms (abfd));
1520 #endif
1521 obj_aout_external_syms (abfd) = NULL;
1522 }
1523
1524 return TRUE;
1525 }
1526 \f
1527 /* We use a hash table when writing out symbols so that we only write
1528 out a particular string once. This helps particularly when the
1529 linker writes out stabs debugging entries, because each different
1530 contributing object file tends to have many duplicate stabs
1531 strings.
1532
1533 This hash table code breaks dbx on SunOS 4.1.3, so we don't do it
1534 if BFD_TRADITIONAL_FORMAT is set. */
1535
1536 /* Get the index of a string in a strtab, adding it if it is not
1537 already present. */
1538
1539 static INLINE bfd_size_type
1540 add_to_stringtab (bfd *abfd,
1541 struct bfd_strtab_hash *tab,
1542 const char *str,
1543 bfd_boolean copy)
1544 {
1545 bfd_boolean hash;
1546 bfd_size_type str_index;
1547
1548 /* An index of 0 always means the empty string. */
1549 if (str == 0 || *str == '\0')
1550 return 0;
1551
1552 /* Don't hash if BFD_TRADITIONAL_FORMAT is set, because SunOS dbx
1553 doesn't understand a hashed string table. */
1554 hash = TRUE;
1555 if ((abfd->flags & BFD_TRADITIONAL_FORMAT) != 0)
1556 hash = FALSE;
1557
1558 str_index = _bfd_stringtab_add (tab, str, hash, copy);
1559
1560 if (str_index != (bfd_size_type) -1)
1561 /* Add BYTES_IN_LONG to the return value to account for the
1562 space taken up by the string table size. */
1563 str_index += BYTES_IN_LONG;
1564
1565 return str_index;
1566 }
1567
1568 /* Write out a strtab. ABFD is already at the right location in the
1569 file. */
1570
1571 static bfd_boolean
1572 emit_stringtab (bfd *abfd, struct bfd_strtab_hash *tab)
1573 {
1574 bfd_byte buffer[BYTES_IN_LONG];
1575
1576 /* The string table starts with the size. */
1577 H_PUT_32 (abfd, _bfd_stringtab_size (tab) + BYTES_IN_LONG, buffer);
1578 if (bfd_bwrite ((void *) buffer, (bfd_size_type) BYTES_IN_LONG, abfd)
1579 != BYTES_IN_LONG)
1580 return FALSE;
1581
1582 return _bfd_stringtab_emit (abfd, tab);
1583 }
1584 \f
1585 bfd_boolean
1586 NAME (aout, write_syms) (bfd *abfd)
1587 {
1588 unsigned int count ;
1589 asymbol **generic = bfd_get_outsymbols (abfd);
1590 struct bfd_strtab_hash *strtab;
1591
1592 strtab = _bfd_stringtab_init ();
1593 if (strtab == NULL)
1594 return FALSE;
1595
1596 for (count = 0; count < bfd_get_symcount (abfd); count++)
1597 {
1598 asymbol *g = generic[count];
1599 bfd_size_type indx;
1600 struct external_nlist nsp;
1601
1602 PUT_WORD (abfd, 0, nsp.e_unused);
1603
1604 indx = add_to_stringtab (abfd, strtab, g->name, FALSE);
1605 if (indx == (bfd_size_type) -1)
1606 goto error_return;
1607 PUT_WORD (abfd, indx, nsp.e_strx);
1608
1609 if (bfd_asymbol_flavour(g) == abfd->xvec->flavour)
1610 H_PUT_8 (abfd, aout_symbol(g)->type, nsp.e_type);
1611 else
1612 H_PUT_8 (abfd, 0, nsp.e_type);
1613
1614 if (! translate_to_native_sym_flags (abfd, g, &nsp))
1615 goto error_return;
1616
1617 H_PUT_8 (abfd, 0, nsp.e_ovly);
1618
1619 if (bfd_bwrite ((void *)&nsp, (bfd_size_type) EXTERNAL_NLIST_SIZE, abfd)
1620 != EXTERNAL_NLIST_SIZE)
1621 goto error_return;
1622
1623 /* NB: `KEEPIT' currently overlays `udata.p', so set this only
1624 here, at the end. */
1625 g->KEEPIT = count;
1626 }
1627
1628 if (! emit_stringtab (abfd, strtab))
1629 goto error_return;
1630
1631 _bfd_stringtab_free (strtab);
1632
1633 return TRUE;
1634
1635 error_return:
1636 _bfd_stringtab_free (strtab);
1637 return FALSE;
1638 }
1639
1640 \f
1641 long
1642 NAME (aout, canonicalize_symtab) (bfd *abfd, asymbol **location)
1643 {
1644 unsigned int counter = 0;
1645 aout_symbol_type *symbase;
1646
1647 if (!NAME (aout, slurp_symbol_table) (abfd))
1648 return -1;
1649
1650 for (symbase = obj_aout_symbols (abfd); counter++ < bfd_get_symcount (abfd);)
1651 *(location++) = (asymbol *)(symbase++);
1652 *location++ =0;
1653 return bfd_get_symcount (abfd);
1654 }
1655
1656 \f
1657 /* Output extended relocation information to a file in target byte order. */
1658
1659 static void
1660 pdp11_aout_swap_reloc_out (bfd *abfd, arelent *g, bfd_byte *natptr)
1661 {
1662 int r_index;
1663 int r_pcrel;
1664 int reloc_entry;
1665 int r_type;
1666 asymbol *sym = *(g->sym_ptr_ptr);
1667 asection *output_section = sym->section->output_section;
1668
1669 if (g->addend != 0)
1670 fprintf (stderr, "BFD: can't do this reloc addend stuff\n");
1671
1672 r_pcrel = g->howto->pc_relative;
1673
1674 if (bfd_is_abs_section (output_section))
1675 r_type = RABS;
1676 else if (output_section == obj_textsec (abfd))
1677 r_type = RTEXT;
1678 else if (output_section == obj_datasec (abfd))
1679 r_type = RDATA;
1680 else if (output_section == obj_bsssec (abfd))
1681 r_type = RBSS;
1682 else if (bfd_is_und_section (output_section))
1683 r_type = REXT;
1684 else if (bfd_is_com_section (output_section))
1685 r_type = REXT;
1686 else
1687 r_type = -1;
1688
1689 BFD_ASSERT (r_type != -1);
1690
1691 if (r_type == RABS)
1692 r_index = 0;
1693 else
1694 r_index = (*(g->sym_ptr_ptr))->KEEPIT;
1695
1696 reloc_entry = r_index << 4 | r_type | r_pcrel;
1697
1698 PUT_WORD (abfd, reloc_entry, natptr);
1699 }
1700
1701 /* BFD deals internally with all things based from the section they're
1702 in. so, something in 10 bytes into a text section with a base of
1703 50 would have a symbol (.text+10) and know .text vma was 50.
1704
1705 Aout keeps all it's symbols based from zero, so the symbol would
1706 contain 60. This macro subs the base of each section from the value
1707 to give the true offset from the section */
1708
1709
1710 #define MOVE_ADDRESS(ad) \
1711 if (r_extern) \
1712 { \
1713 /* Undefined symbol. */ \
1714 cache_ptr->sym_ptr_ptr = symbols + r_index; \
1715 cache_ptr->addend = ad; \
1716 } \
1717 else \
1718 { \
1719 /* Defined, section relative. replace symbol with pointer to \
1720 symbol which points to section. */ \
1721 switch (r_index) \
1722 { \
1723 case N_TEXT: \
1724 case N_TEXT | N_EXT: \
1725 cache_ptr->sym_ptr_ptr = obj_textsec (abfd)->symbol_ptr_ptr; \
1726 cache_ptr->addend = ad - su->textsec->vma; \
1727 break; \
1728 case N_DATA: \
1729 case N_DATA | N_EXT: \
1730 cache_ptr->sym_ptr_ptr = obj_datasec (abfd)->symbol_ptr_ptr; \
1731 cache_ptr->addend = ad - su->datasec->vma; \
1732 break; \
1733 case N_BSS: \
1734 case N_BSS | N_EXT: \
1735 cache_ptr->sym_ptr_ptr = obj_bsssec (abfd)->symbol_ptr_ptr; \
1736 cache_ptr->addend = ad - su->bsssec->vma; \
1737 break; \
1738 default: \
1739 case N_ABS: \
1740 case N_ABS | N_EXT: \
1741 cache_ptr->sym_ptr_ptr = bfd_abs_section_ptr->symbol_ptr_ptr; \
1742 cache_ptr->addend = ad; \
1743 break; \
1744 } \
1745 }
1746
1747 static void
1748 pdp11_aout_swap_reloc_in (bfd * abfd,
1749 bfd_byte * bytes,
1750 arelent * cache_ptr,
1751 bfd_size_type offset,
1752 asymbol ** symbols,
1753 bfd_size_type symcount)
1754 {
1755 struct aoutdata *su = &(abfd->tdata.aout_data->a);
1756 unsigned int r_index;
1757 int reloc_entry;
1758 int r_extern;
1759 int r_pcrel;
1760
1761 reloc_entry = GET_WORD (abfd, (void *) bytes);
1762
1763 r_pcrel = reloc_entry & RELFLG;
1764
1765 cache_ptr->address = offset;
1766 cache_ptr->howto = howto_table_pdp11 + (r_pcrel ? 1 : 0);
1767
1768 if ((reloc_entry & RTYPE) == RABS)
1769 r_index = N_ABS;
1770 else
1771 r_index = RINDEX (reloc_entry);
1772
1773 /* r_extern reflects whether the symbol the reloc is against is
1774 local or global. */
1775 r_extern = (reloc_entry & RTYPE) == REXT;
1776
1777 if (r_extern && r_index > symcount)
1778 {
1779 /* We could arrange to return an error, but it might be useful
1780 to see the file even if it is bad. */
1781 r_extern = 0;
1782 r_index = N_ABS;
1783 }
1784
1785 MOVE_ADDRESS(0);
1786 }
1787
1788 /* Read and swap the relocs for a section. */
1789
1790 bfd_boolean
1791 NAME (aout, slurp_reloc_table) (bfd *abfd, sec_ptr asect, asymbol **symbols)
1792 {
1793 bfd_byte *rptr;
1794 bfd_size_type count;
1795 bfd_size_type reloc_size;
1796 void * relocs;
1797 arelent *reloc_cache;
1798 size_t each_size;
1799 unsigned int counter = 0;
1800 arelent *cache_ptr;
1801
1802 if (asect->relocation)
1803 return TRUE;
1804
1805 if (asect->flags & SEC_CONSTRUCTOR)
1806 return TRUE;
1807
1808 if (asect == obj_datasec (abfd))
1809 reloc_size = exec_hdr(abfd)->a_drsize;
1810 else if (asect == obj_textsec (abfd))
1811 reloc_size = exec_hdr(abfd)->a_trsize;
1812 else if (asect == obj_bsssec (abfd))
1813 reloc_size = 0;
1814 else
1815 {
1816 bfd_set_error (bfd_error_invalid_operation);
1817 return FALSE;
1818 }
1819
1820 if (bfd_seek (abfd, asect->rel_filepos, SEEK_SET) != 0)
1821 return FALSE;
1822 relocs = _bfd_malloc_and_read (abfd, reloc_size, reloc_size);
1823 if (relocs == NULL && reloc_size != 0)
1824 return FALSE;
1825
1826 each_size = obj_reloc_entry_size (abfd);
1827 count = reloc_size / each_size;
1828
1829 /* Count the number of NON-ZERO relocs, this is the count we want. */
1830 {
1831 unsigned int real_count = 0;
1832
1833 for (counter = 0; counter < count; counter++)
1834 {
1835 int x;
1836
1837 x = GET_WORD (abfd, (char *) relocs + each_size * counter);
1838 if (x != 0)
1839 real_count++;
1840 }
1841
1842 count = real_count;
1843 }
1844
1845 reloc_cache = bfd_zmalloc (count * sizeof (arelent));
1846 if (reloc_cache == NULL && count != 0)
1847 return FALSE;
1848
1849 cache_ptr = reloc_cache;
1850
1851 rptr = relocs;
1852 for (counter = 0;
1853 counter < count;
1854 counter++, rptr += RELOC_SIZE, cache_ptr++)
1855 {
1856 while (GET_WORD (abfd, (void *) rptr) == 0)
1857 {
1858 rptr += RELOC_SIZE;
1859 if ((char *) rptr >= (char *) relocs + reloc_size)
1860 goto done;
1861 }
1862
1863 pdp11_aout_swap_reloc_in (abfd, rptr, cache_ptr,
1864 (bfd_size_type) ((char *) rptr - (char *) relocs),
1865 symbols,
1866 (bfd_size_type) bfd_get_symcount (abfd));
1867 }
1868 done:
1869 /* Just in case, if rptr >= relocs + reloc_size should happen
1870 too early. */
1871 BFD_ASSERT (counter == count);
1872
1873 free (relocs);
1874
1875 asect->relocation = reloc_cache;
1876 asect->reloc_count = cache_ptr - reloc_cache;
1877
1878 return TRUE;
1879 }
1880
1881 /* Write out a relocation section into an object file. */
1882
1883 bfd_boolean
1884 NAME (aout, squirt_out_relocs) (bfd *abfd, asection *section)
1885 {
1886 arelent **generic;
1887 unsigned char *native;
1888 unsigned int count = section->reloc_count;
1889 bfd_size_type natsize;
1890
1891 natsize = section->size;
1892 native = bfd_zalloc (abfd, natsize);
1893 if (!native)
1894 return FALSE;
1895
1896 generic = section->orelocation;
1897 if (generic != NULL)
1898 {
1899 while (count > 0)
1900 {
1901 bfd_byte *r;
1902
1903 r = native + (*generic)->address;
1904 pdp11_aout_swap_reloc_out (abfd, *generic, r);
1905 count--;
1906 generic++;
1907 }
1908 }
1909
1910 if (bfd_bwrite ((void *) native, natsize, abfd) != natsize)
1911 {
1912 bfd_release (abfd, native);
1913 return FALSE;
1914 }
1915
1916 bfd_release (abfd, native);
1917 return TRUE;
1918 }
1919
1920 /* This is stupid. This function should be a boolean predicate. */
1921
1922 long
1923 NAME (aout, canonicalize_reloc) (bfd *abfd,
1924 sec_ptr section,
1925 arelent **relptr,
1926 asymbol **symbols)
1927 {
1928 arelent *tblptr = section->relocation;
1929 unsigned int count;
1930
1931 if (section == obj_bsssec (abfd))
1932 {
1933 *relptr = NULL;
1934 return 0;
1935 }
1936
1937 if (!(tblptr || NAME (aout, slurp_reloc_table)(abfd, section, symbols)))
1938 return -1;
1939
1940 if (section->flags & SEC_CONSTRUCTOR)
1941 {
1942 arelent_chain *chain = section->constructor_chain;
1943
1944 for (count = 0; count < section->reloc_count; count ++)
1945 {
1946 *relptr ++ = &chain->relent;
1947 chain = chain->next;
1948 }
1949 }
1950 else
1951 {
1952 tblptr = section->relocation;
1953
1954 for (count = 0; count++ < section->reloc_count;)
1955 *relptr++ = tblptr++;
1956 }
1957
1958 *relptr = 0;
1959
1960 return section->reloc_count;
1961 }
1962
1963 long
1964 NAME (aout, get_reloc_upper_bound) (bfd *abfd, sec_ptr asect)
1965 {
1966 bfd_size_type count;
1967
1968 if (bfd_get_format (abfd) != bfd_object)
1969 {
1970 bfd_set_error (bfd_error_invalid_operation);
1971 return -1;
1972 }
1973
1974 if (asect->flags & SEC_CONSTRUCTOR)
1975 count = asect->reloc_count;
1976 else if (asect == obj_datasec (abfd))
1977 count = exec_hdr (abfd)->a_drsize / obj_reloc_entry_size (abfd);
1978 else if (asect == obj_textsec (abfd))
1979 count = exec_hdr (abfd)->a_trsize / obj_reloc_entry_size (abfd);
1980 else if (asect == obj_bsssec (abfd))
1981 count = 0;
1982 else
1983 {
1984 bfd_set_error (bfd_error_invalid_operation);
1985 return -1;
1986 }
1987
1988 if (count >= LONG_MAX / sizeof (arelent *))
1989 {
1990 bfd_set_error (bfd_error_file_too_big);
1991 return -1;
1992 }
1993 return (count + 1) * sizeof (arelent *);
1994 }
1995
1996 \f
1997 long
1998 NAME (aout, get_symtab_upper_bound) (bfd *abfd)
1999 {
2000 if (!NAME (aout, slurp_symbol_table) (abfd))
2001 return -1;
2002
2003 return (bfd_get_symcount (abfd) + 1) * (sizeof (aout_symbol_type *));
2004 }
2005
2006 alent *
2007 NAME (aout, get_lineno) (bfd * abfd ATTRIBUTE_UNUSED,
2008 asymbol * symbol ATTRIBUTE_UNUSED)
2009 {
2010 return NULL;
2011 }
2012
2013 void
2014 NAME (aout, get_symbol_info) (bfd * abfd ATTRIBUTE_UNUSED,
2015 asymbol *symbol,
2016 symbol_info *ret)
2017 {
2018 bfd_symbol_info (symbol, ret);
2019
2020 if (ret->type == '?')
2021 {
2022 int type_code = aout_symbol(symbol)->type & 0xff;
2023 const char *stab_name = bfd_get_stab_name (type_code);
2024 static char buf[10];
2025
2026 if (stab_name == NULL)
2027 {
2028 sprintf(buf, "(%d)", type_code);
2029 stab_name = buf;
2030 }
2031 ret->type = '-';
2032 ret->stab_type = type_code;
2033 ret->stab_other = (unsigned) (aout_symbol(symbol)->other & 0xff);
2034 ret->stab_desc = (unsigned) (aout_symbol(symbol)->desc & 0xffff);
2035 ret->stab_name = stab_name;
2036 }
2037 }
2038
2039 void
2040 NAME (aout, print_symbol) (bfd * abfd,
2041 void * afile,
2042 asymbol *symbol,
2043 bfd_print_symbol_type how)
2044 {
2045 FILE *file = (FILE *) afile;
2046
2047 switch (how)
2048 {
2049 case bfd_print_symbol_name:
2050 if (symbol->name)
2051 fprintf(file,"%s", symbol->name);
2052 break;
2053 case bfd_print_symbol_more:
2054 fprintf(file,"%4x %2x %2x",
2055 (unsigned) (aout_symbol (symbol)->desc & 0xffff),
2056 (unsigned) (aout_symbol (symbol)->other & 0xff),
2057 (unsigned) (aout_symbol (symbol)->type));
2058 break;
2059 case bfd_print_symbol_all:
2060 {
2061 const char *section_name = symbol->section->name;
2062
2063 bfd_print_symbol_vandf (abfd, (void *) file, symbol);
2064
2065 fprintf (file," %-5s %04x %02x %02x",
2066 section_name,
2067 (unsigned) (aout_symbol (symbol)->desc & 0xffff),
2068 (unsigned) (aout_symbol (symbol)->other & 0xff),
2069 (unsigned) (aout_symbol (symbol)->type & 0xff));
2070 if (symbol->name)
2071 fprintf(file," %s", symbol->name);
2072 }
2073 break;
2074 }
2075 }
2076
2077 /* If we don't have to allocate more than 1MB to hold the generic
2078 symbols, we use the generic minisymbol method: it's faster, since
2079 it only translates the symbols once, not multiple times. */
2080 #define MINISYM_THRESHOLD (1000000 / sizeof (asymbol))
2081
2082 /* Read minisymbols. For minisymbols, we use the unmodified a.out
2083 symbols. The minisymbol_to_symbol function translates these into
2084 BFD asymbol structures. */
2085
2086 long
2087 NAME (aout, read_minisymbols) (bfd *abfd,
2088 bfd_boolean dynamic,
2089 void * *minisymsp,
2090 unsigned int *sizep)
2091 {
2092 if (dynamic)
2093 /* We could handle the dynamic symbols here as well, but it's
2094 easier to hand them off. */
2095 return _bfd_generic_read_minisymbols (abfd, dynamic, minisymsp, sizep);
2096
2097 if (! aout_get_external_symbols (abfd))
2098 return -1;
2099
2100 if (obj_aout_external_sym_count (abfd) < MINISYM_THRESHOLD)
2101 return _bfd_generic_read_minisymbols (abfd, dynamic, minisymsp, sizep);
2102
2103 *minisymsp = (void *) obj_aout_external_syms (abfd);
2104
2105 /* By passing the external symbols back from this routine, we are
2106 giving up control over the memory block. Clear
2107 obj_aout_external_syms, so that we do not try to free it
2108 ourselves. */
2109 obj_aout_external_syms (abfd) = NULL;
2110
2111 *sizep = EXTERNAL_NLIST_SIZE;
2112 return obj_aout_external_sym_count (abfd);
2113 }
2114
2115 /* Convert a minisymbol to a BFD asymbol. A minisymbol is just an
2116 unmodified a.out symbol. The SYM argument is a structure returned
2117 by bfd_make_empty_symbol, which we fill in here. */
2118
2119 asymbol *
2120 NAME (aout, minisymbol_to_symbol) (bfd *abfd,
2121 bfd_boolean dynamic,
2122 const void * minisym,
2123 asymbol *sym)
2124 {
2125 if (dynamic
2126 || obj_aout_external_sym_count (abfd) < MINISYM_THRESHOLD)
2127 return _bfd_generic_minisymbol_to_symbol (abfd, dynamic, minisym, sym);
2128
2129 memset (sym, 0, sizeof (aout_symbol_type));
2130
2131 /* We call translate_symbol_table to translate a single symbol. */
2132 if (! (NAME (aout, translate_symbol_table)
2133 (abfd,
2134 (aout_symbol_type *) sym,
2135 (struct external_nlist *) minisym,
2136 (bfd_size_type) 1,
2137 obj_aout_external_strings (abfd),
2138 obj_aout_external_string_size (abfd),
2139 FALSE)))
2140 return NULL;
2141
2142 return sym;
2143 }
2144
2145 /* Provided a BFD, a section and an offset into the section, calculate
2146 and return the name of the source file and the line nearest to the
2147 wanted location. */
2148
2149 bfd_boolean
2150 NAME (aout, find_nearest_line) (bfd *abfd,
2151 asymbol **symbols,
2152 asection *section,
2153 bfd_vma offset,
2154 const char **filename_ptr,
2155 const char **functionname_ptr,
2156 unsigned int *line_ptr,
2157 unsigned int *discriminator_ptr)
2158 {
2159 /* Run down the file looking for the filename, function and linenumber. */
2160 asymbol **p;
2161 const char *directory_name = NULL;
2162 const char *main_file_name = NULL;
2163 const char *current_file_name = NULL;
2164 const char *line_file_name = NULL; /* Value of current_file_name at line number. */
2165 bfd_vma low_line_vma = 0;
2166 bfd_vma low_func_vma = 0;
2167 asymbol *func = 0;
2168 size_t filelen, funclen;
2169 char *buf;
2170
2171 *filename_ptr = abfd->filename;
2172 *functionname_ptr = 0;
2173 *line_ptr = 0;
2174 if (discriminator_ptr)
2175 *discriminator_ptr = 0;
2176
2177 if (symbols != NULL)
2178 {
2179 for (p = symbols; *p; p++)
2180 {
2181 aout_symbol_type *q = (aout_symbol_type *)(*p);
2182 next:
2183 switch (q->type)
2184 {
2185 case N_TEXT:
2186 /* If this looks like a file name symbol, and it comes after
2187 the line number we have found so far, but before the
2188 offset, then we have probably not found the right line
2189 number. */
2190 if (q->symbol.value <= offset
2191 && ((q->symbol.value > low_line_vma
2192 && (line_file_name != NULL
2193 || *line_ptr != 0))
2194 || (q->symbol.value > low_func_vma
2195 && func != NULL)))
2196 {
2197 const char * symname;
2198
2199 symname = q->symbol.name;
2200 if (strcmp (symname + strlen (symname) - 2, ".o") == 0)
2201 {
2202 if (q->symbol.value > low_line_vma)
2203 {
2204 *line_ptr = 0;
2205 line_file_name = NULL;
2206 }
2207 if (q->symbol.value > low_func_vma)
2208 func = NULL;
2209 }
2210 }
2211 break;
2212
2213 case N_SO:
2214 /* If this symbol is less than the offset, but greater than
2215 the line number we have found so far, then we have not
2216 found the right line number. */
2217 if (q->symbol.value <= offset)
2218 {
2219 if (q->symbol.value > low_line_vma)
2220 {
2221 *line_ptr = 0;
2222 line_file_name = NULL;
2223 }
2224 if (q->symbol.value > low_func_vma)
2225 func = NULL;
2226 }
2227
2228 main_file_name = current_file_name = q->symbol.name;
2229 /* Look ahead to next symbol to check if that too is an N_SO. */
2230 p++;
2231 if (*p == NULL)
2232 break;
2233 q = (aout_symbol_type *)(*p);
2234 if (q->type != (int) N_SO)
2235 goto next;
2236
2237 /* Found a second N_SO First is directory; second is filename. */
2238 directory_name = current_file_name;
2239 main_file_name = current_file_name = q->symbol.name;
2240 if (obj_textsec(abfd) != section)
2241 goto done;
2242 break;
2243 case N_SOL:
2244 current_file_name = q->symbol.name;
2245 break;
2246
2247 case N_SLINE:
2248 case N_DSLINE:
2249 case N_BSLINE:
2250 /* We'll keep this if it resolves nearer than the one we have
2251 already. */
2252 if (q->symbol.value >= low_line_vma
2253 && q->symbol.value <= offset)
2254 {
2255 *line_ptr = q->desc;
2256 low_line_vma = q->symbol.value;
2257 line_file_name = current_file_name;
2258 }
2259 break;
2260
2261 case N_FUN:
2262 {
2263 /* We'll keep this if it is nearer than the one we have already. */
2264 if (q->symbol.value >= low_func_vma &&
2265 q->symbol.value <= offset)
2266 {
2267 low_func_vma = q->symbol.value;
2268 func = (asymbol *) q;
2269 }
2270 else if (q->symbol.value > offset)
2271 goto done;
2272 }
2273 break;
2274 }
2275 }
2276 }
2277
2278 done:
2279 if (*line_ptr != 0)
2280 main_file_name = line_file_name;
2281
2282 if (main_file_name == NULL
2283 || main_file_name[0] == '/'
2284 || directory_name == NULL)
2285 filelen = 0;
2286 else
2287 filelen = strlen (directory_name) + strlen (main_file_name);
2288 if (func == NULL)
2289 funclen = 0;
2290 else
2291 funclen = strlen (bfd_asymbol_name (func));
2292
2293 if (adata (abfd).line_buf != NULL)
2294 free (adata (abfd).line_buf);
2295 if (filelen + funclen == 0)
2296 adata (abfd).line_buf = buf = NULL;
2297 else
2298 {
2299 buf = bfd_malloc ((bfd_size_type) filelen + funclen + 3);
2300 adata (abfd).line_buf = buf;
2301 if (buf == NULL)
2302 return FALSE;
2303 }
2304
2305 if (main_file_name != NULL)
2306 {
2307 if (main_file_name[0] == '/' || directory_name == NULL)
2308 *filename_ptr = main_file_name;
2309 else
2310 {
2311 sprintf (buf, "%s%s", directory_name, main_file_name);
2312 *filename_ptr = buf;
2313 buf += filelen + 1;
2314 }
2315 }
2316
2317 if (func)
2318 {
2319 const char *function = func->name;
2320 char *colon;
2321
2322 /* The caller expects a symbol name. We actually have a
2323 function name, without the leading underscore. Put the
2324 underscore back in, so that the caller gets a symbol name. */
2325 if (bfd_get_symbol_leading_char (abfd) == '\0')
2326 strcpy (buf, function);
2327 else
2328 {
2329 buf[0] = bfd_get_symbol_leading_char (abfd);
2330 strcpy (buf + 1, function);
2331 }
2332
2333 /* Have to remove : stuff. */
2334 colon = strchr (buf, ':');
2335 if (colon != NULL)
2336 *colon = '\0';
2337 *functionname_ptr = buf;
2338 }
2339
2340 return TRUE;
2341 }
2342
2343 int
2344 NAME (aout, sizeof_headers) (bfd *abfd,
2345 struct bfd_link_info *info ATTRIBUTE_UNUSED)
2346 {
2347 return adata (abfd).exec_bytes_size;
2348 }
2349
2350 /* Free all information we have cached for this BFD. We can always
2351 read it again later if we need it. */
2352
2353 bfd_boolean
2354 NAME (aout, bfd_free_cached_info) (bfd *abfd)
2355 {
2356 asection *o;
2357
2358 if (bfd_get_format (abfd) != bfd_object)
2359 return TRUE;
2360
2361 #define BFCI_FREE(x) if (x != NULL) { free (x); x = NULL; }
2362 BFCI_FREE (obj_aout_symbols (abfd));
2363
2364 #ifdef USE_MMAP
2365 obj_aout_external_syms (abfd) = 0;
2366 bfd_free_window (&obj_aout_sym_window (abfd));
2367 bfd_free_window (&obj_aout_string_window (abfd));
2368 obj_aout_external_strings (abfd) = 0;
2369 #else
2370 BFCI_FREE (obj_aout_external_syms (abfd));
2371 BFCI_FREE (obj_aout_external_strings (abfd));
2372 #endif
2373 for (o = abfd->sections; o != NULL; o = o->next)
2374 BFCI_FREE (o->relocation);
2375 #undef BFCI_FREE
2376
2377 return TRUE;
2378 }
2379 \f
2380 /* Routine to create an entry in an a.out link hash table. */
2381
2382 struct bfd_hash_entry *
2383 NAME (aout, link_hash_newfunc) (struct bfd_hash_entry *entry,
2384 struct bfd_hash_table *table,
2385 const char *string)
2386 {
2387 struct aout_link_hash_entry *ret = (struct aout_link_hash_entry *) entry;
2388
2389 /* Allocate the structure if it has not already been allocated by a
2390 subclass. */
2391 if (ret == NULL)
2392 ret = bfd_hash_allocate (table, sizeof (* ret));
2393 if (ret == NULL)
2394 return NULL;
2395
2396 /* Call the allocation method of the superclass. */
2397 ret = (struct aout_link_hash_entry *)
2398 _bfd_link_hash_newfunc ((struct bfd_hash_entry *) ret, table, string);
2399 if (ret)
2400 {
2401 /* Set local fields. */
2402 ret->written = FALSE;
2403 ret->indx = -1;
2404 }
2405
2406 return (struct bfd_hash_entry *) ret;
2407 }
2408
2409 /* Initialize an a.out link hash table. */
2410
2411 bfd_boolean
2412 NAME (aout, link_hash_table_init) (struct aout_link_hash_table *table,
2413 bfd *abfd,
2414 struct bfd_hash_entry *(*newfunc) (struct bfd_hash_entry *,
2415 struct bfd_hash_table *,
2416 const char *),
2417 unsigned int entsize)
2418 {
2419 return _bfd_link_hash_table_init (&table->root, abfd, newfunc, entsize);
2420 }
2421
2422 /* Create an a.out link hash table. */
2423
2424 struct bfd_link_hash_table *
2425 NAME (aout, link_hash_table_create) (bfd *abfd)
2426 {
2427 struct aout_link_hash_table *ret;
2428 size_t amt = sizeof (struct aout_link_hash_table);
2429
2430 ret = bfd_malloc (amt);
2431 if (ret == NULL)
2432 return NULL;
2433 if (! NAME (aout, link_hash_table_init) (ret, abfd,
2434 NAME (aout, link_hash_newfunc),
2435 sizeof (struct aout_link_hash_entry)))
2436 {
2437 free (ret);
2438 return NULL;
2439 }
2440 return &ret->root;
2441 }
2442
2443 /* Free up the internal symbols read from an a.out file. */
2444
2445 static bfd_boolean
2446 aout_link_free_symbols (bfd *abfd)
2447 {
2448 if (obj_aout_external_syms (abfd) != NULL)
2449 {
2450 #ifdef USE_MMAP
2451 bfd_free_window (&obj_aout_sym_window (abfd));
2452 #else
2453 free ((void *) obj_aout_external_syms (abfd));
2454 #endif
2455 obj_aout_external_syms (abfd) = NULL;
2456 }
2457
2458 if (obj_aout_external_strings (abfd) != NULL)
2459 {
2460 #ifdef USE_MMAP
2461 bfd_free_window (&obj_aout_string_window (abfd));
2462 #else
2463 free ((void *) obj_aout_external_strings (abfd));
2464 #endif
2465 obj_aout_external_strings (abfd) = NULL;
2466 }
2467 return TRUE;
2468 }
2469
2470 /* Given an a.out BFD, add symbols to the global hash table as
2471 appropriate. */
2472
2473 bfd_boolean
2474 NAME (aout, link_add_symbols) (bfd *abfd, struct bfd_link_info *info)
2475 {
2476 switch (bfd_get_format (abfd))
2477 {
2478 case bfd_object:
2479 return aout_link_add_object_symbols (abfd, info);
2480 case bfd_archive:
2481 return _bfd_generic_link_add_archive_symbols
2482 (abfd, info, aout_link_check_archive_element);
2483 default:
2484 bfd_set_error (bfd_error_wrong_format);
2485 return FALSE;
2486 }
2487 }
2488
2489 /* Add symbols from an a.out object file. */
2490
2491 static bfd_boolean
2492 aout_link_add_object_symbols (bfd *abfd, struct bfd_link_info *info)
2493 {
2494 if (! aout_get_external_symbols (abfd))
2495 return FALSE;
2496 if (! aout_link_add_symbols (abfd, info))
2497 return FALSE;
2498 if (! info->keep_memory)
2499 {
2500 if (! aout_link_free_symbols (abfd))
2501 return FALSE;
2502 }
2503 return TRUE;
2504 }
2505
2506 /* Look through the internal symbols to see if this object file should
2507 be included in the link. We should include this object file if it
2508 defines any symbols which are currently undefined. If this object
2509 file defines a common symbol, then we may adjust the size of the
2510 known symbol but we do not include the object file in the link
2511 (unless there is some other reason to include it). */
2512
2513 static bfd_boolean
2514 aout_link_check_ar_symbols (bfd *abfd,
2515 struct bfd_link_info *info,
2516 bfd_boolean *pneeded,
2517 bfd **subsbfd)
2518 {
2519 struct external_nlist *p;
2520 struct external_nlist *pend;
2521 char *strings;
2522
2523 *pneeded = FALSE;
2524
2525 /* Look through all the symbols. */
2526 p = obj_aout_external_syms (abfd);
2527 pend = p + obj_aout_external_sym_count (abfd);
2528 strings = obj_aout_external_strings (abfd);
2529 for (; p < pend; p++)
2530 {
2531 int type = H_GET_8 (abfd, p->e_type);
2532 const char *name;
2533 struct bfd_link_hash_entry *h;
2534
2535 /* Ignore symbols that are not externally visible. This is an
2536 optimization only, as we check the type more thoroughly
2537 below. */
2538 if ((type & N_EXT) == 0
2539 || type == N_FN)
2540 continue;
2541
2542 name = strings + GET_WORD (abfd, p->e_strx);
2543 h = bfd_link_hash_lookup (info->hash, name, FALSE, FALSE, TRUE);
2544
2545 /* We are only interested in symbols that are currently
2546 undefined or common. */
2547 if (h == NULL
2548 || (h->type != bfd_link_hash_undefined
2549 && h->type != bfd_link_hash_common))
2550 continue;
2551
2552 if (type == (N_TEXT | N_EXT)
2553 || type == (N_DATA | N_EXT)
2554 || type == (N_BSS | N_EXT)
2555 || type == (N_ABS | N_EXT))
2556 {
2557 /* This object file defines this symbol. We must link it
2558 in. This is true regardless of whether the current
2559 definition of the symbol is undefined or common. If the
2560 current definition is common, we have a case in which we
2561 have already seen an object file including
2562 int a;
2563 and this object file from the archive includes
2564 int a = 5;
2565 In such a case we must include this object file.
2566
2567 FIXME: The SunOS 4.1.3 linker will pull in the archive
2568 element if the symbol is defined in the .data section,
2569 but not if it is defined in the .text section. That
2570 seems a bit crazy to me, and I haven't implemented it.
2571 However, it might be correct. */
2572 if (!(*info->callbacks
2573 ->add_archive_element) (info, abfd, name, subsbfd))
2574 continue;
2575 *pneeded = TRUE;
2576 return TRUE;
2577 }
2578
2579 if (type == (N_UNDF | N_EXT))
2580 {
2581 bfd_vma value;
2582
2583 value = GET_WORD (abfd, p->e_value);
2584 if (value != 0)
2585 {
2586 /* This symbol is common in the object from the archive
2587 file. */
2588 if (h->type == bfd_link_hash_undefined)
2589 {
2590 bfd *symbfd;
2591 unsigned int power;
2592
2593 symbfd = h->u.undef.abfd;
2594 if (symbfd == NULL)
2595 {
2596 /* This symbol was created as undefined from
2597 outside BFD. We assume that we should link
2598 in the object file. This is done for the -u
2599 option in the linker. */
2600 if (!(*info->callbacks
2601 ->add_archive_element) (info, abfd, name, subsbfd))
2602 return FALSE;
2603 *pneeded = TRUE;
2604 return TRUE;
2605 }
2606 /* Turn the current link symbol into a common
2607 symbol. It is already on the undefs list. */
2608 h->type = bfd_link_hash_common;
2609 h->u.c.p = bfd_hash_allocate (&info->hash->table,
2610 sizeof (struct bfd_link_hash_common_entry));
2611 if (h->u.c.p == NULL)
2612 return FALSE;
2613
2614 h->u.c.size = value;
2615
2616 /* FIXME: This isn't quite right. The maximum
2617 alignment of a common symbol should be set by the
2618 architecture of the output file, not of the input
2619 file. */
2620 power = bfd_log2 (value);
2621 if (power > bfd_get_arch_info (abfd)->section_align_power)
2622 power = bfd_get_arch_info (abfd)->section_align_power;
2623 h->u.c.p->alignment_power = power;
2624
2625 h->u.c.p->section = bfd_make_section_old_way (symbfd,
2626 "COMMON");
2627 }
2628 else
2629 {
2630 /* Adjust the size of the common symbol if
2631 necessary. */
2632 if (value > h->u.c.size)
2633 h->u.c.size = value;
2634 }
2635 }
2636 }
2637 }
2638
2639 /* We do not need this object file. */
2640 return TRUE;
2641 }
2642
2643 /* Check a single archive element to see if we need to include it in
2644 the link. *PNEEDED is set according to whether this element is
2645 needed in the link or not. This is called from
2646 _bfd_generic_link_add_archive_symbols. */
2647
2648 static bfd_boolean
2649 aout_link_check_archive_element (bfd *abfd,
2650 struct bfd_link_info *info,
2651 struct bfd_link_hash_entry *h ATTRIBUTE_UNUSED,
2652 const char *name ATTRIBUTE_UNUSED,
2653 bfd_boolean *pneeded)
2654 {
2655 bfd *oldbfd;
2656 bfd_boolean needed;
2657
2658 if (!aout_get_external_symbols (abfd))
2659 return FALSE;
2660
2661 oldbfd = abfd;
2662 if (!aout_link_check_ar_symbols (abfd, info, pneeded, &abfd))
2663 return FALSE;
2664
2665 needed = *pneeded;
2666 if (needed)
2667 {
2668 /* Potentially, the add_archive_element hook may have set a
2669 substitute BFD for us. */
2670 if (abfd != oldbfd)
2671 {
2672 if (!info->keep_memory
2673 && !aout_link_free_symbols (oldbfd))
2674 return FALSE;
2675 if (!aout_get_external_symbols (abfd))
2676 return FALSE;
2677 }
2678 if (!aout_link_add_symbols (abfd, info))
2679 return FALSE;
2680 }
2681
2682 if (!info->keep_memory || !needed)
2683 {
2684 if (!aout_link_free_symbols (abfd))
2685 return FALSE;
2686 }
2687
2688 return TRUE;
2689 }
2690
2691 /* Add all symbols from an object file to the hash table. */
2692
2693 static bfd_boolean
2694 aout_link_add_symbols (bfd *abfd, struct bfd_link_info *info)
2695 {
2696 bfd_boolean (*add_one_symbol)
2697 (struct bfd_link_info *, bfd *, const char *, flagword, asection *,
2698 bfd_vma, const char *, bfd_boolean, bfd_boolean,
2699 struct bfd_link_hash_entry **);
2700 struct external_nlist *syms;
2701 bfd_size_type sym_count;
2702 char *strings;
2703 bfd_boolean copy;
2704 struct aout_link_hash_entry **sym_hash;
2705 struct external_nlist *p;
2706 struct external_nlist *pend;
2707
2708 syms = obj_aout_external_syms (abfd);
2709 sym_count = obj_aout_external_sym_count (abfd);
2710 strings = obj_aout_external_strings (abfd);
2711 if (info->keep_memory)
2712 copy = FALSE;
2713 else
2714 copy = TRUE;
2715
2716 if (aout_backend_info (abfd)->add_dynamic_symbols != NULL)
2717 {
2718 if (! ((*aout_backend_info (abfd)->add_dynamic_symbols)
2719 (abfd, info, &syms, &sym_count, &strings)))
2720 return FALSE;
2721 }
2722
2723 /* We keep a list of the linker hash table entries that correspond
2724 to particular symbols. We could just look them up in the hash
2725 table, but keeping the list is more efficient. Perhaps this
2726 should be conditional on info->keep_memory. */
2727 sym_hash = bfd_alloc (abfd,
2728 sym_count * sizeof (struct aout_link_hash_entry *));
2729 if (sym_hash == NULL && sym_count != 0)
2730 return FALSE;
2731 obj_aout_sym_hashes (abfd) = sym_hash;
2732
2733 add_one_symbol = aout_backend_info (abfd)->add_one_symbol;
2734 if (add_one_symbol == NULL)
2735 add_one_symbol = _bfd_generic_link_add_one_symbol;
2736
2737 p = syms;
2738 pend = p + sym_count;
2739 for (; p < pend; p++, sym_hash++)
2740 {
2741 int type;
2742 const char *name;
2743 bfd_vma value;
2744 asection *section;
2745 flagword flags;
2746 const char *string;
2747
2748 *sym_hash = NULL;
2749
2750 type = H_GET_8 (abfd, p->e_type);
2751
2752 name = strings + GET_WORD (abfd, p->e_strx);
2753 value = GET_WORD (abfd, p->e_value);
2754 flags = BSF_GLOBAL;
2755 string = NULL;
2756 switch (type)
2757 {
2758 default:
2759 /* Anything else should be a debugging symbol. */
2760 BFD_ASSERT ((type & N_STAB) != 0);
2761 continue;
2762
2763 case N_UNDF:
2764 case N_ABS:
2765 case N_TEXT:
2766 case N_DATA:
2767 case N_BSS:
2768 case N_REG:
2769 case N_FN:
2770 /* Ignore symbols that are not externally visible. */
2771 continue;
2772
2773 case N_UNDF | N_EXT:
2774 if (value == 0)
2775 {
2776 section = bfd_und_section_ptr;
2777 flags = 0;
2778 }
2779 else
2780 section = bfd_com_section_ptr;
2781 break;
2782 case N_ABS | N_EXT:
2783 section = bfd_abs_section_ptr;
2784 break;
2785 case N_TEXT | N_EXT:
2786 section = obj_textsec (abfd);
2787 value -= bfd_section_vma (section);
2788 break;
2789 case N_DATA | N_EXT:
2790 /* Treat N_SETV symbols as N_DATA symbol; see comment in
2791 translate_from_native_sym_flags. */
2792 section = obj_datasec (abfd);
2793 value -= bfd_section_vma (section);
2794 break;
2795 case N_BSS | N_EXT:
2796 section = obj_bsssec (abfd);
2797 value -= bfd_section_vma (section);
2798 break;
2799 }
2800
2801 if (! ((*add_one_symbol)
2802 (info, abfd, name, flags, section, value, string, copy, FALSE,
2803 (struct bfd_link_hash_entry **) sym_hash)))
2804 return FALSE;
2805
2806 /* Restrict the maximum alignment of a common symbol based on
2807 the architecture, since a.out has no way to represent
2808 alignment requirements of a section in a .o file. FIXME:
2809 This isn't quite right: it should use the architecture of the
2810 output file, not the input files. */
2811 if ((*sym_hash)->root.type == bfd_link_hash_common
2812 && ((*sym_hash)->root.u.c.p->alignment_power >
2813 bfd_get_arch_info (abfd)->section_align_power))
2814 (*sym_hash)->root.u.c.p->alignment_power =
2815 bfd_get_arch_info (abfd)->section_align_power;
2816
2817 /* If this is a set symbol, and we are not building sets, then
2818 it is possible for the hash entry to not have been set. In
2819 such a case, treat the symbol as not globally defined. */
2820 if ((*sym_hash)->root.type == bfd_link_hash_new)
2821 {
2822 BFD_ASSERT ((flags & BSF_CONSTRUCTOR) != 0);
2823 *sym_hash = NULL;
2824 }
2825 }
2826
2827 return TRUE;
2828 }
2829 \f
2830 /* Look up an entry in an the header file hash table. */
2831
2832 #define aout_link_includes_lookup(table, string, create, copy) \
2833 ((struct aout_link_includes_entry *) \
2834 bfd_hash_lookup (&(table)->root, (string), (create), (copy)))
2835
2836 /* The function to create a new entry in the header file hash table. */
2837
2838 static struct bfd_hash_entry *
2839 aout_link_includes_newfunc (struct bfd_hash_entry *entry,
2840 struct bfd_hash_table *table,
2841 const char *string)
2842 {
2843 struct aout_link_includes_entry * ret =
2844 (struct aout_link_includes_entry *) entry;
2845
2846 /* Allocate the structure if it has not already been allocated by a
2847 subclass. */
2848 if (ret == NULL)
2849 ret = bfd_hash_allocate (table,
2850 sizeof (struct aout_link_includes_entry));
2851 if (ret == NULL)
2852 return NULL;
2853
2854 /* Call the allocation method of the superclass. */
2855 ret = ((struct aout_link_includes_entry *)
2856 bfd_hash_newfunc ((struct bfd_hash_entry *) ret, table, string));
2857 if (ret)
2858 /* Set local fields. */
2859 ret->totals = NULL;
2860
2861 return (struct bfd_hash_entry *) ret;
2862 }
2863
2864 static bfd_boolean
2865 aout_link_write_other_symbol (struct bfd_hash_entry *bh, void *data)
2866 {
2867 struct aout_link_hash_entry *h = (struct aout_link_hash_entry *) bh;
2868 struct aout_final_link_info *flaginfo = (struct aout_final_link_info *) data;
2869 bfd *output_bfd;
2870 int type;
2871 bfd_vma val;
2872 struct external_nlist outsym;
2873 bfd_size_type indx;
2874 size_t amt;
2875
2876 if (h->root.type == bfd_link_hash_warning)
2877 {
2878 h = (struct aout_link_hash_entry *) h->root.u.i.link;
2879 if (h->root.type == bfd_link_hash_new)
2880 return TRUE;
2881 }
2882
2883 output_bfd = flaginfo->output_bfd;
2884
2885 if (aout_backend_info (output_bfd)->write_dynamic_symbol != NULL)
2886 {
2887 if (! ((*aout_backend_info (output_bfd)->write_dynamic_symbol)
2888 (output_bfd, flaginfo->info, h)))
2889 {
2890 /* FIXME: No way to handle errors. */
2891 abort ();
2892 }
2893 }
2894
2895 if (h->written)
2896 return TRUE;
2897
2898 h->written = TRUE;
2899
2900 /* An indx of -2 means the symbol must be written. */
2901 if (h->indx != -2
2902 && (flaginfo->info->strip == strip_all
2903 || (flaginfo->info->strip == strip_some
2904 && bfd_hash_lookup (flaginfo->info->keep_hash, h->root.root.string,
2905 FALSE, FALSE) == NULL)))
2906 return TRUE;
2907
2908 switch (h->root.type)
2909 {
2910 default:
2911 abort ();
2912 /* Avoid variable not initialized warnings. */
2913 return TRUE;
2914 case bfd_link_hash_new:
2915 /* This can happen for set symbols when sets are not being
2916 built. */
2917 return TRUE;
2918 case bfd_link_hash_undefined:
2919 type = N_UNDF | N_EXT;
2920 val = 0;
2921 break;
2922 case bfd_link_hash_defined:
2923 case bfd_link_hash_defweak:
2924 {
2925 asection *sec;
2926
2927 sec = h->root.u.def.section->output_section;
2928 BFD_ASSERT (bfd_is_abs_section (sec)
2929 || sec->owner == output_bfd);
2930 if (sec == obj_textsec (output_bfd))
2931 type = h->root.type == bfd_link_hash_defined ? N_TEXT : N_WEAKT;
2932 else if (sec == obj_datasec (output_bfd))
2933 type = h->root.type == bfd_link_hash_defined ? N_DATA : N_WEAKD;
2934 else if (sec == obj_bsssec (output_bfd))
2935 type = h->root.type == bfd_link_hash_defined ? N_BSS : N_WEAKB;
2936 else
2937 type = h->root.type == bfd_link_hash_defined ? N_ABS : N_WEAKA;
2938 type |= N_EXT;
2939 val = (h->root.u.def.value
2940 + sec->vma
2941 + h->root.u.def.section->output_offset);
2942 }
2943 break;
2944 case bfd_link_hash_common:
2945 type = N_UNDF | N_EXT;
2946 val = h->root.u.c.size;
2947 break;
2948 case bfd_link_hash_undefweak:
2949 type = N_WEAKU;
2950 val = 0;
2951 /* Fall through. */
2952 case bfd_link_hash_indirect:
2953 case bfd_link_hash_warning:
2954 /* FIXME: Ignore these for now. The circumstances under which
2955 they should be written out are not clear to me. */
2956 return TRUE;
2957 }
2958
2959 H_PUT_8 (output_bfd, type, outsym.e_type);
2960 indx = add_to_stringtab (output_bfd, flaginfo->strtab, h->root.root.string,
2961 FALSE);
2962 if (indx == (bfd_size_type) -1)
2963 /* FIXME: No way to handle errors. */
2964 abort ();
2965
2966 PUT_WORD (output_bfd, indx, outsym.e_strx);
2967 PUT_WORD (output_bfd, val, outsym.e_value);
2968
2969 amt = EXTERNAL_NLIST_SIZE;
2970 if (bfd_seek (output_bfd, flaginfo->symoff, SEEK_SET) != 0
2971 || bfd_bwrite ((void *) &outsym, amt, output_bfd) != amt)
2972 /* FIXME: No way to handle errors. */
2973 abort ();
2974
2975 flaginfo->symoff += amt;
2976 h->indx = obj_aout_external_sym_count (output_bfd);
2977 ++obj_aout_external_sym_count (output_bfd);
2978
2979 return TRUE;
2980 }
2981
2982 /* Handle a link order which is supposed to generate a reloc. */
2983
2984 static bfd_boolean
2985 aout_link_reloc_link_order (struct aout_final_link_info *flaginfo,
2986 asection *o,
2987 struct bfd_link_order *p)
2988 {
2989 struct bfd_link_order_reloc *pr;
2990 int r_index;
2991 int r_extern;
2992 reloc_howto_type *howto;
2993 file_ptr *reloff_ptr;
2994 struct reloc_std_external srel;
2995 void * rel_ptr;
2996 bfd_size_type rel_size;
2997
2998 pr = p->u.reloc.p;
2999
3000 if (p->type == bfd_section_reloc_link_order)
3001 {
3002 r_extern = 0;
3003 if (bfd_is_abs_section (pr->u.section))
3004 r_index = N_ABS | N_EXT;
3005 else
3006 {
3007 BFD_ASSERT (pr->u.section->owner == flaginfo->output_bfd);
3008 r_index = pr->u.section->target_index;
3009 }
3010 }
3011 else
3012 {
3013 struct aout_link_hash_entry *h;
3014
3015 BFD_ASSERT (p->type == bfd_symbol_reloc_link_order);
3016 r_extern = 1;
3017 h = ((struct aout_link_hash_entry *)
3018 bfd_wrapped_link_hash_lookup (flaginfo->output_bfd, flaginfo->info,
3019 pr->u.name, FALSE, FALSE, TRUE));
3020 if (h != NULL
3021 && h->indx >= 0)
3022 r_index = h->indx;
3023 else if (h != NULL)
3024 {
3025 /* We decided to strip this symbol, but it turns out that we
3026 can't. Note that we lose the other and desc information
3027 here. I don't think that will ever matter for a global
3028 symbol. */
3029 h->indx = -2;
3030 h->written = FALSE;
3031 if (!aout_link_write_other_symbol (&h->root.root, flaginfo))
3032 return FALSE;
3033 r_index = h->indx;
3034 }
3035 else
3036 {
3037 (*flaginfo->info->callbacks->unattached_reloc)
3038 (flaginfo->info, pr->u.name, NULL, NULL, (bfd_vma) 0);
3039 r_index = 0;
3040 }
3041 }
3042
3043 howto = bfd_reloc_type_lookup (flaginfo->output_bfd, pr->reloc);
3044 if (howto == 0)
3045 {
3046 bfd_set_error (bfd_error_bad_value);
3047 return FALSE;
3048 }
3049
3050 if (o == obj_textsec (flaginfo->output_bfd))
3051 reloff_ptr = &flaginfo->treloff;
3052 else if (o == obj_datasec (flaginfo->output_bfd))
3053 reloff_ptr = &flaginfo->dreloff;
3054 else
3055 abort ();
3056
3057 #ifdef MY_put_reloc
3058 MY_put_reloc(flaginfo->output_bfd, r_extern, r_index, p->offset, howto,
3059 &srel);
3060 #else
3061 {
3062 int r_pcrel;
3063 int r_baserel;
3064 int r_jmptable;
3065 int r_relative;
3066 int r_length;
3067
3068 fprintf (stderr, "TODO: line %d in bfd/pdp11.c\n", __LINE__);
3069
3070 r_pcrel = howto->pc_relative;
3071 r_baserel = (howto->type & 8) != 0;
3072 r_jmptable = (howto->type & 16) != 0;
3073 r_relative = (howto->type & 32) != 0;
3074 r_length = howto->size;
3075
3076 PUT_WORD (flaginfo->output_bfd, p->offset, srel.r_address);
3077 if (bfd_header_big_endian (flaginfo->output_bfd))
3078 {
3079 srel.r_index[0] = r_index >> 16;
3080 srel.r_index[1] = r_index >> 8;
3081 srel.r_index[2] = r_index;
3082 srel.r_type[0] =
3083 ((r_extern ? RELOC_STD_BITS_EXTERN_BIG : 0)
3084 | (r_pcrel ? RELOC_STD_BITS_PCREL_BIG : 0)
3085 | (r_baserel ? RELOC_STD_BITS_BASEREL_BIG : 0)
3086 | (r_jmptable ? RELOC_STD_BITS_JMPTABLE_BIG : 0)
3087 | (r_relative ? RELOC_STD_BITS_RELATIVE_BIG : 0)
3088 | (r_length << RELOC_STD_BITS_LENGTH_SH_BIG));
3089 }
3090 else
3091 {
3092 srel.r_index[2] = r_index >> 16;
3093 srel.r_index[1] = r_index >> 8;
3094 srel.r_index[0] = r_index;
3095 srel.r_type[0] =
3096 ((r_extern ? RELOC_STD_BITS_EXTERN_LITTLE : 0)
3097 | (r_pcrel ? RELOC_STD_BITS_PCREL_LITTLE : 0)
3098 | (r_baserel ? RELOC_STD_BITS_BASEREL_LITTLE : 0)
3099 | (r_jmptable ? RELOC_STD_BITS_JMPTABLE_LITTLE : 0)
3100 | (r_relative ? RELOC_STD_BITS_RELATIVE_LITTLE : 0)
3101 | (r_length << RELOC_STD_BITS_LENGTH_SH_LITTLE));
3102 }
3103 }
3104 #endif
3105 rel_ptr = (void *) &srel;
3106
3107 /* We have to write the addend into the object file, since
3108 standard a.out relocs are in place. It would be more
3109 reliable if we had the current contents of the file here,
3110 rather than assuming zeroes, but we can't read the file since
3111 it was opened using bfd_openw. */
3112 if (pr->addend != 0)
3113 {
3114 bfd_size_type size;
3115 bfd_reloc_status_type r;
3116 bfd_byte *buf;
3117 bfd_boolean ok;
3118
3119 size = bfd_get_reloc_size (howto);
3120 buf = bfd_zmalloc (size);
3121 if (buf == NULL && size != 0)
3122 return FALSE;
3123 r = MY_relocate_contents (howto, flaginfo->output_bfd,
3124 pr->addend, buf);
3125 switch (r)
3126 {
3127 case bfd_reloc_ok:
3128 break;
3129 default:
3130 case bfd_reloc_outofrange:
3131 abort ();
3132 case bfd_reloc_overflow:
3133 (*flaginfo->info->callbacks->reloc_overflow)
3134 (flaginfo->info, NULL,
3135 (p->type == bfd_section_reloc_link_order
3136 ? bfd_section_name (pr->u.section)
3137 : pr->u.name),
3138 howto->name, pr->addend, NULL,
3139 (asection *) NULL, (bfd_vma) 0);
3140 break;
3141 }
3142 ok = bfd_set_section_contents (flaginfo->output_bfd, o,
3143 (void *) buf,
3144 (file_ptr) p->offset,
3145 size);
3146 free (buf);
3147 if (! ok)
3148 return FALSE;
3149 }
3150
3151 rel_size = obj_reloc_entry_size (flaginfo->output_bfd);
3152 if (bfd_seek (flaginfo->output_bfd, *reloff_ptr, SEEK_SET) != 0
3153 || bfd_bwrite (rel_ptr, rel_size, flaginfo->output_bfd) != rel_size)
3154 return FALSE;
3155
3156 *reloff_ptr += rel_size;
3157
3158 /* Assert that the relocs have not run into the symbols, and that n
3159 the text relocs have not run into the data relocs. */
3160 BFD_ASSERT (*reloff_ptr <= obj_sym_filepos (flaginfo->output_bfd)
3161 && (reloff_ptr != &flaginfo->treloff
3162 || (*reloff_ptr
3163 <= obj_datasec (flaginfo->output_bfd)->rel_filepos)));
3164
3165 return TRUE;
3166 }
3167
3168 /* Get the section corresponding to a reloc index. */
3169
3170 static inline asection *
3171 aout_reloc_type_to_section (bfd *abfd, int type)
3172 {
3173 switch (type)
3174 {
3175 case RTEXT: return obj_textsec (abfd);
3176 case RDATA: return obj_datasec (abfd);
3177 case RBSS: return obj_bsssec (abfd);
3178 case RABS: return bfd_abs_section_ptr;
3179 case REXT: return bfd_und_section_ptr;
3180 default: abort ();
3181 }
3182 }
3183
3184 static bfd_boolean
3185 pdp11_aout_link_input_section (struct aout_final_link_info *flaginfo,
3186 bfd *input_bfd,
3187 asection *input_section,
3188 bfd_byte *relocs,
3189 bfd_size_type rel_size,
3190 bfd_byte *contents)
3191 {
3192 bfd_boolean (*check_dynamic_reloc)
3193 (struct bfd_link_info *, bfd *, asection *,
3194 struct aout_link_hash_entry *, void *, bfd_byte *, bfd_boolean *,
3195 bfd_vma *);
3196 bfd *output_bfd;
3197 bfd_boolean relocatable;
3198 struct external_nlist *syms;
3199 char *strings;
3200 struct aout_link_hash_entry **sym_hashes;
3201 int *symbol_map;
3202 bfd_byte *rel;
3203 bfd_byte *rel_end;
3204
3205 output_bfd = flaginfo->output_bfd;
3206 check_dynamic_reloc = aout_backend_info (output_bfd)->check_dynamic_reloc;
3207
3208 BFD_ASSERT (obj_reloc_entry_size (input_bfd) == RELOC_SIZE);
3209 BFD_ASSERT (input_bfd->xvec->header_byteorder
3210 == output_bfd->xvec->header_byteorder);
3211
3212 relocatable = bfd_link_relocatable (flaginfo->info);
3213 syms = obj_aout_external_syms (input_bfd);
3214 strings = obj_aout_external_strings (input_bfd);
3215 sym_hashes = obj_aout_sym_hashes (input_bfd);
3216 symbol_map = flaginfo->symbol_map;
3217
3218 rel = relocs;
3219 rel_end = rel + rel_size;
3220 for (; rel < rel_end; rel += RELOC_SIZE)
3221 {
3222 bfd_vma r_addr;
3223 int r_index;
3224 int r_type;
3225 int r_pcrel;
3226 int r_extern;
3227 reloc_howto_type *howto;
3228 struct aout_link_hash_entry *h = NULL;
3229 bfd_vma relocation;
3230 bfd_reloc_status_type r;
3231 int reloc_entry;
3232
3233 reloc_entry = GET_WORD (input_bfd, (void *) rel);
3234 if (reloc_entry == 0)
3235 continue;
3236
3237 {
3238 unsigned int howto_idx;
3239
3240 r_index = (reloc_entry & RIDXMASK) >> 4;
3241 r_type = reloc_entry & RTYPE;
3242 r_pcrel = reloc_entry & RELFLG;
3243 r_addr = (char *) rel - (char *) relocs;
3244
3245 r_extern = (r_type == REXT);
3246
3247 howto_idx = r_pcrel;
3248 BFD_ASSERT (howto_idx < TABLE_SIZE (howto_table_pdp11));
3249 howto = howto_table_pdp11 + howto_idx;
3250 }
3251
3252 if (relocatable)
3253 {
3254 /* We are generating a relocatable output file, and must
3255 modify the reloc accordingly. */
3256 if (r_extern)
3257 {
3258 /* If we know the symbol this relocation is against,
3259 convert it into a relocation against a section. This
3260 is what the native linker does. */
3261 h = sym_hashes[r_index];
3262 if (h != NULL
3263 && (h->root.type == bfd_link_hash_defined
3264 || h->root.type == bfd_link_hash_defweak))
3265 {
3266 asection *output_section;
3267
3268 /* Compute a new r_index. */
3269 output_section = h->root.u.def.section->output_section;
3270 if (output_section == obj_textsec (output_bfd))
3271 r_type = N_TEXT;
3272 else if (output_section == obj_datasec (output_bfd))
3273 r_type = N_DATA;
3274 else if (output_section == obj_bsssec (output_bfd))
3275 r_type = N_BSS;
3276 else
3277 r_type = N_ABS;
3278
3279 /* Add the symbol value and the section VMA to the
3280 addend stored in the contents. */
3281 relocation = (h->root.u.def.value
3282 + output_section->vma
3283 + h->root.u.def.section->output_offset);
3284 }
3285 else
3286 {
3287 /* We must change r_index according to the symbol
3288 map. */
3289 r_index = symbol_map[r_index];
3290
3291 if (r_index == -1)
3292 {
3293 if (h != NULL)
3294 {
3295 /* We decided to strip this symbol, but it
3296 turns out that we can't. Note that we
3297 lose the other and desc information here.
3298 I don't think that will ever matter for a
3299 global symbol. */
3300 if (h->indx < 0)
3301 {
3302 h->indx = -2;
3303 h->written = FALSE;
3304 if (!aout_link_write_other_symbol (&h->root.root,
3305 flaginfo))
3306 return FALSE;
3307 }
3308 r_index = h->indx;
3309 }
3310 else
3311 {
3312 const char *name;
3313
3314 name = strings + GET_WORD (input_bfd,
3315 syms[r_index].e_strx);
3316 (*flaginfo->info->callbacks->unattached_reloc)
3317 (flaginfo->info, name, input_bfd, input_section,
3318 r_addr);
3319 r_index = 0;
3320 }
3321 }
3322
3323 relocation = 0;
3324 }
3325
3326 /* Write out the new r_index value. */
3327 reloc_entry = GET_WORD (input_bfd, rel);
3328 reloc_entry &= RIDXMASK;
3329 reloc_entry |= r_index << 4;
3330 PUT_WORD (input_bfd, reloc_entry, rel);
3331 }
3332 else
3333 {
3334 asection *section;
3335
3336 /* This is a relocation against a section. We must
3337 adjust by the amount that the section moved. */
3338 section = aout_reloc_type_to_section (input_bfd, r_type);
3339 relocation = (section->output_section->vma
3340 + section->output_offset
3341 - section->vma);
3342 }
3343
3344 /* Change the address of the relocation. */
3345 fprintf (stderr, "TODO: change the address of the relocation\n");
3346
3347 /* Adjust a PC relative relocation by removing the reference
3348 to the original address in the section and including the
3349 reference to the new address. */
3350 if (r_pcrel)
3351 relocation -= (input_section->output_section->vma
3352 + input_section->output_offset
3353 - input_section->vma);
3354
3355 #ifdef MY_relocatable_reloc
3356 MY_relocatable_reloc (howto, output_bfd, rel, relocation, r_addr);
3357 #endif
3358
3359 if (relocation == 0)
3360 r = bfd_reloc_ok;
3361 else
3362 r = MY_relocate_contents (howto,
3363 input_bfd, relocation,
3364 contents + r_addr);
3365 }
3366 else
3367 {
3368 bfd_boolean hundef;
3369
3370 /* We are generating an executable, and must do a full
3371 relocation. */
3372 hundef = FALSE;
3373 if (r_extern)
3374 {
3375 h = sym_hashes[r_index];
3376
3377 if (h != NULL
3378 && (h->root.type == bfd_link_hash_defined
3379 || h->root.type == bfd_link_hash_defweak))
3380 {
3381 relocation = (h->root.u.def.value
3382 + h->root.u.def.section->output_section->vma
3383 + h->root.u.def.section->output_offset);
3384 }
3385 else if (h != NULL
3386 && h->root.type == bfd_link_hash_undefweak)
3387 relocation = 0;
3388 else
3389 {
3390 hundef = TRUE;
3391 relocation = 0;
3392 }
3393 }
3394 else
3395 {
3396 asection *section;
3397
3398 section = aout_reloc_type_to_section (input_bfd, r_type);
3399 relocation = (section->output_section->vma
3400 + section->output_offset
3401 - section->vma);
3402 if (r_pcrel)
3403 relocation += input_section->vma;
3404 }
3405
3406 if (check_dynamic_reloc != NULL)
3407 {
3408 bfd_boolean skip;
3409
3410 if (! ((*check_dynamic_reloc)
3411 (flaginfo->info, input_bfd, input_section, h,
3412 (void *) rel, contents, &skip, &relocation)))
3413 return FALSE;
3414 if (skip)
3415 continue;
3416 }
3417
3418 /* Now warn if a global symbol is undefined. We could not
3419 do this earlier, because check_dynamic_reloc might want
3420 to skip this reloc. */
3421 if (hundef && ! bfd_link_pic (flaginfo->info))
3422 {
3423 const char *name;
3424
3425 if (h != NULL)
3426 name = h->root.root.string;
3427 else
3428 name = strings + GET_WORD (input_bfd, syms[r_index].e_strx);
3429 (*flaginfo->info->callbacks->undefined_symbol)
3430 (flaginfo->info, name, input_bfd, input_section,
3431 r_addr, TRUE);
3432 }
3433
3434 r = MY_final_link_relocate (howto,
3435 input_bfd, input_section,
3436 contents, r_addr, relocation,
3437 (bfd_vma) 0);
3438 }
3439
3440 if (r != bfd_reloc_ok)
3441 {
3442 switch (r)
3443 {
3444 default:
3445 case bfd_reloc_outofrange:
3446 abort ();
3447 case bfd_reloc_overflow:
3448 {
3449 const char *name;
3450
3451 if (h != NULL)
3452 name = NULL;
3453 else if (r_extern)
3454 name = strings + GET_WORD (input_bfd,
3455 syms[r_index].e_strx);
3456 else
3457 {
3458 asection *s;
3459
3460 s = aout_reloc_type_to_section (input_bfd, r_type);
3461 name = bfd_section_name (s);
3462 }
3463 (*flaginfo->info->callbacks->reloc_overflow)
3464 (flaginfo->info, (h ? &h->root : NULL), name, howto->name,
3465 (bfd_vma) 0, input_bfd, input_section, r_addr);
3466 }
3467 break;
3468 }
3469 }
3470 }
3471
3472 return TRUE;
3473 }
3474
3475 /* Link an a.out section into the output file. */
3476
3477 static bfd_boolean
3478 aout_link_input_section (struct aout_final_link_info *flaginfo,
3479 bfd *input_bfd,
3480 asection *input_section,
3481 file_ptr *reloff_ptr,
3482 bfd_size_type rel_size)
3483 {
3484 bfd_size_type input_size;
3485 void * relocs;
3486
3487 /* Get the section contents. */
3488 input_size = input_section->size;
3489 if (! bfd_get_section_contents (input_bfd, input_section,
3490 (void *) flaginfo->contents,
3491 (file_ptr) 0, input_size))
3492 return FALSE;
3493
3494 /* Read in the relocs if we haven't already done it. */
3495 if (aout_section_data (input_section) != NULL
3496 && aout_section_data (input_section)->relocs != NULL)
3497 relocs = aout_section_data (input_section)->relocs;
3498 else
3499 {
3500 relocs = flaginfo->relocs;
3501 if (rel_size > 0)
3502 {
3503 if (bfd_seek (input_bfd, input_section->rel_filepos, SEEK_SET) != 0
3504 || bfd_bread (relocs, rel_size, input_bfd) != rel_size)
3505 return FALSE;
3506 }
3507 }
3508
3509 /* Relocate the section contents. */
3510 if (! pdp11_aout_link_input_section (flaginfo, input_bfd, input_section,
3511 (bfd_byte *) relocs,
3512 rel_size, flaginfo->contents))
3513 return FALSE;
3514
3515 /* Write out the section contents. */
3516 if (! bfd_set_section_contents (flaginfo->output_bfd,
3517 input_section->output_section,
3518 (void *) flaginfo->contents,
3519 (file_ptr) input_section->output_offset,
3520 input_size))
3521 return FALSE;
3522
3523 /* If we are producing relocatable output, the relocs were
3524 modified, and we now write them out. */
3525 if (bfd_link_relocatable (flaginfo->info) && rel_size > 0)
3526 {
3527 if (bfd_seek (flaginfo->output_bfd, *reloff_ptr, SEEK_SET) != 0)
3528 return FALSE;
3529 if (bfd_bwrite (relocs, rel_size, flaginfo->output_bfd) != rel_size)
3530 return FALSE;
3531 *reloff_ptr += rel_size;
3532
3533 /* Assert that the relocs have not run into the symbols, and
3534 that if these are the text relocs they have not run into the
3535 data relocs. */
3536 BFD_ASSERT (*reloff_ptr <= obj_sym_filepos (flaginfo->output_bfd)
3537 && (reloff_ptr != &flaginfo->treloff
3538 || (*reloff_ptr
3539 <= obj_datasec (flaginfo->output_bfd)->rel_filepos)));
3540 }
3541
3542 return TRUE;
3543 }
3544
3545 /* Link an a.out input BFD into the output file. */
3546
3547 static bfd_boolean
3548 aout_link_input_bfd (struct aout_final_link_info *flaginfo, bfd *input_bfd)
3549 {
3550 BFD_ASSERT (bfd_get_format (input_bfd) == bfd_object);
3551
3552 /* If this is a dynamic object, it may need special handling. */
3553 if ((input_bfd->flags & DYNAMIC) != 0
3554 && aout_backend_info (input_bfd)->link_dynamic_object != NULL)
3555 return ((*aout_backend_info (input_bfd)->link_dynamic_object)
3556 (flaginfo->info, input_bfd));
3557
3558 /* Get the symbols. We probably have them already, unless
3559 flaginfo->info->keep_memory is FALSE. */
3560 if (! aout_get_external_symbols (input_bfd))
3561 return FALSE;
3562
3563 /* Write out the symbols and get a map of the new indices. The map
3564 is placed into flaginfo->symbol_map. */
3565 if (! aout_link_write_symbols (flaginfo, input_bfd))
3566 return FALSE;
3567
3568 /* Relocate and write out the sections. These functions use the
3569 symbol map created by aout_link_write_symbols. The linker_mark
3570 field will be set if these sections are to be included in the
3571 link, which will normally be the case. */
3572 if (obj_textsec (input_bfd)->linker_mark)
3573 {
3574 if (! aout_link_input_section (flaginfo, input_bfd,
3575 obj_textsec (input_bfd),
3576 &flaginfo->treloff,
3577 exec_hdr (input_bfd)->a_trsize))
3578 return FALSE;
3579 }
3580 if (obj_datasec (input_bfd)->linker_mark)
3581 {
3582 if (! aout_link_input_section (flaginfo, input_bfd,
3583 obj_datasec (input_bfd),
3584 &flaginfo->dreloff,
3585 exec_hdr (input_bfd)->a_drsize))
3586 return FALSE;
3587 }
3588
3589 /* If we are not keeping memory, we don't need the symbols any
3590 longer. We still need them if we are keeping memory, because the
3591 strings in the hash table point into them. */
3592 if (! flaginfo->info->keep_memory)
3593 {
3594 if (! aout_link_free_symbols (input_bfd))
3595 return FALSE;
3596 }
3597
3598 return TRUE;
3599 }
3600
3601 /* Do the final link step. This is called on the output BFD. The
3602 INFO structure should point to a list of BFDs linked through the
3603 link.next field which can be used to find each BFD which takes part
3604 in the output. Also, each section in ABFD should point to a list
3605 of bfd_link_order structures which list all the input sections for
3606 the output section. */
3607
3608 bfd_boolean
3609 NAME (aout, final_link) (bfd *abfd,
3610 struct bfd_link_info *info,
3611 void (*callback) (bfd *, file_ptr *, file_ptr *, file_ptr *))
3612 {
3613 struct aout_final_link_info aout_info;
3614 bfd_boolean includes_hash_initialized = FALSE;
3615 bfd *sub;
3616 bfd_size_type trsize, drsize;
3617 bfd_size_type max_contents_size;
3618 bfd_size_type max_relocs_size;
3619 bfd_size_type max_sym_count;
3620 struct bfd_link_order *p;
3621 asection *o;
3622 bfd_boolean have_link_order_relocs;
3623
3624 if (bfd_link_pic (info))
3625 abfd->flags |= DYNAMIC;
3626
3627 aout_info.info = info;
3628 aout_info.output_bfd = abfd;
3629 aout_info.contents = NULL;
3630 aout_info.relocs = NULL;
3631 aout_info.symbol_map = NULL;
3632 aout_info.output_syms = NULL;
3633
3634 if (!bfd_hash_table_init_n (&aout_info.includes.root,
3635 aout_link_includes_newfunc,
3636 sizeof (struct aout_link_includes_entry),
3637 251))
3638 goto error_return;
3639 includes_hash_initialized = TRUE;
3640
3641 /* Figure out the largest section size. Also, if generating
3642 relocatable output, count the relocs. */
3643 trsize = 0;
3644 drsize = 0;
3645 max_contents_size = 0;
3646 max_relocs_size = 0;
3647 max_sym_count = 0;
3648 for (sub = info->input_bfds; sub != NULL; sub = sub->link.next)
3649 {
3650 size_t sz;
3651
3652 if (bfd_link_relocatable (info))
3653 {
3654 if (bfd_get_flavour (sub) == bfd_target_aout_flavour)
3655 {
3656 trsize += exec_hdr (sub)->a_trsize;
3657 drsize += exec_hdr (sub)->a_drsize;
3658 }
3659 else
3660 {
3661 /* FIXME: We need to identify the .text and .data sections
3662 and call get_reloc_upper_bound and canonicalize_reloc to
3663 work out the number of relocs needed, and then multiply
3664 by the reloc size. */
3665 _bfd_error_handler
3666 /* xgettext:c-format */
3667 (_("%pB: relocatable link from %s to %s not supported"),
3668 abfd, sub->xvec->name, abfd->xvec->name);
3669 bfd_set_error (bfd_error_invalid_operation);
3670 goto error_return;
3671 }
3672 }
3673
3674 if (bfd_get_flavour (sub) == bfd_target_aout_flavour)
3675 {
3676 sz = obj_textsec (sub)->size;
3677 if (sz > max_contents_size)
3678 max_contents_size = sz;
3679 sz = obj_datasec (sub)->size;
3680 if (sz > max_contents_size)
3681 max_contents_size = sz;
3682
3683 sz = exec_hdr (sub)->a_trsize;
3684 if (sz > max_relocs_size)
3685 max_relocs_size = sz;
3686 sz = exec_hdr (sub)->a_drsize;
3687 if (sz > max_relocs_size)
3688 max_relocs_size = sz;
3689
3690 sz = obj_aout_external_sym_count (sub);
3691 if (sz > max_sym_count)
3692 max_sym_count = sz;
3693 }
3694 }
3695
3696 if (bfd_link_relocatable (info))
3697 {
3698 if (obj_textsec (abfd) != NULL)
3699 trsize += (_bfd_count_link_order_relocs (obj_textsec (abfd)
3700 ->map_head.link_order)
3701 * obj_reloc_entry_size (abfd));
3702 if (obj_datasec (abfd) != NULL)
3703 drsize += (_bfd_count_link_order_relocs (obj_datasec (abfd)
3704 ->map_head.link_order)
3705 * obj_reloc_entry_size (abfd));
3706 }
3707
3708 exec_hdr (abfd)->a_trsize = trsize;
3709 exec_hdr (abfd)->a_drsize = drsize;
3710 exec_hdr (abfd)->a_entry = bfd_get_start_address (abfd);
3711
3712 /* Adjust the section sizes and vmas according to the magic number.
3713 This sets a_text, a_data and a_bss in the exec_hdr and sets the
3714 filepos for each section. */
3715 if (! NAME (aout, adjust_sizes_and_vmas) (abfd))
3716 goto error_return;
3717
3718 /* The relocation and symbol file positions differ among a.out
3719 targets. We are passed a callback routine from the backend
3720 specific code to handle this.
3721 FIXME: At this point we do not know how much space the symbol
3722 table will require. This will not work for any (nonstandard)
3723 a.out target that needs to know the symbol table size before it
3724 can compute the relocation file positions. */
3725 (*callback) (abfd, &aout_info.treloff, &aout_info.dreloff,
3726 &aout_info.symoff);
3727 obj_textsec (abfd)->rel_filepos = aout_info.treloff;
3728 obj_datasec (abfd)->rel_filepos = aout_info.dreloff;
3729 obj_sym_filepos (abfd) = aout_info.symoff;
3730
3731 /* We keep a count of the symbols as we output them. */
3732 obj_aout_external_sym_count (abfd) = 0;
3733
3734 /* We accumulate the string table as we write out the symbols. */
3735 aout_info.strtab = _bfd_stringtab_init ();
3736 if (aout_info.strtab == NULL)
3737 goto error_return;
3738
3739 /* Allocate buffers to hold section contents and relocs. */
3740 aout_info.contents = bfd_malloc (max_contents_size);
3741 aout_info.relocs = bfd_malloc (max_relocs_size);
3742 aout_info.symbol_map = bfd_malloc (max_sym_count * sizeof (int *));
3743 aout_info.output_syms = bfd_malloc ((max_sym_count + 1)
3744 * sizeof (struct external_nlist));
3745 if ((aout_info.contents == NULL && max_contents_size != 0)
3746 || (aout_info.relocs == NULL && max_relocs_size != 0)
3747 || (aout_info.symbol_map == NULL && max_sym_count != 0)
3748 || aout_info.output_syms == NULL)
3749 goto error_return;
3750
3751 /* If we have a symbol named __DYNAMIC, force it out now. This is
3752 required by SunOS. Doing this here rather than in sunos.c is a
3753 hack, but it's easier than exporting everything which would be
3754 needed. */
3755 {
3756 struct aout_link_hash_entry *h;
3757
3758 h = aout_link_hash_lookup (aout_hash_table (info), "__DYNAMIC",
3759 FALSE, FALSE, FALSE);
3760 if (h != NULL)
3761 aout_link_write_other_symbol (&h->root.root, &aout_info);
3762 }
3763
3764 /* The most time efficient way to do the link would be to read all
3765 the input object files into memory and then sort out the
3766 information into the output file. Unfortunately, that will
3767 probably use too much memory. Another method would be to step
3768 through everything that composes the text section and write it
3769 out, and then everything that composes the data section and write
3770 it out, and then write out the relocs, and then write out the
3771 symbols. Unfortunately, that requires reading stuff from each
3772 input file several times, and we will not be able to keep all the
3773 input files open simultaneously, and reopening them will be slow.
3774
3775 What we do is basically process one input file at a time. We do
3776 everything we need to do with an input file once--copy over the
3777 section contents, handle the relocation information, and write
3778 out the symbols--and then we throw away the information we read
3779 from it. This approach requires a lot of lseeks of the output
3780 file, which is unfortunate but still faster than reopening a lot
3781 of files.
3782
3783 We use the output_has_begun field of the input BFDs to see
3784 whether we have already handled it. */
3785 for (sub = info->input_bfds; sub != NULL; sub = sub->link.next)
3786 sub->output_has_begun = FALSE;
3787
3788 /* Mark all sections which are to be included in the link. This
3789 will normally be every section. We need to do this so that we
3790 can identify any sections which the linker has decided to not
3791 include. */
3792 for (o = abfd->sections; o != NULL; o = o->next)
3793 {
3794 for (p = o->map_head.link_order; p != NULL; p = p->next)
3795 if (p->type == bfd_indirect_link_order)
3796 p->u.indirect.section->linker_mark = TRUE;
3797 }
3798
3799 have_link_order_relocs = FALSE;
3800 for (o = abfd->sections; o != NULL; o = o->next)
3801 {
3802 for (p = o->map_head.link_order;
3803 p != NULL;
3804 p = p->next)
3805 {
3806 if (p->type == bfd_indirect_link_order
3807 && (bfd_get_flavour (p->u.indirect.section->owner)
3808 == bfd_target_aout_flavour))
3809 {
3810 bfd *input_bfd;
3811
3812 input_bfd = p->u.indirect.section->owner;
3813 if (! input_bfd->output_has_begun)
3814 {
3815 if (! aout_link_input_bfd (&aout_info, input_bfd))
3816 goto error_return;
3817 input_bfd->output_has_begun = TRUE;
3818 }
3819 }
3820 else if (p->type == bfd_section_reloc_link_order
3821 || p->type == bfd_symbol_reloc_link_order)
3822 /* These are handled below. */
3823 have_link_order_relocs = TRUE;
3824 else
3825 {
3826 if (! _bfd_default_link_order (abfd, info, o, p))
3827 goto error_return;
3828 }
3829 }
3830 }
3831
3832 /* Write out any symbols that we have not already written out. */
3833 bfd_hash_traverse (&info->hash->table,
3834 aout_link_write_other_symbol,
3835 &aout_info);
3836
3837 /* Now handle any relocs we were asked to create by the linker.
3838 These did not come from any input file. We must do these after
3839 we have written out all the symbols, so that we know the symbol
3840 indices to use. */
3841 if (have_link_order_relocs)
3842 {
3843 for (o = abfd->sections; o != NULL; o = o->next)
3844 {
3845 for (p = o->map_head.link_order;
3846 p != NULL;
3847 p = p->next)
3848 {
3849 if (p->type == bfd_section_reloc_link_order
3850 || p->type == bfd_symbol_reloc_link_order)
3851 {
3852 if (! aout_link_reloc_link_order (&aout_info, o, p))
3853 goto error_return;
3854 }
3855 }
3856 }
3857 }
3858
3859 if (aout_info.contents != NULL)
3860 {
3861 free (aout_info.contents);
3862 aout_info.contents = NULL;
3863 }
3864 if (aout_info.relocs != NULL)
3865 {
3866 free (aout_info.relocs);
3867 aout_info.relocs = NULL;
3868 }
3869 if (aout_info.symbol_map != NULL)
3870 {
3871 free (aout_info.symbol_map);
3872 aout_info.symbol_map = NULL;
3873 }
3874 if (aout_info.output_syms != NULL)
3875 {
3876 free (aout_info.output_syms);
3877 aout_info.output_syms = NULL;
3878 }
3879 if (includes_hash_initialized)
3880 {
3881 bfd_hash_table_free (&aout_info.includes.root);
3882 includes_hash_initialized = FALSE;
3883 }
3884
3885 /* Finish up any dynamic linking we may be doing. */
3886 if (aout_backend_info (abfd)->finish_dynamic_link != NULL)
3887 {
3888 if (! (*aout_backend_info (abfd)->finish_dynamic_link) (abfd, info))
3889 goto error_return;
3890 }
3891
3892 /* Update the header information. */
3893 abfd->symcount = obj_aout_external_sym_count (abfd);
3894 exec_hdr (abfd)->a_syms = abfd->symcount * EXTERNAL_NLIST_SIZE;
3895 obj_str_filepos (abfd) = obj_sym_filepos (abfd) + exec_hdr (abfd)->a_syms;
3896 obj_textsec (abfd)->reloc_count =
3897 exec_hdr (abfd)->a_trsize / obj_reloc_entry_size (abfd);
3898 obj_datasec (abfd)->reloc_count =
3899 exec_hdr (abfd)->a_drsize / obj_reloc_entry_size (abfd);
3900
3901 /* Write out the string table, unless there are no symbols. */
3902 if (abfd->symcount > 0)
3903 {
3904 if (bfd_seek (abfd, obj_str_filepos (abfd), SEEK_SET) != 0
3905 || ! emit_stringtab (abfd, aout_info.strtab))
3906 goto error_return;
3907 }
3908 else if (obj_textsec (abfd)->reloc_count == 0
3909 && obj_datasec (abfd)->reloc_count == 0)
3910 {
3911 /* The layout of a typical a.out file is header, text, data,
3912 relocs, symbols, string table. When there are no relocs,
3913 symbols or string table, the last thing in the file is data
3914 and a_data may be rounded up. However we may have a smaller
3915 sized .data section and thus not written final padding. The
3916 same thing can happen with text if there is no data. Write
3917 final padding here to extend the file. */
3918 file_ptr pos = 0;
3919
3920 if (exec_hdr (abfd)->a_data > obj_datasec (abfd)->size)
3921 pos = obj_datasec (abfd)->filepos + exec_hdr (abfd)->a_data;
3922 else if (obj_datasec (abfd)->size == 0
3923 && exec_hdr (abfd)->a_text > obj_textsec (abfd)->size)
3924 pos = obj_textsec (abfd)->filepos + exec_hdr (abfd)->a_text;
3925 if (pos != 0)
3926 {
3927 bfd_byte b = 0;
3928
3929 if (bfd_seek (abfd, pos - 1, SEEK_SET) != 0
3930 || bfd_bwrite (&b, (bfd_size_type) 1, abfd) != 1)
3931 goto error_return;
3932 }
3933 }
3934
3935 return TRUE;
3936
3937 error_return:
3938 if (aout_info.contents != NULL)
3939 free (aout_info.contents);
3940 if (aout_info.relocs != NULL)
3941 free (aout_info.relocs);
3942 if (aout_info.symbol_map != NULL)
3943 free (aout_info.symbol_map);
3944 if (aout_info.output_syms != NULL)
3945 free (aout_info.output_syms);
3946 if (includes_hash_initialized)
3947 bfd_hash_table_free (&aout_info.includes.root);
3948 return FALSE;
3949 }
3950
3951 /* Adjust and write out the symbols for an a.out file. Set the new
3952 symbol indices into a symbol_map. */
3953
3954 static bfd_boolean
3955 aout_link_write_symbols (struct aout_final_link_info *flaginfo, bfd *input_bfd)
3956 {
3957 bfd *output_bfd;
3958 bfd_size_type sym_count;
3959 char *strings;
3960 enum bfd_link_strip strip;
3961 enum bfd_link_discard discard;
3962 struct external_nlist *outsym;
3963 bfd_size_type strtab_index;
3964 struct external_nlist *sym;
3965 struct external_nlist *sym_end;
3966 struct aout_link_hash_entry **sym_hash;
3967 int *symbol_map;
3968 bfd_boolean pass;
3969 bfd_boolean skip_next;
3970
3971 output_bfd = flaginfo->output_bfd;
3972 sym_count = obj_aout_external_sym_count (input_bfd);
3973 strings = obj_aout_external_strings (input_bfd);
3974 strip = flaginfo->info->strip;
3975 discard = flaginfo->info->discard;
3976 outsym = flaginfo->output_syms;
3977
3978 /* First write out a symbol for this object file, unless we are
3979 discarding such symbols. */
3980 if (strip != strip_all
3981 && (strip != strip_some
3982 || bfd_hash_lookup (flaginfo->info->keep_hash, input_bfd->filename,
3983 FALSE, FALSE) != NULL)
3984 && discard != discard_all)
3985 {
3986 H_PUT_8 (output_bfd, N_TEXT, outsym->e_type);
3987 strtab_index = add_to_stringtab (output_bfd, flaginfo->strtab,
3988 input_bfd->filename, FALSE);
3989 if (strtab_index == (bfd_size_type) -1)
3990 return FALSE;
3991 PUT_WORD (output_bfd, strtab_index, outsym->e_strx);
3992 PUT_WORD (output_bfd,
3993 (bfd_section_vma (obj_textsec (input_bfd)->output_section)
3994 + obj_textsec (input_bfd)->output_offset),
3995 outsym->e_value);
3996 ++obj_aout_external_sym_count (output_bfd);
3997 ++outsym;
3998 }
3999
4000 pass = FALSE;
4001 skip_next = FALSE;
4002 sym = obj_aout_external_syms (input_bfd);
4003 sym_end = sym + sym_count;
4004 sym_hash = obj_aout_sym_hashes (input_bfd);
4005 symbol_map = flaginfo->symbol_map;
4006 memset (symbol_map, 0, (size_t) sym_count * sizeof *symbol_map);
4007 for (; sym < sym_end; sym++, sym_hash++, symbol_map++)
4008 {
4009 const char *name;
4010 int type;
4011 struct aout_link_hash_entry *h;
4012 bfd_boolean skip;
4013 asection *symsec;
4014 bfd_vma val = 0;
4015 bfd_boolean copy;
4016
4017 /* We set *symbol_map to 0 above for all symbols. If it has
4018 already been set to -1 for this symbol, it means that we are
4019 discarding it because it appears in a duplicate header file.
4020 See the N_BINCL code below. */
4021 if (*symbol_map == -1)
4022 continue;
4023
4024 /* Initialize *symbol_map to -1, which means that the symbol was
4025 not copied into the output file. We will change it later if
4026 we do copy the symbol over. */
4027 *symbol_map = -1;
4028
4029 type = H_GET_8 (input_bfd, sym->e_type);
4030 name = strings + GET_WORD (input_bfd, sym->e_strx);
4031
4032 h = NULL;
4033
4034 if (pass)
4035 {
4036 /* Pass this symbol through. It is the target of an
4037 indirect or warning symbol. */
4038 val = GET_WORD (input_bfd, sym->e_value);
4039 pass = FALSE;
4040 }
4041 else if (skip_next)
4042 {
4043 /* Skip this symbol, which is the target of an indirect
4044 symbol that we have changed to no longer be an indirect
4045 symbol. */
4046 skip_next = FALSE;
4047 continue;
4048 }
4049 else
4050 {
4051 struct aout_link_hash_entry *hresolve;
4052
4053 /* We have saved the hash table entry for this symbol, if
4054 there is one. Note that we could just look it up again
4055 in the hash table, provided we first check that it is an
4056 external symbol. */
4057 h = *sym_hash;
4058
4059 /* Use the name from the hash table, in case the symbol was
4060 wrapped. */
4061 if (h != NULL)
4062 name = h->root.root.string;
4063
4064 /* If this is an indirect or warning symbol, then change
4065 hresolve to the base symbol. We also change *sym_hash so
4066 that the relocation routines relocate against the real
4067 symbol. */
4068 hresolve = h;
4069 if (h != NULL
4070 && (h->root.type == bfd_link_hash_indirect
4071 || h->root.type == bfd_link_hash_warning))
4072 {
4073 hresolve = (struct aout_link_hash_entry *) h->root.u.i.link;
4074 while (hresolve->root.type == bfd_link_hash_indirect
4075 || hresolve->root.type == bfd_link_hash_warning)
4076 hresolve = ((struct aout_link_hash_entry *)
4077 hresolve->root.u.i.link);
4078 *sym_hash = hresolve;
4079 }
4080
4081 /* If the symbol has already been written out, skip it. */
4082 if (h != NULL
4083 && h->root.type != bfd_link_hash_warning
4084 && h->written)
4085 {
4086 if ((type & N_TYPE) == N_INDR
4087 || type == N_WARNING)
4088 skip_next = TRUE;
4089 *symbol_map = h->indx;
4090 continue;
4091 }
4092
4093 /* See if we are stripping this symbol. */
4094 skip = FALSE;
4095 switch (strip)
4096 {
4097 case strip_none:
4098 break;
4099 case strip_debugger:
4100 if ((type & N_STAB) != 0)
4101 skip = TRUE;
4102 break;
4103 case strip_some:
4104 if (bfd_hash_lookup (flaginfo->info->keep_hash, name, FALSE, FALSE)
4105 == NULL)
4106 skip = TRUE;
4107 break;
4108 case strip_all:
4109 skip = TRUE;
4110 break;
4111 }
4112 if (skip)
4113 {
4114 if (h != NULL)
4115 h->written = TRUE;
4116 continue;
4117 }
4118
4119 /* Get the value of the symbol. */
4120 if ((type & N_TYPE) == N_TEXT
4121 || type == N_WEAKT)
4122 symsec = obj_textsec (input_bfd);
4123 else if ((type & N_TYPE) == N_DATA
4124 || type == N_WEAKD)
4125 symsec = obj_datasec (input_bfd);
4126 else if ((type & N_TYPE) == N_BSS
4127 || type == N_WEAKB)
4128 symsec = obj_bsssec (input_bfd);
4129 else if ((type & N_TYPE) == N_ABS
4130 || type == N_WEAKA)
4131 symsec = bfd_abs_section_ptr;
4132 else if (((type & N_TYPE) == N_INDR
4133 && (hresolve == NULL
4134 || (hresolve->root.type != bfd_link_hash_defined
4135 && hresolve->root.type != bfd_link_hash_defweak
4136 && hresolve->root.type != bfd_link_hash_common)))
4137 || type == N_WARNING)
4138 {
4139 /* Pass the next symbol through unchanged. The
4140 condition above for indirect symbols is so that if
4141 the indirect symbol was defined, we output it with
4142 the correct definition so the debugger will
4143 understand it. */
4144 pass = TRUE;
4145 val = GET_WORD (input_bfd, sym->e_value);
4146 symsec = NULL;
4147 }
4148 else if ((type & N_STAB) != 0)
4149 {
4150 val = GET_WORD (input_bfd, sym->e_value);
4151 symsec = NULL;
4152 }
4153 else
4154 {
4155 /* If we get here with an indirect symbol, it means that
4156 we are outputting it with a real definition. In such
4157 a case we do not want to output the next symbol,
4158 which is the target of the indirection. */
4159 if ((type & N_TYPE) == N_INDR)
4160 skip_next = TRUE;
4161
4162 symsec = NULL;
4163
4164 /* We need to get the value from the hash table. We use
4165 hresolve so that if we have defined an indirect
4166 symbol we output the final definition. */
4167 if (h == NULL)
4168 {
4169 switch (type & N_TYPE)
4170 {
4171 case N_SETT:
4172 symsec = obj_textsec (input_bfd);
4173 break;
4174 case N_SETD:
4175 symsec = obj_datasec (input_bfd);
4176 break;
4177 case N_SETB:
4178 symsec = obj_bsssec (input_bfd);
4179 break;
4180 case N_SETA:
4181 symsec = bfd_abs_section_ptr;
4182 break;
4183 default:
4184 val = 0;
4185 break;
4186 }
4187 }
4188 else if (hresolve->root.type == bfd_link_hash_defined
4189 || hresolve->root.type == bfd_link_hash_defweak)
4190 {
4191 asection *input_section;
4192 asection *output_section;
4193
4194 /* This case usually means a common symbol which was
4195 turned into a defined symbol. */
4196 input_section = hresolve->root.u.def.section;
4197 output_section = input_section->output_section;
4198 BFD_ASSERT (bfd_is_abs_section (output_section)
4199 || output_section->owner == output_bfd);
4200 val = (hresolve->root.u.def.value
4201 + bfd_section_vma (output_section)
4202 + input_section->output_offset);
4203
4204 /* Get the correct type based on the section. If
4205 this is a constructed set, force it to be
4206 globally visible. */
4207 if (type == N_SETT
4208 || type == N_SETD
4209 || type == N_SETB
4210 || type == N_SETA)
4211 type |= N_EXT;
4212
4213 type &=~ N_TYPE;
4214
4215 if (output_section == obj_textsec (output_bfd))
4216 type |= (hresolve->root.type == bfd_link_hash_defined
4217 ? N_TEXT
4218 : N_WEAKT);
4219 else if (output_section == obj_datasec (output_bfd))
4220 type |= (hresolve->root.type == bfd_link_hash_defined
4221 ? N_DATA
4222 : N_WEAKD);
4223 else if (output_section == obj_bsssec (output_bfd))
4224 type |= (hresolve->root.type == bfd_link_hash_defined
4225 ? N_BSS
4226 : N_WEAKB);
4227 else
4228 type |= (hresolve->root.type == bfd_link_hash_defined
4229 ? N_ABS
4230 : N_WEAKA);
4231 }
4232 else if (hresolve->root.type == bfd_link_hash_common)
4233 val = hresolve->root.u.c.size;
4234 else if (hresolve->root.type == bfd_link_hash_undefweak)
4235 {
4236 val = 0;
4237 type = N_WEAKU;
4238 }
4239 else
4240 val = 0;
4241 }
4242 if (symsec != NULL)
4243 val = (symsec->output_section->vma
4244 + symsec->output_offset
4245 + (GET_WORD (input_bfd, sym->e_value)
4246 - symsec->vma));
4247
4248 /* If this is a global symbol set the written flag, and if
4249 it is a local symbol see if we should discard it. */
4250 if (h != NULL)
4251 {
4252 h->written = TRUE;
4253 h->indx = obj_aout_external_sym_count (output_bfd);
4254 }
4255 else if ((type & N_TYPE) != N_SETT
4256 && (type & N_TYPE) != N_SETD
4257 && (type & N_TYPE) != N_SETB
4258 && (type & N_TYPE) != N_SETA)
4259 {
4260 switch (discard)
4261 {
4262 case discard_none:
4263 case discard_sec_merge:
4264 break;
4265 case discard_l:
4266 if ((type & N_STAB) == 0
4267 && bfd_is_local_label_name (input_bfd, name))
4268 skip = TRUE;
4269 break;
4270 case discard_all:
4271 skip = TRUE;
4272 break;
4273 }
4274 if (skip)
4275 {
4276 pass = FALSE;
4277 continue;
4278 }
4279 }
4280
4281 /* An N_BINCL symbol indicates the start of the stabs
4282 entries for a header file. We need to scan ahead to the
4283 next N_EINCL symbol, ignoring nesting, adding up all the
4284 characters in the symbol names, not including the file
4285 numbers in types (the first number after an open
4286 parenthesis). */
4287 if (type == N_BINCL)
4288 {
4289 struct external_nlist *incl_sym;
4290 int nest;
4291 struct aout_link_includes_entry *incl_entry;
4292 struct aout_link_includes_totals *t;
4293
4294 val = 0;
4295 nest = 0;
4296 for (incl_sym = sym + 1; incl_sym < sym_end; incl_sym++)
4297 {
4298 int incl_type;
4299
4300 incl_type = H_GET_8 (input_bfd, incl_sym->e_type);
4301 if (incl_type == N_EINCL)
4302 {
4303 if (nest == 0)
4304 break;
4305 --nest;
4306 }
4307 else if (incl_type == N_BINCL)
4308 ++nest;
4309 else if (nest == 0)
4310 {
4311 const char *s;
4312
4313 s = strings + GET_WORD (input_bfd, incl_sym->e_strx);
4314 for (; *s != '\0'; s++)
4315 {
4316 val += *s;
4317 if (*s == '(')
4318 {
4319 /* Skip the file number. */
4320 ++s;
4321 while (ISDIGIT (*s))
4322 ++s;
4323 --s;
4324 }
4325 }
4326 }
4327 }
4328
4329 /* If we have already included a header file with the
4330 same value, then replace this one with an N_EXCL
4331 symbol. */
4332 copy = ! flaginfo->info->keep_memory;
4333 incl_entry = aout_link_includes_lookup (&flaginfo->includes,
4334 name, TRUE, copy);
4335 if (incl_entry == NULL)
4336 return FALSE;
4337 for (t = incl_entry->totals; t != NULL; t = t->next)
4338 if (t->total == val)
4339 break;
4340 if (t == NULL)
4341 {
4342 /* This is the first time we have seen this header
4343 file with this set of stabs strings. */
4344 t = bfd_hash_allocate (&flaginfo->includes.root,
4345 sizeof *t);
4346 if (t == NULL)
4347 return FALSE;
4348 t->total = val;
4349 t->next = incl_entry->totals;
4350 incl_entry->totals = t;
4351 }
4352 else
4353 {
4354 int *incl_map;
4355
4356 /* This is a duplicate header file. We must change
4357 it to be an N_EXCL entry, and mark all the
4358 included symbols to prevent outputting them. */
4359 type = N_EXCL;
4360
4361 nest = 0;
4362 for (incl_sym = sym + 1, incl_map = symbol_map + 1;
4363 incl_sym < sym_end;
4364 incl_sym++, incl_map++)
4365 {
4366 int incl_type;
4367
4368 incl_type = H_GET_8 (input_bfd, incl_sym->e_type);
4369 if (incl_type == N_EINCL)
4370 {
4371 if (nest == 0)
4372 {
4373 *incl_map = -1;
4374 break;
4375 }
4376 --nest;
4377 }
4378 else if (incl_type == N_BINCL)
4379 ++nest;
4380 else if (nest == 0)
4381 *incl_map = -1;
4382 }
4383 }
4384 }
4385 }
4386
4387 /* Copy this symbol into the list of symbols we are going to
4388 write out. */
4389 H_PUT_8 (output_bfd, type, outsym->e_type);
4390 copy = FALSE;
4391 if (! flaginfo->info->keep_memory)
4392 {
4393 /* name points into a string table which we are going to
4394 free. If there is a hash table entry, use that string.
4395 Otherwise, copy name into memory. */
4396 if (h != NULL)
4397 name = h->root.root.string;
4398 else
4399 copy = TRUE;
4400 }
4401 strtab_index = add_to_stringtab (output_bfd, flaginfo->strtab,
4402 name, copy);
4403 if (strtab_index == (bfd_size_type) -1)
4404 return FALSE;
4405 PUT_WORD (output_bfd, strtab_index, outsym->e_strx);
4406 PUT_WORD (output_bfd, val, outsym->e_value);
4407 *symbol_map = obj_aout_external_sym_count (output_bfd);
4408 ++obj_aout_external_sym_count (output_bfd);
4409 ++outsym;
4410 }
4411
4412 /* Write out the output symbols we have just constructed. */
4413 if (outsym > flaginfo->output_syms)
4414 {
4415 bfd_size_type size;
4416
4417 if (bfd_seek (output_bfd, flaginfo->symoff, SEEK_SET) != 0)
4418 return FALSE;
4419 size = outsym - flaginfo->output_syms;
4420 size *= EXTERNAL_NLIST_SIZE;
4421 if (bfd_bwrite ((void *) flaginfo->output_syms, size, output_bfd) != size)
4422 return FALSE;
4423 flaginfo->symoff += size;
4424 }
4425
4426 return TRUE;
4427 }
4428
4429 /* Write out a symbol that was not associated with an a.out input
4430 object. */
4431
4432 static bfd_vma
4433 bfd_getp32 (const void *p)
4434 {
4435 const bfd_byte *addr = p;
4436 unsigned long v;
4437
4438 v = (unsigned long) addr[1] << 24;
4439 v |= (unsigned long) addr[0] << 16;
4440 v |= (unsigned long) addr[3] << 8;
4441 v |= (unsigned long) addr[2];
4442 return v;
4443 }
4444
4445 #define COERCE32(x) (((bfd_signed_vma) (x) ^ 0x80000000) - 0x80000000)
4446
4447 static bfd_signed_vma
4448 bfd_getp_signed_32 (const void *p)
4449 {
4450 const bfd_byte *addr = p;
4451 unsigned long v;
4452
4453 v = (unsigned long) addr[1] << 24;
4454 v |= (unsigned long) addr[0] << 16;
4455 v |= (unsigned long) addr[3] << 8;
4456 v |= (unsigned long) addr[2];
4457 return COERCE32 (v);
4458 }
4459
4460 static void
4461 bfd_putp32 (bfd_vma data, void *p)
4462 {
4463 bfd_byte *addr = p;
4464
4465 addr[0] = (data >> 16) & 0xff;
4466 addr[1] = (data >> 24) & 0xff;
4467 addr[2] = (data >> 0) & 0xff;
4468 addr[3] = (data >> 8) & 0xff;
4469 }
4470
4471 const bfd_target MY (vec) =
4472 {
4473 TARGETNAME, /* Name. */
4474 bfd_target_aout_flavour,
4475 BFD_ENDIAN_LITTLE, /* Target byte order (little). */
4476 BFD_ENDIAN_LITTLE, /* Target headers byte order (little). */
4477 (HAS_RELOC | EXEC_P | /* Object flags. */
4478 HAS_LINENO | HAS_DEBUG |
4479 HAS_SYMS | HAS_LOCALS | WP_TEXT),
4480 (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_RELOC | SEC_CODE | SEC_DATA),
4481 MY_symbol_leading_char,
4482 AR_PAD_CHAR, /* AR_pad_char. */
4483 15, /* AR_max_namelen. */
4484 0, /* match priority. */
4485 bfd_getl64, bfd_getl_signed_64, bfd_putl64,
4486 bfd_getp32, bfd_getp_signed_32, bfd_putp32,
4487 bfd_getl16, bfd_getl_signed_16, bfd_putl16, /* Data. */
4488 bfd_getl64, bfd_getl_signed_64, bfd_putl64,
4489 bfd_getp32, bfd_getp_signed_32, bfd_putp32,
4490 bfd_getl16, bfd_getl_signed_16, bfd_putl16, /* Headers. */
4491 { /* bfd_check_format. */
4492 _bfd_dummy_target,
4493 MY_object_p,
4494 bfd_generic_archive_p,
4495 MY_core_file_p
4496 },
4497 { /* bfd_set_format. */
4498 _bfd_bool_bfd_false_error,
4499 MY_mkobject,
4500 _bfd_generic_mkarchive,
4501 _bfd_bool_bfd_false_error
4502 },
4503 { /* bfd_write_contents. */
4504 _bfd_bool_bfd_false_error,
4505 MY_write_object_contents,
4506 _bfd_write_archive_contents,
4507 _bfd_bool_bfd_false_error
4508 },
4509
4510 BFD_JUMP_TABLE_GENERIC (MY),
4511 BFD_JUMP_TABLE_COPY (MY),
4512 BFD_JUMP_TABLE_CORE (MY),
4513 BFD_JUMP_TABLE_ARCHIVE (MY),
4514 BFD_JUMP_TABLE_SYMBOLS (MY),
4515 BFD_JUMP_TABLE_RELOCS (MY),
4516 BFD_JUMP_TABLE_WRITE (MY),
4517 BFD_JUMP_TABLE_LINK (MY),
4518 BFD_JUMP_TABLE_DYNAMIC (MY),
4519
4520 /* Alternative_target. */
4521 NULL,
4522
4523 (void *) MY_backend_data
4524 };
This page took 0.112903 seconds and 3 git commands to generate.