1 /* Target-vector operations for controlling Unix child processes, for GDB.
3 Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1998, 1999,
4 2000, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
6 Contributed by Cygnus Support.
8 ## Contains temporary hacks..
10 This file is part of GDB.
12 This program is free software; you can redistribute it and/or modify
13 it under the terms of the GNU General Public License as published by
14 the Free Software Foundation; either version 2 of the License, or
15 (at your option) any later version.
17 This program is distributed in the hope that it will be useful,
18 but WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 GNU General Public License for more details.
22 You should have received a copy of the GNU General Public License
23 along with this program; if not, write to the Free Software
24 Foundation, Inc., 59 Temple Place - Suite 330,
25 Boston, MA 02111-1307, USA. */
28 #include "frame.h" /* required by inferior.h */
35 #include <sys/types.h>
41 extern struct symtab_and_line *child_enable_exception_callback (enum
45 extern struct exception_event_record
46 *child_get_current_exception_event (void);
48 extern void _initialize_inftarg (void);
50 static void child_prepare_to_store (void);
53 static ptid_t child_wait (ptid_t, struct target_waitstatus *);
54 #endif /* CHILD_WAIT */
56 static void child_open (char *, int);
58 static void child_files_info (struct target_ops *);
60 static void child_detach (char *, int);
62 static void child_attach (char *, int);
64 #if !defined(CHILD_POST_ATTACH)
65 extern void child_post_attach (int);
68 static void ptrace_me (void);
70 static void ptrace_him (int);
72 static void child_create_inferior (char *, char *, char **, int);
74 static void child_mourn_inferior (void);
76 static int child_can_run (void);
78 static void child_stop (void);
80 #ifndef CHILD_THREAD_ALIVE
81 int child_thread_alive (ptid_t);
84 static void init_child_ops (void);
86 extern char **environ;
88 int child_suppress_run = 0; /* Non-zero if inftarg should pretend not to
89 be a runnable target. Used by targets
90 that can sit atop inftarg, such as HPUX
95 /* Wait for child to do something. Return pid of child, or -1 in case
96 of error; store status through argument pointer OURSTATUS. */
99 child_wait (ptid_t ptid, struct target_waitstatus *ourstatus)
103 char *execd_pathname = NULL;
107 enum target_waitkind kind;
112 set_sigint_trap (); /* Causes SIGINT to be passed on to the
116 pid = wait (&status);
122 clear_sigint_trap ();
126 if (save_errno == EINTR)
129 fprintf_unfiltered (gdb_stderr, "Child process unexpectedly missing: %s.\n",
130 safe_strerror (save_errno));
132 /* Claim it exited with unknown signal. */
133 ourstatus->kind = TARGET_WAITKIND_SIGNALLED;
134 ourstatus->value.sig = TARGET_SIGNAL_UNKNOWN;
135 return pid_to_ptid (-1);
140 if (target_has_exited (pid, status, &exit_status))
142 /* ??rehrauer: For now, ignore this. */
146 if (!target_thread_alive (pid_to_ptid (pid)))
148 ourstatus->kind = TARGET_WAITKIND_SPURIOUS;
149 return pid_to_ptid (pid);
151 } while (pid != PIDGET (inferior_ptid)); /* Some other child died or stopped */
153 store_waitstatus (ourstatus, status);
154 return pid_to_ptid (pid);
156 #endif /* CHILD_WAIT */
158 #ifndef CHILD_THREAD_ALIVE
160 /* Check to see if the given thread is alive.
162 FIXME: Is kill() ever the right way to do this? I doubt it, but
163 for now we're going to try and be compatable with the old thread
166 child_thread_alive (ptid_t ptid)
168 pid_t pid = PIDGET (ptid);
170 return (kill (pid, 0) != -1);
175 /* Attach to process PID, then initialize for debugging it. */
178 child_attach (char *args, int from_tty)
185 error_no_arg (_("process-id to attach"));
188 pid = strtol (args, &dummy, 0);
189 /* Some targets don't set errno on errors, grrr! */
190 if ((pid == 0) && (args == dummy))
191 error (_("Illegal process-id: %s."), args);
193 if (pid == getpid ()) /* Trying to masturbate? */
194 error (_("I refuse to debug myself!"));
198 exec_file = (char *) get_exec_file (0);
201 printf_unfiltered (_("Attaching to program: %s, %s\n"), exec_file,
202 target_pid_to_str (pid_to_ptid (pid)));
204 printf_unfiltered (_("Attaching to %s\n"),
205 target_pid_to_str (pid_to_ptid (pid)));
207 gdb_flush (gdb_stdout);
212 inferior_ptid = pid_to_ptid (pid);
213 push_target (&deprecated_child_ops);
215 /* Do this first, before anything has had a chance to query the
216 inferior's symbol table or similar. */
217 observer_notify_inferior_created (¤t_target, from_tty);
220 #if !defined(CHILD_POST_ATTACH)
222 child_post_attach (int pid)
224 /* This version of Unix doesn't require a meaningful "post attach"
225 operation by a debugger. */
229 /* Take a program previously attached to and detaches it.
230 The program resumes execution and will no longer stop
231 on signals, etc. We'd better not have left any breakpoints
232 in the program or it'll die when it hits one. For this
233 to work, it may be necessary for the process to have been
234 previously attached. It *might* work if the program was
235 started via the normal ptrace (PTRACE_TRACEME). */
238 child_detach (char *args, int from_tty)
241 int pid = PIDGET (inferior_ptid);
245 char *exec_file = get_exec_file (0);
248 printf_unfiltered (_("Detaching from program: %s, %s\n"), exec_file,
249 target_pid_to_str (pid_to_ptid (pid)));
250 gdb_flush (gdb_stdout);
253 siggnal = atoi (args);
257 inferior_ptid = null_ptid;
258 unpush_target (&deprecated_child_ops);
261 /* Get ready to modify the registers array. On machines which store
262 individual registers, this doesn't need to do anything. On machines
263 which store all the registers in one fell swoop, this makes sure
264 that registers contains all the registers from the program being
268 child_prepare_to_store (void)
270 #ifdef CHILD_PREPARE_TO_STORE
271 CHILD_PREPARE_TO_STORE ();
275 /* Print status information about what we're accessing. */
278 child_files_info (struct target_ops *ignore)
280 printf_unfiltered (_("\tUsing the running image of %s %s.\n"),
281 attach_flag ? "attached" : "child", target_pid_to_str (inferior_ptid));
285 child_open (char *arg, int from_tty)
287 error (_("Use the \"run\" command to start a Unix child process."));
290 /* Stub function which causes the inferior that runs it, to be ptrace-able
291 by its parent process. */
296 /* "Trace me, Dr. Memory!" */
297 call_ptrace (0, 0, (PTRACE_TYPE_ARG3) 0, 0);
300 /* Stub function which causes the GDB that runs it, to start ptrace-ing
301 the child process. */
306 push_target (&deprecated_child_ops);
308 /* On some targets, there must be some explicit synchronization
309 between the parent and child processes after the debugger
310 forks, and before the child execs the debuggee program. This
311 call basically gives permission for the child to exec.
314 target_acknowledge_created_inferior (pid);
316 /* START_INFERIOR_TRAPS_EXPECTED is defined in inferior.h,
317 * and will be 1 or 2 depending on whether we're starting
318 * without or with a shell.
320 startup_inferior (START_INFERIOR_TRAPS_EXPECTED);
322 /* On some targets, there must be some explicit actions taken after
323 the inferior has been started up.
325 target_post_startup_inferior (pid_to_ptid (pid));
328 /* Start an inferior Unix child process and sets inferior_ptid to its pid.
329 EXEC_FILE is the file to run.
330 ALLARGS is a string containing the arguments to the program.
331 ENV is the environment vector to pass. Errors reported with error(). */
334 child_create_inferior (char *exec_file, char *allargs, char **env,
337 fork_inferior (exec_file, allargs, env, ptrace_me, ptrace_him, NULL, NULL);
339 /* We are at the first instruction we care about. */
340 observer_notify_inferior_created (¤t_target, from_tty);
341 /* Pedal to the metal... */
342 proceed ((CORE_ADDR) -1, TARGET_SIGNAL_0, 0);
345 #if !defined(CHILD_POST_STARTUP_INFERIOR)
347 child_post_startup_inferior (ptid_t ptid)
349 /* This version of Unix doesn't require a meaningful "post startup inferior"
350 operation by a debugger.
355 #if !defined(CHILD_ACKNOWLEDGE_CREATED_INFERIOR)
357 child_acknowledge_created_inferior (int pid)
359 /* This version of Unix doesn't require a meaningful "acknowledge created inferior"
360 operation by a debugger.
366 #if !defined(CHILD_INSERT_FORK_CATCHPOINT)
368 child_insert_fork_catchpoint (int pid)
370 /* This version of Unix doesn't support notification of fork
375 #if !defined(CHILD_REMOVE_FORK_CATCHPOINT)
377 child_remove_fork_catchpoint (int pid)
379 /* This version of Unix doesn't support notification of fork events. */
384 #if !defined(CHILD_INSERT_VFORK_CATCHPOINT)
386 child_insert_vfork_catchpoint (int pid)
388 /* This version of Unix doesn't support notification of vfork
393 #if !defined(CHILD_REMOVE_VFORK_CATCHPOINT)
395 child_remove_vfork_catchpoint (int pid)
397 /* This version of Unix doesn't support notification of vfork events. */
402 #if !defined(CHILD_FOLLOW_FORK)
404 child_follow_fork (struct target_ops *ops, int follow_child)
406 /* This version of Unix doesn't support following fork or vfork events. */
411 #if !defined(CHILD_INSERT_EXEC_CATCHPOINT)
413 child_insert_exec_catchpoint (int pid)
415 /* This version of Unix doesn't support notification of exec
420 #if !defined(CHILD_REMOVE_EXEC_CATCHPOINT)
422 child_remove_exec_catchpoint (int pid)
424 /* This version of Unix doesn't support notification of exec events. */
429 #if !defined(CHILD_REPORTED_EXEC_EVENTS_PER_EXEC_CALL)
431 child_reported_exec_events_per_exec_call (void)
433 /* This version of Unix doesn't support notification of exec events.
439 #if !defined(CHILD_HAS_EXITED)
441 child_has_exited (int pid, int wait_status, int *exit_status)
443 if (WIFEXITED (wait_status))
445 *exit_status = WEXITSTATUS (wait_status);
449 if (WIFSIGNALED (wait_status))
451 *exit_status = 0; /* ?? Don't know what else to say here. */
455 /* ?? Do we really need to consult the event state, too? Assume the
456 wait_state alone suffices.
464 child_mourn_inferior (void)
466 unpush_target (&deprecated_child_ops);
467 generic_mourn_inferior ();
473 /* This variable is controlled by modules that sit atop inftarg that may layer
474 their own process structure atop that provided here. hpux-thread.c does
475 this because of the Hpux user-mode level thread model. */
477 return !child_suppress_run;
480 /* Send a SIGINT to the process group. This acts just like the user typed a
481 ^C on the controlling terminal.
483 XXX - This may not be correct for all systems. Some may want to use
484 killpg() instead of kill (-pgrp). */
489 kill (-inferior_process_group, SIGINT);
492 #if !defined(CHILD_ENABLE_EXCEPTION_CALLBACK)
493 struct symtab_and_line *
494 child_enable_exception_callback (enum exception_event_kind kind, int enable)
496 return (struct symtab_and_line *) NULL;
500 #if !defined(CHILD_GET_CURRENT_EXCEPTION_EVENT)
501 struct exception_event_record *
502 child_get_current_exception_event (void)
504 return (struct exception_event_record *) NULL;
509 #if !defined(CHILD_PID_TO_EXEC_FILE)
511 child_pid_to_exec_file (int pid)
513 /* This version of Unix doesn't support translation of a process ID
514 to the filename of the executable file.
521 child_core_file_to_sym_file (char *core)
523 /* The target stratum for a running executable need not support
529 /* Perform a partial transfer to/from the specified object. For
530 memory transfers, fall back to the old memory xfer functions. */
533 child_xfer_partial (struct target_ops *ops, enum target_object object,
534 const char *annex, gdb_byte *readbuf,
535 const gdb_byte *writebuf, ULONGEST offset, LONGEST len)
539 case TARGET_OBJECT_MEMORY:
541 return child_xfer_memory (offset, readbuf, len, 0/*write*/,
544 return child_xfer_memory (offset, (void *) writebuf, len, 1/*write*/,
548 case TARGET_OBJECT_UNWIND_TABLE:
549 #ifndef NATIVE_XFER_UNWIND_TABLE
550 #define NATIVE_XFER_UNWIND_TABLE(OPS,OBJECT,ANNEX,WRITEBUF,READBUF,OFFSET,LEN) (-1)
552 return NATIVE_XFER_UNWIND_TABLE (ops, object, annex, readbuf, writebuf,
555 case TARGET_OBJECT_AUXV:
556 #ifndef NATIVE_XFER_AUXV
557 #define NATIVE_XFER_AUXV(OPS,OBJECT,ANNEX,WRITEBUF,READBUF,OFFSET,LEN) (-1)
559 return NATIVE_XFER_AUXV (ops, object, annex, readbuf, writebuf,
567 #if !defined(CHILD_PID_TO_STR)
569 child_pid_to_str (ptid_t ptid)
571 return normal_pid_to_str (ptid);
576 init_child_ops (void)
578 deprecated_child_ops.to_shortname = "child";
579 deprecated_child_ops.to_longname = "Unix child process";
580 deprecated_child_ops.to_doc = "Unix child process (started by the \"run\" command).";
581 deprecated_child_ops.to_open = child_open;
582 deprecated_child_ops.to_attach = child_attach;
583 deprecated_child_ops.to_post_attach = child_post_attach;
584 deprecated_child_ops.to_detach = child_detach;
585 deprecated_child_ops.to_resume = child_resume;
586 deprecated_child_ops.to_wait = child_wait;
587 deprecated_child_ops.to_fetch_registers = fetch_inferior_registers;
588 deprecated_child_ops.to_store_registers = store_inferior_registers;
589 deprecated_child_ops.to_prepare_to_store = child_prepare_to_store;
590 deprecated_child_ops.deprecated_xfer_memory = child_xfer_memory;
591 deprecated_child_ops.to_xfer_partial = child_xfer_partial;
592 deprecated_child_ops.to_files_info = child_files_info;
593 deprecated_child_ops.to_insert_breakpoint = memory_insert_breakpoint;
594 deprecated_child_ops.to_remove_breakpoint = memory_remove_breakpoint;
595 deprecated_child_ops.to_terminal_init = terminal_init_inferior;
596 deprecated_child_ops.to_terminal_inferior = terminal_inferior;
597 deprecated_child_ops.to_terminal_ours_for_output = terminal_ours_for_output;
598 deprecated_child_ops.to_terminal_save_ours = terminal_save_ours;
599 deprecated_child_ops.to_terminal_ours = terminal_ours;
600 deprecated_child_ops.to_terminal_info = child_terminal_info;
601 deprecated_child_ops.to_kill = kill_inferior;
602 deprecated_child_ops.to_create_inferior = child_create_inferior;
603 deprecated_child_ops.to_post_startup_inferior = child_post_startup_inferior;
604 deprecated_child_ops.to_acknowledge_created_inferior = child_acknowledge_created_inferior;
605 deprecated_child_ops.to_insert_fork_catchpoint = child_insert_fork_catchpoint;
606 deprecated_child_ops.to_remove_fork_catchpoint = child_remove_fork_catchpoint;
607 deprecated_child_ops.to_insert_vfork_catchpoint = child_insert_vfork_catchpoint;
608 deprecated_child_ops.to_remove_vfork_catchpoint = child_remove_vfork_catchpoint;
609 deprecated_child_ops.to_follow_fork = child_follow_fork;
610 deprecated_child_ops.to_insert_exec_catchpoint = child_insert_exec_catchpoint;
611 deprecated_child_ops.to_remove_exec_catchpoint = child_remove_exec_catchpoint;
612 deprecated_child_ops.to_reported_exec_events_per_exec_call = child_reported_exec_events_per_exec_call;
613 deprecated_child_ops.to_has_exited = child_has_exited;
614 deprecated_child_ops.to_mourn_inferior = child_mourn_inferior;
615 deprecated_child_ops.to_can_run = child_can_run;
616 deprecated_child_ops.to_thread_alive = child_thread_alive;
617 deprecated_child_ops.to_pid_to_str = child_pid_to_str;
618 deprecated_child_ops.to_stop = child_stop;
619 deprecated_child_ops.to_enable_exception_callback = child_enable_exception_callback;
620 deprecated_child_ops.to_get_current_exception_event = child_get_current_exception_event;
621 deprecated_child_ops.to_pid_to_exec_file = child_pid_to_exec_file;
622 deprecated_child_ops.to_stratum = process_stratum;
623 deprecated_child_ops.to_has_all_memory = 1;
624 deprecated_child_ops.to_has_memory = 1;
625 deprecated_child_ops.to_has_stack = 1;
626 deprecated_child_ops.to_has_registers = 1;
627 deprecated_child_ops.to_has_execution = 1;
628 deprecated_child_ops.to_magic = OPS_MAGIC;
632 _initialize_inftarg (void)
634 #ifdef HAVE_OPTIONAL_PROC_FS
638 /* If we have an optional /proc filesystem (e.g. under OSF/1),
639 don't add ptrace support if we can access the running GDB via /proc. */
640 #ifndef PROC_NAME_FMT
641 #define PROC_NAME_FMT "/proc/%05d"
643 sprintf (procname, PROC_NAME_FMT, getpid ());
644 fd = open (procname, O_RDONLY);
653 add_target (&deprecated_child_ops);