]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - bfd/aoutx.h
* emultempl/sunos.em (gld${EMULATION_NAME}_find_so): Search for
[thirdparty/binutils-gdb.git] / bfd / aoutx.h
CommitLineData
1f29e30b 1/* BFD semi-generic back-end for a.out binaries.
f7e68463 2 Copyright 1990, 91, 92, 93, 94, 95, 1996 Free Software Foundation, Inc.
88dfcd68 3 Written by Cygnus Support.
7ed4093a 4
88dfcd68 5This file is part of BFD, the Binary File Descriptor library.
7ed4093a 6
88dfcd68 7This program is free software; you can redistribute it and/or modify
7ed4093a 8it under the terms of the GNU General Public License as published by
88dfcd68
SC
9the Free Software Foundation; either version 2 of the License, or
10(at your option) any later version.
7ed4093a 11
88dfcd68 12This program is distributed in the hope that it will be useful,
7ed4093a
SC
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
88dfcd68 18along with this program; if not, write to the Free Software
943fbd5b 19Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
7ed4093a 20
4e41b5aa
SC
21/*
22SECTION
23 a.out backends
6f715d66 24
6f715d66 25
4e41b5aa 26DESCRIPTION
6f715d66 27
4e41b5aa
SC
28 BFD supports a number of different flavours of a.out format,
29 though the major differences are only the sizes of the
30 structures on disk, and the shape of the relocation
c188b0be 31 information.
6f715d66 32
c188b0be 33 The support is split into a basic support file @file{aoutx.h}
4e41b5aa 34 and other files which derive functions from the base. One
c188b0be 35 derivation file is @file{aoutf1.h} (for a.out flavour 1), and
4e41b5aa
SC
36 adds to the basic a.out functions support for sun3, sun4, 386
37 and 29k a.out files, to create a target jump vector for a
c188b0be 38 specific target.
6f715d66 39
4e41b5aa 40 This information is further split out into more specific files
c188b0be
DM
41 for each machine, including @file{sunos.c} for sun3 and sun4,
42 @file{newsos3.c} for the Sony NEWS, and @file{demo64.c} for a
4e41b5aa
SC
43 demonstration of a 64 bit a.out format.
44
c188b0be
DM
45 The base file @file{aoutx.h} defines general mechanisms for
46 reading and writing records to and from disk and various
4e41b5aa 47 other methods which BFD requires. It is included by
c188b0be
DM
48 @file{aout32.c} and @file{aout64.c} to form the names
49 <<aout_32_swap_exec_header_in>>, <<aout_64_swap_exec_header_in>>, etc.
4e41b5aa
SC
50
51 As an example, this is what goes on to make the back end for a
c188b0be 52 sun4, from @file{aout32.c}:
4e41b5aa 53
3f7607af
PB
54| #define ARCH_SIZE 32
55| #include "aoutx.h"
4e41b5aa
SC
56
57 Which exports names:
58
3f7607af
PB
59| ...
60| aout_32_canonicalize_reloc
61| aout_32_find_nearest_line
62| aout_32_get_lineno
63| aout_32_get_reloc_upper_bound
64| ...
6f715d66 65
c188b0be 66 from @file{sunos.c}:
4e41b5aa 67
3f7607af
PB
68| #define TARGET_NAME "a.out-sunos-big"
69| #define VECNAME sunos_big_vec
70| #include "aoutf1.h"
4e41b5aa 71
c188b0be 72 requires all the names from @file{aout32.c}, and produces the jump vector
6f715d66 73
3f7607af 74| sunos_big_vec
c6705697 75
c188b0be 76 The file @file{host-aout.c} is a special case. It is for a large set
4e41b5aa
SC
77 of hosts that use ``more or less standard'' a.out files, and
78 for which cross-debugging is not interesting. It uses the
79 standard 32-bit a.out support routines, but determines the
80 file offsets and addresses of the text, data, and BSS
81 sections, the machine architecture and machine type, and the
82 entry point address, in a host-dependent manner. Once these
83 values have been determined, generic code is used to handle
c188b0be 84 the object file.
c6705697 85
4e41b5aa
SC
86 When porting it to run on a new system, you must supply:
87
3f7607af
PB
88| HOST_PAGE_SIZE
89| HOST_SEGMENT_SIZE
90| HOST_MACHINE_ARCH (optional)
91| HOST_MACHINE_MACHINE (optional)
92| HOST_TEXT_START_ADDR
93| HOST_STACK_END_ADDR
c6705697 94
4c3721d5
ILT
95 in the file @file{../include/sys/h-@var{XXX}.h} (for your host). These
96 values, plus the structures and macros defined in @file{a.out.h} on
4e41b5aa
SC
97 your host system, will produce a BFD target that will access
98 ordinary a.out files on your host. To configure a new machine
4c3721d5 99 to use @file{host-aout.c}, specify:
c6705697 100
3f7607af
PB
101| TDEFAULTS = -DDEFAULT_VECTOR=host_aout_big_vec
102| TDEPFILES= host-aout.o trad-core.o
c6705697 103
4c3721d5
ILT
104 in the @file{config/@var{XXX}.mt} file, and modify @file{configure.in}
105 to use the
106 @file{@var{XXX}.mt} file (by setting "<<bfd_target=XXX>>") when your
4e41b5aa 107 configuration is selected.
c6705697 108
6f715d66
SC
109*/
110
ce07dd7c
KR
111/* Some assumptions:
112 * Any BFD with D_PAGED set is ZMAGIC, and vice versa.
113 Doesn't matter what the setting of WP_TEXT is on output, but it'll
114 get set on input.
115 * Any BFD with D_PAGED clear and WP_TEXT set is NMAGIC.
116 * Any BFD with both flags clear is OMAGIC.
117 (Just want to make these explicit, so the conditions tested in this
118 file make sense if you're more familiar with a.out than with BFD.) */
119
ae115e51 120#define KEEPIT udata.i
67c060c3 121
a99c3d70 122#include <string.h> /* For strchr and friends */
14dc2f77 123#include <ctype.h>
67c060c3 124#include "bfd.h"
7ed4093a 125#include <sysdep.h>
4c3721d5 126#include "bfdlink.h"
7ed4093a 127
6f715d66 128#include "libaout.h"
7ed4093a 129#include "libbfd.h"
c3eb25fc
SC
130#include "aout/aout64.h"
131#include "aout/stab_gnu.h"
132#include "aout/ar.h"
7ed4093a 133
5c8444f8 134static boolean aout_get_external_symbols PARAMS ((bfd *));
4298e311
ILT
135static boolean translate_from_native_sym_flags
136 PARAMS ((bfd *, aout_symbol_type *));
137static boolean translate_to_native_sym_flags
138 PARAMS ((bfd *, asymbol *, struct external_nlist *));
0ee75d02 139
4e41b5aa
SC
140/*
141SUBSECTION
4c3721d5 142 Relocations
4e41b5aa
SC
143
144DESCRIPTION
c188b0be 145 The file @file{aoutx.h} provides for both the @emph{standard}
4e41b5aa
SC
146 and @emph{extended} forms of a.out relocation records.
147
c188b0be
DM
148 The standard records contain only an
149 address, a symbol index, and a type field. The extended records
4e41b5aa 150 (used on 29ks and sparcs) also have a full integer for an
c188b0be 151 addend.
7ed4093a 152
6f715d66 153*/
f42fe159 154#ifndef CTOR_TABLE_RELOC_HOWTO
7ed4093a 155#define CTOR_TABLE_RELOC_IDX 2
f42fe159
ILT
156#define CTOR_TABLE_RELOC_HOWTO(BFD) ((obj_reloc_entry_size(BFD) == RELOC_EXT_SIZE \
157 ? howto_table_ext : howto_table_std) \
158 + CTOR_TABLE_RELOC_IDX)
159#endif
160
161#ifndef MY_swap_std_reloc_in
162#define MY_swap_std_reloc_in NAME(aout,swap_std_reloc_in)
163#endif
164
165#ifndef MY_swap_std_reloc_out
166#define MY_swap_std_reloc_out NAME(aout,swap_std_reloc_out)
167#endif
67c060c3 168
34e9ffbc
NH
169#ifndef MY_final_link_relocate
170#define MY_final_link_relocate _bfd_final_link_relocate
171#endif
172
173#ifndef MY_relocate_contents
174#define MY_relocate_contents _bfd_relocate_contents
175#endif
176
ce07dd7c
KR
177#define howto_table_ext NAME(aout,ext_howto_table)
178#define howto_table_std NAME(aout,std_howto_table)
67c060c3 179
c188b0be 180reloc_howto_type howto_table_ext[] =
7ed4093a 181{
4c3721d5 182 /* type rs size bsz pcrel bitpos ovrf sf name part_inpl readmask setmask pcdone */
2e235c93
ILT
183 HOWTO(RELOC_8, 0, 0, 8, false, 0, complain_overflow_bitfield,0,"8", false, 0,0x000000ff, false),
184 HOWTO(RELOC_16, 0, 1, 16, false, 0, complain_overflow_bitfield,0,"16", false, 0,0x0000ffff, false),
185 HOWTO(RELOC_32, 0, 2, 32, false, 0, complain_overflow_bitfield,0,"32", false, 0,0xffffffff, false),
186 HOWTO(RELOC_DISP8, 0, 0, 8, true, 0, complain_overflow_signed,0,"DISP8", false, 0,0x000000ff, false),
187 HOWTO(RELOC_DISP16, 0, 1, 16, true, 0, complain_overflow_signed,0,"DISP16", false, 0,0x0000ffff, false),
188 HOWTO(RELOC_DISP32, 0, 2, 32, true, 0, complain_overflow_signed,0,"DISP32", false, 0,0xffffffff, false),
189 HOWTO(RELOC_WDISP30,2, 2, 30, true, 0, complain_overflow_signed,0,"WDISP30", false, 0,0x3fffffff, false),
190 HOWTO(RELOC_WDISP22,2, 2, 22, true, 0, complain_overflow_signed,0,"WDISP22", false, 0,0x003fffff, false),
191 HOWTO(RELOC_HI22, 10, 2, 22, false, 0, complain_overflow_bitfield,0,"HI22", false, 0,0x003fffff, false),
192 HOWTO(RELOC_22, 0, 2, 22, false, 0, complain_overflow_bitfield,0,"22", false, 0,0x003fffff, false),
193 HOWTO(RELOC_13, 0, 2, 13, false, 0, complain_overflow_bitfield,0,"13", false, 0,0x00001fff, false),
194 HOWTO(RELOC_LO10, 0, 2, 10, false, 0, complain_overflow_dont,0,"LO10", false, 0,0x000003ff, false),
195 HOWTO(RELOC_SFA_BASE,0, 2, 32, false, 0, complain_overflow_bitfield,0,"SFA_BASE", false, 0,0xffffffff, false),
196 HOWTO(RELOC_SFA_OFF13,0,2, 32, false, 0, complain_overflow_bitfield,0,"SFA_OFF13",false, 0,0xffffffff, false),
20ab764e 197 HOWTO(RELOC_BASE10, 0, 2, 10, false, 0, complain_overflow_dont,0,"BASE10", false, 0,0x000003ff, false),
2e235c93 198 HOWTO(RELOC_BASE13, 0, 2, 13, false, 0, complain_overflow_bitfield,0,"BASE13", false, 0,0x00001fff, false),
20ab764e 199 HOWTO(RELOC_BASE22, 10, 2, 22, false, 0, complain_overflow_bitfield,0,"BASE22", false, 0,0x003fffff, false),
ae115e51
ILT
200 HOWTO(RELOC_PC10, 0, 2, 10, true, 0, complain_overflow_dont,0,"PC10", false, 0,0x000003ff, true),
201 HOWTO(RELOC_PC22, 10, 2, 22, true, 0, complain_overflow_signed,0,"PC22", false, 0,0x003fffff, true),
202 HOWTO(RELOC_JMP_TBL,2, 2, 30, true, 0, complain_overflow_signed,0,"JMP_TBL", false, 0,0x3fffffff, false),
2e235c93
ILT
203 HOWTO(RELOC_SEGOFF16,0, 2, 0, false, 0, complain_overflow_bitfield,0,"SEGOFF16", false, 0,0x00000000, false),
204 HOWTO(RELOC_GLOB_DAT,0, 2, 0, false, 0, complain_overflow_bitfield,0,"GLOB_DAT", false, 0,0x00000000, false),
205 HOWTO(RELOC_JMP_SLOT,0, 2, 0, false, 0, complain_overflow_bitfield,0,"JMP_SLOT", false, 0,0x00000000, false),
206 HOWTO(RELOC_RELATIVE,0, 2, 0, false, 0, complain_overflow_bitfield,0,"RELATIVE", false, 0,0x00000000, false),
7ed4093a
SC
207};
208
209/* Convert standard reloc records to "arelent" format (incl byte swap). */
210
ce07dd7c 211reloc_howto_type howto_table_std[] = {
4c3721d5 212 /* type rs size bsz pcrel bitpos ovrf sf name part_inpl readmask setmask pcdone */
c188b0be 213HOWTO( 0, 0, 0, 8, false, 0, complain_overflow_bitfield,0,"8", true, 0x000000ff,0x000000ff, false),
2e235c93
ILT
214HOWTO( 1, 0, 1, 16, false, 0, complain_overflow_bitfield,0,"16", true, 0x0000ffff,0x0000ffff, false),
215HOWTO( 2, 0, 2, 32, false, 0, complain_overflow_bitfield,0,"32", true, 0xffffffff,0xffffffff, false),
c188b0be
DM
216HOWTO( 3, 0, 4, 64, false, 0, complain_overflow_bitfield,0,"64", true, 0xdeaddead,0xdeaddead, false),
217HOWTO( 4, 0, 0, 8, true, 0, complain_overflow_signed, 0,"DISP8", true, 0x000000ff,0x000000ff, false),
218HOWTO( 5, 0, 1, 16, true, 0, complain_overflow_signed, 0,"DISP16", true, 0x0000ffff,0x0000ffff, false),
219HOWTO( 6, 0, 2, 32, true, 0, complain_overflow_signed, 0,"DISP32", true, 0xffffffff,0xffffffff, false),
220HOWTO( 7, 0, 4, 64, true, 0, complain_overflow_signed, 0,"DISP64", true, 0xfeedface,0xfeedface, false),
4852416e 221HOWTO( 8, 0, 2, 0, false, 0, complain_overflow_bitfield,0,"GOT_REL", false, 0,0x00000000, false),
c188b0be
DM
222HOWTO( 9, 0, 1, 16, false, 0, complain_overflow_bitfield,0,"BASE16", false,0xffffffff,0xffffffff, false),
223HOWTO(10, 0, 2, 32, false, 0, complain_overflow_bitfield,0,"BASE32", false,0xffffffff,0xffffffff, false),
cb9461ff
JK
224{ -1 },
225{ -1 },
226{ -1 },
227{ -1 },
228{ -1 },
229 HOWTO(16, 0, 2, 0, false, 0, complain_overflow_bitfield,0,"JMP_TABLE", false, 0,0x00000000, false),
230{ -1 },
231{ -1 },
232{ -1 },
233{ -1 },
234{ -1 },
235{ -1 },
236{ -1 },
237{ -1 }, { -1 }, { -1 }, { -1 }, { -1 }, { -1 }, { -1 }, { -1 },
238 HOWTO(32, 0, 2, 0, false, 0, complain_overflow_bitfield,0,"RELATIVE", false, 0,0x00000000, false),
239{ -1 },
240{ -1 },
241{ -1 },
242{ -1 },
243{ -1 },
244{ -1 },
245{ -1 },
246 HOWTO(40, 0, 2, 0, false, 0, complain_overflow_bitfield,0,"BASEREL", false, 0,0x00000000, false),
7ed4093a
SC
247};
248
c188b0be
DM
249#define TABLE_SIZE(TABLE) (sizeof(TABLE)/sizeof(TABLE[0]))
250
51fbf454 251reloc_howto_type *
8eb5d4be
JK
252NAME(aout,reloc_type_lookup) (abfd,code)
253 bfd *abfd;
254 bfd_reloc_code_real_type code;
214f8f23
KR
255{
256#define EXT(i,j) case i: return &howto_table_ext[j]
257#define STD(i,j) case i: return &howto_table_std[j]
258 int ext = obj_reloc_entry_size (abfd) == RELOC_EXT_SIZE;
259 if (code == BFD_RELOC_CTOR)
260 switch (bfd_get_arch_info (abfd)->bits_per_address)
261 {
262 case 32:
263 code = BFD_RELOC_32;
264 break;
ec099b4b
ILT
265 case 64:
266 code = BFD_RELOC_64;
267 break;
214f8f23
KR
268 }
269 if (ext)
270 switch (code)
271 {
272 EXT (BFD_RELOC_32, 2);
273 EXT (BFD_RELOC_HI22, 8);
274 EXT (BFD_RELOC_LO10, 11);
275 EXT (BFD_RELOC_32_PCREL_S2, 6);
c188b0be 276 EXT (BFD_RELOC_SPARC_WDISP22, 7);
ec099b4b 277 EXT (BFD_RELOC_SPARC13, 10);
ae115e51 278 EXT (BFD_RELOC_SPARC_GOT10, 14);
ec099b4b 279 EXT (BFD_RELOC_SPARC_BASE13, 15);
ae115e51
ILT
280 EXT (BFD_RELOC_SPARC_GOT13, 15);
281 EXT (BFD_RELOC_SPARC_GOT22, 16);
282 EXT (BFD_RELOC_SPARC_PC10, 17);
283 EXT (BFD_RELOC_SPARC_PC22, 18);
284 EXT (BFD_RELOC_SPARC_WPLT30, 19);
51fbf454 285 default: return (reloc_howto_type *) NULL;
214f8f23
KR
286 }
287 else
288 /* std relocs */
289 switch (code)
290 {
291 STD (BFD_RELOC_16, 1);
292 STD (BFD_RELOC_32, 2);
293 STD (BFD_RELOC_8_PCREL, 4);
294 STD (BFD_RELOC_16_PCREL, 5);
295 STD (BFD_RELOC_32_PCREL, 6);
c188b0be
DM
296 STD (BFD_RELOC_16_BASEREL, 9);
297 STD (BFD_RELOC_32_BASEREL, 10);
51fbf454 298 default: return (reloc_howto_type *) NULL;
214f8f23 299 }
214f8f23 300}
7ed4093a 301
4e41b5aa
SC
302/*
303SUBSECTION
4c3721d5 304 Internal entry points
4e41b5aa
SC
305
306DESCRIPTION
c188b0be 307 @file{aoutx.h} exports several routines for accessing the
4e41b5aa
SC
308 contents of an a.out file, which are gathered and exported in
309 turn by various format specific files (eg sunos.c).
310
6f715d66
SC
311*/
312
4e41b5aa
SC
313/*
314FUNCTION
c188b0be 315 aout_@var{size}_swap_exec_header_in
4e41b5aa 316
fa2b89f1 317SYNOPSIS
c188b0be 318 void aout_@var{size}_swap_exec_header_in,
4e41b5aa
SC
319 (bfd *abfd,
320 struct external_exec *raw_bytes,
321 struct internal_exec *execp);
c188b0be
DM
322
323DESCRIPTION
324 Swap the information in an executable header @var{raw_bytes} taken
325 from a raw byte stream memory image into the internal exec header
326 structure @var{execp}.
6f715d66 327*/
c188b0be 328
34dd8ba3 329#ifndef NAME_swap_exec_header_in
7ed4093a 330void
8eb5d4be
JK
331NAME(aout,swap_exec_header_in) (abfd, raw_bytes, execp)
332 bfd *abfd;
333 struct external_exec *raw_bytes;
334 struct internal_exec *execp;
7ed4093a
SC
335{
336 struct external_exec *bytes = (struct external_exec *)raw_bytes;
337
55c0061e
FF
338 /* The internal_exec structure has some fields that are unused in this
339 configuration (IE for i960), so ensure that all such uninitialized
340 fields are zero'd out. There are places where two of these structs
341 are memcmp'd, and thus the contents do matter. */
68241b2b 342 memset ((PTR) execp, 0, sizeof (struct internal_exec));
7ed4093a
SC
343 /* Now fill in fields in the execp, from the bytes in the raw data. */
344 execp->a_info = bfd_h_get_32 (abfd, bytes->e_info);
345 execp->a_text = GET_WORD (abfd, bytes->e_text);
346 execp->a_data = GET_WORD (abfd, bytes->e_data);
347 execp->a_bss = GET_WORD (abfd, bytes->e_bss);
348 execp->a_syms = GET_WORD (abfd, bytes->e_syms);
349 execp->a_entry = GET_WORD (abfd, bytes->e_entry);
350 execp->a_trsize = GET_WORD (abfd, bytes->e_trsize);
351 execp->a_drsize = GET_WORD (abfd, bytes->e_drsize);
352}
34dd8ba3
JG
353#define NAME_swap_exec_header_in NAME(aout,swap_exec_header_in)
354#endif
7ed4093a 355
4e41b5aa
SC
356/*
357FUNCTION
c188b0be 358 aout_@var{size}_swap_exec_header_out
4e41b5aa 359
fa2b89f1 360SYNOPSIS
c188b0be 361 void aout_@var{size}_swap_exec_header_out
6f715d66
SC
362 (bfd *abfd,
363 struct internal_exec *execp,
4e41b5aa 364 struct external_exec *raw_bytes);
c188b0be
DM
365
366DESCRIPTION
367 Swap the information in an internal exec header structure
368 @var{execp} into the buffer @var{raw_bytes} ready for writing to disk.
6f715d66 369*/
7ed4093a 370void
8eb5d4be
JK
371NAME(aout,swap_exec_header_out) (abfd, execp, raw_bytes)
372 bfd *abfd;
373 struct internal_exec *execp;
374 struct external_exec *raw_bytes;
7ed4093a
SC
375{
376 struct external_exec *bytes = (struct external_exec *)raw_bytes;
377
378 /* Now fill in fields in the raw data, from the fields in the exec struct. */
379 bfd_h_put_32 (abfd, execp->a_info , bytes->e_info);
380 PUT_WORD (abfd, execp->a_text , bytes->e_text);
381 PUT_WORD (abfd, execp->a_data , bytes->e_data);
382 PUT_WORD (abfd, execp->a_bss , bytes->e_bss);
383 PUT_WORD (abfd, execp->a_syms , bytes->e_syms);
384 PUT_WORD (abfd, execp->a_entry , bytes->e_entry);
385 PUT_WORD (abfd, execp->a_trsize, bytes->e_trsize);
386 PUT_WORD (abfd, execp->a_drsize, bytes->e_drsize);
387}
388
ec6b18c4 389/* Make all the section for an a.out file. */
7ed4093a 390
ec6b18c4
ILT
391boolean
392NAME(aout,make_sections) (abfd)
393 bfd *abfd;
394{
395 if (obj_textsec (abfd) == (asection *) NULL
396 && bfd_make_section (abfd, ".text") == (asection *) NULL)
397 return false;
398 if (obj_datasec (abfd) == (asection *) NULL
399 && bfd_make_section (abfd, ".data") == (asection *) NULL)
400 return false;
401 if (obj_bsssec (abfd) == (asection *) NULL
402 && bfd_make_section (abfd, ".bss") == (asection *) NULL)
403 return false;
404 return true;
405}
6f715d66 406
4e41b5aa
SC
407/*
408FUNCTION
c188b0be 409 aout_@var{size}_some_aout_object_p
6f715d66 410
fa2b89f1 411SYNOPSIS
2f3508ad 412 const bfd_target *aout_@var{size}_some_aout_object_p
6f715d66 413 (bfd *abfd,
2f3508ad 414 const bfd_target *(*callback_to_real_object_p)());
c188b0be
DM
415
416DESCRIPTION
417 Some a.out variant thinks that the file open in @var{abfd}
418 checking is an a.out file. Do some more checking, and set up
419 for access if it really is. Call back to the calling
420 environment's "finish up" function just before returning, to
421 handle any last-minute setup.
6f715d66 422*/
c188b0be 423
2f3508ad 424const bfd_target *
8eb5d4be
JK
425NAME(aout,some_aout_object_p) (abfd, execp, callback_to_real_object_p)
426 bfd *abfd;
427 struct internal_exec *execp;
2f3508ad 428 const bfd_target *(*callback_to_real_object_p) PARAMS ((bfd *));
7ed4093a 429{
214f8f23 430 struct aout_data_struct *rawptr, *oldrawptr;
2f3508ad 431 const bfd_target *result;
7ed4093a 432
6db82ea7 433 rawptr = (struct aout_data_struct *) bfd_zalloc (abfd, sizeof (struct aout_data_struct ));
a9713b91 434 if (rawptr == NULL)
7ed4093a 435 return 0;
7ed4093a 436
214f8f23 437 oldrawptr = abfd->tdata.aout_data;
6db82ea7 438 abfd->tdata.aout_data = rawptr;
ebd24135
ILT
439
440 /* Copy the contents of the old tdata struct.
441 In particular, we want the subformat, since for hpux it was set in
442 hp300hpux.c:swap_exec_header_in and will be used in
443 hp300hpux.c:callback. */
444 if (oldrawptr != NULL)
445 *abfd->tdata.aout_data = *oldrawptr;
446
6db82ea7
SC
447 abfd->tdata.aout_data->a.hdr = &rawptr->e;
448 *(abfd->tdata.aout_data->a.hdr) = *execp; /* Copy in the internal_exec struct */
449 execp = abfd->tdata.aout_data->a.hdr;
7ed4093a
SC
450
451 /* Set the file flags */
452 abfd->flags = NO_FLAGS;
453 if (execp->a_drsize || execp->a_trsize)
454 abfd->flags |= HAS_RELOC;
e6e265ce 455 /* Setting of EXEC_P has been deferred to the bottom of this function */
c188b0be 456 if (execp->a_syms)
7ed4093a 457 abfd->flags |= HAS_LINENO | HAS_DEBUG | HAS_SYMS | HAS_LOCALS;
e68de5d5
ILT
458 if (N_DYNAMIC(*execp))
459 abfd->flags |= DYNAMIC;
7ed4093a 460
ce07dd7c
KR
461 if (N_MAGIC (*execp) == ZMAGIC)
462 {
f5419a59
ILT
463 abfd->flags |= D_PAGED | WP_TEXT;
464 adata (abfd).magic = z_magic;
465 }
466 else if (N_MAGIC (*execp) == QMAGIC)
467 {
468 abfd->flags |= D_PAGED | WP_TEXT;
469 adata (abfd).magic = z_magic;
470 adata (abfd).subformat = q_magic_format;
ce07dd7c
KR
471 }
472 else if (N_MAGIC (*execp) == NMAGIC)
473 {
474 abfd->flags |= WP_TEXT;
f5419a59 475 adata (abfd).magic = n_magic;
ce07dd7c 476 }
7b024321
ILT
477 else if (N_MAGIC (*execp) == OMAGIC
478 || N_MAGIC (*execp) == BMAGIC)
f5419a59 479 adata (abfd).magic = o_magic;
ce07dd7c 480 else
f5419a59
ILT
481 {
482 /* Should have been checked with N_BADMAG before this routine
483 was called. */
484 abort ();
485 }
7ed4093a
SC
486
487 bfd_get_start_address (abfd) = execp->a_entry;
488
489 obj_aout_symbols (abfd) = (aout_symbol_type *)NULL;
490 bfd_get_symcount (abfd) = execp->a_syms / sizeof (struct external_nlist);
491
7ed4093a
SC
492 /* The default relocation entry size is that of traditional V7 Unix. */
493 obj_reloc_entry_size (abfd) = RELOC_STD_SIZE;
494
7b02b4ed
JG
495 /* The default symbol entry size is that of traditional Unix. */
496 obj_symbol_entry_size (abfd) = EXTERNAL_NLIST_SIZE;
497
7ac84736 498#ifdef USE_MMAP
4fe6d901 499 bfd_init_window (&obj_aout_sym_window (abfd));
4fe6d901 500 bfd_init_window (&obj_aout_string_window (abfd));
7ac84736
KR
501#endif
502 obj_aout_external_syms (abfd) = NULL;
503 obj_aout_external_strings (abfd) = NULL;
728472f1
ILT
504 obj_aout_sym_hashes (abfd) = NULL;
505
ec6b18c4
ILT
506 if (! NAME(aout,make_sections) (abfd))
507 return NULL;
7ed4093a 508
6db82ea7
SC
509 obj_datasec (abfd)->_raw_size = execp->a_data;
510 obj_bsssec (abfd)->_raw_size = execp->a_bss;
7ed4093a 511
0ee75d02 512 obj_textsec (abfd)->flags =
11676adc 513 (execp->a_trsize != 0
0ee75d02
ILT
514 ? (SEC_ALLOC | SEC_LOAD | SEC_CODE | SEC_HAS_CONTENTS | SEC_RELOC)
515 : (SEC_ALLOC | SEC_LOAD | SEC_CODE | SEC_HAS_CONTENTS));
516 obj_datasec (abfd)->flags =
11676adc 517 (execp->a_drsize != 0
0ee75d02
ILT
518 ? (SEC_ALLOC | SEC_LOAD | SEC_DATA | SEC_HAS_CONTENTS | SEC_RELOC)
519 : (SEC_ALLOC | SEC_LOAD | SEC_DATA | SEC_HAS_CONTENTS));
7ed4093a
SC
520 obj_bsssec (abfd)->flags = SEC_ALLOC;
521
522#ifdef THIS_IS_ONLY_DOCUMENTATION
98d43107
JG
523 /* The common code can't fill in these things because they depend
524 on either the start address of the text segment, the rounding
9783e04a 525 up of virtual addresses between segments, or the starting file
98d43107
JG
526 position of the text segment -- all of which varies among different
527 versions of a.out. */
528
c188b0be 529 /* Call back to the format-dependent code to fill in the rest of the
7ed4093a
SC
530 fields and do any further cleanup. Things that should be filled
531 in by the callback: */
532
533 struct exec *execp = exec_hdr (abfd);
534
98d43107 535 obj_textsec (abfd)->size = N_TXTSIZE(*execp);
6db82ea7 536 obj_textsec (abfd)->raw_size = N_TXTSIZE(*execp);
98d43107
JG
537 /* data and bss are already filled in since they're so standard */
538
7ed4093a 539 /* The virtual memory addresses of the sections */
7ed4093a 540 obj_textsec (abfd)->vma = N_TXTADDR(*execp);
98d43107
JG
541 obj_datasec (abfd)->vma = N_DATADDR(*execp);
542 obj_bsssec (abfd)->vma = N_BSSADDR(*execp);
7ed4093a
SC
543
544 /* The file offsets of the sections */
545 obj_textsec (abfd)->filepos = N_TXTOFF(*execp);
546 obj_datasec (abfd)->filepos = N_DATOFF(*execp);
547
548 /* The file offsets of the relocation info */
549 obj_textsec (abfd)->rel_filepos = N_TRELOFF(*execp);
550 obj_datasec (abfd)->rel_filepos = N_DRELOFF(*execp);
551
552 /* The file offsets of the string table and symbol table. */
553 obj_str_filepos (abfd) = N_STROFF (*execp);
554 obj_sym_filepos (abfd) = N_SYMOFF (*execp);
555
7ed4093a
SC
556 /* Determine the architecture and machine type of the object file. */
557 switch (N_MACHTYPE (*exec_hdr (abfd))) {
558 default:
559 abfd->obj_arch = bfd_arch_obscure;
560 break;
561 }
562
34e9ffbc 563 adata(abfd)->page_size = TARGET_PAGE_SIZE;
7b02b4ed
JG
564 adata(abfd)->segment_size = SEGMENT_SIZE;
565 adata(abfd)->exec_bytes_size = EXEC_BYTES_SIZE;
566
7ed4093a
SC
567 return abfd->xvec;
568
569 /* The architecture is encoded in various ways in various a.out variants,
570 or is not encoded at all in some of them. The relocation size depends
571 on the architecture and the a.out variant. Finally, the return value
572 is the bfd_target vector in use. If an error occurs, return zero and
573 set bfd_error to the appropriate error code.
c188b0be 574
7ed4093a
SC
575 Formats such as b.out, which have additional fields in the a.out
576 header, should cope with them in this callback as well. */
577#endif /* DOCUMENTATION */
578
e6e265ce
JG
579 result = (*callback_to_real_object_p)(abfd);
580
581 /* Now that the segment addresses have been worked out, take a better
582 guess at whether the file is executable. If the entry point
583 is within the text segment, assume it is. (This makes files
584 executable even if their entry point address is 0, as long as
6c97aedf 585 their text starts at zero.). */
e6e265ce 586 if ((execp->a_entry >= obj_textsec(abfd)->vma) &&
6db82ea7 587 (execp->a_entry < obj_textsec(abfd)->vma + obj_textsec(abfd)->_raw_size))
e6e265ce 588 abfd->flags |= EXEC_P;
6c97aedf
ILT
589#ifdef STAT_FOR_EXEC
590 else
591 {
592 struct stat stat_buf;
593
594 /* The original heuristic doesn't work in some important cases.
595 The a.out file has no information about the text start
596 address. For files (like kernels) linked to non-standard
597 addresses (ld -Ttext nnn) the entry point may not be between
598 the default text start (obj_textsec(abfd)->vma) and
599 (obj_textsec(abfd)->vma) + text size. This is not just a mach
600 issue. Many kernels are loaded at non standard addresses. */
64d5f5d0
ILT
601 if (abfd->iostream != NULL
602 && (abfd->flags & BFD_IN_MEMORY) == 0
6c97aedf
ILT
603 && (fstat(fileno((FILE *) (abfd->iostream)), &stat_buf) == 0)
604 && ((stat_buf.st_mode & 0111) != 0))
605 abfd->flags |= EXEC_P;
606 }
607#endif /* STAT_FOR_EXEC */
608
214f8f23
KR
609 if (result)
610 {
1f29e30b 611#if 0 /* These should be set correctly anyways. */
214f8f23
KR
612 abfd->sections = obj_textsec (abfd);
613 obj_textsec (abfd)->next = obj_datasec (abfd);
614 obj_datasec (abfd)->next = obj_bsssec (abfd);
1f29e30b 615#endif
214f8f23
KR
616 }
617 else
618 {
619 free (rawptr);
620 abfd->tdata.aout_data = oldrawptr;
621 }
e6e265ce 622 return result;
7ed4093a
SC
623}
624
4e41b5aa
SC
625/*
626FUNCTION
c188b0be 627 aout_@var{size}_mkobject
6f715d66 628
fa2b89f1 629SYNOPSIS
c188b0be
DM
630 boolean aout_@var{size}_mkobject, (bfd *abfd);
631
632DESCRIPTION
633 Initialize BFD @var{abfd} for use with a.out files.
6f715d66 634*/
7ed4093a
SC
635
636boolean
8eb5d4be
JK
637NAME(aout,mkobject) (abfd)
638 bfd *abfd;
7ed4093a 639{
6db82ea7 640 struct aout_data_struct *rawptr;
7ed4093a 641
68241b2b 642 bfd_set_error (bfd_error_system_call);
7ed4093a
SC
643
644 /* Use an intermediate variable for clarity */
2e235c93 645 rawptr = (struct aout_data_struct *)bfd_zalloc (abfd, sizeof (struct aout_data_struct ));
c188b0be 646
a9713b91 647 if (rawptr == NULL)
7ed4093a 648 return false;
c188b0be 649
6db82ea7 650 abfd->tdata.aout_data = rawptr;
7ed4093a 651 exec_hdr (abfd) = &(rawptr->e);
c188b0be 652
7ed4093a
SC
653 obj_textsec (abfd) = (asection *)NULL;
654 obj_datasec (abfd) = (asection *)NULL;
655 obj_bsssec (abfd) = (asection *)NULL;
c188b0be 656
7ed4093a
SC
657 return true;
658}
659
6f715d66 660
4e41b5aa
SC
661/*
662FUNCTION
c188b0be
DM
663 aout_@var{size}_machine_type
664
665SYNOPSIS
666 enum machine_type aout_@var{size}_machine_type
667 (enum bfd_architecture arch,
668 unsigned long machine));
6f715d66 669
4e41b5aa
SC
670DESCRIPTION
671 Keep track of machine architecture and machine type for
c188b0be
DM
672 a.out's. Return the <<machine_type>> for a particular
673 architecture and machine, or <<M_UNKNOWN>> if that exact architecture
674 and machine can't be represented in a.out format.
7ed4093a 675
4e41b5aa 676 If the architecture is understood, machine type 0 (default)
c188b0be 677 is always understood.
6f715d66 678*/
7ed4093a
SC
679
680enum machine_type
9ae74960 681NAME(aout,machine_type) (arch, machine, unknown)
8eb5d4be
JK
682 enum bfd_architecture arch;
683 unsigned long machine;
9ae74960 684 boolean *unknown;
7ed4093a
SC
685{
686 enum machine_type arch_flags;
c188b0be 687
7ed4093a 688 arch_flags = M_UNKNOWN;
9ae74960 689 *unknown = true;
c188b0be 690
7ed4093a
SC
691 switch (arch) {
692 case bfd_arch_sparc:
ae115e51
ILT
693 if (machine == 0
694 || machine == bfd_mach_sparc
d1f74cd2 695 || machine == bfd_mach_sparc_sparclite
c189fdfb 696 || machine == bfd_mach_sparc_v9)
ae115e51 697 arch_flags = M_SPARC;
d1f74cd2
DE
698 else if (machine == bfd_mach_sparc_sparclet)
699 arch_flags = M_SPARCLET;
7ed4093a 700 break;
c188b0be 701
7ed4093a
SC
702 case bfd_arch_m68k:
703 switch (machine) {
704 case 0: arch_flags = M_68010; break;
9ae74960 705 case 68000: arch_flags = M_UNKNOWN; *unknown = false; break;
7ed4093a
SC
706 case 68010: arch_flags = M_68010; break;
707 case 68020: arch_flags = M_68020; break;
708 default: arch_flags = M_UNKNOWN; break;
709 }
710 break;
c188b0be 711
7ed4093a
SC
712 case bfd_arch_i386:
713 if (machine == 0) arch_flags = M_386;
714 break;
c188b0be 715
7ed4093a
SC
716 case bfd_arch_a29k:
717 if (machine == 0) arch_flags = M_29K;
718 break;
c188b0be 719
204ba9e3
ILT
720 case bfd_arch_arm:
721 if (machine == 0) arch_flags = M_ARM;
722 break;
723
5cd3dcff
KR
724 case bfd_arch_mips:
725 switch (machine) {
726 case 0:
727 case 2000:
728 case 3000: arch_flags = M_MIPS1; break;
943fbd5b 729 case 4000: /* mips3 */
5cd3dcff 730 case 4400:
943fbd5b
KR
731 case 8000: /* mips4 */
732 /* real mips2: */
5cd3dcff
KR
733 case 6000: arch_flags = M_MIPS2; break;
734 default: arch_flags = M_UNKNOWN; break;
735 }
736 break;
737
f42fe159
ILT
738 case bfd_arch_ns32k:
739 switch (machine) {
740 case 0: arch_flags = M_NS32532; break;
741 case 32032: arch_flags = M_NS32032; break;
742 case 32532: arch_flags = M_NS32532; break;
743 default: arch_flags = M_UNKNOWN; break;
744 }
745 break;
746
82b1edf7
KR
747 case bfd_arch_vax:
748 *unknown = false;
749 break;
750
751 /* start-sanitize-rce */
752 case bfd_arch_rce:
753 arch_flags = M_RCE;
754 break;
755 /* end-sanitize-rce */
756
7ed4093a
SC
757 default:
758 arch_flags = M_UNKNOWN;
7ed4093a 759 }
9ae74960
ILT
760
761 if (arch_flags != M_UNKNOWN)
762 *unknown = false;
763
7ed4093a
SC
764 return arch_flags;
765}
766
9e2dad8e 767
4e41b5aa
SC
768/*
769FUNCTION
c188b0be 770 aout_@var{size}_set_arch_mach
6f715d66 771
fa2b89f1 772SYNOPSIS
c188b0be 773 boolean aout_@var{size}_set_arch_mach,
6f715d66 774 (bfd *,
c188b0be 775 enum bfd_architecture arch,
6f715d66 776 unsigned long machine));
c188b0be
DM
777
778DESCRIPTION
779 Set the architecture and the machine of the BFD @var{abfd} to the
780 values @var{arch} and @var{machine}. Verify that @var{abfd}'s format
781 can support the architecture required.
6f715d66
SC
782*/
783
7ed4093a 784boolean
8eb5d4be
JK
785NAME(aout,set_arch_mach) (abfd, arch, machine)
786 bfd *abfd;
787 enum bfd_architecture arch;
788 unsigned long machine;
7ed4093a 789{
2e235c93
ILT
790 if (! bfd_default_set_arch_mach (abfd, arch, machine))
791 return false;
792
9ae74960
ILT
793 if (arch != bfd_arch_unknown)
794 {
795 boolean unknown;
796
797 NAME(aout,machine_type) (arch, machine, &unknown);
798 if (unknown)
799 return false;
800 }
ce07dd7c 801
214f8f23
KR
802 /* Determine the size of a relocation entry */
803 switch (arch) {
804 case bfd_arch_sparc:
805 case bfd_arch_a29k:
5cd3dcff 806 case bfd_arch_mips:
214f8f23
KR
807 obj_reloc_entry_size (abfd) = RELOC_EXT_SIZE;
808 break;
809 default:
810 obj_reloc_entry_size (abfd) = RELOC_STD_SIZE;
811 break;
812 }
813
2768b3f7 814 return (*aout_backend_info(abfd)->set_sizes) (abfd);
7ed4093a 815}
7ed4093a 816
4c3721d5
ILT
817static void
818adjust_o_magic (abfd, execp)
819 bfd *abfd;
820 struct internal_exec *execp;
821{
822 file_ptr pos = adata (abfd).exec_bytes_size;
823 bfd_vma vma = 0;
824 int pad = 0;
825
826 /* Text. */
827 obj_textsec(abfd)->filepos = pos;
74942465
ILT
828 if (!obj_textsec(abfd)->user_set_vma)
829 obj_textsec(abfd)->vma = vma;
830 else
831 vma = obj_textsec(abfd)->vma;
832
4c3721d5
ILT
833 pos += obj_textsec(abfd)->_raw_size;
834 vma += obj_textsec(abfd)->_raw_size;
835
836 /* Data. */
837 if (!obj_datasec(abfd)->user_set_vma)
838 {
839#if 0 /* ?? Does alignment in the file image really matter? */
840 pad = align_power (vma, obj_datasec(abfd)->alignment_power) - vma;
841#endif
842 obj_textsec(abfd)->_raw_size += pad;
843 pos += pad;
844 vma += pad;
845 obj_datasec(abfd)->vma = vma;
846 }
82b1edf7
KR
847 else
848 vma = obj_datasec(abfd)->vma;
4c3721d5
ILT
849 obj_datasec(abfd)->filepos = pos;
850 pos += obj_datasec(abfd)->_raw_size;
851 vma += obj_datasec(abfd)->_raw_size;
852
853 /* BSS. */
854 if (!obj_bsssec(abfd)->user_set_vma)
855 {
856#if 0
857 pad = align_power (vma, obj_bsssec(abfd)->alignment_power) - vma;
858#endif
859 obj_datasec(abfd)->_raw_size += pad;
860 pos += pad;
861 vma += pad;
862 obj_bsssec(abfd)->vma = vma;
863 }
f4945271
ILT
864 else
865 {
866 /* The VMA of the .bss section is set by the the VMA of the
867 .data section plus the size of the .data section. We may
868 need to add padding bytes to make this true. */
869 pad = obj_bsssec (abfd)->vma - vma;
870 if (pad > 0)
871 {
872 obj_datasec (abfd)->_raw_size += pad;
873 pos += pad;
874 }
875 }
4c3721d5
ILT
876 obj_bsssec(abfd)->filepos = pos;
877
878 /* Fix up the exec header. */
879 execp->a_text = obj_textsec(abfd)->_raw_size;
880 execp->a_data = obj_datasec(abfd)->_raw_size;
881 execp->a_bss = obj_bsssec(abfd)->_raw_size;
882 N_SET_MAGIC (*execp, OMAGIC);
883}
884
885static void
886adjust_z_magic (abfd, execp)
887 bfd *abfd;
888 struct internal_exec *execp;
889{
890 bfd_size_type data_pad, text_pad;
891 file_ptr text_end;
892 CONST struct aout_backend_data *abdp;
893 int ztih; /* Nonzero if text includes exec header. */
4c3721d5
ILT
894
895 abdp = aout_backend_info (abfd);
896
897 /* Text. */
0630aba5
ILT
898 ztih = (abdp != NULL
899 && (abdp->text_includes_header
900 || obj_aout_subformat (abfd) == q_magic_format));
4c3721d5
ILT
901 obj_textsec(abfd)->filepos = (ztih
902 ? adata(abfd).exec_bytes_size
0630aba5 903 : adata(abfd).zmagic_disk_block_size);
4c3721d5 904 if (! obj_textsec(abfd)->user_set_vma)
e1f99f60
ILT
905 {
906 /* ?? Do we really need to check for relocs here? */
907 obj_textsec(abfd)->vma = ((abfd->flags & HAS_RELOC)
908 ? 0
909 : (ztih
910 ? (abdp->default_text_vma
911 + adata(abfd).exec_bytes_size)
912 : abdp->default_text_vma));
913 text_pad = 0;
914 }
915 else
916 {
917 /* The .text section is being loaded at an unusual address. We
918 may need to pad it such that the .data section starts at a page
919 boundary. */
920 if (ztih)
921 text_pad = ((obj_textsec (abfd)->filepos - obj_textsec (abfd)->vma)
922 & (adata (abfd).page_size - 1));
923 else
924 text_pad = ((- obj_textsec (abfd)->vma)
925 & (adata (abfd).page_size - 1));
926 }
927
4c3721d5 928 /* Find start of data. */
0630aba5
ILT
929 if (ztih)
930 {
931 text_end = obj_textsec (abfd)->filepos + obj_textsec (abfd)->_raw_size;
e1f99f60 932 text_pad += BFD_ALIGN (text_end, adata (abfd).page_size) - text_end;
0630aba5
ILT
933 }
934 else
935 {
936 /* Note that if page_size == zmagic_disk_block_size, then
937 filepos == page_size, and this case is the same as the ztih
938 case. */
939 text_end = obj_textsec (abfd)->_raw_size;
e1f99f60 940 text_pad += BFD_ALIGN (text_end, adata (abfd).page_size) - text_end;
0630aba5
ILT
941 text_end += obj_textsec (abfd)->filepos;
942 }
4c3721d5
ILT
943 obj_textsec(abfd)->_raw_size += text_pad;
944 text_end += text_pad;
945
946 /* Data. */
947 if (!obj_datasec(abfd)->user_set_vma)
948 {
949 bfd_vma vma;
950 vma = obj_textsec(abfd)->vma + obj_textsec(abfd)->_raw_size;
951 obj_datasec(abfd)->vma = BFD_ALIGN (vma, adata(abfd).segment_size);
952 }
4c3721d5
ILT
953 if (abdp && abdp->zmagic_mapped_contiguous)
954 {
955 text_pad = (obj_datasec(abfd)->vma
956 - obj_textsec(abfd)->vma
957 - obj_textsec(abfd)->_raw_size);
958 obj_textsec(abfd)->_raw_size += text_pad;
959 }
960 obj_datasec(abfd)->filepos = (obj_textsec(abfd)->filepos
961 + obj_textsec(abfd)->_raw_size);
962
963 /* Fix up exec header while we're at it. */
964 execp->a_text = obj_textsec(abfd)->_raw_size;
965 if (ztih && (!abdp || (abdp && !abdp->exec_header_not_counted)))
966 execp->a_text += adata(abfd).exec_bytes_size;
f5419a59
ILT
967 if (obj_aout_subformat (abfd) == q_magic_format)
968 N_SET_MAGIC (*execp, QMAGIC);
969 else
970 N_SET_MAGIC (*execp, ZMAGIC);
5330499f 971
4c3721d5 972 /* Spec says data section should be rounded up to page boundary. */
4c3721d5
ILT
973 obj_datasec(abfd)->_raw_size
974 = align_power (obj_datasec(abfd)->_raw_size,
975 obj_bsssec(abfd)->alignment_power);
976 execp->a_data = BFD_ALIGN (obj_datasec(abfd)->_raw_size,
977 adata(abfd).page_size);
978 data_pad = execp->a_data - obj_datasec(abfd)->_raw_size;
979
980 /* BSS. */
981 if (!obj_bsssec(abfd)->user_set_vma)
982 obj_bsssec(abfd)->vma = (obj_datasec(abfd)->vma
983 + obj_datasec(abfd)->_raw_size);
5330499f
DM
984 /* If the BSS immediately follows the data section and extra space
985 in the page is left after the data section, fudge data
986 in the header so that the bss section looks smaller by that
987 amount. We'll start the bss section there, and lie to the OS.
988 (Note that a linker script, as well as the above assignment,
989 could have explicitly set the BSS vma to immediately follow
990 the data section.) */
991 if (align_power (obj_bsssec(abfd)->vma, obj_bsssec(abfd)->alignment_power)
992 == obj_datasec(abfd)->vma + obj_datasec(abfd)->_raw_size)
993 execp->a_bss = (data_pad > obj_bsssec(abfd)->_raw_size) ? 0 :
994 obj_bsssec(abfd)->_raw_size - data_pad;
995 else
996 execp->a_bss = obj_bsssec(abfd)->_raw_size;
4c3721d5
ILT
997}
998
999static void
1000adjust_n_magic (abfd, execp)
1001 bfd *abfd;
1002 struct internal_exec *execp;
1003{
1004 file_ptr pos = adata(abfd).exec_bytes_size;
1005 bfd_vma vma = 0;
1006 int pad;
1007
1008 /* Text. */
1009 obj_textsec(abfd)->filepos = pos;
1010 if (!obj_textsec(abfd)->user_set_vma)
1011 obj_textsec(abfd)->vma = vma;
1012 else
1013 vma = obj_textsec(abfd)->vma;
1014 pos += obj_textsec(abfd)->_raw_size;
1015 vma += obj_textsec(abfd)->_raw_size;
1016
1017 /* Data. */
1018 obj_datasec(abfd)->filepos = pos;
1019 if (!obj_datasec(abfd)->user_set_vma)
1020 obj_datasec(abfd)->vma = BFD_ALIGN (vma, adata(abfd).segment_size);
1021 vma = obj_datasec(abfd)->vma;
1022
1023 /* Since BSS follows data immediately, see if it needs alignment. */
1024 vma += obj_datasec(abfd)->_raw_size;
1025 pad = align_power (vma, obj_bsssec(abfd)->alignment_power) - vma;
1026 obj_datasec(abfd)->_raw_size += pad;
1027 pos += obj_datasec(abfd)->_raw_size;
1028
1029 /* BSS. */
1030 if (!obj_bsssec(abfd)->user_set_vma)
1031 obj_bsssec(abfd)->vma = vma;
1032 else
1033 vma = obj_bsssec(abfd)->vma;
1034
1035 /* Fix up exec header. */
1036 execp->a_text = obj_textsec(abfd)->_raw_size;
1037 execp->a_data = obj_datasec(abfd)->_raw_size;
1038 execp->a_bss = obj_bsssec(abfd)->_raw_size;
1039 N_SET_MAGIC (*execp, NMAGIC);
1040}
1041
ce07dd7c 1042boolean
8eb5d4be
JK
1043NAME(aout,adjust_sizes_and_vmas) (abfd, text_size, text_end)
1044 bfd *abfd;
1045 bfd_size_type *text_size;
1046 file_ptr *text_end;
ce07dd7c
KR
1047{
1048 struct internal_exec *execp = exec_hdr (abfd);
4c3721d5 1049
ec6b18c4
ILT
1050 if (! NAME(aout,make_sections) (abfd))
1051 return false;
1052
f5419a59
ILT
1053 if (adata(abfd).magic != undecided_magic)
1054 return true;
4c3721d5 1055
c188b0be 1056 obj_textsec(abfd)->_raw_size =
ce07dd7c
KR
1057 align_power(obj_textsec(abfd)->_raw_size,
1058 obj_textsec(abfd)->alignment_power);
1059
1060 *text_size = obj_textsec (abfd)->_raw_size;
1061 /* Rule (heuristic) for when to pad to a new page. Note that there
4c3721d5
ILT
1062 are (at least) two ways demand-paged (ZMAGIC) files have been
1063 handled. Most Berkeley-based systems start the text segment at
34e9ffbc 1064 (TARGET_PAGE_SIZE). However, newer versions of SUNOS start the text
4c3721d5
ILT
1065 segment right after the exec header; the latter is counted in the
1066 text segment size, and is paged in by the kernel with the rest of
1067 the text. */
ce07dd7c
KR
1068
1069 /* This perhaps isn't the right way to do this, but made it simpler for me
1070 to understand enough to implement it. Better would probably be to go
1071 right from BFD flags to alignment/positioning characteristics. But the
1072 old code was sloppy enough about handling the flags, and had enough
1073 other magic, that it was a little hard for me to understand. I think
1074 I understand it better now, but I haven't time to do the cleanup this
1075 minute. */
4c3721d5
ILT
1076
1077 if (abfd->flags & D_PAGED)
1078 /* Whether or not WP_TEXT is set -- let D_PAGED override. */
4c3721d5
ILT
1079 adata(abfd).magic = z_magic;
1080 else if (abfd->flags & WP_TEXT)
1081 adata(abfd).magic = n_magic;
1082 else
1083 adata(abfd).magic = o_magic;
ce07dd7c
KR
1084
1085#ifdef BFD_AOUT_DEBUG /* requires gcc2 */
1086#if __GNUC__ >= 2
1087 fprintf (stderr, "%s text=<%x,%x,%x> data=<%x,%x,%x> bss=<%x,%x,%x>\n",
1088 ({ char *str;
1089 switch (adata(abfd).magic) {
1090 case n_magic: str = "NMAGIC"; break;
1091 case o_magic: str = "OMAGIC"; break;
1092 case z_magic: str = "ZMAGIC"; break;
1093 default: abort ();
1094 }
1095 str;
1096 }),
4c3721d5
ILT
1097 obj_textsec(abfd)->vma, obj_textsec(abfd)->_raw_size,
1098 obj_textsec(abfd)->alignment_power,
1099 obj_datasec(abfd)->vma, obj_datasec(abfd)->_raw_size,
1100 obj_datasec(abfd)->alignment_power,
1101 obj_bsssec(abfd)->vma, obj_bsssec(abfd)->_raw_size,
1102 obj_bsssec(abfd)->alignment_power);
ce07dd7c
KR
1103#endif
1104#endif
1105
1106 switch (adata(abfd).magic)
1107 {
1108 case o_magic:
4c3721d5 1109 adjust_o_magic (abfd, execp);
ce07dd7c
KR
1110 break;
1111 case z_magic:
4c3721d5 1112 adjust_z_magic (abfd, execp);
ce07dd7c
KR
1113 break;
1114 case n_magic:
4c3721d5 1115 adjust_n_magic (abfd, execp);
ce07dd7c
KR
1116 break;
1117 default:
1118 abort ();
1119 }
4c3721d5 1120
ce07dd7c
KR
1121#ifdef BFD_AOUT_DEBUG
1122 fprintf (stderr, " text=<%x,%x,%x> data=<%x,%x,%x> bss=<%x,%x>\n",
4c3721d5
ILT
1123 obj_textsec(abfd)->vma, obj_textsec(abfd)->_raw_size,
1124 obj_textsec(abfd)->filepos,
1125 obj_datasec(abfd)->vma, obj_datasec(abfd)->_raw_size,
1126 obj_datasec(abfd)->filepos,
ce07dd7c
KR
1127 obj_bsssec(abfd)->vma, obj_bsssec(abfd)->_raw_size);
1128#endif
4c3721d5 1129
d047d16a 1130 return true;
ce07dd7c
KR
1131}
1132
4e41b5aa
SC
1133/*
1134FUNCTION
c188b0be 1135 aout_@var{size}_new_section_hook
4e41b5aa 1136
fa2b89f1 1137SYNOPSIS
c188b0be 1138 boolean aout_@var{size}_new_section_hook,
9e2dad8e
JG
1139 (bfd *abfd,
1140 asection *newsect));
c188b0be
DM
1141
1142DESCRIPTION
1143 Called by the BFD in response to a @code{bfd_make_section}
1144 request.
6f715d66 1145*/
7ed4093a 1146boolean
8eb5d4be
JK
1147NAME(aout,new_section_hook) (abfd, newsect)
1148 bfd *abfd;
1149 asection *newsect;
7ed4093a 1150{
6db82ea7
SC
1151 /* align to double at least */
1152 newsect->alignment_power = bfd_get_arch_info(abfd)->section_align_power;
3f7607af 1153
c188b0be
DM
1154
1155 if (bfd_get_format (abfd) == bfd_object)
6db82ea7
SC
1156 {
1157 if (obj_textsec(abfd) == NULL && !strcmp(newsect->name, ".text")) {
1158 obj_textsec(abfd)= newsect;
e48f985c 1159 newsect->target_index = N_TEXT;
6db82ea7
SC
1160 return true;
1161 }
c188b0be 1162
6db82ea7
SC
1163 if (obj_datasec(abfd) == NULL && !strcmp(newsect->name, ".data")) {
1164 obj_datasec(abfd) = newsect;
e48f985c 1165 newsect->target_index = N_DATA;
6db82ea7
SC
1166 return true;
1167 }
c188b0be 1168
6db82ea7
SC
1169 if (obj_bsssec(abfd) == NULL && !strcmp(newsect->name, ".bss")) {
1170 obj_bsssec(abfd) = newsect;
e48f985c 1171 newsect->target_index = N_BSS;
6db82ea7
SC
1172 return true;
1173 }
1174
1175 }
c188b0be 1176
6db82ea7
SC
1177 /* We allow more than three sections internally */
1178 return true;
7ed4093a
SC
1179}
1180
1181boolean
8eb5d4be
JK
1182NAME(aout,set_section_contents) (abfd, section, location, offset, count)
1183 bfd *abfd;
1184 sec_ptr section;
1185 PTR location;
1186 file_ptr offset;
1187 bfd_size_type count;
7ed4093a 1188{
7b02b4ed 1189 file_ptr text_end;
7b02b4ed 1190 bfd_size_type text_size;
ce07dd7c 1191
773033d2
ILT
1192 if (! abfd->output_has_begun)
1193 {
1194 if (! NAME(aout,adjust_sizes_and_vmas) (abfd, &text_size, &text_end))
1195 return false;
1196 }
12e7087f 1197
773033d2
ILT
1198 if (section == obj_bsssec (abfd))
1199 {
1200 bfd_set_error (bfd_error_no_contents);
1201 return false;
1202 }
1203
1204 if (section != obj_textsec (abfd)
1205 && section != obj_datasec (abfd))
1206 {
a1774c51
ILT
1207 (*_bfd_error_handler)
1208 ("%s: can not represent section `%s' in a.out object file format",
1209 bfd_get_filename (abfd), bfd_get_section_name (abfd, section));
773033d2
ILT
1210 bfd_set_error (bfd_error_nonrepresentable_section);
1211 return false;
1212 }
1213
1214 if (count != 0)
1215 {
1216 if (bfd_seek (abfd, section->filepos + offset, SEEK_SET) != 0
1217 || bfd_write (location, 1, count, abfd) != count)
1218 return false;
1219 }
c188b0be 1220
7ed4093a
SC
1221 return true;
1222}
1223\f
5c8444f8
ILT
1224/* Read the external symbols from an a.out file. */
1225
1226static boolean
1227aout_get_external_symbols (abfd)
1228 bfd *abfd;
1229{
1230 if (obj_aout_external_syms (abfd) == (struct external_nlist *) NULL)
1231 {
1232 bfd_size_type count;
1233 struct external_nlist *syms;
1234
1235 count = exec_hdr (abfd)->a_syms / EXTERNAL_NLIST_SIZE;
1236
7ac84736 1237#ifdef USE_MMAP
4fe6d901
KR
1238 if (bfd_get_file_window (abfd,
1239 obj_sym_filepos (abfd), exec_hdr (abfd)->a_syms,
0bb8ff19 1240 &obj_aout_sym_window (abfd), true) == false)
4fe6d901
KR
1241 return false;
1242 syms = (struct external_nlist *) obj_aout_sym_window (abfd).data;
7ac84736
KR
1243#else
1244 /* We allocate using malloc to make the values easy to free
1245 later on. If we put them on the obstack it might not be
1246 possible to free them. */
1247 syms = ((struct external_nlist *)
58142f10 1248 bfd_malloc ((size_t) count * EXTERNAL_NLIST_SIZE));
7ac84736 1249 if (syms == (struct external_nlist *) NULL && count != 0)
58142f10 1250 return false;
7ac84736
KR
1251
1252 if (bfd_seek (abfd, obj_sym_filepos (abfd), SEEK_SET) != 0
1253 || (bfd_read (syms, 1, exec_hdr (abfd)->a_syms, abfd)
1254 != exec_hdr (abfd)->a_syms))
1255 {
1256 free (syms);
1257 return false;
1258 }
1259#endif
5c8444f8
ILT
1260
1261 obj_aout_external_syms (abfd) = syms;
1262 obj_aout_external_sym_count (abfd) = count;
1263 }
1264
4f019d04
ILT
1265 if (obj_aout_external_strings (abfd) == NULL
1266 && exec_hdr (abfd)->a_syms != 0)
5c8444f8
ILT
1267 {
1268 unsigned char string_chars[BYTES_IN_WORD];
1269 bfd_size_type stringsize;
1270 char *strings;
1271
1272 /* Get the size of the strings. */
1273 if (bfd_seek (abfd, obj_str_filepos (abfd), SEEK_SET) != 0
1274 || (bfd_read ((PTR) string_chars, BYTES_IN_WORD, 1, abfd)
1275 != BYTES_IN_WORD))
1276 return false;
1277 stringsize = GET_WORD (abfd, string_chars);
1278
7ac84736 1279#ifdef USE_MMAP
4fe6d901 1280 if (bfd_get_file_window (abfd, obj_str_filepos (abfd), stringsize,
0bb8ff19 1281 &obj_aout_string_window (abfd), true) == false)
4fe6d901
KR
1282 return false;
1283 strings = (char *) obj_aout_string_window (abfd).data;
7ac84736 1284#else
58142f10 1285 strings = (char *) bfd_malloc ((size_t) stringsize + 1);
7ac84736 1286 if (strings == NULL)
58142f10 1287 return false;
7ac84736
KR
1288
1289 /* Skip space for the string count in the buffer for convenience
1290 when using indexes. */
1291 if (bfd_read (strings + BYTES_IN_WORD, 1, stringsize - BYTES_IN_WORD,
1292 abfd)
1293 != stringsize - BYTES_IN_WORD)
1294 {
1295 free (strings);
1296 return false;
1297 }
1298#endif
5c8444f8 1299
1afd2380
ILT
1300 /* Ensure that a zero index yields an empty string. */
1301 strings[0] = '\0';
1302
7ac84736 1303 strings[stringsize - 1] = 0;
5c8444f8
ILT
1304
1305 obj_aout_external_strings (abfd) = strings;
1306 obj_aout_external_string_size (abfd) = stringsize;
1307 }
1308
1309 return true;
1310}
1311
4298e311
ILT
1312/* Translate an a.out symbol into a BFD symbol. The desc, other, type
1313 and symbol->value fields of CACHE_PTR will be set from the a.out
1314 nlist structure. This function is responsible for setting
1315 symbol->flags and symbol->section, and adjusting symbol->value. */
c188b0be 1316
9783e04a 1317static boolean
4298e311
ILT
1318translate_from_native_sym_flags (abfd, cache_ptr)
1319 bfd *abfd;
1320 aout_symbol_type *cache_ptr;
9e2dad8e 1321{
4298e311
ILT
1322 flagword visible;
1323
1324 if ((cache_ptr->type & N_STAB) != 0
1325 || cache_ptr->type == N_FN)
1326 {
1327 asection *sec;
1328
1329 /* This is a debugging symbol. */
1330
1331 cache_ptr->symbol.flags = BSF_DEBUGGING;
1332
1333 /* Work out the symbol section. */
1334 switch (cache_ptr->type & N_TYPE)
1335 {
1336 case N_TEXT:
1337 case N_FN:
1338 sec = obj_textsec (abfd);
1339 break;
1340 case N_DATA:
1341 sec = obj_datasec (abfd);
1342 break;
1343 case N_BSS:
1344 sec = obj_bsssec (abfd);
1345 break;
1346 default:
1347 case N_ABS:
4587b578 1348 sec = bfd_abs_section_ptr;
4298e311
ILT
1349 break;
1350 }
1351
1352 cache_ptr->symbol.section = sec;
1353 cache_ptr->symbol.value -= sec->vma;
1354
1355 return true;
1356 }
1357
1358 /* Get the default visibility. This does not apply to all types, so
1359 we just hold it in a local variable to use if wanted. */
1360 if ((cache_ptr->type & N_EXT) == 0)
1361 visible = BSF_LOCAL;
1362 else
1363 visible = BSF_GLOBAL;
1364
1365 switch (cache_ptr->type)
6db82ea7 1366 {
4298e311
ILT
1367 default:
1368 case N_ABS: case N_ABS | N_EXT:
4587b578 1369 cache_ptr->symbol.section = bfd_abs_section_ptr;
4298e311
ILT
1370 cache_ptr->symbol.flags = visible;
1371 break;
1372
1373 case N_UNDF | N_EXT:
1374 if (cache_ptr->symbol.value != 0)
1375 {
1376 /* This is a common symbol. */
1377 cache_ptr->symbol.flags = BSF_GLOBAL;
4587b578 1378 cache_ptr->symbol.section = bfd_com_section_ptr;
4298e311
ILT
1379 }
1380 else
1381 {
1382 cache_ptr->symbol.flags = 0;
4587b578 1383 cache_ptr->symbol.section = bfd_und_section_ptr;
4298e311
ILT
1384 }
1385 break;
1386
1387 case N_TEXT: case N_TEXT | N_EXT:
1388 cache_ptr->symbol.section = obj_textsec (abfd);
1389 cache_ptr->symbol.value -= cache_ptr->symbol.section->vma;
1390 cache_ptr->symbol.flags = visible;
1391 break;
1392
2cd086e3
ILT
1393 /* N_SETV symbols used to represent set vectors placed in the
1394 data section. They are no longer generated. Theoretically,
1395 it was possible to extract the entries and combine them with
1396 new ones, although I don't know if that was ever actually
1397 done. Unless that feature is restored, treat them as data
1398 symbols. */
1399 case N_SETV: case N_SETV | N_EXT:
4298e311
ILT
1400 case N_DATA: case N_DATA | N_EXT:
1401 cache_ptr->symbol.section = obj_datasec (abfd);
1402 cache_ptr->symbol.value -= cache_ptr->symbol.section->vma;
1403 cache_ptr->symbol.flags = visible;
1404 break;
1405
1406 case N_BSS: case N_BSS | N_EXT:
1407 cache_ptr->symbol.section = obj_bsssec (abfd);
1408 cache_ptr->symbol.value -= cache_ptr->symbol.section->vma;
1409 cache_ptr->symbol.flags = visible;
1410 break;
1411
964affdc
DM
1412 case N_SETA: case N_SETA | N_EXT:
1413 case N_SETT: case N_SETT | N_EXT:
1414 case N_SETD: case N_SETD | N_EXT:
1415 case N_SETB: case N_SETB | N_EXT:
ebd24135 1416 {
b7d1158a
ILT
1417 /* This code is no longer needed. It used to be used to make
1418 the linker handle set symbols, but they are now handled in
1419 the add_symbols routine instead. */
1420#if 0
ebd24135 1421 asection *section;
4298e311 1422 arelent_chain *reloc;
ebd24135 1423 asection *into_section;
9783e04a 1424
4298e311
ILT
1425 /* This is a set symbol. The name of the symbol is the name
1426 of the set (e.g., __CTOR_LIST__). The value of the symbol
1427 is the value to add to the set. We create a section with
1428 the same name as the symbol, and add a reloc to insert the
1429 appropriate value into the section.
1430
1431 This action is actually obsolete; it used to make the
1432 linker do the right thing, but the linker no longer uses
1433 this function. */
1434
1435 section = bfd_get_section_by_name (abfd, cache_ptr->symbol.name);
1436 if (section == NULL)
1437 {
1438 char *copy;
1439
1440 copy = bfd_alloc (abfd, strlen (cache_ptr->symbol.name) + 1);
1441 if (copy == NULL)
a9713b91 1442 return false;
4298e311
ILT
1443
1444 strcpy (copy, cache_ptr->symbol.name);
1445 section = bfd_make_section (abfd, copy);
1446 if (section == NULL)
1447 return false;
1448 }
1449
1450 reloc = (arelent_chain *) bfd_alloc (abfd, sizeof (arelent_chain));
1451 if (reloc == NULL)
a9713b91 1452 return false;
9783e04a 1453
4298e311
ILT
1454 /* Build a relocation entry for the constructor. */
1455 switch (cache_ptr->type & N_TYPE)
a99c3d70 1456 {
4298e311 1457 case N_SETA:
4587b578 1458 into_section = bfd_abs_section_ptr;
ebd24135
ILT
1459 cache_ptr->type = N_ABS;
1460 break;
4298e311
ILT
1461 case N_SETT:
1462 into_section = obj_textsec (abfd);
ebd24135
ILT
1463 cache_ptr->type = N_TEXT;
1464 break;
4298e311
ILT
1465 case N_SETD:
1466 into_section = obj_datasec (abfd);
ebd24135
ILT
1467 cache_ptr->type = N_DATA;
1468 break;
4298e311
ILT
1469 case N_SETB:
1470 into_section = obj_bsssec (abfd);
ebd24135
ILT
1471 cache_ptr->type = N_BSS;
1472 break;
ebd24135 1473 }
88dfcd68 1474
4298e311
ILT
1475 /* Build a relocation pointing into the constructor section
1476 pointing at the symbol in the set vector specified. */
ebd24135 1477 reloc->relent.addend = cache_ptr->symbol.value;
4298e311 1478 cache_ptr->symbol.section = into_section;
ebd24135 1479 reloc->relent.sym_ptr_ptr = into_section->symbol_ptr_ptr;
6db82ea7 1480
4298e311
ILT
1481 /* We modify the symbol to belong to a section depending upon
1482 the name of the symbol, and add to the size of the section
1483 to contain a pointer to the symbol. Build a reloc entry to
1484 relocate to this symbol attached to this section. */
a8a916c8 1485 section->flags = SEC_CONSTRUCTOR | SEC_RELOC;
a99c3d70 1486
ebd24135
ILT
1487 section->reloc_count++;
1488 section->alignment_power = 2;
a99c3d70 1489
ebd24135
ILT
1490 reloc->next = section->constructor_chain;
1491 section->constructor_chain = reloc;
1492 reloc->relent.address = section->_raw_size;
4298e311
ILT
1493 section->_raw_size += BYTES_IN_WORD;
1494
f42fe159 1495 reloc->relent.howto = CTOR_TABLE_RELOC_HOWTO(abfd);
a99c3d70 1496
b7d1158a
ILT
1497#endif /* 0 */
1498
7dd3d45a
ILT
1499 switch (cache_ptr->type & N_TYPE)
1500 {
1501 case N_SETA:
1502 cache_ptr->symbol.section = bfd_abs_section_ptr;
1503 break;
1504 case N_SETT:
1505 cache_ptr->symbol.section = obj_textsec (abfd);
1506 break;
1507 case N_SETD:
1508 cache_ptr->symbol.section = obj_datasec (abfd);
1509 break;
1510 case N_SETB:
1511 cache_ptr->symbol.section = obj_bsssec (abfd);
1512 break;
1513 }
1514
ebd24135
ILT
1515 cache_ptr->symbol.flags |= BSF_CONSTRUCTOR;
1516 }
1517 break;
0c205af2 1518
4298e311
ILT
1519 case N_WARNING:
1520 /* This symbol is the text of a warning message. The next
1521 symbol is the symbol to associate the warning with. If a
1522 reference is made to that symbol, a warning is issued. */
1523 cache_ptr->symbol.flags = BSF_DEBUGGING | BSF_WARNING;
4587b578 1524 cache_ptr->symbol.section = bfd_abs_section_ptr;
4298e311 1525 break;
ebd24135 1526
4298e311
ILT
1527 case N_INDR: case N_INDR | N_EXT:
1528 /* An indirect symbol. This consists of two symbols in a row.
1529 The first symbol is the name of the indirection. The second
1530 symbol is the name of the target. A reference to the first
1531 symbol becomes a reference to the second. */
1532 cache_ptr->symbol.flags = BSF_DEBUGGING | BSF_INDIRECT | visible;
4587b578 1533 cache_ptr->symbol.section = bfd_ind_section_ptr;
4298e311
ILT
1534 break;
1535
1536 case N_WEAKU:
4587b578 1537 cache_ptr->symbol.section = bfd_und_section_ptr;
4298e311
ILT
1538 cache_ptr->symbol.flags = BSF_WEAK;
1539 break;
1540
1541 case N_WEAKA:
4587b578 1542 cache_ptr->symbol.section = bfd_abs_section_ptr;
4298e311
ILT
1543 cache_ptr->symbol.flags = BSF_WEAK;
1544 break;
1545
1546 case N_WEAKT:
1547 cache_ptr->symbol.section = obj_textsec (abfd);
1548 cache_ptr->symbol.value -= cache_ptr->symbol.section->vma;
1549 cache_ptr->symbol.flags = BSF_WEAK;
1550 break;
1551
1552 case N_WEAKD:
1553 cache_ptr->symbol.section = obj_datasec (abfd);
1554 cache_ptr->symbol.value -= cache_ptr->symbol.section->vma;
1555 cache_ptr->symbol.flags = BSF_WEAK;
1556 break;
1557
1558 case N_WEAKB:
1559 cache_ptr->symbol.section = obj_bsssec (abfd);
1560 cache_ptr->symbol.value -= cache_ptr->symbol.section->vma;
1561 cache_ptr->symbol.flags = BSF_WEAK;
1562 break;
a99c3d70 1563 }
4298e311 1564
9783e04a 1565 return true;
7ed4093a
SC
1566}
1567
4298e311 1568/* Set the fields of SYM_POINTER according to CACHE_PTR. */
6db82ea7 1569
4c3721d5 1570static boolean
4298e311 1571translate_to_native_sym_flags (abfd, cache_ptr, sym_pointer)
8eb5d4be 1572 bfd *abfd;
4298e311
ILT
1573 asymbol *cache_ptr;
1574 struct external_nlist *sym_pointer;
7ed4093a
SC
1575{
1576 bfd_vma value = cache_ptr->value;
943fbd5b
KR
1577 asection *sec;
1578 bfd_vma off;
7ed4093a 1579
4298e311
ILT
1580 /* Mask out any existing type bits in case copying from one section
1581 to another. */
10dea9ed 1582 sym_pointer->e_type[0] &= ~N_TYPE;
a99c3d70 1583
943fbd5b
KR
1584 sec = bfd_get_section (cache_ptr);
1585 off = 0;
1586
1587 if (sec == NULL)
4298e311 1588 {
943fbd5b
KR
1589 /* This case occurs, e.g., for the *DEBUG* section of a COFF
1590 file. */
a1774c51
ILT
1591 (*_bfd_error_handler)
1592 ("%s: can not represent section `%s' in a.out object file format",
1593 bfd_get_filename (abfd), bfd_get_section_name (abfd, sec));
4298e311
ILT
1594 bfd_set_error (bfd_error_nonrepresentable_section);
1595 return false;
1596 }
943fbd5b
KR
1597
1598 if (sec->output_section != NULL)
1599 {
1600 off = sec->output_offset;
1601 sec = sec->output_section;
1602 }
1603
1604 if (bfd_is_abs_section (sec))
1605 sym_pointer->e_type[0] |= N_ABS;
1606 else if (sec == obj_textsec (abfd))
1607 sym_pointer->e_type[0] |= N_TEXT;
1608 else if (sec == obj_datasec (abfd))
1609 sym_pointer->e_type[0] |= N_DATA;
1610 else if (sec == obj_bsssec (abfd))
1611 sym_pointer->e_type[0] |= N_BSS;
1612 else if (bfd_is_und_section (sec))
4587b578 1613 sym_pointer->e_type[0] = N_UNDF | N_EXT;
943fbd5b 1614 else if (bfd_is_ind_section (sec))
4587b578 1615 sym_pointer->e_type[0] = N_INDR;
943fbd5b 1616 else if (bfd_is_com_section (sec))
4298e311
ILT
1617 sym_pointer->e_type[0] = N_UNDF | N_EXT;
1618 else
1619 {
a1774c51
ILT
1620 (*_bfd_error_handler)
1621 ("%s: can not represent section `%s' in a.out object file format",
1622 bfd_get_filename (abfd), bfd_get_section_name (abfd, sec));
4298e311
ILT
1623 bfd_set_error (bfd_error_nonrepresentable_section);
1624 return false;
1625 }
6f56c941 1626
6db82ea7 1627 /* Turn the symbol from section relative to absolute again */
943fbd5b 1628 value += sec->vma + off;
c188b0be 1629
4298e311 1630 if ((cache_ptr->flags & BSF_WARNING) != 0)
d7e34f67 1631 sym_pointer->e_type[0] = N_WARNING;
c188b0be 1632
4298e311
ILT
1633 if ((cache_ptr->flags & BSF_DEBUGGING) != 0)
1634 sym_pointer->e_type[0] = ((aout_symbol_type *) cache_ptr)->type;
1635 else if ((cache_ptr->flags & BSF_GLOBAL) != 0)
3caa6924 1636 sym_pointer->e_type[0] |= N_EXT;
4298e311
ILT
1637
1638 if ((cache_ptr->flags & BSF_CONSTRUCTOR) != 0)
1639 {
1640 int type = ((aout_symbol_type *) cache_ptr)->type;
1641 switch (type)
1642 {
1643 case N_ABS: type = N_SETA; break;
1644 case N_TEXT: type = N_SETT; break;
1645 case N_DATA: type = N_SETD; break;
1646 case N_BSS: type = N_SETB; break;
1647 }
1648 sym_pointer->e_type[0] = type;
1649 }
1650
1651 if ((cache_ptr->flags & BSF_WEAK) != 0)
1652 {
1653 int type;
1654
1655 switch (sym_pointer->e_type[0] & N_TYPE)
1656 {
1657 default:
1658 case N_ABS: type = N_WEAKA; break;
1659 case N_TEXT: type = N_WEAKT; break;
1660 case N_DATA: type = N_WEAKD; break;
1661 case N_BSS: type = N_WEAKB; break;
1662 case N_UNDF: type = N_WEAKU; break;
1663 }
1664 sym_pointer->e_type[0] = type;
1665 }
6db82ea7 1666
7ed4093a 1667 PUT_WORD(abfd, value, sym_pointer->e_value);
4c3721d5
ILT
1668
1669 return true;
7ed4093a
SC
1670}
1671\f
1672/* Native-level interface to symbols. */
1673
7ed4093a 1674asymbol *
8eb5d4be
JK
1675NAME(aout,make_empty_symbol) (abfd)
1676 bfd *abfd;
9e2dad8e
JG
1677{
1678 aout_symbol_type *new =
1679 (aout_symbol_type *)bfd_zalloc (abfd, sizeof (aout_symbol_type));
9783e04a 1680 if (!new)
a9713b91 1681 return NULL;
9e2dad8e 1682 new->symbol.the_bfd = abfd;
fa2b89f1 1683
9e2dad8e
JG
1684 return &new->symbol;
1685}
7ed4093a 1686
0ee75d02
ILT
1687/* Translate a set of internal symbols into external symbols. */
1688
fa77c704
ILT
1689boolean
1690NAME(aout,translate_symbol_table) (abfd, in, ext, count, str, strsize, dynamic)
0ee75d02
ILT
1691 bfd *abfd;
1692 aout_symbol_type *in;
1693 struct external_nlist *ext;
1694 bfd_size_type count;
1695 char *str;
1696 bfd_size_type strsize;
1697 boolean dynamic;
1698{
1699 struct external_nlist *ext_end;
1700
1701 ext_end = ext + count;
1702 for (; ext < ext_end; ext++, in++)
1703 {
1704 bfd_vma x;
1705
1706 x = GET_WORD (abfd, ext->e_strx);
1707 in->symbol.the_bfd = abfd;
ca1c6bec
ILT
1708
1709 /* For the normal symbols, the zero index points at the number
1710 of bytes in the string table but is to be interpreted as the
1711 null string. For the dynamic symbols, the number of bytes in
1712 the string table is stored in the __DYNAMIC structure and the
1713 zero index points at an actual string. */
1714 if (x == 0 && ! dynamic)
1715 in->symbol.name = "";
1716 else if (x < strsize)
0ee75d02
ILT
1717 in->symbol.name = str + x;
1718 else
1719 return false;
1720
1721 in->symbol.value = GET_SWORD (abfd, ext->e_value);
1722 in->desc = bfd_h_get_16 (abfd, ext->e_desc);
1723 in->other = bfd_h_get_8 (abfd, ext->e_other);
1724 in->type = bfd_h_get_8 (abfd, ext->e_type);
74942465 1725 in->symbol.udata.p = NULL;
0ee75d02 1726
4298e311 1727 if (! translate_from_native_sym_flags (abfd, in))
9783e04a 1728 return false;
0ee75d02
ILT
1729
1730 if (dynamic)
1731 in->symbol.flags |= BSF_DYNAMIC;
1732 }
1733
1734 return true;
1735}
1736
1737/* We read the symbols into a buffer, which is discarded when this
1738 function exits. We read the strings into a buffer large enough to
1739 hold them all plus all the cached symbol entries. */
1740
7ed4093a 1741boolean
8eb5d4be
JK
1742NAME(aout,slurp_symbol_table) (abfd)
1743 bfd *abfd;
9e2dad8e 1744{
5c8444f8 1745 struct external_nlist *old_external_syms;
9e2dad8e 1746 aout_symbol_type *cached;
5c8444f8 1747 size_t cached_size;
0f213cc2 1748
9e2dad8e 1749 /* If there's no work to be done, don't do any */
5c8444f8
ILT
1750 if (obj_aout_symbols (abfd) != (aout_symbol_type *) NULL)
1751 return true;
1752
1753 old_external_syms = obj_aout_external_syms (abfd);
1754
1755 if (! aout_get_external_symbols (abfd))
1756 return false;
1757
fa77c704 1758 cached_size = (obj_aout_external_sym_count (abfd)
5c8444f8 1759 * sizeof (aout_symbol_type));
58142f10 1760 cached = (aout_symbol_type *) bfd_malloc (cached_size);
74942465 1761 if (cached == NULL && cached_size != 0)
58142f10 1762 return false;
74942465
ILT
1763 if (cached_size != 0)
1764 memset (cached, 0, cached_size);
5c8444f8
ILT
1765
1766 /* Convert from external symbol information to internal. */
fa77c704
ILT
1767 if (! (NAME(aout,translate_symbol_table)
1768 (abfd, cached,
1769 obj_aout_external_syms (abfd),
1770 obj_aout_external_sym_count (abfd),
1771 obj_aout_external_strings (abfd),
1772 obj_aout_external_string_size (abfd),
1773 false)))
0f213cc2 1774 {
5c8444f8 1775 free (cached);
0f213cc2
KR
1776 return false;
1777 }
1778
fa77c704 1779 bfd_get_symcount (abfd) = obj_aout_external_sym_count (abfd);
0f213cc2 1780
5c8444f8 1781 obj_aout_symbols (abfd) = cached;
0f213cc2 1782
5c8444f8
ILT
1783 /* It is very likely that anybody who calls this function will not
1784 want the external symbol information, so if it was allocated
1785 because of our call to aout_get_external_symbols, we free it up
1786 right away to save space. */
1787 if (old_external_syms == (struct external_nlist *) NULL
1788 && obj_aout_external_syms (abfd) != (struct external_nlist *) NULL)
1789 {
7ac84736 1790#ifdef USE_MMAP
4fe6d901 1791 bfd_free_window (&obj_aout_sym_window (abfd));
7ac84736
KR
1792#else
1793 free (obj_aout_external_syms (abfd));
1794#endif
5c8444f8 1795 obj_aout_external_syms (abfd) = NULL;
0ee75d02 1796 }
0f213cc2 1797
9e2dad8e
JG
1798 return true;
1799}
0f213cc2 1800\f
d17fc4c9
ILT
1801/* We use a hash table when writing out symbols so that we only write
1802 out a particular string once. This helps particularly when the
1803 linker writes out stabs debugging entries, because each different
1804 contributing object file tends to have many duplicate stabs
1805 strings.
1806
d63d0479
ILT
1807 This hash table code breaks dbx on SunOS 4.1.3, so we don't do it
1808 if BFD_TRADITIONAL_FORMAT is set. */
0f213cc2 1809
d17fc4c9 1810static bfd_size_type add_to_stringtab
1afd2380
ILT
1811 PARAMS ((bfd *, struct bfd_strtab_hash *, const char *, boolean));
1812static boolean emit_stringtab PARAMS ((bfd *, struct bfd_strtab_hash *));
d17fc4c9
ILT
1813
1814/* Get the index of a string in a strtab, adding it if it is not
1afd2380 1815 already present. */
d17fc4c9
ILT
1816
1817static INLINE bfd_size_type
1818add_to_stringtab (abfd, tab, str, copy)
0f213cc2 1819 bfd *abfd;
1afd2380 1820 struct bfd_strtab_hash *tab;
d17fc4c9
ILT
1821 const char *str;
1822 boolean copy;
0f213cc2 1823{
1afd2380 1824 boolean hash;
435b470e 1825 bfd_size_type index;
0f213cc2 1826
d17fc4c9 1827 /* An index of 0 always means the empty string. */
204ba9e3 1828 if (str == 0 || *str == '\0')
d17fc4c9 1829 return 0;
0f213cc2 1830
1afd2380
ILT
1831 /* Don't hash if BFD_TRADITIONAL_FORMAT is set, because SunOS dbx
1832 doesn't understand a hashed string table. */
1833 hash = true;
1834 if ((abfd->flags & BFD_TRADITIONAL_FORMAT) != 0)
1835 hash = false;
0f213cc2 1836
435b470e
ILT
1837 index = _bfd_stringtab_add (tab, str, hash, copy);
1838
1839 if (index != (bfd_size_type) -1)
1840 {
1841 /* Add BYTES_IN_WORD to the return value to account for the
1842 space taken up by the string table size. */
1843 index += BYTES_IN_WORD;
1844 }
1845
1846 return index;
0f213cc2
KR
1847}
1848
d17fc4c9
ILT
1849/* Write out a strtab. ABFD is already at the right location in the
1850 file. */
1851
29e626eb 1852static boolean
d17fc4c9
ILT
1853emit_stringtab (abfd, tab)
1854 register bfd *abfd;
1afd2380 1855 struct bfd_strtab_hash *tab;
0f213cc2 1856{
d17fc4c9 1857 bfd_byte buffer[BYTES_IN_WORD];
0f213cc2 1858
1afd2380
ILT
1859 /* The string table starts with the size. */
1860 PUT_WORD (abfd, _bfd_stringtab_size (tab) + BYTES_IN_WORD, buffer);
29e626eb
ILT
1861 if (bfd_write ((PTR) buffer, 1, BYTES_IN_WORD, abfd) != BYTES_IN_WORD)
1862 return false;
0f213cc2 1863
1afd2380 1864 return _bfd_stringtab_emit (abfd, tab);
0f213cc2 1865}
d17fc4c9 1866\f
4c3721d5 1867boolean
8eb5d4be
JK
1868NAME(aout,write_syms) (abfd)
1869 bfd *abfd;
0f213cc2
KR
1870{
1871 unsigned int count ;
1872 asymbol **generic = bfd_get_outsymbols (abfd);
1afd2380 1873 struct bfd_strtab_hash *strtab;
0f213cc2 1874
1afd2380
ILT
1875 strtab = _bfd_stringtab_init ();
1876 if (strtab == NULL)
d17fc4c9 1877 return false;
0f213cc2
KR
1878
1879 for (count = 0; count < bfd_get_symcount (abfd); count++)
1880 {
7ed4093a 1881 asymbol *g = generic[count];
d17fc4c9 1882 bfd_size_type indx;
7ed4093a 1883 struct external_nlist nsp;
6db82ea7 1884
1afd2380 1885 indx = add_to_stringtab (abfd, strtab, g->name, false);
d17fc4c9
ILT
1886 if (indx == (bfd_size_type) -1)
1887 goto error_return;
1888 PUT_WORD (abfd, indx, (bfd_byte *) nsp.e_strx);
6db82ea7 1889
0f213cc2
KR
1890 if (bfd_asymbol_flavour(g) == abfd->xvec->flavour)
1891 {
1892 bfd_h_put_16(abfd, aout_symbol(g)->desc, nsp.e_desc);
1893 bfd_h_put_8(abfd, aout_symbol(g)->other, nsp.e_other);
1894 bfd_h_put_8(abfd, aout_symbol(g)->type, nsp.e_type);
1895 }
7ed4093a 1896 else
0f213cc2
KR
1897 {
1898 bfd_h_put_16(abfd,0, nsp.e_desc);
1899 bfd_h_put_8(abfd, 0, nsp.e_other);
1900 bfd_h_put_8(abfd, 0, nsp.e_type);
1901 }
7b02b4ed 1902
4298e311 1903 if (! translate_to_native_sym_flags (abfd, g, &nsp))
d17fc4c9 1904 goto error_return;
7b02b4ed 1905
4c3721d5
ILT
1906 if (bfd_write((PTR)&nsp,1,EXTERNAL_NLIST_SIZE, abfd)
1907 != EXTERNAL_NLIST_SIZE)
d17fc4c9 1908 goto error_return;
7ed4093a 1909
ae115e51 1910 /* NB: `KEEPIT' currently overlays `udata.p', so set this only
0f213cc2
KR
1911 here, at the end. */
1912 g->KEEPIT = count;
1913 }
7ed4093a 1914
1afd2380 1915 if (! emit_stringtab (abfd, strtab))
d17fc4c9
ILT
1916 goto error_return;
1917
1afd2380 1918 _bfd_stringtab_free (strtab);
d17fc4c9
ILT
1919
1920 return true;
1921
1922error_return:
1afd2380 1923 _bfd_stringtab_free (strtab);
d17fc4c9 1924 return false;
0f213cc2 1925}
7ed4093a 1926
0f213cc2 1927\f
326e32d7 1928long
8eb5d4be
JK
1929NAME(aout,get_symtab) (abfd, location)
1930 bfd *abfd;
1931 asymbol **location;
3f7607af 1932{
7ed4093a
SC
1933 unsigned int counter = 0;
1934 aout_symbol_type *symbase;
ce07dd7c 1935
326e32d7
ILT
1936 if (!NAME(aout,slurp_symbol_table)(abfd))
1937 return -1;
ce07dd7c 1938
7ed4093a
SC
1939 for (symbase = obj_aout_symbols(abfd); counter++ < bfd_get_symcount (abfd);)
1940 *(location++) = (asymbol *)( symbase++);
1941 *location++ =0;
ce07dd7c 1942 return bfd_get_symcount (abfd);
3f7607af 1943}
7ed4093a
SC
1944
1945\f
1946/* Standard reloc stuff */
1947/* Output standard relocation information to a file in target byte order. */
1948
1949void
8eb5d4be
JK
1950NAME(aout,swap_std_reloc_out) (abfd, g, natptr)
1951 bfd *abfd;
1952 arelent *g;
1953 struct reloc_std_external *natptr;
3f7607af 1954{
6db82ea7
SC
1955 int r_index;
1956 asymbol *sym = *(g->sym_ptr_ptr);
1957 int r_extern;
1958 unsigned int r_length;
1959 int r_pcrel;
1960 int r_baserel, r_jmptable, r_relative;
6db82ea7 1961 asection *output_section = sym->section->output_section;
ce07dd7c 1962
6db82ea7 1963 PUT_WORD(abfd, g->address, natptr->r_address);
ce07dd7c 1964
6db82ea7
SC
1965 r_length = g->howto->size ; /* Size as a power of two */
1966 r_pcrel = (int) g->howto->pc_relative; /* Relative to PC? */
c188b0be
DM
1967 /* XXX This relies on relocs coming from a.out files. */
1968 r_baserel = (g->howto->type & 8) != 0;
cb9461ff
JK
1969 r_jmptable = (g->howto->type & 16) != 0;
1970 r_relative = (g->howto->type & 32) != 0;
c188b0be 1971
728472f1
ILT
1972#if 0
1973 /* For a standard reloc, the addend is in the object file. */
6db82ea7 1974 r_addend = g->addend + (*(g->sym_ptr_ptr))->section->output_section->vma;
728472f1 1975#endif
c188b0be 1976
6db82ea7
SC
1977 /* name was clobbered by aout_write_syms to be symbol index */
1978
c188b0be 1979 /* If this relocation is relative to a symbol then set the
2768b3f7
SC
1980 r_index to the symbols index, and the r_extern bit.
1981
1982 Absolute symbols can come in in two ways, either as an offset
1983 from the abs section, or as a symbol which has an abs value.
1984 check for that here
1985 */
c188b0be 1986
2768b3f7 1987
382f2a3d 1988 if (bfd_is_com_section (output_section)
4587b578
ILT
1989 || bfd_is_abs_section (output_section)
1990 || bfd_is_und_section (output_section))
ce07dd7c 1991 {
4587b578 1992 if (bfd_abs_section_ptr->symbol == sym)
2768b3f7
SC
1993 {
1994 /* Whoops, looked like an abs symbol, but is really an offset
1995 from the abs section */
18de3f19 1996 r_index = N_ABS;
2768b3f7
SC
1997 r_extern = 0;
1998 }
c188b0be 1999 else
2768b3f7
SC
2000 {
2001 /* Fill in symbol */
2002 r_extern = 1;
ae115e51 2003 r_index = (*(g->sym_ptr_ptr))->KEEPIT;
c188b0be 2004
2768b3f7 2005 }
ce07dd7c 2006 }
c188b0be 2007 else
ce07dd7c
KR
2008 {
2009 /* Just an ordinary section */
2010 r_extern = 0;
c188b0be 2011 r_index = output_section->target_index;
ce07dd7c
KR
2012 }
2013
6db82ea7 2014 /* now the fun stuff */
64d5f5d0 2015 if (bfd_header_big_endian (abfd)) {
7ed4093a
SC
2016 natptr->r_index[0] = r_index >> 16;
2017 natptr->r_index[1] = r_index >> 8;
2018 natptr->r_index[2] = r_index;
2019 natptr->r_type[0] =
6db82ea7
SC
2020 (r_extern? RELOC_STD_BITS_EXTERN_BIG: 0)
2021 | (r_pcrel? RELOC_STD_BITS_PCREL_BIG: 0)
2022 | (r_baserel? RELOC_STD_BITS_BASEREL_BIG: 0)
2023 | (r_jmptable? RELOC_STD_BITS_JMPTABLE_BIG: 0)
2024 | (r_relative? RELOC_STD_BITS_RELATIVE_BIG: 0)
2025 | (r_length << RELOC_STD_BITS_LENGTH_SH_BIG);
7ed4093a 2026 } else {
6db82ea7
SC
2027 natptr->r_index[2] = r_index >> 16;
2028 natptr->r_index[1] = r_index >> 8;
2029 natptr->r_index[0] = r_index;
2030 natptr->r_type[0] =
2031 (r_extern? RELOC_STD_BITS_EXTERN_LITTLE: 0)
7ed4093a 2032 | (r_pcrel? RELOC_STD_BITS_PCREL_LITTLE: 0)
6db82ea7
SC
2033 | (r_baserel? RELOC_STD_BITS_BASEREL_LITTLE: 0)
2034 | (r_jmptable? RELOC_STD_BITS_JMPTABLE_LITTLE: 0)
2035 | (r_relative? RELOC_STD_BITS_RELATIVE_LITTLE: 0)
2036 | (r_length << RELOC_STD_BITS_LENGTH_SH_LITTLE);
2037 }
3f7607af 2038}
7ed4093a
SC
2039
2040
2041/* Extended stuff */
2042/* Output extended relocation information to a file in target byte order. */
2043
2044void
8eb5d4be
JK
2045NAME(aout,swap_ext_reloc_out) (abfd, g, natptr)
2046 bfd *abfd;
2047 arelent *g;
2048 register struct reloc_ext_external *natptr;
3f7607af 2049{
6db82ea7
SC
2050 int r_index;
2051 int r_extern;
2052 unsigned int r_type;
2053 unsigned int r_addend;
c188b0be 2054 asymbol *sym = *(g->sym_ptr_ptr);
6db82ea7 2055 asection *output_section = sym->section->output_section;
c188b0be 2056
6db82ea7 2057 PUT_WORD (abfd, g->address, natptr->r_address);
c188b0be 2058
6db82ea7 2059 r_type = (unsigned int) g->howto->type;
7ed4093a 2060
ae115e51
ILT
2061 r_addend = g->addend;
2062 if ((sym->flags & BSF_SECTION_SYM) != 0)
2063 r_addend += (*(g->sym_ptr_ptr))->section->output_section->vma;
7ed4093a 2064
c188b0be 2065 /* If this relocation is relative to a symbol then set the
2768b3f7
SC
2066 r_index to the symbols index, and the r_extern bit.
2067
2068 Absolute symbols can come in in two ways, either as an offset
2069 from the abs section, or as a symbol which has an abs value.
c188b0be
DM
2070 check for that here. */
2071
ae115e51 2072 if (bfd_is_abs_section (bfd_get_section (sym)))
2768b3f7 2073 {
2768b3f7 2074 r_extern = 0;
18de3f19 2075 r_index = N_ABS;
ae115e51
ILT
2076 }
2077 else if ((sym->flags & BSF_SECTION_SYM) == 0)
2768b3f7 2078 {
f69e888e
ILT
2079 if (bfd_is_und_section (bfd_get_section (sym))
2080 || (sym->flags & BSF_GLOBAL) != 0)
2081 r_extern = 1;
2082 else
2083 r_extern = 0;
ae115e51 2084 r_index = (*(g->sym_ptr_ptr))->KEEPIT;
2768b3f7 2085 }
c188b0be 2086 else
ae115e51
ILT
2087 {
2088 /* Just an ordinary section */
2089 r_extern = 0;
2090 r_index = output_section->target_index;
2091 }
c188b0be 2092
7ed4093a 2093 /* now the fun stuff */
64d5f5d0 2094 if (bfd_header_big_endian (abfd)) {
2768b3f7
SC
2095 natptr->r_index[0] = r_index >> 16;
2096 natptr->r_index[1] = r_index >> 8;
2097 natptr->r_index[2] = r_index;
2098 natptr->r_type[0] =
c188b0be
DM
2099 ((r_extern? RELOC_EXT_BITS_EXTERN_BIG: 0)
2100 | (r_type << RELOC_EXT_BITS_TYPE_SH_BIG));
2768b3f7
SC
2101 } else {
2102 natptr->r_index[2] = r_index >> 16;
2103 natptr->r_index[1] = r_index >> 8;
2104 natptr->r_index[0] = r_index;
2105 natptr->r_type[0] =
2106 (r_extern? RELOC_EXT_BITS_EXTERN_LITTLE: 0)
2107 | (r_type << RELOC_EXT_BITS_TYPE_SH_LITTLE);
2108 }
7ed4093a
SC
2109
2110 PUT_WORD (abfd, r_addend, natptr->r_addend);
2111}
2112
6db82ea7
SC
2113/* BFD deals internally with all things based from the section they're
2114 in. so, something in 10 bytes into a text section with a base of
c188b0be 2115 50 would have a symbol (.text+10) and know .text vma was 50.
6db82ea7
SC
2116
2117 Aout keeps all it's symbols based from zero, so the symbol would
2118 contain 60. This macro subs the base of each section from the value
2119 to give the true offset from the section */
2120
2121
7ed4093a
SC
2122#define MOVE_ADDRESS(ad) \
2123 if (r_extern) { \
6db82ea7
SC
2124 /* undefined symbol */ \
2125 cache_ptr->sym_ptr_ptr = symbols + r_index; \
2126 cache_ptr->addend = ad; \
2127 } else { \
2128 /* defined, section relative. replace symbol with pointer to \
2129 symbol which points to section */ \
7ed4093a
SC
2130 switch (r_index) { \
2131 case N_TEXT: \
2132 case N_TEXT | N_EXT: \
6db82ea7 2133 cache_ptr->sym_ptr_ptr = obj_textsec(abfd)->symbol_ptr_ptr; \
7ed4093a
SC
2134 cache_ptr->addend = ad - su->textsec->vma; \
2135 break; \
2136 case N_DATA: \
2137 case N_DATA | N_EXT: \
6db82ea7 2138 cache_ptr->sym_ptr_ptr = obj_datasec(abfd)->symbol_ptr_ptr; \
7ed4093a
SC
2139 cache_ptr->addend = ad - su->datasec->vma; \
2140 break; \
2141 case N_BSS: \
2142 case N_BSS | N_EXT: \
6db82ea7 2143 cache_ptr->sym_ptr_ptr = obj_bsssec(abfd)->symbol_ptr_ptr; \
7ed4093a
SC
2144 cache_ptr->addend = ad - su->bsssec->vma; \
2145 break; \
6db82ea7 2146 default: \
7ed4093a
SC
2147 case N_ABS: \
2148 case N_ABS | N_EXT: \
4587b578 2149 cache_ptr->sym_ptr_ptr = bfd_abs_section_ptr->symbol_ptr_ptr; \
6db82ea7 2150 cache_ptr->addend = ad; \
7ed4093a
SC
2151 break; \
2152 } \
2153 } \
2154
2155void
2f675427 2156NAME(aout,swap_ext_reloc_in) (abfd, bytes, cache_ptr, symbols, symcount)
8eb5d4be
JK
2157 bfd *abfd;
2158 struct reloc_ext_external *bytes;
2159 arelent *cache_ptr;
2160 asymbol **symbols;
2f675427 2161 bfd_size_type symcount;
7ed4093a 2162{
ae115e51 2163 unsigned int r_index;
7ed4093a
SC
2164 int r_extern;
2165 unsigned int r_type;
6db82ea7 2166 struct aoutdata *su = &(abfd->tdata.aout_data->a);
7ed4093a
SC
2167
2168 cache_ptr->address = (GET_SWORD (abfd, bytes->r_address));
2169
2170 /* now the fun stuff */
64d5f5d0 2171 if (bfd_header_big_endian (abfd)) {
382f2a3d
ILT
2172 r_index = (bytes->r_index[0] << 16)
2173 | (bytes->r_index[1] << 8)
2174 | bytes->r_index[2];
7ed4093a
SC
2175 r_extern = (0 != (bytes->r_type[0] & RELOC_EXT_BITS_EXTERN_BIG));
2176 r_type = (bytes->r_type[0] & RELOC_EXT_BITS_TYPE_BIG)
2177 >> RELOC_EXT_BITS_TYPE_SH_BIG;
2178 } else {
382f2a3d
ILT
2179 r_index = (bytes->r_index[2] << 16)
2180 | (bytes->r_index[1] << 8)
2181 | bytes->r_index[0];
7ed4093a
SC
2182 r_extern = (0 != (bytes->r_type[0] & RELOC_EXT_BITS_EXTERN_LITTLE));
2183 r_type = (bytes->r_type[0] & RELOC_EXT_BITS_TYPE_LITTLE)
2184 >> RELOC_EXT_BITS_TYPE_SH_LITTLE;
2185 }
2186
2f675427
ILT
2187 cache_ptr->howto = howto_table_ext + r_type;
2188
2189 /* Base relative relocs are always against the symbol table,
2190 regardless of the setting of r_extern. r_extern just reflects
2191 whether the symbol the reloc is against is local or global. */
2192 if (r_type == RELOC_BASE10
2193 || r_type == RELOC_BASE13
2194 || r_type == RELOC_BASE22)
2195 r_extern = 1;
2196
2197 if (r_extern && r_index > symcount)
773033d2
ILT
2198 {
2199 /* We could arrange to return an error, but it might be useful
2200 to see the file even if it is bad. */
2201 r_extern = 0;
2202 r_index = N_ABS;
2203 }
2204
6db82ea7 2205 MOVE_ADDRESS(GET_SWORD(abfd, bytes->r_addend));
7ed4093a
SC
2206}
2207
2208void
2f675427 2209NAME(aout,swap_std_reloc_in) (abfd, bytes, cache_ptr, symbols, symcount)
8eb5d4be
JK
2210 bfd *abfd;
2211 struct reloc_std_external *bytes;
2212 arelent *cache_ptr;
2213 asymbol **symbols;
2f675427 2214 bfd_size_type symcount;
7ed4093a 2215{
ae115e51 2216 unsigned int r_index;
7ed4093a
SC
2217 int r_extern;
2218 unsigned int r_length;
2219 int r_pcrel;
2220 int r_baserel, r_jmptable, r_relative;
6db82ea7 2221 struct aoutdata *su = &(abfd->tdata.aout_data->a);
ae115e51 2222 unsigned int howto_idx;
7ed4093a 2223
34dd8ba3 2224 cache_ptr->address = bfd_h_get_32 (abfd, bytes->r_address);
7ed4093a
SC
2225
2226 /* now the fun stuff */
64d5f5d0 2227 if (bfd_header_big_endian (abfd)) {
382f2a3d
ILT
2228 r_index = (bytes->r_index[0] << 16)
2229 | (bytes->r_index[1] << 8)
2230 | bytes->r_index[2];
7ed4093a
SC
2231 r_extern = (0 != (bytes->r_type[0] & RELOC_STD_BITS_EXTERN_BIG));
2232 r_pcrel = (0 != (bytes->r_type[0] & RELOC_STD_BITS_PCREL_BIG));
2233 r_baserel = (0 != (bytes->r_type[0] & RELOC_STD_BITS_BASEREL_BIG));
2234 r_jmptable= (0 != (bytes->r_type[0] & RELOC_STD_BITS_JMPTABLE_BIG));
2235 r_relative= (0 != (bytes->r_type[0] & RELOC_STD_BITS_RELATIVE_BIG));
c188b0be 2236 r_length = (bytes->r_type[0] & RELOC_STD_BITS_LENGTH_BIG)
7ed4093a
SC
2237 >> RELOC_STD_BITS_LENGTH_SH_BIG;
2238 } else {
382f2a3d
ILT
2239 r_index = (bytes->r_index[2] << 16)
2240 | (bytes->r_index[1] << 8)
2241 | bytes->r_index[0];
7ed4093a
SC
2242 r_extern = (0 != (bytes->r_type[0] & RELOC_STD_BITS_EXTERN_LITTLE));
2243 r_pcrel = (0 != (bytes->r_type[0] & RELOC_STD_BITS_PCREL_LITTLE));
2244 r_baserel = (0 != (bytes->r_type[0] & RELOC_STD_BITS_BASEREL_LITTLE));
2245 r_jmptable= (0 != (bytes->r_type[0] & RELOC_STD_BITS_JMPTABLE_LITTLE));
2246 r_relative= (0 != (bytes->r_type[0] & RELOC_STD_BITS_RELATIVE_LITTLE));
c188b0be 2247 r_length = (bytes->r_type[0] & RELOC_STD_BITS_LENGTH_LITTLE)
7ed4093a
SC
2248 >> RELOC_STD_BITS_LENGTH_SH_LITTLE;
2249 }
2250
cb9461ff
JK
2251 howto_idx = r_length + 4 * r_pcrel + 8 * r_baserel
2252 + 16 * r_jmptable + 32 * r_relative;
c188b0be
DM
2253 BFD_ASSERT (howto_idx < TABLE_SIZE (howto_table_std));
2254 cache_ptr->howto = howto_table_std + howto_idx;
ae115e51 2255 BFD_ASSERT (cache_ptr->howto->type != (unsigned int) -1);
7ed4093a 2256
2f675427
ILT
2257 /* Base relative relocs are always against the symbol table,
2258 regardless of the setting of r_extern. r_extern just reflects
2259 whether the symbol the reloc is against is local or global. */
2260 if (r_baserel)
2261 r_extern = 1;
2262
2263 if (r_extern && r_index > symcount)
773033d2
ILT
2264 {
2265 /* We could arrange to return an error, but it might be useful
2266 to see the file even if it is bad. */
2267 r_extern = 0;
2268 r_index = N_ABS;
2269 }
2270
7ed4093a
SC
2271 MOVE_ADDRESS(0);
2272}
2273
5c8444f8 2274/* Read and swap the relocs for a section. */
7ed4093a
SC
2275
2276boolean
8eb5d4be
JK
2277NAME(aout,slurp_reloc_table) (abfd, asect, symbols)
2278 bfd *abfd;
2279 sec_ptr asect;
2280 asymbol **symbols;
7ed4093a
SC
2281{
2282 unsigned int count;
2283 bfd_size_type reloc_size;
2284 PTR relocs;
2285 arelent *reloc_cache;
2286 size_t each_size;
0ee75d02
ILT
2287 unsigned int counter = 0;
2288 arelent *cache_ptr;
7ed4093a 2289
5c8444f8
ILT
2290 if (asect->relocation)
2291 return true;
7ed4093a 2292
5c8444f8
ILT
2293 if (asect->flags & SEC_CONSTRUCTOR)
2294 return true;
7ed4093a 2295
0ee75d02 2296 if (asect == obj_datasec (abfd))
7ed4093a 2297 reloc_size = exec_hdr(abfd)->a_drsize;
0ee75d02 2298 else if (asect == obj_textsec (abfd))
7ed4093a 2299 reloc_size = exec_hdr(abfd)->a_trsize;
f42fe159
ILT
2300 else if (asect == obj_bsssec (abfd))
2301 reloc_size = 0;
0ee75d02
ILT
2302 else
2303 {
68241b2b 2304 bfd_set_error (bfd_error_invalid_operation);
0ee75d02
ILT
2305 return false;
2306 }
2307
5c8444f8
ILT
2308 if (bfd_seek (abfd, asect->rel_filepos, SEEK_SET) != 0)
2309 return false;
2310
7ed4093a
SC
2311 each_size = obj_reloc_entry_size (abfd);
2312
2313 count = reloc_size / each_size;
2314
58142f10 2315 reloc_cache = (arelent *) bfd_malloc ((size_t) (count * sizeof (arelent)));
5c8444f8 2316 if (reloc_cache == NULL && count != 0)
58142f10 2317 return false;
fa77c704 2318 memset (reloc_cache, 0, count * sizeof (arelent));
7ed4093a 2319
58142f10 2320 relocs = bfd_malloc ((size_t) reloc_size);
5c8444f8 2321 if (relocs == NULL && reloc_size != 0)
0ee75d02 2322 {
5c8444f8 2323 free (reloc_cache);
5c8444f8 2324 return false;
0ee75d02 2325 }
7ed4093a 2326
0ee75d02
ILT
2327 if (bfd_read (relocs, 1, reloc_size, abfd) != reloc_size)
2328 {
5c8444f8
ILT
2329 free (relocs);
2330 free (reloc_cache);
0ee75d02
ILT
2331 return false;
2332 }
7ed4093a 2333
0ee75d02
ILT
2334 cache_ptr = reloc_cache;
2335 if (each_size == RELOC_EXT_SIZE)
2336 {
2337 register struct reloc_ext_external *rptr =
2338 (struct reloc_ext_external *) relocs;
7ed4093a 2339
0ee75d02 2340 for (; counter < count; counter++, rptr++, cache_ptr++)
2f675427
ILT
2341 NAME(aout,swap_ext_reloc_in) (abfd, rptr, cache_ptr, symbols,
2342 bfd_get_symcount (abfd));
7ed4093a 2343 }
0ee75d02
ILT
2344 else
2345 {
5c8444f8
ILT
2346 register struct reloc_std_external *rptr =
2347 (struct reloc_std_external *) relocs;
7ed4093a 2348
0ee75d02 2349 for (; counter < count; counter++, rptr++, cache_ptr++)
2f675427
ILT
2350 MY_swap_std_reloc_in (abfd, rptr, cache_ptr, symbols,
2351 bfd_get_symcount (abfd));
7ed4093a
SC
2352 }
2353
5c8444f8
ILT
2354 free (relocs);
2355
7ed4093a 2356 asect->relocation = reloc_cache;
0ee75d02 2357 asect->reloc_count = cache_ptr - reloc_cache;
5c8444f8 2358
7ed4093a
SC
2359 return true;
2360}
2361
7ed4093a
SC
2362/* Write out a relocation section into an object file. */
2363
2364boolean
8eb5d4be
JK
2365NAME(aout,squirt_out_relocs) (abfd, section)
2366 bfd *abfd;
2367 asection *section;
7ed4093a
SC
2368{
2369 arelent **generic;
2370 unsigned char *native, *natptr;
2371 size_t each_size;
2372
2373 unsigned int count = section->reloc_count;
2374 size_t natsize;
2375
b7d1158a
ILT
2376 if (count == 0 || section->orelocation == NULL)
2377 return true;
7ed4093a
SC
2378
2379 each_size = obj_reloc_entry_size (abfd);
2380 natsize = each_size * count;
2381 native = (unsigned char *) bfd_zalloc (abfd, natsize);
a9713b91 2382 if (!native)
7ed4093a 2383 return false;
7ed4093a
SC
2384
2385 generic = section->orelocation;
2386
c188b0be 2387 if (each_size == RELOC_EXT_SIZE)
7ed4093a
SC
2388 {
2389 for (natptr = native;
2390 count != 0;
2391 --count, natptr += each_size, ++generic)
2392 NAME(aout,swap_ext_reloc_out) (abfd, *generic, (struct reloc_ext_external *)natptr);
2393 }
c188b0be 2394 else
7ed4093a
SC
2395 {
2396 for (natptr = native;
2397 count != 0;
2398 --count, natptr += each_size, ++generic)
f42fe159 2399 MY_swap_std_reloc_out(abfd, *generic, (struct reloc_std_external *)natptr);
7ed4093a
SC
2400 }
2401
2402 if ( bfd_write ((PTR) native, 1, natsize, abfd) != natsize) {
2403 bfd_release(abfd, native);
2404 return false;
2405 }
2406 bfd_release (abfd, native);
2407
2408 return true;
2409}
2410
2411/* This is stupid. This function should be a boolean predicate */
326e32d7 2412long
8eb5d4be
JK
2413NAME(aout,canonicalize_reloc) (abfd, section, relptr, symbols)
2414 bfd *abfd;
2415 sec_ptr section;
2416 arelent **relptr;
2417 asymbol **symbols;
7ed4093a
SC
2418{
2419 arelent *tblptr = section->relocation;
2420 unsigned int count;
2421
4f019d04
ILT
2422 if (section == obj_bsssec (abfd))
2423 {
2424 *relptr = NULL;
2425 return 0;
2426 }
2427
7ed4093a 2428 if (!(tblptr || NAME(aout,slurp_reloc_table)(abfd, section, symbols)))
326e32d7 2429 return -1;
7ed4093a
SC
2430
2431 if (section->flags & SEC_CONSTRUCTOR) {
2432 arelent_chain *chain = section->constructor_chain;
2433 for (count = 0; count < section->reloc_count; count ++) {
2434 *relptr ++ = &chain->relent;
2435 chain = chain->next;
2436 }
2437 }
2438 else {
2439 tblptr = section->relocation;
7ed4093a 2440
c188b0be 2441 for (count = 0; count++ < section->reloc_count;)
7ed4093a
SC
2442 {
2443 *relptr++ = tblptr++;
2444 }
2445 }
2446 *relptr = 0;
2447
2448 return section->reloc_count;
2449}
2450
326e32d7 2451long
8eb5d4be
JK
2452NAME(aout,get_reloc_upper_bound) (abfd, asect)
2453 bfd *abfd;
2454 sec_ptr asect;
7ed4093a
SC
2455{
2456 if (bfd_get_format (abfd) != bfd_object) {
68241b2b 2457 bfd_set_error (bfd_error_invalid_operation);
326e32d7 2458 return -1;
7ed4093a
SC
2459 }
2460 if (asect->flags & SEC_CONSTRUCTOR) {
2461 return (sizeof (arelent *) * (asect->reloc_count+1));
2462 }
2463
7ed4093a 2464 if (asect == obj_datasec (abfd))
fa77c704
ILT
2465 return (sizeof (arelent *)
2466 * ((exec_hdr(abfd)->a_drsize / obj_reloc_entry_size (abfd))
2467 + 1));
7ed4093a
SC
2468
2469 if (asect == obj_textsec (abfd))
fa77c704
ILT
2470 return (sizeof (arelent *)
2471 * ((exec_hdr(abfd)->a_trsize / obj_reloc_entry_size (abfd))
2472 + 1));
7ed4093a 2473
4f019d04
ILT
2474 if (asect == obj_bsssec (abfd))
2475 return sizeof (arelent *);
2476
f42fe159
ILT
2477 if (asect == obj_bsssec (abfd))
2478 return 0;
2479
68241b2b 2480 bfd_set_error (bfd_error_invalid_operation);
326e32d7 2481 return -1;
7ed4093a
SC
2482}
2483
2484\f
326e32d7 2485long
8eb5d4be
JK
2486NAME(aout,get_symtab_upper_bound) (abfd)
2487 bfd *abfd;
7ed4093a 2488{
326e32d7
ILT
2489 if (!NAME(aout,slurp_symbol_table)(abfd))
2490 return -1;
7ed4093a
SC
2491
2492 return (bfd_get_symcount (abfd)+1) * (sizeof (aout_symbol_type *));
2493}
728472f1
ILT
2494
2495/*ARGSUSED*/
7ed4093a 2496 alent *
8eb5d4be
JK
2497NAME(aout,get_lineno) (ignore_abfd, ignore_symbol)
2498 bfd *ignore_abfd;
2499 asymbol *ignore_symbol;
7ed4093a
SC
2500{
2501return (alent *)NULL;
2502}
2503
728472f1 2504/*ARGSUSED*/
c188b0be 2505void
8eb5d4be
JK
2506NAME(aout,get_symbol_info) (ignore_abfd, symbol, ret)
2507 bfd *ignore_abfd;
2508 asymbol *symbol;
2509 symbol_info *ret;
34dd8ba3
JG
2510{
2511 bfd_symbol_info (symbol, ret);
2512
2513 if (ret->type == '?')
2514 {
2515 int type_code = aout_symbol(symbol)->type & 0xff;
c189fdfb 2516 const char *stab_name = bfd_get_stab_name (type_code);
34dd8ba3
JG
2517 static char buf[10];
2518
2519 if (stab_name == NULL)
2520 {
2521 sprintf(buf, "(%d)", type_code);
2522 stab_name = buf;
2523 }
2524 ret->type = '-';
64d5f5d0 2525 ret->stab_type = type_code;
34dd8ba3
JG
2526 ret->stab_other = (unsigned)(aout_symbol(symbol)->other & 0xff);
2527 ret->stab_desc = (unsigned)(aout_symbol(symbol)->desc & 0xffff);
2528 ret->stab_name = stab_name;
2529 }
2530}
7ed4093a 2531
728472f1 2532/*ARGSUSED*/
c188b0be 2533void
8eb5d4be
JK
2534NAME(aout,print_symbol) (ignore_abfd, afile, symbol, how)
2535 bfd *ignore_abfd;
2536 PTR afile;
2537 asymbol *symbol;
2538 bfd_print_symbol_type how;
7ed4093a
SC
2539{
2540 FILE *file = (FILE *)afile;
2541
2542 switch (how) {
9e2dad8e 2543 case bfd_print_symbol_name:
fb3be09b
JG
2544 if (symbol->name)
2545 fprintf(file,"%s", symbol->name);
7ed4093a 2546 break;
9e2dad8e 2547 case bfd_print_symbol_more:
7ed4093a
SC
2548 fprintf(file,"%4x %2x %2x",(unsigned)(aout_symbol(symbol)->desc & 0xffff),
2549 (unsigned)(aout_symbol(symbol)->other & 0xff),
2550 (unsigned)(aout_symbol(symbol)->type));
2551 break;
9e2dad8e 2552 case bfd_print_symbol_all:
7ed4093a 2553 {
6db82ea7
SC
2554 CONST char *section_name = symbol->section->name;
2555
7ed4093a
SC
2556
2557 bfd_print_symbol_vandf((PTR)file,symbol);
2558
fb3be09b 2559 fprintf(file," %-5s %04x %02x %02x",
7ed4093a
SC
2560 section_name,
2561 (unsigned)(aout_symbol(symbol)->desc & 0xffff),
2562 (unsigned)(aout_symbol(symbol)->other & 0xff),
9e2dad8e 2563 (unsigned)(aout_symbol(symbol)->type & 0xff));
fb3be09b
JG
2564 if (symbol->name)
2565 fprintf(file," %s", symbol->name);
7ed4093a
SC
2566 }
2567 break;
2568 }
2569}
2570
c3246d9b
ILT
2571/* If we don't have to allocate more than 1MB to hold the generic
2572 symbols, we use the generic minisymbol methord: it's faster, since
2573 it only translates the symbols once, not multiple times. */
2574#define MINISYM_THRESHOLD (1000000 / sizeof (asymbol))
2575
2576/* Read minisymbols. For minisymbols, we use the unmodified a.out
2577 symbols. The minisymbol_to_symbol function translates these into
2578 BFD asymbol structures. */
2579
2580long
2581NAME(aout,read_minisymbols) (abfd, dynamic, minisymsp, sizep)
2582 bfd *abfd;
2583 boolean dynamic;
2584 PTR *minisymsp;
2585 unsigned int *sizep;
2586{
2587 if (dynamic)
2588 {
2589 /* We could handle the dynamic symbols here as well, but it's
2590 easier to hand them off. */
2591 return _bfd_generic_read_minisymbols (abfd, dynamic, minisymsp, sizep);
2592 }
2593
2594 if (! aout_get_external_symbols (abfd))
2595 return -1;
2596
2597 if (obj_aout_external_sym_count (abfd) < MINISYM_THRESHOLD)
2598 return _bfd_generic_read_minisymbols (abfd, dynamic, minisymsp, sizep);
2599
2600 *minisymsp = (PTR) obj_aout_external_syms (abfd);
2601
2602 /* By passing the external symbols back from this routine, we are
2603 giving up control over the memory block. Clear
2604 obj_aout_external_syms, so that we do not try to free it
2605 ourselves. */
2606 obj_aout_external_syms (abfd) = NULL;
2607
2608 *sizep = EXTERNAL_NLIST_SIZE;
2609 return obj_aout_external_sym_count (abfd);
2610}
2611
2612/* Convert a minisymbol to a BFD asymbol. A minisymbol is just an
2613 unmodified a.out symbol. The SYM argument is a structure returned
2614 by bfd_make_empty_symbol, which we fill in here. */
2615
2616asymbol *
2617NAME(aout,minisymbol_to_symbol) (abfd, dynamic, minisym, sym)
2618 bfd *abfd;
2619 boolean dynamic;
2620 const PTR minisym;
2621 asymbol *sym;
2622{
2623 if (dynamic
2624 || obj_aout_external_sym_count (abfd) < MINISYM_THRESHOLD)
2625 return _bfd_generic_minisymbol_to_symbol (abfd, dynamic, minisym, sym);
2626
2627 memset (sym, 0, sizeof (aout_symbol_type));
2628
2629 /* We call translate_symbol_table to translate a single symbol. */
2630 if (! (NAME(aout,translate_symbol_table)
2631 (abfd,
2632 (aout_symbol_type *) sym,
2633 (struct external_nlist *) minisym,
2634 (bfd_size_type) 1,
2635 obj_aout_external_strings (abfd),
2636 obj_aout_external_string_size (abfd),
2637 false)))
2638 return NULL;
2639
2640 return sym;
2641}
2642
c188b0be 2643/*
6724ff46 2644 provided a BFD, a section and an offset into the section, calculate
7ed4093a
SC
2645 and return the name of the source file and the line nearest to the
2646 wanted location.
2647*/
c188b0be 2648
7ed4093a 2649boolean
8eb5d4be
JK
2650NAME(aout,find_nearest_line)
2651 (abfd, section, symbols, offset, filename_ptr, functionname_ptr, line_ptr)
2652 bfd *abfd;
2653 asection *section;
2654 asymbol **symbols;
2655 bfd_vma offset;
2656 CONST char **filename_ptr;
2657 CONST char **functionname_ptr;
2658 unsigned int *line_ptr;
7ed4093a
SC
2659{
2660 /* Run down the file looking for the filename, function and linenumber */
2661 asymbol **p;
6db82ea7
SC
2662 CONST char *directory_name = NULL;
2663 CONST char *main_file_name = NULL;
2664 CONST char *current_file_name = NULL;
2665 CONST char *line_file_name = NULL; /* Value of current_file_name at line number. */
ae115e51 2666 bfd_vma low_line_vma = 0;
7ed4093a
SC
2667 bfd_vma low_func_vma = 0;
2668 asymbol *func = 0;
f1c6dd5d
ILT
2669 size_t filelen, funclen;
2670 char *buf;
2671
7ed4093a
SC
2672 *filename_ptr = abfd->filename;
2673 *functionname_ptr = 0;
2674 *line_ptr = 0;
2675 if (symbols != (asymbol **)NULL) {
2676 for (p = symbols; *p; p++) {
2677 aout_symbol_type *q = (aout_symbol_type *)(*p);
98d43107 2678 next:
7ed4093a
SC
2679 switch (q->type){
2680 case N_SO:
3f7607af 2681 main_file_name = current_file_name = q->symbol.name;
98d43107
JG
2682 /* Look ahead to next symbol to check if that too is an N_SO. */
2683 p++;
2684 if (*p == NULL)
2685 break;
2686 q = (aout_symbol_type *)(*p);
6db82ea7 2687 if (q->type != (int)N_SO)
98d43107
JG
2688 goto next;
2689
2690 /* Found a second N_SO First is directory; second is filename. */
3f7607af
PB
2691 directory_name = current_file_name;
2692 main_file_name = current_file_name = q->symbol.name;
2693 if (obj_textsec(abfd) != section)
2694 goto done;
2695 break;
2696 case N_SOL:
2697 current_file_name = q->symbol.name;
7ed4093a 2698 break;
3f7607af 2699
7ed4093a
SC
2700 case N_SLINE:
2701
2702 case N_DSLINE:
2703 case N_BSLINE:
ae115e51
ILT
2704 /* We'll keep this if it resolves nearer than the one we have
2705 already. */
2706 if (q->symbol.value >= low_line_vma
2707 && q->symbol.value <= offset)
2708 {
2709 *line_ptr = q->desc;
2710 low_line_vma = q->symbol.value;
2711 line_file_name = current_file_name;
2712 }
7ed4093a
SC
2713 break;
2714 case N_FUN:
2715 {
2716 /* We'll keep this if it is nearer than the one we have already */
2717 if (q->symbol.value >= low_func_vma &&
2718 q->symbol.value <= offset) {
2719 low_func_vma = q->symbol.value;
2720 func = (asymbol *)q;
2721 }
ae115e51 2722 else if (q->symbol.value > offset)
3f7607af 2723 goto done;
7ed4093a
SC
2724 }
2725 break;
2726 }
2727 }
2728 }
3f7607af
PB
2729
2730 done:
f1c6dd5d 2731 if (*line_ptr != 0)
3f7607af 2732 main_file_name = line_file_name;
f1c6dd5d
ILT
2733
2734 if (main_file_name == NULL
2735 || main_file_name[0] == '/'
2736 || directory_name == NULL)
2737 filelen = 0;
2738 else
2739 filelen = strlen (directory_name) + strlen (main_file_name);
2740 if (func == NULL)
2741 funclen = 0;
2742 else
2743 funclen = strlen (bfd_asymbol_name (func));
2744
2745 if (adata (abfd).line_buf != NULL)
2746 free (adata (abfd).line_buf);
2747 if (filelen + funclen == 0)
2748 adata (abfd).line_buf = buf = NULL;
2749 else
2750 {
7dd3d45a 2751 buf = (char *) bfd_malloc (filelen + funclen + 3);
58142f10
ILT
2752 adata (abfd).line_buf = buf;
2753 if (buf == NULL)
2754 return false;
f1c6dd5d
ILT
2755 }
2756
2757 if (main_file_name != NULL)
2758 {
3f7607af 2759 if (main_file_name[0] == '/' || directory_name == NULL)
f1c6dd5d
ILT
2760 *filename_ptr = main_file_name;
2761 else
2762 {
2763 sprintf (buf, "%s%s", directory_name, main_file_name);
2764 *filename_ptr = buf;
2765 buf += filelen + 1;
2766 }
2767 }
2768
ae115e51
ILT
2769 if (func)
2770 {
f1c6dd5d 2771 const char *function = func->name;
ae115e51
ILT
2772 char *p;
2773
2774 /* The caller expects a symbol name. We actually have a
2775 function name, without the leading underscore. Put the
2776 underscore back in, so that the caller gets a symbol name. */
2777 if (bfd_get_symbol_leading_char (abfd) == '\0')
f1c6dd5d 2778 strcpy (buf, function);
ae115e51
ILT
2779 else
2780 {
f1c6dd5d
ILT
2781 buf[0] = bfd_get_symbol_leading_char (abfd);
2782 strcpy (buf + 1, function);
ae115e51 2783 }
ae115e51 2784 /* Have to remove : stuff */
f1c6dd5d 2785 p = strchr (buf, ':');
ae115e51
ILT
2786 if (p != NULL)
2787 *p = '\0';
f1c6dd5d 2788 *functionname_ptr = buf;
ae115e51 2789 }
f1c6dd5d 2790
7ed4093a 2791 return true;
7ed4093a
SC
2792}
2793
728472f1 2794/*ARGSUSED*/
c188b0be 2795int
8eb5d4be
JK
2796NAME(aout,sizeof_headers) (abfd, execable)
2797 bfd *abfd;
2798 boolean execable;
7ed4093a 2799{
6db82ea7 2800 return adata(abfd).exec_bytes_size;
7ed4093a 2801}
5c8444f8
ILT
2802
2803/* Free all information we have cached for this BFD. We can always
2804 read it again later if we need it. */
2805
2806boolean
2807NAME(aout,bfd_free_cached_info) (abfd)
2808 bfd *abfd;
2809{
2810 asection *o;
2811
c4dd531f
ILT
2812 if (bfd_get_format (abfd) != bfd_object)
2813 return true;
2814
4852416e
DHW
2815#define BFCI_FREE(x) if (x != NULL) { free (x); x = NULL; }
2816 BFCI_FREE (obj_aout_symbols (abfd));
7ac84736 2817#ifdef USE_MMAP
4fe6d901
KR
2818 obj_aout_external_syms (abfd) = 0;
2819 bfd_free_window (&obj_aout_sym_window (abfd));
2820 bfd_free_window (&obj_aout_string_window (abfd));
2821 obj_aout_external_strings (abfd) = 0;
7ac84736
KR
2822#else
2823 BFCI_FREE (obj_aout_external_syms (abfd));
2824 BFCI_FREE (obj_aout_external_strings (abfd));
2825#endif
5c8444f8 2826 for (o = abfd->sections; o != (asection *) NULL; o = o->next)
4852416e
DHW
2827 BFCI_FREE (o->relocation);
2828#undef BFCI_FREE
5c8444f8
ILT
2829
2830 return true;
2831}
4c3721d5
ILT
2832\f
2833/* a.out link code. */
2834
4c3721d5
ILT
2835static boolean aout_link_add_object_symbols
2836 PARAMS ((bfd *, struct bfd_link_info *));
2837static boolean aout_link_check_archive_element
2838 PARAMS ((bfd *, struct bfd_link_info *, boolean *));
4c3721d5
ILT
2839static boolean aout_link_free_symbols PARAMS ((bfd *));
2840static boolean aout_link_check_ar_symbols
2841 PARAMS ((bfd *, struct bfd_link_info *, boolean *pneeded));
2842static boolean aout_link_add_symbols
2843 PARAMS ((bfd *, struct bfd_link_info *));
2844
2845/* Routine to create an entry in an a.out link hash table. */
2846
e85e8bfe
ILT
2847struct bfd_hash_entry *
2848NAME(aout,link_hash_newfunc) (entry, table, string)
4c3721d5
ILT
2849 struct bfd_hash_entry *entry;
2850 struct bfd_hash_table *table;
2851 const char *string;
2852{
2853 struct aout_link_hash_entry *ret = (struct aout_link_hash_entry *) entry;
2854
2855 /* Allocate the structure if it has not already been allocated by a
2856 subclass. */
2857 if (ret == (struct aout_link_hash_entry *) NULL)
2858 ret = ((struct aout_link_hash_entry *)
2859 bfd_hash_allocate (table, sizeof (struct aout_link_hash_entry)));
9783e04a 2860 if (ret == (struct aout_link_hash_entry *) NULL)
a9713b91 2861 return (struct bfd_hash_entry *) ret;
4c3721d5
ILT
2862
2863 /* Call the allocation method of the superclass. */
2864 ret = ((struct aout_link_hash_entry *)
2865 _bfd_link_hash_newfunc ((struct bfd_hash_entry *) ret,
2866 table, string));
9783e04a 2867 if (ret)
35fee729
ILT
2868 {
2869 /* Set local fields. */
2870 ret->written = false;
2871 ret->indx = -1;
2872 }
4c3721d5
ILT
2873
2874 return (struct bfd_hash_entry *) ret;
2875}
2876
e85e8bfe
ILT
2877/* Initialize an a.out link hash table. */
2878
2879boolean
2880NAME(aout,link_hash_table_init) (table, abfd, newfunc)
2881 struct aout_link_hash_table *table;
2882 bfd *abfd;
2883 struct bfd_hash_entry *(*newfunc) PARAMS ((struct bfd_hash_entry *,
2884 struct bfd_hash_table *,
2885 const char *));
2886{
2887 return _bfd_link_hash_table_init (&table->root, abfd, newfunc);
2888}
2889
4c3721d5
ILT
2890/* Create an a.out link hash table. */
2891
2892struct bfd_link_hash_table *
2893NAME(aout,link_hash_table_create) (abfd)
2894 bfd *abfd;
2895{
2896 struct aout_link_hash_table *ret;
2897
2898 ret = ((struct aout_link_hash_table *)
c3246d9b
ILT
2899 bfd_alloc (abfd, sizeof (struct aout_link_hash_table)));
2900 if (ret == NULL)
a9713b91 2901 return (struct bfd_link_hash_table *) NULL;
e85e8bfe
ILT
2902 if (! NAME(aout,link_hash_table_init) (ret, abfd,
2903 NAME(aout,link_hash_newfunc)))
4c3721d5
ILT
2904 {
2905 free (ret);
2906 return (struct bfd_link_hash_table *) NULL;
2907 }
2908 return &ret->root;
2909}
2910
4c3721d5
ILT
2911/* Given an a.out BFD, add symbols to the global hash table as
2912 appropriate. */
2913
2914boolean
2915NAME(aout,link_add_symbols) (abfd, info)
2916 bfd *abfd;
2917 struct bfd_link_info *info;
2918{
2919 switch (bfd_get_format (abfd))
2920 {
2921 case bfd_object:
2922 return aout_link_add_object_symbols (abfd, info);
2923 case bfd_archive:
2924 return _bfd_generic_link_add_archive_symbols
2925 (abfd, info, aout_link_check_archive_element);
2926 default:
68241b2b 2927 bfd_set_error (bfd_error_wrong_format);
4c3721d5
ILT
2928 return false;
2929 }
2930}
2931
2932/* Add symbols from an a.out object file. */
2933
2934static boolean
2935aout_link_add_object_symbols (abfd, info)
2936 bfd *abfd;
2937 struct bfd_link_info *info;
2938{
5c8444f8 2939 if (! aout_get_external_symbols (abfd))
4c3721d5
ILT
2940 return false;
2941 if (! aout_link_add_symbols (abfd, info))
2942 return false;
2943 if (! info->keep_memory)
2944 {
2945 if (! aout_link_free_symbols (abfd))
2946 return false;
2947 }
2948 return true;
2949}
2950
2951/* Check a single archive element to see if we need to include it in
2952 the link. *PNEEDED is set according to whether this element is
2953 needed in the link or not. This is called from
2954 _bfd_generic_link_add_archive_symbols. */
2955
2956static boolean
2957aout_link_check_archive_element (abfd, info, pneeded)
2958 bfd *abfd;
2959 struct bfd_link_info *info;
2960 boolean *pneeded;
2961{
5c8444f8 2962 if (! aout_get_external_symbols (abfd))
4c3721d5
ILT
2963 return false;
2964
2965 if (! aout_link_check_ar_symbols (abfd, info, pneeded))
2966 return false;
2967
2968 if (*pneeded)
2969 {
2970 if (! aout_link_add_symbols (abfd, info))
2971 return false;
2972 }
2973
1afd2380 2974 if (! info->keep_memory || ! *pneeded)
4c3721d5
ILT
2975 {
2976 if (! aout_link_free_symbols (abfd))
2977 return false;
2978 }
2979
2980 return true;
2981}
2982
4c3721d5
ILT
2983/* Free up the internal symbols read from an a.out file. */
2984
2985static boolean
2986aout_link_free_symbols (abfd)
2987 bfd *abfd;
2988{
2989 if (obj_aout_external_syms (abfd) != (struct external_nlist *) NULL)
2990 {
7ac84736 2991#ifdef USE_MMAP
4fe6d901 2992 bfd_free_window (&obj_aout_sym_window (abfd));
7ac84736
KR
2993#else
2994 free ((PTR) obj_aout_external_syms (abfd));
2995#endif
4c3721d5
ILT
2996 obj_aout_external_syms (abfd) = (struct external_nlist *) NULL;
2997 }
2998 if (obj_aout_external_strings (abfd) != (char *) NULL)
2999 {
7ac84736 3000#ifdef USE_MMAP
4fe6d901 3001 bfd_free_window (&obj_aout_string_window (abfd));
7ac84736
KR
3002#else
3003 free ((PTR) obj_aout_external_strings (abfd));
3004#endif
4c3721d5
ILT
3005 obj_aout_external_strings (abfd) = (char *) NULL;
3006 }
3007 return true;
3008}
3009
3010/* Look through the internal symbols to see if this object file should
3011 be included in the link. We should include this object file if it
3012 defines any symbols which are currently undefined. If this object
3013 file defines a common symbol, then we may adjust the size of the
3014 known symbol but we do not include the object file in the link
3015 (unless there is some other reason to include it). */
3016
3017static boolean
3018aout_link_check_ar_symbols (abfd, info, pneeded)
3019 bfd *abfd;
3020 struct bfd_link_info *info;
3021 boolean *pneeded;
3022{
3023 register struct external_nlist *p;
3024 struct external_nlist *pend;
3025 char *strings;
3026
3027 *pneeded = false;
3028
3029 /* Look through all the symbols. */
3030 p = obj_aout_external_syms (abfd);
3031 pend = p + obj_aout_external_sym_count (abfd);
3032 strings = obj_aout_external_strings (abfd);
3033 for (; p < pend; p++)
3034 {
3035 int type = bfd_h_get_8 (abfd, p->e_type);
3036 const char *name;
3037 struct bfd_link_hash_entry *h;
3038
4298e311
ILT
3039 /* Ignore symbols that are not externally visible. This is an
3040 optimization only, as we check the type more thoroughly
3041 below. */
4587b578
ILT
3042 if (((type & N_EXT) == 0
3043 || (type & N_STAB) != 0
3044 || type == N_FN)
4298e311
ILT
3045 && type != N_WEAKA
3046 && type != N_WEAKT
3047 && type != N_WEAKD
3048 && type != N_WEAKB)
9b39ed6b
ILT
3049 {
3050 if (type == N_WARNING
3051 || type == N_INDR)
3052 ++p;
3053 continue;
3054 }
4c3721d5
ILT
3055
3056 name = strings + GET_WORD (abfd, p->e_strx);
3057 h = bfd_link_hash_lookup (info->hash, name, false, false, true);
3058
3059 /* We are only interested in symbols that are currently
3060 undefined or common. */
3061 if (h == (struct bfd_link_hash_entry *) NULL
3062 || (h->type != bfd_link_hash_undefined
3063 && h->type != bfd_link_hash_common))
9b39ed6b
ILT
3064 {
3065 if (type == (N_INDR | N_EXT))
3066 ++p;
3067 continue;
3068 }
4c3721d5 3069
9b39ed6b
ILT
3070 if (type == (N_TEXT | N_EXT)
3071 || type == (N_DATA | N_EXT)
3072 || type == (N_BSS | N_EXT)
3073 || type == (N_ABS | N_EXT)
3074 || type == (N_INDR | N_EXT))
4c3721d5
ILT
3075 {
3076 /* This object file defines this symbol. We must link it
3077 in. This is true regardless of whether the current
3078 definition of the symbol is undefined or common. If the
3079 current definition is common, we have a case in which we
3080 have already seen an object file including
3081 int a;
3082 and this object file from the archive includes
3083 int a = 5;
f88c9008
ILT
3084 In such a case we must include this object file.
3085
3086 FIXME: The SunOS 4.1.3 linker will pull in the archive
3087 element if the symbol is defined in the .data section,
3088 but not if it is defined in the .text section. That
3089 seems a bit crazy to me, and I haven't implemented it.
3090 However, it might be correct. */
4c3721d5
ILT
3091 if (! (*info->callbacks->add_archive_element) (info, abfd, name))
3092 return false;
3093 *pneeded = true;
3094 return true;
3095 }
3096
9b39ed6b 3097 if (type == (N_UNDF | N_EXT))
4c3721d5
ILT
3098 {
3099 bfd_vma value;
3100
3101 value = GET_WORD (abfd, p->e_value);
3102 if (value != 0)
3103 {
3104 /* This symbol is common in the object from the archive
3105 file. */
3106 if (h->type == bfd_link_hash_undefined)
3107 {
3108 bfd *symbfd;
e1f99f60 3109 unsigned int power;
4c3721d5
ILT
3110
3111 symbfd = h->u.undef.abfd;
3112 if (symbfd == (bfd *) NULL)
3113 {
3114 /* This symbol was created as undefined from
3115 outside BFD. We assume that we should link
3116 in the object file. This is done for the -u
3117 option in the linker. */
3118 if (! (*info->callbacks->add_archive_element) (info,
3119 abfd,
3120 name))
3121 return false;
3122 *pneeded = true;
3123 return true;
3124 }
3125 /* Turn the current link symbol into a common
3126 symbol. It is already on the undefs list. */
3127 h->type = bfd_link_hash_common;
773033d2
ILT
3128 h->u.c.p = ((struct bfd_link_hash_common_entry *)
3129 bfd_hash_allocate (&info->hash->table,
3130 sizeof (struct bfd_link_hash_common_entry)));
3131 if (h->u.c.p == NULL)
3132 return false;
3133
4c3721d5 3134 h->u.c.size = value;
e1f99f60
ILT
3135
3136 /* FIXME: This isn't quite right. The maximum
3137 alignment of a common symbol should be set by the
3138 architecture of the output file, not of the input
3139 file. */
3140 power = bfd_log2 (value);
3141 if (power > bfd_get_arch_info (abfd)->section_align_power)
3142 power = bfd_get_arch_info (abfd)->section_align_power;
773033d2 3143 h->u.c.p->alignment_power = power;
e1f99f60 3144
773033d2
ILT
3145 h->u.c.p->section = bfd_make_section_old_way (symbfd,
3146 "COMMON");
4c3721d5
ILT
3147 }
3148 else
3149 {
3150 /* Adjust the size of the common symbol if
3151 necessary. */
3152 if (value > h->u.c.size)
3153 h->u.c.size = value;
3154 }
3155 }
3156 }
4298e311
ILT
3157
3158 if (type == N_WEAKA
3159 || type == N_WEAKT
3160 || type == N_WEAKD
3161 || type == N_WEAKB)
3162 {
3163 /* This symbol is weak but defined. We must pull it in if
3164 the current link symbol is undefined, but we don't want
3165 it if the current link symbol is common. */
3166 if (h->type == bfd_link_hash_undefined)
3167 {
3168 if (! (*info->callbacks->add_archive_element) (info, abfd, name))
3169 return false;
3170 *pneeded = true;
3171 return true;
3172 }
3173 }
4c3721d5
ILT
3174 }
3175
3176 /* We do not need this object file. */
3177 return true;
3178}
3179
3180/* Add all symbols from an object file to the hash table. */
3181
3182static boolean
3183aout_link_add_symbols (abfd, info)
3184 bfd *abfd;
3185 struct bfd_link_info *info;
3186{
e85e8bfe
ILT
3187 boolean (*add_one_symbol) PARAMS ((struct bfd_link_info *, bfd *,
3188 const char *, flagword, asection *,
3189 bfd_vma, const char *, boolean,
3190 boolean,
3191 struct bfd_link_hash_entry **));
396aaeb2 3192 struct external_nlist *syms;
4c3721d5
ILT
3193 bfd_size_type sym_count;
3194 char *strings;
3195 boolean copy;
3196 struct aout_link_hash_entry **sym_hash;
3197 register struct external_nlist *p;
3198 struct external_nlist *pend;
3199
396aaeb2 3200 syms = obj_aout_external_syms (abfd);
4c3721d5
ILT
3201 sym_count = obj_aout_external_sym_count (abfd);
3202 strings = obj_aout_external_strings (abfd);
3203 if (info->keep_memory)
3204 copy = false;
3205 else
3206 copy = true;
3207
f1b45745 3208 if (aout_backend_info (abfd)->add_dynamic_symbols != NULL)
396aaeb2
ILT
3209 {
3210 if (! ((*aout_backend_info (abfd)->add_dynamic_symbols)
3211 (abfd, info, &syms, &sym_count, &strings)))
3212 return false;
3213 }
3214
4c3721d5
ILT
3215 /* We keep a list of the linker hash table entries that correspond
3216 to particular symbols. We could just look them up in the hash
3217 table, but keeping the list is more efficient. Perhaps this
3218 should be conditional on info->keep_memory. */
3219 sym_hash = ((struct aout_link_hash_entry **)
3220 bfd_alloc (abfd,
3221 ((size_t) sym_count
3222 * sizeof (struct aout_link_hash_entry *))));
e85e8bfe 3223 if (sym_hash == NULL && sym_count != 0)
a9713b91 3224 return false;
4c3721d5
ILT
3225 obj_aout_sym_hashes (abfd) = sym_hash;
3226
e85e8bfe
ILT
3227 add_one_symbol = aout_backend_info (abfd)->add_one_symbol;
3228 if (add_one_symbol == NULL)
3229 add_one_symbol = _bfd_generic_link_add_one_symbol;
3230
396aaeb2 3231 p = syms;
4c3721d5
ILT
3232 pend = p + sym_count;
3233 for (; p < pend; p++, sym_hash++)
3234 {
3235 int type;
3236 const char *name;
3237 bfd_vma value;
3238 asection *section;
3239 flagword flags;
3240 const char *string;
3241
3242 *sym_hash = NULL;
3243
3244 type = bfd_h_get_8 (abfd, p->e_type);
3245
3246 /* Ignore debugging symbols. */
3247 if ((type & N_STAB) != 0)
3248 continue;
3249
4c3721d5
ILT
3250 name = strings + GET_WORD (abfd, p->e_strx);
3251 value = GET_WORD (abfd, p->e_value);
3252 flags = BSF_GLOBAL;
3253 string = NULL;
3254 switch (type)
3255 {
3256 default:
3257 abort ();
4298e311
ILT
3258
3259 case N_UNDF:
3260 case N_ABS:
3261 case N_TEXT:
3262 case N_DATA:
3263 case N_BSS:
3264 case N_FN_SEQ:
3265 case N_COMM:
3266 case N_SETV:
3267 case N_FN:
3268 /* Ignore symbols that are not externally visible. */
3269 continue;
3270 case N_INDR:
3271 /* Ignore local indirect symbol. */
3272 ++p;
3273 ++sym_hash;
3274 continue;
3275
4c3721d5 3276 case N_UNDF | N_EXT:
4298e311
ILT
3277 if (value == 0)
3278 {
4587b578 3279 section = bfd_und_section_ptr;
4298e311
ILT
3280 flags = 0;
3281 }
4c3721d5 3282 else
4587b578 3283 section = bfd_com_section_ptr;
4c3721d5
ILT
3284 break;
3285 case N_ABS | N_EXT:
4587b578 3286 section = bfd_abs_section_ptr;
4c3721d5
ILT
3287 break;
3288 case N_TEXT | N_EXT:
3289 section = obj_textsec (abfd);
3290 value -= bfd_get_section_vma (abfd, section);
3291 break;
3292 case N_DATA | N_EXT:
2cd086e3
ILT
3293 case N_SETV | N_EXT:
3294 /* Treat N_SETV symbols as N_DATA symbol; see comment in
3295 translate_from_native_sym_flags. */
4c3721d5
ILT
3296 section = obj_datasec (abfd);
3297 value -= bfd_get_section_vma (abfd, section);
3298 break;
3299 case N_BSS | N_EXT:
3300 section = obj_bsssec (abfd);
3301 value -= bfd_get_section_vma (abfd, section);
3302 break;
3303 case N_INDR | N_EXT:
3304 /* An indirect symbol. The next symbol is the symbol
3305 which this one really is. */
3306 BFD_ASSERT (p + 1 < pend);
3307 ++p;
3308 string = strings + GET_WORD (abfd, p->e_strx);
4587b578 3309 section = bfd_ind_section_ptr;
4c3721d5
ILT
3310 flags |= BSF_INDIRECT;
3311 break;
3312 case N_COMM | N_EXT:
4587b578 3313 section = bfd_com_section_ptr;
4c3721d5 3314 break;
964affdc 3315 case N_SETA: case N_SETA | N_EXT:
4587b578 3316 section = bfd_abs_section_ptr;
4c3721d5
ILT
3317 flags |= BSF_CONSTRUCTOR;
3318 break;
964affdc 3319 case N_SETT: case N_SETT | N_EXT:
4c3721d5
ILT
3320 section = obj_textsec (abfd);
3321 flags |= BSF_CONSTRUCTOR;
3322 value -= bfd_get_section_vma (abfd, section);
3323 break;
964affdc 3324 case N_SETD: case N_SETD | N_EXT:
4c3721d5
ILT
3325 section = obj_datasec (abfd);
3326 flags |= BSF_CONSTRUCTOR;
3327 value -= bfd_get_section_vma (abfd, section);
3328 break;
964affdc 3329 case N_SETB: case N_SETB | N_EXT:
4c3721d5
ILT
3330 section = obj_bsssec (abfd);
3331 flags |= BSF_CONSTRUCTOR;
3332 value -= bfd_get_section_vma (abfd, section);
3333 break;
3334 case N_WARNING:
3335 /* A warning symbol. The next symbol is the one to warn
3336 about. */
3337 BFD_ASSERT (p + 1 < pend);
3338 ++p;
3339 string = name;
3340 name = strings + GET_WORD (abfd, p->e_strx);
4587b578 3341 section = bfd_und_section_ptr;
4c3721d5
ILT
3342 flags |= BSF_WARNING;
3343 break;
4298e311 3344 case N_WEAKU:
4587b578 3345 section = bfd_und_section_ptr;
4298e311
ILT
3346 flags = BSF_WEAK;
3347 break;
3348 case N_WEAKA:
4587b578 3349 section = bfd_abs_section_ptr;
4298e311
ILT
3350 flags = BSF_WEAK;
3351 break;
3352 case N_WEAKT:
3353 section = obj_textsec (abfd);
3354 value -= bfd_get_section_vma (abfd, section);
3355 flags = BSF_WEAK;
3356 break;
3357 case N_WEAKD:
3358 section = obj_datasec (abfd);
3359 value -= bfd_get_section_vma (abfd, section);
3360 flags = BSF_WEAK;
3361 break;
3362 case N_WEAKB:
3363 section = obj_bsssec (abfd);
3364 value -= bfd_get_section_vma (abfd, section);
3365 flags = BSF_WEAK;
3366 break;
4c3721d5
ILT
3367 }
3368
e85e8bfe 3369 if (! ((*add_one_symbol)
e68de5d5 3370 (info, abfd, name, flags, section, value, string, copy, false,
ec099b4b 3371 (struct bfd_link_hash_entry **) sym_hash)))
4c3721d5 3372 return false;
53155af1 3373
e1f99f60
ILT
3374 /* Restrict the maximum alignment of a common symbol based on
3375 the architecture, since a.out has no way to represent
3376 alignment requirements of a section in a .o file. FIXME:
3377 This isn't quite right: it should use the architecture of the
3378 output file, not the input files. */
3379 if ((*sym_hash)->root.type == bfd_link_hash_common
773033d2 3380 && ((*sym_hash)->root.u.c.p->alignment_power >
e1f99f60 3381 bfd_get_arch_info (abfd)->section_align_power))
773033d2 3382 (*sym_hash)->root.u.c.p->alignment_power =
e1f99f60
ILT
3383 bfd_get_arch_info (abfd)->section_align_power;
3384
f4945271
ILT
3385 /* If this is a set symbol, and we are not building sets, then
3386 it is possible for the hash entry to not have been set. In
3387 such a case, treat the symbol as not globally defined. */
3388 if ((*sym_hash)->root.type == bfd_link_hash_new)
3389 {
3390 BFD_ASSERT ((flags & BSF_CONSTRUCTOR) != 0);
3391 *sym_hash = NULL;
3392 }
3393
53155af1
ILT
3394 if (type == (N_INDR | N_EXT) || type == N_WARNING)
3395 ++sym_hash;
4c3721d5
ILT
3396 }
3397
3398 return true;
3399}
14dc2f77
ILT
3400\f
3401/* A hash table used for header files with N_BINCL entries. */
3402
3403struct aout_link_includes_table
3404{
3405 struct bfd_hash_table root;
3406};
3407
3408/* A linked list of totals that we have found for a particular header
3409 file. */
3410
3411struct aout_link_includes_totals
3412{
3413 struct aout_link_includes_totals *next;
3414 bfd_vma total;
3415};
3416
3417/* An entry in the header file hash table. */
3418
3419struct aout_link_includes_entry
3420{
3421 struct bfd_hash_entry root;
3422 /* List of totals we have found for this file. */
3423 struct aout_link_includes_totals *totals;
3424};
3425
3426/* Look up an entry in an the header file hash table. */
3427
3428#define aout_link_includes_lookup(table, string, create, copy) \
3429 ((struct aout_link_includes_entry *) \
3430 bfd_hash_lookup (&(table)->root, (string), (create), (copy)))
4c3721d5
ILT
3431
3432/* During the final link step we need to pass around a bunch of
3433 information, so we do it in an instance of this structure. */
3434
3435struct aout_final_link_info
3436{
3437 /* General link information. */
3438 struct bfd_link_info *info;
3439 /* Output bfd. */
3440 bfd *output_bfd;
3441 /* Reloc file positions. */
3442 file_ptr treloff, dreloff;
3443 /* File position of symbols. */
3444 file_ptr symoff;
3445 /* String table. */
1afd2380 3446 struct bfd_strtab_hash *strtab;
14dc2f77
ILT
3447 /* Header file hash table. */
3448 struct aout_link_includes_table includes;
1afd2380
ILT
3449 /* A buffer large enough to hold the contents of any section. */
3450 bfd_byte *contents;
3451 /* A buffer large enough to hold the relocs of any section. */
3452 PTR relocs;
3453 /* A buffer large enough to hold the symbol map of any input BFD. */
3454 int *symbol_map;
3455 /* A buffer large enough to hold output symbols of any input BFD. */
3456 struct external_nlist *output_syms;
4c3721d5
ILT
3457};
3458
14dc2f77
ILT
3459static struct bfd_hash_entry *aout_link_includes_newfunc
3460 PARAMS ((struct bfd_hash_entry *, struct bfd_hash_table *, const char *));
4c3721d5
ILT
3461static boolean aout_link_input_bfd
3462 PARAMS ((struct aout_final_link_info *, bfd *input_bfd));
3463static boolean aout_link_write_symbols
1afd2380 3464 PARAMS ((struct aout_final_link_info *, bfd *input_bfd));
4c3721d5
ILT
3465static boolean aout_link_write_other_symbol
3466 PARAMS ((struct aout_link_hash_entry *, PTR));
3467static boolean aout_link_input_section
3468 PARAMS ((struct aout_final_link_info *, bfd *input_bfd,
3469 asection *input_section, file_ptr *reloff_ptr,
1afd2380 3470 bfd_size_type rel_size));
4c3721d5
ILT
3471static boolean aout_link_input_section_std
3472 PARAMS ((struct aout_final_link_info *, bfd *input_bfd,
3473 asection *input_section, struct reloc_std_external *,
1afd2380 3474 bfd_size_type rel_size, bfd_byte *contents));
4c3721d5
ILT
3475static boolean aout_link_input_section_ext
3476 PARAMS ((struct aout_final_link_info *, bfd *input_bfd,
3477 asection *input_section, struct reloc_ext_external *,
1afd2380 3478 bfd_size_type rel_size, bfd_byte *contents));
4c3721d5
ILT
3479static INLINE asection *aout_reloc_index_to_section
3480 PARAMS ((bfd *, int));
ec099b4b
ILT
3481static boolean aout_link_reloc_link_order
3482 PARAMS ((struct aout_final_link_info *, asection *,
3483 struct bfd_link_order *));
4c3721d5 3484
14dc2f77
ILT
3485/* The function to create a new entry in the header file hash table. */
3486
3487static struct bfd_hash_entry *
3488aout_link_includes_newfunc (entry, table, string)
3489 struct bfd_hash_entry *entry;
3490 struct bfd_hash_table *table;
3491 const char *string;
3492{
3493 struct aout_link_includes_entry *ret =
3494 (struct aout_link_includes_entry *) entry;
3495
3496 /* Allocate the structure if it has not already been allocated by a
3497 subclass. */
3498 if (ret == (struct aout_link_includes_entry *) NULL)
3499 ret = ((struct aout_link_includes_entry *)
3500 bfd_hash_allocate (table,
3501 sizeof (struct aout_link_includes_entry)));
3502 if (ret == (struct aout_link_includes_entry *) NULL)
3503 return (struct bfd_hash_entry *) ret;
3504
3505 /* Call the allocation method of the superclass. */
3506 ret = ((struct aout_link_includes_entry *)
3507 bfd_hash_newfunc ((struct bfd_hash_entry *) ret, table, string));
3508 if (ret)
3509 {
3510 /* Set local fields. */
3511 ret->totals = NULL;
3512 }
3513
3514 return (struct bfd_hash_entry *) ret;
3515}
3516
4c3721d5
ILT
3517/* Do the final link step. This is called on the output BFD. The
3518 INFO structure should point to a list of BFDs linked through the
3519 link_next field which can be used to find each BFD which takes part
3520 in the output. Also, each section in ABFD should point to a list
3521 of bfd_link_order structures which list all the input sections for
3522 the output section. */
3523
3524boolean
3525NAME(aout,final_link) (abfd, info, callback)
3526 bfd *abfd;
3527 struct bfd_link_info *info;
3528 void (*callback) PARAMS ((bfd *, file_ptr *, file_ptr *, file_ptr *));
3529{
3530 struct aout_final_link_info aout_info;
14dc2f77 3531 boolean includes_hash_initialized = false;
4c3721d5 3532 register bfd *sub;
1afd2380
ILT
3533 bfd_size_type trsize, drsize;
3534 size_t max_contents_size;
3535 size_t max_relocs_size;
3536 size_t max_sym_count;
4c3721d5
ILT
3537 bfd_size_type text_size;
3538 file_ptr text_end;
3539 register struct bfd_link_order *p;
3540 asection *o;
ec099b4b 3541 boolean have_link_order_relocs;
4c3721d5 3542
ae115e51
ILT
3543 if (info->shared)
3544 abfd->flags |= DYNAMIC;
3545
4c3721d5
ILT
3546 aout_info.info = info;
3547 aout_info.output_bfd = abfd;
1afd2380
ILT
3548 aout_info.contents = NULL;
3549 aout_info.relocs = NULL;
14dc2f77
ILT
3550 aout_info.symbol_map = NULL;
3551 aout_info.output_syms = NULL;
3552
3553 if (! bfd_hash_table_init_n (&aout_info.includes.root,
3554 aout_link_includes_newfunc,
3555 251))
3556 goto error_return;
3557 includes_hash_initialized = true;
1afd2380
ILT
3558
3559 /* Figure out the largest section size. Also, if generating
3560 relocateable output, count the relocs. */
3561 trsize = 0;
3562 drsize = 0;
3563 max_contents_size = 0;
3564 max_relocs_size = 0;
3565 max_sym_count = 0;
3566 for (sub = info->input_bfds; sub != NULL; sub = sub->link_next)
4c3721d5 3567 {
1afd2380 3568 size_t sz;
4c3721d5 3569
1afd2380 3570 if (info->relocateable)
4c3721d5 3571 {
6c8fa8e6 3572 if (bfd_get_flavour (sub) == bfd_target_aout_flavour)
4c3721d5
ILT
3573 {
3574 trsize += exec_hdr (sub)->a_trsize;
3575 drsize += exec_hdr (sub)->a_drsize;
3576 }
3577 else
3578 {
3579 /* FIXME: We need to identify the .text and .data sections
3580 and call get_reloc_upper_bound and canonicalize_reloc to
3581 work out the number of relocs needed, and then multiply
3582 by the reloc size. */
a9713b91
ILT
3583 (*_bfd_error_handler)
3584 ("%s: relocateable link from %s to %s not supported",
3585 bfd_get_filename (abfd),
3586 sub->xvec->name, abfd->xvec->name);
3587 bfd_set_error (bfd_error_invalid_operation);
3588 goto error_return;
4c3721d5
ILT
3589 }
3590 }
1afd2380 3591
204ba9e3
ILT
3592 if (bfd_get_flavour (sub) == bfd_target_aout_flavour)
3593 {
3594 sz = bfd_section_size (sub, obj_textsec (sub));
3595 if (sz > max_contents_size)
3596 max_contents_size = sz;
3597 sz = bfd_section_size (sub, obj_datasec (sub));
3598 if (sz > max_contents_size)
3599 max_contents_size = sz;
3600
3601 sz = exec_hdr (sub)->a_trsize;
3602 if (sz > max_relocs_size)
3603 max_relocs_size = sz;
3604 sz = exec_hdr (sub)->a_drsize;
3605 if (sz > max_relocs_size)
3606 max_relocs_size = sz;
3607
3608 sz = obj_aout_external_sym_count (sub);
3609 if (sz > max_sym_count)
3610 max_sym_count = sz;
3611 }
1afd2380
ILT
3612 }
3613
3614 if (info->relocateable)
3615 {
ec6b18c4
ILT
3616 if (obj_textsec (abfd) != (asection *) NULL)
3617 trsize += (_bfd_count_link_order_relocs (obj_textsec (abfd)
3618 ->link_order_head)
3619 * obj_reloc_entry_size (abfd));
ec6b18c4
ILT
3620 if (obj_datasec (abfd) != (asection *) NULL)
3621 drsize += (_bfd_count_link_order_relocs (obj_datasec (abfd)
3622 ->link_order_head)
3623 * obj_reloc_entry_size (abfd));
4c3721d5
ILT
3624 }
3625
1afd2380
ILT
3626 exec_hdr (abfd)->a_trsize = trsize;
3627 exec_hdr (abfd)->a_drsize = drsize;
3628
964affdc
DM
3629 exec_hdr (abfd)->a_entry = bfd_get_start_address (abfd);
3630
4c3721d5
ILT
3631 /* Adjust the section sizes and vmas according to the magic number.
3632 This sets a_text, a_data and a_bss in the exec_hdr and sets the
3633 filepos for each section. */
3634 if (! NAME(aout,adjust_sizes_and_vmas) (abfd, &text_size, &text_end))
1afd2380 3635 goto error_return;
4c3721d5
ILT
3636
3637 /* The relocation and symbol file positions differ among a.out
3638 targets. We are passed a callback routine from the backend
3639 specific code to handle this.
3640 FIXME: At this point we do not know how much space the symbol
3641 table will require. This will not work for any (nonstandard)
3642 a.out target that needs to know the symbol table size before it
3643 can compute the relocation file positions. This may or may not
3644 be the case for the hp300hpux target, for example. */
3645 (*callback) (abfd, &aout_info.treloff, &aout_info.dreloff,
3646 &aout_info.symoff);
3647 obj_textsec (abfd)->rel_filepos = aout_info.treloff;
3648 obj_datasec (abfd)->rel_filepos = aout_info.dreloff;
3649 obj_sym_filepos (abfd) = aout_info.symoff;
3650
3651 /* We keep a count of the symbols as we output them. */
3652 obj_aout_external_sym_count (abfd) = 0;
3653
3654 /* We accumulate the string table as we write out the symbols. */
1afd2380
ILT
3655 aout_info.strtab = _bfd_stringtab_init ();
3656 if (aout_info.strtab == NULL)
3657 goto error_return;
3658
3659 /* Allocate buffers to hold section contents and relocs. */
58142f10
ILT
3660 aout_info.contents = (bfd_byte *) bfd_malloc (max_contents_size);
3661 aout_info.relocs = (PTR) bfd_malloc (max_relocs_size);
3662 aout_info.symbol_map = (int *) bfd_malloc (max_sym_count * sizeof (int *));
1afd2380 3663 aout_info.output_syms = ((struct external_nlist *)
58142f10
ILT
3664 bfd_malloc ((max_sym_count + 1)
3665 * sizeof (struct external_nlist)));
1afd2380
ILT
3666 if ((aout_info.contents == NULL && max_contents_size != 0)
3667 || (aout_info.relocs == NULL && max_relocs_size != 0)
3668 || (aout_info.symbol_map == NULL && max_sym_count != 0)
3669 || aout_info.output_syms == NULL)
58142f10 3670 goto error_return;
4c3721d5 3671
34e9ffbc
NH
3672 /* If we have a symbol named __DYNAMIC, force it out now. This is
3673 required by SunOS. Doing this here rather than in sunos.c is a
3674 hack, but it's easier than exporting everything which would be
3675 needed. */
3676 {
3677 struct aout_link_hash_entry *h;
3678
3679 h = aout_link_hash_lookup (aout_hash_table (info), "__DYNAMIC",
3680 false, false, false);
3681 if (h != NULL)
3682 aout_link_write_other_symbol (h, &aout_info);
3683 }
3684
4c3721d5
ILT
3685 /* The most time efficient way to do the link would be to read all
3686 the input object files into memory and then sort out the
3687 information into the output file. Unfortunately, that will
3688 probably use too much memory. Another method would be to step
3689 through everything that composes the text section and write it
3690 out, and then everything that composes the data section and write
3691 it out, and then write out the relocs, and then write out the
3692 symbols. Unfortunately, that requires reading stuff from each
3693 input file several times, and we will not be able to keep all the
3694 input files open simultaneously, and reopening them will be slow.
3695
3696 What we do is basically process one input file at a time. We do
3697 everything we need to do with an input file once--copy over the
3698 section contents, handle the relocation information, and write
3699 out the symbols--and then we throw away the information we read
3700 from it. This approach requires a lot of lseeks of the output
3701 file, which is unfortunate but still faster than reopening a lot
3702 of files.
3703
3704 We use the output_has_begun field of the input BFDs to see
3705 whether we have already handled it. */
3706 for (sub = info->input_bfds; sub != (bfd *) NULL; sub = sub->link_next)
3707 sub->output_has_begun = false;
3708
7ec49f91
ILT
3709 /* Mark all sections which are to be included in the link. This
3710 will normally be every section. We need to do this so that we
3711 can identify any sections which the linker has decided to not
3712 include. */
3713 for (o = abfd->sections; o != NULL; o = o->next)
3714 {
3715 for (p = o->link_order_head; p != NULL; p = p->next)
3716 {
3717 if (p->type == bfd_indirect_link_order)
ff0e4a93 3718 p->u.indirect.section->linker_mark = true;
7ec49f91
ILT
3719 }
3720 }
3721
ec099b4b 3722 have_link_order_relocs = false;
4c3721d5
ILT
3723 for (o = abfd->sections; o != (asection *) NULL; o = o->next)
3724 {
4c3721d5
ILT
3725 for (p = o->link_order_head;
3726 p != (struct bfd_link_order *) NULL;
3727 p = p->next)
3728 {
e68de5d5
ILT
3729 if (p->type == bfd_indirect_link_order
3730 && (bfd_get_flavour (p->u.indirect.section->owner)
3731 == bfd_target_aout_flavour))
4c3721d5 3732 {
e68de5d5
ILT
3733 bfd *input_bfd;
3734
4c3721d5 3735 input_bfd = p->u.indirect.section->owner;
e68de5d5 3736 if (! input_bfd->output_has_begun)
4c3721d5 3737 {
e68de5d5 3738 if (! aout_link_input_bfd (&aout_info, input_bfd))
1afd2380 3739 goto error_return;
e68de5d5 3740 input_bfd->output_has_begun = true;
4c3721d5 3741 }
e68de5d5 3742 }
ec099b4b
ILT
3743 else if (p->type == bfd_section_reloc_link_order
3744 || p->type == bfd_symbol_reloc_link_order)
3745 {
3746 /* These are handled below. */
3747 have_link_order_relocs = true;
3748 }
e68de5d5
ILT
3749 else
3750 {
4c3721d5 3751 if (! _bfd_default_link_order (abfd, info, o, p))
1afd2380 3752 goto error_return;
4c3721d5
ILT
3753 }
3754 }
3755 }
3756
3757 /* Write out any symbols that we have not already written out. */
3758 aout_link_hash_traverse (aout_hash_table (info),
3759 aout_link_write_other_symbol,
3760 (PTR) &aout_info);
3761
ec099b4b
ILT
3762 /* Now handle any relocs we were asked to create by the linker.
3763 These did not come from any input file. We must do these after
3764 we have written out all the symbols, so that we know the symbol
3765 indices to use. */
3766 if (have_link_order_relocs)
3767 {
3768 for (o = abfd->sections; o != (asection *) NULL; o = o->next)
3769 {
3770 for (p = o->link_order_head;
3771 p != (struct bfd_link_order *) NULL;
3772 p = p->next)
3773 {
3774 if (p->type == bfd_section_reloc_link_order
3775 || p->type == bfd_symbol_reloc_link_order)
3776 {
3777 if (! aout_link_reloc_link_order (&aout_info, o, p))
1afd2380 3778 goto error_return;
ec099b4b
ILT
3779 }
3780 }
3781 }
3782 }
3783
1afd2380
ILT
3784 if (aout_info.contents != NULL)
3785 {
3786 free (aout_info.contents);
3787 aout_info.contents = NULL;
3788 }
3789 if (aout_info.relocs != NULL)
3790 {
3791 free (aout_info.relocs);
3792 aout_info.relocs = NULL;
3793 }
3794 if (aout_info.symbol_map != NULL)
3795 {
3796 free (aout_info.symbol_map);
3797 aout_info.symbol_map = NULL;
3798 }
3799 if (aout_info.output_syms != NULL)
3800 {
3801 free (aout_info.output_syms);
3802 aout_info.output_syms = NULL;
3803 }
14dc2f77
ILT
3804 if (includes_hash_initialized)
3805 {
3806 bfd_hash_table_free (&aout_info.includes.root);
3807 includes_hash_initialized = false;
3808 }
1afd2380 3809
e85e8bfe
ILT
3810 /* Finish up any dynamic linking we may be doing. */
3811 if (aout_backend_info (abfd)->finish_dynamic_link != NULL)
3812 {
3813 if (! (*aout_backend_info (abfd)->finish_dynamic_link) (abfd, info))
1afd2380 3814 goto error_return;
e85e8bfe
ILT
3815 }
3816
4c3721d5
ILT
3817 /* Update the header information. */
3818 abfd->symcount = obj_aout_external_sym_count (abfd);
3819 exec_hdr (abfd)->a_syms = abfd->symcount * EXTERNAL_NLIST_SIZE;
3820 obj_str_filepos (abfd) = obj_sym_filepos (abfd) + exec_hdr (abfd)->a_syms;
3821 obj_textsec (abfd)->reloc_count =
3822 exec_hdr (abfd)->a_trsize / obj_reloc_entry_size (abfd);
3823 obj_datasec (abfd)->reloc_count =
3824 exec_hdr (abfd)->a_drsize / obj_reloc_entry_size (abfd);
3825
3826 /* Write out the string table. */
3827 if (bfd_seek (abfd, obj_str_filepos (abfd), SEEK_SET) != 0)
1afd2380
ILT
3828 goto error_return;
3829 return emit_stringtab (abfd, aout_info.strtab);
3830
3831 error_return:
3832 if (aout_info.contents != NULL)
3833 free (aout_info.contents);
3834 if (aout_info.relocs != NULL)
3835 free (aout_info.relocs);
3836 if (aout_info.symbol_map != NULL)
3837 free (aout_info.symbol_map);
3838 if (aout_info.output_syms != NULL)
3839 free (aout_info.output_syms);
14dc2f77
ILT
3840 if (includes_hash_initialized)
3841 bfd_hash_table_free (&aout_info.includes.root);
1afd2380 3842 return false;
4c3721d5
ILT
3843}
3844
3845/* Link an a.out input BFD into the output file. */
3846
3847static boolean
3848aout_link_input_bfd (finfo, input_bfd)
3849 struct aout_final_link_info *finfo;
3850 bfd *input_bfd;
3851{
3852 bfd_size_type sym_count;
4c3721d5
ILT
3853
3854 BFD_ASSERT (bfd_get_format (input_bfd) == bfd_object);
3855
e85e8bfe
ILT
3856 /* If this is a dynamic object, it may need special handling. */
3857 if ((input_bfd->flags & DYNAMIC) != 0
3858 && aout_backend_info (input_bfd)->link_dynamic_object != NULL)
3859 {
3860 return ((*aout_backend_info (input_bfd)->link_dynamic_object)
3861 (finfo->info, input_bfd));
3862 }
3863
4c3721d5
ILT
3864 /* Get the symbols. We probably have them already, unless
3865 finfo->info->keep_memory is false. */
5c8444f8 3866 if (! aout_get_external_symbols (input_bfd))
4c3721d5
ILT
3867 return false;
3868
3869 sym_count = obj_aout_external_sym_count (input_bfd);
4c3721d5 3870
1afd2380
ILT
3871 /* Write out the symbols and get a map of the new indices. The map
3872 is placed into finfo->symbol_map. */
3873 if (! aout_link_write_symbols (finfo, input_bfd))
3874 return false;
4c3721d5 3875
1afd2380 3876 /* Relocate and write out the sections. These functions use the
ff0e4a93
ILT
3877 symbol map created by aout_link_write_symbols. The linker_mark
3878 field will be set if these sections are to be included in the
3879 link, which will normally be the case. */
3880 if (obj_textsec (input_bfd)->linker_mark)
7ec49f91
ILT
3881 {
3882 if (! aout_link_input_section (finfo, input_bfd,
3883 obj_textsec (input_bfd),
3884 &finfo->treloff,
3885 exec_hdr (input_bfd)->a_trsize))
3886 return false;
3887 }
ff0e4a93 3888 if (obj_datasec (input_bfd)->linker_mark)
7ec49f91
ILT
3889 {
3890 if (! aout_link_input_section (finfo, input_bfd,
3891 obj_datasec (input_bfd),
3892 &finfo->dreloff,
3893 exec_hdr (input_bfd)->a_drsize))
3894 return false;
3895 }
4c3721d5
ILT
3896
3897 /* If we are not keeping memory, we don't need the symbols any
3898 longer. We still need them if we are keeping memory, because the
3899 strings in the hash table point into them. */
3900 if (! finfo->info->keep_memory)
3901 {
3902 if (! aout_link_free_symbols (input_bfd))
1afd2380 3903 return false;
4c3721d5
ILT
3904 }
3905
3906 return true;
3907}
3908
3909/* Adjust and write out the symbols for an a.out file. Set the new
3910 symbol indices into a symbol_map. */
3911
3912static boolean
1afd2380 3913aout_link_write_symbols (finfo, input_bfd)
4c3721d5
ILT
3914 struct aout_final_link_info *finfo;
3915 bfd *input_bfd;
4c3721d5
ILT
3916{
3917 bfd *output_bfd;
3918 bfd_size_type sym_count;
3919 char *strings;
3920 enum bfd_link_strip strip;
3921 enum bfd_link_discard discard;
4c3721d5 3922 struct external_nlist *outsym;
d17fc4c9 3923 bfd_size_type strtab_index;
4c3721d5
ILT
3924 register struct external_nlist *sym;
3925 struct external_nlist *sym_end;
3926 struct aout_link_hash_entry **sym_hash;
1afd2380 3927 int *symbol_map;
4c3721d5 3928 boolean pass;
ab0434c2 3929 boolean skip_next;
4c3721d5
ILT
3930
3931 output_bfd = finfo->output_bfd;
3932 sym_count = obj_aout_external_sym_count (input_bfd);
3933 strings = obj_aout_external_strings (input_bfd);
3934 strip = finfo->info->strip;
3935 discard = finfo->info->discard;
1afd2380 3936 outsym = finfo->output_syms;
4c3721d5
ILT
3937
3938 /* First write out a symbol for this object file, unless we are
3939 discarding such symbols. */
3940 if (strip != strip_all
3941 && (strip != strip_some
3942 || bfd_hash_lookup (finfo->info->keep_hash, input_bfd->filename,
3943 false, false) != NULL)
3944 && discard != discard_all)
3945 {
3946 bfd_h_put_8 (output_bfd, N_TEXT, outsym->e_type);
3947 bfd_h_put_8 (output_bfd, 0, outsym->e_other);
3948 bfd_h_put_16 (output_bfd, (bfd_vma) 0, outsym->e_desc);
1afd2380 3949 strtab_index = add_to_stringtab (output_bfd, finfo->strtab,
d17fc4c9
ILT
3950 input_bfd->filename, false);
3951 if (strtab_index == (bfd_size_type) -1)
1afd2380 3952 return false;
d17fc4c9 3953 PUT_WORD (output_bfd, strtab_index, outsym->e_strx);
4c3721d5 3954 PUT_WORD (output_bfd,
2edc8357
ILT
3955 (bfd_get_section_vma (output_bfd,
3956 obj_textsec (input_bfd)->output_section)
3957 + obj_textsec (input_bfd)->output_offset),
4c3721d5
ILT
3958 outsym->e_value);
3959 ++obj_aout_external_sym_count (output_bfd);
3960 ++outsym;
3961 }
3962
3963 pass = false;
ab0434c2 3964 skip_next = false;
4c3721d5
ILT
3965 sym = obj_aout_external_syms (input_bfd);
3966 sym_end = sym + sym_count;
3967 sym_hash = obj_aout_sym_hashes (input_bfd);
1afd2380 3968 symbol_map = finfo->symbol_map;
14dc2f77 3969 memset (symbol_map, 0, sym_count * sizeof *symbol_map);
4c3721d5
ILT
3970 for (; sym < sym_end; sym++, sym_hash++, symbol_map++)
3971 {
3972 const char *name;
3973 int type;
d6d6b18a 3974 struct aout_link_hash_entry *h;
4c3721d5
ILT
3975 boolean skip;
3976 asection *symsec;
3977 bfd_vma val = 0;
d17fc4c9 3978 boolean copy;
4c3721d5 3979
14dc2f77
ILT
3980 /* We set *symbol_map to 0 above for all symbols. If it has
3981 already been set to -1 for this symbol, it means that we are
3982 discarding it because it appears in a duplicate header file.
3983 See the N_BINCL code below. */
3984 if (*symbol_map == -1)
3985 continue;
3986
3987 /* Initialize *symbol_map to -1, which means that the symbol was
3988 not copied into the output file. We will change it later if
3989 we do copy the symbol over. */
4c3721d5
ILT
3990 *symbol_map = -1;
3991
3992 type = bfd_h_get_8 (input_bfd, sym->e_type);
3993 name = strings + GET_WORD (input_bfd, sym->e_strx);
3994
d6d6b18a
ILT
3995 h = NULL;
3996
4c3721d5
ILT
3997 if (pass)
3998 {
53155af1
ILT
3999 /* Pass this symbol through. It is the target of an
4000 indirect or warning symbol. */
4c3721d5
ILT
4001 val = GET_WORD (input_bfd, sym->e_value);
4002 pass = false;
4003 }
ab0434c2 4004 else if (skip_next)
53155af1
ILT
4005 {
4006 /* Skip this symbol, which is the target of an indirect
4007 symbol that we have changed to no longer be an indirect
4008 symbol. */
ab0434c2 4009 skip_next = false;
53155af1
ILT
4010 continue;
4011 }
4c3721d5
ILT
4012 else
4013 {
53155af1 4014 struct aout_link_hash_entry *hresolve;
4c3721d5
ILT
4015
4016 /* We have saved the hash table entry for this symbol, if
4017 there is one. Note that we could just look it up again
4018 in the hash table, provided we first check that it is an
4019 external symbol. */
4020 h = *sym_hash;
4021
7ec49f91
ILT
4022 /* Use the name from the hash table, in case the symbol was
4023 wrapped. */
4024 if (h != NULL)
4025 name = h->root.root.string;
4026
3a5b50f4
ILT
4027 /* If this is an indirect or warning symbol, then change
4028 hresolve to the base symbol. We also change *sym_hash so
4029 that the relocation routines relocate against the real
4030 symbol. */
53155af1
ILT
4031 hresolve = h;
4032 if (h != (struct aout_link_hash_entry *) NULL
3a5b50f4
ILT
4033 && (h->root.type == bfd_link_hash_indirect
4034 || h->root.type == bfd_link_hash_warning))
53155af1
ILT
4035 {
4036 hresolve = (struct aout_link_hash_entry *) h->root.u.i.link;
118e8d1c
ILT
4037 while (hresolve->root.type == bfd_link_hash_indirect
4038 || hresolve->root.type == bfd_link_hash_warning)
53155af1
ILT
4039 hresolve = ((struct aout_link_hash_entry *)
4040 hresolve->root.u.i.link);
4041 *sym_hash = hresolve;
4042 }
4043
4c3721d5
ILT
4044 /* If the symbol has already been written out, skip it. */
4045 if (h != (struct aout_link_hash_entry *) NULL
e85e8bfe 4046 && h->root.type != bfd_link_hash_warning
35fee729 4047 && h->written)
4c3721d5 4048 {
ab0434c2
ILT
4049 if ((type & N_TYPE) == N_INDR
4050 || type == N_WARNING)
4051 skip_next = true;
4c3721d5
ILT
4052 *symbol_map = h->indx;
4053 continue;
4054 }
4055
4056 /* See if we are stripping this symbol. */
4057 skip = false;
4058 switch (strip)
4059 {
4060 case strip_none:
4061 break;
4062 case strip_debugger:
4063 if ((type & N_STAB) != 0)
4064 skip = true;
4065 break;
4066 case strip_some:
4067 if (bfd_hash_lookup (finfo->info->keep_hash, name, false, false)
4068 == NULL)
4069 skip = true;
4070 break;
4071 case strip_all:
4072 skip = true;
4073 break;
4074 }
4075 if (skip)
4076 {
4077 if (h != (struct aout_link_hash_entry *) NULL)
35fee729 4078 h->written = true;
4c3721d5
ILT
4079 continue;
4080 }
4081
4082 /* Get the value of the symbol. */
4298e311
ILT
4083 if ((type & N_TYPE) == N_TEXT
4084 || type == N_WEAKT)
4c3721d5 4085 symsec = obj_textsec (input_bfd);
4298e311
ILT
4086 else if ((type & N_TYPE) == N_DATA
4087 || type == N_WEAKD)
4c3721d5 4088 symsec = obj_datasec (input_bfd);
4298e311
ILT
4089 else if ((type & N_TYPE) == N_BSS
4090 || type == N_WEAKB)
4c3721d5 4091 symsec = obj_bsssec (input_bfd);
4298e311
ILT
4092 else if ((type & N_TYPE) == N_ABS
4093 || type == N_WEAKA)
4587b578 4094 symsec = bfd_abs_section_ptr;
53155af1
ILT
4095 else if (((type & N_TYPE) == N_INDR
4096 && (hresolve == (struct aout_link_hash_entry *) NULL
4097 || (hresolve->root.type != bfd_link_hash_defined
6c97aedf 4098 && hresolve->root.type != bfd_link_hash_defweak
53155af1 4099 && hresolve->root.type != bfd_link_hash_common)))
4c3721d5
ILT
4100 || type == N_WARNING)
4101 {
53155af1
ILT
4102 /* Pass the next symbol through unchanged. The
4103 condition above for indirect symbols is so that if
4104 the indirect symbol was defined, we output it with
4105 the correct definition so the debugger will
4106 understand it. */
4c3721d5
ILT
4107 pass = true;
4108 val = GET_WORD (input_bfd, sym->e_value);
4109 symsec = NULL;
4110 }
4111 else if ((type & N_STAB) != 0)
4112 {
4113 val = GET_WORD (input_bfd, sym->e_value);
4114 symsec = NULL;
4115 }
4116 else
4117 {
53155af1
ILT
4118 /* If we get here with an indirect symbol, it means that
4119 we are outputting it with a real definition. In such
4120 a case we do not want to output the next symbol,
4121 which is the target of the indirection. */
4122 if ((type & N_TYPE) == N_INDR)
ab0434c2 4123 skip_next = true;
53155af1 4124
f4945271
ILT
4125 symsec = NULL;
4126
53155af1
ILT
4127 /* We need to get the value from the hash table. We use
4128 hresolve so that if we have defined an indirect
4129 symbol we output the final definition. */
4c3721d5 4130 if (h == (struct aout_link_hash_entry *) NULL)
f4945271
ILT
4131 {
4132 switch (type & N_TYPE)
4133 {
4134 case N_SETT:
4135 symsec = obj_textsec (input_bfd);
4136 break;
4137 case N_SETD:
4138 symsec = obj_datasec (input_bfd);
4139 break;
4140 case N_SETB:
4141 symsec = obj_bsssec (input_bfd);
4142 break;
4143 case N_SETA:
4144 symsec = bfd_abs_section_ptr;
4145 break;
4146 default:
4147 val = 0;
4148 break;
4149 }
4150 }
6c97aedf
ILT
4151 else if (hresolve->root.type == bfd_link_hash_defined
4152 || hresolve->root.type == bfd_link_hash_defweak)
4c3721d5 4153 {
53155af1 4154 asection *input_section;
4c3721d5
ILT
4155 asection *output_section;
4156
6c97aedf
ILT
4157 /* This case usually means a common symbol which was
4158 turned into a defined symbol. */
53155af1
ILT
4159 input_section = hresolve->root.u.def.section;
4160 output_section = input_section->output_section;
4587b578 4161 BFD_ASSERT (bfd_is_abs_section (output_section)
4c3721d5 4162 || output_section->owner == output_bfd);
53155af1 4163 val = (hresolve->root.u.def.value
4c3721d5 4164 + bfd_get_section_vma (output_bfd, output_section)
53155af1 4165 + input_section->output_offset);
4c3721d5
ILT
4166
4167 /* Get the correct type based on the section. If
4168 this is a constructed set, force it to be
4169 globally visible. */
4170 if (type == N_SETT
4171 || type == N_SETD
4172 || type == N_SETB
4173 || type == N_SETA)
4174 type |= N_EXT;
4175
4176 type &=~ N_TYPE;
4177
4178 if (output_section == obj_textsec (output_bfd))
6c97aedf
ILT
4179 type |= (hresolve->root.type == bfd_link_hash_defined
4180 ? N_TEXT
4181 : N_WEAKT);
4c3721d5 4182 else if (output_section == obj_datasec (output_bfd))
6c97aedf
ILT
4183 type |= (hresolve->root.type == bfd_link_hash_defined
4184 ? N_DATA
4185 : N_WEAKD);
4c3721d5 4186 else if (output_section == obj_bsssec (output_bfd))
6c97aedf
ILT
4187 type |= (hresolve->root.type == bfd_link_hash_defined
4188 ? N_BSS
4189 : N_WEAKB);
4c3721d5 4190 else
6c97aedf
ILT
4191 type |= (hresolve->root.type == bfd_link_hash_defined
4192 ? N_ABS
4193 : N_WEAKA);
4c3721d5 4194 }
53155af1
ILT
4195 else if (hresolve->root.type == bfd_link_hash_common)
4196 val = hresolve->root.u.c.size;
6c97aedf 4197 else if (hresolve->root.type == bfd_link_hash_undefweak)
4298e311
ILT
4198 {
4199 val = 0;
4200 type = N_WEAKU;
4201 }
4c3721d5
ILT
4202 else
4203 val = 0;
4c3721d5
ILT
4204 }
4205 if (symsec != (asection *) NULL)
4206 val = (symsec->output_section->vma
4207 + symsec->output_offset
4208 + (GET_WORD (input_bfd, sym->e_value)
4209 - symsec->vma));
4210
4211 /* If this is a global symbol set the written flag, and if
4212 it is a local symbol see if we should discard it. */
4213 if (h != (struct aout_link_hash_entry *) NULL)
4214 {
35fee729 4215 h->written = true;
4c3721d5
ILT
4216 h->indx = obj_aout_external_sym_count (output_bfd);
4217 }
f4945271
ILT
4218 else if ((type & N_TYPE) != N_SETT
4219 && (type & N_TYPE) != N_SETD
4220 && (type & N_TYPE) != N_SETB
4221 && (type & N_TYPE) != N_SETA)
4c3721d5
ILT
4222 {
4223 switch (discard)
4224 {
4225 case discard_none:
4226 break;
4227 case discard_l:
4228 if (*name == *finfo->info->lprefix
4229 && (finfo->info->lprefix_len == 1
4230 || strncmp (name, finfo->info->lprefix,
4231 finfo->info->lprefix_len) == 0))
4232 skip = true;
4233 break;
4234 case discard_all:
4235 skip = true;
4236 break;
4237 }
4238 if (skip)
4239 {
4240 pass = false;
4241 continue;
4242 }
4243 }
14dc2f77
ILT
4244
4245 /* An N_BINCL symbol indicates the start of the stabs
4246 entries for a header file. We need to scan ahead to the
4247 next N_EINCL symbol, ignoring nesting, adding up all the
4248 characters in the symbol names, not including the file
4249 numbers in types (the first number after an open
4250 parenthesis). */
4251 if (type == N_BINCL)
4252 {
4253 struct external_nlist *incl_sym;
4254 int nest;
4255 struct aout_link_includes_entry *incl_entry;
4256 struct aout_link_includes_totals *t;
4257
4258 val = 0;
4259 nest = 0;
4260 for (incl_sym = sym + 1; incl_sym < sym_end; incl_sym++)
4261 {
4262 int incl_type;
4263
4264 incl_type = bfd_h_get_8 (input_bfd, incl_sym->e_type);
4265 if (incl_type == N_EINCL)
4266 {
4267 if (nest == 0)
4268 break;
4269 --nest;
4270 }
4271 else if (incl_type == N_BINCL)
4272 ++nest;
4273 else if (nest == 0)
4274 {
4275 const char *s;
4276
4277 s = strings + GET_WORD (input_bfd, incl_sym->e_strx);
4278 for (; *s != '\0'; s++)
4279 {
4280 val += *s;
4281 if (*s == '(')
4282 {
4283 /* Skip the file number. */
4284 ++s;
4285 while (isdigit ((unsigned char) *s))
4286 ++s;
4287 --s;
4288 }
4289 }
4290 }
4291 }
4292
4293 /* If we have already included a header file with the
4294 same value, then replace this one with an N_EXCL
4295 symbol. */
4296 copy = ! finfo->info->keep_memory;
4297 incl_entry = aout_link_includes_lookup (&finfo->includes,
4298 name, true, copy);
4299 if (incl_entry == NULL)
4300 return false;
4301 for (t = incl_entry->totals; t != NULL; t = t->next)
4302 if (t->total == val)
4303 break;
4304 if (t == NULL)
4305 {
4306 /* This is the first time we have seen this header
4307 file with this set of stabs strings. */
4308 t = ((struct aout_link_includes_totals *)
4309 bfd_hash_allocate (&finfo->includes.root,
4310 sizeof *t));
4311 if (t == NULL)
4312 return false;
4313 t->total = val;
4314 t->next = incl_entry->totals;
4315 incl_entry->totals = t;
4316 }
4317 else
4318 {
4319 int *incl_map;
4320
4321 /* This is a duplicate header file. We must change
4322 it to be an N_EXCL entry, and mark all the
4323 included symbols to prevent outputting them. */
4324 type = N_EXCL;
4325
4326 nest = 0;
4327 for (incl_sym = sym + 1, incl_map = symbol_map + 1;
4328 incl_sym < sym_end;
4329 incl_sym++, incl_map++)
4330 {
4331 int incl_type;
4332
4333 incl_type = bfd_h_get_8 (input_bfd, incl_sym->e_type);
4334 if (incl_type == N_EINCL)
4335 {
4336 if (nest == 0)
4337 {
4338 *incl_map = -1;
4339 break;
4340 }
4341 --nest;
4342 }
4343 else if (incl_type == N_BINCL)
4344 ++nest;
4345 else if (nest == 0)
4346 *incl_map = -1;
4347 }
4348 }
4349 }
4c3721d5
ILT
4350 }
4351
4352 /* Copy this symbol into the list of symbols we are going to
4353 write out. */
4354 bfd_h_put_8 (output_bfd, type, outsym->e_type);
4355 bfd_h_put_8 (output_bfd, bfd_h_get_8 (input_bfd, sym->e_other),
4356 outsym->e_other);
4357 bfd_h_put_16 (output_bfd, bfd_h_get_16 (input_bfd, sym->e_desc),
4358 outsym->e_desc);
d17fc4c9 4359 copy = false;
d6d6b18a
ILT
4360 if (! finfo->info->keep_memory)
4361 {
4362 /* name points into a string table which we are going to
4363 free. If there is a hash table entry, use that string.
4364 Otherwise, copy name into memory. */
4365 if (h != (struct aout_link_hash_entry *) NULL)
1afd2380 4366 name = h->root.root.string;
d6d6b18a 4367 else
d17fc4c9 4368 copy = true;
d6d6b18a 4369 }
1afd2380 4370 strtab_index = add_to_stringtab (output_bfd, finfo->strtab,
d17fc4c9
ILT
4371 name, copy);
4372 if (strtab_index == (bfd_size_type) -1)
1afd2380 4373 return false;
d17fc4c9 4374 PUT_WORD (output_bfd, strtab_index, outsym->e_strx);
4c3721d5
ILT
4375 PUT_WORD (output_bfd, val, outsym->e_value);
4376 *symbol_map = obj_aout_external_sym_count (output_bfd);
4377 ++obj_aout_external_sym_count (output_bfd);
4378 ++outsym;
4379 }
4380
4381 /* Write out the output symbols we have just constructed. */
1afd2380 4382 if (outsym > finfo->output_syms)
4c3721d5
ILT
4383 {
4384 bfd_size_type outsym_count;
4385
4386 if (bfd_seek (output_bfd, finfo->symoff, SEEK_SET) != 0)
1afd2380
ILT
4387 return false;
4388 outsym_count = outsym - finfo->output_syms;
4389 if (bfd_write ((PTR) finfo->output_syms,
4390 (bfd_size_type) EXTERNAL_NLIST_SIZE,
4c3721d5
ILT
4391 (bfd_size_type) outsym_count, output_bfd)
4392 != outsym_count * EXTERNAL_NLIST_SIZE)
1afd2380 4393 return false;
4c3721d5
ILT
4394 finfo->symoff += outsym_count * EXTERNAL_NLIST_SIZE;
4395 }
4396
4397 return true;
4398}
4399
4400/* Write out a symbol that was not associated with an a.out input
4401 object. */
4402
4403static boolean
4404aout_link_write_other_symbol (h, data)
4405 struct aout_link_hash_entry *h;
4406 PTR data;
4407{
4408 struct aout_final_link_info *finfo = (struct aout_final_link_info *) data;
4409 bfd *output_bfd;
4410 int type;
4411 bfd_vma val;
4412 struct external_nlist outsym;
d17fc4c9 4413 bfd_size_type indx;
4c3721d5 4414
e85e8bfe
ILT
4415 output_bfd = finfo->output_bfd;
4416
4417 if (aout_backend_info (output_bfd)->write_dynamic_symbol != NULL)
4418 {
4419 if (! ((*aout_backend_info (output_bfd)->write_dynamic_symbol)
4420 (output_bfd, finfo->info, h)))
4421 {
4422 /* FIXME: No way to handle errors. */
4423 abort ();
4424 }
4425 }
4426
35fee729 4427 if (h->written)
4c3721d5
ILT
4428 return true;
4429
35fee729 4430 h->written = true;
9783e04a 4431
74942465
ILT
4432 /* An indx of -2 means the symbol must be written. */
4433 if (h->indx != -2
4434 && (finfo->info->strip == strip_all
4435 || (finfo->info->strip == strip_some
4436 && bfd_hash_lookup (finfo->info->keep_hash, h->root.root.string,
4437 false, false) == NULL)))
9783e04a
DM
4438 return true;
4439
4c3721d5
ILT
4440 switch (h->root.type)
4441 {
4442 default:
4c3721d5
ILT
4443 abort ();
4444 /* Avoid variable not initialized warnings. */
4445 return true;
f4945271
ILT
4446 case bfd_link_hash_new:
4447 /* This can happen for set symbols when sets are not being
4448 built. */
4449 return true;
4c3721d5
ILT
4450 case bfd_link_hash_undefined:
4451 type = N_UNDF | N_EXT;
4452 val = 0;
4453 break;
4454 case bfd_link_hash_defined:
6c97aedf 4455 case bfd_link_hash_defweak:
4c3721d5
ILT
4456 {
4457 asection *sec;
4458
4f019d04 4459 sec = h->root.u.def.section->output_section;
4587b578 4460 BFD_ASSERT (bfd_is_abs_section (sec)
4c3721d5
ILT
4461 || sec->owner == output_bfd);
4462 if (sec == obj_textsec (output_bfd))
6c97aedf 4463 type = h->root.type == bfd_link_hash_defined ? N_TEXT : N_WEAKT;
4c3721d5 4464 else if (sec == obj_datasec (output_bfd))
6c97aedf 4465 type = h->root.type == bfd_link_hash_defined ? N_DATA : N_WEAKD;
4c3721d5 4466 else if (sec == obj_bsssec (output_bfd))
6c97aedf 4467 type = h->root.type == bfd_link_hash_defined ? N_BSS : N_WEAKB;
4c3721d5 4468 else
6c97aedf
ILT
4469 type = h->root.type == bfd_link_hash_defined ? N_ABS : N_WEAKA;
4470 type |= N_EXT;
4c3721d5 4471 val = (h->root.u.def.value
4f019d04
ILT
4472 + sec->vma
4473 + h->root.u.def.section->output_offset);
4c3721d5
ILT
4474 }
4475 break;
4476 case bfd_link_hash_common:
4477 type = N_UNDF | N_EXT;
4478 val = h->root.u.c.size;
4479 break;
6c97aedf 4480 case bfd_link_hash_undefweak:
4298e311
ILT
4481 type = N_WEAKU;
4482 val = 0;
4c3721d5
ILT
4483 case bfd_link_hash_indirect:
4484 case bfd_link_hash_warning:
4485 /* FIXME: Ignore these for now. The circumstances under which
4486 they should be written out are not clear to me. */
4487 return true;
4488 }
4489
4490 bfd_h_put_8 (output_bfd, type, outsym.e_type);
4491 bfd_h_put_8 (output_bfd, 0, outsym.e_other);
4492 bfd_h_put_16 (output_bfd, 0, outsym.e_desc);
1afd2380 4493 indx = add_to_stringtab (output_bfd, finfo->strtab, h->root.root.string,
d17fc4c9
ILT
4494 false);
4495 if (indx == (bfd_size_type) -1)
4496 {
4497 /* FIXME: No way to handle errors. */
4498 abort ();
4499 }
4500 PUT_WORD (output_bfd, indx, outsym.e_strx);
4c3721d5
ILT
4501 PUT_WORD (output_bfd, val, outsym.e_value);
4502
4503 if (bfd_seek (output_bfd, finfo->symoff, SEEK_SET) != 0
4504 || bfd_write ((PTR) &outsym, (bfd_size_type) EXTERNAL_NLIST_SIZE,
4505 (bfd_size_type) 1, output_bfd) != EXTERNAL_NLIST_SIZE)
4506 {
4507 /* FIXME: No way to handle errors. */
4508 abort ();
4509 }
4510
4511 finfo->symoff += EXTERNAL_NLIST_SIZE;
4512 h->indx = obj_aout_external_sym_count (output_bfd);
4513 ++obj_aout_external_sym_count (output_bfd);
4514
4515 return true;
4516}
4517
4518/* Link an a.out section into the output file. */
4519
4520static boolean
4521aout_link_input_section (finfo, input_bfd, input_section, reloff_ptr,
1afd2380 4522 rel_size)
4c3721d5
ILT
4523 struct aout_final_link_info *finfo;
4524 bfd *input_bfd;
4525 asection *input_section;
4526 file_ptr *reloff_ptr;
4527 bfd_size_type rel_size;
4c3721d5
ILT
4528{
4529 bfd_size_type input_size;
e85e8bfe 4530 PTR relocs;
4c3721d5
ILT
4531
4532 /* Get the section contents. */
4533 input_size = bfd_section_size (input_bfd, input_section);
1afd2380
ILT
4534 if (! bfd_get_section_contents (input_bfd, input_section,
4535 (PTR) finfo->contents,
4c3721d5 4536 (file_ptr) 0, input_size))
1afd2380 4537 return false;
4c3721d5 4538
e85e8bfe
ILT
4539 /* Read in the relocs if we haven't already done it. */
4540 if (aout_section_data (input_section) != NULL
4541 && aout_section_data (input_section)->relocs != NULL)
4542 relocs = aout_section_data (input_section)->relocs;
4543 else
80425e6c 4544 {
1afd2380 4545 relocs = finfo->relocs;
875e4716
ILT
4546 if (rel_size > 0)
4547 {
4548 if (bfd_seek (input_bfd, input_section->rel_filepos, SEEK_SET) != 0
4549 || bfd_read (relocs, 1, rel_size, input_bfd) != rel_size)
4550 return false;
4551 }
80425e6c 4552 }
4c3721d5
ILT
4553
4554 /* Relocate the section contents. */
4555 if (obj_reloc_entry_size (input_bfd) == RELOC_STD_SIZE)
4556 {
4557 if (! aout_link_input_section_std (finfo, input_bfd, input_section,
4558 (struct reloc_std_external *) relocs,
1afd2380
ILT
4559 rel_size, finfo->contents))
4560 return false;
4c3721d5
ILT
4561 }
4562 else
4563 {
4564 if (! aout_link_input_section_ext (finfo, input_bfd, input_section,
4565 (struct reloc_ext_external *) relocs,
1afd2380
ILT
4566 rel_size, finfo->contents))
4567 return false;
4c3721d5
ILT
4568 }
4569
4570 /* Write out the section contents. */
4571 if (! bfd_set_section_contents (finfo->output_bfd,
4572 input_section->output_section,
1afd2380 4573 (PTR) finfo->contents,
728472f1 4574 input_section->output_offset,
4c3721d5 4575 input_size))
1afd2380 4576 return false;
4c3721d5
ILT
4577
4578 /* If we are producing relocateable output, the relocs were
4579 modified, and we now write them out. */
875e4716 4580 if (finfo->info->relocateable && rel_size > 0)
4c3721d5
ILT
4581 {
4582 if (bfd_seek (finfo->output_bfd, *reloff_ptr, SEEK_SET) != 0)
1afd2380 4583 return false;
4c3721d5
ILT
4584 if (bfd_write (relocs, (bfd_size_type) 1, rel_size, finfo->output_bfd)
4585 != rel_size)
1afd2380 4586 return false;
4c3721d5
ILT
4587 *reloff_ptr += rel_size;
4588
4589 /* Assert that the relocs have not run into the symbols, and
4590 that if these are the text relocs they have not run into the
4591 data relocs. */
4592 BFD_ASSERT (*reloff_ptr <= obj_sym_filepos (finfo->output_bfd)
4593 && (reloff_ptr != &finfo->treloff
4594 || (*reloff_ptr
4595 <= obj_datasec (finfo->output_bfd)->rel_filepos)));
4596 }
4597
4598 return true;
4599}
4600
4601/* Get the section corresponding to a reloc index. */
4602
4603static INLINE asection *
4604aout_reloc_index_to_section (abfd, indx)
4605 bfd *abfd;
4606 int indx;
4607{
4608 switch (indx & N_TYPE)
4609 {
4610 case N_TEXT:
4611 return obj_textsec (abfd);
4612 case N_DATA:
4613 return obj_datasec (abfd);
4614 case N_BSS:
4615 return obj_bsssec (abfd);
4616 case N_ABS:
fa2302b8 4617 case N_UNDF:
4587b578 4618 return bfd_abs_section_ptr;
4c3721d5
ILT
4619 default:
4620 abort ();
4621 }
4622}
4623
4624/* Relocate an a.out section using standard a.out relocs. */
4625
4626static boolean
4627aout_link_input_section_std (finfo, input_bfd, input_section, relocs,
1afd2380 4628 rel_size, contents)
4c3721d5
ILT
4629 struct aout_final_link_info *finfo;
4630 bfd *input_bfd;
4631 asection *input_section;
4632 struct reloc_std_external *relocs;
4633 bfd_size_type rel_size;
4634 bfd_byte *contents;
4c3721d5 4635{
e85e8bfe
ILT
4636 boolean (*check_dynamic_reloc) PARAMS ((struct bfd_link_info *,
4637 bfd *, asection *,
4638 struct aout_link_hash_entry *,
ae115e51
ILT
4639 PTR, bfd_byte *, boolean *,
4640 bfd_vma *));
4c3721d5
ILT
4641 bfd *output_bfd;
4642 boolean relocateable;
4643 struct external_nlist *syms;
4644 char *strings;
4645 struct aout_link_hash_entry **sym_hashes;
1afd2380 4646 int *symbol_map;
4c3721d5
ILT
4647 bfd_size_type reloc_count;
4648 register struct reloc_std_external *rel;
4649 struct reloc_std_external *rel_end;
4650
4651 output_bfd = finfo->output_bfd;
e85e8bfe 4652 check_dynamic_reloc = aout_backend_info (output_bfd)->check_dynamic_reloc;
4c3721d5
ILT
4653
4654 BFD_ASSERT (obj_reloc_entry_size (input_bfd) == RELOC_STD_SIZE);
64d5f5d0
ILT
4655 BFD_ASSERT (input_bfd->xvec->header_byteorder
4656 == output_bfd->xvec->header_byteorder);
4c3721d5
ILT
4657
4658 relocateable = finfo->info->relocateable;
4659 syms = obj_aout_external_syms (input_bfd);
4660 strings = obj_aout_external_strings (input_bfd);
4661 sym_hashes = obj_aout_sym_hashes (input_bfd);
1afd2380 4662 symbol_map = finfo->symbol_map;
4c3721d5
ILT
4663
4664 reloc_count = rel_size / RELOC_STD_SIZE;
4665 rel = relocs;
4666 rel_end = rel + reloc_count;
4667 for (; rel < rel_end; rel++)
4668 {
4669 bfd_vma r_addr;
4670 int r_index;
4671 int r_extern;
4672 int r_pcrel;
ae115e51 4673 int r_baserel = 0;
f42fe159 4674 reloc_howto_type *howto;
ae115e51 4675 struct aout_link_hash_entry *h = NULL;
4c3721d5
ILT
4676 bfd_vma relocation;
4677 bfd_reloc_status_type r;
4678
4679 r_addr = GET_SWORD (input_bfd, rel->r_address);
4680
f42fe159
ILT
4681#ifdef MY_reloc_howto
4682 howto = MY_reloc_howto(input_bfd, rel, r_index, r_extern, r_pcrel);
4683#else
ae115e51
ILT
4684 {
4685 int r_jmptable;
4686 int r_relative;
4687 int r_length;
4688 unsigned int howto_idx;
4c3721d5 4689
64d5f5d0 4690 if (bfd_header_big_endian (input_bfd))
ae115e51
ILT
4691 {
4692 r_index = ((rel->r_index[0] << 16)
4693 | (rel->r_index[1] << 8)
4694 | rel->r_index[2]);
4695 r_extern = (0 != (rel->r_type[0] & RELOC_STD_BITS_EXTERN_BIG));
4696 r_pcrel = (0 != (rel->r_type[0] & RELOC_STD_BITS_PCREL_BIG));
4697 r_baserel = (0 != (rel->r_type[0] & RELOC_STD_BITS_BASEREL_BIG));
4698 r_jmptable= (0 != (rel->r_type[0] & RELOC_STD_BITS_JMPTABLE_BIG));
4699 r_relative= (0 != (rel->r_type[0] & RELOC_STD_BITS_RELATIVE_BIG));
4700 r_length = ((rel->r_type[0] & RELOC_STD_BITS_LENGTH_BIG)
4701 >> RELOC_STD_BITS_LENGTH_SH_BIG);
4702 }
4703 else
4704 {
4705 r_index = ((rel->r_index[2] << 16)
4706 | (rel->r_index[1] << 8)
4707 | rel->r_index[0]);
4708 r_extern = (0 != (rel->r_type[0] & RELOC_STD_BITS_EXTERN_LITTLE));
4709 r_pcrel = (0 != (rel->r_type[0] & RELOC_STD_BITS_PCREL_LITTLE));
4710 r_baserel = (0 != (rel->r_type[0]
4711 & RELOC_STD_BITS_BASEREL_LITTLE));
4712 r_jmptable= (0 != (rel->r_type[0]
4713 & RELOC_STD_BITS_JMPTABLE_LITTLE));
4714 r_relative= (0 != (rel->r_type[0]
4715 & RELOC_STD_BITS_RELATIVE_LITTLE));
4716 r_length = ((rel->r_type[0] & RELOC_STD_BITS_LENGTH_LITTLE)
4717 >> RELOC_STD_BITS_LENGTH_SH_LITTLE);
4718 }
4719
4720 howto_idx = (r_length + 4 * r_pcrel + 8 * r_baserel
4721 + 16 * r_jmptable + 32 * r_relative);
4722 BFD_ASSERT (howto_idx < TABLE_SIZE (howto_table_std));
4723 howto = howto_table_std + howto_idx;
4724 }
f42fe159 4725#endif
4c3721d5
ILT
4726
4727 if (relocateable)
4728 {
4729 /* We are generating a relocateable output file, and must
4730 modify the reloc accordingly. */
4731 if (r_extern)
4732 {
4c3721d5
ILT
4733 /* If we know the symbol this relocation is against,
4734 convert it into a relocation against a section. This
4735 is what the native linker does. */
4736 h = sym_hashes[r_index];
4737 if (h != (struct aout_link_hash_entry *) NULL
6c97aedf
ILT
4738 && (h->root.type == bfd_link_hash_defined
4739 || h->root.type == bfd_link_hash_defweak))
4c3721d5
ILT
4740 {
4741 asection *output_section;
4742
4743 /* Change the r_extern value. */
64d5f5d0 4744 if (bfd_header_big_endian (output_bfd))
4c3721d5
ILT
4745 rel->r_type[0] &=~ RELOC_STD_BITS_EXTERN_BIG;
4746 else
4747 rel->r_type[0] &=~ RELOC_STD_BITS_EXTERN_LITTLE;
4748
4749 /* Compute a new r_index. */
4750 output_section = h->root.u.def.section->output_section;
4751 if (output_section == obj_textsec (output_bfd))
4752 r_index = N_TEXT;
4753 else if (output_section == obj_datasec (output_bfd))
4754 r_index = N_DATA;
4755 else if (output_section == obj_bsssec (output_bfd))
4756 r_index = N_BSS;
4757 else
4758 r_index = N_ABS;
4759
4760 /* Add the symbol value and the section VMA to the
4761 addend stored in the contents. */
4762 relocation = (h->root.u.def.value
4763 + output_section->vma
4764 + h->root.u.def.section->output_offset);
4765 }
4766 else
4767 {
4768 /* We must change r_index according to the symbol
4769 map. */
4770 r_index = symbol_map[r_index];
4771
4772 if (r_index == -1)
4773 {
74942465
ILT
4774 if (h != NULL)
4775 {
4776 /* We decided to strip this symbol, but it
4777 turns out that we can't. Note that we
4778 lose the other and desc information here.
4779 I don't think that will ever matter for a
4780 global symbol. */
4781 if (h->indx < 0)
4782 {
4783 h->indx = -2;
4784 h->written = false;
4785 if (! aout_link_write_other_symbol (h,
4786 (PTR) finfo))
4787 return false;
4788 }
4789 r_index = h->indx;
4790 }
4791 else
4792 {
4793 const char *name;
4794
4795 name = strings + GET_WORD (input_bfd,
4796 syms[r_index].e_strx);
4797 if (! ((*finfo->info->callbacks->unattached_reloc)
4798 (finfo->info, name, input_bfd, input_section,
4799 r_addr)))
4800 return false;
4801 r_index = 0;
4802 }
4c3721d5
ILT
4803 }
4804
4805 relocation = 0;
4806 }
4807
4808 /* Write out the new r_index value. */
64d5f5d0 4809 if (bfd_header_big_endian (output_bfd))
4c3721d5
ILT
4810 {
4811 rel->r_index[0] = r_index >> 16;
4812 rel->r_index[1] = r_index >> 8;
4813 rel->r_index[2] = r_index;
4814 }
4815 else
4816 {
4817 rel->r_index[2] = r_index >> 16;
4818 rel->r_index[1] = r_index >> 8;
4819 rel->r_index[0] = r_index;
4820 }
4821 }
4822 else
4823 {
4824 asection *section;
4825
4826 /* This is a relocation against a section. We must
4827 adjust by the amount that the section moved. */
4828 section = aout_reloc_index_to_section (input_bfd, r_index);
4829 relocation = (section->output_section->vma
4830 + section->output_offset
4831 - section->vma);
4832 }
4833
4834 /* Change the address of the relocation. */
4835 PUT_WORD (output_bfd,
4836 r_addr + input_section->output_offset,
4837 rel->r_address);
4838
4839 /* Adjust a PC relative relocation by removing the reference
e68de5d5
ILT
4840 to the original address in the section and including the
4841 reference to the new address. */
4c3721d5 4842 if (r_pcrel)
e68de5d5
ILT
4843 relocation -= (input_section->output_section->vma
4844 + input_section->output_offset
4845 - input_section->vma);
4c3721d5 4846
943fbd5b
KR
4847#ifdef MY_relocatable_reloc
4848 MY_relocatable_reloc (howto, output_bfd, rel, relocation, r_addr);
4849#endif
4850
4c3721d5
ILT
4851 if (relocation == 0)
4852 r = bfd_reloc_ok;
4853 else
34e9ffbc 4854 r = MY_relocate_contents (howto,
4c3721d5
ILT
4855 input_bfd, relocation,
4856 contents + r_addr);
4857 }
4858 else
4859 {
ae115e51
ILT
4860 boolean hundef;
4861
4c3721d5
ILT
4862 /* We are generating an executable, and must do a full
4863 relocation. */
ae115e51 4864 hundef = false;
4c3721d5
ILT
4865 if (r_extern)
4866 {
4c3721d5 4867 h = sym_hashes[r_index];
e85e8bfe 4868
4c3721d5 4869 if (h != (struct aout_link_hash_entry *) NULL
6c97aedf
ILT
4870 && (h->root.type == bfd_link_hash_defined
4871 || h->root.type == bfd_link_hash_defweak))
4c3721d5
ILT
4872 {
4873 relocation = (h->root.u.def.value
4874 + h->root.u.def.section->output_section->vma
4875 + h->root.u.def.section->output_offset);
4876 }
4298e311 4877 else if (h != (struct aout_link_hash_entry *) NULL
6c97aedf 4878 && h->root.type == bfd_link_hash_undefweak)
4298e311 4879 relocation = 0;
4c3721d5
ILT
4880 else
4881 {
ae115e51 4882 hundef = true;
4c3721d5
ILT
4883 relocation = 0;
4884 }
4885 }
4886 else
4887 {
4888 asection *section;
4889
4890 section = aout_reloc_index_to_section (input_bfd, r_index);
4891 relocation = (section->output_section->vma
4892 + section->output_offset
4893 - section->vma);
e68de5d5
ILT
4894 if (r_pcrel)
4895 relocation += input_section->vma;
4c3721d5
ILT
4896 }
4897
ae115e51
ILT
4898 if (check_dynamic_reloc != NULL)
4899 {
4900 boolean skip;
4901
4902 if (! ((*check_dynamic_reloc)
4903 (finfo->info, input_bfd, input_section, h,
4904 (PTR) rel, contents, &skip, &relocation)))
4905 return false;
4906 if (skip)
4907 continue;
4908 }
4909
4910 /* Now warn if a global symbol is undefined. We could not
4911 do this earlier, because check_dynamic_reloc might want
4912 to skip this reloc. */
4913 if (hundef && ! finfo->info->shared && ! r_baserel)
4914 {
4915 const char *name;
4916
7ec49f91
ILT
4917 if (h != NULL)
4918 name = h->root.root.string;
4919 else
4920 name = strings + GET_WORD (input_bfd, syms[r_index].e_strx);
ae115e51
ILT
4921 if (! ((*finfo->info->callbacks->undefined_symbol)
4922 (finfo->info, name, input_bfd, input_section, r_addr)))
4923 return false;
4924 }
4925
34e9ffbc 4926 r = MY_final_link_relocate (howto,
7ec49f91
ILT
4927 input_bfd, input_section,
4928 contents, r_addr, relocation,
4929 (bfd_vma) 0);
4c3721d5
ILT
4930 }
4931
4932 if (r != bfd_reloc_ok)
4933 {
4934 switch (r)
4935 {
4936 default:
4937 case bfd_reloc_outofrange:
4938 abort ();
4939 case bfd_reloc_overflow:
4991ebb9
ILT
4940 {
4941 const char *name;
4942
aad53b0d
ILT
4943 if (h != NULL)
4944 name = h->root.root.string;
4945 else if (r_extern)
4991ebb9
ILT
4946 name = strings + GET_WORD (input_bfd,
4947 syms[r_index].e_strx);
4948 else
4949 {
4950 asection *s;
4951
4952 s = aout_reloc_index_to_section (input_bfd, r_index);
4953 name = bfd_section_name (input_bfd, s);
4954 }
4955 if (! ((*finfo->info->callbacks->reloc_overflow)
f42fe159 4956 (finfo->info, name, howto->name,
4991ebb9
ILT
4957 (bfd_vma) 0, input_bfd, input_section, r_addr)))
4958 return false;
4959 }
4c3721d5
ILT
4960 break;
4961 }
4962 }
4963 }
4964
4965 return true;
4966}
4967
4968/* Relocate an a.out section using extended a.out relocs. */
4969
4970static boolean
4971aout_link_input_section_ext (finfo, input_bfd, input_section, relocs,
1afd2380 4972 rel_size, contents)
4c3721d5
ILT
4973 struct aout_final_link_info *finfo;
4974 bfd *input_bfd;
4975 asection *input_section;
4976 struct reloc_ext_external *relocs;
4977 bfd_size_type rel_size;
4978 bfd_byte *contents;
4c3721d5 4979{
e85e8bfe
ILT
4980 boolean (*check_dynamic_reloc) PARAMS ((struct bfd_link_info *,
4981 bfd *, asection *,
4982 struct aout_link_hash_entry *,
ae115e51
ILT
4983 PTR, bfd_byte *, boolean *,
4984 bfd_vma *));
4c3721d5
ILT
4985 bfd *output_bfd;
4986 boolean relocateable;
4987 struct external_nlist *syms;
4988 char *strings;
4989 struct aout_link_hash_entry **sym_hashes;
1afd2380 4990 int *symbol_map;
4c3721d5
ILT
4991 bfd_size_type reloc_count;
4992 register struct reloc_ext_external *rel;
4993 struct reloc_ext_external *rel_end;
4994
4995 output_bfd = finfo->output_bfd;
e85e8bfe 4996 check_dynamic_reloc = aout_backend_info (output_bfd)->check_dynamic_reloc;
4c3721d5
ILT
4997
4998 BFD_ASSERT (obj_reloc_entry_size (input_bfd) == RELOC_EXT_SIZE);
64d5f5d0
ILT
4999 BFD_ASSERT (input_bfd->xvec->header_byteorder
5000 == output_bfd->xvec->header_byteorder);
4c3721d5
ILT
5001
5002 relocateable = finfo->info->relocateable;
5003 syms = obj_aout_external_syms (input_bfd);
5004 strings = obj_aout_external_strings (input_bfd);
5005 sym_hashes = obj_aout_sym_hashes (input_bfd);
1afd2380 5006 symbol_map = finfo->symbol_map;
4c3721d5
ILT
5007
5008 reloc_count = rel_size / RELOC_EXT_SIZE;
5009 rel = relocs;
5010 rel_end = rel + reloc_count;
5011 for (; rel < rel_end; rel++)
5012 {
5013 bfd_vma r_addr;
5014 int r_index;
5015 int r_extern;
ae115e51 5016 unsigned int r_type;
4c3721d5 5017 bfd_vma r_addend;
ae115e51
ILT
5018 struct aout_link_hash_entry *h = NULL;
5019 asection *r_section = NULL;
4c3721d5
ILT
5020 bfd_vma relocation;
5021
5022 r_addr = GET_SWORD (input_bfd, rel->r_address);
5023
64d5f5d0 5024 if (bfd_header_big_endian (input_bfd))
4c3721d5
ILT
5025 {
5026 r_index = ((rel->r_index[0] << 16)
5027 | (rel->r_index[1] << 8)
5028 | rel->r_index[2]);
5029 r_extern = (0 != (rel->r_type[0] & RELOC_EXT_BITS_EXTERN_BIG));
5030 r_type = ((rel->r_type[0] & RELOC_EXT_BITS_TYPE_BIG)
5031 >> RELOC_EXT_BITS_TYPE_SH_BIG);
5032 }
5033 else
5034 {
5035 r_index = ((rel->r_index[2] << 16)
5036 | (rel->r_index[1] << 8)
5037 | rel->r_index[0]);
5038 r_extern = (0 != (rel->r_type[0] & RELOC_EXT_BITS_EXTERN_LITTLE));
5039 r_type = ((rel->r_type[0] & RELOC_EXT_BITS_TYPE_LITTLE)
5040 >> RELOC_EXT_BITS_TYPE_SH_LITTLE);
5041 }
5042
5043 r_addend = GET_SWORD (input_bfd, rel->r_addend);
5044
ae115e51 5045 BFD_ASSERT (r_type < TABLE_SIZE (howto_table_ext));
e68de5d5 5046
4c3721d5
ILT
5047 if (relocateable)
5048 {
5049 /* We are generating a relocateable output file, and must
5050 modify the reloc accordingly. */
5051 if (r_extern)
5052 {
4c3721d5
ILT
5053 /* If we know the symbol this relocation is against,
5054 convert it into a relocation against a section. This
5055 is what the native linker does. */
5056 h = sym_hashes[r_index];
5057 if (h != (struct aout_link_hash_entry *) NULL
6c97aedf
ILT
5058 && (h->root.type == bfd_link_hash_defined
5059 || h->root.type == bfd_link_hash_defweak))
4c3721d5
ILT
5060 {
5061 asection *output_section;
5062
5063 /* Change the r_extern value. */
64d5f5d0 5064 if (bfd_header_big_endian (output_bfd))
4c3721d5
ILT
5065 rel->r_type[0] &=~ RELOC_EXT_BITS_EXTERN_BIG;
5066 else
5067 rel->r_type[0] &=~ RELOC_EXT_BITS_EXTERN_LITTLE;
5068
5069 /* Compute a new r_index. */
5070 output_section = h->root.u.def.section->output_section;
5071 if (output_section == obj_textsec (output_bfd))
5072 r_index = N_TEXT;
5073 else if (output_section == obj_datasec (output_bfd))
5074 r_index = N_DATA;
5075 else if (output_section == obj_bsssec (output_bfd))
5076 r_index = N_BSS;
5077 else
5078 r_index = N_ABS;
5079
5080 /* Add the symbol value and the section VMA to the
5081 addend. */
5082 relocation = (h->root.u.def.value
5083 + output_section->vma
5084 + h->root.u.def.section->output_offset);
e68de5d5
ILT
5085
5086 /* Now RELOCATION is the VMA of the final
5087 destination. If this is a PC relative reloc,
5088 then ADDEND is the negative of the source VMA.
5089 We want to set ADDEND to the difference between
5090 the destination VMA and the source VMA, which
5091 means we must adjust RELOCATION by the change in
5092 the source VMA. This is done below. */
4c3721d5
ILT
5093 }
5094 else
5095 {
5096 /* We must change r_index according to the symbol
5097 map. */
5098 r_index = symbol_map[r_index];
5099
5100 if (r_index == -1)
5101 {
74942465
ILT
5102 if (h != NULL)
5103 {
5104 /* We decided to strip this symbol, but it
5105 turns out that we can't. Note that we
5106 lose the other and desc information here.
5107 I don't think that will ever matter for a
5108 global symbol. */
5109 if (h->indx < 0)
5110 {
5111 h->indx = -2;
5112 h->written = false;
5113 if (! aout_link_write_other_symbol (h,
5114 (PTR) finfo))
5115 return false;
5116 }
5117 r_index = h->indx;
5118 }
5119 else
5120 {
5121 const char *name;
5122
5123 name = strings + GET_WORD (input_bfd,
5124 syms[r_index].e_strx);
5125 if (! ((*finfo->info->callbacks->unattached_reloc)
5126 (finfo->info, name, input_bfd, input_section,
5127 r_addr)))
5128 return false;
5129 r_index = 0;
5130 }
4c3721d5
ILT
5131 }
5132
5133 relocation = 0;
e68de5d5
ILT
5134
5135 /* If this is a PC relative reloc, then the addend
5136 is the negative of the source VMA. We must
5137 adjust it by the change in the source VMA. This
5138 is done below. */
4c3721d5
ILT
5139 }
5140
5141 /* Write out the new r_index value. */
64d5f5d0 5142 if (bfd_header_big_endian (output_bfd))
4c3721d5
ILT
5143 {
5144 rel->r_index[0] = r_index >> 16;
5145 rel->r_index[1] = r_index >> 8;
5146 rel->r_index[2] = r_index;
5147 }
5148 else
5149 {
5150 rel->r_index[2] = r_index >> 16;
5151 rel->r_index[1] = r_index >> 8;
5152 rel->r_index[0] = r_index;
5153 }
5154 }
5155 else
5156 {
4c3721d5
ILT
5157 /* This is a relocation against a section. We must
5158 adjust by the amount that the section moved. */
ae115e51
ILT
5159 r_section = aout_reloc_index_to_section (input_bfd, r_index);
5160 relocation = (r_section->output_section->vma
5161 + r_section->output_offset
5162 - r_section->vma);
4c3721d5 5163
e68de5d5
ILT
5164 /* If this is a PC relative reloc, then the addend is
5165 the difference in VMA between the destination and the
5166 source. We have just adjusted for the change in VMA
5167 of the destination, so we must also adjust by the
5168 change in VMA of the source. This is done below. */
4c3721d5
ILT
5169 }
5170
e68de5d5
ILT
5171 /* As described above, we must always adjust a PC relative
5172 reloc by the change in VMA of the source. */
5173 if (howto_table_ext[r_type].pc_relative)
5174 relocation -= (input_section->output_section->vma
5175 + input_section->output_offset
5176 - input_section->vma);
5177
4c3721d5
ILT
5178 /* Change the addend if necessary. */
5179 if (relocation != 0)
5180 PUT_WORD (output_bfd, r_addend + relocation, rel->r_addend);
5181
5182 /* Change the address of the relocation. */
5183 PUT_WORD (output_bfd,
5184 r_addr + input_section->output_offset,
5185 rel->r_address);
5186 }
5187 else
5188 {
ae115e51 5189 boolean hundef;
4c3721d5
ILT
5190 bfd_reloc_status_type r;
5191
5192 /* We are generating an executable, and must do a full
5193 relocation. */
ae115e51 5194 hundef = false;
4c3721d5
ILT
5195 if (r_extern)
5196 {
4c3721d5 5197 h = sym_hashes[r_index];
e85e8bfe 5198
4c3721d5 5199 if (h != (struct aout_link_hash_entry *) NULL
6c97aedf
ILT
5200 && (h->root.type == bfd_link_hash_defined
5201 || h->root.type == bfd_link_hash_defweak))
4c3721d5
ILT
5202 {
5203 relocation = (h->root.u.def.value
5204 + h->root.u.def.section->output_section->vma
5205 + h->root.u.def.section->output_offset);
5206 }
4298e311 5207 else if (h != (struct aout_link_hash_entry *) NULL
6c97aedf 5208 && h->root.type == bfd_link_hash_undefweak)
4298e311 5209 relocation = 0;
4c3721d5
ILT
5210 else
5211 {
ae115e51 5212 hundef = true;
4c3721d5
ILT
5213 relocation = 0;
5214 }
5215 }
ae115e51
ILT
5216 else if (r_type == RELOC_BASE10
5217 || r_type == RELOC_BASE13
5218 || r_type == RELOC_BASE22)
5219 {
5220 struct external_nlist *sym;
5221 int type;
5222
5223 /* For base relative relocs, r_index is always an index
5224 into the symbol table, even if r_extern is 0. */
5225 sym = syms + r_index;
5226 type = bfd_h_get_8 (input_bfd, sym->e_type);
5227 if ((type & N_TYPE) == N_TEXT
5228 || type == N_WEAKT)
5229 r_section = obj_textsec (input_bfd);
5230 else if ((type & N_TYPE) == N_DATA
5231 || type == N_WEAKD)
5232 r_section = obj_datasec (input_bfd);
5233 else if ((type & N_TYPE) == N_BSS
5234 || type == N_WEAKB)
5235 r_section = obj_bsssec (input_bfd);
5236 else if ((type & N_TYPE) == N_ABS
5237 || type == N_WEAKA)
5238 r_section = bfd_abs_section_ptr;
5239 else
5240 abort ();
5241 relocation = (r_section->output_section->vma
5242 + r_section->output_offset
5243 + (GET_WORD (input_bfd, sym->e_value)
5244 - r_section->vma));
5245 }
4c3721d5
ILT
5246 else
5247 {
ae115e51 5248 r_section = aout_reloc_index_to_section (input_bfd, r_index);
e68de5d5
ILT
5249
5250 /* If this is a PC relative reloc, then R_ADDEND is the
5251 difference between the two vmas, or
5252 old_dest_sec + old_dest_off - (old_src_sec + old_src_off)
5253 where
5254 old_dest_sec == section->vma
5255 and
5256 old_src_sec == input_section->vma
5257 and
5258 old_src_off == r_addr
5259
5260 _bfd_final_link_relocate expects RELOCATION +
5261 R_ADDEND to be the VMA of the destination minus
5262 r_addr (the minus r_addr is because this relocation
5263 is not pcrel_offset, which is a bit confusing and
5264 should, perhaps, be changed), or
5265 new_dest_sec
5266 where
5267 new_dest_sec == output_section->vma + output_offset
5268 We arrange for this to happen by setting RELOCATION to
5269 new_dest_sec + old_src_sec - old_dest_sec
5270
5271 If this is not a PC relative reloc, then R_ADDEND is
5272 simply the VMA of the destination, so we set
5273 RELOCATION to the change in the destination VMA, or
5274 new_dest_sec - old_dest_sec
5275 */
ae115e51
ILT
5276 relocation = (r_section->output_section->vma
5277 + r_section->output_offset
5278 - r_section->vma);
e68de5d5
ILT
5279 if (howto_table_ext[r_type].pc_relative)
5280 relocation += input_section->vma;
4c3721d5
ILT
5281 }
5282
ae115e51
ILT
5283 if (check_dynamic_reloc != NULL)
5284 {
5285 boolean skip;
5286
5287 if (! ((*check_dynamic_reloc)
5288 (finfo->info, input_bfd, input_section, h,
5289 (PTR) rel, contents, &skip, &relocation)))
5290 return false;
5291 if (skip)
5292 continue;
5293 }
5294
5295 /* Now warn if a global symbol is undefined. We could not
5296 do this earlier, because check_dynamic_reloc might want
5297 to skip this reloc. */
5298 if (hundef
5299 && ! finfo->info->shared
5300 && r_type != RELOC_BASE10
5301 && r_type != RELOC_BASE13
5302 && r_type != RELOC_BASE22)
5303 {
5304 const char *name;
5305
7ec49f91
ILT
5306 if (h != NULL)
5307 name = h->root.root.string;
5308 else
5309 name = strings + GET_WORD (input_bfd, syms[r_index].e_strx);
ae115e51
ILT
5310 if (! ((*finfo->info->callbacks->undefined_symbol)
5311 (finfo->info, name, input_bfd, input_section, r_addr)))
5312 return false;
5313 }
5314
34e9ffbc 5315 r = MY_final_link_relocate (howto_table_ext + r_type,
7ec49f91
ILT
5316 input_bfd, input_section,
5317 contents, r_addr, relocation,
5318 r_addend);
4c3721d5
ILT
5319 if (r != bfd_reloc_ok)
5320 {
5321 switch (r)
5322 {
5323 default:
5324 case bfd_reloc_outofrange:
5325 abort ();
5326 case bfd_reloc_overflow:
4991ebb9
ILT
5327 {
5328 const char *name;
5329
aad53b0d
ILT
5330 if (h != NULL)
5331 name = h->root.root.string;
5332 else if (r_extern
5333 || r_type == RELOC_BASE10
5334 || r_type == RELOC_BASE13
5335 || r_type == RELOC_BASE22)
4991ebb9
ILT
5336 name = strings + GET_WORD (input_bfd,
5337 syms[r_index].e_strx);
5338 else
5339 {
5340 asection *s;
5341
5342 s = aout_reloc_index_to_section (input_bfd, r_index);
5343 name = bfd_section_name (input_bfd, s);
5344 }
5345 if (! ((*finfo->info->callbacks->reloc_overflow)
5346 (finfo->info, name, howto_table_ext[r_type].name,
5347 r_addend, input_bfd, input_section, r_addr)))
5348 return false;
5349 }
4c3721d5
ILT
5350 break;
5351 }
5352 }
5353 }
5354 }
5355
5356 return true;
5357}
ec099b4b
ILT
5358
5359/* Handle a link order which is supposed to generate a reloc. */
5360
5361static boolean
5362aout_link_reloc_link_order (finfo, o, p)
5363 struct aout_final_link_info *finfo;
5364 asection *o;
5365 struct bfd_link_order *p;
5366{
5367 struct bfd_link_order_reloc *pr;
5368 int r_index;
5369 int r_extern;
82b1edf7 5370 reloc_howto_type *howto;
ec099b4b
ILT
5371 file_ptr *reloff_ptr;
5372 struct reloc_std_external srel;
5373 struct reloc_ext_external erel;
5374 PTR rel_ptr;
5375
5376 pr = p->u.reloc.p;
5377
5378 if (p->type == bfd_section_reloc_link_order)
5379 {
5380 r_extern = 0;
4587b578 5381 if (bfd_is_abs_section (pr->u.section))
ec099b4b
ILT
5382 r_index = N_ABS | N_EXT;
5383 else
5384 {
5385 BFD_ASSERT (pr->u.section->owner == finfo->output_bfd);
5386 r_index = pr->u.section->target_index;
5387 }
5388 }
5389 else
5390 {
5391 struct aout_link_hash_entry *h;
5392
5393 BFD_ASSERT (p->type == bfd_symbol_reloc_link_order);
5394 r_extern = 1;
7ec49f91
ILT
5395 h = ((struct aout_link_hash_entry *)
5396 bfd_wrapped_link_hash_lookup (finfo->output_bfd, finfo->info,
5397 pr->u.name, false, false, true));
ec099b4b 5398 if (h != (struct aout_link_hash_entry *) NULL
74942465 5399 && h->indx >= 0)
ec099b4b 5400 r_index = h->indx;
74942465
ILT
5401 else if (h != NULL)
5402 {
5403 /* We decided to strip this symbol, but it turns out that we
5404 can't. Note that we lose the other and desc information
5405 here. I don't think that will ever matter for a global
5406 symbol. */
5407 h->indx = -2;
5408 h->written = false;
5409 if (! aout_link_write_other_symbol (h, (PTR) finfo))
5410 return false;
5411 r_index = h->indx;
5412 }
ec099b4b
ILT
5413 else
5414 {
5415 if (! ((*finfo->info->callbacks->unattached_reloc)
5416 (finfo->info, pr->u.name, (bfd *) NULL,
5417 (asection *) NULL, (bfd_vma) 0)))
5418 return false;
5419 r_index = 0;
5420 }
5421 }
5422
5423 howto = bfd_reloc_type_lookup (finfo->output_bfd, pr->reloc);
82b1edf7 5424 if (howto == 0)
ec099b4b
ILT
5425 {
5426 bfd_set_error (bfd_error_bad_value);
5427 return false;
5428 }
5429
5430 if (o == obj_textsec (finfo->output_bfd))
5431 reloff_ptr = &finfo->treloff;
5432 else if (o == obj_datasec (finfo->output_bfd))
5433 reloff_ptr = &finfo->dreloff;
5434 else
5435 abort ();
5436
5437 if (obj_reloc_entry_size (finfo->output_bfd) == RELOC_STD_SIZE)
5438 {
f42fe159 5439#ifdef MY_put_reloc
ae115e51
ILT
5440 MY_put_reloc(finfo->output_bfd, r_extern, r_index, p->offset, howto,
5441 &srel);
f42fe159 5442#else
ae115e51
ILT
5443 {
5444 int r_pcrel;
5445 int r_baserel;
5446 int r_jmptable;
5447 int r_relative;
5448 int r_length;
5449
5450 r_pcrel = howto->pc_relative;
5451 r_baserel = (howto->type & 8) != 0;
5452 r_jmptable = (howto->type & 16) != 0;
5453 r_relative = (howto->type & 32) != 0;
5454 r_length = howto->size;
5455
5456 PUT_WORD (finfo->output_bfd, p->offset, srel.r_address);
64d5f5d0 5457 if (bfd_header_big_endian (finfo->output_bfd))
ae115e51
ILT
5458 {
5459 srel.r_index[0] = r_index >> 16;
5460 srel.r_index[1] = r_index >> 8;
5461 srel.r_index[2] = r_index;
5462 srel.r_type[0] =
5463 ((r_extern ? RELOC_STD_BITS_EXTERN_BIG : 0)
5464 | (r_pcrel ? RELOC_STD_BITS_PCREL_BIG : 0)
5465 | (r_baserel ? RELOC_STD_BITS_BASEREL_BIG : 0)
5466 | (r_jmptable ? RELOC_STD_BITS_JMPTABLE_BIG : 0)
5467 | (r_relative ? RELOC_STD_BITS_RELATIVE_BIG : 0)
5468 | (r_length << RELOC_STD_BITS_LENGTH_SH_BIG));
5469 }
5470 else
5471 {
5472 srel.r_index[2] = r_index >> 16;
5473 srel.r_index[1] = r_index >> 8;
5474 srel.r_index[0] = r_index;
5475 srel.r_type[0] =
5476 ((r_extern ? RELOC_STD_BITS_EXTERN_LITTLE : 0)
5477 | (r_pcrel ? RELOC_STD_BITS_PCREL_LITTLE : 0)
5478 | (r_baserel ? RELOC_STD_BITS_BASEREL_LITTLE : 0)
5479 | (r_jmptable ? RELOC_STD_BITS_JMPTABLE_LITTLE : 0)
5480 | (r_relative ? RELOC_STD_BITS_RELATIVE_LITTLE : 0)
5481 | (r_length << RELOC_STD_BITS_LENGTH_SH_LITTLE));
5482 }
5483 }
f42fe159 5484#endif
ec099b4b
ILT
5485 rel_ptr = (PTR) &srel;
5486
5487 /* We have to write the addend into the object file, since
5488 standard a.out relocs are in place. It would be more
5489 reliable if we had the current contents of the file here,
5490 rather than assuming zeroes, but we can't read the file since
5491 it was opened using bfd_openw. */
5492 if (pr->addend != 0)
5493 {
5494 bfd_size_type size;
5495 bfd_reloc_status_type r;
5496 bfd_byte *buf;
5497 boolean ok;
5498
5499 size = bfd_get_reloc_size (howto);
e85e8bfe 5500 buf = (bfd_byte *) bfd_zmalloc (size);
ec099b4b 5501 if (buf == (bfd_byte *) NULL)
a9713b91 5502 return false;
34e9ffbc 5503 r = MY_relocate_contents (howto, finfo->output_bfd,
ec099b4b
ILT
5504 pr->addend, buf);
5505 switch (r)
5506 {
5507 case bfd_reloc_ok:
5508 break;
5509 default:
5510 case bfd_reloc_outofrange:
5511 abort ();
5512 case bfd_reloc_overflow:
5513 if (! ((*finfo->info->callbacks->reloc_overflow)
5514 (finfo->info,
5515 (p->type == bfd_section_reloc_link_order
5516 ? bfd_section_name (finfo->output_bfd,
5517 pr->u.section)
5518 : pr->u.name),
5519 howto->name, pr->addend, (bfd *) NULL,
5520 (asection *) NULL, (bfd_vma) 0)))
5521 {
5522 free (buf);
5523 return false;
5524 }
5525 break;
5526 }
5527 ok = bfd_set_section_contents (finfo->output_bfd, o,
5528 (PTR) buf,
5529 (file_ptr) p->offset,
5530 size);
5531 free (buf);
5532 if (! ok)
5533 return false;
5534 }
5535 }
5536 else
5537 {
5538 PUT_WORD (finfo->output_bfd, p->offset, erel.r_address);
5539
64d5f5d0 5540 if (bfd_header_big_endian (finfo->output_bfd))
ec099b4b
ILT
5541 {
5542 erel.r_index[0] = r_index >> 16;
5543 erel.r_index[1] = r_index >> 8;
5544 erel.r_index[2] = r_index;
5545 erel.r_type[0] =
5546 ((r_extern ? RELOC_EXT_BITS_EXTERN_BIG : 0)
5547 | (howto->type << RELOC_EXT_BITS_TYPE_SH_BIG));
5548 }
5549 else
5550 {
5551 erel.r_index[2] = r_index >> 16;
5552 erel.r_index[1] = r_index >> 8;
5553 erel.r_index[0] = r_index;
5554 erel.r_type[0] =
5555 (r_extern ? RELOC_EXT_BITS_EXTERN_LITTLE : 0)
5556 | (howto->type << RELOC_EXT_BITS_TYPE_SH_LITTLE);
5557 }
5558
5559 PUT_WORD (finfo->output_bfd, pr->addend, erel.r_addend);
5560
5561 rel_ptr = (PTR) &erel;
5562 }
5563
5564 if (bfd_seek (finfo->output_bfd, *reloff_ptr, SEEK_SET) != 0
5565 || (bfd_write (rel_ptr, (bfd_size_type) 1,
5566 obj_reloc_entry_size (finfo->output_bfd),
5567 finfo->output_bfd)
5568 != obj_reloc_entry_size (finfo->output_bfd)))
5569 return false;
5570
5571 *reloff_ptr += obj_reloc_entry_size (finfo->output_bfd);
5572
5573 /* Assert that the relocs have not run into the symbols, and that n
5574 the text relocs have not run into the data relocs. */
5575 BFD_ASSERT (*reloff_ptr <= obj_sym_filepos (finfo->output_bfd)
5576 && (reloff_ptr != &finfo->treloff
5577 || (*reloff_ptr
5578 <= obj_datasec (finfo->output_bfd)->rel_filepos)));
5579
5580 return true;
5581}