1 /* Machine independent support for Solaris /proc (process file system) for GDB.
3 Copyright (C) 1999-2018 Free Software Foundation, Inc.
5 Written by Michael Snyder at Cygnus Solutions.
6 Based on work by Fred Fish, Stu Grossman, Geoff Noer, and others.
8 This file is part of GDB.
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 3 of the License, or
13 (at your option) any later version.
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with this program. If not, see <http://www.gnu.org/licenses/>. */
28 #include "elf-bfd.h" /* for elfcore_write_* */
30 #include "gdbthread.h"
32 #include "inf-child.h"
33 #include "nat/fork-inferior.h"
34 #include "filestuff.h"
36 #define _STRUCTURED_PROC 1 /* Should be done by configure script. */
38 #include <sys/procfs.h>
39 #include <sys/fault.h>
40 #include <sys/syscall.h>
50 /* This module provides the interface between GDB and the
51 /proc file system, which is used on many versions of Unix
52 as a means for debuggers to control other processes.
54 /proc works by imitating a file system: you open a simulated file
55 that represents the process you wish to interact with, and perform
56 operations on that "file" in order to examine or change the state
59 The most important thing to know about /proc and this module is
60 that there are two very different interfaces to /proc:
62 One that uses the ioctl system call, and another that uses read
63 and write system calls.
65 This module supports only the Solaris version of the read/write
68 #include <sys/types.h>
69 #include <dirent.h> /* opendir/readdir, for listing the LWP's */
71 #include <fcntl.h> /* for O_RDONLY */
72 #include <unistd.h> /* for "X_OK" */
73 #include <sys/stat.h> /* for struct stat */
75 /* Note: procfs-utils.h must be included after the above system header
76 files, because it redefines various system calls using macros.
77 This may be incompatible with the prototype declarations. */
79 #include "proc-utils.h"
81 /* Prototypes for supply_gregset etc. */
84 /* =================== TARGET_OPS "MODULE" =================== */
86 /* This module defines the GDB target vector and its methods. */
88 static void procfs_attach (struct target_ops *, const char *, int);
89 static void procfs_detach (struct target_ops *, const char *, int);
90 static void procfs_resume (struct target_ops *,
91 ptid_t, int, enum gdb_signal);
92 static void procfs_interrupt (struct target_ops *self, ptid_t);
93 static void procfs_files_info (struct target_ops *);
94 static void procfs_fetch_registers (struct target_ops *,
95 struct regcache *, int);
96 static void procfs_store_registers (struct target_ops *,
97 struct regcache *, int);
98 static void procfs_pass_signals (struct target_ops *self,
99 int, unsigned char *);
100 static void procfs_kill_inferior (struct target_ops *ops);
101 static void procfs_mourn_inferior (struct target_ops *ops);
102 static void procfs_create_inferior (struct target_ops *, const char *,
103 const std::string &, char **, int);
104 static ptid_t procfs_wait (struct target_ops *,
105 ptid_t, struct target_waitstatus *, int);
106 static enum target_xfer_status procfs_xfer_memory (gdb_byte *,
110 static target_xfer_partial_ftype procfs_xfer_partial;
112 static int procfs_thread_alive (struct target_ops *ops, ptid_t);
114 static void procfs_update_thread_list (struct target_ops *ops);
115 static const char *procfs_pid_to_str (struct target_ops *, ptid_t);
117 static int proc_find_memory_regions (struct target_ops *self,
118 find_memory_region_ftype, void *);
120 static char *procfs_make_note_section (struct target_ops *self,
123 static int procfs_can_use_hw_breakpoint (struct target_ops *self,
124 enum bptype, int, int);
126 static void procfs_info_proc (struct target_ops *, const char *,
127 enum info_proc_what);
129 #if defined (PR_MODEL_NATIVE) && (PR_MODEL_NATIVE == PR_MODEL_LP64)
130 /* When GDB is built as 64-bit application on Solaris, the auxv data
131 is presented in 64-bit format. We need to provide a custom parser
134 procfs_auxv_parse (struct target_ops *ops, gdb_byte **readptr,
135 gdb_byte *endptr, CORE_ADDR *typep, CORE_ADDR *valp)
137 enum bfd_endian byte_order = gdbarch_byte_order (target_gdbarch ());
138 gdb_byte *ptr = *readptr;
143 if (endptr - ptr < 8 * 2)
146 *typep = extract_unsigned_integer (ptr, 4, byte_order);
148 /* The size of data is always 64-bit. If the application is 32-bit,
149 it will be zero extended, as expected. */
150 *valp = extract_unsigned_integer (ptr, 8, byte_order);
161 struct target_ops *t = inf_child_target ();
163 t->to_create_inferior = procfs_create_inferior;
164 t->to_kill = procfs_kill_inferior;
165 t->to_mourn_inferior = procfs_mourn_inferior;
166 t->to_attach = procfs_attach;
167 t->to_detach = procfs_detach;
168 t->to_wait = procfs_wait;
169 t->to_resume = procfs_resume;
170 t->to_fetch_registers = procfs_fetch_registers;
171 t->to_store_registers = procfs_store_registers;
172 t->to_xfer_partial = procfs_xfer_partial;
173 t->to_pass_signals = procfs_pass_signals;
174 t->to_files_info = procfs_files_info;
175 t->to_interrupt = procfs_interrupt;
177 t->to_update_thread_list = procfs_update_thread_list;
178 t->to_thread_alive = procfs_thread_alive;
179 t->to_pid_to_str = procfs_pid_to_str;
181 t->to_has_thread_control = tc_schedlock;
182 t->to_find_memory_regions = proc_find_memory_regions;
183 t->to_make_corefile_notes = procfs_make_note_section;
184 t->to_info_proc = procfs_info_proc;
186 #if defined(PR_MODEL_NATIVE) && (PR_MODEL_NATIVE == PR_MODEL_LP64)
187 t->to_auxv_parse = procfs_auxv_parse;
190 t->to_magic = OPS_MAGIC;
195 /* =================== END, TARGET_OPS "MODULE" =================== */
197 /* World Unification:
199 Put any typedefs, defines etc. here that are required for the
200 unification of code that handles different versions of /proc. */
202 enum { READ_WATCHFLAG = WA_READ,
203 WRITE_WATCHFLAG = WA_WRITE,
204 EXEC_WATCHFLAG = WA_EXEC,
205 AFTER_WATCHFLAG = WA_TRAPAFTER
209 /* =================== STRUCT PROCINFO "MODULE" =================== */
211 /* FIXME: this comment will soon be out of date W.R.T. threads. */
213 /* The procinfo struct is a wrapper to hold all the state information
214 concerning a /proc process. There should be exactly one procinfo
215 for each process, and since GDB currently can debug only one
216 process at a time, that means there should be only one procinfo.
217 All of the LWP's of a process can be accessed indirectly thru the
218 single process procinfo.
220 However, against the day when GDB may debug more than one process,
221 this data structure is kept in a list (which for now will hold no
222 more than one member), and many functions will have a pointer to a
223 procinfo as an argument.
225 There will be a separate procinfo structure for use by the (not yet
226 implemented) "info proc" command, so that we can print useful
227 information about any random process without interfering with the
228 inferior's procinfo information. */
230 /* format strings for /proc paths */
231 #define MAIN_PROC_NAME_FMT "/proc/%d"
232 #define CTL_PROC_NAME_FMT "/proc/%d/ctl"
233 #define AS_PROC_NAME_FMT "/proc/%d/as"
234 #define MAP_PROC_NAME_FMT "/proc/%d/map"
235 #define STATUS_PROC_NAME_FMT "/proc/%d/status"
236 #define MAX_PROC_NAME_SIZE sizeof("/proc/99999/lwp/8096/lstatus")
238 typedef struct procinfo {
239 struct procinfo *next;
240 int pid; /* Process ID */
241 int tid; /* Thread/LWP id */
245 int ignore_next_sigstop;
247 int ctl_fd; /* File descriptor for /proc control file */
248 int status_fd; /* File descriptor for /proc status file */
249 int as_fd; /* File descriptor for /proc as file */
251 char pathname[MAX_PROC_NAME_SIZE]; /* Pathname to /proc entry */
253 fltset_t saved_fltset; /* Saved traced hardware fault set */
254 sigset_t saved_sigset; /* Saved traced signal set */
255 sigset_t saved_sighold; /* Saved held signal set */
256 sysset_t *saved_exitset; /* Saved traced system call exit set */
257 sysset_t *saved_entryset; /* Saved traced system call entry set */
259 pstatus_t prstatus; /* Current process status info */
261 struct procinfo *thread_list;
263 int status_valid : 1;
265 int fpregs_valid : 1;
266 int threads_valid: 1;
269 static char errmsg[128]; /* shared error msg buffer */
271 /* Function prototypes for procinfo module: */
273 static procinfo *find_procinfo_or_die (int pid, int tid);
274 static procinfo *find_procinfo (int pid, int tid);
275 static procinfo *create_procinfo (int pid, int tid);
276 static void destroy_procinfo (procinfo *p);
277 static void do_destroy_procinfo_cleanup (void *);
278 static void dead_procinfo (procinfo *p, const char *msg, int killp);
279 static int open_procinfo_files (procinfo *p, int which);
280 static void close_procinfo_files (procinfo *p);
281 static sysset_t *sysset_t_alloc (procinfo *pi);
283 static int iterate_over_mappings
284 (procinfo *pi, find_memory_region_ftype child_func, void *data,
285 int (*func) (struct prmap *map, find_memory_region_ftype child_func,
288 /* The head of the procinfo list: */
289 static procinfo *procinfo_list;
291 /* Search the procinfo list. Return a pointer to procinfo, or NULL if
295 find_procinfo (int pid, int tid)
299 for (pi = procinfo_list; pi; pi = pi->next)
306 /* Don't check threads_valid. If we're updating the
307 thread_list, we want to find whatever threads are already
308 here. This means that in general it is the caller's
309 responsibility to check threads_valid and update before
310 calling find_procinfo, if the caller wants to find a new
313 for (pi = pi->thread_list; pi; pi = pi->next)
321 /* Calls find_procinfo, but errors on failure. */
324 find_procinfo_or_die (int pid, int tid)
326 procinfo *pi = find_procinfo (pid, tid);
331 error (_("procfs: couldn't find pid %d "
332 "(kernel thread %d) in procinfo list."),
335 error (_("procfs: couldn't find pid %d in procinfo list."), pid);
340 /* Wrapper for `open'. The appropriate open call is attempted; if
341 unsuccessful, it will be retried as many times as needed for the
342 EAGAIN and EINTR conditions.
344 For other conditions, retry the open a limited number of times. In
345 addition, a short sleep is imposed prior to retrying the open. The
346 reason for this sleep is to give the kernel a chance to catch up
347 and create the file in question in the event that GDB "wins" the
348 race to open a file before the kernel has created it. */
351 open_with_retry (const char *pathname, int flags)
353 int retries_remaining, status;
355 retries_remaining = 2;
359 status = open (pathname, flags);
361 if (status >= 0 || retries_remaining == 0)
363 else if (errno != EINTR && errno != EAGAIN)
373 /* Open the file descriptor for the process or LWP. We only open the
374 control file descriptor; the others are opened lazily as needed.
375 Returns the file descriptor, or zero for failure. */
377 enum { FD_CTL, FD_STATUS, FD_AS };
380 open_procinfo_files (procinfo *pi, int which)
382 char tmp[MAX_PROC_NAME_SIZE];
385 /* This function is getting ALMOST long enough to break up into
386 several. Here is some rationale:
388 There are several file descriptors that may need to be open
389 for any given process or LWP. The ones we're intereted in are:
390 - control (ctl) write-only change the state
391 - status (status) read-only query the state
392 - address space (as) read/write access memory
393 - map (map) read-only virtual addr map
394 Most of these are opened lazily as they are needed.
395 The pathnames for the 'files' for an LWP look slightly
396 different from those of a first-class process:
397 Pathnames for a process (<proc-id>):
399 /proc/<proc-id>/status
402 Pathnames for an LWP (lwp-id):
403 /proc/<proc-id>/lwp/<lwp-id>/lwpctl
404 /proc/<proc-id>/lwp/<lwp-id>/lwpstatus
405 An LWP has no map or address space file descriptor, since
406 the memory map and address space are shared by all LWPs. */
408 /* In this case, there are several different file descriptors that
409 we might be asked to open. The control file descriptor will be
410 opened early, but the others will be opened lazily as they are
413 strcpy (tmp, pi->pathname);
414 switch (which) { /* Which file descriptor to open? */
417 strcat (tmp, "/lwpctl");
419 strcat (tmp, "/ctl");
420 fd = open_with_retry (tmp, O_WRONLY);
427 return 0; /* There is no 'as' file descriptor for an lwp. */
429 fd = open_with_retry (tmp, O_RDWR);
436 strcat (tmp, "/lwpstatus");
438 strcat (tmp, "/status");
439 fd = open_with_retry (tmp, O_RDONLY);
445 return 0; /* unknown file descriptor */
448 return 1; /* success */
451 /* Allocate a data structure and link it into the procinfo list.
452 First tries to find a pre-existing one (FIXME: why?). Returns the
453 pointer to new procinfo struct. */
456 create_procinfo (int pid, int tid)
458 procinfo *pi, *parent = NULL;
460 if ((pi = find_procinfo (pid, tid)))
461 return pi; /* Already exists, nothing to do. */
463 /* Find parent before doing malloc, to save having to cleanup. */
465 parent = find_procinfo_or_die (pid, 0); /* FIXME: should I
467 doesn't exist yet? */
469 pi = XNEW (procinfo);
470 memset (pi, 0, sizeof (procinfo));
474 pi->saved_entryset = sysset_t_alloc (pi);
475 pi->saved_exitset = sysset_t_alloc (pi);
477 /* Chain into list. */
480 sprintf (pi->pathname, MAIN_PROC_NAME_FMT, pid);
481 pi->next = procinfo_list;
486 sprintf (pi->pathname, "/proc/%05d/lwp/%d", pid, tid);
487 pi->next = parent->thread_list;
488 parent->thread_list = pi;
493 /* Close all file descriptors associated with the procinfo. */
496 close_procinfo_files (procinfo *pi)
502 if (pi->status_fd > 0)
503 close (pi->status_fd);
504 pi->ctl_fd = pi->as_fd = pi->status_fd = 0;
507 /* Destructor function. Close, unlink and deallocate the object. */
510 destroy_one_procinfo (procinfo **list, procinfo *pi)
514 /* Step one: unlink the procinfo from its list. */
518 for (ptr = *list; ptr; ptr = ptr->next)
521 ptr->next = pi->next;
525 /* Step two: close any open file descriptors. */
526 close_procinfo_files (pi);
528 /* Step three: free the memory. */
529 xfree (pi->saved_entryset);
530 xfree (pi->saved_exitset);
535 destroy_procinfo (procinfo *pi)
539 if (pi->tid != 0) /* Destroy a thread procinfo. */
541 tmp = find_procinfo (pi->pid, 0); /* Find the parent process. */
542 destroy_one_procinfo (&tmp->thread_list, pi);
544 else /* Destroy a process procinfo and all its threads. */
546 /* First destroy the children, if any; */
547 while (pi->thread_list != NULL)
548 destroy_one_procinfo (&pi->thread_list, pi->thread_list);
549 /* Then destroy the parent. Genocide!!! */
550 destroy_one_procinfo (&procinfo_list, pi);
555 do_destroy_procinfo_cleanup (void *pi)
557 destroy_procinfo ((procinfo *) pi);
560 enum { NOKILL, KILL };
562 /* To be called on a non_recoverable error for a procinfo. Prints
563 error messages, optionally sends a SIGKILL to the process, then
564 destroys the data structure. */
567 dead_procinfo (procinfo *pi, const char *msg, int kill_p)
573 print_sys_errmsg (pi->pathname, errno);
577 sprintf (procfile, "process %d", pi->pid);
578 print_sys_errmsg (procfile, errno);
581 kill (pi->pid, SIGKILL);
583 destroy_procinfo (pi);
587 /* Allocate and (partially) initialize a sysset_t struct. */
590 sysset_t_alloc (procinfo *pi)
592 return (sysset_t *) xmalloc (sizeof (sysset_t));
595 /* =================== END, STRUCT PROCINFO "MODULE" =================== */
597 /* =================== /proc "MODULE" =================== */
599 /* This "module" is the interface layer between the /proc system API
600 and the gdb target vector functions. This layer consists of access
601 functions that encapsulate each of the basic operations that we
602 need to use from the /proc API.
604 The main motivation for this layer is to hide the fact that there
605 are two very different implementations of the /proc API. Rather
606 than have a bunch of #ifdefs all thru the gdb target vector
607 functions, we do our best to hide them all in here. */
609 static long proc_flags (procinfo *pi);
610 static int proc_why (procinfo *pi);
611 static int proc_what (procinfo *pi);
612 static int proc_set_current_signal (procinfo *pi, int signo);
613 static int proc_get_current_thread (procinfo *pi);
614 static int proc_iterate_over_threads
616 int (*func) (procinfo *, procinfo *, void *),
620 proc_warn (procinfo *pi, const char *func, int line)
622 sprintf (errmsg, "procfs: %s line %d, %s", func, line, pi->pathname);
623 print_sys_errmsg (errmsg, errno);
627 proc_error (procinfo *pi, const char *func, int line)
629 sprintf (errmsg, "procfs: %s line %d, %s", func, line, pi->pathname);
630 perror_with_name (errmsg);
633 /* Updates the status struct in the procinfo. There is a 'valid'
634 flag, to let other functions know when this function needs to be
635 called (so the status is only read when it is needed). The status
636 file descriptor is also only opened when it is needed. Returns
637 non-zero for success, zero for failure. */
640 proc_get_status (procinfo *pi)
642 /* Status file descriptor is opened "lazily". */
643 if (pi->status_fd == 0 &&
644 open_procinfo_files (pi, FD_STATUS) == 0)
646 pi->status_valid = 0;
650 if (lseek (pi->status_fd, 0, SEEK_SET) < 0)
651 pi->status_valid = 0; /* fail */
654 /* Sigh... I have to read a different data structure,
655 depending on whether this is a main process or an LWP. */
657 pi->status_valid = (read (pi->status_fd,
658 (char *) &pi->prstatus.pr_lwp,
659 sizeof (lwpstatus_t))
660 == sizeof (lwpstatus_t));
663 pi->status_valid = (read (pi->status_fd,
664 (char *) &pi->prstatus,
666 == sizeof (pstatus_t));
670 if (pi->status_valid)
672 PROC_PRETTYFPRINT_STATUS (proc_flags (pi),
675 proc_get_current_thread (pi));
678 /* The status struct includes general regs, so mark them valid too. */
679 pi->gregs_valid = pi->status_valid;
680 /* In the read/write multiple-fd model, the status struct includes
681 the fp regs too, so mark them valid too. */
682 pi->fpregs_valid = pi->status_valid;
683 return pi->status_valid; /* True if success, false if failure. */
686 /* Returns the process flags (pr_flags field). */
689 proc_flags (procinfo *pi)
691 if (!pi->status_valid)
692 if (!proc_get_status (pi))
693 return 0; /* FIXME: not a good failure value (but what is?) */
695 return pi->prstatus.pr_lwp.pr_flags;
698 /* Returns the pr_why field (why the process stopped). */
701 proc_why (procinfo *pi)
703 if (!pi->status_valid)
704 if (!proc_get_status (pi))
705 return 0; /* FIXME: not a good failure value (but what is?) */
707 return pi->prstatus.pr_lwp.pr_why;
710 /* Returns the pr_what field (details of why the process stopped). */
713 proc_what (procinfo *pi)
715 if (!pi->status_valid)
716 if (!proc_get_status (pi))
717 return 0; /* FIXME: not a good failure value (but what is?) */
719 return pi->prstatus.pr_lwp.pr_what;
722 /* This function is only called when PI is stopped by a watchpoint.
723 Assuming the OS supports it, write to *ADDR the data address which
724 triggered it and return 1. Return 0 if it is not possible to know
728 proc_watchpoint_address (procinfo *pi, CORE_ADDR *addr)
730 if (!pi->status_valid)
731 if (!proc_get_status (pi))
734 *addr = (CORE_ADDR) gdbarch_pointer_to_address (target_gdbarch (),
735 builtin_type (target_gdbarch ())->builtin_data_ptr,
736 (gdb_byte *) &pi->prstatus.pr_lwp.pr_info.si_addr);
740 /* Returns the pr_nsysarg field (number of args to the current
744 proc_nsysarg (procinfo *pi)
746 if (!pi->status_valid)
747 if (!proc_get_status (pi))
750 return pi->prstatus.pr_lwp.pr_nsysarg;
753 /* Returns the pr_sysarg field (pointer to the arguments of current
757 proc_sysargs (procinfo *pi)
759 if (!pi->status_valid)
760 if (!proc_get_status (pi))
763 return (long *) &pi->prstatus.pr_lwp.pr_sysarg;
766 /* Set or reset any of the following process flags:
767 PR_FORK -- forked child will inherit trace flags
768 PR_RLC -- traced process runs when last /proc file closed.
769 PR_KLC -- traced process is killed when last /proc file closed.
770 PR_ASYNC -- LWP's get to run/stop independently.
772 This function is done using read/write [PCSET/PCRESET/PCUNSET].
776 flag -- one of PR_FORK, PR_RLC, or PR_ASYNC
777 mode -- 1 for set, 0 for reset.
779 Returns non-zero for success, zero for failure. */
781 enum { FLAG_RESET, FLAG_SET };
784 proc_modify_flag (procinfo *pi, long flag, long mode)
786 long win = 0; /* default to fail */
788 /* These operations affect the process as a whole, and applying them
789 to an individual LWP has the same meaning as applying them to the
790 main process. Therefore, if we're ever called with a pointer to
791 an LWP's procinfo, let's substitute the process's procinfo and
792 avoid opening the LWP's file descriptor unnecessarily. */
795 pi = find_procinfo_or_die (pi->pid, 0);
799 if (mode == FLAG_SET) /* Set the flag (RLC, FORK, or ASYNC). */
801 else /* Reset the flag. */
805 win = (write (pi->ctl_fd, (void *) &arg, sizeof (arg)) == sizeof (arg));
807 /* The above operation renders the procinfo's cached pstatus
809 pi->status_valid = 0;
812 warning (_("procfs: modify_flag failed to turn %s %s"),
813 flag == PR_FORK ? "PR_FORK" :
814 flag == PR_RLC ? "PR_RLC" :
815 flag == PR_ASYNC ? "PR_ASYNC" :
816 flag == PR_KLC ? "PR_KLC" :
818 mode == FLAG_RESET ? "off" : "on");
823 /* Set the run_on_last_close flag. Process with all threads will
824 become runnable when debugger closes all /proc fds. Returns
825 non-zero for success, zero for failure. */
828 proc_set_run_on_last_close (procinfo *pi)
830 return proc_modify_flag (pi, PR_RLC, FLAG_SET);
833 /* Reset the run_on_last_close flag. The process will NOT become
834 runnable when debugger closes its file handles. Returns non-zero
835 for success, zero for failure. */
838 proc_unset_run_on_last_close (procinfo *pi)
840 return proc_modify_flag (pi, PR_RLC, FLAG_RESET);
843 /* Reset inherit_on_fork flag. If the process forks a child while we
844 are registered for events in the parent, then we will NOT recieve
845 events from the child. Returns non-zero for success, zero for
849 proc_unset_inherit_on_fork (procinfo *pi)
851 return proc_modify_flag (pi, PR_FORK, FLAG_RESET);
854 /* Set PR_ASYNC flag. If one LWP stops because of a debug event
855 (signal etc.), the remaining LWPs will continue to run. Returns
856 non-zero for success, zero for failure. */
859 proc_set_async (procinfo *pi)
861 return proc_modify_flag (pi, PR_ASYNC, FLAG_SET);
864 /* Reset PR_ASYNC flag. If one LWP stops because of a debug event
865 (signal etc.), then all other LWPs will stop as well. Returns
866 non-zero for success, zero for failure. */
869 proc_unset_async (procinfo *pi)
871 return proc_modify_flag (pi, PR_ASYNC, FLAG_RESET);
874 /* Request the process/LWP to stop. Does not wait. Returns non-zero
875 for success, zero for failure. */
878 proc_stop_process (procinfo *pi)
882 /* We might conceivably apply this operation to an LWP, and the
883 LWP's ctl file descriptor might not be open. */
885 if (pi->ctl_fd == 0 &&
886 open_procinfo_files (pi, FD_CTL) == 0)
890 procfs_ctl_t cmd = PCSTOP;
892 win = (write (pi->ctl_fd, (char *) &cmd, sizeof (cmd)) == sizeof (cmd));
898 /* Wait for the process or LWP to stop (block until it does). Returns
899 non-zero for success, zero for failure. */
902 proc_wait_for_stop (procinfo *pi)
906 /* We should never have to apply this operation to any procinfo
907 except the one for the main process. If that ever changes for
908 any reason, then take out the following clause and replace it
909 with one that makes sure the ctl_fd is open. */
912 pi = find_procinfo_or_die (pi->pid, 0);
914 procfs_ctl_t cmd = PCWSTOP;
916 win = (write (pi->ctl_fd, (char *) &cmd, sizeof (cmd)) == sizeof (cmd));
917 /* We been runnin' and we stopped -- need to update status. */
918 pi->status_valid = 0;
923 /* Make the process or LWP runnable.
925 Options (not all are implemented):
927 - clear current fault
928 - clear current signal
929 - abort the current system call
930 - stop as soon as finished with system call
931 - (ioctl): set traced signal set
932 - (ioctl): set held signal set
933 - (ioctl): set traced fault set
934 - (ioctl): set start pc (vaddr)
936 Always clears the current fault. PI is the process or LWP to
937 operate on. If STEP is true, set the process or LWP to trap after
938 one instruction. If SIGNO is zero, clear the current signal if
939 any; if non-zero, set the current signal to this one. Returns
940 non-zero for success, zero for failure. */
943 proc_run_process (procinfo *pi, int step, int signo)
948 /* We will probably have to apply this operation to individual
949 threads, so make sure the control file descriptor is open. */
951 if (pi->ctl_fd == 0 &&
952 open_procinfo_files (pi, FD_CTL) == 0)
957 runflags = PRCFAULT; /* Always clear current fault. */
962 else if (signo != -1) /* -1 means do nothing W.R.T. signals. */
963 proc_set_current_signal (pi, signo);
969 win = (write (pi->ctl_fd, (char *) &cmd, sizeof (cmd)) == sizeof (cmd));
974 /* Register to trace signals in the process or LWP. Returns non-zero
975 for success, zero for failure. */
978 proc_set_traced_signals (procinfo *pi, sigset_t *sigset)
982 /* We should never have to apply this operation to any procinfo
983 except the one for the main process. If that ever changes for
984 any reason, then take out the following clause and replace it
985 with one that makes sure the ctl_fd is open. */
988 pi = find_procinfo_or_die (pi->pid, 0);
992 /* Use char array to avoid alignment issues. */
993 char sigset[sizeof (sigset_t)];
997 memcpy (&arg.sigset, sigset, sizeof (sigset_t));
999 win = (write (pi->ctl_fd, (char *) &arg, sizeof (arg)) == sizeof (arg));
1001 /* The above operation renders the procinfo's cached pstatus obsolete. */
1002 pi->status_valid = 0;
1005 warning (_("procfs: set_traced_signals failed"));
1009 /* Register to trace hardware faults in the process or LWP. Returns
1010 non-zero for success, zero for failure. */
1013 proc_set_traced_faults (procinfo *pi, fltset_t *fltset)
1017 /* We should never have to apply this operation to any procinfo
1018 except the one for the main process. If that ever changes for
1019 any reason, then take out the following clause and replace it
1020 with one that makes sure the ctl_fd is open. */
1023 pi = find_procinfo_or_die (pi->pid, 0);
1027 /* Use char array to avoid alignment issues. */
1028 char fltset[sizeof (fltset_t)];
1032 memcpy (&arg.fltset, fltset, sizeof (fltset_t));
1034 win = (write (pi->ctl_fd, (char *) &arg, sizeof (arg)) == sizeof (arg));
1036 /* The above operation renders the procinfo's cached pstatus obsolete. */
1037 pi->status_valid = 0;
1042 /* Register to trace entry to system calls in the process or LWP.
1043 Returns non-zero for success, zero for failure. */
1046 proc_set_traced_sysentry (procinfo *pi, sysset_t *sysset)
1050 /* We should never have to apply this operation to any procinfo
1051 except the one for the main process. If that ever changes for
1052 any reason, then take out the following clause and replace it
1053 with one that makes sure the ctl_fd is open. */
1056 pi = find_procinfo_or_die (pi->pid, 0);
1058 struct gdb_proc_ctl_pcsentry {
1060 /* Use char array to avoid alignment issues. */
1061 char sysset[sizeof (sysset_t)];
1063 int argp_size = sizeof (struct gdb_proc_ctl_pcsentry);
1065 argp = (struct gdb_proc_ctl_pcsentry *) xmalloc (argp_size);
1067 argp->cmd = PCSENTRY;
1068 memcpy (&argp->sysset, sysset, sizeof (sysset_t));
1070 win = (write (pi->ctl_fd, (char *) argp, argp_size) == argp_size);
1073 /* The above operation renders the procinfo's cached pstatus
1075 pi->status_valid = 0;
1080 /* Register to trace exit from system calls in the process or LWP.
1081 Returns non-zero for success, zero for failure. */
1084 proc_set_traced_sysexit (procinfo *pi, sysset_t *sysset)
1088 /* We should never have to apply this operation to any procinfo
1089 except the one for the main process. If that ever changes for
1090 any reason, then take out the following clause and replace it
1091 with one that makes sure the ctl_fd is open. */
1094 pi = find_procinfo_or_die (pi->pid, 0);
1096 struct gdb_proc_ctl_pcsexit {
1098 /* Use char array to avoid alignment issues. */
1099 char sysset[sizeof (sysset_t)];
1101 int argp_size = sizeof (struct gdb_proc_ctl_pcsexit);
1103 argp = (struct gdb_proc_ctl_pcsexit *) xmalloc (argp_size);
1105 argp->cmd = PCSEXIT;
1106 memcpy (&argp->sysset, sysset, sizeof (sysset_t));
1108 win = (write (pi->ctl_fd, (char *) argp, argp_size) == argp_size);
1111 /* The above operation renders the procinfo's cached pstatus
1113 pi->status_valid = 0;
1118 /* Specify the set of blocked / held signals in the process or LWP.
1119 Returns non-zero for success, zero for failure. */
1122 proc_set_held_signals (procinfo *pi, sigset_t *sighold)
1126 /* We should never have to apply this operation to any procinfo
1127 except the one for the main process. If that ever changes for
1128 any reason, then take out the following clause and replace it
1129 with one that makes sure the ctl_fd is open. */
1132 pi = find_procinfo_or_die (pi->pid, 0);
1136 /* Use char array to avoid alignment issues. */
1137 char hold[sizeof (sigset_t)];
1141 memcpy (&arg.hold, sighold, sizeof (sigset_t));
1142 win = (write (pi->ctl_fd, (void *) &arg, sizeof (arg)) == sizeof (arg));
1144 /* The above operation renders the procinfo's cached pstatus
1146 pi->status_valid = 0;
1151 /* Returns the set of signals that are held / blocked. Will also copy
1152 the sigset if SAVE is non-zero. */
1155 proc_get_held_signals (procinfo *pi, sigset_t *save)
1157 sigset_t *ret = NULL;
1159 /* We should never have to apply this operation to any procinfo
1160 except the one for the main process. If that ever changes for
1161 any reason, then take out the following clause and replace it
1162 with one that makes sure the ctl_fd is open. */
1165 pi = find_procinfo_or_die (pi->pid, 0);
1167 if (!pi->status_valid)
1168 if (!proc_get_status (pi))
1171 ret = &pi->prstatus.pr_lwp.pr_lwphold;
1173 memcpy (save, ret, sizeof (sigset_t));
1178 /* Returns the set of signals that are traced / debugged. Will also
1179 copy the sigset if SAVE is non-zero. */
1182 proc_get_traced_signals (procinfo *pi, sigset_t *save)
1184 sigset_t *ret = NULL;
1186 /* We should never have to apply this operation to any procinfo
1187 except the one for the main process. If that ever changes for
1188 any reason, then take out the following clause and replace it
1189 with one that makes sure the ctl_fd is open. */
1192 pi = find_procinfo_or_die (pi->pid, 0);
1194 if (!pi->status_valid)
1195 if (!proc_get_status (pi))
1198 ret = &pi->prstatus.pr_sigtrace;
1200 memcpy (save, ret, sizeof (sigset_t));
1205 /* Returns the set of hardware faults that are traced /debugged. Will
1206 also copy the faultset if SAVE is non-zero. */
1209 proc_get_traced_faults (procinfo *pi, fltset_t *save)
1211 fltset_t *ret = NULL;
1213 /* We should never have to apply this operation to any procinfo
1214 except the one for the main process. If that ever changes for
1215 any reason, then take out the following clause and replace it
1216 with one that makes sure the ctl_fd is open. */
1219 pi = find_procinfo_or_die (pi->pid, 0);
1221 if (!pi->status_valid)
1222 if (!proc_get_status (pi))
1225 ret = &pi->prstatus.pr_flttrace;
1227 memcpy (save, ret, sizeof (fltset_t));
1232 /* Returns the set of syscalls that are traced /debugged on entry.
1233 Will also copy the syscall set if SAVE is non-zero. */
1236 proc_get_traced_sysentry (procinfo *pi, sysset_t *save)
1238 sysset_t *ret = NULL;
1240 /* We should never have to apply this operation to any procinfo
1241 except the one for the main process. If that ever changes for
1242 any reason, then take out the following clause and replace it
1243 with one that makes sure the ctl_fd is open. */
1246 pi = find_procinfo_or_die (pi->pid, 0);
1248 if (!pi->status_valid)
1249 if (!proc_get_status (pi))
1252 ret = &pi->prstatus.pr_sysentry;
1254 memcpy (save, ret, sizeof (sysset_t));
1259 /* Returns the set of syscalls that are traced /debugged on exit.
1260 Will also copy the syscall set if SAVE is non-zero. */
1263 proc_get_traced_sysexit (procinfo *pi, sysset_t *save)
1265 sysset_t *ret = NULL;
1267 /* We should never have to apply this operation to any procinfo
1268 except the one for the main process. If that ever changes for
1269 any reason, then take out the following clause and replace it
1270 with one that makes sure the ctl_fd is open. */
1273 pi = find_procinfo_or_die (pi->pid, 0);
1275 if (!pi->status_valid)
1276 if (!proc_get_status (pi))
1279 ret = &pi->prstatus.pr_sysexit;
1281 memcpy (save, ret, sizeof (sysset_t));
1286 /* The current fault (if any) is cleared; the associated signal will
1287 not be sent to the process or LWP when it resumes. Returns
1288 non-zero for success, zero for failure. */
1291 proc_clear_current_fault (procinfo *pi)
1295 /* We should never have to apply this operation to any procinfo
1296 except the one for the main process. If that ever changes for
1297 any reason, then take out the following clause and replace it
1298 with one that makes sure the ctl_fd is open. */
1301 pi = find_procinfo_or_die (pi->pid, 0);
1303 procfs_ctl_t cmd = PCCFAULT;
1305 win = (write (pi->ctl_fd, (void *) &cmd, sizeof (cmd)) == sizeof (cmd));
1310 /* Set the "current signal" that will be delivered next to the
1311 process. NOTE: semantics are different from those of KILL. This
1312 signal will be delivered to the process or LWP immediately when it
1313 is resumed (even if the signal is held/blocked); it will NOT
1314 immediately cause another event of interest, and will NOT first
1315 trap back to the debugger. Returns non-zero for success, zero for
1319 proc_set_current_signal (procinfo *pi, int signo)
1324 /* Use char array to avoid alignment issues. */
1325 char sinfo[sizeof (siginfo_t)];
1329 struct target_waitstatus wait_status;
1331 /* We should never have to apply this operation to any procinfo
1332 except the one for the main process. If that ever changes for
1333 any reason, then take out the following clause and replace it
1334 with one that makes sure the ctl_fd is open. */
1337 pi = find_procinfo_or_die (pi->pid, 0);
1339 /* The pointer is just a type alias. */
1340 get_last_target_status (&wait_ptid, &wait_status);
1341 if (ptid_equal (wait_ptid, inferior_ptid)
1342 && wait_status.kind == TARGET_WAITKIND_STOPPED
1343 && wait_status.value.sig == gdb_signal_from_host (signo)
1344 && proc_get_status (pi)
1345 && pi->prstatus.pr_lwp.pr_info.si_signo == signo
1347 /* Use the siginfo associated with the signal being
1349 memcpy (arg.sinfo, &pi->prstatus.pr_lwp.pr_info, sizeof (siginfo_t));
1352 mysinfo.si_signo = signo;
1353 mysinfo.si_code = 0;
1354 mysinfo.si_pid = getpid (); /* ?why? */
1355 mysinfo.si_uid = getuid (); /* ?why? */
1356 memcpy (arg.sinfo, &mysinfo, sizeof (siginfo_t));
1360 win = (write (pi->ctl_fd, (void *) &arg, sizeof (arg)) == sizeof (arg));
1365 /* The current signal (if any) is cleared, and is not sent to the
1366 process or LWP when it resumes. Returns non-zero for success, zero
1370 proc_clear_current_signal (procinfo *pi)
1374 /* We should never have to apply this operation to any procinfo
1375 except the one for the main process. If that ever changes for
1376 any reason, then take out the following clause and replace it
1377 with one that makes sure the ctl_fd is open. */
1380 pi = find_procinfo_or_die (pi->pid, 0);
1384 /* Use char array to avoid alignment issues. */
1385 char sinfo[sizeof (siginfo_t)];
1390 /* The pointer is just a type alias. */
1391 mysinfo.si_signo = 0;
1392 mysinfo.si_code = 0;
1393 mysinfo.si_errno = 0;
1394 mysinfo.si_pid = getpid (); /* ?why? */
1395 mysinfo.si_uid = getuid (); /* ?why? */
1396 memcpy (arg.sinfo, &mysinfo, sizeof (siginfo_t));
1398 win = (write (pi->ctl_fd, (void *) &arg, sizeof (arg)) == sizeof (arg));
1403 /* Return the general-purpose registers for the process or LWP
1404 corresponding to PI. Upon failure, return NULL. */
1406 static gdb_gregset_t *
1407 proc_get_gregs (procinfo *pi)
1409 if (!pi->status_valid || !pi->gregs_valid)
1410 if (!proc_get_status (pi))
1413 return &pi->prstatus.pr_lwp.pr_reg;
1416 /* Return the general-purpose registers for the process or LWP
1417 corresponding to PI. Upon failure, return NULL. */
1419 static gdb_fpregset_t *
1420 proc_get_fpregs (procinfo *pi)
1422 if (!pi->status_valid || !pi->fpregs_valid)
1423 if (!proc_get_status (pi))
1426 return &pi->prstatus.pr_lwp.pr_fpreg;
1429 /* Write the general-purpose registers back to the process or LWP
1430 corresponding to PI. Return non-zero for success, zero for
1434 proc_set_gregs (procinfo *pi)
1436 gdb_gregset_t *gregs;
1439 gregs = proc_get_gregs (pi);
1441 return 0; /* proc_get_regs has already warned. */
1443 if (pi->ctl_fd == 0 && open_procinfo_files (pi, FD_CTL) == 0)
1451 /* Use char array to avoid alignment issues. */
1452 char gregs[sizeof (gdb_gregset_t)];
1456 memcpy (&arg.gregs, gregs, sizeof (arg.gregs));
1457 win = (write (pi->ctl_fd, (void *) &arg, sizeof (arg)) == sizeof (arg));
1460 /* Policy: writing the registers invalidates our cache. */
1461 pi->gregs_valid = 0;
1465 /* Write the floating-pointer registers back to the process or LWP
1466 corresponding to PI. Return non-zero for success, zero for
1470 proc_set_fpregs (procinfo *pi)
1472 gdb_fpregset_t *fpregs;
1475 fpregs = proc_get_fpregs (pi);
1477 return 0; /* proc_get_fpregs has already warned. */
1479 if (pi->ctl_fd == 0 && open_procinfo_files (pi, FD_CTL) == 0)
1487 /* Use char array to avoid alignment issues. */
1488 char fpregs[sizeof (gdb_fpregset_t)];
1492 memcpy (&arg.fpregs, fpregs, sizeof (arg.fpregs));
1493 win = (write (pi->ctl_fd, (void *) &arg, sizeof (arg)) == sizeof (arg));
1496 /* Policy: writing the registers invalidates our cache. */
1497 pi->fpregs_valid = 0;
1501 /* Send a signal to the proc or lwp with the semantics of "kill()".
1502 Returns non-zero for success, zero for failure. */
1505 proc_kill (procinfo *pi, int signo)
1509 /* We might conceivably apply this operation to an LWP, and the
1510 LWP's ctl file descriptor might not be open. */
1512 if (pi->ctl_fd == 0 &&
1513 open_procinfo_files (pi, FD_CTL) == 0)
1519 procfs_ctl_t cmd[2];
1523 win = (write (pi->ctl_fd, (char *) &cmd, sizeof (cmd)) == sizeof (cmd));
1529 /* Find the pid of the process that started this one. Returns the
1530 parent process pid, or zero. */
1533 proc_parent_pid (procinfo *pi)
1535 /* We should never have to apply this operation to any procinfo
1536 except the one for the main process. If that ever changes for
1537 any reason, then take out the following clause and replace it
1538 with one that makes sure the ctl_fd is open. */
1541 pi = find_procinfo_or_die (pi->pid, 0);
1543 if (!pi->status_valid)
1544 if (!proc_get_status (pi))
1547 return pi->prstatus.pr_ppid;
1550 /* Convert a target address (a.k.a. CORE_ADDR) into a host address
1551 (a.k.a void pointer)! */
1554 procfs_address_to_host_pointer (CORE_ADDR addr)
1556 struct type *ptr_type = builtin_type (target_gdbarch ())->builtin_data_ptr;
1559 gdb_assert (sizeof (ptr) == TYPE_LENGTH (ptr_type));
1560 gdbarch_address_to_pointer (target_gdbarch (), ptr_type,
1561 (gdb_byte *) &ptr, addr);
1566 proc_set_watchpoint (procinfo *pi, CORE_ADDR addr, int len, int wflags)
1570 char watch[sizeof (prwatch_t)];
1574 /* NOTE: cagney/2003-02-01: Even more horrible hack. Need to
1575 convert a target address into something that can be stored in a
1576 native data structure. */
1577 pwatch.pr_vaddr = (uintptr_t) procfs_address_to_host_pointer (addr);
1578 pwatch.pr_size = len;
1579 pwatch.pr_wflags = wflags;
1581 memcpy (arg.watch, &pwatch, sizeof (prwatch_t));
1582 return (write (pi->ctl_fd, &arg, sizeof (arg)) == sizeof (arg));
1585 #if (defined(__i386__) || defined(__x86_64__)) && defined (sun)
1587 #include <sys/sysi86.h>
1589 /* The KEY is actually the value of the lower 16 bits of the GS
1590 register for the LWP that we're interested in. Returns the
1591 matching ssh struct (LDT entry). */
1594 proc_get_LDT_entry (procinfo *pi, int key)
1596 static struct ssd *ldt_entry = NULL;
1597 char pathname[MAX_PROC_NAME_SIZE];
1598 struct cleanup *old_chain = NULL;
1601 /* Allocate space for one LDT entry.
1602 This alloc must persist, because we return a pointer to it. */
1603 if (ldt_entry == NULL)
1604 ldt_entry = XNEW (struct ssd);
1606 /* Open the file descriptor for the LDT table. */
1607 sprintf (pathname, "/proc/%d/ldt", pi->pid);
1608 if ((fd = open_with_retry (pathname, O_RDONLY)) < 0)
1610 proc_warn (pi, "proc_get_LDT_entry (open)", __LINE__);
1613 /* Make sure it gets closed again! */
1614 old_chain = make_cleanup_close (fd);
1616 /* Now 'read' thru the table, find a match and return it. */
1617 while (read (fd, ldt_entry, sizeof (struct ssd)) == sizeof (struct ssd))
1619 if (ldt_entry->sel == 0 &&
1620 ldt_entry->bo == 0 &&
1621 ldt_entry->acc1 == 0 &&
1622 ldt_entry->acc2 == 0)
1623 break; /* end of table */
1624 /* If key matches, return this entry. */
1625 if (ldt_entry->sel == key)
1627 do_cleanups (old_chain);
1631 /* Loop ended, match not found. */
1632 do_cleanups (old_chain);
1636 /* Returns the pointer to the LDT entry of PTID. */
1639 procfs_find_LDT_entry (ptid_t ptid)
1641 gdb_gregset_t *gregs;
1645 /* Find procinfo for the lwp. */
1646 if ((pi = find_procinfo (ptid_get_pid (ptid), ptid_get_lwp (ptid))) == NULL)
1648 warning (_("procfs_find_LDT_entry: could not find procinfo for %d:%ld."),
1649 ptid_get_pid (ptid), ptid_get_lwp (ptid));
1652 /* get its general registers. */
1653 if ((gregs = proc_get_gregs (pi)) == NULL)
1655 warning (_("procfs_find_LDT_entry: could not read gregs for %d:%ld."),
1656 ptid_get_pid (ptid), ptid_get_lwp (ptid));
1659 /* Now extract the GS register's lower 16 bits. */
1660 key = (*gregs)[GS] & 0xffff;
1662 /* Find the matching entry and return it. */
1663 return proc_get_LDT_entry (pi, key);
1668 /* =============== END, non-thread part of /proc "MODULE" =============== */
1670 /* =================== Thread "MODULE" =================== */
1672 /* NOTE: you'll see more ifdefs and duplication of functions here,
1673 since there is a different way to do threads on every OS. */
1675 /* Returns the number of threads for the process. */
1678 proc_get_nthreads (procinfo *pi)
1680 if (!pi->status_valid)
1681 if (!proc_get_status (pi))
1684 /* Only works for the process procinfo, because the LWP procinfos do not
1685 get prstatus filled in. */
1686 if (pi->tid != 0) /* Find the parent process procinfo. */
1687 pi = find_procinfo_or_die (pi->pid, 0);
1688 return pi->prstatus.pr_nlwp;
1693 Return the ID of the thread that had an event of interest.
1694 (ie. the one that hit a breakpoint or other traced event). All
1695 other things being equal, this should be the ID of a thread that is
1696 currently executing. */
1699 proc_get_current_thread (procinfo *pi)
1701 /* Note: this should be applied to the root procinfo for the
1702 process, not to the procinfo for an LWP. If applied to the
1703 procinfo for an LWP, it will simply return that LWP's ID. In
1704 that case, find the parent process procinfo. */
1707 pi = find_procinfo_or_die (pi->pid, 0);
1709 if (!pi->status_valid)
1710 if (!proc_get_status (pi))
1713 return pi->prstatus.pr_lwp.pr_lwpid;
1716 /* Discover the IDs of all the threads within the process, and create
1717 a procinfo for each of them (chained to the parent). This
1718 unfortunately requires a different method on every OS. Returns
1719 non-zero for success, zero for failure. */
1722 proc_delete_dead_threads (procinfo *parent, procinfo *thread, void *ignore)
1724 if (thread && parent) /* sanity */
1726 thread->status_valid = 0;
1727 if (!proc_get_status (thread))
1728 destroy_one_procinfo (&parent->thread_list, thread);
1730 return 0; /* keep iterating */
1734 do_closedir_cleanup (void *dir)
1736 closedir ((DIR *) dir);
1740 proc_update_threads (procinfo *pi)
1742 char pathname[MAX_PROC_NAME_SIZE + 16];
1743 struct dirent *direntry;
1744 struct cleanup *old_chain = NULL;
1749 /* We should never have to apply this operation to any procinfo
1750 except the one for the main process. If that ever changes for
1751 any reason, then take out the following clause and replace it
1752 with one that makes sure the ctl_fd is open. */
1755 pi = find_procinfo_or_die (pi->pid, 0);
1757 proc_iterate_over_threads (pi, proc_delete_dead_threads, NULL);
1759 /* Note: this brute-force method was originally devised for Unixware
1760 (support removed since), and will also work on Solaris 2.6 and
1761 2.7. The original comment mentioned the existence of a much
1762 simpler and more elegant way to do this on Solaris, but didn't
1763 point out what that was. */
1765 strcpy (pathname, pi->pathname);
1766 strcat (pathname, "/lwp");
1767 if ((dirp = opendir (pathname)) == NULL)
1768 proc_error (pi, "update_threads, opendir", __LINE__);
1770 old_chain = make_cleanup (do_closedir_cleanup, dirp);
1771 while ((direntry = readdir (dirp)) != NULL)
1772 if (direntry->d_name[0] != '.') /* skip '.' and '..' */
1774 lwpid = atoi (&direntry->d_name[0]);
1775 if ((thread = create_procinfo (pi->pid, lwpid)) == NULL)
1776 proc_error (pi, "update_threads, create_procinfo", __LINE__);
1778 pi->threads_valid = 1;
1779 do_cleanups (old_chain);
1783 /* Given a pointer to a function, call that function once for each lwp
1784 in the procinfo list, until the function returns non-zero, in which
1785 event return the value returned by the function.
1787 Note: this function does NOT call update_threads. If you want to
1788 discover new threads first, you must call that function explicitly.
1789 This function just makes a quick pass over the currently-known
1792 PI is the parent process procinfo. FUNC is the per-thread
1793 function. PTR is an opaque parameter for function. Returns the
1794 first non-zero return value from the callee, or zero. */
1797 proc_iterate_over_threads (procinfo *pi,
1798 int (*func) (procinfo *, procinfo *, void *),
1801 procinfo *thread, *next;
1804 /* We should never have to apply this operation to any procinfo
1805 except the one for the main process. If that ever changes for
1806 any reason, then take out the following clause and replace it
1807 with one that makes sure the ctl_fd is open. */
1810 pi = find_procinfo_or_die (pi->pid, 0);
1812 for (thread = pi->thread_list; thread != NULL; thread = next)
1814 next = thread->next; /* In case thread is destroyed. */
1815 if ((retval = (*func) (pi, thread, ptr)) != 0)
1822 /* =================== END, Thread "MODULE" =================== */
1824 /* =================== END, /proc "MODULE" =================== */
1826 /* =================== GDB "MODULE" =================== */
1828 /* Here are all of the gdb target vector functions and their
1831 static ptid_t do_attach (ptid_t ptid);
1832 static void do_detach (int signo);
1833 static void proc_trace_syscalls_1 (procinfo *pi, int syscallnum,
1834 int entry_or_exit, int mode, int from_tty);
1836 /* Sets up the inferior to be debugged. Registers to trace signals,
1837 hardware faults, and syscalls. Note: does not set RLC flag: caller
1838 may want to customize that. Returns zero for success (note!
1839 unlike most functions in this module); on failure, returns the LINE
1840 NUMBER where it failed! */
1843 procfs_debug_inferior (procinfo *pi)
1845 fltset_t traced_faults;
1846 sigset_t traced_signals;
1847 sysset_t *traced_syscall_entries;
1848 sysset_t *traced_syscall_exits;
1851 /* Register to trace hardware faults in the child. */
1852 prfillset (&traced_faults); /* trace all faults... */
1853 prdelset (&traced_faults, FLTPAGE); /* except page fault. */
1854 if (!proc_set_traced_faults (pi, &traced_faults))
1857 /* Initially, register to trace all signals in the child. */
1858 prfillset (&traced_signals);
1859 if (!proc_set_traced_signals (pi, &traced_signals))
1863 /* Register to trace the 'exit' system call (on entry). */
1864 traced_syscall_entries = sysset_t_alloc (pi);
1865 premptyset (traced_syscall_entries);
1866 praddset (traced_syscall_entries, SYS_exit);
1867 praddset (traced_syscall_entries, SYS_lwp_exit);
1869 status = proc_set_traced_sysentry (pi, traced_syscall_entries);
1870 xfree (traced_syscall_entries);
1874 /* Method for tracing exec syscalls. */
1876 Not all systems with /proc have all the exec* syscalls with the same
1877 names. On the SGI, for example, there is no SYS_exec, but there
1878 *is* a SYS_execv. So, we try to account for that. */
1880 traced_syscall_exits = sysset_t_alloc (pi);
1881 premptyset (traced_syscall_exits);
1883 praddset (traced_syscall_exits, SYS_exec);
1885 praddset (traced_syscall_exits, SYS_execve);
1886 praddset (traced_syscall_exits, SYS_lwp_create);
1887 praddset (traced_syscall_exits, SYS_lwp_exit);
1889 status = proc_set_traced_sysexit (pi, traced_syscall_exits);
1890 xfree (traced_syscall_exits);
1898 procfs_attach (struct target_ops *ops, const char *args, int from_tty)
1903 pid = parse_pid_to_attach (args);
1905 if (pid == getpid ())
1906 error (_("Attaching GDB to itself is not a good idea..."));
1910 exec_file = get_exec_file (0);
1913 printf_filtered (_("Attaching to program `%s', %s\n"),
1914 exec_file, target_pid_to_str (pid_to_ptid (pid)));
1916 printf_filtered (_("Attaching to %s\n"),
1917 target_pid_to_str (pid_to_ptid (pid)));
1921 inferior_ptid = do_attach (pid_to_ptid (pid));
1922 if (!target_is_pushed (ops))
1927 procfs_detach (struct target_ops *ops, const char *args, int from_tty)
1930 int pid = ptid_get_pid (inferior_ptid);
1937 const char *exec_file;
1939 exec_file = get_exec_file (0);
1940 if (exec_file == NULL)
1943 printf_filtered (_("Detaching from program: %s, %s\n"), exec_file,
1944 target_pid_to_str (pid_to_ptid (pid)));
1945 gdb_flush (gdb_stdout);
1950 inferior_ptid = null_ptid;
1951 detach_inferior (pid);
1952 inf_child_maybe_unpush_target (ops);
1956 do_attach (ptid_t ptid)
1959 struct inferior *inf;
1963 if ((pi = create_procinfo (ptid_get_pid (ptid), 0)) == NULL)
1964 perror (_("procfs: out of memory in 'attach'"));
1966 if (!open_procinfo_files (pi, FD_CTL))
1968 fprintf_filtered (gdb_stderr, "procfs:%d -- ", __LINE__);
1969 sprintf (errmsg, "do_attach: couldn't open /proc file for process %d",
1970 ptid_get_pid (ptid));
1971 dead_procinfo (pi, errmsg, NOKILL);
1974 /* Stop the process (if it isn't already stopped). */
1975 if (proc_flags (pi) & (PR_STOPPED | PR_ISTOP))
1977 pi->was_stopped = 1;
1978 proc_prettyprint_why (proc_why (pi), proc_what (pi), 1);
1982 pi->was_stopped = 0;
1983 /* Set the process to run again when we close it. */
1984 if (!proc_set_run_on_last_close (pi))
1985 dead_procinfo (pi, "do_attach: couldn't set RLC.", NOKILL);
1987 /* Now stop the process. */
1988 if (!proc_stop_process (pi))
1989 dead_procinfo (pi, "do_attach: couldn't stop the process.", NOKILL);
1990 pi->ignore_next_sigstop = 1;
1992 /* Save some of the /proc state to be restored if we detach. */
1993 if (!proc_get_traced_faults (pi, &pi->saved_fltset))
1994 dead_procinfo (pi, "do_attach: couldn't save traced faults.", NOKILL);
1995 if (!proc_get_traced_signals (pi, &pi->saved_sigset))
1996 dead_procinfo (pi, "do_attach: couldn't save traced signals.", NOKILL);
1997 if (!proc_get_traced_sysentry (pi, pi->saved_entryset))
1998 dead_procinfo (pi, "do_attach: couldn't save traced syscall entries.",
2000 if (!proc_get_traced_sysexit (pi, pi->saved_exitset))
2001 dead_procinfo (pi, "do_attach: couldn't save traced syscall exits.",
2003 if (!proc_get_held_signals (pi, &pi->saved_sighold))
2004 dead_procinfo (pi, "do_attach: couldn't save held signals.", NOKILL);
2006 if ((fail = procfs_debug_inferior (pi)) != 0)
2007 dead_procinfo (pi, "do_attach: failed in procfs_debug_inferior", NOKILL);
2009 inf = current_inferior ();
2010 inferior_appeared (inf, pi->pid);
2011 /* Let GDB know that the inferior was attached. */
2012 inf->attach_flag = 1;
2014 /* Create a procinfo for the current lwp. */
2015 lwpid = proc_get_current_thread (pi);
2016 create_procinfo (pi->pid, lwpid);
2018 /* Add it to gdb's thread list. */
2019 ptid = ptid_build (pi->pid, lwpid, 0);
2026 do_detach (int signo)
2030 /* Find procinfo for the main process. */
2031 pi = find_procinfo_or_die (ptid_get_pid (inferior_ptid),
2032 0); /* FIXME: threads */
2034 if (!proc_set_current_signal (pi, signo))
2035 proc_warn (pi, "do_detach, set_current_signal", __LINE__);
2037 if (!proc_set_traced_signals (pi, &pi->saved_sigset))
2038 proc_warn (pi, "do_detach, set_traced_signal", __LINE__);
2040 if (!proc_set_traced_faults (pi, &pi->saved_fltset))
2041 proc_warn (pi, "do_detach, set_traced_faults", __LINE__);
2043 if (!proc_set_traced_sysentry (pi, pi->saved_entryset))
2044 proc_warn (pi, "do_detach, set_traced_sysentry", __LINE__);
2046 if (!proc_set_traced_sysexit (pi, pi->saved_exitset))
2047 proc_warn (pi, "do_detach, set_traced_sysexit", __LINE__);
2049 if (!proc_set_held_signals (pi, &pi->saved_sighold))
2050 proc_warn (pi, "do_detach, set_held_signals", __LINE__);
2052 if (signo || (proc_flags (pi) & (PR_STOPPED | PR_ISTOP)))
2053 if (signo || !(pi->was_stopped) ||
2054 query (_("Was stopped when attached, make it runnable again? ")))
2056 /* Clear any pending signal. */
2057 if (!proc_clear_current_fault (pi))
2058 proc_warn (pi, "do_detach, clear_current_fault", __LINE__);
2060 if (signo == 0 && !proc_clear_current_signal (pi))
2061 proc_warn (pi, "do_detach, clear_current_signal", __LINE__);
2063 if (!proc_set_run_on_last_close (pi))
2064 proc_warn (pi, "do_detach, set_rlc", __LINE__);
2067 destroy_procinfo (pi);
2070 /* Fetch register REGNUM from the inferior. If REGNUM is -1, do this
2073 ??? Is the following note still relevant? We can't get individual
2074 registers with the PT_GETREGS ptrace(2) request either, yet we
2075 don't bother with caching at all in that case.
2077 NOTE: Since the /proc interface cannot give us individual
2078 registers, we pay no attention to REGNUM, and just fetch them all.
2079 This results in the possibility that we will do unnecessarily many
2080 fetches, since we may be called repeatedly for individual
2081 registers. So we cache the results, and mark the cache invalid
2082 when the process is resumed. */
2085 procfs_fetch_registers (struct target_ops *ops,
2086 struct regcache *regcache, int regnum)
2088 gdb_gregset_t *gregs;
2090 ptid_t ptid = regcache_get_ptid (regcache);
2091 int pid = ptid_get_pid (ptid);
2092 int tid = ptid_get_lwp (ptid);
2093 struct gdbarch *gdbarch = regcache->arch ();
2095 pi = find_procinfo_or_die (pid, tid);
2098 error (_("procfs: fetch_registers failed to find procinfo for %s"),
2099 target_pid_to_str (ptid));
2101 gregs = proc_get_gregs (pi);
2103 proc_error (pi, "fetch_registers, get_gregs", __LINE__);
2105 supply_gregset (regcache, (const gdb_gregset_t *) gregs);
2107 if (gdbarch_fp0_regnum (gdbarch) >= 0) /* Do we have an FPU? */
2109 gdb_fpregset_t *fpregs;
2111 if ((regnum >= 0 && regnum < gdbarch_fp0_regnum (gdbarch))
2112 || regnum == gdbarch_pc_regnum (gdbarch)
2113 || regnum == gdbarch_sp_regnum (gdbarch))
2114 return; /* Not a floating point register. */
2116 fpregs = proc_get_fpregs (pi);
2118 proc_error (pi, "fetch_registers, get_fpregs", __LINE__);
2120 supply_fpregset (regcache, (const gdb_fpregset_t *) fpregs);
2124 /* Store register REGNUM back into the inferior. If REGNUM is -1, do
2125 this for all registers.
2127 NOTE: Since the /proc interface will not read individual registers,
2128 we will cache these requests until the process is resumed, and only
2129 then write them back to the inferior process.
2131 FIXME: is that a really bad idea? Have to think about cases where
2132 writing one register might affect the value of others, etc. */
2135 procfs_store_registers (struct target_ops *ops,
2136 struct regcache *regcache, int regnum)
2138 gdb_gregset_t *gregs;
2140 ptid_t ptid = regcache_get_ptid (regcache);
2141 int pid = ptid_get_pid (ptid);
2142 int tid = ptid_get_lwp (ptid);
2143 struct gdbarch *gdbarch = regcache->arch ();
2145 pi = find_procinfo_or_die (pid, tid);
2148 error (_("procfs: store_registers: failed to find procinfo for %s"),
2149 target_pid_to_str (ptid));
2151 gregs = proc_get_gregs (pi);
2153 proc_error (pi, "store_registers, get_gregs", __LINE__);
2155 fill_gregset (regcache, gregs, regnum);
2156 if (!proc_set_gregs (pi))
2157 proc_error (pi, "store_registers, set_gregs", __LINE__);
2159 if (gdbarch_fp0_regnum (gdbarch) >= 0) /* Do we have an FPU? */
2161 gdb_fpregset_t *fpregs;
2163 if ((regnum >= 0 && regnum < gdbarch_fp0_regnum (gdbarch))
2164 || regnum == gdbarch_pc_regnum (gdbarch)
2165 || regnum == gdbarch_sp_regnum (gdbarch))
2166 return; /* Not a floating point register. */
2168 fpregs = proc_get_fpregs (pi);
2170 proc_error (pi, "store_registers, get_fpregs", __LINE__);
2172 fill_fpregset (regcache, fpregs, regnum);
2173 if (!proc_set_fpregs (pi))
2174 proc_error (pi, "store_registers, set_fpregs", __LINE__);
2179 syscall_is_lwp_exit (procinfo *pi, int scall)
2181 if (scall == SYS_lwp_exit)
2187 syscall_is_exit (procinfo *pi, int scall)
2189 if (scall == SYS_exit)
2195 syscall_is_exec (procinfo *pi, int scall)
2198 if (scall == SYS_exec)
2201 if (scall == SYS_execve)
2207 syscall_is_lwp_create (procinfo *pi, int scall)
2209 if (scall == SYS_lwp_create)
2214 /* Retrieve the next stop event from the child process. If child has
2215 not stopped yet, wait for it to stop. Translate /proc eventcodes
2216 (or possibly wait eventcodes) into gdb internal event codes.
2217 Returns the id of process (and possibly thread) that incurred the
2218 event. Event codes are returned through a pointer parameter. */
2221 procfs_wait (struct target_ops *ops,
2222 ptid_t ptid, struct target_waitstatus *status, int options)
2224 /* First cut: loosely based on original version 2.1. */
2228 ptid_t retval, temp_ptid;
2229 int why, what, flags;
2236 retval = pid_to_ptid (-1);
2238 /* Find procinfo for main process. */
2239 pi = find_procinfo_or_die (ptid_get_pid (inferior_ptid), 0);
2242 /* We must assume that the status is stale now... */
2243 pi->status_valid = 0;
2244 pi->gregs_valid = 0;
2245 pi->fpregs_valid = 0;
2247 #if 0 /* just try this out... */
2248 flags = proc_flags (pi);
2249 why = proc_why (pi);
2250 if ((flags & PR_STOPPED) && (why == PR_REQUESTED))
2251 pi->status_valid = 0; /* re-read again, IMMEDIATELY... */
2253 /* If child is not stopped, wait for it to stop. */
2254 if (!(proc_flags (pi) & (PR_STOPPED | PR_ISTOP)) &&
2255 !proc_wait_for_stop (pi))
2257 /* wait_for_stop failed: has the child terminated? */
2258 if (errno == ENOENT)
2262 /* /proc file not found; presumably child has terminated. */
2263 wait_retval = wait (&wstat); /* "wait" for the child's exit. */
2266 if (wait_retval != ptid_get_pid (inferior_ptid))
2267 error (_("procfs: couldn't stop "
2268 "process %d: wait returned %d."),
2269 ptid_get_pid (inferior_ptid), wait_retval);
2270 /* FIXME: might I not just use waitpid?
2271 Or try find_procinfo to see if I know about this child? */
2272 retval = pid_to_ptid (wait_retval);
2274 else if (errno == EINTR)
2278 /* Unknown error from wait_for_stop. */
2279 proc_error (pi, "target_wait (wait_for_stop)", __LINE__);
2284 /* This long block is reached if either:
2285 a) the child was already stopped, or
2286 b) we successfully waited for the child with wait_for_stop.
2287 This block will analyze the /proc status, and translate it
2288 into a waitstatus for GDB.
2290 If we actually had to call wait because the /proc file
2291 is gone (child terminated), then we skip this block,
2292 because we already have a waitstatus. */
2294 flags = proc_flags (pi);
2295 why = proc_why (pi);
2296 what = proc_what (pi);
2298 if (flags & (PR_STOPPED | PR_ISTOP))
2300 /* If it's running async (for single_thread control),
2301 set it back to normal again. */
2302 if (flags & PR_ASYNC)
2303 if (!proc_unset_async (pi))
2304 proc_error (pi, "target_wait, unset_async", __LINE__);
2307 proc_prettyprint_why (why, what, 1);
2309 /* The 'pid' we will return to GDB is composed of
2310 the process ID plus the lwp ID. */
2311 retval = ptid_build (pi->pid, proc_get_current_thread (pi), 0);
2315 wstat = (what << 8) | 0177;
2318 if (syscall_is_lwp_exit (pi, what))
2320 if (print_thread_events)
2321 printf_unfiltered (_("[%s exited]\n"),
2322 target_pid_to_str (retval));
2323 delete_thread (retval);
2324 status->kind = TARGET_WAITKIND_SPURIOUS;
2327 else if (syscall_is_exit (pi, what))
2329 struct inferior *inf;
2331 /* Handle SYS_exit call only. */
2332 /* Stopped at entry to SYS_exit.
2333 Make it runnable, resume it, then use
2334 the wait system call to get its exit code.
2335 Proc_run_process always clears the current
2337 Then return its exit status. */
2338 pi->status_valid = 0;
2340 /* FIXME: what we should do is return
2341 TARGET_WAITKIND_SPURIOUS. */
2342 if (!proc_run_process (pi, 0, 0))
2343 proc_error (pi, "target_wait, run_process", __LINE__);
2345 inf = find_inferior_pid (pi->pid);
2346 if (inf->attach_flag)
2348 /* Don't call wait: simulate waiting for exit,
2349 return a "success" exit code. Bogus: what if
2350 it returns something else? */
2352 retval = inferior_ptid; /* ? ? ? */
2356 int temp = wait (&wstat);
2358 /* FIXME: shouldn't I make sure I get the right
2359 event from the right process? If (for
2360 instance) I have killed an earlier inferior
2361 process but failed to clean up after it
2362 somehow, I could get its termination event
2365 /* If wait returns -1, that's what we return
2368 retval = pid_to_ptid (temp);
2373 printf_filtered (_("procfs: trapped on entry to "));
2374 proc_prettyprint_syscall (proc_what (pi), 0);
2375 printf_filtered ("\n");
2377 long i, nsysargs, *sysargs;
2379 if ((nsysargs = proc_nsysarg (pi)) > 0 &&
2380 (sysargs = proc_sysargs (pi)) != NULL)
2382 printf_filtered (_("%ld syscall arguments:\n"),
2384 for (i = 0; i < nsysargs; i++)
2385 printf_filtered ("#%ld: 0x%08lx\n",
2391 /* How to exit gracefully, returning "unknown
2393 status->kind = TARGET_WAITKIND_SPURIOUS;
2394 return inferior_ptid;
2398 /* How to keep going without returning to wfi: */
2399 target_continue_no_signal (ptid);
2405 if (syscall_is_exec (pi, what))
2407 /* Hopefully this is our own "fork-child" execing
2408 the real child. Hoax this event into a trap, and
2409 GDB will see the child about to execute its start
2411 wstat = (SIGTRAP << 8) | 0177;
2413 else if (syscall_is_lwp_create (pi, what))
2415 /* This syscall is somewhat like fork/exec. We
2416 will get the event twice: once for the parent
2417 LWP, and once for the child. We should already
2418 know about the parent LWP, but the child will
2419 be new to us. So, whenever we get this event,
2420 if it represents a new thread, simply add the
2421 thread to the list. */
2423 /* If not in procinfo list, add it. */
2424 temp_tid = proc_get_current_thread (pi);
2425 if (!find_procinfo (pi->pid, temp_tid))
2426 create_procinfo (pi->pid, temp_tid);
2428 temp_ptid = ptid_build (pi->pid, temp_tid, 0);
2429 /* If not in GDB's thread list, add it. */
2430 if (!in_thread_list (temp_ptid))
2431 add_thread (temp_ptid);
2433 /* Return to WFI, but tell it to immediately resume. */
2434 status->kind = TARGET_WAITKIND_SPURIOUS;
2435 return inferior_ptid;
2437 else if (syscall_is_lwp_exit (pi, what))
2439 if (print_thread_events)
2440 printf_unfiltered (_("[%s exited]\n"),
2441 target_pid_to_str (retval));
2442 delete_thread (retval);
2443 status->kind = TARGET_WAITKIND_SPURIOUS;
2448 /* FIXME: Do we need to handle SYS_sproc,
2449 SYS_fork, or SYS_vfork here? The old procfs
2450 seemed to use this event to handle threads on
2451 older (non-LWP) systems, where I'm assuming
2452 that threads were actually separate processes.
2453 Irix, maybe? Anyway, low priority for now. */
2457 printf_filtered (_("procfs: trapped on exit from "));
2458 proc_prettyprint_syscall (proc_what (pi), 0);
2459 printf_filtered ("\n");
2461 long i, nsysargs, *sysargs;
2463 if ((nsysargs = proc_nsysarg (pi)) > 0 &&
2464 (sysargs = proc_sysargs (pi)) != NULL)
2466 printf_filtered (_("%ld syscall arguments:\n"),
2468 for (i = 0; i < nsysargs; i++)
2469 printf_filtered ("#%ld: 0x%08lx\n",
2473 status->kind = TARGET_WAITKIND_SPURIOUS;
2474 return inferior_ptid;
2479 wstat = (SIGSTOP << 8) | 0177;
2484 printf_filtered (_("Retry #%d:\n"), retry);
2485 pi->status_valid = 0;
2490 /* If not in procinfo list, add it. */
2491 temp_tid = proc_get_current_thread (pi);
2492 if (!find_procinfo (pi->pid, temp_tid))
2493 create_procinfo (pi->pid, temp_tid);
2495 /* If not in GDB's thread list, add it. */
2496 temp_ptid = ptid_build (pi->pid, temp_tid, 0);
2497 if (!in_thread_list (temp_ptid))
2498 add_thread (temp_ptid);
2500 status->kind = TARGET_WAITKIND_STOPPED;
2501 status->value.sig = GDB_SIGNAL_0;
2506 wstat = (what << 8) | 0177;
2511 wstat = (SIGTRAP << 8) | 0177;
2513 /* FIXME: use si_signo where possible. */
2516 wstat = (SIGILL << 8) | 0177;
2520 wstat = (SIGTRAP << 8) | 0177;
2525 wstat = (SIGSEGV << 8) | 0177;
2530 wstat = (SIGFPE << 8) | 0177;
2532 case FLTPAGE: /* Recoverable page fault */
2533 default: /* FIXME: use si_signo if possible for
2535 retval = pid_to_ptid (-1);
2536 printf_filtered ("procfs:%d -- ", __LINE__);
2537 printf_filtered (_("child stopped for unknown reason:\n"));
2538 proc_prettyprint_why (why, what, 1);
2539 error (_("... giving up..."));
2542 break; /* case PR_FAULTED: */
2543 default: /* switch (why) unmatched */
2544 printf_filtered ("procfs:%d -- ", __LINE__);
2545 printf_filtered (_("child stopped for unknown reason:\n"));
2546 proc_prettyprint_why (why, what, 1);
2547 error (_("... giving up..."));
2550 /* Got this far without error: If retval isn't in the
2551 threads database, add it. */
2552 if (ptid_get_pid (retval) > 0 &&
2553 !ptid_equal (retval, inferior_ptid) &&
2554 !in_thread_list (retval))
2556 /* We have a new thread. We need to add it both to
2557 GDB's list and to our own. If we don't create a
2558 procinfo, resume may be unhappy later. */
2559 add_thread (retval);
2560 if (find_procinfo (ptid_get_pid (retval),
2561 ptid_get_lwp (retval)) == NULL)
2562 create_procinfo (ptid_get_pid (retval),
2563 ptid_get_lwp (retval));
2566 else /* Flags do not indicate STOPPED. */
2568 /* surely this can't happen... */
2569 printf_filtered ("procfs:%d -- process not stopped.\n",
2571 proc_prettyprint_flags (flags, 1);
2572 error (_("procfs: ...giving up..."));
2577 store_waitstatus (status, wstat);
2583 /* Perform a partial transfer to/from the specified object. For
2584 memory transfers, fall back to the old memory xfer functions. */
2586 static enum target_xfer_status
2587 procfs_xfer_partial (struct target_ops *ops, enum target_object object,
2588 const char *annex, gdb_byte *readbuf,
2589 const gdb_byte *writebuf, ULONGEST offset, ULONGEST len,
2590 ULONGEST *xfered_len)
2594 case TARGET_OBJECT_MEMORY:
2595 return procfs_xfer_memory (readbuf, writebuf, offset, len, xfered_len);
2597 case TARGET_OBJECT_AUXV:
2598 return memory_xfer_auxv (ops, object, annex, readbuf, writebuf,
2599 offset, len, xfered_len);
2602 return ops->beneath->to_xfer_partial (ops->beneath, object, annex,
2603 readbuf, writebuf, offset, len,
2608 /* Helper for procfs_xfer_partial that handles memory transfers.
2609 Arguments are like target_xfer_partial. */
2611 static enum target_xfer_status
2612 procfs_xfer_memory (gdb_byte *readbuf, const gdb_byte *writebuf,
2613 ULONGEST memaddr, ULONGEST len, ULONGEST *xfered_len)
2618 /* Find procinfo for main process. */
2619 pi = find_procinfo_or_die (ptid_get_pid (inferior_ptid), 0);
2620 if (pi->as_fd == 0 &&
2621 open_procinfo_files (pi, FD_AS) == 0)
2623 proc_warn (pi, "xfer_memory, open_proc_files", __LINE__);
2624 return TARGET_XFER_E_IO;
2627 if (lseek (pi->as_fd, (off_t) memaddr, SEEK_SET) != (off_t) memaddr)
2628 return TARGET_XFER_E_IO;
2630 if (writebuf != NULL)
2632 PROCFS_NOTE ("write memory:\n");
2633 nbytes = write (pi->as_fd, writebuf, len);
2637 PROCFS_NOTE ("read memory:\n");
2638 nbytes = read (pi->as_fd, readbuf, len);
2641 return TARGET_XFER_E_IO;
2642 *xfered_len = nbytes;
2643 return TARGET_XFER_OK;
2646 /* Called by target_resume before making child runnable. Mark cached
2647 registers and status's invalid. If there are "dirty" caches that
2648 need to be written back to the child process, do that.
2650 File descriptors are also cached. As they are a limited resource,
2651 we cannot hold onto them indefinitely. However, as they are
2652 expensive to open, we don't want to throw them away
2653 indescriminately either. As a compromise, we will keep the file
2654 descriptors for the parent process, but discard any file
2655 descriptors we may have accumulated for the threads.
2657 As this function is called by iterate_over_threads, it always
2658 returns zero (so that iterate_over_threads will keep
2662 invalidate_cache (procinfo *parent, procinfo *pi, void *ptr)
2664 /* About to run the child; invalidate caches and do any other
2668 if (pi->gregs_dirty)
2669 if (parent == NULL ||
2670 proc_get_current_thread (parent) != pi->tid)
2671 if (!proc_set_gregs (pi)) /* flush gregs cache */
2672 proc_warn (pi, "target_resume, set_gregs",
2674 if (gdbarch_fp0_regnum (target_gdbarch ()) >= 0)
2675 if (pi->fpregs_dirty)
2676 if (parent == NULL ||
2677 proc_get_current_thread (parent) != pi->tid)
2678 if (!proc_set_fpregs (pi)) /* flush fpregs cache */
2679 proc_warn (pi, "target_resume, set_fpregs",
2685 /* The presence of a parent indicates that this is an LWP.
2686 Close any file descriptors that it might have open.
2687 We don't do this to the master (parent) procinfo. */
2689 close_procinfo_files (pi);
2691 pi->gregs_valid = 0;
2692 pi->fpregs_valid = 0;
2694 pi->gregs_dirty = 0;
2695 pi->fpregs_dirty = 0;
2697 pi->status_valid = 0;
2698 pi->threads_valid = 0;
2704 /* A callback function for iterate_over_threads. Find the
2705 asynchronous signal thread, and make it runnable. See if that
2706 helps matters any. */
2709 make_signal_thread_runnable (procinfo *process, procinfo *pi, void *ptr)
2712 if (proc_flags (pi) & PR_ASLWP)
2714 if (!proc_run_process (pi, 0, -1))
2715 proc_error (pi, "make_signal_thread_runnable", __LINE__);
2723 /* Make the child process runnable. Normally we will then call
2724 procfs_wait and wait for it to stop again (unless gdb is async).
2726 If STEP is true, then arrange for the child to stop again after
2727 executing a single instruction. If SIGNO is zero, then cancel any
2728 pending signal; if non-zero, then arrange for the indicated signal
2729 to be delivered to the child when it runs. If PID is -1, then
2730 allow any child thread to run; if non-zero, then allow only the
2731 indicated thread to run. (not implemented yet). */
2734 procfs_resume (struct target_ops *ops,
2735 ptid_t ptid, int step, enum gdb_signal signo)
2737 procinfo *pi, *thread;
2741 prrun.prflags |= PRSVADDR;
2742 prrun.pr_vaddr = $PC; set resume address
2743 prrun.prflags |= PRSTRACE; trace signals in pr_trace (all)
2744 prrun.prflags |= PRSFAULT; trace faults in pr_fault (all but PAGE)
2745 prrun.prflags |= PRCFAULT; clear current fault.
2747 PRSTRACE and PRSFAULT can be done by other means
2748 (proc_trace_signals, proc_trace_faults)
2749 PRSVADDR is unnecessary.
2750 PRCFAULT may be replaced by a PIOCCFAULT call (proc_clear_current_fault)
2751 This basically leaves PRSTEP and PRCSIG.
2752 PRCSIG is like PIOCSSIG (proc_clear_current_signal).
2753 So basically PR_STEP is the sole argument that must be passed
2754 to proc_run_process (for use in the prrun struct by ioctl). */
2756 /* Find procinfo for main process. */
2757 pi = find_procinfo_or_die (ptid_get_pid (inferior_ptid), 0);
2759 /* First cut: ignore pid argument. */
2762 /* Convert signal to host numbering. */
2764 (signo == GDB_SIGNAL_STOP && pi->ignore_next_sigstop))
2767 native_signo = gdb_signal_to_host (signo);
2769 pi->ignore_next_sigstop = 0;
2771 /* Running the process voids all cached registers and status. */
2772 /* Void the threads' caches first. */
2773 proc_iterate_over_threads (pi, invalidate_cache, NULL);
2774 /* Void the process procinfo's caches. */
2775 invalidate_cache (NULL, pi, NULL);
2777 if (ptid_get_pid (ptid) != -1)
2779 /* Resume a specific thread, presumably suppressing the
2781 thread = find_procinfo (ptid_get_pid (ptid), ptid_get_lwp (ptid));
2784 if (thread->tid != 0)
2786 /* We're to resume a specific thread, and not the
2787 others. Set the child process's PR_ASYNC flag. */
2788 if (!proc_set_async (pi))
2789 proc_error (pi, "target_resume, set_async", __LINE__);
2791 proc_iterate_over_threads (pi,
2792 make_signal_thread_runnable,
2795 pi = thread; /* Substitute the thread's procinfo
2801 if (!proc_run_process (pi, step, native_signo))
2804 warning (_("resume: target already running. "
2805 "Pretend to resume, and hope for the best!"));
2807 proc_error (pi, "target_resume", __LINE__);
2811 /* Set up to trace signals in the child process. */
2814 procfs_pass_signals (struct target_ops *self,
2815 int numsigs, unsigned char *pass_signals)
2818 procinfo *pi = find_procinfo_or_die (ptid_get_pid (inferior_ptid), 0);
2821 prfillset (&signals);
2823 for (signo = 0; signo < NSIG; signo++)
2825 int target_signo = gdb_signal_from_host (signo);
2826 if (target_signo < numsigs && pass_signals[target_signo])
2827 prdelset (&signals, signo);
2830 if (!proc_set_traced_signals (pi, &signals))
2831 proc_error (pi, "pass_signals", __LINE__);
2834 /* Print status information about the child process. */
2837 procfs_files_info (struct target_ops *ignore)
2839 struct inferior *inf = current_inferior ();
2841 printf_filtered (_("\tUsing the running image of %s %s via /proc.\n"),
2842 inf->attach_flag? "attached": "child",
2843 target_pid_to_str (inferior_ptid));
2846 /* Stop the child process asynchronously, as when the gdb user types
2847 control-c or presses a "stop" button. Works by sending
2848 kill(SIGINT) to the child's process group. */
2851 procfs_interrupt (struct target_ops *self, ptid_t ptid)
2853 kill (-inferior_process_group (), SIGINT);
2856 /* Make it die. Wait for it to die. Clean up after it. Note: this
2857 should only be applied to the real process, not to an LWP, because
2858 of the check for parent-process. If we need this to work for an
2859 LWP, it needs some more logic. */
2862 unconditionally_kill_inferior (procinfo *pi)
2866 parent_pid = proc_parent_pid (pi);
2867 if (!proc_kill (pi, SIGKILL))
2868 proc_error (pi, "unconditionally_kill, proc_kill", __LINE__);
2869 destroy_procinfo (pi);
2871 /* If pi is GDB's child, wait for it to die. */
2872 if (parent_pid == getpid ())
2873 /* FIXME: should we use waitpid to make sure we get the right event?
2874 Should we check the returned event? */
2879 ret = waitpid (pi->pid, &status, 0);
2886 /* We're done debugging it, and we want it to go away. Then we want
2887 GDB to forget all about it. */
2890 procfs_kill_inferior (struct target_ops *ops)
2892 if (!ptid_equal (inferior_ptid, null_ptid)) /* ? */
2894 /* Find procinfo for main process. */
2895 procinfo *pi = find_procinfo (ptid_get_pid (inferior_ptid), 0);
2898 unconditionally_kill_inferior (pi);
2899 target_mourn_inferior (inferior_ptid);
2903 /* Forget we ever debugged this thing! */
2906 procfs_mourn_inferior (struct target_ops *ops)
2910 if (!ptid_equal (inferior_ptid, null_ptid))
2912 /* Find procinfo for main process. */
2913 pi = find_procinfo (ptid_get_pid (inferior_ptid), 0);
2915 destroy_procinfo (pi);
2918 generic_mourn_inferior ();
2920 inf_child_maybe_unpush_target (ops);
2923 /* When GDB forks to create a runnable inferior process, this function
2924 is called on the parent side of the fork. It's job is to do
2925 whatever is necessary to make the child ready to be debugged, and
2926 then wait for the child to synchronize. */
2929 procfs_init_inferior (struct target_ops *ops, int pid)
2936 /* This routine called on the parent side (GDB side)
2937 after GDB forks the inferior. */
2938 if (!target_is_pushed (ops))
2941 if ((pi = create_procinfo (pid, 0)) == NULL)
2942 perror (_("procfs: out of memory in 'init_inferior'"));
2944 if (!open_procinfo_files (pi, FD_CTL))
2945 proc_error (pi, "init_inferior, open_proc_files", __LINE__);
2949 open_procinfo_files // done
2952 procfs_notice_signals
2959 /* If not stopped yet, wait for it to stop. */
2960 if (!(proc_flags (pi) & PR_STOPPED) &&
2961 !(proc_wait_for_stop (pi)))
2962 dead_procinfo (pi, "init_inferior: wait_for_stop failed", KILL);
2964 /* Save some of the /proc state to be restored if we detach. */
2965 /* FIXME: Why? In case another debugger was debugging it?
2966 We're it's parent, for Ghu's sake! */
2967 if (!proc_get_traced_signals (pi, &pi->saved_sigset))
2968 proc_error (pi, "init_inferior, get_traced_signals", __LINE__);
2969 if (!proc_get_held_signals (pi, &pi->saved_sighold))
2970 proc_error (pi, "init_inferior, get_held_signals", __LINE__);
2971 if (!proc_get_traced_faults (pi, &pi->saved_fltset))
2972 proc_error (pi, "init_inferior, get_traced_faults", __LINE__);
2973 if (!proc_get_traced_sysentry (pi, pi->saved_entryset))
2974 proc_error (pi, "init_inferior, get_traced_sysentry", __LINE__);
2975 if (!proc_get_traced_sysexit (pi, pi->saved_exitset))
2976 proc_error (pi, "init_inferior, get_traced_sysexit", __LINE__);
2978 if ((fail = procfs_debug_inferior (pi)) != 0)
2979 proc_error (pi, "init_inferior (procfs_debug_inferior)", fail);
2981 /* FIXME: logically, we should really be turning OFF run-on-last-close,
2982 and possibly even turning ON kill-on-last-close at this point. But
2983 I can't make that change without careful testing which I don't have
2984 time to do right now... */
2985 /* Turn on run-on-last-close flag so that the child
2986 will die if GDB goes away for some reason. */
2987 if (!proc_set_run_on_last_close (pi))
2988 proc_error (pi, "init_inferior, set_RLC", __LINE__);
2990 /* We now have have access to the lwpid of the main thread/lwp. */
2991 lwpid = proc_get_current_thread (pi);
2993 /* Create a procinfo for the main lwp. */
2994 create_procinfo (pid, lwpid);
2996 /* We already have a main thread registered in the thread table at
2997 this point, but it didn't have any lwp info yet. Notify the core
2998 about it. This changes inferior_ptid as well. */
2999 thread_change_ptid (pid_to_ptid (pid),
3000 ptid_build (pid, lwpid, 0));
3002 gdb_startup_inferior (pid, START_INFERIOR_TRAPS_EXPECTED);
3005 /* When GDB forks to create a new process, this function is called on
3006 the child side of the fork before GDB exec's the user program. Its
3007 job is to make the child minimally debuggable, so that the parent
3008 GDB process can connect to the child and take over. This function
3009 should do only the minimum to make that possible, and to
3010 synchronize with the parent process. The parent process should
3011 take care of the details. */
3014 procfs_set_exec_trap (void)
3016 /* This routine called on the child side (inferior side)
3017 after GDB forks the inferior. It must use only local variables,
3018 because it may be sharing data space with its parent. */
3023 if ((pi = create_procinfo (getpid (), 0)) == NULL)
3024 perror_with_name (_("procfs: create_procinfo failed in child."));
3026 if (open_procinfo_files (pi, FD_CTL) == 0)
3028 proc_warn (pi, "set_exec_trap, open_proc_files", __LINE__);
3029 gdb_flush (gdb_stderr);
3030 /* No need to call "dead_procinfo", because we're going to
3035 /* Method for tracing exec syscalls. */
3037 Not all systems with /proc have all the exec* syscalls with the same
3038 names. On the SGI, for example, there is no SYS_exec, but there
3039 *is* a SYS_execv. So, we try to account for that. */
3041 exitset = sysset_t_alloc (pi);
3042 premptyset (exitset);
3044 praddset (exitset, SYS_exec);
3046 praddset (exitset, SYS_execve);
3048 if (!proc_set_traced_sysexit (pi, exitset))
3050 proc_warn (pi, "set_exec_trap, set_traced_sysexit", __LINE__);
3051 gdb_flush (gdb_stderr);
3055 /* FIXME: should this be done in the parent instead? */
3056 /* Turn off inherit on fork flag so that all grand-children
3057 of gdb start with tracing flags cleared. */
3058 if (!proc_unset_inherit_on_fork (pi))
3059 proc_warn (pi, "set_exec_trap, unset_inherit", __LINE__);
3061 /* Turn off run on last close flag, so that the child process
3062 cannot run away just because we close our handle on it.
3063 We want it to wait for the parent to attach. */
3064 if (!proc_unset_run_on_last_close (pi))
3065 proc_warn (pi, "set_exec_trap, unset_RLC", __LINE__);
3067 /* FIXME: No need to destroy the procinfo --
3068 we have our own address space, and we're about to do an exec! */
3069 /*destroy_procinfo (pi);*/
3072 /* This function is called BEFORE gdb forks the inferior process. Its
3073 only real responsibility is to set things up for the fork, and tell
3074 GDB which two functions to call after the fork (one for the parent,
3075 and one for the child).
3077 This function does a complicated search for a unix shell program,
3078 which it then uses to parse arguments and environment variables to
3079 be sent to the child. I wonder whether this code could not be
3080 abstracted out and shared with other unix targets such as
3084 procfs_create_inferior (struct target_ops *ops, const char *exec_file,
3085 const std::string &allargs, char **env, int from_tty)
3087 char *shell_file = getenv ("SHELL");
3091 if (shell_file != NULL && strchr (shell_file, '/') == NULL)
3094 /* We will be looking down the PATH to find shell_file. If we
3095 just do this the normal way (via execlp, which operates by
3096 attempting an exec for each element of the PATH until it
3097 finds one which succeeds), then there will be an exec for
3098 each failed attempt, each of which will cause a PR_SYSEXIT
3099 stop, and we won't know how to distinguish the PR_SYSEXIT's
3100 for these failed execs with the ones for successful execs
3101 (whether the exec has succeeded is stored at that time in the
3102 carry bit or some such architecture-specific and
3103 non-ABI-specified place).
3105 So I can't think of anything better than to search the PATH
3106 now. This has several disadvantages: (1) There is a race
3107 condition; if we find a file now and it is deleted before we
3108 exec it, we lose, even if the deletion leaves a valid file
3109 further down in the PATH, (2) there is no way to know exactly
3110 what an executable (in the sense of "capable of being
3111 exec'd") file is. Using access() loses because it may lose
3112 if the caller is the superuser; failing to use it loses if
3113 there are ACLs or some such. */
3117 /* FIXME-maybe: might want "set path" command so user can change what
3118 path is used from within GDB. */
3119 const char *path = getenv ("PATH");
3121 struct stat statbuf;
3124 path = "/bin:/usr/bin";
3126 tryname = (char *) alloca (strlen (path) + strlen (shell_file) + 2);
3127 for (p = path; p != NULL; p = p1 ? p1 + 1: NULL)
3129 p1 = strchr (p, ':');
3134 strncpy (tryname, p, len);
3135 tryname[len] = '\0';
3136 strcat (tryname, "/");
3137 strcat (tryname, shell_file);
3138 if (access (tryname, X_OK) < 0)
3140 if (stat (tryname, &statbuf) < 0)
3142 if (!S_ISREG (statbuf.st_mode))
3143 /* We certainly need to reject directories. I'm not quite
3144 as sure about FIFOs, sockets, etc., but I kind of doubt
3145 that people want to exec() these things. */
3150 /* Not found. This must be an error rather than merely passing
3151 the file to execlp(), because execlp() would try all the
3152 exec()s, causing GDB to get confused. */
3153 error (_("procfs:%d -- Can't find shell %s in PATH"),
3154 __LINE__, shell_file);
3156 shell_file = tryname;
3159 pid = fork_inferior (exec_file, allargs, env, procfs_set_exec_trap,
3160 NULL, NULL, shell_file, NULL);
3162 /* We have something that executes now. We'll be running through
3163 the shell at this point (if startup-with-shell is true), but the
3164 pid shouldn't change. */
3165 add_thread_silent (pid_to_ptid (pid));
3167 procfs_init_inferior (ops, pid);
3170 /* An observer for the "inferior_created" event. */
3173 procfs_inferior_created (struct target_ops *ops, int from_tty)
3177 /* Callback for update_thread_list. Calls "add_thread". */
3180 procfs_notice_thread (procinfo *pi, procinfo *thread, void *ptr)
3182 ptid_t gdb_threadid = ptid_build (pi->pid, thread->tid, 0);
3184 if (!in_thread_list (gdb_threadid) || is_exited (gdb_threadid))
3185 add_thread (gdb_threadid);
3190 /* Query all the threads that the target knows about, and give them
3191 back to GDB to add to its list. */
3194 procfs_update_thread_list (struct target_ops *ops)
3200 /* Find procinfo for main process. */
3201 pi = find_procinfo_or_die (ptid_get_pid (inferior_ptid), 0);
3202 proc_update_threads (pi);
3203 proc_iterate_over_threads (pi, procfs_notice_thread, NULL);
3206 /* Return true if the thread is still 'alive'. This guy doesn't
3207 really seem to be doing his job. Got to investigate how to tell
3208 when a thread is really gone. */
3211 procfs_thread_alive (struct target_ops *ops, ptid_t ptid)
3216 proc = ptid_get_pid (ptid);
3217 thread = ptid_get_lwp (ptid);
3218 /* If I don't know it, it ain't alive! */
3219 if ((pi = find_procinfo (proc, thread)) == NULL)
3222 /* If I can't get its status, it ain't alive!
3223 What's more, I need to forget about it! */
3224 if (!proc_get_status (pi))
3226 destroy_procinfo (pi);
3229 /* I couldn't have got its status if it weren't alive, so it's
3234 /* Convert PTID to a string. Returns the string in a static
3238 procfs_pid_to_str (struct target_ops *ops, ptid_t ptid)
3240 static char buf[80];
3242 if (ptid_get_lwp (ptid) == 0)
3243 sprintf (buf, "process %d", ptid_get_pid (ptid));
3245 sprintf (buf, "LWP %ld", ptid_get_lwp (ptid));
3250 /* Insert a watchpoint. */
3253 procfs_set_watchpoint (ptid_t ptid, CORE_ADDR addr, int len, int rwflag,
3259 pi = find_procinfo_or_die (ptid_get_pid (ptid) == -1 ?
3260 ptid_get_pid (inferior_ptid) : ptid_get_pid (ptid),
3263 /* Translate from GDB's flags to /proc's. */
3264 if (len > 0) /* len == 0 means delete watchpoint. */
3266 switch (rwflag) { /* FIXME: need an enum! */
3267 case hw_write: /* default watchpoint (write) */
3268 pflags = WRITE_WATCHFLAG;
3270 case hw_read: /* read watchpoint */
3271 pflags = READ_WATCHFLAG;
3273 case hw_access: /* access watchpoint */
3274 pflags = READ_WATCHFLAG | WRITE_WATCHFLAG;
3276 case hw_execute: /* execution HW breakpoint */
3277 pflags = EXEC_WATCHFLAG;
3279 default: /* Something weird. Return error. */
3282 if (after) /* Stop after r/w access is completed. */
3283 pflags |= AFTER_WATCHFLAG;
3286 if (!proc_set_watchpoint (pi, addr, len, pflags))
3288 if (errno == E2BIG) /* Typical error for no resources. */
3289 return -1; /* fail */
3290 /* GDB may try to remove the same watchpoint twice.
3291 If a remove request returns no match, don't error. */
3292 if (errno == ESRCH && len == 0)
3293 return 0; /* ignore */
3294 proc_error (pi, "set_watchpoint", __LINE__);
3299 /* Return non-zero if we can set a hardware watchpoint of type TYPE. TYPE
3300 is one of bp_hardware_watchpoint, bp_read_watchpoint, bp_write_watchpoint,
3301 or bp_hardware_watchpoint. CNT is the number of watchpoints used so
3304 Note: procfs_can_use_hw_breakpoint() is not yet used by all
3305 procfs.c targets due to the fact that some of them still define
3306 target_can_use_hardware_watchpoint. */
3309 procfs_can_use_hw_breakpoint (struct target_ops *self,
3311 int cnt, int othertype)
3313 /* Due to the way that proc_set_watchpoint() is implemented, host
3314 and target pointers must be of the same size. If they are not,
3315 we can't use hardware watchpoints. This limitation is due to the
3316 fact that proc_set_watchpoint() calls
3317 procfs_address_to_host_pointer(); a close inspection of
3318 procfs_address_to_host_pointer will reveal that an internal error
3319 will be generated when the host and target pointer sizes are
3321 struct type *ptr_type = builtin_type (target_gdbarch ())->builtin_data_ptr;
3323 if (sizeof (void *) != TYPE_LENGTH (ptr_type))
3326 /* Other tests here??? */
3331 /* Returns non-zero if process is stopped on a hardware watchpoint
3332 fault, else returns zero. */
3335 procfs_stopped_by_watchpoint (struct target_ops *ops)
3339 pi = find_procinfo_or_die (ptid_get_pid (inferior_ptid), 0);
3341 if (proc_flags (pi) & (PR_STOPPED | PR_ISTOP))
3343 if (proc_why (pi) == PR_FAULTED)
3345 if (proc_what (pi) == FLTWATCH)
3352 /* Returns 1 if the OS knows the position of the triggered watchpoint,
3353 and sets *ADDR to that address. Returns 0 if OS cannot report that
3354 address. This function is only called if
3355 procfs_stopped_by_watchpoint returned 1, thus no further checks are
3356 done. The function also assumes that ADDR is not NULL. */
3359 procfs_stopped_data_address (struct target_ops *targ, CORE_ADDR *addr)
3363 pi = find_procinfo_or_die (ptid_get_pid (inferior_ptid), 0);
3364 return proc_watchpoint_address (pi, addr);
3368 procfs_insert_watchpoint (struct target_ops *self,
3369 CORE_ADDR addr, int len,
3370 enum target_hw_bp_type type,
3371 struct expression *cond)
3373 if (!target_have_steppable_watchpoint
3374 && !gdbarch_have_nonsteppable_watchpoint (target_gdbarch ()))
3376 /* When a hardware watchpoint fires off the PC will be left at
3377 the instruction following the one which caused the
3378 watchpoint. It will *NOT* be necessary for GDB to step over
3380 return procfs_set_watchpoint (inferior_ptid, addr, len, type, 1);
3384 /* When a hardware watchpoint fires off the PC will be left at
3385 the instruction which caused the watchpoint. It will be
3386 necessary for GDB to step over the watchpoint. */
3387 return procfs_set_watchpoint (inferior_ptid, addr, len, type, 0);
3392 procfs_remove_watchpoint (struct target_ops *self,
3393 CORE_ADDR addr, int len,
3394 enum target_hw_bp_type type,
3395 struct expression *cond)
3397 return procfs_set_watchpoint (inferior_ptid, addr, 0, 0, 0);
3401 procfs_region_ok_for_hw_watchpoint (struct target_ops *self,
3402 CORE_ADDR addr, int len)
3404 /* The man page for proc(4) on Solaris 2.6 and up says that the
3405 system can support "thousands" of hardware watchpoints, but gives
3406 no method for finding out how many; It doesn't say anything about
3407 the allowed size for the watched area either. So we just tell
3413 procfs_use_watchpoints (struct target_ops *t)
3415 t->to_stopped_by_watchpoint = procfs_stopped_by_watchpoint;
3416 t->to_insert_watchpoint = procfs_insert_watchpoint;
3417 t->to_remove_watchpoint = procfs_remove_watchpoint;
3418 t->to_region_ok_for_hw_watchpoint = procfs_region_ok_for_hw_watchpoint;
3419 t->to_can_use_hw_breakpoint = procfs_can_use_hw_breakpoint;
3420 t->to_stopped_data_address = procfs_stopped_data_address;
3423 /* Memory Mappings Functions: */
3425 /* Call a callback function once for each mapping, passing it the
3426 mapping, an optional secondary callback function, and some optional
3427 opaque data. Quit and return the first non-zero value returned
3430 PI is the procinfo struct for the process to be mapped. FUNC is
3431 the callback function to be called by this iterator. DATA is the
3432 optional opaque data to be passed to the callback function.
3433 CHILD_FUNC is the optional secondary function pointer to be passed
3434 to the child function. Returns the first non-zero return value
3435 from the callback function, or zero. */
3438 iterate_over_mappings (procinfo *pi, find_memory_region_ftype child_func,
3440 int (*func) (struct prmap *map,
3441 find_memory_region_ftype child_func,
3444 char pathname[MAX_PROC_NAME_SIZE];
3445 struct prmap *prmaps;
3446 struct prmap *prmap;
3450 struct cleanup *cleanups = make_cleanup (null_cleanup, NULL);
3453 /* Get the number of mappings, allocate space,
3454 and read the mappings into prmaps. */
3456 sprintf (pathname, "/proc/%d/map", pi->pid);
3457 if ((map_fd = open (pathname, O_RDONLY)) < 0)
3458 proc_error (pi, "iterate_over_mappings (open)", __LINE__);
3460 /* Make sure it gets closed again. */
3461 make_cleanup_close (map_fd);
3463 /* Use stat to determine the file size, and compute
3464 the number of prmap_t objects it contains. */
3465 if (fstat (map_fd, &sbuf) != 0)
3466 proc_error (pi, "iterate_over_mappings (fstat)", __LINE__);
3468 nmap = sbuf.st_size / sizeof (prmap_t);
3469 prmaps = (struct prmap *) alloca ((nmap + 1) * sizeof (*prmaps));
3470 if (read (map_fd, (char *) prmaps, nmap * sizeof (*prmaps))
3471 != (nmap * sizeof (*prmaps)))
3472 proc_error (pi, "iterate_over_mappings (read)", __LINE__);
3474 for (prmap = prmaps; nmap > 0; prmap++, nmap--)
3475 if ((funcstat = (*func) (prmap, child_func, data)) != 0)
3477 do_cleanups (cleanups);
3481 do_cleanups (cleanups);
3485 /* Implements the to_find_memory_regions method. Calls an external
3486 function for each memory region.
3487 Returns the integer value returned by the callback. */
3490 find_memory_regions_callback (struct prmap *map,
3491 find_memory_region_ftype func, void *data)
3493 return (*func) ((CORE_ADDR) map->pr_vaddr,
3495 (map->pr_mflags & MA_READ) != 0,
3496 (map->pr_mflags & MA_WRITE) != 0,
3497 (map->pr_mflags & MA_EXEC) != 0,
3498 1, /* MODIFIED is unknown, pass it as true. */
3502 /* External interface. Calls a callback function once for each
3503 mapped memory region in the child process, passing as arguments:
3505 CORE_ADDR virtual_address,
3507 int read, TRUE if region is readable by the child
3508 int write, TRUE if region is writable by the child
3509 int execute TRUE if region is executable by the child.
3511 Stops iterating and returns the first non-zero value returned by
3515 proc_find_memory_regions (struct target_ops *self,
3516 find_memory_region_ftype func, void *data)
3518 procinfo *pi = find_procinfo_or_die (ptid_get_pid (inferior_ptid), 0);
3520 return iterate_over_mappings (pi, func, data,
3521 find_memory_regions_callback);
3524 /* Returns an ascii representation of a memory mapping's flags. */
3527 mappingflags (long flags)
3529 static char asciiflags[8];
3531 strcpy (asciiflags, "-------");
3532 if (flags & MA_STACK)
3533 asciiflags[1] = 's';
3534 if (flags & MA_BREAK)
3535 asciiflags[2] = 'b';
3536 if (flags & MA_SHARED)
3537 asciiflags[3] = 's';
3538 if (flags & MA_READ)
3539 asciiflags[4] = 'r';
3540 if (flags & MA_WRITE)
3541 asciiflags[5] = 'w';
3542 if (flags & MA_EXEC)
3543 asciiflags[6] = 'x';
3544 return (asciiflags);
3547 /* Callback function, does the actual work for 'info proc
3551 info_mappings_callback (struct prmap *map, find_memory_region_ftype ignore,
3554 unsigned int pr_off;
3556 pr_off = (unsigned int) map->pr_offset;
3558 if (gdbarch_addr_bit (target_gdbarch ()) == 32)
3559 printf_filtered ("\t%#10lx %#10lx %#10lx %#10x %7s\n",
3560 (unsigned long) map->pr_vaddr,
3561 (unsigned long) map->pr_vaddr + map->pr_size - 1,
3562 (unsigned long) map->pr_size,
3564 mappingflags (map->pr_mflags));
3566 printf_filtered (" %#18lx %#18lx %#10lx %#10x %7s\n",
3567 (unsigned long) map->pr_vaddr,
3568 (unsigned long) map->pr_vaddr + map->pr_size - 1,
3569 (unsigned long) map->pr_size,
3571 mappingflags (map->pr_mflags));
3576 /* Implement the "info proc mappings" subcommand. */
3579 info_proc_mappings (procinfo *pi, int summary)
3582 return; /* No output for summary mode. */
3584 printf_filtered (_("Mapped address spaces:\n\n"));
3585 if (gdbarch_ptr_bit (target_gdbarch ()) == 32)
3586 printf_filtered ("\t%10s %10s %10s %10s %7s\n",
3593 printf_filtered (" %18s %18s %10s %10s %7s\n",
3600 iterate_over_mappings (pi, NULL, NULL, info_mappings_callback);
3601 printf_filtered ("\n");
3604 /* Implement the "info proc" command. */
3607 procfs_info_proc (struct target_ops *ops, const char *args,
3608 enum info_proc_what what)
3610 struct cleanup *old_chain;
3611 procinfo *process = NULL;
3612 procinfo *thread = NULL;
3629 error (_("Not supported on this target."));
3632 old_chain = make_cleanup (null_cleanup, 0);
3633 gdb_argv built_argv (args);
3634 for (char *arg : built_argv)
3636 if (isdigit (arg[0]))
3638 pid = strtoul (arg, &tmp, 10);
3640 tid = strtoul (++tmp, NULL, 10);
3642 else if (arg[0] == '/')
3644 tid = strtoul (arg + 1, NULL, 10);
3648 pid = ptid_get_pid (inferior_ptid);
3650 error (_("No current process: you must name one."));
3653 /* Have pid, will travel.
3654 First see if it's a process we're already debugging. */
3655 process = find_procinfo (pid, 0);
3656 if (process == NULL)
3658 /* No. So open a procinfo for it, but
3659 remember to close it again when finished. */
3660 process = create_procinfo (pid, 0);
3661 make_cleanup (do_destroy_procinfo_cleanup, process);
3662 if (!open_procinfo_files (process, FD_CTL))
3663 proc_error (process, "info proc, open_procinfo_files", __LINE__);
3667 thread = create_procinfo (pid, tid);
3671 printf_filtered (_("process %d flags:\n"), process->pid);
3672 proc_prettyprint_flags (proc_flags (process), 1);
3673 if (proc_flags (process) & (PR_STOPPED | PR_ISTOP))
3674 proc_prettyprint_why (proc_why (process), proc_what (process), 1);
3675 if (proc_get_nthreads (process) > 1)
3676 printf_filtered ("Process has %d threads.\n",
3677 proc_get_nthreads (process));
3681 printf_filtered (_("thread %d flags:\n"), thread->tid);
3682 proc_prettyprint_flags (proc_flags (thread), 1);
3683 if (proc_flags (thread) & (PR_STOPPED | PR_ISTOP))
3684 proc_prettyprint_why (proc_why (thread), proc_what (thread), 1);
3689 info_proc_mappings (process, 0);
3692 do_cleanups (old_chain);
3695 /* Modify the status of the system call identified by SYSCALLNUM in
3696 the set of syscalls that are currently traced/debugged.
3698 If ENTRY_OR_EXIT is set to PR_SYSENTRY, then the entry syscalls set
3699 will be updated. Otherwise, the exit syscalls set will be updated.
3701 If MODE is FLAG_SET, then traces will be enabled. Otherwise, they
3702 will be disabled. */
3705 proc_trace_syscalls_1 (procinfo *pi, int syscallnum, int entry_or_exit,
3706 int mode, int from_tty)
3710 if (entry_or_exit == PR_SYSENTRY)
3711 sysset = proc_get_traced_sysentry (pi, NULL);
3713 sysset = proc_get_traced_sysexit (pi, NULL);
3716 proc_error (pi, "proc-trace, get_traced_sysset", __LINE__);
3718 if (mode == FLAG_SET)
3719 praddset (sysset, syscallnum);
3721 prdelset (sysset, syscallnum);
3723 if (entry_or_exit == PR_SYSENTRY)
3725 if (!proc_set_traced_sysentry (pi, sysset))
3726 proc_error (pi, "proc-trace, set_traced_sysentry", __LINE__);
3730 if (!proc_set_traced_sysexit (pi, sysset))
3731 proc_error (pi, "proc-trace, set_traced_sysexit", __LINE__);
3736 proc_trace_syscalls (const char *args, int from_tty, int entry_or_exit, int mode)
3740 if (ptid_get_pid (inferior_ptid) <= 0)
3741 error (_("you must be debugging a process to use this command."));
3743 if (args == NULL || args[0] == 0)
3744 error_no_arg (_("system call to trace"));
3746 pi = find_procinfo_or_die (ptid_get_pid (inferior_ptid), 0);
3747 if (isdigit (args[0]))
3749 const int syscallnum = atoi (args);
3751 proc_trace_syscalls_1 (pi, syscallnum, entry_or_exit, mode, from_tty);
3756 proc_trace_sysentry_cmd (const char *args, int from_tty)
3758 proc_trace_syscalls (args, from_tty, PR_SYSENTRY, FLAG_SET);
3762 proc_trace_sysexit_cmd (const char *args, int from_tty)
3764 proc_trace_syscalls (args, from_tty, PR_SYSEXIT, FLAG_SET);
3768 proc_untrace_sysentry_cmd (const char *args, int from_tty)
3770 proc_trace_syscalls (args, from_tty, PR_SYSENTRY, FLAG_RESET);
3774 proc_untrace_sysexit_cmd (const char *args, int from_tty)
3776 proc_trace_syscalls (args, from_tty, PR_SYSEXIT, FLAG_RESET);
3780 _initialize_procfs (void)
3782 observer_attach_inferior_created (procfs_inferior_created);
3784 add_com ("proc-trace-entry", no_class, proc_trace_sysentry_cmd,
3785 _("Give a trace of entries into the syscall."));
3786 add_com ("proc-trace-exit", no_class, proc_trace_sysexit_cmd,
3787 _("Give a trace of exits from the syscall."));
3788 add_com ("proc-untrace-entry", no_class, proc_untrace_sysentry_cmd,
3789 _("Cancel a trace of entries into the syscall."));
3790 add_com ("proc-untrace-exit", no_class, proc_untrace_sysexit_cmd,
3791 _("Cancel a trace of exits from the syscall."));
3794 /* =================== END, GDB "MODULE" =================== */
3798 /* miscellaneous stubs: */
3800 /* The following satisfy a few random symbols mostly created by the
3801 solaris threads implementation, which I will chase down later. */
3803 /* Return a pid for which we guarantee we will be able to find a
3807 procfs_first_available (void)
3809 return pid_to_ptid (procinfo_list ? procinfo_list->pid : -1);
3812 /* =================== GCORE .NOTE "MODULE" =================== */
3815 procfs_do_thread_registers (bfd *obfd, ptid_t ptid,
3816 char *note_data, int *note_size,
3817 enum gdb_signal stop_signal)
3819 struct regcache *regcache = get_thread_regcache (ptid);
3820 gdb_gregset_t gregs;
3821 gdb_fpregset_t fpregs;
3822 unsigned long merged_pid;
3824 merged_pid = ptid_get_lwp (ptid) << 16 | ptid_get_pid (ptid);
3826 /* This part is the old method for fetching registers.
3827 It should be replaced by the newer one using regsets
3828 once it is implemented in this platform:
3829 gdbarch_iterate_over_regset_sections(). */
3831 scoped_restore save_inferior_ptid = make_scoped_restore (&inferior_ptid);
3832 inferior_ptid = ptid;
3833 target_fetch_registers (regcache, -1);
3835 fill_gregset (regcache, &gregs, -1);
3836 note_data = (char *) elfcore_write_lwpstatus (obfd,
3842 fill_fpregset (regcache, &fpregs, -1);
3843 note_data = (char *) elfcore_write_prfpreg (obfd,
3852 struct procfs_corefile_thread_data {
3856 enum gdb_signal stop_signal;
3860 procfs_corefile_thread_callback (procinfo *pi, procinfo *thread, void *data)
3862 struct procfs_corefile_thread_data *args
3863 = (struct procfs_corefile_thread_data *) data;
3867 ptid_t ptid = ptid_build (pi->pid, thread->tid, 0);
3869 args->note_data = procfs_do_thread_registers (args->obfd, ptid,
3878 find_signalled_thread (struct thread_info *info, void *data)
3880 if (info->suspend.stop_signal != GDB_SIGNAL_0
3881 && ptid_get_pid (info->ptid) == ptid_get_pid (inferior_ptid))
3887 static enum gdb_signal
3888 find_stop_signal (void)
3890 struct thread_info *info =
3891 iterate_over_threads (find_signalled_thread, NULL);
3894 return info->suspend.stop_signal;
3896 return GDB_SIGNAL_0;
3900 procfs_make_note_section (struct target_ops *self, bfd *obfd, int *note_size)
3902 struct cleanup *old_chain;
3903 gdb_gregset_t gregs;
3904 gdb_fpregset_t fpregs;
3905 char fname[16] = {'\0'};
3906 char psargs[80] = {'\0'};
3907 procinfo *pi = find_procinfo_or_die (ptid_get_pid (inferior_ptid), 0);
3908 char *note_data = NULL;
3910 struct procfs_corefile_thread_data thread_args;
3913 enum gdb_signal stop_signal;
3915 if (get_exec_file (0))
3917 strncpy (fname, lbasename (get_exec_file (0)), sizeof (fname));
3918 fname[sizeof (fname) - 1] = 0;
3919 strncpy (psargs, get_exec_file (0), sizeof (psargs));
3920 psargs[sizeof (psargs) - 1] = 0;
3922 inf_args = get_inferior_args ();
3923 if (inf_args && *inf_args &&
3924 strlen (inf_args) < ((int) sizeof (psargs) - (int) strlen (psargs)))
3926 strncat (psargs, " ",
3927 sizeof (psargs) - strlen (psargs));
3928 strncat (psargs, inf_args,
3929 sizeof (psargs) - strlen (psargs));
3933 note_data = (char *) elfcore_write_prpsinfo (obfd,
3939 stop_signal = find_stop_signal ();
3941 fill_gregset (get_current_regcache (), &gregs, -1);
3942 note_data = elfcore_write_pstatus (obfd, note_data, note_size,
3943 ptid_get_pid (inferior_ptid),
3944 stop_signal, &gregs);
3946 thread_args.obfd = obfd;
3947 thread_args.note_data = note_data;
3948 thread_args.note_size = note_size;
3949 thread_args.stop_signal = stop_signal;
3950 proc_iterate_over_threads (pi, procfs_corefile_thread_callback,
3952 note_data = thread_args.note_data;
3954 auxv_len = target_read_alloc (¤t_target, TARGET_OBJECT_AUXV,
3958 note_data = elfcore_write_note (obfd, note_data, note_size,
3959 "CORE", NT_AUXV, auxv, auxv_len);
3965 /* =================== END GCORE .NOTE "MODULE" =================== */