* coff-h8300.c (h8300_reloc16_extra_cases): Correct off by one
[deliverable/binutils-gdb.git] / bfd / ptrace-core.c
CommitLineData
4c3721d5 1/* BFD backend for core files which use the ptrace_user structure
a9713b91 2 Copyright 1993, 1994 Free Software Foundation, Inc.
4c3721d5
ILT
3 The structure of this file is based on trad-core.c written by John Gilmore
4 of Cygnus Support.
5 Modified to work with the ptrace_user structure by Kevin A. Buettner.
6 (Longterm it may be better to merge this file with trad-core.c)
7
8This file is part of BFD, the Binary File Descriptor library.
9
10This program is free software; you can redistribute it and/or modify
11it under the terms of the GNU General Public License as published by
12the Free Software Foundation; either version 2 of the License, or
13(at your option) any later version.
14
15This program is distributed in the hope that it will be useful,
16but WITHOUT ANY WARRANTY; without even the implied warranty of
17MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18GNU General Public License for more details.
19
20You should have received a copy of the GNU General Public License
21along with this program; if not, write to the Free Software
a9713b91 22Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
4c3721d5
ILT
23
24#ifdef PTRACE_CORE
25
26#include "bfd.h"
27#include "sysdep.h"
28#include "libbfd.h"
29
30#include <stdio.h>
31#include <sys/types.h>
32#include <sys/param.h>
33#include <sys/dir.h>
34#include <signal.h>
35#include <errno.h>
36#include <unistd.h>
37#include <sys/ptrace.h>
38
39
40struct trad_core_struct
41 {
42 asection *data_section;
43 asection *stack_section;
44 asection *reg_section;
45 struct ptrace_user u;
a9713b91 46 };
4c3721d5
ILT
47
48#define core_upage(bfd) (&((bfd)->tdata.trad_core_data->u))
49#define core_datasec(bfd) ((bfd)->tdata.trad_core_data->data_section)
50#define core_stacksec(bfd) ((bfd)->tdata.trad_core_data->stack_section)
51#define core_regsec(bfd) ((bfd)->tdata.trad_core_data->reg_section)
52
53/* forward declarations */
54
a9713b91 55const bfd_target *ptrace_unix_core_file_p PARAMS ((bfd *abfd));
4c3721d5
ILT
56char * ptrace_unix_core_file_failing_command PARAMS ((bfd *abfd));
57int ptrace_unix_core_file_failing_signal PARAMS ((bfd *abfd));
58boolean ptrace_unix_core_file_matches_executable_p
59 PARAMS ((bfd *core_bfd, bfd *exec_bfd));
60
61/* ARGSUSED */
a9713b91 62const bfd_target *
4c3721d5
ILT
63ptrace_unix_core_file_p (abfd)
64 bfd *abfd;
65
66{
67 int val;
68 struct ptrace_user u;
a9713b91 69 struct trad_core_struct *rawptr;
4c3721d5
ILT
70
71 val = bfd_read ((void *)&u, 1, sizeof u, abfd);
72 if (val != sizeof u || u.pt_magic != _BCS_PTRACE_MAGIC
73 || u.pt_rev != _BCS_PTRACE_REV)
74 {
75 /* Too small to be a core file */
326e32d7 76 bfd_set_error (bfd_error_wrong_format);
4c3721d5
ILT
77 return 0;
78 }
79
80 /* OK, we believe you. You're a core file (sure, sure). */
81
82 /* Allocate both the upage and the struct core_data at once, so
83 a single free() will free them both. */
84 rawptr = (struct trad_core_struct *)
85 bfd_zalloc (abfd, sizeof (struct trad_core_struct));
86
a9713b91 87 if (rawptr == NULL)
4c3721d5 88 return 0;
4c3721d5
ILT
89
90 abfd->tdata.trad_core_data = rawptr;
91
92 rawptr->u = u; /*Copy the uarea into the tdata part of the bfd */
93
94 /* Create the sections. This is raunchy, but bfd_close wants to free
95 them separately. */
96
a9713b91
ILT
97 core_stacksec (abfd) = (asection *) bfd_zalloc (abfd, sizeof (asection));
98 if (core_stacksec (abfd) == NULL)
99 return NULL;
100 core_datasec (abfd) = (asection *) bfd_zalloc (abfd, sizeof (asection));
101 if (core_datasec (abfd) == NULL)
102 return NULL;
103 core_regsec (abfd) = (asection *) bfd_zalloc (abfd, sizeof (asection));
104 if (core_regsec (abfd) == NULL)
105 return NULL;
4c3721d5
ILT
106
107 core_stacksec (abfd)->name = ".stack";
108 core_datasec (abfd)->name = ".data";
109 core_regsec (abfd)->name = ".reg";
110
111 /* FIXME: Need to worry about shared memory, library data, and library
112 text. I don't think that any of these things are supported on the
113 system on which I am developing this for though. */
114
115
116 core_stacksec (abfd)->flags = SEC_ALLOC + SEC_LOAD + SEC_HAS_CONTENTS;
117 core_datasec (abfd)->flags = SEC_ALLOC + SEC_LOAD + SEC_HAS_CONTENTS;
a9713b91 118 core_regsec (abfd)->flags = SEC_HAS_CONTENTS;
4c3721d5
ILT
119
120 core_datasec (abfd)->_raw_size = u.pt_dsize;
121 core_stacksec (abfd)->_raw_size = u.pt_ssize;
122 core_regsec (abfd)->_raw_size = sizeof(u);
123
124 core_datasec (abfd)->vma = u.pt_o_data_start;
125 core_stacksec (abfd)->vma = USRSTACK - u.pt_ssize;
126 core_regsec (abfd)->vma = 0 - sizeof(u); /* see trad-core.c */
127
128 core_datasec (abfd)->filepos = (int) u.pt_dataptr;
129 core_stacksec (abfd)->filepos = (int) (u.pt_dataptr + u.pt_dsize);
130 core_regsec (abfd)->filepos = 0; /* Register segment is ptrace_user */
131
132 /* Align to word at least */
133 core_stacksec (abfd)->alignment_power = 2;
134 core_datasec (abfd)->alignment_power = 2;
135 core_regsec (abfd)->alignment_power = 2;
136
137 abfd->sections = core_stacksec (abfd);
138 core_stacksec (abfd)->next = core_datasec (abfd);
139 core_datasec (abfd)->next = core_regsec (abfd);
140 abfd->section_count = 3;
141
142 return abfd->xvec;
143}
144
145char *
146ptrace_unix_core_file_failing_command (abfd)
147 bfd *abfd;
148{
149 char *com = abfd->tdata.trad_core_data->u.pt_comm;
150 if (*com)
151 return com;
152 else
153 return 0;
154}
155
156/* ARGSUSED */
157int
158ptrace_unix_core_file_failing_signal (abfd)
159 bfd *abfd;
160{
161 return abfd->tdata.trad_core_data->u.pt_sigframe.sig_num;
162}
163
164/* ARGSUSED */
165boolean
166ptrace_unix_core_file_matches_executable_p (core_bfd, exec_bfd)
167 bfd *core_bfd, *exec_bfd;
168{
169 /* FIXME: Use pt_timdat field of the ptrace_user structure to match
170 the date of the executable */
171 return true;
172}
173\f
4c3721d5
ILT
174/* If somebody calls any byte-swapping routines, shoot them. */
175void
176swap_abort()
177{
178 abort(); /* This way doesn't require any declaration for ANSI to fuck up */
179}
326e32d7 180#define NO_GET ((bfd_vma (*) PARAMS (( const bfd_byte *))) swap_abort )
4c3721d5 181#define NO_PUT ((void (*) PARAMS ((bfd_vma, bfd_byte *))) swap_abort )
326e32d7
ILT
182#define NO_SIGNED_GET \
183 ((bfd_signed_vma (*) PARAMS ((const bfd_byte *))) swap_abort )
4c3721d5 184
a9713b91 185const bfd_target ptrace_core_vec =
4c3721d5
ILT
186 {
187 "trad-core",
188 bfd_target_unknown_flavour,
189 true, /* target byte order */
190 true, /* target headers byte order */
191 (HAS_RELOC | EXEC_P | /* object flags */
192 HAS_LINENO | HAS_DEBUG |
193 HAS_SYMS | HAS_LOCALS | WP_TEXT | D_PAGED),
194 (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_RELOC), /* section flags */
195 0, /* symbol prefix */
196 ' ', /* ar_pad_char */
197 16, /* ar_max_namelen */
4c3721d5
ILT
198 NO_GET, NO_SIGNED_GET, NO_PUT, /* 64 bit data */
199 NO_GET, NO_SIGNED_GET, NO_PUT, /* 32 bit data */
200 NO_GET, NO_SIGNED_GET, NO_PUT, /* 16 bit data */
201 NO_GET, NO_SIGNED_GET, NO_PUT, /* 64 bit hdrs */
202 NO_GET, NO_SIGNED_GET, NO_PUT, /* 32 bit hdrs */
203 NO_GET, NO_SIGNED_GET, NO_PUT, /* 16 bit hdrs */
204
205 { /* bfd_check_format */
206 _bfd_dummy_target, /* unknown format */
207 _bfd_dummy_target, /* object file */
208 _bfd_dummy_target, /* archive */
209 ptrace_unix_core_file_p /* a core file */
210 },
211 { /* bfd_set_format */
212 bfd_false, bfd_false,
213 bfd_false, bfd_false
214 },
215 { /* bfd_write_contents */
216 bfd_false, bfd_false,
217 bfd_false, bfd_false
218 },
219
6812b607
ILT
220 BFD_JUMP_TABLE_GENERIC (_bfd_generic),
221 BFD_JUMP_TABLE_COPY (_bfd_generic),
222 BFD_JUMP_TABLE_CORE (ptrace_unix),
223 BFD_JUMP_TABLE_ARCHIVE (_bfd_noarchive),
224 BFD_JUMP_TABLE_SYMBOLS (_bfd_nosymbols),
225 BFD_JUMP_TABLE_RELOCS (_bfd_norelocs),
226 BFD_JUMP_TABLE_WRITE (_bfd_generic),
227 BFD_JUMP_TABLE_LINK (_bfd_nolink),
a9713b91 228 BFD_JUMP_TABLE_DYNAMIC (_bfd_nodynamic),
6812b607 229
4c3721d5
ILT
230 (PTR) 0 /* backend_data */
231};
232
233#endif /* PTRACE_CORE */
This page took 0.219803 seconds and 4 git commands to generate.