1 /* Low level interface to ptrace, for the remote server for GDB.
2 Copyright (C) 1986, 1987, 1993 Free Software Foundation, Inc.
4 This file is part of GDB.
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
25 /***************************
26 #include "initialize.h"
27 ****************************/
30 #include <sys/param.h>
34 #include <sys/ioctl.h>
38 /***************Begin MY defs*********************/
40 char registers
[REGISTER_BYTES
];
42 /* Index within `registers' of the first byte of the space for
46 char buf2
[MAX_REGISTER_RAW_SIZE
];
47 /***************End MY defs*********************/
49 #include <sys/ptrace.h>
53 extern char **sys_errlist
;
54 extern char **environ
;
56 extern int inferior_pid
;
57 void quit (), perror_with_name ();
60 /* Start an inferior process and returns its pid.
61 ALLARGS is a vector of program-name and args.
62 ENV is the environment vector to pass. */
65 create_inferior (program
, allargs
)
73 perror_with_name ("fork");
77 ptrace (PTRACE_TRACEME
);
79 execv (program
, allargs
);
81 fprintf (stderr
, "Cannot exec %s: %s.\n", program
,
82 errno
< sys_nerr
? sys_errlist
[errno
] : "unknown error");
90 /* Kill the inferior process. Make us have no inferior. */
95 if (inferior_pid
== 0)
97 ptrace (8, inferior_pid
, 0, 0);
99 /*************inferior_died ();****VK**************/
102 /* Return nonzero if the given thread is still alive. */
110 /* Wait for process, returns status */
120 if (pid
!= inferior_pid
)
121 perror_with_name ("wait");
125 fprintf (stderr
, "\nChild exited with retcode = %x \n", WEXITSTATUS (w
));
127 return ((unsigned char) WEXITSTATUS (w
));
129 else if (!WIFSTOPPED (w
))
131 fprintf (stderr
, "\nChild terminated with signal = %x \n", WTERMSIG (w
));
133 return ((unsigned char) WTERMSIG (w
));
136 fetch_inferior_registers (0);
139 return ((unsigned char) WSTOPSIG (w
));
142 /* Resume execution of the inferior process.
143 If STEP is nonzero, single-step it.
144 If SIGNAL is nonzero, give it that signal. */
147 myresume (step
, signal
)
152 ptrace (step
? PTRACE_SINGLESTEP
: PTRACE_CONT
, inferior_pid
, 1, signal
);
154 perror_with_name ("ptrace");
157 /* Fetch one or more registers from the inferior. REGNO == -1 to get
158 them all. We actually fetch more than requested, when convenient,
159 marking them as valid so we won't fetch them again. */
162 fetch_inferior_registers (ignored
)
165 struct regs inferior_registers
;
166 struct fp_status inferior_fp_registers
;
169 /* Global and Out regs are fetched directly, as well as the control
170 registers. If we're getting one of the in or local regs,
171 and the stack pointer has not yet been fetched,
172 we have to do that first, since they're found in memory relative
173 to the stack pointer. */
175 if (ptrace (PTRACE_GETREGS
, inferior_pid
,
176 (PTRACE_ARG3_TYPE
) & inferior_registers
, 0))
177 perror ("ptrace_getregs");
179 registers
[REGISTER_BYTE (0)] = 0;
180 memcpy (®isters
[REGISTER_BYTE (1)], &inferior_registers
.r_g1
,
181 15 * REGISTER_RAW_SIZE (G0_REGNUM
));
182 *(int *) ®isters
[REGISTER_BYTE (PS_REGNUM
)] = inferior_registers
.r_ps
;
183 *(int *) ®isters
[REGISTER_BYTE (PC_REGNUM
)] = inferior_registers
.r_pc
;
184 *(int *) ®isters
[REGISTER_BYTE (NPC_REGNUM
)] = inferior_registers
.r_npc
;
185 *(int *) ®isters
[REGISTER_BYTE (Y_REGNUM
)] = inferior_registers
.r_y
;
187 /* Floating point registers */
189 if (ptrace (PTRACE_GETFPREGS
, inferior_pid
,
190 (PTRACE_ARG3_TYPE
) & inferior_fp_registers
,
192 perror ("ptrace_getfpregs");
193 memcpy (®isters
[REGISTER_BYTE (FP0_REGNUM
)], &inferior_fp_registers
,
194 sizeof inferior_fp_registers
.fpu_fr
);
196 /* These regs are saved on the stack by the kernel. Only read them
197 all (16 ptrace calls!) if we really need them. */
199 read_inferior_memory (*(CORE_ADDR
*) & registers
[REGISTER_BYTE (SP_REGNUM
)],
200 ®isters
[REGISTER_BYTE (L0_REGNUM
)],
201 16 * REGISTER_RAW_SIZE (L0_REGNUM
));
204 /* Store our register values back into the inferior.
205 If REGNO is -1, do this for all registers.
206 Otherwise, REGNO specifies which register (so we can save time). */
209 store_inferior_registers (ignored
)
212 struct regs inferior_registers
;
213 struct fp_status inferior_fp_registers
;
214 CORE_ADDR sp
= *(CORE_ADDR
*) & registers
[REGISTER_BYTE (SP_REGNUM
)];
216 write_inferior_memory (sp
, ®isters
[REGISTER_BYTE (L0_REGNUM
)],
217 16 * REGISTER_RAW_SIZE (L0_REGNUM
));
219 memcpy (&inferior_registers
.r_g1
, ®isters
[REGISTER_BYTE (G1_REGNUM
)],
220 15 * REGISTER_RAW_SIZE (G1_REGNUM
));
222 inferior_registers
.r_ps
=
223 *(int *) ®isters
[REGISTER_BYTE (PS_REGNUM
)];
224 inferior_registers
.r_pc
=
225 *(int *) ®isters
[REGISTER_BYTE (PC_REGNUM
)];
226 inferior_registers
.r_npc
=
227 *(int *) ®isters
[REGISTER_BYTE (NPC_REGNUM
)];
228 inferior_registers
.r_y
=
229 *(int *) ®isters
[REGISTER_BYTE (Y_REGNUM
)];
231 if (ptrace (PTRACE_SETREGS
, inferior_pid
,
232 (PTRACE_ARG3_TYPE
) & inferior_registers
, 0))
233 perror ("ptrace_setregs");
235 memcpy (&inferior_fp_registers
, ®isters
[REGISTER_BYTE (FP0_REGNUM
)],
236 sizeof inferior_fp_registers
.fpu_fr
);
238 if (ptrace (PTRACE_SETFPREGS
, inferior_pid
,
239 (PTRACE_ARG3_TYPE
) & inferior_fp_registers
, 0))
240 perror ("ptrace_setfpregs");
243 /* NOTE! I tried using PTRACE_READDATA, etc., to read and write memory
244 in the NEW_SUN_PTRACE case.
245 It ought to be straightforward. But it appears that writing did
246 not write the data that I specified. I cannot understand where
247 it got the data that it actually did write. */
249 /* Copy LEN bytes from inferior's memory starting at MEMADDR
250 to debugger memory starting at MYADDR. */
252 read_inferior_memory (memaddr
, myaddr
, len
)
258 /* Round starting address down to longword boundary. */
259 register CORE_ADDR addr
= memaddr
& -sizeof (int);
260 /* Round ending address up; get number of longwords that makes. */
262 = (((memaddr
+ len
) - addr
) + sizeof (int) - 1) / sizeof (int);
263 /* Allocate buffer of that many longwords. */
264 register int *buffer
= (int *) alloca (count
* sizeof (int));
266 /* Read all the longwords */
267 for (i
= 0; i
< count
; i
++, addr
+= sizeof (int))
269 buffer
[i
] = ptrace (1, inferior_pid
, addr
, 0);
272 /* Copy appropriate bytes out of the buffer. */
273 memcpy (myaddr
, (char *) buffer
+ (memaddr
& (sizeof (int) - 1)), len
);
276 /* Copy LEN bytes of data from debugger memory at MYADDR
277 to inferior's memory at MEMADDR.
278 On failure (cannot write the inferior)
279 returns the value of errno. */
282 write_inferior_memory (memaddr
, myaddr
, len
)
288 /* Round starting address down to longword boundary. */
289 register CORE_ADDR addr
= memaddr
& -sizeof (int);
290 /* Round ending address up; get number of longwords that makes. */
292 = (((memaddr
+ len
) - addr
) + sizeof (int) - 1) / sizeof (int);
293 /* Allocate buffer of that many longwords. */
294 register int *buffer
= (int *) alloca (count
* sizeof (int));
297 /* Fill start and end extra bytes of buffer with existing memory data. */
299 buffer
[0] = ptrace (1, inferior_pid
, addr
, 0);
304 = ptrace (1, inferior_pid
,
305 addr
+ (count
- 1) * sizeof (int), 0);
308 /* Copy data to be written over corresponding part of buffer */
310 bcopy (myaddr
, (char *) buffer
+ (memaddr
& (sizeof (int) - 1)), len
);
312 /* Write the entire buffer. */
314 for (i
= 0; i
< count
; i
++, addr
+= sizeof (int))
317 ptrace (4, inferior_pid
, addr
, buffer
[i
]);
334 return inferior_pid
!= 0;