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