Commit | Line | Data |
---|---|---|
2c4a536d | 1 | /* Low-level child interface to ptrace. |
5bf970f9 | 2 | |
6aba47ca | 3 | Copyright (C) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1998, |
0fb0cc75 | 4 | 1999, 2000, 2001, 2002, 2004, 2005, 2006, 2007, 2008, 2009 |
8785ced0 | 5 | Free Software Foundation, Inc. |
5bf970f9 AC |
6 | |
7 | This file is part of GDB. | |
8 | ||
9 | This program is free software; you can redistribute it and/or modify | |
10 | it under the terms of the GNU General Public License as published by | |
a9762ec7 | 11 | the Free Software Foundation; either version 3 of the License, or |
5bf970f9 AC |
12 | (at your option) any later version. |
13 | ||
14 | This program is distributed in the hope that it will be useful, | |
15 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
17 | GNU General Public License for more details. | |
18 | ||
19 | You should have received a copy of the GNU General Public License | |
a9762ec7 | 20 | along with this program. If not, see <http://www.gnu.org/licenses/>. */ |
5bf970f9 AC |
21 | |
22 | #include "defs.h" | |
5bf970f9 | 23 | #include "command.h" |
2c4a536d MK |
24 | #include "inferior.h" |
25 | #include "inflow.h" | |
191c4426 | 26 | #include "terminal.h" |
5bf970f9 | 27 | #include "gdbcore.h" |
8785ced0 | 28 | #include "regcache.h" |
5bf970f9 | 29 | |
8785ced0 | 30 | #include "gdb_assert.h" |
2c4a536d MK |
31 | #include "gdb_string.h" |
32 | #include "gdb_ptrace.h" | |
34a17005 | 33 | #include "gdb_wait.h" |
5bf970f9 AC |
34 | #include <signal.h> |
35 | ||
2c0b251b | 36 | #include "inf-ptrace.h" |
2c4a536d | 37 | #include "inf-child.h" |
af990527 | 38 | #include "gdbthread.h" |
2c4a536d | 39 | |
c7c14b96 MK |
40 | \f |
41 | ||
735f54b4 MK |
42 | #ifdef PT_GET_PROCESS_STATE |
43 | ||
44 | static int | |
ee057212 | 45 | inf_ptrace_follow_fork (struct target_ops *ops, int follow_child) |
735f54b4 MK |
46 | { |
47 | pid_t pid, fpid; | |
48 | ptrace_state_t pe; | |
49 | ||
e58b0e63 | 50 | pid = ptid_get_pid (inferior_ptid); |
735f54b4 MK |
51 | |
52 | if (ptrace (PT_GET_PROCESS_STATE, pid, | |
53 | (PTRACE_TYPE_ARG3)&pe, sizeof pe) == -1) | |
54 | perror_with_name (("ptrace")); | |
55 | ||
56 | gdb_assert (pe.pe_report_event == PTRACE_FORK); | |
57 | fpid = pe.pe_other_pid; | |
58 | ||
59 | if (follow_child) | |
60 | { | |
191c4426 | 61 | struct inferior *parent_inf, *child_inf; |
4e1c45ea PA |
62 | struct thread_info *tp; |
63 | ||
191c4426 PA |
64 | parent_inf = find_inferior_pid (pid); |
65 | ||
66 | /* Add the child. */ | |
67 | child_inf = add_inferior (fpid); | |
68 | child_inf->attach_flag = parent_inf->attach_flag; | |
69 | copy_terminal_info (child_inf, parent_inf); | |
70 | ||
4e1c45ea PA |
71 | /* Before detaching from the parent, remove all breakpoints from |
72 | it. */ | |
77435e4c | 73 | remove_breakpoints (); |
735f54b4 MK |
74 | |
75 | if (ptrace (PT_DETACH, pid, (PTRACE_TYPE_ARG3)1, 0) == -1) | |
76 | perror_with_name (("ptrace")); | |
4e1c45ea | 77 | |
7f9f62ba PA |
78 | /* Switch inferior_ptid out of the parent's way. */ |
79 | inferior_ptid = pid_to_ptid (fpid); | |
80 | ||
4e1c45ea | 81 | /* Delete the parent. */ |
7f9f62ba | 82 | detach_inferior (pid); |
4e1c45ea | 83 | |
e58b0e63 | 84 | add_thread_silent (inferior_ptid); |
735f54b4 MK |
85 | } |
86 | else | |
87 | { | |
b242c3c2 PA |
88 | /* Breakpoints have already been detached from the child by |
89 | infrun.c. */ | |
735f54b4 MK |
90 | |
91 | if (ptrace (PT_DETACH, fpid, (PTRACE_TYPE_ARG3)1, 0) == -1) | |
92 | perror_with_name (("ptrace")); | |
93 | } | |
94 | ||
95 | return 0; | |
96 | } | |
97 | ||
98 | #endif /* PT_GET_PROCESS_STATE */ | |
99 | \f | |
100 | ||
4b8a1a28 | 101 | /* Prepare to be traced. */ |
5bf970f9 AC |
102 | |
103 | static void | |
c7c14b96 | 104 | inf_ptrace_me (void) |
5bf970f9 | 105 | { |
c7c14b96 | 106 | /* "Trace me, Dr. Memory!" */ |
4b8a1a28 | 107 | ptrace (PT_TRACE_ME, 0, (PTRACE_TYPE_ARG3)0, 0); |
5bf970f9 AC |
108 | } |
109 | ||
136d6dae VP |
110 | /* Start a new inferior Unix child process. EXEC_FILE is the file to |
111 | run, ALLARGS is a string containing the arguments to the program. | |
112 | ENV is the environment vector to pass. If FROM_TTY is non-zero, be | |
113 | chatty about it. */ | |
5bf970f9 AC |
114 | |
115 | static void | |
136d6dae VP |
116 | inf_ptrace_create_inferior (struct target_ops *ops, |
117 | char *exec_file, char *allargs, char **env, | |
118 | int from_tty) | |
5bf970f9 | 119 | { |
136d6dae VP |
120 | int pid; |
121 | ||
122 | pid = fork_inferior (exec_file, allargs, env, inf_ptrace_me, NULL, | |
123 | NULL, NULL); | |
124 | ||
125 | push_target (ops); | |
5bf970f9 | 126 | |
c7c14b96 MK |
127 | /* On some targets, there must be some explicit synchronization |
128 | between the parent and child processes after the debugger | |
129 | forks, and before the child execs the debuggee program. This | |
130 | call basically gives permission for the child to exec. */ | |
5bf970f9 | 131 | |
c7c14b96 | 132 | target_acknowledge_created_inferior (pid); |
5bf970f9 | 133 | |
c7c14b96 MK |
134 | /* START_INFERIOR_TRAPS_EXPECTED is defined in inferior.h, and will |
135 | be 1 or 2 depending on whether we're starting without or with a | |
136 | shell. */ | |
137 | startup_inferior (START_INFERIOR_TRAPS_EXPECTED); | |
138 | ||
139 | /* On some targets, there must be some explicit actions taken after | |
140 | the inferior has been started up. */ | |
141 | target_post_startup_inferior (pid_to_ptid (pid)); | |
5bf970f9 AC |
142 | } |
143 | ||
e4ef629d MK |
144 | #ifdef PT_GET_PROCESS_STATE |
145 | ||
146 | static void | |
147 | inf_ptrace_post_startup_inferior (ptid_t pid) | |
148 | { | |
149 | ptrace_event_t pe; | |
150 | ||
151 | /* Set the initial event mask. */ | |
152 | memset (&pe, 0, sizeof pe); | |
153 | pe.pe_set_event |= PTRACE_FORK; | |
154 | if (ptrace (PT_SET_EVENT_MASK, ptid_get_pid (pid), | |
155 | (PTRACE_TYPE_ARG3)&pe, sizeof pe) == -1) | |
156 | perror_with_name (("ptrace")); | |
157 | } | |
158 | ||
159 | #endif | |
160 | ||
4b8a1a28 MK |
161 | /* Clean up a rotting corpse of an inferior after it died. */ |
162 | ||
c7c14b96 | 163 | static void |
136d6dae | 164 | inf_ptrace_mourn_inferior (struct target_ops *ops) |
5bf970f9 | 165 | { |
4b8a1a28 MK |
166 | int status; |
167 | ||
168 | /* Wait just one more time to collect the inferior's exit status. | |
f010475d | 169 | Do not check whether this succeeds though, since we may be |
4b8a1a28 | 170 | dealing with a process that we attached to. Such a process will |
3d450bdd | 171 | only report its exit status to its original parent. */ |
4b8a1a28 MK |
172 | waitpid (ptid_get_pid (inferior_ptid), &status, 0); |
173 | ||
c7c14b96 | 174 | generic_mourn_inferior (); |
d90e17a7 PA |
175 | |
176 | if (!have_inferiors ()) | |
177 | unpush_target (ops); | |
5bf970f9 AC |
178 | } |
179 | ||
4b8a1a28 MK |
180 | /* Attach to the process specified by ARGS. If FROM_TTY is non-zero, |
181 | be chatty about it. */ | |
5bf970f9 AC |
182 | |
183 | static void | |
136d6dae | 184 | inf_ptrace_attach (struct target_ops *ops, char *args, int from_tty) |
5bf970f9 AC |
185 | { |
186 | char *exec_file; | |
4b8a1a28 | 187 | pid_t pid; |
5bf970f9 | 188 | char *dummy; |
181e7f93 | 189 | struct inferior *inf; |
5bf970f9 AC |
190 | |
191 | if (!args) | |
e2e0b3e5 | 192 | error_no_arg (_("process-id to attach")); |
5bf970f9 AC |
193 | |
194 | dummy = args; | |
195 | pid = strtol (args, &dummy, 0); | |
f6ffd89b | 196 | /* Some targets don't set errno on errors, grrr! */ |
6e1e94ea | 197 | if (pid == 0 && args == dummy) |
8a3fe4f8 | 198 | error (_("Illegal process-id: %s."), args); |
5bf970f9 | 199 | |
f6ffd89b | 200 | if (pid == getpid ()) /* Trying to masturbate? */ |
8a3fe4f8 | 201 | error (_("I refuse to debug myself!")); |
5bf970f9 AC |
202 | |
203 | if (from_tty) | |
204 | { | |
4b8a1a28 | 205 | exec_file = get_exec_file (0); |
5bf970f9 AC |
206 | |
207 | if (exec_file) | |
a3f17187 | 208 | printf_unfiltered (_("Attaching to program: %s, %s\n"), exec_file, |
5bf970f9 AC |
209 | target_pid_to_str (pid_to_ptid (pid))); |
210 | else | |
a3f17187 | 211 | printf_unfiltered (_("Attaching to %s\n"), |
5bf970f9 AC |
212 | target_pid_to_str (pid_to_ptid (pid))); |
213 | ||
214 | gdb_flush (gdb_stdout); | |
215 | } | |
216 | ||
6e1e94ea MK |
217 | #ifdef PT_ATTACH |
218 | errno = 0; | |
4b8a1a28 | 219 | ptrace (PT_ATTACH, pid, (PTRACE_TYPE_ARG3)0, 0); |
6e1e94ea | 220 | if (errno != 0) |
e2e0b3e5 | 221 | perror_with_name (("ptrace")); |
6e1e94ea | 222 | #else |
8a3fe4f8 | 223 | error (_("This system does not support attaching to a process")); |
6e1e94ea | 224 | #endif |
5bf970f9 AC |
225 | |
226 | inferior_ptid = pid_to_ptid (pid); | |
af990527 | 227 | |
181e7f93 PA |
228 | inf = add_inferior (pid); |
229 | inf->attach_flag = 1; | |
7f9f62ba | 230 | |
af990527 PA |
231 | /* Always add a main thread. If some target extends the ptrace |
232 | target, it should decorate the ptid later with more info. */ | |
233 | add_thread_silent (inferior_ptid); | |
234 | ||
136d6dae | 235 | push_target(ops); |
5bf970f9 AC |
236 | } |
237 | ||
e4ef629d MK |
238 | #ifdef PT_GET_PROCESS_STATE |
239 | ||
240 | void | |
241 | inf_ptrace_post_attach (int pid) | |
242 | { | |
243 | ptrace_event_t pe; | |
244 | ||
245 | /* Set the initial event mask. */ | |
246 | memset (&pe, 0, sizeof pe); | |
247 | pe.pe_set_event |= PTRACE_FORK; | |
248 | if (ptrace (PT_SET_EVENT_MASK, pid, | |
249 | (PTRACE_TYPE_ARG3)&pe, sizeof pe) == -1) | |
250 | perror_with_name (("ptrace")); | |
251 | } | |
252 | ||
253 | #endif | |
254 | ||
4b8a1a28 | 255 | /* Detach from the inferior, optionally passing it the signal |
f010475d | 256 | specified by ARGS. If FROM_TTY is non-zero, be chatty about it. */ |
5bf970f9 AC |
257 | |
258 | static void | |
136d6dae | 259 | inf_ptrace_detach (struct target_ops *ops, char *args, int from_tty) |
5bf970f9 | 260 | { |
4b8a1a28 | 261 | pid_t pid = ptid_get_pid (inferior_ptid); |
6e1e94ea | 262 | int sig = 0; |
5bf970f9 AC |
263 | |
264 | if (from_tty) | |
265 | { | |
266 | char *exec_file = get_exec_file (0); | |
267 | if (exec_file == 0) | |
268 | exec_file = ""; | |
a3f17187 | 269 | printf_unfiltered (_("Detaching from program: %s, %s\n"), exec_file, |
5bf970f9 AC |
270 | target_pid_to_str (pid_to_ptid (pid))); |
271 | gdb_flush (gdb_stdout); | |
272 | } | |
273 | if (args) | |
6e1e94ea | 274 | sig = atoi (args); |
5bf970f9 | 275 | |
6e1e94ea | 276 | #ifdef PT_DETACH |
4b8a1a28 | 277 | /* We'd better not have left any breakpoints in the program or it'll |
f010475d | 278 | die when it hits one. Also note that this may only work if we |
4b8a1a28 MK |
279 | previously attached to the inferior. It *might* work if we |
280 | started the process ourselves. */ | |
6e1e94ea | 281 | errno = 0; |
4b8a1a28 | 282 | ptrace (PT_DETACH, pid, (PTRACE_TYPE_ARG3)1, sig); |
6e1e94ea | 283 | if (errno != 0) |
e2e0b3e5 | 284 | perror_with_name (("ptrace")); |
6e1e94ea | 285 | #else |
8a3fe4f8 | 286 | error (_("This system does not support detaching from a process")); |
6e1e94ea | 287 | #endif |
5bf970f9 AC |
288 | |
289 | inferior_ptid = null_ptid; | |
7f9f62ba | 290 | detach_inferior (pid); |
7a7d3353 PA |
291 | |
292 | if (!have_inferiors ()) | |
293 | unpush_target (ops); | |
5bf970f9 AC |
294 | } |
295 | ||
4b8a1a28 MK |
296 | /* Kill the inferior. */ |
297 | ||
5bf970f9 | 298 | static void |
7d85a9c0 | 299 | inf_ptrace_kill (struct target_ops *ops) |
5bf970f9 | 300 | { |
4b8a1a28 | 301 | pid_t pid = ptid_get_pid (inferior_ptid); |
c7c14b96 | 302 | int status; |
c7c14b96 MK |
303 | |
304 | if (pid == 0) | |
305 | return; | |
306 | ||
4b8a1a28 MK |
307 | ptrace (PT_KILL, pid, (PTRACE_TYPE_ARG3)0, 0); |
308 | waitpid (pid, &status, 0); | |
309 | ||
c7c14b96 | 310 | target_mourn_inferior (); |
5bf970f9 AC |
311 | } |
312 | ||
4b8a1a28 | 313 | /* Stop the inferior. */ |
c7c14b96 | 314 | |
5bf970f9 | 315 | static void |
94cc34af | 316 | inf_ptrace_stop (ptid_t ptid) |
5bf970f9 | 317 | { |
4b8a1a28 MK |
318 | /* Send a SIGINT to the process group. This acts just like the user |
319 | typed a ^C on the controlling terminal. Note that using a | |
320 | negative process number in kill() is a System V-ism. The proper | |
321 | BSD interface is killpg(). However, all modern BSDs support the | |
322 | System V interface too. */ | |
7e1789f5 | 323 | kill (-inferior_process_group (), SIGINT); |
5bf970f9 AC |
324 | } |
325 | ||
4b8a1a28 MK |
326 | /* Resume execution of thread PTID, or all threads if PTID is -1. If |
327 | STEP is nonzero, single-step it. If SIGNAL is nonzero, give it | |
328 | that signal. */ | |
5bf970f9 AC |
329 | |
330 | static void | |
28439f5e PA |
331 | inf_ptrace_resume (struct target_ops *ops, |
332 | ptid_t ptid, int step, enum target_signal signal) | |
5bf970f9 | 333 | { |
4b8a1a28 | 334 | pid_t pid = ptid_get_pid (ptid); |
c7c14b96 | 335 | int request = PT_CONTINUE; |
c7c14b96 MK |
336 | |
337 | if (pid == -1) | |
4b8a1a28 MK |
338 | /* Resume all threads. Traditionally ptrace() only supports |
339 | single-threaded processes, so simply resume the inferior. */ | |
340 | pid = ptid_get_pid (inferior_ptid); | |
c7c14b96 MK |
341 | |
342 | if (step) | |
343 | { | |
344 | /* If this system does not support PT_STEP, a higher level | |
345 | function will have called single_step() to transmute the step | |
346 | request into a continue request (by setting breakpoints on | |
347 | all possible successor instructions), so we don't have to | |
348 | worry about that here. */ | |
349 | request = PT_STEP; | |
350 | } | |
351 | ||
352 | /* An address of (PTRACE_TYPE_ARG3)1 tells ptrace to continue from | |
353 | where it was. If GDB wanted it to start some other way, we have | |
4b8a1a28 | 354 | already written a new program counter value to the child. */ |
c7c14b96 | 355 | errno = 0; |
4b8a1a28 | 356 | ptrace (request, pid, (PTRACE_TYPE_ARG3)1, target_signal_to_host (signal)); |
c7c14b96 MK |
357 | if (errno != 0) |
358 | perror_with_name (("ptrace")); | |
5bf970f9 AC |
359 | } |
360 | ||
4b8a1a28 MK |
361 | /* Wait for the child specified by PTID to do something. Return the |
362 | process ID of the child, or MINUS_ONE_PTID in case of error; store | |
363 | the status in *OURSTATUS. */ | |
5bf970f9 | 364 | |
c7c14b96 | 365 | static ptid_t |
117de6a9 | 366 | inf_ptrace_wait (struct target_ops *ops, |
47608cb1 | 367 | ptid_t ptid, struct target_waitstatus *ourstatus, int options) |
5bf970f9 | 368 | { |
4b8a1a28 MK |
369 | pid_t pid; |
370 | int status, save_errno; | |
5bf970f9 | 371 | |
c7c14b96 MK |
372 | do |
373 | { | |
4b8a1a28 | 374 | set_sigint_trap (); |
5bf970f9 | 375 | |
4b8a1a28 MK |
376 | do |
377 | { | |
378 | pid = waitpid (ptid_get_pid (ptid), &status, 0); | |
379 | save_errno = errno; | |
380 | } | |
381 | while (pid == -1 && errno == EINTR); | |
5bf970f9 | 382 | |
c7c14b96 | 383 | clear_sigint_trap (); |
5bf970f9 | 384 | |
c7c14b96 MK |
385 | if (pid == -1) |
386 | { | |
c7c14b96 | 387 | fprintf_unfiltered (gdb_stderr, |
4b8a1a28 | 388 | _("Child process unexpectedly missing: %s.\n"), |
c7c14b96 MK |
389 | safe_strerror (save_errno)); |
390 | ||
391 | /* Claim it exited with unknown signal. */ | |
392 | ourstatus->kind = TARGET_WAITKIND_SIGNALLED; | |
393 | ourstatus->value.sig = TARGET_SIGNAL_UNKNOWN; | |
fb66883a | 394 | return inferior_ptid; |
c7c14b96 MK |
395 | } |
396 | ||
4b8a1a28 MK |
397 | /* Ignore terminated detached child processes. */ |
398 | if (!WIFSTOPPED (status) && pid != ptid_get_pid (inferior_ptid)) | |
399 | pid = -1; | |
c7c14b96 | 400 | } |
4b8a1a28 | 401 | while (pid == -1); |
c7c14b96 | 402 | |
735f54b4 MK |
403 | #ifdef PT_GET_PROCESS_STATE |
404 | if (WIFSTOPPED (status)) | |
405 | { | |
406 | ptrace_state_t pe; | |
407 | pid_t fpid; | |
408 | ||
409 | if (ptrace (PT_GET_PROCESS_STATE, pid, | |
410 | (PTRACE_TYPE_ARG3)&pe, sizeof pe) == -1) | |
411 | perror_with_name (("ptrace")); | |
412 | ||
413 | switch (pe.pe_report_event) | |
414 | { | |
415 | case PTRACE_FORK: | |
416 | ourstatus->kind = TARGET_WAITKIND_FORKED; | |
3a3e9ee3 | 417 | ourstatus->value.related_pid = pid_to_ptid (pe.pe_other_pid); |
735f54b4 MK |
418 | |
419 | /* Make sure the other end of the fork is stopped too. */ | |
420 | fpid = waitpid (pe.pe_other_pid, &status, 0); | |
421 | if (fpid == -1) | |
422 | perror_with_name (("waitpid")); | |
423 | ||
424 | if (ptrace (PT_GET_PROCESS_STATE, fpid, | |
425 | (PTRACE_TYPE_ARG3)&pe, sizeof pe) == -1) | |
426 | perror_with_name (("ptrace")); | |
427 | ||
428 | gdb_assert (pe.pe_report_event == PTRACE_FORK); | |
429 | gdb_assert (pe.pe_other_pid == pid); | |
430 | if (fpid == ptid_get_pid (inferior_ptid)) | |
431 | { | |
3a3e9ee3 | 432 | ourstatus->value.related_pid = pid_to_ptid (pe.pe_other_pid); |
735f54b4 MK |
433 | return pid_to_ptid (fpid); |
434 | } | |
435 | ||
436 | return pid_to_ptid (pid); | |
437 | } | |
438 | } | |
439 | #endif | |
440 | ||
c7c14b96 MK |
441 | store_waitstatus (ourstatus, status); |
442 | return pid_to_ptid (pid); | |
5bf970f9 AC |
443 | } |
444 | ||
4b8a1a28 MK |
445 | /* Attempt a transfer all LEN bytes starting at OFFSET between the |
446 | inferior's OBJECT:ANNEX space and GDB's READBUF/WRITEBUF buffer. | |
447 | Return the number of bytes actually transferred. */ | |
5bf970f9 AC |
448 | |
449 | static LONGEST | |
450 | inf_ptrace_xfer_partial (struct target_ops *ops, enum target_object object, | |
961cb7b5 MK |
451 | const char *annex, gdb_byte *readbuf, |
452 | const gdb_byte *writebuf, | |
453 | ULONGEST offset, LONGEST len) | |
5bf970f9 | 454 | { |
4b8a1a28 MK |
455 | pid_t pid = ptid_get_pid (inferior_ptid); |
456 | ||
5bf970f9 AC |
457 | switch (object) |
458 | { | |
459 | case TARGET_OBJECT_MEMORY: | |
f929a579 AC |
460 | #ifdef PT_IO |
461 | /* OpenBSD 3.1, NetBSD 1.6 and FreeBSD 5.0 have a new PT_IO | |
462 | request that promises to be much more efficient in reading | |
463 | and writing data in the traced process's address space. */ | |
464 | { | |
465 | struct ptrace_io_desc piod; | |
4b8a1a28 | 466 | |
f929a579 | 467 | /* NOTE: We assume that there are no distinct address spaces |
b457b3dd MK |
468 | for instruction and data. However, on OpenBSD 3.9 and |
469 | later, PIOD_WRITE_D doesn't allow changing memory that's | |
470 | mapped read-only. Since most code segments will be | |
471 | read-only, using PIOD_WRITE_D will prevent us from | |
472 | inserting breakpoints, so we use PIOD_WRITE_I instead. */ | |
473 | piod.piod_op = writebuf ? PIOD_WRITE_I : PIOD_READ_D; | |
f929a579 AC |
474 | piod.piod_addr = writebuf ? (void *) writebuf : readbuf; |
475 | piod.piod_offs = (void *) (long) offset; | |
476 | piod.piod_len = len; | |
477 | ||
478 | errno = 0; | |
4b8a1a28 | 479 | if (ptrace (PT_IO, pid, (caddr_t)&piod, 0) == 0) |
f929a579 AC |
480 | /* Return the actual number of bytes read or written. */ |
481 | return piod.piod_len; | |
482 | /* If the PT_IO request is somehow not supported, fallback on | |
483 | using PT_WRITE_D/PT_READ_D. Otherwise we will return zero | |
484 | to indicate failure. */ | |
485 | if (errno != EINVAL) | |
486 | return 0; | |
487 | } | |
488 | #endif | |
489 | { | |
490 | union | |
491 | { | |
492 | PTRACE_TYPE_RET word; | |
4b8a1a28 | 493 | gdb_byte byte[sizeof (PTRACE_TYPE_RET)]; |
f929a579 AC |
494 | } buffer; |
495 | ULONGEST rounded_offset; | |
496 | LONGEST partial_len; | |
4b8a1a28 | 497 | |
cb85a953 AC |
498 | /* Round the start offset down to the next long word |
499 | boundary. */ | |
f929a579 | 500 | rounded_offset = offset & -(ULONGEST) sizeof (PTRACE_TYPE_RET); |
4b8a1a28 | 501 | |
cb85a953 AC |
502 | /* Since ptrace will transfer a single word starting at that |
503 | rounded_offset the partial_len needs to be adjusted down to | |
504 | that (remember this function only does a single transfer). | |
505 | Should the required length be even less, adjust it down | |
506 | again. */ | |
507 | partial_len = (rounded_offset + sizeof (PTRACE_TYPE_RET)) - offset; | |
508 | if (partial_len > len) | |
f929a579 | 509 | partial_len = len; |
4b8a1a28 | 510 | |
f929a579 AC |
511 | if (writebuf) |
512 | { | |
cb85a953 AC |
513 | /* If OFFSET:PARTIAL_LEN is smaller than |
514 | ROUNDED_OFFSET:WORDSIZE then a read/modify write will | |
515 | be needed. Read in the entire word. */ | |
f929a579 | 516 | if (rounded_offset < offset |
cb85a953 AC |
517 | || (offset + partial_len |
518 | < rounded_offset + sizeof (PTRACE_TYPE_RET))) | |
f929a579 | 519 | /* Need part of initial word -- fetch it. */ |
4b8a1a28 | 520 | buffer.word = ptrace (PT_READ_I, pid, |
f7dd0ed7 UW |
521 | (PTRACE_TYPE_ARG3)(uintptr_t) |
522 | rounded_offset, 0); | |
4b8a1a28 | 523 | |
f929a579 AC |
524 | /* Copy data to be written over corresponding part of |
525 | buffer. */ | |
f6ffd89b MK |
526 | memcpy (buffer.byte + (offset - rounded_offset), |
527 | writebuf, partial_len); | |
4b8a1a28 | 528 | |
f929a579 | 529 | errno = 0; |
4b8a1a28 | 530 | ptrace (PT_WRITE_D, pid, |
f7dd0ed7 UW |
531 | (PTRACE_TYPE_ARG3)(uintptr_t)rounded_offset, |
532 | buffer.word); | |
f929a579 AC |
533 | if (errno) |
534 | { | |
535 | /* Using the appropriate one (I or D) is necessary for | |
536 | Gould NP1, at least. */ | |
537 | errno = 0; | |
4b8a1a28 | 538 | ptrace (PT_WRITE_I, pid, |
f7dd0ed7 UW |
539 | (PTRACE_TYPE_ARG3)(uintptr_t)rounded_offset, |
540 | buffer.word); | |
f929a579 AC |
541 | if (errno) |
542 | return 0; | |
543 | } | |
544 | } | |
4b8a1a28 | 545 | |
f929a579 AC |
546 | if (readbuf) |
547 | { | |
548 | errno = 0; | |
4b8a1a28 | 549 | buffer.word = ptrace (PT_READ_I, pid, |
f7dd0ed7 UW |
550 | (PTRACE_TYPE_ARG3)(uintptr_t)rounded_offset, |
551 | 0); | |
f929a579 AC |
552 | if (errno) |
553 | return 0; | |
554 | /* Copy appropriate bytes out of the buffer. */ | |
555 | memcpy (readbuf, buffer.byte + (offset - rounded_offset), | |
556 | partial_len); | |
557 | } | |
4b8a1a28 | 558 | |
f929a579 AC |
559 | return partial_len; |
560 | } | |
5bf970f9 AC |
561 | |
562 | case TARGET_OBJECT_UNWIND_TABLE: | |
563 | return -1; | |
564 | ||
565 | case TARGET_OBJECT_AUXV: | |
566 | return -1; | |
567 | ||
568 | case TARGET_OBJECT_WCOOKIE: | |
569 | return -1; | |
570 | ||
571 | default: | |
572 | return -1; | |
573 | } | |
574 | } | |
575 | ||
4b8a1a28 | 576 | /* Return non-zero if the thread specified by PTID is alive. */ |
c7c14b96 MK |
577 | |
578 | static int | |
28439f5e | 579 | inf_ptrace_thread_alive (struct target_ops *ops, ptid_t ptid) |
c7c14b96 | 580 | { |
4b8a1a28 MK |
581 | /* ??? Is kill the right way to do this? */ |
582 | return (kill (ptid_get_pid (ptid), 0) != -1); | |
c7c14b96 MK |
583 | } |
584 | ||
585 | /* Print status information about what we're accessing. */ | |
586 | ||
587 | static void | |
588 | inf_ptrace_files_info (struct target_ops *ignore) | |
589 | { | |
181e7f93 PA |
590 | struct inferior *inf = current_inferior (); |
591 | ||
4b8a1a28 | 592 | printf_filtered (_("\tUsing the running image of %s %s.\n"), |
181e7f93 | 593 | inf->attach_flag ? "attached" : "child", |
4b8a1a28 | 594 | target_pid_to_str (inferior_ptid)); |
5bf970f9 AC |
595 | } |
596 | ||
117de6a9 PA |
597 | static char * |
598 | inf_ptrace_pid_to_str (struct target_ops *ops, ptid_t ptid) | |
599 | { | |
600 | return normal_pid_to_str (ptid); | |
601 | } | |
602 | ||
8785ced0 MK |
603 | /* Create a prototype ptrace target. The client can override it with |
604 | local methods. */ | |
605 | ||
5bf970f9 AC |
606 | struct target_ops * |
607 | inf_ptrace_target (void) | |
608 | { | |
609 | struct target_ops *t = inf_child_target (); | |
8785ced0 | 610 | |
5bf970f9 | 611 | t->to_attach = inf_ptrace_attach; |
5bf970f9 AC |
612 | t->to_detach = inf_ptrace_detach; |
613 | t->to_resume = inf_ptrace_resume; | |
614 | t->to_wait = inf_ptrace_wait; | |
5bf970f9 | 615 | t->to_files_info = inf_ptrace_files_info; |
4b8a1a28 | 616 | t->to_kill = inf_ptrace_kill; |
5bf970f9 | 617 | t->to_create_inferior = inf_ptrace_create_inferior; |
735f54b4 MK |
618 | #ifdef PT_GET_PROCESS_STATE |
619 | t->to_follow_fork = inf_ptrace_follow_fork; | |
e4ef629d MK |
620 | t->to_post_startup_inferior = inf_ptrace_post_startup_inferior; |
621 | t->to_post_attach = inf_ptrace_post_attach; | |
735f54b4 | 622 | #endif |
5bf970f9 | 623 | t->to_mourn_inferior = inf_ptrace_mourn_inferior; |
5bf970f9 | 624 | t->to_thread_alive = inf_ptrace_thread_alive; |
117de6a9 | 625 | t->to_pid_to_str = inf_ptrace_pid_to_str; |
5bf970f9 | 626 | t->to_stop = inf_ptrace_stop; |
c7c14b96 | 627 | t->to_xfer_partial = inf_ptrace_xfer_partial; |
8785ced0 MK |
628 | |
629 | return t; | |
630 | } | |
631 | \f | |
632 | ||
4b8a1a28 | 633 | /* Pointer to a function that returns the offset within the user area |
8785ced0 | 634 | where a particular register is stored. */ |
7714d83a | 635 | static CORE_ADDR (*inf_ptrace_register_u_offset)(struct gdbarch *, int, int); |
8785ced0 MK |
636 | |
637 | /* Fetch register REGNUM from the inferior. */ | |
638 | ||
639 | static void | |
56be3814 | 640 | inf_ptrace_fetch_register (struct regcache *regcache, int regnum) |
8785ced0 | 641 | { |
3b3b1423 | 642 | struct gdbarch *gdbarch = get_regcache_arch (regcache); |
8785ced0 MK |
643 | CORE_ADDR addr; |
644 | size_t size; | |
645 | PTRACE_TYPE_RET *buf; | |
646 | int pid, i; | |
647 | ||
7714d83a | 648 | /* This isn't really an address, but ptrace thinks of it as one. */ |
3b3b1423 | 649 | addr = inf_ptrace_register_u_offset (gdbarch, regnum, 0); |
8d4c1ba3 | 650 | if (addr == (CORE_ADDR)-1 |
3b3b1423 | 651 | || gdbarch_cannot_fetch_register (gdbarch, regnum)) |
10d6c8cd | 652 | { |
56be3814 | 653 | regcache_raw_supply (regcache, regnum, NULL); |
10d6c8cd DJ |
654 | return; |
655 | } | |
656 | ||
8785ced0 | 657 | /* Cater for systems like GNU/Linux, that implement threads as |
10d6c8cd | 658 | separate processes. */ |
8785ced0 MK |
659 | pid = ptid_get_lwp (inferior_ptid); |
660 | if (pid == 0) | |
661 | pid = ptid_get_pid (inferior_ptid); | |
662 | ||
3b3b1423 | 663 | size = register_size (gdbarch, regnum); |
8785ced0 MK |
664 | gdb_assert ((size % sizeof (PTRACE_TYPE_RET)) == 0); |
665 | buf = alloca (size); | |
666 | ||
10d6c8cd | 667 | /* Read the register contents from the inferior a chunk at a time. */ |
8785ced0 MK |
668 | for (i = 0; i < size / sizeof (PTRACE_TYPE_RET); i++) |
669 | { | |
670 | errno = 0; | |
f7dd0ed7 | 671 | buf[i] = ptrace (PT_READ_U, pid, (PTRACE_TYPE_ARG3)(uintptr_t)addr, 0); |
8785ced0 | 672 | if (errno != 0) |
4b8a1a28 | 673 | error (_("Couldn't read register %s (#%d): %s."), |
3b3b1423 | 674 | gdbarch_register_name (gdbarch, regnum), |
c9f4d572 | 675 | regnum, safe_strerror (errno)); |
8785ced0 MK |
676 | |
677 | addr += sizeof (PTRACE_TYPE_RET); | |
678 | } | |
56be3814 | 679 | regcache_raw_supply (regcache, regnum, buf); |
8785ced0 MK |
680 | } |
681 | ||
682 | /* Fetch register REGNUM from the inferior. If REGNUM is -1, do this | |
683 | for all registers. */ | |
684 | ||
685 | static void | |
28439f5e PA |
686 | inf_ptrace_fetch_registers (struct target_ops *ops, |
687 | struct regcache *regcache, int regnum) | |
8785ced0 MK |
688 | { |
689 | if (regnum == -1) | |
3b3b1423 UW |
690 | for (regnum = 0; |
691 | regnum < gdbarch_num_regs (get_regcache_arch (regcache)); | |
692 | regnum++) | |
56be3814 | 693 | inf_ptrace_fetch_register (regcache, regnum); |
8785ced0 | 694 | else |
56be3814 | 695 | inf_ptrace_fetch_register (regcache, regnum); |
8785ced0 MK |
696 | } |
697 | ||
698 | /* Store register REGNUM into the inferior. */ | |
699 | ||
700 | static void | |
56be3814 | 701 | inf_ptrace_store_register (const struct regcache *regcache, int regnum) |
8785ced0 | 702 | { |
3b3b1423 | 703 | struct gdbarch *gdbarch = get_regcache_arch (regcache); |
8785ced0 MK |
704 | CORE_ADDR addr; |
705 | size_t size; | |
706 | PTRACE_TYPE_RET *buf; | |
707 | int pid, i; | |
708 | ||
7714d83a | 709 | /* This isn't really an address, but ptrace thinks of it as one. */ |
3b3b1423 | 710 | addr = inf_ptrace_register_u_offset (gdbarch, regnum, 1); |
8d4c1ba3 | 711 | if (addr == (CORE_ADDR)-1 |
3b3b1423 | 712 | || gdbarch_cannot_store_register (gdbarch, regnum)) |
10d6c8cd DJ |
713 | return; |
714 | ||
8785ced0 | 715 | /* Cater for systems like GNU/Linux, that implement threads as |
10d6c8cd | 716 | separate processes. */ |
8785ced0 MK |
717 | pid = ptid_get_lwp (inferior_ptid); |
718 | if (pid == 0) | |
719 | pid = ptid_get_pid (inferior_ptid); | |
720 | ||
3b3b1423 | 721 | size = register_size (gdbarch, regnum); |
8785ced0 MK |
722 | gdb_assert ((size % sizeof (PTRACE_TYPE_RET)) == 0); |
723 | buf = alloca (size); | |
724 | ||
10d6c8cd | 725 | /* Write the register contents into the inferior a chunk at a time. */ |
56be3814 | 726 | regcache_raw_collect (regcache, regnum, buf); |
8785ced0 MK |
727 | for (i = 0; i < size / sizeof (PTRACE_TYPE_RET); i++) |
728 | { | |
729 | errno = 0; | |
f7dd0ed7 | 730 | ptrace (PT_WRITE_U, pid, (PTRACE_TYPE_ARG3)(uintptr_t)addr, buf[i]); |
8785ced0 | 731 | if (errno != 0) |
4b8a1a28 | 732 | error (_("Couldn't write register %s (#%d): %s."), |
3b3b1423 | 733 | gdbarch_register_name (gdbarch, regnum), |
c9f4d572 | 734 | regnum, safe_strerror (errno)); |
8785ced0 MK |
735 | |
736 | addr += sizeof (PTRACE_TYPE_RET); | |
737 | } | |
738 | } | |
739 | ||
740 | /* Store register REGNUM back into the inferior. If REGNUM is -1, do | |
741 | this for all registers. */ | |
742 | ||
2c0b251b | 743 | static void |
28439f5e PA |
744 | inf_ptrace_store_registers (struct target_ops *ops, |
745 | struct regcache *regcache, int regnum) | |
8785ced0 MK |
746 | { |
747 | if (regnum == -1) | |
3b3b1423 UW |
748 | for (regnum = 0; |
749 | regnum < gdbarch_num_regs (get_regcache_arch (regcache)); | |
750 | regnum++) | |
56be3814 | 751 | inf_ptrace_store_register (regcache, regnum); |
8785ced0 | 752 | else |
56be3814 | 753 | inf_ptrace_store_register (regcache, regnum); |
8785ced0 MK |
754 | } |
755 | ||
756 | /* Create a "traditional" ptrace target. REGISTER_U_OFFSET should be | |
757 | a function returning the offset within the user area where a | |
758 | particular register is stored. */ | |
759 | ||
760 | struct target_ops * | |
7714d83a UW |
761 | inf_ptrace_trad_target (CORE_ADDR (*register_u_offset) |
762 | (struct gdbarch *, int, int)) | |
8785ced0 MK |
763 | { |
764 | struct target_ops *t = inf_ptrace_target(); | |
765 | ||
766 | gdb_assert (register_u_offset); | |
767 | inf_ptrace_register_u_offset = register_u_offset; | |
768 | t->to_fetch_registers = inf_ptrace_fetch_registers; | |
769 | t->to_store_registers = inf_ptrace_store_registers; | |
770 | ||
5bf970f9 AC |
771 | return t; |
772 | } |