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