1 /* Machine independent support for SVR4 /proc (process file system) for GDB.
3 Copyright (C) 1999-2015 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"
34 #if defined (NEW_PROC_API)
35 #define _STRUCTURED_PROC 1 /* Should be done by configure script. */
38 #include <sys/procfs.h>
39 #ifdef HAVE_SYS_FAULT_H
40 #include <sys/fault.h>
42 #ifdef HAVE_SYS_SYSCALL_H
43 #include <sys/syscall.h>
54 /* This module provides the interface between GDB and the
55 /proc file system, which is used on many versions of Unix
56 as a means for debuggers to control other processes.
58 Examples of the systems that use this interface are:
65 /proc works by imitating a file system: you open a simulated file
66 that represents the process you wish to interact with, and perform
67 operations on that "file" in order to examine or change the state
70 The most important thing to know about /proc and this module is
71 that there are two very different interfaces to /proc:
73 One that uses the ioctl system call, and another that uses read
74 and write system calls.
76 This module has to support both /proc interfaces. This means that
77 there are two different ways of doing every basic operation.
79 In order to keep most of the code simple and clean, I have defined
80 an interface "layer" which hides all these system calls. An ifdef
81 (NEW_PROC_API) determines which interface we are using, and most or
82 all occurrances of this ifdef should be confined to this interface
85 /* Determine which /proc API we are using: The ioctl API defines
86 PIOCSTATUS, while the read/write (multiple fd) API never does. */
89 #include <sys/types.h>
90 #include <dirent.h> /* opendir/readdir, for listing the LWP's */
93 #include <fcntl.h> /* for O_RDONLY */
94 #include <unistd.h> /* for "X_OK" */
95 #include <sys/stat.h> /* for struct stat */
97 /* Note: procfs-utils.h must be included after the above system header
98 files, because it redefines various system calls using macros.
99 This may be incompatible with the prototype declarations. */
101 #include "proc-utils.h"
103 /* Prototypes for supply_gregset etc. */
106 /* =================== TARGET_OPS "MODULE" =================== */
108 /* This module defines the GDB target vector and its methods. */
110 static void procfs_attach (struct target_ops *, const char *, int);
111 static void procfs_detach (struct target_ops *, const char *, int);
112 static void procfs_resume (struct target_ops *,
113 ptid_t, int, enum gdb_signal);
114 static void procfs_stop (struct target_ops *self, ptid_t);
115 static void procfs_files_info (struct target_ops *);
116 static void procfs_fetch_registers (struct target_ops *,
117 struct regcache *, int);
118 static void procfs_store_registers (struct target_ops *,
119 struct regcache *, int);
120 static void procfs_pass_signals (struct target_ops *self,
121 int, unsigned char *);
122 static void procfs_kill_inferior (struct target_ops *ops);
123 static void procfs_mourn_inferior (struct target_ops *ops);
124 static void procfs_create_inferior (struct target_ops *, char *,
125 char *, char **, int);
126 static ptid_t procfs_wait (struct target_ops *,
127 ptid_t, struct target_waitstatus *, int);
128 static enum target_xfer_status procfs_xfer_memory (gdb_byte *,
132 static target_xfer_partial_ftype procfs_xfer_partial;
134 static int procfs_thread_alive (struct target_ops *ops, ptid_t);
136 static void procfs_update_thread_list (struct target_ops *ops);
137 static char *procfs_pid_to_str (struct target_ops *, ptid_t);
139 static int proc_find_memory_regions (struct target_ops *self,
140 find_memory_region_ftype, void *);
142 static char * procfs_make_note_section (struct target_ops *self,
145 static int procfs_can_use_hw_breakpoint (struct target_ops *self,
148 static void procfs_info_proc (struct target_ops *, const char *,
149 enum info_proc_what);
151 #if defined (PR_MODEL_NATIVE) && (PR_MODEL_NATIVE == PR_MODEL_LP64)
152 /* When GDB is built as 64-bit application on Solaris, the auxv data
153 is presented in 64-bit format. We need to provide a custom parser
156 procfs_auxv_parse (struct target_ops *ops, gdb_byte **readptr,
157 gdb_byte *endptr, CORE_ADDR *typep, CORE_ADDR *valp)
159 enum bfd_endian byte_order = gdbarch_byte_order (target_gdbarch ());
160 gdb_byte *ptr = *readptr;
165 if (endptr - ptr < 8 * 2)
168 *typep = extract_unsigned_integer (ptr, 4, byte_order);
170 /* The size of data is always 64-bit. If the application is 32-bit,
171 it will be zero extended, as expected. */
172 *valp = extract_unsigned_integer (ptr, 8, byte_order);
183 struct target_ops *t = inf_child_target ();
185 t->to_create_inferior = procfs_create_inferior;
186 t->to_kill = procfs_kill_inferior;
187 t->to_mourn_inferior = procfs_mourn_inferior;
188 t->to_attach = procfs_attach;
189 t->to_detach = procfs_detach;
190 t->to_wait = procfs_wait;
191 t->to_resume = procfs_resume;
192 t->to_fetch_registers = procfs_fetch_registers;
193 t->to_store_registers = procfs_store_registers;
194 t->to_xfer_partial = procfs_xfer_partial;
195 t->to_pass_signals = procfs_pass_signals;
196 t->to_files_info = procfs_files_info;
197 t->to_stop = procfs_stop;
199 t->to_update_thread_list = procfs_update_thread_list;
200 t->to_thread_alive = procfs_thread_alive;
201 t->to_pid_to_str = procfs_pid_to_str;
203 t->to_has_thread_control = tc_schedlock;
204 t->to_find_memory_regions = proc_find_memory_regions;
205 t->to_make_corefile_notes = procfs_make_note_section;
206 t->to_info_proc = procfs_info_proc;
208 #if defined(PR_MODEL_NATIVE) && (PR_MODEL_NATIVE == PR_MODEL_LP64)
209 t->to_auxv_parse = procfs_auxv_parse;
212 t->to_magic = OPS_MAGIC;
217 /* =================== END, TARGET_OPS "MODULE" =================== */
219 /* World Unification:
221 Put any typedefs, defines etc. here that are required for the
222 unification of code that handles different versions of /proc. */
224 #ifdef NEW_PROC_API /* Solaris 7 && 8 method for watchpoints */
226 enum { READ_WATCHFLAG = WA_READ,
227 WRITE_WATCHFLAG = WA_WRITE,
228 EXEC_WATCHFLAG = WA_EXEC,
229 AFTER_WATCHFLAG = WA_TRAPAFTER
232 #else /* Irix method for watchpoints */
233 enum { READ_WATCHFLAG = MA_READ,
234 WRITE_WATCHFLAG = MA_WRITE,
235 EXEC_WATCHFLAG = MA_EXEC,
236 AFTER_WATCHFLAG = 0 /* trapafter not implemented */
241 #ifdef HAVE_PR_SIGSET_T
242 typedef pr_sigset_t gdb_sigset_t;
244 typedef sigset_t gdb_sigset_t;
248 #ifdef HAVE_PR_SIGACTION64_T
249 typedef pr_sigaction64_t gdb_sigaction_t;
251 typedef struct sigaction gdb_sigaction_t;
255 #ifdef HAVE_PR_SIGINFO64_T
256 typedef pr_siginfo64_t gdb_siginfo_t;
258 typedef siginfo_t gdb_siginfo_t;
261 /* On mips-irix, praddset and prdelset are defined in such a way that
262 they return a value, which causes GCC to emit a -Wunused error
263 because the returned value is not used. Prevent this warning
264 by casting the return value to void. On sparc-solaris, this issue
265 does not exist because the definition of these macros already include
266 that cast to void. */
267 #define gdb_praddset(sp, flag) ((void) praddset (sp, flag))
268 #define gdb_prdelset(sp, flag) ((void) prdelset (sp, flag))
270 /* gdb_premptysysset */
272 #define gdb_premptysysset premptysysset
274 #define gdb_premptysysset premptyset
279 #define gdb_praddsysset praddsysset
281 #define gdb_praddsysset gdb_praddset
286 #define gdb_prdelsysset prdelsysset
288 #define gdb_prdelsysset gdb_prdelset
291 /* prissyssetmember */
292 #ifdef prissyssetmember
293 #define gdb_pr_issyssetmember prissyssetmember
295 #define gdb_pr_issyssetmember prismember
298 /* As a feature test, saying ``#if HAVE_PRSYSENT_T'' everywhere isn't
299 as intuitively descriptive as it could be, so we'll define
300 DYNAMIC_SYSCALLS to mean the same thing. Anyway, at the time of
301 this writing, this feature is only found on AIX5 systems and
302 basically means that the set of syscalls is not fixed. I.e,
303 there's no nice table that one can #include to get all of the
304 syscall numbers. Instead, they're stored in /proc/PID/sysent
305 for each process. We are at least guaranteed that they won't
306 change over the lifetime of the process. But each process could
307 (in theory) have different syscall numbers. */
308 #ifdef HAVE_PRSYSENT_T
309 #define DYNAMIC_SYSCALLS
314 /* =================== STRUCT PROCINFO "MODULE" =================== */
316 /* FIXME: this comment will soon be out of date W.R.T. threads. */
318 /* The procinfo struct is a wrapper to hold all the state information
319 concerning a /proc process. There should be exactly one procinfo
320 for each process, and since GDB currently can debug only one
321 process at a time, that means there should be only one procinfo.
322 All of the LWP's of a process can be accessed indirectly thru the
323 single process procinfo.
325 However, against the day when GDB may debug more than one process,
326 this data structure is kept in a list (which for now will hold no
327 more than one member), and many functions will have a pointer to a
328 procinfo as an argument.
330 There will be a separate procinfo structure for use by the (not yet
331 implemented) "info proc" command, so that we can print useful
332 information about any random process without interfering with the
333 inferior's procinfo information. */
336 /* format strings for /proc paths */
337 # ifndef CTL_PROC_NAME_FMT
338 # define MAIN_PROC_NAME_FMT "/proc/%d"
339 # define CTL_PROC_NAME_FMT "/proc/%d/ctl"
340 # define AS_PROC_NAME_FMT "/proc/%d/as"
341 # define MAP_PROC_NAME_FMT "/proc/%d/map"
342 # define STATUS_PROC_NAME_FMT "/proc/%d/status"
343 # define MAX_PROC_NAME_SIZE sizeof("/proc/99999/lwp/8096/lstatus")
345 /* the name of the proc status struct depends on the implementation */
346 typedef pstatus_t gdb_prstatus_t;
347 typedef lwpstatus_t gdb_lwpstatus_t;
348 #else /* ! NEW_PROC_API */
349 /* format strings for /proc paths */
350 # ifndef CTL_PROC_NAME_FMT
351 # define MAIN_PROC_NAME_FMT "/proc/%05d"
352 # define CTL_PROC_NAME_FMT "/proc/%05d"
353 # define AS_PROC_NAME_FMT "/proc/%05d"
354 # define MAP_PROC_NAME_FMT "/proc/%05d"
355 # define STATUS_PROC_NAME_FMT "/proc/%05d"
356 # define MAX_PROC_NAME_SIZE sizeof("/proc/ttttppppp")
358 /* The name of the proc status struct depends on the implementation. */
359 typedef prstatus_t gdb_prstatus_t;
360 typedef prstatus_t gdb_lwpstatus_t;
361 #endif /* NEW_PROC_API */
363 typedef struct procinfo {
364 struct procinfo *next;
365 int pid; /* Process ID */
366 int tid; /* Thread/LWP id */
370 int ignore_next_sigstop;
372 /* The following four fd fields may be identical, or may contain
373 several different fd's, depending on the version of /proc
374 (old ioctl or new read/write). */
376 int ctl_fd; /* File descriptor for /proc control file */
378 /* The next three file descriptors are actually only needed in the
379 read/write, multiple-file-descriptor implemenation
380 (NEW_PROC_API). However, to avoid a bunch of #ifdefs in the
381 code, we will use them uniformly by (in the case of the ioctl
382 single-file-descriptor implementation) filling them with copies
383 of the control fd. */
384 int status_fd; /* File descriptor for /proc status file */
385 int as_fd; /* File descriptor for /proc as file */
387 char pathname[MAX_PROC_NAME_SIZE]; /* Pathname to /proc entry */
389 fltset_t saved_fltset; /* Saved traced hardware fault set */
390 gdb_sigset_t saved_sigset; /* Saved traced signal set */
391 gdb_sigset_t saved_sighold; /* Saved held signal set */
392 sysset_t *saved_exitset; /* Saved traced system call exit set */
393 sysset_t *saved_entryset; /* Saved traced system call entry set */
395 gdb_prstatus_t prstatus; /* Current process status info */
398 gdb_fpregset_t fpregset; /* Current floating point registers */
401 #ifdef DYNAMIC_SYSCALLS
402 int num_syscalls; /* Total number of syscalls */
403 char **syscall_names; /* Syscall number to name map */
406 struct procinfo *thread_list;
408 int status_valid : 1;
410 int fpregs_valid : 1;
411 int threads_valid: 1;
414 static char errmsg[128]; /* shared error msg buffer */
416 /* Function prototypes for procinfo module: */
418 static procinfo *find_procinfo_or_die (int pid, int tid);
419 static procinfo *find_procinfo (int pid, int tid);
420 static procinfo *create_procinfo (int pid, int tid);
421 static void destroy_procinfo (procinfo * p);
422 static void do_destroy_procinfo_cleanup (void *);
423 static void dead_procinfo (procinfo * p, char *msg, int killp);
424 static int open_procinfo_files (procinfo * p, int which);
425 static void close_procinfo_files (procinfo * p);
426 static int sysset_t_size (procinfo *p);
427 static sysset_t *sysset_t_alloc (procinfo * pi);
428 #ifdef DYNAMIC_SYSCALLS
429 static void load_syscalls (procinfo *pi);
430 static void free_syscalls (procinfo *pi);
431 static int find_syscall (procinfo *pi, char *name);
432 #endif /* DYNAMIC_SYSCALLS */
434 static int iterate_over_mappings
435 (procinfo *pi, find_memory_region_ftype child_func, void *data,
436 int (*func) (struct prmap *map, find_memory_region_ftype child_func,
439 /* The head of the procinfo list: */
440 static procinfo * procinfo_list;
442 /* Search the procinfo list. Return a pointer to procinfo, or NULL if
446 find_procinfo (int pid, int tid)
450 for (pi = procinfo_list; pi; pi = pi->next)
457 /* Don't check threads_valid. If we're updating the
458 thread_list, we want to find whatever threads are already
459 here. This means that in general it is the caller's
460 responsibility to check threads_valid and update before
461 calling find_procinfo, if the caller wants to find a new
464 for (pi = pi->thread_list; pi; pi = pi->next)
472 /* Calls find_procinfo, but errors on failure. */
475 find_procinfo_or_die (int pid, int tid)
477 procinfo *pi = find_procinfo (pid, tid);
482 error (_("procfs: couldn't find pid %d "
483 "(kernel thread %d) in procinfo list."),
486 error (_("procfs: couldn't find pid %d in procinfo list."), pid);
491 /* Wrapper for `open'. The appropriate open call is attempted; if
492 unsuccessful, it will be retried as many times as needed for the
493 EAGAIN and EINTR conditions.
495 For other conditions, retry the open a limited number of times. In
496 addition, a short sleep is imposed prior to retrying the open. The
497 reason for this sleep is to give the kernel a chance to catch up
498 and create the file in question in the event that GDB "wins" the
499 race to open a file before the kernel has created it. */
502 open_with_retry (const char *pathname, int flags)
504 int retries_remaining, status;
506 retries_remaining = 2;
510 status = open (pathname, flags);
512 if (status >= 0 || retries_remaining == 0)
514 else if (errno != EINTR && errno != EAGAIN)
524 /* Open the file descriptor for the process or LWP. If NEW_PROC_API
525 is defined, we only open the control file descriptor; the others
526 are opened lazily as needed. Otherwise (if not NEW_PROC_API),
527 there is only one real file descriptor, but we keep multiple copies
528 of it so that the code that uses them does not have to be #ifdef'd.
529 Returns the file descriptor, or zero for failure. */
531 enum { FD_CTL, FD_STATUS, FD_AS };
534 open_procinfo_files (procinfo *pi, int which)
537 char tmp[MAX_PROC_NAME_SIZE];
541 /* This function is getting ALMOST long enough to break up into
542 several. Here is some rationale:
544 NEW_PROC_API (Solaris 2.6, Solaris 2.7):
545 There are several file descriptors that may need to be open
546 for any given process or LWP. The ones we're intereted in are:
547 - control (ctl) write-only change the state
548 - status (status) read-only query the state
549 - address space (as) read/write access memory
550 - map (map) read-only virtual addr map
551 Most of these are opened lazily as they are needed.
552 The pathnames for the 'files' for an LWP look slightly
553 different from those of a first-class process:
554 Pathnames for a process (<proc-id>):
556 /proc/<proc-id>/status
559 Pathnames for an LWP (lwp-id):
560 /proc/<proc-id>/lwp/<lwp-id>/lwpctl
561 /proc/<proc-id>/lwp/<lwp-id>/lwpstatus
562 An LWP has no map or address space file descriptor, since
563 the memory map and address space are shared by all LWPs.
565 Everyone else (Solaris 2.5, Irix, OSF)
566 There is only one file descriptor for each process or LWP.
567 For convenience, we copy the same file descriptor into all
568 three fields of the procinfo struct (ctl_fd, status_fd, and
569 as_fd, see NEW_PROC_API above) so that code that uses them
570 doesn't need any #ifdef's.
575 Each LWP has an independent file descriptor, but these
576 are not obtained via the 'open' system call like the rest:
577 instead, they're obtained thru an ioctl call (PIOCOPENLWP)
578 to the file descriptor of the parent process.
581 These do not even have their own independent file descriptor.
582 All operations are carried out on the file descriptor of the
583 parent process. Therefore we just call open again for each
584 thread, getting a new handle for the same 'file'. */
587 /* In this case, there are several different file descriptors that
588 we might be asked to open. The control file descriptor will be
589 opened early, but the others will be opened lazily as they are
592 strcpy (tmp, pi->pathname);
593 switch (which) { /* Which file descriptor to open? */
596 strcat (tmp, "/lwpctl");
598 strcat (tmp, "/ctl");
599 fd = open_with_retry (tmp, O_WRONLY);
606 return 0; /* There is no 'as' file descriptor for an lwp. */
608 fd = open_with_retry (tmp, O_RDWR);
615 strcat (tmp, "/lwpstatus");
617 strcat (tmp, "/status");
618 fd = open_with_retry (tmp, O_RDONLY);
624 return 0; /* unknown file descriptor */
626 #else /* not NEW_PROC_API */
627 /* In this case, there is only one file descriptor for each procinfo
628 (ie. each process or LWP). In fact, only the file descriptor for
629 the process can actually be opened by an 'open' system call. The
630 ones for the LWPs have to be obtained thru an IOCTL call on the
631 process's file descriptor.
633 For convenience, we copy each procinfo's single file descriptor
634 into all of the fields occupied by the several file descriptors
635 of the NEW_PROC_API implementation. That way, the code that uses
636 them can be written without ifdefs. */
639 #ifdef PIOCTSTATUS /* OSF */
640 /* Only one FD; just open it. */
641 if ((fd = open_with_retry (pi->pathname, O_RDWR)) < 0)
643 #else /* Sol 2.5, Irix, other? */
644 if (pi->tid == 0) /* Master procinfo for the process */
646 fd = open_with_retry (pi->pathname, O_RDWR);
650 else /* LWP thread procinfo */
652 #ifdef PIOCOPENLWP /* Sol 2.5, thread/LWP */
656 /* Find the procinfo for the entire process. */
657 if ((process = find_procinfo (pi->pid, 0)) == NULL)
660 /* Now obtain the file descriptor for the LWP. */
661 if ((fd = ioctl (process->ctl_fd, PIOCOPENLWP, &lwpid)) < 0)
663 #else /* Irix, other? */
664 return 0; /* Don't know how to open threads. */
665 #endif /* Sol 2.5 PIOCOPENLWP */
667 #endif /* OSF PIOCTSTATUS */
668 pi->ctl_fd = pi->as_fd = pi->status_fd = fd;
669 #endif /* NEW_PROC_API */
671 return 1; /* success */
674 /* Allocate a data structure and link it into the procinfo list.
675 First tries to find a pre-existing one (FIXME: why?). Returns the
676 pointer to new procinfo struct. */
679 create_procinfo (int pid, int tid)
681 procinfo *pi, *parent = NULL;
683 if ((pi = find_procinfo (pid, tid)))
684 return pi; /* Already exists, nothing to do. */
686 /* Find parent before doing malloc, to save having to cleanup. */
688 parent = find_procinfo_or_die (pid, 0); /* FIXME: should I
690 doesn't exist yet? */
692 pi = (procinfo *) xmalloc (sizeof (procinfo));
693 memset (pi, 0, sizeof (procinfo));
697 #ifdef DYNAMIC_SYSCALLS
701 pi->saved_entryset = sysset_t_alloc (pi);
702 pi->saved_exitset = sysset_t_alloc (pi);
704 /* Chain into list. */
707 sprintf (pi->pathname, MAIN_PROC_NAME_FMT, pid);
708 pi->next = procinfo_list;
714 sprintf (pi->pathname, "/proc/%05d/lwp/%d", pid, tid);
716 sprintf (pi->pathname, MAIN_PROC_NAME_FMT, pid);
718 pi->next = parent->thread_list;
719 parent->thread_list = pi;
724 /* Close all file descriptors associated with the procinfo. */
727 close_procinfo_files (procinfo *pi)
734 if (pi->status_fd > 0)
735 close (pi->status_fd);
737 pi->ctl_fd = pi->as_fd = pi->status_fd = 0;
740 /* Destructor function. Close, unlink and deallocate the object. */
743 destroy_one_procinfo (procinfo **list, procinfo *pi)
747 /* Step one: unlink the procinfo from its list. */
751 for (ptr = *list; ptr; ptr = ptr->next)
754 ptr->next = pi->next;
758 /* Step two: close any open file descriptors. */
759 close_procinfo_files (pi);
761 /* Step three: free the memory. */
762 #ifdef DYNAMIC_SYSCALLS
765 xfree (pi->saved_entryset);
766 xfree (pi->saved_exitset);
771 destroy_procinfo (procinfo *pi)
775 if (pi->tid != 0) /* Destroy a thread procinfo. */
777 tmp = find_procinfo (pi->pid, 0); /* Find the parent process. */
778 destroy_one_procinfo (&tmp->thread_list, pi);
780 else /* Destroy a process procinfo and all its threads. */
782 /* First destroy the children, if any; */
783 while (pi->thread_list != NULL)
784 destroy_one_procinfo (&pi->thread_list, pi->thread_list);
785 /* Then destroy the parent. Genocide!!! */
786 destroy_one_procinfo (&procinfo_list, pi);
791 do_destroy_procinfo_cleanup (void *pi)
793 destroy_procinfo (pi);
796 enum { NOKILL, KILL };
798 /* To be called on a non_recoverable error for a procinfo. Prints
799 error messages, optionally sends a SIGKILL to the process, then
800 destroys the data structure. */
803 dead_procinfo (procinfo *pi, char *msg, int kill_p)
809 print_sys_errmsg (pi->pathname, errno);
813 sprintf (procfile, "process %d", pi->pid);
814 print_sys_errmsg (procfile, errno);
817 kill (pi->pid, SIGKILL);
819 destroy_procinfo (pi);
823 /* Returns the (complete) size of a sysset_t struct. Normally, this
824 is just sizeof (sysset_t), but in the case of Monterey/64, the
825 actual size of sysset_t isn't known until runtime. */
828 sysset_t_size (procinfo * pi)
830 #ifndef DYNAMIC_SYSCALLS
831 return sizeof (sysset_t);
833 return sizeof (sysset_t) - sizeof (uint64_t)
834 + sizeof (uint64_t) * ((pi->num_syscalls + (8 * sizeof (uint64_t) - 1))
835 / (8 * sizeof (uint64_t)));
839 /* Allocate and (partially) initialize a sysset_t struct. */
842 sysset_t_alloc (procinfo * pi)
845 int size = sysset_t_size (pi);
847 ret = xmalloc (size);
848 #ifdef DYNAMIC_SYSCALLS
849 ret->pr_size = ((pi->num_syscalls + (8 * sizeof (uint64_t) - 1))
850 / (8 * sizeof (uint64_t)));
855 #ifdef DYNAMIC_SYSCALLS
857 /* Extract syscall numbers and names from /proc/<pid>/sysent. Initialize
858 pi->num_syscalls with the number of syscalls and pi->syscall_names
859 with the names. (Certain numbers may be skipped in which case the
860 names for these numbers will be left as NULL.) */
862 #define MAX_SYSCALL_NAME_LENGTH 256
863 #define MAX_SYSCALLS 65536
866 load_syscalls (procinfo *pi)
868 char pathname[MAX_PROC_NAME_SIZE];
871 prsyscall_t *syscalls;
872 int i, size, maxcall;
873 struct cleanup *cleanups;
875 pi->num_syscalls = 0;
876 pi->syscall_names = 0;
878 /* Open the file descriptor for the sysent file. */
879 sprintf (pathname, "/proc/%d/sysent", pi->pid);
880 sysent_fd = open_with_retry (pathname, O_RDONLY);
883 error (_("load_syscalls: Can't open /proc/%d/sysent"), pi->pid);
885 cleanups = make_cleanup_close (sysent_fd);
887 size = sizeof header - sizeof (prsyscall_t);
888 if (read (sysent_fd, &header, size) != size)
890 error (_("load_syscalls: Error reading /proc/%d/sysent"), pi->pid);
893 if (header.pr_nsyscalls == 0)
895 error (_("load_syscalls: /proc/%d/sysent contains no syscalls!"),
899 size = header.pr_nsyscalls * sizeof (prsyscall_t);
900 syscalls = xmalloc (size);
901 make_cleanup (free_current_contents, &syscalls);
903 if (read (sysent_fd, syscalls, size) != size)
904 error (_("load_syscalls: Error reading /proc/%d/sysent"), pi->pid);
906 /* Find maximum syscall number. This may not be the same as
907 pr_nsyscalls since that value refers to the number of entries
908 in the table. (Also, the docs indicate that some system
909 call numbers may be skipped.) */
911 maxcall = syscalls[0].pr_number;
913 for (i = 1; i < header.pr_nsyscalls; i++)
914 if (syscalls[i].pr_number > maxcall
915 && syscalls[i].pr_nameoff > 0
916 && syscalls[i].pr_number < MAX_SYSCALLS)
917 maxcall = syscalls[i].pr_number;
919 pi->num_syscalls = maxcall+1;
920 pi->syscall_names = xmalloc (pi->num_syscalls * sizeof (char *));
922 for (i = 0; i < pi->num_syscalls; i++)
923 pi->syscall_names[i] = NULL;
925 /* Read the syscall names in. */
926 for (i = 0; i < header.pr_nsyscalls; i++)
928 char namebuf[MAX_SYSCALL_NAME_LENGTH];
932 if (syscalls[i].pr_number >= MAX_SYSCALLS
933 || syscalls[i].pr_number < 0
934 || syscalls[i].pr_nameoff <= 0
935 || (lseek (sysent_fd, (off_t) syscalls[i].pr_nameoff, SEEK_SET)
936 != (off_t) syscalls[i].pr_nameoff))
939 nread = read (sysent_fd, namebuf, sizeof namebuf);
943 callnum = syscalls[i].pr_number;
945 if (pi->syscall_names[callnum] != NULL)
947 /* FIXME: Generate warning. */
951 namebuf[nread-1] = '\0';
952 size = strlen (namebuf) + 1;
953 pi->syscall_names[callnum] = xmalloc (size);
954 strncpy (pi->syscall_names[callnum], namebuf, size-1);
955 pi->syscall_names[callnum][size-1] = '\0';
958 do_cleanups (cleanups);
961 /* Free the space allocated for the syscall names from the procinfo
965 free_syscalls (procinfo *pi)
967 if (pi->syscall_names)
971 for (i = 0; i < pi->num_syscalls; i++)
972 if (pi->syscall_names[i] != NULL)
973 xfree (pi->syscall_names[i]);
975 xfree (pi->syscall_names);
976 pi->syscall_names = 0;
980 /* Given a name, look up (and return) the corresponding syscall number.
981 If no match is found, return -1. */
984 find_syscall (procinfo *pi, char *name)
988 for (i = 0; i < pi->num_syscalls; i++)
990 if (pi->syscall_names[i] && strcmp (name, pi->syscall_names[i]) == 0)
997 /* =================== END, STRUCT PROCINFO "MODULE" =================== */
999 /* =================== /proc "MODULE" =================== */
1001 /* This "module" is the interface layer between the /proc system API
1002 and the gdb target vector functions. This layer consists of access
1003 functions that encapsulate each of the basic operations that we
1004 need to use from the /proc API.
1006 The main motivation for this layer is to hide the fact that there
1007 are two very different implementations of the /proc API. Rather
1008 than have a bunch of #ifdefs all thru the gdb target vector
1009 functions, we do our best to hide them all in here. */
1011 static long proc_flags (procinfo * pi);
1012 static int proc_why (procinfo * pi);
1013 static int proc_what (procinfo * pi);
1014 static int proc_set_current_signal (procinfo * pi, int signo);
1015 static int proc_get_current_thread (procinfo * pi);
1016 static int proc_iterate_over_threads
1018 int (*func) (procinfo *, procinfo *, void *),
1022 proc_warn (procinfo *pi, char *func, int line)
1024 sprintf (errmsg, "procfs: %s line %d, %s", func, line, pi->pathname);
1025 print_sys_errmsg (errmsg, errno);
1029 proc_error (procinfo *pi, char *func, int line)
1031 sprintf (errmsg, "procfs: %s line %d, %s", func, line, pi->pathname);
1032 perror_with_name (errmsg);
1035 /* Updates the status struct in the procinfo. There is a 'valid'
1036 flag, to let other functions know when this function needs to be
1037 called (so the status is only read when it is needed). The status
1038 file descriptor is also only opened when it is needed. Returns
1039 non-zero for success, zero for failure. */
1042 proc_get_status (procinfo *pi)
1044 /* Status file descriptor is opened "lazily". */
1045 if (pi->status_fd == 0 &&
1046 open_procinfo_files (pi, FD_STATUS) == 0)
1048 pi->status_valid = 0;
1053 if (lseek (pi->status_fd, 0, SEEK_SET) < 0)
1054 pi->status_valid = 0; /* fail */
1057 /* Sigh... I have to read a different data structure,
1058 depending on whether this is a main process or an LWP. */
1060 pi->status_valid = (read (pi->status_fd,
1061 (char *) &pi->prstatus.pr_lwp,
1062 sizeof (lwpstatus_t))
1063 == sizeof (lwpstatus_t));
1066 pi->status_valid = (read (pi->status_fd,
1067 (char *) &pi->prstatus,
1068 sizeof (gdb_prstatus_t))
1069 == sizeof (gdb_prstatus_t));
1072 #else /* ioctl method */
1073 #ifdef PIOCTSTATUS /* osf */
1074 if (pi->tid == 0) /* main process */
1076 /* Just read the danged status. Now isn't that simple? */
1078 (ioctl (pi->status_fd, PIOCSTATUS, &pi->prstatus) >= 0);
1085 tid_t pr_error_thread;
1086 struct prstatus status;
1089 thread_status.pr_count = 1;
1090 thread_status.status.pr_tid = pi->tid;
1091 win = (ioctl (pi->status_fd, PIOCTSTATUS, &thread_status) >= 0);
1094 memcpy (&pi->prstatus, &thread_status.status,
1095 sizeof (pi->prstatus));
1096 pi->status_valid = 1;
1100 /* Just read the danged status. Now isn't that simple? */
1101 pi->status_valid = (ioctl (pi->status_fd, PIOCSTATUS, &pi->prstatus) >= 0);
1105 if (pi->status_valid)
1107 PROC_PRETTYFPRINT_STATUS (proc_flags (pi),
1110 proc_get_current_thread (pi));
1113 /* The status struct includes general regs, so mark them valid too. */
1114 pi->gregs_valid = pi->status_valid;
1116 /* In the read/write multiple-fd model, the status struct includes
1117 the fp regs too, so mark them valid too. */
1118 pi->fpregs_valid = pi->status_valid;
1120 return pi->status_valid; /* True if success, false if failure. */
1123 /* Returns the process flags (pr_flags field). */
1126 proc_flags (procinfo *pi)
1128 if (!pi->status_valid)
1129 if (!proc_get_status (pi))
1130 return 0; /* FIXME: not a good failure value (but what is?) */
1133 return pi->prstatus.pr_lwp.pr_flags;
1135 return pi->prstatus.pr_flags;
1139 /* Returns the pr_why field (why the process stopped). */
1142 proc_why (procinfo *pi)
1144 if (!pi->status_valid)
1145 if (!proc_get_status (pi))
1146 return 0; /* FIXME: not a good failure value (but what is?) */
1149 return pi->prstatus.pr_lwp.pr_why;
1151 return pi->prstatus.pr_why;
1155 /* Returns the pr_what field (details of why the process stopped). */
1158 proc_what (procinfo *pi)
1160 if (!pi->status_valid)
1161 if (!proc_get_status (pi))
1162 return 0; /* FIXME: not a good failure value (but what is?) */
1165 return pi->prstatus.pr_lwp.pr_what;
1167 return pi->prstatus.pr_what;
1171 /* This function is only called when PI is stopped by a watchpoint.
1172 Assuming the OS supports it, write to *ADDR the data address which
1173 triggered it and return 1. Return 0 if it is not possible to know
1177 proc_watchpoint_address (procinfo *pi, CORE_ADDR *addr)
1179 if (!pi->status_valid)
1180 if (!proc_get_status (pi))
1184 *addr = (CORE_ADDR) gdbarch_pointer_to_address (target_gdbarch (),
1185 builtin_type (target_gdbarch ())->builtin_data_ptr,
1186 (gdb_byte *) &pi->prstatus.pr_lwp.pr_info.si_addr);
1188 *addr = (CORE_ADDR) gdbarch_pointer_to_address (target_gdbarch (),
1189 builtin_type (target_gdbarch ())->builtin_data_ptr,
1190 (gdb_byte *) &pi->prstatus.pr_info.si_addr);
1195 #ifndef PIOCSSPCACT /* The following is not supported on OSF. */
1197 /* Returns the pr_nsysarg field (number of args to the current
1201 proc_nsysarg (procinfo *pi)
1203 if (!pi->status_valid)
1204 if (!proc_get_status (pi))
1208 return pi->prstatus.pr_lwp.pr_nsysarg;
1210 return pi->prstatus.pr_nsysarg;
1214 /* Returns the pr_sysarg field (pointer to the arguments of current
1218 proc_sysargs (procinfo *pi)
1220 if (!pi->status_valid)
1221 if (!proc_get_status (pi))
1225 return (long *) &pi->prstatus.pr_lwp.pr_sysarg;
1227 return (long *) &pi->prstatus.pr_sysarg;
1230 #endif /* PIOCSSPCACT */
1232 #ifdef PROCFS_DONT_PIOCSSIG_CURSIG
1233 /* Returns the pr_cursig field (current signal). */
1236 proc_cursig (struct procinfo *pi)
1238 if (!pi->status_valid)
1239 if (!proc_get_status (pi))
1240 return 0; /* FIXME: not a good failure value (but what is?) */
1243 return pi->prstatus.pr_lwp.pr_cursig;
1245 return pi->prstatus.pr_cursig;
1248 #endif /* PROCFS_DONT_PIOCSSIG_CURSIG */
1250 /* === I appologize for the messiness of this function.
1251 === This is an area where the different versions of
1252 === /proc are more inconsistent than usual.
1254 Set or reset any of the following process flags:
1255 PR_FORK -- forked child will inherit trace flags
1256 PR_RLC -- traced process runs when last /proc file closed.
1257 PR_KLC -- traced process is killed when last /proc file closed.
1258 PR_ASYNC -- LWP's get to run/stop independently.
1260 There are three methods for doing this function:
1261 1) Newest: read/write [PCSET/PCRESET/PCUNSET]
1263 2) Middle: PIOCSET/PIOCRESET
1265 3) Oldest: PIOCSFORK/PIOCRFORK/PIOCSRLC/PIOCRRLC
1268 Note: Irix does not define PR_ASYNC.
1269 Note: OSF does not define PR_KLC.
1270 Note: OSF is the only one that can ONLY use the oldest method.
1274 flag -- one of PR_FORK, PR_RLC, or PR_ASYNC
1275 mode -- 1 for set, 0 for reset.
1277 Returns non-zero for success, zero for failure. */
1279 enum { FLAG_RESET, FLAG_SET };
1282 proc_modify_flag (procinfo *pi, long flag, long mode)
1284 long win = 0; /* default to fail */
1286 /* These operations affect the process as a whole, and applying them
1287 to an individual LWP has the same meaning as applying them to the
1288 main process. Therefore, if we're ever called with a pointer to
1289 an LWP's procinfo, let's substitute the process's procinfo and
1290 avoid opening the LWP's file descriptor unnecessarily. */
1293 pi = find_procinfo_or_die (pi->pid, 0);
1295 #ifdef NEW_PROC_API /* Newest method: Newer Solarii. */
1296 /* First normalize the PCUNSET/PCRESET command opcode
1297 (which for no obvious reason has a different definition
1298 from one operating system to the next...) */
1300 #define GDBRESET PCUNSET
1303 #define GDBRESET PCRESET
1307 procfs_ctl_t arg[2];
1309 if (mode == FLAG_SET) /* Set the flag (RLC, FORK, or ASYNC). */
1311 else /* Reset the flag. */
1315 win = (write (pi->ctl_fd, (void *) &arg, sizeof (arg)) == sizeof (arg));
1318 #ifdef PIOCSET /* Irix/Sol5 method */
1319 if (mode == FLAG_SET) /* Set the flag (hopefully RLC, FORK, or ASYNC). */
1321 win = (ioctl (pi->ctl_fd, PIOCSET, &flag) >= 0);
1323 else /* Reset the flag. */
1325 win = (ioctl (pi->ctl_fd, PIOCRESET, &flag) >= 0);
1329 #ifdef PIOCSRLC /* Oldest method: OSF */
1332 if (mode == FLAG_SET) /* Set run-on-last-close */
1334 win = (ioctl (pi->ctl_fd, PIOCSRLC, NULL) >= 0);
1336 else /* Clear run-on-last-close */
1338 win = (ioctl (pi->ctl_fd, PIOCRRLC, NULL) >= 0);
1342 if (mode == FLAG_SET) /* Set inherit-on-fork */
1344 win = (ioctl (pi->ctl_fd, PIOCSFORK, NULL) >= 0);
1346 else /* Clear inherit-on-fork */
1348 win = (ioctl (pi->ctl_fd, PIOCRFORK, NULL) >= 0);
1352 win = 0; /* Fail -- unknown flag (can't do PR_ASYNC). */
1359 /* The above operation renders the procinfo's cached pstatus
1361 pi->status_valid = 0;
1364 warning (_("procfs: modify_flag failed to turn %s %s"),
1365 flag == PR_FORK ? "PR_FORK" :
1366 flag == PR_RLC ? "PR_RLC" :
1368 flag == PR_ASYNC ? "PR_ASYNC" :
1371 flag == PR_KLC ? "PR_KLC" :
1374 mode == FLAG_RESET ? "off" : "on");
1379 /* Set the run_on_last_close flag. Process with all threads will
1380 become runnable when debugger closes all /proc fds. Returns
1381 non-zero for success, zero for failure. */
1384 proc_set_run_on_last_close (procinfo *pi)
1386 return proc_modify_flag (pi, PR_RLC, FLAG_SET);
1389 /* Reset the run_on_last_close flag. The process will NOT become
1390 runnable when debugger closes its file handles. Returns non-zero
1391 for success, zero for failure. */
1394 proc_unset_run_on_last_close (procinfo *pi)
1396 return proc_modify_flag (pi, PR_RLC, FLAG_RESET);
1399 /* Reset inherit_on_fork flag. If the process forks a child while we
1400 are registered for events in the parent, then we will NOT recieve
1401 events from the child. Returns non-zero for success, zero for
1405 proc_unset_inherit_on_fork (procinfo *pi)
1407 return proc_modify_flag (pi, PR_FORK, FLAG_RESET);
1411 /* Set PR_ASYNC flag. If one LWP stops because of a debug event
1412 (signal etc.), the remaining LWPs will continue to run. Returns
1413 non-zero for success, zero for failure. */
1416 proc_set_async (procinfo *pi)
1418 return proc_modify_flag (pi, PR_ASYNC, FLAG_SET);
1421 /* Reset PR_ASYNC flag. If one LWP stops because of a debug event
1422 (signal etc.), then all other LWPs will stop as well. Returns
1423 non-zero for success, zero for failure. */
1426 proc_unset_async (procinfo *pi)
1428 return proc_modify_flag (pi, PR_ASYNC, FLAG_RESET);
1430 #endif /* PR_ASYNC */
1432 /* Request the process/LWP to stop. Does not wait. Returns non-zero
1433 for success, zero for failure. */
1436 proc_stop_process (procinfo *pi)
1440 /* We might conceivably apply this operation to an LWP, and the
1441 LWP's ctl file descriptor might not be open. */
1443 if (pi->ctl_fd == 0 &&
1444 open_procinfo_files (pi, FD_CTL) == 0)
1449 procfs_ctl_t cmd = PCSTOP;
1451 win = (write (pi->ctl_fd, (char *) &cmd, sizeof (cmd)) == sizeof (cmd));
1452 #else /* ioctl method */
1453 win = (ioctl (pi->ctl_fd, PIOCSTOP, &pi->prstatus) >= 0);
1454 /* Note: the call also reads the prstatus. */
1457 pi->status_valid = 1;
1458 PROC_PRETTYFPRINT_STATUS (proc_flags (pi),
1461 proc_get_current_thread (pi));
1469 /* Wait for the process or LWP to stop (block until it does). Returns
1470 non-zero for success, zero for failure. */
1473 proc_wait_for_stop (procinfo *pi)
1477 /* We should never have to apply this operation to any procinfo
1478 except the one for the main process. If that ever changes for
1479 any reason, then take out the following clause and replace it
1480 with one that makes sure the ctl_fd is open. */
1483 pi = find_procinfo_or_die (pi->pid, 0);
1487 procfs_ctl_t cmd = PCWSTOP;
1489 win = (write (pi->ctl_fd, (char *) &cmd, sizeof (cmd)) == sizeof (cmd));
1490 /* We been runnin' and we stopped -- need to update status. */
1491 pi->status_valid = 0;
1493 #else /* ioctl method */
1494 win = (ioctl (pi->ctl_fd, PIOCWSTOP, &pi->prstatus) >= 0);
1495 /* Above call also refreshes the prstatus. */
1498 pi->status_valid = 1;
1499 PROC_PRETTYFPRINT_STATUS (proc_flags (pi),
1502 proc_get_current_thread (pi));
1509 /* Make the process or LWP runnable.
1511 Options (not all are implemented):
1513 - clear current fault
1514 - clear current signal
1515 - abort the current system call
1516 - stop as soon as finished with system call
1517 - (ioctl): set traced signal set
1518 - (ioctl): set held signal set
1519 - (ioctl): set traced fault set
1520 - (ioctl): set start pc (vaddr)
1522 Always clears the current fault. PI is the process or LWP to
1523 operate on. If STEP is true, set the process or LWP to trap after
1524 one instruction. If SIGNO is zero, clear the current signal if
1525 any; if non-zero, set the current signal to this one. Returns
1526 non-zero for success, zero for failure. */
1529 proc_run_process (procinfo *pi, int step, int signo)
1534 /* We will probably have to apply this operation to individual
1535 threads, so make sure the control file descriptor is open. */
1537 if (pi->ctl_fd == 0 &&
1538 open_procinfo_files (pi, FD_CTL) == 0)
1543 runflags = PRCFAULT; /* Always clear current fault. */
1548 else if (signo != -1) /* -1 means do nothing W.R.T. signals. */
1549 proc_set_current_signal (pi, signo);
1553 procfs_ctl_t cmd[2];
1557 win = (write (pi->ctl_fd, (char *) &cmd, sizeof (cmd)) == sizeof (cmd));
1559 #else /* ioctl method */
1563 memset (&prrun, 0, sizeof (prrun));
1564 prrun.pr_flags = runflags;
1565 win = (ioctl (pi->ctl_fd, PIOCRUN, &prrun) >= 0);
1572 /* Register to trace signals in the process or LWP. Returns non-zero
1573 for success, zero for failure. */
1576 proc_set_traced_signals (procinfo *pi, gdb_sigset_t *sigset)
1580 /* We should never have to apply this operation to any procinfo
1581 except the one for the main process. If that ever changes for
1582 any reason, then take out the following clause and replace it
1583 with one that makes sure the ctl_fd is open. */
1586 pi = find_procinfo_or_die (pi->pid, 0);
1592 /* Use char array to avoid alignment issues. */
1593 char sigset[sizeof (gdb_sigset_t)];
1597 memcpy (&arg.sigset, sigset, sizeof (gdb_sigset_t));
1599 win = (write (pi->ctl_fd, (char *) &arg, sizeof (arg)) == sizeof (arg));
1601 #else /* ioctl method */
1602 win = (ioctl (pi->ctl_fd, PIOCSTRACE, sigset) >= 0);
1604 /* The above operation renders the procinfo's cached pstatus obsolete. */
1605 pi->status_valid = 0;
1608 warning (_("procfs: set_traced_signals failed"));
1612 /* Register to trace hardware faults in the process or LWP. Returns
1613 non-zero for success, zero for failure. */
1616 proc_set_traced_faults (procinfo *pi, fltset_t *fltset)
1620 /* We should never have to apply this operation to any procinfo
1621 except the one for the main process. If that ever changes for
1622 any reason, then take out the following clause and replace it
1623 with one that makes sure the ctl_fd is open. */
1626 pi = find_procinfo_or_die (pi->pid, 0);
1632 /* Use char array to avoid alignment issues. */
1633 char fltset[sizeof (fltset_t)];
1637 memcpy (&arg.fltset, fltset, sizeof (fltset_t));
1639 win = (write (pi->ctl_fd, (char *) &arg, sizeof (arg)) == sizeof (arg));
1641 #else /* ioctl method */
1642 win = (ioctl (pi->ctl_fd, PIOCSFAULT, fltset) >= 0);
1644 /* The above operation renders the procinfo's cached pstatus obsolete. */
1645 pi->status_valid = 0;
1650 /* Register to trace entry to system calls in the process or LWP.
1651 Returns non-zero for success, zero for failure. */
1654 proc_set_traced_sysentry (procinfo *pi, sysset_t *sysset)
1658 /* We should never have to apply this operation to any procinfo
1659 except the one for the main process. If that ever changes for
1660 any reason, then take out the following clause and replace it
1661 with one that makes sure the ctl_fd is open. */
1664 pi = find_procinfo_or_die (pi->pid, 0);
1668 struct gdb_proc_ctl_pcsentry {
1670 /* Use char array to avoid alignment issues. */
1671 char sysset[sizeof (sysset_t)];
1673 int argp_size = sizeof (struct gdb_proc_ctl_pcsentry)
1675 + sysset_t_size (pi);
1677 argp = xmalloc (argp_size);
1679 argp->cmd = PCSENTRY;
1680 memcpy (&argp->sysset, sysset, sysset_t_size (pi));
1682 win = (write (pi->ctl_fd, (char *) argp, argp_size) == argp_size);
1685 #else /* ioctl method */
1686 win = (ioctl (pi->ctl_fd, PIOCSENTRY, sysset) >= 0);
1688 /* The above operation renders the procinfo's cached pstatus
1690 pi->status_valid = 0;
1695 /* Register to trace exit from system calls in the process or LWP.
1696 Returns non-zero for success, zero for failure. */
1699 proc_set_traced_sysexit (procinfo *pi, sysset_t *sysset)
1703 /* We should never have to apply this operation to any procinfo
1704 except the one for the main process. If that ever changes for
1705 any reason, then take out the following clause and replace it
1706 with one that makes sure the ctl_fd is open. */
1709 pi = find_procinfo_or_die (pi->pid, 0);
1713 struct gdb_proc_ctl_pcsexit {
1715 /* Use char array to avoid alignment issues. */
1716 char sysset[sizeof (sysset_t)];
1718 int argp_size = sizeof (struct gdb_proc_ctl_pcsexit)
1720 + sysset_t_size (pi);
1722 argp = xmalloc (argp_size);
1724 argp->cmd = PCSEXIT;
1725 memcpy (&argp->sysset, sysset, sysset_t_size (pi));
1727 win = (write (pi->ctl_fd, (char *) argp, argp_size) == argp_size);
1730 #else /* ioctl method */
1731 win = (ioctl (pi->ctl_fd, PIOCSEXIT, sysset) >= 0);
1733 /* The above operation renders the procinfo's cached pstatus
1735 pi->status_valid = 0;
1740 /* Specify the set of blocked / held signals in the process or LWP.
1741 Returns non-zero for success, zero for failure. */
1744 proc_set_held_signals (procinfo *pi, gdb_sigset_t *sighold)
1748 /* We should never have to apply this operation to any procinfo
1749 except the one for the main process. If that ever changes for
1750 any reason, then take out the following clause and replace it
1751 with one that makes sure the ctl_fd is open. */
1754 pi = find_procinfo_or_die (pi->pid, 0);
1760 /* Use char array to avoid alignment issues. */
1761 char hold[sizeof (gdb_sigset_t)];
1765 memcpy (&arg.hold, sighold, sizeof (gdb_sigset_t));
1766 win = (write (pi->ctl_fd, (void *) &arg, sizeof (arg)) == sizeof (arg));
1769 win = (ioctl (pi->ctl_fd, PIOCSHOLD, sighold) >= 0);
1771 /* The above operation renders the procinfo's cached pstatus
1773 pi->status_valid = 0;
1778 /* Returns the set of signals that are held / blocked. Will also copy
1779 the sigset if SAVE is non-zero. */
1781 static gdb_sigset_t *
1782 proc_get_held_signals (procinfo *pi, gdb_sigset_t *save)
1784 gdb_sigset_t *ret = NULL;
1786 /* We should never have to apply this operation to any procinfo
1787 except the one for the main process. If that ever changes for
1788 any reason, then take out the following clause and replace it
1789 with one that makes sure the ctl_fd is open. */
1792 pi = find_procinfo_or_die (pi->pid, 0);
1795 if (!pi->status_valid)
1796 if (!proc_get_status (pi))
1799 ret = &pi->prstatus.pr_lwp.pr_lwphold;
1800 #else /* not NEW_PROC_API */
1802 static gdb_sigset_t sigheld;
1804 if (ioctl (pi->ctl_fd, PIOCGHOLD, &sigheld) >= 0)
1807 #endif /* NEW_PROC_API */
1809 memcpy (save, ret, sizeof (gdb_sigset_t));
1814 /* Returns the set of signals that are traced / debugged. Will also
1815 copy the sigset if SAVE is non-zero. */
1817 static gdb_sigset_t *
1818 proc_get_traced_signals (procinfo *pi, gdb_sigset_t *save)
1820 gdb_sigset_t *ret = NULL;
1822 /* We should never have to apply this operation to any procinfo
1823 except the one for the main process. If that ever changes for
1824 any reason, then take out the following clause and replace it
1825 with one that makes sure the ctl_fd is open. */
1828 pi = find_procinfo_or_die (pi->pid, 0);
1831 if (!pi->status_valid)
1832 if (!proc_get_status (pi))
1835 ret = &pi->prstatus.pr_sigtrace;
1838 static gdb_sigset_t sigtrace;
1840 if (ioctl (pi->ctl_fd, PIOCGTRACE, &sigtrace) >= 0)
1845 memcpy (save, ret, sizeof (gdb_sigset_t));
1850 /* Returns the set of hardware faults that are traced /debugged. Will
1851 also copy the faultset if SAVE is non-zero. */
1854 proc_get_traced_faults (procinfo *pi, fltset_t *save)
1856 fltset_t *ret = NULL;
1858 /* We should never have to apply this operation to any procinfo
1859 except the one for the main process. If that ever changes for
1860 any reason, then take out the following clause and replace it
1861 with one that makes sure the ctl_fd is open. */
1864 pi = find_procinfo_or_die (pi->pid, 0);
1867 if (!pi->status_valid)
1868 if (!proc_get_status (pi))
1871 ret = &pi->prstatus.pr_flttrace;
1874 static fltset_t flttrace;
1876 if (ioctl (pi->ctl_fd, PIOCGFAULT, &flttrace) >= 0)
1881 memcpy (save, ret, sizeof (fltset_t));
1886 /* Returns the set of syscalls that are traced /debugged on entry.
1887 Will also copy the syscall set if SAVE is non-zero. */
1890 proc_get_traced_sysentry (procinfo *pi, sysset_t *save)
1892 sysset_t *ret = NULL;
1894 /* We should never have to apply this operation to any procinfo
1895 except the one for the main process. If that ever changes for
1896 any reason, then take out the following clause and replace it
1897 with one that makes sure the ctl_fd is open. */
1900 pi = find_procinfo_or_die (pi->pid, 0);
1903 if (!pi->status_valid)
1904 if (!proc_get_status (pi))
1907 #ifndef DYNAMIC_SYSCALLS
1908 ret = &pi->prstatus.pr_sysentry;
1909 #else /* DYNAMIC_SYSCALLS */
1911 static sysset_t *sysentry;
1915 sysentry = sysset_t_alloc (pi);
1917 if (pi->status_fd == 0 && open_procinfo_files (pi, FD_STATUS) == 0)
1919 if (pi->prstatus.pr_sysentry_offset == 0)
1921 gdb_premptysysset (sysentry);
1927 if (lseek (pi->status_fd, (off_t) pi->prstatus.pr_sysentry_offset,
1929 != (off_t) pi->prstatus.pr_sysentry_offset)
1931 size = sysset_t_size (pi);
1932 gdb_premptysysset (sysentry);
1933 rsize = read (pi->status_fd, sysentry, size);
1938 #endif /* DYNAMIC_SYSCALLS */
1939 #else /* !NEW_PROC_API */
1941 static sysset_t sysentry;
1943 if (ioctl (pi->ctl_fd, PIOCGENTRY, &sysentry) >= 0)
1946 #endif /* NEW_PROC_API */
1948 memcpy (save, ret, sysset_t_size (pi));
1953 /* Returns the set of syscalls that are traced /debugged on exit.
1954 Will also copy the syscall set if SAVE is non-zero. */
1957 proc_get_traced_sysexit (procinfo *pi, sysset_t *save)
1959 sysset_t * ret = NULL;
1961 /* We should never have to apply this operation to any procinfo
1962 except the one for the main process. If that ever changes for
1963 any reason, then take out the following clause and replace it
1964 with one that makes sure the ctl_fd is open. */
1967 pi = find_procinfo_or_die (pi->pid, 0);
1970 if (!pi->status_valid)
1971 if (!proc_get_status (pi))
1974 #ifndef DYNAMIC_SYSCALLS
1975 ret = &pi->prstatus.pr_sysexit;
1976 #else /* DYNAMIC_SYSCALLS */
1978 static sysset_t *sysexit;
1982 sysexit = sysset_t_alloc (pi);
1984 if (pi->status_fd == 0 && open_procinfo_files (pi, FD_STATUS) == 0)
1986 if (pi->prstatus.pr_sysexit_offset == 0)
1988 gdb_premptysysset (sysexit);
1994 if (lseek (pi->status_fd, (off_t) pi->prstatus.pr_sysexit_offset,
1996 != (off_t) pi->prstatus.pr_sysexit_offset)
1998 size = sysset_t_size (pi);
1999 gdb_premptysysset (sysexit);
2000 rsize = read (pi->status_fd, sysexit, size);
2005 #endif /* DYNAMIC_SYSCALLS */
2008 static sysset_t sysexit;
2010 if (ioctl (pi->ctl_fd, PIOCGEXIT, &sysexit) >= 0)
2015 memcpy (save, ret, sysset_t_size (pi));
2020 /* The current fault (if any) is cleared; the associated signal will
2021 not be sent to the process or LWP when it resumes. Returns
2022 non-zero for success, zero for failure. */
2025 proc_clear_current_fault (procinfo *pi)
2029 /* We should never have to apply this operation to any procinfo
2030 except the one for the main process. If that ever changes for
2031 any reason, then take out the following clause and replace it
2032 with one that makes sure the ctl_fd is open. */
2035 pi = find_procinfo_or_die (pi->pid, 0);
2039 procfs_ctl_t cmd = PCCFAULT;
2041 win = (write (pi->ctl_fd, (void *) &cmd, sizeof (cmd)) == sizeof (cmd));
2044 win = (ioctl (pi->ctl_fd, PIOCCFAULT, 0) >= 0);
2050 /* Set the "current signal" that will be delivered next to the
2051 process. NOTE: semantics are different from those of KILL. This
2052 signal will be delivered to the process or LWP immediately when it
2053 is resumed (even if the signal is held/blocked); it will NOT
2054 immediately cause another event of interest, and will NOT first
2055 trap back to the debugger. Returns non-zero for success, zero for
2059 proc_set_current_signal (procinfo *pi, int signo)
2064 /* Use char array to avoid alignment issues. */
2065 char sinfo[sizeof (gdb_siginfo_t)];
2067 gdb_siginfo_t mysinfo;
2069 struct target_waitstatus wait_status;
2071 /* We should never have to apply this operation to any procinfo
2072 except the one for the main process. If that ever changes for
2073 any reason, then take out the following clause and replace it
2074 with one that makes sure the ctl_fd is open. */
2077 pi = find_procinfo_or_die (pi->pid, 0);
2079 #ifdef PROCFS_DONT_PIOCSSIG_CURSIG
2080 /* With Alpha OSF/1 procfs, the kernel gets really confused if it
2081 receives a PIOCSSIG with a signal identical to the current
2082 signal, it messes up the current signal. Work around the kernel
2085 signo == proc_cursig (pi))
2086 return 1; /* I assume this is a success? */
2089 /* The pointer is just a type alias. */
2090 get_last_target_status (&wait_ptid, &wait_status);
2091 if (ptid_equal (wait_ptid, inferior_ptid)
2092 && wait_status.kind == TARGET_WAITKIND_STOPPED
2093 && wait_status.value.sig == gdb_signal_from_host (signo)
2094 && proc_get_status (pi)
2096 && pi->prstatus.pr_lwp.pr_info.si_signo == signo
2098 && pi->prstatus.pr_info.si_signo == signo
2101 /* Use the siginfo associated with the signal being
2104 memcpy (arg.sinfo, &pi->prstatus.pr_lwp.pr_info, sizeof (gdb_siginfo_t));
2106 memcpy (arg.sinfo, &pi->prstatus.pr_info, sizeof (gdb_siginfo_t));
2110 mysinfo.si_signo = signo;
2111 mysinfo.si_code = 0;
2112 mysinfo.si_pid = getpid (); /* ?why? */
2113 mysinfo.si_uid = getuid (); /* ?why? */
2114 memcpy (arg.sinfo, &mysinfo, sizeof (gdb_siginfo_t));
2119 win = (write (pi->ctl_fd, (void *) &arg, sizeof (arg)) == sizeof (arg));
2121 win = (ioctl (pi->ctl_fd, PIOCSSIG, (void *) &arg.sinfo) >= 0);
2127 /* The current signal (if any) is cleared, and is not sent to the
2128 process or LWP when it resumes. Returns non-zero for success, zero
2132 proc_clear_current_signal (procinfo *pi)
2136 /* We should never have to apply this operation to any procinfo
2137 except the one for the main process. If that ever changes for
2138 any reason, then take out the following clause and replace it
2139 with one that makes sure the ctl_fd is open. */
2142 pi = find_procinfo_or_die (pi->pid, 0);
2148 /* Use char array to avoid alignment issues. */
2149 char sinfo[sizeof (gdb_siginfo_t)];
2151 gdb_siginfo_t mysinfo;
2154 /* The pointer is just a type alias. */
2155 mysinfo.si_signo = 0;
2156 mysinfo.si_code = 0;
2157 mysinfo.si_errno = 0;
2158 mysinfo.si_pid = getpid (); /* ?why? */
2159 mysinfo.si_uid = getuid (); /* ?why? */
2160 memcpy (arg.sinfo, &mysinfo, sizeof (gdb_siginfo_t));
2162 win = (write (pi->ctl_fd, (void *) &arg, sizeof (arg)) == sizeof (arg));
2165 win = (ioctl (pi->ctl_fd, PIOCSSIG, 0) >= 0);
2171 /* Return the general-purpose registers for the process or LWP
2172 corresponding to PI. Upon failure, return NULL. */
2174 static gdb_gregset_t *
2175 proc_get_gregs (procinfo *pi)
2177 if (!pi->status_valid || !pi->gregs_valid)
2178 if (!proc_get_status (pi))
2182 return &pi->prstatus.pr_lwp.pr_reg;
2184 return &pi->prstatus.pr_reg;
2188 /* Return the general-purpose registers for the process or LWP
2189 corresponding to PI. Upon failure, return NULL. */
2191 static gdb_fpregset_t *
2192 proc_get_fpregs (procinfo *pi)
2195 if (!pi->status_valid || !pi->fpregs_valid)
2196 if (!proc_get_status (pi))
2199 return &pi->prstatus.pr_lwp.pr_fpreg;
2201 #else /* not NEW_PROC_API */
2202 if (pi->fpregs_valid)
2203 return &pi->fpregset; /* Already got 'em. */
2206 if (pi->ctl_fd == 0 && open_procinfo_files (pi, FD_CTL) == 0)
2215 tid_t pr_error_thread;
2216 tfpregset_t thread_1;
2219 thread_fpregs.pr_count = 1;
2220 thread_fpregs.thread_1.tid = pi->tid;
2223 && ioctl (pi->ctl_fd, PIOCGFPREG, &pi->fpregset) >= 0)
2225 pi->fpregs_valid = 1;
2226 return &pi->fpregset; /* Got 'em now! */
2228 else if (pi->tid != 0
2229 && ioctl (pi->ctl_fd, PIOCTGFPREG, &thread_fpregs) >= 0)
2231 memcpy (&pi->fpregset, &thread_fpregs.thread_1.pr_fpregs,
2232 sizeof (pi->fpregset));
2233 pi->fpregs_valid = 1;
2234 return &pi->fpregset; /* Got 'em now! */
2241 if (ioctl (pi->ctl_fd, PIOCGFPREG, &pi->fpregset) >= 0)
2243 pi->fpregs_valid = 1;
2244 return &pi->fpregset; /* Got 'em now! */
2253 #endif /* NEW_PROC_API */
2256 /* Write the general-purpose registers back to the process or LWP
2257 corresponding to PI. Return non-zero for success, zero for
2261 proc_set_gregs (procinfo *pi)
2263 gdb_gregset_t *gregs;
2266 gregs = proc_get_gregs (pi);
2268 return 0; /* proc_get_regs has already warned. */
2270 if (pi->ctl_fd == 0 && open_procinfo_files (pi, FD_CTL) == 0)
2279 /* Use char array to avoid alignment issues. */
2280 char gregs[sizeof (gdb_gregset_t)];
2284 memcpy (&arg.gregs, gregs, sizeof (arg.gregs));
2285 win = (write (pi->ctl_fd, (void *) &arg, sizeof (arg)) == sizeof (arg));
2287 win = (ioctl (pi->ctl_fd, PIOCSREG, gregs) >= 0);
2291 /* Policy: writing the registers invalidates our cache. */
2292 pi->gregs_valid = 0;
2296 /* Write the floating-pointer registers back to the process or LWP
2297 corresponding to PI. Return non-zero for success, zero for
2301 proc_set_fpregs (procinfo *pi)
2303 gdb_fpregset_t *fpregs;
2306 fpregs = proc_get_fpregs (pi);
2308 return 0; /* proc_get_fpregs has already warned. */
2310 if (pi->ctl_fd == 0 && open_procinfo_files (pi, FD_CTL) == 0)
2319 /* Use char array to avoid alignment issues. */
2320 char fpregs[sizeof (gdb_fpregset_t)];
2324 memcpy (&arg.fpregs, fpregs, sizeof (arg.fpregs));
2325 win = (write (pi->ctl_fd, (void *) &arg, sizeof (arg)) == sizeof (arg));
2329 win = (ioctl (pi->ctl_fd, PIOCSFPREG, fpregs) >= 0);
2334 tid_t pr_error_thread;
2335 tfpregset_t thread_1;
2338 thread_fpregs.pr_count = 1;
2339 thread_fpregs.thread_1.tid = pi->tid;
2340 memcpy (&thread_fpregs.thread_1.pr_fpregs, fpregs,
2342 win = (ioctl (pi->ctl_fd, PIOCTSFPREG, &thread_fpregs) >= 0);
2345 win = (ioctl (pi->ctl_fd, PIOCSFPREG, fpregs) >= 0);
2347 #endif /* NEW_PROC_API */
2350 /* Policy: writing the registers invalidates our cache. */
2351 pi->fpregs_valid = 0;
2355 /* Send a signal to the proc or lwp with the semantics of "kill()".
2356 Returns non-zero for success, zero for failure. */
2359 proc_kill (procinfo *pi, int signo)
2363 /* We might conceivably apply this operation to an LWP, and the
2364 LWP's ctl file descriptor might not be open. */
2366 if (pi->ctl_fd == 0 &&
2367 open_procinfo_files (pi, FD_CTL) == 0)
2374 procfs_ctl_t cmd[2];
2378 win = (write (pi->ctl_fd, (char *) &cmd, sizeof (cmd)) == sizeof (cmd));
2379 #else /* ioctl method */
2380 /* FIXME: do I need the Alpha OSF fixups present in
2381 procfs.c/unconditionally_kill_inferior? Perhaps only for SIGKILL? */
2382 win = (ioctl (pi->ctl_fd, PIOCKILL, &signo) >= 0);
2389 /* Find the pid of the process that started this one. Returns the
2390 parent process pid, or zero. */
2393 proc_parent_pid (procinfo *pi)
2395 /* We should never have to apply this operation to any procinfo
2396 except the one for the main process. If that ever changes for
2397 any reason, then take out the following clause and replace it
2398 with one that makes sure the ctl_fd is open. */
2401 pi = find_procinfo_or_die (pi->pid, 0);
2403 if (!pi->status_valid)
2404 if (!proc_get_status (pi))
2407 return pi->prstatus.pr_ppid;
2410 /* Convert a target address (a.k.a. CORE_ADDR) into a host address
2411 (a.k.a void pointer)! */
2413 #if (defined (PCWATCH) || defined (PIOCSWATCH)) \
2414 && !(defined (PIOCOPENLWP))
2416 procfs_address_to_host_pointer (CORE_ADDR addr)
2418 struct type *ptr_type = builtin_type (target_gdbarch ())->builtin_data_ptr;
2421 gdb_assert (sizeof (ptr) == TYPE_LENGTH (ptr_type));
2422 gdbarch_address_to_pointer (target_gdbarch (), ptr_type,
2423 (gdb_byte *) &ptr, addr);
2429 proc_set_watchpoint (procinfo *pi, CORE_ADDR addr, int len, int wflags)
2431 #if !defined (PCWATCH) && !defined (PIOCSWATCH)
2432 /* If neither or these is defined, we can't support watchpoints.
2433 This just avoids possibly failing to compile the below on such
2437 /* Horrible hack! Detect Solaris 2.5, because this doesn't work on 2.5. */
2438 #if defined (PIOCOPENLWP) /* Solaris 2.5: bail out. */
2443 char watch[sizeof (prwatch_t)];
2447 /* NOTE: cagney/2003-02-01: Even more horrible hack. Need to
2448 convert a target address into something that can be stored in a
2449 native data structure. */
2450 #ifdef PCAGENT /* Horrible hack: only defined on Solaris 2.6+ */
2451 pwatch.pr_vaddr = (uintptr_t) procfs_address_to_host_pointer (addr);
2453 pwatch.pr_vaddr = (caddr_t) procfs_address_to_host_pointer (addr);
2455 pwatch.pr_size = len;
2456 pwatch.pr_wflags = wflags;
2457 #if defined(NEW_PROC_API) && defined (PCWATCH)
2459 memcpy (arg.watch, &pwatch, sizeof (prwatch_t));
2460 return (write (pi->ctl_fd, &arg, sizeof (arg)) == sizeof (arg));
2462 #if defined (PIOCSWATCH)
2463 return (ioctl (pi->ctl_fd, PIOCSWATCH, &pwatch) >= 0);
2465 return 0; /* Fail */
2472 #if (defined(__i386__) || defined(__x86_64__)) && defined (sun)
2474 #include <sys/sysi86.h>
2476 /* The KEY is actually the value of the lower 16 bits of the GS
2477 register for the LWP that we're interested in. Returns the
2478 matching ssh struct (LDT entry). */
2481 proc_get_LDT_entry (procinfo *pi, int key)
2483 static struct ssd *ldt_entry = NULL;
2485 char pathname[MAX_PROC_NAME_SIZE];
2486 struct cleanup *old_chain = NULL;
2489 /* Allocate space for one LDT entry.
2490 This alloc must persist, because we return a pointer to it. */
2491 if (ldt_entry == NULL)
2492 ldt_entry = (struct ssd *) xmalloc (sizeof (struct ssd));
2494 /* Open the file descriptor for the LDT table. */
2495 sprintf (pathname, "/proc/%d/ldt", pi->pid);
2496 if ((fd = open_with_retry (pathname, O_RDONLY)) < 0)
2498 proc_warn (pi, "proc_get_LDT_entry (open)", __LINE__);
2501 /* Make sure it gets closed again! */
2502 old_chain = make_cleanup_close (fd);
2504 /* Now 'read' thru the table, find a match and return it. */
2505 while (read (fd, ldt_entry, sizeof (struct ssd)) == sizeof (struct ssd))
2507 if (ldt_entry->sel == 0 &&
2508 ldt_entry->bo == 0 &&
2509 ldt_entry->acc1 == 0 &&
2510 ldt_entry->acc2 == 0)
2511 break; /* end of table */
2512 /* If key matches, return this entry. */
2513 if (ldt_entry->sel == key)
2516 /* Loop ended, match not found. */
2520 static int nalloc = 0;
2522 /* Get the number of LDT entries. */
2523 if (ioctl (pi->ctl_fd, PIOCNLDT, &nldt) < 0)
2525 proc_warn (pi, "proc_get_LDT_entry (PIOCNLDT)", __LINE__);
2529 /* Allocate space for the number of LDT entries. */
2530 /* This alloc has to persist, 'cause we return a pointer to it. */
2533 ldt_entry = (struct ssd *)
2534 xrealloc (ldt_entry, (nldt + 1) * sizeof (struct ssd));
2538 /* Read the whole table in one gulp. */
2539 if (ioctl (pi->ctl_fd, PIOCLDT, ldt_entry) < 0)
2541 proc_warn (pi, "proc_get_LDT_entry (PIOCLDT)", __LINE__);
2545 /* Search the table and return the (first) entry matching 'key'. */
2546 for (i = 0; i < nldt; i++)
2547 if (ldt_entry[i].sel == key)
2548 return &ldt_entry[i];
2550 /* Loop ended, match not found. */
2555 /* Returns the pointer to the LDT entry of PTID. */
2558 procfs_find_LDT_entry (ptid_t ptid)
2560 gdb_gregset_t *gregs;
2564 /* Find procinfo for the lwp. */
2565 if ((pi = find_procinfo (ptid_get_pid (ptid), ptid_get_lwp (ptid))) == NULL)
2567 warning (_("procfs_find_LDT_entry: could not find procinfo for %d:%ld."),
2568 ptid_get_pid (ptid), ptid_get_lwp (ptid));
2571 /* get its general registers. */
2572 if ((gregs = proc_get_gregs (pi)) == NULL)
2574 warning (_("procfs_find_LDT_entry: could not read gregs for %d:%ld."),
2575 ptid_get_pid (ptid), ptid_get_lwp (ptid));
2578 /* Now extract the GS register's lower 16 bits. */
2579 key = (*gregs)[GS] & 0xffff;
2581 /* Find the matching entry and return it. */
2582 return proc_get_LDT_entry (pi, key);
2587 /* =============== END, non-thread part of /proc "MODULE" =============== */
2589 /* =================== Thread "MODULE" =================== */
2591 /* NOTE: you'll see more ifdefs and duplication of functions here,
2592 since there is a different way to do threads on every OS. */
2594 /* Returns the number of threads for the process. */
2596 #if defined (PIOCNTHR) && defined (PIOCTLIST)
2599 proc_get_nthreads (procinfo *pi)
2603 if (ioctl (pi->ctl_fd, PIOCNTHR, &nthreads) < 0)
2604 proc_warn (pi, "procfs: PIOCNTHR failed", __LINE__);
2610 #if defined (SYS_lwpcreate) || defined (SYS_lwp_create) /* FIXME: multiple */
2611 /* Solaris version */
2613 proc_get_nthreads (procinfo *pi)
2615 if (!pi->status_valid)
2616 if (!proc_get_status (pi))
2619 /* NEW_PROC_API: only works for the process procinfo, because the
2620 LWP procinfos do not get prstatus filled in. */
2622 if (pi->tid != 0) /* Find the parent process procinfo. */
2623 pi = find_procinfo_or_die (pi->pid, 0);
2625 return pi->prstatus.pr_nlwp;
2629 /* Default version */
2631 proc_get_nthreads (procinfo *pi)
2640 Return the ID of the thread that had an event of interest.
2641 (ie. the one that hit a breakpoint or other traced event). All
2642 other things being equal, this should be the ID of a thread that is
2643 currently executing. */
2645 #if defined (SYS_lwpcreate) || defined (SYS_lwp_create) /* FIXME: multiple */
2646 /* Solaris version */
2648 proc_get_current_thread (procinfo *pi)
2650 /* Note: this should be applied to the root procinfo for the
2651 process, not to the procinfo for an LWP. If applied to the
2652 procinfo for an LWP, it will simply return that LWP's ID. In
2653 that case, find the parent process procinfo. */
2656 pi = find_procinfo_or_die (pi->pid, 0);
2658 if (!pi->status_valid)
2659 if (!proc_get_status (pi))
2663 return pi->prstatus.pr_lwp.pr_lwpid;
2665 return pi->prstatus.pr_who;
2670 #if defined (PIOCNTHR) && defined (PIOCTLIST)
2673 proc_get_current_thread (procinfo *pi)
2675 #if 0 /* FIXME: not ready for prime time? */
2676 return pi->prstatus.pr_tid;
2683 /* Default version */
2685 proc_get_current_thread (procinfo *pi)
2693 /* Discover the IDs of all the threads within the process, and create
2694 a procinfo for each of them (chained to the parent). This
2695 unfortunately requires a different method on every OS. Returns
2696 non-zero for success, zero for failure. */
2699 proc_delete_dead_threads (procinfo *parent, procinfo *thread, void *ignore)
2701 if (thread && parent) /* sanity */
2703 thread->status_valid = 0;
2704 if (!proc_get_status (thread))
2705 destroy_one_procinfo (&parent->thread_list, thread);
2707 return 0; /* keep iterating */
2710 #if defined (PIOCLSTATUS)
2711 /* Solaris 2.5 (ioctl) version */
2713 proc_update_threads (procinfo *pi)
2715 gdb_prstatus_t *prstatus;
2716 struct cleanup *old_chain = NULL;
2720 /* We should never have to apply this operation to any procinfo
2721 except the one for the main process. If that ever changes for
2722 any reason, then take out the following clause and replace it
2723 with one that makes sure the ctl_fd is open. */
2726 pi = find_procinfo_or_die (pi->pid, 0);
2728 proc_iterate_over_threads (pi, proc_delete_dead_threads, NULL);
2730 if ((nlwp = proc_get_nthreads (pi)) <= 1)
2731 return 1; /* Process is not multi-threaded; nothing to do. */
2733 prstatus = xmalloc (sizeof (gdb_prstatus_t) * (nlwp + 1));
2735 old_chain = make_cleanup (xfree, prstatus);
2736 if (ioctl (pi->ctl_fd, PIOCLSTATUS, prstatus) < 0)
2737 proc_error (pi, "update_threads (PIOCLSTATUS)", __LINE__);
2739 /* Skip element zero, which represents the process as a whole. */
2740 for (i = 1; i < nlwp + 1; i++)
2742 if ((thread = create_procinfo (pi->pid, prstatus[i].pr_who)) == NULL)
2743 proc_error (pi, "update_threads, create_procinfo", __LINE__);
2745 memcpy (&thread->prstatus, &prstatus[i], sizeof (*prstatus));
2746 thread->status_valid = 1;
2748 pi->threads_valid = 1;
2749 do_cleanups (old_chain);
2754 /* Solaris 6 (and later) version. */
2756 do_closedir_cleanup (void *dir)
2762 proc_update_threads (procinfo *pi)
2764 char pathname[MAX_PROC_NAME_SIZE + 16];
2765 struct dirent *direntry;
2766 struct cleanup *old_chain = NULL;
2771 /* We should never have to apply this operation to any procinfo
2772 except the one for the main process. If that ever changes for
2773 any reason, then take out the following clause and replace it
2774 with one that makes sure the ctl_fd is open. */
2777 pi = find_procinfo_or_die (pi->pid, 0);
2779 proc_iterate_over_threads (pi, proc_delete_dead_threads, NULL);
2781 /* Note: this brute-force method was originally devised for Unixware
2782 (support removed since), and will also work on Solaris 2.6 and
2783 2.7. The original comment mentioned the existence of a much
2784 simpler and more elegant way to do this on Solaris, but didn't
2785 point out what that was. */
2787 strcpy (pathname, pi->pathname);
2788 strcat (pathname, "/lwp");
2789 if ((dirp = opendir (pathname)) == NULL)
2790 proc_error (pi, "update_threads, opendir", __LINE__);
2792 old_chain = make_cleanup (do_closedir_cleanup, dirp);
2793 while ((direntry = readdir (dirp)) != NULL)
2794 if (direntry->d_name[0] != '.') /* skip '.' and '..' */
2796 lwpid = atoi (&direntry->d_name[0]);
2797 if ((thread = create_procinfo (pi->pid, lwpid)) == NULL)
2798 proc_error (pi, "update_threads, create_procinfo", __LINE__);
2800 pi->threads_valid = 1;
2801 do_cleanups (old_chain);
2808 proc_update_threads (procinfo *pi)
2813 /* We should never have to apply this operation to any procinfo
2814 except the one for the main process. If that ever changes for
2815 any reason, then take out the following clause and replace it
2816 with one that makes sure the ctl_fd is open. */
2819 pi = find_procinfo_or_die (pi->pid, 0);
2821 proc_iterate_over_threads (pi, proc_delete_dead_threads, NULL);
2823 nthreads = proc_get_nthreads (pi);
2825 return 0; /* Nothing to do for 1 or fewer threads. */
2827 threads = xmalloc (nthreads * sizeof (tid_t));
2829 if (ioctl (pi->ctl_fd, PIOCTLIST, threads) < 0)
2830 proc_error (pi, "procfs: update_threads (PIOCTLIST)", __LINE__);
2832 for (i = 0; i < nthreads; i++)
2834 if (!find_procinfo (pi->pid, threads[i]))
2835 if (!create_procinfo (pi->pid, threads[i]))
2836 proc_error (pi, "update_threads, create_procinfo", __LINE__);
2838 pi->threads_valid = 1;
2842 /* Default version */
2844 proc_update_threads (procinfo *pi)
2848 #endif /* OSF PIOCTLIST */
2849 #endif /* NEW_PROC_API */
2850 #endif /* SOL 2.5 PIOCLSTATUS */
2852 /* Given a pointer to a function, call that function once for each lwp
2853 in the procinfo list, until the function returns non-zero, in which
2854 event return the value returned by the function.
2856 Note: this function does NOT call update_threads. If you want to
2857 discover new threads first, you must call that function explicitly.
2858 This function just makes a quick pass over the currently-known
2861 PI is the parent process procinfo. FUNC is the per-thread
2862 function. PTR is an opaque parameter for function. Returns the
2863 first non-zero return value from the callee, or zero. */
2866 proc_iterate_over_threads (procinfo *pi,
2867 int (*func) (procinfo *, procinfo *, void *),
2870 procinfo *thread, *next;
2873 /* We should never have to apply this operation to any procinfo
2874 except the one for the main process. If that ever changes for
2875 any reason, then take out the following clause and replace it
2876 with one that makes sure the ctl_fd is open. */
2879 pi = find_procinfo_or_die (pi->pid, 0);
2881 for (thread = pi->thread_list; thread != NULL; thread = next)
2883 next = thread->next; /* In case thread is destroyed. */
2884 if ((retval = (*func) (pi, thread, ptr)) != 0)
2891 /* =================== END, Thread "MODULE" =================== */
2893 /* =================== END, /proc "MODULE" =================== */
2895 /* =================== GDB "MODULE" =================== */
2897 /* Here are all of the gdb target vector functions and their
2900 static ptid_t do_attach (ptid_t ptid);
2901 static void do_detach (int signo);
2902 static void proc_trace_syscalls_1 (procinfo *pi, int syscallnum,
2903 int entry_or_exit, int mode, int from_tty);
2905 /* Sets up the inferior to be debugged. Registers to trace signals,
2906 hardware faults, and syscalls. Note: does not set RLC flag: caller
2907 may want to customize that. Returns zero for success (note!
2908 unlike most functions in this module); on failure, returns the LINE
2909 NUMBER where it failed! */
2912 procfs_debug_inferior (procinfo *pi)
2914 fltset_t traced_faults;
2915 gdb_sigset_t traced_signals;
2916 sysset_t *traced_syscall_entries;
2917 sysset_t *traced_syscall_exits;
2920 /* Register to trace hardware faults in the child. */
2921 prfillset (&traced_faults); /* trace all faults... */
2922 gdb_prdelset (&traced_faults, FLTPAGE); /* except page fault. */
2923 if (!proc_set_traced_faults (pi, &traced_faults))
2926 /* Initially, register to trace all signals in the child. */
2927 prfillset (&traced_signals);
2928 if (!proc_set_traced_signals (pi, &traced_signals))
2932 /* Register to trace the 'exit' system call (on entry). */
2933 traced_syscall_entries = sysset_t_alloc (pi);
2934 gdb_premptysysset (traced_syscall_entries);
2936 gdb_praddsysset (traced_syscall_entries, SYS_exit);
2939 gdb_praddsysset (traced_syscall_entries, SYS_lwpexit);/* And _lwp_exit... */
2942 gdb_praddsysset (traced_syscall_entries, SYS_lwp_exit);
2944 #ifdef DYNAMIC_SYSCALLS
2946 int callnum = find_syscall (pi, "_exit");
2949 gdb_praddsysset (traced_syscall_entries, callnum);
2953 status = proc_set_traced_sysentry (pi, traced_syscall_entries);
2954 xfree (traced_syscall_entries);
2958 #ifdef PRFS_STOPEXEC /* defined on OSF */
2959 /* OSF method for tracing exec syscalls. Quoting:
2960 Under Alpha OSF/1 we have to use a PIOCSSPCACT ioctl to trace
2961 exits from exec system calls because of the user level loader. */
2962 /* FIXME: make nice and maybe move into an access function. */
2966 if (ioctl (pi->ctl_fd, PIOCGSPCACT, &prfs_flags) < 0)
2969 prfs_flags |= PRFS_STOPEXEC;
2971 if (ioctl (pi->ctl_fd, PIOCSSPCACT, &prfs_flags) < 0)
2974 #else /* not PRFS_STOPEXEC */
2975 /* Everyone else's (except OSF) method for tracing exec syscalls. */
2977 Not all systems with /proc have all the exec* syscalls with the same
2978 names. On the SGI, for example, there is no SYS_exec, but there
2979 *is* a SYS_execv. So, we try to account for that. */
2981 traced_syscall_exits = sysset_t_alloc (pi);
2982 gdb_premptysysset (traced_syscall_exits);
2984 gdb_praddsysset (traced_syscall_exits, SYS_exec);
2987 gdb_praddsysset (traced_syscall_exits, SYS_execve);
2990 gdb_praddsysset (traced_syscall_exits, SYS_execv);
2993 #ifdef SYS_lwpcreate
2994 gdb_praddsysset (traced_syscall_exits, SYS_lwpcreate);
2995 gdb_praddsysset (traced_syscall_exits, SYS_lwpexit);
2998 #ifdef SYS_lwp_create /* FIXME: once only, please. */
2999 gdb_praddsysset (traced_syscall_exits, SYS_lwp_create);
3000 gdb_praddsysset (traced_syscall_exits, SYS_lwp_exit);
3003 #ifdef DYNAMIC_SYSCALLS
3005 int callnum = find_syscall (pi, "execve");
3008 gdb_praddsysset (traced_syscall_exits, callnum);
3009 callnum = find_syscall (pi, "ra_execve");
3011 gdb_praddsysset (traced_syscall_exits, callnum);
3015 status = proc_set_traced_sysexit (pi, traced_syscall_exits);
3016 xfree (traced_syscall_exits);
3020 #endif /* PRFS_STOPEXEC */
3025 procfs_attach (struct target_ops *ops, const char *args, int from_tty)
3030 pid = parse_pid_to_attach (args);
3032 if (pid == getpid ())
3033 error (_("Attaching GDB to itself is not a good idea..."));
3037 exec_file = get_exec_file (0);
3040 printf_filtered (_("Attaching to program `%s', %s\n"),
3041 exec_file, target_pid_to_str (pid_to_ptid (pid)));
3043 printf_filtered (_("Attaching to %s\n"),
3044 target_pid_to_str (pid_to_ptid (pid)));
3048 inferior_ptid = do_attach (pid_to_ptid (pid));
3049 if (!target_is_pushed (ops))
3054 procfs_detach (struct target_ops *ops, const char *args, int from_tty)
3057 int pid = ptid_get_pid (inferior_ptid);
3066 exec_file = get_exec_file (0);
3067 if (exec_file == NULL)
3070 printf_filtered (_("Detaching from program: %s, %s\n"), exec_file,
3071 target_pid_to_str (pid_to_ptid (pid)));
3072 gdb_flush (gdb_stdout);
3077 inferior_ptid = null_ptid;
3078 detach_inferior (pid);
3079 inf_child_maybe_unpush_target (ops);
3083 do_attach (ptid_t ptid)
3086 struct inferior *inf;
3090 if ((pi = create_procinfo (ptid_get_pid (ptid), 0)) == NULL)
3091 perror (_("procfs: out of memory in 'attach'"));
3093 if (!open_procinfo_files (pi, FD_CTL))
3095 fprintf_filtered (gdb_stderr, "procfs:%d -- ", __LINE__);
3096 sprintf (errmsg, "do_attach: couldn't open /proc file for process %d",
3097 ptid_get_pid (ptid));
3098 dead_procinfo (pi, errmsg, NOKILL);
3101 /* Stop the process (if it isn't already stopped). */
3102 if (proc_flags (pi) & (PR_STOPPED | PR_ISTOP))
3104 pi->was_stopped = 1;
3105 proc_prettyprint_why (proc_why (pi), proc_what (pi), 1);
3109 pi->was_stopped = 0;
3110 /* Set the process to run again when we close it. */
3111 if (!proc_set_run_on_last_close (pi))
3112 dead_procinfo (pi, "do_attach: couldn't set RLC.", NOKILL);
3114 /* Now stop the process. */
3115 if (!proc_stop_process (pi))
3116 dead_procinfo (pi, "do_attach: couldn't stop the process.", NOKILL);
3117 pi->ignore_next_sigstop = 1;
3119 /* Save some of the /proc state to be restored if we detach. */
3120 if (!proc_get_traced_faults (pi, &pi->saved_fltset))
3121 dead_procinfo (pi, "do_attach: couldn't save traced faults.", NOKILL);
3122 if (!proc_get_traced_signals (pi, &pi->saved_sigset))
3123 dead_procinfo (pi, "do_attach: couldn't save traced signals.", NOKILL);
3124 if (!proc_get_traced_sysentry (pi, pi->saved_entryset))
3125 dead_procinfo (pi, "do_attach: couldn't save traced syscall entries.",
3127 if (!proc_get_traced_sysexit (pi, pi->saved_exitset))
3128 dead_procinfo (pi, "do_attach: couldn't save traced syscall exits.",
3130 if (!proc_get_held_signals (pi, &pi->saved_sighold))
3131 dead_procinfo (pi, "do_attach: couldn't save held signals.", NOKILL);
3133 if ((fail = procfs_debug_inferior (pi)) != 0)
3134 dead_procinfo (pi, "do_attach: failed in procfs_debug_inferior", NOKILL);
3136 inf = current_inferior ();
3137 inferior_appeared (inf, pi->pid);
3138 /* Let GDB know that the inferior was attached. */
3139 inf->attach_flag = 1;
3141 /* Create a procinfo for the current lwp. */
3142 lwpid = proc_get_current_thread (pi);
3143 create_procinfo (pi->pid, lwpid);
3145 /* Add it to gdb's thread list. */
3146 ptid = ptid_build (pi->pid, lwpid, 0);
3153 do_detach (int signo)
3157 /* Find procinfo for the main process. */
3158 pi = find_procinfo_or_die (ptid_get_pid (inferior_ptid),
3159 0); /* FIXME: threads */
3161 if (!proc_set_current_signal (pi, signo))
3162 proc_warn (pi, "do_detach, set_current_signal", __LINE__);
3164 if (!proc_set_traced_signals (pi, &pi->saved_sigset))
3165 proc_warn (pi, "do_detach, set_traced_signal", __LINE__);
3167 if (!proc_set_traced_faults (pi, &pi->saved_fltset))
3168 proc_warn (pi, "do_detach, set_traced_faults", __LINE__);
3170 if (!proc_set_traced_sysentry (pi, pi->saved_entryset))
3171 proc_warn (pi, "do_detach, set_traced_sysentry", __LINE__);
3173 if (!proc_set_traced_sysexit (pi, pi->saved_exitset))
3174 proc_warn (pi, "do_detach, set_traced_sysexit", __LINE__);
3176 if (!proc_set_held_signals (pi, &pi->saved_sighold))
3177 proc_warn (pi, "do_detach, set_held_signals", __LINE__);
3179 if (signo || (proc_flags (pi) & (PR_STOPPED | PR_ISTOP)))
3180 if (signo || !(pi->was_stopped) ||
3181 query (_("Was stopped when attached, make it runnable again? ")))
3183 /* Clear any pending signal. */
3184 if (!proc_clear_current_fault (pi))
3185 proc_warn (pi, "do_detach, clear_current_fault", __LINE__);
3187 if (signo == 0 && !proc_clear_current_signal (pi))
3188 proc_warn (pi, "do_detach, clear_current_signal", __LINE__);
3190 if (!proc_set_run_on_last_close (pi))
3191 proc_warn (pi, "do_detach, set_rlc", __LINE__);
3194 destroy_procinfo (pi);
3197 /* Fetch register REGNUM from the inferior. If REGNUM is -1, do this
3200 ??? Is the following note still relevant? We can't get individual
3201 registers with the PT_GETREGS ptrace(2) request either, yet we
3202 don't bother with caching at all in that case.
3204 NOTE: Since the /proc interface cannot give us individual
3205 registers, we pay no attention to REGNUM, and just fetch them all.
3206 This results in the possibility that we will do unnecessarily many
3207 fetches, since we may be called repeatedly for individual
3208 registers. So we cache the results, and mark the cache invalid
3209 when the process is resumed. */
3212 procfs_fetch_registers (struct target_ops *ops,
3213 struct regcache *regcache, int regnum)
3215 gdb_gregset_t *gregs;
3217 int pid = ptid_get_pid (inferior_ptid);
3218 int tid = ptid_get_lwp (inferior_ptid);
3219 struct gdbarch *gdbarch = get_regcache_arch (regcache);
3221 pi = find_procinfo_or_die (pid, tid);
3224 error (_("procfs: fetch_registers failed to find procinfo for %s"),
3225 target_pid_to_str (inferior_ptid));
3227 gregs = proc_get_gregs (pi);
3229 proc_error (pi, "fetch_registers, get_gregs", __LINE__);
3231 supply_gregset (regcache, (const gdb_gregset_t *) gregs);
3233 if (gdbarch_fp0_regnum (gdbarch) >= 0) /* Do we have an FPU? */
3235 gdb_fpregset_t *fpregs;
3237 if ((regnum >= 0 && regnum < gdbarch_fp0_regnum (gdbarch))
3238 || regnum == gdbarch_pc_regnum (gdbarch)
3239 || regnum == gdbarch_sp_regnum (gdbarch))
3240 return; /* Not a floating point register. */
3242 fpregs = proc_get_fpregs (pi);
3244 proc_error (pi, "fetch_registers, get_fpregs", __LINE__);
3246 supply_fpregset (regcache, (const gdb_fpregset_t *) fpregs);
3250 /* Store register REGNUM back into the inferior. If REGNUM is -1, do
3251 this for all registers.
3253 NOTE: Since the /proc interface will not read individual registers,
3254 we will cache these requests until the process is resumed, and only
3255 then write them back to the inferior process.
3257 FIXME: is that a really bad idea? Have to think about cases where
3258 writing one register might affect the value of others, etc. */
3261 procfs_store_registers (struct target_ops *ops,
3262 struct regcache *regcache, int regnum)
3264 gdb_gregset_t *gregs;
3266 int pid = ptid_get_pid (inferior_ptid);
3267 int tid = ptid_get_lwp (inferior_ptid);
3268 struct gdbarch *gdbarch = get_regcache_arch (regcache);
3270 pi = find_procinfo_or_die (pid, tid);
3273 error (_("procfs: store_registers: failed to find procinfo for %s"),
3274 target_pid_to_str (inferior_ptid));
3276 gregs = proc_get_gregs (pi);
3278 proc_error (pi, "store_registers, get_gregs", __LINE__);
3280 fill_gregset (regcache, gregs, regnum);
3281 if (!proc_set_gregs (pi))
3282 proc_error (pi, "store_registers, set_gregs", __LINE__);
3284 if (gdbarch_fp0_regnum (gdbarch) >= 0) /* Do we have an FPU? */
3286 gdb_fpregset_t *fpregs;
3288 if ((regnum >= 0 && regnum < gdbarch_fp0_regnum (gdbarch))
3289 || regnum == gdbarch_pc_regnum (gdbarch)
3290 || regnum == gdbarch_sp_regnum (gdbarch))
3291 return; /* Not a floating point register. */
3293 fpregs = proc_get_fpregs (pi);
3295 proc_error (pi, "store_registers, get_fpregs", __LINE__);
3297 fill_fpregset (regcache, fpregs, regnum);
3298 if (!proc_set_fpregs (pi))
3299 proc_error (pi, "store_registers, set_fpregs", __LINE__);
3304 syscall_is_lwp_exit (procinfo *pi, int scall)
3307 if (scall == SYS_lwp_exit)
3311 if (scall == SYS_lwpexit)
3318 syscall_is_exit (procinfo *pi, int scall)
3321 if (scall == SYS_exit)
3324 #ifdef DYNAMIC_SYSCALLS
3325 if (find_syscall (pi, "_exit") == scall)
3332 syscall_is_exec (procinfo *pi, int scall)
3335 if (scall == SYS_exec)
3339 if (scall == SYS_execv)
3343 if (scall == SYS_execve)
3346 #ifdef DYNAMIC_SYSCALLS
3347 if (find_syscall (pi, "_execve"))
3349 if (find_syscall (pi, "ra_execve"))
3356 syscall_is_lwp_create (procinfo *pi, int scall)
3358 #ifdef SYS_lwp_create
3359 if (scall == SYS_lwp_create)
3362 #ifdef SYS_lwpcreate
3363 if (scall == SYS_lwpcreate)
3370 /* Return the address of the __dbx_link() function in the file
3371 refernced by ABFD by scanning its symbol table. Return 0 if
3372 the symbol was not found. */
3375 dbx_link_addr (bfd *abfd)
3377 long storage_needed;
3378 asymbol **symbol_table;
3379 long number_of_symbols;
3382 storage_needed = bfd_get_symtab_upper_bound (abfd);
3383 if (storage_needed <= 0)
3386 symbol_table = (asymbol **) xmalloc (storage_needed);
3387 make_cleanup (xfree, symbol_table);
3389 number_of_symbols = bfd_canonicalize_symtab (abfd, symbol_table);
3391 for (i = 0; i < number_of_symbols; i++)
3393 asymbol *sym = symbol_table[i];
3395 if ((sym->flags & BSF_GLOBAL)
3396 && sym->name != NULL && strcmp (sym->name, "__dbx_link") == 0)
3397 return (sym->value + sym->section->vma);
3400 /* Symbol not found, return NULL. */
3404 /* Search the symbol table of the file referenced by FD for a symbol
3405 named __dbx_link(). If found, then insert a breakpoint at this location,
3406 and return nonzero. Return zero otherwise. */
3409 insert_dbx_link_bpt_in_file (int fd, CORE_ADDR ignored)
3412 long storage_needed;
3415 abfd = gdb_bfd_fdopenr ("unamed", 0, fd);
3418 warning (_("Failed to create a bfd: %s."), bfd_errmsg (bfd_get_error ()));
3422 if (!bfd_check_format (abfd, bfd_object))
3424 /* Not the correct format, so we can not possibly find the dbx_link
3426 gdb_bfd_unref (abfd);
3430 sym_addr = dbx_link_addr (abfd);
3433 struct breakpoint *dbx_link_bpt;
3435 /* Insert the breakpoint. */
3437 = create_and_insert_solib_event_breakpoint (target_gdbarch (),
3439 if (dbx_link_bpt == NULL)
3441 warning (_("Failed to insert dbx_link breakpoint."));
3442 gdb_bfd_unref (abfd);
3445 gdb_bfd_unref (abfd);
3449 gdb_bfd_unref (abfd);
3453 /* Calls the supplied callback function once for each mapped address
3454 space in the process. The callback function receives an open file
3455 descriptor for the file corresponding to that mapped address space
3456 (if there is one), and the base address of the mapped space. Quit
3457 when the callback function returns a nonzero value, or at teh end
3458 of the mappings. Returns the first non-zero return value of the
3459 callback function, or zero. */
3462 solib_mappings_callback (struct prmap *map, int (*func) (int, CORE_ADDR),
3465 procinfo *pi = data;
3469 char name[MAX_PROC_NAME_SIZE + sizeof (map->pr_mapname)];
3471 if (map->pr_vaddr == 0 && map->pr_size == 0)
3472 return -1; /* sanity */
3474 if (map->pr_mapname[0] == 0)
3476 fd = -1; /* no map file */
3480 sprintf (name, "/proc/%d/object/%s", pi->pid, map->pr_mapname);
3481 /* Note: caller's responsibility to close this fd! */
3482 fd = open_with_retry (name, O_RDONLY);
3483 /* Note: we don't test the above call for failure;
3484 we just pass the FD on as given. Sometimes there is
3485 no file, so the open may return failure, but that's
3489 fd = ioctl (pi->ctl_fd, PIOCOPENM, &map->pr_vaddr);
3490 /* Note: we don't test the above call for failure;
3491 we just pass the FD on as given. Sometimes there is
3492 no file, so the ioctl may return failure, but that's
3495 return (*func) (fd, (CORE_ADDR) map->pr_vaddr);
3498 /* If the given memory region MAP contains a symbol named __dbx_link,
3499 insert a breakpoint at this location and return nonzero. Return
3503 insert_dbx_link_bpt_in_region (struct prmap *map,
3504 find_memory_region_ftype child_func,
3507 procinfo *pi = (procinfo *) data;
3509 /* We know the symbol we're looking for is in a text region, so
3510 only look for it if the region is a text one. */
3511 if (map->pr_mflags & MA_EXEC)
3512 return solib_mappings_callback (map, insert_dbx_link_bpt_in_file, pi);
3517 /* Search all memory regions for a symbol named __dbx_link. If found,
3518 insert a breakpoint at its location, and return nonzero. Return zero
3522 insert_dbx_link_breakpoint (procinfo *pi)
3524 return iterate_over_mappings (pi, NULL, pi, insert_dbx_link_bpt_in_region);
3528 /* Retrieve the next stop event from the child process. If child has
3529 not stopped yet, wait for it to stop. Translate /proc eventcodes
3530 (or possibly wait eventcodes) into gdb internal event codes.
3531 Returns the id of process (and possibly thread) that incurred the
3532 event. Event codes are returned through a pointer parameter. */
3535 procfs_wait (struct target_ops *ops,
3536 ptid_t ptid, struct target_waitstatus *status, int options)
3538 /* First cut: loosely based on original version 2.1. */
3542 ptid_t retval, temp_ptid;
3543 int why, what, flags;
3550 retval = pid_to_ptid (-1);
3552 /* Find procinfo for main process. */
3553 pi = find_procinfo_or_die (ptid_get_pid (inferior_ptid), 0);
3556 /* We must assume that the status is stale now... */
3557 pi->status_valid = 0;
3558 pi->gregs_valid = 0;
3559 pi->fpregs_valid = 0;
3561 #if 0 /* just try this out... */
3562 flags = proc_flags (pi);
3563 why = proc_why (pi);
3564 if ((flags & PR_STOPPED) && (why == PR_REQUESTED))
3565 pi->status_valid = 0; /* re-read again, IMMEDIATELY... */
3567 /* If child is not stopped, wait for it to stop. */
3568 if (!(proc_flags (pi) & (PR_STOPPED | PR_ISTOP)) &&
3569 !proc_wait_for_stop (pi))
3571 /* wait_for_stop failed: has the child terminated? */
3572 if (errno == ENOENT)
3576 /* /proc file not found; presumably child has terminated. */
3577 wait_retval = wait (&wstat); /* "wait" for the child's exit. */
3580 if (wait_retval != ptid_get_pid (inferior_ptid))
3581 error (_("procfs: couldn't stop "
3582 "process %d: wait returned %d."),
3583 ptid_get_pid (inferior_ptid), wait_retval);
3584 /* FIXME: might I not just use waitpid?
3585 Or try find_procinfo to see if I know about this child? */
3586 retval = pid_to_ptid (wait_retval);
3588 else if (errno == EINTR)
3592 /* Unknown error from wait_for_stop. */
3593 proc_error (pi, "target_wait (wait_for_stop)", __LINE__);
3598 /* This long block is reached if either:
3599 a) the child was already stopped, or
3600 b) we successfully waited for the child with wait_for_stop.
3601 This block will analyze the /proc status, and translate it
3602 into a waitstatus for GDB.
3604 If we actually had to call wait because the /proc file
3605 is gone (child terminated), then we skip this block,
3606 because we already have a waitstatus. */
3608 flags = proc_flags (pi);
3609 why = proc_why (pi);
3610 what = proc_what (pi);
3612 if (flags & (PR_STOPPED | PR_ISTOP))
3615 /* If it's running async (for single_thread control),
3616 set it back to normal again. */
3617 if (flags & PR_ASYNC)
3618 if (!proc_unset_async (pi))
3619 proc_error (pi, "target_wait, unset_async", __LINE__);
3623 proc_prettyprint_why (why, what, 1);
3625 /* The 'pid' we will return to GDB is composed of
3626 the process ID plus the lwp ID. */
3627 retval = ptid_build (pi->pid, proc_get_current_thread (pi), 0);
3631 wstat = (what << 8) | 0177;
3634 if (syscall_is_lwp_exit (pi, what))
3636 if (print_thread_events)
3637 printf_unfiltered (_("[%s exited]\n"),
3638 target_pid_to_str (retval));
3639 delete_thread (retval);
3640 status->kind = TARGET_WAITKIND_SPURIOUS;
3643 else if (syscall_is_exit (pi, what))
3645 struct inferior *inf;
3647 /* Handle SYS_exit call only. */
3648 /* Stopped at entry to SYS_exit.
3649 Make it runnable, resume it, then use
3650 the wait system call to get its exit code.
3651 Proc_run_process always clears the current
3653 Then return its exit status. */
3654 pi->status_valid = 0;
3656 /* FIXME: what we should do is return
3657 TARGET_WAITKIND_SPURIOUS. */
3658 if (!proc_run_process (pi, 0, 0))
3659 proc_error (pi, "target_wait, run_process", __LINE__);
3661 inf = find_inferior_pid (pi->pid);
3662 if (inf->attach_flag)
3664 /* Don't call wait: simulate waiting for exit,
3665 return a "success" exit code. Bogus: what if
3666 it returns something else? */
3668 retval = inferior_ptid; /* ? ? ? */
3672 int temp = wait (&wstat);
3674 /* FIXME: shouldn't I make sure I get the right
3675 event from the right process? If (for
3676 instance) I have killed an earlier inferior
3677 process but failed to clean up after it
3678 somehow, I could get its termination event
3681 /* If wait returns -1, that's what we return
3684 retval = pid_to_ptid (temp);
3689 printf_filtered (_("procfs: trapped on entry to "));
3690 proc_prettyprint_syscall (proc_what (pi), 0);
3691 printf_filtered ("\n");
3694 long i, nsysargs, *sysargs;
3696 if ((nsysargs = proc_nsysarg (pi)) > 0 &&
3697 (sysargs = proc_sysargs (pi)) != NULL)
3699 printf_filtered (_("%ld syscall arguments:\n"),
3701 for (i = 0; i < nsysargs; i++)
3702 printf_filtered ("#%ld: 0x%08lx\n",
3710 /* How to exit gracefully, returning "unknown
3712 status->kind = TARGET_WAITKIND_SPURIOUS;
3713 return inferior_ptid;
3717 /* How to keep going without returning to wfi: */
3718 target_resume (ptid, 0, GDB_SIGNAL_0);
3724 if (syscall_is_exec (pi, what))
3726 /* Hopefully this is our own "fork-child" execing
3727 the real child. Hoax this event into a trap, and
3728 GDB will see the child about to execute its start
3730 wstat = (SIGTRAP << 8) | 0177;
3733 else if (what == SYS_syssgi)
3735 /* see if we can break on dbx_link(). If yes, then
3736 we no longer need the SYS_syssgi notifications. */
3737 if (insert_dbx_link_breakpoint (pi))
3738 proc_trace_syscalls_1 (pi, SYS_syssgi, PR_SYSEXIT,
3741 /* This is an internal event and should be transparent
3742 to wfi, so resume the execution and wait again. See
3743 comment in procfs_init_inferior() for more details. */
3744 target_resume (ptid, 0, GDB_SIGNAL_0);
3748 else if (syscall_is_lwp_create (pi, what))
3750 /* This syscall is somewhat like fork/exec. We
3751 will get the event twice: once for the parent
3752 LWP, and once for the child. We should already
3753 know about the parent LWP, but the child will
3754 be new to us. So, whenever we get this event,
3755 if it represents a new thread, simply add the
3756 thread to the list. */
3758 /* If not in procinfo list, add it. */
3759 temp_tid = proc_get_current_thread (pi);
3760 if (!find_procinfo (pi->pid, temp_tid))
3761 create_procinfo (pi->pid, temp_tid);
3763 temp_ptid = ptid_build (pi->pid, temp_tid, 0);
3764 /* If not in GDB's thread list, add it. */
3765 if (!in_thread_list (temp_ptid))
3766 add_thread (temp_ptid);
3768 /* Return to WFI, but tell it to immediately resume. */
3769 status->kind = TARGET_WAITKIND_SPURIOUS;
3770 return inferior_ptid;
3772 else if (syscall_is_lwp_exit (pi, what))
3774 if (print_thread_events)
3775 printf_unfiltered (_("[%s exited]\n"),
3776 target_pid_to_str (retval));
3777 delete_thread (retval);
3778 status->kind = TARGET_WAITKIND_SPURIOUS;
3783 /* FIXME: Do we need to handle SYS_sproc,
3784 SYS_fork, or SYS_vfork here? The old procfs
3785 seemed to use this event to handle threads on
3786 older (non-LWP) systems, where I'm assuming
3787 that threads were actually separate processes.
3788 Irix, maybe? Anyway, low priority for now. */
3792 printf_filtered (_("procfs: trapped on exit from "));
3793 proc_prettyprint_syscall (proc_what (pi), 0);
3794 printf_filtered ("\n");
3797 long i, nsysargs, *sysargs;
3799 if ((nsysargs = proc_nsysarg (pi)) > 0 &&
3800 (sysargs = proc_sysargs (pi)) != NULL)
3802 printf_filtered (_("%ld syscall arguments:\n"),
3804 for (i = 0; i < nsysargs; i++)
3805 printf_filtered ("#%ld: 0x%08lx\n",
3810 status->kind = TARGET_WAITKIND_SPURIOUS;
3811 return inferior_ptid;
3816 wstat = (SIGSTOP << 8) | 0177;
3821 printf_filtered (_("Retry #%d:\n"), retry);
3822 pi->status_valid = 0;
3827 /* If not in procinfo list, add it. */
3828 temp_tid = proc_get_current_thread (pi);
3829 if (!find_procinfo (pi->pid, temp_tid))
3830 create_procinfo (pi->pid, temp_tid);
3832 /* If not in GDB's thread list, add it. */
3833 temp_ptid = ptid_build (pi->pid, temp_tid, 0);
3834 if (!in_thread_list (temp_ptid))
3835 add_thread (temp_ptid);
3837 status->kind = TARGET_WAITKIND_STOPPED;
3838 status->value.sig = 0;
3843 wstat = (what << 8) | 0177;
3849 wstat = (SIGTRAP << 8) | 0177;
3854 wstat = (SIGTRAP << 8) | 0177;
3857 /* FIXME: use si_signo where possible. */
3859 #if (FLTILL != FLTPRIV) /* Avoid "duplicate case" error. */
3862 wstat = (SIGILL << 8) | 0177;
3865 #if (FLTTRACE != FLTBPT) /* Avoid "duplicate case" error. */
3868 wstat = (SIGTRAP << 8) | 0177;
3872 #if (FLTBOUNDS != FLTSTACK) /* Avoid "duplicate case" error. */
3875 wstat = (SIGSEGV << 8) | 0177;
3879 #if (FLTFPE != FLTIOVF) /* Avoid "duplicate case" error. */
3882 wstat = (SIGFPE << 8) | 0177;
3884 case FLTPAGE: /* Recoverable page fault */
3885 default: /* FIXME: use si_signo if possible for
3887 retval = pid_to_ptid (-1);
3888 printf_filtered ("procfs:%d -- ", __LINE__);
3889 printf_filtered (_("child stopped for unknown reason:\n"));
3890 proc_prettyprint_why (why, what, 1);
3891 error (_("... giving up..."));
3894 break; /* case PR_FAULTED: */
3895 default: /* switch (why) unmatched */
3896 printf_filtered ("procfs:%d -- ", __LINE__);
3897 printf_filtered (_("child stopped for unknown reason:\n"));
3898 proc_prettyprint_why (why, what, 1);
3899 error (_("... giving up..."));
3902 /* Got this far without error: If retval isn't in the
3903 threads database, add it. */
3904 if (ptid_get_pid (retval) > 0 &&
3905 !ptid_equal (retval, inferior_ptid) &&
3906 !in_thread_list (retval))
3908 /* We have a new thread. We need to add it both to
3909 GDB's list and to our own. If we don't create a
3910 procinfo, resume may be unhappy later. */
3911 add_thread (retval);
3912 if (find_procinfo (ptid_get_pid (retval),
3913 ptid_get_lwp (retval)) == NULL)
3914 create_procinfo (ptid_get_pid (retval),
3915 ptid_get_lwp (retval));
3918 else /* Flags do not indicate STOPPED. */
3920 /* surely this can't happen... */
3921 printf_filtered ("procfs:%d -- process not stopped.\n",
3923 proc_prettyprint_flags (flags, 1);
3924 error (_("procfs: ...giving up..."));
3929 store_waitstatus (status, wstat);
3935 /* Perform a partial transfer to/from the specified object. For
3936 memory transfers, fall back to the old memory xfer functions. */
3938 static enum target_xfer_status
3939 procfs_xfer_partial (struct target_ops *ops, enum target_object object,
3940 const char *annex, gdb_byte *readbuf,
3941 const gdb_byte *writebuf, ULONGEST offset, ULONGEST len,
3942 ULONGEST *xfered_len)
3946 case TARGET_OBJECT_MEMORY:
3947 return procfs_xfer_memory (readbuf, writebuf, offset, len, xfered_len);
3950 case TARGET_OBJECT_AUXV:
3951 return memory_xfer_auxv (ops, object, annex, readbuf, writebuf,
3952 offset, len, xfered_len);
3956 return ops->beneath->to_xfer_partial (ops->beneath, object, annex,
3957 readbuf, writebuf, offset, len,
3962 /* Helper for procfs_xfer_partial that handles memory transfers.
3963 Arguments are like target_xfer_partial. */
3965 static enum target_xfer_status
3966 procfs_xfer_memory (gdb_byte *readbuf, const gdb_byte *writebuf,
3967 ULONGEST memaddr, ULONGEST len, ULONGEST *xfered_len)
3972 /* Find procinfo for main process. */
3973 pi = find_procinfo_or_die (ptid_get_pid (inferior_ptid), 0);
3974 if (pi->as_fd == 0 &&
3975 open_procinfo_files (pi, FD_AS) == 0)
3977 proc_warn (pi, "xfer_memory, open_proc_files", __LINE__);
3978 return TARGET_XFER_E_IO;
3981 if (lseek (pi->as_fd, (off_t) memaddr, SEEK_SET) != (off_t) memaddr)
3982 return TARGET_XFER_E_IO;
3984 if (writebuf != NULL)
3986 PROCFS_NOTE ("write memory:\n");
3987 nbytes = write (pi->as_fd, writebuf, len);
3991 PROCFS_NOTE ("read memory:\n");
3992 nbytes = read (pi->as_fd, readbuf, len);
3995 return TARGET_XFER_E_IO;
3996 *xfered_len = nbytes;
3997 return TARGET_XFER_OK;
4000 /* Called by target_resume before making child runnable. Mark cached
4001 registers and status's invalid. If there are "dirty" caches that
4002 need to be written back to the child process, do that.
4004 File descriptors are also cached. As they are a limited resource,
4005 we cannot hold onto them indefinitely. However, as they are
4006 expensive to open, we don't want to throw them away
4007 indescriminately either. As a compromise, we will keep the file
4008 descriptors for the parent process, but discard any file
4009 descriptors we may have accumulated for the threads.
4011 As this function is called by iterate_over_threads, it always
4012 returns zero (so that iterate_over_threads will keep
4016 invalidate_cache (procinfo *parent, procinfo *pi, void *ptr)
4018 /* About to run the child; invalidate caches and do any other
4022 if (pi->gregs_dirty)
4023 if (parent == NULL ||
4024 proc_get_current_thread (parent) != pi->tid)
4025 if (!proc_set_gregs (pi)) /* flush gregs cache */
4026 proc_warn (pi, "target_resume, set_gregs",
4028 if (gdbarch_fp0_regnum (target_gdbarch ()) >= 0)
4029 if (pi->fpregs_dirty)
4030 if (parent == NULL ||
4031 proc_get_current_thread (parent) != pi->tid)
4032 if (!proc_set_fpregs (pi)) /* flush fpregs cache */
4033 proc_warn (pi, "target_resume, set_fpregs",
4039 /* The presence of a parent indicates that this is an LWP.
4040 Close any file descriptors that it might have open.
4041 We don't do this to the master (parent) procinfo. */
4043 close_procinfo_files (pi);
4045 pi->gregs_valid = 0;
4046 pi->fpregs_valid = 0;
4048 pi->gregs_dirty = 0;
4049 pi->fpregs_dirty = 0;
4051 pi->status_valid = 0;
4052 pi->threads_valid = 0;
4058 /* A callback function for iterate_over_threads. Find the
4059 asynchronous signal thread, and make it runnable. See if that
4060 helps matters any. */
4063 make_signal_thread_runnable (procinfo *process, procinfo *pi, void *ptr)
4066 if (proc_flags (pi) & PR_ASLWP)
4068 if (!proc_run_process (pi, 0, -1))
4069 proc_error (pi, "make_signal_thread_runnable", __LINE__);
4077 /* Make the child process runnable. Normally we will then call
4078 procfs_wait and wait for it to stop again (unless gdb is async).
4080 If STEP is true, then arrange for the child to stop again after
4081 executing a single instruction. If SIGNO is zero, then cancel any
4082 pending signal; if non-zero, then arrange for the indicated signal
4083 to be delivered to the child when it runs. If PID is -1, then
4084 allow any child thread to run; if non-zero, then allow only the
4085 indicated thread to run. (not implemented yet). */
4088 procfs_resume (struct target_ops *ops,
4089 ptid_t ptid, int step, enum gdb_signal signo)
4091 procinfo *pi, *thread;
4095 prrun.prflags |= PRSVADDR;
4096 prrun.pr_vaddr = $PC; set resume address
4097 prrun.prflags |= PRSTRACE; trace signals in pr_trace (all)
4098 prrun.prflags |= PRSFAULT; trace faults in pr_fault (all but PAGE)
4099 prrun.prflags |= PRCFAULT; clear current fault.
4101 PRSTRACE and PRSFAULT can be done by other means
4102 (proc_trace_signals, proc_trace_faults)
4103 PRSVADDR is unnecessary.
4104 PRCFAULT may be replaced by a PIOCCFAULT call (proc_clear_current_fault)
4105 This basically leaves PRSTEP and PRCSIG.
4106 PRCSIG is like PIOCSSIG (proc_clear_current_signal).
4107 So basically PR_STEP is the sole argument that must be passed
4108 to proc_run_process (for use in the prrun struct by ioctl). */
4110 /* Find procinfo for main process. */
4111 pi = find_procinfo_or_die (ptid_get_pid (inferior_ptid), 0);
4113 /* First cut: ignore pid argument. */
4116 /* Convert signal to host numbering. */
4118 (signo == GDB_SIGNAL_STOP && pi->ignore_next_sigstop))
4121 native_signo = gdb_signal_to_host (signo);
4123 pi->ignore_next_sigstop = 0;
4125 /* Running the process voids all cached registers and status. */
4126 /* Void the threads' caches first. */
4127 proc_iterate_over_threads (pi, invalidate_cache, NULL);
4128 /* Void the process procinfo's caches. */
4129 invalidate_cache (NULL, pi, NULL);
4131 if (ptid_get_pid (ptid) != -1)
4133 /* Resume a specific thread, presumably suppressing the
4135 thread = find_procinfo (ptid_get_pid (ptid), ptid_get_lwp (ptid));
4138 if (thread->tid != 0)
4140 /* We're to resume a specific thread, and not the
4141 others. Set the child process's PR_ASYNC flag. */
4143 if (!proc_set_async (pi))
4144 proc_error (pi, "target_resume, set_async", __LINE__);
4147 proc_iterate_over_threads (pi,
4148 make_signal_thread_runnable,
4151 pi = thread; /* Substitute the thread's procinfo
4157 if (!proc_run_process (pi, step, native_signo))
4160 warning (_("resume: target already running. "
4161 "Pretend to resume, and hope for the best!"));
4163 proc_error (pi, "target_resume", __LINE__);
4167 /* Set up to trace signals in the child process. */
4170 procfs_pass_signals (struct target_ops *self,
4171 int numsigs, unsigned char *pass_signals)
4173 gdb_sigset_t signals;
4174 procinfo *pi = find_procinfo_or_die (ptid_get_pid (inferior_ptid), 0);
4177 prfillset (&signals);
4179 for (signo = 0; signo < NSIG; signo++)
4181 int target_signo = gdb_signal_from_host (signo);
4182 if (target_signo < numsigs && pass_signals[target_signo])
4183 gdb_prdelset (&signals, signo);
4186 if (!proc_set_traced_signals (pi, &signals))
4187 proc_error (pi, "pass_signals", __LINE__);
4190 /* Print status information about the child process. */
4193 procfs_files_info (struct target_ops *ignore)
4195 struct inferior *inf = current_inferior ();
4197 printf_filtered (_("\tUsing the running image of %s %s via /proc.\n"),
4198 inf->attach_flag? "attached": "child",
4199 target_pid_to_str (inferior_ptid));
4202 /* Stop the child process asynchronously, as when the gdb user types
4203 control-c or presses a "stop" button. Works by sending
4204 kill(SIGINT) to the child's process group. */
4207 procfs_stop (struct target_ops *self, ptid_t ptid)
4209 kill (-inferior_process_group (), SIGINT);
4212 /* Make it die. Wait for it to die. Clean up after it. Note: this
4213 should only be applied to the real process, not to an LWP, because
4214 of the check for parent-process. If we need this to work for an
4215 LWP, it needs some more logic. */
4218 unconditionally_kill_inferior (procinfo *pi)
4222 parent_pid = proc_parent_pid (pi);
4223 #ifdef PROCFS_NEED_PIOCSSIG_FOR_KILL
4224 /* Alpha OSF/1-2.x procfs needs a PIOCSSIG call with a SIGKILL signal
4225 to kill the inferior, otherwise it might remain stopped with a
4227 We do not check the result of the PIOCSSIG, the inferior might have
4230 gdb_siginfo_t newsiginfo;
4232 memset ((char *) &newsiginfo, 0, sizeof (newsiginfo));
4233 newsiginfo.si_signo = SIGKILL;
4234 newsiginfo.si_code = 0;
4235 newsiginfo.si_errno = 0;
4236 newsiginfo.si_pid = getpid ();
4237 newsiginfo.si_uid = getuid ();
4238 /* FIXME: use proc_set_current_signal. */
4239 ioctl (pi->ctl_fd, PIOCSSIG, &newsiginfo);
4241 #else /* PROCFS_NEED_PIOCSSIG_FOR_KILL */
4242 if (!proc_kill (pi, SIGKILL))
4243 proc_error (pi, "unconditionally_kill, proc_kill", __LINE__);
4244 #endif /* PROCFS_NEED_PIOCSSIG_FOR_KILL */
4245 destroy_procinfo (pi);
4247 /* If pi is GDB's child, wait for it to die. */
4248 if (parent_pid == getpid ())
4249 /* FIXME: should we use waitpid to make sure we get the right event?
4250 Should we check the returned event? */
4255 ret = waitpid (pi->pid, &status, 0);
4262 /* We're done debugging it, and we want it to go away. Then we want
4263 GDB to forget all about it. */
4266 procfs_kill_inferior (struct target_ops *ops)
4268 if (!ptid_equal (inferior_ptid, null_ptid)) /* ? */
4270 /* Find procinfo for main process. */
4271 procinfo *pi = find_procinfo (ptid_get_pid (inferior_ptid), 0);
4274 unconditionally_kill_inferior (pi);
4275 target_mourn_inferior ();
4279 /* Forget we ever debugged this thing! */
4282 procfs_mourn_inferior (struct target_ops *ops)
4286 if (!ptid_equal (inferior_ptid, null_ptid))
4288 /* Find procinfo for main process. */
4289 pi = find_procinfo (ptid_get_pid (inferior_ptid), 0);
4291 destroy_procinfo (pi);
4294 generic_mourn_inferior ();
4296 inf_child_maybe_unpush_target (ops);
4299 /* When GDB forks to create a runnable inferior process, this function
4300 is called on the parent side of the fork. It's job is to do
4301 whatever is necessary to make the child ready to be debugged, and
4302 then wait for the child to synchronize. */
4305 procfs_init_inferior (struct target_ops *ops, int pid)
4308 gdb_sigset_t signals;
4312 /* This routine called on the parent side (GDB side)
4313 after GDB forks the inferior. */
4314 if (!target_is_pushed (ops))
4317 if ((pi = create_procinfo (pid, 0)) == NULL)
4318 perror (_("procfs: out of memory in 'init_inferior'"));
4320 if (!open_procinfo_files (pi, FD_CTL))
4321 proc_error (pi, "init_inferior, open_proc_files", __LINE__);
4325 open_procinfo_files // done
4328 procfs_notice_signals
4335 /* If not stopped yet, wait for it to stop. */
4336 if (!(proc_flags (pi) & PR_STOPPED) &&
4337 !(proc_wait_for_stop (pi)))
4338 dead_procinfo (pi, "init_inferior: wait_for_stop failed", KILL);
4340 /* Save some of the /proc state to be restored if we detach. */
4341 /* FIXME: Why? In case another debugger was debugging it?
4342 We're it's parent, for Ghu's sake! */
4343 if (!proc_get_traced_signals (pi, &pi->saved_sigset))
4344 proc_error (pi, "init_inferior, get_traced_signals", __LINE__);
4345 if (!proc_get_held_signals (pi, &pi->saved_sighold))
4346 proc_error (pi, "init_inferior, get_held_signals", __LINE__);
4347 if (!proc_get_traced_faults (pi, &pi->saved_fltset))
4348 proc_error (pi, "init_inferior, get_traced_faults", __LINE__);
4349 if (!proc_get_traced_sysentry (pi, pi->saved_entryset))
4350 proc_error (pi, "init_inferior, get_traced_sysentry", __LINE__);
4351 if (!proc_get_traced_sysexit (pi, pi->saved_exitset))
4352 proc_error (pi, "init_inferior, get_traced_sysexit", __LINE__);
4354 if ((fail = procfs_debug_inferior (pi)) != 0)
4355 proc_error (pi, "init_inferior (procfs_debug_inferior)", fail);
4357 /* FIXME: logically, we should really be turning OFF run-on-last-close,
4358 and possibly even turning ON kill-on-last-close at this point. But
4359 I can't make that change without careful testing which I don't have
4360 time to do right now... */
4361 /* Turn on run-on-last-close flag so that the child
4362 will die if GDB goes away for some reason. */
4363 if (!proc_set_run_on_last_close (pi))
4364 proc_error (pi, "init_inferior, set_RLC", __LINE__);
4366 /* We now have have access to the lwpid of the main thread/lwp. */
4367 lwpid = proc_get_current_thread (pi);
4369 /* Create a procinfo for the main lwp. */
4370 create_procinfo (pid, lwpid);
4372 /* We already have a main thread registered in the thread table at
4373 this point, but it didn't have any lwp info yet. Notify the core
4374 about it. This changes inferior_ptid as well. */
4375 thread_change_ptid (pid_to_ptid (pid),
4376 ptid_build (pid, lwpid, 0));
4378 startup_inferior (START_INFERIOR_TRAPS_EXPECTED);
4381 /* On mips-irix, we need to stop the inferior early enough during
4382 the startup phase in order to be able to load the shared library
4383 symbols and insert the breakpoints that are located in these shared
4384 libraries. Stopping at the program entry point is not good enough
4385 because the -init code is executed before the execution reaches
4388 So what we need to do is to insert a breakpoint in the runtime
4389 loader (rld), more precisely in __dbx_link(). This procedure is
4390 called by rld once all shared libraries have been mapped, but before
4391 the -init code is executed. Unfortuantely, this is not straightforward,
4392 as rld is not part of the executable we are running, and thus we need
4393 the inferior to run until rld itself has been mapped in memory.
4395 For this, we trace all syssgi() syscall exit events. Each time
4396 we detect such an event, we iterate over each text memory maps,
4397 get its associated fd, and scan the symbol table for __dbx_link().
4398 When found, we know that rld has been mapped, and that we can insert
4399 the breakpoint at the symbol address. Once the dbx_link() breakpoint
4400 has been inserted, the syssgi() notifications are no longer necessary,
4401 so they should be canceled. */
4402 proc_trace_syscalls_1 (pi, SYS_syssgi, PR_SYSEXIT, FLAG_SET, 0);
4406 /* When GDB forks to create a new process, this function is called on
4407 the child side of the fork before GDB exec's the user program. Its
4408 job is to make the child minimally debuggable, so that the parent
4409 GDB process can connect to the child and take over. This function
4410 should do only the minimum to make that possible, and to
4411 synchronize with the parent process. The parent process should
4412 take care of the details. */
4415 procfs_set_exec_trap (void)
4417 /* This routine called on the child side (inferior side)
4418 after GDB forks the inferior. It must use only local variables,
4419 because it may be sharing data space with its parent. */
4424 if ((pi = create_procinfo (getpid (), 0)) == NULL)
4425 perror_with_name (_("procfs: create_procinfo failed in child."));
4427 if (open_procinfo_files (pi, FD_CTL) == 0)
4429 proc_warn (pi, "set_exec_trap, open_proc_files", __LINE__);
4430 gdb_flush (gdb_stderr);
4431 /* No need to call "dead_procinfo", because we're going to
4436 #ifdef PRFS_STOPEXEC /* defined on OSF */
4437 /* OSF method for tracing exec syscalls. Quoting:
4438 Under Alpha OSF/1 we have to use a PIOCSSPCACT ioctl to trace
4439 exits from exec system calls because of the user level loader. */
4440 /* FIXME: make nice and maybe move into an access function. */
4444 if (ioctl (pi->ctl_fd, PIOCGSPCACT, &prfs_flags) < 0)
4446 proc_warn (pi, "set_exec_trap (PIOCGSPCACT)", __LINE__);
4447 gdb_flush (gdb_stderr);
4450 prfs_flags |= PRFS_STOPEXEC;
4452 if (ioctl (pi->ctl_fd, PIOCSSPCACT, &prfs_flags) < 0)
4454 proc_warn (pi, "set_exec_trap (PIOCSSPCACT)", __LINE__);
4455 gdb_flush (gdb_stderr);
4459 #else /* not PRFS_STOPEXEC */
4460 /* Everyone else's (except OSF) method for tracing exec syscalls. */
4462 Not all systems with /proc have all the exec* syscalls with the same
4463 names. On the SGI, for example, there is no SYS_exec, but there
4464 *is* a SYS_execv. So, we try to account for that. */
4466 exitset = sysset_t_alloc (pi);
4467 gdb_premptysysset (exitset);
4469 gdb_praddsysset (exitset, SYS_exec);
4472 gdb_praddsysset (exitset, SYS_execve);
4475 gdb_praddsysset (exitset, SYS_execv);
4477 #ifdef DYNAMIC_SYSCALLS
4479 int callnum = find_syscall (pi, "execve");
4482 gdb_praddsysset (exitset, callnum);
4484 callnum = find_syscall (pi, "ra_execve");
4486 gdb_praddsysset (exitset, callnum);
4488 #endif /* DYNAMIC_SYSCALLS */
4490 if (!proc_set_traced_sysexit (pi, exitset))
4492 proc_warn (pi, "set_exec_trap, set_traced_sysexit", __LINE__);
4493 gdb_flush (gdb_stderr);
4496 #endif /* PRFS_STOPEXEC */
4498 /* FIXME: should this be done in the parent instead? */
4499 /* Turn off inherit on fork flag so that all grand-children
4500 of gdb start with tracing flags cleared. */
4501 if (!proc_unset_inherit_on_fork (pi))
4502 proc_warn (pi, "set_exec_trap, unset_inherit", __LINE__);
4504 /* Turn off run on last close flag, so that the child process
4505 cannot run away just because we close our handle on it.
4506 We want it to wait for the parent to attach. */
4507 if (!proc_unset_run_on_last_close (pi))
4508 proc_warn (pi, "set_exec_trap, unset_RLC", __LINE__);
4510 /* FIXME: No need to destroy the procinfo --
4511 we have our own address space, and we're about to do an exec! */
4512 /*destroy_procinfo (pi);*/
4515 /* This function is called BEFORE gdb forks the inferior process. Its
4516 only real responsibility is to set things up for the fork, and tell
4517 GDB which two functions to call after the fork (one for the parent,
4518 and one for the child).
4520 This function does a complicated search for a unix shell program,
4521 which it then uses to parse arguments and environment variables to
4522 be sent to the child. I wonder whether this code could not be
4523 abstracted out and shared with other unix targets such as
4527 procfs_create_inferior (struct target_ops *ops, char *exec_file,
4528 char *allargs, char **env, int from_tty)
4530 char *shell_file = getenv ("SHELL");
4534 if (shell_file != NULL && strchr (shell_file, '/') == NULL)
4537 /* We will be looking down the PATH to find shell_file. If we
4538 just do this the normal way (via execlp, which operates by
4539 attempting an exec for each element of the PATH until it
4540 finds one which succeeds), then there will be an exec for
4541 each failed attempt, each of which will cause a PR_SYSEXIT
4542 stop, and we won't know how to distinguish the PR_SYSEXIT's
4543 for these failed execs with the ones for successful execs
4544 (whether the exec has succeeded is stored at that time in the
4545 carry bit or some such architecture-specific and
4546 non-ABI-specified place).
4548 So I can't think of anything better than to search the PATH
4549 now. This has several disadvantages: (1) There is a race
4550 condition; if we find a file now and it is deleted before we
4551 exec it, we lose, even if the deletion leaves a valid file
4552 further down in the PATH, (2) there is no way to know exactly
4553 what an executable (in the sense of "capable of being
4554 exec'd") file is. Using access() loses because it may lose
4555 if the caller is the superuser; failing to use it loses if
4556 there are ACLs or some such. */
4560 /* FIXME-maybe: might want "set path" command so user can change what
4561 path is used from within GDB. */
4562 char *path = getenv ("PATH");
4564 struct stat statbuf;
4567 path = "/bin:/usr/bin";
4569 tryname = alloca (strlen (path) + strlen (shell_file) + 2);
4570 for (p = path; p != NULL; p = p1 ? p1 + 1: NULL)
4572 p1 = strchr (p, ':');
4577 strncpy (tryname, p, len);
4578 tryname[len] = '\0';
4579 strcat (tryname, "/");
4580 strcat (tryname, shell_file);
4581 if (access (tryname, X_OK) < 0)
4583 if (stat (tryname, &statbuf) < 0)
4585 if (!S_ISREG (statbuf.st_mode))
4586 /* We certainly need to reject directories. I'm not quite
4587 as sure about FIFOs, sockets, etc., but I kind of doubt
4588 that people want to exec() these things. */
4593 /* Not found. This must be an error rather than merely passing
4594 the file to execlp(), because execlp() would try all the
4595 exec()s, causing GDB to get confused. */
4596 error (_("procfs:%d -- Can't find shell %s in PATH"),
4597 __LINE__, shell_file);
4599 shell_file = tryname;
4602 pid = fork_inferior (exec_file, allargs, env, procfs_set_exec_trap,
4603 NULL, NULL, shell_file, NULL);
4605 procfs_init_inferior (ops, pid);
4608 /* An observer for the "inferior_created" event. */
4611 procfs_inferior_created (struct target_ops *ops, int from_tty)
4614 /* Make sure to cancel the syssgi() syscall-exit notifications.
4615 They should normally have been removed by now, but they may still
4616 be activated if the inferior doesn't use shared libraries, or if
4617 we didn't locate __dbx_link, or if we never stopped in __dbx_link.
4618 See procfs_init_inferior() for more details.
4620 Since these notifications are only ever enabled when we spawned
4621 the inferior ourselves, there is nothing to do when the inferior
4622 was created by attaching to an already running process, or when
4623 debugging a core file. */
4624 if (current_inferior ()->attach_flag || !target_can_run (¤t_target))
4627 proc_trace_syscalls_1 (find_procinfo_or_die (ptid_get_pid (inferior_ptid),
4628 0), SYS_syssgi, PR_SYSEXIT, FLAG_RESET, 0);
4632 /* Callback for update_thread_list. Calls "add_thread". */
4635 procfs_notice_thread (procinfo *pi, procinfo *thread, void *ptr)
4637 ptid_t gdb_threadid = ptid_build (pi->pid, thread->tid, 0);
4639 if (!in_thread_list (gdb_threadid) || is_exited (gdb_threadid))
4640 add_thread (gdb_threadid);
4645 /* Query all the threads that the target knows about, and give them
4646 back to GDB to add to its list. */
4649 procfs_update_thread_list (struct target_ops *ops)
4655 /* Find procinfo for main process. */
4656 pi = find_procinfo_or_die (ptid_get_pid (inferior_ptid), 0);
4657 proc_update_threads (pi);
4658 proc_iterate_over_threads (pi, procfs_notice_thread, NULL);
4661 /* Return true if the thread is still 'alive'. This guy doesn't
4662 really seem to be doing his job. Got to investigate how to tell
4663 when a thread is really gone. */
4666 procfs_thread_alive (struct target_ops *ops, ptid_t ptid)
4671 proc = ptid_get_pid (ptid);
4672 thread = ptid_get_lwp (ptid);
4673 /* If I don't know it, it ain't alive! */
4674 if ((pi = find_procinfo (proc, thread)) == NULL)
4677 /* If I can't get its status, it ain't alive!
4678 What's more, I need to forget about it! */
4679 if (!proc_get_status (pi))
4681 destroy_procinfo (pi);
4684 /* I couldn't have got its status if it weren't alive, so it's
4689 /* Convert PTID to a string. Returns the string in a static
4693 procfs_pid_to_str (struct target_ops *ops, ptid_t ptid)
4695 static char buf[80];
4697 if (ptid_get_lwp (ptid) == 0)
4698 sprintf (buf, "process %d", ptid_get_pid (ptid));
4700 sprintf (buf, "LWP %ld", ptid_get_lwp (ptid));
4705 /* Insert a watchpoint. */
4708 procfs_set_watchpoint (ptid_t ptid, CORE_ADDR addr, int len, int rwflag,
4715 pi = find_procinfo_or_die (ptid_get_pid (ptid) == -1 ?
4716 ptid_get_pid (inferior_ptid) : ptid_get_pid (ptid),
4719 /* Translate from GDB's flags to /proc's. */
4720 if (len > 0) /* len == 0 means delete watchpoint. */
4722 switch (rwflag) { /* FIXME: need an enum! */
4723 case hw_write: /* default watchpoint (write) */
4724 pflags = WRITE_WATCHFLAG;
4726 case hw_read: /* read watchpoint */
4727 pflags = READ_WATCHFLAG;
4729 case hw_access: /* access watchpoint */
4730 pflags = READ_WATCHFLAG | WRITE_WATCHFLAG;
4732 case hw_execute: /* execution HW breakpoint */
4733 pflags = EXEC_WATCHFLAG;
4735 default: /* Something weird. Return error. */
4738 if (after) /* Stop after r/w access is completed. */
4739 pflags |= AFTER_WATCHFLAG;
4742 if (!proc_set_watchpoint (pi, addr, len, pflags))
4744 if (errno == E2BIG) /* Typical error for no resources. */
4745 return -1; /* fail */
4746 /* GDB may try to remove the same watchpoint twice.
4747 If a remove request returns no match, don't error. */
4748 if (errno == ESRCH && len == 0)
4749 return 0; /* ignore */
4750 proc_error (pi, "set_watchpoint", __LINE__);
4756 /* Return non-zero if we can set a hardware watchpoint of type TYPE. TYPE
4757 is one of bp_hardware_watchpoint, bp_read_watchpoint, bp_write_watchpoint,
4758 or bp_hardware_watchpoint. CNT is the number of watchpoints used so
4761 Note: procfs_can_use_hw_breakpoint() is not yet used by all
4762 procfs.c targets due to the fact that some of them still define
4763 target_can_use_hardware_watchpoint. */
4766 procfs_can_use_hw_breakpoint (struct target_ops *self,
4767 int type, int cnt, int othertype)
4769 /* Due to the way that proc_set_watchpoint() is implemented, host
4770 and target pointers must be of the same size. If they are not,
4771 we can't use hardware watchpoints. This limitation is due to the
4772 fact that proc_set_watchpoint() calls
4773 procfs_address_to_host_pointer(); a close inspection of
4774 procfs_address_to_host_pointer will reveal that an internal error
4775 will be generated when the host and target pointer sizes are
4777 struct type *ptr_type = builtin_type (target_gdbarch ())->builtin_data_ptr;
4779 if (sizeof (void *) != TYPE_LENGTH (ptr_type))
4782 /* Other tests here??? */
4787 /* Returns non-zero if process is stopped on a hardware watchpoint
4788 fault, else returns zero. */
4791 procfs_stopped_by_watchpoint (struct target_ops *ops)
4795 pi = find_procinfo_or_die (ptid_get_pid (inferior_ptid), 0);
4797 if (proc_flags (pi) & (PR_STOPPED | PR_ISTOP))
4799 if (proc_why (pi) == PR_FAULTED)
4802 if (proc_what (pi) == FLTWATCH)
4806 if (proc_what (pi) == FLTKWATCH)
4814 /* Returns 1 if the OS knows the position of the triggered watchpoint,
4815 and sets *ADDR to that address. Returns 0 if OS cannot report that
4816 address. This function is only called if
4817 procfs_stopped_by_watchpoint returned 1, thus no further checks are
4818 done. The function also assumes that ADDR is not NULL. */
4821 procfs_stopped_data_address (struct target_ops *targ, CORE_ADDR *addr)
4825 pi = find_procinfo_or_die (ptid_get_pid (inferior_ptid), 0);
4826 return proc_watchpoint_address (pi, addr);
4830 procfs_insert_watchpoint (struct target_ops *self,
4831 CORE_ADDR addr, int len, int type,
4832 struct expression *cond)
4834 if (!target_have_steppable_watchpoint
4835 && !gdbarch_have_nonsteppable_watchpoint (target_gdbarch ()))
4837 /* When a hardware watchpoint fires off the PC will be left at
4838 the instruction following the one which caused the
4839 watchpoint. It will *NOT* be necessary for GDB to step over
4841 return procfs_set_watchpoint (inferior_ptid, addr, len, type, 1);
4845 /* When a hardware watchpoint fires off the PC will be left at
4846 the instruction which caused the watchpoint. It will be
4847 necessary for GDB to step over the watchpoint. */
4848 return procfs_set_watchpoint (inferior_ptid, addr, len, type, 0);
4853 procfs_remove_watchpoint (struct target_ops *self,
4854 CORE_ADDR addr, int len, int type,
4855 struct expression *cond)
4857 return procfs_set_watchpoint (inferior_ptid, addr, 0, 0, 0);
4861 procfs_region_ok_for_hw_watchpoint (struct target_ops *self,
4862 CORE_ADDR addr, int len)
4864 /* The man page for proc(4) on Solaris 2.6 and up says that the
4865 system can support "thousands" of hardware watchpoints, but gives
4866 no method for finding out how many; It doesn't say anything about
4867 the allowed size for the watched area either. So we just tell
4873 procfs_use_watchpoints (struct target_ops *t)
4875 t->to_stopped_by_watchpoint = procfs_stopped_by_watchpoint;
4876 t->to_insert_watchpoint = procfs_insert_watchpoint;
4877 t->to_remove_watchpoint = procfs_remove_watchpoint;
4878 t->to_region_ok_for_hw_watchpoint = procfs_region_ok_for_hw_watchpoint;
4879 t->to_can_use_hw_breakpoint = procfs_can_use_hw_breakpoint;
4880 t->to_stopped_data_address = procfs_stopped_data_address;
4883 /* Memory Mappings Functions: */
4885 /* Call a callback function once for each mapping, passing it the
4886 mapping, an optional secondary callback function, and some optional
4887 opaque data. Quit and return the first non-zero value returned
4890 PI is the procinfo struct for the process to be mapped. FUNC is
4891 the callback function to be called by this iterator. DATA is the
4892 optional opaque data to be passed to the callback function.
4893 CHILD_FUNC is the optional secondary function pointer to be passed
4894 to the child function. Returns the first non-zero return value
4895 from the callback function, or zero. */
4898 iterate_over_mappings (procinfo *pi, find_memory_region_ftype child_func,
4900 int (*func) (struct prmap *map,
4901 find_memory_region_ftype child_func,
4904 char pathname[MAX_PROC_NAME_SIZE];
4905 struct prmap *prmaps;
4906 struct prmap *prmap;
4910 struct cleanup *cleanups = make_cleanup (null_cleanup, NULL);
4915 /* Get the number of mappings, allocate space,
4916 and read the mappings into prmaps. */
4919 sprintf (pathname, "/proc/%d/map", pi->pid);
4920 if ((map_fd = open (pathname, O_RDONLY)) < 0)
4921 proc_error (pi, "iterate_over_mappings (open)", __LINE__);
4923 /* Make sure it gets closed again. */
4924 make_cleanup_close (map_fd);
4926 /* Use stat to determine the file size, and compute
4927 the number of prmap_t objects it contains. */
4928 if (fstat (map_fd, &sbuf) != 0)
4929 proc_error (pi, "iterate_over_mappings (fstat)", __LINE__);
4931 nmap = sbuf.st_size / sizeof (prmap_t);
4932 prmaps = (struct prmap *) alloca ((nmap + 1) * sizeof (*prmaps));
4933 if (read (map_fd, (char *) prmaps, nmap * sizeof (*prmaps))
4934 != (nmap * sizeof (*prmaps)))
4935 proc_error (pi, "iterate_over_mappings (read)", __LINE__);
4937 /* Use ioctl command PIOCNMAP to get number of mappings. */
4938 if (ioctl (pi->ctl_fd, PIOCNMAP, &nmap) != 0)
4939 proc_error (pi, "iterate_over_mappings (PIOCNMAP)", __LINE__);
4941 prmaps = (struct prmap *) alloca ((nmap + 1) * sizeof (*prmaps));
4942 if (ioctl (pi->ctl_fd, PIOCMAP, prmaps) != 0)
4943 proc_error (pi, "iterate_over_mappings (PIOCMAP)", __LINE__);
4946 for (prmap = prmaps; nmap > 0; prmap++, nmap--)
4947 if ((funcstat = (*func) (prmap, child_func, data)) != 0)
4949 do_cleanups (cleanups);
4953 do_cleanups (cleanups);
4957 /* Implements the to_find_memory_regions method. Calls an external
4958 function for each memory region.
4959 Returns the integer value returned by the callback. */
4962 find_memory_regions_callback (struct prmap *map,
4963 find_memory_region_ftype func, void *data)
4965 return (*func) ((CORE_ADDR) map->pr_vaddr,
4967 (map->pr_mflags & MA_READ) != 0,
4968 (map->pr_mflags & MA_WRITE) != 0,
4969 (map->pr_mflags & MA_EXEC) != 0,
4970 1, /* MODIFIED is unknown, pass it as true. */
4974 /* External interface. Calls a callback function once for each
4975 mapped memory region in the child process, passing as arguments:
4977 CORE_ADDR virtual_address,
4979 int read, TRUE if region is readable by the child
4980 int write, TRUE if region is writable by the child
4981 int execute TRUE if region is executable by the child.
4983 Stops iterating and returns the first non-zero value returned by
4987 proc_find_memory_regions (struct target_ops *self,
4988 find_memory_region_ftype func, void *data)
4990 procinfo *pi = find_procinfo_or_die (ptid_get_pid (inferior_ptid), 0);
4992 return iterate_over_mappings (pi, func, data,
4993 find_memory_regions_callback);
4996 /* Returns an ascii representation of a memory mapping's flags. */
4999 mappingflags (long flags)
5001 static char asciiflags[8];
5003 strcpy (asciiflags, "-------");
5004 #if defined (MA_PHYS)
5005 if (flags & MA_PHYS)
5006 asciiflags[0] = 'd';
5008 if (flags & MA_STACK)
5009 asciiflags[1] = 's';
5010 if (flags & MA_BREAK)
5011 asciiflags[2] = 'b';
5012 if (flags & MA_SHARED)
5013 asciiflags[3] = 's';
5014 if (flags & MA_READ)
5015 asciiflags[4] = 'r';
5016 if (flags & MA_WRITE)
5017 asciiflags[5] = 'w';
5018 if (flags & MA_EXEC)
5019 asciiflags[6] = 'x';
5020 return (asciiflags);
5023 /* Callback function, does the actual work for 'info proc
5027 info_mappings_callback (struct prmap *map, find_memory_region_ftype ignore,
5030 unsigned int pr_off;
5032 #ifdef PCAGENT /* Horrible hack: only defined on Solaris 2.6+ */
5033 pr_off = (unsigned int) map->pr_offset;
5035 pr_off = map->pr_off;
5038 if (gdbarch_addr_bit (target_gdbarch ()) == 32)
5039 printf_filtered ("\t%#10lx %#10lx %#10lx %#10x %7s\n",
5040 (unsigned long) map->pr_vaddr,
5041 (unsigned long) map->pr_vaddr + map->pr_size - 1,
5042 (unsigned long) map->pr_size,
5044 mappingflags (map->pr_mflags));
5046 printf_filtered (" %#18lx %#18lx %#10lx %#10x %7s\n",
5047 (unsigned long) map->pr_vaddr,
5048 (unsigned long) map->pr_vaddr + map->pr_size - 1,
5049 (unsigned long) map->pr_size,
5051 mappingflags (map->pr_mflags));
5056 /* Implement the "info proc mappings" subcommand. */
5059 info_proc_mappings (procinfo *pi, int summary)
5062 return; /* No output for summary mode. */
5064 printf_filtered (_("Mapped address spaces:\n\n"));
5065 if (gdbarch_ptr_bit (target_gdbarch ()) == 32)
5066 printf_filtered ("\t%10s %10s %10s %10s %7s\n",
5073 printf_filtered (" %18s %18s %10s %10s %7s\n",
5080 iterate_over_mappings (pi, NULL, NULL, info_mappings_callback);
5081 printf_filtered ("\n");
5084 /* Implement the "info proc" command. */
5087 procfs_info_proc (struct target_ops *ops, const char *args,
5088 enum info_proc_what what)
5090 struct cleanup *old_chain;
5091 procinfo *process = NULL;
5092 procinfo *thread = NULL;
5110 error (_("Not supported on this target."));
5113 old_chain = make_cleanup (null_cleanup, 0);
5116 argv = gdb_buildargv (args);
5117 make_cleanup_freeargv (argv);
5119 while (argv != NULL && *argv != NULL)
5121 if (isdigit (argv[0][0]))
5123 pid = strtoul (argv[0], &tmp, 10);
5125 tid = strtoul (++tmp, NULL, 10);
5127 else if (argv[0][0] == '/')
5129 tid = strtoul (argv[0] + 1, NULL, 10);
5134 pid = ptid_get_pid (inferior_ptid);
5136 error (_("No current process: you must name one."));
5139 /* Have pid, will travel.
5140 First see if it's a process we're already debugging. */
5141 process = find_procinfo (pid, 0);
5142 if (process == NULL)
5144 /* No. So open a procinfo for it, but
5145 remember to close it again when finished. */
5146 process = create_procinfo (pid, 0);
5147 make_cleanup (do_destroy_procinfo_cleanup, process);
5148 if (!open_procinfo_files (process, FD_CTL))
5149 proc_error (process, "info proc, open_procinfo_files", __LINE__);
5153 thread = create_procinfo (pid, tid);
5157 printf_filtered (_("process %d flags:\n"), process->pid);
5158 proc_prettyprint_flags (proc_flags (process), 1);
5159 if (proc_flags (process) & (PR_STOPPED | PR_ISTOP))
5160 proc_prettyprint_why (proc_why (process), proc_what (process), 1);
5161 if (proc_get_nthreads (process) > 1)
5162 printf_filtered ("Process has %d threads.\n",
5163 proc_get_nthreads (process));
5167 printf_filtered (_("thread %d flags:\n"), thread->tid);
5168 proc_prettyprint_flags (proc_flags (thread), 1);
5169 if (proc_flags (thread) & (PR_STOPPED | PR_ISTOP))
5170 proc_prettyprint_why (proc_why (thread), proc_what (thread), 1);
5175 info_proc_mappings (process, 0);
5178 do_cleanups (old_chain);
5181 /* Modify the status of the system call identified by SYSCALLNUM in
5182 the set of syscalls that are currently traced/debugged.
5184 If ENTRY_OR_EXIT is set to PR_SYSENTRY, then the entry syscalls set
5185 will be updated. Otherwise, the exit syscalls set will be updated.
5187 If MODE is FLAG_SET, then traces will be enabled. Otherwise, they
5188 will be disabled. */
5191 proc_trace_syscalls_1 (procinfo *pi, int syscallnum, int entry_or_exit,
5192 int mode, int from_tty)
5196 if (entry_or_exit == PR_SYSENTRY)
5197 sysset = proc_get_traced_sysentry (pi, NULL);
5199 sysset = proc_get_traced_sysexit (pi, NULL);
5202 proc_error (pi, "proc-trace, get_traced_sysset", __LINE__);
5204 if (mode == FLAG_SET)
5205 gdb_praddsysset (sysset, syscallnum);
5207 gdb_prdelsysset (sysset, syscallnum);
5209 if (entry_or_exit == PR_SYSENTRY)
5211 if (!proc_set_traced_sysentry (pi, sysset))
5212 proc_error (pi, "proc-trace, set_traced_sysentry", __LINE__);
5216 if (!proc_set_traced_sysexit (pi, sysset))
5217 proc_error (pi, "proc-trace, set_traced_sysexit", __LINE__);
5222 proc_trace_syscalls (char *args, int from_tty, int entry_or_exit, int mode)
5226 if (ptid_get_pid (inferior_ptid) <= 0)
5227 error (_("you must be debugging a process to use this command."));
5229 if (args == NULL || args[0] == 0)
5230 error_no_arg (_("system call to trace"));
5232 pi = find_procinfo_or_die (ptid_get_pid (inferior_ptid), 0);
5233 if (isdigit (args[0]))
5235 const int syscallnum = atoi (args);
5237 proc_trace_syscalls_1 (pi, syscallnum, entry_or_exit, mode, from_tty);
5242 proc_trace_sysentry_cmd (char *args, int from_tty)
5244 proc_trace_syscalls (args, from_tty, PR_SYSENTRY, FLAG_SET);
5248 proc_trace_sysexit_cmd (char *args, int from_tty)
5250 proc_trace_syscalls (args, from_tty, PR_SYSEXIT, FLAG_SET);
5254 proc_untrace_sysentry_cmd (char *args, int from_tty)
5256 proc_trace_syscalls (args, from_tty, PR_SYSENTRY, FLAG_RESET);
5260 proc_untrace_sysexit_cmd (char *args, int from_tty)
5262 proc_trace_syscalls (args, from_tty, PR_SYSEXIT, FLAG_RESET);
5266 /* Provide a prototype to silence -Wmissing-prototypes. */
5267 extern void _initialize_procfs (void);
5270 _initialize_procfs (void)
5272 observer_attach_inferior_created (procfs_inferior_created);
5274 add_com ("proc-trace-entry", no_class, proc_trace_sysentry_cmd,
5275 _("Give a trace of entries into the syscall."));
5276 add_com ("proc-trace-exit", no_class, proc_trace_sysexit_cmd,
5277 _("Give a trace of exits from the syscall."));
5278 add_com ("proc-untrace-entry", no_class, proc_untrace_sysentry_cmd,
5279 _("Cancel a trace of entries into the syscall."));
5280 add_com ("proc-untrace-exit", no_class, proc_untrace_sysexit_cmd,
5281 _("Cancel a trace of exits from the syscall."));
5284 /* =================== END, GDB "MODULE" =================== */
5288 /* miscellaneous stubs: */
5290 /* The following satisfy a few random symbols mostly created by the
5291 solaris threads implementation, which I will chase down later. */
5293 /* Return a pid for which we guarantee we will be able to find a
5297 procfs_first_available (void)
5299 return pid_to_ptid (procinfo_list ? procinfo_list->pid : -1);
5302 /* =================== GCORE .NOTE "MODULE" =================== */
5303 #if defined (PIOCOPENLWP) || defined (PCAGENT)
5304 /* gcore only implemented on solaris (so far) */
5307 procfs_do_thread_registers (bfd *obfd, ptid_t ptid,
5308 char *note_data, int *note_size,
5309 enum gdb_signal stop_signal)
5311 struct regcache *regcache = get_thread_regcache (ptid);
5312 gdb_gregset_t gregs;
5313 gdb_fpregset_t fpregs;
5314 unsigned long merged_pid;
5315 struct cleanup *old_chain;
5317 merged_pid = ptid_get_lwp (ptid) << 16 | ptid_get_pid (ptid);
5319 /* This part is the old method for fetching registers.
5320 It should be replaced by the newer one using regsets
5321 once it is implemented in this platform:
5322 gdbarch_iterate_over_regset_sections(). */
5324 old_chain = save_inferior_ptid ();
5325 inferior_ptid = ptid;
5326 target_fetch_registers (regcache, -1);
5328 fill_gregset (regcache, &gregs, -1);
5329 #if defined (NEW_PROC_API)
5330 note_data = (char *) elfcore_write_lwpstatus (obfd,
5337 note_data = (char *) elfcore_write_prstatus (obfd,
5344 fill_fpregset (regcache, &fpregs, -1);
5345 note_data = (char *) elfcore_write_prfpreg (obfd,
5351 do_cleanups (old_chain);
5356 struct procfs_corefile_thread_data {
5360 enum gdb_signal stop_signal;
5364 procfs_corefile_thread_callback (procinfo *pi, procinfo *thread, void *data)
5366 struct procfs_corefile_thread_data *args = data;
5370 ptid_t ptid = ptid_build (pi->pid, thread->tid, 0);
5372 args->note_data = procfs_do_thread_registers (args->obfd, ptid,
5381 find_signalled_thread (struct thread_info *info, void *data)
5383 if (info->suspend.stop_signal != GDB_SIGNAL_0
5384 && ptid_get_pid (info->ptid) == ptid_get_pid (inferior_ptid))
5390 static enum gdb_signal
5391 find_stop_signal (void)
5393 struct thread_info *info =
5394 iterate_over_threads (find_signalled_thread, NULL);
5397 return info->suspend.stop_signal;
5399 return GDB_SIGNAL_0;
5403 procfs_make_note_section (struct target_ops *self, bfd *obfd, int *note_size)
5405 struct cleanup *old_chain;
5406 gdb_gregset_t gregs;
5407 gdb_fpregset_t fpregs;
5408 char fname[16] = {'\0'};
5409 char psargs[80] = {'\0'};
5410 procinfo *pi = find_procinfo_or_die (ptid_get_pid (inferior_ptid), 0);
5411 char *note_data = NULL;
5413 struct procfs_corefile_thread_data thread_args;
5416 enum gdb_signal stop_signal;
5418 if (get_exec_file (0))
5420 strncpy (fname, lbasename (get_exec_file (0)), sizeof (fname));
5421 fname[sizeof (fname) - 1] = 0;
5422 strncpy (psargs, get_exec_file (0), sizeof (psargs));
5423 psargs[sizeof (psargs) - 1] = 0;
5425 inf_args = get_inferior_args ();
5426 if (inf_args && *inf_args &&
5427 strlen (inf_args) < ((int) sizeof (psargs) - (int) strlen (psargs)))
5429 strncat (psargs, " ",
5430 sizeof (psargs) - strlen (psargs));
5431 strncat (psargs, inf_args,
5432 sizeof (psargs) - strlen (psargs));
5436 note_data = (char *) elfcore_write_prpsinfo (obfd,
5442 stop_signal = find_stop_signal ();
5445 fill_gregset (get_current_regcache (), &gregs, -1);
5446 note_data = elfcore_write_pstatus (obfd, note_data, note_size,
5447 ptid_get_pid (inferior_ptid),
5448 stop_signal, &gregs);
5451 thread_args.obfd = obfd;
5452 thread_args.note_data = note_data;
5453 thread_args.note_size = note_size;
5454 thread_args.stop_signal = stop_signal;
5455 proc_iterate_over_threads (pi, procfs_corefile_thread_callback,
5457 note_data = thread_args.note_data;
5459 auxv_len = target_read_alloc (¤t_target, TARGET_OBJECT_AUXV,
5463 note_data = elfcore_write_note (obfd, note_data, note_size,
5464 "CORE", NT_AUXV, auxv, auxv_len);
5470 #else /* !Solaris */
5472 procfs_make_note_section (struct target_ops *self, bfd *obfd, int *note_size)
5474 error (_("gcore not implemented for this host."));
5475 return NULL; /* lint */
5477 #endif /* Solaris */
5478 /* =================== END GCORE .NOTE "MODULE" =================== */