]>
Commit | Line | Data |
---|---|---|
78aa64b1 | 1 | /* BFD backend for sunos binaries */ |
4a81b561 DHW |
2 | |
3 | /* Copyright (C) 1990, 1991 Free Software Foundation, Inc. | |
4 | ||
5 | This file is part of BFD, the Binary File Diddler. | |
6 | ||
7 | BFD is free software; you can redistribute it and/or modify | |
8 | it under the terms of the GNU General Public License as published by | |
9 | the Free Software Foundation; either version 1, or (at your option) | |
10 | any later version. | |
11 | ||
12 | BFD is distributed in the hope that it will be useful, | |
13 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 | GNU General Public License for more details. | |
16 | ||
17 | You should have received a copy of the GNU General Public License | |
18 | along with BFD; see the file COPYING. If not, write to | |
19 | the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |
20 | ||
fc723380 | 21 | /* $Id$ */ |
4a81b561 | 22 | |
c93595dd | 23 | #include <ansidecl.h> |
4a81b561 DHW |
24 | #include "sysdep.h" |
25 | #include "bfd.h" | |
26 | #include "libbfd.h" | |
4a81b561 | 27 | |
fc723380 | 28 | #include "a.out.sun4.h" |
4a81b561 DHW |
29 | #include "a.out.gnu.h" |
30 | #include "stab.gnu.h" | |
31 | #include "ar.h" | |
32 | #include "liba.out.h" /* BFD a.out internal data structures */ | |
33 | ||
fc723380 JG |
34 | void (*bfd_error_trap)(); |
35 | ||
78aa64b1 JG |
36 | static bfd_target *sunos4_callback (); |
37 | ||
fc723380 JG |
38 | /*SUPPRESS558*/ |
39 | /*SUPPRESS529*/ | |
4a81b561 | 40 | |
4a81b561 DHW |
41 | bfd_target * |
42 | sunos4_object_p (abfd) | |
43 | bfd *abfd; | |
44 | { | |
c93595dd SC |
45 | unsigned char magicbuf[4]; /* Raw bytes of magic number from file */ |
46 | unsigned long magic; /* Swapped magic number */ | |
4a81b561 DHW |
47 | |
48 | bfd_error = system_call_error; | |
49 | ||
9846338e | 50 | if (bfd_read ((PTR)magicbuf, 1, sizeof (magicbuf), abfd) != |
c93595dd | 51 | sizeof (magicbuf)) |
4a81b561 | 52 | return 0; |
c93595dd | 53 | magic = bfd_h_getlong (abfd, magicbuf); |
4a81b561 | 54 | |
fc723380 | 55 | if (N_BADMAG (*((struct exec *) &magic))) return 0; |
4a81b561 | 56 | |
78aa64b1 JG |
57 | return some_aout_object_p (abfd, sunos4_callback); |
58 | } | |
4a81b561 | 59 | |
10be52bf SC |
60 | /* Determine the size of a relocation entry, based on the architecture */ |
61 | static void | |
62 | DEFUN(choose_reloc_size,(abfd), | |
63 | bfd *abfd) | |
64 | { | |
65 | switch (abfd->obj_arch) { | |
66 | case bfd_arch_sparc: | |
67 | case bfd_arch_a29k: | |
68 | obj_reloc_entry_size (abfd) = RELOC_EXT_SIZE; | |
69 | break; | |
70 | default: | |
71 | obj_reloc_entry_size (abfd) = RELOC_STD_SIZE; | |
72 | break; | |
73 | } | |
74 | } | |
75 | ||
78aa64b1 JG |
76 | /* Set parameters about this a.out file that are machine-dependent. |
77 | This routine is called from some_aout_object_p just before it returns. */ | |
4a81b561 | 78 | |
78aa64b1 JG |
79 | static bfd_target * |
80 | sunos4_callback (abfd) | |
81 | bfd *abfd; | |
82 | { | |
83 | struct exec *execp = exec_hdr (abfd); | |
4a81b561 | 84 | |
78aa64b1 JG |
85 | /* The virtual memory addresses of the sections */ |
86 | obj_datasec (abfd)->vma = N_DATADDR(*execp); | |
87 | obj_bsssec (abfd)->vma = N_BSSADDR(*execp); | |
88 | obj_textsec (abfd)->vma = N_TXTADDR(*execp); | |
4a81b561 | 89 | |
78aa64b1 | 90 | /* The file offsets of the sections */ |
10be52bf | 91 | obj_textsec (abfd)->filepos = EXEC_BYTES_SIZE; /*N_TXTOFF(*execp);*/ |
78aa64b1 | 92 | obj_datasec (abfd)->filepos = N_DATOFF(*execp); |
4a81b561 | 93 | |
78aa64b1 JG |
94 | /* The file offsets of the relocation info */ |
95 | obj_textsec (abfd)->rel_filepos = N_TRELOFF(*execp); | |
96 | obj_datasec (abfd)->rel_filepos = N_DRELOFF(*execp); | |
4a81b561 | 97 | |
78aa64b1 JG |
98 | /* The file offsets of the string table and symbol table. */ |
99 | obj_str_filepos (abfd) = N_STROFF (*execp); | |
100 | obj_sym_filepos (abfd) = N_SYMOFF (*execp); | |
4a81b561 | 101 | |
10be52bf SC |
102 | |
103 | ||
4a81b561 | 104 | /* Determine the architecture and machine type of the object file. */ |
78aa64b1 | 105 | switch (N_MACHTYPE (*exec_hdr (abfd))) { |
4a81b561 DHW |
106 | |
107 | case M_UNKNOWN: | |
78aa64b1 JG |
108 | abfd->obj_arch = bfd_arch_unknown; |
109 | abfd->obj_machine = 0; | |
4a81b561 DHW |
110 | break; |
111 | ||
112 | case M_68010: | |
113 | abfd->obj_arch = bfd_arch_m68k; | |
114 | abfd->obj_machine = 68010; | |
115 | break; | |
116 | ||
117 | case M_68020: | |
118 | abfd->obj_arch = bfd_arch_m68k; | |
119 | abfd->obj_machine = 68020; | |
120 | break; | |
121 | ||
122 | case M_SPARC: | |
123 | abfd->obj_arch = bfd_arch_sparc; | |
78aa64b1 | 124 | abfd->obj_machine = 0; |
4a81b561 DHW |
125 | break; |
126 | ||
127 | case M_386: | |
128 | abfd->obj_arch = bfd_arch_i386; | |
78aa64b1 | 129 | abfd->obj_machine = 0; |
4a81b561 DHW |
130 | break; |
131 | ||
132 | case M_29K: | |
133 | abfd->obj_arch = bfd_arch_a29k; | |
78aa64b1 | 134 | abfd->obj_machine = 0; |
4a81b561 DHW |
135 | break; |
136 | ||
137 | default: | |
138 | abfd->obj_arch = bfd_arch_obscure; | |
78aa64b1 | 139 | abfd->obj_machine = 0; |
4a81b561 DHW |
140 | break; |
141 | } | |
142 | ||
10be52bf | 143 | choose_reloc_size(abfd); |
4a81b561 DHW |
144 | return abfd->xvec; |
145 | } | |
146 | ||
147 | ||
148 | boolean | |
149 | sunos4_mkobject (abfd) | |
150 | bfd *abfd; | |
151 | { | |
152 | char *rawptr; | |
153 | ||
154 | bfd_error = system_call_error; | |
155 | ||
156 | /* Use an intermediate variable for clarity */ | |
78aa64b1 | 157 | rawptr = bfd_zalloc (abfd, sizeof (struct aoutdata) + sizeof (struct exec)); |
4a81b561 DHW |
158 | |
159 | if (rawptr == NULL) { | |
160 | bfd_error = no_memory; | |
161 | return false; | |
162 | } | |
163 | ||
78aa64b1 JG |
164 | set_tdata (abfd, (struct aoutdata *) rawptr); |
165 | exec_hdr (abfd) = (struct exec *) (rawptr + sizeof (struct aoutdata)); | |
4a81b561 DHW |
166 | |
167 | /* For simplicity's sake we just make all the sections right here. */ | |
168 | ||
169 | obj_textsec (abfd) = (asection *)NULL; | |
170 | obj_datasec (abfd) = (asection *)NULL; | |
171 | obj_bsssec (abfd) = (asection *)NULL; | |
172 | bfd_make_section (abfd, ".text"); | |
173 | bfd_make_section (abfd, ".data"); | |
174 | bfd_make_section (abfd, ".bss"); | |
175 | ||
176 | return true; | |
177 | } | |
178 | ||
179 | /* Keep track of machine architecture and machine type for a.out's. | |
180 | Return the machine_type for a particular arch&machine, or M_UNKNOWN | |
181 | if that exact arch&machine can't be represented in a.out format. | |
182 | ||
183 | If the architecture is understood, machine type 0 (default) should | |
184 | always be understood. */ | |
185 | ||
186 | static enum machine_type | |
187 | aout_machine_type (arch, machine) | |
188 | enum bfd_architecture arch; | |
189 | unsigned long machine; | |
190 | { | |
191 | enum machine_type arch_flags; | |
192 | ||
193 | arch_flags = M_UNKNOWN; | |
194 | ||
195 | switch (arch) { | |
196 | case bfd_arch_sparc: | |
9872a49c SC |
197 | if (machine == 0) arch_flags = M_SPARC; |
198 | break; | |
4a81b561 DHW |
199 | |
200 | case bfd_arch_m68k: | |
9872a49c SC |
201 | switch (machine) { |
202 | case 0: arch_flags = M_68010; break; | |
203 | case 68000: arch_flags = M_UNKNOWN; break; | |
204 | case 68010: arch_flags = M_68010; break; | |
205 | case 68020: arch_flags = M_68020; break; | |
206 | default: arch_flags = M_UNKNOWN; break; | |
207 | } | |
208 | break; | |
4a81b561 DHW |
209 | |
210 | case bfd_arch_i386: | |
9872a49c SC |
211 | if (machine == 0) arch_flags = M_386; |
212 | break; | |
4a81b561 DHW |
213 | |
214 | case bfd_arch_a29k: | |
9872a49c SC |
215 | if (machine == 0) arch_flags = M_29K; |
216 | break; | |
4a81b561 DHW |
217 | |
218 | default: | |
9872a49c SC |
219 | arch_flags = M_UNKNOWN; |
220 | break; | |
4a81b561 DHW |
221 | } |
222 | return arch_flags; | |
223 | } | |
224 | ||
78aa64b1 JG |
225 | /* Write an object file in SunOS format. |
226 | Section contents have already been written. We write the | |
227 | file header, symbols, and relocation. */ | |
4a81b561 DHW |
228 | |
229 | boolean | |
230 | sunos4_write_object_contents (abfd) | |
231 | bfd *abfd; | |
232 | { | |
9846338e | 233 | size_t data_pad = 0; |
c93595dd | 234 | unsigned char exec_bytes[EXEC_BYTES_SIZE]; |
4a81b561 DHW |
235 | struct exec *execp = exec_hdr (abfd); |
236 | ||
10be52bf SC |
237 | |
238 | ||
c93595dd | 239 | execp->a_text = obj_textsec (abfd)->size; |
4a81b561 DHW |
240 | |
241 | /* Magic number, maestro, please! */ | |
242 | switch (bfd_get_architecture(abfd)) { | |
243 | case bfd_arch_m68k: | |
244 | switch (bfd_get_machine(abfd)) { | |
245 | case 68010: | |
246 | N_SET_MACHTYPE(*execp, M_68010); | |
247 | break; | |
248 | default: | |
249 | case 68020: | |
250 | N_SET_MACHTYPE(*execp, M_68020); | |
251 | break; | |
252 | } | |
253 | break; | |
254 | case bfd_arch_sparc: | |
255 | N_SET_MACHTYPE(*execp, M_SPARC); | |
256 | break; | |
257 | case bfd_arch_i386: | |
258 | N_SET_MACHTYPE(*execp, M_386); | |
259 | break; | |
260 | case bfd_arch_a29k: | |
261 | N_SET_MACHTYPE(*execp, M_29K); | |
262 | break; | |
263 | default: | |
264 | N_SET_MACHTYPE(*execp, M_UNKNOWN); | |
265 | } | |
c93595dd | 266 | |
10be52bf SC |
267 | choose_reloc_size(abfd); |
268 | ||
4a81b561 DHW |
269 | N_SET_MAGIC (*execp, OMAGIC); |
270 | if (abfd->flags & D_PAGED) { | |
fc723380 | 271 | /* This is not strictly true, but will probably do for the default |
10be52bf SC |
272 | case. FIXME. |
273 | */ | |
1a602d6e SC |
274 | |
275 | execp->a_text = obj_textsec (abfd)->size + EXEC_BYTES_SIZE; | |
4a81b561 DHW |
276 | N_SET_MAGIC (*execp, ZMAGIC); |
277 | } else if (abfd->flags & WP_TEXT) { | |
278 | N_SET_MAGIC (*execp, NMAGIC); | |
279 | } | |
280 | N_SET_FLAGS (*execp, 0x1); /* copied from ld.c; who the hell knows? */ | |
281 | ||
282 | if (abfd->flags & D_PAGED) | |
9846338e SC |
283 | { |
284 | data_pad = ((obj_datasec(abfd)->size + PAGE_SIZE -1) | |
285 | & (- PAGE_SIZE)) - obj_datasec(abfd)->size; | |
4a81b561 | 286 | |
9846338e SC |
287 | if (data_pad > obj_bsssec(abfd)->size) |
288 | execp->a_bss = 0; | |
289 | else | |
290 | execp->a_bss = obj_bsssec(abfd)->size - data_pad; | |
291 | execp->a_data = obj_datasec(abfd)->size + data_pad; | |
4a81b561 | 292 | |
9846338e | 293 | } |
4a81b561 DHW |
294 | else { |
295 | execp->a_data = obj_datasec (abfd)->size; | |
296 | execp->a_bss = obj_bsssec (abfd)->size; | |
297 | } | |
298 | ||
299 | execp->a_syms = bfd_get_symcount (abfd) * sizeof (struct nlist); | |
300 | execp->a_entry = bfd_get_start_address (abfd); | |
c93595dd | 301 | |
10be52bf SC |
302 | |
303 | ||
304 | ||
4a81b561 | 305 | execp->a_trsize = ((obj_textsec (abfd)->reloc_count) * |
78aa64b1 | 306 | obj_reloc_entry_size (abfd)); |
c93595dd | 307 | |
4a81b561 | 308 | execp->a_drsize = ((obj_datasec (abfd)->reloc_count) * |
78aa64b1 | 309 | obj_reloc_entry_size (abfd)); |
4a81b561 | 310 | |
c93595dd | 311 | bfd_aout_swap_exec_header_out (abfd, execp, exec_bytes); |
4a81b561 | 312 | |
c93595dd | 313 | bfd_seek (abfd, 0L, false); |
9846338e | 314 | bfd_write ((PTR) exec_bytes, 1, EXEC_BYTES_SIZE, abfd); |
4a81b561 DHW |
315 | |
316 | /* Now write out reloc info, followed by syms and strings */ | |
317 | ||
318 | if (bfd_get_symcount (abfd) != 0) | |
319 | { | |
320 | bfd_seek (abfd, | |
c93595dd | 321 | (long)(N_SYMOFF(*execp)), false); |
4a81b561 | 322 | |
78aa64b1 | 323 | aout_write_syms (abfd); |
4a81b561 | 324 | |
d6a554ae | 325 | bfd_seek (abfd, (long)(N_TRELOFF(*execp)), false); |
4a81b561 | 326 | |
78aa64b1 | 327 | if (!aout_squirt_out_relocs (abfd, obj_textsec (abfd))) return false; |
d6a554ae | 328 | bfd_seek (abfd, (long)(N_DRELOFF(*execp)), false); |
4a81b561 | 329 | |
78aa64b1 | 330 | if (!aout_squirt_out_relocs (abfd, obj_datasec (abfd))) return false; |
4a81b561 DHW |
331 | } |
332 | return true; | |
333 | } | |
fc723380 JG |
334 | \f |
335 | /* core files */ | |
4a81b561 DHW |
336 | |
337 | #define CORE_MAGIC 0x080456 | |
338 | #define CORE_NAMELEN 16 | |
339 | ||
340 | /* The core structure is taken from the Sun documentation. | |
341 | Unfortunately, they don't document the FPA structure, or at least I | |
342 | can't find it easily. Fortunately the core header contains its own | |
343 | length. So this shouldn't cause problems, except for c_ucode, which | |
344 | so far we don't use but is easy to find with a little arithmetic. */ | |
345 | ||
346 | /* But the reg structure can be gotten from the SPARC processor handbook. | |
347 | This really should be in a GNU include file though so that gdb can use | |
348 | the same info. */ | |
349 | struct regs { | |
350 | int r_psr; | |
351 | int r_pc; | |
352 | int r_npc; | |
353 | int r_y; | |
354 | int r_g1; | |
355 | int r_g2; | |
356 | int r_g3; | |
357 | int r_g4; | |
358 | int r_g5; | |
359 | int r_g6; | |
360 | int r_g7; | |
361 | int r_o0; | |
362 | int r_o1; | |
363 | int r_o2; | |
364 | int r_o3; | |
365 | int r_o4; | |
366 | int r_o5; | |
367 | int r_o6; | |
368 | int r_o7; | |
369 | }; | |
370 | ||
371 | /* Taken from Sun documentation: */ | |
372 | ||
c93595dd SC |
373 | /* FIXME: It's worse than we expect. This struct contains TWO substructs |
374 | neither of whose size we know, WITH STUFF IN BETWEEN THEM! We can't | |
375 | even portably access the stuff in between! */ | |
376 | ||
4a81b561 DHW |
377 | struct core { |
378 | int c_magic; /* Corefile magic number */ | |
379 | int c_len; /* Sizeof (struct core) */ | |
78aa64b1 | 380 | struct regs c_regs; /* General purpose registers -- MACHDEP SIZE */ |
4a81b561 DHW |
381 | struct exec c_aouthdr; /* A.out header */ |
382 | int c_signo; /* Killing signal, if any */ | |
383 | int c_tsize; /* Text size (bytes) */ | |
384 | int c_dsize; /* Data size (bytes) */ | |
385 | int c_ssize; /* Stack size (bytes) */ | |
386 | char c_cmdname[CORE_NAMELEN + 1]; /* Command name */ | |
387 | double fp_stuff[1]; /* external FPU state (size unknown by us) */ | |
c93595dd SC |
388 | /* The type "double" is critical here, for alignment. |
389 | SunOS declares a struct here, but the struct's alignment | |
390 | is double since it contains doubles. */ | |
4a81b561 | 391 | int c_ucode; /* Exception no. from u_code */ |
c93595dd SC |
392 | /* (this member is not accessible by name since we don't |
393 | portably know the size of fp_stuff.) */ | |
4a81b561 DHW |
394 | }; |
395 | ||
396 | /* Supposedly the user stack grows downward from the bottom of kernel memory. | |
397 | Presuming that this remains true, this definition will work. */ | |
398 | #define USRSTACK (-(128*1024*1024)) | |
399 | ||
400 | PROTO (static void, swapcore, (bfd *abfd, struct core *core)); | |
401 | ||
402 | /* need this cast b/c ptr is really void * */ | |
403 | #define core_hdr(bfd) (((struct suncordata *) (bfd->tdata))->hdr) | |
404 | #define core_datasec(bfd) (((struct suncordata *) ((bfd)->tdata))->data_section) | |
405 | #define core_stacksec(bfd) (((struct suncordata*)((bfd)->tdata))->stack_section) | |
406 | #define core_regsec(bfd) (((struct suncordata *) ((bfd)->tdata))->reg_section) | |
c93595dd | 407 | #define core_reg2sec(bfd) (((struct suncordata *) ((bfd)->tdata))->reg2_section) |
4a81b561 DHW |
408 | |
409 | /* These are stored in the bfd's tdata */ | |
410 | struct suncordata { | |
411 | struct core *hdr; /* core file header */ | |
412 | asection *data_section; | |
413 | asection *stack_section; | |
414 | asection *reg_section; | |
415 | asection *reg2_section; | |
416 | }; | |
417 | ||
418 | bfd_target * | |
419 | sunos4_core_file_p (abfd) | |
420 | bfd *abfd; | |
421 | { | |
c93595dd | 422 | unsigned char longbuf[4]; /* Raw bytes of various header fields */ |
4a81b561 DHW |
423 | int core_size; |
424 | int core_mag; | |
425 | struct core *core; | |
426 | char *rawptr; | |
427 | ||
428 | bfd_error = system_call_error; | |
429 | ||
9846338e | 430 | if (bfd_read ((PTR)longbuf, 1, sizeof (longbuf), abfd) != |
c93595dd | 431 | sizeof (longbuf)) |
4a81b561 | 432 | return 0; |
c93595dd | 433 | core_mag = bfd_h_getlong (abfd, longbuf); |
4a81b561 DHW |
434 | |
435 | if (core_mag != CORE_MAGIC) return 0; | |
436 | ||
437 | /* SunOS core headers can vary in length; second word is size; */ | |
9846338e | 438 | if (bfd_read ((PTR)longbuf, 1, sizeof (longbuf), abfd) != |
c93595dd SC |
439 | sizeof (longbuf)) |
440 | return 0; | |
441 | core_size = bfd_h_getlong (abfd, longbuf); | |
442 | /* Sanity check */ | |
443 | if (core_size > 20000) | |
4a81b561 | 444 | return 0; |
4a81b561 | 445 | |
c93595dd | 446 | if (bfd_seek (abfd, 0L, false) < 0) return 0; |
4a81b561 | 447 | |
9872a49c | 448 | rawptr = bfd_zalloc (abfd, core_size + sizeof (struct suncordata)); |
4a81b561 DHW |
449 | if (rawptr == NULL) { |
450 | bfd_error = no_memory; | |
451 | return 0; | |
452 | } | |
453 | ||
454 | core = (struct core *) (rawptr + sizeof (struct suncordata)); | |
455 | ||
9846338e | 456 | if ((bfd_read ((PTR) core, 1, core_size, abfd)) != core_size) { |
4a81b561 | 457 | bfd_error = system_call_error; |
fc723380 | 458 | bfd_release (abfd, rawptr); |
4a81b561 DHW |
459 | return 0; |
460 | } | |
461 | ||
462 | swapcore (abfd, core); | |
c93595dd | 463 | set_tdata (abfd, ((struct suncordata *) rawptr)); |
4a81b561 DHW |
464 | core_hdr (abfd) = core; |
465 | ||
466 | /* create the sections. This is raunchy, but bfd_close wants to reclaim | |
467 | them */ | |
9872a49c | 468 | core_stacksec (abfd) = (asection *) bfd_zalloc (abfd, sizeof (asection)); |
4a81b561 | 469 | if (core_stacksec (abfd) == NULL) { |
c93595dd | 470 | loser: |
4a81b561 | 471 | bfd_error = no_memory; |
fc723380 | 472 | bfd_release (abfd, rawptr); |
4a81b561 DHW |
473 | return 0; |
474 | } | |
9872a49c | 475 | core_datasec (abfd) = (asection *) bfd_zalloc (abfd, sizeof (asection)); |
4a81b561 | 476 | if (core_datasec (abfd) == NULL) { |
c93595dd | 477 | loser1: |
fc723380 | 478 | bfd_release (abfd, core_stacksec (abfd)); |
4a81b561 DHW |
479 | goto loser; |
480 | } | |
9872a49c | 481 | core_regsec (abfd) = (asection *) bfd_zalloc (abfd, sizeof (asection)); |
4a81b561 | 482 | if (core_regsec (abfd) == NULL) { |
c93595dd | 483 | loser2: |
fc723380 | 484 | bfd_release (abfd, core_datasec (abfd)); |
4a81b561 DHW |
485 | goto loser1; |
486 | } | |
9872a49c | 487 | core_reg2sec (abfd) = (asection *) bfd_zalloc (abfd, sizeof (asection)); |
c93595dd | 488 | if (core_reg2sec (abfd) == NULL) { |
fc723380 | 489 | bfd_release (abfd, core_regsec (abfd)); |
4a81b561 DHW |
490 | goto loser2; |
491 | } | |
492 | ||
493 | core_stacksec (abfd)->name = ".stack"; | |
494 | core_datasec (abfd)->name = ".data"; | |
495 | core_regsec (abfd)->name = ".reg"; | |
c93595dd | 496 | core_reg2sec (abfd)->name = ".reg2"; |
4a81b561 DHW |
497 | |
498 | core_stacksec (abfd)->flags = SEC_ALLOC + SEC_LOAD; | |
499 | core_datasec (abfd)->flags = SEC_ALLOC + SEC_LOAD; | |
500 | core_regsec (abfd)->flags = SEC_ALLOC; | |
c93595dd | 501 | core_reg2sec (abfd)->flags = SEC_ALLOC; |
4a81b561 DHW |
502 | |
503 | core_stacksec (abfd)->size = core->c_ssize; | |
504 | core_datasec (abfd)->size = core->c_dsize; | |
505 | core_regsec (abfd)->size = (sizeof core->c_regs); | |
c93595dd SC |
506 | /* Float regs take up end of struct, except c_ucode. */ |
507 | core_reg2sec (abfd)->size = core_size - (sizeof core->c_ucode) - | |
508 | (file_ptr)(((struct core *)0)->fp_stuff); | |
4a81b561 DHW |
509 | |
510 | core_stacksec (abfd)->vma = (USRSTACK - core->c_ssize); | |
511 | core_datasec (abfd)->vma = N_DATADDR(core->c_aouthdr); | |
512 | core_regsec (abfd)->vma = -1; | |
c93595dd | 513 | core_reg2sec (abfd)->vma = -1; |
4a81b561 DHW |
514 | |
515 | core_stacksec (abfd)->filepos = core->c_len + core->c_dsize; | |
516 | core_datasec (abfd)->filepos = core->c_len; | |
517 | /* In file header: */ | |
518 | core_regsec (abfd)->filepos = (file_ptr)(&((struct core *)0)->c_regs); | |
c93595dd | 519 | core_reg2sec (abfd)->filepos = (file_ptr)(((struct core *)0)->fp_stuff); |
4a81b561 DHW |
520 | |
521 | /* Align to word at least */ | |
522 | core_stacksec (abfd)->alignment_power = 2; | |
523 | core_datasec (abfd)->alignment_power = 2; | |
524 | core_regsec (abfd)->alignment_power = 2; | |
c93595dd | 525 | core_reg2sec (abfd)->alignment_power = 2; |
4a81b561 DHW |
526 | |
527 | abfd->sections = core_stacksec (abfd); | |
528 | core_stacksec (abfd)->next = core_datasec (abfd); | |
529 | core_datasec (abfd)->next = core_regsec (abfd); | |
c93595dd | 530 | core_regsec (abfd)->next = core_reg2sec (abfd); |
4a81b561 DHW |
531 | |
532 | abfd->section_count = 4; | |
533 | ||
534 | return abfd->xvec; | |
535 | } | |
536 | ||
537 | char * | |
538 | sunos4_core_file_failing_command (abfd) | |
539 | bfd *abfd; | |
540 | { | |
541 | return core_hdr (abfd)->c_cmdname; | |
542 | } | |
543 | ||
544 | int | |
545 | sunos4_core_file_failing_signal (abfd) | |
546 | bfd *abfd; | |
547 | { | |
548 | return core_hdr (abfd)->c_signo; | |
549 | } | |
550 | ||
551 | boolean | |
552 | sunos4_core_file_matches_executable_p (core_bfd, exec_bfd) | |
553 | bfd *core_bfd, *exec_bfd; | |
554 | { | |
555 | if (core_bfd->xvec != exec_bfd->xvec) { | |
556 | bfd_error = system_call_error; | |
557 | return false; | |
558 | } | |
559 | ||
c93595dd | 560 | return (bcmp ((char *)&core_hdr (core_bfd), (char*) &exec_hdr (exec_bfd), |
4a81b561 DHW |
561 | sizeof (struct exec)) == 0) ? true : false; |
562 | } | |
563 | ||
564 | /* byte-swap core structure */ | |
c93595dd | 565 | /* FIXME, this needs more work to swap IN a core struct from raw bytes */ |
4a81b561 DHW |
566 | static void |
567 | swapcore (abfd, core) | |
c93595dd | 568 | bfd *abfd; |
4a81b561 DHW |
569 | struct core *core; |
570 | { | |
c93595dd SC |
571 | unsigned char exec_bytes[EXEC_BYTES_SIZE]; |
572 | ||
573 | core->c_magic = bfd_h_getlong (abfd, (unsigned char *)&core->c_magic); | |
574 | core->c_len = bfd_h_getlong (abfd, (unsigned char *)&core->c_len ); | |
575 | /* Leave integer registers in target byte order. */ | |
576 | bcopy ((char *)&(core->c_aouthdr), (char *)exec_bytes, EXEC_BYTES_SIZE); | |
577 | bfd_aout_swap_exec_header_in (abfd, exec_bytes, &core->c_aouthdr); | |
578 | core->c_signo = bfd_h_getlong (abfd, (unsigned char *)&core->c_signo); | |
579 | core->c_tsize = bfd_h_getlong (abfd, (unsigned char *)&core->c_tsize); | |
580 | core->c_dsize = bfd_h_getlong (abfd, (unsigned char *)&core->c_dsize); | |
581 | core->c_ssize = bfd_h_getlong (abfd, (unsigned char *)&core->c_ssize); | |
582 | /* Leave FP registers in target byte order. */ | |
583 | /* Leave "c_ucode" unswapped for now, since we can't find it easily. */ | |
4a81b561 DHW |
584 | } |
585 | \f | |
78aa64b1 JG |
586 | /* We use BFD generic archive files. */ |
587 | #define aout_openr_next_archived_file bfd_generic_openr_next_archived_file | |
588 | #define aout_generic_stat_arch_elt bfd_generic_stat_arch_elt | |
589 | #define aout_slurp_armap bfd_slurp_bsd_armap | |
590 | #define aout_slurp_extended_name_table bfd_true | |
591 | #define aout_write_armap bsd_write_armap | |
592 | #define aout_truncate_arname bfd_bsd_truncate_arname | |
593 | ||
594 | /* We use our own core file format. */ | |
595 | #define aout_core_file_failing_command sunos4_core_file_failing_command | |
596 | #define aout_core_file_failing_signal sunos4_core_file_failing_signal | |
597 | #define aout_core_file_matches_executable_p \ | |
598 | sunos4_core_file_matches_executable_p | |
599 | ||
600 | /* We implement these routines ourselves, rather than using the generic | |
601 | a.out versions. */ | |
602 | #define aout_write_object_contents sunos4_write_object_contents | |
603 | ||
604 | bfd_target sunos_big_vec = | |
605 | { | |
606 | "a.out-sunos-big", /* name */ | |
4a81b561 DHW |
607 | bfd_target_aout_flavour_enum, |
608 | true, /* target byte order */ | |
609 | true, /* target headers byte order */ | |
610 | (HAS_RELOC | EXEC_P | /* object flags */ | |
611 | HAS_LINENO | HAS_DEBUG | | |
612 | HAS_SYMS | HAS_LOCALS | DYNAMIC | WP_TEXT | D_PAGED), | |
613 | (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_RELOC), /* section flags */ | |
4a81b561 DHW |
614 | ' ', /* ar_pad_char */ |
615 | 16, /* ar_max_namelen */ | |
4a81b561 DHW |
616 | _do_getblong, _do_putblong, _do_getbshort, _do_putbshort, /* data */ |
617 | _do_getblong, _do_putblong, _do_getbshort, _do_putbshort, /* hdrs */ | |
618 | ||
9872a49c SC |
619 | {_bfd_dummy_target, sunos4_object_p, |
620 | bfd_generic_archive_p, sunos4_core_file_p}, | |
621 | {bfd_false, sunos4_mkobject, | |
622 | _bfd_generic_mkarchive, bfd_false}, | |
78aa64b1 JG |
623 | {bfd_false, sunos4_write_object_contents, /* bfd_write_contents */ |
624 | _bfd_write_archive_contents, bfd_false}, | |
9872a49c | 625 | |
78aa64b1 JG |
626 | JUMP_TABLE(aout) |
627 | }; |