1 /* Machine independent support for SVR4 /proc (process file system) for GDB.
2 Copyright 1991, 1992-97, 1998 Free Software Foundation, Inc.
3 Written by Fred Fish at Cygnus Support. Changes for sysv4.2mp procfs
4 compatibility by Geoffrey Noer at Cygnus Solutions.
6 This file is part of GDB.
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
25 For information on the details of using /proc consult section proc(4)
26 in the UNIX System V Release 4 System Administrator's Reference Manual.
28 The general register and floating point register sets are manipulated
29 separately. This file makes the assumption that if FP0_REGNUM is
30 defined, then support for the floating point register set is desired,
31 regardless of whether or not the actual target has floating point hardware.
38 #include <sys/types.h>
40 #include <sys/fault.h>
41 #include <sys/syscall.h>
42 #include <sys/procfs.h>
45 #include "gdb_string.h"
55 #include "gdbthread.h"
57 #if !defined(SYS_lwp_create) && defined(SYS_lwpcreate)
58 # define SYS_lwp_create SYS_lwpcreate
61 #if !defined(SYS_lwp_exit) && defined(SYS_lwpexit)
62 # define SYS_lwp_exit SYS_lwpexit
65 #if !defined(SYS_lwp_wait) && defined(SYS_lwpwait)
66 # define SYS_lwp_wait SYS_lwpwait
69 #if !defined(SYS_lwp_self) && defined(SYS_lwpself)
70 # define SYS_lwp_self SYS_lwpself
73 #if !defined(SYS_lwp_info) && defined(SYS_lwpinfo)
74 # define SYS_lwp_info SYS_lwpinfo
77 #if !defined(SYS_lwp_private) && defined(SYS_lwpprivate)
78 # define SYS_lwp_private SYS_lwpprivate
81 #if !defined(SYS_lwp_kill) && defined(SYS_lwpkill)
82 # define SYS_lwp_kill SYS_lwpkill
85 #if !defined(SYS_lwp_suspend) && defined(SYS_lwpsuspend)
86 # define SYS_lwp_suspend SYS_lwpsuspend
89 #if !defined(SYS_lwp_continue) && defined(SYS_lwpcontinue)
90 # define SYS_lwp_continue SYS_lwpcontinue
93 /* the name of the proc status struct depends on the implementation */
95 typedef pstatus_t gdb_prstatus_t;
97 typedef prstatus_t gdb_prstatus_t;
100 #define MAX_SYSCALLS 256 /* Maximum number of syscalls for table */
102 /* proc name formats may vary depending on the proc implementation */
103 #ifdef HAVE_MULTIPLE_PROC_FDS
104 # ifndef CTL_PROC_NAME_FMT
105 # define CTL_PROC_NAME_FMT "/proc/%d/ctl"
106 # define AS_PROC_NAME_FMT "/proc/%d/as"
107 # define MAP_PROC_NAME_FMT "/proc/%d/map"
108 # define STATUS_PROC_NAME_FMT "/proc/%d/status"
110 #else /* HAVE_MULTIPLE_PROC_FDS */
111 # ifndef CTL_PROC_NAME_FMT
112 # define CTL_PROC_NAME_FMT "/proc/%05d"
113 # define AS_PROC_NAME_FMT "/proc/%05d"
114 # define MAP_PROC_NAME_FMT "/proc/%05d"
115 # define STATUS_PROC_NAME_FMT "/proc/%05d"
117 #endif /* HAVE_MULTIPLE_PROC_FDS */
119 #define MAX_PROC_NAME_SIZE sizeof("/proc/1234567890/status")
121 extern struct target_ops procfs_ops; /* Forward declaration */
123 int procfs_suppress_run = 0; /* Non-zero if procfs should pretend not to
124 be a runnable target. Used by targets
125 that can sit atop procfs, such as solaris
128 #if 1 /* FIXME: Gross and ugly hack to resolve coredep.c global */
129 CORE_ADDR kernel_u_addr;
132 #ifdef BROKEN_SIGINFO_H /* Workaround broken SGS <sys/siginfo.h> */
134 #define si_pid _data._proc.pid
136 #define si_uid _data._proc._pdata._kill.uid
137 #endif /* BROKEN_SIGINFO_H */
139 /* Define structures for passing commands to /proc/pid/ctl file. Note that
140 while we create these for the PROCFS_USE_READ_WRITE world, we use them
141 and ignore the extra cmd int in other proc schemes.
143 /* generic ctl msg */
149 /* set general registers */
155 /* set fp registers */
161 /* set signals to be traced */
167 /* set faults to be traced */
173 /* set system calls to be traced */
179 /* set current signal to be traced */
185 /* All access to the inferior, either one started by gdb or one that has
186 been attached to, is controlled by an instance of a procinfo structure,
187 defined below. Since gdb currently only handles one inferior at a time,
188 the procinfo structure for the inferior is statically allocated and
189 only one exists at any given time. There is a separate procinfo
190 structure for use by the "info proc" command, so that we can print
191 useful information about any random process without interfering with
192 the inferior's procinfo information. */
195 struct procinfo *next;
196 int pid; /* Process ID of inferior */
197 int ctl_fd; /* File descriptor for /proc ctl file */
198 int status_fd; /* File descriptor for /proc status file */
199 int as_fd; /* File descriptor for /proc as file */
200 int map_fd; /* File descriptor for /proc map file */
201 char *pathname; /* Pathname to /proc entry */
202 int had_event; /* poll/select says something happened */
203 int was_stopped; /* Nonzero if was stopped prior to attach */
204 int nopass_next_sigstop; /* Don't pass a sigstop on next resume */
205 #ifndef HAVE_NO_PRRUN_T
206 prrun_t prrun; /* Control state when it is run */
208 gdb_prstatus_t prstatus; /* Current process status info */
209 struct greg_ctl gregset; /* General register set */
210 struct fpreg_ctl fpregset; /* Floating point register set */
211 struct flt_ctl fltset; /* Current traced hardware fault set */
212 struct sig_ctl trace; /* Current traced signal set */
213 struct sys_ctl exitset; /* Current traced system call exit set */
214 struct sys_ctl entryset; /* Current traced system call entry set */
215 struct sig_ctl saved_sighold; /* Saved held signal set */
216 struct flt_ctl saved_fltset; /* Saved traced hardware fault set */
217 struct sig_ctl saved_trace; /* Saved traced signal set */
218 struct sys_ctl saved_exitset; /* Saved traced system call exit set */
219 struct sys_ctl saved_entryset;/* Saved traced system call entry set */
220 int num_syscall_handlers; /* Number of syscall trap handlers
221 currently installed */
222 /* Pointer to list of syscall trap handlers */
223 struct procfs_syscall_handler *syscall_handlers;
224 int new_child; /* Non-zero if it's a new thread */
227 /* List of inferior process information */
228 static struct procinfo *procinfo_list = NULL;
229 static struct pollfd *poll_list; /* pollfds used for waiting on /proc */
231 static int num_poll_list = 0; /* Number of entries in poll_list */
233 /* Much of the information used in the /proc interface, particularly for
234 printing status information, is kept as tables of structures of the
235 following form. These tables can be used to map numeric values to
236 their symbolic names and to a string that describes their specific use. */
239 int value; /* The numeric value */
240 char *name; /* The equivalent symbolic value */
241 char *desc; /* Short description of value */
244 /* Translate bits in the pr_flags member of the prstatus structure, into the
245 names and desc information. */
247 static struct trans pr_flag_table[] =
249 #if defined (PR_STOPPED)
250 { PR_STOPPED, "PR_STOPPED", "Process is stopped" },
252 #if defined (PR_ISTOP)
253 { PR_ISTOP, "PR_ISTOP", "Stopped on an event of interest" },
255 #if defined (PR_DSTOP)
256 { PR_DSTOP, "PR_DSTOP", "A stop directive is in effect" },
258 #if defined (PR_ASLEEP)
259 { PR_ASLEEP, "PR_ASLEEP", "Sleeping in an interruptible system call" },
261 #if defined (PR_FORK)
262 { PR_FORK, "PR_FORK", "Inherit-on-fork is in effect" },
265 { PR_RLC, "PR_RLC", "Run-on-last-close is in effect" },
267 #if defined (PR_PTRACE)
268 { PR_PTRACE, "PR_PTRACE", "Process is being controlled by ptrace" },
270 #if defined (PR_PCINVAL)
271 { PR_PCINVAL, "PR_PCINVAL", "PC refers to an invalid virtual address" },
273 #if defined (PR_ISSYS)
274 { PR_ISSYS, "PR_ISSYS", "Is a system process" },
276 #if defined (PR_STEP)
277 { PR_STEP, "PR_STEP", "Process has single step pending" },
280 { PR_KLC, "PR_KLC", "Kill-on-last-close is in effect" },
282 #if defined (PR_ASYNC)
283 { PR_ASYNC, "PR_ASYNC", "Asynchronous stop is in effect" },
285 #if defined (PR_PCOMPAT)
286 { PR_PCOMPAT, "PR_PCOMPAT", "Ptrace compatibility mode in effect" },
288 #if defined (PR_MSACCT)
289 { PR_MSACCT, "PR_MSACCT", "Microstate accounting enabled" },
291 #if defined (PR_BPTADJ)
292 { PR_BPTADJ, "PR_BPTADJ", "Breakpoint PC adjustment in effect" },
294 #if defined (PR_ASLWP)
295 { PR_ASLWP, "PR_ASLWP", "Asynchronus signal LWP" },
300 /* Translate values in the pr_why field of the prstatus struct. */
302 static struct trans pr_why_table[] =
304 #if defined (PR_REQUESTED)
305 { PR_REQUESTED, "PR_REQUESTED", "Directed to stop via PIOCSTOP/PIOCWSTOP" },
307 #if defined (PR_SIGNALLED)
308 { PR_SIGNALLED, "PR_SIGNALLED", "Receipt of a traced signal" },
310 #if defined (PR_SYSENTRY)
311 { PR_SYSENTRY, "PR_SYSENTRY", "Entry to a traced system call" },
313 #if defined (PR_SYSEXIT)
314 { PR_SYSEXIT, "PR_SYSEXIT", "Exit from a traced system call" },
316 #if defined (PR_JOBCONTROL)
317 { PR_JOBCONTROL, "PR_JOBCONTROL", "Default job control stop signal action" },
319 #if defined (PR_FAULTED)
320 { PR_FAULTED, "PR_FAULTED", "Incurred a traced hardware fault" },
322 #if defined (PR_SUSPENDED)
323 { PR_SUSPENDED, "PR_SUSPENDED", "Process suspended" },
325 #if defined (PR_CHECKPOINT)
326 { PR_CHECKPOINT, "PR_CHECKPOINT", "(???)" },
331 /* Hardware fault translation table. */
333 static struct trans faults_table[] =
336 { FLTILL, "FLTILL", "Illegal instruction" },
338 #if defined (FLTPRIV)
339 { FLTPRIV, "FLTPRIV", "Privileged instruction" },
342 { FLTBPT, "FLTBPT", "Breakpoint trap" },
344 #if defined (FLTTRACE)
345 { FLTTRACE, "FLTTRACE", "Trace trap" },
347 #if defined (FLTACCESS)
348 { FLTACCESS, "FLTACCESS", "Memory access fault" },
350 #if defined (FLTBOUNDS)
351 { FLTBOUNDS, "FLTBOUNDS", "Memory bounds violation" },
353 #if defined (FLTIOVF)
354 { FLTIOVF, "FLTIOVF", "Integer overflow" },
356 #if defined (FLTIZDIV)
357 { FLTIZDIV, "FLTIZDIV", "Integer zero divide" },
360 { FLTFPE, "FLTFPE", "Floating-point exception" },
362 #if defined (FLTSTACK)
363 { FLTSTACK, "FLTSTACK", "Unrecoverable stack fault" },
365 #if defined (FLTPAGE)
366 { FLTPAGE, "FLTPAGE", "Recoverable page fault" },
371 /* Translation table for signal generation information. See UNIX System
372 V Release 4 Programmer's Reference Manual, siginfo(5). */
374 static struct sigcode {
379 } siginfo_table[] = {
380 #if defined (SIGILL) && defined (ILL_ILLOPC)
381 { SIGILL, ILL_ILLOPC, "ILL_ILLOPC", "Illegal opcode" },
383 #if defined (SIGILL) && defined (ILL_ILLOPN)
384 { SIGILL, ILL_ILLOPN, "ILL_ILLOPN", "Illegal operand", },
386 #if defined (SIGILL) && defined (ILL_ILLADR)
387 { SIGILL, ILL_ILLADR, "ILL_ILLADR", "Illegal addressing mode" },
389 #if defined (SIGILL) && defined (ILL_ILLTRP)
390 { SIGILL, ILL_ILLTRP, "ILL_ILLTRP", "Illegal trap" },
392 #if defined (SIGILL) && defined (ILL_PRVOPC)
393 { SIGILL, ILL_PRVOPC, "ILL_PRVOPC", "Privileged opcode" },
395 #if defined (SIGILL) && defined (ILL_PRVREG)
396 { SIGILL, ILL_PRVREG, "ILL_PRVREG", "Privileged register" },
398 #if defined (SIGILL) && defined (ILL_COPROC)
399 { SIGILL, ILL_COPROC, "ILL_COPROC", "Coprocessor error" },
401 #if defined (SIGILL) && defined (ILL_BADSTK)
402 { SIGILL, ILL_BADSTK, "ILL_BADSTK", "Internal stack error" },
404 #if defined (SIGFPE) && defined (FPE_INTDIV)
405 { SIGFPE, FPE_INTDIV, "FPE_INTDIV", "Integer divide by zero" },
407 #if defined (SIGFPE) && defined (FPE_INTOVF)
408 { SIGFPE, FPE_INTOVF, "FPE_INTOVF", "Integer overflow" },
410 #if defined (SIGFPE) && defined (FPE_FLTDIV)
411 { SIGFPE, FPE_FLTDIV, "FPE_FLTDIV", "Floating point divide by zero" },
413 #if defined (SIGFPE) && defined (FPE_FLTOVF)
414 { SIGFPE, FPE_FLTOVF, "FPE_FLTOVF", "Floating point overflow" },
416 #if defined (SIGFPE) && defined (FPE_FLTUND)
417 { SIGFPE, FPE_FLTUND, "FPE_FLTUND", "Floating point underflow" },
419 #if defined (SIGFPE) && defined (FPE_FLTRES)
420 { SIGFPE, FPE_FLTRES, "FPE_FLTRES", "Floating point inexact result" },
422 #if defined (SIGFPE) && defined (FPE_FLTINV)
423 { SIGFPE, FPE_FLTINV, "FPE_FLTINV", "Invalid floating point operation" },
425 #if defined (SIGFPE) && defined (FPE_FLTSUB)
426 { SIGFPE, FPE_FLTSUB, "FPE_FLTSUB", "Subscript out of range" },
428 #if defined (SIGSEGV) && defined (SEGV_MAPERR)
429 { SIGSEGV, SEGV_MAPERR, "SEGV_MAPERR", "Address not mapped to object" },
431 #if defined (SIGSEGV) && defined (SEGV_ACCERR)
432 { SIGSEGV, SEGV_ACCERR, "SEGV_ACCERR", "Invalid permissions for object" },
434 #if defined (SIGBUS) && defined (BUS_ADRALN)
435 { SIGBUS, BUS_ADRALN, "BUS_ADRALN", "Invalid address alignment" },
437 #if defined (SIGBUS) && defined (BUS_ADRERR)
438 { SIGBUS, BUS_ADRERR, "BUS_ADRERR", "Non-existent physical address" },
440 #if defined (SIGBUS) && defined (BUS_OBJERR)
441 { SIGBUS, BUS_OBJERR, "BUS_OBJERR", "Object specific hardware error" },
443 #if defined (SIGTRAP) && defined (TRAP_BRKPT)
444 { SIGTRAP, TRAP_BRKPT, "TRAP_BRKPT", "Process breakpoint" },
446 #if defined (SIGTRAP) && defined (TRAP_TRACE)
447 { SIGTRAP, TRAP_TRACE, "TRAP_TRACE", "Process trace trap" },
449 #if defined (SIGCLD) && defined (CLD_EXITED)
450 { SIGCLD, CLD_EXITED, "CLD_EXITED", "Child has exited" },
452 #if defined (SIGCLD) && defined (CLD_KILLED)
453 { SIGCLD, CLD_KILLED, "CLD_KILLED", "Child was killed" },
455 #if defined (SIGCLD) && defined (CLD_DUMPED)
456 { SIGCLD, CLD_DUMPED, "CLD_DUMPED", "Child has terminated abnormally" },
458 #if defined (SIGCLD) && defined (CLD_TRAPPED)
459 { SIGCLD, CLD_TRAPPED, "CLD_TRAPPED", "Traced child has trapped" },
461 #if defined (SIGCLD) && defined (CLD_STOPPED)
462 { SIGCLD, CLD_STOPPED, "CLD_STOPPED", "Child has stopped" },
464 #if defined (SIGCLD) && defined (CLD_CONTINUED)
465 { SIGCLD, CLD_CONTINUED, "CLD_CONTINUED", "Stopped child had continued" },
467 #if defined (SIGPOLL) && defined (POLL_IN)
468 { SIGPOLL, POLL_IN, "POLL_IN", "Input input available" },
470 #if defined (SIGPOLL) && defined (POLL_OUT)
471 { SIGPOLL, POLL_OUT, "POLL_OUT", "Output buffers available" },
473 #if defined (SIGPOLL) && defined (POLL_MSG)
474 { SIGPOLL, POLL_MSG, "POLL_MSG", "Input message available" },
476 #if defined (SIGPOLL) && defined (POLL_ERR)
477 { SIGPOLL, POLL_ERR, "POLL_ERR", "I/O error" },
479 #if defined (SIGPOLL) && defined (POLL_PRI)
480 { SIGPOLL, POLL_PRI, "POLL_PRI", "High priority input available" },
482 #if defined (SIGPOLL) && defined (POLL_HUP)
483 { SIGPOLL, POLL_HUP, "POLL_HUP", "Device disconnected" },
488 static char *syscall_table[MAX_SYSCALLS];
490 /* Prototypes for local functions */
492 static void procfs_stop PARAMS ((void));
494 static int procfs_thread_alive PARAMS ((int));
496 static int procfs_can_run PARAMS ((void));
498 static void procfs_mourn_inferior PARAMS ((void));
500 static void procfs_fetch_registers PARAMS ((int));
502 static int procfs_wait PARAMS ((int, struct target_waitstatus *));
504 static void procfs_open PARAMS ((char *, int));
506 static void procfs_files_info PARAMS ((struct target_ops *));
508 static void procfs_prepare_to_store PARAMS ((void));
510 static void procfs_detach PARAMS ((char *, int));
512 static void procfs_attach PARAMS ((char *, int));
514 static void proc_set_exec_trap PARAMS ((void));
516 static int procfs_init_inferior PARAMS ((int));
518 static struct procinfo *create_procinfo PARAMS ((int));
520 static void procfs_store_registers PARAMS ((int));
522 static int procfs_xfer_memory PARAMS ((CORE_ADDR, char *, int, int, struct target_ops *));
524 static void procfs_kill_inferior PARAMS ((void));
526 static char *sigcodedesc PARAMS ((siginfo_t *));
528 static char *sigcodename PARAMS ((siginfo_t *));
530 static struct procinfo *wait_fd PARAMS ((void));
532 static void remove_fd PARAMS ((struct procinfo *));
534 static void add_fd PARAMS ((struct procinfo *));
536 static void set_proc_siginfo PARAMS ((struct procinfo *, int));
538 static void init_syscall_table PARAMS ((void));
540 static char *syscallname PARAMS ((int));
542 static char *signalname PARAMS ((int));
544 static char *errnoname PARAMS ((int));
546 static int proc_address_to_fd PARAMS ((struct procinfo *, CORE_ADDR, int));
548 static int open_proc_file PARAMS ((int, struct procinfo *, int, int));
550 static void close_proc_file PARAMS ((struct procinfo *));
552 static void unconditionally_kill_inferior PARAMS ((struct procinfo *));
554 static NORETURN void proc_init_failed PARAMS ((struct procinfo *, char *, int)) ATTR_NORETURN;
556 static void info_proc PARAMS ((char *, int));
558 static void info_proc_flags PARAMS ((struct procinfo *, int));
560 static void info_proc_stop PARAMS ((struct procinfo *, int));
562 static void info_proc_siginfo PARAMS ((struct procinfo *, int));
564 static void info_proc_syscalls PARAMS ((struct procinfo *, int));
566 static void info_proc_mappings PARAMS ((struct procinfo *, int));
568 static void info_proc_signals PARAMS ((struct procinfo *, int));
570 static void info_proc_faults PARAMS ((struct procinfo *, int));
572 static char *mappingflags PARAMS ((long));
574 static char *lookupname PARAMS ((struct trans *, unsigned int, char *));
576 static char *lookupdesc PARAMS ((struct trans *, unsigned int));
578 static int do_attach PARAMS ((int pid));
580 static void do_detach PARAMS ((int siggnal));
582 static void procfs_create_inferior PARAMS ((char *, char *, char **));
584 static void procfs_notice_signals PARAMS ((int pid));
586 static void notice_signals PARAMS ((struct procinfo *, struct sig_ctl *));
588 static struct procinfo *find_procinfo PARAMS ((pid_t pid, int okfail));
590 static int procfs_write_pcwstop PARAMS ((struct procinfo *));
591 static int procfs_read_status PARAMS ((struct procinfo *));
592 static void procfs_write_pckill PARAMS ((struct procinfo *));
594 typedef int syscall_func_t PARAMS ((struct procinfo *pi, int syscall_num,
595 int why, int *rtnval, int *statval));
597 static void procfs_set_syscall_trap PARAMS ((struct procinfo *pi,
598 int syscall_num, int flags,
599 syscall_func_t *func));
601 static void procfs_clear_syscall_trap PARAMS ((struct procinfo *pi,
602 int syscall_num, int errok));
604 #define PROCFS_SYSCALL_ENTRY 0x1 /* Trap on entry to sys call */
605 #define PROCFS_SYSCALL_EXIT 0x2 /* Trap on exit from sys call */
607 static syscall_func_t procfs_exit_handler;
609 static syscall_func_t procfs_exec_handler;
612 static syscall_func_t procfs_sproc_handler;
613 static syscall_func_t procfs_fork_handler;
616 #ifdef SYS_lwp_create
617 static syscall_func_t procfs_lwp_creation_handler;
620 static void modify_inherit_on_fork_flag PARAMS ((int fd, int flag));
621 static void modify_run_on_last_close_flag PARAMS ((int fd, int flag));
625 struct procfs_syscall_handler
627 int syscall_num; /* The number of the system call being handled */
628 /* The function to be called */
629 syscall_func_t *func;
632 static void procfs_resume PARAMS ((int pid, int step,
633 enum target_signal signo));
635 /* External function prototypes that can't be easily included in any
636 header file because the args are typedefs in system include files. */
638 extern void supply_gregset PARAMS ((gregset_t *));
640 extern void fill_gregset PARAMS ((gregset_t *, int));
643 extern void supply_fpregset PARAMS ((fpregset_t *));
645 extern void fill_fpregset PARAMS ((fpregset_t *, int));
652 find_procinfo -- convert a process id to a struct procinfo
656 static struct procinfo * find_procinfo (pid_t pid, int okfail);
660 Given a process id, look it up in the procinfo chain. Returns
661 a struct procinfo *. If can't find pid, then call error(),
662 unless okfail is set, in which case, return NULL;
665 static struct procinfo *
666 find_procinfo (pid, okfail)
670 struct procinfo *procinfo;
672 for (procinfo = procinfo_list; procinfo; procinfo = procinfo->next)
673 if (procinfo->pid == pid)
679 error ("procfs (find_procinfo): Couldn't locate pid %d", pid);
686 current_procinfo -- convert inferior_pid to a struct procinfo
690 static struct procinfo * current_procinfo;
694 Looks up inferior_pid in the procinfo chain. Always returns a
695 struct procinfo *. If process can't be found, we error() out.
698 #define current_procinfo find_procinfo (inferior_pid, 0)
704 add_fd -- Add the fd to the poll/select list
708 static void add_fd (struct procinfo *);
712 Add the fd of the supplied procinfo to the list of fds used for
713 poll/select operations.
720 if (num_poll_list <= 0)
721 poll_list = (struct pollfd *) xmalloc (sizeof (struct pollfd));
723 poll_list = (struct pollfd *) xrealloc (poll_list,
725 * sizeof (struct pollfd));
726 poll_list[num_poll_list].fd = pi->ctl_fd;
728 poll_list[num_poll_list].events = POLLWRNORM;
730 poll_list[num_poll_list].events = POLLPRI;
740 remove_fd -- Remove the fd from the poll/select list
744 static void remove_fd (struct procinfo *);
748 Remove the fd of the supplied procinfo from the list of fds used
749 for poll/select operations.
758 for (i = 0; i < num_poll_list; i++)
760 if (poll_list[i].fd == pi->ctl_fd)
762 if (i != num_poll_list - 1)
763 memcpy (poll_list + i, poll_list + i + 1,
764 (num_poll_list - i - 1) * sizeof (struct pollfd));
768 if (num_poll_list == 0)
771 poll_list = (struct pollfd *) xrealloc (poll_list,
773 * sizeof (struct pollfd));
783 procfs_read_status - get procfs fd status
787 static int procfs_read_status (pi) struct procinfo *pi;
791 Given a pointer to a procinfo struct, get the status of
792 the status_fd in the appropriate way. Returns 0 on failure,
797 procfs_read_status (pi)
800 #ifdef PROCFS_USE_READ_WRITE
801 if ((lseek (pi->status_fd, 0, SEEK_SET) < 0) ||
802 (read (pi->status_fd, (char *) &pi->prstatus,
803 sizeof (gdb_prstatus_t)) != sizeof (gdb_prstatus_t)))
805 if (ioctl (pi->status_fd, PIOCSTATUS, &pi->prstatus) < 0)
816 procfs_write_pcwstop - send a PCWSTOP to procfs fd
820 static int procfs_write_pcwstop (pi) struct procinfo *pi;
824 Given a pointer to a procinfo struct, send a PCWSTOP to
825 the ctl_fd in the appropriate way. Returns 0 on failure,
830 procfs_write_pcwstop (pi)
833 #ifdef PROCFS_USE_READ_WRITE
835 if (write (pi->ctl_fd, (char *) &cmd, sizeof (long)) < 0)
837 if (ioctl (pi->ctl_fd, PIOCWSTOP, &pi->prstatus) < 0)
848 procfs_write_pckill - send a kill to procfs fd
852 static void procfs_write_pckill (pi) struct procinfo *pi;
856 Given a pointer to a procinfo struct, send a kill to
857 the ctl_fd in the appropriate way. Returns 0 on failure,
862 procfs_write_pckill (pi)
865 #ifdef PROCFS_USE_READ_WRITE
866 struct proc_ctl pctl;
869 write (pi->ctl_fd, &pctl, sizeof (struct proc_ctl));
872 ioctl (pi->ctl_fd, PIOCKILL, &signo);
876 static struct procinfo *
879 struct procinfo *pi, *next_pi;
885 set_sigint_trap (); /* Causes SIGINT to be passed on to the
893 num_fds = poll (poll_list, num_poll_list, -1);
896 if (num_fds < 0 && errno == EINTR)
898 print_sys_errmsg ("poll failed", errno);
899 error ("Poll failed, returned %d", num_fds);
901 #else /* LOSING_POLL */
902 pi = current_procinfo;
904 while (!procfs_write_pcwstop (pi))
908 /* Process exited. */
909 pi->prstatus.pr_flags = 0;
912 else if (errno != EINTR)
914 print_sys_errmsg (pi->pathname, errno);
915 error ("procfs_write_pcwstop failed");
919 #endif /* LOSING_POLL */
921 clear_sigint_trap ();
926 for (i = 0; i < num_poll_list && num_fds > 0; i++)
928 if (0 == (poll_list[i].revents &
929 (POLLWRNORM | POLLPRI | POLLERR | POLLHUP | POLLNVAL)))
931 for (pi = procinfo_list; pi; pi = next_pi)
934 if (poll_list[i].fd == pi->ctl_fd)
937 if ((poll_list[i].revents & POLLHUP) != 0 ||
938 !procfs_read_status(pi))
939 { /* The LWP has apparently terminated. */
940 if (num_poll_list <= 1)
942 pi->prstatus.pr_flags = 0;
947 printf_filtered ("LWP %d exited.\n",
948 (pi->pid >> 16) & 0xffff);
949 close_proc_file (pi);
951 continue; /* already another event to process */
953 goto wait_again; /* wait for another event */
960 error ("wait_fd: Couldn't find procinfo for fd %d\n",
963 #endif /* LOSING_POLL */
972 lookupdesc -- translate a value to a summary desc string
976 static char *lookupdesc (struct trans *transp, unsigned int val);
980 Given a pointer to a translation table and a value to be translated,
981 lookup the desc string and return it.
985 lookupdesc (transp, val)
986 struct trans *transp;
991 for (desc = NULL; transp -> name != NULL; transp++)
993 if (transp -> value == val)
995 desc = transp -> desc;
1000 /* Didn't find a translation for the specified value, set a default one. */
1013 lookupname -- translate a value to symbolic name
1017 static char *lookupname (struct trans *transp, unsigned int val,
1022 Given a pointer to a translation table, a value to be translated,
1023 and a default prefix to return if the value can't be translated,
1024 match the value with one of the translation table entries and
1025 return a pointer to the symbolic name.
1027 If no match is found it just returns the value as a printable string,
1028 with the given prefix. The previous such value, if any, is freed
1033 lookupname (transp, val, prefix)
1034 struct trans *transp;
1038 static char *locbuf;
1041 for (name = NULL; transp -> name != NULL; transp++)
1043 if (transp -> value == val)
1045 name = transp -> name;
1050 /* Didn't find a translation for the specified value, build a default
1051 one using the specified prefix and return it. The lifetime of
1052 the value is only until the next one is needed. */
1060 locbuf = xmalloc (strlen (prefix) + 16);
1061 sprintf (locbuf, "%s %u", prefix, val);
1071 struct sigcode *scp;
1073 static char locbuf[32];
1075 for (scp = siginfo_table; scp -> codename != NULL; scp++)
1077 if ((scp -> signo == sip -> si_signo) &&
1078 (scp -> code == sip -> si_code))
1080 name = scp -> codename;
1086 sprintf (locbuf, "sigcode %u", sip -> si_signo);
1096 struct sigcode *scp;
1099 for (scp = siginfo_table; scp -> codename != NULL; scp++)
1101 if ((scp -> signo == sip -> si_signo) &&
1102 (scp -> code == sip -> si_code))
1110 desc = "Unrecognized signal or trap use";
1119 syscallname - translate a system call number into a system call name
1123 char *syscallname (int syscallnum)
1127 Given a system call number, translate it into the printable name
1128 of a system call, or into "syscall <num>" if it is an unknown
1133 syscallname (syscallnum)
1136 static char locbuf[32];
1138 if (syscallnum >= 0 && syscallnum < MAX_SYSCALLS
1139 && syscall_table[syscallnum] != NULL)
1140 return syscall_table[syscallnum];
1143 sprintf (locbuf, "syscall %u", syscallnum);
1152 init_syscall_table - initialize syscall translation table
1156 void init_syscall_table (void)
1160 Dynamically initialize the translation table to convert system
1161 call numbers into printable system call names. Done once per
1162 gdb run, on initialization.
1166 This is awfully ugly, but preprocessor tricks to make it prettier
1167 tend to be nonportable.
1171 init_syscall_table ()
1173 #if defined (SYS_exit)
1174 syscall_table[SYS_exit] = "exit";
1176 #if defined (SYS_fork)
1177 syscall_table[SYS_fork] = "fork";
1179 #if defined (SYS_read)
1180 syscall_table[SYS_read] = "read";
1182 #if defined (SYS_write)
1183 syscall_table[SYS_write] = "write";
1185 #if defined (SYS_open)
1186 syscall_table[SYS_open] = "open";
1188 #if defined (SYS_close)
1189 syscall_table[SYS_close] = "close";
1191 #if defined (SYS_wait)
1192 syscall_table[SYS_wait] = "wait";
1194 #if defined (SYS_creat)
1195 syscall_table[SYS_creat] = "creat";
1197 #if defined (SYS_link)
1198 syscall_table[SYS_link] = "link";
1200 #if defined (SYS_unlink)
1201 syscall_table[SYS_unlink] = "unlink";
1203 #if defined (SYS_exec)
1204 syscall_table[SYS_exec] = "exec";
1206 #if defined (SYS_execv)
1207 syscall_table[SYS_execv] = "execv";
1209 #if defined (SYS_execve)
1210 syscall_table[SYS_execve] = "execve";
1212 #if defined (SYS_chdir)
1213 syscall_table[SYS_chdir] = "chdir";
1215 #if defined (SYS_time)
1216 syscall_table[SYS_time] = "time";
1218 #if defined (SYS_mknod)
1219 syscall_table[SYS_mknod] = "mknod";
1221 #if defined (SYS_chmod)
1222 syscall_table[SYS_chmod] = "chmod";
1224 #if defined (SYS_chown)
1225 syscall_table[SYS_chown] = "chown";
1227 #if defined (SYS_brk)
1228 syscall_table[SYS_brk] = "brk";
1230 #if defined (SYS_stat)
1231 syscall_table[SYS_stat] = "stat";
1233 #if defined (SYS_lseek)
1234 syscall_table[SYS_lseek] = "lseek";
1236 #if defined (SYS_getpid)
1237 syscall_table[SYS_getpid] = "getpid";
1239 #if defined (SYS_mount)
1240 syscall_table[SYS_mount] = "mount";
1242 #if defined (SYS_umount)
1243 syscall_table[SYS_umount] = "umount";
1245 #if defined (SYS_setuid)
1246 syscall_table[SYS_setuid] = "setuid";
1248 #if defined (SYS_getuid)
1249 syscall_table[SYS_getuid] = "getuid";
1251 #if defined (SYS_stime)
1252 syscall_table[SYS_stime] = "stime";
1254 #if defined (SYS_ptrace)
1255 syscall_table[SYS_ptrace] = "ptrace";
1257 #if defined (SYS_alarm)
1258 syscall_table[SYS_alarm] = "alarm";
1260 #if defined (SYS_fstat)
1261 syscall_table[SYS_fstat] = "fstat";
1263 #if defined (SYS_pause)
1264 syscall_table[SYS_pause] = "pause";
1266 #if defined (SYS_utime)
1267 syscall_table[SYS_utime] = "utime";
1269 #if defined (SYS_stty)
1270 syscall_table[SYS_stty] = "stty";
1272 #if defined (SYS_gtty)
1273 syscall_table[SYS_gtty] = "gtty";
1275 #if defined (SYS_access)
1276 syscall_table[SYS_access] = "access";
1278 #if defined (SYS_nice)
1279 syscall_table[SYS_nice] = "nice";
1281 #if defined (SYS_statfs)
1282 syscall_table[SYS_statfs] = "statfs";
1284 #if defined (SYS_sync)
1285 syscall_table[SYS_sync] = "sync";
1287 #if defined (SYS_kill)
1288 syscall_table[SYS_kill] = "kill";
1290 #if defined (SYS_fstatfs)
1291 syscall_table[SYS_fstatfs] = "fstatfs";
1293 #if defined (SYS_pgrpsys)
1294 syscall_table[SYS_pgrpsys] = "pgrpsys";
1296 #if defined (SYS_xenix)
1297 syscall_table[SYS_xenix] = "xenix";
1299 #if defined (SYS_dup)
1300 syscall_table[SYS_dup] = "dup";
1302 #if defined (SYS_pipe)
1303 syscall_table[SYS_pipe] = "pipe";
1305 #if defined (SYS_times)
1306 syscall_table[SYS_times] = "times";
1308 #if defined (SYS_profil)
1309 syscall_table[SYS_profil] = "profil";
1311 #if defined (SYS_plock)
1312 syscall_table[SYS_plock] = "plock";
1314 #if defined (SYS_setgid)
1315 syscall_table[SYS_setgid] = "setgid";
1317 #if defined (SYS_getgid)
1318 syscall_table[SYS_getgid] = "getgid";
1320 #if defined (SYS_signal)
1321 syscall_table[SYS_signal] = "signal";
1323 #if defined (SYS_msgsys)
1324 syscall_table[SYS_msgsys] = "msgsys";
1326 #if defined (SYS_sys3b)
1327 syscall_table[SYS_sys3b] = "sys3b";
1329 #if defined (SYS_sysi86)
1330 syscall_table[SYS_sysi86] = "sysi86";
1332 #if defined (SYS_acct)
1333 syscall_table[SYS_acct] = "acct";
1335 #if defined (SYS_shmsys)
1336 syscall_table[SYS_shmsys] = "shmsys";
1338 #if defined (SYS_semsys)
1339 syscall_table[SYS_semsys] = "semsys";
1341 #if defined (SYS_ioctl)
1342 syscall_table[SYS_ioctl] = "ioctl";
1344 #if defined (SYS_uadmin)
1345 syscall_table[SYS_uadmin] = "uadmin";
1347 #if defined (SYS_utssys)
1348 syscall_table[SYS_utssys] = "utssys";
1350 #if defined (SYS_fsync)
1351 syscall_table[SYS_fsync] = "fsync";
1353 #if defined (SYS_umask)
1354 syscall_table[SYS_umask] = "umask";
1356 #if defined (SYS_chroot)
1357 syscall_table[SYS_chroot] = "chroot";
1359 #if defined (SYS_fcntl)
1360 syscall_table[SYS_fcntl] = "fcntl";
1362 #if defined (SYS_ulimit)
1363 syscall_table[SYS_ulimit] = "ulimit";
1365 #if defined (SYS_rfsys)
1366 syscall_table[SYS_rfsys] = "rfsys";
1368 #if defined (SYS_rmdir)
1369 syscall_table[SYS_rmdir] = "rmdir";
1371 #if defined (SYS_mkdir)
1372 syscall_table[SYS_mkdir] = "mkdir";
1374 #if defined (SYS_getdents)
1375 syscall_table[SYS_getdents] = "getdents";
1377 #if defined (SYS_sysfs)
1378 syscall_table[SYS_sysfs] = "sysfs";
1380 #if defined (SYS_getmsg)
1381 syscall_table[SYS_getmsg] = "getmsg";
1383 #if defined (SYS_putmsg)
1384 syscall_table[SYS_putmsg] = "putmsg";
1386 #if defined (SYS_poll)
1387 syscall_table[SYS_poll] = "poll";
1389 #if defined (SYS_lstat)
1390 syscall_table[SYS_lstat] = "lstat";
1392 #if defined (SYS_symlink)
1393 syscall_table[SYS_symlink] = "symlink";
1395 #if defined (SYS_readlink)
1396 syscall_table[SYS_readlink] = "readlink";
1398 #if defined (SYS_setgroups)
1399 syscall_table[SYS_setgroups] = "setgroups";
1401 #if defined (SYS_getgroups)
1402 syscall_table[SYS_getgroups] = "getgroups";
1404 #if defined (SYS_fchmod)
1405 syscall_table[SYS_fchmod] = "fchmod";
1407 #if defined (SYS_fchown)
1408 syscall_table[SYS_fchown] = "fchown";
1410 #if defined (SYS_sigprocmask)
1411 syscall_table[SYS_sigprocmask] = "sigprocmask";
1413 #if defined (SYS_sigsuspend)
1414 syscall_table[SYS_sigsuspend] = "sigsuspend";
1416 #if defined (SYS_sigaltstack)
1417 syscall_table[SYS_sigaltstack] = "sigaltstack";
1419 #if defined (SYS_sigaction)
1420 syscall_table[SYS_sigaction] = "sigaction";
1422 #if defined (SYS_sigpending)
1423 syscall_table[SYS_sigpending] = "sigpending";
1425 #if defined (SYS_context)
1426 syscall_table[SYS_context] = "context";
1428 #if defined (SYS_evsys)
1429 syscall_table[SYS_evsys] = "evsys";
1431 #if defined (SYS_evtrapret)
1432 syscall_table[SYS_evtrapret] = "evtrapret";
1434 #if defined (SYS_statvfs)
1435 syscall_table[SYS_statvfs] = "statvfs";
1437 #if defined (SYS_fstatvfs)
1438 syscall_table[SYS_fstatvfs] = "fstatvfs";
1440 #if defined (SYS_nfssys)
1441 syscall_table[SYS_nfssys] = "nfssys";
1443 #if defined (SYS_waitsys)
1444 syscall_table[SYS_waitsys] = "waitsys";
1446 #if defined (SYS_sigsendsys)
1447 syscall_table[SYS_sigsendsys] = "sigsendsys";
1449 #if defined (SYS_hrtsys)
1450 syscall_table[SYS_hrtsys] = "hrtsys";
1452 #if defined (SYS_acancel)
1453 syscall_table[SYS_acancel] = "acancel";
1455 #if defined (SYS_async)
1456 syscall_table[SYS_async] = "async";
1458 #if defined (SYS_priocntlsys)
1459 syscall_table[SYS_priocntlsys] = "priocntlsys";
1461 #if defined (SYS_pathconf)
1462 syscall_table[SYS_pathconf] = "pathconf";
1464 #if defined (SYS_mincore)
1465 syscall_table[SYS_mincore] = "mincore";
1467 #if defined (SYS_mmap)
1468 syscall_table[SYS_mmap] = "mmap";
1470 #if defined (SYS_mprotect)
1471 syscall_table[SYS_mprotect] = "mprotect";
1473 #if defined (SYS_munmap)
1474 syscall_table[SYS_munmap] = "munmap";
1476 #if defined (SYS_fpathconf)
1477 syscall_table[SYS_fpathconf] = "fpathconf";
1479 #if defined (SYS_vfork)
1480 syscall_table[SYS_vfork] = "vfork";
1482 #if defined (SYS_fchdir)
1483 syscall_table[SYS_fchdir] = "fchdir";
1485 #if defined (SYS_readv)
1486 syscall_table[SYS_readv] = "readv";
1488 #if defined (SYS_writev)
1489 syscall_table[SYS_writev] = "writev";
1491 #if defined (SYS_xstat)
1492 syscall_table[SYS_xstat] = "xstat";
1494 #if defined (SYS_lxstat)
1495 syscall_table[SYS_lxstat] = "lxstat";
1497 #if defined (SYS_fxstat)
1498 syscall_table[SYS_fxstat] = "fxstat";
1500 #if defined (SYS_xmknod)
1501 syscall_table[SYS_xmknod] = "xmknod";
1503 #if defined (SYS_clocal)
1504 syscall_table[SYS_clocal] = "clocal";
1506 #if defined (SYS_setrlimit)
1507 syscall_table[SYS_setrlimit] = "setrlimit";
1509 #if defined (SYS_getrlimit)
1510 syscall_table[SYS_getrlimit] = "getrlimit";
1512 #if defined (SYS_lchown)
1513 syscall_table[SYS_lchown] = "lchown";
1515 #if defined (SYS_memcntl)
1516 syscall_table[SYS_memcntl] = "memcntl";
1518 #if defined (SYS_getpmsg)
1519 syscall_table[SYS_getpmsg] = "getpmsg";
1521 #if defined (SYS_putpmsg)
1522 syscall_table[SYS_putpmsg] = "putpmsg";
1524 #if defined (SYS_rename)
1525 syscall_table[SYS_rename] = "rename";
1527 #if defined (SYS_uname)
1528 syscall_table[SYS_uname] = "uname";
1530 #if defined (SYS_setegid)
1531 syscall_table[SYS_setegid] = "setegid";
1533 #if defined (SYS_sysconfig)
1534 syscall_table[SYS_sysconfig] = "sysconfig";
1536 #if defined (SYS_adjtime)
1537 syscall_table[SYS_adjtime] = "adjtime";
1539 #if defined (SYS_systeminfo)
1540 syscall_table[SYS_systeminfo] = "systeminfo";
1542 #if defined (SYS_seteuid)
1543 syscall_table[SYS_seteuid] = "seteuid";
1545 #if defined (SYS_sproc)
1546 syscall_table[SYS_sproc] = "sproc";
1548 #if defined (SYS_keyctl)
1549 syscall_table[SYS_keyctl] = "keyctl";
1551 #if defined (SYS_secsys)
1552 syscall_table[SYS_secsys] = "secsys";
1554 #if defined (SYS_filepriv)
1555 syscall_table[SYS_filepriv] = "filepriv";
1557 #if defined (SYS_procpriv)
1558 syscall_table[SYS_procpriv] = "procpriv";
1560 #if defined (SYS_devstat)
1561 syscall_table[SYS_devstat] = "devstat";
1563 #if defined (SYS_aclipc)
1564 syscall_table[SYS_aclipc] = "aclipc";
1566 #if defined (SYS_fdevstat)
1567 syscall_table[SYS_fdevstat] = "fdevstat";
1569 #if defined (SYS_flvlfile)
1570 syscall_table[SYS_flvlfile] = "flvlfile";
1572 #if defined (SYS_lvlfile)
1573 syscall_table[SYS_lvlfile] = "lvlfile";
1575 #if defined (SYS_lvlequal)
1576 syscall_table[SYS_lvlequal] = "lvlequal";
1578 #if defined (SYS_lvlproc)
1579 syscall_table[SYS_lvlproc] = "lvlproc";
1581 #if defined (SYS_lvlipc)
1582 syscall_table[SYS_lvlipc] = "lvlipc";
1584 #if defined (SYS_acl)
1585 syscall_table[SYS_acl] = "acl";
1587 #if defined (SYS_auditevt)
1588 syscall_table[SYS_auditevt] = "auditevt";
1590 #if defined (SYS_auditctl)
1591 syscall_table[SYS_auditctl] = "auditctl";
1593 #if defined (SYS_auditdmp)
1594 syscall_table[SYS_auditdmp] = "auditdmp";
1596 #if defined (SYS_auditlog)
1597 syscall_table[SYS_auditlog] = "auditlog";
1599 #if defined (SYS_auditbuf)
1600 syscall_table[SYS_auditbuf] = "auditbuf";
1602 #if defined (SYS_lvldom)
1603 syscall_table[SYS_lvldom] = "lvldom";
1605 #if defined (SYS_lvlvfs)
1606 syscall_table[SYS_lvlvfs] = "lvlvfs";
1608 #if defined (SYS_mkmld)
1609 syscall_table[SYS_mkmld] = "mkmld";
1611 #if defined (SYS_mldmode)
1612 syscall_table[SYS_mldmode] = "mldmode";
1614 #if defined (SYS_secadvise)
1615 syscall_table[SYS_secadvise] = "secadvise";
1617 #if defined (SYS_online)
1618 syscall_table[SYS_online] = "online";
1620 #if defined (SYS_setitimer)
1621 syscall_table[SYS_setitimer] = "setitimer";
1623 #if defined (SYS_getitimer)
1624 syscall_table[SYS_getitimer] = "getitimer";
1626 #if defined (SYS_gettimeofday)
1627 syscall_table[SYS_gettimeofday] = "gettimeofday";
1629 #if defined (SYS_settimeofday)
1630 syscall_table[SYS_settimeofday] = "settimeofday";
1632 #if defined (SYS_lwp_create)
1633 syscall_table[SYS_lwp_create] = "_lwp_create";
1635 #if defined (SYS_lwp_exit)
1636 syscall_table[SYS_lwp_exit] = "_lwp_exit";
1638 #if defined (SYS_lwp_wait)
1639 syscall_table[SYS_lwp_wait] = "_lwp_wait";
1641 #if defined (SYS_lwp_self)
1642 syscall_table[SYS_lwp_self] = "_lwp_self";
1644 #if defined (SYS_lwp_info)
1645 syscall_table[SYS_lwp_info] = "_lwp_info";
1647 #if defined (SYS_lwp_private)
1648 syscall_table[SYS_lwp_private] = "_lwp_private";
1650 #if defined (SYS_processor_bind)
1651 syscall_table[SYS_processor_bind] = "processor_bind";
1653 #if defined (SYS_processor_exbind)
1654 syscall_table[SYS_processor_exbind] = "processor_exbind";
1656 #if defined (SYS_prepblock)
1657 syscall_table[SYS_prepblock] = "prepblock";
1659 #if defined (SYS_block)
1660 syscall_table[SYS_block] = "block";
1662 #if defined (SYS_rdblock)
1663 syscall_table[SYS_rdblock] = "rdblock";
1665 #if defined (SYS_unblock)
1666 syscall_table[SYS_unblock] = "unblock";
1668 #if defined (SYS_cancelblock)
1669 syscall_table[SYS_cancelblock] = "cancelblock";
1671 #if defined (SYS_pread)
1672 syscall_table[SYS_pread] = "pread";
1674 #if defined (SYS_pwrite)
1675 syscall_table[SYS_pwrite] = "pwrite";
1677 #if defined (SYS_truncate)
1678 syscall_table[SYS_truncate] = "truncate";
1680 #if defined (SYS_ftruncate)
1681 syscall_table[SYS_ftruncate] = "ftruncate";
1683 #if defined (SYS_lwp_kill)
1684 syscall_table[SYS_lwp_kill] = "_lwp_kill";
1686 #if defined (SYS_sigwait)
1687 syscall_table[SYS_sigwait] = "sigwait";
1689 #if defined (SYS_fork1)
1690 syscall_table[SYS_fork1] = "fork1";
1692 #if defined (SYS_forkall)
1693 syscall_table[SYS_forkall] = "forkall";
1695 #if defined (SYS_modload)
1696 syscall_table[SYS_modload] = "modload";
1698 #if defined (SYS_moduload)
1699 syscall_table[SYS_moduload] = "moduload";
1701 #if defined (SYS_modpath)
1702 syscall_table[SYS_modpath] = "modpath";
1704 #if defined (SYS_modstat)
1705 syscall_table[SYS_modstat] = "modstat";
1707 #if defined (SYS_modadm)
1708 syscall_table[SYS_modadm] = "modadm";
1710 #if defined (SYS_getksym)
1711 syscall_table[SYS_getksym] = "getksym";
1713 #if defined (SYS_lwp_suspend)
1714 syscall_table[SYS_lwp_suspend] = "_lwp_suspend";
1716 #if defined (SYS_lwp_continue)
1717 syscall_table[SYS_lwp_continue] = "_lwp_continue";
1719 #if defined (SYS_priocntllst)
1720 syscall_table[SYS_priocntllst] = "priocntllst";
1722 #if defined (SYS_sleep)
1723 syscall_table[SYS_sleep] = "sleep";
1725 #if defined (SYS_lwp_sema_wait)
1726 syscall_table[SYS_lwp_sema_wait] = "_lwp_sema_wait";
1728 #if defined (SYS_lwp_sema_post)
1729 syscall_table[SYS_lwp_sema_post] = "_lwp_sema_post";
1731 #if defined (SYS_lwp_sema_trywait)
1732 syscall_table[SYS_lwp_sema_trywait] = "lwp_sema_trywait";
1734 #if defined(SYS_fstatvfs64)
1735 syscall_table[SYS_fstatvfs64] = "fstatvfs64";
1737 #if defined(SYS_statvfs64)
1738 syscall_table[SYS_statvfs64] = "statvfs64";
1740 #if defined(SYS_ftruncate64)
1741 syscall_table[SYS_ftruncate64] = "ftruncate64";
1743 #if defined(SYS_truncate64)
1744 syscall_table[SYS_truncate64] = "truncate64";
1746 #if defined(SYS_getrlimit64)
1747 syscall_table[SYS_getrlimit64] = "getrlimit64";
1749 #if defined(SYS_setrlimit64)
1750 syscall_table[SYS_setrlimit64] = "setrlimit64";
1752 #if defined(SYS_lseek64)
1753 syscall_table[SYS_lseek64] = "lseek64";
1755 #if defined(SYS_mmap64)
1756 syscall_table[SYS_mmap64] = "mmap64";
1758 #if defined(SYS_pread64)
1759 syscall_table[SYS_pread64] = "pread64";
1761 #if defined(SYS_creat64)
1762 syscall_table[SYS_creat64] = "creat64";
1764 #if defined(SYS_dshmsys)
1765 syscall_table[SYS_dshmsys] = "dshmsys";
1767 #if defined(SYS_invlpg)
1768 syscall_table[SYS_invlpg] = "invlpg";
1770 #if defined(SYS_cg_ids)
1771 syscall_table[SYS_cg_ids] = "cg_ids";
1773 #if defined(SYS_cg_processors)
1774 syscall_table[SYS_cg_processors] = "cg_processors";
1776 #if defined(SYS_cg_info)
1777 syscall_table[SYS_cg_info] = "cg_info";
1779 #if defined(SYS_cg_bind)
1780 syscall_table[SYS_cg_bind] = "cg_bind";
1782 #if defined(SYS_cg_current)
1783 syscall_table[SYS_cg_current] = "cg_current";
1785 #if defined(SYS_cg_memloc)
1786 syscall_table[SYS_cg_memloc] = "cg_memloc";
1794 procfs_kill_inferior - kill any currently inferior
1798 void procfs_kill_inferior (void)
1802 Kill any current inferior.
1806 Kills even attached inferiors. Presumably the user has already
1807 been prompted that the inferior is an attached one rather than
1808 one started by gdb. (FIXME?)
1813 procfs_kill_inferior ()
1815 target_mourn_inferior ();
1822 unconditionally_kill_inferior - terminate the inferior
1826 static void unconditionally_kill_inferior (struct procinfo *)
1830 Kill the specified inferior.
1834 A possibly useful enhancement would be to first try sending
1835 the inferior a terminate signal, politely asking it to commit
1836 suicide, before we murder it (we could call that
1837 politely_kill_inferior()).
1842 unconditionally_kill_inferior (pi)
1843 struct procinfo *pi;
1846 struct proc_ctl pctl;
1848 ppid = pi->prstatus.pr_ppid;
1850 #ifdef PROCFS_NEED_CLEAR_CURSIG_FOR_KILL
1851 /* Alpha OSF/1-3.x procfs needs a clear of the current signal
1852 before the PIOCKILL, otherwise it might generate a corrupted core
1853 file for the inferior. */
1854 ioctl (pi->ctl_fd, PIOCSSIG, NULL);
1856 #ifdef PROCFS_NEED_PIOCSSIG_FOR_KILL
1857 /* Alpha OSF/1-2.x procfs needs a PIOCSSIG call with a SIGKILL signal
1858 to kill the inferior, otherwise it might remain stopped with a
1860 We do not check the result of the PIOCSSIG, the inferior might have
1863 struct siginfo newsiginfo;
1865 memset ((char *) &newsiginfo, 0, sizeof (newsiginfo));
1866 newsiginfo.si_signo = SIGKILL;
1867 newsiginfo.si_code = 0;
1868 newsiginfo.si_errno = 0;
1869 newsiginfo.si_pid = getpid ();
1870 newsiginfo.si_uid = getuid ();
1871 ioctl (pi->ctl_fd, PIOCSSIG, &newsiginfo);
1873 #else /* PROCFS_NEED_PIOCSSIG_FOR_KILL */
1874 procfs_write_pckill (pi);
1875 #endif /* PROCFS_NEED_PIOCSSIG_FOR_KILL */
1877 close_proc_file (pi);
1879 /* Only wait() for our direct children. Our grandchildren zombies are killed
1880 by the death of their parents. */
1882 if (ppid == getpid())
1890 procfs_xfer_memory -- copy data to or from inferior memory space
1894 int procfs_xfer_memory (CORE_ADDR memaddr, char *myaddr, int len,
1895 int dowrite, struct target_ops target)
1899 Copy LEN bytes to/from inferior's memory starting at MEMADDR
1900 from/to debugger memory starting at MYADDR. Copy from inferior
1901 if DOWRITE is zero or to inferior if DOWRITE is nonzero.
1903 Returns the length copied, which is either the LEN argument or
1904 zero. This xfer function does not do partial moves, since procfs_ops
1905 doesn't allow memory operations to cross below us in the target stack
1910 The /proc interface makes this an almost trivial task.
1914 procfs_xfer_memory (memaddr, myaddr, len, dowrite, target)
1919 struct target_ops *target; /* ignored */
1922 struct procinfo *pi;
1924 pi = current_procinfo;
1926 if (lseek(pi->as_fd, (off_t) memaddr, SEEK_SET) == (off_t) memaddr)
1930 nbytes = write (pi->as_fd, myaddr, len);
1934 nbytes = read (pi->as_fd, myaddr, len);
1948 procfs_store_registers -- copy register values back to inferior
1952 void procfs_store_registers (int regno)
1956 Store our current register values back into the inferior. If
1957 REGNO is -1 then store all the register, otherwise store just
1958 the value specified by REGNO.
1962 If we are storing only a single register, we first have to get all
1963 the current values from the process, overwrite the desired register
1964 in the gregset with the one we want from gdb's registers, and then
1965 send the whole set back to the process. For writing all the
1966 registers, all we have to do is generate the gregset and send it to
1969 Also note that the process has to be stopped on an event of interest
1970 for this to work, which basically means that it has to have been
1971 run under the control of one of the other /proc ioctl calls and not
1972 ptrace. Since we don't use ptrace anyway, we don't worry about this
1973 fine point, but it is worth noting for future reference.
1975 Gdb is confused about what this function is supposed to return.
1976 Some versions return a value, others return nothing. Some are
1977 declared to return a value and actually return nothing. Gdb ignores
1978 anything returned. (FIXME)
1983 procfs_store_registers (regno)
1986 struct procinfo *pi;
1987 #ifdef PROCFS_USE_READ_WRITE
1988 struct greg_ctl greg;
1989 struct fpreg_ctl fpreg;
1992 pi = current_procinfo;
1994 #ifdef PROCFS_USE_READ_WRITE
1997 procfs_read_status (pi);
1998 memcpy ((char *) &greg.gregset,
1999 (char *) &pi->prstatus.pr_lwp.pr_context.uc_mcontext.gregs,
2000 sizeof (gregset_t));
2002 fill_gregset (&greg.gregset, regno);
2004 write (pi->ctl_fd, &greg, sizeof (greg));
2005 #else /* PROCFS_USE_READ_WRITE */
2008 ioctl (pi->ctl_fd, PIOCGREG, &pi->gregset.gregset);
2010 fill_gregset (&pi->gregset.gregset, regno);
2011 ioctl (pi->ctl_fd, PIOCSREG, &pi->gregset.gregset);
2012 #endif /* PROCFS_USE_READ_WRITE */
2014 #if defined (FP0_REGNUM)
2016 /* Now repeat everything using the floating point register set, if the
2017 target has floating point hardware. Since we ignore the returned value,
2018 we'll never know whether it worked or not anyway. */
2020 #ifdef PROCFS_USE_READ_WRITE
2023 procfs_read_status (pi);
2024 memcpy ((char *) &fpreg.fpregset,
2025 (char *) &pi->prstatus.pr_lwp.pr_context.uc_mcontext.fpregs,
2026 sizeof (fpregset_t));
2028 fill_fpregset (&fpreg.fpregset, regno);
2029 fpreg.cmd = PCSFPREG;
2030 write (pi->ctl_fd, &fpreg, sizeof (fpreg));
2031 #else /* PROCFS_USE_READ_WRITE */
2034 ioctl (pi->ctl_fd, PIOCGFPREG, &pi->fpregset.fpregset);
2036 fill_fpregset (&pi->fpregset.fpregset, regno);
2037 ioctl (pi->ctl_fd, PIOCSFPREG, &pi->fpregset.fpregset);
2038 #endif /* PROCFS_USE_READ_WRITE */
2040 #endif /* FP0_REGNUM */
2048 init_procinfo - setup a procinfo struct and connect it to a process
2052 struct procinfo * init_procinfo (int pid)
2056 Allocate a procinfo structure, open the /proc file and then set up the
2057 set of signals and faults that are to be traced. Returns a pointer to
2058 the new procinfo structure.
2062 If proc_init_failed ever gets called, control returns to the command
2063 processing loop via the standard error handling code.
2067 static struct procinfo *
2068 init_procinfo (pid, kill)
2072 struct procinfo *pi = (struct procinfo *)
2073 xmalloc (sizeof (struct procinfo));
2074 struct sig_ctl sctl;
2075 struct flt_ctl fctl;
2077 memset ((char *) pi, 0, sizeof (*pi));
2078 if (!open_proc_file (pid, pi, O_RDWR, 1))
2079 proc_init_failed (pi, "can't open process file", kill);
2081 /* open_proc_file may modify pid. */
2085 /* Add new process to process info list */
2087 pi->next = procinfo_list;
2090 add_fd (pi); /* Add to list for poll/select */
2092 /* Remember some things about the inferior that we will, or might, change
2093 so that we can restore them when we detach. */
2095 memcpy ((char *) &pi->saved_trace.sigset,
2096 (char *) &pi->prstatus.pr_sigtrace, sizeof (sigset_t));
2097 memcpy ((char *) &pi->saved_fltset.fltset,
2098 (char *) &pi->prstatus.pr_flttrace, sizeof (fltset_t));
2099 memcpy ((char *) &pi->saved_entryset.sysset,
2100 (char *) &pi->prstatus.pr_sysentry, sizeof (sysset_t));
2101 memcpy ((char *) &pi->saved_exitset.sysset,
2102 (char *) &pi->prstatus.pr_sysexit, sizeof (sysset_t));
2104 /* Set up trace and fault sets, as gdb expects them. */
2106 prfillset (&sctl.sigset);
2107 notice_signals (pi, &sctl);
2108 prfillset (&fctl.fltset);
2109 prdelset (&fctl.fltset, FLTPAGE);
2111 #else /* ! UNIXWARE */
2112 ioctl (pi->ctl_fd, PIOCGTRACE, &pi->saved_trace.sigset);
2113 ioctl (pi->ctl_fd, PIOCGHOLD, &pi->saved_sighold.sigset);
2114 ioctl (pi->ctl_fd, PIOCGFAULT, &pi->saved_fltset.fltset);
2115 ioctl (pi->ctl_fd, PIOCGENTRY, &pi->saved_entryset.sysset);
2116 ioctl (pi->ctl_fd, PIOCGEXIT, &pi->saved_exitset.sysset);
2118 /* Set up trace and fault sets, as gdb expects them. */
2120 memset ((char *) &pi->prrun, 0, sizeof (pi->prrun));
2121 prfillset (&pi->prrun.pr_trace);
2122 procfs_notice_signals (pid);
2123 prfillset (&pi->prrun.pr_fault);
2124 prdelset (&pi->prrun.pr_fault, FLTPAGE);
2125 #ifdef PROCFS_DONT_TRACE_FAULTS
2126 premptyset (&pi->prrun.pr_fault);
2128 #endif /* UNIXWARE */
2130 if (!procfs_read_status (pi))
2131 proc_init_failed (pi, "procfs_read_status failed", kill);
2140 create_procinfo - initialize access to a /proc entry
2144 struct procinfo * create_procinfo (int pid)
2148 Allocate a procinfo structure, open the /proc file and then set up the
2149 set of signals and faults that are to be traced. Returns a pointer to
2150 the new procinfo structure.
2154 If proc_init_failed ever gets called, control returns to the command
2155 processing loop via the standard error handling code.
2159 static struct procinfo *
2160 create_procinfo (pid)
2163 struct procinfo *pi;
2164 struct sig_ctl sctl;
2165 struct flt_ctl fctl;
2167 pi = find_procinfo (pid, 1);
2169 return pi; /* All done! It already exists */
2171 pi = init_procinfo (pid, 1);
2174 /* A bug in Solaris (2.5 at least) causes PIOCWSTOP to hang on LWPs that are
2175 already stopped, even if they all have PR_ASYNC set. */
2176 if (!(pi->prstatus.pr_flags & PR_STOPPED))
2178 if (!procfs_write_pcwstop (pi))
2179 proc_init_failed (pi, "procfs_write_pcwstop failed", 1);
2181 #ifdef PROCFS_USE_READ_WRITE
2182 fctl.cmd = PCSFAULT;
2183 if (write (pi->ctl_fd, (char *) &fctl, sizeof (struct flt_ctl)) < 0)
2184 proc_init_failed (pi, "PCSFAULT failed", 1);
2186 if (ioctl (pi->ctl_fd, PIOCSFAULT, &pi->prrun.pr_fault) < 0)
2187 proc_init_failed (pi, "PIOCSFAULT failed", 1);
2197 procfs_exit_handler - handle entry into the _exit syscall
2201 int procfs_exit_handler (pi, syscall_num, why, rtnvalp, statvalp)
2205 This routine is called when an inferior process enters the _exit()
2206 system call. It continues the process, and then collects the exit
2207 status and pid which are returned in *statvalp and *rtnvalp. After
2208 that it returns non-zero to indicate that procfs_wait should wake up.
2211 There is probably a better way to do this.
2216 procfs_exit_handler (pi, syscall_num, why, rtnvalp, statvalp)
2217 struct procinfo *pi;
2223 struct procinfo *temp_pi, *next_pi;
2224 struct proc_ctl pctl;
2228 pctl.data = PRCFAULT;
2230 pi->prrun.pr_flags = PRCFAULT;
2233 #ifdef PROCFS_USE_READ_WRITE
2234 if (write (pi->ctl_fd, (char *)&pctl, sizeof (struct proc_ctl)) < 0)
2236 if (ioctl (pi->ctl_fd, PIOCRUN, &pi->prrun) != 0)
2238 perror_with_name (pi->pathname);
2242 /* Claim it exited (don't call wait). */
2244 printf_filtered ("(attached process has exited)\n");
2246 *rtnvalp = inferior_pid;
2250 *rtnvalp = wait (statvalp);
2255 /* Close ALL open proc file handles,
2256 except the one that called SYS_exit. */
2257 for (temp_pi = procinfo_list; temp_pi; temp_pi = next_pi)
2259 next_pi = temp_pi->next;
2261 continue; /* Handled below */
2262 close_proc_file (temp_pi);
2271 procfs_exec_handler - handle exit from the exec family of syscalls
2275 int procfs_exec_handler (pi, syscall_num, why, rtnvalp, statvalp)
2279 This routine is called when an inferior process is about to finish any
2280 of the exec() family of system calls. It pretends that we got a
2281 SIGTRAP (for compatibility with ptrace behavior), and returns non-zero
2282 to tell procfs_wait to wake up.
2285 This need for compatibility with ptrace is questionable. In the
2286 future, it shouldn't be necessary.
2291 procfs_exec_handler (pi, syscall_num, why, rtnvalp, statvalp)
2292 struct procinfo *pi;
2298 *statvalp = (SIGTRAP << 8) | 0177;
2303 #if defined(SYS_sproc) && !defined(UNIXWARE)
2304 /* IRIX lwp creation system call */
2310 procfs_sproc_handler - handle exit from the sproc syscall
2314 int procfs_sproc_handler (pi, syscall_num, why, rtnvalp, statvalp)
2318 This routine is called when an inferior process is about to finish an
2319 sproc() system call. This is the system call that IRIX uses to create
2320 a lightweight process. When the target process gets this event, we can
2321 look at rval1 to find the new child processes ID, and create a new
2322 procinfo struct from that.
2324 After that, it pretends that we got a SIGTRAP, and returns non-zero
2325 to tell procfs_wait to wake up. Subsequently, wait_for_inferior gets
2326 woken up, sees the new process and continues it.
2329 We actually never see the child exiting from sproc because we will
2330 shortly stop the child with PIOCSTOP, which is then registered as the
2335 procfs_sproc_handler (pi, syscall_num, why, rtnvalp, statvalp)
2336 struct procinfo *pi;
2342 /* We've just detected the completion of an sproc system call. Now we need to
2343 setup a procinfo struct for this thread, and notify the thread system of the
2346 /* If sproc failed, then nothing interesting happened. Continue the process
2347 and go back to sleep. */
2349 if (pi->prstatus.pr_errno != 0)
2351 pi->prrun.pr_flags &= PRSTEP;
2352 pi->prrun.pr_flags |= PRCFAULT;
2354 if (ioctl (pi->ctl_fd, PIOCRUN, &pi->prrun) != 0)
2355 perror_with_name (pi->pathname);
2360 /* At this point, the new thread is stopped at it's first instruction, and
2361 the parent is stopped at the exit from sproc. */
2363 /* Notify the caller of the arrival of a new thread. */
2364 create_procinfo (pi->prstatus.pr_rval1);
2366 *rtnvalp = pi->prstatus.pr_rval1;
2367 *statvalp = (SIGTRAP << 8) | 0177;
2376 procfs_fork_handler - handle exit from the fork syscall
2380 int procfs_fork_handler (pi, syscall_num, why, rtnvalp, statvalp)
2384 This routine is called when an inferior process is about to finish a
2385 fork() system call. We will open up the new process, and then close
2386 it, which releases it from the clutches of the debugger.
2388 After that, we continue the target process as though nothing had
2392 This is necessary for IRIX because we have to set PR_FORK in order
2393 to catch the creation of lwps (via sproc()). When an actual fork
2394 occurs, it becomes necessary to reset the forks debugger flags and
2395 continue it because we can't hack multiple processes yet.
2399 procfs_fork_handler (pi, syscall_num, why, rtnvalp, statvalp)
2400 struct procinfo *pi;
2406 struct procinfo *pitemp;
2408 /* At this point, we've detected the completion of a fork (or vfork) call in
2409 our child. The grandchild is also stopped because we set inherit-on-fork
2410 earlier. (Note that nobody has the grandchilds' /proc file open at this
2411 point.) We will release the grandchild from the debugger by opening it's
2412 /proc file and then closing it. Since run-on-last-close is set, the
2413 grandchild continues on its' merry way. */
2416 pitemp = create_procinfo (pi->prstatus.pr_rval1);
2418 close_proc_file (pitemp);
2420 if (ioctl (pi->ctl_fd, PIOCRUN, &pi->prrun) != 0)
2421 perror_with_name (pi->pathname);
2425 #endif /* SYS_sproc && !UNIXWARE */
2431 procfs_set_inferior_syscall_traps - setup the syscall traps
2435 void procfs_set_inferior_syscall_traps (struct procinfo *pip)
2439 Called for each "procinfo" (process, thread, or LWP) in the
2440 inferior, to register for notification of and handlers for
2441 syscall traps in the inferior.
2446 procfs_set_inferior_syscall_traps (pip)
2447 struct procinfo *pip;
2449 procfs_set_syscall_trap (pip, SYS_exit, PROCFS_SYSCALL_ENTRY,
2450 procfs_exit_handler);
2452 #ifndef PRFS_STOPEXEC
2454 procfs_set_syscall_trap (pip, SYS_exec, PROCFS_SYSCALL_EXIT,
2455 procfs_exec_handler);
2458 procfs_set_syscall_trap (pip, SYS_execv, PROCFS_SYSCALL_EXIT,
2459 procfs_exec_handler);
2462 procfs_set_syscall_trap (pip, SYS_execve, PROCFS_SYSCALL_EXIT,
2463 procfs_exec_handler);
2465 #endif /* PRFS_STOPEXEC */
2467 /* Setup traps on exit from sproc() */
2470 procfs_set_syscall_trap (pip, SYS_sproc, PROCFS_SYSCALL_EXIT,
2471 procfs_sproc_handler);
2472 procfs_set_syscall_trap (pip, SYS_fork, PROCFS_SYSCALL_EXIT,
2473 procfs_fork_handler);
2475 procfs_set_syscall_trap (pip, SYS_vfork, PROCFS_SYSCALL_EXIT,
2476 procfs_fork_handler);
2478 /* Turn on inherit-on-fork flag so that all children of the target process
2479 start with tracing flags set. This allows us to trap lwp creation. Note
2480 that we also have to trap on fork and vfork in order to disable all tracing
2481 in the targets child processes. */
2483 modify_inherit_on_fork_flag (pip->ctl_fd, 1);
2486 #ifdef SYS_lwp_create
2487 procfs_set_syscall_trap (pip, SYS_lwp_create, PROCFS_SYSCALL_EXIT,
2488 procfs_lwp_creation_handler);
2496 procfs_init_inferior - initialize target vector and access to a
2501 int procfs_init_inferior (int pid)
2505 When gdb starts an inferior, this function is called in the parent
2506 process immediately after the fork. It waits for the child to stop
2507 on the return from the exec system call (the child itself takes care
2508 of ensuring that this is set up), then sets up the set of signals
2509 and faults that are to be traced. Returns the pid, which may have had
2510 the thread-id added to it.
2514 If proc_init_failed ever gets called, control returns to the command
2515 processing loop via the standard error handling code.
2520 procfs_init_inferior (pid)
2523 struct procinfo *pip;
2525 push_target (&procfs_ops);
2527 pip = create_procinfo (pid);
2529 procfs_set_inferior_syscall_traps (pip);
2531 /* create_procinfo may change the pid, so we have to update inferior_pid
2532 here before calling other gdb routines that need the right pid. */
2537 add_thread (pip -> pid); /* Setup initial thread */
2539 #ifdef START_INFERIOR_TRAPS_EXPECTED
2540 startup_inferior (START_INFERIOR_TRAPS_EXPECTED);
2542 /* One trap to exec the shell, one to exec the program being debugged. */
2543 startup_inferior (2);
2553 procfs_notice_signals
2557 static void procfs_notice_signals (int pid);
2561 When the user changes the state of gdb's signal handling via the
2562 "handle" command, this function gets called to see if any change
2563 in the /proc interface is required. It is also called internally
2564 by other /proc interface functions to initialize the state of
2565 the traced signal set.
2567 One thing it does is that signals for which the state is "nostop",
2568 "noprint", and "pass", have their trace bits reset in the pr_trace
2569 field, so that they are no longer traced. This allows them to be
2570 delivered directly to the inferior without the debugger ever being
2575 procfs_notice_signals (pid)
2578 struct procinfo *pi;
2579 struct sig_ctl sctl;
2581 pi = find_procinfo (pid, 0);
2584 premptyset (&sctl.sigset);
2586 sctl.sigset = pi->prrun.pr_trace;
2589 notice_signals (pi, &sctl);
2592 pi->prrun.pr_trace = sctl.sigset;
2597 notice_signals (pi, sctl)
2598 struct procinfo *pi;
2599 struct sig_ctl *sctl;
2603 for (signo = 0; signo < NSIG; signo++)
2605 if (signal_stop_state (target_signal_from_host (signo)) == 0 &&
2606 signal_print_state (target_signal_from_host (signo)) == 0 &&
2607 signal_pass_state (target_signal_from_host (signo)) == 1)
2609 prdelset (&sctl->sigset, signo);
2613 praddset (&sctl->sigset, signo);
2616 #ifdef PROCFS_USE_READ_WRITE
2617 sctl->cmd = PCSTRACE;
2618 if (write (pi->ctl_fd, (char *) sctl, sizeof (struct sig_ctl)) < 0)
2620 if (ioctl (pi->ctl_fd, PIOCSTRACE, &sctl->sigset))
2623 print_sys_errmsg ("PIOCSTRACE failed", errno);
2631 proc_set_exec_trap -- arrange for exec'd child to halt at startup
2635 void proc_set_exec_trap (void)
2639 This function is called in the child process when starting up
2640 an inferior, prior to doing the exec of the actual inferior.
2641 It sets the child process's exitset to make exit from the exec
2642 system call an event of interest to stop on, and then simply
2643 returns. The child does the exec, the system call returns, and
2644 the child stops at the first instruction, ready for the gdb
2645 parent process to take control of it.
2649 We need to use all local variables since the child may be sharing
2650 it's data space with the parent, if vfork was used rather than
2653 Also note that we want to turn off the inherit-on-fork flag in
2654 the child process so that any grand-children start with all
2655 tracing flags cleared.
2659 proc_set_exec_trap ()
2661 struct sys_ctl exitset;
2662 struct sys_ctl entryset;
2663 char procname[MAX_PROC_NAME_SIZE];
2666 sprintf (procname, CTL_PROC_NAME_FMT, getpid ());
2668 if ((fd = open (procname, O_WRONLY)) < 0)
2670 if ((fd = open (procname, O_RDWR)) < 0)
2674 gdb_flush (gdb_stderr);
2677 premptyset (&exitset.sysset);
2678 premptyset (&entryset.sysset);
2680 #ifdef PRFS_STOPEXEC
2681 /* Under Alpha OSF/1 we have to use a PIOCSSPCACT ioctl to trace
2682 exits from exec system calls because of the user level loader. */
2686 if (ioctl (fd, PIOCGSPCACT, &prfs_flags) < 0)
2689 gdb_flush (gdb_stderr);
2692 prfs_flags |= PRFS_STOPEXEC;
2693 if (ioctl (fd, PIOCSSPCACT, &prfs_flags) < 0)
2696 gdb_flush (gdb_stderr);
2700 #else /* PRFS_STOPEXEC */
2702 Not all systems with /proc have all the exec* syscalls with the same
2703 names. On the SGI, for example, there is no SYS_exec, but there
2704 *is* a SYS_execv. So, we try to account for that. */
2707 praddset (&exitset.sysset, SYS_exec);
2710 praddset (&exitset.sysset, SYS_execve);
2713 praddset (&exitset.sysset, SYS_execv);
2716 #ifdef PROCFS_USE_READ_WRITE
2717 exitset.cmd = PCSEXIT;
2718 if (write (fd, (char *) &exitset, sizeof (struct sys_ctl)) < 0)
2720 if (ioctl (fd, PIOCSEXIT, &exitset.sysset) < 0)
2724 gdb_flush (gdb_stderr);
2727 #endif /* PRFS_STOPEXEC */
2729 praddset (&entryset.sysset, SYS_exit);
2731 #ifdef PROCFS_USE_READ_WRITE
2732 entryset.cmd = PCSENTRY;
2733 if (write (fd, (char *) &entryset, sizeof (struct sys_ctl)) < 0)
2735 if (ioctl (fd, PIOCSENTRY, &entryset.sysset) < 0)
2739 gdb_flush (gdb_stderr);
2743 /* Turn off inherit-on-fork flag so that all grand-children of gdb
2744 start with tracing flags cleared. */
2746 modify_inherit_on_fork_flag (fd, 0);
2748 /* Turn on run-on-last-close flag so that this process will not hang
2749 if GDB goes away for some reason. */
2751 modify_run_on_last_close_flag (fd, 1);
2756 struct proc_ctl pctl;
2758 /* Solaris needs this to make procfs treat all threads seperately. Without
2759 this, all threads halt whenever something happens to any thread. Since
2760 GDB wants to control all this itself, it needs to set PR_ASYNC. */
2762 pr_flags = PR_ASYNC;
2763 #ifdef PROCFS_USE_READ_WRITE
2765 pctl.data = PR_FORK|PR_ASYNC;
2766 write (fd, (char *) &pctl, sizeof (struct proc_ctl));
2768 ioctl (fd, PIOCSET, &pr_flags);
2771 #endif /* PR_ASYNC */
2778 proc_iterate_over_mappings -- call function for every mapped space
2782 int proc_iterate_over_mappings (int (*func)())
2786 Given a pointer to a function, call that function for every
2787 mapped address space, passing it an open file descriptor for
2788 the file corresponding to that mapped address space (if any)
2789 and the base address of the mapped space. Quit when we hit
2790 the end of the mappings or the function returns nonzero.
2795 proc_iterate_over_mappings (func)
2796 int (*func) PARAMS ((int, CORE_ADDR));
2803 struct procinfo *pi;
2806 pi = current_procinfo;
2808 if (fstat (pi->map_fd, &sbuf) < 0)
2811 nmap = sbuf.st_size / sizeof (prmap_t);
2812 prmaps = (prmap_t *) alloca (nmap * sizeof(prmap_t));
2813 if ((lseek (pi->map_fd, 0, SEEK_SET) == 0) &&
2814 (read (pi->map_fd, (char *) prmaps, nmap * sizeof (prmap_t)) ==
2815 (nmap * sizeof (prmap_t))))
2818 for (prmap = prmaps; i < nmap && funcstat == 0; ++prmap, ++i)
2820 char name[sizeof ("/proc/1234567890/object") +
2821 sizeof (prmap->pr_mapname)];
2822 sprintf (name, "/proc/%d/object/%s", pi->pid, prmap->pr_mapname);
2823 if ((fd = open (name, O_RDONLY)) == -1)
2828 funcstat = (*func) (fd, (CORE_ADDR) prmap->pr_vaddr);
2834 #else /* UNIXWARE */
2836 proc_iterate_over_mappings (func)
2837 int (*func) PARAMS ((int, CORE_ADDR));
2842 struct prmap *prmaps;
2843 struct prmap *prmap;
2844 struct procinfo *pi;
2846 pi = current_procinfo;
2848 if (ioctl (pi->map_fd, PIOCNMAP, &nmap) == 0)
2850 prmaps = (struct prmap *) alloca ((nmap + 1) * sizeof (*prmaps));
2851 if (ioctl (pi->map_fd, PIOCMAP, prmaps) == 0)
2853 for (prmap = prmaps; prmap -> pr_size && funcstat == 0; ++prmap)
2855 fd = proc_address_to_fd (pi, (CORE_ADDR) prmap -> pr_vaddr, 0);
2856 funcstat = (*func) (fd, (CORE_ADDR) prmap -> pr_vaddr);
2863 #endif /* UNIXWARE */
2865 #if 0 /* Currently unused */
2870 proc_base_address -- find base address for segment containing address
2874 CORE_ADDR proc_base_address (CORE_ADDR addr)
2878 Given an address of a location in the inferior, find and return
2879 the base address of the mapped segment containing that address.
2881 This is used for example, by the shared library support code,
2882 where we have the pc value for some location in the shared library
2883 where we are stopped, and need to know the base address of the
2884 segment containing that address.
2888 proc_base_address (addr)
2892 struct prmap *prmaps;
2893 struct prmap *prmap;
2894 CORE_ADDR baseaddr = 0;
2895 struct procinfo *pi;
2897 pi = current_procinfo;
2899 if (ioctl (pi->map_fd, PIOCNMAP, &nmap) == 0)
2901 prmaps = (struct prmap *) alloca ((nmap + 1) * sizeof (*prmaps));
2902 if (ioctl (pi->map_fd, PIOCMAP, prmaps) == 0)
2904 for (prmap = prmaps; prmap -> pr_size; ++prmap)
2906 if ((prmap -> pr_vaddr <= (caddr_t) addr) &&
2907 (prmap -> pr_vaddr + prmap -> pr_size > (caddr_t) addr))
2909 baseaddr = (CORE_ADDR) prmap -> pr_vaddr;
2925 proc_address_to_fd -- return open fd for file mapped to address
2929 int proc_address_to_fd (struct procinfo *pi, CORE_ADDR addr, complain)
2933 Given an address in the current inferior's address space, use the
2934 /proc interface to find an open file descriptor for the file that
2935 this address was mapped in from. Return -1 if there is no current
2936 inferior. Print a warning message if there is an inferior but
2937 the address corresponds to no file (IE a bogus address).
2942 proc_address_to_fd (pi, addr, complain)
2943 struct procinfo *pi;
2949 if ((fd = ioctl (pi->ctl_fd, PIOCOPENM, (caddr_t *) &addr)) < 0)
2953 print_sys_errmsg (pi->pathname, errno);
2954 warning ("can't find mapped file for address 0x%x", addr);
2959 #endif /* !UNIXWARE */
2961 /* Attach to process PID, then initialize for debugging it
2962 and wait for the trace-trap that results from attaching. */
2965 procfs_attach (args, from_tty)
2973 error_no_arg ("process-id to attach");
2977 if (pid == getpid()) /* Trying to masturbate? */
2978 error ("I refuse to debug myself!");
2982 exec_file = (char *) get_exec_file (0);
2985 printf_unfiltered ("Attaching to program `%s', %s\n", exec_file, target_pid_to_str (pid));
2987 printf_unfiltered ("Attaching to %s\n", target_pid_to_str (pid));
2989 gdb_flush (gdb_stdout);
2992 inferior_pid = pid = do_attach (pid);
2993 push_target (&procfs_ops);
2997 /* Take a program previously attached to and detaches it.
2998 The program resumes execution and will no longer stop
2999 on signals, etc. We'd better not have left any breakpoints
3000 in the program or it'll die when it hits one. For this
3001 to work, it may be necessary for the process to have been
3002 previously attached. It *might* work if the program was
3003 started via the normal ptrace (PTRACE_TRACEME). */
3006 procfs_detach (args, from_tty)
3014 char *exec_file = get_exec_file (0);
3017 printf_unfiltered ("Detaching from program: %s %s\n",
3018 exec_file, target_pid_to_str (inferior_pid));
3019 gdb_flush (gdb_stdout);
3022 siggnal = atoi (args);
3024 do_detach (siggnal);
3026 unpush_target (&procfs_ops); /* Pop out of handling an inferior */
3029 /* Get ready to modify the registers array. On machines which store
3030 individual registers, this doesn't need to do anything. On machines
3031 which store all the registers in one fell swoop, this makes sure
3032 that registers contains all the registers from the program being
3036 procfs_prepare_to_store ()
3038 #ifdef CHILD_PREPARE_TO_STORE
3039 CHILD_PREPARE_TO_STORE ();
3043 /* Print status information about what we're accessing. */
3046 procfs_files_info (ignore)
3047 struct target_ops *ignore;
3049 printf_unfiltered ("\tUsing the running image of %s %s via /proc.\n",
3050 attach_flag? "attached": "child", target_pid_to_str (inferior_pid));
3055 procfs_open (arg, from_tty)
3059 error ("Use the \"run\" command to start a Unix child process.");
3066 do_attach -- attach to an already existing process
3070 int do_attach (int pid)
3074 Attach to an already existing process with the specified process
3075 id. If the process is not already stopped, query whether to
3080 The option of stopping at attach time is specific to the /proc
3081 versions of gdb. Versions using ptrace force the attachee
3082 to stop. (I have changed this version to do so, too. All you
3083 have to do is "continue" to make it go on. -- gnu@cygnus.com)
3091 struct procinfo *pi;
3092 struct sig_ctl sctl;
3093 struct flt_ctl fctl;
3096 pi = init_procinfo (pid, 0);
3099 nlwp = pi->prstatus.pr_nlwp;
3100 lwps = alloca ((2 * nlwp + 2) * sizeof (id_t));
3102 if (ioctl (pi->ctl_fd, PIOCLWPIDS, lwps))
3104 print_sys_errmsg (pi -> pathname, errno);
3105 error ("PIOCLWPIDS failed");
3107 #else /* PIOCLWPIDS */
3109 lwps = alloca ((2 * nlwp + 2) * sizeof *lwps);
3112 for (; nlwp > 0; nlwp--, lwps++)
3114 /* First one has already been created above. */
3115 if ((pi = find_procinfo ((*lwps << 16) | pid, 1)) == 0)
3116 pi = init_procinfo ((*lwps << 16) | pid, 0);
3119 if (pi->prstatus.pr_lwp.pr_flags & (PR_STOPPED | PR_ISTOP))
3121 if (pi->prstatus.pr_flags & (PR_STOPPED | PR_ISTOP))
3124 pi->was_stopped = 1;
3128 pi->was_stopped = 0;
3129 if (1 || query ("Process is currently running, stop it? "))
3132 /* Make it run again when we close it. */
3133 modify_run_on_last_close_flag (pi->ctl_fd, 1);
3134 #ifdef PROCFS_USE_READ_WRITE
3136 if (write (pi->ctl_fd, (char *) &cmd, sizeof (long)) < 0)
3138 if (ioctl (pi->ctl_fd, PIOCSTOP, &pi->prstatus) < 0)
3141 print_sys_errmsg (pi->pathname, errno);
3142 close_proc_file (pi);
3143 error ("PIOCSTOP failed");
3146 if (!procfs_read_status (pi))
3148 print_sys_errmsg (pi->pathname, errno);
3149 close_proc_file (pi);
3150 error ("procfs_read_status failed");
3153 pi->nopass_next_sigstop = 1;
3157 printf_unfiltered ("Ok, gdb will wait for %s to stop.\n",
3158 target_pid_to_str (pi->pid));
3162 #ifdef PROCFS_USE_READ_WRITE
3163 fctl.cmd = PCSFAULT;
3164 if (write (pi->ctl_fd, (char *) &fctl, sizeof (struct flt_ctl)) < 0)
3165 print_sys_errmsg ("PCSFAULT failed", errno);
3166 #else /* PROCFS_USE_READ_WRITE */
3167 if (ioctl (pi->ctl_fd, PIOCSFAULT, &pi->prrun.pr_fault))
3169 print_sys_errmsg ("PIOCSFAULT failed", errno);
3171 if (ioctl (pi->ctl_fd, PIOCSTRACE, &pi->prrun.pr_trace))
3173 print_sys_errmsg ("PIOCSTRACE failed", errno);
3175 add_thread (pi->pid);
3176 procfs_set_inferior_syscall_traps (pi);
3177 #endif /* PROCFS_USE_READ_WRITE */
3187 do_detach -- detach from an attached-to process
3191 void do_detach (int signal)
3195 Detach from the current attachee.
3197 If signal is non-zero, the attachee is started running again and sent
3198 the specified signal.
3200 If signal is zero and the attachee was not already stopped when we
3201 attached to it, then we make it runnable again when we detach.
3203 Otherwise, we query whether or not to make the attachee runnable
3204 again, since we may simply want to leave it in the state it was in
3207 We report any problems, but do not consider them errors, since we
3208 MUST detach even if some things don't seem to go right. This may not
3209 be the ideal situation. (FIXME).
3216 struct procinfo *pi;
3218 for (pi = procinfo_list; pi; pi = pi->next)
3222 set_proc_siginfo (pi, signal);
3224 #ifdef PROCFS_USE_READ_WRITE
3225 pi->saved_exitset.cmd = PCSEXIT;
3226 if (write (pi->ctl_fd, (char *) &pi->saved_exitset,
3227 sizeof (struct sys_ctl)) < 0)
3229 if (ioctl (pi->ctl_fd, PIOCSEXIT, &pi->saved_exitset.sysset) < 0)
3232 print_sys_errmsg (pi->pathname, errno);
3233 printf_unfiltered ("PIOCSEXIT failed.\n");
3235 #ifdef PROCFS_USE_READ_WRITE
3236 pi->saved_entryset.cmd = PCSENTRY;
3237 if (write (pi->ctl_fd, (char *) &pi->saved_entryset,
3238 sizeof (struct sys_ctl)) < 0)
3240 if (ioctl (pi->ctl_fd, PIOCSENTRY, &pi->saved_entryset.sysset) < 0)
3243 print_sys_errmsg (pi->pathname, errno);
3244 printf_unfiltered ("PIOCSENTRY failed.\n");
3246 #ifdef PROCFS_USE_READ_WRITE
3247 pi->saved_trace.cmd = PCSTRACE;
3248 if (write (pi->ctl_fd, (char *) &pi->saved_trace,
3249 sizeof (struct sig_ctl)) < 0)
3251 if (ioctl (pi->ctl_fd, PIOCSTRACE, &pi->saved_trace.sigset) < 0)
3254 print_sys_errmsg (pi->pathname, errno);
3255 printf_unfiltered ("PIOCSTRACE failed.\n");
3258 if (ioctl (pi->ctl_fd, PIOCSHOLD, &pi->saved_sighold.sigset) < 0)
3260 print_sys_errmsg (pi->pathname, errno);
3261 printf_unfiltered ("PIOSCHOLD failed.\n");
3264 #ifdef PROCFS_USE_READ_WRITE
3265 pi->saved_fltset.cmd = PCSFAULT;
3266 if (write (pi->ctl_fd, (char *) &pi->saved_fltset,
3267 sizeof (struct flt_ctl)) < 0)
3269 if (ioctl (pi->ctl_fd, PIOCSFAULT, &pi->saved_fltset.fltset) < 0)
3272 print_sys_errmsg (pi->pathname, errno);
3273 printf_unfiltered ("PIOCSFAULT failed.\n");
3275 if (!procfs_read_status (pi))
3277 print_sys_errmsg (pi->pathname, errno);
3278 printf_unfiltered ("procfs_read_status failed.\n");
3283 if (signal || (pi->prstatus.pr_lwp.pr_flags & (PR_STOPPED | PR_ISTOP)))
3285 if (signal || (pi->prstatus.pr_flags & (PR_STOPPED | PR_ISTOP)))
3289 struct proc_ctl pctl;
3291 if (signal || !pi->was_stopped ||
3292 query ("Was stopped when attached, make it runnable again? "))
3294 /* Clear any pending signal if we want to detach without
3297 set_proc_siginfo (pi, signal);
3299 /* Clear any fault that might have stopped it. */
3300 #ifdef PROCFS_USE_READ_WRITE
3302 if (write (pi->ctl_fd, (char *) &cmd, sizeof (long)) < 0)
3304 if (ioctl (pi->ctl_fd, PIOCCFAULT, 0))
3307 print_sys_errmsg (pi->pathname, errno);
3308 printf_unfiltered ("PIOCCFAULT failed.\n");
3311 /* Make it run again when we close it. */
3313 modify_run_on_last_close_flag (pi->ctl_fd, 1);
3317 close_proc_file (pi);
3322 /* emulate wait() as much as possible.
3323 Wait for child to do something. Return pid of child, or -1 in case
3324 of error; store status in *OURSTATUS.
3326 Not sure why we can't
3327 just use wait(), but it seems to have problems when applied to a
3328 process being controlled with the /proc interface.
3330 We have a race problem here with no obvious solution. We need to let
3331 the inferior run until it stops on an event of interest, which means
3332 that we need to use the PIOCWSTOP ioctl. However, we cannot use this
3333 ioctl if the process is already stopped on something that is not an
3334 event of interest, or the call will hang indefinitely. Thus we first
3335 use PIOCSTATUS to see if the process is not stopped. If not, then we
3336 use PIOCWSTOP. But during the window between the two, if the process
3337 stops for any reason that is not an event of interest (such as a job
3338 control signal) then gdb will hang. One possible workaround is to set
3339 an alarm to wake up every minute of so and check to see if the process
3340 is still running, and if so, then reissue the PIOCWSTOP. But this is
3341 a real kludge, so has not been implemented. FIXME: investigate
3344 FIXME: Investigate why wait() seems to have problems with programs
3345 being control by /proc routines. */
3347 procfs_wait (pid, ourstatus)
3349 struct target_waitstatus *ourstatus;
3356 struct procinfo *pi;
3357 struct proc_ctl pctl;
3359 if (pid != -1) /* Non-specific process? */
3362 for (pi = procinfo_list; pi; pi = pi->next)
3377 for (pi = procinfo_list; pi; pi = pi->next)
3378 if (pi->pid == pid && pi->had_event)
3381 if (!pi && !checkerr)
3385 if (!checkerr && !(pi->prstatus.pr_lwp.pr_flags & (PR_STOPPED | PR_ISTOP)))
3387 if (!checkerr && !(pi->prstatus.pr_flags & (PR_STOPPED | PR_ISTOP)))
3390 if (!procfs_write_pcwstop (pi))
3397 if (errno == ENOENT)
3399 /* XXX Fixme -- what to do if attached? Can't call wait... */
3400 rtnval = wait (&statval);
3401 if ((rtnval) != (PIDGET (inferior_pid)))
3403 print_sys_errmsg (pi->pathname, errno);
3404 error ("procfs_wait: wait failed, returned %d", rtnval);
3410 print_sys_errmsg (pi->pathname, errno);
3411 error ("PIOCSTATUS or PIOCWSTOP failed.");
3416 else if (pi->prstatus.pr_lwp.pr_flags & (PR_STOPPED | PR_ISTOP))
3418 else if (pi->prstatus.pr_flags & (PR_STOPPED | PR_ISTOP))
3422 rtnval = pi->prstatus.pr_pid;
3423 why = pi->prstatus.pr_lwp.pr_why;
3424 what = pi->prstatus.pr_lwp.pr_what;
3427 why = pi->prstatus.pr_why;
3428 what = pi->prstatus.pr_what;
3434 statval = (what << 8) | 0177;
3440 int found_handler = 0;
3442 for (i = 0; i < pi->num_syscall_handlers; i++)
3443 if (pi->syscall_handlers[i].syscall_num == what)
3446 if (!pi->syscall_handlers[i].func (pi, what, why,
3454 if (why == PR_SYSENTRY)
3455 error ("PR_SYSENTRY, unhandled system call %d", what);
3457 error ("PR_SYSEXIT, unhandled system call %d", what);
3461 statval = (SIGSTOP << 8) | 0177;
3464 statval = (what << 8) | 0177;
3471 statval = (SIGTRAP << 8) | 0177;
3476 statval = (SIGTRAP << 8) | 0177;
3479 #ifndef FAULTED_USE_SIGINFO
3480 /* Irix, contrary to the documentation, fills in 0 for si_signo.
3481 Solaris fills in si_signo. I'm not sure about others. */
3484 statval = (SIGILL << 8) | 0177;
3488 statval = (SIGTRAP << 8) | 0177;
3493 statval = (SIGSEGV << 8) | 0177;
3498 statval = (SIGFPE << 8) | 0177;
3500 case FLTPAGE: /* Recoverable page fault */
3501 #endif /* not FAULTED_USE_SIGINFO */
3503 /* Use the signal which the kernel assigns. This is better than
3504 trying to second-guess it from the fault. In fact, I suspect
3505 that FLTACCESS can be either SIGSEGV or SIGBUS. */
3507 statval = ((pi->prstatus.pr_lwp.pr_info.si_signo) << 8) | 0177;
3509 statval = ((pi->prstatus.pr_info.si_signo) << 8) | 0177;
3515 error ("PIOCWSTOP, unknown why %d, what %d", why, what);
3517 /* Stop all the other threads when any of them stops. */
3520 struct procinfo *procinfo, *next_pi;
3522 for (procinfo = procinfo_list; procinfo; procinfo = next_pi)
3524 next_pi = procinfo->next;
3525 if (!procinfo->had_event)
3527 #ifdef PROCFS_USE_READ_WRITE
3529 if (write (pi->ctl_fd, (char *) &cmd, sizeof (long)) < 0)
3531 print_sys_errmsg (procinfo->pathname, errno);
3532 error ("PCSTOP failed");
3535 /* A bug in Solaris (2.5) causes us to hang when trying to
3536 stop a stopped process. So, we have to check first in
3537 order to avoid the hang. */
3538 if (!procfs_read_status (procinfo))
3540 /* The LWP has apparently terminated. */
3542 printf_filtered ("LWP %d doesn't respond.\n",
3543 (procinfo->pid >> 16) & 0xffff);
3544 close_proc_file (procinfo);
3548 if (!(procinfo->prstatus.pr_flags & PR_STOPPED))
3549 if (ioctl (procinfo->ctl_fd, PIOCSTOP, &procinfo->prstatus)
3552 print_sys_errmsg (procinfo->pathname, errno);
3553 warning ("PIOCSTOP failed");
3562 error ("PIOCWSTOP, stopped for unknown/unhandled reason, flags %#x",
3564 pi->prstatus.pr_lwp.pr_flags);
3566 pi->prstatus.pr_flags);
3570 store_waitstatus (ourstatus, statval);
3572 if (rtnval == -1) /* No more children to wait for */
3574 warning ("Child process unexpectedly missing");
3575 /* Claim it exited with unknown signal. */
3576 ourstatus->kind = TARGET_WAITKIND_SIGNALLED;
3577 ourstatus->value.sig = TARGET_SIGNAL_UNKNOWN;
3581 pi->had_event = 0; /* Indicate that we've seen this one */
3589 set_proc_siginfo - set a process's current signal info
3593 void set_proc_siginfo (struct procinfo *pip, int signo);
3597 Given a pointer to a process info struct in PIP and a signal number
3598 in SIGNO, set the process's current signal and its associated signal
3599 information. The signal will be delivered to the process immediately
3600 after execution is resumed, even if it is being held. In addition,
3601 this particular delivery will not cause another PR_SIGNALLED stop
3602 even if the signal is being traced.
3604 If we are not delivering the same signal that the prstatus siginfo
3605 struct contains information about, then synthesize a siginfo struct
3606 to match the signal we are doing to deliver, make it of the type
3607 "generated by a user process", and send this synthesized copy. When
3608 used to set the inferior's signal state, this will be required if we
3609 are not currently stopped because of a traced signal, or if we decide
3610 to continue with a different signal.
3612 Note that when continuing the inferior from a stop due to receipt
3613 of a traced signal, we either have set PRCSIG to clear the existing
3614 signal, or we have to call this function to do a PIOCSSIG with either
3615 the existing siginfo struct from pr_info, or one we have synthesized
3616 appropriately for the signal we want to deliver. Otherwise if the
3617 signal is still being traced, the inferior will immediately stop
3620 See siginfo(5) for more details.
3624 set_proc_siginfo (pip, signo)
3625 struct procinfo *pip;
3628 struct siginfo newsiginfo;
3629 struct siginfo *sip;
3630 struct sigi_ctl sictl;
3632 #ifdef PROCFS_DONT_PIOCSSIG_CURSIG
3633 /* With Alpha OSF/1 procfs, the kernel gets really confused if it
3634 receives a PIOCSSIG with a signal identical to the current signal,
3635 it messes up the current signal. Work around the kernel bug. */
3637 if (signo == pip -> prstatus.pr_lwp.pr_cursig)
3639 if (signo == pip -> prstatus.pr_cursig)
3645 if (signo == pip->prstatus.pr_lwp.pr_info.si_signo)
3647 memcpy ((char *) &sictl.siginfo, (char *) &pip->prstatus.pr_lwp.pr_info,
3648 sizeof (siginfo_t));
3651 if (signo == pip -> prstatus.pr_info.si_signo)
3653 sip = &pip -> prstatus.pr_info;
3659 siginfo_t *sip = &sictl.siginfo;
3660 memset ((char *) sip, 0, sizeof (siginfo_t));
3662 memset ((char *) &newsiginfo, 0, sizeof (newsiginfo));
3665 sip -> si_signo = signo;
3667 sip -> si_errno = 0;
3668 sip -> si_pid = getpid ();
3669 sip -> si_uid = getuid ();
3671 #ifdef PROCFS_USE_READ_WRITE
3673 if (write (pip->ctl_fd, (char *) &sictl, sizeof (struct sigi_ctl)) < 0)
3675 if (ioctl (pip->ctl_fd, PIOCSSIG, sip) < 0)
3678 print_sys_errmsg (pip -> pathname, errno);
3679 warning ("PIOCSSIG failed");
3683 /* Resume execution of process PID. If STEP is nozero, then
3684 just single step it. If SIGNAL is nonzero, restart it with that
3685 signal activated. */
3688 procfs_resume (pid, step, signo)
3691 enum target_signal signo;
3694 struct procinfo *pi, *procinfo, *next_pi;
3695 struct proc_ctl pctl;
3697 pi = find_procinfo (pid == -1 ? inferior_pid : pid, 0);
3702 pctl.data = PRCFAULT;
3704 pi->prrun.pr_flags = PRSTRACE | PRSFAULT | PRCFAULT;
3708 /* It should not be necessary. If the user explicitly changes the value,
3709 value_assign calls write_register_bytes, which writes it. */
3710 /* It may not be absolutely necessary to specify the PC value for
3711 restarting, but to be safe we use the value that gdb considers
3712 to be current. One case where this might be necessary is if the
3713 user explicitly changes the PC value that gdb considers to be
3714 current. FIXME: Investigate if this is necessary or not. */
3716 #ifdef PRSVADDR_BROKEN
3717 /* Can't do this under Solaris running on a Sparc, as there seems to be no
3718 place to put nPC. In fact, if you use this, nPC seems to be set to some
3719 random garbage. We have to rely on the fact that PC and nPC have been
3720 written previously via PIOCSREG during a register flush. */
3722 pi->prrun.pr_vaddr = (caddr_t) *(int *) ®isters[REGISTER_BYTE (PC_REGNUM)];
3723 pi->prrun.pr_flags != PRSVADDR;
3727 if (signo == TARGET_SIGNAL_STOP && pi->nopass_next_sigstop)
3728 /* When attaching to a child process, if we forced it to stop with
3729 a PIOCSTOP, then we will have set the nopass_next_sigstop flag.
3730 Upon resuming the first time after such a stop, we explicitly
3731 inhibit sending it another SIGSTOP, which would be the normal
3732 result of default signal handling. One potential drawback to
3733 this is that we will also ignore any attempt to by the user
3734 to explicitly continue after the attach with a SIGSTOP. Ultimately
3735 this problem should be dealt with by making the routines that
3736 deal with the inferior a little smarter, and possibly even allow
3737 an inferior to continue running at the same time as gdb. (FIXME?) */
3739 else if (signo == TARGET_SIGNAL_TSTP
3741 && pi->prstatus.pr_lwp.pr_cursig == SIGTSTP
3742 && pi->prstatus.pr_lwp.pr_action.sa_handler == SIG_DFL
3744 && pi->prstatus.pr_cursig == SIGTSTP
3745 && pi->prstatus.pr_action.sa_handler == SIG_DFL
3749 /* We are about to pass the inferior a SIGTSTP whose action is
3750 SIG_DFL. The SIG_DFL action for a SIGTSTP is to stop
3751 (notifying the parent via wait()), and then keep going from the
3752 same place when the parent is ready for you to keep going. So
3753 under the debugger, it should do nothing (as if the program had
3754 been stopped and then later resumed. Under ptrace, this
3755 happens for us, but under /proc, the system obligingly stops
3756 the process, and wait_for_inferior would have no way of
3757 distinguishing that type of stop (which indicates that we
3758 should just start it again), with a stop due to the pr_trace
3759 field of the prrun_t struct.
3761 Note that if the SIGTSTP is being caught, we *do* need to pass it,
3762 because the handler needs to get executed. */
3765 signal_to_pass = target_signal_to_host (signo);
3769 set_proc_siginfo (pi, signal_to_pass);
3774 pctl.data |= PRCSIG;
3776 pi->prrun.pr_flags |= PRCSIG;
3779 pi->nopass_next_sigstop = 0;
3783 pctl.data |= PRSTEP;
3785 pi->prrun.pr_flags |= PRSTEP;
3789 /* Don't try to start a process unless it's stopped on an
3790 `event of interest'. Doing so will cause errors. */
3792 if (!procfs_read_status (pi))
3794 /* The LWP has apparently terminated. */
3796 printf_filtered ("LWP %d doesn't respond.\n",
3797 (pi->pid >> 16) & 0xffff);
3798 close_proc_file (pi);
3802 #ifdef PROCFS_USE_READ_WRITE
3803 if (write (pi->ctl_fd, (char *) &pctl, sizeof (struct proc_ctl)) < 0)
3805 if ((pi->prstatus.pr_flags & PR_ISTOP)
3806 && ioctl (pi->ctl_fd, PIOCRUN, &pi->prrun) != 0)
3809 /* The LWP has apparently terminated. */
3811 printf_filtered ("LWP %d doesn't respond.\n",
3812 (pi->pid >> 16) & 0xffff);
3813 close_proc_file (pi);
3817 /* Continue all the other threads that haven't had an event of interest.
3818 Also continue them if they have NOPASS_NEXT_SIGSTOP set; this is only
3819 set by do_attach, and means this is the first resume after an attach.
3820 All threads were CSTOP'd by do_attach, and should be resumed now. */
3823 for (procinfo = procinfo_list; procinfo; procinfo = next_pi)
3825 next_pi = procinfo->next;
3827 if (!procinfo->had_event ||
3828 (procinfo->nopass_next_sigstop && signo == TARGET_SIGNAL_STOP))
3830 procinfo->had_event = procinfo->nopass_next_sigstop = 0;
3831 #ifdef PROCFS_USE_READ_WRITE
3832 pctl.data = PRCFAULT | PRCSIG;
3833 if (write (procinfo->ctl_fd, (char *) &pctl,
3834 sizeof (struct proc_ctl)) < 0)
3836 if (!procfs_read_status (procinfo))
3837 fprintf_unfiltered(gdb_stderr,
3838 "procfs_read_status failed, errno=%d\n",
3840 print_sys_errmsg (procinfo->pathname, errno);
3841 error ("PCRUN failed");
3844 procinfo->prrun.pr_flags &= PRSTEP;
3845 procinfo->prrun.pr_flags |= PRCFAULT | PRCSIG;
3846 if (!procfs_read_status (procinfo))
3848 /* The LWP has apparently terminated. */
3850 printf_filtered ("LWP %d doesn't respond.\n",
3851 (procinfo->pid >> 16) & 0xffff);
3852 close_proc_file (procinfo);
3856 /* Don't try to start a process unless it's stopped on an
3857 `event of interest'. Doing so will cause errors. */
3859 if ((procinfo->prstatus.pr_flags & PR_ISTOP)
3860 && ioctl (procinfo->ctl_fd, PIOCRUN, &procinfo->prrun) < 0)
3862 if (!procfs_read_status (procinfo))
3863 fprintf_unfiltered(gdb_stderr,
3864 "procfs_read_status failed, errno=%d\n",
3866 print_sys_errmsg (procinfo->pathname, errno);
3867 warning ("PIOCRUN failed");
3871 procfs_read_status (procinfo);
3879 procfs_fetch_registers -- fetch current registers from inferior
3883 void procfs_fetch_registers (int regno)
3887 Read the current values of the inferior's registers, both the
3888 general register set and floating point registers (if supported)
3889 and update gdb's idea of their current values.
3894 procfs_fetch_registers (regno)
3897 struct procinfo *pi;
3899 pi = current_procinfo;
3902 if (procfs_read_status (pi))
3904 supply_gregset (&pi->prstatus.pr_lwp.pr_context.uc_mcontext.gregs);
3905 #if defined (FP0_REGNUM)
3906 supply_fpregset (&pi->prstatus.pr_lwp.pr_context.uc_mcontext.fpregs);
3909 #else /* UNIXWARE */
3910 if (ioctl (pi->ctl_fd, PIOCGREG, &pi->gregset.gregset) != -1)
3912 supply_gregset (&pi->gregset.gregset);
3914 #if defined (FP0_REGNUM)
3915 if (ioctl (pi->ctl_fd, PIOCGFPREG, &pi->fpregset.fpregset) != -1)
3917 supply_fpregset (&pi->fpregset.fpregset);
3920 #endif /* UNIXWARE */
3927 proc_init_failed - called when /proc access initialization fails
3932 static void proc_init_failed (struct procinfo *pi,
3933 char *why, int kill_p)
3937 This function is called whenever initialization of access to a /proc
3938 entry fails. It prints a suitable error message, does some cleanup,
3939 and then invokes the standard error processing routine which dumps
3940 us back into the command loop. If KILL_P is true, sends SIGKILL.
3944 proc_init_failed (pi, why, kill_p)
3945 struct procinfo *pi;
3949 print_sys_errmsg (pi->pathname, errno);
3951 kill (pi->pid, SIGKILL);
3952 close_proc_file (pi);
3961 close_proc_file - close any currently open /proc entry
3965 static void close_proc_file (struct procinfo *pip)
3969 Close any currently open /proc entry and mark the process information
3970 entry as invalid. In order to ensure that we don't try to reuse any
3971 stale information, the pid, fd, and pathnames are explicitly
3972 invalidated, which may be overkill.
3977 close_proc_file (pip)
3978 struct procinfo *pip;
3980 struct procinfo *procinfo;
3982 delete_thread (pip->pid); /* remove thread from GDB's thread list */
3983 remove_fd (pip); /* Remove fd from poll/select list */
3985 close (pip->ctl_fd);
3986 #ifdef HAVE_MULTIPLE_PROC_FDS
3988 close (pip->status_fd);
3989 close (pip->map_fd);
3992 free (pip -> pathname);
3994 /* Unlink pip from the procinfo chain. Note pip might not be on the list. */
3996 if (procinfo_list == pip)
3997 procinfo_list = pip->next;
4000 for (procinfo = procinfo_list; procinfo; procinfo = procinfo->next)
4002 if (procinfo->next == pip)
4004 procinfo->next = pip->next;
4016 open_proc_file - open a /proc entry for a given process id
4020 static int open_proc_file (int pid, struct procinfo *pip, int mode)
4024 Given a process id and a mode, close the existing open /proc
4025 entry (if any) and open one for the new process id, in the
4026 specified mode. Once it is open, then mark the local process
4027 information structure as valid, which guarantees that the pid,
4028 fd, and pathname fields match an open /proc entry. Returns
4029 zero if the open fails, nonzero otherwise.
4031 Note that the pathname is left intact, even when the open fails,
4032 so that callers can use it to construct meaningful error messages
4033 rather than just "file open failed".
4035 Note that for Solaris, the process-id also includes an LWP-id, so we
4036 actually attempt to open that. If we are handed a pid with a 0 LWP-id,
4037 then we will ask the kernel what it is and add it to the pid. Hence,
4038 the pid can be changed by us.
4042 open_proc_file (pid, pip, mode, control)
4044 struct procinfo *pip;
4051 pip -> had_event = 0;
4052 pip -> pathname = xmalloc (MAX_PROC_NAME_SIZE);
4061 #ifdef HAVE_MULTIPLE_PROC_FDS
4062 sprintf (pip->pathname, STATUS_PROC_NAME_FMT, tmp);
4063 if ((pip->status_fd = open (pip->pathname, O_RDONLY)) < 0)
4068 sprintf (pip->pathname, AS_PROC_NAME_FMT, tmp);
4069 if ((pip->as_fd = open (pip->pathname, O_RDWR)) < 0)
4071 close (pip->status_fd);
4075 sprintf (pip->pathname, MAP_PROC_NAME_FMT, tmp);
4076 if ((pip->map_fd = open (pip->pathname, O_RDONLY)) < 0)
4078 close (pip->status_fd);
4083 sprintf (pip->pathname, MAP_PROC_NAME_FMT, tmp);
4084 if ((pip->map_fd = open (pip->pathname, O_RDONLY)) < 0)
4086 close (pip->status_fd);
4093 sprintf (pip->pathname, CTL_PROC_NAME_FMT, tmp);
4094 if ((pip->ctl_fd = open (pip->pathname, O_WRONLY)) < 0)
4096 close (pip->status_fd);
4098 close (pip->map_fd);
4103 #else /* HAVE_MULTIPLE_PROC_FDS */
4104 sprintf (pip -> pathname, CTL_PROC_NAME_FMT, tmp);
4106 if ((tmpfd = open (pip -> pathname, mode)) < 0)
4110 pip -> ctl_fd = tmpfd;
4111 pip -> as_fd = tmpfd;
4112 pip -> map_fd = tmpfd;
4113 pip -> status_fd = tmpfd;
4115 tmp = (pid >> 16) & 0xffff; /* Extract thread id */
4118 { /* Don't know thread id yet */
4119 if (ioctl (tmpfd, PIOCSTATUS, &pip -> prstatus) < 0)
4121 print_sys_errmsg (pip -> pathname, errno);
4123 error ("open_proc_file: PIOCSTATUS failed");
4126 tmp = pip -> prstatus.pr_who; /* Get thread id from prstatus_t */
4127 pip -> pid = (tmp << 16) | pid; /* Update pip */
4130 if ((pip -> ctl_fd = ioctl (tmpfd, PIOCOPENLWP, &tmp)) < 0)
4136 #ifdef PIOCSET /* New method */
4139 pr_flags = PR_ASYNC;
4140 ioctl (pip -> ctl_fd, PIOCSET, &pr_flags);
4144 /* keep extra fds in sync */
4145 pip->as_fd = pip->ctl_fd;
4146 pip->map_fd = pip->ctl_fd;
4147 pip->status_fd = pip->ctl_fd;
4149 close (tmpfd); /* All done with main pid */
4150 #endif /* PIOCOPENLWP */
4152 #endif /* HAVE_MULTIPLE_PROC_FDS */
4158 mappingflags (flags)
4161 static char asciiflags[8];
4163 strcpy (asciiflags, "-------");
4164 #if defined (MA_PHYS)
4165 if (flags & MA_PHYS) asciiflags[0] = 'd';
4167 if (flags & MA_STACK) asciiflags[1] = 's';
4168 if (flags & MA_BREAK) asciiflags[2] = 'b';
4169 if (flags & MA_SHARED) asciiflags[3] = 's';
4170 if (flags & MA_READ) asciiflags[4] = 'r';
4171 if (flags & MA_WRITE) asciiflags[5] = 'w';
4172 if (flags & MA_EXEC) asciiflags[6] = 'x';
4173 return (asciiflags);
4177 info_proc_flags (pip, summary)
4178 struct procinfo *pip;
4181 struct trans *transp;
4183 long flags = pip->prstatus.pr_flags | pip->prstatus.pr_lwp.pr_flags;
4185 long flags = pip->prstatus.pr_flags;
4188 printf_filtered ("%-32s", "Process status flags:");
4191 printf_filtered ("\n\n");
4193 for (transp = pr_flag_table; transp -> name != NULL; transp++)
4195 if (flags & transp -> value)
4199 printf_filtered ("%s ", transp -> name);
4203 printf_filtered ("\t%-16s %s.\n", transp -> name, transp -> desc);
4207 printf_filtered ("\n");
4211 info_proc_stop (pip, summary)
4212 struct procinfo *pip;
4215 struct trans *transp;
4220 why = pip -> prstatus.pr_lwp.pr_why;
4221 what = pip -> prstatus.pr_lwp.pr_what;
4223 why = pip -> prstatus.pr_why;
4224 what = pip -> prstatus.pr_what;
4228 if (pip -> prstatus.pr_lwp.pr_flags & PR_STOPPED)
4230 if (pip -> prstatus.pr_flags & PR_STOPPED)
4233 printf_filtered ("%-32s", "Reason for stopping:");
4236 printf_filtered ("\n\n");
4238 for (transp = pr_why_table; transp -> name != NULL; transp++)
4240 if (why == transp -> value)
4244 printf_filtered ("%s ", transp -> name);
4248 printf_filtered ("\t%-16s %s.\n",
4249 transp -> name, transp -> desc);
4255 /* Use the pr_why field to determine what the pr_what field means, and
4256 print more information. */
4261 /* pr_what is unused for this case */
4267 printf_filtered ("%s ", signalname (what));
4271 printf_filtered ("\t%-16s %s.\n", signalname (what),
4272 safe_strsignal (what));
4278 printf_filtered ("%s ", syscallname (what));
4282 printf_filtered ("\t%-16s %s.\n", syscallname (what),
4283 "Entered this system call");
4289 printf_filtered ("%s ", syscallname (what));
4293 printf_filtered ("\t%-16s %s.\n", syscallname (what),
4294 "Returned from this system call");
4300 printf_filtered ("%s ",
4301 lookupname (faults_table, what, "fault"));
4305 printf_filtered ("\t%-16s %s.\n",
4306 lookupname (faults_table, what, "fault"),
4307 lookupdesc (faults_table, what));
4311 printf_filtered ("\n");
4316 info_proc_siginfo (pip, summary)
4317 struct procinfo *pip;
4320 struct siginfo *sip;
4323 if ((pip -> prstatus.pr_lwp.pr_flags & PR_STOPPED) &&
4324 (pip -> prstatus.pr_lwp.pr_why == PR_SIGNALLED ||
4325 pip -> prstatus.pr_lwp.pr_why == PR_FAULTED))
4327 if ((pip -> prstatus.pr_flags & PR_STOPPED) &&
4328 (pip -> prstatus.pr_why == PR_SIGNALLED ||
4329 pip -> prstatus.pr_why == PR_FAULTED))
4332 printf_filtered ("%-32s", "Additional signal/fault info:");
4334 sip = &pip -> prstatus.pr_lwp.pr_info;
4336 sip = &pip -> prstatus.pr_info;
4340 printf_filtered ("%s ", signalname (sip -> si_signo));
4341 if (sip -> si_errno > 0)
4343 printf_filtered ("%s ", errnoname (sip -> si_errno));
4345 if (sip -> si_code <= 0)
4347 printf_filtered ("sent by %s, uid %d ",
4348 target_pid_to_str (sip -> si_pid),
4353 printf_filtered ("%s ", sigcodename (sip));
4354 if ((sip -> si_signo == SIGILL) ||
4355 (sip -> si_signo == SIGFPE) ||
4356 (sip -> si_signo == SIGSEGV) ||
4357 (sip -> si_signo == SIGBUS))
4359 printf_filtered ("addr=%#lx ",
4360 (unsigned long) sip -> si_addr);
4362 else if ((sip -> si_signo == SIGCHLD))
4364 printf_filtered ("child %s, status %u ",
4365 target_pid_to_str (sip -> si_pid),
4368 else if ((sip -> si_signo == SIGPOLL))
4370 printf_filtered ("band %u ", sip -> si_band);
4376 printf_filtered ("\n\n");
4377 printf_filtered ("\t%-16s %s.\n", signalname (sip -> si_signo),
4378 safe_strsignal (sip -> si_signo));
4379 if (sip -> si_errno > 0)
4381 printf_filtered ("\t%-16s %s.\n",
4382 errnoname (sip -> si_errno),
4383 safe_strerror (sip -> si_errno));
4385 if (sip -> si_code <= 0)
4387 printf_filtered ("\t%-16u %s\n", sip -> si_pid, /* XXX need target_pid_to_str() */
4388 "PID of process sending signal");
4389 printf_filtered ("\t%-16u %s\n", sip -> si_uid,
4390 "UID of process sending signal");
4394 printf_filtered ("\t%-16s %s.\n", sigcodename (sip),
4396 if ((sip -> si_signo == SIGILL) ||
4397 (sip -> si_signo == SIGFPE))
4399 printf_filtered ("\t%#-16lx %s.\n",
4400 (unsigned long) sip -> si_addr,
4401 "Address of faulting instruction");
4403 else if ((sip -> si_signo == SIGSEGV) ||
4404 (sip -> si_signo == SIGBUS))
4406 printf_filtered ("\t%#-16lx %s.\n",
4407 (unsigned long) sip -> si_addr,
4408 "Address of faulting memory reference");
4410 else if ((sip -> si_signo == SIGCHLD))
4412 printf_filtered ("\t%-16u %s.\n", sip -> si_pid, /* XXX need target_pid_to_str() */
4413 "Child process ID");
4414 printf_filtered ("\t%-16u %s.\n", sip -> si_status,
4415 "Child process exit value or signal");
4417 else if ((sip -> si_signo == SIGPOLL))
4419 printf_filtered ("\t%-16u %s.\n", sip -> si_band,
4420 "Band event for POLL_{IN,OUT,MSG}");
4424 printf_filtered ("\n");
4429 info_proc_syscalls (pip, summary)
4430 struct procinfo *pip;
4438 #if 0 /* FIXME: Needs to use gdb-wide configured info about system calls. */
4439 if (pip -> prstatus.pr_flags & PR_ASLEEP)
4441 int syscallnum = pip -> prstatus.pr_reg[R_D0];
4444 printf_filtered ("%-32s", "Sleeping in system call:");
4445 printf_filtered ("%s", syscallname (syscallnum));
4449 printf_filtered ("Sleeping in system call '%s'.\n",
4450 syscallname (syscallnum));
4456 if (ioctl (pip -> ctl_fd, PIOCGENTRY, &pip -> entryset) < 0)
4458 print_sys_errmsg (pip -> pathname, errno);
4459 error ("PIOCGENTRY failed");
4462 if (ioctl (pip -> ctl_fd, PIOCGEXIT, &pip -> exitset) < 0)
4464 print_sys_errmsg (pip -> pathname, errno);
4465 error ("PIOCGEXIT failed");
4469 printf_filtered ("System call tracing information:\n\n");
4471 printf_filtered ("\t%-12s %-8s %-8s\n",
4475 for (syscallnum = 0; syscallnum < MAX_SYSCALLS; syscallnum++)
4478 if (syscall_table[syscallnum] != NULL)
4479 printf_filtered ("\t%-12s ", syscall_table[syscallnum]);
4481 printf_filtered ("\t%-12d ", syscallnum);
4484 printf_filtered ("%-8s ",
4485 prismember (&pip->prstatus.pr_sysentry, syscallnum)
4487 printf_filtered ("%-8s ",
4488 prismember (&pip->prstatus.pr_sysexit, syscallnum)
4491 printf_filtered ("%-8s ",
4492 prismember (&pip -> entryset, syscallnum)
4494 printf_filtered ("%-8s ",
4495 prismember (&pip -> exitset, syscallnum)
4498 printf_filtered ("\n");
4500 printf_filtered ("\n");
4509 static char locbuf[32];
4511 name = strsigno (signo);
4514 sprintf (locbuf, "Signal %d", signo);
4518 sprintf (locbuf, "%s (%d)", name, signo);
4528 static char locbuf[32];
4530 name = strerrno (errnum);
4533 sprintf (locbuf, "Errno %d", errnum);
4537 sprintf (locbuf, "%s (%d)", name, errnum);
4543 info_proc_signals (pip, summary)
4544 struct procinfo *pip;
4551 #ifndef PROCFS_USE_READ_WRITE
4552 if (ioctl (pip -> ctl_fd, PIOCGTRACE, &pip -> trace) < 0)
4554 print_sys_errmsg (pip -> pathname, errno);
4555 error ("PIOCGTRACE failed");
4559 printf_filtered ("Disposition of signals:\n\n");
4560 printf_filtered ("\t%-15s %-8s %-8s %-8s %s\n\n",
4561 "Signal", "Trace", "Hold", "Pending", "Description");
4562 for (signo = 0; signo < NSIG; signo++)
4565 printf_filtered ("\t%-15s ", signalname (signo));
4567 printf_filtered ("%-8s ",
4568 prismember (&pip -> prstatus.pr_sigtrace, signo)
4570 printf_filtered ("%-8s ",
4571 prismember (&pip -> prstatus.pr_lwp.pr_context.uc_sigmask, signo)
4574 printf_filtered ("%-8s ",
4575 prismember (&pip -> trace, signo)
4577 printf_filtered ("%-8s ",
4578 prismember (&pip -> prstatus.pr_sighold, signo)
4583 if (prismember (&pip->prstatus.pr_sigpend, signo) ||
4584 prismember (&pip->prstatus.pr_lwp.pr_lwppend, signo))
4585 printf_filtered("%-8s ", "yes");
4587 printf_filtered("%-8s ", "no");
4588 #else /* UNIXWARE */
4589 #ifdef PROCFS_SIGPEND_OFFSET
4590 /* Alpha OSF/1 numbers the pending signals from 1. */
4591 printf_filtered ("%-8s ",
4592 (signo ? prismember (&pip -> prstatus.pr_sigpend,
4597 printf_filtered ("%-8s ",
4598 prismember (&pip -> prstatus.pr_sigpend, signo)
4601 #endif /* UNIXWARE */
4602 printf_filtered (" %s\n", safe_strsignal (signo));
4604 printf_filtered ("\n");
4609 info_proc_faults (pip, summary)
4610 struct procinfo *pip;
4613 struct trans *transp;
4618 if (ioctl (pip -> ctl_fd, PIOCGFAULT, &pip->fltset.fltset) < 0)
4620 print_sys_errmsg (pip -> pathname, errno);
4621 error ("PIOCGFAULT failed");
4625 printf_filtered ("Current traced hardware fault set:\n\n");
4626 printf_filtered ("\t%-12s %-8s\n", "Fault", "Trace");
4628 for (transp = faults_table; transp -> name != NULL; transp++)
4631 printf_filtered ("\t%-12s ", transp -> name);
4633 printf_filtered ("%-8s", prismember (&pip->prstatus.pr_flttrace, transp -> value)
4636 printf_filtered ("%-8s", prismember (&pip->fltset.fltset, transp -> value)
4639 printf_filtered ("\n");
4641 printf_filtered ("\n");
4646 info_proc_mappings (pip, summary)
4647 struct procinfo *pip;
4651 struct prmap *prmaps;
4652 struct prmap *prmap;
4657 printf_filtered ("Mapped address spaces:\n\n");
4658 #ifdef BFD_HOST_64_BIT
4659 printf_filtered (" %18s %18s %10s %10s %7s\n",
4661 printf_filtered ("\t%10s %10s %10s %10s %7s\n",
4668 #ifdef PROCFS_USE_READ_WRITE
4669 if (fstat (pip->map_fd, &sbuf) == 0)
4671 nmap = sbuf.st_size / sizeof (prmap_t);
4672 prmaps = (struct prmap *) alloca ((nmap + 1) * sizeof (*prmaps));
4673 if ((lseek (pip->map_fd, 0, SEEK_SET) == 0) &&
4674 (read (pip->map_fd, (char *) prmaps,
4675 nmap * sizeof (*prmaps)) == (nmap * sizeof (*prmaps))))
4678 for (prmap = prmaps; i < nmap; ++prmap, ++i)
4680 if (ioctl (pip -> ctl_fd, PIOCNMAP, &nmap) == 0)
4682 prmaps = (struct prmap *) alloca ((nmap + 1) * sizeof (*prmaps));
4683 if (ioctl (pip -> ctl_fd, PIOCMAP, prmaps) == 0)
4685 for (prmap = prmaps; prmap -> pr_size; ++prmap)
4686 #endif /* PROCFS_USE_READ_WRITE */
4688 #ifdef BFD_HOST_64_BIT
4689 printf_filtered (" %#18lx %#18lx %#10x %#10x %7s\n",
4691 printf_filtered ("\t%#10lx %#10lx %#10x %#10x %7s\n",
4693 (unsigned long)prmap -> pr_vaddr,
4694 (unsigned long)prmap -> pr_vaddr
4695 + prmap -> pr_size - 1,
4698 mappingflags (prmap -> pr_mflags));
4702 printf_filtered ("\n");
4710 info_proc -- implement the "info proc" command
4714 void info_proc (char *args, int from_tty)
4718 Implement gdb's "info proc" command by using the /proc interface
4719 to print status information about any currently running process.
4721 Examples of the use of "info proc" are:
4723 info proc (prints summary info for current inferior)
4724 info proc 123 (prints summary info for process with pid 123)
4725 info proc mappings (prints address mappings)
4726 info proc times (prints process/children times)
4727 info proc id (prints pid, ppid, gid, sid, etc)
4728 FIXME: i proc id not implemented.
4729 info proc status (prints general process state info)
4730 FIXME: i proc status not implemented.
4731 info proc signals (prints info about signal handling)
4732 info proc all (prints all info)
4737 info_proc (args, from_tty)
4742 struct procinfo *pip;
4743 struct cleanup *old_chain;
4759 old_chain = make_cleanup (null_cleanup, 0);
4761 /* Default to using the current inferior if no pid specified. Note
4762 that inferior_pid may be 0, hence we set okerr. */
4764 pid = inferior_pid & 0x7fffffff; /* strip off sol-thread bit */
4765 if (!(pip = find_procinfo (pid, 1))) /* inferior_pid no good? */
4766 pip = procinfo_list; /* take first available */
4767 pid = pid & 0xffff; /* extract "real" pid */
4771 if ((argv = buildargv (args)) == NULL)
4775 make_cleanup (freeargv, (char *) argv);
4777 while (*argv != NULL)
4779 argsize = strlen (*argv);
4780 if (argsize >= 1 && strncmp (*argv, "all", argsize) == 0)
4785 else if (argsize >= 2 && strncmp (*argv, "faults", argsize) == 0)
4790 else if (argsize >= 2 && strncmp (*argv, "flags", argsize) == 0)
4795 else if (argsize >= 1 && strncmp (*argv, "id", argsize) == 0)
4800 else if (argsize >= 1 && strncmp (*argv, "mappings", argsize) == 0)
4805 else if (argsize >= 2 && strncmp (*argv, "signals", argsize) == 0)
4810 else if (argsize >= 2 && strncmp (*argv, "status", argsize) == 0)
4815 else if (argsize >= 2 && strncmp (*argv, "syscalls", argsize) == 0)
4820 else if (argsize >= 1 && strncmp (*argv, "times", argsize) == 0)
4825 else if ((pid = atoi (*argv)) > 0)
4827 pip = (struct procinfo *) xmalloc (sizeof (struct procinfo));
4828 memset (pip, 0, sizeof (*pip));
4831 if (!open_proc_file (pid, pip, O_RDONLY, 0))
4833 perror_with_name (pip -> pathname);
4837 make_cleanup (close_proc_file, pip);
4839 else if (**argv != '\000')
4841 error ("Unrecognized or ambiguous keyword `%s'.", *argv);
4847 /* If we don't have a valid open process at this point, then we have no
4848 inferior or didn't specify a specific pid. */
4853 No process. Start debugging a program or specify an explicit process ID.");
4856 if (!procfs_read_status (pip))
4858 print_sys_errmsg (pip -> pathname, errno);
4859 error ("procfs_read_status failed");
4862 #ifndef PROCFS_USE_READ_WRITE
4864 nlwp = pip->prstatus.pr_nlwp;
4865 lwps = alloca ((2 * nlwp + 2) * sizeof (*lwps));
4867 if (ioctl (pip->ctl_fd, PIOCLWPIDS, lwps))
4869 print_sys_errmsg (pip -> pathname, errno);
4870 error ("PIOCLWPIDS failed");
4872 #else /* PIOCLWPIDS */
4874 lwps = alloca ((2 * nlwp + 2) * sizeof *lwps);
4876 #endif /* PIOCLWPIDS */
4878 for (; nlwp > 0; nlwp--, lwps++)
4880 pip = find_procinfo ((*lwps << 16) | pid, 1);
4884 pip = (struct procinfo *) xmalloc (sizeof (struct procinfo));
4885 memset (pip, 0, sizeof (*pip));
4886 if (!open_proc_file ((*lwps << 16) | pid, pip, O_RDONLY, 0))
4889 make_cleanup (close_proc_file, pip);
4891 if (!procfs_read_status (pip))
4893 print_sys_errmsg (pip -> pathname, errno);
4894 error ("procfs_read_status failed");
4898 #endif /* PROCFS_USE_READ_WRITE */
4900 /* Print verbose information of the requested type(s), or just a summary
4901 of the information for all types. */
4903 printf_filtered ("\nInformation for %s.%d:\n\n", pip -> pathname, *lwps);
4904 if (summary || all || flags)
4906 info_proc_flags (pip, summary);
4910 info_proc_stop (pip, summary);
4912 supply_gregset (&pip->prstatus.pr_lwp.pr_context.uc_mcontext.gregs);
4914 supply_gregset (&pip->prstatus.pr_reg);
4916 printf_filtered ("PC: ");
4917 print_address (read_pc (), gdb_stdout);
4918 printf_filtered ("\n");
4920 if (summary || all || signals || faults)
4922 info_proc_siginfo (pip, summary);
4924 if (summary || all || syscalls)
4926 info_proc_syscalls (pip, summary);
4928 if (summary || all || mappings)
4930 info_proc_mappings (pip, summary);
4932 if (summary || all || signals)
4934 info_proc_signals (pip, summary);
4936 if (summary || all || faults)
4938 info_proc_faults (pip, summary);
4940 printf_filtered ("\n");
4942 /* All done, deal with closing any temporary process info structure,
4943 freeing temporary memory , etc. */
4945 do_cleanups (old_chain);
4946 #ifndef PROCFS_USE_READ_WRITE
4955 modify_inherit_on_fork_flag - Change the inherit-on-fork flag
4959 void modify_inherit_on_fork_flag (fd, flag)
4963 Call this routine to modify the inherit-on-fork flag. This routine is
4964 just a nice wrapper to hide the #ifdefs needed by various systems to
4970 modify_inherit_on_fork_flag (fd, flag)
4974 #if defined (PIOCSET) || defined (PCSET)
4978 struct proc_ctl pctl;
4980 #if defined (PIOCSET) || defined (PCSET) /* New method */
4984 #ifdef PROCFS_USE_READ_WRITE
4986 pctl.data = PR_FORK;
4987 if (write (fd, (char *) &pctl, sizeof (struct proc_ctl)) < 0)
4990 retval = ioctl (fd, PIOCSET, &pr_flags);
4995 #ifdef PROCFS_USE_READ_WRITE
4997 pctl.data = PR_FORK;
4998 if (write (fd, (char *) &pctl, sizeof (struct proc_ctl)) < 0)
5001 retval = ioctl (fd, PIOCRESET, &pr_flags);
5006 #ifdef PIOCSFORK /* Original method */
5009 retval = ioctl (fd, PIOCSFORK, NULL);
5013 retval = ioctl (fd, PIOCRFORK, NULL);
5016 Neither PR_FORK nor PIOCSFORK exist!!!
5023 print_sys_errmsg ("modify_inherit_on_fork_flag", errno);
5024 error ("PIOCSFORK or PR_FORK modification failed");
5031 modify_run_on_last_close_flag - Change the run-on-last-close flag
5035 void modify_run_on_last_close_flag (fd, flag)
5039 Call this routine to modify the run-on-last-close flag. This routine
5040 is just a nice wrapper to hide the #ifdefs needed by various systems to
5046 modify_run_on_last_close_flag (fd, flag)
5050 #if defined (PIOCSET) || defined (PCSET)
5054 struct proc_ctl pctl;
5056 #if defined (PIOCSET) || defined (PCSET) /* New method */
5060 #ifdef PROCFS_USE_READ_WRITE
5063 if (write (fd, (char *) &pctl, sizeof (struct proc_ctl)) < 0)
5066 retval = ioctl (fd, PIOCSET, &pr_flags);
5071 #ifdef PROCFS_USE_READ_WRITE
5074 if (write (fd, (char *) &pctl, sizeof (struct proc_ctl)) < 0)
5077 retval = ioctl (fd, PIOCRESET, &pr_flags);
5082 #ifdef PIOCSRLC /* Original method */
5084 retval = ioctl (fd, PIOCSRLC, NULL);
5086 retval = ioctl (fd, PIOCRRLC, NULL);
5088 Neither PR_RLC nor PIOCSRLC exist!!!
5095 print_sys_errmsg ("modify_run_on_last_close_flag", errno);
5096 error ("PIOCSRLC or PR_RLC modification failed");
5103 procfs_clear_syscall_trap -- Deletes the trap for the specified system call.
5107 void procfs_clear_syscall_trap (struct procinfo *, int syscall_num, int errok)
5111 This function function disables traps for the specified system call.
5112 errok is non-zero if errors should be ignored.
5116 procfs_clear_syscall_trap (pi, syscall_num, errok)
5117 struct procinfo *pi;
5125 goterr = ioctl (pi->ctl_fd, PIOCGENTRY, &sysset) < 0;
5127 if (goterr && !errok)
5129 print_sys_errmsg (pi->pathname, errno);
5130 error ("PIOCGENTRY failed");
5135 prdelset (&sysset, syscall_num);
5137 if ((ioctl (pi->ctl_fd, PIOCSENTRY, &sysset) < 0) && !errok)
5139 print_sys_errmsg (pi->pathname, errno);
5140 error ("PIOCSENTRY failed");
5144 goterr = ioctl (pi->ctl_fd, PIOCGEXIT, &sysset) < 0;
5146 if (goterr && !errok)
5148 procfs_clear_syscall_trap (pi, syscall_num, 1);
5149 print_sys_errmsg (pi->pathname, errno);
5150 error ("PIOCGEXIT failed");
5155 praddset (&sysset, syscall_num);
5157 if ((ioctl (pi->ctl_fd, PIOCSEXIT, &sysset) < 0) && !errok)
5159 procfs_clear_syscall_trap (pi, syscall_num, 1);
5160 print_sys_errmsg (pi->pathname, errno);
5161 error ("PIOCSEXIT failed");
5166 if (!pi->syscall_handlers)
5169 error ("procfs_clear_syscall_trap: syscall_handlers is empty");
5173 /* Remove handler func from the handler list */
5175 for (i = 0; i < pi->num_syscall_handlers; i++)
5176 if (pi->syscall_handlers[i].syscall_num == syscall_num)
5178 if (i + 1 != pi->num_syscall_handlers)
5179 { /* Not the last entry.
5180 Move subsequent entries fwd. */
5181 memcpy (&pi->syscall_handlers[i], &pi->syscall_handlers[i + 1],
5182 (pi->num_syscall_handlers - i - 1)
5183 * sizeof (struct procfs_syscall_handler));
5186 pi->syscall_handlers = xrealloc (pi->syscall_handlers,
5187 (pi->num_syscall_handlers - 1)
5188 * sizeof (struct procfs_syscall_handler));
5189 pi->num_syscall_handlers--;
5194 error ("procfs_clear_syscall_trap: Couldn't find handler for sys call %d",
5202 procfs_set_syscall_trap -- arrange for a function to be called when the
5203 child executes the specified system call.
5207 void procfs_set_syscall_trap (struct procinfo *, int syscall_num, int flags,
5208 syscall_func_t *function)
5212 This function sets up an entry and/or exit trap for the specified system
5213 call. When the child executes the specified system call, your function
5214 will be called with the call #, a flag that indicates entry or exit, and
5215 pointers to rtnval and statval (which are used by procfs_wait). The
5216 function should return non-zero if something interesting happened, zero
5221 procfs_set_syscall_trap (pi, syscall_num, flags, func)
5222 struct procinfo *pi;
5225 syscall_func_t *func;
5230 if (flags & PROCFS_SYSCALL_ENTRY)
5232 if (ioctl (pi->ctl_fd, PIOCGENTRY, &sysset) < 0)
5234 print_sys_errmsg (pi->pathname, errno);
5235 error ("PIOCGENTRY failed");
5238 praddset (&sysset, syscall_num);
5240 if (ioctl (pi->ctl_fd, PIOCSENTRY, &sysset) < 0)
5242 print_sys_errmsg (pi->pathname, errno);
5243 error ("PIOCSENTRY failed");
5247 if (flags & PROCFS_SYSCALL_EXIT)
5249 if (ioctl (pi->ctl_fd, PIOCGEXIT, &sysset) < 0)
5251 procfs_clear_syscall_trap (pi, syscall_num, 1);
5252 print_sys_errmsg (pi->pathname, errno);
5253 error ("PIOCGEXIT failed");
5256 praddset (&sysset, syscall_num);
5258 if (ioctl (pi->ctl_fd, PIOCSEXIT, &sysset) < 0)
5260 procfs_clear_syscall_trap (pi, syscall_num, 1);
5261 print_sys_errmsg (pi->pathname, errno);
5262 error ("PIOCSEXIT failed");
5267 if (!pi->syscall_handlers)
5269 pi->syscall_handlers = xmalloc (sizeof (struct procfs_syscall_handler));
5270 pi->syscall_handlers[0].syscall_num = syscall_num;
5271 pi->syscall_handlers[0].func = func;
5272 pi->num_syscall_handlers = 1;
5278 for (i = 0; i < pi->num_syscall_handlers; i++)
5279 if (pi->syscall_handlers[i].syscall_num == syscall_num)
5281 pi->syscall_handlers[i].func = func;
5285 pi->syscall_handlers = xrealloc (pi->syscall_handlers, (i + 1)
5286 * sizeof (struct procfs_syscall_handler));
5287 pi->syscall_handlers[i].syscall_num = syscall_num;
5288 pi->syscall_handlers[i].func = func;
5289 pi->num_syscall_handlers++;
5293 #ifdef SYS_lwp_create
5299 procfs_lwp_creation_handler - handle exit from the _lwp_create syscall
5303 int procfs_lwp_creation_handler (pi, syscall_num, why, rtnvalp, statvalp)
5307 This routine is called both when an inferior process and it's new lwp
5308 are about to finish a _lwp_create() system call. This is the system
5309 call that Solaris uses to create a lightweight process. When the
5310 target process gets this event, we can look at sysarg[2] to find the
5311 new childs lwp ID, and create a procinfo struct from that. After that,
5312 we pretend that we got a SIGTRAP, and return non-zero to tell
5313 procfs_wait to wake up. Subsequently, wait_for_inferior gets woken up,
5314 sees the new process and continues it.
5316 When we see the child exiting from lwp_create, we just contine it,
5317 since everything was handled when the parent trapped.
5320 In effect, we are only paying attention to the parent's completion of
5321 the lwp_create syscall. If we only paid attention to the child
5322 instead, then we wouldn't detect the creation of a suspended thread.
5326 procfs_lwp_creation_handler (pi, syscall_num, why, rtnvalp, statvalp)
5327 struct procinfo *pi;
5334 struct procinfo *childpi;
5335 struct proc_ctl pctl;
5337 /* We've just detected the completion of an lwp_create system call. Now we
5338 need to setup a procinfo struct for this thread, and notify the thread
5339 system of the new arrival. */
5341 /* If lwp_create failed, then nothing interesting happened. Continue the
5342 process and go back to sleep. */
5345 /* Joel ... can you check this logic out please? JKJ */
5346 if (pi->prstatus.pr_lwp.pr_context.uc_mcontext.gregs[R_EFL] & 1)
5347 { /* _lwp_create failed */
5349 pctl.data = PRCFAULT;
5351 if (write (pi->ctl_fd, (char *) &pctl, sizeof (struct proc_ctl)) < 0)
5352 perror_with_name (pi->pathname);
5356 #else /* UNIXWARE */
5357 if (PROCFS_GET_CARRY (pi->prstatus.pr_reg))
5358 { /* _lwp_create failed */
5359 pi->prrun.pr_flags &= PRSTEP;
5360 pi->prrun.pr_flags |= PRCFAULT;
5362 if (ioctl (pi->ctl_fd, PIOCRUN, &pi->prrun) != 0)
5363 perror_with_name (pi->pathname);
5369 /* At this point, the new thread is stopped at it's first instruction, and
5370 the parent is stopped at the exit from lwp_create. */
5372 if (pi->new_child) /* Child? */
5373 { /* Yes, just continue it */
5376 pctl.data = PRCFAULT;
5378 if (write(pi->ctl_fd, (char *)&pctl, sizeof (struct proc_ctl)) < 0)
5379 #else /* !UNIXWARE */
5380 pi->prrun.pr_flags &= PRSTEP;
5381 pi->prrun.pr_flags |= PRCFAULT;
5383 if ((pi->prstatus.pr_flags & PR_ISTOP)
5384 && ioctl (pi->ctl_fd, PIOCRUN, &pi->prrun) != 0)
5385 #endif /* !UNIXWARE */
5386 perror_with_name (pi->pathname);
5388 pi->new_child = 0; /* No longer new */
5393 /* We're the proud parent of a new thread. Setup an exit trap for lwp_create
5394 in the child and continue the parent. */
5396 /* Third arg is pointer to new thread id. */
5398 lwp_id = read_memory_integer (pi->prstatus.pr_lwp.pr_sysarg[2], sizeof (int));
5400 lwp_id = read_memory_integer (pi->prstatus.pr_sysarg[2], sizeof (int));
5403 lwp_id = (lwp_id << 16) | PIDGET (pi->pid);
5405 childpi = create_procinfo (lwp_id);
5407 /* The new process has actually inherited the lwp_create syscall trap from
5408 it's parent, but we still have to call this to register handlers for
5411 procfs_set_inferior_syscall_traps (childpi);
5412 add_thread (lwp_id);
5413 printf_filtered ("[New %s]\n", target_pid_to_str (lwp_id));
5415 /* Continue the parent */
5418 pctl.data = PRCFAULT;
5420 if (write(pi->ctl_fd, (char *)&pctl, sizeof (struct proc_ctl)) < 0)
5422 pi->prrun.pr_flags &= PRSTEP;
5423 pi->prrun.pr_flags |= PRCFAULT;
5424 if (ioctl (pi->ctl_fd, PIOCRUN, &pi->prrun) != 0)
5426 perror_with_name (pi->pathname);
5428 /* The new child may have been created in one of two states:
5429 SUSPENDED or RUNNABLE. If runnable, we will simply signal it to run.
5430 If suspended, we flag it to be continued later, when it has an event. */
5433 if (childpi->prstatus.pr_lwp.pr_why == PR_SUSPENDED)
5435 if (childpi->prstatus.pr_why == PR_SUSPENDED)
5437 childpi->new_child = 1; /* Flag this as an unseen child process */
5440 /* Continue the child */
5443 pctl.data = PRCFAULT;
5445 if (write(pi->ctl_fd, (char *)&pctl, sizeof (struct proc_ctl)) < 0)
5447 childpi->prrun.pr_flags &= PRSTEP;
5448 childpi->prrun.pr_flags |= PRCFAULT;
5450 if (ioctl (childpi->ctl_fd, PIOCRUN, &childpi->prrun) != 0)
5452 perror_with_name (childpi->pathname);
5456 #endif /* SYS_lwp_create */
5458 /* Fork an inferior process, and start debugging it with /proc. */
5461 procfs_create_inferior (exec_file, allargs, env)
5466 char *shell_file = getenv ("SHELL");
5468 if (shell_file != NULL && strchr (shell_file, '/') == NULL)
5471 /* We will be looking down the PATH to find shell_file. If we
5472 just do this the normal way (via execlp, which operates by
5473 attempting an exec for each element of the PATH until it
5474 finds one which succeeds), then there will be an exec for
5475 each failed attempt, each of which will cause a PR_SYSEXIT
5476 stop, and we won't know how to distinguish the PR_SYSEXIT's
5477 for these failed execs with the ones for successful execs
5478 (whether the exec has succeeded is stored at that time in the
5479 carry bit or some such architecture-specific and
5480 non-ABI-specified place).
5482 So I can't think of anything better than to search the PATH
5483 now. This has several disadvantages: (1) There is a race
5484 condition; if we find a file now and it is deleted before we
5485 exec it, we lose, even if the deletion leaves a valid file
5486 further down in the PATH, (2) there is no way to know exactly
5487 what an executable (in the sense of "capable of being
5488 exec'd") file is. Using access() loses because it may lose
5489 if the caller is the superuser; failing to use it loses if
5490 there are ACLs or some such. */
5494 /* FIXME-maybe: might want "set path" command so user can change what
5495 path is used from within GDB. */
5496 char *path = getenv ("PATH");
5498 struct stat statbuf;
5501 path = "/bin:/usr/bin";
5503 tryname = alloca (strlen (path) + strlen (shell_file) + 2);
5504 for (p = path; p != NULL; p = p1 ? p1 + 1: NULL)
5506 p1 = strchr (p, ':');
5511 strncpy (tryname, p, len);
5512 tryname[len] = '\0';
5513 strcat (tryname, "/");
5514 strcat (tryname, shell_file);
5515 if (access (tryname, X_OK) < 0)
5517 if (stat (tryname, &statbuf) < 0)
5519 if (!S_ISREG (statbuf.st_mode))
5520 /* We certainly need to reject directories. I'm not quite
5521 as sure about FIFOs, sockets, etc., but I kind of doubt
5522 that people want to exec() these things. */
5527 /* Not found. This must be an error rather than merely passing
5528 the file to execlp(), because execlp() would try all the
5529 exec()s, causing GDB to get confused. */
5530 error ("Can't find shell %s in PATH", shell_file);
5532 shell_file = tryname;
5535 fork_inferior (exec_file, allargs, env,
5536 proc_set_exec_trap, procfs_init_inferior, shell_file);
5538 /* We are at the first instruction we care about. */
5539 /* Pedal to the metal... */
5541 proceed ((CORE_ADDR) -1, TARGET_SIGNAL_0, 0);
5544 /* Clean up after the inferior dies. */
5547 procfs_mourn_inferior ()
5549 struct procinfo *pi;
5550 struct procinfo *next_pi;
5552 for (pi = procinfo_list; pi; pi = next_pi)
5555 unconditionally_kill_inferior (pi);
5558 unpush_target (&procfs_ops);
5559 generic_mourn_inferior ();
5563 /* Mark our target-struct as eligible for stray "run" and "attach" commands. */
5567 /* This variable is controlled by modules that sit atop procfs that may layer
5568 their own process structure atop that provided here. sol-thread.c does
5569 this because of the Solaris two-level thread model. */
5571 return !procfs_suppress_run;
5573 #ifdef TARGET_HAS_HARDWARE_WATCHPOINTS
5576 /* Insert a watchpoint */
5578 procfs_set_watchpoint(pid, addr, len, rw)
5584 struct procinfo *pi;
5587 pi = find_procinfo (pid == -1 ? inferior_pid : pid, 0);
5588 wpt.pr_vaddr = (caddr_t)addr;
5590 wpt.pr_wflags = ((rw & 1) ? MA_READ : 0) | ((rw & 2) ? MA_WRITE : 0);
5591 if (ioctl (pi->ctl_fd, PIOCSWATCH, &wpt) < 0)
5595 /* Currently it sometimes happens that the same watchpoint gets
5596 deleted twice - don't die in this case (FIXME please) */
5597 if (errno == ESRCH && len == 0)
5599 print_sys_errmsg (pi->pathname, errno);
5600 error ("PIOCSWATCH failed");
5606 procfs_stopped_by_watchpoint(pid)
5609 struct procinfo *pi;
5613 pi = find_procinfo (pid == -1 ? inferior_pid : pid, 0);
5614 if (pi->prstatus.pr_flags & (PR_STOPPED | PR_ISTOP))
5616 why = pi->prstatus.pr_why;
5617 what = pi->prstatus.pr_what;
5618 if (why == PR_FAULTED
5619 #if defined (FLTWATCH) && defined (FLTKWATCH)
5620 && (what == FLTWATCH || what == FLTKWATCH)
5623 && (what == FLTWATCH)
5626 && (what == FLTKWATCH)
5634 #endif /* !UNIXWARE */
5635 #endif /* TARGET_HAS_HARDWARE_WATCHPOINTS */
5637 /* Why is this necessary? Shouldn't dead threads just be removed from the
5641 procfs_thread_alive (pid)
5644 struct procinfo *pi, *next_pi;
5646 for (pi = procinfo_list; pi; pi = next_pi)
5649 if (pi -> pid == pid)
5650 if (procfs_read_status (pi)) /* alive */
5652 else /* defunct (exited) */
5654 close_proc_file (pi);
5662 procfs_first_available ()
5664 struct procinfo *pi;
5666 for (pi = procinfo_list; pi; pi = pi->next)
5668 if (procfs_read_status (pi))
5675 procfs_get_pid_fd (pid)
5678 struct procinfo *pi = find_procinfo (pid, 1);
5686 /* Send a SIGINT to the process group. This acts just like the user typed a
5687 ^C on the controlling terminal.
5689 XXX - This may not be correct for all systems. Some may want to use
5690 killpg() instead of kill (-pgrp). */
5695 extern pid_t inferior_process_group;
5697 kill (-inferior_process_group, SIGINT);
5700 /* Convert a pid to printable form. */
5704 procfs_pid_to_str (pid)
5707 static char buf[100];
5709 sprintf (buf, "Kernel thread %d", TIDGET (pid));
5715 struct target_ops procfs_ops = {
5716 "procfs", /* to_shortname */
5717 "Unix /proc child process", /* to_longname */
5718 "Unix /proc child process (started by the \"run\" command).", /* to_doc */
5719 procfs_open, /* to_open */
5721 procfs_attach, /* to_attach */
5722 procfs_detach, /* to_detach */
5723 procfs_resume, /* to_resume */
5724 procfs_wait, /* to_wait */
5725 procfs_fetch_registers, /* to_fetch_registers */
5726 procfs_store_registers, /* to_store_registers */
5727 procfs_prepare_to_store, /* to_prepare_to_store */
5728 procfs_xfer_memory, /* to_xfer_memory */
5729 procfs_files_info, /* to_files_info */
5730 memory_insert_breakpoint, /* to_insert_breakpoint */
5731 memory_remove_breakpoint, /* to_remove_breakpoint */
5732 terminal_init_inferior, /* to_terminal_init */
5733 terminal_inferior, /* to_terminal_inferior */
5734 terminal_ours_for_output, /* to_terminal_ours_for_output */
5735 terminal_ours, /* to_terminal_ours */
5736 child_terminal_info, /* to_terminal_info */
5737 procfs_kill_inferior, /* to_kill */
5739 0, /* to_lookup_symbol */
5740 procfs_create_inferior, /* to_create_inferior */
5741 procfs_mourn_inferior, /* to_mourn_inferior */
5742 procfs_can_run, /* to_can_run */
5743 procfs_notice_signals, /* to_notice_signals */
5744 procfs_thread_alive, /* to_thread_alive */
5745 procfs_stop, /* to_stop */
5746 process_stratum, /* to_stratum */
5748 1, /* to_has_all_memory */
5749 1, /* to_has_memory */
5750 1, /* to_has_stack */
5751 1, /* to_has_registers */
5752 1, /* to_has_execution */
5754 0, /* sections_end */
5755 OPS_MAGIC /* to_magic */
5759 _initialize_procfs ()
5761 #ifdef HAVE_OPTIONAL_PROC_FS
5762 char procname[MAX_PROC_NAME_SIZE];
5765 /* If we have an optional /proc filesystem (e.g. under OSF/1),
5766 don't add procfs support if we cannot access the running
5768 sprintf (procname, STATUS_PROC_NAME_FMT, getpid ());
5769 if ((fd = open (procname, O_RDONLY)) < 0)
5774 add_target (&procfs_ops);
5776 add_info ("processes", info_proc,
5777 "Show process status information using /proc entry.\n\
5778 Specify process id or use current inferior by default.\n\
5779 Specify keywords for detailed information; default is summary.\n\
5780 Keywords are: `all', `faults', `flags', `id', `mappings', `signals',\n\
5781 `status', `syscalls', and `times'.\n\
5782 Unambiguous abbreviations may be used.");
5784 init_syscall_table ();