* opncls.c (bfd_alloc_by_size_t): Set bfd_error_no_memory if
[deliverable/binutils-gdb.git] / bfd / trad-core.c
CommitLineData
9712c6e2 1/* BFD back end for traditional Unix core files (U-area and raw sections)
b7577823 2 Copyright 1988, 1989, 1991, 1992, 1993, 1994 Free Software Foundation, Inc.
9712c6e2
SG
3 Written by John Gilmore of Cygnus Support.
4
5This file is part of BFD, the Binary File Descriptor library.
6
7This program is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
9the Free Software Foundation; either version 2 of the License, or
10(at your option) any later version.
11
12This program is distributed in the hope that it will be useful,
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
18along with this program; if not, write to the Free Software
b7577823 19Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
6a469027 20
ff37ea55 21#include "bfd.h"
637942e4 22#include "sysdep.h"
ff37ea55 23#include "libbfd.h"
359f1dee 24#include "libaout.h" /* BFD a.out internal data structures */
ff37ea55 25
637942e4 26#include <stdio.h>
ff37ea55
JG
27#include <sys/types.h>
28#include <sys/param.h>
29#include <sys/dir.h>
30#include <signal.h>
ff37ea55
JG
31
32#include <sys/user.h> /* After a.out.h */
ff37ea55 33
b7577823
ILT
34#ifdef TRAD_HEADER
35#include TRAD_HEADER
36#endif
ff37ea55 37
1f29e30b
JG
38 struct trad_core_struct
39 {
40 asection *data_section;
41 asection *stack_section;
42 asection *reg_section;
43 struct user u;
a9713b91 44 };
1f29e30b
JG
45
46#define core_upage(bfd) (&((bfd)->tdata.trad_core_data->u))
47#define core_datasec(bfd) ((bfd)->tdata.trad_core_data->data_section)
48#define core_stacksec(bfd) ((bfd)->tdata.trad_core_data->stack_section)
49#define core_regsec(bfd) ((bfd)->tdata.trad_core_data->reg_section)
50
51/* forward declarations */
ff37ea55 52
b7577823 53const bfd_target *trad_unix_core_file_p PARAMS ((bfd *abfd));
1f29e30b
JG
54char * trad_unix_core_file_failing_command PARAMS ((bfd *abfd));
55int trad_unix_core_file_failing_signal PARAMS ((bfd *abfd));
56boolean trad_unix_core_file_matches_executable_p
57 PARAMS ((bfd *core_bfd, bfd *exec_bfd));
6a469027 58
637942e4
JG
59/* Handle 4.2-style (and perhaps also sysV-style) core dump file. */
60
7ed4093a 61/* ARGSUSED */
b7577823 62const bfd_target *
ff37ea55
JG
63trad_unix_core_file_p (abfd)
64 bfd *abfd;
1f29e30b 65
ff37ea55 66{
ff37ea55 67 int val;
ff37ea55 68 struct user u;
a9713b91 69 struct trad_core_struct *rawptr;
ff37ea55 70
4c3721d5
ILT
71#ifdef TRAD_CORE_USER_OFFSET
72 /* If defined, this macro is the file position of the user struct. */
baf200d4 73 if (bfd_seek (abfd, TRAD_CORE_USER_OFFSET, SEEK_SET) != 0)
4c3721d5
ILT
74 return 0;
75#endif
76
ff37ea55
JG
77 val = bfd_read ((void *)&u, 1, sizeof u, abfd);
78 if (val != sizeof u)
31568a6f
JK
79 {
80 /* Too small to be a core file */
baf200d4 81 bfd_set_error (bfd_error_wrong_format);
31568a6f
JK
82 return 0;
83 }
ff37ea55
JG
84
85 /* Sanity check perhaps??? */
86 if (u.u_dsize > 0x1000000) /* Remember, it's in pages... */
31568a6f 87 {
baf200d4 88 bfd_set_error (bfd_error_wrong_format);
31568a6f
JK
89 return 0;
90 }
ff37ea55 91 if (u.u_ssize > 0x1000000)
31568a6f 92 {
baf200d4 93 bfd_set_error (bfd_error_wrong_format);
31568a6f
JK
94 return 0;
95 }
96
97 /* Check that the size claimed is no greater than the file size. */
98 {
99 FILE *stream = bfd_cache_lookup (abfd);
100 struct stat statbuf;
101 if (stream == NULL)
102 return 0;
103 if (fstat (fileno (stream), &statbuf) < 0)
104 {
baf200d4 105 bfd_set_error (bfd_error_system_call);
31568a6f
JK
106 return 0;
107 }
baf200d4
JK
108 if (NBPG * (UPAGES + u.u_dsize
109#ifdef TRAD_CORE_DSIZE_INCLUDES_TSIZE
110 - u.u_tsize
111#endif
112 + u.u_ssize) > statbuf.st_size)
31568a6f 113 {
baf200d4 114 bfd_set_error (bfd_error_file_truncated);
31568a6f
JK
115 return 0;
116 }
4c3721d5 117#ifndef TRAD_CORE_ALLOW_ANY_EXTRA_SIZE
4d09e8ac
JK
118 if (NBPG * (UPAGES + u.u_dsize + u.u_ssize)
119#ifdef TRAD_CORE_EXTRA_SIZE_ALLOWED
120 /* Some systems write the file too big. */
121 + TRAD_CORE_EXTRA_SIZE_ALLOWED
122#endif
123 < statbuf.st_size)
31568a6f
JK
124 {
125 /* The file is too big. Maybe it's not a core file
126 or we otherwise have bad values for u_dsize and u_ssize). */
baf200d4 127 bfd_set_error (bfd_error_wrong_format);
31568a6f
JK
128 return 0;
129 }
4c3721d5 130#endif
31568a6f 131 }
ff37ea55
JG
132
133 /* OK, we believe you. You're a core file (sure, sure). */
134
135 /* Allocate both the upage and the struct core_data at once, so
136 a single free() will free them both. */
1f29e30b 137 rawptr = (struct trad_core_struct *)
326e32d7 138 bfd_zmalloc (sizeof (struct trad_core_struct));
a9713b91 139 if (rawptr == NULL)
ff37ea55 140 return 0;
ff37ea55 141
1f29e30b
JG
142 abfd->tdata.trad_core_data = rawptr;
143
144 rawptr->u = u; /*Copy the uarea into the tdata part of the bfd */
ff37ea55 145
637942e4
JG
146 /* Create the sections. This is raunchy, but bfd_close wants to free
147 them separately. */
1f29e30b 148
a9713b91
ILT
149 core_stacksec(abfd) = (asection *) bfd_zalloc (abfd, sizeof (asection));
150 if (core_stacksec (abfd) == NULL)
151 return NULL;
152 core_datasec (abfd) = (asection *) bfd_zalloc (abfd, sizeof (asection));
153 if (core_datasec (abfd) == NULL)
154 return NULL;
155 core_regsec (abfd) = (asection *) bfd_zalloc (abfd, sizeof (asection));
156 if (core_regsec (abfd) == NULL)
157 return NULL;
ff37ea55
JG
158
159 core_stacksec (abfd)->name = ".stack";
160 core_datasec (abfd)->name = ".data";
161 core_regsec (abfd)->name = ".reg";
162
6a469027
JG
163 core_stacksec (abfd)->flags = SEC_ALLOC + SEC_LOAD + SEC_HAS_CONTENTS;
164 core_datasec (abfd)->flags = SEC_ALLOC + SEC_LOAD + SEC_HAS_CONTENTS;
b7577823 165 core_regsec (abfd)->flags = SEC_HAS_CONTENTS;
ff37ea55 166
baf200d4
JK
167 core_datasec (abfd)->_raw_size = NBPG * u.u_dsize
168#ifdef TRAD_CORE_DSIZE_INCLUDES_TSIZE
169 - NBPG * u.u_tsize
170#endif
171 ;
1f29e30b
JG
172 core_stacksec (abfd)->_raw_size = NBPG * u.u_ssize;
173 core_regsec (abfd)->_raw_size = NBPG * UPAGES; /* Larger than sizeof struct u */
ff37ea55
JG
174
175 /* What a hack... we'd like to steal it from the exec file,
176 since the upage does not seem to provide it. FIXME. */
9712c6e2
SG
177#ifdef HOST_DATA_START_ADDR
178 core_datasec (abfd)->vma = HOST_DATA_START_ADDR;
179#else
180 core_datasec (abfd)->vma = HOST_TEXT_START_ADDR + (NBPG * u.u_tsize);
181#endif
4c3721d5
ILT
182
183#ifdef HOST_STACK_START_ADDR
184 core_stacksec (abfd)->vma = HOST_STACK_START_ADDR;
185#else
9712c6e2 186 core_stacksec (abfd)->vma = HOST_STACK_END_ADDR - (NBPG * u.u_ssize);
4c3721d5
ILT
187#endif
188
637942e4
JG
189 /* This is tricky. As the "register section", we give them the entire
190 upage and stack. u.u_ar0 points to where "register 0" is stored.
191 There are two tricks with this, though. One is that the rest of the
192 registers might be at positive or negative (or both) displacements
193 from *u_ar0. The other is that u_ar0 is sometimes an absolute address
194 in kernel memory, and on other systems it is an offset from the beginning
195 of the `struct user'.
1f29e30b 196
637942e4
JG
197 As a practical matter, we don't know where the registers actually are,
198 so we have to pass the whole area to GDB. We encode the value of u_ar0
199 by setting the .regs section up so that its virtual memory address
200 0 is at the place pointed to by u_ar0 (by setting the vma of the start
201 of the section to -u_ar0). GDB uses this info to locate the regs,
202 using minor trickery to get around the offset-or-absolute-addr problem. */
a9713b91 203 core_regsec (abfd)->vma = 0 - (bfd_vma) u.u_ar0;
ff37ea55
JG
204
205 core_datasec (abfd)->filepos = NBPG * UPAGES;
baf200d4
JK
206 core_stacksec (abfd)->filepos = (NBPG * UPAGES) + NBPG * u.u_dsize
207#ifdef TRAD_CORE_DSIZE_INCLUDES_TSIZE
208 - NBPG * u.u_tsize
4c3721d5 209#endif
baf200d4 210 ;
1f29e30b 211 core_regsec (abfd)->filepos = 0; /* Register segment is the upage */
ff37ea55
JG
212
213 /* Align to word at least */
214 core_stacksec (abfd)->alignment_power = 2;
215 core_datasec (abfd)->alignment_power = 2;
216 core_regsec (abfd)->alignment_power = 2;
217
218 abfd->sections = core_stacksec (abfd);
219 core_stacksec (abfd)->next = core_datasec (abfd);
220 core_datasec (abfd)->next = core_regsec (abfd);
221 abfd->section_count = 3;
222
223 return abfd->xvec;
ff37ea55
JG
224}
225
226char *
227trad_unix_core_file_failing_command (abfd)
228 bfd *abfd;
229{
1f29e30b
JG
230#ifndef NO_CORE_COMMAND
231 char *com = abfd->tdata.trad_core_data->u.u_comm;
232 if (*com)
233 return com;
ff37ea55 234 else
1f29e30b 235#endif
ff37ea55
JG
236 return 0;
237}
238
7ed4093a 239/* ARGSUSED */
ff37ea55 240int
7ed4093a
SC
241trad_unix_core_file_failing_signal (ignore_abfd)
242 bfd *ignore_abfd;
ff37ea55 243{
31568a6f
JK
244#ifdef TRAD_UNIX_CORE_FILE_FAILING_SIGNAL
245 return TRAD_UNIX_CORE_FILE_FAILING_SIGNAL(ignore_abfd);
246#else
ff37ea55 247 return -1; /* FIXME, where is it? */
31568a6f 248#endif
ff37ea55
JG
249}
250
7ed4093a 251/* ARGSUSED */
ff37ea55
JG
252boolean
253trad_unix_core_file_matches_executable_p (core_bfd, exec_bfd)
254 bfd *core_bfd, *exec_bfd;
255{
256 return true; /* FIXME, We have no way of telling at this point */
257}
6a469027 258\f
637942e4
JG
259/* If somebody calls any byte-swapping routines, shoot them. */
260void
261swap_abort()
262{
263 abort(); /* This way doesn't require any declaration for ANSI to fuck up */
264}
baf200d4 265#define NO_GET ((bfd_vma (*) PARAMS (( const bfd_byte *))) swap_abort )
1f29e30b 266#define NO_PUT ((void (*) PARAMS ((bfd_vma, bfd_byte *))) swap_abort )
baf200d4
JK
267#define NO_SIGNED_GET \
268 ((bfd_signed_vma (*) PARAMS ((const bfd_byte *))) swap_abort )
6a469027 269
b7577823 270const bfd_target trad_core_vec =
6a469027 271 {
637942e4 272 "trad-core",
6a469027
JG
273 bfd_target_unknown_flavour,
274 true, /* target byte order */
275 true, /* target headers byte order */
276 (HAS_RELOC | EXEC_P | /* object flags */
277 HAS_LINENO | HAS_DEBUG |
4c3721d5 278 HAS_SYMS | HAS_LOCALS | WP_TEXT | D_PAGED),
6a469027 279 (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_RELOC), /* section flags */
0dc1bc8b 280 0, /* symbol prefix */
6a469027
JG
281 ' ', /* ar_pad_char */
282 16, /* ar_max_namelen */
4d09e8ac
JK
283 NO_GET, NO_SIGNED_GET, NO_PUT, /* 64 bit data */
284 NO_GET, NO_SIGNED_GET, NO_PUT, /* 32 bit data */
285 NO_GET, NO_SIGNED_GET, NO_PUT, /* 16 bit data */
286 NO_GET, NO_SIGNED_GET, NO_PUT, /* 64 bit hdrs */
287 NO_GET, NO_SIGNED_GET, NO_PUT, /* 32 bit hdrs */
288 NO_GET, NO_SIGNED_GET, NO_PUT, /* 16 bit hdrs */
31568a6f
JK
289
290 { /* bfd_check_format */
291 _bfd_dummy_target, /* unknown format */
292 _bfd_dummy_target, /* object file */
293 _bfd_dummy_target, /* archive */
294 trad_unix_core_file_p /* a core file */
295 },
296 { /* bfd_set_format */
297 bfd_false, bfd_false,
298 bfd_false, bfd_false
299 },
300 { /* bfd_write_contents */
301 bfd_false, bfd_false,
302 bfd_false, bfd_false
303 },
6a469027 304
6812b607
ILT
305 BFD_JUMP_TABLE_GENERIC (_bfd_generic),
306 BFD_JUMP_TABLE_COPY (_bfd_generic),
307 BFD_JUMP_TABLE_CORE (trad_unix),
308 BFD_JUMP_TABLE_ARCHIVE (_bfd_noarchive),
309 BFD_JUMP_TABLE_SYMBOLS (_bfd_nosymbols),
310 BFD_JUMP_TABLE_RELOCS (_bfd_norelocs),
311 BFD_JUMP_TABLE_WRITE (_bfd_generic),
312 BFD_JUMP_TABLE_LINK (_bfd_nolink),
b7577823 313 BFD_JUMP_TABLE_DYNAMIC (_bfd_nodynamic),
6812b607 314
31568a6f 315 (PTR) 0 /* backend_data */
6a469027 316};
This page took 0.186442 seconds and 4 git commands to generate.