]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/procfs.c
2000-05-08 Michael Snyder <msnyder@seadog.cygnus.com>
[thirdparty/binutils-gdb.git] / gdb / procfs.c
1 /* Machine independent support for SVR4 /proc (process file system) for GDB.
2 Copyright 1999 Free Software Foundation, Inc.
3 Written by Michael Snyder at Cygnus Solutions.
4 Based on work by Fred Fish, Stu Grossman, Geoff Noer, and others.
5
6 This file is part of GDB.
7
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.
12
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.
17
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 Foundation,
20 Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
21
22 #include "defs.h"
23 #include "inferior.h"
24 #include "target.h"
25 #include "gdbcore.h"
26 #include "gdbcmd.h"
27 #include "gdbthread.h"
28
29 #if defined (NEW_PROC_API)
30 #define _STRUCTURED_PROC 1 /* Should be done by configure script. */
31 #endif
32
33 #include <sys/procfs.h>
34 #include <sys/fault.h>
35 #include <sys/syscall.h>
36 #include <sys/errno.h>
37 #include <sys/wait.h>
38 #include <signal.h>
39 #include <ctype.h>
40
41 /*
42 * PROCFS.C
43 *
44 * This module provides the interface between GDB and the
45 * /proc file system, which is used on many versions of Unix
46 * as a means for debuggers to control other processes.
47 * Examples of the systems that use this interface are:
48 * Irix
49 * Solaris
50 * OSF
51 * Unixware
52 *
53 * /proc works by immitating a file system: you open a simulated file
54 * that represents the process you wish to interact with, and
55 * perform operations on that "file" in order to examine or change
56 * the state of the other process.
57 *
58 * The most important thing to know about /proc and this module
59 * is that there are two very different interfaces to /proc:
60 * One that uses the ioctl system call, and
61 * another that uses read and write system calls.
62 * This module has to support both /proc interfaces. This means
63 * that there are two different ways of doing every basic operation.
64 *
65 * In order to keep most of the code simple and clean, I have
66 * defined an interface "layer" which hides all these system calls.
67 * An ifdef (NEW_PROC_API) determines which interface we are using,
68 * and most or all occurrances of this ifdef should be confined to
69 * this interface layer.
70 */
71
72
73 /* Determine which /proc API we are using:
74 The ioctl API defines PIOCSTATUS, while
75 the read/write (multiple fd) API never does. */
76
77 #ifdef NEW_PROC_API
78 #include <sys/types.h>
79 #include <dirent.h> /* opendir/readdir, for listing the LWP's */
80 #endif
81
82 #include <fcntl.h> /* for O_RDONLY */
83 #include <unistd.h> /* for "X_OK" */
84 #include "gdb_stat.h" /* for struct stat */
85
86 /* Note: procfs-utils.h must be included after the above system header
87 files, because it redefines various system calls using macros.
88 This may be incompatible with the prototype declarations. */
89
90 #include "proc-utils.h"
91
92 /* =================== TARGET_OPS "MODULE" =================== */
93
94 /*
95 * This module defines the GDB target vector and its methods.
96 */
97
98 static void procfs_open PARAMS((char *, int));
99 static void procfs_attach PARAMS ((char *, int));
100 static void procfs_detach PARAMS ((char *, int));
101 static void procfs_resume PARAMS ((int, int, enum target_signal));
102 static int procfs_can_run PARAMS ((void));
103 static void procfs_stop PARAMS ((void));
104 static void procfs_files_info PARAMS ((struct target_ops *));
105 static void procfs_fetch_registers PARAMS ((int));
106 static void procfs_store_registers PARAMS ((int));
107 static void procfs_notice_signals PARAMS ((int));
108 static void procfs_prepare_to_store PARAMS ((void));
109 static void procfs_kill_inferior PARAMS ((void));
110 static void procfs_mourn_inferior PARAMS ((void));
111 static void procfs_create_inferior PARAMS ((char *, char *, char **));
112 static int procfs_wait PARAMS ((int,
113 struct target_waitstatus *));
114 static int procfs_xfer_memory PARAMS ((CORE_ADDR,
115 char *, int, int,
116 struct target_ops *));
117
118 static int procfs_thread_alive PARAMS ((int));
119
120 void procfs_find_new_threads PARAMS ((void));
121 char *procfs_pid_to_str PARAMS ((int));
122
123 struct target_ops procfs_ops; /* the target vector */
124
125 static void
126 init_procfs_ops ()
127 {
128 procfs_ops.to_shortname = "procfs";
129 procfs_ops.to_longname = "Unix /proc child process";
130 procfs_ops.to_doc =
131 "Unix /proc child process (started by the \"run\" command).";
132 procfs_ops.to_open = procfs_open;
133 procfs_ops.to_can_run = procfs_can_run;
134 procfs_ops.to_create_inferior = procfs_create_inferior;
135 procfs_ops.to_kill = procfs_kill_inferior;
136 procfs_ops.to_mourn_inferior = procfs_mourn_inferior;
137 procfs_ops.to_attach = procfs_attach;
138 procfs_ops.to_detach = procfs_detach;
139 procfs_ops.to_wait = procfs_wait;
140 procfs_ops.to_resume = procfs_resume;
141 procfs_ops.to_prepare_to_store = procfs_prepare_to_store;
142 procfs_ops.to_fetch_registers = procfs_fetch_registers;
143 procfs_ops.to_store_registers = procfs_store_registers;
144 procfs_ops.to_xfer_memory = procfs_xfer_memory;
145 procfs_ops.to_insert_breakpoint = memory_insert_breakpoint;
146 procfs_ops.to_remove_breakpoint = memory_remove_breakpoint;
147 procfs_ops.to_notice_signals = procfs_notice_signals;
148 procfs_ops.to_files_info = procfs_files_info;
149 procfs_ops.to_stop = procfs_stop;
150
151 procfs_ops.to_terminal_init = terminal_init_inferior;
152 procfs_ops.to_terminal_inferior = terminal_inferior;
153 procfs_ops.to_terminal_ours_for_output = terminal_ours_for_output;
154 procfs_ops.to_terminal_ours = terminal_ours;
155 procfs_ops.to_terminal_info = child_terminal_info;
156
157 procfs_ops.to_find_new_threads = procfs_find_new_threads;
158 procfs_ops.to_thread_alive = procfs_thread_alive;
159 procfs_ops.to_pid_to_str = procfs_pid_to_str;
160
161 procfs_ops.to_has_all_memory = 1;
162 procfs_ops.to_has_memory = 1;
163 procfs_ops.to_has_execution = 1;
164 procfs_ops.to_has_stack = 1;
165 procfs_ops.to_has_registers = 1;
166 procfs_ops.to_stratum = process_stratum;
167 procfs_ops.to_has_thread_control = tc_schedlock;
168 procfs_ops.to_magic = OPS_MAGIC;
169 }
170
171 /* =================== END, TARGET_OPS "MODULE" =================== */
172
173 /*
174 * World Unification:
175 *
176 * Put any typedefs, defines etc. here that are required for
177 * the unification of code that handles different versions of /proc.
178 */
179
180 #ifdef NEW_PROC_API /* Solaris 7 && 8 method for watchpoints */
181 #ifndef UNIXWARE
182 enum { READ_WATCHFLAG = WA_READ,
183 WRITE_WATCHFLAG = WA_WRITE,
184 EXEC_WATCHFLAG = WA_EXEC,
185 AFTER_WATCHFLAG = WA_TRAPAFTER
186 };
187 #endif
188 #else /* Irix method for watchpoints */
189 enum { READ_WATCHFLAG = MA_READ,
190 WRITE_WATCHFLAG = MA_WRITE,
191 EXEC_WATCHFLAG = MA_EXEC,
192 AFTER_WATCHFLAG = 0 /* trapafter not implemented */
193 };
194 #endif
195
196
197
198
199 /* =================== STRUCT PROCINFO "MODULE" =================== */
200
201 /* FIXME: this comment will soon be out of date W.R.T. threads. */
202
203 /* The procinfo struct is a wrapper to hold all the state information
204 concerning a /proc process. There should be exactly one procinfo
205 for each process, and since GDB currently can debug only one
206 process at a time, that means there should be only one procinfo.
207 All of the LWP's of a process can be accessed indirectly thru the
208 single process procinfo.
209
210 However, against the day when GDB may debug more than one process,
211 this data structure is kept in a list (which for now will hold no
212 more than one member), and many functions will have a pointer to a
213 procinfo as an argument.
214
215 There will be a separate procinfo structure for use by the (not yet
216 implemented) "info proc" command, so that we can print useful
217 information about any random process without interfering with the
218 inferior's procinfo information. */
219
220 #ifdef NEW_PROC_API
221 /* format strings for /proc paths */
222 # ifndef CTL_PROC_NAME_FMT
223 # define MAIN_PROC_NAME_FMT "/proc/%d"
224 # define CTL_PROC_NAME_FMT "/proc/%d/ctl"
225 # define AS_PROC_NAME_FMT "/proc/%d/as"
226 # define MAP_PROC_NAME_FMT "/proc/%d/map"
227 # define STATUS_PROC_NAME_FMT "/proc/%d/status"
228 # define MAX_PROC_NAME_SIZE sizeof("/proc/99999/lwp/8096/lstatus")
229 # endif
230 /* the name of the proc status struct depends on the implementation */
231 typedef pstatus_t gdb_prstatus_t;
232 typedef lwpstatus_t gdb_lwpstatus_t;
233 #else /* ! NEW_PROC_API */
234 /* format strings for /proc paths */
235 # ifndef CTL_PROC_NAME_FMT
236 # define MAIN_PROC_NAME_FMT "/proc/%05d"
237 # define CTL_PROC_NAME_FMT "/proc/%05d"
238 # define AS_PROC_NAME_FMT "/proc/%05d"
239 # define MAP_PROC_NAME_FMT "/proc/%05d"
240 # define STATUS_PROC_NAME_FMT "/proc/%05d"
241 # define MAX_PROC_NAME_SIZE sizeof("/proc/ttttppppp")
242 # endif
243 /* the name of the proc status struct depends on the implementation */
244 typedef prstatus_t gdb_prstatus_t;
245 typedef prstatus_t gdb_lwpstatus_t;
246 #endif /* NEW_PROC_API */
247
248
249 /* These #ifdefs are for sol2.x in particular. sol2.x has
250 both a "gregset_t" and a "prgregset_t", which have
251 similar uses but different layouts. sol2.x gdb tries to
252 use prgregset_t (and prfpregset_t) everywhere. */
253
254 #ifdef GDB_GREGSET_TYPE
255 typedef GDB_GREGSET_TYPE gdb_gregset_t;
256 #else
257 typedef gregset_t gdb_gregset_t;
258 #endif
259
260 #ifdef GDB_FPREGSET_TYPE
261 typedef GDB_FPREGSET_TYPE gdb_fpregset_t;
262 #else
263 typedef fpregset_t gdb_fpregset_t;
264 #endif
265
266 /* Provide default composite pid manipulation macros for systems that
267 don't have threads. */
268
269 #ifndef PIDGET
270 #define PIDGET(PID) (PID)
271 #define TIDGET(PID) (PID)
272 #endif
273 #ifndef MERGEPID
274 #define MERGEPID(PID, TID) (PID)
275 #endif
276
277 typedef struct procinfo {
278 struct procinfo *next;
279 int pid; /* Process ID */
280 int tid; /* Thread/LWP id */
281
282 /* process state */
283 int was_stopped;
284 int ignore_next_sigstop;
285
286 /* The following four fd fields may be identical, or may contain
287 several different fd's, depending on the version of /proc
288 (old ioctl or new read/write). */
289
290 int ctl_fd; /* File descriptor for /proc control file */
291 /*
292 * The next three file descriptors are actually only needed in the
293 * read/write, multiple-file-descriptor implemenation (NEW_PROC_API).
294 * However, to avoid a bunch of #ifdefs in the code, we will use
295 * them uniformly by (in the case of the ioctl single-file-descriptor
296 * implementation) filling them with copies of the control fd.
297 */
298 int status_fd; /* File descriptor for /proc status file */
299 int as_fd; /* File descriptor for /proc as file */
300
301 char pathname[MAX_PROC_NAME_SIZE]; /* Pathname to /proc entry */
302
303 fltset_t saved_fltset; /* Saved traced hardware fault set */
304 sigset_t saved_sigset; /* Saved traced signal set */
305 sigset_t saved_sighold; /* Saved held signal set */
306 sysset_t saved_exitset; /* Saved traced system call exit set */
307 sysset_t saved_entryset; /* Saved traced system call entry set */
308
309 gdb_prstatus_t prstatus; /* Current process status info */
310
311 #ifndef NEW_PROC_API
312 gdb_fpregset_t fpregset; /* Current floating point registers */
313 #endif
314
315 struct procinfo *thread_list;
316
317 int status_valid : 1;
318 int gregs_valid : 1;
319 int fpregs_valid : 1;
320 int threads_valid: 1;
321 } procinfo;
322
323 static char errmsg[128]; /* shared error msg buffer */
324
325 /* Function prototypes for procinfo module: */
326
327 static procinfo *find_procinfo_or_die PARAMS ((int pid, int tid));
328 static procinfo *find_procinfo PARAMS ((int pid, int tid));
329 static procinfo *create_procinfo PARAMS ((int pid, int tid));
330 static void destroy_procinfo PARAMS ((procinfo *p));
331 static void dead_procinfo PARAMS ((procinfo *p,
332 char *msg, int killp));
333 static int open_procinfo_files PARAMS ((procinfo *p, int which));
334 static void close_procinfo_files PARAMS ((procinfo *p));
335
336 /* The head of the procinfo list: */
337 static procinfo * procinfo_list;
338
339 /*
340 * Function: find_procinfo
341 *
342 * Search the procinfo list.
343 *
344 * Returns: pointer to procinfo, or NULL if not found.
345 */
346
347 static procinfo *
348 find_procinfo (pid, tid)
349 int pid;
350 int tid;
351 {
352 procinfo *pi;
353
354 for (pi = procinfo_list; pi; pi = pi->next)
355 if (pi->pid == pid)
356 break;
357
358 if (pi)
359 if (tid)
360 {
361 /* Don't check threads_valid. If we're updating the
362 thread_list, we want to find whatever threads are already
363 here. This means that in general it is the caller's
364 responsibility to check threads_valid and update before
365 calling find_procinfo, if the caller wants to find a new
366 thread. */
367
368 for (pi = pi->thread_list; pi; pi = pi->next)
369 if (pi->tid == tid)
370 break;
371 }
372
373 return pi;
374 }
375
376 /*
377 * Function: find_procinfo_or_die
378 *
379 * Calls find_procinfo, but errors on failure.
380 */
381
382 static procinfo *
383 find_procinfo_or_die (pid, tid)
384 int pid;
385 int tid;
386 {
387 procinfo *pi = find_procinfo (pid, tid);
388
389 if (pi == NULL)
390 {
391 if (tid)
392 error ("procfs: couldn't find pid %d (kernel thread %d) in procinfo list.",
393 pid, tid);
394 else
395 error ("procfs: couldn't find pid %d in procinfo list.", pid);
396 }
397 return pi;
398 }
399
400 /*
401 * Function: open_procinfo_files
402 *
403 * Open the file descriptor for the process or LWP.
404 * ifdef NEW_PROC_API, we only open the control file descriptor;
405 * the others are opened lazily as needed.
406 * else (if not NEW_PROC_API), there is only one real
407 * file descriptor, but we keep multiple copies of it so that
408 * the code that uses them does not have to be #ifdef'd.
409 *
410 * Return: file descriptor, or zero for failure.
411 */
412
413 enum { FD_CTL, FD_STATUS, FD_AS };
414
415 static int
416 open_procinfo_files (pi, which)
417 procinfo *pi;
418 int which;
419 {
420 #ifdef NEW_PROC_API
421 char tmp[MAX_PROC_NAME_SIZE];
422 #endif
423 int fd;
424
425 /*
426 * This function is getting ALMOST long enough to break up into several.
427 * Here is some rationale:
428 *
429 * NEW_PROC_API (Solaris 2.6, Solaris 2.7, Unixware):
430 * There are several file descriptors that may need to be open
431 * for any given process or LWP. The ones we're intereted in are:
432 * - control (ctl) write-only change the state
433 * - status (status) read-only query the state
434 * - address space (as) read/write access memory
435 * - map (map) read-only virtual addr map
436 * Most of these are opened lazily as they are needed.
437 * The pathnames for the 'files' for an LWP look slightly
438 * different from those of a first-class process:
439 * Pathnames for a process (<proc-id>):
440 * /proc/<proc-id>/ctl
441 * /proc/<proc-id>/status
442 * /proc/<proc-id>/as
443 * /proc/<proc-id>/map
444 * Pathnames for an LWP (lwp-id):
445 * /proc/<proc-id>/lwp/<lwp-id>/lwpctl
446 * /proc/<proc-id>/lwp/<lwp-id>/lwpstatus
447 * An LWP has no map or address space file descriptor, since
448 * the memory map and address space are shared by all LWPs.
449 *
450 * Everyone else (Solaris 2.5, Irix, OSF)
451 * There is only one file descriptor for each process or LWP.
452 * For convenience, we copy the same file descriptor into all
453 * three fields of the procinfo struct (ctl_fd, status_fd, and
454 * as_fd, see NEW_PROC_API above) so that code that uses them
455 * doesn't need any #ifdef's.
456 * Pathname for all:
457 * /proc/<proc-id>
458 *
459 * Solaris 2.5 LWP's:
460 * Each LWP has an independent file descriptor, but these
461 * are not obtained via the 'open' system call like the rest:
462 * instead, they're obtained thru an ioctl call (PIOCOPENLWP)
463 * to the file descriptor of the parent process.
464 *
465 * OSF threads:
466 * These do not even have their own independent file descriptor.
467 * All operations are carried out on the file descriptor of the
468 * parent process. Therefore we just call open again for each
469 * thread, getting a new handle for the same 'file'.
470 */
471
472 #ifdef NEW_PROC_API
473 /*
474 * In this case, there are several different file descriptors that
475 * we might be asked to open. The control file descriptor will be
476 * opened early, but the others will be opened lazily as they are
477 * needed.
478 */
479
480 strcpy (tmp, pi->pathname);
481 switch (which) { /* which file descriptor to open? */
482 case FD_CTL:
483 if (pi->tid)
484 strcat (tmp, "/lwpctl");
485 else
486 strcat (tmp, "/ctl");
487 fd = open (tmp, O_WRONLY);
488 if (fd <= 0)
489 return 0; /* fail */
490 pi->ctl_fd = fd;
491 break;
492 case FD_AS:
493 if (pi->tid)
494 return 0; /* there is no 'as' file descriptor for an lwp */
495 strcat (tmp, "/as");
496 fd = open (tmp, O_RDWR);
497 if (fd <= 0)
498 return 0; /* fail */
499 pi->as_fd = fd;
500 break;
501 case FD_STATUS:
502 if (pi->tid)
503 strcat (tmp, "/lwpstatus");
504 else
505 strcat (tmp, "/status");
506 fd = open (tmp, O_RDONLY);
507 if (fd <= 0)
508 return 0; /* fail */
509 pi->status_fd = fd;
510 break;
511 default:
512 return 0; /* unknown file descriptor */
513 }
514 #else /* not NEW_PROC_API */
515 /*
516 * In this case, there is only one file descriptor for each procinfo
517 * (ie. each process or LWP). In fact, only the file descriptor for
518 * the process can actually be opened by an 'open' system call.
519 * The ones for the LWPs have to be obtained thru an IOCTL call
520 * on the process's file descriptor.
521 *
522 * For convenience, we copy each procinfo's single file descriptor
523 * into all of the fields occupied by the several file descriptors
524 * of the NEW_PROC_API implementation. That way, the code that uses
525 * them can be written without ifdefs.
526 */
527
528
529 #ifdef PIOCTSTATUS /* OSF */
530 if ((fd = open (pi->pathname, O_RDWR)) == 0) /* Only one FD; just open it. */
531 return 0;
532 #else /* Sol 2.5, Irix, other? */
533 if (pi->tid == 0) /* Master procinfo for the process */
534 {
535 fd = open (pi->pathname, O_RDWR);
536 if (fd <= 0)
537 return 0; /* fail */
538 }
539 else /* LWP thread procinfo */
540 {
541 #ifdef PIOCOPENLWP /* Sol 2.5, thread/LWP */
542 procinfo *process;
543 int lwpid = pi->tid;
544
545 /* Find the procinfo for the entire process. */
546 if ((process = find_procinfo (pi->pid, 0)) == NULL)
547 return 0; /* fail */
548
549 /* Now obtain the file descriptor for the LWP. */
550 if ((fd = ioctl (process->ctl_fd, PIOCOPENLWP, &lwpid)) <= 0)
551 return 0; /* fail */
552 #else /* Irix, other? */
553 return 0; /* Don't know how to open threads */
554 #endif /* Sol 2.5 PIOCOPENLWP */
555 }
556 #endif /* OSF PIOCTSTATUS */
557 pi->ctl_fd = pi->as_fd = pi->status_fd = fd;
558 #endif /* NEW_PROC_API */
559
560 return 1; /* success */
561 }
562
563 /*
564 * Function: create_procinfo
565 *
566 * Allocate a data structure and link it into the procinfo list.
567 * (First tries to find a pre-existing one (FIXME: why?)
568 *
569 * Return: pointer to new procinfo struct.
570 */
571
572 static procinfo *
573 create_procinfo (pid, tid)
574 int pid;
575 int tid;
576 {
577 procinfo *pi, *parent;
578
579 if ((pi = find_procinfo (pid, tid)))
580 return pi; /* Already exists, nothing to do. */
581
582 /* find parent before doing malloc, to save having to cleanup */
583 if (tid != 0)
584 parent = find_procinfo_or_die (pid, 0); /* FIXME: should I
585 create it if it
586 doesn't exist yet? */
587
588 pi = (procinfo *) xmalloc (sizeof (procinfo));
589 memset (pi, 0, sizeof (procinfo));
590 pi->pid = pid;
591 pi->tid = tid;
592
593 /* Chain into list. */
594 if (tid == 0)
595 {
596 sprintf (pi->pathname, MAIN_PROC_NAME_FMT, pid);
597 pi->next = procinfo_list;
598 procinfo_list = pi;
599 }
600 else
601 {
602 #ifdef NEW_PROC_API
603 sprintf (pi->pathname, "/proc/%05d/lwp/%d", pid, tid);
604 #else
605 sprintf (pi->pathname, MAIN_PROC_NAME_FMT, pid);
606 #endif
607 pi->next = parent->thread_list;
608 parent->thread_list = pi;
609 }
610 return pi;
611 }
612
613 /*
614 * Function: close_procinfo_files
615 *
616 * Close all file descriptors associated with the procinfo
617 */
618
619 static void
620 close_procinfo_files (pi)
621 procinfo *pi;
622 {
623 if (pi->ctl_fd > 0)
624 close (pi->ctl_fd);
625 #ifdef NEW_PROC_API
626 if (pi->as_fd > 0)
627 close (pi->as_fd);
628 if (pi->status_fd > 0)
629 close (pi->status_fd);
630 #endif
631 pi->ctl_fd = pi->as_fd = pi->status_fd = 0;
632 }
633
634 /*
635 * Function: destroy_procinfo
636 *
637 * Destructor function. Close, unlink and deallocate the object.
638 */
639
640 static void
641 destroy_one_procinfo (list, pi)
642 procinfo **list;
643 procinfo *pi;
644 {
645 procinfo *ptr;
646
647 /* Step one: unlink the procinfo from its list */
648 if (pi == *list)
649 *list = pi->next;
650 else
651 for (ptr = *list; ptr; ptr = ptr->next)
652 if (ptr->next == pi)
653 {
654 ptr->next = pi->next;
655 break;
656 }
657
658 /* Step two: close any open file descriptors */
659 close_procinfo_files (pi);
660
661 /* Step three: free the memory. */
662 free (pi);
663 }
664
665 static void
666 destroy_procinfo (pi)
667 procinfo *pi;
668 {
669 procinfo *tmp;
670
671 if (pi->tid != 0) /* destroy a thread procinfo */
672 {
673 tmp = find_procinfo (pi->pid, 0); /* find the parent process */
674 destroy_one_procinfo (&tmp->thread_list, pi);
675 }
676 else /* destroy a process procinfo and all its threads */
677 {
678 /* First destroy the children, if any; */
679 while (pi->thread_list != NULL)
680 destroy_one_procinfo (&pi->thread_list, pi->thread_list);
681 /* Then destroy the parent. Genocide!!! */
682 destroy_one_procinfo (&procinfo_list, pi);
683 }
684 }
685
686 enum { NOKILL, KILL };
687
688 /*
689 * Function: dead_procinfo
690 *
691 * To be called on a non_recoverable error for a procinfo.
692 * Prints error messages, optionally sends a SIGKILL to the process,
693 * then destroys the data structure.
694 */
695
696 static void
697 dead_procinfo (pi, msg, kill_p)
698 procinfo *pi;
699 char *msg;
700 int kill_p;
701 {
702 char procfile[80];
703
704 if (pi->pathname)
705 {
706 print_sys_errmsg (pi->pathname, errno);
707 }
708 else
709 {
710 sprintf (procfile, "process %d", pi->pid);
711 print_sys_errmsg (procfile, errno);
712 }
713 if (kill_p == KILL)
714 kill (pi->pid, SIGKILL);
715
716 destroy_procinfo (pi);
717 error (msg);
718 }
719
720 /* =================== END, STRUCT PROCINFO "MODULE" =================== */
721
722 /* =================== /proc "MODULE" =================== */
723
724 /*
725 * This "module" is the interface layer between the /proc system API
726 * and the gdb target vector functions. This layer consists of
727 * access functions that encapsulate each of the basic operations
728 * that we need to use from the /proc API.
729 *
730 * The main motivation for this layer is to hide the fact that
731 * there are two very different implementations of the /proc API.
732 * Rather than have a bunch of #ifdefs all thru the gdb target vector
733 * functions, we do our best to hide them all in here.
734 */
735
736 int proc_get_status PARAMS ((procinfo *pi));
737 long proc_flags PARAMS ((procinfo *pi));
738 int proc_why PARAMS ((procinfo *pi));
739 int proc_what PARAMS ((procinfo *pi));
740 int proc_set_run_on_last_close PARAMS ((procinfo *pi));
741 int proc_unset_run_on_last_close PARAMS ((procinfo *pi));
742 int proc_set_inherit_on_fork PARAMS ((procinfo *pi));
743 int proc_unset_inherit_on_fork PARAMS ((procinfo *pi));
744 int proc_set_async PARAMS ((procinfo *pi));
745 int proc_unset_async PARAMS ((procinfo *pi));
746 int proc_stop_process PARAMS ((procinfo *pi));
747 int proc_trace_signal PARAMS ((procinfo *pi, int signo));
748 int proc_ignore_signal PARAMS ((procinfo *pi, int signo));
749 int proc_clear_current_fault PARAMS ((procinfo *pi));
750 int proc_set_current_signal PARAMS ((procinfo *pi, int signo));
751 int proc_clear_current_signal PARAMS ((procinfo *pi));
752 int proc_set_gregs PARAMS ((procinfo *pi));
753 int proc_set_fpregs PARAMS ((procinfo *pi));
754 int proc_wait_for_stop PARAMS ((procinfo *pi));
755 int proc_run_process PARAMS ((procinfo *pi, int step, int signo));
756 int proc_kill PARAMS ((procinfo *pi, int signo));
757 int proc_parent_pid PARAMS ((procinfo *pi));
758 int proc_get_nthreads PARAMS ((procinfo *pi));
759 int proc_get_current_thread PARAMS ((procinfo *pi));
760 int proc_set_held_signals PARAMS ((procinfo *pi, sigset_t *sighold));
761 int proc_set_traced_sysexit PARAMS ((procinfo *pi, sysset_t *sysset));
762 int proc_set_traced_sysentry PARAMS ((procinfo *pi, sysset_t *sysset));
763 int proc_set_traced_faults PARAMS ((procinfo *pi, fltset_t *fltset));
764 int proc_set_traced_signals PARAMS ((procinfo *pi, sigset_t *sigset));
765
766 int proc_update_threads PARAMS ((procinfo *pi));
767 int proc_iterate_over_threads PARAMS ((procinfo *pi,
768 int (*func) PARAMS ((procinfo *,
769 procinfo *,
770 void *)),
771 void *ptr));
772
773 gdb_gregset_t *proc_get_gregs PARAMS ((procinfo *pi));
774 gdb_fpregset_t *proc_get_fpregs PARAMS ((procinfo *pi));
775 sysset_t *proc_get_traced_sysexit PARAMS ((procinfo *pi, sysset_t *save));
776 sysset_t *proc_get_traced_sysentry PARAMS ((procinfo *pi, sysset_t *save));
777 fltset_t *proc_get_traced_faults PARAMS ((procinfo *pi, fltset_t *save));
778 sigset_t *proc_get_traced_signals PARAMS ((procinfo *pi, sigset_t *save));
779 sigset_t *proc_get_held_signals PARAMS ((procinfo *pi, sigset_t *save));
780 sigset_t *proc_get_pending_signals PARAMS ((procinfo *pi, sigset_t *save));
781 struct sigaction *proc_get_signal_actions PARAMS ((procinfo *pi,
782 struct sigaction *save));
783
784 void proc_warn PARAMS ((procinfo *pi, char *func, int line));
785 void proc_error PARAMS ((procinfo *pi, char *func, int line));
786
787 void
788 proc_warn (pi, func, line)
789 procinfo *pi;
790 char *func;
791 int line;
792 {
793 sprintf (errmsg, "procfs: %s line %d, %s", func, line, pi->pathname);
794 print_sys_errmsg (errmsg, errno);
795 }
796
797 void
798 proc_error (pi, func, line)
799 procinfo *pi;
800 char *func;
801 int line;
802 {
803 sprintf (errmsg, "procfs: %s line %d, %s", func, line, pi->pathname);
804 perror_with_name (errmsg);
805 }
806
807 /*
808 * Function: proc_get_status
809 *
810 * Updates the status struct in the procinfo.
811 * There is a 'valid' flag, to let other functions know when
812 * this function needs to be called (so the status is only
813 * read when it is needed). The status file descriptor is
814 * also only opened when it is needed.
815 *
816 * Return: non-zero for success, zero for failure.
817 */
818
819 int
820 proc_get_status (pi)
821 procinfo *pi;
822 {
823 /* Status file descriptor is opened "lazily" */
824 if (pi->status_fd == 0 &&
825 open_procinfo_files (pi, FD_STATUS) == 0)
826 {
827 pi->status_valid = 0;
828 return 0;
829 }
830
831 #ifdef NEW_PROC_API
832 if (lseek (pi->status_fd, 0, SEEK_SET) < 0)
833 pi->status_valid = 0; /* fail */
834 else
835 {
836 /* Sigh... I have to read a different data structure,
837 depending on whether this is a main process or an LWP. */
838 if (pi->tid)
839 pi->status_valid = (read (pi->status_fd,
840 (char *) &pi->prstatus.pr_lwp,
841 sizeof (lwpstatus_t))
842 == sizeof (lwpstatus_t));
843 else
844 {
845 pi->status_valid = (read (pi->status_fd,
846 (char *) &pi->prstatus,
847 sizeof (gdb_prstatus_t))
848 == sizeof (gdb_prstatus_t));
849 #if 0 /*def UNIXWARE*/
850 if (pi->status_valid &&
851 (pi->prstatus.pr_lwp.pr_flags & PR_ISTOP) &&
852 pi->prstatus.pr_lwp.pr_why == PR_REQUESTED)
853 /* Unixware peculiarity -- read the damn thing again! */
854 pi->status_valid = (read (pi->status_fd,
855 (char *) &pi->prstatus,
856 sizeof (gdb_prstatus_t))
857 == sizeof (gdb_prstatus_t));
858 #endif /* UNIXWARE */
859 }
860 }
861 #else /* ioctl method */
862 #ifdef PIOCTSTATUS /* osf */
863 if (pi->tid == 0) /* main process */
864 {
865 /* Just read the danged status. Now isn't that simple? */
866 pi->status_valid =
867 (ioctl (pi->status_fd, PIOCSTATUS, &pi->prstatus) >= 0);
868 }
869 else
870 {
871 int win;
872 struct {
873 long pr_count;
874 tid_t pr_error_thread;
875 struct prstatus status;
876 } thread_status;
877
878 thread_status.pr_count = 1;
879 thread_status.status.pr_tid = pi->tid;
880 win = (ioctl (pi->status_fd, PIOCTSTATUS, &thread_status) >= 0);
881 if (win)
882 {
883 memcpy (&pi->prstatus, &thread_status.status,
884 sizeof (pi->prstatus));
885 pi->status_valid = 1;
886 }
887 }
888 #else
889 /* Just read the danged status. Now isn't that simple? */
890 pi->status_valid = (ioctl (pi->status_fd, PIOCSTATUS, &pi->prstatus) >= 0);
891 #endif
892 #endif
893
894 if (pi->status_valid)
895 {
896 PROC_PRETTYFPRINT_STATUS (proc_flags (pi),
897 proc_why (pi),
898 proc_what (pi),
899 proc_get_current_thread (pi));
900 }
901
902 /* The status struct includes general regs, so mark them valid too */
903 pi->gregs_valid = pi->status_valid;
904 #ifdef NEW_PROC_API
905 /* In the read/write multiple-fd model,
906 the status struct includes the fp regs too, so mark them valid too */
907 pi->fpregs_valid = pi->status_valid;
908 #endif
909 return pi->status_valid; /* True if success, false if failure. */
910 }
911
912 /*
913 * Function: proc_flags
914 *
915 * returns the process flags (pr_flags field).
916 */
917
918 long
919 proc_flags (pi)
920 procinfo *pi;
921 {
922 if (!pi->status_valid)
923 if (!proc_get_status (pi))
924 return 0; /* FIXME: not a good failure value (but what is?) */
925
926 #ifdef NEW_PROC_API
927 # ifdef UNIXWARE
928 /* UnixWare 7.1 puts process status flags, e.g. PR_ASYNC, in
929 pstatus_t and LWP status flags, e.g. PR_STOPPED, in lwpstatus_t.
930 The two sets of flags don't overlap. */
931 return pi->prstatus.pr_flags | pi->prstatus.pr_lwp.pr_flags;
932 # else
933 return pi->prstatus.pr_lwp.pr_flags;
934 # endif
935 #else
936 return pi->prstatus.pr_flags;
937 #endif
938 }
939
940 /*
941 * Function: proc_why
942 *
943 * returns the pr_why field (why the process stopped).
944 */
945
946 int
947 proc_why (pi)
948 procinfo *pi;
949 {
950 if (!pi->status_valid)
951 if (!proc_get_status (pi))
952 return 0; /* FIXME: not a good failure value (but what is?) */
953
954 #ifdef NEW_PROC_API
955 return pi->prstatus.pr_lwp.pr_why;
956 #else
957 return pi->prstatus.pr_why;
958 #endif
959 }
960
961 /*
962 * Function: proc_what
963 *
964 * returns the pr_what field (details of why the process stopped).
965 */
966
967 int
968 proc_what (pi)
969 procinfo *pi;
970 {
971 if (!pi->status_valid)
972 if (!proc_get_status (pi))
973 return 0; /* FIXME: not a good failure value (but what is?) */
974
975 #ifdef NEW_PROC_API
976 return pi->prstatus.pr_lwp.pr_what;
977 #else
978 return pi->prstatus.pr_what;
979 #endif
980 }
981
982 #ifndef PIOCSSPCACT /* The following is not supported on OSF. */
983 /*
984 * Function: proc_nsysarg
985 *
986 * returns the pr_nsysarg field (number of args to the current syscall).
987 */
988
989 int
990 proc_nsysarg (pi)
991 procinfo *pi;
992 {
993 if (!pi->status_valid)
994 if (!proc_get_status (pi))
995 return 0;
996
997 #ifdef NEW_PROC_API
998 return pi->prstatus.pr_lwp.pr_nsysarg;
999 #else
1000 return pi->prstatus.pr_nsysarg;
1001 #endif
1002 }
1003
1004 /*
1005 * Function: proc_sysargs
1006 *
1007 * returns the pr_sysarg field (pointer to the arguments of current syscall).
1008 */
1009
1010 long *
1011 proc_sysargs (pi)
1012 procinfo *pi;
1013 {
1014 if (!pi->status_valid)
1015 if (!proc_get_status (pi))
1016 return NULL;
1017
1018 #ifdef NEW_PROC_API
1019 return (long *) &pi->prstatus.pr_lwp.pr_sysarg;
1020 #else
1021 return (long *) &pi->prstatus.pr_sysarg;
1022 #endif
1023 }
1024
1025 /*
1026 * Function: proc_syscall
1027 *
1028 * returns the pr_syscall field (id of current syscall if we are in one).
1029 */
1030
1031 int
1032 proc_syscall (pi)
1033 procinfo *pi;
1034 {
1035 if (!pi->status_valid)
1036 if (!proc_get_status (pi))
1037 return 0;
1038
1039 #ifdef NEW_PROC_API
1040 return pi->prstatus.pr_lwp.pr_syscall;
1041 #else
1042 return pi->prstatus.pr_syscall;
1043 #endif
1044 }
1045 #endif /* PIOCSSPCACT */
1046
1047 /*
1048 * Function: proc_cursig:
1049 *
1050 * returns the pr_cursig field (current signal).
1051 */
1052
1053 long
1054 proc_cursig (struct procinfo *pi)
1055 {
1056 if (!pi->status_valid)
1057 if (!proc_get_status (pi))
1058 return 0; /* FIXME: not a good failure value (but what is?) */
1059
1060 #ifdef NEW_PROC_API
1061 return pi->prstatus.pr_lwp.pr_cursig;
1062 #else
1063 return pi->prstatus.pr_cursig;
1064 #endif
1065 }
1066
1067 /*
1068 * Function: proc_modify_flag
1069 *
1070 * === I appologize for the messiness of this function.
1071 * === This is an area where the different versions of
1072 * === /proc are more inconsistent than usual. MVS
1073 *
1074 * Set or reset any of the following process flags:
1075 * PR_FORK -- forked child will inherit trace flags
1076 * PR_RLC -- traced process runs when last /proc file closed.
1077 * PR_KLC -- traced process is killed when last /proc file closed.
1078 * PR_ASYNC -- LWP's get to run/stop independently.
1079 *
1080 * There are three methods for doing this function:
1081 * 1) Newest: read/write [PCSET/PCRESET/PCUNSET]
1082 * [Sol6, Sol7, UW]
1083 * 2) Middle: PIOCSET/PIOCRESET
1084 * [Irix, Sol5]
1085 * 3) Oldest: PIOCSFORK/PIOCRFORK/PIOCSRLC/PIOCRRLC
1086 * [OSF, Sol5]
1087 *
1088 * Note: Irix does not define PR_ASYNC.
1089 * Note: OSF does not define PR_KLC.
1090 * Note: OSF is the only one that can ONLY use the oldest method.
1091 *
1092 * Arguments:
1093 * pi -- the procinfo
1094 * flag -- one of PR_FORK, PR_RLC, or PR_ASYNC
1095 * mode -- 1 for set, 0 for reset.
1096 *
1097 * Returns non-zero for success, zero for failure.
1098 */
1099
1100 enum { FLAG_RESET, FLAG_SET };
1101
1102 static int
1103 proc_modify_flag (pi, flag, mode)
1104 procinfo *pi;
1105 long flag;
1106 long mode;
1107 {
1108 long win = 0; /* default to fail */
1109
1110 /*
1111 * These operations affect the process as a whole, and applying
1112 * them to an individual LWP has the same meaning as applying them
1113 * to the main process. Therefore, if we're ever called with a
1114 * pointer to an LWP's procinfo, let's substitute the process's
1115 * procinfo and avoid opening the LWP's file descriptor
1116 * unnecessarily.
1117 */
1118
1119 if (pi->pid != 0)
1120 pi = find_procinfo_or_die (pi->pid, 0);
1121
1122 #ifdef NEW_PROC_API /* Newest method: UnixWare and newer Solarii */
1123 /* First normalize the PCUNSET/PCRESET command opcode
1124 (which for no obvious reason has a different definition
1125 from one operating system to the next...) */
1126 #ifdef PCUNSET
1127 #define GDBRESET PCUNSET
1128 #endif
1129 #ifdef PCRESET
1130 #define GDBRESET PCRESET
1131 #endif
1132 {
1133 long arg[2];
1134
1135 if (mode == FLAG_SET) /* Set the flag (RLC, FORK, or ASYNC) */
1136 arg[0] = PCSET;
1137 else /* Reset the flag */
1138 arg[0] = GDBRESET;
1139
1140 arg[1] = flag;
1141 win = (write (pi->ctl_fd, (void *) &arg, sizeof (arg)) == sizeof (arg));
1142 }
1143 #else
1144 #ifdef PIOCSET /* Irix/Sol5 method */
1145 if (mode == FLAG_SET) /* Set the flag (hopefully RLC, FORK, or ASYNC) */
1146 {
1147 win = (ioctl (pi->ctl_fd, PIOCSET, &flag) >= 0);
1148 }
1149 else /* Reset the flag */
1150 {
1151 win = (ioctl (pi->ctl_fd, PIOCRESET, &flag) >= 0);
1152 }
1153
1154 #else
1155 #ifdef PIOCSRLC /* Oldest method: OSF */
1156 switch (flag) {
1157 case PR_RLC:
1158 if (mode == FLAG_SET) /* Set run-on-last-close */
1159 {
1160 win = (ioctl (pi->ctl_fd, PIOCSRLC, NULL) >= 0);
1161 }
1162 else /* Clear run-on-last-close */
1163 {
1164 win = (ioctl (pi->ctl_fd, PIOCRRLC, NULL) >= 0);
1165 }
1166 break;
1167 case PR_FORK:
1168 if (mode == FLAG_SET) /* Set inherit-on-fork */
1169 {
1170 win = (ioctl (pi->ctl_fd, PIOCSFORK, NULL) >= 0);
1171 }
1172 else /* Clear inherit-on-fork */
1173 {
1174 win = (ioctl (pi->ctl_fd, PIOCRFORK, NULL) >= 0);
1175 }
1176 break;
1177 default:
1178 win = 0; /* fail -- unknown flag (can't do PR_ASYNC) */
1179 break;
1180 }
1181 #endif
1182 #endif
1183 #endif
1184 #undef GDBRESET
1185 /* The above operation renders the procinfo's cached pstatus obsolete. */
1186 pi->status_valid = 0;
1187
1188 if (!win)
1189 warning ("procfs: modify_flag failed to turn %s %s",
1190 flag == PR_FORK ? "PR_FORK" :
1191 flag == PR_RLC ? "PR_RLC" :
1192 #ifdef PR_ASYNC
1193 flag == PR_ASYNC ? "PR_ASYNC" :
1194 #endif
1195 #ifdef PR_KLC
1196 flag == PR_KLC ? "PR_KLC" :
1197 #endif
1198 "<unknown flag>",
1199 mode == FLAG_RESET ? "off" : "on");
1200
1201 return win;
1202 }
1203
1204 /*
1205 * Function: proc_set_run_on_last_close
1206 *
1207 * Set the run_on_last_close flag.
1208 * Process with all threads will become runnable
1209 * when debugger closes all /proc fds.
1210 *
1211 * Returns non-zero for success, zero for failure.
1212 */
1213
1214 int
1215 proc_set_run_on_last_close (pi)
1216 procinfo *pi;
1217 {
1218 return proc_modify_flag (pi, PR_RLC, FLAG_SET);
1219 }
1220
1221 /*
1222 * Function: proc_unset_run_on_last_close
1223 *
1224 * Reset the run_on_last_close flag.
1225 * Process will NOT become runnable
1226 * when debugger closes its file handles.
1227 *
1228 * Returns non-zero for success, zero for failure.
1229 */
1230
1231 int
1232 proc_unset_run_on_last_close (pi)
1233 procinfo *pi;
1234 {
1235 return proc_modify_flag (pi, PR_RLC, FLAG_RESET);
1236 }
1237
1238 #ifdef PR_KLC
1239 /*
1240 * Function: proc_set_kill_on_last_close
1241 *
1242 * Set the kill_on_last_close flag.
1243 * Process with all threads will be killed when debugger
1244 * closes all /proc fds (or debugger exits or dies).
1245 *
1246 * Returns non-zero for success, zero for failure.
1247 */
1248
1249 int
1250 proc_set_kill_on_last_close (pi)
1251 procinfo *pi;
1252 {
1253 return proc_modify_flag (pi, PR_KLC, FLAG_SET);
1254 }
1255
1256 /*
1257 * Function: proc_unset_kill_on_last_close
1258 *
1259 * Reset the kill_on_last_close flag.
1260 * Process will NOT be killed when debugger
1261 * closes its file handles (or exits or dies).
1262 *
1263 * Returns non-zero for success, zero for failure.
1264 */
1265
1266 int
1267 proc_unset_kill_on_last_close (pi)
1268 procinfo *pi;
1269 {
1270 return proc_modify_flag (pi, PR_KLC, FLAG_RESET);
1271 }
1272 #endif /* PR_KLC */
1273
1274 /*
1275 * Function: proc_set_inherit_on_fork
1276 *
1277 * Set inherit_on_fork flag.
1278 * If the process forks a child while we are registered for events
1279 * in the parent, then we will also recieve events from the child.
1280 *
1281 * Returns non-zero for success, zero for failure.
1282 */
1283
1284 int
1285 proc_set_inherit_on_fork (pi)
1286 procinfo *pi;
1287 {
1288 return proc_modify_flag (pi, PR_FORK, FLAG_SET);
1289 }
1290
1291 /*
1292 * Function: proc_unset_inherit_on_fork
1293 *
1294 * Reset inherit_on_fork flag.
1295 * If the process forks a child while we are registered for events
1296 * in the parent, then we will NOT recieve events from the child.
1297 *
1298 * Returns non-zero for success, zero for failure.
1299 */
1300
1301 int
1302 proc_unset_inherit_on_fork (pi)
1303 procinfo *pi;
1304 {
1305 return proc_modify_flag (pi, PR_FORK, FLAG_RESET);
1306 }
1307
1308 #ifdef PR_ASYNC
1309 /*
1310 * Function: proc_set_async
1311 *
1312 * Set PR_ASYNC flag.
1313 * If one LWP stops because of a debug event (signal etc.),
1314 * the remaining LWPs will continue to run.
1315 *
1316 * Returns non-zero for success, zero for failure.
1317 */
1318
1319 int
1320 proc_set_async (pi)
1321 procinfo *pi;
1322 {
1323 return proc_modify_flag (pi, PR_ASYNC, FLAG_SET);
1324 }
1325
1326 /*
1327 * Function: proc_unset_async
1328 *
1329 * Reset PR_ASYNC flag.
1330 * If one LWP stops because of a debug event (signal etc.),
1331 * then all other LWPs will stop as well.
1332 *
1333 * Returns non-zero for success, zero for failure.
1334 */
1335
1336 int
1337 proc_unset_async (pi)
1338 procinfo *pi;
1339 {
1340 return proc_modify_flag (pi, PR_ASYNC, FLAG_RESET);
1341 }
1342 #endif /* PR_ASYNC */
1343
1344 /*
1345 * Function: proc_stop_process
1346 *
1347 * Request the process/LWP to stop. Does not wait.
1348 * Returns non-zero for success, zero for failure.
1349 */
1350
1351 int
1352 proc_stop_process (pi)
1353 procinfo *pi;
1354 {
1355 int win;
1356
1357 /*
1358 * We might conceivably apply this operation to an LWP, and
1359 * the LWP's ctl file descriptor might not be open.
1360 */
1361
1362 if (pi->ctl_fd == 0 &&
1363 open_procinfo_files (pi, FD_CTL) == 0)
1364 return 0;
1365 else
1366 {
1367 #ifdef NEW_PROC_API
1368 long cmd = PCSTOP;
1369 win = (write (pi->ctl_fd, (char *) &cmd, sizeof (cmd)) == sizeof (cmd));
1370 #else /* ioctl method */
1371 win = (ioctl (pi->ctl_fd, PIOCSTOP, &pi->prstatus) >= 0);
1372 /* Note: the call also reads the prstatus. */
1373 if (win)
1374 {
1375 pi->status_valid = 1;
1376 PROC_PRETTYFPRINT_STATUS (proc_flags (pi),
1377 proc_why (pi),
1378 proc_what (pi),
1379 proc_get_current_thread (pi));
1380 }
1381 #endif
1382 }
1383
1384 return win;
1385 }
1386
1387 /*
1388 * Function: proc_wait_for_stop
1389 *
1390 * Wait for the process or LWP to stop (block until it does).
1391 * Returns non-zero for success, zero for failure.
1392 */
1393
1394 int
1395 proc_wait_for_stop (pi)
1396 procinfo *pi;
1397 {
1398 int win;
1399
1400 /*
1401 * We should never have to apply this operation to any procinfo
1402 * except the one for the main process. If that ever changes
1403 * for any reason, then take out the following clause and
1404 * replace it with one that makes sure the ctl_fd is open.
1405 */
1406
1407 if (pi->tid != 0)
1408 pi = find_procinfo_or_die (pi->pid, 0);
1409
1410 #ifdef NEW_PROC_API
1411 {
1412 long cmd = PCWSTOP;
1413 win = (write (pi->ctl_fd, (char *) &cmd, sizeof (cmd)) == sizeof (cmd));
1414 /* We been runnin' and we stopped -- need to update status. */
1415 pi->status_valid = 0;
1416 }
1417 #else /* ioctl method */
1418 win = (ioctl (pi->ctl_fd, PIOCWSTOP, &pi->prstatus) >= 0);
1419 /* Above call also refreshes the prstatus. */
1420 if (win)
1421 {
1422 pi->status_valid = 1;
1423 PROC_PRETTYFPRINT_STATUS (proc_flags (pi),
1424 proc_why (pi),
1425 proc_what (pi),
1426 proc_get_current_thread (pi));
1427 }
1428 #endif
1429
1430 return win;
1431 }
1432
1433 /*
1434 * Function: proc_run_process
1435 *
1436 * Make the process or LWP runnable.
1437 * Options (not all are implemented):
1438 * - single-step
1439 * - clear current fault
1440 * - clear current signal
1441 * - abort the current system call
1442 * - stop as soon as finished with system call
1443 * - (ioctl): set traced signal set
1444 * - (ioctl): set held signal set
1445 * - (ioctl): set traced fault set
1446 * - (ioctl): set start pc (vaddr)
1447 * Always clear the current fault.
1448 * Clear the current signal if 'signo' is zero.
1449 *
1450 * Arguments:
1451 * pi the process or LWP to operate on.
1452 * step if true, set the process or LWP to trap after one instr.
1453 * signo if zero, clear the current signal if any.
1454 * if non-zero, set the current signal to this one.
1455 *
1456 * Returns non-zero for success, zero for failure.
1457 */
1458
1459 int
1460 proc_run_process (pi, step, signo)
1461 procinfo *pi;
1462 int step;
1463 int signo;
1464 {
1465 int win;
1466 int runflags;
1467
1468 /*
1469 * We will probably have to apply this operation to individual threads,
1470 * so make sure the control file descriptor is open.
1471 */
1472
1473 if (pi->ctl_fd == 0 &&
1474 open_procinfo_files (pi, FD_CTL) == 0)
1475 {
1476 return 0;
1477 }
1478
1479 runflags = PRCFAULT; /* always clear current fault */
1480 if (step)
1481 runflags |= PRSTEP;
1482 if (signo == 0)
1483 runflags |= PRCSIG;
1484 else if (signo != -1) /* -1 means do nothing W.R.T. signals */
1485 proc_set_current_signal (pi, signo);
1486
1487 #ifdef NEW_PROC_API
1488 {
1489 long cmd[2];
1490
1491 cmd[0] = PCRUN;
1492 cmd[1] = runflags;
1493 win = (write (pi->ctl_fd, (char *) &cmd, sizeof (cmd)) == sizeof (cmd));
1494 }
1495 #else /* ioctl method */
1496 {
1497 prrun_t prrun;
1498
1499 memset (&prrun, 0, sizeof (prrun));
1500 prrun.pr_flags = runflags;
1501 win = (ioctl (pi->ctl_fd, PIOCRUN, &prrun) >= 0);
1502 }
1503 #endif
1504
1505 return win;
1506 }
1507
1508 /*
1509 * Function: proc_set_traced_signals
1510 *
1511 * Register to trace signals in the process or LWP.
1512 * Returns non-zero for success, zero for failure.
1513 */
1514
1515 int
1516 proc_set_traced_signals (pi, sigset)
1517 procinfo *pi;
1518 sigset_t *sigset;
1519 {
1520 int win;
1521
1522 /*
1523 * We should never have to apply this operation to any procinfo
1524 * except the one for the main process. If that ever changes
1525 * for any reason, then take out the following clause and
1526 * replace it with one that makes sure the ctl_fd is open.
1527 */
1528
1529 if (pi->tid != 0)
1530 pi = find_procinfo_or_die (pi->pid, 0);
1531
1532 #ifdef NEW_PROC_API
1533 {
1534 struct {
1535 long cmd;
1536 /* Use char array to avoid alignment issues. */
1537 char sigset[sizeof (sigset_t)];
1538 } arg;
1539
1540 arg.cmd = PCSTRACE;
1541 memcpy (&arg.sigset, sigset, sizeof (sigset_t));
1542
1543 win = (write (pi->ctl_fd, (char *) &arg, sizeof (arg)) == sizeof (arg));
1544 }
1545 #else /* ioctl method */
1546 win = (ioctl (pi->ctl_fd, PIOCSTRACE, sigset) >= 0);
1547 #endif
1548 /* The above operation renders the procinfo's cached pstatus obsolete. */
1549 pi->status_valid = 0;
1550
1551 if (!win)
1552 warning ("procfs: set_traced_signals failed");
1553 return win;
1554 }
1555
1556 /*
1557 * Function: proc_set_traced_faults
1558 *
1559 * Register to trace hardware faults in the process or LWP.
1560 * Returns non-zero for success, zero for failure.
1561 */
1562
1563 int
1564 proc_set_traced_faults (pi, fltset)
1565 procinfo *pi;
1566 fltset_t *fltset;
1567 {
1568 int win;
1569
1570 /*
1571 * We should never have to apply this operation to any procinfo
1572 * except the one for the main process. If that ever changes
1573 * for any reason, then take out the following clause and
1574 * replace it with one that makes sure the ctl_fd is open.
1575 */
1576
1577 if (pi->tid != 0)
1578 pi = find_procinfo_or_die (pi->pid, 0);
1579
1580 #ifdef NEW_PROC_API
1581 {
1582 struct {
1583 long cmd;
1584 /* Use char array to avoid alignment issues. */
1585 char fltset[sizeof (fltset_t)];
1586 } arg;
1587
1588 arg.cmd = PCSFAULT;
1589 memcpy (&arg.fltset, fltset, sizeof (fltset_t));
1590
1591 win = (write (pi->ctl_fd, (char *) &arg, sizeof (arg)) == sizeof (arg));
1592 }
1593 #else /* ioctl method */
1594 win = (ioctl (pi->ctl_fd, PIOCSFAULT, fltset) >= 0);
1595 #endif
1596 /* The above operation renders the procinfo's cached pstatus obsolete. */
1597 pi->status_valid = 0;
1598
1599 return win;
1600 }
1601
1602 /*
1603 * Function: proc_set_traced_sysentry
1604 *
1605 * Register to trace entry to system calls in the process or LWP.
1606 * Returns non-zero for success, zero for failure.
1607 */
1608
1609 int
1610 proc_set_traced_sysentry (pi, sysset)
1611 procinfo *pi;
1612 sysset_t *sysset;
1613 {
1614 int win;
1615
1616 /*
1617 * We should never have to apply this operation to any procinfo
1618 * except the one for the main process. If that ever changes
1619 * for any reason, then take out the following clause and
1620 * replace it with one that makes sure the ctl_fd is open.
1621 */
1622
1623 if (pi->tid != 0)
1624 pi = find_procinfo_or_die (pi->pid, 0);
1625
1626 #ifdef NEW_PROC_API
1627 {
1628 struct {
1629 long cmd;
1630 /* Use char array to avoid alignment issues. */
1631 char sysset[sizeof (sysset_t)];
1632 } arg;
1633
1634 arg.cmd = PCSENTRY;
1635 memcpy (&arg.sysset, sysset, sizeof (sysset_t));
1636
1637 win = (write (pi->ctl_fd, (char *) &arg, sizeof (arg)) == sizeof (arg));
1638 }
1639 #else /* ioctl method */
1640 win = (ioctl (pi->ctl_fd, PIOCSENTRY, sysset) >= 0);
1641 #endif
1642 /* The above operation renders the procinfo's cached pstatus obsolete. */
1643 pi->status_valid = 0;
1644
1645 return win;
1646 }
1647
1648 /*
1649 * Function: proc_set_traced_sysexit
1650 *
1651 * Register to trace exit from system calls in the process or LWP.
1652 * Returns non-zero for success, zero for failure.
1653 */
1654
1655 int
1656 proc_set_traced_sysexit (pi, sysset)
1657 procinfo *pi;
1658 sysset_t *sysset;
1659 {
1660 int win;
1661
1662 /*
1663 * We should never have to apply this operation to any procinfo
1664 * except the one for the main process. If that ever changes
1665 * for any reason, then take out the following clause and
1666 * replace it with one that makes sure the ctl_fd is open.
1667 */
1668
1669 if (pi->tid != 0)
1670 pi = find_procinfo_or_die (pi->pid, 0);
1671
1672 #ifdef NEW_PROC_API
1673 {
1674 struct {
1675 long cmd;
1676 /* Use char array to avoid alignment issues. */
1677 char sysset[sizeof (sysset_t)];
1678 } arg;
1679
1680 arg.cmd = PCSEXIT;
1681 memcpy (&arg.sysset, sysset, sizeof (sysset_t));
1682
1683 win = (write (pi->ctl_fd, (char *) &arg, sizeof (arg)) == sizeof (arg));
1684 }
1685 #else /* ioctl method */
1686 win = (ioctl (pi->ctl_fd, PIOCSEXIT, sysset) >= 0);
1687 #endif
1688 /* The above operation renders the procinfo's cached pstatus obsolete. */
1689 pi->status_valid = 0;
1690
1691 return win;
1692 }
1693
1694 /*
1695 * Function: proc_set_held_signals
1696 *
1697 * Specify the set of blocked / held signals in the process or LWP.
1698 * Returns non-zero for success, zero for failure.
1699 */
1700
1701 int
1702 proc_set_held_signals (pi, sighold)
1703 procinfo *pi;
1704 sigset_t *sighold;
1705 {
1706 int win;
1707
1708 /*
1709 * We should never have to apply this operation to any procinfo
1710 * except the one for the main process. If that ever changes
1711 * for any reason, then take out the following clause and
1712 * replace it with one that makes sure the ctl_fd is open.
1713 */
1714
1715 if (pi->tid != 0)
1716 pi = find_procinfo_or_die (pi->pid, 0);
1717
1718 #ifdef NEW_PROC_API
1719 {
1720 struct {
1721 long cmd;
1722 /* Use char array to avoid alignment issues. */
1723 char hold[sizeof (sigset_t)];
1724 } arg;
1725
1726 arg.cmd = PCSHOLD;
1727 memcpy (&arg.hold, sighold, sizeof (sigset_t));
1728 win = (write (pi->ctl_fd, (void *) &arg, sizeof (arg)) == sizeof (arg));
1729 }
1730 #else
1731 win = (ioctl (pi->ctl_fd, PIOCSHOLD, sighold) >= 0);
1732 #endif
1733 /* The above operation renders the procinfo's cached pstatus obsolete. */
1734 pi->status_valid = 0;
1735
1736 return win;
1737 }
1738
1739 /*
1740 * Function: proc_get_pending_signals
1741 *
1742 * returns the set of signals that are pending in the process or LWP.
1743 * Will also copy the sigset if 'save' is non-zero.
1744 */
1745
1746 sigset_t *
1747 proc_get_pending_signals (pi, save)
1748 procinfo *pi;
1749 sigset_t *save;
1750 {
1751 sigset_t *ret = NULL;
1752
1753 /*
1754 * We should never have to apply this operation to any procinfo
1755 * except the one for the main process. If that ever changes
1756 * for any reason, then take out the following clause and
1757 * replace it with one that makes sure the ctl_fd is open.
1758 */
1759
1760 if (pi->tid != 0)
1761 pi = find_procinfo_or_die (pi->pid, 0);
1762
1763 if (!pi->status_valid)
1764 if (!proc_get_status (pi))
1765 return NULL;
1766
1767 #ifdef NEW_PROC_API
1768 ret = &pi->prstatus.pr_lwp.pr_lwppend;
1769 #else
1770 ret = &pi->prstatus.pr_sigpend;
1771 #endif
1772 if (save && ret)
1773 memcpy (save, ret, sizeof (sigset_t));
1774
1775 return ret;
1776 }
1777
1778 /*
1779 * Function: proc_get_signal_actions
1780 *
1781 * returns the set of signal actions.
1782 * Will also copy the sigactionset if 'save' is non-zero.
1783 */
1784
1785 struct sigaction *
1786 proc_get_signal_actions (pi, save)
1787 procinfo *pi;
1788 struct sigaction *save;
1789 {
1790 struct sigaction *ret = NULL;
1791
1792 /*
1793 * We should never have to apply this operation to any procinfo
1794 * except the one for the main process. If that ever changes
1795 * for any reason, then take out the following clause and
1796 * replace it with one that makes sure the ctl_fd is open.
1797 */
1798
1799 if (pi->tid != 0)
1800 pi = find_procinfo_or_die (pi->pid, 0);
1801
1802 if (!pi->status_valid)
1803 if (!proc_get_status (pi))
1804 return NULL;
1805
1806 #ifdef NEW_PROC_API
1807 ret = &pi->prstatus.pr_lwp.pr_action;
1808 #else
1809 ret = &pi->prstatus.pr_action;
1810 #endif
1811 if (save && ret)
1812 memcpy (save, ret, sizeof (struct sigaction));
1813
1814 return ret;
1815 }
1816
1817 /*
1818 * Function: proc_get_held_signals
1819 *
1820 * returns the set of signals that are held / blocked.
1821 * Will also copy the sigset if 'save' is non-zero.
1822 */
1823
1824 sigset_t *
1825 proc_get_held_signals (pi, save)
1826 procinfo *pi;
1827 sigset_t *save;
1828 {
1829 sigset_t *ret = NULL;
1830
1831 /*
1832 * We should never have to apply this operation to any procinfo
1833 * except the one for the main process. If that ever changes
1834 * for any reason, then take out the following clause and
1835 * replace it with one that makes sure the ctl_fd is open.
1836 */
1837
1838 if (pi->tid != 0)
1839 pi = find_procinfo_or_die (pi->pid, 0);
1840
1841 #ifdef NEW_PROC_API
1842 if (!pi->status_valid)
1843 if (!proc_get_status (pi))
1844 return NULL;
1845
1846 #ifdef UNIXWARE
1847 ret = &pi->prstatus.pr_lwp.pr_context.uc_sigmask;
1848 #else
1849 ret = &pi->prstatus.pr_lwp.pr_lwphold;
1850 #endif /* UNIXWARE */
1851 #else /* not NEW_PROC_API */
1852 {
1853 static sigset_t sigheld;
1854
1855 if (ioctl (pi->ctl_fd, PIOCGHOLD, &sigheld) >= 0)
1856 ret = &sigheld;
1857 }
1858 #endif /* NEW_PROC_API */
1859 if (save && ret)
1860 memcpy (save, ret, sizeof (sigset_t));
1861
1862 return ret;
1863 }
1864
1865 /*
1866 * Function: proc_get_traced_signals
1867 *
1868 * returns the set of signals that are traced / debugged.
1869 * Will also copy the sigset if 'save' is non-zero.
1870 */
1871
1872 sigset_t *
1873 proc_get_traced_signals (pi, save)
1874 procinfo *pi;
1875 sigset_t *save;
1876 {
1877 sigset_t *ret = NULL;
1878
1879 /*
1880 * We should never have to apply this operation to any procinfo
1881 * except the one for the main process. If that ever changes
1882 * for any reason, then take out the following clause and
1883 * replace it with one that makes sure the ctl_fd is open.
1884 */
1885
1886 if (pi->tid != 0)
1887 pi = find_procinfo_or_die (pi->pid, 0);
1888
1889 #ifdef NEW_PROC_API
1890 if (!pi->status_valid)
1891 if (!proc_get_status (pi))
1892 return NULL;
1893
1894 ret = &pi->prstatus.pr_sigtrace;
1895 #else
1896 {
1897 static sigset_t sigtrace;
1898
1899 if (ioctl (pi->ctl_fd, PIOCGTRACE, &sigtrace) >= 0)
1900 ret = &sigtrace;
1901 }
1902 #endif
1903 if (save && ret)
1904 memcpy (save, ret, sizeof (sigset_t));
1905
1906 return ret;
1907 }
1908
1909 /*
1910 * Function: proc_trace_signal
1911 *
1912 * Add 'signo' to the set of signals that are traced.
1913 * Returns non-zero for success, zero for failure.
1914 */
1915
1916 int
1917 proc_trace_signal (pi, signo)
1918 procinfo *pi;
1919 int signo;
1920 {
1921 sigset_t temp;
1922
1923 /*
1924 * We should never have to apply this operation to any procinfo
1925 * except the one for the main process. If that ever changes
1926 * for any reason, then take out the following clause and
1927 * replace it with one that makes sure the ctl_fd is open.
1928 */
1929
1930 if (pi->tid != 0)
1931 pi = find_procinfo_or_die (pi->pid, 0);
1932
1933 if (pi)
1934 {
1935 if (proc_get_traced_signals (pi, &temp))
1936 {
1937 praddset (&temp, signo);
1938 return proc_set_traced_signals (pi, &temp);
1939 }
1940 }
1941
1942 return 0; /* failure */
1943 }
1944
1945 /*
1946 * Function: proc_ignore_signal
1947 *
1948 * Remove 'signo' from the set of signals that are traced.
1949 * Returns non-zero for success, zero for failure.
1950 */
1951
1952 int
1953 proc_ignore_signal (pi, signo)
1954 procinfo *pi;
1955 int signo;
1956 {
1957 sigset_t temp;
1958
1959 /*
1960 * We should never have to apply this operation to any procinfo
1961 * except the one for the main process. If that ever changes
1962 * for any reason, then take out the following clause and
1963 * replace it with one that makes sure the ctl_fd is open.
1964 */
1965
1966 if (pi->tid != 0)
1967 pi = find_procinfo_or_die (pi->pid, 0);
1968
1969 if (pi)
1970 {
1971 if (proc_get_traced_signals (pi, &temp))
1972 {
1973 prdelset (&temp, signo);
1974 return proc_set_traced_signals (pi, &temp);
1975 }
1976 }
1977
1978 return 0; /* failure */
1979 }
1980
1981 /*
1982 * Function: proc_get_traced_faults
1983 *
1984 * returns the set of hardware faults that are traced /debugged.
1985 * Will also copy the faultset if 'save' is non-zero.
1986 */
1987
1988 fltset_t *
1989 proc_get_traced_faults (pi, save)
1990 procinfo *pi;
1991 fltset_t *save;
1992 {
1993 fltset_t *ret = NULL;
1994
1995 /*
1996 * We should never have to apply this operation to any procinfo
1997 * except the one for the main process. If that ever changes
1998 * for any reason, then take out the following clause and
1999 * replace it with one that makes sure the ctl_fd is open.
2000 */
2001
2002 if (pi->tid != 0)
2003 pi = find_procinfo_or_die (pi->pid, 0);
2004
2005 #ifdef NEW_PROC_API
2006 if (!pi->status_valid)
2007 if (!proc_get_status (pi))
2008 return NULL;
2009
2010 ret = &pi->prstatus.pr_flttrace;
2011 #else
2012 {
2013 static fltset_t flttrace;
2014
2015 if (ioctl (pi->ctl_fd, PIOCGFAULT, &flttrace) >= 0)
2016 ret = &flttrace;
2017 }
2018 #endif
2019 if (save && ret)
2020 memcpy (save, ret, sizeof (fltset_t));
2021
2022 return ret;
2023 }
2024
2025 /*
2026 * Function: proc_get_traced_sysentry
2027 *
2028 * returns the set of syscalls that are traced /debugged on entry.
2029 * Will also copy the syscall set if 'save' is non-zero.
2030 */
2031
2032 sysset_t *
2033 proc_get_traced_sysentry (pi, save)
2034 procinfo *pi;
2035 sysset_t *save;
2036 {
2037 sysset_t *ret = NULL;
2038
2039 /*
2040 * We should never have to apply this operation to any procinfo
2041 * except the one for the main process. If that ever changes
2042 * for any reason, then take out the following clause and
2043 * replace it with one that makes sure the ctl_fd is open.
2044 */
2045
2046 if (pi->tid != 0)
2047 pi = find_procinfo_or_die (pi->pid, 0);
2048
2049 #ifdef NEW_PROC_API
2050 if (!pi->status_valid)
2051 if (!proc_get_status (pi))
2052 return NULL;
2053
2054 ret = &pi->prstatus.pr_sysentry;
2055 #else
2056 {
2057 static sysset_t sysentry;
2058
2059 if (ioctl (pi->ctl_fd, PIOCGENTRY, &sysentry) >= 0)
2060 ret = &sysentry;
2061 }
2062 #endif
2063 if (save && ret)
2064 memcpy (save, ret, sizeof (sysset_t));
2065
2066 return ret;
2067 }
2068
2069 /*
2070 * Function: proc_get_traced_sysexit
2071 *
2072 * returns the set of syscalls that are traced /debugged on exit.
2073 * Will also copy the syscall set if 'save' is non-zero.
2074 */
2075
2076 sysset_t *
2077 proc_get_traced_sysexit (pi, save)
2078 procinfo *pi;
2079 sysset_t *save;
2080 {
2081 sysset_t * ret = NULL;
2082
2083 /*
2084 * We should never have to apply this operation to any procinfo
2085 * except the one for the main process. If that ever changes
2086 * for any reason, then take out the following clause and
2087 * replace it with one that makes sure the ctl_fd is open.
2088 */
2089
2090 if (pi->tid != 0)
2091 pi = find_procinfo_or_die (pi->pid, 0);
2092
2093 #ifdef NEW_PROC_API
2094 if (!pi->status_valid)
2095 if (!proc_get_status (pi))
2096 return NULL;
2097
2098 ret = &pi->prstatus.pr_sysexit;
2099 #else
2100 {
2101 static sysset_t sysexit;
2102
2103 if (ioctl (pi->ctl_fd, PIOCGEXIT, &sysexit) >= 0)
2104 ret = &sysexit;
2105 }
2106 #endif
2107 if (save && ret)
2108 memcpy (save, ret, sizeof (sysset_t));
2109
2110 return ret;
2111 }
2112
2113 /*
2114 * Function: proc_clear_current_fault
2115 *
2116 * The current fault (if any) is cleared; the associated signal
2117 * will not be sent to the process or LWP when it resumes.
2118 * Returns non-zero for success, zero for failure.
2119 */
2120
2121 int
2122 proc_clear_current_fault (pi)
2123 procinfo *pi;
2124 {
2125 int win;
2126
2127 /*
2128 * We should never have to apply this operation to any procinfo
2129 * except the one for the main process. If that ever changes
2130 * for any reason, then take out the following clause and
2131 * replace it with one that makes sure the ctl_fd is open.
2132 */
2133
2134 if (pi->tid != 0)
2135 pi = find_procinfo_or_die (pi->pid, 0);
2136
2137 #ifdef NEW_PROC_API
2138 {
2139 long cmd = PCCFAULT;
2140 win = (write (pi->ctl_fd, (void *) &cmd, sizeof (cmd)) == sizeof (cmd));
2141 }
2142 #else
2143 win = (ioctl (pi->ctl_fd, PIOCCFAULT, 0) >= 0);
2144 #endif
2145
2146 return win;
2147 }
2148
2149 /*
2150 * Function: proc_set_current_signal
2151 *
2152 * Set the "current signal" that will be delivered next to the process.
2153 * NOTE: semantics are different from those of KILL.
2154 * This signal will be delivered to the process or LWP
2155 * immediately when it is resumed (even if the signal is held/blocked);
2156 * it will NOT immediately cause another event of interest, and will NOT
2157 * first trap back to the debugger.
2158 *
2159 * Returns non-zero for success, zero for failure.
2160 */
2161
2162 int
2163 proc_set_current_signal (pi, signo)
2164 procinfo *pi;
2165 int signo;
2166 {
2167 int win;
2168 struct {
2169 long cmd;
2170 /* Use char array to avoid alignment issues. */
2171 char sinfo[sizeof (struct siginfo)];
2172 } arg;
2173 struct siginfo *mysinfo;
2174
2175 /*
2176 * We should never have to apply this operation to any procinfo
2177 * except the one for the main process. If that ever changes
2178 * for any reason, then take out the following clause and
2179 * replace it with one that makes sure the ctl_fd is open.
2180 */
2181
2182 if (pi->tid != 0)
2183 pi = find_procinfo_or_die (pi->pid, 0);
2184
2185 #ifdef PROCFS_DONT_PIOCSSIG_CURSIG
2186 /* With Alpha OSF/1 procfs, the kernel gets really confused if it
2187 * receives a PIOCSSIG with a signal identical to the current signal,
2188 * it messes up the current signal. Work around the kernel bug.
2189 */
2190 if (signo > 0 &&
2191 signo == proc_cursig (pi))
2192 return 1; /* I assume this is a success? */
2193 #endif
2194
2195 /* The pointer is just a type alias. */
2196 mysinfo = (struct siginfo *) &arg.sinfo;
2197 mysinfo->si_signo = signo;
2198 mysinfo->si_code = 0;
2199 mysinfo->si_pid = getpid (); /* ?why? */
2200 mysinfo->si_uid = getuid (); /* ?why? */
2201
2202 #ifdef NEW_PROC_API
2203 arg.cmd = PCSSIG;
2204 win = (write (pi->ctl_fd, (void *) &arg, sizeof (arg)) == sizeof (arg));
2205 #else
2206 win = (ioctl (pi->ctl_fd, PIOCSSIG, (void *) &arg.sinfo) >= 0);
2207 #endif
2208
2209 return win;
2210 }
2211
2212 /*
2213 * Function: proc_clear_current_signal
2214 *
2215 * The current signal (if any) is cleared, and
2216 * is not sent to the process or LWP when it resumes.
2217 * Returns non-zero for success, zero for failure.
2218 */
2219
2220 int
2221 proc_clear_current_signal (pi)
2222 procinfo *pi;
2223 {
2224 int win;
2225
2226 /*
2227 * We should never have to apply this operation to any procinfo
2228 * except the one for the main process. If that ever changes
2229 * for any reason, then take out the following clause and
2230 * replace it with one that makes sure the ctl_fd is open.
2231 */
2232
2233 if (pi->tid != 0)
2234 pi = find_procinfo_or_die (pi->pid, 0);
2235
2236 #ifdef NEW_PROC_API
2237 {
2238 struct {
2239 long cmd;
2240 /* Use char array to avoid alignment issues. */
2241 char sinfo[sizeof (struct siginfo)];
2242 } arg;
2243 struct siginfo *mysinfo;
2244
2245 arg.cmd = PCSSIG;
2246 /* The pointer is just a type alias. */
2247 mysinfo = (struct siginfo *) &arg.sinfo;
2248 mysinfo->si_signo = 0;
2249 mysinfo->si_code = 0;
2250 mysinfo->si_errno = 0;
2251 mysinfo->si_pid = getpid (); /* ?why? */
2252 mysinfo->si_uid = getuid (); /* ?why? */
2253
2254 win = (write (pi->ctl_fd, (void *) &arg, sizeof (arg)) == sizeof (arg));
2255 }
2256 #else
2257 win = (ioctl (pi->ctl_fd, PIOCSSIG, 0) >= 0);
2258 #endif
2259
2260 return win;
2261 }
2262
2263 /*
2264 * Function: proc_get_gregs
2265 *
2266 * Get the general registers for the process or LWP.
2267 * Returns non-zero for success, zero for failure.
2268 */
2269
2270 gdb_gregset_t *
2271 proc_get_gregs (pi)
2272 procinfo *pi;
2273 {
2274 if (!pi->status_valid || !pi->gregs_valid)
2275 if (!proc_get_status (pi))
2276 return NULL;
2277
2278 /*
2279 * OK, sorry about the ifdef's.
2280 * There's three cases instead of two, because
2281 * in this instance Unixware and Solaris/RW differ.
2282 */
2283
2284 #ifdef NEW_PROC_API
2285 #ifdef UNIXWARE /* ugh, a true architecture dependency */
2286 return &pi->prstatus.pr_lwp.pr_context.uc_mcontext.gregs;
2287 #else /* not Unixware */
2288 return &pi->prstatus.pr_lwp.pr_reg;
2289 #endif /* Unixware */
2290 #else /* not NEW_PROC_API */
2291 return &pi->prstatus.pr_reg;
2292 #endif /* NEW_PROC_API */
2293 }
2294
2295 /*
2296 * Function: proc_get_fpregs
2297 *
2298 * Get the floating point registers for the process or LWP.
2299 * Returns non-zero for success, zero for failure.
2300 */
2301
2302 gdb_fpregset_t *
2303 proc_get_fpregs (pi)
2304 procinfo *pi;
2305 {
2306 #ifdef NEW_PROC_API
2307 if (!pi->status_valid || !pi->fpregs_valid)
2308 if (!proc_get_status (pi))
2309 return NULL;
2310
2311 #ifdef UNIXWARE /* a true architecture dependency */
2312 return &pi->prstatus.pr_lwp.pr_context.uc_mcontext.fpregs;
2313 #else
2314 return &pi->prstatus.pr_lwp.pr_fpreg;
2315 #endif /* Unixware */
2316
2317 #else /* not NEW_PROC_API */
2318 if (pi->fpregs_valid)
2319 return &pi->fpregset; /* already got 'em */
2320 else
2321 {
2322 if (pi->ctl_fd == 0 &&
2323 open_procinfo_files (pi, FD_CTL) == 0)
2324 {
2325 return NULL;
2326 }
2327 else
2328 {
2329 #ifdef PIOCTGFPREG
2330 struct {
2331 long pr_count;
2332 tid_t pr_error_thread;
2333 tfpregset_t thread_1;
2334 } thread_fpregs;
2335
2336 thread_fpregs.pr_count = 1;
2337 thread_fpregs.thread_1.tid = pi->tid;
2338
2339 if (pi->tid == 0 &&
2340 ioctl (pi->ctl_fd, PIOCGFPREG, &pi->fpregset) >= 0)
2341 {
2342 pi->fpregs_valid = 1;
2343 return &pi->fpregset; /* got 'em now! */
2344 }
2345 else if (pi->tid != 0 &&
2346 ioctl (pi->ctl_fd, PIOCTGFPREG, &thread_fpregs) >= 0)
2347 {
2348 memcpy (&pi->fpregset, &thread_fpregs.thread_1.pr_fpregs,
2349 sizeof (pi->fpregset));
2350 pi->fpregs_valid = 1;
2351 return &pi->fpregset; /* got 'em now! */
2352 }
2353 else
2354 {
2355 return NULL;
2356 }
2357 #else
2358 if (ioctl (pi->ctl_fd, PIOCGFPREG, &pi->fpregset) >= 0)
2359 {
2360 pi->fpregs_valid = 1;
2361 return &pi->fpregset; /* got 'em now! */
2362 }
2363 else
2364 {
2365 return NULL;
2366 }
2367 #endif
2368 }
2369 }
2370 #endif
2371 }
2372
2373 /*
2374 * Function: proc_set_gregs
2375 *
2376 * Write the general registers back to the process or LWP.
2377 * Returns non-zero for success, zero for failure.
2378 */
2379
2380 int
2381 proc_set_gregs (pi)
2382 procinfo *pi;
2383 {
2384 gdb_gregset_t *gregs;
2385 int win;
2386
2387 if ((gregs = proc_get_gregs (pi)) == NULL)
2388 return 0; /* get_regs has already warned */
2389
2390 if (pi->ctl_fd == 0 &&
2391 open_procinfo_files (pi, FD_CTL) == 0)
2392 {
2393 return 0;
2394 }
2395 else
2396 {
2397 #ifdef NEW_PROC_API
2398 struct {
2399 long cmd;
2400 /* Use char array to avoid alignment issues. */
2401 char gregs[sizeof (gdb_gregset_t)];
2402 } arg;
2403
2404 arg.cmd = PCSREG;
2405 memcpy (&arg.gregs, gregs, sizeof (arg.gregs));
2406 win = (write (pi->ctl_fd, (void *) &arg, sizeof (arg)) == sizeof (arg));
2407 #else
2408 win = (ioctl (pi->ctl_fd, PIOCSREG, gregs) >= 0);
2409 #endif
2410 }
2411
2412 /* Policy: writing the regs invalidates our cache. */
2413 pi->gregs_valid = 0;
2414 return win;
2415 }
2416
2417 /*
2418 * Function: proc_set_fpregs
2419 *
2420 * Modify the floating point register set of the process or LWP.
2421 * Returns non-zero for success, zero for failure.
2422 */
2423
2424 int
2425 proc_set_fpregs (pi)
2426 procinfo *pi;
2427 {
2428 gdb_fpregset_t *fpregs;
2429 int win;
2430
2431 if ((fpregs = proc_get_fpregs (pi)) == NULL)
2432 return 0; /* get_fpregs has already warned */
2433
2434 if (pi->ctl_fd == 0 &&
2435 open_procinfo_files (pi, FD_CTL) == 0)
2436 {
2437 return 0;
2438 }
2439 else
2440 {
2441 #ifdef NEW_PROC_API
2442 struct {
2443 long cmd;
2444 /* Use char array to avoid alignment issues. */
2445 char fpregs[sizeof (gdb_fpregset_t)];
2446 } arg;
2447
2448 arg.cmd = PCSFPREG;
2449 memcpy (&arg.fpregs, fpregs, sizeof (arg.fpregs));
2450 win = (write (pi->ctl_fd, (void *) &arg, sizeof (arg)) == sizeof (arg));
2451 #else
2452 #ifdef PIOCTSFPREG
2453 if (pi->tid == 0)
2454 win = (ioctl (pi->ctl_fd, PIOCSFPREG, fpregs) >= 0);
2455 else
2456 {
2457 struct {
2458 long pr_count;
2459 tid_t pr_error_thread;
2460 tfpregset_t thread_1;
2461 } thread_fpregs;
2462
2463 thread_fpregs.pr_count = 1;
2464 thread_fpregs.thread_1.tid = pi->tid;
2465 memcpy (&thread_fpregs.thread_1.pr_fpregs, fpregs,
2466 sizeof (*fpregs));
2467 win = (ioctl (pi->ctl_fd, PIOCTSFPREG, &thread_fpregs) >= 0);
2468 }
2469 #else
2470 win = (ioctl (pi->ctl_fd, PIOCSFPREG, fpregs) >= 0);
2471 #endif /* osf PIOCTSFPREG */
2472 #endif /* NEW_PROC_API */
2473 }
2474
2475 /* Policy: writing the regs invalidates our cache. */
2476 pi->fpregs_valid = 0;
2477 return win;
2478 }
2479
2480 /*
2481 * Function: proc_kill
2482 *
2483 * Send a signal to the proc or lwp with the semantics of "kill()".
2484 * Returns non-zero for success, zero for failure.
2485 */
2486
2487 int
2488 proc_kill (pi, signo)
2489 procinfo *pi;
2490 int signo;
2491 {
2492 int win;
2493
2494 /*
2495 * We might conceivably apply this operation to an LWP, and
2496 * the LWP's ctl file descriptor might not be open.
2497 */
2498
2499 if (pi->ctl_fd == 0 &&
2500 open_procinfo_files (pi, FD_CTL) == 0)
2501 {
2502 return 0;
2503 }
2504 else
2505 {
2506 #ifdef NEW_PROC_API
2507 long cmd[2];
2508
2509 cmd[0] = PCKILL;
2510 cmd[1] = signo;
2511 win = (write (pi->ctl_fd, (char *) &cmd, sizeof (cmd)) == sizeof (cmd));
2512 #else /* ioctl method */
2513 /* FIXME: do I need the Alpha OSF fixups present in
2514 procfs.c/unconditionally_kill_inferior? Perhaps only for SIGKILL? */
2515 win = (ioctl (pi->ctl_fd, PIOCKILL, &signo) >= 0);
2516 #endif
2517 }
2518
2519 return win;
2520 }
2521
2522 /*
2523 * Function: proc_parent_pid
2524 *
2525 * Find the pid of the process that started this one.
2526 * Returns the parent process pid, or zero.
2527 */
2528
2529 int
2530 proc_parent_pid (pi)
2531 procinfo *pi;
2532 {
2533 /*
2534 * We should never have to apply this operation to any procinfo
2535 * except the one for the main process. If that ever changes
2536 * for any reason, then take out the following clause and
2537 * replace it with one that makes sure the ctl_fd is open.
2538 */
2539
2540 if (pi->tid != 0)
2541 pi = find_procinfo_or_die (pi->pid, 0);
2542
2543 if (!pi->status_valid)
2544 if (!proc_get_status (pi))
2545 return 0;
2546
2547 return pi->prstatus.pr_ppid;
2548 }
2549
2550
2551 /*
2552 * Function: proc_set_watchpoint
2553 *
2554 */
2555
2556 int
2557 proc_set_watchpoint (pi, addr, len, wflags)
2558 procinfo *pi;
2559 CORE_ADDR addr;
2560 int len;
2561 int wflags;
2562 {
2563 #if !defined (TARGET_HAS_HARDWARE_WATCHPOINTS)
2564 return 0;
2565 #else
2566 /* Horrible hack! Detect Solaris 2.5, because this doesn't work on 2.5 */
2567 #if defined (PIOCOPENLWP) || defined (UNIXWARE) /* Solaris 2.5: bail out */
2568 return 0;
2569 #else
2570 struct {
2571 long cmd;
2572 char watch[sizeof (prwatch_t)];
2573 } arg;
2574 prwatch_t *pwatch;
2575
2576 pwatch = (prwatch_t *) &arg.watch;
2577 pwatch->pr_vaddr = addr;
2578 pwatch->pr_size = len;
2579 pwatch->pr_wflags = wflags;
2580 #if defined(NEW_PROC_API) && defined (PCWATCH)
2581 arg.cmd = PCWATCH;
2582 return (write (pi->ctl_fd, &arg, sizeof (arg)) == sizeof (arg));
2583 #else
2584 #if defined (PIOCSWATCH)
2585 return (ioctl (pi->ctl_fd, PIOCSWATCH, pwatch) >= 0);
2586 #else
2587 return 0; /* Fail */
2588 #endif
2589 #endif
2590 #endif
2591 #endif
2592 }
2593
2594 /*
2595 * Function: proc_iterate_over_mappings
2596 *
2597 * Given a pointer to a function, call that function once for every
2598 * mapped address space in the process. The callback function
2599 * receives an open file descriptor for the file corresponding to
2600 * that mapped address space (if there is one), and the base address
2601 * of the mapped space. Quit when the callback function returns a
2602 * nonzero value, or at teh end of the mappings.
2603 *
2604 * Returns: the first non-zero return value of the callback function,
2605 * or zero.
2606 */
2607
2608 /* FIXME: it's probably a waste to cache this FD.
2609 It doesn't get called that often... and if I open it
2610 every time, I don't need to lseek it. */
2611 int
2612 proc_iterate_over_mappings (func)
2613 int (*func) PARAMS ((int, CORE_ADDR));
2614 {
2615 struct prmap *map;
2616 procinfo *pi;
2617 #ifndef NEW_PROC_API /* avoid compiler warning */
2618 int nmaps = 0;
2619 int i;
2620 #else
2621 int map_fd;
2622 char pathname[MAX_PROC_NAME_SIZE];
2623 #endif
2624 int funcstat = 0;
2625 int fd;
2626
2627 pi = find_procinfo_or_die (PIDGET (inferior_pid), 0);
2628
2629 #ifdef NEW_PROC_API
2630 /* Open map fd. */
2631 sprintf (pathname, "/proc/%d/map", pi->pid);
2632 if ((map_fd = open (pathname, O_RDONLY)) < 0)
2633 proc_error (pi, "proc_iterate_over_mappings (open)", __LINE__);
2634
2635 /* Make sure it gets closed again. */
2636 make_cleanup ((make_cleanup_func) close, (void *) map_fd);
2637
2638 /* Allocate space for mapping (lifetime only for this function). */
2639 map = alloca (sizeof (struct prmap));
2640
2641 /* Now read the mappings from the file,
2642 open a file descriptor for those that have a name,
2643 and call the callback function. */
2644 while (read (map_fd,
2645 (void *) map,
2646 sizeof (struct prmap)) == sizeof (struct prmap))
2647 {
2648 char name[MAX_PROC_NAME_SIZE + sizeof (map->pr_mapname)];
2649
2650 if (map->pr_vaddr == 0 && map->pr_size == 0)
2651 break; /* sanity */
2652
2653 if (map->pr_mapname[0] == 0)
2654 {
2655 fd = -1; /* no map file */
2656 }
2657 else
2658 {
2659 sprintf (name, "/proc/%d/object/%s", pi->pid, map->pr_mapname);
2660 /* Note: caller's responsibility to close this fd! */
2661 fd = open (name, O_RDONLY);
2662 /* Note: we don't test the above call for failure;
2663 we just pass the FD on as given. Sometimes there is
2664 no file, so the ioctl may return failure, but that's
2665 not a problem. */
2666 }
2667
2668 /* Stop looping if the callback returns non-zero. */
2669 if ((funcstat = (*func) (fd, (CORE_ADDR) map->pr_vaddr)) != 0)
2670 break;
2671 }
2672 #else
2673 /* Get the number of mapping entries. */
2674 if (ioctl (pi->ctl_fd, PIOCNMAP, &nmaps) < 0)
2675 proc_error (pi, "proc_iterate_over_mappings (PIOCNMAP)", __LINE__);
2676
2677 /* Allocate space for mappings (lifetime only this function). */
2678 map = (struct prmap *) alloca ((nmaps + 1) * sizeof (struct prmap));
2679
2680 /* Read in all the mappings. */
2681 if (ioctl (pi->ctl_fd, PIOCMAP, map) < 0)
2682 proc_error (pi, "proc_iterate_over_mappings (PIOCMAP)", __LINE__);
2683
2684 /* Now loop through the mappings, open an fd for each, and
2685 call the callback function. */
2686 for (i = 0;
2687 i < nmaps && map[i].pr_size != 0;
2688 i++)
2689 {
2690 /* Note: caller's responsibility to close this fd! */
2691 fd = ioctl (pi->ctl_fd, PIOCOPENM, &map[i].pr_vaddr);
2692 /* Note: we don't test the above call for failure;
2693 we just pass the FD on as given. Sometimes there is
2694 no file, so the ioctl may return failure, but that's
2695 not a problem. */
2696
2697 /* Stop looping if the callback returns non-zero. */
2698 if ((funcstat = (*func) (fd, (CORE_ADDR) map[i].pr_vaddr)) != 0)
2699 break;
2700 }
2701 #endif
2702
2703 return funcstat;
2704 }
2705
2706 #ifdef TM_I386SOL2_H /* Is it hokey to use this? */
2707
2708 #include <sys/sysi86.h>
2709
2710 /*
2711 * Function: proc_get_LDT_entry
2712 *
2713 * Inputs:
2714 * procinfo *pi;
2715 * int key;
2716 *
2717 * The 'key' is actually the value of the lower 16 bits of
2718 * the GS register for the LWP that we're interested in.
2719 *
2720 * Return: matching ssh struct (LDT entry).
2721 */
2722
2723 struct ssd *
2724 proc_get_LDT_entry (pi, key)
2725 procinfo *pi;
2726 int key;
2727 {
2728 static struct ssd *ldt_entry = NULL;
2729 #ifdef NEW_PROC_API
2730 char pathname[MAX_PROC_NAME_SIZE];
2731 struct cleanup *old_chain = NULL;
2732 int fd;
2733
2734 /* Allocate space for one LDT entry.
2735 This alloc must persist, because we return a pointer to it. */
2736 if (ldt_entry == NULL)
2737 ldt_entry = (struct ssd *) xmalloc (sizeof (struct ssd));
2738
2739 /* Open the file descriptor for the LDT table. */
2740 sprintf (pathname, "/proc/%d/ldt", pi->pid);
2741 if ((fd = open (pathname, O_RDONLY)) < 0)
2742 {
2743 proc_warn (pi, "proc_get_LDT_entry (open)", __LINE__);
2744 return NULL;
2745 }
2746 /* Make sure it gets closed again! */
2747 old_chain = make_cleanup ((make_cleanup_func) close, (void *) fd);
2748
2749 /* Now 'read' thru the table, find a match and return it. */
2750 while (read (fd, ldt_entry, sizeof (struct ssd)) == sizeof (struct ssd))
2751 {
2752 if (ldt_entry->sel == 0 &&
2753 ldt_entry->bo == 0 &&
2754 ldt_entry->acc1 == 0 &&
2755 ldt_entry->acc2 == 0)
2756 break; /* end of table */
2757 /* If key matches, return this entry. */
2758 if (ldt_entry->sel == key)
2759 return ldt_entry;
2760 }
2761 /* Loop ended, match not found. */
2762 return NULL;
2763 #else
2764 int nldt, i;
2765 static int nalloc = 0;
2766
2767 /* Get the number of LDT entries. */
2768 if (ioctl (pi->ctl_fd, PIOCNLDT, &nldt) < 0)
2769 {
2770 proc_warn (pi, "proc_get_LDT_entry (PIOCNLDT)", __LINE__);
2771 return NULL;
2772 }
2773
2774 /* Allocate space for the number of LDT entries. */
2775 /* This alloc has to persist, 'cause we return a pointer to it. */
2776 if (nldt > nalloc)
2777 {
2778 ldt_entry = (struct ssd *)
2779 xrealloc (ldt_entry, (nldt + 1) * sizeof (struct ssd));
2780 nalloc = nldt;
2781 }
2782
2783 /* Read the whole table in one gulp. */
2784 if (ioctl (pi->ctl_fd, PIOCLDT, ldt_entry) < 0)
2785 {
2786 proc_warn (pi, "proc_get_LDT_entry (PIOCLDT)", __LINE__);
2787 return NULL;
2788 }
2789
2790 /* Search the table and return the (first) entry matching 'key'. */
2791 for (i = 0; i < nldt; i++)
2792 if (ldt_entry[i].sel == key)
2793 return &ldt_entry[i];
2794
2795 /* Loop ended, match not found. */
2796 return NULL;
2797 #endif
2798 }
2799
2800 #endif /* TM_I386SOL2_H */
2801
2802 /* =============== END, non-thread part of /proc "MODULE" =============== */
2803
2804 /* =================== Thread "MODULE" =================== */
2805
2806 /* NOTE: you'll see more ifdefs and duplication of functions here,
2807 since there is a different way to do threads on every OS. */
2808
2809 /*
2810 * Function: proc_get_nthreads
2811 *
2812 * Return the number of threads for the process
2813 */
2814
2815 #if defined (PIOCNTHR) && defined (PIOCTLIST)
2816 /*
2817 * OSF version
2818 */
2819 int
2820 proc_get_nthreads (pi)
2821 procinfo *pi;
2822 {
2823 int nthreads = 0;
2824
2825 if (ioctl (pi->ctl_fd, PIOCNTHR, &nthreads) < 0)
2826 proc_warn (pi, "procfs: PIOCNTHR failed", __LINE__);
2827
2828 return nthreads;
2829 }
2830
2831 #else
2832 #if defined (SYS_lwpcreate) || defined (SYS_lwp_create) /* FIXME: multiple */
2833 /*
2834 * Solaris and Unixware version
2835 */
2836 int
2837 proc_get_nthreads (pi)
2838 procinfo *pi;
2839 {
2840 if (!pi->status_valid)
2841 if (!proc_get_status (pi))
2842 return 0;
2843
2844 /*
2845 * NEW_PROC_API: only works for the process procinfo,
2846 * because the LWP procinfos do not get prstatus filled in.
2847 */
2848 #ifdef NEW_PROC_API
2849 if (pi->tid != 0) /* find the parent process procinfo */
2850 pi = find_procinfo_or_die (pi->pid, 0);
2851 #endif
2852 return pi->prstatus.pr_nlwp;
2853 }
2854
2855 #else
2856 /*
2857 * Default version
2858 */
2859 int
2860 proc_get_nthreads (pi)
2861 procinfo *pi;
2862 {
2863 return 0;
2864 }
2865 #endif
2866 #endif
2867
2868 /*
2869 * Function: proc_get_current_thread (LWP version)
2870 *
2871 * Return the ID of the thread that had an event of interest.
2872 * (ie. the one that hit a breakpoint or other traced event).
2873 * All other things being equal, this should be the ID of a
2874 * thread that is currently executing.
2875 */
2876
2877 #if defined (SYS_lwpcreate) || defined (SYS_lwp_create) /* FIXME: multiple */
2878 /*
2879 * Solaris and Unixware version
2880 */
2881 int
2882 proc_get_current_thread (pi)
2883 procinfo *pi;
2884 {
2885 /*
2886 * Note: this should be applied to the root procinfo for the process,
2887 * not to the procinfo for an LWP. If applied to the procinfo for
2888 * an LWP, it will simply return that LWP's ID. In that case,
2889 * find the parent process procinfo.
2890 */
2891
2892 if (pi->tid != 0)
2893 pi = find_procinfo_or_die (pi->pid, 0);
2894
2895 if (!pi->status_valid)
2896 if (!proc_get_status (pi))
2897 return 0;
2898
2899 #ifdef NEW_PROC_API
2900 return pi->prstatus.pr_lwp.pr_lwpid;
2901 #else
2902 return pi->prstatus.pr_who;
2903 #endif
2904 }
2905
2906 #else
2907 #if defined (PIOCNTHR) && defined (PIOCTLIST)
2908 /*
2909 * OSF version
2910 */
2911 int
2912 proc_get_current_thread (pi)
2913 procinfo *pi;
2914 {
2915 #if 0 /* FIXME: not ready for prime time? */
2916 return pi->prstatus.pr_tid;
2917 #else
2918 return 0;
2919 #endif
2920 }
2921
2922 #else
2923 /*
2924 * Default version
2925 */
2926 int
2927 proc_get_current_thread (pi)
2928 procinfo *pi;
2929 {
2930 return 0;
2931 }
2932
2933 #endif
2934 #endif
2935
2936 /*
2937 * Function: proc_update_threads
2938 *
2939 * Discover the IDs of all the threads within the process, and
2940 * create a procinfo for each of them (chained to the parent).
2941 *
2942 * This unfortunately requires a different method on every OS.
2943 *
2944 * Return: non-zero for success, zero for failure.
2945 */
2946
2947 int
2948 proc_delete_dead_threads (parent, thread, ignore)
2949 procinfo *parent;
2950 procinfo *thread;
2951 void *ignore;
2952 {
2953 if (thread && parent) /* sanity */
2954 {
2955 thread->status_valid = 0;
2956 if (!proc_get_status (thread))
2957 destroy_one_procinfo (&parent->thread_list, thread);
2958 }
2959 return 0; /* keep iterating */
2960 }
2961
2962 #if defined (PIOCLSTATUS)
2963 /*
2964 * Solaris 2.5 (ioctl) version
2965 */
2966 int
2967 proc_update_threads (pi)
2968 procinfo *pi;
2969 {
2970 gdb_prstatus_t *prstatus;
2971 struct cleanup *old_chain = NULL;
2972 procinfo *thread;
2973 int nlwp, i;
2974
2975 /*
2976 * We should never have to apply this operation to any procinfo
2977 * except the one for the main process. If that ever changes
2978 * for any reason, then take out the following clause and
2979 * replace it with one that makes sure the ctl_fd is open.
2980 */
2981
2982 if (pi->tid != 0)
2983 pi = find_procinfo_or_die (pi->pid, 0);
2984
2985 proc_iterate_over_threads (pi, proc_delete_dead_threads, NULL);
2986
2987 if ((nlwp = proc_get_nthreads (pi)) <= 1)
2988 return 1; /* Process is not multi-threaded; nothing to do. */
2989
2990 if ((prstatus = (gdb_prstatus_t *)
2991 malloc (sizeof (gdb_prstatus_t) * (nlwp + 1))) == 0)
2992 perror_with_name ("procfs: malloc failed in update_threads");
2993
2994 old_chain = make_cleanup (free, prstatus);
2995 if (ioctl (pi->ctl_fd, PIOCLSTATUS, prstatus) < 0)
2996 proc_error (pi, "update_threads (PIOCLSTATUS)", __LINE__);
2997
2998 /* Skip element zero, which represents the process as a whole. */
2999 for (i = 1; i < nlwp + 1; i++)
3000 {
3001 if ((thread = create_procinfo (pi->pid, prstatus[i].pr_who)) == NULL)
3002 proc_error (pi, "update_threads, create_procinfo", __LINE__);
3003
3004 memcpy (&thread->prstatus, &prstatus[i], sizeof (*prstatus));
3005 thread->status_valid = 1;
3006 }
3007 pi->threads_valid = 1;
3008 do_cleanups (old_chain);
3009 return 1;
3010 }
3011 #else
3012 #ifdef NEW_PROC_API
3013 /*
3014 * Unixware and Solaris 6 (and later) version
3015 */
3016 int
3017 proc_update_threads (pi)
3018 procinfo *pi;
3019 {
3020 char pathname[MAX_PROC_NAME_SIZE + 16];
3021 struct dirent *direntry;
3022 struct cleanup *old_chain = NULL;
3023 procinfo *thread;
3024 DIR *dirp;
3025 int lwpid;
3026
3027 /*
3028 * We should never have to apply this operation to any procinfo
3029 * except the one for the main process. If that ever changes
3030 * for any reason, then take out the following clause and
3031 * replace it with one that makes sure the ctl_fd is open.
3032 */
3033
3034 if (pi->tid != 0)
3035 pi = find_procinfo_or_die (pi->pid, 0);
3036
3037 proc_iterate_over_threads (pi, proc_delete_dead_threads, NULL);
3038
3039 /*
3040 * Unixware
3041 *
3042 * Note: this brute-force method is the only way I know of
3043 * to accomplish this task on Unixware. This method will
3044 * also work on Solaris 2.6 and 2.7. There is a much simpler
3045 * and more elegant way to do this on Solaris, but the margins
3046 * of this manuscript are too small to write it here... ;-)
3047 */
3048
3049 strcpy (pathname, pi->pathname);
3050 strcat (pathname, "/lwp");
3051 if ((dirp = opendir (pathname)) == NULL)
3052 proc_error (pi, "update_threads, opendir", __LINE__);
3053
3054 old_chain = make_cleanup ((make_cleanup_func) closedir, dirp);
3055 while ((direntry = readdir (dirp)) != NULL)
3056 if (direntry->d_name[0] != '.') /* skip '.' and '..' */
3057 {
3058 lwpid = atoi (&direntry->d_name[0]);
3059 if ((thread = create_procinfo (pi->pid, lwpid)) == NULL)
3060 proc_error (pi, "update_threads, create_procinfo", __LINE__);
3061 }
3062 pi->threads_valid = 1;
3063 do_cleanups (old_chain);
3064 return 1;
3065 }
3066 #else
3067 #ifdef PIOCTLIST
3068 /*
3069 * OSF version
3070 */
3071 int
3072 proc_update_threads (pi)
3073 procinfo *pi;
3074 {
3075 int nthreads, i;
3076 tid_t *threads;
3077
3078 /*
3079 * We should never have to apply this operation to any procinfo
3080 * except the one for the main process. If that ever changes
3081 * for any reason, then take out the following clause and
3082 * replace it with one that makes sure the ctl_fd is open.
3083 */
3084
3085 if (pi->tid != 0)
3086 pi = find_procinfo_or_die (pi->pid, 0);
3087
3088 proc_iterate_over_threads (pi, proc_delete_dead_threads, NULL);
3089
3090 nthreads = proc_get_nthreads (pi);
3091 if (nthreads < 2)
3092 return 0; /* nothing to do for 1 or fewer threads */
3093
3094 if ((threads = malloc (nthreads * sizeof (tid_t))) == NULL)
3095 proc_error (pi, "update_threads, malloc", __LINE__);
3096
3097 if (ioctl (pi->ctl_fd, PIOCTLIST, threads) < 0)
3098 proc_error (pi, "procfs: update_threads (PIOCTLIST)", __LINE__);
3099
3100 for (i = 0; i < nthreads; i++)
3101 {
3102 if (!find_procinfo (pi->pid, threads[i]))
3103 if (!create_procinfo (pi->pid, threads[i]))
3104 proc_error (pi, "update_threads, create_procinfo", __LINE__);
3105 }
3106 pi->threads_valid = 1;
3107 return 1;
3108 }
3109 #else
3110 /*
3111 * Default version
3112 */
3113 int
3114 proc_update_threads (pi)
3115 procinfo *pi;
3116 {
3117 return 0;
3118 }
3119 #endif /* OSF PIOCTLIST */
3120 #endif /* NEW_PROC_API */
3121 #endif /* SOL 2.5 PIOCLSTATUS */
3122
3123 /*
3124 * Function: proc_iterate_over_threads
3125 *
3126 * Description:
3127 * Given a pointer to a function, call that function once
3128 * for each lwp in the procinfo list, until the function
3129 * returns non-zero, in which event return the value
3130 * returned by the function.
3131 *
3132 * Note: this function does NOT call update_threads.
3133 * If you want to discover new threads first, you must
3134 * call that function explicitly. This function just makes
3135 * a quick pass over the currently-known procinfos.
3136 *
3137 * Arguments:
3138 * pi - parent process procinfo
3139 * func - per-thread function
3140 * ptr - opaque parameter for function.
3141 *
3142 * Return:
3143 * First non-zero return value from the callee, or zero.
3144 */
3145
3146 int
3147 proc_iterate_over_threads (pi, func, ptr)
3148 procinfo *pi;
3149 int (*func) PARAMS ((procinfo *, procinfo *, void *));
3150 void *ptr;
3151 {
3152 procinfo *thread, *next;
3153 int retval = 0;
3154
3155 /*
3156 * We should never have to apply this operation to any procinfo
3157 * except the one for the main process. If that ever changes
3158 * for any reason, then take out the following clause and
3159 * replace it with one that makes sure the ctl_fd is open.
3160 */
3161
3162 if (pi->tid != 0)
3163 pi = find_procinfo_or_die (pi->pid, 0);
3164
3165 for (thread = pi->thread_list; thread != NULL; thread = next)
3166 {
3167 next = thread->next; /* in case thread is destroyed */
3168 if ((retval = (*func) (pi, thread, ptr)) != 0)
3169 break;
3170 }
3171
3172 return retval;
3173 }
3174
3175 /* =================== END, Thread "MODULE" =================== */
3176
3177 /* =================== END, /proc "MODULE" =================== */
3178
3179 /* =================== GDB "MODULE" =================== */
3180
3181 /*
3182 * Here are all of the gdb target vector functions and their friends.
3183 */
3184
3185 static int do_attach PARAMS ((int pid));
3186 static void do_detach PARAMS ((int signo));
3187 static int register_gdb_signals PARAMS ((procinfo *, sigset_t *));
3188
3189 /*
3190 * Function: procfs_debug_inferior
3191 *
3192 * Sets up the inferior to be debugged.
3193 * Registers to trace signals, hardware faults, and syscalls.
3194 * Note: does not set RLC flag: caller may want to customize that.
3195 *
3196 * Returns: zero for success (note! unlike most functions in this module)
3197 * On failure, returns the LINE NUMBER where it failed!
3198 */
3199
3200 static int
3201 procfs_debug_inferior (pi)
3202 procinfo *pi;
3203 {
3204 fltset_t traced_faults;
3205 sigset_t traced_signals;
3206 sysset_t traced_syscall_entries;
3207 sysset_t traced_syscall_exits;
3208
3209 #ifdef PROCFS_DONT_TRACE_FAULTS
3210 /* On some systems (OSF), we don't trace hardware faults.
3211 Apparently it's enough that we catch them as signals.
3212 Wonder why we don't just do that in general? */
3213 premptyset (&traced_faults); /* don't trace faults. */
3214 #else
3215 /* Register to trace hardware faults in the child. */
3216 prfillset (&traced_faults); /* trace all faults... */
3217 prdelset (&traced_faults, FLTPAGE); /* except page fault. */
3218 #endif
3219 if (!proc_set_traced_faults (pi, &traced_faults))
3220 return __LINE__;
3221
3222 /* Register to trace selected signals in the child. */
3223 premptyset (&traced_signals);
3224 if (!register_gdb_signals (pi, &traced_signals))
3225 return __LINE__;
3226
3227 /* Register to trace the 'exit' system call (on entry). */
3228 premptyset (&traced_syscall_entries);
3229 praddset (&traced_syscall_entries, SYS_exit);
3230 #ifdef SYS_lwpexit
3231 praddset (&traced_syscall_entries, SYS_lwpexit); /* And _lwp_exit... */
3232 #endif
3233 #ifdef SYS_lwp_exit
3234 praddset (&traced_syscall_entries, SYS_lwp_exit);
3235 #endif
3236
3237 if (!proc_set_traced_sysentry (pi, &traced_syscall_entries))
3238 return __LINE__;
3239
3240 #ifdef PRFS_STOPEXEC /* defined on OSF */
3241 /* OSF method for tracing exec syscalls. Quoting:
3242 Under Alpha OSF/1 we have to use a PIOCSSPCACT ioctl to trace
3243 exits from exec system calls because of the user level loader. */
3244 /* FIXME: make nice and maybe move into an access function. */
3245 {
3246 int prfs_flags;
3247
3248 if (ioctl (pi->ctl_fd, PIOCGSPCACT, &prfs_flags) < 0)
3249 return __LINE__;
3250
3251 prfs_flags |= PRFS_STOPEXEC;
3252
3253 if (ioctl (pi->ctl_fd, PIOCSSPCACT, &prfs_flags) < 0)
3254 return __LINE__;
3255 }
3256 #else /* not PRFS_STOPEXEC */
3257 /* Everyone else's (except OSF) method for tracing exec syscalls */
3258 /* GW: Rationale...
3259 Not all systems with /proc have all the exec* syscalls with the same
3260 names. On the SGI, for example, there is no SYS_exec, but there
3261 *is* a SYS_execv. So, we try to account for that. */
3262
3263 premptyset (&traced_syscall_exits);
3264 #ifdef SYS_exec
3265 praddset (&traced_syscall_exits, SYS_exec);
3266 #endif
3267 #ifdef SYS_execve
3268 praddset (&traced_syscall_exits, SYS_execve);
3269 #endif
3270 #ifdef SYS_execv
3271 praddset (&traced_syscall_exits, SYS_execv);
3272 #endif
3273
3274 #ifdef SYS_lwpcreate
3275 praddset (&traced_syscall_exits, SYS_lwpcreate);
3276 praddset (&traced_syscall_exits, SYS_lwpexit);
3277 #endif
3278
3279 #ifdef SYS_lwp_create /* FIXME: once only, please */
3280 praddset (&traced_syscall_exits, SYS_lwp_create);
3281 praddset (&traced_syscall_exits, SYS_lwp_exit);
3282 #endif
3283
3284
3285 if (!proc_set_traced_sysexit (pi, &traced_syscall_exits))
3286 return __LINE__;
3287
3288 #endif /* PRFS_STOPEXEC */
3289 return 0;
3290 }
3291
3292 static void
3293 procfs_attach (args, from_tty)
3294 char *args;
3295 int from_tty;
3296 {
3297 char *exec_file;
3298 int pid;
3299
3300 if (!args)
3301 error_no_arg ("process-id to attach");
3302
3303 pid = atoi (args);
3304 if (pid == getpid ())
3305 error ("Attaching GDB to itself is not a good idea...");
3306
3307 if (from_tty)
3308 {
3309 exec_file = get_exec_file (0);
3310
3311 if (exec_file)
3312 printf_filtered ("Attaching to program `%s', %s\n",
3313 exec_file, target_pid_to_str (pid));
3314 else
3315 printf_filtered ("Attaching to %s\n", target_pid_to_str (pid));
3316
3317 fflush (stdout);
3318 }
3319 inferior_pid = do_attach (pid);
3320 push_target (&procfs_ops);
3321 }
3322
3323 static void
3324 procfs_detach (args, from_tty)
3325 char *args;
3326 int from_tty;
3327 {
3328 char *exec_file;
3329 int signo = 0;
3330
3331 if (from_tty)
3332 {
3333 exec_file = get_exec_file (0);
3334 if (exec_file == 0)
3335 exec_file = "";
3336 printf_filtered ("Detaching from program: %s %s\n",
3337 exec_file, target_pid_to_str (inferior_pid));
3338 fflush (stdout);
3339 }
3340 if (args)
3341 signo = atoi (args);
3342
3343 do_detach (signo);
3344 inferior_pid = 0;
3345 unpush_target (&procfs_ops); /* Pop out of handling an inferior */
3346 }
3347
3348 static int
3349 do_attach (pid)
3350 int pid;
3351 {
3352 procinfo *pi;
3353 int fail;
3354
3355 if ((pi = create_procinfo (pid, 0)) == NULL)
3356 perror ("procfs: out of memory in 'attach'");
3357
3358 if (!open_procinfo_files (pi, FD_CTL))
3359 {
3360 fprintf_filtered (gdb_stderr, "procfs:%d -- ", __LINE__);
3361 sprintf (errmsg, "do_attach: couldn't open /proc file for process %d",
3362 pid);
3363 dead_procinfo (pi, errmsg, NOKILL);
3364 }
3365
3366 /* Stop the process (if it isn't already stopped). */
3367 if (proc_flags (pi) & (PR_STOPPED | PR_ISTOP))
3368 {
3369 pi->was_stopped = 1;
3370 proc_prettyprint_why (proc_why (pi), proc_what (pi), 1);
3371 }
3372 else
3373 {
3374 pi->was_stopped = 0;
3375 /* Set the process to run again when we close it. */
3376 if (!proc_set_run_on_last_close (pi))
3377 dead_procinfo (pi, "do_attach: couldn't set RLC.", NOKILL);
3378
3379 /* Now stop the process. */
3380 if (!proc_stop_process (pi))
3381 dead_procinfo (pi, "do_attach: couldn't stop the process.", NOKILL);
3382 pi->ignore_next_sigstop = 1;
3383 }
3384 /* Save some of the /proc state to be restored if we detach. */
3385 if (!proc_get_traced_faults (pi, &pi->saved_fltset))
3386 dead_procinfo (pi, "do_attach: couldn't save traced faults.", NOKILL);
3387 if (!proc_get_traced_signals (pi, &pi->saved_sigset))
3388 dead_procinfo (pi, "do_attach: couldn't save traced signals.", NOKILL);
3389 if (!proc_get_traced_sysentry (pi, &pi->saved_entryset))
3390 dead_procinfo (pi, "do_attach: couldn't save traced syscall entries.",
3391 NOKILL);
3392 if (!proc_get_traced_sysexit (pi, &pi->saved_exitset))
3393 dead_procinfo (pi, "do_attach: couldn't save traced syscall exits.",
3394 NOKILL);
3395 if (!proc_get_held_signals (pi, &pi->saved_sighold))
3396 dead_procinfo (pi, "do_attach: couldn't save held signals.", NOKILL);
3397
3398 if ((fail = procfs_debug_inferior (pi)) != 0)
3399 dead_procinfo (pi, "do_attach: failed in procfs_debug_inferior", NOKILL);
3400
3401 /* Let GDB know that the inferior was attached. */
3402 attach_flag = 1;
3403 return MERGEPID (pi->pid, proc_get_current_thread (pi));
3404 }
3405
3406 static void
3407 do_detach (signo)
3408 int signo;
3409 {
3410 procinfo *pi;
3411
3412 /* Find procinfo for the main process */
3413 pi = find_procinfo_or_die (PIDGET (inferior_pid), 0); /* FIXME: threads */
3414 if (signo)
3415 if (!proc_set_current_signal (pi, signo))
3416 proc_warn (pi, "do_detach, set_current_signal", __LINE__);
3417
3418 if (!proc_set_traced_signals (pi, &pi->saved_sigset))
3419 proc_warn (pi, "do_detach, set_traced_signal", __LINE__);
3420
3421 if (!proc_set_traced_faults (pi, &pi->saved_fltset))
3422 proc_warn (pi, "do_detach, set_traced_faults", __LINE__);
3423
3424 if (!proc_set_traced_sysentry (pi, &pi->saved_entryset))
3425 proc_warn (pi, "do_detach, set_traced_sysentry", __LINE__);
3426
3427 if (!proc_set_traced_sysexit (pi, &pi->saved_exitset))
3428 proc_warn (pi, "do_detach, set_traced_sysexit", __LINE__);
3429
3430 if (!proc_set_held_signals (pi, &pi->saved_sighold))
3431 proc_warn (pi, "do_detach, set_held_signals", __LINE__);
3432
3433 if (signo || (proc_flags (pi) & (PR_STOPPED | PR_ISTOP)))
3434 if (signo || !(pi->was_stopped) ||
3435 query ("Was stopped when attached, make it runnable again? "))
3436 {
3437 /* Clear any pending signal. */
3438 if (!proc_clear_current_fault (pi))
3439 proc_warn (pi, "do_detach, clear_current_fault", __LINE__);
3440
3441 if (!proc_set_run_on_last_close (pi))
3442 proc_warn (pi, "do_detach, set_rlc", __LINE__);
3443 }
3444
3445 attach_flag = 0;
3446 destroy_procinfo (pi);
3447 }
3448
3449 /*
3450 * fetch_registers
3451 *
3452 * Since the /proc interface cannot give us individual registers,
3453 * we pay no attention to the (regno) argument, and just fetch them all.
3454 * This results in the possibility that we will do unnecessarily many
3455 * fetches, since we may be called repeatedly for individual registers.
3456 * So we cache the results, and mark the cache invalid when the process
3457 * is resumed.
3458 */
3459
3460 /* These could go in a header file, but the many and various
3461 definitions of gregset_t would make it tricky and ugly. Several
3462 different native operating systems (notably Solaris and Linux) have
3463 various different definitions for gregset_t and fpregset_t. We
3464 have been kludging around this problem for a while, it would be
3465 nice if someday we came up with a prettier way of handling it
3466 (FIXME). */
3467
3468 extern void fill_gregset (gdb_gregset_t *, int);
3469 extern void fill_fpregset (gdb_fpregset_t *, int);
3470 extern void supply_gregset (gdb_gregset_t *);
3471 extern void supply_fpregset (gdb_fpregset_t *);
3472
3473 static void
3474 procfs_fetch_registers (regno)
3475 int regno;
3476 {
3477 gdb_fpregset_t *fpregs;
3478 gdb_gregset_t *gregs;
3479 procinfo *pi;
3480 int pid;
3481 int tid;
3482
3483 pid = PIDGET (inferior_pid);
3484 tid = TIDGET (inferior_pid);
3485
3486 /* First look up procinfo for the main process. */
3487 pi = find_procinfo_or_die (pid, 0);
3488
3489 /* If the event thread is not the same as GDB's requested thread
3490 (ie. inferior_pid), then look up procinfo for the requested
3491 thread. */
3492 if ((tid != 0) &&
3493 (tid != proc_get_current_thread (pi)))
3494 pi = find_procinfo_or_die (pid, tid);
3495
3496 if (pi == NULL)
3497 error ("procfs: fetch_registers failed to find procinfo for %s",
3498 target_pid_to_str (inferior_pid));
3499
3500 if ((gregs = proc_get_gregs (pi)) == NULL)
3501 proc_error (pi, "fetch_registers, get_gregs", __LINE__);
3502
3503 supply_gregset (gregs);
3504
3505 if (FP0_REGNUM >= 0) /* need floating point? */
3506 {
3507 if ((regno >= 0 && regno < FP0_REGNUM) ||
3508 regno == PC_REGNUM ||
3509 (NPC_REGNUM >= 0 && regno == NPC_REGNUM) ||
3510 regno == FP_REGNUM ||
3511 regno == SP_REGNUM)
3512 return; /* not a floating point register */
3513
3514 if ((fpregs = proc_get_fpregs (pi)) == NULL)
3515 proc_error (pi, "fetch_registers, get_fpregs", __LINE__);
3516
3517 supply_fpregset (fpregs);
3518 }
3519 }
3520
3521 /* Get ready to modify the registers array. On machines which store
3522 individual registers, this doesn't need to do anything. On
3523 machines which store all the registers in one fell swoop, such as
3524 /proc, this makes sure that registers contains all the registers
3525 from the program being debugged. */
3526
3527 static void
3528 procfs_prepare_to_store ()
3529 {
3530 #ifdef CHILD_PREPARE_TO_STORE
3531 CHILD_PREPARE_TO_STORE ();
3532 #endif
3533 }
3534
3535 /*
3536 * store_registers
3537 *
3538 * Since the /proc interface will not read individual registers,
3539 * we will cache these requests until the process is resumed, and
3540 * only then write them back to the inferior process.
3541 *
3542 * FIXME: is that a really bad idea? Have to think about cases
3543 * where writing one register might affect the value of others, etc.
3544 */
3545
3546 static void
3547 procfs_store_registers (regno)
3548 int regno;
3549 {
3550 gdb_fpregset_t *fpregs;
3551 gdb_gregset_t *gregs;
3552 procinfo *pi;
3553 int pid;
3554 int tid;
3555
3556 pid = PIDGET (inferior_pid);
3557 tid = TIDGET (inferior_pid);
3558
3559 /* First find procinfo for main process */
3560 pi = find_procinfo_or_die (pid, 0);
3561
3562 /* If current lwp for process is not the same as requested thread
3563 (ie. inferior_pid), then find procinfo for the requested thread. */
3564
3565 if ((tid != 0) &&
3566 (tid != proc_get_current_thread (pi)))
3567 pi = find_procinfo_or_die (pid, tid);
3568
3569 if (pi == NULL)
3570 error ("procfs: store_registers: failed to find procinfo for %s",
3571 target_pid_to_str (inferior_pid));
3572
3573 if ((gregs = proc_get_gregs (pi)) == NULL)
3574 proc_error (pi, "store_registers, get_gregs", __LINE__);
3575
3576 fill_gregset (gregs, regno);
3577 if (!proc_set_gregs (pi))
3578 proc_error (pi, "store_registers, set_gregs", __LINE__);
3579
3580 if (FP0_REGNUM >= 0) /* need floating point? */
3581 {
3582 if ((regno >= 0 && regno < FP0_REGNUM) ||
3583 regno == PC_REGNUM ||
3584 (NPC_REGNUM >= 0 && regno == NPC_REGNUM) ||
3585 regno == FP_REGNUM ||
3586 regno == SP_REGNUM)
3587 return; /* not a floating point register */
3588
3589 if ((fpregs = proc_get_fpregs (pi)) == NULL)
3590 proc_error (pi, "store_registers, get_fpregs", __LINE__);
3591
3592 fill_fpregset (fpregs, regno);
3593 if (!proc_set_fpregs (pi))
3594 proc_error (pi, "store_registers, set_fpregs", __LINE__);
3595 }
3596 }
3597
3598 /*
3599 * Function: target_wait
3600 *
3601 * Retrieve the next stop event from the child process.
3602 * If child has not stopped yet, wait for it to stop.
3603 * Translate /proc eventcodes (or possibly wait eventcodes)
3604 * into gdb internal event codes.
3605 *
3606 * Return: id of process (and possibly thread) that incurred the event.
3607 * event codes are returned thru a pointer parameter.
3608 */
3609
3610 static int
3611 procfs_wait (pid, status)
3612 int pid;
3613 struct target_waitstatus *status;
3614 {
3615 /* First cut: loosely based on original version 2.1 */
3616 procinfo *pi;
3617 int temp, wstat;
3618 int retval;
3619 int why, what, flags;
3620 int retry = 0;
3621
3622 wait_again:
3623
3624 retry++;
3625 wstat = 0;
3626 retval = -1;
3627
3628 /* Find procinfo for main process */
3629 pi = find_procinfo_or_die (PIDGET (inferior_pid), 0);
3630 if (pi)
3631 {
3632 /* We must assume that the status is stale now... */
3633 pi->status_valid = 0;
3634 pi->gregs_valid = 0;
3635 pi->fpregs_valid = 0;
3636
3637 #if 0 /* just try this out... */
3638 flags = proc_flags (pi);
3639 why = proc_why (pi);
3640 if ((flags & PR_STOPPED) && (why == PR_REQUESTED))
3641 pi->status_valid = 0; /* re-read again, IMMEDIATELY... */
3642 #endif
3643 /* If child is not stopped, wait for it to stop. */
3644 if (!(proc_flags (pi) & (PR_STOPPED | PR_ISTOP)) &&
3645 !proc_wait_for_stop (pi))
3646 {
3647 /* wait_for_stop failed: has the child terminated? */
3648 if (errno == ENOENT)
3649 {
3650 /* /proc file not found; presumably child has terminated. */
3651 retval = wait (&wstat); /* "wait" for the child's exit */
3652
3653 if (retval != PIDGET (inferior_pid)) /* wrong child? */
3654 error ("procfs: couldn't stop process %d: wait returned %d\n",
3655 inferior_pid, retval);
3656 /* FIXME: might I not just use waitpid?
3657 Or try find_procinfo to see if I know about this child? */
3658 }
3659 else
3660 {
3661 /* Unknown error from wait_for_stop. */
3662 proc_error (pi, "target_wait (wait_for_stop)", __LINE__);
3663 }
3664 }
3665 else
3666 {
3667 /* This long block is reached if either:
3668 a) the child was already stopped, or
3669 b) we successfully waited for the child with wait_for_stop.
3670 This block will analyze the /proc status, and translate it
3671 into a waitstatus for GDB.
3672
3673 If we actually had to call wait because the /proc file
3674 is gone (child terminated), then we skip this block,
3675 because we already have a waitstatus. */
3676
3677 flags = proc_flags (pi);
3678 why = proc_why (pi);
3679 what = proc_what (pi);
3680
3681 if (flags & (PR_STOPPED | PR_ISTOP))
3682 {
3683 #ifdef PR_ASYNC
3684 /* If it's running async (for single_thread control),
3685 set it back to normal again. */
3686 if (flags & PR_ASYNC)
3687 if (!proc_unset_async (pi))
3688 proc_error (pi, "target_wait, unset_async", __LINE__);
3689 #endif
3690
3691 if (info_verbose)
3692 proc_prettyprint_why (why, what, 1);
3693
3694 /* The 'pid' we will return to GDB is composed of
3695 the process ID plus the lwp ID. */
3696 retval = MERGEPID (pi->pid, proc_get_current_thread (pi));
3697
3698 switch (why) {
3699 case PR_SIGNALLED:
3700 wstat = (what << 8) | 0177;
3701 break;
3702 case PR_SYSENTRY:
3703 switch (what) {
3704 #ifdef SYS_lwp_exit
3705 case SYS_lwp_exit:
3706 #endif
3707 #ifdef SYS_lwpexit
3708 case SYS_lwpexit:
3709 #endif
3710 #if defined (SYS_lwp_exit) || defined (SYS_lwpexit)
3711 printf_filtered ("[%s exited]\n",
3712 target_pid_to_str (retval));
3713 delete_thread (retval);
3714 status->kind = TARGET_WAITKIND_SPURIOUS;
3715 return retval;
3716 #endif /* _lwp_exit */
3717
3718 case SYS_exit:
3719 /* Handle SYS_exit call only */
3720 /* Stopped at entry to SYS_exit.
3721 Make it runnable, resume it, then use
3722 the wait system call to get its exit code.
3723 Proc_run_process always clears the current
3724 fault and signal.
3725 Then return its exit status. */
3726 pi->status_valid = 0;
3727 wstat = 0;
3728 /* FIXME: what we should do is return
3729 TARGET_WAITKIND_SPURIOUS. */
3730 if (!proc_run_process (pi, 0, 0))
3731 proc_error (pi, "target_wait, run_process", __LINE__);
3732 if (attach_flag)
3733 {
3734 /* Don't call wait: simulate waiting for exit,
3735 return a "success" exit code. Bogus: what if
3736 it returns something else? */
3737 wstat = 0;
3738 retval = inferior_pid; /* ? ? ? */
3739 }
3740 else
3741 {
3742 int temp = wait (&wstat);
3743
3744 /* FIXME: shouldn't I make sure I get the right
3745 event from the right process? If (for
3746 instance) I have killed an earlier inferior
3747 process but failed to clean up after it
3748 somehow, I could get its termination event
3749 here. */
3750
3751 /* If wait returns -1, that's what we return to GDB. */
3752 if (temp < 0)
3753 retval = temp;
3754 }
3755 break;
3756 default:
3757 printf_filtered ("procfs: trapped on entry to ");
3758 proc_prettyprint_syscall (proc_what (pi), 0);
3759 printf_filtered ("\n");
3760 #ifndef PIOCSSPCACT
3761 {
3762 long i, nsysargs, *sysargs;
3763
3764 if ((nsysargs = proc_nsysarg (pi)) > 0 &&
3765 (sysargs = proc_sysargs (pi)) != NULL)
3766 {
3767 printf_filtered ("%ld syscall arguments:\n", nsysargs);
3768 for (i = 0; i < nsysargs; i++)
3769 printf_filtered ("#%ld: 0x%08lx\n",
3770 i, sysargs[i]);
3771 }
3772
3773 }
3774 #endif
3775 if (status)
3776 {
3777 /* How to exit gracefully, returning "unknown event" */
3778 status->kind = TARGET_WAITKIND_SPURIOUS;
3779 return inferior_pid;
3780 }
3781 else
3782 {
3783 /* How to keep going without returning to wfi: */
3784 target_resume (pid, 0, TARGET_SIGNAL_0);
3785 goto wait_again;
3786 }
3787 break;
3788 }
3789 break;
3790 case PR_SYSEXIT:
3791 switch (what) {
3792 #ifdef SYS_exec
3793 case SYS_exec:
3794 #endif
3795 #ifdef SYS_execv
3796 case SYS_execv:
3797 #endif
3798 #ifdef SYS_execve
3799 case SYS_execve:
3800 #endif
3801 /* Hopefully this is our own "fork-child" execing
3802 the real child. Hoax this event into a trap, and
3803 GDB will see the child about to execute its start
3804 address. */
3805 wstat = (SIGTRAP << 8) | 0177;
3806 break;
3807 #ifdef SYS_lwp_create
3808 case SYS_lwp_create:
3809 #endif
3810 #ifdef SYS_lwpcreate
3811 case SYS_lwpcreate:
3812 #endif
3813 #if defined(SYS_lwp_create) || defined(SYS_lwpcreate)
3814 /*
3815 * This syscall is somewhat like fork/exec.
3816 * We will get the event twice: once for the parent LWP,
3817 * and once for the child. We should already know about
3818 * the parent LWP, but the child will be new to us. So,
3819 * whenever we get this event, if it represents a new
3820 * thread, simply add the thread to the list.
3821 */
3822
3823 /* If not in procinfo list, add it. */
3824 temp = proc_get_current_thread (pi);
3825 if (!find_procinfo (pi->pid, temp))
3826 create_procinfo (pi->pid, temp);
3827
3828 temp = MERGEPID (pi->pid, temp);
3829 /* If not in GDB's thread list, add it. */
3830 if (!in_thread_list (temp))
3831 {
3832 printf_filtered ("[New %s]\n", target_pid_to_str (temp));
3833 add_thread (temp);
3834 }
3835 /* Return to WFI, but tell it to immediately resume. */
3836 status->kind = TARGET_WAITKIND_SPURIOUS;
3837 return inferior_pid;
3838 #endif /* _lwp_create */
3839
3840 #ifdef SYS_lwp_exit
3841 case SYS_lwp_exit:
3842 #endif
3843 #ifdef SYS_lwpexit
3844 case SYS_lwpexit:
3845 #endif
3846 #if defined (SYS_lwp_exit) || defined (SYS_lwpexit)
3847 printf_filtered ("[%s exited]\n",
3848 target_pid_to_str (retval));
3849 delete_thread (retval);
3850 status->kind = TARGET_WAITKIND_SPURIOUS;
3851 return retval;
3852 #endif /* _lwp_exit */
3853
3854 #ifdef SYS_sproc
3855 case SYS_sproc:
3856 /* Nothing to do here for now. The old procfs
3857 seemed to use this event to handle threads on
3858 older (non-LWP) systems, where I'm assuming that
3859 threads were actually separate processes. Irix,
3860 maybe? Anyway, low priority for now. */
3861 #endif
3862 #ifdef SYS_fork
3863 case SYS_fork:
3864 /* FIXME: do we need to handle this? Investigate. */
3865 #endif
3866 #ifdef SYS_vfork
3867 case SYS_vfork:
3868 /* FIXME: see above. */
3869 #endif
3870 default:
3871 printf_filtered ("procfs: trapped on exit from ");
3872 proc_prettyprint_syscall (proc_what (pi), 0);
3873 printf_filtered ("\n");
3874 #ifndef PIOCSSPCACT
3875 {
3876 long i, nsysargs, *sysargs;
3877
3878 if ((nsysargs = proc_nsysarg (pi)) > 0 &&
3879 (sysargs = proc_sysargs (pi)) != NULL)
3880 {
3881 printf_filtered ("%ld syscall arguments:\n", nsysargs);
3882 for (i = 0; i < nsysargs; i++)
3883 printf_filtered ("#%ld: 0x%08lx\n",
3884 i, sysargs[i]);
3885 }
3886 }
3887 #endif
3888 status->kind = TARGET_WAITKIND_SPURIOUS;
3889 return inferior_pid;
3890 }
3891 break;
3892 case PR_REQUESTED:
3893 #if 0 /* FIXME */
3894 wstat = (SIGSTOP << 8) | 0177;
3895 break;
3896 #else
3897 if (retry < 5)
3898 {
3899 printf_filtered ("Retry #%d:\n", retry);
3900 pi->status_valid = 0;
3901 goto wait_again;
3902 }
3903 else
3904 {
3905 /* If not in procinfo list, add it. */
3906 temp = proc_get_current_thread (pi);
3907 if (!find_procinfo (pi->pid, temp))
3908 create_procinfo (pi->pid, temp);
3909
3910 /* If not in GDB's thread list, add it. */
3911 temp = MERGEPID (pi->pid, temp);
3912 if (!in_thread_list (temp))
3913 {
3914 printf_filtered ("[New %s]\n",
3915 target_pid_to_str (temp));
3916 add_thread (temp);
3917 }
3918
3919 status->kind = TARGET_WAITKIND_STOPPED;
3920 status->value.sig = 0;
3921 return retval;
3922 }
3923 #endif
3924 case PR_JOBCONTROL:
3925 wstat = (what << 8) | 0177;
3926 break;
3927 case PR_FAULTED:
3928 switch (what) { /* FIXME: FAULTED_USE_SIGINFO */
3929 #ifdef FLTWATCH
3930 case FLTWATCH:
3931 wstat = (SIGTRAP << 8) | 0177;
3932 break;
3933 #endif
3934 #ifdef FLTKWATCH
3935 case FLTKWATCH:
3936 wstat = (SIGTRAP << 8) | 0177;
3937 break;
3938 #endif
3939 /* FIXME: use si_signo where possible. */
3940 case FLTPRIV:
3941 #if (FLTILL != FLTPRIV) /* avoid "duplicate case" error */
3942 case FLTILL:
3943 #endif
3944 wstat = (SIGILL << 8) | 0177;
3945 break;
3946 case FLTBPT:
3947 #if (FLTTRACE != FLTBPT) /* avoid "duplicate case" error */
3948 case FLTTRACE:
3949 #endif
3950 wstat = (SIGTRAP << 8) | 0177;
3951 break;
3952 case FLTSTACK:
3953 case FLTACCESS:
3954 #if (FLTBOUNDS != FLTSTACK) /* avoid "duplicate case" error */
3955 case FLTBOUNDS:
3956 #endif
3957 wstat = (SIGSEGV << 8) | 0177;
3958 break;
3959 case FLTIOVF:
3960 case FLTIZDIV:
3961 #if (FLTFPE != FLTIOVF) /* avoid "duplicate case" error */
3962 case FLTFPE:
3963 #endif
3964 wstat = (SIGFPE << 8) | 0177;
3965 break;
3966 case FLTPAGE: /* Recoverable page fault */
3967 default: /* FIXME: use si_signo if possible for fault */
3968 retval = -1;
3969 printf_filtered ("procfs:%d -- ", __LINE__);
3970 printf_filtered ("child stopped for unknown reason:\n");
3971 proc_prettyprint_why (why, what, 1);
3972 error ("... giving up...");
3973 break;
3974 }
3975 break; /* case PR_FAULTED: */
3976 default: /* switch (why) unmatched */
3977 printf_filtered ("procfs:%d -- ", __LINE__);
3978 printf_filtered ("child stopped for unknown reason:\n");
3979 proc_prettyprint_why (why, what, 1);
3980 error ("... giving up...");
3981 break;
3982 }
3983 /*
3984 * Got this far without error:
3985 * If retval isn't in the threads database, add it.
3986 */
3987 if (retval > 0 &&
3988 retval != inferior_pid &&
3989 !in_thread_list (retval))
3990 {
3991 /*
3992 * We have a new thread.
3993 * We need to add it both to GDB's list and to our own.
3994 * If we don't create a procinfo, resume may be unhappy
3995 * later.
3996 */
3997 printf_filtered ("[New %s]\n", target_pid_to_str (retval));
3998 add_thread (retval);
3999 if (find_procinfo (PIDGET (retval), TIDGET (retval)) == NULL)
4000 create_procinfo (PIDGET (retval), TIDGET (retval));
4001
4002 /* In addition, it's possible that this is the first
4003 * new thread we've seen, in which case we may not
4004 * have created entries for inferior_pid yet.
4005 */
4006 if (TIDGET (inferior_pid) != 0)
4007 {
4008 if (!in_thread_list (inferior_pid))
4009 add_thread (inferior_pid);
4010 if (find_procinfo (PIDGET (inferior_pid),
4011 TIDGET (inferior_pid)) == NULL)
4012 create_procinfo (PIDGET (inferior_pid),
4013 TIDGET (inferior_pid));
4014 }
4015 }
4016 }
4017 else /* flags do not indicate STOPPED */
4018 {
4019 /* surely this can't happen... */
4020 printf_filtered ("procfs:%d -- process not stopped.\n",
4021 __LINE__);
4022 proc_prettyprint_flags (flags, 1);
4023 error ("procfs: ...giving up...");
4024 }
4025 }
4026
4027 if (status)
4028 store_waitstatus (status, wstat);
4029 }
4030
4031 return retval;
4032 }
4033
4034 static int
4035 procfs_xfer_memory (memaddr, myaddr, len, dowrite, target)
4036 CORE_ADDR memaddr;
4037 char *myaddr;
4038 int len;
4039 int dowrite;
4040 struct target_ops *target; /* ignored */
4041 {
4042 procinfo *pi;
4043 int nbytes = 0;
4044
4045 /* Find procinfo for main process */
4046 pi = find_procinfo_or_die (PIDGET (inferior_pid), 0);
4047 if (pi->as_fd == 0 &&
4048 open_procinfo_files (pi, FD_AS) == 0)
4049 {
4050 proc_warn (pi, "xfer_memory, open_proc_files", __LINE__);
4051 return 0;
4052 }
4053
4054 if (lseek (pi->as_fd, (off_t) memaddr, SEEK_SET) == (off_t) memaddr)
4055 {
4056 if (dowrite)
4057 {
4058 #ifdef NEW_PROC_API
4059 PROCFS_NOTE ("write memory: ");
4060 #else
4061 PROCFS_NOTE ("write memory: \n");
4062 #endif
4063 nbytes = write (pi->as_fd, myaddr, len);
4064 }
4065 else
4066 {
4067 PROCFS_NOTE ("read memory: \n");
4068 nbytes = read (pi->as_fd, myaddr, len);
4069 }
4070 if (nbytes < 0)
4071 {
4072 nbytes = 0;
4073 }
4074 }
4075 return nbytes;
4076 }
4077
4078 /*
4079 * Function: invalidate_cache
4080 *
4081 * Called by target_resume before making child runnable.
4082 * Mark cached registers and status's invalid.
4083 * If there are "dirty" caches that need to be written back
4084 * to the child process, do that.
4085 *
4086 * File descriptors are also cached.
4087 * As they are a limited resource, we cannot hold onto them indefinitely.
4088 * However, as they are expensive to open, we don't want to throw them
4089 * away indescriminately either. As a compromise, we will keep the
4090 * file descriptors for the parent process, but discard any file
4091 * descriptors we may have accumulated for the threads.
4092 *
4093 * Return value:
4094 * As this function is called by iterate_over_threads, it always
4095 * returns zero (so that iterate_over_threads will keep iterating).
4096 */
4097
4098
4099 static int
4100 invalidate_cache (parent, pi, ptr)
4101 procinfo *parent;
4102 procinfo *pi;
4103 void *ptr;
4104 {
4105 /*
4106 * About to run the child; invalidate caches and do any other cleanup.
4107 */
4108
4109 #if 0
4110 if (pi->gregs_dirty)
4111 if (parent == NULL ||
4112 proc_get_current_thread (parent) != pi->tid)
4113 if (!proc_set_gregs (pi)) /* flush gregs cache */
4114 proc_warn (pi, "target_resume, set_gregs",
4115 __LINE__);
4116 if (FP0_REGNUM >= 0)
4117 if (pi->fpregs_dirty)
4118 if (parent == NULL ||
4119 proc_get_current_thread (parent) != pi->tid)
4120 if (!proc_set_fpregs (pi)) /* flush fpregs cache */
4121 proc_warn (pi, "target_resume, set_fpregs",
4122 __LINE__);
4123 #endif
4124
4125 if (parent != NULL)
4126 {
4127 /* The presence of a parent indicates that this is an LWP.
4128 Close any file descriptors that it might have open.
4129 We don't do this to the master (parent) procinfo. */
4130
4131 close_procinfo_files (pi);
4132 }
4133 pi->gregs_valid = 0;
4134 pi->fpregs_valid = 0;
4135 #if 0
4136 pi->gregs_dirty = 0;
4137 pi->fpregs_dirty = 0;
4138 #endif
4139 pi->status_valid = 0;
4140 pi->threads_valid = 0;
4141
4142 return 0;
4143 }
4144
4145 #if 0
4146 /*
4147 * Function: make_signal_thread_runnable
4148 *
4149 * A callback function for iterate_over_threads.
4150 * Find the asynchronous signal thread, and make it runnable.
4151 * See if that helps matters any.
4152 */
4153
4154 static int
4155 make_signal_thread_runnable (process, pi, ptr)
4156 procinfo *process;
4157 procinfo *pi;
4158 void *ptr;
4159 {
4160 #ifdef PR_ASLWP
4161 if (proc_flags (pi) & PR_ASLWP)
4162 {
4163 if (!proc_run_process (pi, 0, -1))
4164 proc_error (pi, "make_signal_thread_runnable", __LINE__);
4165 return 1;
4166 }
4167 #endif
4168 return 0;
4169 }
4170 #endif
4171
4172 /*
4173 * Function: target_resume
4174 *
4175 * Make the child process runnable. Normally we will then call
4176 * procfs_wait and wait for it to stop again (unles gdb is async).
4177 *
4178 * Arguments:
4179 * step: if true, then arrange for the child to stop again
4180 * after executing a single instruction.
4181 * signo: if zero, then cancel any pending signal.
4182 * If non-zero, then arrange for the indicated signal
4183 * to be delivered to the child when it runs.
4184 * pid: if -1, then allow any child thread to run.
4185 * if non-zero, then allow only the indicated thread to run.
4186 ******* (not implemented yet)
4187 */
4188
4189 static void
4190 procfs_resume (pid, step, signo)
4191 int pid;
4192 int step;
4193 enum target_signal signo;
4194 {
4195 procinfo *pi, *thread;
4196 int native_signo;
4197
4198 /* 2.1:
4199 prrun.prflags |= PRSVADDR;
4200 prrun.pr_vaddr = $PC; set resume address
4201 prrun.prflags |= PRSTRACE; trace signals in pr_trace (all)
4202 prrun.prflags |= PRSFAULT; trace faults in pr_fault (all but PAGE)
4203 prrun.prflags |= PRCFAULT; clear current fault.
4204
4205 PRSTRACE and PRSFAULT can be done by other means
4206 (proc_trace_signals, proc_trace_faults)
4207 PRSVADDR is unnecessary.
4208 PRCFAULT may be replaced by a PIOCCFAULT call (proc_clear_current_fault)
4209 This basically leaves PRSTEP and PRCSIG.
4210 PRCSIG is like PIOCSSIG (proc_clear_current_signal).
4211 So basically PR_STEP is the sole argument that must be passed
4212 to proc_run_process (for use in the prrun struct by ioctl). */
4213
4214 /* Find procinfo for main process */
4215 pi = find_procinfo_or_die (PIDGET (inferior_pid), 0);
4216
4217 /* First cut: ignore pid argument */
4218 errno = 0;
4219
4220 /* Convert signal to host numbering. */
4221 if (signo == 0 ||
4222 (signo == TARGET_SIGNAL_STOP && pi->ignore_next_sigstop))
4223 native_signo = 0;
4224 else
4225 native_signo = target_signal_to_host (signo);
4226
4227 pi->ignore_next_sigstop = 0;
4228
4229 /* Running the process voids all cached registers and status. */
4230 /* Void the threads' caches first */
4231 proc_iterate_over_threads (pi, invalidate_cache, NULL);
4232 /* Void the process procinfo's caches. */
4233 invalidate_cache (NULL, pi, NULL);
4234
4235 if (pid != -1)
4236 {
4237 /* Resume a specific thread, presumably suppressing the others. */
4238 thread = find_procinfo (PIDGET (pid), TIDGET (pid));
4239 if (thread == NULL)
4240 warning ("procfs: resume can't find thread %d -- resuming all.",
4241 TIDGET (pid));
4242 else
4243 {
4244 if (thread->tid != 0)
4245 {
4246 /* We're to resume a specific thread, and not the others.
4247 * Set the child process's PR_ASYNC flag.
4248 */
4249 #ifdef PR_ASYNC
4250 if (!proc_set_async (pi))
4251 proc_error (pi, "target_resume, set_async", __LINE__);
4252 #endif
4253 #if 0
4254 proc_iterate_over_threads (pi,
4255 make_signal_thread_runnable,
4256 NULL);
4257 #endif
4258 pi = thread; /* substitute the thread's procinfo for run */
4259 }
4260 }
4261 }
4262
4263 if (!proc_run_process (pi, step, native_signo))
4264 {
4265 if (errno == EBUSY)
4266 warning ("resume: target already running. Pretend to resume, and hope for the best!\n");
4267 else
4268 proc_error (pi, "target_resume", __LINE__);
4269 }
4270 }
4271
4272 /*
4273 * Function: register_gdb_signals
4274 *
4275 * Traverse the list of signals that GDB knows about
4276 * (see "handle" command), and arrange for the target
4277 * to be stopped or not, according to these settings.
4278 *
4279 * Returns non-zero for success, zero for failure.
4280 */
4281
4282 static int
4283 register_gdb_signals (pi, signals)
4284 procinfo *pi;
4285 sigset_t *signals;
4286 {
4287 int signo;
4288
4289 for (signo = 0; signo < NSIG; signo ++)
4290 if (signal_stop_state (target_signal_from_host (signo)) == 0 &&
4291 signal_print_state (target_signal_from_host (signo)) == 0 &&
4292 signal_pass_state (target_signal_from_host (signo)) == 1)
4293 prdelset (signals, signo);
4294 else
4295 praddset (signals, signo);
4296
4297 return proc_set_traced_signals (pi, signals);
4298 }
4299
4300 /*
4301 * Function: target_notice_signals
4302 *
4303 * Set up to trace signals in the child process.
4304 */
4305
4306 static void
4307 procfs_notice_signals (pid)
4308 int pid;
4309 {
4310 sigset_t signals;
4311 procinfo *pi = find_procinfo_or_die (PIDGET (pid), 0);
4312
4313 if (proc_get_traced_signals (pi, &signals) &&
4314 register_gdb_signals (pi, &signals))
4315 return;
4316 else
4317 proc_error (pi, "notice_signals", __LINE__);
4318 }
4319
4320 /*
4321 * Function: target_files_info
4322 *
4323 * Print status information about the child process.
4324 */
4325
4326 static void
4327 procfs_files_info (ignore)
4328 struct target_ops *ignore;
4329 {
4330 printf_filtered ("\tUsing the running image of %s %s via /proc.\n",
4331 attach_flag? "attached": "child",
4332 target_pid_to_str (inferior_pid));
4333 }
4334
4335 /*
4336 * Function: target_open
4337 *
4338 * A dummy: you don't open procfs.
4339 */
4340
4341 static void
4342 procfs_open (args, from_tty)
4343 char *args;
4344 int from_tty;
4345 {
4346 error ("Use the \"run\" command to start a Unix child process.");
4347 }
4348
4349 /*
4350 * Function: target_can_run
4351 *
4352 * This tells GDB that this target vector can be invoked
4353 * for "run" or "attach".
4354 */
4355
4356 int procfs_suppress_run = 0; /* Non-zero if procfs should pretend not to
4357 be a runnable target. Used by targets
4358 that can sit atop procfs, such as solaris
4359 thread support. */
4360
4361
4362 static int
4363 procfs_can_run ()
4364 {
4365 /* This variable is controlled by modules that sit atop procfs that
4366 may layer their own process structure atop that provided here.
4367 sol-thread.c does this because of the Solaris two-level thread
4368 model. */
4369
4370 /* NOTE: possibly obsolete -- use the thread_stratum approach instead. */
4371
4372 return !procfs_suppress_run;
4373 }
4374
4375 /*
4376 * Function: target_stop
4377 *
4378 * Stop the child process asynchronously, as when the
4379 * gdb user types control-c or presses a "stop" button.
4380 *
4381 * Works by sending kill(SIGINT) to the child's process group.
4382 */
4383
4384 static void
4385 procfs_stop ()
4386 {
4387 extern pid_t inferior_process_group;
4388
4389 kill (-inferior_process_group, SIGINT);
4390 }
4391
4392 /*
4393 * Function: unconditionally_kill_inferior
4394 *
4395 * Make it die. Wait for it to die. Clean up after it.
4396 * Note: this should only be applied to the real process,
4397 * not to an LWP, because of the check for parent-process.
4398 * If we need this to work for an LWP, it needs some more logic.
4399 */
4400
4401 static void
4402 unconditionally_kill_inferior (pi)
4403 procinfo *pi;
4404 {
4405 int parent_pid;
4406
4407 parent_pid = proc_parent_pid (pi);
4408 #ifdef PROCFS_NEED_CLEAR_CURSIG_FOR_KILL
4409 /* FIXME: use access functions */
4410 /* Alpha OSF/1-3.x procfs needs a clear of the current signal
4411 before the PIOCKILL, otherwise it might generate a corrupted core
4412 file for the inferior. */
4413 if (ioctl (pi->ctl_fd, PIOCSSIG, NULL) < 0)
4414 {
4415 printf_filtered ("unconditionally_kill: SSIG failed!\n");
4416 }
4417 #endif
4418 #ifdef PROCFS_NEED_PIOCSSIG_FOR_KILL
4419 /* Alpha OSF/1-2.x procfs needs a PIOCSSIG call with a SIGKILL signal
4420 to kill the inferior, otherwise it might remain stopped with a
4421 pending SIGKILL.
4422 We do not check the result of the PIOCSSIG, the inferior might have
4423 died already. */
4424 {
4425 struct siginfo newsiginfo;
4426
4427 memset ((char *) &newsiginfo, 0, sizeof (newsiginfo));
4428 newsiginfo.si_signo = SIGKILL;
4429 newsiginfo.si_code = 0;
4430 newsiginfo.si_errno = 0;
4431 newsiginfo.si_pid = getpid ();
4432 newsiginfo.si_uid = getuid ();
4433 /* FIXME: use proc_set_current_signal */
4434 ioctl (pi->ctl_fd, PIOCSSIG, &newsiginfo);
4435 }
4436 #else /* PROCFS_NEED_PIOCSSIG_FOR_KILL */
4437 if (!proc_kill (pi, SIGKILL))
4438 proc_error (pi, "unconditionally_kill, proc_kill", __LINE__);
4439 #endif /* PROCFS_NEED_PIOCSSIG_FOR_KILL */
4440 destroy_procinfo (pi);
4441
4442 /* If pi is GDB's child, wait for it to die. */
4443 if (parent_pid == getpid ())
4444 /* FIXME: should we use waitpid to make sure we get the right event?
4445 Should we check the returned event? */
4446 {
4447 #if 0
4448 int status, ret;
4449
4450 ret = waitpid (pi->pid, &status, 0);
4451 #else
4452 wait (NULL);
4453 #endif
4454 }
4455 }
4456
4457 /*
4458 * Function: target_kill_inferior
4459 *
4460 * We're done debugging it, and we want it to go away.
4461 * Then we want GDB to forget all about it.
4462 */
4463
4464 static void
4465 procfs_kill_inferior ()
4466 {
4467 if (inferior_pid != 0) /* ? */
4468 {
4469 /* Find procinfo for main process */
4470 procinfo *pi = find_procinfo (PIDGET (inferior_pid), 0);
4471
4472 if (pi)
4473 unconditionally_kill_inferior (pi);
4474 target_mourn_inferior ();
4475 }
4476 }
4477
4478 /*
4479 * Function: target_mourn_inferior
4480 *
4481 * Forget we ever debugged this thing!
4482 */
4483
4484 static void
4485 procfs_mourn_inferior ()
4486 {
4487 procinfo *pi;
4488
4489 if (inferior_pid != 0)
4490 {
4491 /* Find procinfo for main process */
4492 pi = find_procinfo (PIDGET (inferior_pid), 0);
4493 if (pi)
4494 destroy_procinfo (pi);
4495 }
4496 unpush_target (&procfs_ops);
4497 generic_mourn_inferior ();
4498 }
4499
4500 /*
4501 * Function: init_inferior
4502 *
4503 * When GDB forks to create a runnable inferior process,
4504 * this function is called on the parent side of the fork.
4505 * It's job is to do whatever is necessary to make the child
4506 * ready to be debugged, and then wait for the child to synchronize.
4507 */
4508
4509 static void
4510 procfs_init_inferior (pid)
4511 int pid;
4512 {
4513 procinfo *pi;
4514 sigset_t signals;
4515 int fail;
4516
4517 /* This routine called on the parent side (GDB side)
4518 after GDB forks the inferior. */
4519
4520 push_target (&procfs_ops);
4521
4522 if ((pi = create_procinfo (pid, 0)) == NULL)
4523 perror ("procfs: out of memory in 'init_inferior'");
4524
4525 if (!open_procinfo_files (pi, FD_CTL))
4526 proc_error (pi, "init_inferior, open_proc_files", __LINE__);
4527
4528 /*
4529 xmalloc // done
4530 open_procinfo_files // done
4531 link list // done
4532 prfillset (trace)
4533 procfs_notice_signals
4534 prfillset (fault)
4535 prdelset (FLTPAGE)
4536 PIOCWSTOP
4537 PIOCSFAULT
4538 */
4539
4540 /* If not stopped yet, wait for it to stop. */
4541 if (!(proc_flags (pi) & PR_STOPPED) &&
4542 !(proc_wait_for_stop (pi)))
4543 dead_procinfo (pi, "init_inferior: wait_for_stop failed", KILL);
4544
4545 /* Save some of the /proc state to be restored if we detach. */
4546 /* FIXME: Why? In case another debugger was debugging it?
4547 We're it's parent, for Ghu's sake! */
4548 if (!proc_get_traced_signals (pi, &pi->saved_sigset))
4549 proc_error (pi, "init_inferior, get_traced_signals", __LINE__);
4550 if (!proc_get_held_signals (pi, &pi->saved_sighold))
4551 proc_error (pi, "init_inferior, get_held_signals", __LINE__);
4552 if (!proc_get_traced_faults (pi, &pi->saved_fltset))
4553 proc_error (pi, "init_inferior, get_traced_faults", __LINE__);
4554 if (!proc_get_traced_sysentry (pi, &pi->saved_entryset))
4555 proc_error (pi, "init_inferior, get_traced_sysentry", __LINE__);
4556 if (!proc_get_traced_sysexit (pi, &pi->saved_exitset))
4557 proc_error (pi, "init_inferior, get_traced_sysexit", __LINE__);
4558
4559 /* Register to trace selected signals in the child. */
4560 prfillset (&signals);
4561 if (!register_gdb_signals (pi, &signals))
4562 proc_error (pi, "init_inferior, register_signals", __LINE__);
4563
4564 if ((fail = procfs_debug_inferior (pi)) != 0)
4565 proc_error (pi, "init_inferior (procfs_debug_inferior)", fail);
4566
4567 /* FIXME: logically, we should really be turning OFF run-on-last-close,
4568 and possibly even turning ON kill-on-last-close at this point. But
4569 I can't make that change without careful testing which I don't have
4570 time to do right now... */
4571 /* Turn on run-on-last-close flag so that the child
4572 will die if GDB goes away for some reason. */
4573 if (!proc_set_run_on_last_close (pi))
4574 proc_error (pi, "init_inferior, set_RLC", __LINE__);
4575
4576 /* The 'process ID' we return to GDB is composed of
4577 the actual process ID plus the lwp ID. */
4578 inferior_pid = MERGEPID (pi->pid, proc_get_current_thread (pi));
4579
4580 #ifdef START_INFERIOR_TRAPS_EXPECTED
4581 startup_inferior (START_INFERIOR_TRAPS_EXPECTED);
4582 #else
4583 /* One trap to exec the shell, one to exec the program being debugged. */
4584 startup_inferior (2);
4585 #endif /* START_INFERIOR_TRAPS_EXPECTED */
4586 }
4587
4588 /*
4589 * Function: set_exec_trap
4590 *
4591 * When GDB forks to create a new process, this function is called
4592 * on the child side of the fork before GDB exec's the user program.
4593 * Its job is to make the child minimally debuggable, so that the
4594 * parent GDB process can connect to the child and take over.
4595 * This function should do only the minimum to make that possible,
4596 * and to synchronize with the parent process. The parent process
4597 * should take care of the details.
4598 */
4599
4600 static void
4601 procfs_set_exec_trap ()
4602 {
4603 /* This routine called on the child side (inferior side)
4604 after GDB forks the inferior. It must use only local variables,
4605 because it may be sharing data space with its parent. */
4606
4607 procinfo *pi;
4608 sysset_t exitset;
4609
4610 if ((pi = create_procinfo (getpid (), 0)) == NULL)
4611 perror_with_name ("procfs: create_procinfo failed in child.");
4612
4613 if (open_procinfo_files (pi, FD_CTL) == 0)
4614 {
4615 proc_warn (pi, "set_exec_trap, open_proc_files", __LINE__);
4616 gdb_flush (gdb_stderr);
4617 /* no need to call "dead_procinfo", because we're going to exit. */
4618 _exit (127);
4619 }
4620
4621 #ifdef PRFS_STOPEXEC /* defined on OSF */
4622 /* OSF method for tracing exec syscalls. Quoting:
4623 Under Alpha OSF/1 we have to use a PIOCSSPCACT ioctl to trace
4624 exits from exec system calls because of the user level loader. */
4625 /* FIXME: make nice and maybe move into an access function. */
4626 {
4627 int prfs_flags;
4628
4629 if (ioctl (pi->ctl_fd, PIOCGSPCACT, &prfs_flags) < 0)
4630 {
4631 proc_warn (pi, "set_exec_trap (PIOCGSPCACT)", __LINE__);
4632 gdb_flush (gdb_stderr);
4633 _exit (127);
4634 }
4635 prfs_flags |= PRFS_STOPEXEC;
4636
4637 if (ioctl (pi->ctl_fd, PIOCSSPCACT, &prfs_flags) < 0)
4638 {
4639 proc_warn (pi, "set_exec_trap (PIOCSSPCACT)", __LINE__);
4640 gdb_flush (gdb_stderr);
4641 _exit (127);
4642 }
4643 }
4644 #else /* not PRFS_STOPEXEC */
4645 /* Everyone else's (except OSF) method for tracing exec syscalls */
4646 /* GW: Rationale...
4647 Not all systems with /proc have all the exec* syscalls with the same
4648 names. On the SGI, for example, there is no SYS_exec, but there
4649 *is* a SYS_execv. So, we try to account for that. */
4650
4651 premptyset (&exitset);
4652 #ifdef SYS_exec
4653 praddset (&exitset, SYS_exec);
4654 #endif
4655 #ifdef SYS_execve
4656 praddset (&exitset, SYS_execve);
4657 #endif
4658 #ifdef SYS_execv
4659 praddset (&exitset, SYS_execv);
4660 #endif
4661
4662 if (!proc_set_traced_sysexit (pi, &exitset))
4663 {
4664 proc_warn (pi, "set_exec_trap, set_traced_sysexit", __LINE__);
4665 gdb_flush (gdb_stderr);
4666 _exit (127);
4667 }
4668 #endif /* PRFS_STOPEXEC */
4669
4670 /* FIXME: should this be done in the parent instead? */
4671 /* Turn off inherit on fork flag so that all grand-children
4672 of gdb start with tracing flags cleared. */
4673 if (!proc_unset_inherit_on_fork (pi))
4674 proc_warn (pi, "set_exec_trap, unset_inherit", __LINE__);
4675
4676 /* Turn off run on last close flag, so that the child process
4677 cannot run away just because we close our handle on it.
4678 We want it to wait for the parent to attach. */
4679 if (!proc_unset_run_on_last_close (pi))
4680 proc_warn (pi, "set_exec_trap, unset_RLC", __LINE__);
4681
4682 /* FIXME: No need to destroy the procinfo --
4683 we have our own address space, and we're about to do an exec! */
4684 /*destroy_procinfo (pi);*/
4685 }
4686
4687 /*
4688 * Function: create_inferior
4689 *
4690 * This function is called BEFORE gdb forks the inferior process.
4691 * Its only real responsibility is to set things up for the fork,
4692 * and tell GDB which two functions to call after the fork (one
4693 * for the parent, and one for the child).
4694 *
4695 * This function does a complicated search for a unix shell program,
4696 * which it then uses to parse arguments and environment variables
4697 * to be sent to the child. I wonder whether this code could not
4698 * be abstracted out and shared with other unix targets such as
4699 * infptrace?
4700 */
4701
4702 static void
4703 procfs_create_inferior (exec_file, allargs, env)
4704 char *exec_file;
4705 char *allargs;
4706 char **env;
4707 {
4708 char *shell_file = getenv ("SHELL");
4709 char *tryname;
4710 if (shell_file != NULL && strchr (shell_file, '/') == NULL)
4711 {
4712
4713 /* We will be looking down the PATH to find shell_file. If we
4714 just do this the normal way (via execlp, which operates by
4715 attempting an exec for each element of the PATH until it
4716 finds one which succeeds), then there will be an exec for
4717 each failed attempt, each of which will cause a PR_SYSEXIT
4718 stop, and we won't know how to distinguish the PR_SYSEXIT's
4719 for these failed execs with the ones for successful execs
4720 (whether the exec has succeeded is stored at that time in the
4721 carry bit or some such architecture-specific and
4722 non-ABI-specified place).
4723
4724 So I can't think of anything better than to search the PATH
4725 now. This has several disadvantages: (1) There is a race
4726 condition; if we find a file now and it is deleted before we
4727 exec it, we lose, even if the deletion leaves a valid file
4728 further down in the PATH, (2) there is no way to know exactly
4729 what an executable (in the sense of "capable of being
4730 exec'd") file is. Using access() loses because it may lose
4731 if the caller is the superuser; failing to use it loses if
4732 there are ACLs or some such. */
4733
4734 char *p;
4735 char *p1;
4736 /* FIXME-maybe: might want "set path" command so user can change what
4737 path is used from within GDB. */
4738 char *path = getenv ("PATH");
4739 int len;
4740 struct stat statbuf;
4741
4742 if (path == NULL)
4743 path = "/bin:/usr/bin";
4744
4745 tryname = alloca (strlen (path) + strlen (shell_file) + 2);
4746 for (p = path; p != NULL; p = p1 ? p1 + 1: NULL)
4747 {
4748 p1 = strchr (p, ':');
4749 if (p1 != NULL)
4750 len = p1 - p;
4751 else
4752 len = strlen (p);
4753 strncpy (tryname, p, len);
4754 tryname[len] = '\0';
4755 strcat (tryname, "/");
4756 strcat (tryname, shell_file);
4757 if (access (tryname, X_OK) < 0)
4758 continue;
4759 if (stat (tryname, &statbuf) < 0)
4760 continue;
4761 if (!S_ISREG (statbuf.st_mode))
4762 /* We certainly need to reject directories. I'm not quite
4763 as sure about FIFOs, sockets, etc., but I kind of doubt
4764 that people want to exec() these things. */
4765 continue;
4766 break;
4767 }
4768 if (p == NULL)
4769 /* Not found. This must be an error rather than merely passing
4770 the file to execlp(), because execlp() would try all the
4771 exec()s, causing GDB to get confused. */
4772 error ("procfs:%d -- Can't find shell %s in PATH",
4773 __LINE__, shell_file);
4774
4775 shell_file = tryname;
4776 }
4777
4778 fork_inferior (exec_file, allargs, env, procfs_set_exec_trap,
4779 procfs_init_inferior, NULL, shell_file);
4780
4781 /* We are at the first instruction we care about. */
4782 /* Pedal to the metal... */
4783
4784 proceed ((CORE_ADDR) -1, TARGET_SIGNAL_0, 0);
4785 }
4786
4787 /*
4788 * Function: notice_thread
4789 *
4790 * Callback for find_new_threads.
4791 * Calls "add_thread".
4792 */
4793
4794 static int
4795 procfs_notice_thread (pi, thread, ptr)
4796 procinfo *pi;
4797 procinfo *thread;
4798 void *ptr;
4799 {
4800 int gdb_threadid = MERGEPID (pi->pid, thread->tid);
4801
4802 if (!in_thread_list (gdb_threadid))
4803 add_thread (gdb_threadid);
4804
4805 return 0;
4806 }
4807
4808 /*
4809 * Function: target_find_new_threads
4810 *
4811 * Query all the threads that the target knows about,
4812 * and give them back to GDB to add to its list.
4813 */
4814
4815 void
4816 procfs_find_new_threads ()
4817 {
4818 procinfo *pi;
4819
4820 /* Find procinfo for main process */
4821 pi = find_procinfo_or_die (PIDGET (inferior_pid), 0);
4822 proc_update_threads (pi);
4823 proc_iterate_over_threads (pi, procfs_notice_thread, NULL);
4824 }
4825
4826 /*
4827 * Function: target_thread_alive
4828 *
4829 * Return true if the thread is still 'alive'.
4830 *
4831 * This guy doesn't really seem to be doing his job.
4832 * Got to investigate how to tell when a thread is really gone.
4833 */
4834
4835 static int
4836 procfs_thread_alive (pid)
4837 int pid;
4838 {
4839 int proc, thread;
4840 procinfo *pi;
4841
4842 proc = PIDGET (pid);
4843 thread = TIDGET (pid);
4844 /* If I don't know it, it ain't alive! */
4845 if ((pi = find_procinfo (proc, thread)) == NULL)
4846 return 0;
4847
4848 /* If I can't get its status, it ain't alive!
4849 What's more, I need to forget about it! */
4850 if (!proc_get_status (pi))
4851 {
4852 destroy_procinfo (pi);
4853 return 0;
4854 }
4855 /* I couldn't have got its status if it weren't alive, so it's alive. */
4856 return 1;
4857 }
4858
4859 /*
4860 * Function: target_pid_to_str
4861 *
4862 * Return a string to be used to identify the thread in
4863 * the "info threads" display.
4864 */
4865
4866 char *
4867 procfs_pid_to_str (pid)
4868 int pid;
4869 {
4870 static char buf[80];
4871 int proc, thread;
4872 procinfo *pi;
4873
4874 proc = PIDGET (pid);
4875 thread = TIDGET (pid);
4876 pi = find_procinfo (proc, thread);
4877
4878 if (thread == 0)
4879 sprintf (buf, "Process %d", proc);
4880 else
4881 sprintf (buf, "LWP %d", thread);
4882 return &buf[0];
4883 }
4884
4885 /*
4886 * Function: procfs_set_watchpoint
4887 * Insert a watchpoint
4888 */
4889
4890 int
4891 procfs_set_watchpoint (pid, addr, len, rwflag, after)
4892 int pid;
4893 CORE_ADDR addr;
4894 int len;
4895 int rwflag;
4896 int after;
4897 {
4898 #ifndef UNIXWARE
4899 int pflags = 0;
4900 procinfo *pi;
4901
4902 pi = find_procinfo_or_die (pid == -1 ?
4903 PIDGET (inferior_pid) : PIDGET (pid), 0);
4904
4905 /* Translate from GDB's flags to /proc's */
4906 if (len > 0) /* len == 0 means delete watchpoint */
4907 {
4908 switch (rwflag) { /* FIXME: need an enum! */
4909 case hw_write: /* default watchpoint (write) */
4910 pflags = WRITE_WATCHFLAG;
4911 break;
4912 case hw_read: /* read watchpoint */
4913 pflags = READ_WATCHFLAG;
4914 break;
4915 case hw_access: /* access watchpoint */
4916 pflags = READ_WATCHFLAG | WRITE_WATCHFLAG;
4917 break;
4918 case hw_execute: /* execution HW breakpoint */
4919 pflags = EXEC_WATCHFLAG;
4920 break;
4921 default: /* Something weird. Return error. */
4922 return -1;
4923 }
4924 if (after) /* Stop after r/w access is completed. */
4925 pflags |= AFTER_WATCHFLAG;
4926 }
4927
4928 if (!proc_set_watchpoint (pi, addr, len, pflags))
4929 {
4930 if (errno == E2BIG) /* Typical error for no resources */
4931 return -1; /* fail */
4932 /* GDB may try to remove the same watchpoint twice.
4933 If a remove request returns no match, don't error. */
4934 if (errno == ESRCH && len == 0)
4935 return 0; /* ignore */
4936 proc_error (pi, "set_watchpoint", __LINE__);
4937 }
4938 #endif
4939 return 0;
4940 }
4941
4942 /*
4943 * Function: stopped_by_watchpoint
4944 *
4945 * Returns non-zero if process is stopped on a hardware watchpoint fault,
4946 * else returns zero.
4947 */
4948
4949 int
4950 procfs_stopped_by_watchpoint (pid)
4951 int pid;
4952 {
4953 procinfo *pi;
4954
4955 pi = find_procinfo_or_die (pid == -1 ?
4956 PIDGET (inferior_pid) : PIDGET (pid), 0);
4957 if (proc_flags (pi) & (PR_STOPPED | PR_ISTOP))
4958 {
4959 if (proc_why (pi) == PR_FAULTED)
4960 {
4961 #ifdef FLTWATCH
4962 if (proc_what (pi) == FLTWATCH)
4963 return 1;
4964 #endif
4965 #ifdef FLTKWATCH
4966 if (proc_what (pi) == FLTKWATCH)
4967 return 1;
4968 #endif
4969 }
4970 }
4971 return 0;
4972 }
4973
4974 #ifdef TM_I386SOL2_H
4975 /*
4976 * Function: procfs_find_LDT_entry
4977 *
4978 * Input:
4979 * int pid; // The GDB-style pid-plus-LWP.
4980 *
4981 * Return:
4982 * pointer to the corresponding LDT entry.
4983 */
4984
4985 struct ssd *
4986 procfs_find_LDT_entry (pid)
4987 int pid;
4988 {
4989 gdb_gregset_t *gregs;
4990 int key;
4991 procinfo *pi;
4992
4993 /* Find procinfo for the lwp. */
4994 if ((pi = find_procinfo (PIDGET (pid), TIDGET (pid))) == NULL)
4995 {
4996 warning ("procfs_find_LDT_entry: could not find procinfi for %d.",
4997 pid);
4998 return NULL;
4999 }
5000 /* get its general registers. */
5001 if ((gregs = proc_get_gregs (pi)) == NULL)
5002 {
5003 warning ("procfs_find_LDT_entry: could not read gregs for %d.",
5004 pid);
5005 return NULL;
5006 }
5007 /* Now extract the GS register's lower 16 bits. */
5008 key = (*gregs)[GS] & 0xffff;
5009
5010 /* Find the matching entry and return it. */
5011 return proc_get_LDT_entry (pi, key);
5012 }
5013 #endif /* TM_I386SOL2_H */
5014
5015
5016
5017 static void
5018 info_proc_cmd (args, from_tty)
5019 char *args;
5020 int from_tty;
5021 {
5022 struct cleanup *old_chain;
5023 procinfo *process = NULL;
5024 procinfo *thread = NULL;
5025 char **argv = NULL;
5026 char *tmp = NULL;
5027 int pid = 0;
5028 int tid = 0;
5029
5030 old_chain = make_cleanup (null_cleanup, 0);
5031 if (args)
5032 {
5033 if ((argv = buildargv (args)) == NULL)
5034 nomem (0);
5035 else
5036 make_cleanup ((make_cleanup_func) freeargv, argv);
5037 }
5038 while (argv != NULL && *argv != NULL)
5039 {
5040 if (isdigit (argv[0][0]))
5041 {
5042 pid = strtoul (argv[0], &tmp, 10);
5043 if (*tmp == '/')
5044 tid = strtoul (++tmp, NULL, 10);
5045 }
5046 else if (argv[0][0] == '/')
5047 {
5048 tid = strtoul (argv[0] + 1, NULL, 10);
5049 }
5050 else
5051 {
5052 /* [...] */
5053 }
5054 argv++;
5055 }
5056 if (pid == 0)
5057 pid = PIDGET (inferior_pid);
5058 if (pid == 0)
5059 error ("No current process: you must name one.");
5060 else
5061 {
5062 /* Have pid, will travel.
5063 First see if it's a process we're already debugging. */
5064 process = find_procinfo (pid, 0);
5065 if (process == NULL)
5066 {
5067 /* No. So open a procinfo for it, but
5068 remember to close it again when finished. */
5069 process = create_procinfo (pid, 0);
5070 make_cleanup ((make_cleanup_func) destroy_procinfo, process);
5071 if (!open_procinfo_files (process, FD_CTL))
5072 proc_error (process, "info proc, open_procinfo_files", __LINE__);
5073 }
5074 }
5075 if (tid != 0)
5076 thread = create_procinfo (pid, tid);
5077
5078 if (process)
5079 {
5080 printf_filtered ("process %d flags:\n", process->pid);
5081 proc_prettyprint_flags (proc_flags (process), 1);
5082 if (proc_flags (process) & (PR_STOPPED | PR_ISTOP))
5083 proc_prettyprint_why (proc_why (process), proc_what (process), 1);
5084 if (proc_get_nthreads (process) > 1)
5085 printf_filtered ("Process has %d threads.\n",
5086 proc_get_nthreads (process));
5087 }
5088 if (thread)
5089 {
5090 printf_filtered ("thread %d flags:\n", thread->tid);
5091 proc_prettyprint_flags (proc_flags (thread), 1);
5092 if (proc_flags (thread) & (PR_STOPPED | PR_ISTOP))
5093 proc_prettyprint_why (proc_why (thread), proc_what (thread), 1);
5094 }
5095
5096 do_cleanups (old_chain);
5097 }
5098
5099 static void
5100 proc_trace_syscalls (args, from_tty, entry_or_exit, mode)
5101 char *args;
5102 int from_tty;
5103 int entry_or_exit;
5104 int mode;
5105 {
5106 procinfo *pi;
5107 sysset_t *sysset;
5108 int syscallnum = 0;
5109
5110 if (inferior_pid <= 0)
5111 error ("you must be debugging a process to use this command.");
5112
5113 if (args == NULL || args[0] == 0)
5114 error_no_arg ("system call to trace");
5115
5116 pi = find_procinfo_or_die (PIDGET (inferior_pid), 0);
5117 if (isdigit (args[0]))
5118 {
5119 syscallnum = atoi (args);
5120 if (entry_or_exit == PR_SYSENTRY)
5121 sysset = proc_get_traced_sysentry (pi, NULL);
5122 else
5123 sysset = proc_get_traced_sysexit (pi, NULL);
5124
5125 if (sysset == NULL)
5126 proc_error (pi, "proc-trace, get_traced_sysset", __LINE__);
5127
5128 if (mode == FLAG_SET)
5129 praddset (sysset, syscallnum);
5130 else
5131 prdelset (sysset, syscallnum);
5132
5133 if (entry_or_exit == PR_SYSENTRY)
5134 {
5135 if (!proc_set_traced_sysentry (pi, sysset))
5136 proc_error (pi, "proc-trace, set_traced_sysentry", __LINE__);
5137 }
5138 else
5139 {
5140 if (!proc_set_traced_sysexit (pi, sysset))
5141 proc_error (pi, "proc-trace, set_traced_sysexit", __LINE__);
5142 }
5143 }
5144 }
5145
5146 static void
5147 proc_trace_sysentry_cmd (args, from_tty)
5148 char *args;
5149 int from_tty;
5150 {
5151 proc_trace_syscalls (args, from_tty, PR_SYSENTRY, FLAG_SET);
5152 }
5153
5154 static void
5155 proc_trace_sysexit_cmd (args, from_tty)
5156 char *args;
5157 int from_tty;
5158 {
5159 proc_trace_syscalls (args, from_tty, PR_SYSEXIT, FLAG_SET);
5160 }
5161
5162 static void
5163 proc_untrace_sysentry_cmd (args, from_tty)
5164 char *args;
5165 int from_tty;
5166 {
5167 proc_trace_syscalls (args, from_tty, PR_SYSENTRY, FLAG_RESET);
5168 }
5169
5170 static void
5171 proc_untrace_sysexit_cmd (args, from_tty)
5172 char *args;
5173 int from_tty;
5174 {
5175 proc_trace_syscalls (args, from_tty, PR_SYSEXIT, FLAG_RESET);
5176 }
5177
5178
5179 void
5180 _initialize_procfs ()
5181 {
5182 init_procfs_ops ();
5183 add_target (&procfs_ops);
5184 add_info ("proc", info_proc_cmd,
5185 "Show /proc process information about any running process.\
5186 Default is the process being debugged.");
5187 add_com ("proc-trace-entry", no_class, proc_trace_sysentry_cmd,
5188 "Give a trace of entries into the syscall.");
5189 add_com ("proc-trace-exit", no_class, proc_trace_sysexit_cmd,
5190 "Give a trace of exits from the syscall.");
5191 add_com ("proc-untrace-entry", no_class, proc_untrace_sysentry_cmd,
5192 "Cancel a trace of entries into the syscall.");
5193 add_com ("proc-untrace-exit", no_class, proc_untrace_sysexit_cmd,
5194 "Cancel a trace of exits from the syscall.");
5195 }
5196
5197 /* =================== END, GDB "MODULE" =================== */
5198
5199
5200
5201 /* miscelaneous stubs: */
5202 /* The following satisfy a few random symbols mostly created by */
5203 /* the solaris threads implementation, which I will chase down */
5204 /* later. */
5205
5206 /*
5207 * Return a pid for which we guarantee
5208 * we will be able to find a 'live' procinfo.
5209 */
5210
5211 int
5212 procfs_first_available ()
5213 {
5214 if (procinfo_list)
5215 return procinfo_list->pid;
5216 else
5217 return -1;
5218 }