2 * Server-side ptrace support
4 * Copyright (C) 1999 Alexandre Julliard
13 #include <sys/types.h>
14 #include <sys/ptrace.h>
15 #ifdef HAVE_SYS_WAIT_H
25 #define PTRACE_CONT PT_CONTINUE
28 #define PTRACE_ATTACH PT_ATTACH
31 #define PTRACE_DETACH PT_DETACH
33 #ifndef PTRACE_PEEKDATA
34 #define PTRACE_PEEKDATA PT_READ_D
36 #ifndef PTRACE_POKEDATA
37 #define PTRACE_POKEDATA PT_WRITE_D
40 static const int use_ptrace
= 1; /* set to 0 to disable ptrace */
42 /* handle a status returned by wait4 */
43 static int handle_child_status( struct thread
*thread
, int pid
, int status
)
45 if (WIFSTOPPED(status
))
47 int sig
= WSTOPSIG(status
);
48 if (debug_level
&& thread
)
49 fprintf( stderr
, "%08x: *signal* signal=%d\n", (unsigned int)thread
, sig
);
52 case SIGSTOP
: /* continue at once if not suspended */
53 if (!thread
|| !(thread
->process
->suspend
+ thread
->suspend
))
54 ptrace( PTRACE_CONT
, pid
, 1, sig
);
56 default: /* ignore other signals for now */
57 ptrace( PTRACE_CONT
, pid
, 1, sig
);
62 if (thread
&& (WIFSIGNALED(status
) || WIFEXITED(status
)))
68 if (WIFSIGNALED(status
))
69 fprintf( stderr
, "%08x: *exited* signal=%d\n",
70 (unsigned int)thread
, WTERMSIG(status
) );
72 fprintf( stderr
, "%08x: *exited* status=%d\n",
73 (unsigned int)thread
, WEXITSTATUS(status
) );
79 /* handle a SIGCHLD signal */
80 void sigchld_handler()
86 if (!(pid
= wait4( -1, &status
, WUNTRACED
| WNOHANG
, NULL
))) break;
87 if (pid
!= -1) handle_child_status( get_thread_from_pid(pid
), pid
, status
);
92 /* wait for a ptraced child to get a certain signal */
93 void wait4_thread( struct thread
*thread
, int signal
)
99 if ((res
= wait4( thread
->unix_pid
, &status
, WUNTRACED
, NULL
)) == -1)
104 res
= handle_child_status( thread
, res
, status
);
105 } while (res
&& res
!= signal
);
108 /* attach to a Unix thread */
109 static int attach_thread( struct thread
*thread
)
111 /* this may fail if the client is already being debugged */
112 if (!use_ptrace
|| (ptrace( PTRACE_ATTACH
, thread
->unix_pid
, 0, 0 ) == -1)) return 0;
113 if (debug_level
) fprintf( stderr
, "%08x: *attached*\n", (unsigned int)thread
);
114 thread
->attached
= 1;
115 wait4_thread( thread
, SIGSTOP
);
119 /* detach from a Unix thread and kill it */
120 void detach_thread( struct thread
*thread
)
122 if (!thread
->unix_pid
) return;
123 kill( thread
->unix_pid
, SIGTERM
);
124 if (thread
->suspend
+ thread
->process
->suspend
) continue_thread( thread
);
125 if (thread
->attached
)
127 wait4_thread( thread
, SIGTERM
);
128 if (debug_level
) fprintf( stderr
, "%08x: *detached*\n", (unsigned int)thread
);
129 ptrace( PTRACE_DETACH
, thread
->unix_pid
, 1, SIGTERM
);
130 thread
->attached
= 0;
134 /* stop a thread (at the Unix level) */
135 void stop_thread( struct thread
*thread
)
137 /* can't stop a thread while initialisation is in progress */
138 if (!thread
->unix_pid
|| thread
->process
->init_event
) return;
139 /* first try to attach to it */
140 if (!thread
->attached
)
141 if (attach_thread( thread
)) return; /* this will have stopped it */
142 /* attached already, or attach failed -> send a signal */
143 kill( thread
->unix_pid
, SIGSTOP
);
144 if (thread
->attached
) wait4_thread( thread
, SIGSTOP
);
147 /* make a thread continue (at the Unix level) */
148 void continue_thread( struct thread
*thread
)
150 if (!thread
->unix_pid
) return;
151 if (!thread
->attached
) kill( thread
->unix_pid
, SIGCONT
);
152 else ptrace( PTRACE_CONT
, thread
->unix_pid
, 1, SIGSTOP
);
155 /* read an int from a thread address space */
156 int read_thread_int( struct thread
*thread
, const int *addr
, int *data
)
158 if (((*data
= ptrace( PTRACE_PEEKDATA
, thread
->unix_pid
, addr
, 0 )) == -1) && errno
)
166 /* write an int to a thread address space */
167 int write_thread_int( struct thread
*thread
, int *addr
, int data
, unsigned int mask
)
172 if (read_thread_int( thread
, addr
, &res
) == -1) return -1;
173 data
= (data
& mask
) | (res
& ~mask
);
175 if ((res
= ptrace( PTRACE_POKEDATA
, thread
->unix_pid
, addr
, data
)) == -1) file_set_error();