1 /* Target-vector operations for controlling Unix child processes, for GDB.
2 Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1998, 1999,
4 Free Software Foundation, Inc.
5 Contributed by Cygnus Support.
7 ## Contains temporary hacks..
9 This file is part of GDB.
11 This program is free software; you can redistribute it and/or modify
12 it under the terms of the GNU General Public License as published by
13 the Free Software Foundation; either version 2 of the License, or
14 (at your option) any later version.
16 This program is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 GNU General Public License for more details.
21 You should have received a copy of the GNU General Public License
22 along with this program; if not, write to the Free Software
23 Foundation, Inc., 59 Temple Place - Suite 330,
24 Boston, MA 02111-1307, USA. */
27 #include "frame.h" /* required by inferior.h */
34 #include <sys/types.h>
39 extern struct symtab_and_line
*child_enable_exception_callback (enum
43 extern struct exception_event_record
44 *child_get_current_exception_event (void);
46 extern void _initialize_inftarg (void);
48 static void child_prepare_to_store (void);
51 static ptid_t
child_wait (ptid_t
, struct target_waitstatus
*);
52 #endif /* CHILD_WAIT */
54 #if !defined(CHILD_POST_WAIT)
55 void child_post_wait (ptid_t
, int);
58 static void child_open (char *, int);
60 static void child_files_info (struct target_ops
*);
62 static void child_detach (char *, int);
64 static void child_detach_from_process (int, char *, int, int);
66 static void child_attach (char *, int);
68 static void child_attach_to_process (char *, int, int);
70 #if !defined(CHILD_POST_ATTACH)
71 extern void child_post_attach (int);
74 static void child_require_attach (char *, int);
76 static void child_require_detach (int, char *, int);
78 static void ptrace_me (void);
80 static void ptrace_him (int);
82 static void child_create_inferior (char *, char *, char **);
84 static void child_mourn_inferior (void);
86 static int child_can_run (void);
88 static void child_stop (void);
90 #ifndef CHILD_THREAD_ALIVE
91 int child_thread_alive (ptid_t
);
94 static void init_child_ops (void);
96 extern char **environ
;
98 struct target_ops child_ops
;
100 int child_suppress_run
= 0; /* Non-zero if inftarg should pretend not to
101 be a runnable target. Used by targets
102 that can sit atop inftarg, such as HPUX
107 /* Wait for child to do something. Return pid of child, or -1 in case
108 of error; store status through argument pointer OURSTATUS. */
111 child_wait (ptid_t ptid
, struct target_waitstatus
*ourstatus
)
115 char *execd_pathname
= NULL
;
119 enum target_waitkind kind
;
124 set_sigint_trap (); /* Causes SIGINT to be passed on to the
128 pid
= ptrace_wait (inferior_ptid
, &status
);
134 clear_sigint_trap ();
138 if (save_errno
== EINTR
)
141 fprintf_unfiltered (gdb_stderr
, "Child process unexpectedly missing: %s.\n",
142 safe_strerror (save_errno
));
144 /* Claim it exited with unknown signal. */
145 ourstatus
->kind
= TARGET_WAITKIND_SIGNALLED
;
146 ourstatus
->value
.sig
= TARGET_SIGNAL_UNKNOWN
;
147 return pid_to_ptid (-1);
152 if (target_has_exited (pid
, status
, &exit_status
))
154 /* ??rehrauer: For now, ignore this. */
158 if (!target_thread_alive (pid_to_ptid (pid
)))
160 ourstatus
->kind
= TARGET_WAITKIND_SPURIOUS
;
161 return pid_to_ptid (pid
);
163 } while (pid
!= PIDGET (inferior_ptid
)); /* Some other child died or stopped */
165 store_waitstatus (ourstatus
, status
);
166 return pid_to_ptid (pid
);
168 #endif /* CHILD_WAIT */
170 #if !defined(CHILD_POST_WAIT)
172 child_post_wait (ptid_t ptid
, int wait_status
)
174 /* This version of Unix doesn't require a meaningful "post wait"
181 #ifndef CHILD_THREAD_ALIVE
183 /* Check to see if the given thread is alive.
185 FIXME: Is kill() ever the right way to do this? I doubt it, but
186 for now we're going to try and be compatable with the old thread
189 child_thread_alive (ptid_t ptid
)
191 pid_t pid
= PIDGET (ptid
);
193 return (kill (pid
, 0) != -1);
199 child_attach_to_process (char *args
, int from_tty
, int after_fork
)
202 error_no_arg ("process-id to attach");
204 #ifndef ATTACH_DETACH
205 error ("Can't attach to a process on this machine.");
213 pid
= strtol (args
, &dummy
, 0);
214 /* Some targets don't set errno on errors, grrr! */
215 if ((pid
== 0) && (args
== dummy
))
216 error ("Illegal process-id: %s\n", args
);
218 if (pid
== getpid ()) /* Trying to masturbate? */
219 error ("I refuse to debug myself!");
223 exec_file
= (char *) get_exec_file (0);
226 printf_unfiltered ("Attaching after fork to %s\n",
227 target_pid_to_str (pid_to_ptid (pid
)));
229 printf_unfiltered ("Attaching to program: %s, %s\n", exec_file
,
230 target_pid_to_str (pid_to_ptid (pid
)));
232 printf_unfiltered ("Attaching to %s\n",
233 target_pid_to_str (pid_to_ptid (pid
)));
235 gdb_flush (gdb_stdout
);
241 REQUIRE_ATTACH (pid
);
243 inferior_ptid
= pid_to_ptid (pid
);
244 push_target (&child_ops
);
246 #endif /* ATTACH_DETACH */
250 /* Attach to process PID, then initialize for debugging it. */
253 child_attach (char *args
, int from_tty
)
255 child_attach_to_process (args
, from_tty
, 0);
258 #if !defined(CHILD_POST_ATTACH)
260 child_post_attach (int pid
)
262 /* This version of Unix doesn't require a meaningful "post attach"
263 operation by a debugger. */
268 child_require_attach (char *args
, int from_tty
)
270 child_attach_to_process (args
, from_tty
, 1);
274 child_detach_from_process (int pid
, char *args
, int from_tty
, int after_fork
)
282 char *exec_file
= get_exec_file (0);
286 printf_unfiltered ("Detaching after fork from %s\n",
287 target_pid_to_str (pid_to_ptid (pid
)));
289 printf_unfiltered ("Detaching from program: %s, %s\n", exec_file
,
290 target_pid_to_str (pid_to_ptid (pid
)));
291 gdb_flush (gdb_stdout
);
294 siggnal
= atoi (args
);
299 REQUIRE_DETACH (pid
, siggnal
);
302 error ("This version of Unix does not support detaching a process.");
306 /* Take a program previously attached to and detaches it.
307 The program resumes execution and will no longer stop
308 on signals, etc. We'd better not have left any breakpoints
309 in the program or it'll die when it hits one. For this
310 to work, it may be necessary for the process to have been
311 previously attached. It *might* work if the program was
312 started via the normal ptrace (PTRACE_TRACEME). */
315 child_detach (char *args
, int from_tty
)
317 child_detach_from_process (PIDGET (inferior_ptid
), args
, from_tty
, 0);
318 inferior_ptid
= null_ptid
;
319 unpush_target (&child_ops
);
323 child_require_detach (int pid
, char *args
, int from_tty
)
325 child_detach_from_process (pid
, args
, from_tty
, 1);
329 /* Get ready to modify the registers array. On machines which store
330 individual registers, this doesn't need to do anything. On machines
331 which store all the registers in one fell swoop, this makes sure
332 that registers contains all the registers from the program being
336 child_prepare_to_store (void)
338 #ifdef CHILD_PREPARE_TO_STORE
339 CHILD_PREPARE_TO_STORE ();
343 /* Print status information about what we're accessing. */
346 child_files_info (struct target_ops
*ignore
)
348 printf_unfiltered ("\tUsing the running image of %s %s.\n",
349 attach_flag
? "attached" : "child", target_pid_to_str (inferior_ptid
));
354 child_open (char *arg
, int from_tty
)
356 error ("Use the \"run\" command to start a Unix child process.");
359 /* Stub function which causes the inferior that runs it, to be ptrace-able
360 by its parent process. */
365 /* "Trace me, Dr. Memory!" */
366 call_ptrace (0, 0, (PTRACE_ARG3_TYPE
) 0, 0);
369 /* Stub function which causes the GDB that runs it, to start ptrace-ing
370 the child process. */
375 push_target (&child_ops
);
377 /* On some targets, there must be some explicit synchronization
378 between the parent and child processes after the debugger
379 forks, and before the child execs the debuggee program. This
380 call basically gives permission for the child to exec.
383 target_acknowledge_created_inferior (pid
);
385 /* START_INFERIOR_TRAPS_EXPECTED is defined in inferior.h,
386 * and will be 1 or 2 depending on whether we're starting
387 * without or with a shell.
389 startup_inferior (START_INFERIOR_TRAPS_EXPECTED
);
391 /* On some targets, there must be some explicit actions taken after
392 the inferior has been started up.
394 target_post_startup_inferior (pid_to_ptid (pid
));
397 /* Start an inferior Unix child process and sets inferior_ptid to its pid.
398 EXEC_FILE is the file to run.
399 ALLARGS is a string containing the arguments to the program.
400 ENV is the environment vector to pass. Errors reported with error(). */
403 child_create_inferior (char *exec_file
, char *allargs
, char **env
)
406 fork_inferior (exec_file
, allargs
, env
, ptrace_me
, ptrace_him
, pre_fork_inferior
, NULL
);
408 fork_inferior (exec_file
, allargs
, env
, ptrace_me
, ptrace_him
, NULL
, NULL
);
410 /* We are at the first instruction we care about. */
411 /* Pedal to the metal... */
412 proceed ((CORE_ADDR
) -1, TARGET_SIGNAL_0
, 0);
415 #if !defined(CHILD_POST_STARTUP_INFERIOR)
417 child_post_startup_inferior (ptid_t ptid
)
419 /* This version of Unix doesn't require a meaningful "post startup inferior"
420 operation by a debugger.
425 #if !defined(CHILD_ACKNOWLEDGE_CREATED_INFERIOR)
427 child_acknowledge_created_inferior (int pid
)
429 /* This version of Unix doesn't require a meaningful "acknowledge created inferior"
430 operation by a debugger.
436 #if !defined(CHILD_INSERT_FORK_CATCHPOINT)
438 child_insert_fork_catchpoint (int pid
)
440 /* This version of Unix doesn't support notification of fork events. */
445 #if !defined(CHILD_REMOVE_FORK_CATCHPOINT)
447 child_remove_fork_catchpoint (int pid
)
449 /* This version of Unix doesn't support notification of fork events. */
454 #if !defined(CHILD_INSERT_VFORK_CATCHPOINT)
456 child_insert_vfork_catchpoint (int pid
)
458 /* This version of Unix doesn't support notification of vfork events. */
463 #if !defined(CHILD_REMOVE_VFORK_CATCHPOINT)
465 child_remove_vfork_catchpoint (int pid
)
467 /* This version of Unix doesn't support notification of vfork events. */
472 #if !defined(CHILD_FOLLOW_FORK)
474 child_follow_fork (int follow_child
)
476 /* This version of Unix doesn't support following fork or vfork events. */
481 #if !defined(CHILD_INSERT_EXEC_CATCHPOINT)
483 child_insert_exec_catchpoint (int pid
)
485 /* This version of Unix doesn't support notification of exec events. */
490 #if !defined(CHILD_REMOVE_EXEC_CATCHPOINT)
492 child_remove_exec_catchpoint (int pid
)
494 /* This version of Unix doesn't support notification of exec events. */
499 #if !defined(CHILD_REPORTED_EXEC_EVENTS_PER_EXEC_CALL)
501 child_reported_exec_events_per_exec_call (void)
503 /* This version of Unix doesn't support notification of exec events.
509 #if !defined(CHILD_HAS_EXITED)
511 child_has_exited (int pid
, int wait_status
, int *exit_status
)
513 if (WIFEXITED (wait_status
))
515 *exit_status
= WEXITSTATUS (wait_status
);
519 if (WIFSIGNALED (wait_status
))
521 *exit_status
= 0; /* ?? Don't know what else to say here. */
525 /* ?? Do we really need to consult the event state, too? Assume the
526 wait_state alone suffices.
534 child_mourn_inferior (void)
536 unpush_target (&child_ops
);
537 generic_mourn_inferior ();
543 /* This variable is controlled by modules that sit atop inftarg that may layer
544 their own process structure atop that provided here. hpux-thread.c does
545 this because of the Hpux user-mode level thread model. */
547 return !child_suppress_run
;
550 /* Send a SIGINT to the process group. This acts just like the user typed a
551 ^C on the controlling terminal.
553 XXX - This may not be correct for all systems. Some may want to use
554 killpg() instead of kill (-pgrp). */
559 extern pid_t inferior_process_group
;
561 kill (-inferior_process_group
, SIGINT
);
564 #if !defined(CHILD_ENABLE_EXCEPTION_CALLBACK)
565 struct symtab_and_line
*
566 child_enable_exception_callback (enum exception_event_kind kind
, int enable
)
568 return (struct symtab_and_line
*) NULL
;
572 #if !defined(CHILD_GET_CURRENT_EXCEPTION_EVENT)
573 struct exception_event_record
*
574 child_get_current_exception_event (void)
576 return (struct exception_event_record
*) NULL
;
581 #if !defined(CHILD_PID_TO_EXEC_FILE)
583 child_pid_to_exec_file (int pid
)
585 /* This version of Unix doesn't support translation of a process ID
586 to the filename of the executable file.
593 child_core_file_to_sym_file (char *core
)
595 /* The target stratum for a running executable need not support
602 #if !defined(CHILD_PID_TO_STR)
604 child_pid_to_str (ptid_t ptid
)
606 return normal_pid_to_str (ptid
);
611 init_child_ops (void)
613 child_ops
.to_shortname
= "child";
614 child_ops
.to_longname
= "Unix child process";
615 child_ops
.to_doc
= "Unix child process (started by the \"run\" command).";
616 child_ops
.to_open
= child_open
;
617 child_ops
.to_attach
= child_attach
;
618 child_ops
.to_post_attach
= child_post_attach
;
619 child_ops
.to_require_attach
= child_require_attach
;
620 child_ops
.to_detach
= child_detach
;
621 child_ops
.to_require_detach
= child_require_detach
;
622 child_ops
.to_resume
= child_resume
;
623 child_ops
.to_wait
= child_wait
;
624 child_ops
.to_post_wait
= child_post_wait
;
625 child_ops
.to_fetch_registers
= fetch_inferior_registers
;
626 child_ops
.to_store_registers
= store_inferior_registers
;
627 child_ops
.to_prepare_to_store
= child_prepare_to_store
;
628 child_ops
.to_xfer_memory
= child_xfer_memory
;
629 child_ops
.to_files_info
= child_files_info
;
630 child_ops
.to_insert_breakpoint
= memory_insert_breakpoint
;
631 child_ops
.to_remove_breakpoint
= memory_remove_breakpoint
;
632 child_ops
.to_terminal_init
= terminal_init_inferior
;
633 child_ops
.to_terminal_inferior
= terminal_inferior
;
634 child_ops
.to_terminal_ours_for_output
= terminal_ours_for_output
;
635 child_ops
.to_terminal_save_ours
= terminal_save_ours
;
636 child_ops
.to_terminal_ours
= terminal_ours
;
637 child_ops
.to_terminal_info
= child_terminal_info
;
638 child_ops
.to_kill
= kill_inferior
;
639 child_ops
.to_create_inferior
= child_create_inferior
;
640 child_ops
.to_post_startup_inferior
= child_post_startup_inferior
;
641 child_ops
.to_acknowledge_created_inferior
= child_acknowledge_created_inferior
;
642 child_ops
.to_insert_fork_catchpoint
= child_insert_fork_catchpoint
;
643 child_ops
.to_remove_fork_catchpoint
= child_remove_fork_catchpoint
;
644 child_ops
.to_insert_vfork_catchpoint
= child_insert_vfork_catchpoint
;
645 child_ops
.to_remove_vfork_catchpoint
= child_remove_vfork_catchpoint
;
646 child_ops
.to_follow_fork
= child_follow_fork
;
647 child_ops
.to_insert_exec_catchpoint
= child_insert_exec_catchpoint
;
648 child_ops
.to_remove_exec_catchpoint
= child_remove_exec_catchpoint
;
649 child_ops
.to_reported_exec_events_per_exec_call
= child_reported_exec_events_per_exec_call
;
650 child_ops
.to_has_exited
= child_has_exited
;
651 child_ops
.to_mourn_inferior
= child_mourn_inferior
;
652 child_ops
.to_can_run
= child_can_run
;
653 child_ops
.to_thread_alive
= child_thread_alive
;
654 child_ops
.to_pid_to_str
= child_pid_to_str
;
655 child_ops
.to_stop
= child_stop
;
656 child_ops
.to_enable_exception_callback
= child_enable_exception_callback
;
657 child_ops
.to_get_current_exception_event
= child_get_current_exception_event
;
658 child_ops
.to_pid_to_exec_file
= child_pid_to_exec_file
;
659 child_ops
.to_stratum
= process_stratum
;
660 child_ops
.to_has_all_memory
= 1;
661 child_ops
.to_has_memory
= 1;
662 child_ops
.to_has_stack
= 1;
663 child_ops
.to_has_registers
= 1;
664 child_ops
.to_has_execution
= 1;
665 child_ops
.to_magic
= OPS_MAGIC
;
668 /* Take over the 'find_mapped_memory' vector from inftarg.c. */
670 inftarg_set_find_memory_regions (int (*func
) (int (*) (CORE_ADDR
,
676 child_ops
.to_find_memory_regions
= func
;
679 /* Take over the 'make_corefile_notes' vector from inftarg.c. */
681 inftarg_set_make_corefile_notes (char * (*func
) (bfd
*, int *))
683 child_ops
.to_make_corefile_notes
= func
;
687 _initialize_inftarg (void)
689 #ifdef HAVE_OPTIONAL_PROC_FS
693 /* If we have an optional /proc filesystem (e.g. under OSF/1),
694 don't add ptrace support if we can access the running GDB via /proc. */
695 #ifndef PROC_NAME_FMT
696 #define PROC_NAME_FMT "/proc/%05d"
698 sprintf (procname
, PROC_NAME_FMT
, getpid ());
699 if ((fd
= open (procname
, O_RDONLY
)) >= 0)
707 add_target (&child_ops
);