Obvious fix: in entries for 1998-02-10 and 1998-02-06,
[deliverable/binutils-gdb.git] / gdb / infptrace.c
1 /* Low level Unix child interface to ptrace, for GDB when running under Unix.
2 Copyright 1988, 89, 90, 91, 92, 93, 94, 95, 96, 1998, 2001
3 Free Software Foundation, Inc.
4
5 This file is part of GDB.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
21
22 #include "defs.h"
23 #include "frame.h"
24 #include "inferior.h"
25 #include "target.h"
26 #include "gdb_string.h"
27 #include "regcache.h"
28
29 #include "gdb_wait.h"
30
31 #include "command.h"
32
33 #ifdef USG
34 #include <sys/types.h>
35 #endif
36
37 #include <sys/param.h>
38 #include "gdb_dirent.h"
39 #include <signal.h>
40 #include <sys/ioctl.h>
41
42 #ifdef HAVE_PTRACE_H
43 #include <ptrace.h>
44 #else
45 #ifdef HAVE_SYS_PTRACE_H
46 #include <sys/ptrace.h>
47 #endif
48 #endif
49
50 #if !defined (PT_READ_I)
51 #define PT_READ_I 1 /* Read word from text space */
52 #endif
53 #if !defined (PT_READ_D)
54 #define PT_READ_D 2 /* Read word from data space */
55 #endif
56 #if !defined (PT_READ_U)
57 #define PT_READ_U 3 /* Read word from kernel user struct */
58 #endif
59 #if !defined (PT_WRITE_I)
60 #define PT_WRITE_I 4 /* Write word to text space */
61 #endif
62 #if !defined (PT_WRITE_D)
63 #define PT_WRITE_D 5 /* Write word to data space */
64 #endif
65 #if !defined (PT_WRITE_U)
66 #define PT_WRITE_U 6 /* Write word to kernel user struct */
67 #endif
68 #if !defined (PT_CONTINUE)
69 #define PT_CONTINUE 7 /* Continue after signal */
70 #endif
71 #if !defined (PT_STEP)
72 #define PT_STEP 9 /* Set flag for single stepping */
73 #endif
74 #if !defined (PT_KILL)
75 #define PT_KILL 8 /* Send child a SIGKILL signal */
76 #endif
77
78 #ifndef PT_ATTACH
79 #define PT_ATTACH PTRACE_ATTACH
80 #endif
81 #ifndef PT_DETACH
82 #define PT_DETACH PTRACE_DETACH
83 #endif
84
85 #include "gdbcore.h"
86 #ifndef NO_SYS_FILE
87 #include <sys/file.h>
88 #endif
89 #if 0
90 /* Don't think this is used anymore. On the sequent (not sure whether it's
91 dynix or ptx or both), it is included unconditionally by sys/user.h and
92 not protected against multiple inclusion. */
93 #include "gdb_stat.h"
94 #endif
95
96 #if !defined (FETCH_INFERIOR_REGISTERS)
97 #include <sys/user.h> /* Probably need to poke the user structure */
98 #if defined (KERNEL_U_ADDR_BSD)
99 #include <a.out.h> /* For struct nlist */
100 #endif /* KERNEL_U_ADDR_BSD. */
101 #endif /* !FETCH_INFERIOR_REGISTERS */
102
103 #if !defined (CHILD_XFER_MEMORY)
104 static void udot_info (char *, int);
105 #endif
106
107 #if !defined (FETCH_INFERIOR_REGISTERS)
108 static void fetch_register (int);
109 static void store_register (int);
110 #endif
111
112 /*
113 * Some systems (Linux) may have threads implemented as pseudo-processes,
114 * in which case we may be tracing more than one process at a time.
115 * In that case, inferior_pid will contain the main process ID and the
116 * individual thread (process) id mashed together. These macros are
117 * used to separate them out. The definitions may be overridden in tm.h
118 *
119 * NOTE: default definitions here are for systems with no threads.
120 * Useful definitions MUST be provided in tm.h
121 */
122
123 #if !defined (PIDGET) /* Default definition for PIDGET/TIDGET. */
124 #define PIDGET(PID) PID
125 #define TIDGET(PID) 0
126 #endif
127
128 void _initialize_kernel_u_addr (void);
129 void _initialize_infptrace (void);
130 \f
131
132 /* This function simply calls ptrace with the given arguments.
133 It exists so that all calls to ptrace are isolated in this
134 machine-dependent file. */
135 int
136 call_ptrace (int request, int pid, PTRACE_ARG3_TYPE addr, int data)
137 {
138 int pt_status = 0;
139
140 #if 0
141 int saved_errno;
142
143 printf ("call_ptrace(request=%d, pid=%d, addr=0x%x, data=0x%x)",
144 request, pid, addr, data);
145 #endif
146 #if defined(PT_SETTRC)
147 /* If the parent can be told to attach to us, try to do it. */
148 if (request == PT_SETTRC)
149 {
150 errno = 0;
151 #if !defined (FIVE_ARG_PTRACE)
152 pt_status = ptrace (PT_SETTRC, pid, addr, data);
153 #else
154 /* Deal with HPUX 8.0 braindamage. We never use the
155 calls which require the fifth argument. */
156 pt_status = ptrace (PT_SETTRC, pid, addr, data, 0);
157 #endif
158 if (errno)
159 perror_with_name ("ptrace");
160 #if 0
161 printf (" = %d\n", pt_status);
162 #endif
163 if (pt_status < 0)
164 return pt_status;
165 else
166 return parent_attach_all (pid, addr, data);
167 }
168 #endif
169
170 #if defined(PT_CONTIN1)
171 /* On HPUX, PT_CONTIN1 is a form of continue that preserves pending
172 signals. If it's available, use it. */
173 if (request == PT_CONTINUE)
174 request = PT_CONTIN1;
175 #endif
176
177 #if defined(PT_SINGLE1)
178 /* On HPUX, PT_SINGLE1 is a form of step that preserves pending
179 signals. If it's available, use it. */
180 if (request == PT_STEP)
181 request = PT_SINGLE1;
182 #endif
183
184 #if 0
185 saved_errno = errno;
186 errno = 0;
187 #endif
188 #if !defined (FIVE_ARG_PTRACE)
189 pt_status = ptrace (request, pid, addr, data);
190 #else
191 /* Deal with HPUX 8.0 braindamage. We never use the
192 calls which require the fifth argument. */
193 pt_status = ptrace (request, pid, addr, data, 0);
194 #endif
195
196 #if 0
197 if (errno)
198 printf (" [errno = %d]", errno);
199
200 errno = saved_errno;
201 printf (" = 0x%x\n", pt_status);
202 #endif
203 return pt_status;
204 }
205
206
207 #if defined (DEBUG_PTRACE) || defined (FIVE_ARG_PTRACE)
208 /* For the rest of the file, use an extra level of indirection */
209 /* This lets us breakpoint usefully on call_ptrace. */
210 #define ptrace call_ptrace
211 #endif
212
213 /* Wait for a process to finish, possibly running a target-specific
214 hook before returning. */
215
216 int
217 ptrace_wait (int pid, int *status)
218 {
219 int wstate;
220
221 wstate = wait (status);
222 target_post_wait (wstate, *status);
223 return wstate;
224 }
225
226 void
227 kill_inferior (void)
228 {
229 int status;
230
231 if (inferior_pid == 0)
232 return;
233
234 /* This once used to call "kill" to kill the inferior just in case
235 the inferior was still running. As others have noted in the past
236 (kingdon) there shouldn't be any way to get here if the inferior
237 is still running -- else there's a major problem elsewere in gdb
238 and it needs to be fixed.
239
240 The kill call causes problems under hpux10, so it's been removed;
241 if this causes problems we'll deal with them as they arise. */
242 ptrace (PT_KILL, inferior_pid, (PTRACE_ARG3_TYPE) 0, 0);
243 ptrace_wait (0, &status);
244 target_mourn_inferior ();
245 }
246
247 #ifndef CHILD_RESUME
248
249 /* Resume execution of the inferior process.
250 If STEP is nonzero, single-step it.
251 If SIGNAL is nonzero, give it that signal. */
252
253 void
254 child_resume (int pid, int step, enum target_signal signal)
255 {
256 errno = 0;
257
258 if (pid == -1)
259 /* Resume all threads. */
260 /* I think this only gets used in the non-threaded case, where "resume
261 all threads" and "resume inferior_pid" are the same. */
262 pid = inferior_pid;
263
264 /* An address of (PTRACE_ARG3_TYPE)1 tells ptrace to continue from where
265 it was. (If GDB wanted it to start some other way, we have already
266 written a new PC value to the child.)
267
268 If this system does not support PT_STEP, a higher level function will
269 have called single_step() to transmute the step request into a
270 continue request (by setting breakpoints on all possible successor
271 instructions), so we don't have to worry about that here. */
272
273 if (step)
274 {
275 if (SOFTWARE_SINGLE_STEP_P)
276 internal_error (__FILE__, __LINE__, "failed internal consistency check"); /* Make sure this doesn't happen. */
277 else
278 ptrace (PT_STEP, pid, (PTRACE_ARG3_TYPE) 1,
279 target_signal_to_host (signal));
280 }
281 else
282 ptrace (PT_CONTINUE, pid, (PTRACE_ARG3_TYPE) 1,
283 target_signal_to_host (signal));
284
285 if (errno)
286 {
287 perror_with_name ("ptrace");
288 }
289 }
290 #endif /* CHILD_RESUME */
291 \f
292
293 #ifdef ATTACH_DETACH
294 /* Start debugging the process whose number is PID. */
295 int
296 attach (int pid)
297 {
298 errno = 0;
299 ptrace (PT_ATTACH, pid, (PTRACE_ARG3_TYPE) 0, 0);
300 if (errno)
301 perror_with_name ("ptrace");
302 attach_flag = 1;
303 return pid;
304 }
305
306 /* Stop debugging the process whose number is PID
307 and continue it with signal number SIGNAL.
308 SIGNAL = 0 means just continue it. */
309
310 void
311 detach (int signal)
312 {
313 errno = 0;
314 ptrace (PT_DETACH, inferior_pid, (PTRACE_ARG3_TYPE) 1, signal);
315 if (errno)
316 perror_with_name ("ptrace");
317 attach_flag = 0;
318 }
319 #endif /* ATTACH_DETACH */
320 \f
321 /* Default the type of the ptrace transfer to int. */
322 #ifndef PTRACE_XFER_TYPE
323 #define PTRACE_XFER_TYPE int
324 #endif
325
326 /* KERNEL_U_ADDR is the amount to subtract from u.u_ar0
327 to get the offset in the core file of the register values. */
328 #if defined (KERNEL_U_ADDR_BSD) && !defined (FETCH_INFERIOR_REGISTERS)
329 /* Get kernel_u_addr using BSD-style nlist(). */
330 CORE_ADDR kernel_u_addr;
331 #endif /* KERNEL_U_ADDR_BSD. */
332
333 void
334 _initialize_kernel_u_addr (void)
335 {
336 #if defined (KERNEL_U_ADDR_BSD) && !defined (FETCH_INFERIOR_REGISTERS)
337 struct nlist names[2];
338
339 names[0].n_un.n_name = "_u";
340 names[1].n_un.n_name = NULL;
341 if (nlist ("/vmunix", names) == 0)
342 kernel_u_addr = names[0].n_value;
343 else
344 internal_error (__FILE__, __LINE__,
345 "Unable to get kernel u area address.");
346 #endif /* KERNEL_U_ADDR_BSD. */
347 }
348
349 #if !defined (FETCH_INFERIOR_REGISTERS)
350
351 #if !defined (offsetof)
352 #define offsetof(TYPE, MEMBER) ((unsigned long) &((TYPE *)0)->MEMBER)
353 #endif
354
355 /* U_REGS_OFFSET is the offset of the registers within the u area. */
356 #if !defined (U_REGS_OFFSET)
357 #define U_REGS_OFFSET \
358 ptrace (PT_READ_U, inferior_pid, \
359 (PTRACE_ARG3_TYPE) (offsetof (struct user, u_ar0)), 0) \
360 - KERNEL_U_ADDR
361 #endif
362
363 /* Registers we shouldn't try to fetch. */
364 #if !defined (CANNOT_FETCH_REGISTER)
365 #define CANNOT_FETCH_REGISTER(regno) 0
366 #endif
367
368 /* Fetch one register. */
369
370 static void
371 fetch_register (int regno)
372 {
373 /* This isn't really an address. But ptrace thinks of it as one. */
374 CORE_ADDR regaddr;
375 char mess[128]; /* For messages */
376 register int i;
377 unsigned int offset; /* Offset of registers within the u area. */
378 char buf[MAX_REGISTER_RAW_SIZE];
379 int tid;
380
381 if (CANNOT_FETCH_REGISTER (regno))
382 {
383 memset (buf, '\0', REGISTER_RAW_SIZE (regno)); /* Supply zeroes */
384 supply_register (regno, buf);
385 return;
386 }
387
388 /* Overload thread id onto process id */
389 if ((tid = TIDGET (inferior_pid)) == 0)
390 tid = inferior_pid; /* no thread id, just use process id */
391
392 offset = U_REGS_OFFSET;
393
394 regaddr = register_addr (regno, offset);
395 for (i = 0; i < REGISTER_RAW_SIZE (regno); i += sizeof (PTRACE_XFER_TYPE))
396 {
397 errno = 0;
398 *(PTRACE_XFER_TYPE *) & buf[i] = ptrace (PT_READ_U, tid,
399 (PTRACE_ARG3_TYPE) regaddr, 0);
400 regaddr += sizeof (PTRACE_XFER_TYPE);
401 if (errno != 0)
402 {
403 sprintf (mess, "reading register %s (#%d)",
404 REGISTER_NAME (regno), regno);
405 perror_with_name (mess);
406 }
407 }
408 supply_register (regno, buf);
409 }
410
411
412 /* Fetch register values from the inferior.
413 If REGNO is negative, do this for all registers.
414 Otherwise, REGNO specifies which register (so we can save time). */
415
416 void
417 fetch_inferior_registers (int regno)
418 {
419 if (regno >= 0)
420 {
421 fetch_register (regno);
422 }
423 else
424 {
425 for (regno = 0; regno < ARCH_NUM_REGS; regno++)
426 {
427 fetch_register (regno);
428 }
429 }
430 }
431
432 /* Registers we shouldn't try to store. */
433 #if !defined (CANNOT_STORE_REGISTER)
434 #define CANNOT_STORE_REGISTER(regno) 0
435 #endif
436
437 /* Store one register. */
438
439 static void
440 store_register (int regno)
441 {
442 /* This isn't really an address. But ptrace thinks of it as one. */
443 CORE_ADDR regaddr;
444 char mess[128]; /* For messages */
445 register int i;
446 unsigned int offset; /* Offset of registers within the u area. */
447 int tid;
448
449 if (CANNOT_STORE_REGISTER (regno))
450 {
451 return;
452 }
453
454 /* Overload thread id onto process id */
455 if ((tid = TIDGET (inferior_pid)) == 0)
456 tid = inferior_pid; /* no thread id, just use process id */
457
458 offset = U_REGS_OFFSET;
459
460 regaddr = register_addr (regno, offset);
461 for (i = 0; i < REGISTER_RAW_SIZE (regno); i += sizeof (PTRACE_XFER_TYPE))
462 {
463 errno = 0;
464 ptrace (PT_WRITE_U, tid, (PTRACE_ARG3_TYPE) regaddr,
465 *(PTRACE_XFER_TYPE *) & registers[REGISTER_BYTE (regno) + i]);
466 regaddr += sizeof (PTRACE_XFER_TYPE);
467 if (errno != 0)
468 {
469 sprintf (mess, "writing register %s (#%d)",
470 REGISTER_NAME (regno), regno);
471 perror_with_name (mess);
472 }
473 }
474 }
475
476 /* Store our register values back into the inferior.
477 If REGNO is negative, do this for all registers.
478 Otherwise, REGNO specifies which register (so we can save time). */
479
480 void
481 store_inferior_registers (int regno)
482 {
483 if (regno >= 0)
484 {
485 store_register (regno);
486 }
487 else
488 {
489 for (regno = 0; regno < ARCH_NUM_REGS; regno++)
490 {
491 store_register (regno);
492 }
493 }
494 }
495 #endif /* !defined (FETCH_INFERIOR_REGISTERS). */
496 \f
497
498 #if !defined (CHILD_XFER_MEMORY)
499 /* NOTE! I tried using PTRACE_READDATA, etc., to read and write memory
500 in the NEW_SUN_PTRACE case.
501 It ought to be straightforward. But it appears that writing did
502 not write the data that I specified. I cannot understand where
503 it got the data that it actually did write. */
504
505 /* Copy LEN bytes to or from inferior's memory starting at MEMADDR
506 to debugger memory starting at MYADDR. Copy to inferior if
507 WRITE is nonzero. TARGET is ignored.
508
509 Returns the length copied, which is either the LEN argument or zero.
510 This xfer function does not do partial moves, since child_ops
511 doesn't allow memory operations to cross below us in the target stack
512 anyway. */
513
514 int
515 child_xfer_memory (CORE_ADDR memaddr, char *myaddr, int len, int write,
516 struct mem_attrib *attrib ATTRIBUTE_UNUSED,
517 struct target_ops *target)
518 {
519 register int i;
520 /* Round starting address down to longword boundary. */
521 register CORE_ADDR addr = memaddr & -sizeof (PTRACE_XFER_TYPE);
522 /* Round ending address up; get number of longwords that makes. */
523 register int count
524 = (((memaddr + len) - addr) + sizeof (PTRACE_XFER_TYPE) - 1)
525 / sizeof (PTRACE_XFER_TYPE);
526 /* Allocate buffer of that many longwords. */
527 register PTRACE_XFER_TYPE *buffer
528 = (PTRACE_XFER_TYPE *) alloca (count * sizeof (PTRACE_XFER_TYPE));
529
530 if (write)
531 {
532 /* Fill start and end extra bytes of buffer with existing memory data. */
533
534 if (addr != memaddr || len < (int) sizeof (PTRACE_XFER_TYPE))
535 {
536 /* Need part of initial word -- fetch it. */
537 buffer[0] = ptrace (PT_READ_I, PIDGET (inferior_pid),
538 (PTRACE_ARG3_TYPE) addr, 0);
539 }
540
541 if (count > 1) /* FIXME, avoid if even boundary */
542 {
543 buffer[count - 1]
544 = ptrace (PT_READ_I, PIDGET (inferior_pid),
545 ((PTRACE_ARG3_TYPE)
546 (addr + (count - 1) * sizeof (PTRACE_XFER_TYPE))),
547 0);
548 }
549
550 /* Copy data to be written over corresponding part of buffer */
551
552 memcpy ((char *) buffer + (memaddr & (sizeof (PTRACE_XFER_TYPE) - 1)),
553 myaddr,
554 len);
555
556 /* Write the entire buffer. */
557
558 for (i = 0; i < count; i++, addr += sizeof (PTRACE_XFER_TYPE))
559 {
560 errno = 0;
561 ptrace (PT_WRITE_D, PIDGET (inferior_pid),
562 (PTRACE_ARG3_TYPE) addr, buffer[i]);
563 if (errno)
564 {
565 /* Using the appropriate one (I or D) is necessary for
566 Gould NP1, at least. */
567 errno = 0;
568 ptrace (PT_WRITE_I, PIDGET (inferior_pid),
569 (PTRACE_ARG3_TYPE) addr, buffer[i]);
570 }
571 if (errno)
572 return 0;
573 }
574 #ifdef CLEAR_INSN_CACHE
575 CLEAR_INSN_CACHE ();
576 #endif
577 }
578 else
579 {
580 /* Read all the longwords */
581 for (i = 0; i < count; i++, addr += sizeof (PTRACE_XFER_TYPE))
582 {
583 errno = 0;
584 buffer[i] = ptrace (PT_READ_I, PIDGET (inferior_pid),
585 (PTRACE_ARG3_TYPE) addr, 0);
586 if (errno)
587 return 0;
588 QUIT;
589 }
590
591 /* Copy appropriate bytes out of the buffer. */
592 memcpy (myaddr,
593 (char *) buffer + (memaddr & (sizeof (PTRACE_XFER_TYPE) - 1)),
594 len);
595 }
596 return len;
597 }
598 \f
599
600 static void
601 udot_info (char *dummy1, int dummy2)
602 {
603 #if defined (KERNEL_U_SIZE)
604 int udot_off; /* Offset into user struct */
605 int udot_val; /* Value from user struct at udot_off */
606 char mess[128]; /* For messages */
607 #endif
608
609 if (!target_has_execution)
610 {
611 error ("The program is not being run.");
612 }
613
614 #if !defined (KERNEL_U_SIZE)
615
616 /* Adding support for this command is easy. Typically you just add a
617 routine, called "kernel_u_size" that returns the size of the user
618 struct, to the appropriate *-nat.c file and then add to the native
619 config file "#define KERNEL_U_SIZE kernel_u_size()" */
620 error ("Don't know how large ``struct user'' is in this version of gdb.");
621
622 #else
623
624 for (udot_off = 0; udot_off < KERNEL_U_SIZE; udot_off += sizeof (udot_val))
625 {
626 if ((udot_off % 24) == 0)
627 {
628 if (udot_off > 0)
629 {
630 printf_filtered ("\n");
631 }
632 printf_filtered ("%04x:", udot_off);
633 }
634 udot_val = ptrace (PT_READ_U, inferior_pid, (PTRACE_ARG3_TYPE) udot_off, 0);
635 if (errno != 0)
636 {
637 sprintf (mess, "\nreading user struct at offset 0x%x", udot_off);
638 perror_with_name (mess);
639 }
640 /* Avoid using nonportable (?) "*" in print specs */
641 printf_filtered (sizeof (int) == 4 ? " 0x%08x" : " 0x%16x", udot_val);
642 }
643 printf_filtered ("\n");
644
645 #endif
646 }
647 #endif /* !defined (CHILD_XFER_MEMORY). */
648 \f
649
650 void
651 _initialize_infptrace (void)
652 {
653 #if !defined (CHILD_XFER_MEMORY)
654 add_info ("udot", udot_info,
655 "Print contents of kernel ``struct user'' for current child.");
656 #endif
657 }
This page took 0.043678 seconds and 4 git commands to generate.