* Makefile.in (symfile-mem.o): Update dependencies.
[deliverable/binutils-gdb.git] / gdb / inf-ptrace.c
CommitLineData
5bf970f9
AC
1/* Low level Unix child interface to ptrace, for GDB when running under Unix.
2
3 Copyright 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996,
4 1998, 1999, 2000, 2001, 2002, 2004 Free Software Foundation, Inc.
5
6 This file is part of GDB.
7
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA. */
22
23#include "defs.h"
24#include "observer.h"
25#include "gdb_ptrace.h"
26#include "inflow.h"
27#include "inferior.h"
28#include "regcache.h"
29#include "command.h"
30#include "gdbcore.h"
31#include "inf-child.h"
32#include "gdbcmd.h"
7681f339 33#include "gdb_string.h"
5bf970f9 34
34a17005 35#include "gdb_wait.h"
5bf970f9
AC
36#include <signal.h>
37
38/* HACK: Save the ptrace ops returned by ptrace_target. */
39static struct target_ops *ptrace_ops_hack;
40
41static void
42inf_ptrace_kill_inferior (void)
43{
44 int status;
45 int pid = PIDGET (inferior_ptid);
46
47 if (pid == 0)
48 return;
49
50 /* This once used to call "kill" to kill the inferior just in case
51 the inferior was still running. As others have noted in the past
52 (kingdon) there shouldn't be any way to get here if the inferior
53 is still running -- else there's a major problem elsewere in gdb
54 and it needs to be fixed.
55
56 The kill call causes problems under hpux10, so it's been removed;
57 if this causes problems we'll deal with them as they arise. */
62ece330
MK
58 ptrace (PT_KILL, pid, (PTRACE_TYPE_ARG3) 0, 0);
59 wait (&status);
5bf970f9
AC
60 target_mourn_inferior ();
61}
62
63/* Resume execution of the inferior process. If STEP is nonzero,
64 single-step it. If SIGNAL is nonzero, give it that signal. */
65
66static void
67inf_ptrace_resume (ptid_t ptid, int step, enum target_signal signal)
68{
69 int request = PT_CONTINUE;
70 int pid = PIDGET (ptid);
71
72 if (pid == -1)
73 /* Resume all threads. */
74 /* I think this only gets used in the non-threaded case, where
75 "resume all threads" and "resume inferior_ptid" are the
76 same. */
77 pid = PIDGET (inferior_ptid);
78
79 if (step)
80 {
81 /* If this system does not support PT_STEP, a higher level
82 function will have called single_step() to transmute the step
83 request into a continue request (by setting breakpoints on
84 all possible successor instructions), so we don't have to
85 worry about that here. */
86 request = PT_STEP;
87 }
88
89 /* An address of (PTRACE_TYPE_ARG3)1 tells ptrace to continue from
90 where it was. If GDB wanted it to start some other way, we have
91 already written a new PC value to the child. */
92 errno = 0;
93 ptrace (request, pid, (PTRACE_TYPE_ARG3) 1, target_signal_to_host (signal));
94 if (errno != 0)
95 perror_with_name ("ptrace");
96}
97
5bf970f9
AC
98/* Wait for child to do something. Return pid of child, or -1 in case
99 of error; store status through argument pointer OURSTATUS. */
100
101static ptid_t
102inf_ptrace_wait (ptid_t ptid, struct target_waitstatus *ourstatus)
103{
104 int save_errno;
105 int status;
106 char *execd_pathname = NULL;
107 int exit_status;
108 int related_pid;
109 int syscall_id;
110 enum target_waitkind kind;
111 int pid;
112
113 do
114 {
115 set_sigint_trap (); /* Causes SIGINT to be passed on to the
116 attached process. */
117 set_sigio_trap ();
118
62ece330 119 pid = wait (&status);
5bf970f9
AC
120
121 save_errno = errno;
122
123 clear_sigio_trap ();
124
125 clear_sigint_trap ();
126
127 if (pid == -1)
128 {
129 if (save_errno == EINTR)
130 continue;
131
132 fprintf_unfiltered (gdb_stderr,
133 "Child process unexpectedly missing: %s.\n",
134 safe_strerror (save_errno));
135
136 /* Claim it exited with unknown signal. */
137 ourstatus->kind = TARGET_WAITKIND_SIGNALLED;
138 ourstatus->value.sig = TARGET_SIGNAL_UNKNOWN;
139 return pid_to_ptid (-1);
140 }
141
142 /* Did it exit?
143 */
144 if (target_has_exited (pid, status, &exit_status))
145 {
146 /* ??rehrauer: For now, ignore this. */
147 continue;
148 }
149
150 if (!target_thread_alive (pid_to_ptid (pid)))
151 {
152 ourstatus->kind = TARGET_WAITKIND_SPURIOUS;
153 return pid_to_ptid (pid);
154 }
155 }
156 while (pid != PIDGET (inferior_ptid)); /* Some other child died or stopped */
157
158 store_waitstatus (ourstatus, status);
159 return pid_to_ptid (pid);
160}
161
5bf970f9
AC
162/* Check to see if the given thread is alive.
163
164 FIXME: Is kill() ever the right way to do this? I doubt it, but
165 for now we're going to try and be compatable with the old thread
166 code. */
167
168static int
169inf_ptrace_thread_alive (ptid_t ptid)
170{
171 pid_t pid = PIDGET (ptid);
172
173 return (kill (pid, 0) != -1);
174}
175
176/* Attach to process PID, then initialize for debugging it. */
177
178static void
179inf_ptrace_attach (char *args, int from_tty)
180{
181 char *exec_file;
182 int pid;
183 char *dummy;
184
185 if (!args)
186 error_no_arg ("process-id to attach");
187
188 dummy = args;
189 pid = strtol (args, &dummy, 0);
190 /* Some targets don't set errno on errors, grrr! */
6e1e94ea 191 if (pid == 0 && args == dummy)
5bf970f9
AC
192 error ("Illegal process-id: %s\n", args);
193
194 if (pid == getpid ()) /* Trying to masturbate? */
195 error ("I refuse to debug myself!");
196
197 if (from_tty)
198 {
199 exec_file = (char *) get_exec_file (0);
200
201 if (exec_file)
202 printf_unfiltered ("Attaching to program: %s, %s\n", exec_file,
203 target_pid_to_str (pid_to_ptid (pid)));
204 else
205 printf_unfiltered ("Attaching to %s\n",
206 target_pid_to_str (pid_to_ptid (pid)));
207
208 gdb_flush (gdb_stdout);
209 }
210
6e1e94ea
MK
211#ifdef PT_ATTACH
212 errno = 0;
213 ptrace (PT_ATTACH, pid, (PTRACE_TYPE_ARG3) 0, 0);
214 if (errno != 0)
215 perror_with_name ("ptrace");
216 attach_flag = 1;
217#else
218 error ("This system does not support attaching to a process");
219#endif
5bf970f9
AC
220
221 inferior_ptid = pid_to_ptid (pid);
222 push_target (ptrace_ops_hack);
12b8a2cb
DJ
223
224 /* Do this first, before anything has had a chance to query the
225 inferior's symbol table or similar. */
226 observer_notify_inferior_created (&current_target, from_tty);
5bf970f9
AC
227}
228
229static void
230inf_ptrace_post_attach (int pid)
231{
232 /* This version of Unix doesn't require a meaningful "post attach"
233 operation by a debugger. */
234}
235
236/* Take a program previously attached to and detaches it. The program
237 resumes execution and will no longer stop on signals, etc. We'd
238 better not have left any breakpoints in the program or it'll die
239 when it hits one. For this to work, it may be necessary for the
240 process to have been previously attached. It *might* work if the
241 program was started via the normal ptrace (PTRACE_TRACEME). */
242
243static void
244inf_ptrace_detach (char *args, int from_tty)
245{
6e1e94ea 246 int sig = 0;
5bf970f9
AC
247 int pid = PIDGET (inferior_ptid);
248
249 if (from_tty)
250 {
251 char *exec_file = get_exec_file (0);
252 if (exec_file == 0)
253 exec_file = "";
254 printf_unfiltered ("Detaching from program: %s, %s\n", exec_file,
255 target_pid_to_str (pid_to_ptid (pid)));
256 gdb_flush (gdb_stdout);
257 }
258 if (args)
6e1e94ea 259 sig = atoi (args);
5bf970f9 260
6e1e94ea
MK
261#ifdef PT_DETACH
262 errno = 0;
263 ptrace (PT_DETACH, pid, (PTRACE_TYPE_ARG3) 1, sig);
264 if (errno != 0)
265 perror_with_name ("ptrace");
266 attach_flag = 0;
267#else
268 error ("This system does not support detaching from a process");
269#endif
5bf970f9
AC
270
271 inferior_ptid = null_ptid;
272 unpush_target (ptrace_ops_hack);
273}
274
275/* Get ready to modify the registers array. On machines which store
276 individual registers, this doesn't need to do anything. On
277 machines which store all the registers in one fell swoop, this
278 makes sure that registers contains all the registers from the
279 program being debugged. */
280
281static void
282inf_ptrace_prepare_to_store (void)
283{
284}
285
286/* Print status information about what we're accessing. */
287
288static void
289inf_ptrace_files_info (struct target_ops *ignore)
290{
291 printf_unfiltered ("\tUsing the running image of %s %s.\n",
292 attach_flag ? "attached" : "child",
293 target_pid_to_str (inferior_ptid));
294}
295
296static void
297inf_ptrace_open (char *arg, int from_tty)
298{
299 error ("Use the \"run\" command to start a Unix child process.");
300}
301
302/* Stub function which causes the inferior that runs it, to be ptrace-able
303 by its parent process. */
304
305static void
306inf_ptrace_me (void)
307{
308 /* "Trace me, Dr. Memory!" */
62ece330 309 ptrace (0, 0, (PTRACE_TYPE_ARG3) 0, 0);
5bf970f9
AC
310}
311
312/* Stub function which causes the GDB that runs it, to start ptrace-ing
313 the child process. */
314
315static void
316inf_ptrace_him (int pid)
317{
318 push_target (ptrace_ops_hack);
319
320 /* On some targets, there must be some explicit synchronization
321 between the parent and child processes after the debugger
322 forks, and before the child execs the debuggee program. This
323 call basically gives permission for the child to exec.
324 */
325
326 target_acknowledge_created_inferior (pid);
327
328 /* START_INFERIOR_TRAPS_EXPECTED is defined in inferior.h,
329 * and will be 1 or 2 depending on whether we're starting
330 * without or with a shell.
331 */
332 startup_inferior (START_INFERIOR_TRAPS_EXPECTED);
333
334 /* On some targets, there must be some explicit actions taken after
335 the inferior has been started up.
336 */
337 target_post_startup_inferior (pid_to_ptid (pid));
338}
339
340/* Start an inferior Unix child process and sets inferior_ptid to its
341 pid. EXEC_FILE is the file to run. ALLARGS is a string containing
342 the arguments to the program. ENV is the environment vector to
343 pass. Errors reported with error(). */
344
345static void
346inf_ptrace_create_inferior (char *exec_file, char *allargs, char **env,
347 int from_tty)
348{
349 fork_inferior (exec_file, allargs, env, inf_ptrace_me, inf_ptrace_him,
350 NULL, NULL);
351 /* We are at the first instruction we care about. */
352 observer_notify_inferior_created (&current_target, from_tty);
353 /* Pedal to the metal... */
354 proceed ((CORE_ADDR) -1, TARGET_SIGNAL_0, 0);
355}
356
357static void
358inf_ptrace_post_startup_inferior (ptid_t ptid)
359{
360 /* This version of Unix doesn't require a meaningful "post startup inferior"
361 operation by a debugger.
362 */
363}
364
365static void
366inf_ptrace_acknowledge_created_inferior (int pid)
367{
368 /* This version of Unix doesn't require a meaningful "acknowledge created inferior"
369 operation by a debugger.
370 */
371}
372
373static int
374inf_ptrace_insert_fork_catchpoint (int pid)
375{
376 /* This version of Unix doesn't support notification of fork events. */
377 return 0;
378}
379
380static int
381inf_ptrace_remove_fork_catchpoint (int pid)
382{
383 /* This version of Unix doesn't support notification of fork events. */
384 return 0;
385}
386
387static int
388inf_ptrace_insert_vfork_catchpoint (int pid)
389{
390 /* This version of Unix doesn't support notification of vfork events. */
391 return 0;
392}
393
394static int
395inf_ptrace_remove_vfork_catchpoint (int pid)
396{
397 /* This version of Unix doesn't support notification of vfork events. */
398 return 0;
399}
400
401static int
402inf_ptrace_follow_fork (int follow_child)
403{
404 /* This version of Unix doesn't support following fork or vfork events. */
405 return 0;
406}
407
408static int
409inf_ptrace_insert_exec_catchpoint (int pid)
410{
411 /* This version of Unix doesn't support notification of exec events. */
412 return 0;
413}
414
415static int
416inf_ptrace_remove_exec_catchpoint (int pid)
417{
418 /* This version of Unix doesn't support notification of exec events. */
419 return 0;
420}
421
422static int
423inf_ptrace_reported_exec_events_per_exec_call (void)
424{
425 /* This version of Unix doesn't support notification of exec events.
426 */
427 return 1;
428}
429
430static int
431inf_ptrace_has_exited (int pid, int wait_status, int *exit_status)
432{
433 if (WIFEXITED (wait_status))
434 {
435 *exit_status = WEXITSTATUS (wait_status);
436 return 1;
437 }
438
439 if (WIFSIGNALED (wait_status))
440 {
441 *exit_status = 0; /* ?? Don't know what else to say here. */
442 return 1;
443 }
444
445 /* ?? Do we really need to consult the event state, too? Assume the
446 wait_state alone suffices.
447 */
448 return 0;
449}
450
451static void
452inf_ptrace_mourn_inferior (void)
453{
454 unpush_target (ptrace_ops_hack);
455 generic_mourn_inferior ();
456}
457
458static int
459inf_ptrace_can_run (void)
460{
461 return 1;
462}
463
464/* Send a SIGINT to the process group. This acts just like the user
465 typed a ^C on the controlling terminal.
466
467 XXX - This may not be correct for all systems. Some may want to
468 use killpg() instead of kill (-pgrp). */
469
470static void
471inf_ptrace_stop (void)
472{
473 kill (-inferior_process_group, SIGINT);
474}
475
476/* Perform a partial transfer to/from the specified object. For
477 memory transfers, fall back to the old memory xfer functions. */
478
479static LONGEST
480inf_ptrace_xfer_partial (struct target_ops *ops, enum target_object object,
481 const char *annex, void *readbuf,
482 const void *writebuf, ULONGEST offset, LONGEST len)
483{
484 switch (object)
485 {
486 case TARGET_OBJECT_MEMORY:
f929a579
AC
487#ifdef PT_IO
488 /* OpenBSD 3.1, NetBSD 1.6 and FreeBSD 5.0 have a new PT_IO
489 request that promises to be much more efficient in reading
490 and writing data in the traced process's address space. */
491 {
492 struct ptrace_io_desc piod;
493
494 /* NOTE: We assume that there are no distinct address spaces
495 for instruction and data. */
496 piod.piod_op = writebuf ? PIOD_WRITE_D : PIOD_READ_D;
497 piod.piod_addr = writebuf ? (void *) writebuf : readbuf;
498 piod.piod_offs = (void *) (long) offset;
499 piod.piod_len = len;
500
501 errno = 0;
502 if (ptrace (PT_IO, PIDGET (inferior_ptid), (caddr_t) &piod, 0) == 0)
503 /* Return the actual number of bytes read or written. */
504 return piod.piod_len;
505 /* If the PT_IO request is somehow not supported, fallback on
506 using PT_WRITE_D/PT_READ_D. Otherwise we will return zero
507 to indicate failure. */
508 if (errno != EINVAL)
509 return 0;
510 }
511#endif
512 {
513 union
514 {
515 PTRACE_TYPE_RET word;
516 unsigned char byte[sizeof (PTRACE_TYPE_RET)];
517 } buffer;
518 ULONGEST rounded_offset;
519 LONGEST partial_len;
520
cb85a953
AC
521 /* Round the start offset down to the next long word
522 boundary. */
f929a579
AC
523 rounded_offset = offset & -(ULONGEST) sizeof (PTRACE_TYPE_RET);
524
cb85a953
AC
525 /* Since ptrace will transfer a single word starting at that
526 rounded_offset the partial_len needs to be adjusted down to
527 that (remember this function only does a single transfer).
528 Should the required length be even less, adjust it down
529 again. */
530 partial_len = (rounded_offset + sizeof (PTRACE_TYPE_RET)) - offset;
531 if (partial_len > len)
f929a579
AC
532 partial_len = len;
533
534 if (writebuf)
535 {
cb85a953
AC
536 /* If OFFSET:PARTIAL_LEN is smaller than
537 ROUNDED_OFFSET:WORDSIZE then a read/modify write will
538 be needed. Read in the entire word. */
f929a579 539 if (rounded_offset < offset
cb85a953
AC
540 || (offset + partial_len
541 < rounded_offset + sizeof (PTRACE_TYPE_RET)))
f929a579
AC
542 /* Need part of initial word -- fetch it. */
543 buffer.word = ptrace (PT_READ_I, PIDGET (inferior_ptid),
544 (PTRACE_TYPE_ARG3) (long) rounded_offset,
545 0);
546
547 /* Copy data to be written over corresponding part of
548 buffer. */
549 memcpy (buffer.byte + (offset - rounded_offset), writebuf, partial_len);
550
551 errno = 0;
552 ptrace (PT_WRITE_D, PIDGET (inferior_ptid),
553 (PTRACE_TYPE_ARG3) (long) rounded_offset,
cb85a953 554 buffer.word);
f929a579
AC
555 if (errno)
556 {
557 /* Using the appropriate one (I or D) is necessary for
558 Gould NP1, at least. */
559 errno = 0;
560 ptrace (PT_WRITE_I, PIDGET (inferior_ptid),
561 (PTRACE_TYPE_ARG3) (long) rounded_offset,
cb85a953 562 buffer.word);
f929a579
AC
563 if (errno)
564 return 0;
565 }
566 }
567 if (readbuf)
568 {
569 errno = 0;
570 buffer.word = ptrace (PT_READ_I, PIDGET (inferior_ptid),
571 (PTRACE_TYPE_ARG3) (long) rounded_offset, 0);
572 if (errno)
573 return 0;
574 /* Copy appropriate bytes out of the buffer. */
575 memcpy (readbuf, buffer.byte + (offset - rounded_offset),
576 partial_len);
577 }
578 return partial_len;
579 }
5bf970f9
AC
580
581 case TARGET_OBJECT_UNWIND_TABLE:
582 return -1;
583
584 case TARGET_OBJECT_AUXV:
585 return -1;
586
587 case TARGET_OBJECT_WCOOKIE:
588 return -1;
589
590 default:
591 return -1;
592 }
593}
594
595static char *
596inf_ptrace_pid_to_str (ptid_t ptid)
597{
598 return normal_pid_to_str (ptid);
599}
600
601struct target_ops *
602inf_ptrace_target (void)
603{
604 struct target_ops *t = inf_child_target ();
605 t->to_open = inf_ptrace_open;
606 t->to_attach = inf_ptrace_attach;
607 t->to_post_attach = inf_ptrace_post_attach;
608 t->to_detach = inf_ptrace_detach;
609 t->to_resume = inf_ptrace_resume;
610 t->to_wait = inf_ptrace_wait;
5bf970f9 611 t->to_prepare_to_store = inf_ptrace_prepare_to_store;
5bf970f9
AC
612 t->to_xfer_partial = inf_ptrace_xfer_partial;
613 t->to_files_info = inf_ptrace_files_info;
614 t->to_kill = inf_ptrace_kill_inferior;
615 t->to_create_inferior = inf_ptrace_create_inferior;
616 t->to_post_startup_inferior = inf_ptrace_post_startup_inferior;
617 t->to_acknowledge_created_inferior =
618 inf_ptrace_acknowledge_created_inferior;
619 t->to_insert_fork_catchpoint = inf_ptrace_insert_fork_catchpoint;
620 t->to_remove_fork_catchpoint = inf_ptrace_remove_fork_catchpoint;
621 t->to_insert_vfork_catchpoint = inf_ptrace_insert_vfork_catchpoint;
622 t->to_remove_vfork_catchpoint = inf_ptrace_remove_vfork_catchpoint;
623 t->to_follow_fork = inf_ptrace_follow_fork;
624 t->to_insert_exec_catchpoint = inf_ptrace_insert_exec_catchpoint;
625 t->to_remove_exec_catchpoint = inf_ptrace_remove_exec_catchpoint;
626 t->to_reported_exec_events_per_exec_call =
627 inf_ptrace_reported_exec_events_per_exec_call;
628 t->to_has_exited = inf_ptrace_has_exited;
629 t->to_mourn_inferior = inf_ptrace_mourn_inferior;
630 t->to_can_run = inf_ptrace_can_run;
631 t->to_thread_alive = inf_ptrace_thread_alive;
632 t->to_pid_to_str = inf_ptrace_pid_to_str;
633 t->to_stop = inf_ptrace_stop;
634 t->to_stratum = process_stratum;
635 t->to_has_all_memory = 1;
636 t->to_has_memory = 1;
637 t->to_has_stack = 1;
638 t->to_has_registers = 1;
639 t->to_has_execution = 1;
640 t->to_magic = OPS_MAGIC;
641 ptrace_ops_hack = t;
642 return t;
643}
This page took 0.090869 seconds and 4 git commands to generate.