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>
48 #include "observable.h"
49 #include "common/scoped_fd.h"
51 /* This module provides the interface between GDB and the
52 /proc file system, which is used on many versions of Unix
53 as a means for debuggers to control other processes.
55 /proc works by imitating a file system: you open a simulated file
56 that represents the process you wish to interact with, and perform
57 operations on that "file" in order to examine or change the state
60 The most important thing to know about /proc and this module is
61 that there are two very different interfaces to /proc:
63 One that uses the ioctl system call, and another that uses read
64 and write system calls.
66 This module supports only the Solaris version of the read/write
69 #include <sys/types.h>
70 #include <dirent.h> /* opendir/readdir, for listing the LWP's */
72 #include <fcntl.h> /* for O_RDONLY */
73 #include <unistd.h> /* for "X_OK" */
74 #include <sys/stat.h> /* for struct stat */
76 /* Note: procfs-utils.h must be included after the above system header
77 files, because it redefines various system calls using macros.
78 This may be incompatible with the prototype declarations. */
80 #include "proc-utils.h"
82 /* Prototypes for supply_gregset etc. */
85 /* =================== TARGET_OPS "MODULE" =================== */
87 /* This module defines the GDB target vector and its methods. */
90 static enum target_xfer_status procfs_xfer_memory (gdb_byte *,
95 class procfs_target final : public inf_child_target
98 void create_inferior (const char *, const std::string &,
99 char **, int) override;
101 void kill () override;
103 void mourn_inferior () override;
105 void attach (const char *, int) override;
106 void detach (inferior *inf, int) override;
108 void resume (ptid_t, int, enum gdb_signal) override;
109 ptid_t wait (ptid_t, struct target_waitstatus *, int) override;
111 void fetch_registers (struct regcache *, int) override;
112 void store_registers (struct regcache *, int) override;
114 enum target_xfer_status xfer_partial (enum target_object object,
117 const gdb_byte *writebuf,
118 ULONGEST offset, ULONGEST len,
119 ULONGEST *xfered_len) override;
121 void pass_signals (int, unsigned char *) override;
123 void files_info () override;
125 void update_thread_list () override;
127 bool thread_alive (ptid_t ptid) override;
129 const char *pid_to_str (ptid_t) override;
131 thread_control_capabilities get_thread_control_capabilities () override
132 { return tc_schedlock; }
134 /* find_memory_regions support method for gcore */
135 int find_memory_regions (find_memory_region_ftype func, void *data)
138 char *make_corefile_notes (bfd *, int *) override;
140 bool info_proc (const char *, enum info_proc_what) override;
142 #if defined(PR_MODEL_NATIVE) && (PR_MODEL_NATIVE == PR_MODEL_LP64)
143 int auxv_parse (gdb_byte **readptr,
144 gdb_byte *endptr, CORE_ADDR *typep, CORE_ADDR *valp)
148 bool stopped_by_watchpoint () override;
150 int insert_watchpoint (CORE_ADDR, int, enum target_hw_bp_type,
151 struct expression *) override;
153 int remove_watchpoint (CORE_ADDR, int, enum target_hw_bp_type,
154 struct expression *) override;
156 int region_ok_for_hw_watchpoint (CORE_ADDR, int) override;
158 int can_use_hw_breakpoint (enum bptype, int, int) override;
159 bool stopped_data_address (CORE_ADDR *) override;
162 static procfs_target the_procfs_target;
164 #if defined (PR_MODEL_NATIVE) && (PR_MODEL_NATIVE == PR_MODEL_LP64)
165 /* When GDB is built as 64-bit application on Solaris, the auxv data
166 is presented in 64-bit format. We need to provide a custom parser
169 procfs_target::auxv_parse (gdb_byte **readptr,
170 gdb_byte *endptr, CORE_ADDR *typep, CORE_ADDR *valp)
172 enum bfd_endian byte_order = gdbarch_byte_order (target_gdbarch ());
173 gdb_byte *ptr = *readptr;
178 if (endptr - ptr < 8 * 2)
181 *typep = extract_unsigned_integer (ptr, 4, byte_order);
183 /* The size of data is always 64-bit. If the application is 32-bit,
184 it will be zero extended, as expected. */
185 *valp = extract_unsigned_integer (ptr, 8, byte_order);
193 /* =================== END, TARGET_OPS "MODULE" =================== */
195 /* World Unification:
197 Put any typedefs, defines etc. here that are required for the
198 unification of code that handles different versions of /proc. */
200 enum { READ_WATCHFLAG = WA_READ,
201 WRITE_WATCHFLAG = WA_WRITE,
202 EXEC_WATCHFLAG = WA_EXEC,
203 AFTER_WATCHFLAG = WA_TRAPAFTER
207 /* =================== STRUCT PROCINFO "MODULE" =================== */
209 /* FIXME: this comment will soon be out of date W.R.T. threads. */
211 /* The procinfo struct is a wrapper to hold all the state information
212 concerning a /proc process. There should be exactly one procinfo
213 for each process, and since GDB currently can debug only one
214 process at a time, that means there should be only one procinfo.
215 All of the LWP's of a process can be accessed indirectly thru the
216 single process procinfo.
218 However, against the day when GDB may debug more than one process,
219 this data structure is kept in a list (which for now will hold no
220 more than one member), and many functions will have a pointer to a
221 procinfo as an argument.
223 There will be a separate procinfo structure for use by the (not yet
224 implemented) "info proc" command, so that we can print useful
225 information about any random process without interfering with the
226 inferior's procinfo information. */
228 /* format strings for /proc paths */
229 #define MAIN_PROC_NAME_FMT "/proc/%d"
230 #define CTL_PROC_NAME_FMT "/proc/%d/ctl"
231 #define AS_PROC_NAME_FMT "/proc/%d/as"
232 #define MAP_PROC_NAME_FMT "/proc/%d/map"
233 #define STATUS_PROC_NAME_FMT "/proc/%d/status"
234 #define MAX_PROC_NAME_SIZE sizeof("/proc/99999/lwp/8096/lstatus")
236 typedef struct procinfo {
237 struct procinfo *next;
238 int pid; /* Process ID */
239 int tid; /* Thread/LWP id */
243 int ignore_next_sigstop;
245 int ctl_fd; /* File descriptor for /proc control file */
246 int status_fd; /* File descriptor for /proc status file */
247 int as_fd; /* File descriptor for /proc as file */
249 char pathname[MAX_PROC_NAME_SIZE]; /* Pathname to /proc entry */
251 fltset_t saved_fltset; /* Saved traced hardware fault set */
252 sigset_t saved_sigset; /* Saved traced signal set */
253 sigset_t saved_sighold; /* Saved held signal set */
254 sysset_t *saved_exitset; /* Saved traced system call exit set */
255 sysset_t *saved_entryset; /* Saved traced system call entry set */
257 pstatus_t prstatus; /* Current process status info */
259 struct procinfo *thread_list;
261 int status_valid : 1;
263 int fpregs_valid : 1;
264 int threads_valid: 1;
267 static char errmsg[128]; /* shared error msg buffer */
269 /* Function prototypes for procinfo module: */
271 static procinfo *find_procinfo_or_die (int pid, int tid);
272 static procinfo *find_procinfo (int pid, int tid);
273 static procinfo *create_procinfo (int pid, int tid);
274 static void destroy_procinfo (procinfo *p);
275 static void do_destroy_procinfo_cleanup (void *);
276 static void dead_procinfo (procinfo *p, const char *msg, int killp);
277 static int open_procinfo_files (procinfo *p, int which);
278 static void close_procinfo_files (procinfo *p);
279 static sysset_t *sysset_t_alloc (procinfo *pi);
281 static int iterate_over_mappings
282 (procinfo *pi, find_memory_region_ftype child_func, void *data,
283 int (*func) (struct prmap *map, find_memory_region_ftype child_func,
286 /* The head of the procinfo list: */
287 static procinfo *procinfo_list;
289 /* Search the procinfo list. Return a pointer to procinfo, or NULL if
293 find_procinfo (int pid, int tid)
297 for (pi = procinfo_list; pi; pi = pi->next)
304 /* Don't check threads_valid. If we're updating the
305 thread_list, we want to find whatever threads are already
306 here. This means that in general it is the caller's
307 responsibility to check threads_valid and update before
308 calling find_procinfo, if the caller wants to find a new
311 for (pi = pi->thread_list; pi; pi = pi->next)
319 /* Calls find_procinfo, but errors on failure. */
322 find_procinfo_or_die (int pid, int tid)
324 procinfo *pi = find_procinfo (pid, tid);
329 error (_("procfs: couldn't find pid %d "
330 "(kernel thread %d) in procinfo list."),
333 error (_("procfs: couldn't find pid %d in procinfo list."), pid);
338 /* Wrapper for `open'. The appropriate open call is attempted; if
339 unsuccessful, it will be retried as many times as needed for the
340 EAGAIN and EINTR conditions.
342 For other conditions, retry the open a limited number of times. In
343 addition, a short sleep is imposed prior to retrying the open. The
344 reason for this sleep is to give the kernel a chance to catch up
345 and create the file in question in the event that GDB "wins" the
346 race to open a file before the kernel has created it. */
349 open_with_retry (const char *pathname, int flags)
351 int retries_remaining, status;
353 retries_remaining = 2;
357 status = open (pathname, flags);
359 if (status >= 0 || retries_remaining == 0)
361 else if (errno != EINTR && errno != EAGAIN)
371 /* Open the file descriptor for the process or LWP. We only open the
372 control file descriptor; the others are opened lazily as needed.
373 Returns the file descriptor, or zero for failure. */
375 enum { FD_CTL, FD_STATUS, FD_AS };
378 open_procinfo_files (procinfo *pi, int which)
380 char tmp[MAX_PROC_NAME_SIZE];
383 /* This function is getting ALMOST long enough to break up into
384 several. Here is some rationale:
386 There are several file descriptors that may need to be open
387 for any given process or LWP. The ones we're intereted in are:
388 - control (ctl) write-only change the state
389 - status (status) read-only query the state
390 - address space (as) read/write access memory
391 - map (map) read-only virtual addr map
392 Most of these are opened lazily as they are needed.
393 The pathnames for the 'files' for an LWP look slightly
394 different from those of a first-class process:
395 Pathnames for a process (<proc-id>):
397 /proc/<proc-id>/status
400 Pathnames for an LWP (lwp-id):
401 /proc/<proc-id>/lwp/<lwp-id>/lwpctl
402 /proc/<proc-id>/lwp/<lwp-id>/lwpstatus
403 An LWP has no map or address space file descriptor, since
404 the memory map and address space are shared by all LWPs. */
406 /* In this case, there are several different file descriptors that
407 we might be asked to open. The control file descriptor will be
408 opened early, but the others will be opened lazily as they are
411 strcpy (tmp, pi->pathname);
412 switch (which) { /* Which file descriptor to open? */
415 strcat (tmp, "/lwpctl");
417 strcat (tmp, "/ctl");
418 fd = open_with_retry (tmp, O_WRONLY);
425 return 0; /* There is no 'as' file descriptor for an lwp. */
427 fd = open_with_retry (tmp, O_RDWR);
434 strcat (tmp, "/lwpstatus");
436 strcat (tmp, "/status");
437 fd = open_with_retry (tmp, O_RDONLY);
443 return 0; /* unknown file descriptor */
446 return 1; /* success */
449 /* Allocate a data structure and link it into the procinfo list.
450 First tries to find a pre-existing one (FIXME: why?). Returns the
451 pointer to new procinfo struct. */
454 create_procinfo (int pid, int tid)
456 procinfo *pi, *parent = NULL;
458 if ((pi = find_procinfo (pid, tid)))
459 return pi; /* Already exists, nothing to do. */
461 /* Find parent before doing malloc, to save having to cleanup. */
463 parent = find_procinfo_or_die (pid, 0); /* FIXME: should I
465 doesn't exist yet? */
467 pi = XNEW (procinfo);
468 memset (pi, 0, sizeof (procinfo));
472 pi->saved_entryset = sysset_t_alloc (pi);
473 pi->saved_exitset = sysset_t_alloc (pi);
475 /* Chain into list. */
478 sprintf (pi->pathname, MAIN_PROC_NAME_FMT, pid);
479 pi->next = procinfo_list;
484 sprintf (pi->pathname, "/proc/%05d/lwp/%d", pid, tid);
485 pi->next = parent->thread_list;
486 parent->thread_list = pi;
491 /* Close all file descriptors associated with the procinfo. */
494 close_procinfo_files (procinfo *pi)
500 if (pi->status_fd > 0)
501 close (pi->status_fd);
502 pi->ctl_fd = pi->as_fd = pi->status_fd = 0;
505 /* Destructor function. Close, unlink and deallocate the object. */
508 destroy_one_procinfo (procinfo **list, procinfo *pi)
512 /* Step one: unlink the procinfo from its list. */
516 for (ptr = *list; ptr; ptr = ptr->next)
519 ptr->next = pi->next;
523 /* Step two: close any open file descriptors. */
524 close_procinfo_files (pi);
526 /* Step three: free the memory. */
527 xfree (pi->saved_entryset);
528 xfree (pi->saved_exitset);
533 destroy_procinfo (procinfo *pi)
537 if (pi->tid != 0) /* Destroy a thread procinfo. */
539 tmp = find_procinfo (pi->pid, 0); /* Find the parent process. */
540 destroy_one_procinfo (&tmp->thread_list, pi);
542 else /* Destroy a process procinfo and all its threads. */
544 /* First destroy the children, if any; */
545 while (pi->thread_list != NULL)
546 destroy_one_procinfo (&pi->thread_list, pi->thread_list);
547 /* Then destroy the parent. Genocide!!! */
548 destroy_one_procinfo (&procinfo_list, pi);
553 do_destroy_procinfo_cleanup (void *pi)
555 destroy_procinfo ((procinfo *) pi);
558 enum { NOKILL, KILL };
560 /* To be called on a non_recoverable error for a procinfo. Prints
561 error messages, optionally sends a SIGKILL to the process, then
562 destroys the data structure. */
565 dead_procinfo (procinfo *pi, const char *msg, int kill_p)
571 print_sys_errmsg (pi->pathname, errno);
575 sprintf (procfile, "process %d", pi->pid);
576 print_sys_errmsg (procfile, errno);
579 kill (pi->pid, SIGKILL);
581 destroy_procinfo (pi);
585 /* Allocate and (partially) initialize a sysset_t struct. */
588 sysset_t_alloc (procinfo *pi)
590 return (sysset_t *) xmalloc (sizeof (sysset_t));
593 /* =================== END, STRUCT PROCINFO "MODULE" =================== */
595 /* =================== /proc "MODULE" =================== */
597 /* This "module" is the interface layer between the /proc system API
598 and the gdb target vector functions. This layer consists of access
599 functions that encapsulate each of the basic operations that we
600 need to use from the /proc API.
602 The main motivation for this layer is to hide the fact that there
603 are two very different implementations of the /proc API. Rather
604 than have a bunch of #ifdefs all thru the gdb target vector
605 functions, we do our best to hide them all in here. */
607 static long proc_flags (procinfo *pi);
608 static int proc_why (procinfo *pi);
609 static int proc_what (procinfo *pi);
610 static int proc_set_current_signal (procinfo *pi, int signo);
611 static int proc_get_current_thread (procinfo *pi);
612 static int proc_iterate_over_threads
614 int (*func) (procinfo *, procinfo *, void *),
618 proc_warn (procinfo *pi, const char *func, int line)
620 sprintf (errmsg, "procfs: %s line %d, %s", func, line, pi->pathname);
621 print_sys_errmsg (errmsg, errno);
625 proc_error (procinfo *pi, const char *func, int line)
627 sprintf (errmsg, "procfs: %s line %d, %s", func, line, pi->pathname);
628 perror_with_name (errmsg);
631 /* Updates the status struct in the procinfo. There is a 'valid'
632 flag, to let other functions know when this function needs to be
633 called (so the status is only read when it is needed). The status
634 file descriptor is also only opened when it is needed. Returns
635 non-zero for success, zero for failure. */
638 proc_get_status (procinfo *pi)
640 /* Status file descriptor is opened "lazily". */
641 if (pi->status_fd == 0 &&
642 open_procinfo_files (pi, FD_STATUS) == 0)
644 pi->status_valid = 0;
648 if (lseek (pi->status_fd, 0, SEEK_SET) < 0)
649 pi->status_valid = 0; /* fail */
652 /* Sigh... I have to read a different data structure,
653 depending on whether this is a main process or an LWP. */
655 pi->status_valid = (read (pi->status_fd,
656 (char *) &pi->prstatus.pr_lwp,
657 sizeof (lwpstatus_t))
658 == sizeof (lwpstatus_t));
661 pi->status_valid = (read (pi->status_fd,
662 (char *) &pi->prstatus,
664 == sizeof (pstatus_t));
668 if (pi->status_valid)
670 PROC_PRETTYFPRINT_STATUS (proc_flags (pi),
673 proc_get_current_thread (pi));
676 /* The status struct includes general regs, so mark them valid too. */
677 pi->gregs_valid = pi->status_valid;
678 /* In the read/write multiple-fd model, the status struct includes
679 the fp regs too, so mark them valid too. */
680 pi->fpregs_valid = pi->status_valid;
681 return pi->status_valid; /* True if success, false if failure. */
684 /* Returns the process flags (pr_flags field). */
687 proc_flags (procinfo *pi)
689 if (!pi->status_valid)
690 if (!proc_get_status (pi))
691 return 0; /* FIXME: not a good failure value (but what is?) */
693 return pi->prstatus.pr_lwp.pr_flags;
696 /* Returns the pr_why field (why the process stopped). */
699 proc_why (procinfo *pi)
701 if (!pi->status_valid)
702 if (!proc_get_status (pi))
703 return 0; /* FIXME: not a good failure value (but what is?) */
705 return pi->prstatus.pr_lwp.pr_why;
708 /* Returns the pr_what field (details of why the process stopped). */
711 proc_what (procinfo *pi)
713 if (!pi->status_valid)
714 if (!proc_get_status (pi))
715 return 0; /* FIXME: not a good failure value (but what is?) */
717 return pi->prstatus.pr_lwp.pr_what;
720 /* This function is only called when PI is stopped by a watchpoint.
721 Assuming the OS supports it, write to *ADDR the data address which
722 triggered it and return 1. Return 0 if it is not possible to know
726 proc_watchpoint_address (procinfo *pi, CORE_ADDR *addr)
728 if (!pi->status_valid)
729 if (!proc_get_status (pi))
732 *addr = (CORE_ADDR) gdbarch_pointer_to_address (target_gdbarch (),
733 builtin_type (target_gdbarch ())->builtin_data_ptr,
734 (gdb_byte *) &pi->prstatus.pr_lwp.pr_info.si_addr);
738 /* Returns the pr_nsysarg field (number of args to the current
742 proc_nsysarg (procinfo *pi)
744 if (!pi->status_valid)
745 if (!proc_get_status (pi))
748 return pi->prstatus.pr_lwp.pr_nsysarg;
751 /* Returns the pr_sysarg field (pointer to the arguments of current
755 proc_sysargs (procinfo *pi)
757 if (!pi->status_valid)
758 if (!proc_get_status (pi))
761 return (long *) &pi->prstatus.pr_lwp.pr_sysarg;
764 /* Set or reset any of the following process flags:
765 PR_FORK -- forked child will inherit trace flags
766 PR_RLC -- traced process runs when last /proc file closed.
767 PR_KLC -- traced process is killed when last /proc file closed.
768 PR_ASYNC -- LWP's get to run/stop independently.
770 This function is done using read/write [PCSET/PCRESET/PCUNSET].
774 flag -- one of PR_FORK, PR_RLC, or PR_ASYNC
775 mode -- 1 for set, 0 for reset.
777 Returns non-zero for success, zero for failure. */
779 enum { FLAG_RESET, FLAG_SET };
782 proc_modify_flag (procinfo *pi, long flag, long mode)
784 long win = 0; /* default to fail */
786 /* These operations affect the process as a whole, and applying them
787 to an individual LWP has the same meaning as applying them to the
788 main process. Therefore, if we're ever called with a pointer to
789 an LWP's procinfo, let's substitute the process's procinfo and
790 avoid opening the LWP's file descriptor unnecessarily. */
793 pi = find_procinfo_or_die (pi->pid, 0);
797 if (mode == FLAG_SET) /* Set the flag (RLC, FORK, or ASYNC). */
799 else /* Reset the flag. */
803 win = (write (pi->ctl_fd, (void *) &arg, sizeof (arg)) == sizeof (arg));
805 /* The above operation renders the procinfo's cached pstatus
807 pi->status_valid = 0;
810 warning (_("procfs: modify_flag failed to turn %s %s"),
811 flag == PR_FORK ? "PR_FORK" :
812 flag == PR_RLC ? "PR_RLC" :
813 flag == PR_ASYNC ? "PR_ASYNC" :
814 flag == PR_KLC ? "PR_KLC" :
816 mode == FLAG_RESET ? "off" : "on");
821 /* Set the run_on_last_close flag. Process with all threads will
822 become runnable when debugger closes all /proc fds. Returns
823 non-zero for success, zero for failure. */
826 proc_set_run_on_last_close (procinfo *pi)
828 return proc_modify_flag (pi, PR_RLC, FLAG_SET);
831 /* Reset the run_on_last_close flag. The process will NOT become
832 runnable when debugger closes its file handles. Returns non-zero
833 for success, zero for failure. */
836 proc_unset_run_on_last_close (procinfo *pi)
838 return proc_modify_flag (pi, PR_RLC, FLAG_RESET);
841 /* Reset inherit_on_fork flag. If the process forks a child while we
842 are registered for events in the parent, then we will NOT recieve
843 events from the child. Returns non-zero for success, zero for
847 proc_unset_inherit_on_fork (procinfo *pi)
849 return proc_modify_flag (pi, PR_FORK, FLAG_RESET);
852 /* Set PR_ASYNC flag. If one LWP stops because of a debug event
853 (signal etc.), the remaining LWPs will continue to run. Returns
854 non-zero for success, zero for failure. */
857 proc_set_async (procinfo *pi)
859 return proc_modify_flag (pi, PR_ASYNC, FLAG_SET);
862 /* Reset PR_ASYNC flag. If one LWP stops because of a debug event
863 (signal etc.), then all other LWPs will stop as well. Returns
864 non-zero for success, zero for failure. */
867 proc_unset_async (procinfo *pi)
869 return proc_modify_flag (pi, PR_ASYNC, FLAG_RESET);
872 /* Request the process/LWP to stop. Does not wait. Returns non-zero
873 for success, zero for failure. */
876 proc_stop_process (procinfo *pi)
880 /* We might conceivably apply this operation to an LWP, and the
881 LWP's ctl file descriptor might not be open. */
883 if (pi->ctl_fd == 0 &&
884 open_procinfo_files (pi, FD_CTL) == 0)
888 procfs_ctl_t cmd = PCSTOP;
890 win = (write (pi->ctl_fd, (char *) &cmd, sizeof (cmd)) == sizeof (cmd));
896 /* Wait for the process or LWP to stop (block until it does). Returns
897 non-zero for success, zero for failure. */
900 proc_wait_for_stop (procinfo *pi)
904 /* We should never have to apply this operation to any procinfo
905 except the one for the main process. If that ever changes for
906 any reason, then take out the following clause and replace it
907 with one that makes sure the ctl_fd is open. */
910 pi = find_procinfo_or_die (pi->pid, 0);
912 procfs_ctl_t cmd = PCWSTOP;
914 win = (write (pi->ctl_fd, (char *) &cmd, sizeof (cmd)) == sizeof (cmd));
915 /* We been runnin' and we stopped -- need to update status. */
916 pi->status_valid = 0;
921 /* Make the process or LWP runnable.
923 Options (not all are implemented):
925 - clear current fault
926 - clear current signal
927 - abort the current system call
928 - stop as soon as finished with system call
929 - (ioctl): set traced signal set
930 - (ioctl): set held signal set
931 - (ioctl): set traced fault set
932 - (ioctl): set start pc (vaddr)
934 Always clears the current fault. PI is the process or LWP to
935 operate on. If STEP is true, set the process or LWP to trap after
936 one instruction. If SIGNO is zero, clear the current signal if
937 any; if non-zero, set the current signal to this one. Returns
938 non-zero for success, zero for failure. */
941 proc_run_process (procinfo *pi, int step, int signo)
946 /* We will probably have to apply this operation to individual
947 threads, so make sure the control file descriptor is open. */
949 if (pi->ctl_fd == 0 &&
950 open_procinfo_files (pi, FD_CTL) == 0)
955 runflags = PRCFAULT; /* Always clear current fault. */
960 else if (signo != -1) /* -1 means do nothing W.R.T. signals. */
961 proc_set_current_signal (pi, signo);
967 win = (write (pi->ctl_fd, (char *) &cmd, sizeof (cmd)) == sizeof (cmd));
972 /* Register to trace signals in the process or LWP. Returns non-zero
973 for success, zero for failure. */
976 proc_set_traced_signals (procinfo *pi, sigset_t *sigset)
980 /* We should never have to apply this operation to any procinfo
981 except the one for the main process. If that ever changes for
982 any reason, then take out the following clause and replace it
983 with one that makes sure the ctl_fd is open. */
986 pi = find_procinfo_or_die (pi->pid, 0);
990 /* Use char array to avoid alignment issues. */
991 char sigset[sizeof (sigset_t)];
995 memcpy (&arg.sigset, sigset, sizeof (sigset_t));
997 win = (write (pi->ctl_fd, (char *) &arg, sizeof (arg)) == sizeof (arg));
999 /* The above operation renders the procinfo's cached pstatus obsolete. */
1000 pi->status_valid = 0;
1003 warning (_("procfs: set_traced_signals failed"));
1007 /* Register to trace hardware faults in the process or LWP. Returns
1008 non-zero for success, zero for failure. */
1011 proc_set_traced_faults (procinfo *pi, fltset_t *fltset)
1015 /* We should never have to apply this operation to any procinfo
1016 except the one for the main process. If that ever changes for
1017 any reason, then take out the following clause and replace it
1018 with one that makes sure the ctl_fd is open. */
1021 pi = find_procinfo_or_die (pi->pid, 0);
1025 /* Use char array to avoid alignment issues. */
1026 char fltset[sizeof (fltset_t)];
1030 memcpy (&arg.fltset, fltset, sizeof (fltset_t));
1032 win = (write (pi->ctl_fd, (char *) &arg, sizeof (arg)) == sizeof (arg));
1034 /* The above operation renders the procinfo's cached pstatus obsolete. */
1035 pi->status_valid = 0;
1040 /* Register to trace entry to system calls in the process or LWP.
1041 Returns non-zero for success, zero for failure. */
1044 proc_set_traced_sysentry (procinfo *pi, sysset_t *sysset)
1048 /* We should never have to apply this operation to any procinfo
1049 except the one for the main process. If that ever changes for
1050 any reason, then take out the following clause and replace it
1051 with one that makes sure the ctl_fd is open. */
1054 pi = find_procinfo_or_die (pi->pid, 0);
1056 struct gdb_proc_ctl_pcsentry {
1058 /* Use char array to avoid alignment issues. */
1059 char sysset[sizeof (sysset_t)];
1061 int argp_size = sizeof (struct gdb_proc_ctl_pcsentry);
1063 argp = (struct gdb_proc_ctl_pcsentry *) xmalloc (argp_size);
1065 argp->cmd = PCSENTRY;
1066 memcpy (&argp->sysset, sysset, sizeof (sysset_t));
1068 win = (write (pi->ctl_fd, (char *) argp, argp_size) == argp_size);
1071 /* The above operation renders the procinfo's cached pstatus
1073 pi->status_valid = 0;
1078 /* Register to trace exit from system calls in the process or LWP.
1079 Returns non-zero for success, zero for failure. */
1082 proc_set_traced_sysexit (procinfo *pi, sysset_t *sysset)
1086 /* We should never have to apply this operation to any procinfo
1087 except the one for the main process. If that ever changes for
1088 any reason, then take out the following clause and replace it
1089 with one that makes sure the ctl_fd is open. */
1092 pi = find_procinfo_or_die (pi->pid, 0);
1094 struct gdb_proc_ctl_pcsexit {
1096 /* Use char array to avoid alignment issues. */
1097 char sysset[sizeof (sysset_t)];
1099 int argp_size = sizeof (struct gdb_proc_ctl_pcsexit);
1101 argp = (struct gdb_proc_ctl_pcsexit *) xmalloc (argp_size);
1103 argp->cmd = PCSEXIT;
1104 memcpy (&argp->sysset, sysset, sizeof (sysset_t));
1106 win = (write (pi->ctl_fd, (char *) argp, argp_size) == argp_size);
1109 /* The above operation renders the procinfo's cached pstatus
1111 pi->status_valid = 0;
1116 /* Specify the set of blocked / held signals in the process or LWP.
1117 Returns non-zero for success, zero for failure. */
1120 proc_set_held_signals (procinfo *pi, sigset_t *sighold)
1124 /* We should never have to apply this operation to any procinfo
1125 except the one for the main process. If that ever changes for
1126 any reason, then take out the following clause and replace it
1127 with one that makes sure the ctl_fd is open. */
1130 pi = find_procinfo_or_die (pi->pid, 0);
1134 /* Use char array to avoid alignment issues. */
1135 char hold[sizeof (sigset_t)];
1139 memcpy (&arg.hold, sighold, sizeof (sigset_t));
1140 win = (write (pi->ctl_fd, (void *) &arg, sizeof (arg)) == sizeof (arg));
1142 /* The above operation renders the procinfo's cached pstatus
1144 pi->status_valid = 0;
1149 /* Returns the set of signals that are held / blocked. Will also copy
1150 the sigset if SAVE is non-zero. */
1153 proc_get_held_signals (procinfo *pi, sigset_t *save)
1155 sigset_t *ret = NULL;
1157 /* We should never have to apply this operation to any procinfo
1158 except the one for the main process. If that ever changes for
1159 any reason, then take out the following clause and replace it
1160 with one that makes sure the ctl_fd is open. */
1163 pi = find_procinfo_or_die (pi->pid, 0);
1165 if (!pi->status_valid)
1166 if (!proc_get_status (pi))
1169 ret = &pi->prstatus.pr_lwp.pr_lwphold;
1171 memcpy (save, ret, sizeof (sigset_t));
1176 /* Returns the set of signals that are traced / debugged. Will also
1177 copy the sigset if SAVE is non-zero. */
1180 proc_get_traced_signals (procinfo *pi, sigset_t *save)
1182 sigset_t *ret = NULL;
1184 /* We should never have to apply this operation to any procinfo
1185 except the one for the main process. If that ever changes for
1186 any reason, then take out the following clause and replace it
1187 with one that makes sure the ctl_fd is open. */
1190 pi = find_procinfo_or_die (pi->pid, 0);
1192 if (!pi->status_valid)
1193 if (!proc_get_status (pi))
1196 ret = &pi->prstatus.pr_sigtrace;
1198 memcpy (save, ret, sizeof (sigset_t));
1203 /* Returns the set of hardware faults that are traced /debugged. Will
1204 also copy the faultset if SAVE is non-zero. */
1207 proc_get_traced_faults (procinfo *pi, fltset_t *save)
1209 fltset_t *ret = NULL;
1211 /* We should never have to apply this operation to any procinfo
1212 except the one for the main process. If that ever changes for
1213 any reason, then take out the following clause and replace it
1214 with one that makes sure the ctl_fd is open. */
1217 pi = find_procinfo_or_die (pi->pid, 0);
1219 if (!pi->status_valid)
1220 if (!proc_get_status (pi))
1223 ret = &pi->prstatus.pr_flttrace;
1225 memcpy (save, ret, sizeof (fltset_t));
1230 /* Returns the set of syscalls that are traced /debugged on entry.
1231 Will also copy the syscall set if SAVE is non-zero. */
1234 proc_get_traced_sysentry (procinfo *pi, sysset_t *save)
1236 sysset_t *ret = NULL;
1238 /* We should never have to apply this operation to any procinfo
1239 except the one for the main process. If that ever changes for
1240 any reason, then take out the following clause and replace it
1241 with one that makes sure the ctl_fd is open. */
1244 pi = find_procinfo_or_die (pi->pid, 0);
1246 if (!pi->status_valid)
1247 if (!proc_get_status (pi))
1250 ret = &pi->prstatus.pr_sysentry;
1252 memcpy (save, ret, sizeof (sysset_t));
1257 /* Returns the set of syscalls that are traced /debugged on exit.
1258 Will also copy the syscall set if SAVE is non-zero. */
1261 proc_get_traced_sysexit (procinfo *pi, sysset_t *save)
1263 sysset_t *ret = NULL;
1265 /* We should never have to apply this operation to any procinfo
1266 except the one for the main process. If that ever changes for
1267 any reason, then take out the following clause and replace it
1268 with one that makes sure the ctl_fd is open. */
1271 pi = find_procinfo_or_die (pi->pid, 0);
1273 if (!pi->status_valid)
1274 if (!proc_get_status (pi))
1277 ret = &pi->prstatus.pr_sysexit;
1279 memcpy (save, ret, sizeof (sysset_t));
1284 /* The current fault (if any) is cleared; the associated signal will
1285 not be sent to the process or LWP when it resumes. Returns
1286 non-zero for success, zero for failure. */
1289 proc_clear_current_fault (procinfo *pi)
1293 /* We should never have to apply this operation to any procinfo
1294 except the one for the main process. If that ever changes for
1295 any reason, then take out the following clause and replace it
1296 with one that makes sure the ctl_fd is open. */
1299 pi = find_procinfo_or_die (pi->pid, 0);
1301 procfs_ctl_t cmd = PCCFAULT;
1303 win = (write (pi->ctl_fd, (void *) &cmd, sizeof (cmd)) == sizeof (cmd));
1308 /* Set the "current signal" that will be delivered next to the
1309 process. NOTE: semantics are different from those of KILL. This
1310 signal will be delivered to the process or LWP immediately when it
1311 is resumed (even if the signal is held/blocked); it will NOT
1312 immediately cause another event of interest, and will NOT first
1313 trap back to the debugger. Returns non-zero for success, zero for
1317 proc_set_current_signal (procinfo *pi, int signo)
1322 /* Use char array to avoid alignment issues. */
1323 char sinfo[sizeof (siginfo_t)];
1327 struct target_waitstatus wait_status;
1329 /* We should never have to apply this operation to any procinfo
1330 except the one for the main process. If that ever changes for
1331 any reason, then take out the following clause and replace it
1332 with one that makes sure the ctl_fd is open. */
1335 pi = find_procinfo_or_die (pi->pid, 0);
1337 /* The pointer is just a type alias. */
1338 get_last_target_status (&wait_ptid, &wait_status);
1339 if (wait_ptid == inferior_ptid
1340 && wait_status.kind == TARGET_WAITKIND_STOPPED
1341 && wait_status.value.sig == gdb_signal_from_host (signo)
1342 && proc_get_status (pi)
1343 && pi->prstatus.pr_lwp.pr_info.si_signo == signo
1345 /* Use the siginfo associated with the signal being
1347 memcpy (arg.sinfo, &pi->prstatus.pr_lwp.pr_info, sizeof (siginfo_t));
1350 mysinfo.si_signo = signo;
1351 mysinfo.si_code = 0;
1352 mysinfo.si_pid = getpid (); /* ?why? */
1353 mysinfo.si_uid = getuid (); /* ?why? */
1354 memcpy (arg.sinfo, &mysinfo, sizeof (siginfo_t));
1358 win = (write (pi->ctl_fd, (void *) &arg, sizeof (arg)) == sizeof (arg));
1363 /* The current signal (if any) is cleared, and is not sent to the
1364 process or LWP when it resumes. Returns non-zero for success, zero
1368 proc_clear_current_signal (procinfo *pi)
1372 /* We should never have to apply this operation to any procinfo
1373 except the one for the main process. If that ever changes for
1374 any reason, then take out the following clause and replace it
1375 with one that makes sure the ctl_fd is open. */
1378 pi = find_procinfo_or_die (pi->pid, 0);
1382 /* Use char array to avoid alignment issues. */
1383 char sinfo[sizeof (siginfo_t)];
1388 /* The pointer is just a type alias. */
1389 mysinfo.si_signo = 0;
1390 mysinfo.si_code = 0;
1391 mysinfo.si_errno = 0;
1392 mysinfo.si_pid = getpid (); /* ?why? */
1393 mysinfo.si_uid = getuid (); /* ?why? */
1394 memcpy (arg.sinfo, &mysinfo, sizeof (siginfo_t));
1396 win = (write (pi->ctl_fd, (void *) &arg, sizeof (arg)) == sizeof (arg));
1401 /* Return the general-purpose registers for the process or LWP
1402 corresponding to PI. Upon failure, return NULL. */
1404 static gdb_gregset_t *
1405 proc_get_gregs (procinfo *pi)
1407 if (!pi->status_valid || !pi->gregs_valid)
1408 if (!proc_get_status (pi))
1411 return &pi->prstatus.pr_lwp.pr_reg;
1414 /* Return the general-purpose registers for the process or LWP
1415 corresponding to PI. Upon failure, return NULL. */
1417 static gdb_fpregset_t *
1418 proc_get_fpregs (procinfo *pi)
1420 if (!pi->status_valid || !pi->fpregs_valid)
1421 if (!proc_get_status (pi))
1424 return &pi->prstatus.pr_lwp.pr_fpreg;
1427 /* Write the general-purpose registers back to the process or LWP
1428 corresponding to PI. Return non-zero for success, zero for
1432 proc_set_gregs (procinfo *pi)
1434 gdb_gregset_t *gregs;
1437 gregs = proc_get_gregs (pi);
1439 return 0; /* proc_get_regs has already warned. */
1441 if (pi->ctl_fd == 0 && open_procinfo_files (pi, FD_CTL) == 0)
1449 /* Use char array to avoid alignment issues. */
1450 char gregs[sizeof (gdb_gregset_t)];
1454 memcpy (&arg.gregs, gregs, sizeof (arg.gregs));
1455 win = (write (pi->ctl_fd, (void *) &arg, sizeof (arg)) == sizeof (arg));
1458 /* Policy: writing the registers invalidates our cache. */
1459 pi->gregs_valid = 0;
1463 /* Write the floating-pointer registers back to the process or LWP
1464 corresponding to PI. Return non-zero for success, zero for
1468 proc_set_fpregs (procinfo *pi)
1470 gdb_fpregset_t *fpregs;
1473 fpregs = proc_get_fpregs (pi);
1475 return 0; /* proc_get_fpregs has already warned. */
1477 if (pi->ctl_fd == 0 && open_procinfo_files (pi, FD_CTL) == 0)
1485 /* Use char array to avoid alignment issues. */
1486 char fpregs[sizeof (gdb_fpregset_t)];
1490 memcpy (&arg.fpregs, fpregs, sizeof (arg.fpregs));
1491 win = (write (pi->ctl_fd, (void *) &arg, sizeof (arg)) == sizeof (arg));
1494 /* Policy: writing the registers invalidates our cache. */
1495 pi->fpregs_valid = 0;
1499 /* Send a signal to the proc or lwp with the semantics of "kill()".
1500 Returns non-zero for success, zero for failure. */
1503 proc_kill (procinfo *pi, int signo)
1507 /* We might conceivably apply this operation to an LWP, and the
1508 LWP's ctl file descriptor might not be open. */
1510 if (pi->ctl_fd == 0 &&
1511 open_procinfo_files (pi, FD_CTL) == 0)
1517 procfs_ctl_t cmd[2];
1521 win = (write (pi->ctl_fd, (char *) &cmd, sizeof (cmd)) == sizeof (cmd));
1527 /* Find the pid of the process that started this one. Returns the
1528 parent process pid, or zero. */
1531 proc_parent_pid (procinfo *pi)
1533 /* We should never have to apply this operation to any procinfo
1534 except the one for the main process. If that ever changes for
1535 any reason, then take out the following clause and replace it
1536 with one that makes sure the ctl_fd is open. */
1539 pi = find_procinfo_or_die (pi->pid, 0);
1541 if (!pi->status_valid)
1542 if (!proc_get_status (pi))
1545 return pi->prstatus.pr_ppid;
1548 /* Convert a target address (a.k.a. CORE_ADDR) into a host address
1549 (a.k.a void pointer)! */
1552 procfs_address_to_host_pointer (CORE_ADDR addr)
1554 struct type *ptr_type = builtin_type (target_gdbarch ())->builtin_data_ptr;
1557 gdb_assert (sizeof (ptr) == TYPE_LENGTH (ptr_type));
1558 gdbarch_address_to_pointer (target_gdbarch (), ptr_type,
1559 (gdb_byte *) &ptr, addr);
1564 proc_set_watchpoint (procinfo *pi, CORE_ADDR addr, int len, int wflags)
1568 char watch[sizeof (prwatch_t)];
1572 /* NOTE: cagney/2003-02-01: Even more horrible hack. Need to
1573 convert a target address into something that can be stored in a
1574 native data structure. */
1575 pwatch.pr_vaddr = (uintptr_t) procfs_address_to_host_pointer (addr);
1576 pwatch.pr_size = len;
1577 pwatch.pr_wflags = wflags;
1579 memcpy (arg.watch, &pwatch, sizeof (prwatch_t));
1580 return (write (pi->ctl_fd, &arg, sizeof (arg)) == sizeof (arg));
1583 #if (defined(__i386__) || defined(__x86_64__)) && defined (sun)
1585 #include <sys/sysi86.h>
1587 /* The KEY is actually the value of the lower 16 bits of the GS
1588 register for the LWP that we're interested in. Returns the
1589 matching ssh struct (LDT entry). */
1592 proc_get_LDT_entry (procinfo *pi, int key)
1594 static struct ssd *ldt_entry = NULL;
1595 char pathname[MAX_PROC_NAME_SIZE];
1597 /* Allocate space for one LDT entry.
1598 This alloc must persist, because we return a pointer to it. */
1599 if (ldt_entry == NULL)
1600 ldt_entry = XNEW (struct ssd);
1602 /* Open the file descriptor for the LDT table. */
1603 sprintf (pathname, "/proc/%d/ldt", pi->pid);
1604 scoped_fd fd (open_with_retry (pathname, O_RDONLY));
1607 proc_warn (pi, "proc_get_LDT_entry (open)", __LINE__);
1611 /* Now 'read' thru the table, find a match and return it. */
1612 while (read (fd.get (), ldt_entry, sizeof (struct ssd))
1613 == sizeof (struct ssd))
1615 if (ldt_entry->sel == 0 &&
1616 ldt_entry->bo == 0 &&
1617 ldt_entry->acc1 == 0 &&
1618 ldt_entry->acc2 == 0)
1619 break; /* end of table */
1620 /* If key matches, return this entry. */
1621 if (ldt_entry->sel == key)
1624 /* Loop ended, match not found. */
1628 /* Returns the pointer to the LDT entry of PTID. */
1631 procfs_find_LDT_entry (ptid_t ptid)
1633 gdb_gregset_t *gregs;
1637 /* Find procinfo for the lwp. */
1638 if ((pi = find_procinfo (ptid.pid (), ptid.lwp ())) == NULL)
1640 warning (_("procfs_find_LDT_entry: could not find procinfo for %d:%ld."),
1641 ptid.pid (), ptid.lwp ());
1644 /* get its general registers. */
1645 if ((gregs = proc_get_gregs (pi)) == NULL)
1647 warning (_("procfs_find_LDT_entry: could not read gregs for %d:%ld."),
1648 ptid.pid (), ptid.lwp ());
1651 /* Now extract the GS register's lower 16 bits. */
1652 key = (*gregs)[GS] & 0xffff;
1654 /* Find the matching entry and return it. */
1655 return proc_get_LDT_entry (pi, key);
1660 /* =============== END, non-thread part of /proc "MODULE" =============== */
1662 /* =================== Thread "MODULE" =================== */
1664 /* NOTE: you'll see more ifdefs and duplication of functions here,
1665 since there is a different way to do threads on every OS. */
1667 /* Returns the number of threads for the process. */
1670 proc_get_nthreads (procinfo *pi)
1672 if (!pi->status_valid)
1673 if (!proc_get_status (pi))
1676 /* Only works for the process procinfo, because the LWP procinfos do not
1677 get prstatus filled in. */
1678 if (pi->tid != 0) /* Find the parent process procinfo. */
1679 pi = find_procinfo_or_die (pi->pid, 0);
1680 return pi->prstatus.pr_nlwp;
1685 Return the ID of the thread that had an event of interest.
1686 (ie. the one that hit a breakpoint or other traced event). All
1687 other things being equal, this should be the ID of a thread that is
1688 currently executing. */
1691 proc_get_current_thread (procinfo *pi)
1693 /* Note: this should be applied to the root procinfo for the
1694 process, not to the procinfo for an LWP. If applied to the
1695 procinfo for an LWP, it will simply return that LWP's ID. In
1696 that case, find the parent process procinfo. */
1699 pi = find_procinfo_or_die (pi->pid, 0);
1701 if (!pi->status_valid)
1702 if (!proc_get_status (pi))
1705 return pi->prstatus.pr_lwp.pr_lwpid;
1708 /* Discover the IDs of all the threads within the process, and create
1709 a procinfo for each of them (chained to the parent). This
1710 unfortunately requires a different method on every OS. Returns
1711 non-zero for success, zero for failure. */
1714 proc_delete_dead_threads (procinfo *parent, procinfo *thread, void *ignore)
1716 if (thread && parent) /* sanity */
1718 thread->status_valid = 0;
1719 if (!proc_get_status (thread))
1720 destroy_one_procinfo (&parent->thread_list, thread);
1722 return 0; /* keep iterating */
1726 proc_update_threads (procinfo *pi)
1728 char pathname[MAX_PROC_NAME_SIZE + 16];
1729 struct dirent *direntry;
1734 /* We should never have to apply this operation to any procinfo
1735 except the one for the main process. If that ever changes for
1736 any reason, then take out the following clause and replace it
1737 with one that makes sure the ctl_fd is open. */
1740 pi = find_procinfo_or_die (pi->pid, 0);
1742 proc_iterate_over_threads (pi, proc_delete_dead_threads, NULL);
1744 /* Note: this brute-force method was originally devised for Unixware
1745 (support removed since), and will also work on Solaris 2.6 and
1746 2.7. The original comment mentioned the existence of a much
1747 simpler and more elegant way to do this on Solaris, but didn't
1748 point out what that was. */
1750 strcpy (pathname, pi->pathname);
1751 strcat (pathname, "/lwp");
1752 dirp.reset (opendir (pathname));
1754 proc_error (pi, "update_threads, opendir", __LINE__);
1756 while ((direntry = readdir (dirp.get ())) != NULL)
1757 if (direntry->d_name[0] != '.') /* skip '.' and '..' */
1759 lwpid = atoi (&direntry->d_name[0]);
1760 if ((thread = create_procinfo (pi->pid, lwpid)) == NULL)
1761 proc_error (pi, "update_threads, create_procinfo", __LINE__);
1763 pi->threads_valid = 1;
1767 /* Given a pointer to a function, call that function once for each lwp
1768 in the procinfo list, until the function returns non-zero, in which
1769 event return the value returned by the function.
1771 Note: this function does NOT call update_threads. If you want to
1772 discover new threads first, you must call that function explicitly.
1773 This function just makes a quick pass over the currently-known
1776 PI is the parent process procinfo. FUNC is the per-thread
1777 function. PTR is an opaque parameter for function. Returns the
1778 first non-zero return value from the callee, or zero. */
1781 proc_iterate_over_threads (procinfo *pi,
1782 int (*func) (procinfo *, procinfo *, void *),
1785 procinfo *thread, *next;
1788 /* We should never have to apply this operation to any procinfo
1789 except the one for the main process. If that ever changes for
1790 any reason, then take out the following clause and replace it
1791 with one that makes sure the ctl_fd is open. */
1794 pi = find_procinfo_or_die (pi->pid, 0);
1796 for (thread = pi->thread_list; thread != NULL; thread = next)
1798 next = thread->next; /* In case thread is destroyed. */
1799 if ((retval = (*func) (pi, thread, ptr)) != 0)
1806 /* =================== END, Thread "MODULE" =================== */
1808 /* =================== END, /proc "MODULE" =================== */
1810 /* =================== GDB "MODULE" =================== */
1812 /* Here are all of the gdb target vector functions and their
1815 static ptid_t do_attach (ptid_t ptid);
1816 static void do_detach ();
1817 static void proc_trace_syscalls_1 (procinfo *pi, int syscallnum,
1818 int entry_or_exit, int mode, int from_tty);
1820 /* Sets up the inferior to be debugged. Registers to trace signals,
1821 hardware faults, and syscalls. Note: does not set RLC flag: caller
1822 may want to customize that. Returns zero for success (note!
1823 unlike most functions in this module); on failure, returns the LINE
1824 NUMBER where it failed! */
1827 procfs_debug_inferior (procinfo *pi)
1829 fltset_t traced_faults;
1830 sigset_t traced_signals;
1831 sysset_t *traced_syscall_entries;
1832 sysset_t *traced_syscall_exits;
1835 /* Register to trace hardware faults in the child. */
1836 prfillset (&traced_faults); /* trace all faults... */
1837 prdelset (&traced_faults, FLTPAGE); /* except page fault. */
1838 if (!proc_set_traced_faults (pi, &traced_faults))
1841 /* Initially, register to trace all signals in the child. */
1842 prfillset (&traced_signals);
1843 if (!proc_set_traced_signals (pi, &traced_signals))
1847 /* Register to trace the 'exit' system call (on entry). */
1848 traced_syscall_entries = sysset_t_alloc (pi);
1849 premptyset (traced_syscall_entries);
1850 praddset (traced_syscall_entries, SYS_exit);
1851 praddset (traced_syscall_entries, SYS_lwp_exit);
1853 status = proc_set_traced_sysentry (pi, traced_syscall_entries);
1854 xfree (traced_syscall_entries);
1858 /* Method for tracing exec syscalls. */
1860 Not all systems with /proc have all the exec* syscalls with the same
1861 names. On the SGI, for example, there is no SYS_exec, but there
1862 *is* a SYS_execv. So, we try to account for that. */
1864 traced_syscall_exits = sysset_t_alloc (pi);
1865 premptyset (traced_syscall_exits);
1867 praddset (traced_syscall_exits, SYS_exec);
1869 praddset (traced_syscall_exits, SYS_execve);
1870 praddset (traced_syscall_exits, SYS_lwp_create);
1871 praddset (traced_syscall_exits, SYS_lwp_exit);
1873 status = proc_set_traced_sysexit (pi, traced_syscall_exits);
1874 xfree (traced_syscall_exits);
1882 procfs_target::attach (const char *args, int from_tty)
1887 pid = parse_pid_to_attach (args);
1889 if (pid == getpid ())
1890 error (_("Attaching GDB to itself is not a good idea..."));
1894 exec_file = get_exec_file (0);
1897 printf_filtered (_("Attaching to program `%s', %s\n"),
1898 exec_file, target_pid_to_str (ptid_t (pid)));
1900 printf_filtered (_("Attaching to %s\n"),
1901 target_pid_to_str (ptid_t (pid)));
1905 inferior_ptid = do_attach (ptid_t (pid));
1906 if (!target_is_pushed (this))
1911 procfs_target::detach (inferior *inf, int from_tty)
1913 int pid = inferior_ptid.pid ();
1917 const char *exec_file;
1919 exec_file = get_exec_file (0);
1920 if (exec_file == NULL)
1923 printf_filtered (_("Detaching from program: %s, %s\n"), exec_file,
1924 target_pid_to_str (ptid_t (pid)));
1925 gdb_flush (gdb_stdout);
1930 inferior_ptid = null_ptid;
1931 detach_inferior (inf);
1932 maybe_unpush_target ();
1936 do_attach (ptid_t ptid)
1939 struct inferior *inf;
1943 if ((pi = create_procinfo (ptid.pid (), 0)) == NULL)
1944 perror (_("procfs: out of memory in 'attach'"));
1946 if (!open_procinfo_files (pi, FD_CTL))
1948 fprintf_filtered (gdb_stderr, "procfs:%d -- ", __LINE__);
1949 sprintf (errmsg, "do_attach: couldn't open /proc file for process %d",
1951 dead_procinfo (pi, errmsg, NOKILL);
1954 /* Stop the process (if it isn't already stopped). */
1955 if (proc_flags (pi) & (PR_STOPPED | PR_ISTOP))
1957 pi->was_stopped = 1;
1958 proc_prettyprint_why (proc_why (pi), proc_what (pi), 1);
1962 pi->was_stopped = 0;
1963 /* Set the process to run again when we close it. */
1964 if (!proc_set_run_on_last_close (pi))
1965 dead_procinfo (pi, "do_attach: couldn't set RLC.", NOKILL);
1967 /* Now stop the process. */
1968 if (!proc_stop_process (pi))
1969 dead_procinfo (pi, "do_attach: couldn't stop the process.", NOKILL);
1970 pi->ignore_next_sigstop = 1;
1972 /* Save some of the /proc state to be restored if we detach. */
1973 if (!proc_get_traced_faults (pi, &pi->saved_fltset))
1974 dead_procinfo (pi, "do_attach: couldn't save traced faults.", NOKILL);
1975 if (!proc_get_traced_signals (pi, &pi->saved_sigset))
1976 dead_procinfo (pi, "do_attach: couldn't save traced signals.", NOKILL);
1977 if (!proc_get_traced_sysentry (pi, pi->saved_entryset))
1978 dead_procinfo (pi, "do_attach: couldn't save traced syscall entries.",
1980 if (!proc_get_traced_sysexit (pi, pi->saved_exitset))
1981 dead_procinfo (pi, "do_attach: couldn't save traced syscall exits.",
1983 if (!proc_get_held_signals (pi, &pi->saved_sighold))
1984 dead_procinfo (pi, "do_attach: couldn't save held signals.", NOKILL);
1986 if ((fail = procfs_debug_inferior (pi)) != 0)
1987 dead_procinfo (pi, "do_attach: failed in procfs_debug_inferior", NOKILL);
1989 inf = current_inferior ();
1990 inferior_appeared (inf, pi->pid);
1991 /* Let GDB know that the inferior was attached. */
1992 inf->attach_flag = 1;
1994 /* Create a procinfo for the current lwp. */
1995 lwpid = proc_get_current_thread (pi);
1996 create_procinfo (pi->pid, lwpid);
1998 /* Add it to gdb's thread list. */
1999 ptid = ptid_t (pi->pid, lwpid, 0);
2010 /* Find procinfo for the main process. */
2011 pi = find_procinfo_or_die (inferior_ptid.pid (),
2012 0); /* FIXME: threads */
2014 if (!proc_set_traced_signals (pi, &pi->saved_sigset))
2015 proc_warn (pi, "do_detach, set_traced_signal", __LINE__);
2017 if (!proc_set_traced_faults (pi, &pi->saved_fltset))
2018 proc_warn (pi, "do_detach, set_traced_faults", __LINE__);
2020 if (!proc_set_traced_sysentry (pi, pi->saved_entryset))
2021 proc_warn (pi, "do_detach, set_traced_sysentry", __LINE__);
2023 if (!proc_set_traced_sysexit (pi, pi->saved_exitset))
2024 proc_warn (pi, "do_detach, set_traced_sysexit", __LINE__);
2026 if (!proc_set_held_signals (pi, &pi->saved_sighold))
2027 proc_warn (pi, "do_detach, set_held_signals", __LINE__);
2029 if (proc_flags (pi) & (PR_STOPPED | PR_ISTOP))
2030 if (!(pi->was_stopped)
2031 || query (_("Was stopped when attached, make it runnable again? ")))
2033 /* Clear any pending signal. */
2034 if (!proc_clear_current_fault (pi))
2035 proc_warn (pi, "do_detach, clear_current_fault", __LINE__);
2037 if (!proc_clear_current_signal (pi))
2038 proc_warn (pi, "do_detach, clear_current_signal", __LINE__);
2040 if (!proc_set_run_on_last_close (pi))
2041 proc_warn (pi, "do_detach, set_rlc", __LINE__);
2044 destroy_procinfo (pi);
2047 /* Fetch register REGNUM from the inferior. If REGNUM is -1, do this
2050 ??? Is the following note still relevant? We can't get individual
2051 registers with the PT_GETREGS ptrace(2) request either, yet we
2052 don't bother with caching at all in that case.
2054 NOTE: Since the /proc interface cannot give us individual
2055 registers, we pay no attention to REGNUM, and just fetch them all.
2056 This results in the possibility that we will do unnecessarily many
2057 fetches, since we may be called repeatedly for individual
2058 registers. So we cache the results, and mark the cache invalid
2059 when the process is resumed. */
2062 procfs_target::fetch_registers (struct regcache *regcache, int regnum)
2064 gdb_gregset_t *gregs;
2066 ptid_t ptid = regcache->ptid ();
2067 int pid = ptid.pid ();
2068 int tid = ptid.lwp ();
2069 struct gdbarch *gdbarch = regcache->arch ();
2071 pi = find_procinfo_or_die (pid, tid);
2074 error (_("procfs: fetch_registers failed to find procinfo for %s"),
2075 target_pid_to_str (ptid));
2077 gregs = proc_get_gregs (pi);
2079 proc_error (pi, "fetch_registers, get_gregs", __LINE__);
2081 supply_gregset (regcache, (const gdb_gregset_t *) gregs);
2083 if (gdbarch_fp0_regnum (gdbarch) >= 0) /* Do we have an FPU? */
2085 gdb_fpregset_t *fpregs;
2087 if ((regnum >= 0 && regnum < gdbarch_fp0_regnum (gdbarch))
2088 || regnum == gdbarch_pc_regnum (gdbarch)
2089 || regnum == gdbarch_sp_regnum (gdbarch))
2090 return; /* Not a floating point register. */
2092 fpregs = proc_get_fpregs (pi);
2094 proc_error (pi, "fetch_registers, get_fpregs", __LINE__);
2096 supply_fpregset (regcache, (const gdb_fpregset_t *) fpregs);
2100 /* Store register REGNUM back into the inferior. If REGNUM is -1, do
2101 this for all registers.
2103 NOTE: Since the /proc interface will not read individual registers,
2104 we will cache these requests until the process is resumed, and only
2105 then write them back to the inferior process.
2107 FIXME: is that a really bad idea? Have to think about cases where
2108 writing one register might affect the value of others, etc. */
2111 procfs_target::store_registers (struct regcache *regcache, int regnum)
2113 gdb_gregset_t *gregs;
2115 ptid_t ptid = regcache->ptid ();
2116 int pid = ptid.pid ();
2117 int tid = ptid.lwp ();
2118 struct gdbarch *gdbarch = regcache->arch ();
2120 pi = find_procinfo_or_die (pid, tid);
2123 error (_("procfs: store_registers: failed to find procinfo for %s"),
2124 target_pid_to_str (ptid));
2126 gregs = proc_get_gregs (pi);
2128 proc_error (pi, "store_registers, get_gregs", __LINE__);
2130 fill_gregset (regcache, gregs, regnum);
2131 if (!proc_set_gregs (pi))
2132 proc_error (pi, "store_registers, set_gregs", __LINE__);
2134 if (gdbarch_fp0_regnum (gdbarch) >= 0) /* Do we have an FPU? */
2136 gdb_fpregset_t *fpregs;
2138 if ((regnum >= 0 && regnum < gdbarch_fp0_regnum (gdbarch))
2139 || regnum == gdbarch_pc_regnum (gdbarch)
2140 || regnum == gdbarch_sp_regnum (gdbarch))
2141 return; /* Not a floating point register. */
2143 fpregs = proc_get_fpregs (pi);
2145 proc_error (pi, "store_registers, get_fpregs", __LINE__);
2147 fill_fpregset (regcache, fpregs, regnum);
2148 if (!proc_set_fpregs (pi))
2149 proc_error (pi, "store_registers, set_fpregs", __LINE__);
2154 syscall_is_lwp_exit (procinfo *pi, int scall)
2156 if (scall == SYS_lwp_exit)
2162 syscall_is_exit (procinfo *pi, int scall)
2164 if (scall == SYS_exit)
2170 syscall_is_exec (procinfo *pi, int scall)
2173 if (scall == SYS_exec)
2176 if (scall == SYS_execve)
2182 syscall_is_lwp_create (procinfo *pi, int scall)
2184 if (scall == SYS_lwp_create)
2189 /* Retrieve the next stop event from the child process. If child has
2190 not stopped yet, wait for it to stop. Translate /proc eventcodes
2191 (or possibly wait eventcodes) into gdb internal event codes.
2192 Returns the id of process (and possibly thread) that incurred the
2193 event. Event codes are returned through a pointer parameter. */
2196 procfs_target::wait (ptid_t ptid, struct target_waitstatus *status,
2199 /* First cut: loosely based on original version 2.1. */
2203 ptid_t retval, temp_ptid;
2204 int why, what, flags;
2211 retval = ptid_t (-1);
2213 /* Find procinfo for main process. */
2214 pi = find_procinfo_or_die (inferior_ptid.pid (), 0);
2217 /* We must assume that the status is stale now... */
2218 pi->status_valid = 0;
2219 pi->gregs_valid = 0;
2220 pi->fpregs_valid = 0;
2222 #if 0 /* just try this out... */
2223 flags = proc_flags (pi);
2224 why = proc_why (pi);
2225 if ((flags & PR_STOPPED) && (why == PR_REQUESTED))
2226 pi->status_valid = 0; /* re-read again, IMMEDIATELY... */
2228 /* If child is not stopped, wait for it to stop. */
2229 if (!(proc_flags (pi) & (PR_STOPPED | PR_ISTOP)) &&
2230 !proc_wait_for_stop (pi))
2232 /* wait_for_stop failed: has the child terminated? */
2233 if (errno == ENOENT)
2237 /* /proc file not found; presumably child has terminated. */
2238 wait_retval = ::wait (&wstat); /* "wait" for the child's exit. */
2241 if (wait_retval != inferior_ptid.pid ())
2242 error (_("procfs: couldn't stop "
2243 "process %d: wait returned %d."),
2244 inferior_ptid.pid (), wait_retval);
2245 /* FIXME: might I not just use waitpid?
2246 Or try find_procinfo to see if I know about this child? */
2247 retval = ptid_t (wait_retval);
2249 else if (errno == EINTR)
2253 /* Unknown error from wait_for_stop. */
2254 proc_error (pi, "target_wait (wait_for_stop)", __LINE__);
2259 /* This long block is reached if either:
2260 a) the child was already stopped, or
2261 b) we successfully waited for the child with wait_for_stop.
2262 This block will analyze the /proc status, and translate it
2263 into a waitstatus for GDB.
2265 If we actually had to call wait because the /proc file
2266 is gone (child terminated), then we skip this block,
2267 because we already have a waitstatus. */
2269 flags = proc_flags (pi);
2270 why = proc_why (pi);
2271 what = proc_what (pi);
2273 if (flags & (PR_STOPPED | PR_ISTOP))
2275 /* If it's running async (for single_thread control),
2276 set it back to normal again. */
2277 if (flags & PR_ASYNC)
2278 if (!proc_unset_async (pi))
2279 proc_error (pi, "target_wait, unset_async", __LINE__);
2282 proc_prettyprint_why (why, what, 1);
2284 /* The 'pid' we will return to GDB is composed of
2285 the process ID plus the lwp ID. */
2286 retval = ptid_t (pi->pid, proc_get_current_thread (pi), 0);
2290 wstat = (what << 8) | 0177;
2293 if (syscall_is_lwp_exit (pi, what))
2295 if (print_thread_events)
2296 printf_unfiltered (_("[%s exited]\n"),
2297 target_pid_to_str (retval));
2298 delete_thread (find_thread_ptid (retval));
2299 status->kind = TARGET_WAITKIND_SPURIOUS;
2302 else if (syscall_is_exit (pi, what))
2304 struct inferior *inf;
2306 /* Handle SYS_exit call only. */
2307 /* Stopped at entry to SYS_exit.
2308 Make it runnable, resume it, then use
2309 the wait system call to get its exit code.
2310 Proc_run_process always clears the current
2312 Then return its exit status. */
2313 pi->status_valid = 0;
2315 /* FIXME: what we should do is return
2316 TARGET_WAITKIND_SPURIOUS. */
2317 if (!proc_run_process (pi, 0, 0))
2318 proc_error (pi, "target_wait, run_process", __LINE__);
2320 inf = find_inferior_pid (pi->pid);
2321 if (inf->attach_flag)
2323 /* Don't call wait: simulate waiting for exit,
2324 return a "success" exit code. Bogus: what if
2325 it returns something else? */
2327 retval = inferior_ptid; /* ? ? ? */
2331 int temp = ::wait (&wstat);
2333 /* FIXME: shouldn't I make sure I get the right
2334 event from the right process? If (for
2335 instance) I have killed an earlier inferior
2336 process but failed to clean up after it
2337 somehow, I could get its termination event
2340 /* If wait returns -1, that's what we return
2343 retval = ptid_t (temp);
2348 printf_filtered (_("procfs: trapped on entry to "));
2349 proc_prettyprint_syscall (proc_what (pi), 0);
2350 printf_filtered ("\n");
2352 long i, nsysargs, *sysargs;
2354 if ((nsysargs = proc_nsysarg (pi)) > 0 &&
2355 (sysargs = proc_sysargs (pi)) != NULL)
2357 printf_filtered (_("%ld syscall arguments:\n"),
2359 for (i = 0; i < nsysargs; i++)
2360 printf_filtered ("#%ld: 0x%08lx\n",
2366 /* How to exit gracefully, returning "unknown
2368 status->kind = TARGET_WAITKIND_SPURIOUS;
2369 return inferior_ptid;
2373 /* How to keep going without returning to wfi: */
2374 target_continue_no_signal (ptid);
2380 if (syscall_is_exec (pi, what))
2382 /* Hopefully this is our own "fork-child" execing
2383 the real child. Hoax this event into a trap, and
2384 GDB will see the child about to execute its start
2386 wstat = (SIGTRAP << 8) | 0177;
2388 else if (syscall_is_lwp_create (pi, what))
2390 /* This syscall is somewhat like fork/exec. We
2391 will get the event twice: once for the parent
2392 LWP, and once for the child. We should already
2393 know about the parent LWP, but the child will
2394 be new to us. So, whenever we get this event,
2395 if it represents a new thread, simply add the
2396 thread to the list. */
2398 /* If not in procinfo list, add it. */
2399 temp_tid = proc_get_current_thread (pi);
2400 if (!find_procinfo (pi->pid, temp_tid))
2401 create_procinfo (pi->pid, temp_tid);
2403 temp_ptid = ptid_t (pi->pid, temp_tid, 0);
2404 /* If not in GDB's thread list, add it. */
2405 if (!in_thread_list (temp_ptid))
2406 add_thread (temp_ptid);
2408 /* Return to WFI, but tell it to immediately resume. */
2409 status->kind = TARGET_WAITKIND_SPURIOUS;
2410 return inferior_ptid;
2412 else if (syscall_is_lwp_exit (pi, what))
2414 if (print_thread_events)
2415 printf_unfiltered (_("[%s exited]\n"),
2416 target_pid_to_str (retval));
2417 delete_thread (find_thread_ptid (retval));
2418 status->kind = TARGET_WAITKIND_SPURIOUS;
2423 /* FIXME: Do we need to handle SYS_sproc,
2424 SYS_fork, or SYS_vfork here? The old procfs
2425 seemed to use this event to handle threads on
2426 older (non-LWP) systems, where I'm assuming
2427 that threads were actually separate processes.
2428 Irix, maybe? Anyway, low priority for now. */
2432 printf_filtered (_("procfs: trapped on exit from "));
2433 proc_prettyprint_syscall (proc_what (pi), 0);
2434 printf_filtered ("\n");
2436 long i, nsysargs, *sysargs;
2438 if ((nsysargs = proc_nsysarg (pi)) > 0 &&
2439 (sysargs = proc_sysargs (pi)) != NULL)
2441 printf_filtered (_("%ld syscall arguments:\n"),
2443 for (i = 0; i < nsysargs; i++)
2444 printf_filtered ("#%ld: 0x%08lx\n",
2448 status->kind = TARGET_WAITKIND_SPURIOUS;
2449 return inferior_ptid;
2454 wstat = (SIGSTOP << 8) | 0177;
2459 printf_filtered (_("Retry #%d:\n"), retry);
2460 pi->status_valid = 0;
2465 /* If not in procinfo list, add it. */
2466 temp_tid = proc_get_current_thread (pi);
2467 if (!find_procinfo (pi->pid, temp_tid))
2468 create_procinfo (pi->pid, temp_tid);
2470 /* If not in GDB's thread list, add it. */
2471 temp_ptid = ptid_t (pi->pid, temp_tid, 0);
2472 if (!in_thread_list (temp_ptid))
2473 add_thread (temp_ptid);
2475 status->kind = TARGET_WAITKIND_STOPPED;
2476 status->value.sig = GDB_SIGNAL_0;
2481 wstat = (what << 8) | 0177;
2486 wstat = (SIGTRAP << 8) | 0177;
2488 /* FIXME: use si_signo where possible. */
2491 wstat = (SIGILL << 8) | 0177;
2495 wstat = (SIGTRAP << 8) | 0177;
2500 wstat = (SIGSEGV << 8) | 0177;
2505 wstat = (SIGFPE << 8) | 0177;
2507 case FLTPAGE: /* Recoverable page fault */
2508 default: /* FIXME: use si_signo if possible for
2510 retval = ptid_t (-1);
2511 printf_filtered ("procfs:%d -- ", __LINE__);
2512 printf_filtered (_("child stopped for unknown reason:\n"));
2513 proc_prettyprint_why (why, what, 1);
2514 error (_("... giving up..."));
2517 break; /* case PR_FAULTED: */
2518 default: /* switch (why) unmatched */
2519 printf_filtered ("procfs:%d -- ", __LINE__);
2520 printf_filtered (_("child stopped for unknown reason:\n"));
2521 proc_prettyprint_why (why, what, 1);
2522 error (_("... giving up..."));
2525 /* Got this far without error: If retval isn't in the
2526 threads database, add it. */
2527 if (retval.pid () > 0 &&
2528 retval != inferior_ptid &&
2529 !in_thread_list (retval))
2531 /* We have a new thread. We need to add it both to
2532 GDB's list and to our own. If we don't create a
2533 procinfo, resume may be unhappy later. */
2534 add_thread (retval);
2535 if (find_procinfo (retval.pid (),
2536 retval.lwp ()) == NULL)
2537 create_procinfo (retval.pid (),
2541 else /* Flags do not indicate STOPPED. */
2543 /* surely this can't happen... */
2544 printf_filtered ("procfs:%d -- process not stopped.\n",
2546 proc_prettyprint_flags (flags, 1);
2547 error (_("procfs: ...giving up..."));
2552 store_waitstatus (status, wstat);
2558 /* Perform a partial transfer to/from the specified object. For
2559 memory transfers, fall back to the old memory xfer functions. */
2561 enum target_xfer_status
2562 procfs_target::xfer_partial (enum target_object object,
2563 const char *annex, gdb_byte *readbuf,
2564 const gdb_byte *writebuf, ULONGEST offset,
2565 ULONGEST len, ULONGEST *xfered_len)
2569 case TARGET_OBJECT_MEMORY:
2570 return procfs_xfer_memory (readbuf, writebuf, offset, len, xfered_len);
2572 case TARGET_OBJECT_AUXV:
2573 return memory_xfer_auxv (this, object, annex, readbuf, writebuf,
2574 offset, len, xfered_len);
2577 return this->beneath ()->xfer_partial (object, annex,
2578 readbuf, writebuf, offset, len,
2583 /* Helper for procfs_xfer_partial that handles memory transfers.
2584 Arguments are like target_xfer_partial. */
2586 static enum target_xfer_status
2587 procfs_xfer_memory (gdb_byte *readbuf, const gdb_byte *writebuf,
2588 ULONGEST memaddr, ULONGEST len, ULONGEST *xfered_len)
2593 /* Find procinfo for main process. */
2594 pi = find_procinfo_or_die (inferior_ptid.pid (), 0);
2595 if (pi->as_fd == 0 &&
2596 open_procinfo_files (pi, FD_AS) == 0)
2598 proc_warn (pi, "xfer_memory, open_proc_files", __LINE__);
2599 return TARGET_XFER_E_IO;
2602 if (lseek (pi->as_fd, (off_t) memaddr, SEEK_SET) != (off_t) memaddr)
2603 return TARGET_XFER_E_IO;
2605 if (writebuf != NULL)
2607 PROCFS_NOTE ("write memory:\n");
2608 nbytes = write (pi->as_fd, writebuf, len);
2612 PROCFS_NOTE ("read memory:\n");
2613 nbytes = read (pi->as_fd, readbuf, len);
2616 return TARGET_XFER_E_IO;
2617 *xfered_len = nbytes;
2618 return TARGET_XFER_OK;
2621 /* Called by target_resume before making child runnable. Mark cached
2622 registers and status's invalid. If there are "dirty" caches that
2623 need to be written back to the child process, do that.
2625 File descriptors are also cached. As they are a limited resource,
2626 we cannot hold onto them indefinitely. However, as they are
2627 expensive to open, we don't want to throw them away
2628 indescriminately either. As a compromise, we will keep the file
2629 descriptors for the parent process, but discard any file
2630 descriptors we may have accumulated for the threads.
2632 As this function is called by iterate_over_threads, it always
2633 returns zero (so that iterate_over_threads will keep
2637 invalidate_cache (procinfo *parent, procinfo *pi, void *ptr)
2639 /* About to run the child; invalidate caches and do any other
2643 if (pi->gregs_dirty)
2644 if (parent == NULL ||
2645 proc_get_current_thread (parent) != pi->tid)
2646 if (!proc_set_gregs (pi)) /* flush gregs cache */
2647 proc_warn (pi, "target_resume, set_gregs",
2649 if (gdbarch_fp0_regnum (target_gdbarch ()) >= 0)
2650 if (pi->fpregs_dirty)
2651 if (parent == NULL ||
2652 proc_get_current_thread (parent) != pi->tid)
2653 if (!proc_set_fpregs (pi)) /* flush fpregs cache */
2654 proc_warn (pi, "target_resume, set_fpregs",
2660 /* The presence of a parent indicates that this is an LWP.
2661 Close any file descriptors that it might have open.
2662 We don't do this to the master (parent) procinfo. */
2664 close_procinfo_files (pi);
2666 pi->gregs_valid = 0;
2667 pi->fpregs_valid = 0;
2669 pi->gregs_dirty = 0;
2670 pi->fpregs_dirty = 0;
2672 pi->status_valid = 0;
2673 pi->threads_valid = 0;
2679 /* A callback function for iterate_over_threads. Find the
2680 asynchronous signal thread, and make it runnable. See if that
2681 helps matters any. */
2684 make_signal_thread_runnable (procinfo *process, procinfo *pi, void *ptr)
2687 if (proc_flags (pi) & PR_ASLWP)
2689 if (!proc_run_process (pi, 0, -1))
2690 proc_error (pi, "make_signal_thread_runnable", __LINE__);
2698 /* Make the child process runnable. Normally we will then call
2699 procfs_wait and wait for it to stop again (unless gdb is async).
2701 If STEP is true, then arrange for the child to stop again after
2702 executing a single instruction. If SIGNO is zero, then cancel any
2703 pending signal; if non-zero, then arrange for the indicated signal
2704 to be delivered to the child when it runs. If PID is -1, then
2705 allow any child thread to run; if non-zero, then allow only the
2706 indicated thread to run. (not implemented yet). */
2709 procfs_target::resume (ptid_t ptid, int step, enum gdb_signal signo)
2711 procinfo *pi, *thread;
2715 prrun.prflags |= PRSVADDR;
2716 prrun.pr_vaddr = $PC; set resume address
2717 prrun.prflags |= PRSTRACE; trace signals in pr_trace (all)
2718 prrun.prflags |= PRSFAULT; trace faults in pr_fault (all but PAGE)
2719 prrun.prflags |= PRCFAULT; clear current fault.
2721 PRSTRACE and PRSFAULT can be done by other means
2722 (proc_trace_signals, proc_trace_faults)
2723 PRSVADDR is unnecessary.
2724 PRCFAULT may be replaced by a PIOCCFAULT call (proc_clear_current_fault)
2725 This basically leaves PRSTEP and PRCSIG.
2726 PRCSIG is like PIOCSSIG (proc_clear_current_signal).
2727 So basically PR_STEP is the sole argument that must be passed
2728 to proc_run_process (for use in the prrun struct by ioctl). */
2730 /* Find procinfo for main process. */
2731 pi = find_procinfo_or_die (inferior_ptid.pid (), 0);
2733 /* First cut: ignore pid argument. */
2736 /* Convert signal to host numbering. */
2738 (signo == GDB_SIGNAL_STOP && pi->ignore_next_sigstop))
2741 native_signo = gdb_signal_to_host (signo);
2743 pi->ignore_next_sigstop = 0;
2745 /* Running the process voids all cached registers and status. */
2746 /* Void the threads' caches first. */
2747 proc_iterate_over_threads (pi, invalidate_cache, NULL);
2748 /* Void the process procinfo's caches. */
2749 invalidate_cache (NULL, pi, NULL);
2751 if (ptid.pid () != -1)
2753 /* Resume a specific thread, presumably suppressing the
2755 thread = find_procinfo (ptid.pid (), ptid.lwp ());
2758 if (thread->tid != 0)
2760 /* We're to resume a specific thread, and not the
2761 others. Set the child process's PR_ASYNC flag. */
2762 if (!proc_set_async (pi))
2763 proc_error (pi, "target_resume, set_async", __LINE__);
2765 proc_iterate_over_threads (pi,
2766 make_signal_thread_runnable,
2769 pi = thread; /* Substitute the thread's procinfo
2775 if (!proc_run_process (pi, step, native_signo))
2778 warning (_("resume: target already running. "
2779 "Pretend to resume, and hope for the best!"));
2781 proc_error (pi, "target_resume", __LINE__);
2785 /* Set up to trace signals in the child process. */
2788 procfs_target::pass_signals (int numsigs, unsigned char *pass_signals)
2791 procinfo *pi = find_procinfo_or_die (inferior_ptid.pid (), 0);
2794 prfillset (&signals);
2796 for (signo = 0; signo < NSIG; signo++)
2798 int target_signo = gdb_signal_from_host (signo);
2799 if (target_signo < numsigs && pass_signals[target_signo])
2800 prdelset (&signals, signo);
2803 if (!proc_set_traced_signals (pi, &signals))
2804 proc_error (pi, "pass_signals", __LINE__);
2807 /* Print status information about the child process. */
2810 procfs_target::files_info ()
2812 struct inferior *inf = current_inferior ();
2814 printf_filtered (_("\tUsing the running image of %s %s via /proc.\n"),
2815 inf->attach_flag? "attached": "child",
2816 target_pid_to_str (inferior_ptid));
2819 /* Make it die. Wait for it to die. Clean up after it. Note: this
2820 should only be applied to the real process, not to an LWP, because
2821 of the check for parent-process. If we need this to work for an
2822 LWP, it needs some more logic. */
2825 unconditionally_kill_inferior (procinfo *pi)
2829 parent_pid = proc_parent_pid (pi);
2830 if (!proc_kill (pi, SIGKILL))
2831 proc_error (pi, "unconditionally_kill, proc_kill", __LINE__);
2832 destroy_procinfo (pi);
2834 /* If pi is GDB's child, wait for it to die. */
2835 if (parent_pid == getpid ())
2836 /* FIXME: should we use waitpid to make sure we get the right event?
2837 Should we check the returned event? */
2842 ret = waitpid (pi->pid, &status, 0);
2849 /* We're done debugging it, and we want it to go away. Then we want
2850 GDB to forget all about it. */
2853 procfs_target::kill ()
2855 if (inferior_ptid != null_ptid) /* ? */
2857 /* Find procinfo for main process. */
2858 procinfo *pi = find_procinfo (inferior_ptid.pid (), 0);
2861 unconditionally_kill_inferior (pi);
2862 target_mourn_inferior (inferior_ptid);
2866 /* Forget we ever debugged this thing! */
2869 procfs_target::mourn_inferior ()
2873 if (inferior_ptid != null_ptid)
2875 /* Find procinfo for main process. */
2876 pi = find_procinfo (inferior_ptid.pid (), 0);
2878 destroy_procinfo (pi);
2881 generic_mourn_inferior ();
2883 maybe_unpush_target ();
2886 /* When GDB forks to create a runnable inferior process, this function
2887 is called on the parent side of the fork. It's job is to do
2888 whatever is necessary to make the child ready to be debugged, and
2889 then wait for the child to synchronize. */
2892 procfs_init_inferior (struct target_ops *ops, int pid)
2899 /* This routine called on the parent side (GDB side)
2900 after GDB forks the inferior. */
2901 if (!target_is_pushed (ops))
2904 if ((pi = create_procinfo (pid, 0)) == NULL)
2905 perror (_("procfs: out of memory in 'init_inferior'"));
2907 if (!open_procinfo_files (pi, FD_CTL))
2908 proc_error (pi, "init_inferior, open_proc_files", __LINE__);
2912 open_procinfo_files // done
2915 procfs_notice_signals
2922 /* If not stopped yet, wait for it to stop. */
2923 if (!(proc_flags (pi) & PR_STOPPED) &&
2924 !(proc_wait_for_stop (pi)))
2925 dead_procinfo (pi, "init_inferior: wait_for_stop failed", KILL);
2927 /* Save some of the /proc state to be restored if we detach. */
2928 /* FIXME: Why? In case another debugger was debugging it?
2929 We're it's parent, for Ghu's sake! */
2930 if (!proc_get_traced_signals (pi, &pi->saved_sigset))
2931 proc_error (pi, "init_inferior, get_traced_signals", __LINE__);
2932 if (!proc_get_held_signals (pi, &pi->saved_sighold))
2933 proc_error (pi, "init_inferior, get_held_signals", __LINE__);
2934 if (!proc_get_traced_faults (pi, &pi->saved_fltset))
2935 proc_error (pi, "init_inferior, get_traced_faults", __LINE__);
2936 if (!proc_get_traced_sysentry (pi, pi->saved_entryset))
2937 proc_error (pi, "init_inferior, get_traced_sysentry", __LINE__);
2938 if (!proc_get_traced_sysexit (pi, pi->saved_exitset))
2939 proc_error (pi, "init_inferior, get_traced_sysexit", __LINE__);
2941 if ((fail = procfs_debug_inferior (pi)) != 0)
2942 proc_error (pi, "init_inferior (procfs_debug_inferior)", fail);
2944 /* FIXME: logically, we should really be turning OFF run-on-last-close,
2945 and possibly even turning ON kill-on-last-close at this point. But
2946 I can't make that change without careful testing which I don't have
2947 time to do right now... */
2948 /* Turn on run-on-last-close flag so that the child
2949 will die if GDB goes away for some reason. */
2950 if (!proc_set_run_on_last_close (pi))
2951 proc_error (pi, "init_inferior, set_RLC", __LINE__);
2953 /* We now have have access to the lwpid of the main thread/lwp. */
2954 lwpid = proc_get_current_thread (pi);
2956 /* Create a procinfo for the main lwp. */
2957 create_procinfo (pid, lwpid);
2959 /* We already have a main thread registered in the thread table at
2960 this point, but it didn't have any lwp info yet. Notify the core
2961 about it. This changes inferior_ptid as well. */
2962 thread_change_ptid (ptid_t (pid),
2963 ptid_t (pid, lwpid, 0));
2965 gdb_startup_inferior (pid, START_INFERIOR_TRAPS_EXPECTED);
2968 /* When GDB forks to create a new process, this function is called on
2969 the child side of the fork before GDB exec's the user program. Its
2970 job is to make the child minimally debuggable, so that the parent
2971 GDB process can connect to the child and take over. This function
2972 should do only the minimum to make that possible, and to
2973 synchronize with the parent process. The parent process should
2974 take care of the details. */
2977 procfs_set_exec_trap (void)
2979 /* This routine called on the child side (inferior side)
2980 after GDB forks the inferior. It must use only local variables,
2981 because it may be sharing data space with its parent. */
2986 if ((pi = create_procinfo (getpid (), 0)) == NULL)
2987 perror_with_name (_("procfs: create_procinfo failed in child."));
2989 if (open_procinfo_files (pi, FD_CTL) == 0)
2991 proc_warn (pi, "set_exec_trap, open_proc_files", __LINE__);
2992 gdb_flush (gdb_stderr);
2993 /* No need to call "dead_procinfo", because we're going to
2998 /* Method for tracing exec syscalls. */
3000 Not all systems with /proc have all the exec* syscalls with the same
3001 names. On the SGI, for example, there is no SYS_exec, but there
3002 *is* a SYS_execv. So, we try to account for that. */
3004 exitset = sysset_t_alloc (pi);
3005 premptyset (exitset);
3007 praddset (exitset, SYS_exec);
3009 praddset (exitset, SYS_execve);
3011 if (!proc_set_traced_sysexit (pi, exitset))
3013 proc_warn (pi, "set_exec_trap, set_traced_sysexit", __LINE__);
3014 gdb_flush (gdb_stderr);
3018 /* FIXME: should this be done in the parent instead? */
3019 /* Turn off inherit on fork flag so that all grand-children
3020 of gdb start with tracing flags cleared. */
3021 if (!proc_unset_inherit_on_fork (pi))
3022 proc_warn (pi, "set_exec_trap, unset_inherit", __LINE__);
3024 /* Turn off run on last close flag, so that the child process
3025 cannot run away just because we close our handle on it.
3026 We want it to wait for the parent to attach. */
3027 if (!proc_unset_run_on_last_close (pi))
3028 proc_warn (pi, "set_exec_trap, unset_RLC", __LINE__);
3030 /* FIXME: No need to destroy the procinfo --
3031 we have our own address space, and we're about to do an exec! */
3032 /*destroy_procinfo (pi);*/
3035 /* This function is called BEFORE gdb forks the inferior process. Its
3036 only real responsibility is to set things up for the fork, and tell
3037 GDB which two functions to call after the fork (one for the parent,
3038 and one for the child).
3040 This function does a complicated search for a unix shell program,
3041 which it then uses to parse arguments and environment variables to
3042 be sent to the child. I wonder whether this code could not be
3043 abstracted out and shared with other unix targets such as
3047 procfs_target::create_inferior (const char *exec_file,
3048 const std::string &allargs,
3049 char **env, int from_tty)
3051 char *shell_file = getenv ("SHELL");
3055 if (shell_file != NULL && strchr (shell_file, '/') == NULL)
3058 /* We will be looking down the PATH to find shell_file. If we
3059 just do this the normal way (via execlp, which operates by
3060 attempting an exec for each element of the PATH until it
3061 finds one which succeeds), then there will be an exec for
3062 each failed attempt, each of which will cause a PR_SYSEXIT
3063 stop, and we won't know how to distinguish the PR_SYSEXIT's
3064 for these failed execs with the ones for successful execs
3065 (whether the exec has succeeded is stored at that time in the
3066 carry bit or some such architecture-specific and
3067 non-ABI-specified place).
3069 So I can't think of anything better than to search the PATH
3070 now. This has several disadvantages: (1) There is a race
3071 condition; if we find a file now and it is deleted before we
3072 exec it, we lose, even if the deletion leaves a valid file
3073 further down in the PATH, (2) there is no way to know exactly
3074 what an executable (in the sense of "capable of being
3075 exec'd") file is. Using access() loses because it may lose
3076 if the caller is the superuser; failing to use it loses if
3077 there are ACLs or some such. */
3081 /* FIXME-maybe: might want "set path" command so user can change what
3082 path is used from within GDB. */
3083 const char *path = getenv ("PATH");
3085 struct stat statbuf;
3088 path = "/bin:/usr/bin";
3090 tryname = (char *) alloca (strlen (path) + strlen (shell_file) + 2);
3091 for (p = path; p != NULL; p = p1 ? p1 + 1: NULL)
3093 p1 = strchr (p, ':');
3098 strncpy (tryname, p, len);
3099 tryname[len] = '\0';
3100 strcat (tryname, "/");
3101 strcat (tryname, shell_file);
3102 if (access (tryname, X_OK) < 0)
3104 if (stat (tryname, &statbuf) < 0)
3106 if (!S_ISREG (statbuf.st_mode))
3107 /* We certainly need to reject directories. I'm not quite
3108 as sure about FIFOs, sockets, etc., but I kind of doubt
3109 that people want to exec() these things. */
3114 /* Not found. This must be an error rather than merely passing
3115 the file to execlp(), because execlp() would try all the
3116 exec()s, causing GDB to get confused. */
3117 error (_("procfs:%d -- Can't find shell %s in PATH"),
3118 __LINE__, shell_file);
3120 shell_file = tryname;
3123 pid = fork_inferior (exec_file, allargs, env, procfs_set_exec_trap,
3124 NULL, NULL, shell_file, NULL);
3126 /* We have something that executes now. We'll be running through
3127 the shell at this point (if startup-with-shell is true), but the
3128 pid shouldn't change. */
3129 add_thread_silent (ptid_t (pid));
3131 procfs_init_inferior (this, pid);
3134 /* An observer for the "inferior_created" event. */
3137 procfs_inferior_created (struct target_ops *ops, int from_tty)
3141 /* Callback for update_thread_list. Calls "add_thread". */
3144 procfs_notice_thread (procinfo *pi, procinfo *thread, void *ptr)
3146 ptid_t gdb_threadid = ptid_t (pi->pid, thread->tid, 0);
3148 if (!in_thread_list (gdb_threadid) || is_exited (gdb_threadid))
3149 add_thread (gdb_threadid);
3154 /* Query all the threads that the target knows about, and give them
3155 back to GDB to add to its list. */
3158 procfs_target::update_thread_list ()
3164 /* Find procinfo for main process. */
3165 pi = find_procinfo_or_die (inferior_ptid.pid (), 0);
3166 proc_update_threads (pi);
3167 proc_iterate_over_threads (pi, procfs_notice_thread, NULL);
3170 /* Return true if the thread is still 'alive'. This guy doesn't
3171 really seem to be doing his job. Got to investigate how to tell
3172 when a thread is really gone. */
3175 procfs_target::thread_alive (ptid_t ptid)
3181 thread = ptid.lwp ();
3182 /* If I don't know it, it ain't alive! */
3183 if ((pi = find_procinfo (proc, thread)) == NULL)
3186 /* If I can't get its status, it ain't alive!
3187 What's more, I need to forget about it! */
3188 if (!proc_get_status (pi))
3190 destroy_procinfo (pi);
3193 /* I couldn't have got its status if it weren't alive, so it's
3198 /* Convert PTID to a string. Returns the string in a static
3202 procfs_target::pid_to_str (ptid_t ptid)
3204 static char buf[80];
3206 if (ptid.lwp () == 0)
3207 sprintf (buf, "process %d", ptid.pid ());
3209 sprintf (buf, "LWP %ld", ptid.lwp ());
3214 /* Insert a watchpoint. */
3217 procfs_set_watchpoint (ptid_t ptid, CORE_ADDR addr, int len, int rwflag,
3223 pi = find_procinfo_or_die (ptid.pid () == -1 ?
3224 inferior_ptid.pid () : ptid.pid (),
3227 /* Translate from GDB's flags to /proc's. */
3228 if (len > 0) /* len == 0 means delete watchpoint. */
3230 switch (rwflag) { /* FIXME: need an enum! */
3231 case hw_write: /* default watchpoint (write) */
3232 pflags = WRITE_WATCHFLAG;
3234 case hw_read: /* read watchpoint */
3235 pflags = READ_WATCHFLAG;
3237 case hw_access: /* access watchpoint */
3238 pflags = READ_WATCHFLAG | WRITE_WATCHFLAG;
3240 case hw_execute: /* execution HW breakpoint */
3241 pflags = EXEC_WATCHFLAG;
3243 default: /* Something weird. Return error. */
3246 if (after) /* Stop after r/w access is completed. */
3247 pflags |= AFTER_WATCHFLAG;
3250 if (!proc_set_watchpoint (pi, addr, len, pflags))
3252 if (errno == E2BIG) /* Typical error for no resources. */
3253 return -1; /* fail */
3254 /* GDB may try to remove the same watchpoint twice.
3255 If a remove request returns no match, don't error. */
3256 if (errno == ESRCH && len == 0)
3257 return 0; /* ignore */
3258 proc_error (pi, "set_watchpoint", __LINE__);
3263 /* Return non-zero if we can set a hardware watchpoint of type TYPE. TYPE
3264 is one of bp_hardware_watchpoint, bp_read_watchpoint, bp_write_watchpoint,
3265 or bp_hardware_watchpoint. CNT is the number of watchpoints used so
3268 Note: procfs_can_use_hw_breakpoint() is not yet used by all
3269 procfs.c targets due to the fact that some of them still define
3270 target_can_use_hardware_watchpoint. */
3273 procfs_target::can_use_hw_breakpoint (enum bptype type, int cnt, int othertype)
3275 /* Due to the way that proc_set_watchpoint() is implemented, host
3276 and target pointers must be of the same size. If they are not,
3277 we can't use hardware watchpoints. This limitation is due to the
3278 fact that proc_set_watchpoint() calls
3279 procfs_address_to_host_pointer(); a close inspection of
3280 procfs_address_to_host_pointer will reveal that an internal error
3281 will be generated when the host and target pointer sizes are
3283 struct type *ptr_type = builtin_type (target_gdbarch ())->builtin_data_ptr;
3285 if (sizeof (void *) != TYPE_LENGTH (ptr_type))
3288 /* Other tests here??? */
3293 /* Returns non-zero if process is stopped on a hardware watchpoint
3294 fault, else returns zero. */
3297 procfs_target::stopped_by_watchpoint ()
3301 pi = find_procinfo_or_die (inferior_ptid.pid (), 0);
3303 if (proc_flags (pi) & (PR_STOPPED | PR_ISTOP))
3305 if (proc_why (pi) == PR_FAULTED)
3307 if (proc_what (pi) == FLTWATCH)
3314 /* Returns 1 if the OS knows the position of the triggered watchpoint,
3315 and sets *ADDR to that address. Returns 0 if OS cannot report that
3316 address. This function is only called if
3317 procfs_stopped_by_watchpoint returned 1, thus no further checks are
3318 done. The function also assumes that ADDR is not NULL. */
3321 procfs_target::stopped_data_address (CORE_ADDR *addr)
3325 pi = find_procinfo_or_die (inferior_ptid.pid (), 0);
3326 return proc_watchpoint_address (pi, addr);
3330 procfs_target::insert_watchpoint (CORE_ADDR addr, int len,
3331 enum target_hw_bp_type type,
3332 struct expression *cond)
3334 if (!target_have_steppable_watchpoint
3335 && !gdbarch_have_nonsteppable_watchpoint (target_gdbarch ()))
3337 /* When a hardware watchpoint fires off the PC will be left at
3338 the instruction following the one which caused the
3339 watchpoint. It will *NOT* be necessary for GDB to step over
3341 return procfs_set_watchpoint (inferior_ptid, addr, len, type, 1);
3345 /* When a hardware watchpoint fires off the PC will be left at
3346 the instruction which caused the watchpoint. It will be
3347 necessary for GDB to step over the watchpoint. */
3348 return procfs_set_watchpoint (inferior_ptid, addr, len, type, 0);
3353 procfs_target::remove_watchpoint (CORE_ADDR addr, int len,
3354 enum target_hw_bp_type type,
3355 struct expression *cond)
3357 return procfs_set_watchpoint (inferior_ptid, addr, 0, 0, 0);
3361 procfs_target::region_ok_for_hw_watchpoint (CORE_ADDR addr, int len)
3363 /* The man page for proc(4) on Solaris 2.6 and up says that the
3364 system can support "thousands" of hardware watchpoints, but gives
3365 no method for finding out how many; It doesn't say anything about
3366 the allowed size for the watched area either. So we just tell
3371 /* Memory Mappings Functions: */
3373 /* Call a callback function once for each mapping, passing it the
3374 mapping, an optional secondary callback function, and some optional
3375 opaque data. Quit and return the first non-zero value returned
3378 PI is the procinfo struct for the process to be mapped. FUNC is
3379 the callback function to be called by this iterator. DATA is the
3380 optional opaque data to be passed to the callback function.
3381 CHILD_FUNC is the optional secondary function pointer to be passed
3382 to the child function. Returns the first non-zero return value
3383 from the callback function, or zero. */
3386 iterate_over_mappings (procinfo *pi, find_memory_region_ftype child_func,
3388 int (*func) (struct prmap *map,
3389 find_memory_region_ftype child_func,
3392 char pathname[MAX_PROC_NAME_SIZE];
3393 struct prmap *prmaps;
3394 struct prmap *prmap;
3399 /* Get the number of mappings, allocate space,
3400 and read the mappings into prmaps. */
3402 sprintf (pathname, "/proc/%d/map", pi->pid);
3404 scoped_fd map_fd (open (pathname, O_RDONLY));
3405 if (map_fd.get () < 0)
3406 proc_error (pi, "iterate_over_mappings (open)", __LINE__);
3408 /* Use stat to determine the file size, and compute
3409 the number of prmap_t objects it contains. */
3410 if (fstat (map_fd.get (), &sbuf) != 0)
3411 proc_error (pi, "iterate_over_mappings (fstat)", __LINE__);
3413 nmap = sbuf.st_size / sizeof (prmap_t);
3414 prmaps = (struct prmap *) alloca ((nmap + 1) * sizeof (*prmaps));
3415 if (read (map_fd.get (), (char *) prmaps, nmap * sizeof (*prmaps))
3416 != (nmap * sizeof (*prmaps)))
3417 proc_error (pi, "iterate_over_mappings (read)", __LINE__);
3419 for (prmap = prmaps; nmap > 0; prmap++, nmap--)
3420 if ((funcstat = (*func) (prmap, child_func, data)) != 0)
3426 /* Implements the to_find_memory_regions method. Calls an external
3427 function for each memory region.
3428 Returns the integer value returned by the callback. */
3431 find_memory_regions_callback (struct prmap *map,
3432 find_memory_region_ftype func, void *data)
3434 return (*func) ((CORE_ADDR) map->pr_vaddr,
3436 (map->pr_mflags & MA_READ) != 0,
3437 (map->pr_mflags & MA_WRITE) != 0,
3438 (map->pr_mflags & MA_EXEC) != 0,
3439 1, /* MODIFIED is unknown, pass it as true. */
3443 /* External interface. Calls a callback function once for each
3444 mapped memory region in the child process, passing as arguments:
3446 CORE_ADDR virtual_address,
3448 int read, TRUE if region is readable by the child
3449 int write, TRUE if region is writable by the child
3450 int execute TRUE if region is executable by the child.
3452 Stops iterating and returns the first non-zero value returned by
3456 procfs_target::find_memory_regions (find_memory_region_ftype func, void *data)
3458 procinfo *pi = find_procinfo_or_die (inferior_ptid.pid (), 0);
3460 return iterate_over_mappings (pi, func, data,
3461 find_memory_regions_callback);
3464 /* Returns an ascii representation of a memory mapping's flags. */
3467 mappingflags (long flags)
3469 static char asciiflags[8];
3471 strcpy (asciiflags, "-------");
3472 if (flags & MA_STACK)
3473 asciiflags[1] = 's';
3474 if (flags & MA_BREAK)
3475 asciiflags[2] = 'b';
3476 if (flags & MA_SHARED)
3477 asciiflags[3] = 's';
3478 if (flags & MA_READ)
3479 asciiflags[4] = 'r';
3480 if (flags & MA_WRITE)
3481 asciiflags[5] = 'w';
3482 if (flags & MA_EXEC)
3483 asciiflags[6] = 'x';
3484 return (asciiflags);
3487 /* Callback function, does the actual work for 'info proc
3491 info_mappings_callback (struct prmap *map, find_memory_region_ftype ignore,
3494 unsigned int pr_off;
3496 pr_off = (unsigned int) map->pr_offset;
3498 if (gdbarch_addr_bit (target_gdbarch ()) == 32)
3499 printf_filtered ("\t%#10lx %#10lx %#10lx %#10x %7s\n",
3500 (unsigned long) map->pr_vaddr,
3501 (unsigned long) map->pr_vaddr + map->pr_size - 1,
3502 (unsigned long) map->pr_size,
3504 mappingflags (map->pr_mflags));
3506 printf_filtered (" %#18lx %#18lx %#10lx %#10x %7s\n",
3507 (unsigned long) map->pr_vaddr,
3508 (unsigned long) map->pr_vaddr + map->pr_size - 1,
3509 (unsigned long) map->pr_size,
3511 mappingflags (map->pr_mflags));
3516 /* Implement the "info proc mappings" subcommand. */
3519 info_proc_mappings (procinfo *pi, int summary)
3522 return; /* No output for summary mode. */
3524 printf_filtered (_("Mapped address spaces:\n\n"));
3525 if (gdbarch_ptr_bit (target_gdbarch ()) == 32)
3526 printf_filtered ("\t%10s %10s %10s %10s %7s\n",
3533 printf_filtered (" %18s %18s %10s %10s %7s\n",
3540 iterate_over_mappings (pi, NULL, NULL, info_mappings_callback);
3541 printf_filtered ("\n");
3544 /* Implement the "info proc" command. */
3547 procfs_target::info_proc (const char *args, enum info_proc_what what)
3549 struct cleanup *old_chain;
3550 procinfo *process = NULL;
3551 procinfo *thread = NULL;
3568 error (_("Not supported on this target."));
3571 old_chain = make_cleanup (null_cleanup, 0);
3572 gdb_argv built_argv (args);
3573 for (char *arg : built_argv)
3575 if (isdigit (arg[0]))
3577 pid = strtoul (arg, &tmp, 10);
3579 tid = strtoul (++tmp, NULL, 10);
3581 else if (arg[0] == '/')
3583 tid = strtoul (arg + 1, NULL, 10);
3587 pid = inferior_ptid.pid ();
3589 error (_("No current process: you must name one."));
3592 /* Have pid, will travel.
3593 First see if it's a process we're already debugging. */
3594 process = find_procinfo (pid, 0);
3595 if (process == NULL)
3597 /* No. So open a procinfo for it, but
3598 remember to close it again when finished. */
3599 process = create_procinfo (pid, 0);
3600 make_cleanup (do_destroy_procinfo_cleanup, process);
3601 if (!open_procinfo_files (process, FD_CTL))
3602 proc_error (process, "info proc, open_procinfo_files", __LINE__);
3606 thread = create_procinfo (pid, tid);
3610 printf_filtered (_("process %d flags:\n"), process->pid);
3611 proc_prettyprint_flags (proc_flags (process), 1);
3612 if (proc_flags (process) & (PR_STOPPED | PR_ISTOP))
3613 proc_prettyprint_why (proc_why (process), proc_what (process), 1);
3614 if (proc_get_nthreads (process) > 1)
3615 printf_filtered ("Process has %d threads.\n",
3616 proc_get_nthreads (process));
3620 printf_filtered (_("thread %d flags:\n"), thread->tid);
3621 proc_prettyprint_flags (proc_flags (thread), 1);
3622 if (proc_flags (thread) & (PR_STOPPED | PR_ISTOP))
3623 proc_prettyprint_why (proc_why (thread), proc_what (thread), 1);
3628 info_proc_mappings (process, 0);
3631 do_cleanups (old_chain);
3636 /* Modify the status of the system call identified by SYSCALLNUM in
3637 the set of syscalls that are currently traced/debugged.
3639 If ENTRY_OR_EXIT is set to PR_SYSENTRY, then the entry syscalls set
3640 will be updated. Otherwise, the exit syscalls set will be updated.
3642 If MODE is FLAG_SET, then traces will be enabled. Otherwise, they
3643 will be disabled. */
3646 proc_trace_syscalls_1 (procinfo *pi, int syscallnum, int entry_or_exit,
3647 int mode, int from_tty)
3651 if (entry_or_exit == PR_SYSENTRY)
3652 sysset = proc_get_traced_sysentry (pi, NULL);
3654 sysset = proc_get_traced_sysexit (pi, NULL);
3657 proc_error (pi, "proc-trace, get_traced_sysset", __LINE__);
3659 if (mode == FLAG_SET)
3660 praddset (sysset, syscallnum);
3662 prdelset (sysset, syscallnum);
3664 if (entry_or_exit == PR_SYSENTRY)
3666 if (!proc_set_traced_sysentry (pi, sysset))
3667 proc_error (pi, "proc-trace, set_traced_sysentry", __LINE__);
3671 if (!proc_set_traced_sysexit (pi, sysset))
3672 proc_error (pi, "proc-trace, set_traced_sysexit", __LINE__);
3677 proc_trace_syscalls (const char *args, int from_tty, int entry_or_exit, int mode)
3681 if (inferior_ptid.pid () <= 0)
3682 error (_("you must be debugging a process to use this command."));
3684 if (args == NULL || args[0] == 0)
3685 error_no_arg (_("system call to trace"));
3687 pi = find_procinfo_or_die (inferior_ptid.pid (), 0);
3688 if (isdigit (args[0]))
3690 const int syscallnum = atoi (args);
3692 proc_trace_syscalls_1 (pi, syscallnum, entry_or_exit, mode, from_tty);
3697 proc_trace_sysentry_cmd (const char *args, int from_tty)
3699 proc_trace_syscalls (args, from_tty, PR_SYSENTRY, FLAG_SET);
3703 proc_trace_sysexit_cmd (const char *args, int from_tty)
3705 proc_trace_syscalls (args, from_tty, PR_SYSEXIT, FLAG_SET);
3709 proc_untrace_sysentry_cmd (const char *args, int from_tty)
3711 proc_trace_syscalls (args, from_tty, PR_SYSENTRY, FLAG_RESET);
3715 proc_untrace_sysexit_cmd (const char *args, int from_tty)
3717 proc_trace_syscalls (args, from_tty, PR_SYSEXIT, FLAG_RESET);
3721 _initialize_procfs (void)
3723 gdb::observers::inferior_created.attach (procfs_inferior_created);
3725 add_com ("proc-trace-entry", no_class, proc_trace_sysentry_cmd,
3726 _("Give a trace of entries into the syscall."));
3727 add_com ("proc-trace-exit", no_class, proc_trace_sysexit_cmd,
3728 _("Give a trace of exits from the syscall."));
3729 add_com ("proc-untrace-entry", no_class, proc_untrace_sysentry_cmd,
3730 _("Cancel a trace of entries into the syscall."));
3731 add_com ("proc-untrace-exit", no_class, proc_untrace_sysexit_cmd,
3732 _("Cancel a trace of exits from the syscall."));
3734 add_inf_child_target (&the_procfs_target);
3737 /* =================== END, GDB "MODULE" =================== */
3741 /* miscellaneous stubs: */
3743 /* The following satisfy a few random symbols mostly created by the
3744 solaris threads implementation, which I will chase down later. */
3746 /* Return a pid for which we guarantee we will be able to find a
3750 procfs_first_available (void)
3752 return ptid_t (procinfo_list ? procinfo_list->pid : -1);
3755 /* =================== GCORE .NOTE "MODULE" =================== */
3758 procfs_do_thread_registers (bfd *obfd, ptid_t ptid,
3759 char *note_data, int *note_size,
3760 enum gdb_signal stop_signal)
3762 struct regcache *regcache = get_thread_regcache (ptid);
3763 gdb_gregset_t gregs;
3764 gdb_fpregset_t fpregs;
3765 unsigned long merged_pid;
3767 merged_pid = ptid.lwp () << 16 | ptid.pid ();
3769 /* This part is the old method for fetching registers.
3770 It should be replaced by the newer one using regsets
3771 once it is implemented in this platform:
3772 gdbarch_iterate_over_regset_sections(). */
3774 scoped_restore save_inferior_ptid = make_scoped_restore (&inferior_ptid);
3775 inferior_ptid = ptid;
3776 target_fetch_registers (regcache, -1);
3778 fill_gregset (regcache, &gregs, -1);
3779 note_data = (char *) elfcore_write_lwpstatus (obfd,
3785 fill_fpregset (regcache, &fpregs, -1);
3786 note_data = (char *) elfcore_write_prfpreg (obfd,
3795 struct procfs_corefile_thread_data {
3799 enum gdb_signal stop_signal;
3803 procfs_corefile_thread_callback (procinfo *pi, procinfo *thread, void *data)
3805 struct procfs_corefile_thread_data *args
3806 = (struct procfs_corefile_thread_data *) data;
3810 ptid_t ptid = ptid_t (pi->pid, thread->tid, 0);
3812 args->note_data = procfs_do_thread_registers (args->obfd, ptid,
3821 find_signalled_thread (struct thread_info *info, void *data)
3823 if (info->suspend.stop_signal != GDB_SIGNAL_0
3824 && info->ptid.pid () == inferior_ptid.pid ())
3830 static enum gdb_signal
3831 find_stop_signal (void)
3833 struct thread_info *info =
3834 iterate_over_threads (find_signalled_thread, NULL);
3837 return info->suspend.stop_signal;
3839 return GDB_SIGNAL_0;
3843 procfs_target::make_corefile_notes (bfd *obfd, int *note_size)
3845 struct cleanup *old_chain;
3846 gdb_gregset_t gregs;
3847 gdb_fpregset_t fpregs;
3848 char fname[16] = {'\0'};
3849 char psargs[80] = {'\0'};
3850 procinfo *pi = find_procinfo_or_die (inferior_ptid.pid (), 0);
3851 char *note_data = NULL;
3853 struct procfs_corefile_thread_data thread_args;
3854 enum gdb_signal stop_signal;
3856 if (get_exec_file (0))
3858 strncpy (fname, lbasename (get_exec_file (0)), sizeof (fname));
3859 fname[sizeof (fname) - 1] = 0;
3860 strncpy (psargs, get_exec_file (0), sizeof (psargs));
3861 psargs[sizeof (psargs) - 1] = 0;
3863 inf_args = get_inferior_args ();
3864 if (inf_args && *inf_args &&
3865 strlen (inf_args) < ((int) sizeof (psargs) - (int) strlen (psargs)))
3867 strncat (psargs, " ",
3868 sizeof (psargs) - strlen (psargs));
3869 strncat (psargs, inf_args,
3870 sizeof (psargs) - strlen (psargs));
3874 note_data = (char *) elfcore_write_prpsinfo (obfd,
3880 stop_signal = find_stop_signal ();
3882 fill_gregset (get_current_regcache (), &gregs, -1);
3883 note_data = elfcore_write_pstatus (obfd, note_data, note_size,
3884 inferior_ptid.pid (),
3885 stop_signal, &gregs);
3887 thread_args.obfd = obfd;
3888 thread_args.note_data = note_data;
3889 thread_args.note_size = note_size;
3890 thread_args.stop_signal = stop_signal;
3891 proc_iterate_over_threads (pi, procfs_corefile_thread_callback,
3893 note_data = thread_args.note_data;
3895 gdb::optional<gdb::byte_vector> auxv =
3896 target_read_alloc (current_top_target (), TARGET_OBJECT_AUXV, NULL);
3897 if (auxv && !auxv->empty ())
3898 note_data = elfcore_write_note (obfd, note_data, note_size,
3899 "CORE", NT_AUXV, auxv->data (),
3904 /* =================== END GCORE .NOTE "MODULE" =================== */