1 /* Machine independent support for SVR4 /proc (process file system) for GDB.
3 Copyright (C) 1999, 2000, 2001, 2002, 2003, 2006, 2007
4 Free Software Foundation, Inc.
6 Written by Michael Snyder at Cygnus Solutions.
7 Based on work by Fred Fish, Stu Grossman, Geoff Noer, and others.
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 Foundation,
23 Inc., 51 Franklin Street, Fifth Floor,
24 Boston, MA 02110-1301, USA. */
30 #include "elf-bfd.h" /* for elfcore_write_* */
32 #include "gdbthread.h"
35 #if defined (NEW_PROC_API)
36 #define _STRUCTURED_PROC 1 /* Should be done by configure script. */
39 #include <sys/procfs.h>
40 #ifdef HAVE_SYS_FAULT_H
41 #include <sys/fault.h>
43 #ifdef HAVE_SYS_SYSCALL_H
44 #include <sys/syscall.h>
46 #include <sys/errno.h>
50 #include "gdb_string.h"
51 #include "gdb_assert.h"
58 * This module provides the interface between GDB and the
59 * /proc file system, which is used on many versions of Unix
60 * as a means for debuggers to control other processes.
61 * Examples of the systems that use this interface are:
68 * /proc works by imitating a file system: you open a simulated file
69 * that represents the process you wish to interact with, and
70 * perform operations on that "file" in order to examine or change
71 * the state of the other process.
73 * The most important thing to know about /proc and this module
74 * is that there are two very different interfaces to /proc:
75 * One that uses the ioctl system call, and
76 * another that uses read and write system calls.
77 * This module has to support both /proc interfaces. This means
78 * that there are two different ways of doing every basic operation.
80 * In order to keep most of the code simple and clean, I have
81 * defined an interface "layer" which hides all these system calls.
82 * An ifdef (NEW_PROC_API) determines which interface we are using,
83 * and most or all occurrances of this ifdef should be confined to
84 * this interface layer.
88 /* Determine which /proc API we are using:
89 The ioctl API defines PIOCSTATUS, while
90 the read/write (multiple fd) API never does. */
93 #include <sys/types.h>
94 #include "gdb_dirent.h" /* opendir/readdir, for listing the LWP's */
97 #include <fcntl.h> /* for O_RDONLY */
98 #include <unistd.h> /* for "X_OK" */
99 #include "gdb_stat.h" /* for struct stat */
101 /* Note: procfs-utils.h must be included after the above system header
102 files, because it redefines various system calls using macros.
103 This may be incompatible with the prototype declarations. */
105 #include "proc-utils.h"
107 /* Prototypes for supply_gregset etc. */
110 /* =================== TARGET_OPS "MODULE" =================== */
113 * This module defines the GDB target vector and its methods.
116 static void procfs_open (char *, int);
117 static void procfs_attach (char *, int);
118 static void procfs_detach (char *, int);
119 static void procfs_resume (ptid_t, int, enum target_signal);
120 static int procfs_can_run (void);
121 static void procfs_stop (void);
122 static void procfs_files_info (struct target_ops *);
123 static void procfs_fetch_registers (struct regcache *, int);
124 static void procfs_store_registers (struct regcache *, int);
125 static void procfs_notice_signals (ptid_t);
126 static void procfs_prepare_to_store (struct regcache *);
127 static void procfs_kill_inferior (void);
128 static void procfs_mourn_inferior (void);
129 static void procfs_create_inferior (char *, char *, char **, int);
130 static ptid_t procfs_wait (ptid_t, struct target_waitstatus *);
131 static int procfs_xfer_memory (CORE_ADDR, char *, int, int,
132 struct mem_attrib *attrib,
133 struct target_ops *);
134 static LONGEST procfs_xfer_partial (struct target_ops *ops,
135 enum target_object object,
137 void *readbuf, const void *writebuf,
138 ULONGEST offset, LONGEST len);
140 static int procfs_thread_alive (ptid_t);
142 void procfs_find_new_threads (void);
143 char *procfs_pid_to_str (ptid_t);
145 static int proc_find_memory_regions (int (*) (CORE_ADDR,
151 static char * procfs_make_note_section (bfd *, int *);
153 static int procfs_can_use_hw_breakpoint (int, int, int);
155 struct target_ops procfs_ops; /* the target vector */
158 init_procfs_ops (void)
160 procfs_ops.to_shortname = "procfs";
161 procfs_ops.to_longname = "Unix /proc child process";
163 "Unix /proc child process (started by the \"run\" command).";
164 procfs_ops.to_open = procfs_open;
165 procfs_ops.to_can_run = procfs_can_run;
166 procfs_ops.to_create_inferior = procfs_create_inferior;
167 procfs_ops.to_kill = procfs_kill_inferior;
168 procfs_ops.to_mourn_inferior = procfs_mourn_inferior;
169 procfs_ops.to_attach = procfs_attach;
170 procfs_ops.to_detach = procfs_detach;
171 procfs_ops.to_wait = procfs_wait;
172 procfs_ops.to_resume = procfs_resume;
173 procfs_ops.to_prepare_to_store = procfs_prepare_to_store;
174 procfs_ops.to_fetch_registers = procfs_fetch_registers;
175 procfs_ops.to_store_registers = procfs_store_registers;
176 procfs_ops.to_xfer_partial = procfs_xfer_partial;
177 procfs_ops.deprecated_xfer_memory = procfs_xfer_memory;
178 procfs_ops.to_insert_breakpoint = memory_insert_breakpoint;
179 procfs_ops.to_remove_breakpoint = memory_remove_breakpoint;
180 procfs_ops.to_notice_signals = procfs_notice_signals;
181 procfs_ops.to_files_info = procfs_files_info;
182 procfs_ops.to_stop = procfs_stop;
184 procfs_ops.to_terminal_init = terminal_init_inferior;
185 procfs_ops.to_terminal_inferior = terminal_inferior;
186 procfs_ops.to_terminal_ours_for_output = terminal_ours_for_output;
187 procfs_ops.to_terminal_ours = terminal_ours;
188 procfs_ops.to_terminal_save_ours = terminal_save_ours;
189 procfs_ops.to_terminal_info = child_terminal_info;
191 procfs_ops.to_find_new_threads = procfs_find_new_threads;
192 procfs_ops.to_thread_alive = procfs_thread_alive;
193 procfs_ops.to_pid_to_str = procfs_pid_to_str;
195 procfs_ops.to_has_all_memory = 1;
196 procfs_ops.to_has_memory = 1;
197 procfs_ops.to_has_execution = 1;
198 procfs_ops.to_has_stack = 1;
199 procfs_ops.to_has_registers = 1;
200 procfs_ops.to_stratum = process_stratum;
201 procfs_ops.to_has_thread_control = tc_schedlock;
202 procfs_ops.to_find_memory_regions = proc_find_memory_regions;
203 procfs_ops.to_make_corefile_notes = procfs_make_note_section;
204 procfs_ops.to_can_use_hw_breakpoint = procfs_can_use_hw_breakpoint;
205 procfs_ops.to_magic = OPS_MAGIC;
208 /* =================== END, TARGET_OPS "MODULE" =================== */
213 * Put any typedefs, defines etc. here that are required for
214 * the unification of code that handles different versions of /proc.
217 #ifdef NEW_PROC_API /* Solaris 7 && 8 method for watchpoints */
219 enum { READ_WATCHFLAG = WA_READ,
220 WRITE_WATCHFLAG = WA_WRITE,
221 EXEC_WATCHFLAG = WA_EXEC,
222 AFTER_WATCHFLAG = WA_TRAPAFTER
225 #else /* Irix method for watchpoints */
226 enum { READ_WATCHFLAG = MA_READ,
227 WRITE_WATCHFLAG = MA_WRITE,
228 EXEC_WATCHFLAG = MA_EXEC,
229 AFTER_WATCHFLAG = 0 /* trapafter not implemented */
234 #ifdef HAVE_PR_SIGSET_T
235 typedef pr_sigset_t gdb_sigset_t;
237 typedef sigset_t gdb_sigset_t;
241 #ifdef HAVE_PR_SIGACTION64_T
242 typedef pr_sigaction64_t gdb_sigaction_t;
244 typedef struct sigaction gdb_sigaction_t;
248 #ifdef HAVE_PR_SIGINFO64_T
249 typedef pr_siginfo64_t gdb_siginfo_t;
251 typedef struct siginfo gdb_siginfo_t;
254 /* gdb_premptysysset */
256 #define gdb_premptysysset premptysysset
258 #define gdb_premptysysset premptyset
263 #define gdb_praddsysset praddsysset
265 #define gdb_praddsysset praddset
270 #define gdb_prdelsysset prdelsysset
272 #define gdb_prdelsysset prdelset
275 /* prissyssetmember */
276 #ifdef prissyssetmember
277 #define gdb_pr_issyssetmember prissyssetmember
279 #define gdb_pr_issyssetmember prismember
282 /* As a feature test, saying ``#if HAVE_PRSYSENT_T'' everywhere isn't
283 as intuitively descriptive as it could be, so we'll define
284 DYNAMIC_SYSCALLS to mean the same thing. Anyway, at the time of
285 this writing, this feature is only found on AIX5 systems and
286 basically means that the set of syscalls is not fixed. I.e,
287 there's no nice table that one can #include to get all of the
288 syscall numbers. Instead, they're stored in /proc/PID/sysent
289 for each process. We are at least guaranteed that they won't
290 change over the lifetime of the process. But each process could
291 (in theory) have different syscall numbers.
293 #ifdef HAVE_PRSYSENT_T
294 #define DYNAMIC_SYSCALLS
299 /* =================== STRUCT PROCINFO "MODULE" =================== */
301 /* FIXME: this comment will soon be out of date W.R.T. threads. */
303 /* The procinfo struct is a wrapper to hold all the state information
304 concerning a /proc process. There should be exactly one procinfo
305 for each process, and since GDB currently can debug only one
306 process at a time, that means there should be only one procinfo.
307 All of the LWP's of a process can be accessed indirectly thru the
308 single process procinfo.
310 However, against the day when GDB may debug more than one process,
311 this data structure is kept in a list (which for now will hold no
312 more than one member), and many functions will have a pointer to a
313 procinfo as an argument.
315 There will be a separate procinfo structure for use by the (not yet
316 implemented) "info proc" command, so that we can print useful
317 information about any random process without interfering with the
318 inferior's procinfo information. */
321 /* format strings for /proc paths */
322 # ifndef CTL_PROC_NAME_FMT
323 # define MAIN_PROC_NAME_FMT "/proc/%d"
324 # define CTL_PROC_NAME_FMT "/proc/%d/ctl"
325 # define AS_PROC_NAME_FMT "/proc/%d/as"
326 # define MAP_PROC_NAME_FMT "/proc/%d/map"
327 # define STATUS_PROC_NAME_FMT "/proc/%d/status"
328 # define MAX_PROC_NAME_SIZE sizeof("/proc/99999/lwp/8096/lstatus")
330 /* the name of the proc status struct depends on the implementation */
331 typedef pstatus_t gdb_prstatus_t;
332 typedef lwpstatus_t gdb_lwpstatus_t;
333 #else /* ! NEW_PROC_API */
334 /* format strings for /proc paths */
335 # ifndef CTL_PROC_NAME_FMT
336 # define MAIN_PROC_NAME_FMT "/proc/%05d"
337 # define CTL_PROC_NAME_FMT "/proc/%05d"
338 # define AS_PROC_NAME_FMT "/proc/%05d"
339 # define MAP_PROC_NAME_FMT "/proc/%05d"
340 # define STATUS_PROC_NAME_FMT "/proc/%05d"
341 # define MAX_PROC_NAME_SIZE sizeof("/proc/ttttppppp")
343 /* the name of the proc status struct depends on the implementation */
344 typedef prstatus_t gdb_prstatus_t;
345 typedef prstatus_t gdb_lwpstatus_t;
346 #endif /* NEW_PROC_API */
348 typedef struct procinfo {
349 struct procinfo *next;
350 int pid; /* Process ID */
351 int tid; /* Thread/LWP id */
355 int ignore_next_sigstop;
357 /* The following four fd fields may be identical, or may contain
358 several different fd's, depending on the version of /proc
359 (old ioctl or new read/write). */
361 int ctl_fd; /* File descriptor for /proc control file */
363 * The next three file descriptors are actually only needed in the
364 * read/write, multiple-file-descriptor implemenation (NEW_PROC_API).
365 * However, to avoid a bunch of #ifdefs in the code, we will use
366 * them uniformly by (in the case of the ioctl single-file-descriptor
367 * implementation) filling them with copies of the control fd.
369 int status_fd; /* File descriptor for /proc status file */
370 int as_fd; /* File descriptor for /proc as file */
372 char pathname[MAX_PROC_NAME_SIZE]; /* Pathname to /proc entry */
374 fltset_t saved_fltset; /* Saved traced hardware fault set */
375 gdb_sigset_t saved_sigset; /* Saved traced signal set */
376 gdb_sigset_t saved_sighold; /* Saved held signal set */
377 sysset_t *saved_exitset; /* Saved traced system call exit set */
378 sysset_t *saved_entryset; /* Saved traced system call entry set */
380 gdb_prstatus_t prstatus; /* Current process status info */
383 gdb_fpregset_t fpregset; /* Current floating point registers */
386 #ifdef DYNAMIC_SYSCALLS
387 int num_syscalls; /* Total number of syscalls */
388 char **syscall_names; /* Syscall number to name map */
391 struct procinfo *thread_list;
393 int status_valid : 1;
395 int fpregs_valid : 1;
396 int threads_valid: 1;
399 static char errmsg[128]; /* shared error msg buffer */
401 /* Function prototypes for procinfo module: */
403 static procinfo *find_procinfo_or_die (int pid, int tid);
404 static procinfo *find_procinfo (int pid, int tid);
405 static procinfo *create_procinfo (int pid, int tid);
406 static void destroy_procinfo (procinfo * p);
407 static void do_destroy_procinfo_cleanup (void *);
408 static void dead_procinfo (procinfo * p, char *msg, int killp);
409 static int open_procinfo_files (procinfo * p, int which);
410 static void close_procinfo_files (procinfo * p);
411 static int sysset_t_size (procinfo *p);
412 static sysset_t *sysset_t_alloc (procinfo * pi);
413 #ifdef DYNAMIC_SYSCALLS
414 static void load_syscalls (procinfo *pi);
415 static void free_syscalls (procinfo *pi);
416 static int find_syscall (procinfo *pi, char *name);
417 #endif /* DYNAMIC_SYSCALLS */
419 /* The head of the procinfo list: */
420 static procinfo * procinfo_list;
423 * Function: find_procinfo
425 * Search the procinfo list.
427 * Returns: pointer to procinfo, or NULL if not found.
431 find_procinfo (int pid, int tid)
435 for (pi = procinfo_list; pi; pi = pi->next)
442 /* Don't check threads_valid. If we're updating the
443 thread_list, we want to find whatever threads are already
444 here. This means that in general it is the caller's
445 responsibility to check threads_valid and update before
446 calling find_procinfo, if the caller wants to find a new
449 for (pi = pi->thread_list; pi; pi = pi->next)
458 * Function: find_procinfo_or_die
460 * Calls find_procinfo, but errors on failure.
464 find_procinfo_or_die (int pid, int tid)
466 procinfo *pi = find_procinfo (pid, tid);
471 error (_("procfs: couldn't find pid %d (kernel thread %d) in procinfo list."),
474 error (_("procfs: couldn't find pid %d in procinfo list."), pid);
479 /* open_with_retry() is a wrapper for open(). The appropriate
480 open() call is attempted; if unsuccessful, it will be retried as
481 many times as needed for the EAGAIN and EINTR conditions.
483 For other conditions, open_with_retry() will retry the open() a
484 limited number of times. In addition, a short sleep is imposed
485 prior to retrying the open(). The reason for this sleep is to give
486 the kernel a chance to catch up and create the file in question in
487 the event that GDB "wins" the race to open a file before the kernel
491 open_with_retry (const char *pathname, int flags)
493 int retries_remaining, status;
495 retries_remaining = 2;
499 status = open (pathname, flags);
501 if (status >= 0 || retries_remaining == 0)
503 else if (errno != EINTR && errno != EAGAIN)
514 * Function: open_procinfo_files
516 * Open the file descriptor for the process or LWP.
517 * ifdef NEW_PROC_API, we only open the control file descriptor;
518 * the others are opened lazily as needed.
519 * else (if not NEW_PROC_API), there is only one real
520 * file descriptor, but we keep multiple copies of it so that
521 * the code that uses them does not have to be #ifdef'd.
523 * Return: file descriptor, or zero for failure.
526 enum { FD_CTL, FD_STATUS, FD_AS };
529 open_procinfo_files (procinfo *pi, int which)
532 char tmp[MAX_PROC_NAME_SIZE];
537 * This function is getting ALMOST long enough to break up into several.
538 * Here is some rationale:
540 * NEW_PROC_API (Solaris 2.6, Solaris 2.7, Unixware):
541 * There are several file descriptors that may need to be open
542 * for any given process or LWP. The ones we're intereted in are:
543 * - control (ctl) write-only change the state
544 * - status (status) read-only query the state
545 * - address space (as) read/write access memory
546 * - map (map) read-only virtual addr map
547 * Most of these are opened lazily as they are needed.
548 * The pathnames for the 'files' for an LWP look slightly
549 * different from those of a first-class process:
550 * Pathnames for a process (<proc-id>):
551 * /proc/<proc-id>/ctl
552 * /proc/<proc-id>/status
554 * /proc/<proc-id>/map
555 * Pathnames for an LWP (lwp-id):
556 * /proc/<proc-id>/lwp/<lwp-id>/lwpctl
557 * /proc/<proc-id>/lwp/<lwp-id>/lwpstatus
558 * An LWP has no map or address space file descriptor, since
559 * the memory map and address space are shared by all LWPs.
561 * Everyone else (Solaris 2.5, Irix, OSF)
562 * There is only one file descriptor for each process or LWP.
563 * For convenience, we copy the same file descriptor into all
564 * three fields of the procinfo struct (ctl_fd, status_fd, and
565 * as_fd, see NEW_PROC_API above) so that code that uses them
566 * doesn't need any #ifdef's.
571 * Each LWP has an independent file descriptor, but these
572 * are not obtained via the 'open' system call like the rest:
573 * instead, they're obtained thru an ioctl call (PIOCOPENLWP)
574 * to the file descriptor of the parent process.
577 * These do not even have their own independent file descriptor.
578 * All operations are carried out on the file descriptor of the
579 * parent process. Therefore we just call open again for each
580 * thread, getting a new handle for the same 'file'.
585 * In this case, there are several different file descriptors that
586 * we might be asked to open. The control file descriptor will be
587 * opened early, but the others will be opened lazily as they are
591 strcpy (tmp, pi->pathname);
592 switch (which) { /* which file descriptor to open? */
595 strcat (tmp, "/lwpctl");
597 strcat (tmp, "/ctl");
598 fd = open_with_retry (tmp, O_WRONLY);
605 return 0; /* there is no 'as' file descriptor for an lwp */
607 fd = open_with_retry (tmp, O_RDWR);
614 strcat (tmp, "/lwpstatus");
616 strcat (tmp, "/status");
617 fd = open_with_retry (tmp, O_RDONLY);
623 return 0; /* unknown file descriptor */
625 #else /* not NEW_PROC_API */
627 * In this case, there is only one file descriptor for each procinfo
628 * (ie. each process or LWP). In fact, only the file descriptor for
629 * the process can actually be opened by an 'open' system call.
630 * The ones for the LWPs have to be obtained thru an IOCTL call
631 * on the process's file descriptor.
633 * For convenience, we copy each procinfo's single file descriptor
634 * into all of the fields occupied by the several file descriptors
635 * of the NEW_PROC_API implementation. That way, the code that uses
636 * them can be written without ifdefs.
640 #ifdef PIOCTSTATUS /* OSF */
641 /* Only one FD; just open it. */
642 if ((fd = open_with_retry (pi->pathname, O_RDWR)) == 0)
644 #else /* Sol 2.5, Irix, other? */
645 if (pi->tid == 0) /* Master procinfo for the process */
647 fd = open_with_retry (pi->pathname, O_RDWR);
651 else /* LWP thread procinfo */
653 #ifdef PIOCOPENLWP /* Sol 2.5, thread/LWP */
657 /* Find the procinfo for the entire process. */
658 if ((process = find_procinfo (pi->pid, 0)) == NULL)
661 /* Now obtain the file descriptor for the LWP. */
662 if ((fd = ioctl (process->ctl_fd, PIOCOPENLWP, &lwpid)) <= 0)
664 #else /* Irix, other? */
665 return 0; /* Don't know how to open threads */
666 #endif /* Sol 2.5 PIOCOPENLWP */
668 #endif /* OSF PIOCTSTATUS */
669 pi->ctl_fd = pi->as_fd = pi->status_fd = fd;
670 #endif /* NEW_PROC_API */
672 return 1; /* success */
676 * Function: create_procinfo
678 * Allocate a data structure and link it into the procinfo list.
679 * (First tries to find a pre-existing one (FIXME: why?)
681 * Return: pointer to new procinfo struct.
685 create_procinfo (int pid, int tid)
687 procinfo *pi, *parent;
689 if ((pi = find_procinfo (pid, tid)))
690 return pi; /* Already exists, nothing to do. */
692 /* find parent before doing malloc, to save having to cleanup */
694 parent = find_procinfo_or_die (pid, 0); /* FIXME: should I
696 doesn't exist yet? */
698 pi = (procinfo *) xmalloc (sizeof (procinfo));
699 memset (pi, 0, sizeof (procinfo));
703 #ifdef DYNAMIC_SYSCALLS
707 pi->saved_entryset = sysset_t_alloc (pi);
708 pi->saved_exitset = sysset_t_alloc (pi);
710 /* Chain into list. */
713 sprintf (pi->pathname, MAIN_PROC_NAME_FMT, pid);
714 pi->next = procinfo_list;
720 sprintf (pi->pathname, "/proc/%05d/lwp/%d", pid, tid);
722 sprintf (pi->pathname, MAIN_PROC_NAME_FMT, pid);
724 pi->next = parent->thread_list;
725 parent->thread_list = pi;
731 * Function: close_procinfo_files
733 * Close all file descriptors associated with the procinfo
737 close_procinfo_files (procinfo *pi)
744 if (pi->status_fd > 0)
745 close (pi->status_fd);
747 pi->ctl_fd = pi->as_fd = pi->status_fd = 0;
751 * Function: destroy_procinfo
753 * Destructor function. Close, unlink and deallocate the object.
757 destroy_one_procinfo (procinfo **list, procinfo *pi)
761 /* Step one: unlink the procinfo from its list */
765 for (ptr = *list; ptr; ptr = ptr->next)
768 ptr->next = pi->next;
772 /* Step two: close any open file descriptors */
773 close_procinfo_files (pi);
775 /* Step three: free the memory. */
776 #ifdef DYNAMIC_SYSCALLS
779 xfree (pi->saved_entryset);
780 xfree (pi->saved_exitset);
785 destroy_procinfo (procinfo *pi)
789 if (pi->tid != 0) /* destroy a thread procinfo */
791 tmp = find_procinfo (pi->pid, 0); /* find the parent process */
792 destroy_one_procinfo (&tmp->thread_list, pi);
794 else /* destroy a process procinfo and all its threads */
796 /* First destroy the children, if any; */
797 while (pi->thread_list != NULL)
798 destroy_one_procinfo (&pi->thread_list, pi->thread_list);
799 /* Then destroy the parent. Genocide!!! */
800 destroy_one_procinfo (&procinfo_list, pi);
805 do_destroy_procinfo_cleanup (void *pi)
807 destroy_procinfo (pi);
810 enum { NOKILL, KILL };
813 * Function: dead_procinfo
815 * To be called on a non_recoverable error for a procinfo.
816 * Prints error messages, optionally sends a SIGKILL to the process,
817 * then destroys the data structure.
821 dead_procinfo (procinfo *pi, char *msg, int kill_p)
827 print_sys_errmsg (pi->pathname, errno);
831 sprintf (procfile, "process %d", pi->pid);
832 print_sys_errmsg (procfile, errno);
835 kill (pi->pid, SIGKILL);
837 destroy_procinfo (pi);
842 * Function: sysset_t_size
844 * Returns the (complete) size of a sysset_t struct. Normally, this
845 * is just sizeof (syset_t), but in the case of Monterey/64, the actual
846 * size of sysset_t isn't known until runtime.
850 sysset_t_size (procinfo * pi)
852 #ifndef DYNAMIC_SYSCALLS
853 return sizeof (sysset_t);
855 return sizeof (sysset_t) - sizeof (uint64_t)
856 + sizeof (uint64_t) * ((pi->num_syscalls + (8 * sizeof (uint64_t) - 1))
857 / (8 * sizeof (uint64_t)));
861 /* Function: sysset_t_alloc
863 Allocate and (partially) initialize a sysset_t struct. */
866 sysset_t_alloc (procinfo * pi)
869 int size = sysset_t_size (pi);
870 ret = xmalloc (size);
871 #ifdef DYNAMIC_SYSCALLS
872 ret->pr_size = (pi->num_syscalls + (8 * sizeof (uint64_t) - 1))
873 / (8 * sizeof (uint64_t));
878 #ifdef DYNAMIC_SYSCALLS
880 /* Function: load_syscalls
882 Extract syscall numbers and names from /proc/<pid>/sysent. Initialize
883 pi->num_syscalls with the number of syscalls and pi->syscall_names
884 with the names. (Certain numbers may be skipped in which case the
885 names for these numbers will be left as NULL.) */
887 #define MAX_SYSCALL_NAME_LENGTH 256
888 #define MAX_SYSCALLS 65536
891 load_syscalls (procinfo *pi)
893 char pathname[MAX_PROC_NAME_SIZE];
896 prsyscall_t *syscalls;
897 int i, size, maxcall;
899 pi->num_syscalls = 0;
900 pi->syscall_names = 0;
902 /* Open the file descriptor for the sysent file */
903 sprintf (pathname, "/proc/%d/sysent", pi->pid);
904 sysent_fd = open_with_retry (pathname, O_RDONLY);
907 error (_("load_syscalls: Can't open /proc/%d/sysent"), pi->pid);
910 size = sizeof header - sizeof (prsyscall_t);
911 if (read (sysent_fd, &header, size) != size)
913 error (_("load_syscalls: Error reading /proc/%d/sysent"), pi->pid);
916 if (header.pr_nsyscalls == 0)
918 error (_("load_syscalls: /proc/%d/sysent contains no syscalls!"), pi->pid);
921 size = header.pr_nsyscalls * sizeof (prsyscall_t);
922 syscalls = xmalloc (size);
924 if (read (sysent_fd, syscalls, size) != size)
927 error (_("load_syscalls: Error reading /proc/%d/sysent"), pi->pid);
930 /* Find maximum syscall number. This may not be the same as
931 pr_nsyscalls since that value refers to the number of entries
932 in the table. (Also, the docs indicate that some system
933 call numbers may be skipped.) */
935 maxcall = syscalls[0].pr_number;
937 for (i = 1; i < header.pr_nsyscalls; i++)
938 if (syscalls[i].pr_number > maxcall
939 && syscalls[i].pr_nameoff > 0
940 && syscalls[i].pr_number < MAX_SYSCALLS)
941 maxcall = syscalls[i].pr_number;
943 pi->num_syscalls = maxcall+1;
944 pi->syscall_names = xmalloc (pi->num_syscalls * sizeof (char *));
946 for (i = 0; i < pi->num_syscalls; i++)
947 pi->syscall_names[i] = NULL;
949 /* Read the syscall names in */
950 for (i = 0; i < header.pr_nsyscalls; i++)
952 char namebuf[MAX_SYSCALL_NAME_LENGTH];
956 if (syscalls[i].pr_number >= MAX_SYSCALLS
957 || syscalls[i].pr_number < 0
958 || syscalls[i].pr_nameoff <= 0
959 || (lseek (sysent_fd, (off_t) syscalls[i].pr_nameoff, SEEK_SET)
960 != (off_t) syscalls[i].pr_nameoff))
963 nread = read (sysent_fd, namebuf, sizeof namebuf);
967 callnum = syscalls[i].pr_number;
969 if (pi->syscall_names[callnum] != NULL)
971 /* FIXME: Generate warning */
975 namebuf[nread-1] = '\0';
976 size = strlen (namebuf) + 1;
977 pi->syscall_names[callnum] = xmalloc (size);
978 strncpy (pi->syscall_names[callnum], namebuf, size-1);
979 pi->syscall_names[callnum][size-1] = '\0';
986 /* Function: free_syscalls
988 Free the space allocated for the syscall names from the procinfo
992 free_syscalls (procinfo *pi)
994 if (pi->syscall_names)
998 for (i = 0; i < pi->num_syscalls; i++)
999 if (pi->syscall_names[i] != NULL)
1000 xfree (pi->syscall_names[i]);
1002 xfree (pi->syscall_names);
1003 pi->syscall_names = 0;
1007 /* Function: find_syscall
1009 Given a name, look up (and return) the corresponding syscall number.
1010 If no match is found, return -1. */
1013 find_syscall (procinfo *pi, char *name)
1016 for (i = 0; i < pi->num_syscalls; i++)
1018 if (pi->syscall_names[i] && strcmp (name, pi->syscall_names[i]) == 0)
1025 /* =================== END, STRUCT PROCINFO "MODULE" =================== */
1027 /* =================== /proc "MODULE" =================== */
1030 * This "module" is the interface layer between the /proc system API
1031 * and the gdb target vector functions. This layer consists of
1032 * access functions that encapsulate each of the basic operations
1033 * that we need to use from the /proc API.
1035 * The main motivation for this layer is to hide the fact that
1036 * there are two very different implementations of the /proc API.
1037 * Rather than have a bunch of #ifdefs all thru the gdb target vector
1038 * functions, we do our best to hide them all in here.
1041 int proc_get_status (procinfo * pi);
1042 long proc_flags (procinfo * pi);
1043 int proc_why (procinfo * pi);
1044 int proc_what (procinfo * pi);
1045 int proc_set_run_on_last_close (procinfo * pi);
1046 int proc_unset_run_on_last_close (procinfo * pi);
1047 int proc_set_inherit_on_fork (procinfo * pi);
1048 int proc_unset_inherit_on_fork (procinfo * pi);
1049 int proc_set_async (procinfo * pi);
1050 int proc_unset_async (procinfo * pi);
1051 int proc_stop_process (procinfo * pi);
1052 int proc_trace_signal (procinfo * pi, int signo);
1053 int proc_ignore_signal (procinfo * pi, int signo);
1054 int proc_clear_current_fault (procinfo * pi);
1055 int proc_set_current_signal (procinfo * pi, int signo);
1056 int proc_clear_current_signal (procinfo * pi);
1057 int proc_set_gregs (procinfo * pi);
1058 int proc_set_fpregs (procinfo * pi);
1059 int proc_wait_for_stop (procinfo * pi);
1060 int proc_run_process (procinfo * pi, int step, int signo);
1061 int proc_kill (procinfo * pi, int signo);
1062 int proc_parent_pid (procinfo * pi);
1063 int proc_get_nthreads (procinfo * pi);
1064 int proc_get_current_thread (procinfo * pi);
1065 int proc_set_held_signals (procinfo * pi, gdb_sigset_t * sighold);
1066 int proc_set_traced_sysexit (procinfo * pi, sysset_t * sysset);
1067 int proc_set_traced_sysentry (procinfo * pi, sysset_t * sysset);
1068 int proc_set_traced_faults (procinfo * pi, fltset_t * fltset);
1069 int proc_set_traced_signals (procinfo * pi, gdb_sigset_t * sigset);
1071 int proc_update_threads (procinfo * pi);
1072 int proc_iterate_over_threads (procinfo * pi,
1073 int (*func) (procinfo *, procinfo *, void *),
1076 gdb_gregset_t *proc_get_gregs (procinfo * pi);
1077 gdb_fpregset_t *proc_get_fpregs (procinfo * pi);
1078 sysset_t *proc_get_traced_sysexit (procinfo * pi, sysset_t * save);
1079 sysset_t *proc_get_traced_sysentry (procinfo * pi, sysset_t * save);
1080 fltset_t *proc_get_traced_faults (procinfo * pi, fltset_t * save);
1081 gdb_sigset_t *proc_get_traced_signals (procinfo * pi, gdb_sigset_t * save);
1082 gdb_sigset_t *proc_get_held_signals (procinfo * pi, gdb_sigset_t * save);
1083 gdb_sigset_t *proc_get_pending_signals (procinfo * pi, gdb_sigset_t * save);
1084 gdb_sigaction_t *proc_get_signal_actions (procinfo * pi, gdb_sigaction_t *save);
1086 void proc_warn (procinfo * pi, char *func, int line);
1087 void proc_error (procinfo * pi, char *func, int line);
1090 proc_warn (procinfo *pi, char *func, int line)
1092 sprintf (errmsg, "procfs: %s line %d, %s", func, line, pi->pathname);
1093 print_sys_errmsg (errmsg, errno);
1097 proc_error (procinfo *pi, char *func, int line)
1099 sprintf (errmsg, "procfs: %s line %d, %s", func, line, pi->pathname);
1100 perror_with_name (errmsg);
1104 * Function: proc_get_status
1106 * Updates the status struct in the procinfo.
1107 * There is a 'valid' flag, to let other functions know when
1108 * this function needs to be called (so the status is only
1109 * read when it is needed). The status file descriptor is
1110 * also only opened when it is needed.
1112 * Return: non-zero for success, zero for failure.
1116 proc_get_status (procinfo *pi)
1118 /* Status file descriptor is opened "lazily" */
1119 if (pi->status_fd == 0 &&
1120 open_procinfo_files (pi, FD_STATUS) == 0)
1122 pi->status_valid = 0;
1127 if (lseek (pi->status_fd, 0, SEEK_SET) < 0)
1128 pi->status_valid = 0; /* fail */
1131 /* Sigh... I have to read a different data structure,
1132 depending on whether this is a main process or an LWP. */
1134 pi->status_valid = (read (pi->status_fd,
1135 (char *) &pi->prstatus.pr_lwp,
1136 sizeof (lwpstatus_t))
1137 == sizeof (lwpstatus_t));
1140 pi->status_valid = (read (pi->status_fd,
1141 (char *) &pi->prstatus,
1142 sizeof (gdb_prstatus_t))
1143 == sizeof (gdb_prstatus_t));
1144 #if 0 /*def UNIXWARE*/
1145 if (pi->status_valid &&
1146 (pi->prstatus.pr_lwp.pr_flags & PR_ISTOP) &&
1147 pi->prstatus.pr_lwp.pr_why == PR_REQUESTED)
1148 /* Unixware peculiarity -- read the damn thing again! */
1149 pi->status_valid = (read (pi->status_fd,
1150 (char *) &pi->prstatus,
1151 sizeof (gdb_prstatus_t))
1152 == sizeof (gdb_prstatus_t));
1153 #endif /* UNIXWARE */
1156 #else /* ioctl method */
1157 #ifdef PIOCTSTATUS /* osf */
1158 if (pi->tid == 0) /* main process */
1160 /* Just read the danged status. Now isn't that simple? */
1162 (ioctl (pi->status_fd, PIOCSTATUS, &pi->prstatus) >= 0);
1169 tid_t pr_error_thread;
1170 struct prstatus status;
1173 thread_status.pr_count = 1;
1174 thread_status.status.pr_tid = pi->tid;
1175 win = (ioctl (pi->status_fd, PIOCTSTATUS, &thread_status) >= 0);
1178 memcpy (&pi->prstatus, &thread_status.status,
1179 sizeof (pi->prstatus));
1180 pi->status_valid = 1;
1184 /* Just read the danged status. Now isn't that simple? */
1185 pi->status_valid = (ioctl (pi->status_fd, PIOCSTATUS, &pi->prstatus) >= 0);
1189 if (pi->status_valid)
1191 PROC_PRETTYFPRINT_STATUS (proc_flags (pi),
1194 proc_get_current_thread (pi));
1197 /* The status struct includes general regs, so mark them valid too */
1198 pi->gregs_valid = pi->status_valid;
1200 /* In the read/write multiple-fd model,
1201 the status struct includes the fp regs too, so mark them valid too */
1202 pi->fpregs_valid = pi->status_valid;
1204 return pi->status_valid; /* True if success, false if failure. */
1208 * Function: proc_flags
1210 * returns the process flags (pr_flags field).
1214 proc_flags (procinfo *pi)
1216 if (!pi->status_valid)
1217 if (!proc_get_status (pi))
1218 return 0; /* FIXME: not a good failure value (but what is?) */
1222 /* UnixWare 7.1 puts process status flags, e.g. PR_ASYNC, in
1223 pstatus_t and LWP status flags, e.g. PR_STOPPED, in lwpstatus_t.
1224 The two sets of flags don't overlap. */
1225 return pi->prstatus.pr_flags | pi->prstatus.pr_lwp.pr_flags;
1227 return pi->prstatus.pr_lwp.pr_flags;
1230 return pi->prstatus.pr_flags;
1235 * Function: proc_why
1237 * returns the pr_why field (why the process stopped).
1241 proc_why (procinfo *pi)
1243 if (!pi->status_valid)
1244 if (!proc_get_status (pi))
1245 return 0; /* FIXME: not a good failure value (but what is?) */
1248 return pi->prstatus.pr_lwp.pr_why;
1250 return pi->prstatus.pr_why;
1255 * Function: proc_what
1257 * returns the pr_what field (details of why the process stopped).
1261 proc_what (procinfo *pi)
1263 if (!pi->status_valid)
1264 if (!proc_get_status (pi))
1265 return 0; /* FIXME: not a good failure value (but what is?) */
1268 return pi->prstatus.pr_lwp.pr_what;
1270 return pi->prstatus.pr_what;
1274 #ifndef PIOCSSPCACT /* The following is not supported on OSF. */
1276 * Function: proc_nsysarg
1278 * returns the pr_nsysarg field (number of args to the current syscall).
1282 proc_nsysarg (procinfo *pi)
1284 if (!pi->status_valid)
1285 if (!proc_get_status (pi))
1289 return pi->prstatus.pr_lwp.pr_nsysarg;
1291 return pi->prstatus.pr_nsysarg;
1296 * Function: proc_sysargs
1298 * returns the pr_sysarg field (pointer to the arguments of current syscall).
1302 proc_sysargs (procinfo *pi)
1304 if (!pi->status_valid)
1305 if (!proc_get_status (pi))
1309 return (long *) &pi->prstatus.pr_lwp.pr_sysarg;
1311 return (long *) &pi->prstatus.pr_sysarg;
1316 * Function: proc_syscall
1318 * returns the pr_syscall field (id of current syscall if we are in one).
1322 proc_syscall (procinfo *pi)
1324 if (!pi->status_valid)
1325 if (!proc_get_status (pi))
1329 return pi->prstatus.pr_lwp.pr_syscall;
1331 return pi->prstatus.pr_syscall;
1334 #endif /* PIOCSSPCACT */
1337 * Function: proc_cursig:
1339 * returns the pr_cursig field (current signal).
1343 proc_cursig (struct procinfo *pi)
1345 if (!pi->status_valid)
1346 if (!proc_get_status (pi))
1347 return 0; /* FIXME: not a good failure value (but what is?) */
1350 return pi->prstatus.pr_lwp.pr_cursig;
1352 return pi->prstatus.pr_cursig;
1357 * Function: proc_modify_flag
1359 * === I appologize for the messiness of this function.
1360 * === This is an area where the different versions of
1361 * === /proc are more inconsistent than usual. MVS
1363 * Set or reset any of the following process flags:
1364 * PR_FORK -- forked child will inherit trace flags
1365 * PR_RLC -- traced process runs when last /proc file closed.
1366 * PR_KLC -- traced process is killed when last /proc file closed.
1367 * PR_ASYNC -- LWP's get to run/stop independently.
1369 * There are three methods for doing this function:
1370 * 1) Newest: read/write [PCSET/PCRESET/PCUNSET]
1372 * 2) Middle: PIOCSET/PIOCRESET
1374 * 3) Oldest: PIOCSFORK/PIOCRFORK/PIOCSRLC/PIOCRRLC
1377 * Note: Irix does not define PR_ASYNC.
1378 * Note: OSF does not define PR_KLC.
1379 * Note: OSF is the only one that can ONLY use the oldest method.
1382 * pi -- the procinfo
1383 * flag -- one of PR_FORK, PR_RLC, or PR_ASYNC
1384 * mode -- 1 for set, 0 for reset.
1386 * Returns non-zero for success, zero for failure.
1389 enum { FLAG_RESET, FLAG_SET };
1392 proc_modify_flag (procinfo *pi, long flag, long mode)
1394 long win = 0; /* default to fail */
1397 * These operations affect the process as a whole, and applying
1398 * them to an individual LWP has the same meaning as applying them
1399 * to the main process. Therefore, if we're ever called with a
1400 * pointer to an LWP's procinfo, let's substitute the process's
1401 * procinfo and avoid opening the LWP's file descriptor
1406 pi = find_procinfo_or_die (pi->pid, 0);
1408 #ifdef NEW_PROC_API /* Newest method: UnixWare and newer Solarii */
1409 /* First normalize the PCUNSET/PCRESET command opcode
1410 (which for no obvious reason has a different definition
1411 from one operating system to the next...) */
1413 #define GDBRESET PCUNSET
1416 #define GDBRESET PCRESET
1420 procfs_ctl_t arg[2];
1422 if (mode == FLAG_SET) /* Set the flag (RLC, FORK, or ASYNC) */
1424 else /* Reset the flag */
1428 win = (write (pi->ctl_fd, (void *) &arg, sizeof (arg)) == sizeof (arg));
1431 #ifdef PIOCSET /* Irix/Sol5 method */
1432 if (mode == FLAG_SET) /* Set the flag (hopefully RLC, FORK, or ASYNC) */
1434 win = (ioctl (pi->ctl_fd, PIOCSET, &flag) >= 0);
1436 else /* Reset the flag */
1438 win = (ioctl (pi->ctl_fd, PIOCRESET, &flag) >= 0);
1442 #ifdef PIOCSRLC /* Oldest method: OSF */
1445 if (mode == FLAG_SET) /* Set run-on-last-close */
1447 win = (ioctl (pi->ctl_fd, PIOCSRLC, NULL) >= 0);
1449 else /* Clear run-on-last-close */
1451 win = (ioctl (pi->ctl_fd, PIOCRRLC, NULL) >= 0);
1455 if (mode == FLAG_SET) /* Set inherit-on-fork */
1457 win = (ioctl (pi->ctl_fd, PIOCSFORK, NULL) >= 0);
1459 else /* Clear inherit-on-fork */
1461 win = (ioctl (pi->ctl_fd, PIOCRFORK, NULL) >= 0);
1465 win = 0; /* fail -- unknown flag (can't do PR_ASYNC) */
1472 /* The above operation renders the procinfo's cached pstatus obsolete. */
1473 pi->status_valid = 0;
1476 warning (_("procfs: modify_flag failed to turn %s %s"),
1477 flag == PR_FORK ? "PR_FORK" :
1478 flag == PR_RLC ? "PR_RLC" :
1480 flag == PR_ASYNC ? "PR_ASYNC" :
1483 flag == PR_KLC ? "PR_KLC" :
1486 mode == FLAG_RESET ? "off" : "on");
1492 * Function: proc_set_run_on_last_close
1494 * Set the run_on_last_close flag.
1495 * Process with all threads will become runnable
1496 * when debugger closes all /proc fds.
1498 * Returns non-zero for success, zero for failure.
1502 proc_set_run_on_last_close (procinfo *pi)
1504 return proc_modify_flag (pi, PR_RLC, FLAG_SET);
1508 * Function: proc_unset_run_on_last_close
1510 * Reset the run_on_last_close flag.
1511 * Process will NOT become runnable
1512 * when debugger closes its file handles.
1514 * Returns non-zero for success, zero for failure.
1518 proc_unset_run_on_last_close (procinfo *pi)
1520 return proc_modify_flag (pi, PR_RLC, FLAG_RESET);
1525 * Function: proc_set_kill_on_last_close
1527 * Set the kill_on_last_close flag.
1528 * Process with all threads will be killed when debugger
1529 * closes all /proc fds (or debugger exits or dies).
1531 * Returns non-zero for success, zero for failure.
1535 proc_set_kill_on_last_close (procinfo *pi)
1537 return proc_modify_flag (pi, PR_KLC, FLAG_SET);
1541 * Function: proc_unset_kill_on_last_close
1543 * Reset the kill_on_last_close flag.
1544 * Process will NOT be killed when debugger
1545 * closes its file handles (or exits or dies).
1547 * Returns non-zero for success, zero for failure.
1551 proc_unset_kill_on_last_close (procinfo *pi)
1553 return proc_modify_flag (pi, PR_KLC, FLAG_RESET);
1558 * Function: proc_set_inherit_on_fork
1560 * Set inherit_on_fork flag.
1561 * If the process forks a child while we are registered for events
1562 * in the parent, then we will also recieve events from the child.
1564 * Returns non-zero for success, zero for failure.
1568 proc_set_inherit_on_fork (procinfo *pi)
1570 return proc_modify_flag (pi, PR_FORK, FLAG_SET);
1574 * Function: proc_unset_inherit_on_fork
1576 * Reset inherit_on_fork flag.
1577 * If the process forks a child while we are registered for events
1578 * in the parent, then we will NOT recieve events from the child.
1580 * Returns non-zero for success, zero for failure.
1584 proc_unset_inherit_on_fork (procinfo *pi)
1586 return proc_modify_flag (pi, PR_FORK, FLAG_RESET);
1591 * Function: proc_set_async
1593 * Set PR_ASYNC flag.
1594 * If one LWP stops because of a debug event (signal etc.),
1595 * the remaining LWPs will continue to run.
1597 * Returns non-zero for success, zero for failure.
1601 proc_set_async (procinfo *pi)
1603 return proc_modify_flag (pi, PR_ASYNC, FLAG_SET);
1607 * Function: proc_unset_async
1609 * Reset PR_ASYNC flag.
1610 * If one LWP stops because of a debug event (signal etc.),
1611 * then all other LWPs will stop as well.
1613 * Returns non-zero for success, zero for failure.
1617 proc_unset_async (procinfo *pi)
1619 return proc_modify_flag (pi, PR_ASYNC, FLAG_RESET);
1621 #endif /* PR_ASYNC */
1624 * Function: proc_stop_process
1626 * Request the process/LWP to stop. Does not wait.
1627 * Returns non-zero for success, zero for failure.
1631 proc_stop_process (procinfo *pi)
1636 * We might conceivably apply this operation to an LWP, and
1637 * the LWP's ctl file descriptor might not be open.
1640 if (pi->ctl_fd == 0 &&
1641 open_procinfo_files (pi, FD_CTL) == 0)
1646 procfs_ctl_t cmd = PCSTOP;
1647 win = (write (pi->ctl_fd, (char *) &cmd, sizeof (cmd)) == sizeof (cmd));
1648 #else /* ioctl method */
1649 win = (ioctl (pi->ctl_fd, PIOCSTOP, &pi->prstatus) >= 0);
1650 /* Note: the call also reads the prstatus. */
1653 pi->status_valid = 1;
1654 PROC_PRETTYFPRINT_STATUS (proc_flags (pi),
1657 proc_get_current_thread (pi));
1666 * Function: proc_wait_for_stop
1668 * Wait for the process or LWP to stop (block until it does).
1669 * Returns non-zero for success, zero for failure.
1673 proc_wait_for_stop (procinfo *pi)
1678 * We should never have to apply this operation to any procinfo
1679 * except the one for the main process. If that ever changes
1680 * for any reason, then take out the following clause and
1681 * replace it with one that makes sure the ctl_fd is open.
1685 pi = find_procinfo_or_die (pi->pid, 0);
1689 procfs_ctl_t cmd = PCWSTOP;
1690 win = (write (pi->ctl_fd, (char *) &cmd, sizeof (cmd)) == sizeof (cmd));
1691 /* We been runnin' and we stopped -- need to update status. */
1692 pi->status_valid = 0;
1694 #else /* ioctl method */
1695 win = (ioctl (pi->ctl_fd, PIOCWSTOP, &pi->prstatus) >= 0);
1696 /* Above call also refreshes the prstatus. */
1699 pi->status_valid = 1;
1700 PROC_PRETTYFPRINT_STATUS (proc_flags (pi),
1703 proc_get_current_thread (pi));
1711 * Function: proc_run_process
1713 * Make the process or LWP runnable.
1714 * Options (not all are implemented):
1716 * - clear current fault
1717 * - clear current signal
1718 * - abort the current system call
1719 * - stop as soon as finished with system call
1720 * - (ioctl): set traced signal set
1721 * - (ioctl): set held signal set
1722 * - (ioctl): set traced fault set
1723 * - (ioctl): set start pc (vaddr)
1724 * Always clear the current fault.
1725 * Clear the current signal if 'signo' is zero.
1728 * pi the process or LWP to operate on.
1729 * step if true, set the process or LWP to trap after one instr.
1730 * signo if zero, clear the current signal if any.
1731 * if non-zero, set the current signal to this one.
1733 * Returns non-zero for success, zero for failure.
1737 proc_run_process (procinfo *pi, int step, int signo)
1743 * We will probably have to apply this operation to individual threads,
1744 * so make sure the control file descriptor is open.
1747 if (pi->ctl_fd == 0 &&
1748 open_procinfo_files (pi, FD_CTL) == 0)
1753 runflags = PRCFAULT; /* always clear current fault */
1758 else if (signo != -1) /* -1 means do nothing W.R.T. signals */
1759 proc_set_current_signal (pi, signo);
1763 procfs_ctl_t cmd[2];
1767 win = (write (pi->ctl_fd, (char *) &cmd, sizeof (cmd)) == sizeof (cmd));
1769 #else /* ioctl method */
1773 memset (&prrun, 0, sizeof (prrun));
1774 prrun.pr_flags = runflags;
1775 win = (ioctl (pi->ctl_fd, PIOCRUN, &prrun) >= 0);
1783 * Function: proc_set_traced_signals
1785 * Register to trace signals in the process or LWP.
1786 * Returns non-zero for success, zero for failure.
1790 proc_set_traced_signals (procinfo *pi, gdb_sigset_t *sigset)
1795 * We should never have to apply this operation to any procinfo
1796 * except the one for the main process. If that ever changes
1797 * for any reason, then take out the following clause and
1798 * replace it with one that makes sure the ctl_fd is open.
1802 pi = find_procinfo_or_die (pi->pid, 0);
1808 /* Use char array to avoid alignment issues. */
1809 char sigset[sizeof (gdb_sigset_t)];
1813 memcpy (&arg.sigset, sigset, sizeof (gdb_sigset_t));
1815 win = (write (pi->ctl_fd, (char *) &arg, sizeof (arg)) == sizeof (arg));
1817 #else /* ioctl method */
1818 win = (ioctl (pi->ctl_fd, PIOCSTRACE, sigset) >= 0);
1820 /* The above operation renders the procinfo's cached pstatus obsolete. */
1821 pi->status_valid = 0;
1824 warning (_("procfs: set_traced_signals failed"));
1829 * Function: proc_set_traced_faults
1831 * Register to trace hardware faults in the process or LWP.
1832 * Returns non-zero for success, zero for failure.
1836 proc_set_traced_faults (procinfo *pi, fltset_t *fltset)
1841 * We should never have to apply this operation to any procinfo
1842 * except the one for the main process. If that ever changes
1843 * for any reason, then take out the following clause and
1844 * replace it with one that makes sure the ctl_fd is open.
1848 pi = find_procinfo_or_die (pi->pid, 0);
1854 /* Use char array to avoid alignment issues. */
1855 char fltset[sizeof (fltset_t)];
1859 memcpy (&arg.fltset, fltset, sizeof (fltset_t));
1861 win = (write (pi->ctl_fd, (char *) &arg, sizeof (arg)) == sizeof (arg));
1863 #else /* ioctl method */
1864 win = (ioctl (pi->ctl_fd, PIOCSFAULT, fltset) >= 0);
1866 /* The above operation renders the procinfo's cached pstatus obsolete. */
1867 pi->status_valid = 0;
1873 * Function: proc_set_traced_sysentry
1875 * Register to trace entry to system calls in the process or LWP.
1876 * Returns non-zero for success, zero for failure.
1880 proc_set_traced_sysentry (procinfo *pi, sysset_t *sysset)
1885 * We should never have to apply this operation to any procinfo
1886 * except the one for the main process. If that ever changes
1887 * for any reason, then take out the following clause and
1888 * replace it with one that makes sure the ctl_fd is open.
1892 pi = find_procinfo_or_die (pi->pid, 0);
1896 struct gdb_proc_ctl_pcsentry {
1898 /* Use char array to avoid alignment issues. */
1899 char sysset[sizeof (sysset_t)];
1901 int argp_size = sizeof (struct gdb_proc_ctl_pcsentry)
1903 + sysset_t_size (pi);
1905 argp = xmalloc (argp_size);
1907 argp->cmd = PCSENTRY;
1908 memcpy (&argp->sysset, sysset, sysset_t_size (pi));
1910 win = (write (pi->ctl_fd, (char *) argp, argp_size) == argp_size);
1913 #else /* ioctl method */
1914 win = (ioctl (pi->ctl_fd, PIOCSENTRY, sysset) >= 0);
1916 /* The above operation renders the procinfo's cached pstatus obsolete. */
1917 pi->status_valid = 0;
1923 * Function: proc_set_traced_sysexit
1925 * Register to trace exit from system calls in the process or LWP.
1926 * Returns non-zero for success, zero for failure.
1930 proc_set_traced_sysexit (procinfo *pi, sysset_t *sysset)
1935 * We should never have to apply this operation to any procinfo
1936 * except the one for the main process. If that ever changes
1937 * for any reason, then take out the following clause and
1938 * replace it with one that makes sure the ctl_fd is open.
1942 pi = find_procinfo_or_die (pi->pid, 0);
1946 struct gdb_proc_ctl_pcsexit {
1948 /* Use char array to avoid alignment issues. */
1949 char sysset[sizeof (sysset_t)];
1951 int argp_size = sizeof (struct gdb_proc_ctl_pcsexit)
1953 + sysset_t_size (pi);
1955 argp = xmalloc (argp_size);
1957 argp->cmd = PCSEXIT;
1958 memcpy (&argp->sysset, sysset, sysset_t_size (pi));
1960 win = (write (pi->ctl_fd, (char *) argp, argp_size) == argp_size);
1963 #else /* ioctl method */
1964 win = (ioctl (pi->ctl_fd, PIOCSEXIT, sysset) >= 0);
1966 /* The above operation renders the procinfo's cached pstatus obsolete. */
1967 pi->status_valid = 0;
1973 * Function: proc_set_held_signals
1975 * Specify the set of blocked / held signals in the process or LWP.
1976 * Returns non-zero for success, zero for failure.
1980 proc_set_held_signals (procinfo *pi, gdb_sigset_t *sighold)
1985 * We should never have to apply this operation to any procinfo
1986 * except the one for the main process. If that ever changes
1987 * for any reason, then take out the following clause and
1988 * replace it with one that makes sure the ctl_fd is open.
1992 pi = find_procinfo_or_die (pi->pid, 0);
1998 /* Use char array to avoid alignment issues. */
1999 char hold[sizeof (gdb_sigset_t)];
2003 memcpy (&arg.hold, sighold, sizeof (gdb_sigset_t));
2004 win = (write (pi->ctl_fd, (void *) &arg, sizeof (arg)) == sizeof (arg));
2007 win = (ioctl (pi->ctl_fd, PIOCSHOLD, sighold) >= 0);
2009 /* The above operation renders the procinfo's cached pstatus obsolete. */
2010 pi->status_valid = 0;
2016 * Function: proc_get_pending_signals
2018 * returns the set of signals that are pending in the process or LWP.
2019 * Will also copy the sigset if 'save' is non-zero.
2023 proc_get_pending_signals (procinfo *pi, gdb_sigset_t *save)
2025 gdb_sigset_t *ret = NULL;
2028 * We should never have to apply this operation to any procinfo
2029 * except the one for the main process. If that ever changes
2030 * for any reason, then take out the following clause and
2031 * replace it with one that makes sure the ctl_fd is open.
2035 pi = find_procinfo_or_die (pi->pid, 0);
2037 if (!pi->status_valid)
2038 if (!proc_get_status (pi))
2042 ret = &pi->prstatus.pr_lwp.pr_lwppend;
2044 ret = &pi->prstatus.pr_sigpend;
2047 memcpy (save, ret, sizeof (gdb_sigset_t));
2053 * Function: proc_get_signal_actions
2055 * returns the set of signal actions.
2056 * Will also copy the sigactionset if 'save' is non-zero.
2060 proc_get_signal_actions (procinfo *pi, gdb_sigaction_t *save)
2062 gdb_sigaction_t *ret = NULL;
2065 * We should never have to apply this operation to any procinfo
2066 * except the one for the main process. If that ever changes
2067 * for any reason, then take out the following clause and
2068 * replace it with one that makes sure the ctl_fd is open.
2072 pi = find_procinfo_or_die (pi->pid, 0);
2074 if (!pi->status_valid)
2075 if (!proc_get_status (pi))
2079 ret = &pi->prstatus.pr_lwp.pr_action;
2081 ret = &pi->prstatus.pr_action;
2084 memcpy (save, ret, sizeof (gdb_sigaction_t));
2090 * Function: proc_get_held_signals
2092 * returns the set of signals that are held / blocked.
2093 * Will also copy the sigset if 'save' is non-zero.
2097 proc_get_held_signals (procinfo *pi, gdb_sigset_t *save)
2099 gdb_sigset_t *ret = NULL;
2102 * We should never have to apply this operation to any procinfo
2103 * except the one for the main process. If that ever changes
2104 * for any reason, then take out the following clause and
2105 * replace it with one that makes sure the ctl_fd is open.
2109 pi = find_procinfo_or_die (pi->pid, 0);
2112 if (!pi->status_valid)
2113 if (!proc_get_status (pi))
2117 ret = &pi->prstatus.pr_lwp.pr_context.uc_sigmask;
2119 ret = &pi->prstatus.pr_lwp.pr_lwphold;
2120 #endif /* UNIXWARE */
2121 #else /* not NEW_PROC_API */
2123 static gdb_sigset_t sigheld;
2125 if (ioctl (pi->ctl_fd, PIOCGHOLD, &sigheld) >= 0)
2128 #endif /* NEW_PROC_API */
2130 memcpy (save, ret, sizeof (gdb_sigset_t));
2136 * Function: proc_get_traced_signals
2138 * returns the set of signals that are traced / debugged.
2139 * Will also copy the sigset if 'save' is non-zero.
2143 proc_get_traced_signals (procinfo *pi, gdb_sigset_t *save)
2145 gdb_sigset_t *ret = NULL;
2148 * We should never have to apply this operation to any procinfo
2149 * except the one for the main process. If that ever changes
2150 * for any reason, then take out the following clause and
2151 * replace it with one that makes sure the ctl_fd is open.
2155 pi = find_procinfo_or_die (pi->pid, 0);
2158 if (!pi->status_valid)
2159 if (!proc_get_status (pi))
2162 ret = &pi->prstatus.pr_sigtrace;
2165 static gdb_sigset_t sigtrace;
2167 if (ioctl (pi->ctl_fd, PIOCGTRACE, &sigtrace) >= 0)
2172 memcpy (save, ret, sizeof (gdb_sigset_t));
2178 * Function: proc_trace_signal
2180 * Add 'signo' to the set of signals that are traced.
2181 * Returns non-zero for success, zero for failure.
2185 proc_trace_signal (procinfo *pi, int signo)
2190 * We should never have to apply this operation to any procinfo
2191 * except the one for the main process. If that ever changes
2192 * for any reason, then take out the following clause and
2193 * replace it with one that makes sure the ctl_fd is open.
2197 pi = find_procinfo_or_die (pi->pid, 0);
2201 if (proc_get_traced_signals (pi, &temp))
2203 praddset (&temp, signo);
2204 return proc_set_traced_signals (pi, &temp);
2208 return 0; /* failure */
2212 * Function: proc_ignore_signal
2214 * Remove 'signo' from the set of signals that are traced.
2215 * Returns non-zero for success, zero for failure.
2219 proc_ignore_signal (procinfo *pi, int signo)
2224 * We should never have to apply this operation to any procinfo
2225 * except the one for the main process. If that ever changes
2226 * for any reason, then take out the following clause and
2227 * replace it with one that makes sure the ctl_fd is open.
2231 pi = find_procinfo_or_die (pi->pid, 0);
2235 if (proc_get_traced_signals (pi, &temp))
2237 prdelset (&temp, signo);
2238 return proc_set_traced_signals (pi, &temp);
2242 return 0; /* failure */
2246 * Function: proc_get_traced_faults
2248 * returns the set of hardware faults that are traced /debugged.
2249 * Will also copy the faultset if 'save' is non-zero.
2253 proc_get_traced_faults (procinfo *pi, fltset_t *save)
2255 fltset_t *ret = NULL;
2258 * We should never have to apply this operation to any procinfo
2259 * except the one for the main process. If that ever changes
2260 * for any reason, then take out the following clause and
2261 * replace it with one that makes sure the ctl_fd is open.
2265 pi = find_procinfo_or_die (pi->pid, 0);
2268 if (!pi->status_valid)
2269 if (!proc_get_status (pi))
2272 ret = &pi->prstatus.pr_flttrace;
2275 static fltset_t flttrace;
2277 if (ioctl (pi->ctl_fd, PIOCGFAULT, &flttrace) >= 0)
2282 memcpy (save, ret, sizeof (fltset_t));
2288 * Function: proc_get_traced_sysentry
2290 * returns the set of syscalls that are traced /debugged on entry.
2291 * Will also copy the syscall set if 'save' is non-zero.
2295 proc_get_traced_sysentry (procinfo *pi, sysset_t *save)
2297 sysset_t *ret = NULL;
2300 * We should never have to apply this operation to any procinfo
2301 * except the one for the main process. If that ever changes
2302 * for any reason, then take out the following clause and
2303 * replace it with one that makes sure the ctl_fd is open.
2307 pi = find_procinfo_or_die (pi->pid, 0);
2310 if (!pi->status_valid)
2311 if (!proc_get_status (pi))
2314 #ifndef DYNAMIC_SYSCALLS
2315 ret = &pi->prstatus.pr_sysentry;
2316 #else /* DYNAMIC_SYSCALLS */
2318 static sysset_t *sysentry;
2322 sysentry = sysset_t_alloc (pi);
2324 if (pi->status_fd == 0 && open_procinfo_files (pi, FD_STATUS) == 0)
2326 if (pi->prstatus.pr_sysentry_offset == 0)
2328 gdb_premptysysset (sysentry);
2334 if (lseek (pi->status_fd, (off_t) pi->prstatus.pr_sysentry_offset,
2336 != (off_t) pi->prstatus.pr_sysentry_offset)
2338 size = sysset_t_size (pi);
2339 gdb_premptysysset (sysentry);
2340 rsize = read (pi->status_fd, sysentry, size);
2345 #endif /* DYNAMIC_SYSCALLS */
2346 #else /* !NEW_PROC_API */
2348 static sysset_t sysentry;
2350 if (ioctl (pi->ctl_fd, PIOCGENTRY, &sysentry) >= 0)
2353 #endif /* NEW_PROC_API */
2355 memcpy (save, ret, sysset_t_size (pi));
2361 * Function: proc_get_traced_sysexit
2363 * returns the set of syscalls that are traced /debugged on exit.
2364 * Will also copy the syscall set if 'save' is non-zero.
2368 proc_get_traced_sysexit (procinfo *pi, sysset_t *save)
2370 sysset_t * ret = NULL;
2373 * We should never have to apply this operation to any procinfo
2374 * except the one for the main process. If that ever changes
2375 * for any reason, then take out the following clause and
2376 * replace it with one that makes sure the ctl_fd is open.
2380 pi = find_procinfo_or_die (pi->pid, 0);
2383 if (!pi->status_valid)
2384 if (!proc_get_status (pi))
2387 #ifndef DYNAMIC_SYSCALLS
2388 ret = &pi->prstatus.pr_sysexit;
2389 #else /* DYNAMIC_SYSCALLS */
2391 static sysset_t *sysexit;
2395 sysexit = sysset_t_alloc (pi);
2397 if (pi->status_fd == 0 && open_procinfo_files (pi, FD_STATUS) == 0)
2399 if (pi->prstatus.pr_sysexit_offset == 0)
2401 gdb_premptysysset (sysexit);
2407 if (lseek (pi->status_fd, (off_t) pi->prstatus.pr_sysexit_offset, SEEK_SET)
2408 != (off_t) pi->prstatus.pr_sysexit_offset)
2410 size = sysset_t_size (pi);
2411 gdb_premptysysset (sysexit);
2412 rsize = read (pi->status_fd, sysexit, size);
2417 #endif /* DYNAMIC_SYSCALLS */
2420 static sysset_t sysexit;
2422 if (ioctl (pi->ctl_fd, PIOCGEXIT, &sysexit) >= 0)
2427 memcpy (save, ret, sysset_t_size (pi));
2433 * Function: proc_clear_current_fault
2435 * The current fault (if any) is cleared; the associated signal
2436 * will not be sent to the process or LWP when it resumes.
2437 * Returns non-zero for success, zero for failure.
2441 proc_clear_current_fault (procinfo *pi)
2446 * We should never have to apply this operation to any procinfo
2447 * except the one for the main process. If that ever changes
2448 * for any reason, then take out the following clause and
2449 * replace it with one that makes sure the ctl_fd is open.
2453 pi = find_procinfo_or_die (pi->pid, 0);
2457 procfs_ctl_t cmd = PCCFAULT;
2458 win = (write (pi->ctl_fd, (void *) &cmd, sizeof (cmd)) == sizeof (cmd));
2461 win = (ioctl (pi->ctl_fd, PIOCCFAULT, 0) >= 0);
2468 * Function: proc_set_current_signal
2470 * Set the "current signal" that will be delivered next to the process.
2471 * NOTE: semantics are different from those of KILL.
2472 * This signal will be delivered to the process or LWP
2473 * immediately when it is resumed (even if the signal is held/blocked);
2474 * it will NOT immediately cause another event of interest, and will NOT
2475 * first trap back to the debugger.
2477 * Returns non-zero for success, zero for failure.
2481 proc_set_current_signal (procinfo *pi, int signo)
2486 /* Use char array to avoid alignment issues. */
2487 char sinfo[sizeof (gdb_siginfo_t)];
2489 gdb_siginfo_t *mysinfo;
2492 * We should never have to apply this operation to any procinfo
2493 * except the one for the main process. If that ever changes
2494 * for any reason, then take out the following clause and
2495 * replace it with one that makes sure the ctl_fd is open.
2499 pi = find_procinfo_or_die (pi->pid, 0);
2501 #ifdef PROCFS_DONT_PIOCSSIG_CURSIG
2502 /* With Alpha OSF/1 procfs, the kernel gets really confused if it
2503 * receives a PIOCSSIG with a signal identical to the current signal,
2504 * it messes up the current signal. Work around the kernel bug.
2507 signo == proc_cursig (pi))
2508 return 1; /* I assume this is a success? */
2511 /* The pointer is just a type alias. */
2512 mysinfo = (gdb_siginfo_t *) &arg.sinfo;
2513 mysinfo->si_signo = signo;
2514 mysinfo->si_code = 0;
2515 mysinfo->si_pid = getpid (); /* ?why? */
2516 mysinfo->si_uid = getuid (); /* ?why? */
2520 win = (write (pi->ctl_fd, (void *) &arg, sizeof (arg)) == sizeof (arg));
2522 win = (ioctl (pi->ctl_fd, PIOCSSIG, (void *) &arg.sinfo) >= 0);
2529 * Function: proc_clear_current_signal
2531 * The current signal (if any) is cleared, and
2532 * is not sent to the process or LWP when it resumes.
2533 * Returns non-zero for success, zero for failure.
2537 proc_clear_current_signal (procinfo *pi)
2542 * We should never have to apply this operation to any procinfo
2543 * except the one for the main process. If that ever changes
2544 * for any reason, then take out the following clause and
2545 * replace it with one that makes sure the ctl_fd is open.
2549 pi = find_procinfo_or_die (pi->pid, 0);
2555 /* Use char array to avoid alignment issues. */
2556 char sinfo[sizeof (gdb_siginfo_t)];
2558 gdb_siginfo_t *mysinfo;
2561 /* The pointer is just a type alias. */
2562 mysinfo = (gdb_siginfo_t *) &arg.sinfo;
2563 mysinfo->si_signo = 0;
2564 mysinfo->si_code = 0;
2565 mysinfo->si_errno = 0;
2566 mysinfo->si_pid = getpid (); /* ?why? */
2567 mysinfo->si_uid = getuid (); /* ?why? */
2569 win = (write (pi->ctl_fd, (void *) &arg, sizeof (arg)) == sizeof (arg));
2572 win = (ioctl (pi->ctl_fd, PIOCSSIG, 0) >= 0);
2578 /* Return the general-purpose registers for the process or LWP
2579 corresponding to PI. Upon failure, return NULL. */
2582 proc_get_gregs (procinfo *pi)
2584 if (!pi->status_valid || !pi->gregs_valid)
2585 if (!proc_get_status (pi))
2588 /* OK, sorry about the ifdef's. There's three cases instead of two,
2589 because in this case Unixware and Solaris/RW differ. */
2592 # ifdef UNIXWARE /* FIXME: Should be autoconfigured. */
2593 return &pi->prstatus.pr_lwp.pr_context.uc_mcontext.gregs;
2595 return &pi->prstatus.pr_lwp.pr_reg;
2598 return &pi->prstatus.pr_reg;
2602 /* Return the general-purpose registers for the process or LWP
2603 corresponding to PI. Upon failure, return NULL. */
2606 proc_get_fpregs (procinfo *pi)
2609 if (!pi->status_valid || !pi->fpregs_valid)
2610 if (!proc_get_status (pi))
2613 # ifdef UNIXWARE /* FIXME: Should be autoconfigured. */
2614 return &pi->prstatus.pr_lwp.pr_context.uc_mcontext.fpregs;
2616 return &pi->prstatus.pr_lwp.pr_fpreg;
2619 #else /* not NEW_PROC_API */
2620 if (pi->fpregs_valid)
2621 return &pi->fpregset; /* Already got 'em. */
2624 if (pi->ctl_fd == 0 && open_procinfo_files (pi, FD_CTL) == 0)
2633 tid_t pr_error_thread;
2634 tfpregset_t thread_1;
2637 thread_fpregs.pr_count = 1;
2638 thread_fpregs.thread_1.tid = pi->tid;
2641 && ioctl (pi->ctl_fd, PIOCGFPREG, &pi->fpregset) >= 0)
2643 pi->fpregs_valid = 1;
2644 return &pi->fpregset; /* Got 'em now! */
2646 else if (pi->tid != 0
2647 && ioctl (pi->ctl_fd, PIOCTGFPREG, &thread_fpregs) >= 0)
2649 memcpy (&pi->fpregset, &thread_fpregs.thread_1.pr_fpregs,
2650 sizeof (pi->fpregset));
2651 pi->fpregs_valid = 1;
2652 return &pi->fpregset; /* Got 'em now! */
2659 if (ioctl (pi->ctl_fd, PIOCGFPREG, &pi->fpregset) >= 0)
2661 pi->fpregs_valid = 1;
2662 return &pi->fpregset; /* Got 'em now! */
2671 #endif /* NEW_PROC_API */
2674 /* Write the general-purpose registers back to the process or LWP
2675 corresponding to PI. Return non-zero for success, zero for
2679 proc_set_gregs (procinfo *pi)
2681 gdb_gregset_t *gregs;
2684 gregs = proc_get_gregs (pi);
2686 return 0; /* proc_get_regs has already warned. */
2688 if (pi->ctl_fd == 0 && open_procinfo_files (pi, FD_CTL) == 0)
2697 /* Use char array to avoid alignment issues. */
2698 char gregs[sizeof (gdb_gregset_t)];
2702 memcpy (&arg.gregs, gregs, sizeof (arg.gregs));
2703 win = (write (pi->ctl_fd, (void *) &arg, sizeof (arg)) == sizeof (arg));
2705 win = (ioctl (pi->ctl_fd, PIOCSREG, gregs) >= 0);
2709 /* Policy: writing the registers invalidates our cache. */
2710 pi->gregs_valid = 0;
2714 /* Write the floating-pointer registers back to the process or LWP
2715 corresponding to PI. Return non-zero for success, zero for
2719 proc_set_fpregs (procinfo *pi)
2721 gdb_fpregset_t *fpregs;
2724 fpregs = proc_get_fpregs (pi);
2726 return 0; /* proc_get_fpregs has already warned. */
2728 if (pi->ctl_fd == 0 && open_procinfo_files (pi, FD_CTL) == 0)
2737 /* Use char array to avoid alignment issues. */
2738 char fpregs[sizeof (gdb_fpregset_t)];
2742 memcpy (&arg.fpregs, fpregs, sizeof (arg.fpregs));
2743 win = (write (pi->ctl_fd, (void *) &arg, sizeof (arg)) == sizeof (arg));
2747 win = (ioctl (pi->ctl_fd, PIOCSFPREG, fpregs) >= 0);
2752 tid_t pr_error_thread;
2753 tfpregset_t thread_1;
2756 thread_fpregs.pr_count = 1;
2757 thread_fpregs.thread_1.tid = pi->tid;
2758 memcpy (&thread_fpregs.thread_1.pr_fpregs, fpregs,
2760 win = (ioctl (pi->ctl_fd, PIOCTSFPREG, &thread_fpregs) >= 0);
2763 win = (ioctl (pi->ctl_fd, PIOCSFPREG, fpregs) >= 0);
2765 #endif /* NEW_PROC_API */
2768 /* Policy: writing the registers invalidates our cache. */
2769 pi->fpregs_valid = 0;
2774 * Function: proc_kill
2776 * Send a signal to the proc or lwp with the semantics of "kill()".
2777 * Returns non-zero for success, zero for failure.
2781 proc_kill (procinfo *pi, int signo)
2786 * We might conceivably apply this operation to an LWP, and
2787 * the LWP's ctl file descriptor might not be open.
2790 if (pi->ctl_fd == 0 &&
2791 open_procinfo_files (pi, FD_CTL) == 0)
2798 procfs_ctl_t cmd[2];
2802 win = (write (pi->ctl_fd, (char *) &cmd, sizeof (cmd)) == sizeof (cmd));
2803 #else /* ioctl method */
2804 /* FIXME: do I need the Alpha OSF fixups present in
2805 procfs.c/unconditionally_kill_inferior? Perhaps only for SIGKILL? */
2806 win = (ioctl (pi->ctl_fd, PIOCKILL, &signo) >= 0);
2814 * Function: proc_parent_pid
2816 * Find the pid of the process that started this one.
2817 * Returns the parent process pid, or zero.
2821 proc_parent_pid (procinfo *pi)
2824 * We should never have to apply this operation to any procinfo
2825 * except the one for the main process. If that ever changes
2826 * for any reason, then take out the following clause and
2827 * replace it with one that makes sure the ctl_fd is open.
2831 pi = find_procinfo_or_die (pi->pid, 0);
2833 if (!pi->status_valid)
2834 if (!proc_get_status (pi))
2837 return pi->prstatus.pr_ppid;
2841 /* Convert a target address (a.k.a. CORE_ADDR) into a host address
2842 (a.k.a void pointer)! */
2845 procfs_address_to_host_pointer (CORE_ADDR addr)
2849 gdb_assert (sizeof (ptr) == TYPE_LENGTH (builtin_type_void_data_ptr));
2850 gdbarch_address_to_pointer (current_gdbarch, builtin_type_void_data_ptr,
2856 * Function: proc_set_watchpoint
2861 proc_set_watchpoint (procinfo *pi, CORE_ADDR addr, int len, int wflags)
2863 #if !defined (TARGET_HAS_HARDWARE_WATCHPOINTS)
2866 /* Horrible hack! Detect Solaris 2.5, because this doesn't work on 2.5 */
2867 #if defined (PIOCOPENLWP) || defined (UNIXWARE) /* Solaris 2.5: bail out */
2872 char watch[sizeof (prwatch_t)];
2876 pwatch = (prwatch_t *) &arg.watch;
2877 /* NOTE: cagney/2003-02-01: Even more horrible hack. Need to
2878 convert a target address into something that can be stored in a
2879 native data structure. */
2880 #ifdef PCAGENT /* Horrible hack: only defined on Solaris 2.6+ */
2881 pwatch->pr_vaddr = (uintptr_t) procfs_address_to_host_pointer (addr);
2883 pwatch->pr_vaddr = (caddr_t) procfs_address_to_host_pointer (addr);
2885 pwatch->pr_size = len;
2886 pwatch->pr_wflags = wflags;
2887 #if defined(NEW_PROC_API) && defined (PCWATCH)
2889 return (write (pi->ctl_fd, &arg, sizeof (arg)) == sizeof (arg));
2891 #if defined (PIOCSWATCH)
2892 return (ioctl (pi->ctl_fd, PIOCSWATCH, pwatch) >= 0);
2894 return 0; /* Fail */
2901 #ifdef TM_I386SOL2_H /* Is it hokey to use this? */
2903 #include <sys/sysi86.h>
2906 * Function: proc_get_LDT_entry
2912 * The 'key' is actually the value of the lower 16 bits of
2913 * the GS register for the LWP that we're interested in.
2915 * Return: matching ssh struct (LDT entry).
2919 proc_get_LDT_entry (procinfo *pi, int key)
2921 static struct ssd *ldt_entry = NULL;
2923 char pathname[MAX_PROC_NAME_SIZE];
2924 struct cleanup *old_chain = NULL;
2927 /* Allocate space for one LDT entry.
2928 This alloc must persist, because we return a pointer to it. */
2929 if (ldt_entry == NULL)
2930 ldt_entry = (struct ssd *) xmalloc (sizeof (struct ssd));
2932 /* Open the file descriptor for the LDT table. */
2933 sprintf (pathname, "/proc/%d/ldt", pi->pid);
2934 if ((fd = open_with_retry (pathname, O_RDONLY)) < 0)
2936 proc_warn (pi, "proc_get_LDT_entry (open)", __LINE__);
2939 /* Make sure it gets closed again! */
2940 old_chain = make_cleanup_close (fd);
2942 /* Now 'read' thru the table, find a match and return it. */
2943 while (read (fd, ldt_entry, sizeof (struct ssd)) == sizeof (struct ssd))
2945 if (ldt_entry->sel == 0 &&
2946 ldt_entry->bo == 0 &&
2947 ldt_entry->acc1 == 0 &&
2948 ldt_entry->acc2 == 0)
2949 break; /* end of table */
2950 /* If key matches, return this entry. */
2951 if (ldt_entry->sel == key)
2954 /* Loop ended, match not found. */
2958 static int nalloc = 0;
2960 /* Get the number of LDT entries. */
2961 if (ioctl (pi->ctl_fd, PIOCNLDT, &nldt) < 0)
2963 proc_warn (pi, "proc_get_LDT_entry (PIOCNLDT)", __LINE__);
2967 /* Allocate space for the number of LDT entries. */
2968 /* This alloc has to persist, 'cause we return a pointer to it. */
2971 ldt_entry = (struct ssd *)
2972 xrealloc (ldt_entry, (nldt + 1) * sizeof (struct ssd));
2976 /* Read the whole table in one gulp. */
2977 if (ioctl (pi->ctl_fd, PIOCLDT, ldt_entry) < 0)
2979 proc_warn (pi, "proc_get_LDT_entry (PIOCLDT)", __LINE__);
2983 /* Search the table and return the (first) entry matching 'key'. */
2984 for (i = 0; i < nldt; i++)
2985 if (ldt_entry[i].sel == key)
2986 return &ldt_entry[i];
2988 /* Loop ended, match not found. */
2993 #endif /* TM_I386SOL2_H */
2995 /* =============== END, non-thread part of /proc "MODULE" =============== */
2997 /* =================== Thread "MODULE" =================== */
2999 /* NOTE: you'll see more ifdefs and duplication of functions here,
3000 since there is a different way to do threads on every OS. */
3003 * Function: proc_get_nthreads
3005 * Return the number of threads for the process
3008 #if defined (PIOCNTHR) && defined (PIOCTLIST)
3013 proc_get_nthreads (procinfo *pi)
3017 if (ioctl (pi->ctl_fd, PIOCNTHR, &nthreads) < 0)
3018 proc_warn (pi, "procfs: PIOCNTHR failed", __LINE__);
3024 #if defined (SYS_lwpcreate) || defined (SYS_lwp_create) /* FIXME: multiple */
3026 * Solaris and Unixware version
3029 proc_get_nthreads (procinfo *pi)
3031 if (!pi->status_valid)
3032 if (!proc_get_status (pi))
3036 * NEW_PROC_API: only works for the process procinfo,
3037 * because the LWP procinfos do not get prstatus filled in.
3040 if (pi->tid != 0) /* find the parent process procinfo */
3041 pi = find_procinfo_or_die (pi->pid, 0);
3043 return pi->prstatus.pr_nlwp;
3051 proc_get_nthreads (procinfo *pi)
3059 * Function: proc_get_current_thread (LWP version)
3061 * Return the ID of the thread that had an event of interest.
3062 * (ie. the one that hit a breakpoint or other traced event).
3063 * All other things being equal, this should be the ID of a
3064 * thread that is currently executing.
3067 #if defined (SYS_lwpcreate) || defined (SYS_lwp_create) /* FIXME: multiple */
3069 * Solaris and Unixware version
3072 proc_get_current_thread (procinfo *pi)
3075 * Note: this should be applied to the root procinfo for the process,
3076 * not to the procinfo for an LWP. If applied to the procinfo for
3077 * an LWP, it will simply return that LWP's ID. In that case,
3078 * find the parent process procinfo.
3082 pi = find_procinfo_or_die (pi->pid, 0);
3084 if (!pi->status_valid)
3085 if (!proc_get_status (pi))
3089 return pi->prstatus.pr_lwp.pr_lwpid;
3091 return pi->prstatus.pr_who;
3096 #if defined (PIOCNTHR) && defined (PIOCTLIST)
3101 proc_get_current_thread (procinfo *pi)
3103 #if 0 /* FIXME: not ready for prime time? */
3104 return pi->prstatus.pr_tid;
3115 proc_get_current_thread (procinfo *pi)
3124 * Function: proc_update_threads
3126 * Discover the IDs of all the threads within the process, and
3127 * create a procinfo for each of them (chained to the parent).
3129 * This unfortunately requires a different method on every OS.
3131 * Return: non-zero for success, zero for failure.
3135 proc_delete_dead_threads (procinfo *parent, procinfo *thread, void *ignore)
3137 if (thread && parent) /* sanity */
3139 thread->status_valid = 0;
3140 if (!proc_get_status (thread))
3141 destroy_one_procinfo (&parent->thread_list, thread);
3143 return 0; /* keep iterating */
3146 #if defined (PIOCLSTATUS)
3148 * Solaris 2.5 (ioctl) version
3151 proc_update_threads (procinfo *pi)
3153 gdb_prstatus_t *prstatus;
3154 struct cleanup *old_chain = NULL;
3159 * We should never have to apply this operation to any procinfo
3160 * except the one for the main process. If that ever changes
3161 * for any reason, then take out the following clause and
3162 * replace it with one that makes sure the ctl_fd is open.
3166 pi = find_procinfo_or_die (pi->pid, 0);
3168 proc_iterate_over_threads (pi, proc_delete_dead_threads, NULL);
3170 if ((nlwp = proc_get_nthreads (pi)) <= 1)
3171 return 1; /* Process is not multi-threaded; nothing to do. */
3173 prstatus = xmalloc (sizeof (gdb_prstatus_t) * (nlwp + 1));
3175 old_chain = make_cleanup (xfree, prstatus);
3176 if (ioctl (pi->ctl_fd, PIOCLSTATUS, prstatus) < 0)
3177 proc_error (pi, "update_threads (PIOCLSTATUS)", __LINE__);
3179 /* Skip element zero, which represents the process as a whole. */
3180 for (i = 1; i < nlwp + 1; i++)
3182 if ((thread = create_procinfo (pi->pid, prstatus[i].pr_who)) == NULL)
3183 proc_error (pi, "update_threads, create_procinfo", __LINE__);
3185 memcpy (&thread->prstatus, &prstatus[i], sizeof (*prstatus));
3186 thread->status_valid = 1;
3188 pi->threads_valid = 1;
3189 do_cleanups (old_chain);
3195 * Unixware and Solaris 6 (and later) version
3198 do_closedir_cleanup (void *dir)
3204 proc_update_threads (procinfo *pi)
3206 char pathname[MAX_PROC_NAME_SIZE + 16];
3207 struct dirent *direntry;
3208 struct cleanup *old_chain = NULL;
3214 * We should never have to apply this operation to any procinfo
3215 * except the one for the main process. If that ever changes
3216 * for any reason, then take out the following clause and
3217 * replace it with one that makes sure the ctl_fd is open.
3221 pi = find_procinfo_or_die (pi->pid, 0);
3223 proc_iterate_over_threads (pi, proc_delete_dead_threads, NULL);
3228 * Note: this brute-force method is the only way I know of
3229 * to accomplish this task on Unixware. This method will
3230 * also work on Solaris 2.6 and 2.7. There is a much simpler
3231 * and more elegant way to do this on Solaris, but the margins
3232 * of this manuscript are too small to write it here... ;-)
3235 strcpy (pathname, pi->pathname);
3236 strcat (pathname, "/lwp");
3237 if ((dirp = opendir (pathname)) == NULL)
3238 proc_error (pi, "update_threads, opendir", __LINE__);
3240 old_chain = make_cleanup (do_closedir_cleanup, dirp);
3241 while ((direntry = readdir (dirp)) != NULL)
3242 if (direntry->d_name[0] != '.') /* skip '.' and '..' */
3244 lwpid = atoi (&direntry->d_name[0]);
3245 if ((thread = create_procinfo (pi->pid, lwpid)) == NULL)
3246 proc_error (pi, "update_threads, create_procinfo", __LINE__);
3248 pi->threads_valid = 1;
3249 do_cleanups (old_chain);
3258 proc_update_threads (procinfo *pi)
3264 * We should never have to apply this operation to any procinfo
3265 * except the one for the main process. If that ever changes
3266 * for any reason, then take out the following clause and
3267 * replace it with one that makes sure the ctl_fd is open.
3271 pi = find_procinfo_or_die (pi->pid, 0);
3273 proc_iterate_over_threads (pi, proc_delete_dead_threads, NULL);
3275 nthreads = proc_get_nthreads (pi);
3277 return 0; /* nothing to do for 1 or fewer threads */
3279 threads = xmalloc (nthreads * sizeof (tid_t));
3281 if (ioctl (pi->ctl_fd, PIOCTLIST, threads) < 0)
3282 proc_error (pi, "procfs: update_threads (PIOCTLIST)", __LINE__);
3284 for (i = 0; i < nthreads; i++)
3286 if (!find_procinfo (pi->pid, threads[i]))
3287 if (!create_procinfo (pi->pid, threads[i]))
3288 proc_error (pi, "update_threads, create_procinfo", __LINE__);
3290 pi->threads_valid = 1;
3298 proc_update_threads (procinfo *pi)
3302 #endif /* OSF PIOCTLIST */
3303 #endif /* NEW_PROC_API */
3304 #endif /* SOL 2.5 PIOCLSTATUS */
3307 * Function: proc_iterate_over_threads
3310 * Given a pointer to a function, call that function once
3311 * for each lwp in the procinfo list, until the function
3312 * returns non-zero, in which event return the value
3313 * returned by the function.
3315 * Note: this function does NOT call update_threads.
3316 * If you want to discover new threads first, you must
3317 * call that function explicitly. This function just makes
3318 * a quick pass over the currently-known procinfos.
3321 * pi - parent process procinfo
3322 * func - per-thread function
3323 * ptr - opaque parameter for function.
3326 * First non-zero return value from the callee, or zero.
3330 proc_iterate_over_threads (procinfo *pi,
3331 int (*func) (procinfo *, procinfo *, void *),
3334 procinfo *thread, *next;
3338 * We should never have to apply this operation to any procinfo
3339 * except the one for the main process. If that ever changes
3340 * for any reason, then take out the following clause and
3341 * replace it with one that makes sure the ctl_fd is open.
3345 pi = find_procinfo_or_die (pi->pid, 0);
3347 for (thread = pi->thread_list; thread != NULL; thread = next)
3349 next = thread->next; /* in case thread is destroyed */
3350 if ((retval = (*func) (pi, thread, ptr)) != 0)
3357 /* =================== END, Thread "MODULE" =================== */
3359 /* =================== END, /proc "MODULE" =================== */
3361 /* =================== GDB "MODULE" =================== */
3364 * Here are all of the gdb target vector functions and their friends.
3367 static ptid_t do_attach (ptid_t ptid);
3368 static void do_detach (int signo);
3369 static int register_gdb_signals (procinfo *, gdb_sigset_t *);
3370 static void proc_trace_syscalls_1 (procinfo *pi, int syscallnum,
3371 int entry_or_exit, int mode, int from_tty);
3372 static int insert_dbx_link_breakpoint (procinfo *pi);
3373 static void remove_dbx_link_breakpoint (void);
3375 /* On mips-irix, we need to insert a breakpoint at __dbx_link during
3376 the startup phase. The following two variables are used to record
3377 the address of the breakpoint, and the code that was replaced by
3379 static int dbx_link_bpt_addr = 0;
3380 static void *dbx_link_bpt;
3383 * Function: procfs_debug_inferior
3385 * Sets up the inferior to be debugged.
3386 * Registers to trace signals, hardware faults, and syscalls.
3387 * Note: does not set RLC flag: caller may want to customize that.
3389 * Returns: zero for success (note! unlike most functions in this module)
3390 * On failure, returns the LINE NUMBER where it failed!
3394 procfs_debug_inferior (procinfo *pi)
3396 fltset_t traced_faults;
3397 gdb_sigset_t traced_signals;
3398 sysset_t *traced_syscall_entries;
3399 sysset_t *traced_syscall_exits;
3402 #ifdef PROCFS_DONT_TRACE_FAULTS
3403 /* On some systems (OSF), we don't trace hardware faults.
3404 Apparently it's enough that we catch them as signals.
3405 Wonder why we don't just do that in general? */
3406 premptyset (&traced_faults); /* don't trace faults. */
3408 /* Register to trace hardware faults in the child. */
3409 prfillset (&traced_faults); /* trace all faults... */
3410 prdelset (&traced_faults, FLTPAGE); /* except page fault. */
3412 if (!proc_set_traced_faults (pi, &traced_faults))
3415 /* Register to trace selected signals in the child. */
3416 premptyset (&traced_signals);
3417 if (!register_gdb_signals (pi, &traced_signals))
3421 /* Register to trace the 'exit' system call (on entry). */
3422 traced_syscall_entries = sysset_t_alloc (pi);
3423 gdb_premptysysset (traced_syscall_entries);
3425 gdb_praddsysset (traced_syscall_entries, SYS_exit);
3428 gdb_praddsysset (traced_syscall_entries, SYS_lwpexit); /* And _lwp_exit... */
3431 gdb_praddsysset (traced_syscall_entries, SYS_lwp_exit);
3433 #ifdef DYNAMIC_SYSCALLS
3435 int callnum = find_syscall (pi, "_exit");
3437 gdb_praddsysset (traced_syscall_entries, callnum);
3441 status = proc_set_traced_sysentry (pi, traced_syscall_entries);
3442 xfree (traced_syscall_entries);
3446 #ifdef PRFS_STOPEXEC /* defined on OSF */
3447 /* OSF method for tracing exec syscalls. Quoting:
3448 Under Alpha OSF/1 we have to use a PIOCSSPCACT ioctl to trace
3449 exits from exec system calls because of the user level loader. */
3450 /* FIXME: make nice and maybe move into an access function. */
3454 if (ioctl (pi->ctl_fd, PIOCGSPCACT, &prfs_flags) < 0)
3457 prfs_flags |= PRFS_STOPEXEC;
3459 if (ioctl (pi->ctl_fd, PIOCSSPCACT, &prfs_flags) < 0)
3462 #else /* not PRFS_STOPEXEC */
3463 /* Everyone else's (except OSF) method for tracing exec syscalls */
3465 Not all systems with /proc have all the exec* syscalls with the same
3466 names. On the SGI, for example, there is no SYS_exec, but there
3467 *is* a SYS_execv. So, we try to account for that. */
3469 traced_syscall_exits = sysset_t_alloc (pi);
3470 gdb_premptysysset (traced_syscall_exits);
3472 gdb_praddsysset (traced_syscall_exits, SYS_exec);
3475 gdb_praddsysset (traced_syscall_exits, SYS_execve);
3478 gdb_praddsysset (traced_syscall_exits, SYS_execv);
3481 #ifdef SYS_lwpcreate
3482 gdb_praddsysset (traced_syscall_exits, SYS_lwpcreate);
3483 gdb_praddsysset (traced_syscall_exits, SYS_lwpexit);
3486 #ifdef SYS_lwp_create /* FIXME: once only, please */
3487 gdb_praddsysset (traced_syscall_exits, SYS_lwp_create);
3488 gdb_praddsysset (traced_syscall_exits, SYS_lwp_exit);
3491 #ifdef DYNAMIC_SYSCALLS
3493 int callnum = find_syscall (pi, "execve");
3495 gdb_praddsysset (traced_syscall_exits, callnum);
3496 callnum = find_syscall (pi, "ra_execve");
3498 gdb_praddsysset (traced_syscall_exits, callnum);
3502 status = proc_set_traced_sysexit (pi, traced_syscall_exits);
3503 xfree (traced_syscall_exits);
3507 #endif /* PRFS_STOPEXEC */
3512 procfs_attach (char *args, int from_tty)
3518 error_no_arg (_("process-id to attach"));
3521 if (pid == getpid ())
3522 error (_("Attaching GDB to itself is not a good idea..."));
3526 exec_file = get_exec_file (0);
3529 printf_filtered (_("Attaching to program `%s', %s\n"),
3530 exec_file, target_pid_to_str (pid_to_ptid (pid)));
3532 printf_filtered (_("Attaching to %s\n"),
3533 target_pid_to_str (pid_to_ptid (pid)));
3537 inferior_ptid = do_attach (pid_to_ptid (pid));
3538 push_target (&procfs_ops);
3542 procfs_detach (char *args, int from_tty)
3551 int pid = PIDGET (inferior_ptid);
3554 exec_file = get_exec_file (0);
3555 if (exec_file == NULL)
3558 printf_filtered (_("Detaching from program: %s, %s\n"), exec_file,
3559 target_pid_to_str (pid_to_ptid (pid)));
3560 gdb_flush (gdb_stdout);
3565 inferior_ptid = null_ptid;
3566 unpush_target (&procfs_ops);
3570 do_attach (ptid_t ptid)
3575 if ((pi = create_procinfo (PIDGET (ptid), 0)) == NULL)
3576 perror (_("procfs: out of memory in 'attach'"));
3578 if (!open_procinfo_files (pi, FD_CTL))
3580 fprintf_filtered (gdb_stderr, "procfs:%d -- ", __LINE__);
3581 sprintf (errmsg, "do_attach: couldn't open /proc file for process %d",
3583 dead_procinfo (pi, errmsg, NOKILL);
3586 /* Stop the process (if it isn't already stopped). */
3587 if (proc_flags (pi) & (PR_STOPPED | PR_ISTOP))
3589 pi->was_stopped = 1;
3590 proc_prettyprint_why (proc_why (pi), proc_what (pi), 1);
3594 pi->was_stopped = 0;
3595 /* Set the process to run again when we close it. */
3596 if (!proc_set_run_on_last_close (pi))
3597 dead_procinfo (pi, "do_attach: couldn't set RLC.", NOKILL);
3599 /* Now stop the process. */
3600 if (!proc_stop_process (pi))
3601 dead_procinfo (pi, "do_attach: couldn't stop the process.", NOKILL);
3602 pi->ignore_next_sigstop = 1;
3604 /* Save some of the /proc state to be restored if we detach. */
3605 if (!proc_get_traced_faults (pi, &pi->saved_fltset))
3606 dead_procinfo (pi, "do_attach: couldn't save traced faults.", NOKILL);
3607 if (!proc_get_traced_signals (pi, &pi->saved_sigset))
3608 dead_procinfo (pi, "do_attach: couldn't save traced signals.", NOKILL);
3609 if (!proc_get_traced_sysentry (pi, pi->saved_entryset))
3610 dead_procinfo (pi, "do_attach: couldn't save traced syscall entries.",
3612 if (!proc_get_traced_sysexit (pi, pi->saved_exitset))
3613 dead_procinfo (pi, "do_attach: couldn't save traced syscall exits.",
3615 if (!proc_get_held_signals (pi, &pi->saved_sighold))
3616 dead_procinfo (pi, "do_attach: couldn't save held signals.", NOKILL);
3618 if ((fail = procfs_debug_inferior (pi)) != 0)
3619 dead_procinfo (pi, "do_attach: failed in procfs_debug_inferior", NOKILL);
3621 /* Let GDB know that the inferior was attached. */
3623 return MERGEPID (pi->pid, proc_get_current_thread (pi));
3627 do_detach (int signo)
3631 /* Find procinfo for the main process */
3632 pi = find_procinfo_or_die (PIDGET (inferior_ptid), 0); /* FIXME: threads */
3634 if (!proc_set_current_signal (pi, signo))
3635 proc_warn (pi, "do_detach, set_current_signal", __LINE__);
3637 if (!proc_set_traced_signals (pi, &pi->saved_sigset))
3638 proc_warn (pi, "do_detach, set_traced_signal", __LINE__);
3640 if (!proc_set_traced_faults (pi, &pi->saved_fltset))
3641 proc_warn (pi, "do_detach, set_traced_faults", __LINE__);
3643 if (!proc_set_traced_sysentry (pi, pi->saved_entryset))
3644 proc_warn (pi, "do_detach, set_traced_sysentry", __LINE__);
3646 if (!proc_set_traced_sysexit (pi, pi->saved_exitset))
3647 proc_warn (pi, "do_detach, set_traced_sysexit", __LINE__);
3649 if (!proc_set_held_signals (pi, &pi->saved_sighold))
3650 proc_warn (pi, "do_detach, set_held_signals", __LINE__);
3652 if (signo || (proc_flags (pi) & (PR_STOPPED | PR_ISTOP)))
3653 if (signo || !(pi->was_stopped) ||
3654 query (_("Was stopped when attached, make it runnable again? ")))
3656 /* Clear any pending signal. */
3657 if (!proc_clear_current_fault (pi))
3658 proc_warn (pi, "do_detach, clear_current_fault", __LINE__);
3660 if (signo == 0 && !proc_clear_current_signal (pi))
3661 proc_warn (pi, "do_detach, clear_current_signal", __LINE__);
3663 if (!proc_set_run_on_last_close (pi))
3664 proc_warn (pi, "do_detach, set_rlc", __LINE__);
3668 destroy_procinfo (pi);
3671 /* Fetch register REGNUM from the inferior. If REGNUM is -1, do this
3674 ??? Is the following note still relevant? We can't get individual
3675 registers with the PT_GETREGS ptrace(2) request either, yet we
3676 don't bother with caching at all in that case.
3678 NOTE: Since the /proc interface cannot give us individual
3679 registers, we pay no attention to REGNUM, and just fetch them all.
3680 This results in the possibility that we will do unnecessarily many
3681 fetches, since we may be called repeatedly for individual
3682 registers. So we cache the results, and mark the cache invalid
3683 when the process is resumed. */
3686 procfs_fetch_registers (struct regcache *regcache, int regnum)
3688 gdb_gregset_t *gregs;
3690 int pid = PIDGET (inferior_ptid);
3691 int tid = TIDGET (inferior_ptid);
3693 /* First look up procinfo for the main process. */
3694 pi = find_procinfo_or_die (pid, 0);
3696 /* If the event thread is not the same as GDB's requested thread
3697 (ie. inferior_ptid), then look up procinfo for the requested
3699 if (tid != 0 && tid != proc_get_current_thread (pi))
3700 pi = find_procinfo_or_die (pid, tid);
3703 error (_("procfs: fetch_registers failed to find procinfo for %s"),
3704 target_pid_to_str (inferior_ptid));
3706 gregs = proc_get_gregs (pi);
3708 proc_error (pi, "fetch_registers, get_gregs", __LINE__);
3710 supply_gregset (regcache, (const gdb_gregset_t *) gregs);
3712 if (gdbarch_fp0_regnum (current_gdbarch) >= 0) /* Do we have an FPU? */
3714 gdb_fpregset_t *fpregs;
3716 if ((regnum >= 0 && regnum < gdbarch_fp0_regnum (current_gdbarch))
3717 || regnum == gdbarch_pc_regnum (current_gdbarch)
3718 || regnum == gdbarch_sp_regnum (current_gdbarch))
3719 return; /* Not a floating point register. */
3721 fpregs = proc_get_fpregs (pi);
3723 proc_error (pi, "fetch_registers, get_fpregs", __LINE__);
3725 supply_fpregset (regcache, (const gdb_fpregset_t *) fpregs);
3729 /* Get ready to modify the registers array. On machines which store
3730 individual registers, this doesn't need to do anything. On
3731 machines which store all the registers in one fell swoop, such as
3732 /proc, this makes sure that registers contains all the registers
3733 from the program being debugged. */
3736 procfs_prepare_to_store (struct regcache *regcache)
3740 /* Store register REGNUM back into the inferior. If REGNUM is -1, do
3741 this for all registers.
3743 NOTE: Since the /proc interface will not read individual registers,
3744 we will cache these requests until the process is resumed, and only
3745 then write them back to the inferior process.
3747 FIXME: is that a really bad idea? Have to think about cases where
3748 writing one register might affect the value of others, etc. */
3751 procfs_store_registers (struct regcache *regcache, int regnum)
3753 gdb_gregset_t *gregs;
3755 int pid = PIDGET (inferior_ptid);
3756 int tid = TIDGET (inferior_ptid);
3758 /* First find procinfo for main process. */
3759 pi = find_procinfo_or_die (pid, 0);
3761 /* If the event thread is not the same as GDB's requested thread
3762 (ie. inferior_ptid), then look up procinfo for the requested
3764 if (tid != 0 && tid != proc_get_current_thread (pi))
3765 pi = find_procinfo_or_die (pid, tid);
3768 error (_("procfs: store_registers: failed to find procinfo for %s"),
3769 target_pid_to_str (inferior_ptid));
3771 gregs = proc_get_gregs (pi);
3773 proc_error (pi, "store_registers, get_gregs", __LINE__);
3775 fill_gregset (regcache, gregs, regnum);
3776 if (!proc_set_gregs (pi))
3777 proc_error (pi, "store_registers, set_gregs", __LINE__);
3779 if (gdbarch_fp0_regnum (current_gdbarch) >= 0) /* Do we have an FPU? */
3781 gdb_fpregset_t *fpregs;
3783 if ((regnum >= 0 && regnum < gdbarch_fp0_regnum (current_gdbarch))
3784 || regnum == gdbarch_pc_regnum (current_gdbarch)
3785 || regnum == gdbarch_sp_regnum (current_gdbarch))
3786 return; /* Not a floating point register. */
3788 fpregs = proc_get_fpregs (pi);
3790 proc_error (pi, "store_registers, get_fpregs", __LINE__);
3792 fill_fpregset (regcache, fpregs, regnum);
3793 if (!proc_set_fpregs (pi))
3794 proc_error (pi, "store_registers, set_fpregs", __LINE__);
3799 syscall_is_lwp_exit (procinfo *pi, int scall)
3803 if (scall == SYS_lwp_exit)
3807 if (scall == SYS_lwpexit)
3814 syscall_is_exit (procinfo *pi, int scall)
3817 if (scall == SYS_exit)
3820 #ifdef DYNAMIC_SYSCALLS
3821 if (find_syscall (pi, "_exit") == scall)
3828 syscall_is_exec (procinfo *pi, int scall)
3831 if (scall == SYS_exec)
3835 if (scall == SYS_execv)
3839 if (scall == SYS_execve)
3842 #ifdef DYNAMIC_SYSCALLS
3843 if (find_syscall (pi, "_execve"))
3845 if (find_syscall (pi, "ra_execve"))
3852 syscall_is_lwp_create (procinfo *pi, int scall)
3854 #ifdef SYS_lwp_create
3855 if (scall == SYS_lwp_create)
3858 #ifdef SYS_lwpcreate
3859 if (scall == SYS_lwpcreate)
3866 * Function: target_wait
3868 * Retrieve the next stop event from the child process.
3869 * If child has not stopped yet, wait for it to stop.
3870 * Translate /proc eventcodes (or possibly wait eventcodes)
3871 * into gdb internal event codes.
3873 * Return: id of process (and possibly thread) that incurred the event.
3874 * event codes are returned thru a pointer parameter.
3878 procfs_wait (ptid_t ptid, struct target_waitstatus *status)
3880 /* First cut: loosely based on original version 2.1 */
3884 ptid_t retval, temp_ptid;
3885 int why, what, flags;
3892 retval = pid_to_ptid (-1);
3894 /* Find procinfo for main process */
3895 pi = find_procinfo_or_die (PIDGET (inferior_ptid), 0);
3898 /* We must assume that the status is stale now... */
3899 pi->status_valid = 0;
3900 pi->gregs_valid = 0;
3901 pi->fpregs_valid = 0;
3903 #if 0 /* just try this out... */
3904 flags = proc_flags (pi);
3905 why = proc_why (pi);
3906 if ((flags & PR_STOPPED) && (why == PR_REQUESTED))
3907 pi->status_valid = 0; /* re-read again, IMMEDIATELY... */
3909 /* If child is not stopped, wait for it to stop. */
3910 if (!(proc_flags (pi) & (PR_STOPPED | PR_ISTOP)) &&
3911 !proc_wait_for_stop (pi))
3913 /* wait_for_stop failed: has the child terminated? */
3914 if (errno == ENOENT)
3918 /* /proc file not found; presumably child has terminated. */
3919 wait_retval = wait (&wstat); /* "wait" for the child's exit */
3921 if (wait_retval != PIDGET (inferior_ptid)) /* wrong child? */
3922 error (_("procfs: couldn't stop process %d: wait returned %d."),
3923 PIDGET (inferior_ptid), wait_retval);
3924 /* FIXME: might I not just use waitpid?
3925 Or try find_procinfo to see if I know about this child? */
3926 retval = pid_to_ptid (wait_retval);
3928 else if (errno == EINTR)
3932 /* Unknown error from wait_for_stop. */
3933 proc_error (pi, "target_wait (wait_for_stop)", __LINE__);
3938 /* This long block is reached if either:
3939 a) the child was already stopped, or
3940 b) we successfully waited for the child with wait_for_stop.
3941 This block will analyze the /proc status, and translate it
3942 into a waitstatus for GDB.
3944 If we actually had to call wait because the /proc file
3945 is gone (child terminated), then we skip this block,
3946 because we already have a waitstatus. */
3948 flags = proc_flags (pi);
3949 why = proc_why (pi);
3950 what = proc_what (pi);
3952 if (flags & (PR_STOPPED | PR_ISTOP))
3955 /* If it's running async (for single_thread control),
3956 set it back to normal again. */
3957 if (flags & PR_ASYNC)
3958 if (!proc_unset_async (pi))
3959 proc_error (pi, "target_wait, unset_async", __LINE__);
3963 proc_prettyprint_why (why, what, 1);
3965 /* The 'pid' we will return to GDB is composed of
3966 the process ID plus the lwp ID. */
3967 retval = MERGEPID (pi->pid, proc_get_current_thread (pi));
3971 wstat = (what << 8) | 0177;
3974 if (syscall_is_lwp_exit (pi, what))
3976 printf_filtered (_("[%s exited]\n"),
3977 target_pid_to_str (retval));
3978 delete_thread (retval);
3979 status->kind = TARGET_WAITKIND_SPURIOUS;
3982 else if (syscall_is_exit (pi, what))
3984 /* Handle SYS_exit call only */
3985 /* Stopped at entry to SYS_exit.
3986 Make it runnable, resume it, then use
3987 the wait system call to get its exit code.
3988 Proc_run_process always clears the current
3990 Then return its exit status. */
3991 pi->status_valid = 0;
3993 /* FIXME: what we should do is return
3994 TARGET_WAITKIND_SPURIOUS. */
3995 if (!proc_run_process (pi, 0, 0))
3996 proc_error (pi, "target_wait, run_process", __LINE__);
3999 /* Don't call wait: simulate waiting for exit,
4000 return a "success" exit code. Bogus: what if
4001 it returns something else? */
4003 retval = inferior_ptid; /* ? ? ? */
4007 int temp = wait (&wstat);
4009 /* FIXME: shouldn't I make sure I get the right
4010 event from the right process? If (for
4011 instance) I have killed an earlier inferior
4012 process but failed to clean up after it
4013 somehow, I could get its termination event
4016 /* If wait returns -1, that's what we return to GDB. */
4018 retval = pid_to_ptid (temp);
4023 printf_filtered (_("procfs: trapped on entry to "));
4024 proc_prettyprint_syscall (proc_what (pi), 0);
4025 printf_filtered ("\n");
4028 long i, nsysargs, *sysargs;
4030 if ((nsysargs = proc_nsysarg (pi)) > 0 &&
4031 (sysargs = proc_sysargs (pi)) != NULL)
4033 printf_filtered (_("%ld syscall arguments:\n"), nsysargs);
4034 for (i = 0; i < nsysargs; i++)
4035 printf_filtered ("#%ld: 0x%08lx\n",
4043 /* How to exit gracefully, returning "unknown event" */
4044 status->kind = TARGET_WAITKIND_SPURIOUS;
4045 return inferior_ptid;
4049 /* How to keep going without returning to wfi: */
4050 target_resume (ptid, 0, TARGET_SIGNAL_0);
4056 if (syscall_is_exec (pi, what))
4058 /* Hopefully this is our own "fork-child" execing
4059 the real child. Hoax this event into a trap, and
4060 GDB will see the child about to execute its start
4062 wstat = (SIGTRAP << 8) | 0177;
4065 else if (what == SYS_syssgi)
4067 /* see if we can break on dbx_link(). If yes, then
4068 we no longer need the SYS_syssgi notifications. */
4069 if (insert_dbx_link_breakpoint (pi))
4070 proc_trace_syscalls_1 (pi, SYS_syssgi, PR_SYSEXIT,
4073 /* This is an internal event and should be transparent
4074 to wfi, so resume the execution and wait again. See
4075 comment in procfs_init_inferior() for more details. */
4076 target_resume (ptid, 0, TARGET_SIGNAL_0);
4080 else if (syscall_is_lwp_create (pi, what))
4083 * This syscall is somewhat like fork/exec.
4084 * We will get the event twice: once for the parent LWP,
4085 * and once for the child. We should already know about
4086 * the parent LWP, but the child will be new to us. So,
4087 * whenever we get this event, if it represents a new
4088 * thread, simply add the thread to the list.
4091 /* If not in procinfo list, add it. */
4092 temp_tid = proc_get_current_thread (pi);
4093 if (!find_procinfo (pi->pid, temp_tid))
4094 create_procinfo (pi->pid, temp_tid);
4096 temp_ptid = MERGEPID (pi->pid, temp_tid);
4097 /* If not in GDB's thread list, add it. */
4098 if (!in_thread_list (temp_ptid))
4100 printf_filtered (_("[New %s]\n"),
4101 target_pid_to_str (temp_ptid));
4102 add_thread (temp_ptid);
4104 /* Return to WFI, but tell it to immediately resume. */
4105 status->kind = TARGET_WAITKIND_SPURIOUS;
4106 return inferior_ptid;
4108 else if (syscall_is_lwp_exit (pi, what))
4110 printf_filtered (_("[%s exited]\n"),
4111 target_pid_to_str (retval));
4112 delete_thread (retval);
4113 status->kind = TARGET_WAITKIND_SPURIOUS;
4118 /* FIXME: Do we need to handle SYS_sproc,
4119 SYS_fork, or SYS_vfork here? The old procfs
4120 seemed to use this event to handle threads on
4121 older (non-LWP) systems, where I'm assuming
4122 that threads were actually separate processes.
4123 Irix, maybe? Anyway, low priority for now. */
4127 printf_filtered (_("procfs: trapped on exit from "));
4128 proc_prettyprint_syscall (proc_what (pi), 0);
4129 printf_filtered ("\n");
4132 long i, nsysargs, *sysargs;
4134 if ((nsysargs = proc_nsysarg (pi)) > 0 &&
4135 (sysargs = proc_sysargs (pi)) != NULL)
4137 printf_filtered (_("%ld syscall arguments:\n"), nsysargs);
4138 for (i = 0; i < nsysargs; i++)
4139 printf_filtered ("#%ld: 0x%08lx\n",
4144 status->kind = TARGET_WAITKIND_SPURIOUS;
4145 return inferior_ptid;
4150 wstat = (SIGSTOP << 8) | 0177;
4155 printf_filtered (_("Retry #%d:\n"), retry);
4156 pi->status_valid = 0;
4161 /* If not in procinfo list, add it. */
4162 temp_tid = proc_get_current_thread (pi);
4163 if (!find_procinfo (pi->pid, temp_tid))
4164 create_procinfo (pi->pid, temp_tid);
4166 /* If not in GDB's thread list, add it. */
4167 temp_ptid = MERGEPID (pi->pid, temp_tid);
4168 if (!in_thread_list (temp_ptid))
4170 printf_filtered (_("[New %s]\n"),
4171 target_pid_to_str (temp_ptid));
4172 add_thread (temp_ptid);
4175 status->kind = TARGET_WAITKIND_STOPPED;
4176 status->value.sig = 0;
4181 wstat = (what << 8) | 0177;
4187 wstat = (SIGTRAP << 8) | 0177;
4192 wstat = (SIGTRAP << 8) | 0177;
4195 /* FIXME: use si_signo where possible. */
4197 #if (FLTILL != FLTPRIV) /* avoid "duplicate case" error */
4200 wstat = (SIGILL << 8) | 0177;
4203 #if (FLTTRACE != FLTBPT) /* avoid "duplicate case" error */
4206 /* If we hit our __dbx_link() internal breakpoint,
4207 then remove it. See comments in procfs_init_inferior()
4208 for more details. */
4209 if (dbx_link_bpt_addr != 0
4210 && dbx_link_bpt_addr == read_pc ())
4211 remove_dbx_link_breakpoint ();
4213 wstat = (SIGTRAP << 8) | 0177;
4217 #if (FLTBOUNDS != FLTSTACK) /* avoid "duplicate case" error */
4220 wstat = (SIGSEGV << 8) | 0177;
4224 #if (FLTFPE != FLTIOVF) /* avoid "duplicate case" error */
4227 wstat = (SIGFPE << 8) | 0177;
4229 case FLTPAGE: /* Recoverable page fault */
4230 default: /* FIXME: use si_signo if possible for fault */
4231 retval = pid_to_ptid (-1);
4232 printf_filtered ("procfs:%d -- ", __LINE__);
4233 printf_filtered (_("child stopped for unknown reason:\n"));
4234 proc_prettyprint_why (why, what, 1);
4235 error (_("... giving up..."));
4238 break; /* case PR_FAULTED: */
4239 default: /* switch (why) unmatched */
4240 printf_filtered ("procfs:%d -- ", __LINE__);
4241 printf_filtered (_("child stopped for unknown reason:\n"));
4242 proc_prettyprint_why (why, what, 1);
4243 error (_("... giving up..."));
4247 * Got this far without error:
4248 * If retval isn't in the threads database, add it.
4250 if (PIDGET (retval) > 0 &&
4251 !ptid_equal (retval, inferior_ptid) &&
4252 !in_thread_list (retval))
4255 * We have a new thread.
4256 * We need to add it both to GDB's list and to our own.
4257 * If we don't create a procinfo, resume may be unhappy
4260 printf_filtered (_("[New %s]\n"), target_pid_to_str (retval));
4261 add_thread (retval);
4262 if (find_procinfo (PIDGET (retval), TIDGET (retval)) == NULL)
4263 create_procinfo (PIDGET (retval), TIDGET (retval));
4265 /* In addition, it's possible that this is the first
4266 * new thread we've seen, in which case we may not
4267 * have created entries for inferior_ptid yet.
4269 if (TIDGET (inferior_ptid) != 0)
4271 if (!in_thread_list (inferior_ptid))
4272 add_thread (inferior_ptid);
4273 if (find_procinfo (PIDGET (inferior_ptid),
4274 TIDGET (inferior_ptid)) == NULL)
4275 create_procinfo (PIDGET (inferior_ptid),
4276 TIDGET (inferior_ptid));
4280 else /* flags do not indicate STOPPED */
4282 /* surely this can't happen... */
4283 printf_filtered ("procfs:%d -- process not stopped.\n",
4285 proc_prettyprint_flags (flags, 1);
4286 error (_("procfs: ...giving up..."));
4291 store_waitstatus (status, wstat);
4297 /* Perform a partial transfer to/from the specified object. For
4298 memory transfers, fall back to the old memory xfer functions. */
4301 procfs_xfer_partial (struct target_ops *ops, enum target_object object,
4302 const char *annex, void *readbuf,
4303 const void *writebuf, ULONGEST offset, LONGEST len)
4307 case TARGET_OBJECT_MEMORY:
4309 return (*ops->deprecated_xfer_memory) (offset, readbuf, len,
4310 0/*write*/, NULL, ops);
4312 return (*ops->deprecated_xfer_memory) (offset, writebuf, len,
4313 1/*write*/, NULL, ops);
4317 case TARGET_OBJECT_AUXV:
4318 return procfs_xfer_auxv (ops, object, annex, readbuf, writebuf,
4323 if (ops->beneath != NULL)
4324 return ops->beneath->to_xfer_partial (ops->beneath, object, annex,
4325 readbuf, writebuf, offset, len);
4331 /* Transfer LEN bytes between GDB address MYADDR and target address
4332 MEMADDR. If DOWRITE is non-zero, transfer them to the target,
4333 otherwise transfer them from the target. TARGET is unused.
4335 The return value is 0 if an error occurred or no bytes were
4336 transferred. Otherwise, it will be a positive value which
4337 indicates the number of bytes transferred between gdb and the
4338 target. (Note that the interface also makes provisions for
4339 negative values, but this capability isn't implemented here.) */
4342 procfs_xfer_memory (CORE_ADDR memaddr, char *myaddr, int len, int dowrite,
4343 struct mem_attrib *attrib, struct target_ops *target)
4348 /* Find procinfo for main process */
4349 pi = find_procinfo_or_die (PIDGET (inferior_ptid), 0);
4350 if (pi->as_fd == 0 &&
4351 open_procinfo_files (pi, FD_AS) == 0)
4353 proc_warn (pi, "xfer_memory, open_proc_files", __LINE__);
4357 if (lseek (pi->as_fd, (off_t) memaddr, SEEK_SET) == (off_t) memaddr)
4362 PROCFS_NOTE ("write memory: ");
4364 PROCFS_NOTE ("write memory: \n");
4366 nbytes = write (pi->as_fd, myaddr, len);
4370 PROCFS_NOTE ("read memory: \n");
4371 nbytes = read (pi->as_fd, myaddr, len);
4382 * Function: invalidate_cache
4384 * Called by target_resume before making child runnable.
4385 * Mark cached registers and status's invalid.
4386 * If there are "dirty" caches that need to be written back
4387 * to the child process, do that.
4389 * File descriptors are also cached.
4390 * As they are a limited resource, we cannot hold onto them indefinitely.
4391 * However, as they are expensive to open, we don't want to throw them
4392 * away indescriminately either. As a compromise, we will keep the
4393 * file descriptors for the parent process, but discard any file
4394 * descriptors we may have accumulated for the threads.
4397 * As this function is called by iterate_over_threads, it always
4398 * returns zero (so that iterate_over_threads will keep iterating).
4403 invalidate_cache (procinfo *parent, procinfo *pi, void *ptr)
4406 * About to run the child; invalidate caches and do any other cleanup.
4410 if (pi->gregs_dirty)
4411 if (parent == NULL ||
4412 proc_get_current_thread (parent) != pi->tid)
4413 if (!proc_set_gregs (pi)) /* flush gregs cache */
4414 proc_warn (pi, "target_resume, set_gregs",
4416 if (gdbarch_fp0_regnum (current_gdbarch) >= 0)
4417 if (pi->fpregs_dirty)
4418 if (parent == NULL ||
4419 proc_get_current_thread (parent) != pi->tid)
4420 if (!proc_set_fpregs (pi)) /* flush fpregs cache */
4421 proc_warn (pi, "target_resume, set_fpregs",
4427 /* The presence of a parent indicates that this is an LWP.
4428 Close any file descriptors that it might have open.
4429 We don't do this to the master (parent) procinfo. */
4431 close_procinfo_files (pi);
4433 pi->gregs_valid = 0;
4434 pi->fpregs_valid = 0;
4436 pi->gregs_dirty = 0;
4437 pi->fpregs_dirty = 0;
4439 pi->status_valid = 0;
4440 pi->threads_valid = 0;
4447 * Function: make_signal_thread_runnable
4449 * A callback function for iterate_over_threads.
4450 * Find the asynchronous signal thread, and make it runnable.
4451 * See if that helps matters any.
4455 make_signal_thread_runnable (procinfo *process, procinfo *pi, void *ptr)
4458 if (proc_flags (pi) & PR_ASLWP)
4460 if (!proc_run_process (pi, 0, -1))
4461 proc_error (pi, "make_signal_thread_runnable", __LINE__);
4470 * Function: target_resume
4472 * Make the child process runnable. Normally we will then call
4473 * procfs_wait and wait for it to stop again (unles gdb is async).
4476 * step: if true, then arrange for the child to stop again
4477 * after executing a single instruction.
4478 * signo: if zero, then cancel any pending signal.
4479 * If non-zero, then arrange for the indicated signal
4480 * to be delivered to the child when it runs.
4481 * pid: if -1, then allow any child thread to run.
4482 * if non-zero, then allow only the indicated thread to run.
4483 ******* (not implemented yet)
4487 procfs_resume (ptid_t ptid, int step, enum target_signal signo)
4489 procinfo *pi, *thread;
4493 prrun.prflags |= PRSVADDR;
4494 prrun.pr_vaddr = $PC; set resume address
4495 prrun.prflags |= PRSTRACE; trace signals in pr_trace (all)
4496 prrun.prflags |= PRSFAULT; trace faults in pr_fault (all but PAGE)
4497 prrun.prflags |= PRCFAULT; clear current fault.
4499 PRSTRACE and PRSFAULT can be done by other means
4500 (proc_trace_signals, proc_trace_faults)
4501 PRSVADDR is unnecessary.
4502 PRCFAULT may be replaced by a PIOCCFAULT call (proc_clear_current_fault)
4503 This basically leaves PRSTEP and PRCSIG.
4504 PRCSIG is like PIOCSSIG (proc_clear_current_signal).
4505 So basically PR_STEP is the sole argument that must be passed
4506 to proc_run_process (for use in the prrun struct by ioctl). */
4508 /* Find procinfo for main process */
4509 pi = find_procinfo_or_die (PIDGET (inferior_ptid), 0);
4511 /* First cut: ignore pid argument */
4514 /* Convert signal to host numbering. */
4516 (signo == TARGET_SIGNAL_STOP && pi->ignore_next_sigstop))
4519 native_signo = target_signal_to_host (signo);
4521 pi->ignore_next_sigstop = 0;
4523 /* Running the process voids all cached registers and status. */
4524 /* Void the threads' caches first */
4525 proc_iterate_over_threads (pi, invalidate_cache, NULL);
4526 /* Void the process procinfo's caches. */
4527 invalidate_cache (NULL, pi, NULL);
4529 if (PIDGET (ptid) != -1)
4531 /* Resume a specific thread, presumably suppressing the others. */
4532 thread = find_procinfo (PIDGET (ptid), TIDGET (ptid));
4535 if (thread->tid != 0)
4537 /* We're to resume a specific thread, and not the others.
4538 * Set the child process's PR_ASYNC flag.
4541 if (!proc_set_async (pi))
4542 proc_error (pi, "target_resume, set_async", __LINE__);
4545 proc_iterate_over_threads (pi,
4546 make_signal_thread_runnable,
4549 pi = thread; /* substitute the thread's procinfo for run */
4554 if (!proc_run_process (pi, step, native_signo))
4557 warning (_("resume: target already running. Pretend to resume, and hope for the best!"));
4559 proc_error (pi, "target_resume", __LINE__);
4564 * Function: register_gdb_signals
4566 * Traverse the list of signals that GDB knows about
4567 * (see "handle" command), and arrange for the target
4568 * to be stopped or not, according to these settings.
4570 * Returns non-zero for success, zero for failure.
4574 register_gdb_signals (procinfo *pi, gdb_sigset_t *signals)
4578 for (signo = 0; signo < NSIG; signo ++)
4579 if (signal_stop_state (target_signal_from_host (signo)) == 0 &&
4580 signal_print_state (target_signal_from_host (signo)) == 0 &&
4581 signal_pass_state (target_signal_from_host (signo)) == 1)
4582 prdelset (signals, signo);
4584 praddset (signals, signo);
4586 return proc_set_traced_signals (pi, signals);
4590 * Function: target_notice_signals
4592 * Set up to trace signals in the child process.
4596 procfs_notice_signals (ptid_t ptid)
4598 gdb_sigset_t signals;
4599 procinfo *pi = find_procinfo_or_die (PIDGET (ptid), 0);
4601 if (proc_get_traced_signals (pi, &signals) &&
4602 register_gdb_signals (pi, &signals))
4605 proc_error (pi, "notice_signals", __LINE__);
4609 * Function: target_files_info
4611 * Print status information about the child process.
4615 procfs_files_info (struct target_ops *ignore)
4617 printf_filtered (_("\tUsing the running image of %s %s via /proc.\n"),
4618 attach_flag? "attached": "child",
4619 target_pid_to_str (inferior_ptid));
4623 * Function: target_open
4625 * A dummy: you don't open procfs.
4629 procfs_open (char *args, int from_tty)
4631 error (_("Use the \"run\" command to start a Unix child process."));
4635 * Function: target_can_run
4637 * This tells GDB that this target vector can be invoked
4638 * for "run" or "attach".
4641 int procfs_suppress_run = 0; /* Non-zero if procfs should pretend not to
4642 be a runnable target. Used by targets
4643 that can sit atop procfs, such as solaris
4648 procfs_can_run (void)
4650 /* This variable is controlled by modules that sit atop procfs that
4651 may layer their own process structure atop that provided here.
4652 sol-thread.c does this because of the Solaris two-level thread
4655 /* NOTE: possibly obsolete -- use the thread_stratum approach instead. */
4657 return !procfs_suppress_run;
4661 * Function: target_stop
4663 * Stop the child process asynchronously, as when the
4664 * gdb user types control-c or presses a "stop" button.
4666 * Works by sending kill(SIGINT) to the child's process group.
4672 kill (-inferior_process_group, SIGINT);
4676 * Function: unconditionally_kill_inferior
4678 * Make it die. Wait for it to die. Clean up after it.
4679 * Note: this should only be applied to the real process,
4680 * not to an LWP, because of the check for parent-process.
4681 * If we need this to work for an LWP, it needs some more logic.
4685 unconditionally_kill_inferior (procinfo *pi)
4689 parent_pid = proc_parent_pid (pi);
4690 #ifdef PROCFS_NEED_CLEAR_CURSIG_FOR_KILL
4691 /* FIXME: use access functions */
4692 /* Alpha OSF/1-3.x procfs needs a clear of the current signal
4693 before the PIOCKILL, otherwise it might generate a corrupted core
4694 file for the inferior. */
4695 if (ioctl (pi->ctl_fd, PIOCSSIG, NULL) < 0)
4697 printf_filtered ("unconditionally_kill: SSIG failed!\n");
4700 #ifdef PROCFS_NEED_PIOCSSIG_FOR_KILL
4701 /* Alpha OSF/1-2.x procfs needs a PIOCSSIG call with a SIGKILL signal
4702 to kill the inferior, otherwise it might remain stopped with a
4704 We do not check the result of the PIOCSSIG, the inferior might have
4707 gdb_siginfo_t newsiginfo;
4709 memset ((char *) &newsiginfo, 0, sizeof (newsiginfo));
4710 newsiginfo.si_signo = SIGKILL;
4711 newsiginfo.si_code = 0;
4712 newsiginfo.si_errno = 0;
4713 newsiginfo.si_pid = getpid ();
4714 newsiginfo.si_uid = getuid ();
4715 /* FIXME: use proc_set_current_signal */
4716 ioctl (pi->ctl_fd, PIOCSSIG, &newsiginfo);
4718 #else /* PROCFS_NEED_PIOCSSIG_FOR_KILL */
4719 if (!proc_kill (pi, SIGKILL))
4720 proc_error (pi, "unconditionally_kill, proc_kill", __LINE__);
4721 #endif /* PROCFS_NEED_PIOCSSIG_FOR_KILL */
4722 destroy_procinfo (pi);
4724 /* If pi is GDB's child, wait for it to die. */
4725 if (parent_pid == getpid ())
4726 /* FIXME: should we use waitpid to make sure we get the right event?
4727 Should we check the returned event? */
4732 ret = waitpid (pi->pid, &status, 0);
4740 * Function: target_kill_inferior
4742 * We're done debugging it, and we want it to go away.
4743 * Then we want GDB to forget all about it.
4747 procfs_kill_inferior (void)
4749 if (!ptid_equal (inferior_ptid, null_ptid)) /* ? */
4751 /* Find procinfo for main process */
4752 procinfo *pi = find_procinfo (PIDGET (inferior_ptid), 0);
4755 unconditionally_kill_inferior (pi);
4756 target_mourn_inferior ();
4761 * Function: target_mourn_inferior
4763 * Forget we ever debugged this thing!
4767 procfs_mourn_inferior (void)
4771 if (!ptid_equal (inferior_ptid, null_ptid))
4773 /* Find procinfo for main process */
4774 pi = find_procinfo (PIDGET (inferior_ptid), 0);
4776 destroy_procinfo (pi);
4778 unpush_target (&procfs_ops);
4780 if (dbx_link_bpt != NULL)
4782 deprecated_remove_raw_breakpoint (dbx_link_bpt);
4783 dbx_link_bpt_addr = 0;
4784 dbx_link_bpt = NULL;
4787 generic_mourn_inferior ();
4791 * Function: init_inferior
4793 * When GDB forks to create a runnable inferior process,
4794 * this function is called on the parent side of the fork.
4795 * It's job is to do whatever is necessary to make the child
4796 * ready to be debugged, and then wait for the child to synchronize.
4800 procfs_init_inferior (int pid)
4803 gdb_sigset_t signals;
4806 /* This routine called on the parent side (GDB side)
4807 after GDB forks the inferior. */
4809 push_target (&procfs_ops);
4811 if ((pi = create_procinfo (pid, 0)) == NULL)
4812 perror ("procfs: out of memory in 'init_inferior'");
4814 if (!open_procinfo_files (pi, FD_CTL))
4815 proc_error (pi, "init_inferior, open_proc_files", __LINE__);
4819 open_procinfo_files // done
4822 procfs_notice_signals
4829 /* If not stopped yet, wait for it to stop. */
4830 if (!(proc_flags (pi) & PR_STOPPED) &&
4831 !(proc_wait_for_stop (pi)))
4832 dead_procinfo (pi, "init_inferior: wait_for_stop failed", KILL);
4834 /* Save some of the /proc state to be restored if we detach. */
4835 /* FIXME: Why? In case another debugger was debugging it?
4836 We're it's parent, for Ghu's sake! */
4837 if (!proc_get_traced_signals (pi, &pi->saved_sigset))
4838 proc_error (pi, "init_inferior, get_traced_signals", __LINE__);
4839 if (!proc_get_held_signals (pi, &pi->saved_sighold))
4840 proc_error (pi, "init_inferior, get_held_signals", __LINE__);
4841 if (!proc_get_traced_faults (pi, &pi->saved_fltset))
4842 proc_error (pi, "init_inferior, get_traced_faults", __LINE__);
4843 if (!proc_get_traced_sysentry (pi, pi->saved_entryset))
4844 proc_error (pi, "init_inferior, get_traced_sysentry", __LINE__);
4845 if (!proc_get_traced_sysexit (pi, pi->saved_exitset))
4846 proc_error (pi, "init_inferior, get_traced_sysexit", __LINE__);
4848 /* Register to trace selected signals in the child. */
4849 prfillset (&signals);
4850 if (!register_gdb_signals (pi, &signals))
4851 proc_error (pi, "init_inferior, register_signals", __LINE__);
4853 if ((fail = procfs_debug_inferior (pi)) != 0)
4854 proc_error (pi, "init_inferior (procfs_debug_inferior)", fail);
4856 /* FIXME: logically, we should really be turning OFF run-on-last-close,
4857 and possibly even turning ON kill-on-last-close at this point. But
4858 I can't make that change without careful testing which I don't have
4859 time to do right now... */
4860 /* Turn on run-on-last-close flag so that the child
4861 will die if GDB goes away for some reason. */
4862 if (!proc_set_run_on_last_close (pi))
4863 proc_error (pi, "init_inferior, set_RLC", __LINE__);
4865 /* The 'process ID' we return to GDB is composed of
4866 the actual process ID plus the lwp ID. */
4867 inferior_ptid = MERGEPID (pi->pid, proc_get_current_thread (pi));
4869 /* Typically two, one trap to exec the shell, one to exec the
4870 program being debugged. Defined by "inferior.h". */
4871 startup_inferior (START_INFERIOR_TRAPS_EXPECTED);
4874 /* On mips-irix, we need to stop the inferior early enough during
4875 the startup phase in order to be able to load the shared library
4876 symbols and insert the breakpoints that are located in these shared
4877 libraries. Stopping at the program entry point is not good enough
4878 because the -init code is executed before the execution reaches
4881 So what we need to do is to insert a breakpoint in the runtime
4882 loader (rld), more precisely in __dbx_link(). This procedure is
4883 called by rld once all shared libraries have been mapped, but before
4884 the -init code is executed. Unfortuantely, this is not straightforward,
4885 as rld is not part of the executable we are running, and thus we need
4886 the inferior to run until rld itself has been mapped in memory.
4888 For this, we trace all syssgi() syscall exit events. Each time
4889 we detect such an event, we iterate over each text memory maps,
4890 get its associated fd, and scan the symbol table for __dbx_link().
4891 When found, we know that rld has been mapped, and that we can insert
4892 the breakpoint at the symbol address. Once the dbx_link() breakpoint
4893 has been inserted, the syssgi() notifications are no longer necessary,
4894 so they should be canceled. */
4895 proc_trace_syscalls_1 (pi, SYS_syssgi, PR_SYSEXIT, FLAG_SET, 0);
4900 * Function: set_exec_trap
4902 * When GDB forks to create a new process, this function is called
4903 * on the child side of the fork before GDB exec's the user program.
4904 * Its job is to make the child minimally debuggable, so that the
4905 * parent GDB process can connect to the child and take over.
4906 * This function should do only the minimum to make that possible,
4907 * and to synchronize with the parent process. The parent process
4908 * should take care of the details.
4912 procfs_set_exec_trap (void)
4914 /* This routine called on the child side (inferior side)
4915 after GDB forks the inferior. It must use only local variables,
4916 because it may be sharing data space with its parent. */
4921 if ((pi = create_procinfo (getpid (), 0)) == NULL)
4922 perror_with_name (_("procfs: create_procinfo failed in child."));
4924 if (open_procinfo_files (pi, FD_CTL) == 0)
4926 proc_warn (pi, "set_exec_trap, open_proc_files", __LINE__);
4927 gdb_flush (gdb_stderr);
4928 /* no need to call "dead_procinfo", because we're going to exit. */
4932 #ifdef PRFS_STOPEXEC /* defined on OSF */
4933 /* OSF method for tracing exec syscalls. Quoting:
4934 Under Alpha OSF/1 we have to use a PIOCSSPCACT ioctl to trace
4935 exits from exec system calls because of the user level loader. */
4936 /* FIXME: make nice and maybe move into an access function. */
4940 if (ioctl (pi->ctl_fd, PIOCGSPCACT, &prfs_flags) < 0)
4942 proc_warn (pi, "set_exec_trap (PIOCGSPCACT)", __LINE__);
4943 gdb_flush (gdb_stderr);
4946 prfs_flags |= PRFS_STOPEXEC;
4948 if (ioctl (pi->ctl_fd, PIOCSSPCACT, &prfs_flags) < 0)
4950 proc_warn (pi, "set_exec_trap (PIOCSSPCACT)", __LINE__);
4951 gdb_flush (gdb_stderr);
4955 #else /* not PRFS_STOPEXEC */
4956 /* Everyone else's (except OSF) method for tracing exec syscalls */
4958 Not all systems with /proc have all the exec* syscalls with the same
4959 names. On the SGI, for example, there is no SYS_exec, but there
4960 *is* a SYS_execv. So, we try to account for that. */
4962 exitset = sysset_t_alloc (pi);
4963 gdb_premptysysset (exitset);
4965 gdb_praddsysset (exitset, SYS_exec);
4968 gdb_praddsysset (exitset, SYS_execve);
4971 gdb_praddsysset (exitset, SYS_execv);
4973 #ifdef DYNAMIC_SYSCALLS
4975 int callnum = find_syscall (pi, "execve");
4978 gdb_praddsysset (exitset, callnum);
4980 callnum = find_syscall (pi, "ra_execve");
4982 gdb_praddsysset (exitset, callnum);
4984 #endif /* DYNAMIC_SYSCALLS */
4986 if (!proc_set_traced_sysexit (pi, exitset))
4988 proc_warn (pi, "set_exec_trap, set_traced_sysexit", __LINE__);
4989 gdb_flush (gdb_stderr);
4992 #endif /* PRFS_STOPEXEC */
4994 /* FIXME: should this be done in the parent instead? */
4995 /* Turn off inherit on fork flag so that all grand-children
4996 of gdb start with tracing flags cleared. */
4997 if (!proc_unset_inherit_on_fork (pi))
4998 proc_warn (pi, "set_exec_trap, unset_inherit", __LINE__);
5000 /* Turn off run on last close flag, so that the child process
5001 cannot run away just because we close our handle on it.
5002 We want it to wait for the parent to attach. */
5003 if (!proc_unset_run_on_last_close (pi))
5004 proc_warn (pi, "set_exec_trap, unset_RLC", __LINE__);
5006 /* FIXME: No need to destroy the procinfo --
5007 we have our own address space, and we're about to do an exec! */
5008 /*destroy_procinfo (pi);*/
5012 * Function: create_inferior
5014 * This function is called BEFORE gdb forks the inferior process.
5015 * Its only real responsibility is to set things up for the fork,
5016 * and tell GDB which two functions to call after the fork (one
5017 * for the parent, and one for the child).
5019 * This function does a complicated search for a unix shell program,
5020 * which it then uses to parse arguments and environment variables
5021 * to be sent to the child. I wonder whether this code could not
5022 * be abstracted out and shared with other unix targets such as
5027 procfs_create_inferior (char *exec_file, char *allargs, char **env,
5030 char *shell_file = getenv ("SHELL");
5032 if (shell_file != NULL && strchr (shell_file, '/') == NULL)
5035 /* We will be looking down the PATH to find shell_file. If we
5036 just do this the normal way (via execlp, which operates by
5037 attempting an exec for each element of the PATH until it
5038 finds one which succeeds), then there will be an exec for
5039 each failed attempt, each of which will cause a PR_SYSEXIT
5040 stop, and we won't know how to distinguish the PR_SYSEXIT's
5041 for these failed execs with the ones for successful execs
5042 (whether the exec has succeeded is stored at that time in the
5043 carry bit or some such architecture-specific and
5044 non-ABI-specified place).
5046 So I can't think of anything better than to search the PATH
5047 now. This has several disadvantages: (1) There is a race
5048 condition; if we find a file now and it is deleted before we
5049 exec it, we lose, even if the deletion leaves a valid file
5050 further down in the PATH, (2) there is no way to know exactly
5051 what an executable (in the sense of "capable of being
5052 exec'd") file is. Using access() loses because it may lose
5053 if the caller is the superuser; failing to use it loses if
5054 there are ACLs or some such. */
5058 /* FIXME-maybe: might want "set path" command so user can change what
5059 path is used from within GDB. */
5060 char *path = getenv ("PATH");
5062 struct stat statbuf;
5065 path = "/bin:/usr/bin";
5067 tryname = alloca (strlen (path) + strlen (shell_file) + 2);
5068 for (p = path; p != NULL; p = p1 ? p1 + 1: NULL)
5070 p1 = strchr (p, ':');
5075 strncpy (tryname, p, len);
5076 tryname[len] = '\0';
5077 strcat (tryname, "/");
5078 strcat (tryname, shell_file);
5079 if (access (tryname, X_OK) < 0)
5081 if (stat (tryname, &statbuf) < 0)
5083 if (!S_ISREG (statbuf.st_mode))
5084 /* We certainly need to reject directories. I'm not quite
5085 as sure about FIFOs, sockets, etc., but I kind of doubt
5086 that people want to exec() these things. */
5091 /* Not found. This must be an error rather than merely passing
5092 the file to execlp(), because execlp() would try all the
5093 exec()s, causing GDB to get confused. */
5094 error (_("procfs:%d -- Can't find shell %s in PATH"),
5095 __LINE__, shell_file);
5097 shell_file = tryname;
5100 fork_inferior (exec_file, allargs, env, procfs_set_exec_trap,
5101 procfs_init_inferior, NULL, shell_file);
5104 /* Make sure to cancel the syssgi() syscall-exit notifications.
5105 They should normally have been removed by now, but they may still
5106 be activated if the inferior doesn't use shared libraries, or if
5107 we didn't locate __dbx_link, or if we never stopped in __dbx_link.
5108 See procfs_init_inferior() for more details. */
5109 proc_trace_syscalls_1 (find_procinfo_or_die (PIDGET (inferior_ptid), 0),
5110 SYS_syssgi, PR_SYSEXIT, FLAG_RESET, 0);
5115 * Function: notice_thread
5117 * Callback for find_new_threads.
5118 * Calls "add_thread".
5122 procfs_notice_thread (procinfo *pi, procinfo *thread, void *ptr)
5124 ptid_t gdb_threadid = MERGEPID (pi->pid, thread->tid);
5126 if (!in_thread_list (gdb_threadid))
5127 add_thread (gdb_threadid);
5133 * Function: target_find_new_threads
5135 * Query all the threads that the target knows about,
5136 * and give them back to GDB to add to its list.
5140 procfs_find_new_threads (void)
5144 /* Find procinfo for main process */
5145 pi = find_procinfo_or_die (PIDGET (inferior_ptid), 0);
5146 proc_update_threads (pi);
5147 proc_iterate_over_threads (pi, procfs_notice_thread, NULL);
5151 * Function: target_thread_alive
5153 * Return true if the thread is still 'alive'.
5155 * This guy doesn't really seem to be doing his job.
5156 * Got to investigate how to tell when a thread is really gone.
5160 procfs_thread_alive (ptid_t ptid)
5165 proc = PIDGET (ptid);
5166 thread = TIDGET (ptid);
5167 /* If I don't know it, it ain't alive! */
5168 if ((pi = find_procinfo (proc, thread)) == NULL)
5171 /* If I can't get its status, it ain't alive!
5172 What's more, I need to forget about it! */
5173 if (!proc_get_status (pi))
5175 destroy_procinfo (pi);
5178 /* I couldn't have got its status if it weren't alive, so it's alive. */
5182 /* Convert PTID to a string. Returns the string in a static buffer. */
5185 procfs_pid_to_str (ptid_t ptid)
5187 static char buf[80];
5189 if (TIDGET (ptid) == 0)
5190 sprintf (buf, "process %d", PIDGET (ptid));
5192 sprintf (buf, "LWP %ld", TIDGET (ptid));
5198 * Function: procfs_set_watchpoint
5199 * Insert a watchpoint
5203 procfs_set_watchpoint (ptid_t ptid, CORE_ADDR addr, int len, int rwflag,
5211 pi = find_procinfo_or_die (PIDGET (ptid) == -1 ?
5212 PIDGET (inferior_ptid) : PIDGET (ptid), 0);
5214 /* Translate from GDB's flags to /proc's */
5215 if (len > 0) /* len == 0 means delete watchpoint */
5217 switch (rwflag) { /* FIXME: need an enum! */
5218 case hw_write: /* default watchpoint (write) */
5219 pflags = WRITE_WATCHFLAG;
5221 case hw_read: /* read watchpoint */
5222 pflags = READ_WATCHFLAG;
5224 case hw_access: /* access watchpoint */
5225 pflags = READ_WATCHFLAG | WRITE_WATCHFLAG;
5227 case hw_execute: /* execution HW breakpoint */
5228 pflags = EXEC_WATCHFLAG;
5230 default: /* Something weird. Return error. */
5233 if (after) /* Stop after r/w access is completed. */
5234 pflags |= AFTER_WATCHFLAG;
5237 if (!proc_set_watchpoint (pi, addr, len, pflags))
5239 if (errno == E2BIG) /* Typical error for no resources */
5240 return -1; /* fail */
5241 /* GDB may try to remove the same watchpoint twice.
5242 If a remove request returns no match, don't error. */
5243 if (errno == ESRCH && len == 0)
5244 return 0; /* ignore */
5245 proc_error (pi, "set_watchpoint", __LINE__);
5248 #endif /* UNIXWARE */
5252 /* Return non-zero if we can set a hardware watchpoint of type TYPE. TYPE
5253 is one of bp_hardware_watchpoint, bp_read_watchpoint, bp_write_watchpoint,
5254 or bp_hardware_watchpoint. CNT is the number of watchpoints used so
5257 Note: procfs_can_use_hw_breakpoint() is not yet used by all
5258 procfs.c targets due to the fact that some of them still define
5259 TARGET_CAN_USE_HARDWARE_WATCHPOINT. */
5262 procfs_can_use_hw_breakpoint (int type, int cnt, int othertype)
5264 #ifndef TARGET_HAS_HARDWARE_WATCHPOINTS
5267 /* Due to the way that proc_set_watchpoint() is implemented, host
5268 and target pointers must be of the same size. If they are not,
5269 we can't use hardware watchpoints. This limitation is due to the
5270 fact that proc_set_watchpoint() calls
5271 procfs_address_to_host_pointer(); a close inspection of
5272 procfs_address_to_host_pointer will reveal that an internal error
5273 will be generated when the host and target pointer sizes are
5275 if (sizeof (void *) != TYPE_LENGTH (builtin_type_void_data_ptr))
5278 /* Other tests here??? */
5285 * Function: stopped_by_watchpoint
5287 * Returns non-zero if process is stopped on a hardware watchpoint fault,
5288 * else returns zero.
5292 procfs_stopped_by_watchpoint (ptid_t ptid)
5296 pi = find_procinfo_or_die (PIDGET (ptid) == -1 ?
5297 PIDGET (inferior_ptid) : PIDGET (ptid), 0);
5299 if (!pi) /* If no process, then not stopped by watchpoint! */
5302 if (proc_flags (pi) & (PR_STOPPED | PR_ISTOP))
5304 if (proc_why (pi) == PR_FAULTED)
5307 if (proc_what (pi) == FLTWATCH)
5311 if (proc_what (pi) == FLTKWATCH)
5319 #ifdef TM_I386SOL2_H
5321 * Function: procfs_find_LDT_entry
5324 * ptid_t ptid; // The GDB-style pid-plus-LWP.
5327 * pointer to the corresponding LDT entry.
5331 procfs_find_LDT_entry (ptid_t ptid)
5333 gdb_gregset_t *gregs;
5337 /* Find procinfo for the lwp. */
5338 if ((pi = find_procinfo (PIDGET (ptid), TIDGET (ptid))) == NULL)
5340 warning (_("procfs_find_LDT_entry: could not find procinfo for %d:%d."),
5341 PIDGET (ptid), TIDGET (ptid));
5344 /* get its general registers. */
5345 if ((gregs = proc_get_gregs (pi)) == NULL)
5347 warning (_("procfs_find_LDT_entry: could not read gregs for %d:%d."),
5348 PIDGET (ptid), TIDGET (ptid));
5351 /* Now extract the GS register's lower 16 bits. */
5352 key = (*gregs)[GS] & 0xffff;
5354 /* Find the matching entry and return it. */
5355 return proc_get_LDT_entry (pi, key);
5357 #endif /* TM_I386SOL2_H */
5360 * Memory Mappings Functions:
5364 * Function: iterate_over_mappings
5366 * Call a callback function once for each mapping, passing it the mapping,
5367 * an optional secondary callback function, and some optional opaque data.
5368 * Quit and return the first non-zero value returned from the callback.
5371 * pi -- procinfo struct for the process to be mapped.
5372 * func -- callback function to be called by this iterator.
5373 * data -- optional opaque data to be passed to the callback function.
5374 * child_func -- optional secondary function pointer to be passed
5375 * to the child function.
5377 * Return: First non-zero return value from the callback function,
5382 iterate_over_mappings (procinfo *pi, int (*child_func) (), void *data,
5383 int (*func) (struct prmap *map,
5384 int (*child_func) (),
5387 char pathname[MAX_PROC_NAME_SIZE];
5388 struct prmap *prmaps;
5389 struct prmap *prmap;
5397 /* Get the number of mappings, allocate space,
5398 and read the mappings into prmaps. */
5401 sprintf (pathname, "/proc/%d/map", pi->pid);
5402 if ((map_fd = open (pathname, O_RDONLY)) < 0)
5403 proc_error (pi, "iterate_over_mappings (open)", __LINE__);
5405 /* Make sure it gets closed again. */
5406 make_cleanup_close (map_fd);
5408 /* Use stat to determine the file size, and compute
5409 the number of prmap_t objects it contains. */
5410 if (fstat (map_fd, &sbuf) != 0)
5411 proc_error (pi, "iterate_over_mappings (fstat)", __LINE__);
5413 nmap = sbuf.st_size / sizeof (prmap_t);
5414 prmaps = (struct prmap *) alloca ((nmap + 1) * sizeof (*prmaps));
5415 if (read (map_fd, (char *) prmaps, nmap * sizeof (*prmaps))
5416 != (nmap * sizeof (*prmaps)))
5417 proc_error (pi, "iterate_over_mappings (read)", __LINE__);
5419 /* Use ioctl command PIOCNMAP to get number of mappings. */
5420 if (ioctl (pi->ctl_fd, PIOCNMAP, &nmap) != 0)
5421 proc_error (pi, "iterate_over_mappings (PIOCNMAP)", __LINE__);
5423 prmaps = (struct prmap *) alloca ((nmap + 1) * sizeof (*prmaps));
5424 if (ioctl (pi->ctl_fd, PIOCMAP, prmaps) != 0)
5425 proc_error (pi, "iterate_over_mappings (PIOCMAP)", __LINE__);
5428 for (prmap = prmaps; nmap > 0; prmap++, nmap--)
5429 if ((funcstat = (*func) (prmap, child_func, data)) != 0)
5436 * Function: solib_mappings_callback
5438 * Calls the supplied callback function once for each mapped address
5439 * space in the process. The callback function receives an open
5440 * file descriptor for the file corresponding to that mapped
5441 * address space (if there is one), and the base address of the
5442 * mapped space. Quit when the callback function returns a
5443 * nonzero value, or at teh end of the mappings.
5445 * Returns: the first non-zero return value of the callback function,
5449 int solib_mappings_callback (struct prmap *map,
5450 int (*func) (int, CORE_ADDR),
5453 procinfo *pi = data;
5457 char name[MAX_PROC_NAME_SIZE + sizeof (map->pr_mapname)];
5459 if (map->pr_vaddr == 0 && map->pr_size == 0)
5460 return -1; /* sanity */
5462 if (map->pr_mapname[0] == 0)
5464 fd = -1; /* no map file */
5468 sprintf (name, "/proc/%d/object/%s", pi->pid, map->pr_mapname);
5469 /* Note: caller's responsibility to close this fd! */
5470 fd = open_with_retry (name, O_RDONLY);
5471 /* Note: we don't test the above call for failure;
5472 we just pass the FD on as given. Sometimes there is
5473 no file, so the open may return failure, but that's
5477 fd = ioctl (pi->ctl_fd, PIOCOPENM, &map->pr_vaddr);
5478 /* Note: we don't test the above call for failure;
5479 we just pass the FD on as given. Sometimes there is
5480 no file, so the ioctl may return failure, but that's
5483 return (*func) (fd, (CORE_ADDR) map->pr_vaddr);
5487 * Function: proc_iterate_over_mappings
5489 * Uses the unified "iterate_over_mappings" function
5490 * to implement the exported interface to solib-svr4.c.
5492 * Given a pointer to a function, call that function once for every
5493 * mapped address space in the process. The callback function
5494 * receives an open file descriptor for the file corresponding to
5495 * that mapped address space (if there is one), and the base address
5496 * of the mapped space. Quit when the callback function returns a
5497 * nonzero value, or at teh end of the mappings.
5499 * Returns: the first non-zero return value of the callback function,
5504 proc_iterate_over_mappings (int (*func) (int, CORE_ADDR))
5506 procinfo *pi = find_procinfo_or_die (PIDGET (inferior_ptid), 0);
5508 return iterate_over_mappings (pi, func, pi, solib_mappings_callback);
5512 * Function: find_memory_regions_callback
5514 * Implements the to_find_memory_regions method.
5515 * Calls an external function for each memory region.
5516 * External function will have the signiture:
5518 * int callback (CORE_ADDR vaddr,
5519 * unsigned long size,
5520 * int read, int write, int execute,
5523 * Returns the integer value returned by the callback.
5527 find_memory_regions_callback (struct prmap *map,
5528 int (*func) (CORE_ADDR,
5534 return (*func) ((CORE_ADDR) map->pr_vaddr,
5536 (map->pr_mflags & MA_READ) != 0,
5537 (map->pr_mflags & MA_WRITE) != 0,
5538 (map->pr_mflags & MA_EXEC) != 0,
5543 * Function: proc_find_memory_regions
5545 * External interface. Calls a callback function once for each
5546 * mapped memory region in the child process, passing as arguments
5547 * CORE_ADDR virtual_address,
5548 * unsigned long size,
5549 * int read, TRUE if region is readable by the child
5550 * int write, TRUE if region is writable by the child
5551 * int execute TRUE if region is executable by the child.
5553 * Stops iterating and returns the first non-zero value
5554 * returned by the callback.
5558 proc_find_memory_regions (int (*func) (CORE_ADDR,
5564 procinfo *pi = find_procinfo_or_die (PIDGET (inferior_ptid), 0);
5566 return iterate_over_mappings (pi, func, data,
5567 find_memory_regions_callback);
5570 /* Remove the breakpoint that we inserted in __dbx_link().
5571 Does nothing if the breakpoint hasn't been inserted or has already
5575 remove_dbx_link_breakpoint (void)
5577 if (dbx_link_bpt_addr == 0)
5580 if (deprecated_remove_raw_breakpoint (dbx_link_bpt) != 0)
5581 warning (_("Unable to remove __dbx_link breakpoint."));
5583 dbx_link_bpt_addr = 0;
5584 dbx_link_bpt = NULL;
5587 /* Return the address of the __dbx_link() function in the file
5588 refernced by ABFD by scanning its symbol table. Return 0 if
5589 the symbol was not found. */
5592 dbx_link_addr (bfd *abfd)
5594 long storage_needed;
5595 asymbol **symbol_table;
5596 long number_of_symbols;
5599 storage_needed = bfd_get_symtab_upper_bound (abfd);
5600 if (storage_needed <= 0)
5603 symbol_table = (asymbol **) xmalloc (storage_needed);
5604 make_cleanup (xfree, symbol_table);
5606 number_of_symbols = bfd_canonicalize_symtab (abfd, symbol_table);
5608 for (i = 0; i < number_of_symbols; i++)
5610 asymbol *sym = symbol_table[i];
5612 if ((sym->flags & BSF_GLOBAL)
5613 && sym->name != NULL && strcmp (sym->name, "__dbx_link") == 0)
5614 return (sym->value + sym->section->vma);
5617 /* Symbol not found, return NULL. */
5621 /* Search the symbol table of the file referenced by FD for a symbol
5622 named __dbx_link(). If found, then insert a breakpoint at this location,
5623 and return nonzero. Return zero otherwise. */
5626 insert_dbx_link_bpt_in_file (int fd, CORE_ADDR ignored)
5629 long storage_needed;
5632 abfd = bfd_fdopenr ("unamed", 0, fd);
5635 warning (_("Failed to create a bfd: %s."), bfd_errmsg (bfd_get_error ()));
5639 if (!bfd_check_format (abfd, bfd_object))
5641 /* Not the correct format, so we can not possibly find the dbx_link
5647 sym_addr = dbx_link_addr (abfd);
5650 /* Insert the breakpoint. */
5651 dbx_link_bpt_addr = sym_addr;
5652 dbx_link_bpt = deprecated_insert_raw_breakpoint (sym_addr);
5653 if (dbx_link_bpt == NULL)
5655 warning (_("Failed to insert dbx_link breakpoint."));
5667 /* If the given memory region MAP contains a symbol named __dbx_link,
5668 insert a breakpoint at this location and return nonzero. Return
5672 insert_dbx_link_bpt_in_region (struct prmap *map,
5673 int (*child_func) (),
5676 procinfo *pi = (procinfo *) data;
5678 /* We know the symbol we're looking for is in a text region, so
5679 only look for it if the region is a text one. */
5680 if (map->pr_mflags & MA_EXEC)
5681 return solib_mappings_callback (map, insert_dbx_link_bpt_in_file, pi);
5686 /* Search all memory regions for a symbol named __dbx_link. If found,
5687 insert a breakpoint at its location, and return nonzero. Return zero
5691 insert_dbx_link_breakpoint (procinfo *pi)
5693 return iterate_over_mappings (pi, NULL, pi, insert_dbx_link_bpt_in_region);
5697 * Function: mappingflags
5699 * Returns an ascii representation of a memory mapping's flags.
5703 mappingflags (long flags)
5705 static char asciiflags[8];
5707 strcpy (asciiflags, "-------");
5708 #if defined (MA_PHYS)
5709 if (flags & MA_PHYS)
5710 asciiflags[0] = 'd';
5712 if (flags & MA_STACK)
5713 asciiflags[1] = 's';
5714 if (flags & MA_BREAK)
5715 asciiflags[2] = 'b';
5716 if (flags & MA_SHARED)
5717 asciiflags[3] = 's';
5718 if (flags & MA_READ)
5719 asciiflags[4] = 'r';
5720 if (flags & MA_WRITE)
5721 asciiflags[5] = 'w';
5722 if (flags & MA_EXEC)
5723 asciiflags[6] = 'x';
5724 return (asciiflags);
5728 * Function: info_mappings_callback
5730 * Callback function, does the actual work for 'info proc mappings'.
5734 info_mappings_callback (struct prmap *map, int (*ignore) (), void *unused)
5736 char *data_fmt_string;
5738 if (gdbarch_addr_bit (current_gdbarch) == 32)
5739 data_fmt_string = "\t%#10lx %#10lx %#10x %#10x %7s\n";
5741 data_fmt_string = " %#18lx %#18lx %#10x %#10x %7s\n";
5743 printf_filtered (data_fmt_string,
5744 (unsigned long) map->pr_vaddr,
5745 (unsigned long) map->pr_vaddr + map->pr_size - 1,
5747 #ifdef PCAGENT /* Horrible hack: only defined on Solaris 2.6+ */
5748 (unsigned int) map->pr_offset,
5752 mappingflags (map->pr_mflags));
5758 * Function: info_proc_mappings
5760 * Implement the "info proc mappings" subcommand.
5764 info_proc_mappings (procinfo *pi, int summary)
5766 char *header_fmt_string;
5768 if (gdbarch_ptr_bit (current_gdbarch) == 32)
5769 header_fmt_string = "\t%10s %10s %10s %10s %7s\n";
5771 header_fmt_string = " %18s %18s %10s %10s %7s\n";
5774 return; /* No output for summary mode. */
5776 printf_filtered (_("Mapped address spaces:\n\n"));
5777 printf_filtered (header_fmt_string,
5784 iterate_over_mappings (pi, NULL, NULL, info_mappings_callback);
5785 printf_filtered ("\n");
5789 * Function: info_proc_cmd
5791 * Implement the "info proc" command.
5795 info_proc_cmd (char *args, int from_tty)
5797 struct cleanup *old_chain;
5798 procinfo *process = NULL;
5799 procinfo *thread = NULL;
5806 old_chain = make_cleanup (null_cleanup, 0);
5809 if ((argv = buildargv (args)) == NULL)
5812 make_cleanup_freeargv (argv);
5814 while (argv != NULL && *argv != NULL)
5816 if (isdigit (argv[0][0]))
5818 pid = strtoul (argv[0], &tmp, 10);
5820 tid = strtoul (++tmp, NULL, 10);
5822 else if (argv[0][0] == '/')
5824 tid = strtoul (argv[0] + 1, NULL, 10);
5826 else if (strncmp (argv[0], "mappings", strlen (argv[0])) == 0)
5837 pid = PIDGET (inferior_ptid);
5839 error (_("No current process: you must name one."));
5842 /* Have pid, will travel.
5843 First see if it's a process we're already debugging. */
5844 process = find_procinfo (pid, 0);
5845 if (process == NULL)
5847 /* No. So open a procinfo for it, but
5848 remember to close it again when finished. */
5849 process = create_procinfo (pid, 0);
5850 make_cleanup (do_destroy_procinfo_cleanup, process);
5851 if (!open_procinfo_files (process, FD_CTL))
5852 proc_error (process, "info proc, open_procinfo_files", __LINE__);
5856 thread = create_procinfo (pid, tid);
5860 printf_filtered (_("process %d flags:\n"), process->pid);
5861 proc_prettyprint_flags (proc_flags (process), 1);
5862 if (proc_flags (process) & (PR_STOPPED | PR_ISTOP))
5863 proc_prettyprint_why (proc_why (process), proc_what (process), 1);
5864 if (proc_get_nthreads (process) > 1)
5865 printf_filtered ("Process has %d threads.\n",
5866 proc_get_nthreads (process));
5870 printf_filtered (_("thread %d flags:\n"), thread->tid);
5871 proc_prettyprint_flags (proc_flags (thread), 1);
5872 if (proc_flags (thread) & (PR_STOPPED | PR_ISTOP))
5873 proc_prettyprint_why (proc_why (thread), proc_what (thread), 1);
5878 info_proc_mappings (process, 0);
5881 do_cleanups (old_chain);
5884 /* Modify the status of the system call identified by SYSCALLNUM in
5885 the set of syscalls that are currently traced/debugged.
5887 If ENTRY_OR_EXIT is set to PR_SYSENTRY, then the entry syscalls set
5888 will be updated. Otherwise, the exit syscalls set will be updated.
5890 If MODE is FLAG_SET, then traces will be enabled. Otherwise, they
5891 will be disabled. */
5894 proc_trace_syscalls_1 (procinfo *pi, int syscallnum, int entry_or_exit,
5895 int mode, int from_tty)
5899 if (entry_or_exit == PR_SYSENTRY)
5900 sysset = proc_get_traced_sysentry (pi, NULL);
5902 sysset = proc_get_traced_sysexit (pi, NULL);
5905 proc_error (pi, "proc-trace, get_traced_sysset", __LINE__);
5907 if (mode == FLAG_SET)
5908 gdb_praddsysset (sysset, syscallnum);
5910 gdb_prdelsysset (sysset, syscallnum);
5912 if (entry_or_exit == PR_SYSENTRY)
5914 if (!proc_set_traced_sysentry (pi, sysset))
5915 proc_error (pi, "proc-trace, set_traced_sysentry", __LINE__);
5919 if (!proc_set_traced_sysexit (pi, sysset))
5920 proc_error (pi, "proc-trace, set_traced_sysexit", __LINE__);
5925 proc_trace_syscalls (char *args, int from_tty, int entry_or_exit, int mode)
5929 if (PIDGET (inferior_ptid) <= 0)
5930 error (_("you must be debugging a process to use this command."));
5932 if (args == NULL || args[0] == 0)
5933 error_no_arg (_("system call to trace"));
5935 pi = find_procinfo_or_die (PIDGET (inferior_ptid), 0);
5936 if (isdigit (args[0]))
5938 const int syscallnum = atoi (args);
5940 proc_trace_syscalls_1 (pi, syscallnum, entry_or_exit, mode, from_tty);
5945 proc_trace_sysentry_cmd (char *args, int from_tty)
5947 proc_trace_syscalls (args, from_tty, PR_SYSENTRY, FLAG_SET);
5951 proc_trace_sysexit_cmd (char *args, int from_tty)
5953 proc_trace_syscalls (args, from_tty, PR_SYSEXIT, FLAG_SET);
5957 proc_untrace_sysentry_cmd (char *args, int from_tty)
5959 proc_trace_syscalls (args, from_tty, PR_SYSENTRY, FLAG_RESET);
5963 proc_untrace_sysexit_cmd (char *args, int from_tty)
5965 proc_trace_syscalls (args, from_tty, PR_SYSEXIT, FLAG_RESET);
5970 _initialize_procfs (void)
5973 add_target (&procfs_ops);
5974 add_info ("proc", info_proc_cmd, _("\
5975 Show /proc process information about any running process.\n\
5976 Specify process id, or use the program being debugged by default.\n\
5977 Specify keyword 'mappings' for detailed info on memory mappings."));
5978 add_com ("proc-trace-entry", no_class, proc_trace_sysentry_cmd,
5979 _("Give a trace of entries into the syscall."));
5980 add_com ("proc-trace-exit", no_class, proc_trace_sysexit_cmd,
5981 _("Give a trace of exits from the syscall."));
5982 add_com ("proc-untrace-entry", no_class, proc_untrace_sysentry_cmd,
5983 _("Cancel a trace of entries into the syscall."));
5984 add_com ("proc-untrace-exit", no_class, proc_untrace_sysexit_cmd,
5985 _("Cancel a trace of exits from the syscall."));
5988 /* =================== END, GDB "MODULE" =================== */
5992 /* miscellaneous stubs: */
5993 /* The following satisfy a few random symbols mostly created by */
5994 /* the solaris threads implementation, which I will chase down */
5998 * Return a pid for which we guarantee
5999 * we will be able to find a 'live' procinfo.
6003 procfs_first_available (void)
6005 return pid_to_ptid (procinfo_list ? procinfo_list->pid : -1);
6008 /* =================== GCORE .NOTE "MODULE" =================== */
6009 #if defined (UNIXWARE) || defined (PIOCOPENLWP) || defined (PCAGENT)
6010 /* gcore only implemented on solaris and unixware (so far) */
6013 procfs_do_thread_registers (bfd *obfd, ptid_t ptid,
6014 char *note_data, int *note_size)
6016 struct regcache *regcache = get_thread_regcache (ptid);
6017 gdb_gregset_t gregs;
6018 gdb_fpregset_t fpregs;
6019 unsigned long merged_pid;
6021 merged_pid = TIDGET (ptid) << 16 | PIDGET (ptid);
6023 fill_gregset (regcache, &gregs, -1);
6024 #if defined (UNIXWARE)
6025 note_data = (char *) elfcore_write_lwpstatus (obfd,
6032 note_data = (char *) elfcore_write_prstatus (obfd,
6039 fill_fpregset (regcache, &fpregs, -1);
6040 note_data = (char *) elfcore_write_prfpreg (obfd,
6048 struct procfs_corefile_thread_data {
6055 procfs_corefile_thread_callback (procinfo *pi, procinfo *thread, void *data)
6057 struct procfs_corefile_thread_data *args = data;
6059 if (pi != NULL && thread->tid != 0)
6061 ptid_t saved_ptid = inferior_ptid;
6062 inferior_ptid = MERGEPID (pi->pid, thread->tid);
6063 args->note_data = procfs_do_thread_registers (args->obfd, inferior_ptid,
6066 inferior_ptid = saved_ptid;
6072 procfs_make_note_section (bfd *obfd, int *note_size)
6074 struct cleanup *old_chain;
6075 gdb_gregset_t gregs;
6076 gdb_fpregset_t fpregs;
6077 char fname[16] = {'\0'};
6078 char psargs[80] = {'\0'};
6079 procinfo *pi = find_procinfo_or_die (PIDGET (inferior_ptid), 0);
6080 char *note_data = NULL;
6082 struct procfs_corefile_thread_data thread_args;
6086 if (get_exec_file (0))
6088 strncpy (fname, strrchr (get_exec_file (0), '/') + 1, sizeof (fname));
6089 strncpy (psargs, get_exec_file (0),
6092 inf_args = get_inferior_args ();
6093 if (inf_args && *inf_args &&
6094 strlen (inf_args) < ((int) sizeof (psargs) - (int) strlen (psargs)))
6096 strncat (psargs, " ",
6097 sizeof (psargs) - strlen (psargs));
6098 strncat (psargs, inf_args,
6099 sizeof (psargs) - strlen (psargs));
6103 note_data = (char *) elfcore_write_prpsinfo (obfd,
6110 fill_gregset (get_current_regcache (), &gregs, -1);
6111 note_data = elfcore_write_pstatus (obfd, note_data, note_size,
6112 PIDGET (inferior_ptid),
6113 stop_signal, &gregs);
6116 thread_args.obfd = obfd;
6117 thread_args.note_data = note_data;
6118 thread_args.note_size = note_size;
6119 proc_iterate_over_threads (pi, procfs_corefile_thread_callback, &thread_args);
6121 if (thread_args.note_data == note_data)
6123 /* iterate_over_threads didn't come up with any threads;
6124 just use inferior_ptid. */
6125 note_data = procfs_do_thread_registers (obfd, inferior_ptid,
6126 note_data, note_size);
6130 note_data = thread_args.note_data;
6133 auxv_len = target_read_alloc (¤t_target, TARGET_OBJECT_AUXV,
6137 note_data = elfcore_write_note (obfd, note_data, note_size,
6138 "CORE", NT_AUXV, auxv, auxv_len);
6142 make_cleanup (xfree, note_data);
6145 #else /* !(Solaris or Unixware) */
6147 procfs_make_note_section (bfd *obfd, int *note_size)
6149 error (_("gcore not implemented for this host."));
6150 return NULL; /* lint */
6152 #endif /* Solaris or Unixware */
6153 /* =================== END GCORE .NOTE "MODULE" =================== */