Various procfs.c cleanups
[deliverable/binutils-gdb.git] / gdb / procfs.c
1 /* Machine independent support for Solaris /proc (process file system) for GDB.
2
3 Copyright (C) 1999-2020 Free Software Foundation, Inc.
4
5 Written by Michael Snyder at Cygnus Solutions.
6 Based on work by Fred Fish, Stu Grossman, Geoff Noer, and others.
7
8 This file is part of GDB.
9
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 3 of the License, or
13 (at your option) any later version.
14
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
19
20 You should have received a copy of the GNU General Public License
21 along with this program. If not, see <http://www.gnu.org/licenses/>. */
22
23 #include "defs.h"
24 #include "inferior.h"
25 #include "infrun.h"
26 #include "target.h"
27 #include "gdbcore.h"
28 #include "elf-bfd.h" /* for elfcore_write_* */
29 #include "gdbcmd.h"
30 #include "gdbthread.h"
31 #include "regcache.h"
32 #include "inf-child.h"
33 #include "nat/fork-inferior.h"
34 #include "gdbarch.h"
35
36 #define _STRUCTURED_PROC 1 /* Should be done by configure script. */
37
38 #include <sys/procfs.h>
39 #include <sys/fault.h>
40 #include <sys/syscall.h>
41 #include "gdbsupport/gdb_wait.h"
42 #include <signal.h>
43 #include <ctype.h>
44 #include "gdb_bfd.h"
45 #include "inflow.h"
46 #include "auxv.h"
47 #include "procfs.h"
48 #include "observable.h"
49 #include "gdbsupport/scoped_fd.h"
50 #include "gdbsupport/pathstuff.h"
51
52 /* This module provides the interface between GDB and the
53 /proc file system, which is used on many versions of Unix
54 as a means for debuggers to control other processes.
55
56 /proc works by imitating a file system: you open a simulated file
57 that represents the process you wish to interact with, and perform
58 operations on that "file" in order to examine or change the state
59 of the other process.
60
61 The most important thing to know about /proc and this module is
62 that there are two very different interfaces to /proc:
63
64 One that uses the ioctl system call, and another that uses read
65 and write system calls.
66
67 This module supports only the Solaris version of the read/write
68 interface. */
69
70 #include <sys/types.h>
71 #include <dirent.h> /* opendir/readdir, for listing the LWP's */
72
73 #include <fcntl.h> /* for O_RDONLY */
74 #include <unistd.h> /* for "X_OK" */
75 #include <sys/stat.h> /* for struct stat */
76
77 /* Note: procfs-utils.h must be included after the above system header
78 files, because it redefines various system calls using macros.
79 This may be incompatible with the prototype declarations. */
80
81 #include "proc-utils.h"
82
83 /* Prototypes for supply_gregset etc. */
84 #include "gregset.h"
85
86 /* =================== TARGET_OPS "MODULE" =================== */
87
88 /* This module defines the GDB target vector and its methods. */
89
90
91 static enum target_xfer_status procfs_xfer_memory (gdb_byte *,
92 const gdb_byte *,
93 ULONGEST, ULONGEST,
94 ULONGEST *);
95
96 class procfs_target final : public inf_child_target
97 {
98 public:
99 void create_inferior (const char *, const std::string &,
100 char **, int) override;
101
102 void kill () override;
103
104 void mourn_inferior () override;
105
106 void attach (const char *, int) override;
107 void detach (inferior *inf, int) override;
108
109 void resume (ptid_t, int, enum gdb_signal) override;
110 ptid_t wait (ptid_t, struct target_waitstatus *, int) override;
111
112 void fetch_registers (struct regcache *, int) override;
113 void store_registers (struct regcache *, int) override;
114
115 enum target_xfer_status xfer_partial (enum target_object object,
116 const char *annex,
117 gdb_byte *readbuf,
118 const gdb_byte *writebuf,
119 ULONGEST offset, ULONGEST len,
120 ULONGEST *xfered_len) override;
121
122 void pass_signals (gdb::array_view<const unsigned char>) override;
123
124 void files_info () override;
125
126 void update_thread_list () override;
127
128 bool thread_alive (ptid_t ptid) override;
129
130 std::string pid_to_str (ptid_t) override;
131
132 char *pid_to_exec_file (int pid) override;
133
134 thread_control_capabilities get_thread_control_capabilities () override
135 { return tc_schedlock; }
136
137 /* find_memory_regions support method for gcore */
138 int find_memory_regions (find_memory_region_ftype func, void *data)
139 override;
140
141 char *make_corefile_notes (bfd *, int *) override;
142
143 bool info_proc (const char *, enum info_proc_what) override;
144
145 #if PR_MODEL_NATIVE == PR_MODEL_LP64
146 int auxv_parse (gdb_byte **readptr,
147 gdb_byte *endptr, CORE_ADDR *typep, CORE_ADDR *valp)
148 override;
149 #endif
150
151 bool stopped_by_watchpoint () override;
152
153 int insert_watchpoint (CORE_ADDR, int, enum target_hw_bp_type,
154 struct expression *) override;
155
156 int remove_watchpoint (CORE_ADDR, int, enum target_hw_bp_type,
157 struct expression *) override;
158
159 int region_ok_for_hw_watchpoint (CORE_ADDR, int) override;
160
161 int can_use_hw_breakpoint (enum bptype, int, int) override;
162 bool stopped_data_address (CORE_ADDR *) override;
163
164 void procfs_init_inferior (int pid);
165 };
166
167 static procfs_target the_procfs_target;
168
169 #if PR_MODEL_NATIVE == PR_MODEL_LP64
170 /* When GDB is built as 64-bit application on Solaris, the auxv data
171 is presented in 64-bit format. We need to provide a custom parser
172 to handle that. */
173 int
174 procfs_target::auxv_parse (gdb_byte **readptr,
175 gdb_byte *endptr, CORE_ADDR *typep, CORE_ADDR *valp)
176 {
177 enum bfd_endian byte_order = gdbarch_byte_order (target_gdbarch ());
178 gdb_byte *ptr = *readptr;
179
180 if (endptr == ptr)
181 return 0;
182
183 if (endptr - ptr < 8 * 2)
184 return -1;
185
186 *typep = extract_unsigned_integer (ptr, 4, byte_order);
187 ptr += 8;
188 /* The size of data is always 64-bit. If the application is 32-bit,
189 it will be zero extended, as expected. */
190 *valp = extract_unsigned_integer (ptr, 8, byte_order);
191 ptr += 8;
192
193 *readptr = ptr;
194 return 1;
195 }
196 #endif
197
198 /* =================== END, TARGET_OPS "MODULE" =================== */
199
200 /* =================== STRUCT PROCINFO "MODULE" =================== */
201
202 /* FIXME: this comment will soon be out of date W.R.T. threads. */
203
204 /* The procinfo struct is a wrapper to hold all the state information
205 concerning a /proc process. There should be exactly one procinfo
206 for each process, and since GDB currently can debug only one
207 process at a time, that means there should be only one procinfo.
208 All of the LWP's of a process can be accessed indirectly thru the
209 single process procinfo.
210
211 However, against the day when GDB may debug more than one process,
212 this data structure is kept in a list (which for now will hold no
213 more than one member), and many functions will have a pointer to a
214 procinfo as an argument.
215
216 There will be a separate procinfo structure for use by the (not yet
217 implemented) "info proc" command, so that we can print useful
218 information about any random process without interfering with the
219 inferior's procinfo information. */
220
221 /* format strings for /proc paths */
222 #define CTL_PROC_NAME_FMT "/proc/%d/ctl"
223 #define AS_PROC_NAME_FMT "/proc/%d/as"
224 #define MAP_PROC_NAME_FMT "/proc/%d/map"
225 #define STATUS_PROC_NAME_FMT "/proc/%d/status"
226 #define MAX_PROC_NAME_SIZE sizeof("/proc/999999/lwp/0123456789/lwpstatus")
227
228 typedef struct procinfo {
229 struct procinfo *next;
230 int pid; /* Process ID */
231 int tid; /* Thread/LWP id */
232
233 /* process state */
234 int was_stopped;
235 int ignore_next_sigstop;
236
237 int ctl_fd; /* File descriptor for /proc control file */
238 int status_fd; /* File descriptor for /proc status file */
239 int as_fd; /* File descriptor for /proc as file */
240
241 char pathname[MAX_PROC_NAME_SIZE]; /* Pathname to /proc entry */
242
243 fltset_t saved_fltset; /* Saved traced hardware fault set */
244 sigset_t saved_sigset; /* Saved traced signal set */
245 sigset_t saved_sighold; /* Saved held signal set */
246 sysset_t *saved_exitset; /* Saved traced system call exit set */
247 sysset_t *saved_entryset; /* Saved traced system call entry set */
248
249 pstatus_t prstatus; /* Current process status info */
250
251 struct procinfo *thread_list;
252
253 int status_valid : 1;
254 int gregs_valid : 1;
255 int fpregs_valid : 1;
256 int threads_valid: 1;
257 } procinfo;
258
259 static char errmsg[128]; /* shared error msg buffer */
260
261 /* Function prototypes for procinfo module: */
262
263 static procinfo *find_procinfo_or_die (int pid, int tid);
264 static procinfo *find_procinfo (int pid, int tid);
265 static procinfo *create_procinfo (int pid, int tid);
266 static void destroy_procinfo (procinfo *p);
267 static void dead_procinfo (procinfo *p, const char *msg, int killp);
268 static int open_procinfo_files (procinfo *p, int which);
269 static void close_procinfo_files (procinfo *p);
270
271 static int iterate_over_mappings
272 (procinfo *pi, find_memory_region_ftype child_func, void *data,
273 int (*func) (struct prmap *map, find_memory_region_ftype child_func,
274 void *data));
275
276 /* The head of the procinfo list: */
277 static procinfo *procinfo_list;
278
279 /* Search the procinfo list. Return a pointer to procinfo, or NULL if
280 not found. */
281
282 static procinfo *
283 find_procinfo (int pid, int tid)
284 {
285 procinfo *pi;
286
287 for (pi = procinfo_list; pi; pi = pi->next)
288 if (pi->pid == pid)
289 break;
290
291 if (pi)
292 if (tid)
293 {
294 /* Don't check threads_valid. If we're updating the
295 thread_list, we want to find whatever threads are already
296 here. This means that in general it is the caller's
297 responsibility to check threads_valid and update before
298 calling find_procinfo, if the caller wants to find a new
299 thread. */
300
301 for (pi = pi->thread_list; pi; pi = pi->next)
302 if (pi->tid == tid)
303 break;
304 }
305
306 return pi;
307 }
308
309 /* Calls find_procinfo, but errors on failure. */
310
311 static procinfo *
312 find_procinfo_or_die (int pid, int tid)
313 {
314 procinfo *pi = find_procinfo (pid, tid);
315
316 if (pi == NULL)
317 {
318 if (tid)
319 error (_("procfs: couldn't find pid %d "
320 "(kernel thread %d) in procinfo list."),
321 pid, tid);
322 else
323 error (_("procfs: couldn't find pid %d in procinfo list."), pid);
324 }
325 return pi;
326 }
327
328 /* Wrapper for `open'. The appropriate open call is attempted; if
329 unsuccessful, it will be retried as many times as needed for the
330 EAGAIN and EINTR conditions.
331
332 For other conditions, retry the open a limited number of times. In
333 addition, a short sleep is imposed prior to retrying the open. The
334 reason for this sleep is to give the kernel a chance to catch up
335 and create the file in question in the event that GDB "wins" the
336 race to open a file before the kernel has created it. */
337
338 static int
339 open_with_retry (const char *pathname, int flags)
340 {
341 int retries_remaining, status;
342
343 retries_remaining = 2;
344
345 while (1)
346 {
347 status = open (pathname, flags);
348
349 if (status >= 0 || retries_remaining == 0)
350 break;
351 else if (errno != EINTR && errno != EAGAIN)
352 {
353 retries_remaining--;
354 sleep (1);
355 }
356 }
357
358 return status;
359 }
360
361 /* Open the file descriptor for the process or LWP. We only open the
362 control file descriptor; the others are opened lazily as needed.
363 Returns the file descriptor, or zero for failure. */
364
365 enum { FD_CTL, FD_STATUS, FD_AS };
366
367 static int
368 open_procinfo_files (procinfo *pi, int which)
369 {
370 char tmp[MAX_PROC_NAME_SIZE];
371 int fd;
372
373 /* This function is getting ALMOST long enough to break up into
374 several. Here is some rationale:
375
376 There are several file descriptors that may need to be open
377 for any given process or LWP. The ones we're interested in are:
378 - control (ctl) write-only change the state
379 - status (status) read-only query the state
380 - address space (as) read/write access memory
381 - map (map) read-only virtual addr map
382 Most of these are opened lazily as they are needed.
383 The pathnames for the 'files' for an LWP look slightly
384 different from those of a first-class process:
385 Pathnames for a process (<proc-id>):
386 /proc/<proc-id>/ctl
387 /proc/<proc-id>/status
388 /proc/<proc-id>/as
389 /proc/<proc-id>/map
390 Pathnames for an LWP (lwp-id):
391 /proc/<proc-id>/lwp/<lwp-id>/lwpctl
392 /proc/<proc-id>/lwp/<lwp-id>/lwpstatus
393 An LWP has no map or address space file descriptor, since
394 the memory map and address space are shared by all LWPs. */
395
396 /* In this case, there are several different file descriptors that
397 we might be asked to open. The control file descriptor will be
398 opened early, but the others will be opened lazily as they are
399 needed. */
400
401 strcpy (tmp, pi->pathname);
402 switch (which) { /* Which file descriptor to open? */
403 case FD_CTL:
404 if (pi->tid)
405 strcat (tmp, "/lwpctl");
406 else
407 strcat (tmp, "/ctl");
408 fd = open_with_retry (tmp, O_WRONLY);
409 if (fd < 0)
410 return 0; /* fail */
411 pi->ctl_fd = fd;
412 break;
413 case FD_AS:
414 if (pi->tid)
415 return 0; /* There is no 'as' file descriptor for an lwp. */
416 strcat (tmp, "/as");
417 fd = open_with_retry (tmp, O_RDWR);
418 if (fd < 0)
419 return 0; /* fail */
420 pi->as_fd = fd;
421 break;
422 case FD_STATUS:
423 if (pi->tid)
424 strcat (tmp, "/lwpstatus");
425 else
426 strcat (tmp, "/status");
427 fd = open_with_retry (tmp, O_RDONLY);
428 if (fd < 0)
429 return 0; /* fail */
430 pi->status_fd = fd;
431 break;
432 default:
433 return 0; /* unknown file descriptor */
434 }
435
436 return 1; /* success */
437 }
438
439 /* Allocate a data structure and link it into the procinfo list.
440 First tries to find a pre-existing one (FIXME: why?). Returns the
441 pointer to new procinfo struct. */
442
443 static procinfo *
444 create_procinfo (int pid, int tid)
445 {
446 procinfo *pi, *parent = NULL;
447
448 pi = find_procinfo (pid, tid);
449 if (pi != NULL)
450 return pi; /* Already exists, nothing to do. */
451
452 /* Find parent before doing malloc, to save having to cleanup. */
453 if (tid != 0)
454 parent = find_procinfo_or_die (pid, 0); /* FIXME: should I
455 create it if it
456 doesn't exist yet? */
457
458 pi = XNEW (procinfo);
459 memset (pi, 0, sizeof (procinfo));
460 pi->pid = pid;
461 pi->tid = tid;
462
463 pi->saved_entryset = XNEW (sysset_t);
464 pi->saved_exitset = XNEW (sysset_t);
465
466 /* Chain into list. */
467 if (tid == 0)
468 {
469 xsnprintf (pi->pathname, sizeof (pi->pathname), "/proc/%d", pid);
470 pi->next = procinfo_list;
471 procinfo_list = pi;
472 }
473 else
474 {
475 xsnprintf (pi->pathname, sizeof (pi->pathname), "/proc/%d/lwp/%d",
476 pid, tid);
477 pi->next = parent->thread_list;
478 parent->thread_list = pi;
479 }
480 return pi;
481 }
482
483 /* Close all file descriptors associated with the procinfo. */
484
485 static void
486 close_procinfo_files (procinfo *pi)
487 {
488 if (pi->ctl_fd > 0)
489 close (pi->ctl_fd);
490 if (pi->as_fd > 0)
491 close (pi->as_fd);
492 if (pi->status_fd > 0)
493 close (pi->status_fd);
494 pi->ctl_fd = pi->as_fd = pi->status_fd = 0;
495 }
496
497 /* Destructor function. Close, unlink and deallocate the object. */
498
499 static void
500 destroy_one_procinfo (procinfo **list, procinfo *pi)
501 {
502 procinfo *ptr;
503
504 /* Step one: unlink the procinfo from its list. */
505 if (pi == *list)
506 *list = pi->next;
507 else
508 for (ptr = *list; ptr; ptr = ptr->next)
509 if (ptr->next == pi)
510 {
511 ptr->next = pi->next;
512 break;
513 }
514
515 /* Step two: close any open file descriptors. */
516 close_procinfo_files (pi);
517
518 /* Step three: free the memory. */
519 xfree (pi->saved_entryset);
520 xfree (pi->saved_exitset);
521 xfree (pi);
522 }
523
524 static void
525 destroy_procinfo (procinfo *pi)
526 {
527 procinfo *tmp;
528
529 if (pi->tid != 0) /* Destroy a thread procinfo. */
530 {
531 tmp = find_procinfo (pi->pid, 0); /* Find the parent process. */
532 destroy_one_procinfo (&tmp->thread_list, pi);
533 }
534 else /* Destroy a process procinfo and all its threads. */
535 {
536 /* First destroy the children, if any; */
537 while (pi->thread_list != NULL)
538 destroy_one_procinfo (&pi->thread_list, pi->thread_list);
539 /* Then destroy the parent. Genocide!!! */
540 destroy_one_procinfo (&procinfo_list, pi);
541 }
542 }
543
544 /* A deleter that calls destroy_procinfo. */
545 struct procinfo_deleter
546 {
547 void operator() (procinfo *pi) const
548 {
549 destroy_procinfo (pi);
550 }
551 };
552
553 typedef std::unique_ptr<procinfo, procinfo_deleter> procinfo_up;
554
555 enum { NOKILL, KILL };
556
557 /* To be called on a non_recoverable error for a procinfo. Prints
558 error messages, optionally sends a SIGKILL to the process, then
559 destroys the data structure. */
560
561 static void
562 dead_procinfo (procinfo *pi, const char *msg, int kill_p)
563 {
564 char procfile[80];
565
566 if (pi->pathname)
567 print_sys_errmsg (pi->pathname, errno);
568 else
569 {
570 xsnprintf (procfile, sizeof (procfile), "process %d", pi->pid);
571 print_sys_errmsg (procfile, errno);
572 }
573 if (kill_p == KILL)
574 kill (pi->pid, SIGKILL);
575
576 destroy_procinfo (pi);
577 error ("%s", msg);
578 }
579
580 /* =================== END, STRUCT PROCINFO "MODULE" =================== */
581
582 /* =================== /proc "MODULE" =================== */
583
584 /* This "module" is the interface layer between the /proc system API
585 and the gdb target vector functions. This layer consists of access
586 functions that encapsulate each of the basic operations that we
587 need to use from the /proc API.
588
589 The main motivation for this layer is to hide the fact that there
590 were two very different implementations of the /proc API. */
591
592 static long proc_flags (procinfo *pi);
593 static int proc_why (procinfo *pi);
594 static int proc_what (procinfo *pi);
595 static int proc_set_current_signal (procinfo *pi, int signo);
596 static int proc_get_current_thread (procinfo *pi);
597 static int proc_iterate_over_threads
598 (procinfo *pi,
599 int (*func) (procinfo *, procinfo *, void *),
600 void *ptr);
601
602 static void
603 proc_warn (procinfo *pi, const char *func, int line)
604 {
605 xsnprintf (errmsg, sizeof (errmsg), "procfs: %s line %d, %s",
606 func, line, pi->pathname);
607 print_sys_errmsg (errmsg, errno);
608 }
609
610 static void
611 proc_error (procinfo *pi, const char *func, int line)
612 {
613 xsnprintf (errmsg, sizeof (errmsg), "procfs: %s line %d, %s",
614 func, line, pi->pathname);
615 perror_with_name (errmsg);
616 }
617
618 /* Updates the status struct in the procinfo. There is a 'valid'
619 flag, to let other functions know when this function needs to be
620 called (so the status is only read when it is needed). The status
621 file descriptor is also only opened when it is needed. Returns
622 non-zero for success, zero for failure. */
623
624 static int
625 proc_get_status (procinfo *pi)
626 {
627 /* Status file descriptor is opened "lazily". */
628 if (pi->status_fd == 0 && open_procinfo_files (pi, FD_STATUS) == 0)
629 {
630 pi->status_valid = 0;
631 return 0;
632 }
633
634 if (lseek (pi->status_fd, 0, SEEK_SET) < 0)
635 pi->status_valid = 0; /* fail */
636 else
637 {
638 /* Sigh... I have to read a different data structure,
639 depending on whether this is a main process or an LWP. */
640 if (pi->tid)
641 pi->status_valid = (read (pi->status_fd,
642 (char *) &pi->prstatus.pr_lwp,
643 sizeof (lwpstatus_t))
644 == sizeof (lwpstatus_t));
645 else
646 {
647 pi->status_valid = (read (pi->status_fd,
648 (char *) &pi->prstatus,
649 sizeof (pstatus_t))
650 == sizeof (pstatus_t));
651 }
652 }
653
654 if (pi->status_valid)
655 {
656 PROC_PRETTYFPRINT_STATUS (proc_flags (pi),
657 proc_why (pi),
658 proc_what (pi),
659 proc_get_current_thread (pi));
660 }
661
662 /* The status struct includes general regs, so mark them valid too. */
663 pi->gregs_valid = pi->status_valid;
664 /* In the read/write multiple-fd model, the status struct includes
665 the fp regs too, so mark them valid too. */
666 pi->fpregs_valid = pi->status_valid;
667 return pi->status_valid; /* True if success, false if failure. */
668 }
669
670 /* Returns the process flags (pr_flags field). */
671
672 static long
673 proc_flags (procinfo *pi)
674 {
675 if (!pi->status_valid)
676 if (!proc_get_status (pi))
677 return 0; /* FIXME: not a good failure value (but what is?) */
678
679 return pi->prstatus.pr_lwp.pr_flags;
680 }
681
682 /* Returns the pr_why field (why the process stopped). */
683
684 static int
685 proc_why (procinfo *pi)
686 {
687 if (!pi->status_valid)
688 if (!proc_get_status (pi))
689 return 0; /* FIXME: not a good failure value (but what is?) */
690
691 return pi->prstatus.pr_lwp.pr_why;
692 }
693
694 /* Returns the pr_what field (details of why the process stopped). */
695
696 static int
697 proc_what (procinfo *pi)
698 {
699 if (!pi->status_valid)
700 if (!proc_get_status (pi))
701 return 0; /* FIXME: not a good failure value (but what is?) */
702
703 return pi->prstatus.pr_lwp.pr_what;
704 }
705
706 /* This function is only called when PI is stopped by a watchpoint.
707 Assuming the OS supports it, write to *ADDR the data address which
708 triggered it and return 1. Return 0 if it is not possible to know
709 the address. */
710
711 static int
712 proc_watchpoint_address (procinfo *pi, CORE_ADDR *addr)
713 {
714 if (!pi->status_valid)
715 if (!proc_get_status (pi))
716 return 0;
717
718 *addr = (CORE_ADDR) gdbarch_pointer_to_address (target_gdbarch (),
719 builtin_type (target_gdbarch ())->builtin_data_ptr,
720 (gdb_byte *) &pi->prstatus.pr_lwp.pr_info.si_addr);
721 return 1;
722 }
723
724 /* Returns the pr_nsysarg field (number of args to the current
725 syscall). */
726
727 static int
728 proc_nsysarg (procinfo *pi)
729 {
730 if (!pi->status_valid)
731 if (!proc_get_status (pi))
732 return 0;
733
734 return pi->prstatus.pr_lwp.pr_nsysarg;
735 }
736
737 /* Returns the pr_sysarg field (pointer to the arguments of current
738 syscall). */
739
740 static long *
741 proc_sysargs (procinfo *pi)
742 {
743 if (!pi->status_valid)
744 if (!proc_get_status (pi))
745 return NULL;
746
747 return (long *) &pi->prstatus.pr_lwp.pr_sysarg;
748 }
749
750 /* Set or reset any of the following process flags:
751 PR_FORK -- forked child will inherit trace flags
752 PR_RLC -- traced process runs when last /proc file closed.
753 PR_KLC -- traced process is killed when last /proc file closed.
754 PR_ASYNC -- LWP's get to run/stop independently.
755
756 This function is done using read/write [PCSET/PCRESET/PCUNSET].
757
758 Arguments:
759 pi -- the procinfo
760 flag -- one of PR_FORK, PR_RLC, or PR_ASYNC
761 mode -- 1 for set, 0 for reset.
762
763 Returns non-zero for success, zero for failure. */
764
765 enum { FLAG_RESET, FLAG_SET };
766
767 static int
768 proc_modify_flag (procinfo *pi, long flag, long mode)
769 {
770 long win = 0; /* default to fail */
771
772 /* These operations affect the process as a whole, and applying them
773 to an individual LWP has the same meaning as applying them to the
774 main process. Therefore, if we're ever called with a pointer to
775 an LWP's procinfo, let's substitute the process's procinfo and
776 avoid opening the LWP's file descriptor unnecessarily. */
777
778 if (pi->pid != 0)
779 pi = find_procinfo_or_die (pi->pid, 0);
780
781 procfs_ctl_t arg[2];
782
783 if (mode == FLAG_SET) /* Set the flag (RLC, FORK, or ASYNC). */
784 arg[0] = PCSET;
785 else /* Reset the flag. */
786 arg[0] = PCUNSET;
787
788 arg[1] = flag;
789 win = (write (pi->ctl_fd, (void *) &arg, sizeof (arg)) == sizeof (arg));
790
791 /* The above operation renders the procinfo's cached pstatus
792 obsolete. */
793 pi->status_valid = 0;
794
795 if (!win)
796 warning (_("procfs: modify_flag failed to turn %s %s"),
797 flag == PR_FORK ? "PR_FORK" :
798 flag == PR_RLC ? "PR_RLC" :
799 flag == PR_ASYNC ? "PR_ASYNC" :
800 flag == PR_KLC ? "PR_KLC" :
801 "<unknown flag>",
802 mode == FLAG_RESET ? "off" : "on");
803
804 return win;
805 }
806
807 /* Set the run_on_last_close flag. Process with all threads will
808 become runnable when debugger closes all /proc fds. Returns
809 non-zero for success, zero for failure. */
810
811 static int
812 proc_set_run_on_last_close (procinfo *pi)
813 {
814 return proc_modify_flag (pi, PR_RLC, FLAG_SET);
815 }
816
817 /* Reset the run_on_last_close flag. The process will NOT become
818 runnable when debugger closes its file handles. Returns non-zero
819 for success, zero for failure. */
820
821 static int
822 proc_unset_run_on_last_close (procinfo *pi)
823 {
824 return proc_modify_flag (pi, PR_RLC, FLAG_RESET);
825 }
826
827 /* Reset inherit_on_fork flag. If the process forks a child while we
828 are registered for events in the parent, then we will NOT receive
829 events from the child. Returns non-zero for success, zero for
830 failure. */
831
832 static int
833 proc_unset_inherit_on_fork (procinfo *pi)
834 {
835 return proc_modify_flag (pi, PR_FORK, FLAG_RESET);
836 }
837
838 /* Set PR_ASYNC flag. If one LWP stops because of a debug event
839 (signal etc.), the remaining LWPs will continue to run. Returns
840 non-zero for success, zero for failure. */
841
842 static int
843 proc_set_async (procinfo *pi)
844 {
845 return proc_modify_flag (pi, PR_ASYNC, FLAG_SET);
846 }
847
848 /* Reset PR_ASYNC flag. If one LWP stops because of a debug event
849 (signal etc.), then all other LWPs will stop as well. Returns
850 non-zero for success, zero for failure. */
851
852 static int
853 proc_unset_async (procinfo *pi)
854 {
855 return proc_modify_flag (pi, PR_ASYNC, FLAG_RESET);
856 }
857
858 /* Request the process/LWP to stop. Does not wait. Returns non-zero
859 for success, zero for failure. */
860
861 static int
862 proc_stop_process (procinfo *pi)
863 {
864 int win;
865
866 /* We might conceivably apply this operation to an LWP, and the
867 LWP's ctl file descriptor might not be open. */
868
869 if (pi->ctl_fd == 0 && open_procinfo_files (pi, FD_CTL) == 0)
870 return 0;
871 else
872 {
873 procfs_ctl_t cmd = PCSTOP;
874
875 win = (write (pi->ctl_fd, (char *) &cmd, sizeof (cmd)) == sizeof (cmd));
876 }
877
878 return win;
879 }
880
881 /* Wait for the process or LWP to stop (block until it does). Returns
882 non-zero for success, zero for failure. */
883
884 static int
885 proc_wait_for_stop (procinfo *pi)
886 {
887 int win;
888
889 /* We should never have to apply this operation to any procinfo
890 except the one for the main process. If that ever changes for
891 any reason, then take out the following clause and replace it
892 with one that makes sure the ctl_fd is open. */
893
894 if (pi->tid != 0)
895 pi = find_procinfo_or_die (pi->pid, 0);
896
897 procfs_ctl_t cmd = PCWSTOP;
898
899 set_sigint_trap ();
900
901 win = (write (pi->ctl_fd, (char *) &cmd, sizeof (cmd)) == sizeof (cmd));
902
903 clear_sigint_trap ();
904
905 /* We been runnin' and we stopped -- need to update status. */
906 pi->status_valid = 0;
907
908 return win;
909 }
910
911 /* Make the process or LWP runnable.
912
913 Options (not all are implemented):
914 - single-step
915 - clear current fault
916 - clear current signal
917 - abort the current system call
918 - stop as soon as finished with system call
919
920 Always clears the current fault. PI is the process or LWP to
921 operate on. If STEP is true, set the process or LWP to trap after
922 one instruction. If SIGNO is zero, clear the current signal if
923 any; if non-zero, set the current signal to this one. Returns
924 non-zero for success, zero for failure. */
925
926 static int
927 proc_run_process (procinfo *pi, int step, int signo)
928 {
929 int win;
930 int runflags;
931
932 /* We will probably have to apply this operation to individual
933 threads, so make sure the control file descriptor is open. */
934
935 if (pi->ctl_fd == 0 && open_procinfo_files (pi, FD_CTL) == 0)
936 return 0;
937
938 runflags = PRCFAULT; /* Always clear current fault. */
939 if (step)
940 runflags |= PRSTEP;
941 if (signo == 0)
942 runflags |= PRCSIG;
943 else if (signo != -1) /* -1 means do nothing W.R.T. signals. */
944 proc_set_current_signal (pi, signo);
945
946 procfs_ctl_t cmd[2];
947
948 cmd[0] = PCRUN;
949 cmd[1] = runflags;
950 win = (write (pi->ctl_fd, (char *) &cmd, sizeof (cmd)) == sizeof (cmd));
951
952 return win;
953 }
954
955 /* Register to trace signals in the process or LWP. Returns non-zero
956 for success, zero for failure. */
957
958 static int
959 proc_set_traced_signals (procinfo *pi, sigset_t *sigset)
960 {
961 int win;
962
963 /* We should never have to apply this operation to any procinfo
964 except the one for the main process. If that ever changes for
965 any reason, then take out the following clause and replace it
966 with one that makes sure the ctl_fd is open. */
967
968 if (pi->tid != 0)
969 pi = find_procinfo_or_die (pi->pid, 0);
970
971 struct {
972 procfs_ctl_t cmd;
973 /* Use char array to avoid alignment issues. */
974 char sigset[sizeof (sigset_t)];
975 } arg;
976
977 arg.cmd = PCSTRACE;
978 memcpy (&arg.sigset, sigset, sizeof (sigset_t));
979
980 win = (write (pi->ctl_fd, (char *) &arg, sizeof (arg)) == sizeof (arg));
981
982 /* The above operation renders the procinfo's cached pstatus obsolete. */
983 pi->status_valid = 0;
984
985 if (!win)
986 warning (_("procfs: set_traced_signals failed"));
987 return win;
988 }
989
990 /* Register to trace hardware faults in the process or LWP. Returns
991 non-zero for success, zero for failure. */
992
993 static int
994 proc_set_traced_faults (procinfo *pi, fltset_t *fltset)
995 {
996 int win;
997
998 /* We should never have to apply this operation to any procinfo
999 except the one for the main process. If that ever changes for
1000 any reason, then take out the following clause and replace it
1001 with one that makes sure the ctl_fd is open. */
1002
1003 if (pi->tid != 0)
1004 pi = find_procinfo_or_die (pi->pid, 0);
1005
1006 struct {
1007 procfs_ctl_t cmd;
1008 /* Use char array to avoid alignment issues. */
1009 char fltset[sizeof (fltset_t)];
1010 } arg;
1011
1012 arg.cmd = PCSFAULT;
1013 memcpy (&arg.fltset, fltset, sizeof (fltset_t));
1014
1015 win = (write (pi->ctl_fd, (char *) &arg, sizeof (arg)) == sizeof (arg));
1016
1017 /* The above operation renders the procinfo's cached pstatus obsolete. */
1018 pi->status_valid = 0;
1019
1020 return win;
1021 }
1022
1023 /* Register to trace entry to system calls in the process or LWP.
1024 Returns non-zero for success, zero for failure. */
1025
1026 static int
1027 proc_set_traced_sysentry (procinfo *pi, sysset_t *sysset)
1028 {
1029 int win;
1030
1031 /* We should never have to apply this operation to any procinfo
1032 except the one for the main process. If that ever changes for
1033 any reason, then take out the following clause and replace it
1034 with one that makes sure the ctl_fd is open. */
1035
1036 if (pi->tid != 0)
1037 pi = find_procinfo_or_die (pi->pid, 0);
1038
1039 struct {
1040 procfs_ctl_t cmd;
1041 /* Use char array to avoid alignment issues. */
1042 char sysset[sizeof (sysset_t)];
1043 } arg;
1044
1045 arg.cmd = PCSENTRY;
1046 memcpy (&arg.sysset, sysset, sizeof (sysset_t));
1047
1048 win = (write (pi->ctl_fd, (char *) &arg, sizeof (arg)) == sizeof (arg));
1049
1050 /* The above operation renders the procinfo's cached pstatus
1051 obsolete. */
1052 pi->status_valid = 0;
1053
1054 return win;
1055 }
1056
1057 /* Register to trace exit from system calls in the process or LWP.
1058 Returns non-zero for success, zero for failure. */
1059
1060 static int
1061 proc_set_traced_sysexit (procinfo *pi, sysset_t *sysset)
1062 {
1063 int win;
1064
1065 /* We should never have to apply this operation to any procinfo
1066 except the one for the main process. If that ever changes for
1067 any reason, then take out the following clause and replace it
1068 with one that makes sure the ctl_fd is open. */
1069
1070 if (pi->tid != 0)
1071 pi = find_procinfo_or_die (pi->pid, 0);
1072
1073 struct gdb_proc_ctl_pcsexit {
1074 procfs_ctl_t cmd;
1075 /* Use char array to avoid alignment issues. */
1076 char sysset[sizeof (sysset_t)];
1077 } arg;
1078
1079 arg.cmd = PCSEXIT;
1080 memcpy (&arg.sysset, sysset, sizeof (sysset_t));
1081
1082 win = (write (pi->ctl_fd, (char *) &arg, sizeof (arg)) == sizeof (arg));
1083
1084 /* The above operation renders the procinfo's cached pstatus
1085 obsolete. */
1086 pi->status_valid = 0;
1087
1088 return win;
1089 }
1090
1091 /* Specify the set of blocked / held signals in the process or LWP.
1092 Returns non-zero for success, zero for failure. */
1093
1094 static int
1095 proc_set_held_signals (procinfo *pi, sigset_t *sighold)
1096 {
1097 int win;
1098
1099 /* We should never have to apply this operation to any procinfo
1100 except the one for the main process. If that ever changes for
1101 any reason, then take out the following clause and replace it
1102 with one that makes sure the ctl_fd is open. */
1103
1104 if (pi->tid != 0)
1105 pi = find_procinfo_or_die (pi->pid, 0);
1106
1107 struct {
1108 procfs_ctl_t cmd;
1109 /* Use char array to avoid alignment issues. */
1110 char hold[sizeof (sigset_t)];
1111 } arg;
1112
1113 arg.cmd = PCSHOLD;
1114 memcpy (&arg.hold, sighold, sizeof (sigset_t));
1115 win = (write (pi->ctl_fd, (void *) &arg, sizeof (arg)) == sizeof (arg));
1116
1117 /* The above operation renders the procinfo's cached pstatus
1118 obsolete. */
1119 pi->status_valid = 0;
1120
1121 return win;
1122 }
1123
1124 /* Returns the set of signals that are held / blocked. Will also copy
1125 the sigset if SAVE is non-zero. */
1126
1127 static sigset_t *
1128 proc_get_held_signals (procinfo *pi, sigset_t *save)
1129 {
1130 sigset_t *ret = NULL;
1131
1132 /* We should never have to apply this operation to any procinfo
1133 except the one for the main process. If that ever changes for
1134 any reason, then take out the following clause and replace it
1135 with one that makes sure the ctl_fd is open. */
1136
1137 if (pi->tid != 0)
1138 pi = find_procinfo_or_die (pi->pid, 0);
1139
1140 if (!pi->status_valid)
1141 if (!proc_get_status (pi))
1142 return NULL;
1143
1144 ret = &pi->prstatus.pr_lwp.pr_lwphold;
1145 if (save && ret)
1146 memcpy (save, ret, sizeof (sigset_t));
1147
1148 return ret;
1149 }
1150
1151 /* Returns the set of signals that are traced / debugged. Will also
1152 copy the sigset if SAVE is non-zero. */
1153
1154 static sigset_t *
1155 proc_get_traced_signals (procinfo *pi, sigset_t *save)
1156 {
1157 sigset_t *ret = NULL;
1158
1159 /* We should never have to apply this operation to any procinfo
1160 except the one for the main process. If that ever changes for
1161 any reason, then take out the following clause and replace it
1162 with one that makes sure the ctl_fd is open. */
1163
1164 if (pi->tid != 0)
1165 pi = find_procinfo_or_die (pi->pid, 0);
1166
1167 if (!pi->status_valid)
1168 if (!proc_get_status (pi))
1169 return NULL;
1170
1171 ret = &pi->prstatus.pr_sigtrace;
1172 if (save && ret)
1173 memcpy (save, ret, sizeof (sigset_t));
1174
1175 return ret;
1176 }
1177
1178 /* Returns the set of hardware faults that are traced /debugged. Will
1179 also copy the faultset if SAVE is non-zero. */
1180
1181 static fltset_t *
1182 proc_get_traced_faults (procinfo *pi, fltset_t *save)
1183 {
1184 fltset_t *ret = NULL;
1185
1186 /* We should never have to apply this operation to any procinfo
1187 except the one for the main process. If that ever changes for
1188 any reason, then take out the following clause and replace it
1189 with one that makes sure the ctl_fd is open. */
1190
1191 if (pi->tid != 0)
1192 pi = find_procinfo_or_die (pi->pid, 0);
1193
1194 if (!pi->status_valid)
1195 if (!proc_get_status (pi))
1196 return NULL;
1197
1198 ret = &pi->prstatus.pr_flttrace;
1199 if (save && ret)
1200 memcpy (save, ret, sizeof (fltset_t));
1201
1202 return ret;
1203 }
1204
1205 /* Returns the set of syscalls that are traced /debugged on entry.
1206 Will also copy the syscall set if SAVE is non-zero. */
1207
1208 static sysset_t *
1209 proc_get_traced_sysentry (procinfo *pi, sysset_t *save)
1210 {
1211 sysset_t *ret = NULL;
1212
1213 /* We should never have to apply this operation to any procinfo
1214 except the one for the main process. If that ever changes for
1215 any reason, then take out the following clause and replace it
1216 with one that makes sure the ctl_fd is open. */
1217
1218 if (pi->tid != 0)
1219 pi = find_procinfo_or_die (pi->pid, 0);
1220
1221 if (!pi->status_valid)
1222 if (!proc_get_status (pi))
1223 return NULL;
1224
1225 ret = &pi->prstatus.pr_sysentry;
1226 if (save && ret)
1227 memcpy (save, ret, sizeof (sysset_t));
1228
1229 return ret;
1230 }
1231
1232 /* Returns the set of syscalls that are traced /debugged on exit.
1233 Will also copy the syscall set if SAVE is non-zero. */
1234
1235 static sysset_t *
1236 proc_get_traced_sysexit (procinfo *pi, sysset_t *save)
1237 {
1238 sysset_t *ret = NULL;
1239
1240 /* We should never have to apply this operation to any procinfo
1241 except the one for the main process. If that ever changes for
1242 any reason, then take out the following clause and replace it
1243 with one that makes sure the ctl_fd is open. */
1244
1245 if (pi->tid != 0)
1246 pi = find_procinfo_or_die (pi->pid, 0);
1247
1248 if (!pi->status_valid)
1249 if (!proc_get_status (pi))
1250 return NULL;
1251
1252 ret = &pi->prstatus.pr_sysexit;
1253 if (save && ret)
1254 memcpy (save, ret, sizeof (sysset_t));
1255
1256 return ret;
1257 }
1258
1259 /* The current fault (if any) is cleared; the associated signal will
1260 not be sent to the process or LWP when it resumes. Returns
1261 non-zero for success, zero for failure. */
1262
1263 static int
1264 proc_clear_current_fault (procinfo *pi)
1265 {
1266 int win;
1267
1268 /* We should never have to apply this operation to any procinfo
1269 except the one for the main process. If that ever changes for
1270 any reason, then take out the following clause and replace it
1271 with one that makes sure the ctl_fd is open. */
1272
1273 if (pi->tid != 0)
1274 pi = find_procinfo_or_die (pi->pid, 0);
1275
1276 procfs_ctl_t cmd = PCCFAULT;
1277
1278 win = (write (pi->ctl_fd, (void *) &cmd, sizeof (cmd)) == sizeof (cmd));
1279
1280 return win;
1281 }
1282
1283 /* Set the "current signal" that will be delivered next to the
1284 process. NOTE: semantics are different from those of KILL. This
1285 signal will be delivered to the process or LWP immediately when it
1286 is resumed (even if the signal is held/blocked); it will NOT
1287 immediately cause another event of interest, and will NOT first
1288 trap back to the debugger. Returns non-zero for success, zero for
1289 failure. */
1290
1291 static int
1292 proc_set_current_signal (procinfo *pi, int signo)
1293 {
1294 int win;
1295 struct {
1296 procfs_ctl_t cmd;
1297 /* Use char array to avoid alignment issues. */
1298 char sinfo[sizeof (siginfo_t)];
1299 } arg;
1300 siginfo_t mysinfo;
1301 process_stratum_target *wait_target;
1302 ptid_t wait_ptid;
1303 struct target_waitstatus wait_status;
1304
1305 /* We should never have to apply this operation to any procinfo
1306 except the one for the main process. If that ever changes for
1307 any reason, then take out the following clause and replace it
1308 with one that makes sure the ctl_fd is open. */
1309
1310 if (pi->tid != 0)
1311 pi = find_procinfo_or_die (pi->pid, 0);
1312
1313 /* The pointer is just a type alias. */
1314 get_last_target_status (&wait_target, &wait_ptid, &wait_status);
1315 if (wait_target == &the_procfs_target
1316 && wait_ptid == inferior_ptid
1317 && wait_status.kind == TARGET_WAITKIND_STOPPED
1318 && wait_status.value.sig == gdb_signal_from_host (signo)
1319 && proc_get_status (pi)
1320 && pi->prstatus.pr_lwp.pr_info.si_signo == signo
1321 )
1322 /* Use the siginfo associated with the signal being
1323 redelivered. */
1324 memcpy (arg.sinfo, &pi->prstatus.pr_lwp.pr_info, sizeof (siginfo_t));
1325 else
1326 {
1327 mysinfo.si_signo = signo;
1328 mysinfo.si_code = 0;
1329 mysinfo.si_pid = getpid (); /* ?why? */
1330 mysinfo.si_uid = getuid (); /* ?why? */
1331 memcpy (arg.sinfo, &mysinfo, sizeof (siginfo_t));
1332 }
1333
1334 arg.cmd = PCSSIG;
1335 win = (write (pi->ctl_fd, (void *) &arg, sizeof (arg)) == sizeof (arg));
1336
1337 return win;
1338 }
1339
1340 /* The current signal (if any) is cleared, and is not sent to the
1341 process or LWP when it resumes. Returns non-zero for success, zero
1342 for failure. */
1343
1344 static int
1345 proc_clear_current_signal (procinfo *pi)
1346 {
1347 int win;
1348
1349 /* We should never have to apply this operation to any procinfo
1350 except the one for the main process. If that ever changes for
1351 any reason, then take out the following clause and replace it
1352 with one that makes sure the ctl_fd is open. */
1353
1354 if (pi->tid != 0)
1355 pi = find_procinfo_or_die (pi->pid, 0);
1356
1357 struct {
1358 procfs_ctl_t cmd;
1359 /* Use char array to avoid alignment issues. */
1360 char sinfo[sizeof (siginfo_t)];
1361 } arg;
1362 siginfo_t mysinfo;
1363
1364 arg.cmd = PCSSIG;
1365 /* The pointer is just a type alias. */
1366 mysinfo.si_signo = 0;
1367 mysinfo.si_code = 0;
1368 mysinfo.si_errno = 0;
1369 mysinfo.si_pid = getpid (); /* ?why? */
1370 mysinfo.si_uid = getuid (); /* ?why? */
1371 memcpy (arg.sinfo, &mysinfo, sizeof (siginfo_t));
1372
1373 win = (write (pi->ctl_fd, (void *) &arg, sizeof (arg)) == sizeof (arg));
1374
1375 return win;
1376 }
1377
1378 /* Return the general-purpose registers for the process or LWP
1379 corresponding to PI. Upon failure, return NULL. */
1380
1381 static gdb_gregset_t *
1382 proc_get_gregs (procinfo *pi)
1383 {
1384 if (!pi->status_valid || !pi->gregs_valid)
1385 if (!proc_get_status (pi))
1386 return NULL;
1387
1388 return &pi->prstatus.pr_lwp.pr_reg;
1389 }
1390
1391 /* Return the general-purpose registers for the process or LWP
1392 corresponding to PI. Upon failure, return NULL. */
1393
1394 static gdb_fpregset_t *
1395 proc_get_fpregs (procinfo *pi)
1396 {
1397 if (!pi->status_valid || !pi->fpregs_valid)
1398 if (!proc_get_status (pi))
1399 return NULL;
1400
1401 return &pi->prstatus.pr_lwp.pr_fpreg;
1402 }
1403
1404 /* Write the general-purpose registers back to the process or LWP
1405 corresponding to PI. Return non-zero for success, zero for
1406 failure. */
1407
1408 static int
1409 proc_set_gregs (procinfo *pi)
1410 {
1411 gdb_gregset_t *gregs;
1412 int win;
1413
1414 gregs = proc_get_gregs (pi);
1415 if (gregs == NULL)
1416 return 0; /* proc_get_regs has already warned. */
1417
1418 if (pi->ctl_fd == 0 && open_procinfo_files (pi, FD_CTL) == 0)
1419 return 0;
1420 else
1421 {
1422 struct {
1423 procfs_ctl_t cmd;
1424 /* Use char array to avoid alignment issues. */
1425 char gregs[sizeof (gdb_gregset_t)];
1426 } arg;
1427
1428 arg.cmd = PCSREG;
1429 memcpy (&arg.gregs, gregs, sizeof (arg.gregs));
1430 win = (write (pi->ctl_fd, (void *) &arg, sizeof (arg)) == sizeof (arg));
1431 }
1432
1433 /* Policy: writing the registers invalidates our cache. */
1434 pi->gregs_valid = 0;
1435 return win;
1436 }
1437
1438 /* Write the floating-pointer registers back to the process or LWP
1439 corresponding to PI. Return non-zero for success, zero for
1440 failure. */
1441
1442 static int
1443 proc_set_fpregs (procinfo *pi)
1444 {
1445 gdb_fpregset_t *fpregs;
1446 int win;
1447
1448 fpregs = proc_get_fpregs (pi);
1449 if (fpregs == NULL)
1450 return 0; /* proc_get_fpregs has already warned. */
1451
1452 if (pi->ctl_fd == 0 && open_procinfo_files (pi, FD_CTL) == 0)
1453 return 0;
1454 else
1455 {
1456 struct {
1457 procfs_ctl_t cmd;
1458 /* Use char array to avoid alignment issues. */
1459 char fpregs[sizeof (gdb_fpregset_t)];
1460 } arg;
1461
1462 arg.cmd = PCSFPREG;
1463 memcpy (&arg.fpregs, fpregs, sizeof (arg.fpregs));
1464 win = (write (pi->ctl_fd, (void *) &arg, sizeof (arg)) == sizeof (arg));
1465 }
1466
1467 /* Policy: writing the registers invalidates our cache. */
1468 pi->fpregs_valid = 0;
1469 return win;
1470 }
1471
1472 /* Send a signal to the proc or lwp with the semantics of "kill()".
1473 Returns non-zero for success, zero for failure. */
1474
1475 static int
1476 proc_kill (procinfo *pi, int signo)
1477 {
1478 int win;
1479
1480 /* We might conceivably apply this operation to an LWP, and the
1481 LWP's ctl file descriptor might not be open. */
1482
1483 if (pi->ctl_fd == 0 && open_procinfo_files (pi, FD_CTL) == 0)
1484 return 0;
1485 else
1486 {
1487 procfs_ctl_t cmd[2];
1488
1489 cmd[0] = PCKILL;
1490 cmd[1] = signo;
1491 win = (write (pi->ctl_fd, (char *) &cmd, sizeof (cmd)) == sizeof (cmd));
1492 }
1493
1494 return win;
1495 }
1496
1497 /* Find the pid of the process that started this one. Returns the
1498 parent process pid, or zero. */
1499
1500 static int
1501 proc_parent_pid (procinfo *pi)
1502 {
1503 /* We should never have to apply this operation to any procinfo
1504 except the one for the main process. If that ever changes for
1505 any reason, then take out the following clause and replace it
1506 with one that makes sure the ctl_fd is open. */
1507
1508 if (pi->tid != 0)
1509 pi = find_procinfo_or_die (pi->pid, 0);
1510
1511 if (!pi->status_valid)
1512 if (!proc_get_status (pi))
1513 return 0;
1514
1515 return pi->prstatus.pr_ppid;
1516 }
1517
1518 /* Convert a target address (a.k.a. CORE_ADDR) into a host address
1519 (a.k.a void pointer)! */
1520
1521 static void *
1522 procfs_address_to_host_pointer (CORE_ADDR addr)
1523 {
1524 struct type *ptr_type = builtin_type (target_gdbarch ())->builtin_data_ptr;
1525 void *ptr;
1526
1527 gdb_assert (sizeof (ptr) == TYPE_LENGTH (ptr_type));
1528 gdbarch_address_to_pointer (target_gdbarch (), ptr_type,
1529 (gdb_byte *) &ptr, addr);
1530 return ptr;
1531 }
1532
1533 static int
1534 proc_set_watchpoint (procinfo *pi, CORE_ADDR addr, int len, int wflags)
1535 {
1536 struct {
1537 procfs_ctl_t cmd;
1538 char watch[sizeof (prwatch_t)];
1539 } arg;
1540 prwatch_t pwatch;
1541
1542 /* NOTE: cagney/2003-02-01: Even more horrible hack. Need to
1543 convert a target address into something that can be stored in a
1544 native data structure. */
1545 pwatch.pr_vaddr = (uintptr_t) procfs_address_to_host_pointer (addr);
1546 pwatch.pr_size = len;
1547 pwatch.pr_wflags = wflags;
1548 arg.cmd = PCWATCH;
1549 memcpy (arg.watch, &pwatch, sizeof (prwatch_t));
1550 return (write (pi->ctl_fd, &arg, sizeof (arg)) == sizeof (arg));
1551 }
1552
1553 /* =============== END, non-thread part of /proc "MODULE" =============== */
1554
1555 /* =================== Thread "MODULE" =================== */
1556
1557 /* Returns the number of threads for the process. */
1558
1559 static int
1560 proc_get_nthreads (procinfo *pi)
1561 {
1562 if (!pi->status_valid)
1563 if (!proc_get_status (pi))
1564 return 0;
1565
1566 /* Only works for the process procinfo, because the LWP procinfos do not
1567 get prstatus filled in. */
1568 if (pi->tid != 0) /* Find the parent process procinfo. */
1569 pi = find_procinfo_or_die (pi->pid, 0);
1570 return pi->prstatus.pr_nlwp;
1571 }
1572
1573 /* Return the ID of the thread that had an event of interest.
1574 (ie. the one that hit a breakpoint or other traced event). All
1575 other things being equal, this should be the ID of a thread that is
1576 currently executing. */
1577
1578 static int
1579 proc_get_current_thread (procinfo *pi)
1580 {
1581 /* Note: this should be applied to the root procinfo for the
1582 process, not to the procinfo for an LWP. If applied to the
1583 procinfo for an LWP, it will simply return that LWP's ID. In
1584 that case, find the parent process procinfo. */
1585
1586 if (pi->tid != 0)
1587 pi = find_procinfo_or_die (pi->pid, 0);
1588
1589 if (!pi->status_valid)
1590 if (!proc_get_status (pi))
1591 return 0;
1592
1593 return pi->prstatus.pr_lwp.pr_lwpid;
1594 }
1595
1596 /* Discover the IDs of all the threads within the process, and create
1597 a procinfo for each of them (chained to the parent). Returns
1598 non-zero for success, zero for failure. */
1599
1600 static int
1601 proc_delete_dead_threads (procinfo *parent, procinfo *thread, void *ignore)
1602 {
1603 if (thread && parent) /* sanity */
1604 {
1605 thread->status_valid = 0;
1606 if (!proc_get_status (thread))
1607 destroy_one_procinfo (&parent->thread_list, thread);
1608 }
1609 return 0; /* keep iterating */
1610 }
1611
1612 static int
1613 proc_update_threads (procinfo *pi)
1614 {
1615 char pathname[MAX_PROC_NAME_SIZE + 16];
1616 struct dirent *direntry;
1617 procinfo *thread;
1618 gdb_dir_up dirp;
1619 int lwpid;
1620
1621 /* We should never have to apply this operation to any procinfo
1622 except the one for the main process. If that ever changes for
1623 any reason, then take out the following clause and replace it
1624 with one that makes sure the ctl_fd is open. */
1625
1626 if (pi->tid != 0)
1627 pi = find_procinfo_or_die (pi->pid, 0);
1628
1629 proc_iterate_over_threads (pi, proc_delete_dead_threads, NULL);
1630
1631 /* Note: this brute-force method was originally devised for Unixware
1632 (support removed since), and will also work on Solaris 2.6 and
1633 2.7. The original comment mentioned the existence of a much
1634 simpler and more elegant way to do this on Solaris, but didn't
1635 point out what that was. */
1636
1637 strcpy (pathname, pi->pathname);
1638 strcat (pathname, "/lwp");
1639 dirp.reset (opendir (pathname));
1640 if (dirp == NULL)
1641 proc_error (pi, "update_threads, opendir", __LINE__);
1642
1643 while ((direntry = readdir (dirp.get ())) != NULL)
1644 if (direntry->d_name[0] != '.') /* skip '.' and '..' */
1645 {
1646 lwpid = atoi (&direntry->d_name[0]);
1647 thread = create_procinfo (pi->pid, lwpid);
1648 if (thread == NULL)
1649 proc_error (pi, "update_threads, create_procinfo", __LINE__);
1650 }
1651 pi->threads_valid = 1;
1652 return 1;
1653 }
1654
1655 /* Given a pointer to a function, call that function once for each lwp
1656 in the procinfo list, until the function returns non-zero, in which
1657 event return the value returned by the function.
1658
1659 Note: this function does NOT call update_threads. If you want to
1660 discover new threads first, you must call that function explicitly.
1661 This function just makes a quick pass over the currently-known
1662 procinfos.
1663
1664 PI is the parent process procinfo. FUNC is the per-thread
1665 function. PTR is an opaque parameter for function. Returns the
1666 first non-zero return value from the callee, or zero. */
1667
1668 static int
1669 proc_iterate_over_threads (procinfo *pi,
1670 int (*func) (procinfo *, procinfo *, void *),
1671 void *ptr)
1672 {
1673 procinfo *thread, *next;
1674 int retval = 0;
1675
1676 /* We should never have to apply this operation to any procinfo
1677 except the one for the main process. If that ever changes for
1678 any reason, then take out the following clause and replace it
1679 with one that makes sure the ctl_fd is open. */
1680
1681 if (pi->tid != 0)
1682 pi = find_procinfo_or_die (pi->pid, 0);
1683
1684 for (thread = pi->thread_list; thread != NULL; thread = next)
1685 {
1686 next = thread->next; /* In case thread is destroyed. */
1687 retval = (*func) (pi, thread, ptr);
1688 if (retval != 0)
1689 break;
1690 }
1691
1692 return retval;
1693 }
1694
1695 /* =================== END, Thread "MODULE" =================== */
1696
1697 /* =================== END, /proc "MODULE" =================== */
1698
1699 /* =================== GDB "MODULE" =================== */
1700
1701 /* Here are all of the gdb target vector functions and their
1702 friends. */
1703
1704 static void do_attach (ptid_t ptid);
1705 static void do_detach ();
1706 static void proc_trace_syscalls_1 (procinfo *pi, int syscallnum,
1707 int entry_or_exit, int mode, int from_tty);
1708
1709 /* Sets up the inferior to be debugged. Registers to trace signals,
1710 hardware faults, and syscalls. Note: does not set RLC flag: caller
1711 may want to customize that. Returns zero for success (note!
1712 unlike most functions in this module); on failure, returns the LINE
1713 NUMBER where it failed! */
1714
1715 static int
1716 procfs_debug_inferior (procinfo *pi)
1717 {
1718 fltset_t traced_faults;
1719 sigset_t traced_signals;
1720 sysset_t *traced_syscall_entries;
1721 sysset_t *traced_syscall_exits;
1722 int status;
1723
1724 /* Register to trace hardware faults in the child. */
1725 prfillset (&traced_faults); /* trace all faults... */
1726 prdelset (&traced_faults, FLTPAGE); /* except page fault. */
1727 if (!proc_set_traced_faults (pi, &traced_faults))
1728 return __LINE__;
1729
1730 /* Initially, register to trace all signals in the child. */
1731 prfillset (&traced_signals);
1732 if (!proc_set_traced_signals (pi, &traced_signals))
1733 return __LINE__;
1734
1735
1736 /* Register to trace the 'exit' system call (on entry). */
1737 traced_syscall_entries = XNEW (sysset_t);
1738 premptyset (traced_syscall_entries);
1739 praddset (traced_syscall_entries, SYS_exit);
1740 praddset (traced_syscall_entries, SYS_lwp_exit);
1741
1742 status = proc_set_traced_sysentry (pi, traced_syscall_entries);
1743 xfree (traced_syscall_entries);
1744 if (!status)
1745 return __LINE__;
1746
1747 /* Method for tracing exec syscalls. */
1748 traced_syscall_exits = XNEW (sysset_t);
1749 premptyset (traced_syscall_exits);
1750 praddset (traced_syscall_exits, SYS_execve);
1751 praddset (traced_syscall_exits, SYS_lwp_create);
1752 praddset (traced_syscall_exits, SYS_lwp_exit);
1753
1754 status = proc_set_traced_sysexit (pi, traced_syscall_exits);
1755 xfree (traced_syscall_exits);
1756 if (!status)
1757 return __LINE__;
1758
1759 return 0;
1760 }
1761
1762 void
1763 procfs_target::attach (const char *args, int from_tty)
1764 {
1765 int pid;
1766
1767 pid = parse_pid_to_attach (args);
1768
1769 if (pid == getpid ())
1770 error (_("Attaching GDB to itself is not a good idea..."));
1771
1772 if (from_tty)
1773 {
1774 const char *exec_file = get_exec_file (0);
1775
1776 if (exec_file)
1777 printf_filtered (_("Attaching to program `%s', %s\n"),
1778 exec_file, target_pid_to_str (ptid_t (pid)).c_str ());
1779 else
1780 printf_filtered (_("Attaching to %s\n"),
1781 target_pid_to_str (ptid_t (pid)).c_str ());
1782
1783 fflush (stdout);
1784 }
1785 do_attach (ptid_t (pid));
1786 if (!target_is_pushed (this))
1787 push_target (this);
1788 }
1789
1790 void
1791 procfs_target::detach (inferior *inf, int from_tty)
1792 {
1793 int pid = inferior_ptid.pid ();
1794
1795 if (from_tty)
1796 {
1797 const char *exec_file;
1798
1799 exec_file = get_exec_file (0);
1800 if (exec_file == NULL)
1801 exec_file = "";
1802
1803 printf_filtered (_("Detaching from program: %s, %s\n"), exec_file,
1804 target_pid_to_str (ptid_t (pid)).c_str ());
1805 }
1806
1807 do_detach ();
1808
1809 switch_to_no_thread ();
1810 detach_inferior (inf);
1811 maybe_unpush_target ();
1812 }
1813
1814 static void
1815 do_attach (ptid_t ptid)
1816 {
1817 procinfo *pi;
1818 struct inferior *inf;
1819 int fail;
1820 int lwpid;
1821
1822 pi = create_procinfo (ptid.pid (), 0);
1823 if (pi == NULL)
1824 perror (_("procfs: out of memory in 'attach'"));
1825
1826 if (!open_procinfo_files (pi, FD_CTL))
1827 {
1828 fprintf_filtered (gdb_stderr, "procfs:%d -- ", __LINE__);
1829 xsnprintf (errmsg, sizeof (errmsg),
1830 "do_attach: couldn't open /proc file for process %d",
1831 ptid.pid ());
1832 dead_procinfo (pi, errmsg, NOKILL);
1833 }
1834
1835 /* Stop the process (if it isn't already stopped). */
1836 if (proc_flags (pi) & (PR_STOPPED | PR_ISTOP))
1837 {
1838 pi->was_stopped = 1;
1839 proc_prettyprint_why (proc_why (pi), proc_what (pi), 1);
1840 }
1841 else
1842 {
1843 pi->was_stopped = 0;
1844 /* Set the process to run again when we close it. */
1845 if (!proc_set_run_on_last_close (pi))
1846 dead_procinfo (pi, "do_attach: couldn't set RLC.", NOKILL);
1847
1848 /* Now stop the process. */
1849 if (!proc_stop_process (pi))
1850 dead_procinfo (pi, "do_attach: couldn't stop the process.", NOKILL);
1851 pi->ignore_next_sigstop = 1;
1852 }
1853 /* Save some of the /proc state to be restored if we detach. */
1854 if (!proc_get_traced_faults (pi, &pi->saved_fltset))
1855 dead_procinfo (pi, "do_attach: couldn't save traced faults.", NOKILL);
1856 if (!proc_get_traced_signals (pi, &pi->saved_sigset))
1857 dead_procinfo (pi, "do_attach: couldn't save traced signals.", NOKILL);
1858 if (!proc_get_traced_sysentry (pi, pi->saved_entryset))
1859 dead_procinfo (pi, "do_attach: couldn't save traced syscall entries.",
1860 NOKILL);
1861 if (!proc_get_traced_sysexit (pi, pi->saved_exitset))
1862 dead_procinfo (pi, "do_attach: couldn't save traced syscall exits.",
1863 NOKILL);
1864 if (!proc_get_held_signals (pi, &pi->saved_sighold))
1865 dead_procinfo (pi, "do_attach: couldn't save held signals.", NOKILL);
1866
1867 fail = procfs_debug_inferior (pi);
1868 if (fail != 0)
1869 dead_procinfo (pi, "do_attach: failed in procfs_debug_inferior", NOKILL);
1870
1871 inf = current_inferior ();
1872 inferior_appeared (inf, pi->pid);
1873 /* Let GDB know that the inferior was attached. */
1874 inf->attach_flag = 1;
1875
1876 /* Create a procinfo for the current lwp. */
1877 lwpid = proc_get_current_thread (pi);
1878 create_procinfo (pi->pid, lwpid);
1879
1880 /* Add it to gdb's thread list. */
1881 ptid = ptid_t (pi->pid, lwpid, 0);
1882 thread_info *thr = add_thread (&the_procfs_target, ptid);
1883 switch_to_thread (thr);
1884 }
1885
1886 static void
1887 do_detach ()
1888 {
1889 procinfo *pi;
1890
1891 /* Find procinfo for the main process. */
1892 pi = find_procinfo_or_die (inferior_ptid.pid (),
1893 0); /* FIXME: threads */
1894
1895 if (!proc_set_traced_signals (pi, &pi->saved_sigset))
1896 proc_warn (pi, "do_detach, set_traced_signal", __LINE__);
1897
1898 if (!proc_set_traced_faults (pi, &pi->saved_fltset))
1899 proc_warn (pi, "do_detach, set_traced_faults", __LINE__);
1900
1901 if (!proc_set_traced_sysentry (pi, pi->saved_entryset))
1902 proc_warn (pi, "do_detach, set_traced_sysentry", __LINE__);
1903
1904 if (!proc_set_traced_sysexit (pi, pi->saved_exitset))
1905 proc_warn (pi, "do_detach, set_traced_sysexit", __LINE__);
1906
1907 if (!proc_set_held_signals (pi, &pi->saved_sighold))
1908 proc_warn (pi, "do_detach, set_held_signals", __LINE__);
1909
1910 if (proc_flags (pi) & (PR_STOPPED | PR_ISTOP))
1911 if (!(pi->was_stopped)
1912 || query (_("Was stopped when attached, make it runnable again? ")))
1913 {
1914 /* Clear any pending signal. */
1915 if (!proc_clear_current_fault (pi))
1916 proc_warn (pi, "do_detach, clear_current_fault", __LINE__);
1917
1918 if (!proc_clear_current_signal (pi))
1919 proc_warn (pi, "do_detach, clear_current_signal", __LINE__);
1920
1921 if (!proc_set_run_on_last_close (pi))
1922 proc_warn (pi, "do_detach, set_rlc", __LINE__);
1923 }
1924
1925 destroy_procinfo (pi);
1926 }
1927
1928 /* Fetch register REGNUM from the inferior. If REGNUM is -1, do this
1929 for all registers.
1930
1931 NOTE: Since the /proc interface cannot give us individual
1932 registers, we pay no attention to REGNUM, and just fetch them all.
1933 This results in the possibility that we will do unnecessarily many
1934 fetches, since we may be called repeatedly for individual
1935 registers. So we cache the results, and mark the cache invalid
1936 when the process is resumed. */
1937
1938 void
1939 procfs_target::fetch_registers (struct regcache *regcache, int regnum)
1940 {
1941 gdb_gregset_t *gregs;
1942 procinfo *pi;
1943 ptid_t ptid = regcache->ptid ();
1944 int pid = ptid.pid ();
1945 int tid = ptid.lwp ();
1946 struct gdbarch *gdbarch = regcache->arch ();
1947
1948 pi = find_procinfo_or_die (pid, tid);
1949
1950 if (pi == NULL)
1951 error (_("procfs: fetch_registers failed to find procinfo for %s"),
1952 target_pid_to_str (ptid).c_str ());
1953
1954 gregs = proc_get_gregs (pi);
1955 if (gregs == NULL)
1956 proc_error (pi, "fetch_registers, get_gregs", __LINE__);
1957
1958 supply_gregset (regcache, (const gdb_gregset_t *) gregs);
1959
1960 if (gdbarch_fp0_regnum (gdbarch) >= 0) /* Do we have an FPU? */
1961 {
1962 gdb_fpregset_t *fpregs;
1963
1964 if ((regnum >= 0 && regnum < gdbarch_fp0_regnum (gdbarch))
1965 || regnum == gdbarch_pc_regnum (gdbarch)
1966 || regnum == gdbarch_sp_regnum (gdbarch))
1967 return; /* Not a floating point register. */
1968
1969 fpregs = proc_get_fpregs (pi);
1970 if (fpregs == NULL)
1971 proc_error (pi, "fetch_registers, get_fpregs", __LINE__);
1972
1973 supply_fpregset (regcache, (const gdb_fpregset_t *) fpregs);
1974 }
1975 }
1976
1977 /* Store register REGNUM back into the inferior. If REGNUM is -1, do
1978 this for all registers.
1979
1980 NOTE: Since the /proc interface will not read individual registers,
1981 we will cache these requests until the process is resumed, and only
1982 then write them back to the inferior process.
1983
1984 FIXME: is that a really bad idea? Have to think about cases where
1985 writing one register might affect the value of others, etc. */
1986
1987 void
1988 procfs_target::store_registers (struct regcache *regcache, int regnum)
1989 {
1990 gdb_gregset_t *gregs;
1991 procinfo *pi;
1992 ptid_t ptid = regcache->ptid ();
1993 int pid = ptid.pid ();
1994 int tid = ptid.lwp ();
1995 struct gdbarch *gdbarch = regcache->arch ();
1996
1997 pi = find_procinfo_or_die (pid, tid);
1998
1999 if (pi == NULL)
2000 error (_("procfs: store_registers: failed to find procinfo for %s"),
2001 target_pid_to_str (ptid).c_str ());
2002
2003 gregs = proc_get_gregs (pi);
2004 if (gregs == NULL)
2005 proc_error (pi, "store_registers, get_gregs", __LINE__);
2006
2007 fill_gregset (regcache, gregs, regnum);
2008 if (!proc_set_gregs (pi))
2009 proc_error (pi, "store_registers, set_gregs", __LINE__);
2010
2011 if (gdbarch_fp0_regnum (gdbarch) >= 0) /* Do we have an FPU? */
2012 {
2013 gdb_fpregset_t *fpregs;
2014
2015 if ((regnum >= 0 && regnum < gdbarch_fp0_regnum (gdbarch))
2016 || regnum == gdbarch_pc_regnum (gdbarch)
2017 || regnum == gdbarch_sp_regnum (gdbarch))
2018 return; /* Not a floating point register. */
2019
2020 fpregs = proc_get_fpregs (pi);
2021 if (fpregs == NULL)
2022 proc_error (pi, "store_registers, get_fpregs", __LINE__);
2023
2024 fill_fpregset (regcache, fpregs, regnum);
2025 if (!proc_set_fpregs (pi))
2026 proc_error (pi, "store_registers, set_fpregs", __LINE__);
2027 }
2028 }
2029
2030 /* Retrieve the next stop event from the child process. If child has
2031 not stopped yet, wait for it to stop. Translate /proc eventcodes
2032 (or possibly wait eventcodes) into gdb internal event codes.
2033 Returns the id of process (and possibly thread) that incurred the
2034 event. Event codes are returned through a pointer parameter. */
2035
2036 ptid_t
2037 procfs_target::wait (ptid_t ptid, struct target_waitstatus *status,
2038 int options)
2039 {
2040 /* First cut: loosely based on original version 2.1. */
2041 procinfo *pi;
2042 int wstat;
2043 int temp_tid;
2044 ptid_t retval, temp_ptid;
2045 int why, what, flags;
2046 int retry = 0;
2047
2048 wait_again:
2049
2050 retry++;
2051 wstat = 0;
2052 retval = ptid_t (-1);
2053
2054 /* Find procinfo for main process. */
2055 pi = find_procinfo_or_die (inferior_ptid.pid (), 0);
2056 if (pi)
2057 {
2058 /* We must assume that the status is stale now... */
2059 pi->status_valid = 0;
2060 pi->gregs_valid = 0;
2061 pi->fpregs_valid = 0;
2062
2063 #if 0 /* just try this out... */
2064 flags = proc_flags (pi);
2065 why = proc_why (pi);
2066 if ((flags & PR_STOPPED) && (why == PR_REQUESTED))
2067 pi->status_valid = 0; /* re-read again, IMMEDIATELY... */
2068 #endif
2069 /* If child is not stopped, wait for it to stop. */
2070 if (!(proc_flags (pi) & (PR_STOPPED | PR_ISTOP))
2071 && !proc_wait_for_stop (pi))
2072 {
2073 /* wait_for_stop failed: has the child terminated? */
2074 if (errno == ENOENT)
2075 {
2076 int wait_retval;
2077
2078 /* /proc file not found; presumably child has terminated. */
2079 wait_retval = ::wait (&wstat); /* "wait" for the child's exit. */
2080
2081 /* Wrong child? */
2082 if (wait_retval != inferior_ptid.pid ())
2083 error (_("procfs: couldn't stop "
2084 "process %d: wait returned %d."),
2085 inferior_ptid.pid (), wait_retval);
2086 /* FIXME: might I not just use waitpid?
2087 Or try find_procinfo to see if I know about this child? */
2088 retval = ptid_t (wait_retval);
2089 }
2090 else if (errno == EINTR)
2091 goto wait_again;
2092 else
2093 {
2094 /* Unknown error from wait_for_stop. */
2095 proc_error (pi, "target_wait (wait_for_stop)", __LINE__);
2096 }
2097 }
2098 else
2099 {
2100 /* This long block is reached if either:
2101 a) the child was already stopped, or
2102 b) we successfully waited for the child with wait_for_stop.
2103 This block will analyze the /proc status, and translate it
2104 into a waitstatus for GDB.
2105
2106 If we actually had to call wait because the /proc file
2107 is gone (child terminated), then we skip this block,
2108 because we already have a waitstatus. */
2109
2110 flags = proc_flags (pi);
2111 why = proc_why (pi);
2112 what = proc_what (pi);
2113
2114 if (flags & (PR_STOPPED | PR_ISTOP))
2115 {
2116 /* If it's running async (for single_thread control),
2117 set it back to normal again. */
2118 if (flags & PR_ASYNC)
2119 if (!proc_unset_async (pi))
2120 proc_error (pi, "target_wait, unset_async", __LINE__);
2121
2122 if (info_verbose)
2123 proc_prettyprint_why (why, what, 1);
2124
2125 /* The 'pid' we will return to GDB is composed of
2126 the process ID plus the lwp ID. */
2127 retval = ptid_t (pi->pid, proc_get_current_thread (pi), 0);
2128
2129 switch (why) {
2130 case PR_SIGNALLED:
2131 wstat = (what << 8) | 0177;
2132 break;
2133 case PR_SYSENTRY:
2134 if (what == SYS_lwp_exit)
2135 {
2136 if (print_thread_events)
2137 printf_unfiltered (_("[%s exited]\n"),
2138 target_pid_to_str (retval).c_str ());
2139 delete_thread (find_thread_ptid (this, retval));
2140 status->kind = TARGET_WAITKIND_SPURIOUS;
2141 return retval;
2142 }
2143 else if (what == SYS_exit)
2144 {
2145 struct inferior *inf;
2146
2147 /* Handle SYS_exit call only. */
2148 /* Stopped at entry to SYS_exit.
2149 Make it runnable, resume it, then use
2150 the wait system call to get its exit code.
2151 Proc_run_process always clears the current
2152 fault and signal.
2153 Then return its exit status. */
2154 pi->status_valid = 0;
2155 wstat = 0;
2156 /* FIXME: what we should do is return
2157 TARGET_WAITKIND_SPURIOUS. */
2158 if (!proc_run_process (pi, 0, 0))
2159 proc_error (pi, "target_wait, run_process", __LINE__);
2160
2161 inf = find_inferior_pid (this, pi->pid);
2162 if (inf->attach_flag)
2163 {
2164 /* Don't call wait: simulate waiting for exit,
2165 return a "success" exit code. Bogus: what if
2166 it returns something else? */
2167 wstat = 0;
2168 retval = inferior_ptid; /* ? ? ? */
2169 }
2170 else
2171 {
2172 int temp = ::wait (&wstat);
2173
2174 /* FIXME: shouldn't I make sure I get the right
2175 event from the right process? If (for
2176 instance) I have killed an earlier inferior
2177 process but failed to clean up after it
2178 somehow, I could get its termination event
2179 here. */
2180
2181 /* If wait returns -1, that's what we return
2182 to GDB. */
2183 if (temp < 0)
2184 retval = ptid_t (temp);
2185 }
2186 }
2187 else
2188 {
2189 printf_filtered (_("procfs: trapped on entry to "));
2190 proc_prettyprint_syscall (proc_what (pi), 0);
2191 printf_filtered ("\n");
2192
2193 long i, nsysargs, *sysargs;
2194
2195 nsysargs = proc_nsysarg (pi);
2196 sysargs = proc_sysargs (pi);
2197
2198 if (nsysargs > 0 && sysargs != NULL)
2199 {
2200 printf_filtered (_("%ld syscall arguments:\n"),
2201 nsysargs);
2202 for (i = 0; i < nsysargs; i++)
2203 printf_filtered ("#%ld: 0x%08lx\n",
2204 i, sysargs[i]);
2205 }
2206
2207 if (status)
2208 {
2209 /* How to exit gracefully, returning "unknown
2210 event". */
2211 status->kind = TARGET_WAITKIND_SPURIOUS;
2212 return inferior_ptid;
2213 }
2214 else
2215 {
2216 /* How to keep going without returning to wfi: */
2217 target_continue_no_signal (ptid);
2218 goto wait_again;
2219 }
2220 }
2221 break;
2222 case PR_SYSEXIT:
2223 if (what == SYS_execve)
2224 {
2225 /* Hopefully this is our own "fork-child" execing
2226 the real child. Hoax this event into a trap, and
2227 GDB will see the child about to execute its start
2228 address. */
2229 wstat = (SIGTRAP << 8) | 0177;
2230 }
2231 else if (what == SYS_lwp_create)
2232 {
2233 /* This syscall is somewhat like fork/exec. We
2234 will get the event twice: once for the parent
2235 LWP, and once for the child. We should already
2236 know about the parent LWP, but the child will
2237 be new to us. So, whenever we get this event,
2238 if it represents a new thread, simply add the
2239 thread to the list. */
2240
2241 /* If not in procinfo list, add it. */
2242 temp_tid = proc_get_current_thread (pi);
2243 if (!find_procinfo (pi->pid, temp_tid))
2244 create_procinfo (pi->pid, temp_tid);
2245
2246 temp_ptid = ptid_t (pi->pid, temp_tid, 0);
2247 /* If not in GDB's thread list, add it. */
2248 if (!in_thread_list (this, temp_ptid))
2249 add_thread (this, temp_ptid);
2250
2251 /* Return to WFI, but tell it to immediately resume. */
2252 status->kind = TARGET_WAITKIND_SPURIOUS;
2253 return inferior_ptid;
2254 }
2255 else if (what == SYS_lwp_exit)
2256 {
2257 if (print_thread_events)
2258 printf_unfiltered (_("[%s exited]\n"),
2259 target_pid_to_str (retval).c_str ());
2260 delete_thread (find_thread_ptid (this, retval));
2261 status->kind = TARGET_WAITKIND_SPURIOUS;
2262 return retval;
2263 }
2264 else
2265 {
2266 printf_filtered (_("procfs: trapped on exit from "));
2267 proc_prettyprint_syscall (proc_what (pi), 0);
2268 printf_filtered ("\n");
2269
2270 long i, nsysargs, *sysargs;
2271
2272 nsysargs = proc_nsysarg (pi);
2273 sysargs = proc_sysargs (pi);
2274
2275 if (nsysargs > 0 && sysargs != NULL)
2276 {
2277 printf_filtered (_("%ld syscall arguments:\n"),
2278 nsysargs);
2279 for (i = 0; i < nsysargs; i++)
2280 printf_filtered ("#%ld: 0x%08lx\n",
2281 i, sysargs[i]);
2282 }
2283
2284 status->kind = TARGET_WAITKIND_SPURIOUS;
2285 return inferior_ptid;
2286 }
2287 break;
2288 case PR_REQUESTED:
2289 #if 0 /* FIXME */
2290 wstat = (SIGSTOP << 8) | 0177;
2291 break;
2292 #else
2293 if (retry < 5)
2294 {
2295 printf_filtered (_("Retry #%d:\n"), retry);
2296 pi->status_valid = 0;
2297 goto wait_again;
2298 }
2299 else
2300 {
2301 /* If not in procinfo list, add it. */
2302 temp_tid = proc_get_current_thread (pi);
2303 if (!find_procinfo (pi->pid, temp_tid))
2304 create_procinfo (pi->pid, temp_tid);
2305
2306 /* If not in GDB's thread list, add it. */
2307 temp_ptid = ptid_t (pi->pid, temp_tid, 0);
2308 if (!in_thread_list (this, temp_ptid))
2309 add_thread (this, temp_ptid);
2310
2311 status->kind = TARGET_WAITKIND_STOPPED;
2312 status->value.sig = GDB_SIGNAL_0;
2313 return retval;
2314 }
2315 #endif
2316 case PR_JOBCONTROL:
2317 wstat = (what << 8) | 0177;
2318 break;
2319 case PR_FAULTED:
2320 {
2321 int signo = pi->prstatus.pr_lwp.pr_info.si_signo;
2322 if (signo != 0)
2323 wstat = (signo << 8) | 0177;
2324 }
2325 break;
2326 default: /* switch (why) unmatched */
2327 printf_filtered ("procfs:%d -- ", __LINE__);
2328 printf_filtered (_("child stopped for unknown reason:\n"));
2329 proc_prettyprint_why (why, what, 1);
2330 error (_("... giving up..."));
2331 break;
2332 }
2333 /* Got this far without error: If retval isn't in the
2334 threads database, add it. */
2335 if (retval.pid () > 0
2336 && retval != inferior_ptid
2337 && !in_thread_list (this, retval))
2338 {
2339 /* We have a new thread. We need to add it both to
2340 GDB's list and to our own. If we don't create a
2341 procinfo, resume may be unhappy later. */
2342 add_thread (this, retval);
2343 if (find_procinfo (retval.pid (),
2344 retval.lwp ()) == NULL)
2345 create_procinfo (retval.pid (),
2346 retval.lwp ());
2347 }
2348 }
2349 else /* Flags do not indicate STOPPED. */
2350 {
2351 /* surely this can't happen... */
2352 printf_filtered ("procfs:%d -- process not stopped.\n",
2353 __LINE__);
2354 proc_prettyprint_flags (flags, 1);
2355 error (_("procfs: ...giving up..."));
2356 }
2357 }
2358
2359 if (status)
2360 store_waitstatus (status, wstat);
2361 }
2362
2363 return retval;
2364 }
2365
2366 /* Perform a partial transfer to/from the specified object. For
2367 memory transfers, fall back to the old memory xfer functions. */
2368
2369 enum target_xfer_status
2370 procfs_target::xfer_partial (enum target_object object,
2371 const char *annex, gdb_byte *readbuf,
2372 const gdb_byte *writebuf, ULONGEST offset,
2373 ULONGEST len, ULONGEST *xfered_len)
2374 {
2375 switch (object)
2376 {
2377 case TARGET_OBJECT_MEMORY:
2378 return procfs_xfer_memory (readbuf, writebuf, offset, len, xfered_len);
2379
2380 case TARGET_OBJECT_AUXV:
2381 return memory_xfer_auxv (this, object, annex, readbuf, writebuf,
2382 offset, len, xfered_len);
2383
2384 default:
2385 return this->beneath ()->xfer_partial (object, annex,
2386 readbuf, writebuf, offset, len,
2387 xfered_len);
2388 }
2389 }
2390
2391 /* Helper for procfs_xfer_partial that handles memory transfers.
2392 Arguments are like target_xfer_partial. */
2393
2394 static enum target_xfer_status
2395 procfs_xfer_memory (gdb_byte *readbuf, const gdb_byte *writebuf,
2396 ULONGEST memaddr, ULONGEST len, ULONGEST *xfered_len)
2397 {
2398 procinfo *pi;
2399 int nbytes;
2400
2401 /* Find procinfo for main process. */
2402 pi = find_procinfo_or_die (inferior_ptid.pid (), 0);
2403 if (pi->as_fd == 0 && open_procinfo_files (pi, FD_AS) == 0)
2404 {
2405 proc_warn (pi, "xfer_memory, open_proc_files", __LINE__);
2406 return TARGET_XFER_E_IO;
2407 }
2408
2409 if (lseek (pi->as_fd, (off_t) memaddr, SEEK_SET) != (off_t) memaddr)
2410 return TARGET_XFER_E_IO;
2411
2412 if (writebuf != NULL)
2413 {
2414 PROCFS_NOTE ("write memory:\n");
2415 nbytes = write (pi->as_fd, writebuf, len);
2416 }
2417 else
2418 {
2419 PROCFS_NOTE ("read memory:\n");
2420 nbytes = read (pi->as_fd, readbuf, len);
2421 }
2422 if (nbytes <= 0)
2423 return TARGET_XFER_E_IO;
2424 *xfered_len = nbytes;
2425 return TARGET_XFER_OK;
2426 }
2427
2428 /* Called by target_resume before making child runnable. Mark cached
2429 registers and status's invalid. If there are "dirty" caches that
2430 need to be written back to the child process, do that.
2431
2432 File descriptors are also cached. As they are a limited resource,
2433 we cannot hold onto them indefinitely. However, as they are
2434 expensive to open, we don't want to throw them away
2435 indiscriminately either. As a compromise, we will keep the file
2436 descriptors for the parent process, but discard any file
2437 descriptors we may have accumulated for the threads.
2438
2439 As this function is called by iterate_over_threads, it always
2440 returns zero (so that iterate_over_threads will keep
2441 iterating). */
2442
2443 static int
2444 invalidate_cache (procinfo *parent, procinfo *pi, void *ptr)
2445 {
2446 /* About to run the child; invalidate caches and do any other
2447 cleanup. */
2448
2449 if (parent != NULL)
2450 {
2451 /* The presence of a parent indicates that this is an LWP.
2452 Close any file descriptors that it might have open.
2453 We don't do this to the master (parent) procinfo. */
2454
2455 close_procinfo_files (pi);
2456 }
2457 pi->gregs_valid = 0;
2458 pi->fpregs_valid = 0;
2459 pi->status_valid = 0;
2460 pi->threads_valid = 0;
2461
2462 return 0;
2463 }
2464
2465 /* Make the child process runnable. Normally we will then call
2466 procfs_wait and wait for it to stop again (unless gdb is async).
2467
2468 If STEP is true, then arrange for the child to stop again after
2469 executing a single instruction. If SIGNO is zero, then cancel any
2470 pending signal; if non-zero, then arrange for the indicated signal
2471 to be delivered to the child when it runs. If PID is -1, then
2472 allow any child thread to run; if non-zero, then allow only the
2473 indicated thread to run. (not implemented yet). */
2474
2475 void
2476 procfs_target::resume (ptid_t ptid, int step, enum gdb_signal signo)
2477 {
2478 procinfo *pi, *thread;
2479 int native_signo;
2480
2481 /* FIXME: Check/reword. */
2482
2483 /* prrun.prflags |= PRCFAULT; clear current fault.
2484 PRCFAULT may be replaced by a PCCFAULT call (proc_clear_current_fault)
2485 This basically leaves PRSTEP and PRCSIG.
2486 PRCSIG is like PCSSIG (proc_clear_current_signal).
2487 So basically PR_STEP is the sole argument that must be passed
2488 to proc_run_process. */
2489
2490 /* Find procinfo for main process. */
2491 pi = find_procinfo_or_die (inferior_ptid.pid (), 0);
2492
2493 /* First cut: ignore pid argument. */
2494 errno = 0;
2495
2496 /* Convert signal to host numbering. */
2497 if (signo == 0 || (signo == GDB_SIGNAL_STOP && pi->ignore_next_sigstop))
2498 native_signo = 0;
2499 else
2500 native_signo = gdb_signal_to_host (signo);
2501
2502 pi->ignore_next_sigstop = 0;
2503
2504 /* Running the process voids all cached registers and status. */
2505 /* Void the threads' caches first. */
2506 proc_iterate_over_threads (pi, invalidate_cache, NULL);
2507 /* Void the process procinfo's caches. */
2508 invalidate_cache (NULL, pi, NULL);
2509
2510 if (ptid.pid () != -1)
2511 {
2512 /* Resume a specific thread, presumably suppressing the
2513 others. */
2514 thread = find_procinfo (ptid.pid (), ptid.lwp ());
2515 if (thread != NULL)
2516 {
2517 if (thread->tid != 0)
2518 {
2519 /* We're to resume a specific thread, and not the
2520 others. Set the child process's PR_ASYNC flag. */
2521 if (!proc_set_async (pi))
2522 proc_error (pi, "target_resume, set_async", __LINE__);
2523 pi = thread; /* Substitute the thread's procinfo
2524 for run. */
2525 }
2526 }
2527 }
2528
2529 if (!proc_run_process (pi, step, native_signo))
2530 {
2531 if (errno == EBUSY)
2532 warning (_("resume: target already running. "
2533 "Pretend to resume, and hope for the best!"));
2534 else
2535 proc_error (pi, "target_resume", __LINE__);
2536 }
2537 }
2538
2539 /* Set up to trace signals in the child process. */
2540
2541 void
2542 procfs_target::pass_signals (gdb::array_view<const unsigned char> pass_signals)
2543 {
2544 sigset_t signals;
2545 procinfo *pi = find_procinfo_or_die (inferior_ptid.pid (), 0);
2546 int signo;
2547
2548 prfillset (&signals);
2549
2550 for (signo = 0; signo < NSIG; signo++)
2551 {
2552 int target_signo = gdb_signal_from_host (signo);
2553 if (target_signo < pass_signals.size () && pass_signals[target_signo])
2554 prdelset (&signals, signo);
2555 }
2556
2557 if (!proc_set_traced_signals (pi, &signals))
2558 proc_error (pi, "pass_signals", __LINE__);
2559 }
2560
2561 /* Print status information about the child process. */
2562
2563 void
2564 procfs_target::files_info ()
2565 {
2566 struct inferior *inf = current_inferior ();
2567
2568 printf_filtered (_("\tUsing the running image of %s %s via /proc.\n"),
2569 inf->attach_flag? "attached": "child",
2570 target_pid_to_str (inferior_ptid).c_str ());
2571 }
2572
2573 /* Make it die. Wait for it to die. Clean up after it. Note: this
2574 should only be applied to the real process, not to an LWP, because
2575 of the check for parent-process. If we need this to work for an
2576 LWP, it needs some more logic. */
2577
2578 static void
2579 unconditionally_kill_inferior (procinfo *pi)
2580 {
2581 int parent_pid;
2582
2583 parent_pid = proc_parent_pid (pi);
2584 if (!proc_kill (pi, SIGKILL))
2585 proc_error (pi, "unconditionally_kill, proc_kill", __LINE__);
2586 destroy_procinfo (pi);
2587
2588 /* If pi is GDB's child, wait for it to die. */
2589 if (parent_pid == getpid ())
2590 /* FIXME: should we use waitpid to make sure we get the right event?
2591 Should we check the returned event? */
2592 {
2593 #if 0
2594 int status, ret;
2595
2596 ret = waitpid (pi->pid, &status, 0);
2597 #else
2598 wait (NULL);
2599 #endif
2600 }
2601 }
2602
2603 /* We're done debugging it, and we want it to go away. Then we want
2604 GDB to forget all about it. */
2605
2606 void
2607 procfs_target::kill ()
2608 {
2609 if (inferior_ptid != null_ptid) /* ? */
2610 {
2611 /* Find procinfo for main process. */
2612 procinfo *pi = find_procinfo (inferior_ptid.pid (), 0);
2613
2614 if (pi)
2615 unconditionally_kill_inferior (pi);
2616 target_mourn_inferior (inferior_ptid);
2617 }
2618 }
2619
2620 /* Forget we ever debugged this thing! */
2621
2622 void
2623 procfs_target::mourn_inferior ()
2624 {
2625 procinfo *pi;
2626
2627 if (inferior_ptid != null_ptid)
2628 {
2629 /* Find procinfo for main process. */
2630 pi = find_procinfo (inferior_ptid.pid (), 0);
2631 if (pi)
2632 destroy_procinfo (pi);
2633 }
2634
2635 generic_mourn_inferior ();
2636
2637 maybe_unpush_target ();
2638 }
2639
2640 /* When GDB forks to create a runnable inferior process, this function
2641 is called on the parent side of the fork. It's job is to do
2642 whatever is necessary to make the child ready to be debugged, and
2643 then wait for the child to synchronize. */
2644
2645 void
2646 procfs_target::procfs_init_inferior (int pid)
2647 {
2648 procinfo *pi;
2649 int fail;
2650 int lwpid;
2651
2652 pi = create_procinfo (pid, 0);
2653 if (pi == NULL)
2654 perror (_("procfs: out of memory in 'init_inferior'"));
2655
2656 if (!open_procinfo_files (pi, FD_CTL))
2657 proc_error (pi, "init_inferior, open_proc_files", __LINE__);
2658
2659 /*
2660 xmalloc // done
2661 open_procinfo_files // done
2662 link list // done
2663 prfillset (trace)
2664 procfs_notice_signals
2665 prfillset (fault)
2666 prdelset (FLTPAGE)
2667 */
2668
2669 /* If not stopped yet, wait for it to stop. */
2670 if (!(proc_flags (pi) & PR_STOPPED) && !(proc_wait_for_stop (pi)))
2671 dead_procinfo (pi, "init_inferior: wait_for_stop failed", KILL);
2672
2673 /* Save some of the /proc state to be restored if we detach. */
2674 /* FIXME: Why? In case another debugger was debugging it?
2675 We're it's parent, for Ghu's sake! */
2676 if (!proc_get_traced_signals (pi, &pi->saved_sigset))
2677 proc_error (pi, "init_inferior, get_traced_signals", __LINE__);
2678 if (!proc_get_held_signals (pi, &pi->saved_sighold))
2679 proc_error (pi, "init_inferior, get_held_signals", __LINE__);
2680 if (!proc_get_traced_faults (pi, &pi->saved_fltset))
2681 proc_error (pi, "init_inferior, get_traced_faults", __LINE__);
2682 if (!proc_get_traced_sysentry (pi, pi->saved_entryset))
2683 proc_error (pi, "init_inferior, get_traced_sysentry", __LINE__);
2684 if (!proc_get_traced_sysexit (pi, pi->saved_exitset))
2685 proc_error (pi, "init_inferior, get_traced_sysexit", __LINE__);
2686
2687 fail = procfs_debug_inferior (pi);
2688 if (fail != 0)
2689 proc_error (pi, "init_inferior (procfs_debug_inferior)", fail);
2690
2691 /* FIXME: logically, we should really be turning OFF run-on-last-close,
2692 and possibly even turning ON kill-on-last-close at this point. But
2693 I can't make that change without careful testing which I don't have
2694 time to do right now... */
2695 /* Turn on run-on-last-close flag so that the child
2696 will die if GDB goes away for some reason. */
2697 if (!proc_set_run_on_last_close (pi))
2698 proc_error (pi, "init_inferior, set_RLC", __LINE__);
2699
2700 /* We now have have access to the lwpid of the main thread/lwp. */
2701 lwpid = proc_get_current_thread (pi);
2702
2703 /* Create a procinfo for the main lwp. */
2704 create_procinfo (pid, lwpid);
2705
2706 /* We already have a main thread registered in the thread table at
2707 this point, but it didn't have any lwp info yet. Notify the core
2708 about it. This changes inferior_ptid as well. */
2709 thread_change_ptid (this, ptid_t (pid), ptid_t (pid, lwpid, 0));
2710
2711 gdb_startup_inferior (pid, START_INFERIOR_TRAPS_EXPECTED);
2712 }
2713
2714 /* When GDB forks to create a new process, this function is called on
2715 the child side of the fork before GDB exec's the user program. Its
2716 job is to make the child minimally debuggable, so that the parent
2717 GDB process can connect to the child and take over. This function
2718 should do only the minimum to make that possible, and to
2719 synchronize with the parent process. The parent process should
2720 take care of the details. */
2721
2722 static void
2723 procfs_set_exec_trap (void)
2724 {
2725 /* This routine called on the child side (inferior side)
2726 after GDB forks the inferior. It must use only local variables,
2727 because it may be sharing data space with its parent. */
2728
2729 procinfo *pi;
2730 sysset_t *exitset;
2731
2732 pi = create_procinfo (getpid (), 0);
2733 if (pi == NULL)
2734 perror_with_name (_("procfs: create_procinfo failed in child."));
2735
2736 if (open_procinfo_files (pi, FD_CTL) == 0)
2737 {
2738 proc_warn (pi, "set_exec_trap, open_proc_files", __LINE__);
2739 gdb_flush (gdb_stderr);
2740 /* No need to call "dead_procinfo", because we're going to
2741 exit. */
2742 _exit (127);
2743 }
2744
2745 exitset = XNEW (sysset_t);
2746 premptyset (exitset);
2747 praddset (exitset, SYS_execve);
2748
2749 if (!proc_set_traced_sysexit (pi, exitset))
2750 {
2751 proc_warn (pi, "set_exec_trap, set_traced_sysexit", __LINE__);
2752 gdb_flush (gdb_stderr);
2753 _exit (127);
2754 }
2755
2756 /* FIXME: should this be done in the parent instead? */
2757 /* Turn off inherit on fork flag so that all grand-children
2758 of gdb start with tracing flags cleared. */
2759 if (!proc_unset_inherit_on_fork (pi))
2760 proc_warn (pi, "set_exec_trap, unset_inherit", __LINE__);
2761
2762 /* Turn off run on last close flag, so that the child process
2763 cannot run away just because we close our handle on it.
2764 We want it to wait for the parent to attach. */
2765 if (!proc_unset_run_on_last_close (pi))
2766 proc_warn (pi, "set_exec_trap, unset_RLC", __LINE__);
2767
2768 /* FIXME: No need to destroy the procinfo --
2769 we have our own address space, and we're about to do an exec! */
2770 /*destroy_procinfo (pi);*/
2771 }
2772
2773 /* This function is called BEFORE gdb forks the inferior process. Its
2774 only real responsibility is to set things up for the fork, and tell
2775 GDB which two functions to call after the fork (one for the parent,
2776 and one for the child).
2777
2778 This function does a complicated search for a unix shell program,
2779 which it then uses to parse arguments and environment variables to
2780 be sent to the child. I wonder whether this code could not be
2781 abstracted out and shared with other unix targets such as
2782 inf-ptrace? */
2783
2784 void
2785 procfs_target::create_inferior (const char *exec_file,
2786 const std::string &allargs,
2787 char **env, int from_tty)
2788 {
2789 const char *shell_file = get_shell ();
2790 char *tryname;
2791 int pid;
2792
2793 if (strchr (shell_file, '/') == NULL)
2794 {
2795
2796 /* We will be looking down the PATH to find shell_file. If we
2797 just do this the normal way (via execlp, which operates by
2798 attempting an exec for each element of the PATH until it
2799 finds one which succeeds), then there will be an exec for
2800 each failed attempt, each of which will cause a PR_SYSEXIT
2801 stop, and we won't know how to distinguish the PR_SYSEXIT's
2802 for these failed execs with the ones for successful execs
2803 (whether the exec has succeeded is stored at that time in the
2804 carry bit or some such architecture-specific and
2805 non-ABI-specified place).
2806
2807 So I can't think of anything better than to search the PATH
2808 now. This has several disadvantages: (1) There is a race
2809 condition; if we find a file now and it is deleted before we
2810 exec it, we lose, even if the deletion leaves a valid file
2811 further down in the PATH, (2) there is no way to know exactly
2812 what an executable (in the sense of "capable of being
2813 exec'd") file is. Using access() loses because it may lose
2814 if the caller is the superuser; failing to use it loses if
2815 there are ACLs or some such. */
2816
2817 const char *p;
2818 const char *p1;
2819 /* FIXME-maybe: might want "set path" command so user can change what
2820 path is used from within GDB. */
2821 const char *path = getenv ("PATH");
2822 int len;
2823 struct stat statbuf;
2824
2825 if (path == NULL)
2826 path = "/bin:/usr/bin";
2827
2828 tryname = (char *) alloca (strlen (path) + strlen (shell_file) + 2);
2829 for (p = path; p != NULL; p = p1 ? p1 + 1: NULL)
2830 {
2831 p1 = strchr (p, ':');
2832 if (p1 != NULL)
2833 len = p1 - p;
2834 else
2835 len = strlen (p);
2836 strncpy (tryname, p, len);
2837 tryname[len] = '\0';
2838 strcat (tryname, "/");
2839 strcat (tryname, shell_file);
2840 if (access (tryname, X_OK) < 0)
2841 continue;
2842 if (stat (tryname, &statbuf) < 0)
2843 continue;
2844 if (!S_ISREG (statbuf.st_mode))
2845 /* We certainly need to reject directories. I'm not quite
2846 as sure about FIFOs, sockets, etc., but I kind of doubt
2847 that people want to exec() these things. */
2848 continue;
2849 break;
2850 }
2851 if (p == NULL)
2852 /* Not found. This must be an error rather than merely passing
2853 the file to execlp(), because execlp() would try all the
2854 exec()s, causing GDB to get confused. */
2855 error (_("procfs:%d -- Can't find shell %s in PATH"),
2856 __LINE__, shell_file);
2857
2858 shell_file = tryname;
2859 }
2860
2861 if (!target_is_pushed (this))
2862 push_target (this);
2863
2864 pid = fork_inferior (exec_file, allargs, env, procfs_set_exec_trap,
2865 NULL, NULL, shell_file, NULL);
2866
2867 /* We have something that executes now. We'll be running through
2868 the shell at this point (if startup-with-shell is true), but the
2869 pid shouldn't change. */
2870 thread_info *thr = add_thread_silent (this, ptid_t (pid));
2871 switch_to_thread (thr);
2872
2873 procfs_init_inferior (pid);
2874 }
2875
2876 /* An observer for the "inferior_created" event. */
2877
2878 static void
2879 procfs_inferior_created (struct target_ops *ops, int from_tty)
2880 {
2881 }
2882
2883 /* Callback for update_thread_list. Calls "add_thread". */
2884
2885 static int
2886 procfs_notice_thread (procinfo *pi, procinfo *thread, void *ptr)
2887 {
2888 ptid_t gdb_threadid = ptid_t (pi->pid, thread->tid, 0);
2889
2890 thread_info *thr = find_thread_ptid (&the_procfs_target, gdb_threadid);
2891 if (thr == NULL || thr->state == THREAD_EXITED)
2892 add_thread (&the_procfs_target, gdb_threadid);
2893
2894 return 0;
2895 }
2896
2897 /* Query all the threads that the target knows about, and give them
2898 back to GDB to add to its list. */
2899
2900 void
2901 procfs_target::update_thread_list ()
2902 {
2903 procinfo *pi;
2904
2905 prune_threads ();
2906
2907 /* Find procinfo for main process. */
2908 pi = find_procinfo_or_die (inferior_ptid.pid (), 0);
2909 proc_update_threads (pi);
2910 proc_iterate_over_threads (pi, procfs_notice_thread, NULL);
2911 }
2912
2913 /* Return true if the thread is still 'alive'. This guy doesn't
2914 really seem to be doing his job. Got to investigate how to tell
2915 when a thread is really gone. */
2916
2917 bool
2918 procfs_target::thread_alive (ptid_t ptid)
2919 {
2920 int proc, thread;
2921 procinfo *pi;
2922
2923 proc = ptid.pid ();
2924 thread = ptid.lwp ();
2925 /* If I don't know it, it ain't alive! */
2926 pi = find_procinfo (proc, thread);
2927 if (pi == NULL)
2928 return false;
2929
2930 /* If I can't get its status, it ain't alive!
2931 What's more, I need to forget about it! */
2932 if (!proc_get_status (pi))
2933 {
2934 destroy_procinfo (pi);
2935 return false;
2936 }
2937 /* I couldn't have got its status if it weren't alive, so it's
2938 alive. */
2939 return true;
2940 }
2941
2942 /* Convert PTID to a string. */
2943
2944 std::string
2945 procfs_target::pid_to_str (ptid_t ptid)
2946 {
2947 if (ptid.lwp () == 0)
2948 return string_printf ("process %d", ptid.pid ());
2949 else
2950 return string_printf ("LWP %ld", ptid.lwp ());
2951 }
2952
2953 /* Accepts an integer PID; Returns a string representing a file that
2954 can be opened to get the symbols for the child process. */
2955
2956 char *
2957 procfs_target::pid_to_exec_file (int pid)
2958 {
2959 static char buf[PATH_MAX];
2960 char name[PATH_MAX];
2961
2962 /* Solaris 11 introduced /proc/<proc-id>/execname. */
2963 xsnprintf (name, sizeof (name), "/proc/%d/execname", pid);
2964 scoped_fd fd (gdb_open_cloexec (name, O_RDONLY, 0));
2965 if (fd.get () < 0 || read (fd.get (), buf, PATH_MAX - 1) < 0)
2966 {
2967 /* If that fails, fall back to /proc/<proc-id>/path/a.out introduced in
2968 Solaris 10. */
2969 ssize_t len;
2970
2971 xsnprintf (name, sizeof (name), "/proc/%d/path/a.out", pid);
2972 len = readlink (name, buf, PATH_MAX - 1);
2973 if (len <= 0)
2974 strcpy (buf, name);
2975 else
2976 buf[len] = '\0';
2977 }
2978
2979 return buf;
2980 }
2981
2982 /* Insert a watchpoint. */
2983
2984 static int
2985 procfs_set_watchpoint (ptid_t ptid, CORE_ADDR addr, int len, int rwflag,
2986 int after)
2987 {
2988 int pflags = 0;
2989 procinfo *pi;
2990
2991 pi = find_procinfo_or_die (ptid.pid () == -1 ?
2992 inferior_ptid.pid () : ptid.pid (),
2993 0);
2994
2995 /* Translate from GDB's flags to /proc's. */
2996 if (len > 0) /* len == 0 means delete watchpoint. */
2997 {
2998 switch (rwflag) { /* FIXME: need an enum! */
2999 case hw_write: /* default watchpoint (write) */
3000 pflags = WA_WRITE;
3001 break;
3002 case hw_read: /* read watchpoint */
3003 pflags = WA_READ;
3004 break;
3005 case hw_access: /* access watchpoint */
3006 pflags = WA_READ | WA_WRITE;
3007 break;
3008 case hw_execute: /* execution HW breakpoint */
3009 pflags = WA_EXEC;
3010 break;
3011 default: /* Something weird. Return error. */
3012 return -1;
3013 }
3014 if (after) /* Stop after r/w access is completed. */
3015 pflags |= WA_TRAPAFTER;
3016 }
3017
3018 if (!proc_set_watchpoint (pi, addr, len, pflags))
3019 {
3020 if (errno == E2BIG) /* Typical error for no resources. */
3021 return -1; /* fail */
3022 /* GDB may try to remove the same watchpoint twice.
3023 If a remove request returns no match, don't error. */
3024 if (errno == ESRCH && len == 0)
3025 return 0; /* ignore */
3026 proc_error (pi, "set_watchpoint", __LINE__);
3027 }
3028 return 0;
3029 }
3030
3031 /* Return non-zero if we can set a hardware watchpoint of type TYPE. TYPE
3032 is one of bp_hardware_watchpoint, bp_read_watchpoint, bp_write_watchpoint,
3033 or bp_hardware_watchpoint. CNT is the number of watchpoints used so
3034 far. */
3035
3036 int
3037 procfs_target::can_use_hw_breakpoint (enum bptype type, int cnt, int othertype)
3038 {
3039 /* Due to the way that proc_set_watchpoint() is implemented, host
3040 and target pointers must be of the same size. If they are not,
3041 we can't use hardware watchpoints. This limitation is due to the
3042 fact that proc_set_watchpoint() calls
3043 procfs_address_to_host_pointer(); a close inspection of
3044 procfs_address_to_host_pointer will reveal that an internal error
3045 will be generated when the host and target pointer sizes are
3046 different. */
3047 struct type *ptr_type = builtin_type (target_gdbarch ())->builtin_data_ptr;
3048
3049 if (sizeof (void *) != TYPE_LENGTH (ptr_type))
3050 return 0;
3051
3052 /* Other tests here??? */
3053
3054 return 1;
3055 }
3056
3057 /* Returns non-zero if process is stopped on a hardware watchpoint
3058 fault, else returns zero. */
3059
3060 bool
3061 procfs_target::stopped_by_watchpoint ()
3062 {
3063 procinfo *pi;
3064
3065 pi = find_procinfo_or_die (inferior_ptid.pid (), 0);
3066
3067 if (proc_flags (pi) & (PR_STOPPED | PR_ISTOP))
3068 if (proc_why (pi) == PR_FAULTED)
3069 if (proc_what (pi) == FLTWATCH)
3070 return true;
3071 return false;
3072 }
3073
3074 /* Returns 1 if the OS knows the position of the triggered watchpoint,
3075 and sets *ADDR to that address. Returns 0 if OS cannot report that
3076 address. This function is only called if
3077 procfs_stopped_by_watchpoint returned 1, thus no further checks are
3078 done. The function also assumes that ADDR is not NULL. */
3079
3080 bool
3081 procfs_target::stopped_data_address (CORE_ADDR *addr)
3082 {
3083 procinfo *pi;
3084
3085 pi = find_procinfo_or_die (inferior_ptid.pid (), 0);
3086 return proc_watchpoint_address (pi, addr);
3087 }
3088
3089 int
3090 procfs_target::insert_watchpoint (CORE_ADDR addr, int len,
3091 enum target_hw_bp_type type,
3092 struct expression *cond)
3093 {
3094 if (!target_have_steppable_watchpoint
3095 && !gdbarch_have_nonsteppable_watchpoint (target_gdbarch ()))
3096 /* When a hardware watchpoint fires off the PC will be left at
3097 the instruction following the one which caused the
3098 watchpoint. It will *NOT* be necessary for GDB to step over
3099 the watchpoint. */
3100 return procfs_set_watchpoint (inferior_ptid, addr, len, type, 1);
3101 else
3102 /* When a hardware watchpoint fires off the PC will be left at
3103 the instruction which caused the watchpoint. It will be
3104 necessary for GDB to step over the watchpoint. */
3105 return procfs_set_watchpoint (inferior_ptid, addr, len, type, 0);
3106 }
3107
3108 int
3109 procfs_target::remove_watchpoint (CORE_ADDR addr, int len,
3110 enum target_hw_bp_type type,
3111 struct expression *cond)
3112 {
3113 return procfs_set_watchpoint (inferior_ptid, addr, 0, 0, 0);
3114 }
3115
3116 int
3117 procfs_target::region_ok_for_hw_watchpoint (CORE_ADDR addr, int len)
3118 {
3119 /* The man page for proc(4) on Solaris 2.6 and up says that the
3120 system can support "thousands" of hardware watchpoints, but gives
3121 no method for finding out how many; It doesn't say anything about
3122 the allowed size for the watched area either. So we just tell
3123 GDB 'yes'. */
3124 return 1;
3125 }
3126
3127 /* Memory Mappings Functions: */
3128
3129 /* Call a callback function once for each mapping, passing it the
3130 mapping, an optional secondary callback function, and some optional
3131 opaque data. Quit and return the first non-zero value returned
3132 from the callback.
3133
3134 PI is the procinfo struct for the process to be mapped. FUNC is
3135 the callback function to be called by this iterator. DATA is the
3136 optional opaque data to be passed to the callback function.
3137 CHILD_FUNC is the optional secondary function pointer to be passed
3138 to the child function. Returns the first non-zero return value
3139 from the callback function, or zero. */
3140
3141 static int
3142 iterate_over_mappings (procinfo *pi, find_memory_region_ftype child_func,
3143 void *data,
3144 int (*func) (struct prmap *map,
3145 find_memory_region_ftype child_func,
3146 void *data))
3147 {
3148 char pathname[MAX_PROC_NAME_SIZE];
3149 struct prmap *prmaps;
3150 struct prmap *prmap;
3151 int funcstat;
3152 int nmap;
3153 struct stat sbuf;
3154
3155 /* Get the number of mappings, allocate space,
3156 and read the mappings into prmaps. */
3157 /* Open map fd. */
3158 xsnprintf (pathname, sizeof (pathname), "/proc/%d/map", pi->pid);
3159
3160 scoped_fd map_fd (open (pathname, O_RDONLY));
3161 if (map_fd.get () < 0)
3162 proc_error (pi, "iterate_over_mappings (open)", __LINE__);
3163
3164 /* Use stat to determine the file size, and compute
3165 the number of prmap_t objects it contains. */
3166 if (fstat (map_fd.get (), &sbuf) != 0)
3167 proc_error (pi, "iterate_over_mappings (fstat)", __LINE__);
3168
3169 nmap = sbuf.st_size / sizeof (prmap_t);
3170 prmaps = (struct prmap *) alloca ((nmap + 1) * sizeof (*prmaps));
3171 if (read (map_fd.get (), (char *) prmaps, nmap * sizeof (*prmaps))
3172 != (nmap * sizeof (*prmaps)))
3173 proc_error (pi, "iterate_over_mappings (read)", __LINE__);
3174
3175 for (prmap = prmaps; nmap > 0; prmap++, nmap--)
3176 {
3177 funcstat = (*func) (prmap, child_func, data);
3178 if (funcstat != 0)
3179 return funcstat;
3180 }
3181
3182 return 0;
3183 }
3184
3185 /* Implements the to_find_memory_regions method. Calls an external
3186 function for each memory region.
3187 Returns the integer value returned by the callback. */
3188
3189 static int
3190 find_memory_regions_callback (struct prmap *map,
3191 find_memory_region_ftype func, void *data)
3192 {
3193 return (*func) ((CORE_ADDR) map->pr_vaddr,
3194 map->pr_size,
3195 (map->pr_mflags & MA_READ) != 0,
3196 (map->pr_mflags & MA_WRITE) != 0,
3197 (map->pr_mflags & MA_EXEC) != 0,
3198 1, /* MODIFIED is unknown, pass it as true. */
3199 data);
3200 }
3201
3202 /* External interface. Calls a callback function once for each
3203 mapped memory region in the child process, passing as arguments:
3204
3205 CORE_ADDR virtual_address,
3206 unsigned long size,
3207 int read, TRUE if region is readable by the child
3208 int write, TRUE if region is writable by the child
3209 int execute TRUE if region is executable by the child.
3210
3211 Stops iterating and returns the first non-zero value returned by
3212 the callback. */
3213
3214 int
3215 procfs_target::find_memory_regions (find_memory_region_ftype func, void *data)
3216 {
3217 procinfo *pi = find_procinfo_or_die (inferior_ptid.pid (), 0);
3218
3219 return iterate_over_mappings (pi, func, data,
3220 find_memory_regions_callback);
3221 }
3222
3223 /* Returns an ascii representation of a memory mapping's flags. */
3224
3225 static char *
3226 mappingflags (long flags)
3227 {
3228 static char asciiflags[8];
3229
3230 strcpy (asciiflags, "-------");
3231 if (flags & MA_STACK)
3232 asciiflags[1] = 's';
3233 if (flags & MA_BREAK)
3234 asciiflags[2] = 'b';
3235 if (flags & MA_SHARED)
3236 asciiflags[3] = 's';
3237 if (flags & MA_READ)
3238 asciiflags[4] = 'r';
3239 if (flags & MA_WRITE)
3240 asciiflags[5] = 'w';
3241 if (flags & MA_EXEC)
3242 asciiflags[6] = 'x';
3243 return (asciiflags);
3244 }
3245
3246 /* Callback function, does the actual work for 'info proc
3247 mappings'. */
3248
3249 static int
3250 info_mappings_callback (struct prmap *map, find_memory_region_ftype ignore,
3251 void *unused)
3252 {
3253 unsigned int pr_off;
3254
3255 pr_off = (unsigned int) map->pr_offset;
3256
3257 if (gdbarch_addr_bit (target_gdbarch ()) == 32)
3258 printf_filtered ("\t%#10lx %#10lx %#10lx %#10x %7s\n",
3259 (unsigned long) map->pr_vaddr,
3260 (unsigned long) map->pr_vaddr + map->pr_size - 1,
3261 (unsigned long) map->pr_size,
3262 pr_off,
3263 mappingflags (map->pr_mflags));
3264 else
3265 printf_filtered (" %#18lx %#18lx %#10lx %#10x %7s\n",
3266 (unsigned long) map->pr_vaddr,
3267 (unsigned long) map->pr_vaddr + map->pr_size - 1,
3268 (unsigned long) map->pr_size,
3269 pr_off,
3270 mappingflags (map->pr_mflags));
3271
3272 return 0;
3273 }
3274
3275 /* Implement the "info proc mappings" subcommand. */
3276
3277 static void
3278 info_proc_mappings (procinfo *pi, int summary)
3279 {
3280 if (summary)
3281 return; /* No output for summary mode. */
3282
3283 printf_filtered (_("Mapped address spaces:\n\n"));
3284 if (gdbarch_ptr_bit (target_gdbarch ()) == 32)
3285 printf_filtered ("\t%10s %10s %10s %10s %7s\n",
3286 "Start Addr",
3287 " End Addr",
3288 " Size",
3289 " Offset",
3290 "Flags");
3291 else
3292 printf_filtered (" %18s %18s %10s %10s %7s\n",
3293 "Start Addr",
3294 " End Addr",
3295 " Size",
3296 " Offset",
3297 "Flags");
3298
3299 iterate_over_mappings (pi, NULL, NULL, info_mappings_callback);
3300 printf_filtered ("\n");
3301 }
3302
3303 /* Implement the "info proc" command. */
3304
3305 bool
3306 procfs_target::info_proc (const char *args, enum info_proc_what what)
3307 {
3308 procinfo *process = NULL;
3309 procinfo *thread = NULL;
3310 char *tmp = NULL;
3311 int pid = 0;
3312 int tid = 0;
3313 int mappings = 0;
3314
3315 switch (what)
3316 {
3317 case IP_MINIMAL:
3318 break;
3319
3320 case IP_MAPPINGS:
3321 case IP_ALL:
3322 mappings = 1;
3323 break;
3324
3325 default:
3326 error (_("Not supported on this target."));
3327 }
3328
3329 gdb_argv built_argv (args);
3330 for (char *arg : built_argv)
3331 {
3332 if (isdigit (arg[0]))
3333 {
3334 pid = strtoul (arg, &tmp, 10);
3335 if (*tmp == '/')
3336 tid = strtoul (++tmp, NULL, 10);
3337 }
3338 else if (arg[0] == '/')
3339 {
3340 tid = strtoul (arg + 1, NULL, 10);
3341 }
3342 }
3343
3344 procinfo_up temporary_procinfo;
3345 if (pid == 0)
3346 pid = inferior_ptid.pid ();
3347 if (pid == 0)
3348 error (_("No current process: you must name one."));
3349 else
3350 {
3351 /* Have pid, will travel.
3352 First see if it's a process we're already debugging. */
3353 process = find_procinfo (pid, 0);
3354 if (process == NULL)
3355 {
3356 /* No. So open a procinfo for it, but
3357 remember to close it again when finished. */
3358 process = create_procinfo (pid, 0);
3359 temporary_procinfo.reset (process);
3360 if (!open_procinfo_files (process, FD_CTL))
3361 proc_error (process, "info proc, open_procinfo_files", __LINE__);
3362 }
3363 }
3364 if (tid != 0)
3365 thread = create_procinfo (pid, tid);
3366
3367 if (process)
3368 {
3369 printf_filtered (_("process %d flags:\n"), process->pid);
3370 proc_prettyprint_flags (proc_flags (process), 1);
3371 if (proc_flags (process) & (PR_STOPPED | PR_ISTOP))
3372 proc_prettyprint_why (proc_why (process), proc_what (process), 1);
3373 if (proc_get_nthreads (process) > 1)
3374 printf_filtered ("Process has %d threads.\n",
3375 proc_get_nthreads (process));
3376 }
3377 if (thread)
3378 {
3379 printf_filtered (_("thread %d flags:\n"), thread->tid);
3380 proc_prettyprint_flags (proc_flags (thread), 1);
3381 if (proc_flags (thread) & (PR_STOPPED | PR_ISTOP))
3382 proc_prettyprint_why (proc_why (thread), proc_what (thread), 1);
3383 }
3384
3385 if (mappings)
3386 info_proc_mappings (process, 0);
3387
3388 return true;
3389 }
3390
3391 /* Modify the status of the system call identified by SYSCALLNUM in
3392 the set of syscalls that are currently traced/debugged.
3393
3394 If ENTRY_OR_EXIT is set to PR_SYSENTRY, then the entry syscalls set
3395 will be updated. Otherwise, the exit syscalls set will be updated.
3396
3397 If MODE is FLAG_SET, then traces will be enabled. Otherwise, they
3398 will be disabled. */
3399
3400 static void
3401 proc_trace_syscalls_1 (procinfo *pi, int syscallnum, int entry_or_exit,
3402 int mode, int from_tty)
3403 {
3404 sysset_t *sysset;
3405
3406 if (entry_or_exit == PR_SYSENTRY)
3407 sysset = proc_get_traced_sysentry (pi, NULL);
3408 else
3409 sysset = proc_get_traced_sysexit (pi, NULL);
3410
3411 if (sysset == NULL)
3412 proc_error (pi, "proc-trace, get_traced_sysset", __LINE__);
3413
3414 if (mode == FLAG_SET)
3415 praddset (sysset, syscallnum);
3416 else
3417 prdelset (sysset, syscallnum);
3418
3419 if (entry_or_exit == PR_SYSENTRY)
3420 {
3421 if (!proc_set_traced_sysentry (pi, sysset))
3422 proc_error (pi, "proc-trace, set_traced_sysentry", __LINE__);
3423 }
3424 else
3425 {
3426 if (!proc_set_traced_sysexit (pi, sysset))
3427 proc_error (pi, "proc-trace, set_traced_sysexit", __LINE__);
3428 }
3429 }
3430
3431 static void
3432 proc_trace_syscalls (const char *args, int from_tty, int entry_or_exit, int mode)
3433 {
3434 procinfo *pi;
3435
3436 if (inferior_ptid.pid () <= 0)
3437 error (_("you must be debugging a process to use this command."));
3438
3439 if (args == NULL || args[0] == 0)
3440 error_no_arg (_("system call to trace"));
3441
3442 pi = find_procinfo_or_die (inferior_ptid.pid (), 0);
3443 if (isdigit (args[0]))
3444 {
3445 const int syscallnum = atoi (args);
3446
3447 proc_trace_syscalls_1 (pi, syscallnum, entry_or_exit, mode, from_tty);
3448 }
3449 }
3450
3451 static void
3452 proc_trace_sysentry_cmd (const char *args, int from_tty)
3453 {
3454 proc_trace_syscalls (args, from_tty, PR_SYSENTRY, FLAG_SET);
3455 }
3456
3457 static void
3458 proc_trace_sysexit_cmd (const char *args, int from_tty)
3459 {
3460 proc_trace_syscalls (args, from_tty, PR_SYSEXIT, FLAG_SET);
3461 }
3462
3463 static void
3464 proc_untrace_sysentry_cmd (const char *args, int from_tty)
3465 {
3466 proc_trace_syscalls (args, from_tty, PR_SYSENTRY, FLAG_RESET);
3467 }
3468
3469 static void
3470 proc_untrace_sysexit_cmd (const char *args, int from_tty)
3471 {
3472 proc_trace_syscalls (args, from_tty, PR_SYSEXIT, FLAG_RESET);
3473 }
3474
3475 void _initialize_procfs ();
3476 void
3477 _initialize_procfs ()
3478 {
3479 gdb::observers::inferior_created.attach (procfs_inferior_created);
3480
3481 add_com ("proc-trace-entry", no_class, proc_trace_sysentry_cmd,
3482 _("Give a trace of entries into the syscall."));
3483 add_com ("proc-trace-exit", no_class, proc_trace_sysexit_cmd,
3484 _("Give a trace of exits from the syscall."));
3485 add_com ("proc-untrace-entry", no_class, proc_untrace_sysentry_cmd,
3486 _("Cancel a trace of entries into the syscall."));
3487 add_com ("proc-untrace-exit", no_class, proc_untrace_sysexit_cmd,
3488 _("Cancel a trace of exits from the syscall."));
3489
3490 add_inf_child_target (&the_procfs_target);
3491 }
3492
3493 /* =================== END, GDB "MODULE" =================== */
3494
3495
3496
3497 /* miscellaneous stubs: */
3498
3499 /* The following satisfy a few random symbols mostly created by the
3500 solaris threads implementation, which I will chase down later. */
3501
3502 /* Return a pid for which we guarantee we will be able to find a
3503 'live' procinfo. */
3504
3505 ptid_t
3506 procfs_first_available (void)
3507 {
3508 return ptid_t (procinfo_list ? procinfo_list->pid : -1);
3509 }
3510
3511 /* =================== GCORE .NOTE "MODULE" =================== */
3512
3513 static char *
3514 procfs_do_thread_registers (bfd *obfd, ptid_t ptid,
3515 char *note_data, int *note_size,
3516 enum gdb_signal stop_signal)
3517 {
3518 struct regcache *regcache = get_thread_regcache (&the_procfs_target, ptid);
3519 gdb_gregset_t gregs;
3520 gdb_fpregset_t fpregs;
3521 unsigned long merged_pid;
3522
3523 merged_pid = ptid.lwp () << 16 | ptid.pid ();
3524
3525 /* This part is the old method for fetching registers.
3526 It should be replaced by the newer one using regsets
3527 once it is implemented in this platform:
3528 gdbarch_iterate_over_regset_sections(). */
3529
3530 target_fetch_registers (regcache, -1);
3531
3532 fill_gregset (regcache, &gregs, -1);
3533 note_data = (char *) elfcore_write_lwpstatus (obfd,
3534 note_data,
3535 note_size,
3536 merged_pid,
3537 stop_signal,
3538 &gregs);
3539 fill_fpregset (regcache, &fpregs, -1);
3540 note_data = (char *) elfcore_write_prfpreg (obfd,
3541 note_data,
3542 note_size,
3543 &fpregs,
3544 sizeof (fpregs));
3545
3546 return note_data;
3547 }
3548
3549 struct procfs_corefile_thread_data {
3550 bfd *obfd;
3551 char *note_data;
3552 int *note_size;
3553 enum gdb_signal stop_signal;
3554 };
3555
3556 static int
3557 procfs_corefile_thread_callback (procinfo *pi, procinfo *thread, void *data)
3558 {
3559 struct procfs_corefile_thread_data *args
3560 = (struct procfs_corefile_thread_data *) data;
3561
3562 if (pi != NULL)
3563 {
3564 ptid_t ptid = ptid_t (pi->pid, thread->tid, 0);
3565
3566 args->note_data = procfs_do_thread_registers (args->obfd, ptid,
3567 args->note_data,
3568 args->note_size,
3569 args->stop_signal);
3570 }
3571 return 0;
3572 }
3573
3574 static int
3575 find_signalled_thread (struct thread_info *info, void *data)
3576 {
3577 if (info->suspend.stop_signal != GDB_SIGNAL_0
3578 && info->ptid.pid () == inferior_ptid.pid ())
3579 return 1;
3580
3581 return 0;
3582 }
3583
3584 static enum gdb_signal
3585 find_stop_signal (void)
3586 {
3587 struct thread_info *info =
3588 iterate_over_threads (find_signalled_thread, NULL);
3589
3590 if (info)
3591 return info->suspend.stop_signal;
3592 else
3593 return GDB_SIGNAL_0;
3594 }
3595
3596 char *
3597 procfs_target::make_corefile_notes (bfd *obfd, int *note_size)
3598 {
3599 gdb_gregset_t gregs;
3600 char fname[16] = {'\0'};
3601 char psargs[80] = {'\0'};
3602 procinfo *pi = find_procinfo_or_die (inferior_ptid.pid (), 0);
3603 char *note_data = NULL;
3604 const char *inf_args;
3605 struct procfs_corefile_thread_data thread_args;
3606 enum gdb_signal stop_signal;
3607
3608 if (get_exec_file (0))
3609 {
3610 strncpy (fname, lbasename (get_exec_file (0)), sizeof (fname));
3611 fname[sizeof (fname) - 1] = 0;
3612 strncpy (psargs, get_exec_file (0), sizeof (psargs));
3613 psargs[sizeof (psargs) - 1] = 0;
3614
3615 inf_args = get_inferior_args ();
3616 if (inf_args && *inf_args
3617 && (strlen (inf_args)
3618 < ((int) sizeof (psargs) - (int) strlen (psargs))))
3619 {
3620 strncat (psargs, " ",
3621 sizeof (psargs) - strlen (psargs));
3622 strncat (psargs, inf_args,
3623 sizeof (psargs) - strlen (psargs));
3624 }
3625 }
3626
3627 note_data = (char *) elfcore_write_prpsinfo (obfd,
3628 note_data,
3629 note_size,
3630 fname,
3631 psargs);
3632
3633 stop_signal = find_stop_signal ();
3634
3635 fill_gregset (get_current_regcache (), &gregs, -1);
3636 note_data = elfcore_write_pstatus (obfd, note_data, note_size,
3637 inferior_ptid.pid (),
3638 stop_signal, &gregs);
3639
3640 thread_args.obfd = obfd;
3641 thread_args.note_data = note_data;
3642 thread_args.note_size = note_size;
3643 thread_args.stop_signal = stop_signal;
3644 proc_iterate_over_threads (pi, procfs_corefile_thread_callback,
3645 &thread_args);
3646 note_data = thread_args.note_data;
3647
3648 gdb::optional<gdb::byte_vector> auxv =
3649 target_read_alloc (current_top_target (), TARGET_OBJECT_AUXV, NULL);
3650 if (auxv && !auxv->empty ())
3651 note_data = elfcore_write_note (obfd, note_data, note_size,
3652 "CORE", NT_AUXV, auxv->data (),
3653 auxv->size ());
3654
3655 return note_data;
3656 }
3657 /* =================== END GCORE .NOTE "MODULE" =================== */
This page took 0.098742 seconds and 5 git commands to generate.