common/
[deliverable/binutils-gdb.git] / gdb / gdbserver / linux-low.c
CommitLineData
da6d8c04 1/* Low level interface to ptrace, for the remote server for GDB.
545587ee 2 Copyright (C) 1995, 1996, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
4c38e0a4 3 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
da6d8c04
DJ
4
5 This file is part of GDB.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
a9762ec7 9 the Free Software Foundation; either version 3 of the License, or
da6d8c04
DJ
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
a9762ec7 18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
da6d8c04
DJ
19
20#include "server.h"
58caa3dc 21#include "linux-low.h"
da6d8c04 22
58caa3dc 23#include <sys/wait.h>
da6d8c04
DJ
24#include <stdio.h>
25#include <sys/param.h>
da6d8c04 26#include <sys/ptrace.h>
da6d8c04
DJ
27#include <signal.h>
28#include <sys/ioctl.h>
29#include <fcntl.h>
d07c63e7 30#include <string.h>
0a30fbc4
DJ
31#include <stdlib.h>
32#include <unistd.h>
fa6a77dc 33#include <errno.h>
fd500816 34#include <sys/syscall.h>
f9387fc3 35#include <sched.h>
07e059b5
VP
36#include <ctype.h>
37#include <pwd.h>
38#include <sys/types.h>
39#include <dirent.h>
efcbbd14
UW
40#include <sys/stat.h>
41#include <sys/vfs.h>
957f3f49
DE
42#ifndef ELFMAG0
43/* Don't include <linux/elf.h> here. If it got included by gdb_proc_service.h
44 then ELFMAG0 will have been defined. If it didn't get included by
45 gdb_proc_service.h then including it will likely introduce a duplicate
46 definition of elf_fpregset_t. */
47#include <elf.h>
48#endif
efcbbd14
UW
49
50#ifndef SPUFS_MAGIC
51#define SPUFS_MAGIC 0x23c9b64e
52#endif
da6d8c04 53
32ca6d61
DJ
54#ifndef PTRACE_GETSIGINFO
55# define PTRACE_GETSIGINFO 0x4202
56# define PTRACE_SETSIGINFO 0x4203
57#endif
58
fd462a61
DJ
59#ifndef O_LARGEFILE
60#define O_LARGEFILE 0
61#endif
62
24a09b5f
DJ
63/* If the system headers did not provide the constants, hard-code the normal
64 values. */
65#ifndef PTRACE_EVENT_FORK
66
67#define PTRACE_SETOPTIONS 0x4200
68#define PTRACE_GETEVENTMSG 0x4201
69
70/* options set using PTRACE_SETOPTIONS */
71#define PTRACE_O_TRACESYSGOOD 0x00000001
72#define PTRACE_O_TRACEFORK 0x00000002
73#define PTRACE_O_TRACEVFORK 0x00000004
74#define PTRACE_O_TRACECLONE 0x00000008
75#define PTRACE_O_TRACEEXEC 0x00000010
76#define PTRACE_O_TRACEVFORKDONE 0x00000020
77#define PTRACE_O_TRACEEXIT 0x00000040
78
79/* Wait extended result codes for the above trace options. */
80#define PTRACE_EVENT_FORK 1
81#define PTRACE_EVENT_VFORK 2
82#define PTRACE_EVENT_CLONE 3
83#define PTRACE_EVENT_EXEC 4
84#define PTRACE_EVENT_VFORK_DONE 5
85#define PTRACE_EVENT_EXIT 6
86
87#endif /* PTRACE_EVENT_FORK */
88
89/* We can't always assume that this flag is available, but all systems
90 with the ptrace event handlers also have __WALL, so it's safe to use
91 in some contexts. */
92#ifndef __WALL
93#define __WALL 0x40000000 /* Wait for any child. */
94#endif
95
ec8ebe72
DE
96#ifndef W_STOPCODE
97#define W_STOPCODE(sig) ((sig) << 8 | 0x7f)
98#endif
99
42c81e2a
DJ
100#ifdef __UCLIBC__
101#if !(defined(__UCLIBC_HAS_MMU__) || defined(__ARCH_HAS_MMU__))
102#define HAS_NOMMU
103#endif
104#endif
105
24a09b5f
DJ
106/* ``all_threads'' is keyed by the LWP ID, which we use as the GDB protocol
107 representation of the thread ID.
611cb4a5 108
54a0b537 109 ``all_lwps'' is keyed by the process ID - which on Linux is (presently)
95954743
PA
110 the same as the LWP ID.
111
112 ``all_processes'' is keyed by the "overall process ID", which
113 GNU/Linux calls tgid, "thread group ID". */
0d62e5e8 114
54a0b537 115struct inferior_list all_lwps;
0d62e5e8 116
24a09b5f
DJ
117/* A list of all unknown processes which receive stop signals. Some other
118 process will presumably claim each of these as forked children
119 momentarily. */
120
121struct inferior_list stopped_pids;
122
0d62e5e8
DJ
123/* FIXME this is a bit of a hack, and could be removed. */
124int stopping_threads;
125
126/* FIXME make into a target method? */
24a09b5f 127int using_threads = 1;
24a09b5f 128
95954743
PA
129/* This flag is true iff we've just created or attached to our first
130 inferior but it has not stopped yet. As soon as it does, we need
131 to call the low target's arch_setup callback. Doing this only on
132 the first inferior avoids reinializing the architecture on every
133 inferior, and avoids messing with the register caches of the
134 already running inferiors. NOTE: this assumes all inferiors under
135 control of gdbserver have the same architecture. */
d61ddec4
UW
136static int new_inferior;
137
2acc282a 138static void linux_resume_one_lwp (struct lwp_info *lwp,
54a0b537 139 int step, int signal, siginfo_t *info);
2bd7c093 140static void linux_resume (struct thread_resume *resume_info, size_t n);
54a0b537 141static void stop_all_lwps (void);
95954743 142static int linux_wait_for_event (ptid_t ptid, int *wstat, int options);
54a0b537 143static int check_removed_breakpoint (struct lwp_info *event_child);
95954743 144static void *add_lwp (ptid_t ptid);
c35fafde 145static int linux_stopped_by_watchpoint (void);
95954743 146static void mark_lwp_dead (struct lwp_info *lwp, int wstat);
dc146f7c 147static int linux_core_of_thread (ptid_t ptid);
0d62e5e8
DJ
148
149struct pending_signals
150{
151 int signal;
32ca6d61 152 siginfo_t info;
0d62e5e8
DJ
153 struct pending_signals *prev;
154};
611cb4a5 155
14ce3065
DE
156#define PTRACE_ARG3_TYPE void *
157#define PTRACE_ARG4_TYPE void *
c6ecbae5 158#define PTRACE_XFER_TYPE long
da6d8c04 159
58caa3dc 160#ifdef HAVE_LINUX_REGSETS
52fa2412
UW
161static char *disabled_regsets;
162static int num_regsets;
58caa3dc
DJ
163#endif
164
bd99dc85
PA
165/* The read/write ends of the pipe registered as waitable file in the
166 event loop. */
167static int linux_event_pipe[2] = { -1, -1 };
168
169/* True if we're currently in async mode. */
170#define target_is_async_p() (linux_event_pipe[0] != -1)
171
172static void send_sigstop (struct inferior_list_entry *entry);
173static void wait_for_sigstop (struct inferior_list_entry *entry);
174
d0722149
DE
175/* Accepts an integer PID; Returns a string representing a file that
176 can be opened to get info for the child process.
177 Space for the result is malloc'd, caller must free. */
178
179char *
180linux_child_pid_to_exec_file (int pid)
181{
182 char *name1, *name2;
183
184 name1 = xmalloc (MAXPATHLEN);
185 name2 = xmalloc (MAXPATHLEN);
186 memset (name2, 0, MAXPATHLEN);
187
188 sprintf (name1, "/proc/%d/exe", pid);
189 if (readlink (name1, name2, MAXPATHLEN) > 0)
190 {
191 free (name1);
192 return name2;
193 }
194 else
195 {
196 free (name2);
197 return name1;
198 }
199}
200
201/* Return non-zero if HEADER is a 64-bit ELF file. */
202
203static int
957f3f49 204elf_64_header_p (const Elf64_Ehdr *header)
d0722149
DE
205{
206 return (header->e_ident[EI_MAG0] == ELFMAG0
207 && header->e_ident[EI_MAG1] == ELFMAG1
208 && header->e_ident[EI_MAG2] == ELFMAG2
209 && header->e_ident[EI_MAG3] == ELFMAG3
210 && header->e_ident[EI_CLASS] == ELFCLASS64);
211}
212
213/* Return non-zero if FILE is a 64-bit ELF file,
214 zero if the file is not a 64-bit ELF file,
215 and -1 if the file is not accessible or doesn't exist. */
216
217int
218elf_64_file_p (const char *file)
219{
957f3f49 220 Elf64_Ehdr header;
d0722149
DE
221 int fd;
222
223 fd = open (file, O_RDONLY);
224 if (fd < 0)
225 return -1;
226
227 if (read (fd, &header, sizeof (header)) != sizeof (header))
228 {
229 close (fd);
230 return 0;
231 }
232 close (fd);
233
234 return elf_64_header_p (&header);
235}
236
bd99dc85
PA
237static void
238delete_lwp (struct lwp_info *lwp)
239{
240 remove_thread (get_lwp_thread (lwp));
241 remove_inferior (&all_lwps, &lwp->head);
aa5ca48f 242 free (lwp->arch_private);
bd99dc85
PA
243 free (lwp);
244}
245
95954743
PA
246/* Add a process to the common process list, and set its private
247 data. */
248
249static struct process_info *
250linux_add_process (int pid, int attached)
251{
252 struct process_info *proc;
253
254 /* Is this the first process? If so, then set the arch. */
255 if (all_processes.head == NULL)
256 new_inferior = 1;
257
258 proc = add_process (pid, attached);
259 proc->private = xcalloc (1, sizeof (*proc->private));
260
aa5ca48f
DE
261 if (the_low_target.new_process != NULL)
262 proc->private->arch_private = the_low_target.new_process ();
263
95954743
PA
264 return proc;
265}
266
5091eb23
DE
267/* Remove a process from the common process list,
268 also freeing all private data. */
269
270static void
ca5c370d 271linux_remove_process (struct process_info *process)
5091eb23 272{
cdbfd419
PP
273 struct process_info_private *priv = process->private;
274
cdbfd419
PP
275 free (priv->arch_private);
276 free (priv);
5091eb23
DE
277 remove_process (process);
278}
279
07d4f67e
DE
280/* Wrapper function for waitpid which handles EINTR, and emulates
281 __WALL for systems where that is not available. */
282
283static int
284my_waitpid (int pid, int *status, int flags)
285{
286 int ret, out_errno;
287
288 if (debug_threads)
289 fprintf (stderr, "my_waitpid (%d, 0x%x)\n", pid, flags);
290
291 if (flags & __WALL)
292 {
293 sigset_t block_mask, org_mask, wake_mask;
294 int wnohang;
295
296 wnohang = (flags & WNOHANG) != 0;
297 flags &= ~(__WALL | __WCLONE);
298 flags |= WNOHANG;
299
300 /* Block all signals while here. This avoids knowing about
301 LinuxThread's signals. */
302 sigfillset (&block_mask);
303 sigprocmask (SIG_BLOCK, &block_mask, &org_mask);
304
305 /* ... except during the sigsuspend below. */
306 sigemptyset (&wake_mask);
307
308 while (1)
309 {
310 /* Since all signals are blocked, there's no need to check
311 for EINTR here. */
312 ret = waitpid (pid, status, flags);
313 out_errno = errno;
314
315 if (ret == -1 && out_errno != ECHILD)
316 break;
317 else if (ret > 0)
318 break;
319
320 if (flags & __WCLONE)
321 {
322 /* We've tried both flavors now. If WNOHANG is set,
323 there's nothing else to do, just bail out. */
324 if (wnohang)
325 break;
326
327 if (debug_threads)
328 fprintf (stderr, "blocking\n");
329
330 /* Block waiting for signals. */
331 sigsuspend (&wake_mask);
332 }
333
334 flags ^= __WCLONE;
335 }
336
337 sigprocmask (SIG_SETMASK, &org_mask, NULL);
338 }
339 else
340 {
341 do
342 ret = waitpid (pid, status, flags);
343 while (ret == -1 && errno == EINTR);
344 out_errno = errno;
345 }
346
347 if (debug_threads)
348 fprintf (stderr, "my_waitpid (%d, 0x%x): status(%x), %d\n",
349 pid, flags, status ? *status : -1, ret);
350
351 errno = out_errno;
352 return ret;
353}
354
bd99dc85
PA
355/* Handle a GNU/Linux extended wait response. If we see a clone
356 event, we need to add the new LWP to our list (and not report the
357 trap to higher layers). */
0d62e5e8 358
24a09b5f 359static void
54a0b537 360handle_extended_wait (struct lwp_info *event_child, int wstat)
24a09b5f
DJ
361{
362 int event = wstat >> 16;
54a0b537 363 struct lwp_info *new_lwp;
24a09b5f
DJ
364
365 if (event == PTRACE_EVENT_CLONE)
366 {
95954743 367 ptid_t ptid;
24a09b5f 368 unsigned long new_pid;
836acd6d 369 int ret, status = W_STOPCODE (SIGSTOP);
24a09b5f 370
bd99dc85 371 ptrace (PTRACE_GETEVENTMSG, lwpid_of (event_child), 0, &new_pid);
24a09b5f
DJ
372
373 /* If we haven't already seen the new PID stop, wait for it now. */
374 if (! pull_pid_from_list (&stopped_pids, new_pid))
375 {
376 /* The new child has a pending SIGSTOP. We can't affect it until it
377 hits the SIGSTOP, but we're already attached. */
378
97438e3f 379 ret = my_waitpid (new_pid, &status, __WALL);
24a09b5f
DJ
380
381 if (ret == -1)
382 perror_with_name ("waiting for new child");
383 else if (ret != new_pid)
384 warning ("wait returned unexpected PID %d", ret);
da5898ce 385 else if (!WIFSTOPPED (status))
24a09b5f
DJ
386 warning ("wait returned unexpected status 0x%x", status);
387 }
388
14ce3065 389 ptrace (PTRACE_SETOPTIONS, new_pid, 0, (PTRACE_ARG4_TYPE) PTRACE_O_TRACECLONE);
24a09b5f 390
95954743
PA
391 ptid = ptid_build (pid_of (event_child), new_pid, 0);
392 new_lwp = (struct lwp_info *) add_lwp (ptid);
393 add_thread (ptid, new_lwp);
24a09b5f 394
e27d73f6
DE
395 /* Either we're going to immediately resume the new thread
396 or leave it stopped. linux_resume_one_lwp is a nop if it
397 thinks the thread is currently running, so set this first
398 before calling linux_resume_one_lwp. */
399 new_lwp->stopped = 1;
400
da5898ce
DJ
401 /* Normally we will get the pending SIGSTOP. But in some cases
402 we might get another signal delivered to the group first.
f21cc1a2 403 If we do get another signal, be sure not to lose it. */
da5898ce
DJ
404 if (WSTOPSIG (status) == SIGSTOP)
405 {
e27d73f6
DE
406 if (! stopping_threads)
407 linux_resume_one_lwp (new_lwp, 0, 0, NULL);
da5898ce 408 }
24a09b5f 409 else
da5898ce 410 {
54a0b537 411 new_lwp->stop_expected = 1;
da5898ce
DJ
412 if (stopping_threads)
413 {
54a0b537
PA
414 new_lwp->status_pending_p = 1;
415 new_lwp->status_pending = status;
da5898ce
DJ
416 }
417 else
418 /* Pass the signal on. This is what GDB does - except
419 shouldn't we really report it instead? */
e27d73f6 420 linux_resume_one_lwp (new_lwp, 0, WSTOPSIG (status), NULL);
da5898ce 421 }
24a09b5f
DJ
422
423 /* Always resume the current thread. If we are stopping
424 threads, it will have a pending SIGSTOP; we may as well
425 collect it now. */
2acc282a 426 linux_resume_one_lwp (event_child, event_child->stepping, 0, NULL);
24a09b5f
DJ
427 }
428}
429
0d62e5e8
DJ
430/* This function should only be called if the process got a SIGTRAP.
431 The SIGTRAP could mean several things.
432
433 On i386, where decr_pc_after_break is non-zero:
434 If we were single-stepping this process using PTRACE_SINGLESTEP,
435 we will get only the one SIGTRAP (even if the instruction we
436 stepped over was a breakpoint). The value of $eip will be the
437 next instruction.
438 If we continue the process using PTRACE_CONT, we will get a
439 SIGTRAP when we hit a breakpoint. The value of $eip will be
440 the instruction after the breakpoint (i.e. needs to be
441 decremented). If we report the SIGTRAP to GDB, we must also
442 report the undecremented PC. If we cancel the SIGTRAP, we
443 must resume at the decremented PC.
444
445 (Presumably, not yet tested) On a non-decr_pc_after_break machine
446 with hardware or kernel single-step:
447 If we single-step over a breakpoint instruction, our PC will
448 point at the following instruction. If we continue and hit a
449 breakpoint instruction, our PC will point at the breakpoint
450 instruction. */
451
452static CORE_ADDR
453get_stop_pc (void)
454{
442ea881
PA
455 struct regcache *regcache = get_thread_regcache (current_inferior, 1);
456 CORE_ADDR stop_pc = (*the_low_target.get_pc) (regcache);
0d62e5e8 457
47c0c975
DE
458 if (! get_thread_lwp (current_inferior)->stepping)
459 stop_pc -= the_low_target.decr_pc_after_break;
460
461 if (debug_threads)
462 fprintf (stderr, "stop pc is 0x%lx\n", (long) stop_pc);
463
464 return stop_pc;
0d62e5e8 465}
ce3a066d 466
0d62e5e8 467static void *
95954743 468add_lwp (ptid_t ptid)
611cb4a5 469{
54a0b537 470 struct lwp_info *lwp;
0d62e5e8 471
54a0b537
PA
472 lwp = (struct lwp_info *) xmalloc (sizeof (*lwp));
473 memset (lwp, 0, sizeof (*lwp));
0d62e5e8 474
95954743 475 lwp->head.id = ptid;
0d62e5e8 476
aa5ca48f
DE
477 if (the_low_target.new_thread != NULL)
478 lwp->arch_private = the_low_target.new_thread ();
479
54a0b537 480 add_inferior_to_list (&all_lwps, &lwp->head);
0d62e5e8 481
54a0b537 482 return lwp;
0d62e5e8 483}
611cb4a5 484
da6d8c04
DJ
485/* Start an inferior process and returns its pid.
486 ALLARGS is a vector of program-name and args. */
487
ce3a066d
DJ
488static int
489linux_create_inferior (char *program, char **allargs)
da6d8c04 490{
a6dbe5df 491 struct lwp_info *new_lwp;
da6d8c04 492 int pid;
95954743 493 ptid_t ptid;
da6d8c04 494
42c81e2a 495#if defined(__UCLIBC__) && defined(HAS_NOMMU)
52fb6437
NS
496 pid = vfork ();
497#else
da6d8c04 498 pid = fork ();
52fb6437 499#endif
da6d8c04
DJ
500 if (pid < 0)
501 perror_with_name ("fork");
502
503 if (pid == 0)
504 {
505 ptrace (PTRACE_TRACEME, 0, 0, 0);
506
60c3d7b0 507#ifdef __SIGRTMIN /* Bionic doesn't use SIGRTMIN the way glibc does. */
254787d4 508 signal (__SIGRTMIN + 1, SIG_DFL);
60c3d7b0 509#endif
0d62e5e8 510
a9fa9f7d
DJ
511 setpgid (0, 0);
512
2b876972
DJ
513 execv (program, allargs);
514 if (errno == ENOENT)
515 execvp (program, allargs);
da6d8c04
DJ
516
517 fprintf (stderr, "Cannot exec %s: %s.\n", program,
d07c63e7 518 strerror (errno));
da6d8c04
DJ
519 fflush (stderr);
520 _exit (0177);
521 }
522
95954743
PA
523 linux_add_process (pid, 0);
524
525 ptid = ptid_build (pid, pid, 0);
526 new_lwp = add_lwp (ptid);
527 add_thread (ptid, new_lwp);
a6dbe5df 528 new_lwp->must_set_ptrace_flags = 1;
611cb4a5 529
a9fa9f7d 530 return pid;
da6d8c04
DJ
531}
532
533/* Attach to an inferior process. */
534
95954743
PA
535static void
536linux_attach_lwp_1 (unsigned long lwpid, int initial)
da6d8c04 537{
95954743 538 ptid_t ptid;
54a0b537 539 struct lwp_info *new_lwp;
611cb4a5 540
95954743 541 if (ptrace (PTRACE_ATTACH, lwpid, 0, 0) != 0)
da6d8c04 542 {
95954743 543 if (!initial)
2d717e4f
DJ
544 {
545 /* If we fail to attach to an LWP, just warn. */
95954743 546 fprintf (stderr, "Cannot attach to lwp %ld: %s (%d)\n", lwpid,
2d717e4f
DJ
547 strerror (errno), errno);
548 fflush (stderr);
549 return;
550 }
551 else
552 /* If we fail to attach to a process, report an error. */
95954743 553 error ("Cannot attach to lwp %ld: %s (%d)\n", lwpid,
43d5792c 554 strerror (errno), errno);
da6d8c04
DJ
555 }
556
95954743
PA
557 if (initial)
558 /* NOTE/FIXME: This lwp might have not been the tgid. */
559 ptid = ptid_build (lwpid, lwpid, 0);
560 else
561 {
562 /* Note that extracting the pid from the current inferior is
563 safe, since we're always called in the context of the same
564 process as this new thread. */
565 int pid = pid_of (get_thread_lwp (current_inferior));
566 ptid = ptid_build (pid, lwpid, 0);
567 }
24a09b5f 568
95954743
PA
569 new_lwp = (struct lwp_info *) add_lwp (ptid);
570 add_thread (ptid, new_lwp);
0d62e5e8 571
a6dbe5df
PA
572 /* We need to wait for SIGSTOP before being able to make the next
573 ptrace call on this LWP. */
574 new_lwp->must_set_ptrace_flags = 1;
575
0d62e5e8 576 /* The next time we wait for this LWP we'll see a SIGSTOP as PTRACE_ATTACH
0e21c1ec
DE
577 brings it to a halt.
578
579 There are several cases to consider here:
580
581 1) gdbserver has already attached to the process and is being notified
1b3f6016
PA
582 of a new thread that is being created.
583 In this case we should ignore that SIGSTOP and resume the process.
584 This is handled below by setting stop_expected = 1.
0e21c1ec
DE
585
586 2) This is the first thread (the process thread), and we're attaching
1b3f6016
PA
587 to it via attach_inferior.
588 In this case we want the process thread to stop.
589 This is handled by having linux_attach clear stop_expected after
590 we return.
591 ??? If the process already has several threads we leave the other
592 threads running.
0e21c1ec
DE
593
594 3) GDB is connecting to gdbserver and is requesting an enumeration of all
1b3f6016
PA
595 existing threads.
596 In this case we want the thread to stop.
597 FIXME: This case is currently not properly handled.
598 We should wait for the SIGSTOP but don't. Things work apparently
599 because enough time passes between when we ptrace (ATTACH) and when
600 gdb makes the next ptrace call on the thread.
0d62e5e8
DJ
601
602 On the other hand, if we are currently trying to stop all threads, we
603 should treat the new thread as if we had sent it a SIGSTOP. This works
54a0b537 604 because we are guaranteed that the add_lwp call above added us to the
0e21c1ec
DE
605 end of the list, and so the new thread has not yet reached
606 wait_for_sigstop (but will). */
0d62e5e8 607 if (! stopping_threads)
54a0b537 608 new_lwp->stop_expected = 1;
0d62e5e8
DJ
609}
610
95954743
PA
611void
612linux_attach_lwp (unsigned long lwpid)
613{
614 linux_attach_lwp_1 (lwpid, 0);
615}
616
0d62e5e8 617int
a1928bad 618linux_attach (unsigned long pid)
0d62e5e8 619{
54a0b537 620 struct lwp_info *lwp;
0d62e5e8 621
95954743
PA
622 linux_attach_lwp_1 (pid, 1);
623
624 linux_add_process (pid, 1);
0d62e5e8 625
bd99dc85
PA
626 if (!non_stop)
627 {
628 /* Don't ignore the initial SIGSTOP if we just attached to this
629 process. It will be collected by wait shortly. */
95954743
PA
630 lwp = (struct lwp_info *) find_inferior_id (&all_lwps,
631 ptid_build (pid, pid, 0));
bd99dc85
PA
632 lwp->stop_expected = 0;
633 }
0d62e5e8 634
95954743
PA
635 return 0;
636}
637
638struct counter
639{
640 int pid;
641 int count;
642};
643
644static int
645second_thread_of_pid_p (struct inferior_list_entry *entry, void *args)
646{
647 struct counter *counter = args;
648
649 if (ptid_get_pid (entry->id) == counter->pid)
650 {
651 if (++counter->count > 1)
652 return 1;
653 }
d61ddec4 654
da6d8c04
DJ
655 return 0;
656}
657
95954743
PA
658static int
659last_thread_of_process_p (struct thread_info *thread)
660{
661 ptid_t ptid = ((struct inferior_list_entry *)thread)->id;
662 int pid = ptid_get_pid (ptid);
663 struct counter counter = { pid , 0 };
da6d8c04 664
95954743
PA
665 return (find_inferior (&all_threads,
666 second_thread_of_pid_p, &counter) == NULL);
667}
668
669/* Kill the inferior lwp. */
670
671static int
672linux_kill_one_lwp (struct inferior_list_entry *entry, void *args)
da6d8c04 673{
0d62e5e8 674 struct thread_info *thread = (struct thread_info *) entry;
54a0b537 675 struct lwp_info *lwp = get_thread_lwp (thread);
0d62e5e8 676 int wstat;
95954743
PA
677 int pid = * (int *) args;
678
679 if (ptid_get_pid (entry->id) != pid)
680 return 0;
0d62e5e8 681
fd500816
DJ
682 /* We avoid killing the first thread here, because of a Linux kernel (at
683 least 2.6.0-test7 through 2.6.8-rc4) bug; if we kill the parent before
684 the children get a chance to be reaped, it will remain a zombie
685 forever. */
95954743 686
12b42a12 687 if (lwpid_of (lwp) == pid)
95954743
PA
688 {
689 if (debug_threads)
690 fprintf (stderr, "lkop: is last of process %s\n",
691 target_pid_to_str (entry->id));
692 return 0;
693 }
fd500816 694
bd99dc85
PA
695 /* If we're killing a running inferior, make sure it is stopped
696 first, as PTRACE_KILL will not work otherwise. */
697 if (!lwp->stopped)
698 send_sigstop (&lwp->head);
699
0d62e5e8
DJ
700 do
701 {
bd99dc85 702 ptrace (PTRACE_KILL, lwpid_of (lwp), 0, 0);
0d62e5e8
DJ
703
704 /* Make sure it died. The loop is most likely unnecessary. */
95954743 705 pid = linux_wait_for_event (lwp->head.id, &wstat, __WALL);
bd99dc85 706 } while (pid > 0 && WIFSTOPPED (wstat));
95954743
PA
707
708 return 0;
da6d8c04
DJ
709}
710
95954743
PA
711static int
712linux_kill (int pid)
0d62e5e8 713{
95954743 714 struct process_info *process;
54a0b537 715 struct lwp_info *lwp;
95954743 716 struct thread_info *thread;
fd500816 717 int wstat;
95954743 718 int lwpid;
fd500816 719
95954743
PA
720 process = find_process_pid (pid);
721 if (process == NULL)
722 return -1;
9d606399 723
95954743 724 find_inferior (&all_threads, linux_kill_one_lwp, &pid);
fd500816 725
54a0b537 726 /* See the comment in linux_kill_one_lwp. We did not kill the first
fd500816 727 thread in the list, so do so now. */
95954743
PA
728 lwp = find_lwp_pid (pid_to_ptid (pid));
729 thread = get_lwp_thread (lwp);
bd99dc85
PA
730
731 if (debug_threads)
95954743
PA
732 fprintf (stderr, "lk_1: killing lwp %ld, for pid: %d\n",
733 lwpid_of (lwp), pid);
bd99dc85
PA
734
735 /* If we're killing a running inferior, make sure it is stopped
736 first, as PTRACE_KILL will not work otherwise. */
737 if (!lwp->stopped)
738 send_sigstop (&lwp->head);
739
fd500816
DJ
740 do
741 {
bd99dc85 742 ptrace (PTRACE_KILL, lwpid_of (lwp), 0, 0);
fd500816
DJ
743
744 /* Make sure it died. The loop is most likely unnecessary. */
95954743
PA
745 lwpid = linux_wait_for_event (lwp->head.id, &wstat, __WALL);
746 } while (lwpid > 0 && WIFSTOPPED (wstat));
2d717e4f 747
ca5c370d
PA
748#ifdef USE_THREAD_DB
749 thread_db_free (process, 0);
750#endif
bd99dc85 751 delete_lwp (lwp);
ca5c370d 752 linux_remove_process (process);
95954743 753 return 0;
0d62e5e8
DJ
754}
755
95954743
PA
756static int
757linux_detach_one_lwp (struct inferior_list_entry *entry, void *args)
6ad8ae5c
DJ
758{
759 struct thread_info *thread = (struct thread_info *) entry;
54a0b537 760 struct lwp_info *lwp = get_thread_lwp (thread);
95954743
PA
761 int pid = * (int *) args;
762
763 if (ptid_get_pid (entry->id) != pid)
764 return 0;
6ad8ae5c 765
bd99dc85
PA
766 /* If we're detaching from a running inferior, make sure it is
767 stopped first, as PTRACE_DETACH will not work otherwise. */
768 if (!lwp->stopped)
769 {
95954743 770 int lwpid = lwpid_of (lwp);
bd99dc85
PA
771
772 stopping_threads = 1;
773 send_sigstop (&lwp->head);
774
775 /* If this detects a new thread through a clone event, the new
776 thread is appended to the end of the lwp list, so we'll
777 eventually detach from it. */
778 wait_for_sigstop (&lwp->head);
779 stopping_threads = 0;
780
781 /* If LWP exits while we're trying to stop it, there's nothing
782 left to do. */
95954743 783 lwp = find_lwp_pid (pid_to_ptid (lwpid));
bd99dc85 784 if (lwp == NULL)
95954743 785 return 0;
bd99dc85
PA
786 }
787
ae13219e
DJ
788 /* Make sure the process isn't stopped at a breakpoint that's
789 no longer there. */
54a0b537 790 check_removed_breakpoint (lwp);
ae13219e
DJ
791
792 /* If this process is stopped but is expecting a SIGSTOP, then make
793 sure we take care of that now. This isn't absolutely guaranteed
794 to collect the SIGSTOP, but is fairly likely to. */
54a0b537 795 if (lwp->stop_expected)
ae13219e 796 {
bd99dc85 797 int wstat;
ae13219e 798 /* Clear stop_expected, so that the SIGSTOP will be reported. */
54a0b537
PA
799 lwp->stop_expected = 0;
800 if (lwp->stopped)
2acc282a 801 linux_resume_one_lwp (lwp, 0, 0, NULL);
95954743 802 linux_wait_for_event (lwp->head.id, &wstat, __WALL);
ae13219e
DJ
803 }
804
805 /* Flush any pending changes to the process's registers. */
806 regcache_invalidate_one ((struct inferior_list_entry *)
54a0b537 807 get_lwp_thread (lwp));
ae13219e
DJ
808
809 /* Finally, let it resume. */
bd99dc85
PA
810 ptrace (PTRACE_DETACH, lwpid_of (lwp), 0, 0);
811
812 delete_lwp (lwp);
95954743 813 return 0;
6ad8ae5c
DJ
814}
815
dd6953e1 816static int
95954743 817any_thread_of (struct inferior_list_entry *entry, void *args)
6ad8ae5c 818{
95954743
PA
819 int *pid_p = args;
820
821 if (ptid_get_pid (entry->id) == *pid_p)
822 return 1;
823
824 return 0;
825}
826
827static int
828linux_detach (int pid)
829{
830 struct process_info *process;
831
832 process = find_process_pid (pid);
833 if (process == NULL)
834 return -1;
835
ca5c370d
PA
836#ifdef USE_THREAD_DB
837 thread_db_free (process, 1);
838#endif
839
95954743
PA
840 current_inferior =
841 (struct thread_info *) find_inferior (&all_threads, any_thread_of, &pid);
842
ae13219e 843 delete_all_breakpoints ();
95954743 844 find_inferior (&all_threads, linux_detach_one_lwp, &pid);
ca5c370d 845 linux_remove_process (process);
dd6953e1 846 return 0;
6ad8ae5c
DJ
847}
848
444d6139 849static void
95954743 850linux_join (int pid)
444d6139 851{
444d6139 852 int status, ret;
95954743 853 struct process_info *process;
bd99dc85 854
95954743
PA
855 process = find_process_pid (pid);
856 if (process == NULL)
857 return;
444d6139
PA
858
859 do {
95954743 860 ret = my_waitpid (pid, &status, 0);
444d6139
PA
861 if (WIFEXITED (status) || WIFSIGNALED (status))
862 break;
863 } while (ret != -1 || errno != ECHILD);
864}
865
6ad8ae5c 866/* Return nonzero if the given thread is still alive. */
0d62e5e8 867static int
95954743 868linux_thread_alive (ptid_t ptid)
0d62e5e8 869{
95954743
PA
870 struct lwp_info *lwp = find_lwp_pid (ptid);
871
872 /* We assume we always know if a thread exits. If a whole process
873 exited but we still haven't been able to report it to GDB, we'll
874 hold on to the last lwp of the dead process. */
875 if (lwp != NULL)
876 return !lwp->dead;
0d62e5e8
DJ
877 else
878 return 0;
879}
880
881/* Return nonzero if this process stopped at a breakpoint which
882 no longer appears to be inserted. Also adjust the PC
883 appropriately to resume where the breakpoint used to be. */
ce3a066d 884static int
54a0b537 885check_removed_breakpoint (struct lwp_info *event_child)
da6d8c04 886{
0d62e5e8
DJ
887 CORE_ADDR stop_pc;
888 struct thread_info *saved_inferior;
442ea881 889 struct regcache *regcache;
0d62e5e8
DJ
890
891 if (event_child->pending_is_breakpoint == 0)
892 return 0;
893
894 if (debug_threads)
54a0b537 895 fprintf (stderr, "Checking for breakpoint in lwp %ld.\n",
bd99dc85 896 lwpid_of (event_child));
0d62e5e8
DJ
897
898 saved_inferior = current_inferior;
54a0b537 899 current_inferior = get_lwp_thread (event_child);
442ea881 900 regcache = get_thread_regcache (current_inferior, 1);
0d62e5e8
DJ
901 stop_pc = get_stop_pc ();
902
903 /* If the PC has changed since we stopped, then we shouldn't do
904 anything. This happens if, for instance, GDB handled the
905 decr_pc_after_break subtraction itself. */
906 if (stop_pc != event_child->pending_stop_pc)
907 {
908 if (debug_threads)
ae13219e
DJ
909 fprintf (stderr, "Ignoring, PC was changed. Old PC was 0x%08llx\n",
910 event_child->pending_stop_pc);
0d62e5e8
DJ
911
912 event_child->pending_is_breakpoint = 0;
913 current_inferior = saved_inferior;
914 return 0;
915 }
916
917 /* If the breakpoint is still there, we will report hitting it. */
918 if ((*the_low_target.breakpoint_at) (stop_pc))
919 {
920 if (debug_threads)
921 fprintf (stderr, "Ignoring, breakpoint is still present.\n");
922 current_inferior = saved_inferior;
923 return 0;
924 }
925
926 if (debug_threads)
927 fprintf (stderr, "Removed breakpoint.\n");
928
929 /* For decr_pc_after_break targets, here is where we perform the
930 decrement. We go immediately from this function to resuming,
931 and can not safely call get_stop_pc () again. */
932 if (the_low_target.set_pc != NULL)
47c0c975
DE
933 {
934 if (debug_threads)
935 fprintf (stderr, "Set pc to 0x%lx\n", (long) stop_pc);
442ea881 936 (*the_low_target.set_pc) (regcache, stop_pc);
47c0c975 937 }
0d62e5e8
DJ
938
939 /* We consumed the pending SIGTRAP. */
5544ad89 940 event_child->pending_is_breakpoint = 0;
0d62e5e8
DJ
941 event_child->status_pending_p = 0;
942 event_child->status_pending = 0;
943
944 current_inferior = saved_inferior;
da6d8c04
DJ
945 return 1;
946}
947
54a0b537
PA
948/* Return 1 if this lwp has an interesting status pending. This
949 function may silently resume an inferior lwp. */
611cb4a5 950static int
95954743 951status_pending_p (struct inferior_list_entry *entry, void *arg)
0d62e5e8 952{
54a0b537 953 struct lwp_info *lwp = (struct lwp_info *) entry;
95954743
PA
954 ptid_t ptid = * (ptid_t *) arg;
955
956 /* Check if we're only interested in events from a specific process
957 or its lwps. */
958 if (!ptid_equal (minus_one_ptid, ptid)
959 && ptid_get_pid (ptid) != ptid_get_pid (lwp->head.id))
960 return 0;
0d62e5e8 961
bd99dc85 962 if (lwp->status_pending_p && !lwp->suspended)
54a0b537 963 if (check_removed_breakpoint (lwp))
0d62e5e8
DJ
964 {
965 /* This thread was stopped at a breakpoint, and the breakpoint
966 is now gone. We were told to continue (or step...) all threads,
967 so GDB isn't trying to single-step past this breakpoint.
968 So instead of reporting the old SIGTRAP, pretend we got to
969 the breakpoint just after it was removed instead of just
970 before; resume the process. */
2acc282a 971 linux_resume_one_lwp (lwp, 0, 0, NULL);
0d62e5e8
DJ
972 return 0;
973 }
974
bd99dc85 975 return (lwp->status_pending_p && !lwp->suspended);
0d62e5e8
DJ
976}
977
95954743
PA
978static int
979same_lwp (struct inferior_list_entry *entry, void *data)
980{
981 ptid_t ptid = *(ptid_t *) data;
982 int lwp;
983
984 if (ptid_get_lwp (ptid) != 0)
985 lwp = ptid_get_lwp (ptid);
986 else
987 lwp = ptid_get_pid (ptid);
988
989 if (ptid_get_lwp (entry->id) == lwp)
990 return 1;
991
992 return 0;
993}
994
995struct lwp_info *
996find_lwp_pid (ptid_t ptid)
997{
998 return (struct lwp_info*) find_inferior (&all_lwps, same_lwp, &ptid);
999}
1000
bd99dc85 1001static struct lwp_info *
95954743 1002linux_wait_for_lwp (ptid_t ptid, int *wstatp, int options)
611cb4a5 1003{
0d62e5e8 1004 int ret;
95954743 1005 int to_wait_for = -1;
bd99dc85 1006 struct lwp_info *child = NULL;
0d62e5e8 1007
bd99dc85 1008 if (debug_threads)
95954743
PA
1009 fprintf (stderr, "linux_wait_for_lwp: %s\n", target_pid_to_str (ptid));
1010
1011 if (ptid_equal (ptid, minus_one_ptid))
1012 to_wait_for = -1; /* any child */
1013 else
1014 to_wait_for = ptid_get_lwp (ptid); /* this lwp only */
0d62e5e8 1015
bd99dc85 1016 options |= __WALL;
0d62e5e8 1017
bd99dc85 1018retry:
0d62e5e8 1019
bd99dc85
PA
1020 ret = my_waitpid (to_wait_for, wstatp, options);
1021 if (ret == 0 || (ret == -1 && errno == ECHILD && (options & WNOHANG)))
1022 return NULL;
1023 else if (ret == -1)
1024 perror_with_name ("waitpid");
0d62e5e8
DJ
1025
1026 if (debug_threads
1027 && (!WIFSTOPPED (*wstatp)
1028 || (WSTOPSIG (*wstatp) != 32
1029 && WSTOPSIG (*wstatp) != 33)))
1030 fprintf (stderr, "Got an event from %d (%x)\n", ret, *wstatp);
1031
95954743 1032 child = find_lwp_pid (pid_to_ptid (ret));
0d62e5e8 1033
24a09b5f
DJ
1034 /* If we didn't find a process, one of two things presumably happened:
1035 - A process we started and then detached from has exited. Ignore it.
1036 - A process we are controlling has forked and the new child's stop
1037 was reported to us by the kernel. Save its PID. */
bd99dc85 1038 if (child == NULL && WIFSTOPPED (*wstatp))
24a09b5f
DJ
1039 {
1040 add_pid_to_list (&stopped_pids, ret);
1041 goto retry;
1042 }
bd99dc85 1043 else if (child == NULL)
24a09b5f
DJ
1044 goto retry;
1045
bd99dc85
PA
1046 child->stopped = 1;
1047 child->pending_is_breakpoint = 0;
0d62e5e8 1048
bd99dc85 1049 child->last_status = *wstatp;
32ca6d61 1050
d61ddec4
UW
1051 /* Architecture-specific setup after inferior is running.
1052 This needs to happen after we have attached to the inferior
1053 and it is stopped for the first time, but before we access
1054 any inferior registers. */
1055 if (new_inferior)
1056 {
1057 the_low_target.arch_setup ();
52fa2412
UW
1058#ifdef HAVE_LINUX_REGSETS
1059 memset (disabled_regsets, 0, num_regsets);
1060#endif
d61ddec4
UW
1061 new_inferior = 0;
1062 }
1063
0d62e5e8 1064 if (debug_threads
47c0c975
DE
1065 && WIFSTOPPED (*wstatp)
1066 && the_low_target.get_pc != NULL)
0d62e5e8 1067 {
896c7fbb 1068 struct thread_info *saved_inferior = current_inferior;
442ea881 1069 struct regcache *regcache = get_thread_regcache (current_inferior, 1);
47c0c975
DE
1070 CORE_ADDR pc;
1071
0d62e5e8 1072 current_inferior = (struct thread_info *)
95954743 1073 find_inferior_id (&all_threads, child->head.id);
442ea881 1074 pc = (*the_low_target.get_pc) (regcache);
47c0c975 1075 fprintf (stderr, "linux_wait_for_lwp: pc is 0x%lx\n", (long) pc);
896c7fbb 1076 current_inferior = saved_inferior;
0d62e5e8 1077 }
bd99dc85
PA
1078
1079 return child;
0d62e5e8 1080}
611cb4a5 1081
bd99dc85
PA
1082/* Wait for an event from child PID. If PID is -1, wait for any
1083 child. Store the stop status through the status pointer WSTAT.
1084 OPTIONS is passed to the waitpid call. Return 0 if no child stop
1085 event was found and OPTIONS contains WNOHANG. Return the PID of
1086 the stopped child otherwise. */
1087
0d62e5e8 1088static int
95954743 1089linux_wait_for_event_1 (ptid_t ptid, int *wstat, int options)
0d62e5e8
DJ
1090{
1091 CORE_ADDR stop_pc;
bd99dc85 1092 struct lwp_info *event_child = NULL;
b65d95c5 1093 int bp_status;
bd99dc85 1094 struct lwp_info *requested_child = NULL;
0d62e5e8 1095
95954743 1096 /* Check for a lwp with a pending status. */
0d62e5e8
DJ
1097 /* It is possible that the user changed the pending task's registers since
1098 it stopped. We correctly handle the change of PC if we hit a breakpoint
e5379b03 1099 (in check_removed_breakpoint); signals should be reported anyway. */
bd99dc85 1100
95954743
PA
1101 if (ptid_equal (ptid, minus_one_ptid)
1102 || ptid_equal (pid_to_ptid (ptid_get_pid (ptid)), ptid))
0d62e5e8 1103 {
54a0b537 1104 event_child = (struct lwp_info *)
95954743 1105 find_inferior (&all_lwps, status_pending_p, &ptid);
0d62e5e8 1106 if (debug_threads && event_child)
bd99dc85 1107 fprintf (stderr, "Got a pending child %ld\n", lwpid_of (event_child));
0d62e5e8
DJ
1108 }
1109 else
1110 {
95954743 1111 requested_child = find_lwp_pid (ptid);
bd99dc85
PA
1112 if (requested_child->status_pending_p
1113 && !check_removed_breakpoint (requested_child))
1114 event_child = requested_child;
0d62e5e8 1115 }
611cb4a5 1116
0d62e5e8
DJ
1117 if (event_child != NULL)
1118 {
bd99dc85
PA
1119 if (debug_threads)
1120 fprintf (stderr, "Got an event from pending child %ld (%04x)\n",
1121 lwpid_of (event_child), event_child->status_pending);
1122 *wstat = event_child->status_pending;
1123 event_child->status_pending_p = 0;
1124 event_child->status_pending = 0;
1125 current_inferior = get_lwp_thread (event_child);
1126 return lwpid_of (event_child);
0d62e5e8
DJ
1127 }
1128
1129 /* We only enter this loop if no process has a pending wait status. Thus
1130 any action taken in response to a wait status inside this loop is
1131 responding as soon as we detect the status, not after any pending
1132 events. */
1133 while (1)
1134 {
95954743 1135 event_child = linux_wait_for_lwp (ptid, wstat, options);
0d62e5e8 1136
bd99dc85
PA
1137 if ((options & WNOHANG) && event_child == NULL)
1138 return 0;
0d62e5e8
DJ
1139
1140 if (event_child == NULL)
1141 error ("event from unknown child");
611cb4a5 1142
bd99dc85 1143 current_inferior = get_lwp_thread (event_child);
0d62e5e8 1144
89be2091 1145 /* Check for thread exit. */
bd99dc85 1146 if (! WIFSTOPPED (*wstat))
0d62e5e8 1147 {
89be2091 1148 if (debug_threads)
95954743 1149 fprintf (stderr, "LWP %ld exiting\n", lwpid_of (event_child));
89be2091
DJ
1150
1151 /* If the last thread is exiting, just return. */
95954743 1152 if (last_thread_of_process_p (current_inferior))
bd99dc85
PA
1153 {
1154 if (debug_threads)
95954743
PA
1155 fprintf (stderr, "LWP %ld is last lwp of process\n",
1156 lwpid_of (event_child));
bd99dc85
PA
1157 return lwpid_of (event_child);
1158 }
89be2091 1159
bd99dc85 1160 delete_lwp (event_child);
89be2091 1161
bd99dc85
PA
1162 if (!non_stop)
1163 {
1164 current_inferior = (struct thread_info *) all_threads.head;
1165 if (debug_threads)
1166 fprintf (stderr, "Current inferior is now %ld\n",
1167 lwpid_of (get_thread_lwp (current_inferior)));
1168 }
1169 else
1170 {
1171 current_inferior = NULL;
1172 if (debug_threads)
1173 fprintf (stderr, "Current inferior is now <NULL>\n");
1174 }
89be2091
DJ
1175
1176 /* If we were waiting for this particular child to do something...
1177 well, it did something. */
bd99dc85 1178 if (requested_child != NULL)
95954743 1179 return lwpid_of (event_child);
89be2091
DJ
1180
1181 /* Wait for a more interesting event. */
1182 continue;
1183 }
1184
a6dbe5df
PA
1185 if (event_child->must_set_ptrace_flags)
1186 {
1187 ptrace (PTRACE_SETOPTIONS, lwpid_of (event_child),
14ce3065 1188 0, (PTRACE_ARG4_TYPE) PTRACE_O_TRACECLONE);
a6dbe5df
PA
1189 event_child->must_set_ptrace_flags = 0;
1190 }
1191
bd99dc85
PA
1192 if (WIFSTOPPED (*wstat)
1193 && WSTOPSIG (*wstat) == SIGSTOP
89be2091
DJ
1194 && event_child->stop_expected)
1195 {
1196 if (debug_threads)
1197 fprintf (stderr, "Expected stop.\n");
1198 event_child->stop_expected = 0;
2acc282a 1199 linux_resume_one_lwp (event_child, event_child->stepping, 0, NULL);
89be2091
DJ
1200 continue;
1201 }
1202
bd99dc85
PA
1203 if (WIFSTOPPED (*wstat) && WSTOPSIG (*wstat) == SIGTRAP
1204 && *wstat >> 16 != 0)
24a09b5f 1205 {
bd99dc85 1206 handle_extended_wait (event_child, *wstat);
24a09b5f
DJ
1207 continue;
1208 }
1209
89be2091
DJ
1210 /* If GDB is not interested in this signal, don't stop other
1211 threads, and don't report it to GDB. Just resume the
1212 inferior right away. We do this for threading-related
69f223ed
DJ
1213 signals as well as any that GDB specifically requested we
1214 ignore. But never ignore SIGSTOP if we sent it ourselves,
1215 and do not ignore signals when stepping - they may require
1216 special handling to skip the signal handler. */
89be2091
DJ
1217 /* FIXME drow/2002-06-09: Get signal numbers from the inferior's
1218 thread library? */
bd99dc85 1219 if (WIFSTOPPED (*wstat)
69f223ed 1220 && !event_child->stepping
24a09b5f 1221 && (
60c3d7b0 1222#if defined (USE_THREAD_DB) && defined (__SIGRTMIN)
cdbfd419 1223 (current_process ()->private->thread_db != NULL
bd99dc85
PA
1224 && (WSTOPSIG (*wstat) == __SIGRTMIN
1225 || WSTOPSIG (*wstat) == __SIGRTMIN + 1))
24a09b5f
DJ
1226 ||
1227#endif
bd99dc85
PA
1228 (pass_signals[target_signal_from_host (WSTOPSIG (*wstat))]
1229 && (WSTOPSIG (*wstat) != SIGSTOP || !stopping_threads))))
89be2091
DJ
1230 {
1231 siginfo_t info, *info_p;
1232
1233 if (debug_threads)
24a09b5f 1234 fprintf (stderr, "Ignored signal %d for LWP %ld.\n",
bd99dc85 1235 WSTOPSIG (*wstat), lwpid_of (event_child));
89be2091 1236
bd99dc85 1237 if (ptrace (PTRACE_GETSIGINFO, lwpid_of (event_child), 0, &info) == 0)
89be2091
DJ
1238 info_p = &info;
1239 else
1240 info_p = NULL;
2acc282a 1241 linux_resume_one_lwp (event_child,
54a0b537 1242 event_child->stepping,
bd99dc85 1243 WSTOPSIG (*wstat), info_p);
89be2091 1244 continue;
0d62e5e8 1245 }
611cb4a5 1246
0d62e5e8
DJ
1247 /* If this event was not handled above, and is not a SIGTRAP, report
1248 it. */
bd99dc85
PA
1249 if (!WIFSTOPPED (*wstat) || WSTOPSIG (*wstat) != SIGTRAP)
1250 return lwpid_of (event_child);
611cb4a5 1251
0d62e5e8
DJ
1252 /* If this target does not support breakpoints, we simply report the
1253 SIGTRAP; it's of no concern to us. */
1254 if (the_low_target.get_pc == NULL)
bd99dc85 1255 return lwpid_of (event_child);
0d62e5e8
DJ
1256
1257 stop_pc = get_stop_pc ();
1258
1259 /* bp_reinsert will only be set if we were single-stepping.
1260 Notice that we will resume the process after hitting
1261 a gdbserver breakpoint; single-stepping to/over one
1262 is not supported (yet). */
1263 if (event_child->bp_reinsert != 0)
1264 {
1265 if (debug_threads)
1266 fprintf (stderr, "Reinserted breakpoint.\n");
1267 reinsert_breakpoint (event_child->bp_reinsert);
1268 event_child->bp_reinsert = 0;
1269
1270 /* Clear the single-stepping flag and SIGTRAP as we resume. */
2acc282a 1271 linux_resume_one_lwp (event_child, 0, 0, NULL);
0d62e5e8
DJ
1272 continue;
1273 }
1274
b65d95c5 1275 bp_status = check_breakpoints (stop_pc);
0d62e5e8 1276
b65d95c5 1277 if (bp_status != 0)
0d62e5e8 1278 {
b65d95c5
DJ
1279 if (debug_threads)
1280 fprintf (stderr, "Hit a gdbserver breakpoint.\n");
1281
0d62e5e8 1282 /* We hit one of our own breakpoints. We mark it as a pending
e5379b03 1283 breakpoint, so that check_removed_breakpoint () will do the PC
0d62e5e8
DJ
1284 adjustment for us at the appropriate time. */
1285 event_child->pending_is_breakpoint = 1;
1286 event_child->pending_stop_pc = stop_pc;
1287
b65d95c5 1288 /* We may need to put the breakpoint back. We continue in the event
0d62e5e8
DJ
1289 loop instead of simply replacing the breakpoint right away,
1290 in order to not lose signals sent to the thread that hit the
1291 breakpoint. Unfortunately this increases the window where another
1292 thread could sneak past the removed breakpoint. For the current
1293 use of server-side breakpoints (thread creation) this is
1294 acceptable; but it needs to be considered before this breakpoint
1295 mechanism can be used in more general ways. For some breakpoints
1296 it may be necessary to stop all other threads, but that should
1297 be avoided where possible.
1298
1299 If breakpoint_reinsert_addr is NULL, that means that we can
1300 use PTRACE_SINGLESTEP on this platform. Uninsert the breakpoint,
1301 mark it for reinsertion, and single-step.
1302
1303 Otherwise, call the target function to figure out where we need
1304 our temporary breakpoint, create it, and continue executing this
1305 process. */
bd99dc85
PA
1306
1307 /* NOTE: we're lifting breakpoints in non-stop mode. This
1308 is currently only used for thread event breakpoints, so
1309 it isn't that bad as long as we have PTRACE_EVENT_CLONE
1310 events. */
b65d95c5
DJ
1311 if (bp_status == 2)
1312 /* No need to reinsert. */
2acc282a 1313 linux_resume_one_lwp (event_child, 0, 0, NULL);
b65d95c5 1314 else if (the_low_target.breakpoint_reinsert_addr == NULL)
0d62e5e8
DJ
1315 {
1316 event_child->bp_reinsert = stop_pc;
1317 uninsert_breakpoint (stop_pc);
2acc282a 1318 linux_resume_one_lwp (event_child, 1, 0, NULL);
0d62e5e8
DJ
1319 }
1320 else
1321 {
1322 reinsert_breakpoint_by_bp
1323 (stop_pc, (*the_low_target.breakpoint_reinsert_addr) ());
2acc282a 1324 linux_resume_one_lwp (event_child, 0, 0, NULL);
611cb4a5 1325 }
0d62e5e8
DJ
1326
1327 continue;
1328 }
1329
b65d95c5
DJ
1330 if (debug_threads)
1331 fprintf (stderr, "Hit a non-gdbserver breakpoint.\n");
1332
0d62e5e8 1333 /* If we were single-stepping, we definitely want to report the
c35fafde
PA
1334 SIGTRAP. Although the single-step operation has completed,
1335 do not clear clear the stepping flag yet; we need to check it
1336 in wait_for_sigstop. */
0d62e5e8 1337 if (event_child->stepping)
bd99dc85 1338 return lwpid_of (event_child);
0d62e5e8
DJ
1339
1340 /* A SIGTRAP that we can't explain. It may have been a breakpoint.
1341 Check if it is a breakpoint, and if so mark the process information
1342 accordingly. This will handle both the necessary fiddling with the
1343 PC on decr_pc_after_break targets and suppressing extra threads
1344 hitting a breakpoint if two hit it at once and then GDB removes it
1345 after the first is reported. Arguably it would be better to report
1346 multiple threads hitting breakpoints simultaneously, but the current
1347 remote protocol does not allow this. */
1348 if ((*the_low_target.breakpoint_at) (stop_pc))
1349 {
1350 event_child->pending_is_breakpoint = 1;
1351 event_child->pending_stop_pc = stop_pc;
611cb4a5
DJ
1352 }
1353
bd99dc85 1354 return lwpid_of (event_child);
611cb4a5 1355 }
0d62e5e8 1356
611cb4a5
DJ
1357 /* NOTREACHED */
1358 return 0;
1359}
1360
95954743
PA
1361static int
1362linux_wait_for_event (ptid_t ptid, int *wstat, int options)
1363{
1364 ptid_t wait_ptid;
1365
1366 if (ptid_is_pid (ptid))
1367 {
1368 /* A request to wait for a specific tgid. This is not possible
1369 with waitpid, so instead, we wait for any child, and leave
1370 children we're not interested in right now with a pending
1371 status to report later. */
1372 wait_ptid = minus_one_ptid;
1373 }
1374 else
1375 wait_ptid = ptid;
1376
1377 while (1)
1378 {
1379 int event_pid;
1380
1381 event_pid = linux_wait_for_event_1 (wait_ptid, wstat, options);
1382
1383 if (event_pid > 0
1384 && ptid_is_pid (ptid) && ptid_get_pid (ptid) != event_pid)
1385 {
1386 struct lwp_info *event_child = find_lwp_pid (pid_to_ptid (event_pid));
1387
1388 if (! WIFSTOPPED (*wstat))
1389 mark_lwp_dead (event_child, *wstat);
1390 else
1391 {
1392 event_child->status_pending_p = 1;
1393 event_child->status_pending = *wstat;
1394 }
1395 }
1396 else
1397 return event_pid;
1398 }
1399}
1400
0d62e5e8 1401/* Wait for process, returns status. */
da6d8c04 1402
95954743
PA
1403static ptid_t
1404linux_wait_1 (ptid_t ptid,
1405 struct target_waitstatus *ourstatus, int target_options)
da6d8c04 1406{
e5f1222d 1407 int w;
bd99dc85
PA
1408 struct thread_info *thread = NULL;
1409 struct lwp_info *lwp = NULL;
1410 int options;
bd99dc85
PA
1411 int pid;
1412
1413 /* Translate generic target options into linux options. */
1414 options = __WALL;
1415 if (target_options & TARGET_WNOHANG)
1416 options |= WNOHANG;
0d62e5e8
DJ
1417
1418retry:
bd99dc85
PA
1419 ourstatus->kind = TARGET_WAITKIND_IGNORE;
1420
0d62e5e8
DJ
1421 /* If we were only supposed to resume one thread, only wait for
1422 that thread - if it's still alive. If it died, however - which
1423 can happen if we're coming from the thread death case below -
1424 then we need to make sure we restart the other threads. We could
1425 pick a thread at random or restart all; restarting all is less
1426 arbitrary. */
95954743
PA
1427 if (!non_stop
1428 && !ptid_equal (cont_thread, null_ptid)
1429 && !ptid_equal (cont_thread, minus_one_ptid))
0d62e5e8 1430 {
bd99dc85
PA
1431 thread = (struct thread_info *) find_inferior_id (&all_threads,
1432 cont_thread);
0d62e5e8
DJ
1433
1434 /* No stepping, no signal - unless one is pending already, of course. */
bd99dc85 1435 if (thread == NULL)
64386c31
DJ
1436 {
1437 struct thread_resume resume_info;
95954743 1438 resume_info.thread = minus_one_ptid;
bd99dc85
PA
1439 resume_info.kind = resume_continue;
1440 resume_info.sig = 0;
2bd7c093 1441 linux_resume (&resume_info, 1);
64386c31 1442 }
bd99dc85 1443 else
95954743 1444 ptid = cont_thread;
0d62e5e8 1445 }
da6d8c04 1446
95954743 1447 pid = linux_wait_for_event (ptid, &w, options);
bd99dc85 1448 if (pid == 0) /* only if TARGET_WNOHANG */
95954743 1449 return null_ptid;
bd99dc85
PA
1450
1451 lwp = get_thread_lwp (current_inferior);
da6d8c04 1452
0d62e5e8
DJ
1453 /* If we are waiting for a particular child, and it exited,
1454 linux_wait_for_event will return its exit status. Similarly if
1455 the last child exited. If this is not the last child, however,
1456 do not report it as exited until there is a 'thread exited' response
1457 available in the remote protocol. Instead, just wait for another event.
1458 This should be safe, because if the thread crashed we will already
1459 have reported the termination signal to GDB; that should stop any
1460 in-progress stepping operations, etc.
1461
1462 Report the exit status of the last thread to exit. This matches
1463 LinuxThreads' behavior. */
1464
95954743 1465 if (last_thread_of_process_p (current_inferior))
da6d8c04 1466 {
bd99dc85 1467 if (WIFEXITED (w) || WIFSIGNALED (w))
0d62e5e8 1468 {
95954743
PA
1469 int pid = pid_of (lwp);
1470 struct process_info *process = find_process_pid (pid);
5b1c542e 1471
ca5c370d
PA
1472#ifdef USE_THREAD_DB
1473 thread_db_free (process, 0);
1474#endif
bd99dc85 1475 delete_lwp (lwp);
ca5c370d 1476 linux_remove_process (process);
5b1c542e 1477
bd99dc85 1478 current_inferior = NULL;
5b1c542e 1479
bd99dc85
PA
1480 if (WIFEXITED (w))
1481 {
1482 ourstatus->kind = TARGET_WAITKIND_EXITED;
1483 ourstatus->value.integer = WEXITSTATUS (w);
1484
1485 if (debug_threads)
1486 fprintf (stderr, "\nChild exited with retcode = %x \n", WEXITSTATUS (w));
1487 }
1488 else
1489 {
1490 ourstatus->kind = TARGET_WAITKIND_SIGNALLED;
1491 ourstatus->value.sig = target_signal_from_host (WTERMSIG (w));
1492
1493 if (debug_threads)
1494 fprintf (stderr, "\nChild terminated with signal = %x \n", WTERMSIG (w));
1495
1496 }
5b1c542e 1497
95954743 1498 return pid_to_ptid (pid);
0d62e5e8 1499 }
da6d8c04 1500 }
0d62e5e8 1501 else
da6d8c04 1502 {
0d62e5e8
DJ
1503 if (!WIFSTOPPED (w))
1504 goto retry;
da6d8c04
DJ
1505 }
1506
bd99dc85
PA
1507 /* In all-stop, stop all threads. Be careful to only do this if
1508 we're about to report an event to GDB. */
1509 if (!non_stop)
1510 stop_all_lwps ();
1511
5b1c542e 1512 ourstatus->kind = TARGET_WAITKIND_STOPPED;
5b1c542e 1513
bd99dc85
PA
1514 if (lwp->suspended && WSTOPSIG (w) == SIGSTOP)
1515 {
1516 /* A thread that has been requested to stop by GDB with vCont;t,
1517 and it stopped cleanly, so report as SIG0. The use of
1518 SIGSTOP is an implementation detail. */
1519 ourstatus->value.sig = TARGET_SIGNAL_0;
1520 }
1521 else if (lwp->suspended && WSTOPSIG (w) != SIGSTOP)
1522 {
1523 /* A thread that has been requested to stop by GDB with vCont;t,
1524 but, it stopped for other reasons. Set stop_expected so the
1525 pending SIGSTOP is ignored and the LWP is resumed. */
1526 lwp->stop_expected = 1;
1527 ourstatus->value.sig = target_signal_from_host (WSTOPSIG (w));
1528 }
1529 else
1530 {
1531 ourstatus->value.sig = target_signal_from_host (WSTOPSIG (w));
1532 }
1533
1534 if (debug_threads)
95954743
PA
1535 fprintf (stderr, "linux_wait ret = %s, %d, %d\n",
1536 target_pid_to_str (lwp->head.id),
bd99dc85
PA
1537 ourstatus->kind,
1538 ourstatus->value.sig);
1539
95954743 1540 return lwp->head.id;
bd99dc85
PA
1541}
1542
1543/* Get rid of any pending event in the pipe. */
1544static void
1545async_file_flush (void)
1546{
1547 int ret;
1548 char buf;
1549
1550 do
1551 ret = read (linux_event_pipe[0], &buf, 1);
1552 while (ret >= 0 || (ret == -1 && errno == EINTR));
1553}
1554
1555/* Put something in the pipe, so the event loop wakes up. */
1556static void
1557async_file_mark (void)
1558{
1559 int ret;
1560
1561 async_file_flush ();
1562
1563 do
1564 ret = write (linux_event_pipe[1], "+", 1);
1565 while (ret == 0 || (ret == -1 && errno == EINTR));
1566
1567 /* Ignore EAGAIN. If the pipe is full, the event loop will already
1568 be awakened anyway. */
1569}
1570
95954743
PA
1571static ptid_t
1572linux_wait (ptid_t ptid,
1573 struct target_waitstatus *ourstatus, int target_options)
bd99dc85 1574{
95954743 1575 ptid_t event_ptid;
bd99dc85
PA
1576
1577 if (debug_threads)
95954743 1578 fprintf (stderr, "linux_wait: [%s]\n", target_pid_to_str (ptid));
bd99dc85
PA
1579
1580 /* Flush the async file first. */
1581 if (target_is_async_p ())
1582 async_file_flush ();
1583
95954743 1584 event_ptid = linux_wait_1 (ptid, ourstatus, target_options);
bd99dc85
PA
1585
1586 /* If at least one stop was reported, there may be more. A single
1587 SIGCHLD can signal more than one child stop. */
1588 if (target_is_async_p ()
1589 && (target_options & TARGET_WNOHANG) != 0
95954743 1590 && !ptid_equal (event_ptid, null_ptid))
bd99dc85
PA
1591 async_file_mark ();
1592
1593 return event_ptid;
da6d8c04
DJ
1594}
1595
c5f62d5f 1596/* Send a signal to an LWP. */
fd500816
DJ
1597
1598static int
a1928bad 1599kill_lwp (unsigned long lwpid, int signo)
fd500816 1600{
c5f62d5f
DE
1601 /* Use tkill, if possible, in case we are using nptl threads. If tkill
1602 fails, then we are not using nptl threads and we should be using kill. */
fd500816 1603
c5f62d5f
DE
1604#ifdef __NR_tkill
1605 {
1606 static int tkill_failed;
fd500816 1607
c5f62d5f
DE
1608 if (!tkill_failed)
1609 {
1610 int ret;
1611
1612 errno = 0;
1613 ret = syscall (__NR_tkill, lwpid, signo);
1614 if (errno != ENOSYS)
1615 return ret;
1616 tkill_failed = 1;
1617 }
1618 }
fd500816
DJ
1619#endif
1620
1621 return kill (lwpid, signo);
1622}
1623
0d62e5e8
DJ
1624static void
1625send_sigstop (struct inferior_list_entry *entry)
1626{
54a0b537 1627 struct lwp_info *lwp = (struct lwp_info *) entry;
bd99dc85 1628 int pid;
0d62e5e8 1629
54a0b537 1630 if (lwp->stopped)
0d62e5e8
DJ
1631 return;
1632
bd99dc85
PA
1633 pid = lwpid_of (lwp);
1634
0d62e5e8
DJ
1635 /* If we already have a pending stop signal for this process, don't
1636 send another. */
54a0b537 1637 if (lwp->stop_expected)
0d62e5e8 1638 {
ae13219e 1639 if (debug_threads)
bd99dc85 1640 fprintf (stderr, "Have pending sigstop for lwp %d\n", pid);
ae13219e
DJ
1641
1642 /* We clear the stop_expected flag so that wait_for_sigstop
1643 will receive the SIGSTOP event (instead of silently resuming and
1644 waiting again). It'll be reset below. */
54a0b537 1645 lwp->stop_expected = 0;
0d62e5e8
DJ
1646 return;
1647 }
1648
1649 if (debug_threads)
bd99dc85 1650 fprintf (stderr, "Sending sigstop to lwp %d\n", pid);
0d62e5e8 1651
bd99dc85 1652 kill_lwp (pid, SIGSTOP);
0d62e5e8
DJ
1653}
1654
95954743
PA
1655static void
1656mark_lwp_dead (struct lwp_info *lwp, int wstat)
1657{
1658 /* It's dead, really. */
1659 lwp->dead = 1;
1660
1661 /* Store the exit status for later. */
1662 lwp->status_pending_p = 1;
1663 lwp->status_pending = wstat;
1664
1665 /* So that check_removed_breakpoint doesn't try to figure out if
1666 this is stopped at a breakpoint. */
1667 lwp->pending_is_breakpoint = 0;
1668
1669 /* Prevent trying to stop it. */
1670 lwp->stopped = 1;
1671
1672 /* No further stops are expected from a dead lwp. */
1673 lwp->stop_expected = 0;
1674}
1675
0d62e5e8
DJ
1676static void
1677wait_for_sigstop (struct inferior_list_entry *entry)
1678{
54a0b537 1679 struct lwp_info *lwp = (struct lwp_info *) entry;
bd99dc85 1680 struct thread_info *saved_inferior;
a1928bad 1681 int wstat;
95954743
PA
1682 ptid_t saved_tid;
1683 ptid_t ptid;
0d62e5e8 1684
54a0b537 1685 if (lwp->stopped)
0d62e5e8
DJ
1686 return;
1687
1688 saved_inferior = current_inferior;
bd99dc85
PA
1689 if (saved_inferior != NULL)
1690 saved_tid = ((struct inferior_list_entry *) saved_inferior)->id;
1691 else
95954743 1692 saved_tid = null_ptid; /* avoid bogus unused warning */
bd99dc85 1693
95954743 1694 ptid = lwp->head.id;
bd99dc85
PA
1695
1696 linux_wait_for_event (ptid, &wstat, __WALL);
0d62e5e8
DJ
1697
1698 /* If we stopped with a non-SIGSTOP signal, save it for later
1699 and record the pending SIGSTOP. If the process exited, just
1700 return. */
1701 if (WIFSTOPPED (wstat)
1702 && WSTOPSIG (wstat) != SIGSTOP)
1703 {
1704 if (debug_threads)
24a09b5f 1705 fprintf (stderr, "LWP %ld stopped with non-sigstop status %06x\n",
bd99dc85 1706 lwpid_of (lwp), wstat);
c35fafde
PA
1707
1708 /* Do not leave a pending single-step finish to be reported to
1709 the client. The client will give us a new action for this
1710 thread, possibly a continue request --- otherwise, the client
1711 would consider this pending SIGTRAP reported later a spurious
1712 signal. */
1713 if (WSTOPSIG (wstat) == SIGTRAP
1714 && lwp->stepping
1715 && !linux_stopped_by_watchpoint ())
1716 {
1717 if (debug_threads)
1718 fprintf (stderr, " single-step SIGTRAP ignored\n");
1719 }
1720 else
1721 {
1722 lwp->status_pending_p = 1;
1723 lwp->status_pending = wstat;
1724 }
54a0b537 1725 lwp->stop_expected = 1;
0d62e5e8 1726 }
95954743
PA
1727 else if (!WIFSTOPPED (wstat))
1728 {
1729 if (debug_threads)
1730 fprintf (stderr, "Process %ld exited while stopping LWPs\n",
1731 lwpid_of (lwp));
1732
1733 /* Leave this status pending for the next time we're able to
1734 report it. In the mean time, we'll report this lwp as dead
1735 to GDB, so GDB doesn't try to read registers and memory from
1736 it. */
1737 mark_lwp_dead (lwp, wstat);
1738 }
0d62e5e8 1739
bd99dc85 1740 if (saved_inferior == NULL || linux_thread_alive (saved_tid))
0d62e5e8
DJ
1741 current_inferior = saved_inferior;
1742 else
1743 {
1744 if (debug_threads)
1745 fprintf (stderr, "Previously current thread died.\n");
1746
bd99dc85
PA
1747 if (non_stop)
1748 {
1749 /* We can't change the current inferior behind GDB's back,
1750 otherwise, a subsequent command may apply to the wrong
1751 process. */
1752 current_inferior = NULL;
1753 }
1754 else
1755 {
1756 /* Set a valid thread as current. */
1757 set_desired_inferior (0);
1758 }
0d62e5e8
DJ
1759 }
1760}
1761
1762static void
54a0b537 1763stop_all_lwps (void)
0d62e5e8
DJ
1764{
1765 stopping_threads = 1;
54a0b537
PA
1766 for_each_inferior (&all_lwps, send_sigstop);
1767 for_each_inferior (&all_lwps, wait_for_sigstop);
0d62e5e8
DJ
1768 stopping_threads = 0;
1769}
1770
da6d8c04
DJ
1771/* Resume execution of the inferior process.
1772 If STEP is nonzero, single-step it.
1773 If SIGNAL is nonzero, give it that signal. */
1774
ce3a066d 1775static void
2acc282a 1776linux_resume_one_lwp (struct lwp_info *lwp,
54a0b537 1777 int step, int signal, siginfo_t *info)
da6d8c04 1778{
0d62e5e8
DJ
1779 struct thread_info *saved_inferior;
1780
54a0b537 1781 if (lwp->stopped == 0)
0d62e5e8
DJ
1782 return;
1783
1784 /* If we have pending signals or status, and a new signal, enqueue the
1785 signal. Also enqueue the signal if we are waiting to reinsert a
1786 breakpoint; it will be picked up again below. */
1787 if (signal != 0
54a0b537
PA
1788 && (lwp->status_pending_p || lwp->pending_signals != NULL
1789 || lwp->bp_reinsert != 0))
0d62e5e8
DJ
1790 {
1791 struct pending_signals *p_sig;
bca929d3 1792 p_sig = xmalloc (sizeof (*p_sig));
54a0b537 1793 p_sig->prev = lwp->pending_signals;
0d62e5e8 1794 p_sig->signal = signal;
32ca6d61
DJ
1795 if (info == NULL)
1796 memset (&p_sig->info, 0, sizeof (siginfo_t));
1797 else
1798 memcpy (&p_sig->info, info, sizeof (siginfo_t));
54a0b537 1799 lwp->pending_signals = p_sig;
0d62e5e8
DJ
1800 }
1801
54a0b537 1802 if (lwp->status_pending_p && !check_removed_breakpoint (lwp))
0d62e5e8
DJ
1803 return;
1804
1805 saved_inferior = current_inferior;
54a0b537 1806 current_inferior = get_lwp_thread (lwp);
0d62e5e8
DJ
1807
1808 if (debug_threads)
1b3f6016 1809 fprintf (stderr, "Resuming lwp %ld (%s, signal %d, stop %s)\n",
bd99dc85 1810 lwpid_of (lwp), step ? "step" : "continue", signal,
54a0b537 1811 lwp->stop_expected ? "expected" : "not expected");
0d62e5e8
DJ
1812
1813 /* This bit needs some thinking about. If we get a signal that
1814 we must report while a single-step reinsert is still pending,
1815 we often end up resuming the thread. It might be better to
1816 (ew) allow a stack of pending events; then we could be sure that
1817 the reinsert happened right away and not lose any signals.
1818
1819 Making this stack would also shrink the window in which breakpoints are
54a0b537 1820 uninserted (see comment in linux_wait_for_lwp) but not enough for
0d62e5e8
DJ
1821 complete correctness, so it won't solve that problem. It may be
1822 worthwhile just to solve this one, however. */
54a0b537 1823 if (lwp->bp_reinsert != 0)
0d62e5e8
DJ
1824 {
1825 if (debug_threads)
54a0b537 1826 fprintf (stderr, " pending reinsert at %08lx", (long)lwp->bp_reinsert);
0d62e5e8
DJ
1827 if (step == 0)
1828 fprintf (stderr, "BAD - reinserting but not stepping.\n");
1829 step = 1;
1830
1831 /* Postpone any pending signal. It was enqueued above. */
1832 signal = 0;
1833 }
1834
54a0b537 1835 check_removed_breakpoint (lwp);
0d62e5e8 1836
aa691b87 1837 if (debug_threads && the_low_target.get_pc != NULL)
0d62e5e8 1838 {
442ea881
PA
1839 struct regcache *regcache = get_thread_regcache (current_inferior, 1);
1840 CORE_ADDR pc = (*the_low_target.get_pc) (regcache);
47c0c975 1841 fprintf (stderr, " resuming from pc 0x%lx\n", (long) pc);
0d62e5e8
DJ
1842 }
1843
1844 /* If we have pending signals, consume one unless we are trying to reinsert
1845 a breakpoint. */
54a0b537 1846 if (lwp->pending_signals != NULL && lwp->bp_reinsert == 0)
0d62e5e8
DJ
1847 {
1848 struct pending_signals **p_sig;
1849
54a0b537 1850 p_sig = &lwp->pending_signals;
0d62e5e8
DJ
1851 while ((*p_sig)->prev != NULL)
1852 p_sig = &(*p_sig)->prev;
1853
1854 signal = (*p_sig)->signal;
32ca6d61 1855 if ((*p_sig)->info.si_signo != 0)
bd99dc85 1856 ptrace (PTRACE_SETSIGINFO, lwpid_of (lwp), 0, &(*p_sig)->info);
32ca6d61 1857
0d62e5e8
DJ
1858 free (*p_sig);
1859 *p_sig = NULL;
1860 }
1861
aa5ca48f
DE
1862 if (the_low_target.prepare_to_resume != NULL)
1863 the_low_target.prepare_to_resume (lwp);
1864
0d62e5e8 1865 regcache_invalidate_one ((struct inferior_list_entry *)
54a0b537 1866 get_lwp_thread (lwp));
da6d8c04 1867 errno = 0;
54a0b537
PA
1868 lwp->stopped = 0;
1869 lwp->stepping = step;
14ce3065
DE
1870 ptrace (step ? PTRACE_SINGLESTEP : PTRACE_CONT, lwpid_of (lwp), 0,
1871 /* Coerce to a uintptr_t first to avoid potential gcc warning
1872 of coercing an 8 byte integer to a 4 byte pointer. */
1873 (PTRACE_ARG4_TYPE) (uintptr_t) signal);
0d62e5e8
DJ
1874
1875 current_inferior = saved_inferior;
da6d8c04 1876 if (errno)
3221518c
UW
1877 {
1878 /* ESRCH from ptrace either means that the thread was already
1879 running (an error) or that it is gone (a race condition). If
1880 it's gone, we will get a notification the next time we wait,
1881 so we can ignore the error. We could differentiate these
1882 two, but it's tricky without waiting; the thread still exists
1883 as a zombie, so sending it signal 0 would succeed. So just
1884 ignore ESRCH. */
1885 if (errno == ESRCH)
1886 return;
1887
1888 perror_with_name ("ptrace");
1889 }
da6d8c04
DJ
1890}
1891
2bd7c093
PA
1892struct thread_resume_array
1893{
1894 struct thread_resume *resume;
1895 size_t n;
1896};
64386c31
DJ
1897
1898/* This function is called once per thread. We look up the thread
5544ad89
DJ
1899 in RESUME_PTR, and mark the thread with a pointer to the appropriate
1900 resume request.
1901
1902 This algorithm is O(threads * resume elements), but resume elements
1903 is small (and will remain small at least until GDB supports thread
1904 suspension). */
2bd7c093
PA
1905static int
1906linux_set_resume_request (struct inferior_list_entry *entry, void *arg)
0d62e5e8 1907{
54a0b537 1908 struct lwp_info *lwp;
64386c31 1909 struct thread_info *thread;
5544ad89 1910 int ndx;
2bd7c093 1911 struct thread_resume_array *r;
64386c31
DJ
1912
1913 thread = (struct thread_info *) entry;
54a0b537 1914 lwp = get_thread_lwp (thread);
2bd7c093 1915 r = arg;
64386c31 1916
2bd7c093 1917 for (ndx = 0; ndx < r->n; ndx++)
95954743
PA
1918 {
1919 ptid_t ptid = r->resume[ndx].thread;
1920 if (ptid_equal (ptid, minus_one_ptid)
1921 || ptid_equal (ptid, entry->id)
1922 || (ptid_is_pid (ptid)
1923 && (ptid_get_pid (ptid) == pid_of (lwp)))
1924 || (ptid_get_lwp (ptid) == -1
1925 && (ptid_get_pid (ptid) == pid_of (lwp))))
1926 {
1927 lwp->resume = &r->resume[ndx];
1928 return 0;
1929 }
1930 }
2bd7c093
PA
1931
1932 /* No resume action for this thread. */
1933 lwp->resume = NULL;
64386c31 1934
2bd7c093 1935 return 0;
5544ad89
DJ
1936}
1937
5544ad89 1938
bd99dc85
PA
1939/* Set *FLAG_P if this lwp has an interesting status pending. */
1940static int
1941resume_status_pending_p (struct inferior_list_entry *entry, void *flag_p)
5544ad89 1942{
bd99dc85 1943 struct lwp_info *lwp = (struct lwp_info *) entry;
5544ad89 1944
bd99dc85
PA
1945 /* LWPs which will not be resumed are not interesting, because
1946 we might not wait for them next time through linux_wait. */
2bd7c093 1947 if (lwp->resume == NULL)
bd99dc85 1948 return 0;
64386c31 1949
bd99dc85
PA
1950 /* If this thread has a removed breakpoint, we won't have any
1951 events to report later, so check now. check_removed_breakpoint
1952 may clear status_pending_p. We avoid calling check_removed_breakpoint
1953 for any thread that we are not otherwise going to resume - this
1954 lets us preserve stopped status when two threads hit a breakpoint.
1955 GDB removes the breakpoint to single-step a particular thread
1956 past it, then re-inserts it and resumes all threads. We want
1957 to report the second thread without resuming it in the interim. */
1958 if (lwp->status_pending_p)
1959 check_removed_breakpoint (lwp);
5544ad89 1960
bd99dc85
PA
1961 if (lwp->status_pending_p)
1962 * (int *) flag_p = 1;
c6ecbae5 1963
bd99dc85 1964 return 0;
5544ad89
DJ
1965}
1966
1967/* This function is called once per thread. We check the thread's resume
1968 request, which will tell us whether to resume, step, or leave the thread
bd99dc85 1969 stopped; and what signal, if any, it should be sent.
5544ad89 1970
bd99dc85
PA
1971 For threads which we aren't explicitly told otherwise, we preserve
1972 the stepping flag; this is used for stepping over gdbserver-placed
1973 breakpoints.
1974
1975 If pending_flags was set in any thread, we queue any needed
1976 signals, since we won't actually resume. We already have a pending
1977 event to report, so we don't need to preserve any step requests;
1978 they should be re-issued if necessary. */
1979
1980static int
1981linux_resume_one_thread (struct inferior_list_entry *entry, void *arg)
5544ad89 1982{
54a0b537 1983 struct lwp_info *lwp;
5544ad89 1984 struct thread_info *thread;
bd99dc85
PA
1985 int step;
1986 int pending_flag = * (int *) arg;
5544ad89
DJ
1987
1988 thread = (struct thread_info *) entry;
54a0b537 1989 lwp = get_thread_lwp (thread);
5544ad89 1990
2bd7c093 1991 if (lwp->resume == NULL)
bd99dc85 1992 return 0;
5544ad89 1993
bd99dc85 1994 if (lwp->resume->kind == resume_stop)
5544ad89 1995 {
bd99dc85
PA
1996 if (debug_threads)
1997 fprintf (stderr, "suspending LWP %ld\n", lwpid_of (lwp));
1998
1999 if (!lwp->stopped)
2000 {
2001 if (debug_threads)
95954743 2002 fprintf (stderr, "running -> suspending LWP %ld\n", lwpid_of (lwp));
bd99dc85
PA
2003
2004 lwp->suspended = 1;
2005 send_sigstop (&lwp->head);
2006 }
2007 else
2008 {
2009 if (debug_threads)
2010 {
2011 if (lwp->suspended)
2012 fprintf (stderr, "already stopped/suspended LWP %ld\n",
2013 lwpid_of (lwp));
2014 else
2015 fprintf (stderr, "already stopped/not suspended LWP %ld\n",
2016 lwpid_of (lwp));
2017 }
32ca6d61 2018
bd99dc85
PA
2019 /* Make sure we leave the LWP suspended, so we don't try to
2020 resume it without GDB telling us to. FIXME: The LWP may
2021 have been stopped in an internal event that was not meant
2022 to be notified back to GDB (e.g., gdbserver breakpoint),
2023 so we should be reporting a stop event in that case
2024 too. */
2025 lwp->suspended = 1;
2026 }
32ca6d61 2027
bd99dc85
PA
2028 /* For stop requests, we're done. */
2029 lwp->resume = NULL;
2030 return 0;
5544ad89 2031 }
bd99dc85
PA
2032 else
2033 lwp->suspended = 0;
5544ad89 2034
bd99dc85
PA
2035 /* If this thread which is about to be resumed has a pending status,
2036 then don't resume any threads - we can just report the pending
2037 status. Make sure to queue any signals that would otherwise be
2038 sent. In all-stop mode, we do this decision based on if *any*
2039 thread has a pending status. */
2040 if (non_stop)
2041 resume_status_pending_p (&lwp->head, &pending_flag);
5544ad89 2042
bd99dc85
PA
2043 if (!pending_flag)
2044 {
2045 if (debug_threads)
2046 fprintf (stderr, "resuming LWP %ld\n", lwpid_of (lwp));
5544ad89 2047
95954743 2048 if (ptid_equal (lwp->resume->thread, minus_one_ptid)
bd99dc85
PA
2049 && lwp->stepping
2050 && lwp->pending_is_breakpoint)
2051 step = 1;
2052 else
2053 step = (lwp->resume->kind == resume_step);
5544ad89 2054
2acc282a 2055 linux_resume_one_lwp (lwp, step, lwp->resume->sig, NULL);
bd99dc85
PA
2056 }
2057 else
2058 {
2059 if (debug_threads)
2060 fprintf (stderr, "leaving LWP %ld stopped\n", lwpid_of (lwp));
5544ad89 2061
bd99dc85
PA
2062 /* If we have a new signal, enqueue the signal. */
2063 if (lwp->resume->sig != 0)
2064 {
2065 struct pending_signals *p_sig;
2066 p_sig = xmalloc (sizeof (*p_sig));
2067 p_sig->prev = lwp->pending_signals;
2068 p_sig->signal = lwp->resume->sig;
2069 memset (&p_sig->info, 0, sizeof (siginfo_t));
2070
2071 /* If this is the same signal we were previously stopped by,
2072 make sure to queue its siginfo. We can ignore the return
2073 value of ptrace; if it fails, we'll skip
2074 PTRACE_SETSIGINFO. */
2075 if (WIFSTOPPED (lwp->last_status)
2076 && WSTOPSIG (lwp->last_status) == lwp->resume->sig)
2077 ptrace (PTRACE_GETSIGINFO, lwpid_of (lwp), 0, &p_sig->info);
2078
2079 lwp->pending_signals = p_sig;
2080 }
2081 }
5544ad89 2082
bd99dc85 2083 lwp->resume = NULL;
5544ad89 2084 return 0;
0d62e5e8
DJ
2085}
2086
2087static void
2bd7c093 2088linux_resume (struct thread_resume *resume_info, size_t n)
0d62e5e8 2089{
5544ad89 2090 int pending_flag;
2bd7c093 2091 struct thread_resume_array array = { resume_info, n };
c6ecbae5 2092
2bd7c093 2093 find_inferior (&all_threads, linux_set_resume_request, &array);
5544ad89
DJ
2094
2095 /* If there is a thread which would otherwise be resumed, which
2096 has a pending status, then don't resume any threads - we can just
2097 report the pending status. Make sure to queue any signals
bd99dc85
PA
2098 that would otherwise be sent. In non-stop mode, we'll apply this
2099 logic to each thread individually. */
5544ad89 2100 pending_flag = 0;
bd99dc85
PA
2101 if (!non_stop)
2102 find_inferior (&all_lwps, resume_status_pending_p, &pending_flag);
5544ad89
DJ
2103
2104 if (debug_threads)
2105 {
2106 if (pending_flag)
2107 fprintf (stderr, "Not resuming, pending status\n");
2108 else
2109 fprintf (stderr, "Resuming, no pending status\n");
2110 }
2111
bd99dc85 2112 find_inferior (&all_threads, linux_resume_one_thread, &pending_flag);
0d62e5e8
DJ
2113}
2114
2115#ifdef HAVE_LINUX_USRREGS
da6d8c04
DJ
2116
2117int
0a30fbc4 2118register_addr (int regnum)
da6d8c04
DJ
2119{
2120 int addr;
2121
2ec06d2e 2122 if (regnum < 0 || regnum >= the_low_target.num_regs)
da6d8c04
DJ
2123 error ("Invalid register number %d.", regnum);
2124
2ec06d2e 2125 addr = the_low_target.regmap[regnum];
da6d8c04
DJ
2126
2127 return addr;
2128}
2129
58caa3dc 2130/* Fetch one register. */
da6d8c04 2131static void
442ea881 2132fetch_register (struct regcache *regcache, int regno)
da6d8c04
DJ
2133{
2134 CORE_ADDR regaddr;
48d93c75 2135 int i, size;
0d62e5e8 2136 char *buf;
95954743 2137 int pid;
da6d8c04 2138
2ec06d2e 2139 if (regno >= the_low_target.num_regs)
0a30fbc4 2140 return;
2ec06d2e 2141 if ((*the_low_target.cannot_fetch_register) (regno))
0a30fbc4 2142 return;
da6d8c04 2143
0a30fbc4
DJ
2144 regaddr = register_addr (regno);
2145 if (regaddr == -1)
2146 return;
95954743
PA
2147
2148 pid = lwpid_of (get_thread_lwp (current_inferior));
1b3f6016
PA
2149 size = ((register_size (regno) + sizeof (PTRACE_XFER_TYPE) - 1)
2150 & - sizeof (PTRACE_XFER_TYPE));
48d93c75
UW
2151 buf = alloca (size);
2152 for (i = 0; i < size; i += sizeof (PTRACE_XFER_TYPE))
da6d8c04
DJ
2153 {
2154 errno = 0;
0d62e5e8 2155 *(PTRACE_XFER_TYPE *) (buf + i) =
14ce3065
DE
2156 ptrace (PTRACE_PEEKUSER, pid,
2157 /* Coerce to a uintptr_t first to avoid potential gcc warning
2158 of coercing an 8 byte integer to a 4 byte pointer. */
2159 (PTRACE_ARG3_TYPE) (uintptr_t) regaddr, 0);
da6d8c04
DJ
2160 regaddr += sizeof (PTRACE_XFER_TYPE);
2161 if (errno != 0)
2162 {
2163 /* Warning, not error, in case we are attached; sometimes the
2164 kernel doesn't let us at the registers. */
2165 char *err = strerror (errno);
2166 char *msg = alloca (strlen (err) + 128);
2167 sprintf (msg, "reading register %d: %s", regno, err);
2168 error (msg);
2169 goto error_exit;
2170 }
2171 }
ee1a7ae4
UW
2172
2173 if (the_low_target.supply_ptrace_register)
442ea881 2174 the_low_target.supply_ptrace_register (regcache, regno, buf);
5a1f5858 2175 else
442ea881 2176 supply_register (regcache, regno, buf);
0d62e5e8 2177
da6d8c04
DJ
2178error_exit:;
2179}
2180
2181/* Fetch all registers, or just one, from the child process. */
58caa3dc 2182static void
442ea881 2183usr_fetch_inferior_registers (struct regcache *regcache, int regno)
da6d8c04 2184{
4463ce24 2185 if (regno == -1)
2ec06d2e 2186 for (regno = 0; regno < the_low_target.num_regs; regno++)
442ea881 2187 fetch_register (regcache, regno);
da6d8c04 2188 else
442ea881 2189 fetch_register (regcache, regno);
da6d8c04
DJ
2190}
2191
2192/* Store our register values back into the inferior.
2193 If REGNO is -1, do this for all registers.
2194 Otherwise, REGNO specifies which register (so we can save time). */
58caa3dc 2195static void
442ea881 2196usr_store_inferior_registers (struct regcache *regcache, int regno)
da6d8c04
DJ
2197{
2198 CORE_ADDR regaddr;
48d93c75 2199 int i, size;
0d62e5e8 2200 char *buf;
55ac2b99 2201 int pid;
da6d8c04
DJ
2202
2203 if (regno >= 0)
2204 {
2ec06d2e 2205 if (regno >= the_low_target.num_regs)
0a30fbc4
DJ
2206 return;
2207
bc1e36ca 2208 if ((*the_low_target.cannot_store_register) (regno) == 1)
0a30fbc4
DJ
2209 return;
2210
2211 regaddr = register_addr (regno);
2212 if (regaddr == -1)
da6d8c04 2213 return;
da6d8c04 2214 errno = 0;
48d93c75
UW
2215 size = (register_size (regno) + sizeof (PTRACE_XFER_TYPE) - 1)
2216 & - sizeof (PTRACE_XFER_TYPE);
2217 buf = alloca (size);
2218 memset (buf, 0, size);
ee1a7ae4
UW
2219
2220 if (the_low_target.collect_ptrace_register)
442ea881 2221 the_low_target.collect_ptrace_register (regcache, regno, buf);
5a1f5858 2222 else
442ea881 2223 collect_register (regcache, regno, buf);
ee1a7ae4 2224
95954743 2225 pid = lwpid_of (get_thread_lwp (current_inferior));
48d93c75 2226 for (i = 0; i < size; i += sizeof (PTRACE_XFER_TYPE))
da6d8c04 2227 {
0a30fbc4 2228 errno = 0;
14ce3065
DE
2229 ptrace (PTRACE_POKEUSER, pid,
2230 /* Coerce to a uintptr_t first to avoid potential gcc warning
2231 about coercing an 8 byte integer to a 4 byte pointer. */
2232 (PTRACE_ARG3_TYPE) (uintptr_t) regaddr,
2233 (PTRACE_ARG4_TYPE) *(PTRACE_XFER_TYPE *) (buf + i));
da6d8c04
DJ
2234 if (errno != 0)
2235 {
1b3f6016
PA
2236 /* At this point, ESRCH should mean the process is
2237 already gone, in which case we simply ignore attempts
2238 to change its registers. See also the related
2239 comment in linux_resume_one_lwp. */
3221518c
UW
2240 if (errno == ESRCH)
2241 return;
2242
bc1e36ca
DJ
2243 if ((*the_low_target.cannot_store_register) (regno) == 0)
2244 {
2245 char *err = strerror (errno);
2246 char *msg = alloca (strlen (err) + 128);
2247 sprintf (msg, "writing register %d: %s",
2248 regno, err);
2249 error (msg);
2250 return;
2251 }
da6d8c04 2252 }
2ff29de4 2253 regaddr += sizeof (PTRACE_XFER_TYPE);
da6d8c04 2254 }
da6d8c04
DJ
2255 }
2256 else
2ec06d2e 2257 for (regno = 0; regno < the_low_target.num_regs; regno++)
442ea881 2258 usr_store_inferior_registers (regcache, regno);
da6d8c04 2259}
58caa3dc
DJ
2260#endif /* HAVE_LINUX_USRREGS */
2261
2262
2263
2264#ifdef HAVE_LINUX_REGSETS
2265
2266static int
442ea881 2267regsets_fetch_inferior_registers (struct regcache *regcache)
58caa3dc
DJ
2268{
2269 struct regset_info *regset;
e9d25b98 2270 int saw_general_regs = 0;
95954743 2271 int pid;
58caa3dc
DJ
2272
2273 regset = target_regsets;
2274
95954743 2275 pid = lwpid_of (get_thread_lwp (current_inferior));
58caa3dc
DJ
2276 while (regset->size >= 0)
2277 {
2278 void *buf;
2279 int res;
2280
52fa2412 2281 if (regset->size == 0 || disabled_regsets[regset - target_regsets])
58caa3dc
DJ
2282 {
2283 regset ++;
2284 continue;
2285 }
2286
bca929d3 2287 buf = xmalloc (regset->size);
dfb64f85 2288#ifndef __sparc__
95954743 2289 res = ptrace (regset->get_request, pid, 0, buf);
dfb64f85 2290#else
95954743 2291 res = ptrace (regset->get_request, pid, buf, 0);
dfb64f85 2292#endif
58caa3dc
DJ
2293 if (res < 0)
2294 {
2295 if (errno == EIO)
2296 {
52fa2412
UW
2297 /* If we get EIO on a regset, do not try it again for
2298 this process. */
2299 disabled_regsets[regset - target_regsets] = 1;
fdeb2a12 2300 free (buf);
52fa2412 2301 continue;
58caa3dc
DJ
2302 }
2303 else
2304 {
0d62e5e8 2305 char s[256];
95954743
PA
2306 sprintf (s, "ptrace(regsets_fetch_inferior_registers) PID=%d",
2307 pid);
0d62e5e8 2308 perror (s);
58caa3dc
DJ
2309 }
2310 }
e9d25b98
DJ
2311 else if (regset->type == GENERAL_REGS)
2312 saw_general_regs = 1;
442ea881 2313 regset->store_function (regcache, buf);
58caa3dc 2314 regset ++;
fdeb2a12 2315 free (buf);
58caa3dc 2316 }
e9d25b98
DJ
2317 if (saw_general_regs)
2318 return 0;
2319 else
2320 return 1;
58caa3dc
DJ
2321}
2322
2323static int
442ea881 2324regsets_store_inferior_registers (struct regcache *regcache)
58caa3dc
DJ
2325{
2326 struct regset_info *regset;
e9d25b98 2327 int saw_general_regs = 0;
95954743 2328 int pid;
58caa3dc
DJ
2329
2330 regset = target_regsets;
2331
95954743 2332 pid = lwpid_of (get_thread_lwp (current_inferior));
58caa3dc
DJ
2333 while (regset->size >= 0)
2334 {
2335 void *buf;
2336 int res;
2337
52fa2412 2338 if (regset->size == 0 || disabled_regsets[regset - target_regsets])
58caa3dc
DJ
2339 {
2340 regset ++;
2341 continue;
2342 }
2343
bca929d3 2344 buf = xmalloc (regset->size);
545587ee
DJ
2345
2346 /* First fill the buffer with the current register set contents,
2347 in case there are any items in the kernel's regset that are
2348 not in gdbserver's regcache. */
dfb64f85 2349#ifndef __sparc__
95954743 2350 res = ptrace (regset->get_request, pid, 0, buf);
dfb64f85 2351#else
95954743 2352 res = ptrace (regset->get_request, pid, buf, 0);
dfb64f85 2353#endif
545587ee
DJ
2354
2355 if (res == 0)
2356 {
2357 /* Then overlay our cached registers on that. */
442ea881 2358 regset->fill_function (regcache, buf);
545587ee
DJ
2359
2360 /* Only now do we write the register set. */
dfb64f85 2361#ifndef __sparc__
95954743 2362 res = ptrace (regset->set_request, pid, 0, buf);
dfb64f85 2363#else
95954743 2364 res = ptrace (regset->set_request, pid, buf, 0);
dfb64f85 2365#endif
545587ee
DJ
2366 }
2367
58caa3dc
DJ
2368 if (res < 0)
2369 {
2370 if (errno == EIO)
2371 {
52fa2412
UW
2372 /* If we get EIO on a regset, do not try it again for
2373 this process. */
2374 disabled_regsets[regset - target_regsets] = 1;
fdeb2a12 2375 free (buf);
52fa2412 2376 continue;
58caa3dc 2377 }
3221518c
UW
2378 else if (errno == ESRCH)
2379 {
1b3f6016
PA
2380 /* At this point, ESRCH should mean the process is
2381 already gone, in which case we simply ignore attempts
2382 to change its registers. See also the related
2383 comment in linux_resume_one_lwp. */
fdeb2a12 2384 free (buf);
3221518c
UW
2385 return 0;
2386 }
58caa3dc
DJ
2387 else
2388 {
ce3a066d 2389 perror ("Warning: ptrace(regsets_store_inferior_registers)");
58caa3dc
DJ
2390 }
2391 }
e9d25b98
DJ
2392 else if (regset->type == GENERAL_REGS)
2393 saw_general_regs = 1;
58caa3dc 2394 regset ++;
09ec9b38 2395 free (buf);
58caa3dc 2396 }
e9d25b98
DJ
2397 if (saw_general_regs)
2398 return 0;
2399 else
2400 return 1;
ce3a066d 2401 return 0;
58caa3dc
DJ
2402}
2403
2404#endif /* HAVE_LINUX_REGSETS */
2405
2406
2407void
442ea881 2408linux_fetch_registers (struct regcache *regcache, int regno)
58caa3dc
DJ
2409{
2410#ifdef HAVE_LINUX_REGSETS
442ea881 2411 if (regsets_fetch_inferior_registers (regcache) == 0)
52fa2412 2412 return;
58caa3dc
DJ
2413#endif
2414#ifdef HAVE_LINUX_USRREGS
442ea881 2415 usr_fetch_inferior_registers (regcache, regno);
58caa3dc
DJ
2416#endif
2417}
2418
2419void
442ea881 2420linux_store_registers (struct regcache *regcache, int regno)
58caa3dc
DJ
2421{
2422#ifdef HAVE_LINUX_REGSETS
442ea881 2423 if (regsets_store_inferior_registers (regcache) == 0)
52fa2412 2424 return;
58caa3dc
DJ
2425#endif
2426#ifdef HAVE_LINUX_USRREGS
442ea881 2427 usr_store_inferior_registers (regcache, regno);
58caa3dc
DJ
2428#endif
2429}
2430
da6d8c04 2431
da6d8c04
DJ
2432/* Copy LEN bytes from inferior's memory starting at MEMADDR
2433 to debugger memory starting at MYADDR. */
2434
c3e735a6 2435static int
f450004a 2436linux_read_memory (CORE_ADDR memaddr, unsigned char *myaddr, int len)
da6d8c04
DJ
2437{
2438 register int i;
2439 /* Round starting address down to longword boundary. */
2440 register CORE_ADDR addr = memaddr & -(CORE_ADDR) sizeof (PTRACE_XFER_TYPE);
2441 /* Round ending address up; get number of longwords that makes. */
aa691b87
RM
2442 register int count
2443 = (((memaddr + len) - addr) + sizeof (PTRACE_XFER_TYPE) - 1)
da6d8c04
DJ
2444 / sizeof (PTRACE_XFER_TYPE);
2445 /* Allocate buffer of that many longwords. */
aa691b87 2446 register PTRACE_XFER_TYPE *buffer
da6d8c04 2447 = (PTRACE_XFER_TYPE *) alloca (count * sizeof (PTRACE_XFER_TYPE));
fd462a61
DJ
2448 int fd;
2449 char filename[64];
95954743 2450 int pid = lwpid_of (get_thread_lwp (current_inferior));
fd462a61
DJ
2451
2452 /* Try using /proc. Don't bother for one word. */
2453 if (len >= 3 * sizeof (long))
2454 {
2455 /* We could keep this file open and cache it - possibly one per
2456 thread. That requires some juggling, but is even faster. */
95954743 2457 sprintf (filename, "/proc/%d/mem", pid);
fd462a61
DJ
2458 fd = open (filename, O_RDONLY | O_LARGEFILE);
2459 if (fd == -1)
2460 goto no_proc;
2461
2462 /* If pread64 is available, use it. It's faster if the kernel
2463 supports it (only one syscall), and it's 64-bit safe even on
2464 32-bit platforms (for instance, SPARC debugging a SPARC64
2465 application). */
2466#ifdef HAVE_PREAD64
2467 if (pread64 (fd, myaddr, len, memaddr) != len)
2468#else
1de1badb 2469 if (lseek (fd, memaddr, SEEK_SET) == -1 || read (fd, myaddr, len) != len)
fd462a61
DJ
2470#endif
2471 {
2472 close (fd);
2473 goto no_proc;
2474 }
2475
2476 close (fd);
2477 return 0;
2478 }
da6d8c04 2479
fd462a61 2480 no_proc:
da6d8c04
DJ
2481 /* Read all the longwords */
2482 for (i = 0; i < count; i++, addr += sizeof (PTRACE_XFER_TYPE))
2483 {
c3e735a6 2484 errno = 0;
14ce3065
DE
2485 /* Coerce the 3rd arg to a uintptr_t first to avoid potential gcc warning
2486 about coercing an 8 byte integer to a 4 byte pointer. */
2487 buffer[i] = ptrace (PTRACE_PEEKTEXT, pid,
2488 (PTRACE_ARG3_TYPE) (uintptr_t) addr, 0);
c3e735a6
DJ
2489 if (errno)
2490 return errno;
da6d8c04
DJ
2491 }
2492
2493 /* Copy appropriate bytes out of the buffer. */
1b3f6016
PA
2494 memcpy (myaddr,
2495 (char *) buffer + (memaddr & (sizeof (PTRACE_XFER_TYPE) - 1)),
2496 len);
c3e735a6
DJ
2497
2498 return 0;
da6d8c04
DJ
2499}
2500
2501/* Copy LEN bytes of data from debugger memory at MYADDR
2502 to inferior's memory at MEMADDR.
2503 On failure (cannot write the inferior)
2504 returns the value of errno. */
2505
ce3a066d 2506static int
f450004a 2507linux_write_memory (CORE_ADDR memaddr, const unsigned char *myaddr, int len)
da6d8c04
DJ
2508{
2509 register int i;
2510 /* Round starting address down to longword boundary. */
2511 register CORE_ADDR addr = memaddr & -(CORE_ADDR) sizeof (PTRACE_XFER_TYPE);
2512 /* Round ending address up; get number of longwords that makes. */
2513 register int count
2514 = (((memaddr + len) - addr) + sizeof (PTRACE_XFER_TYPE) - 1) / sizeof (PTRACE_XFER_TYPE);
2515 /* Allocate buffer of that many longwords. */
2516 register PTRACE_XFER_TYPE *buffer = (PTRACE_XFER_TYPE *) alloca (count * sizeof (PTRACE_XFER_TYPE));
95954743 2517 int pid = lwpid_of (get_thread_lwp (current_inferior));
da6d8c04 2518
0d62e5e8
DJ
2519 if (debug_threads)
2520 {
58d6951d
DJ
2521 /* Dump up to four bytes. */
2522 unsigned int val = * (unsigned int *) myaddr;
2523 if (len == 1)
2524 val = val & 0xff;
2525 else if (len == 2)
2526 val = val & 0xffff;
2527 else if (len == 3)
2528 val = val & 0xffffff;
2529 fprintf (stderr, "Writing %0*x to 0x%08lx\n", 2 * ((len < 4) ? len : 4),
2530 val, (long)memaddr);
0d62e5e8
DJ
2531 }
2532
da6d8c04
DJ
2533 /* Fill start and end extra bytes of buffer with existing memory data. */
2534
14ce3065
DE
2535 /* Coerce the 3rd arg to a uintptr_t first to avoid potential gcc warning
2536 about coercing an 8 byte integer to a 4 byte pointer. */
2537 buffer[0] = ptrace (PTRACE_PEEKTEXT, pid,
2538 (PTRACE_ARG3_TYPE) (uintptr_t) addr, 0);
da6d8c04
DJ
2539
2540 if (count > 1)
2541 {
2542 buffer[count - 1]
95954743 2543 = ptrace (PTRACE_PEEKTEXT, pid,
14ce3065
DE
2544 /* Coerce to a uintptr_t first to avoid potential gcc warning
2545 about coercing an 8 byte integer to a 4 byte pointer. */
2546 (PTRACE_ARG3_TYPE) (uintptr_t) (addr + (count - 1)
2547 * sizeof (PTRACE_XFER_TYPE)),
d844cde6 2548 0);
da6d8c04
DJ
2549 }
2550
2551 /* Copy data to be written over corresponding part of buffer */
2552
2553 memcpy ((char *) buffer + (memaddr & (sizeof (PTRACE_XFER_TYPE) - 1)), myaddr, len);
2554
2555 /* Write the entire buffer. */
2556
2557 for (i = 0; i < count; i++, addr += sizeof (PTRACE_XFER_TYPE))
2558 {
2559 errno = 0;
14ce3065
DE
2560 ptrace (PTRACE_POKETEXT, pid,
2561 /* Coerce to a uintptr_t first to avoid potential gcc warning
2562 about coercing an 8 byte integer to a 4 byte pointer. */
2563 (PTRACE_ARG3_TYPE) (uintptr_t) addr,
2564 (PTRACE_ARG4_TYPE) buffer[i]);
da6d8c04
DJ
2565 if (errno)
2566 return errno;
2567 }
2568
2569 return 0;
2570}
2f2893d9 2571
24a09b5f
DJ
2572static int linux_supports_tracefork_flag;
2573
51c2684e 2574/* Helper functions for linux_test_for_tracefork, called via clone (). */
24a09b5f 2575
51c2684e
DJ
2576static int
2577linux_tracefork_grandchild (void *arg)
2578{
2579 _exit (0);
2580}
2581
7407e2de
AS
2582#define STACK_SIZE 4096
2583
51c2684e
DJ
2584static int
2585linux_tracefork_child (void *arg)
24a09b5f
DJ
2586{
2587 ptrace (PTRACE_TRACEME, 0, 0, 0);
2588 kill (getpid (), SIGSTOP);
7407e2de
AS
2589#ifdef __ia64__
2590 __clone2 (linux_tracefork_grandchild, arg, STACK_SIZE,
2591 CLONE_VM | SIGCHLD, NULL);
2592#else
2593 clone (linux_tracefork_grandchild, arg + STACK_SIZE,
2594 CLONE_VM | SIGCHLD, NULL);
2595#endif
24a09b5f
DJ
2596 _exit (0);
2597}
2598
24a09b5f
DJ
2599/* Determine if PTRACE_O_TRACEFORK can be used to follow fork events. Make
2600 sure that we can enable the option, and that it had the desired
2601 effect. */
2602
2603static void
2604linux_test_for_tracefork (void)
2605{
2606 int child_pid, ret, status;
2607 long second_pid;
bca929d3 2608 char *stack = xmalloc (STACK_SIZE * 4);
24a09b5f
DJ
2609
2610 linux_supports_tracefork_flag = 0;
2611
51c2684e 2612 /* Use CLONE_VM instead of fork, to support uClinux (no MMU). */
7407e2de
AS
2613#ifdef __ia64__
2614 child_pid = __clone2 (linux_tracefork_child, stack, STACK_SIZE,
2615 CLONE_VM | SIGCHLD, stack + STACK_SIZE * 2);
2616#else
2617 child_pid = clone (linux_tracefork_child, stack + STACK_SIZE,
2618 CLONE_VM | SIGCHLD, stack + STACK_SIZE * 2);
2619#endif
24a09b5f 2620 if (child_pid == -1)
51c2684e 2621 perror_with_name ("clone");
24a09b5f
DJ
2622
2623 ret = my_waitpid (child_pid, &status, 0);
2624 if (ret == -1)
2625 perror_with_name ("waitpid");
2626 else if (ret != child_pid)
2627 error ("linux_test_for_tracefork: waitpid: unexpected result %d.", ret);
2628 if (! WIFSTOPPED (status))
2629 error ("linux_test_for_tracefork: waitpid: unexpected status %d.", status);
2630
14ce3065
DE
2631 ret = ptrace (PTRACE_SETOPTIONS, child_pid, 0,
2632 (PTRACE_ARG4_TYPE) PTRACE_O_TRACEFORK);
24a09b5f
DJ
2633 if (ret != 0)
2634 {
2635 ret = ptrace (PTRACE_KILL, child_pid, 0, 0);
2636 if (ret != 0)
2637 {
2638 warning ("linux_test_for_tracefork: failed to kill child");
2639 return;
2640 }
2641
2642 ret = my_waitpid (child_pid, &status, 0);
2643 if (ret != child_pid)
2644 warning ("linux_test_for_tracefork: failed to wait for killed child");
2645 else if (!WIFSIGNALED (status))
2646 warning ("linux_test_for_tracefork: unexpected wait status 0x%x from "
2647 "killed child", status);
2648
2649 return;
2650 }
2651
2652 ret = ptrace (PTRACE_CONT, child_pid, 0, 0);
2653 if (ret != 0)
2654 warning ("linux_test_for_tracefork: failed to resume child");
2655
2656 ret = my_waitpid (child_pid, &status, 0);
2657
2658 if (ret == child_pid && WIFSTOPPED (status)
2659 && status >> 16 == PTRACE_EVENT_FORK)
2660 {
2661 second_pid = 0;
2662 ret = ptrace (PTRACE_GETEVENTMSG, child_pid, 0, &second_pid);
2663 if (ret == 0 && second_pid != 0)
2664 {
2665 int second_status;
2666
2667 linux_supports_tracefork_flag = 1;
2668 my_waitpid (second_pid, &second_status, 0);
2669 ret = ptrace (PTRACE_KILL, second_pid, 0, 0);
2670 if (ret != 0)
2671 warning ("linux_test_for_tracefork: failed to kill second child");
2672 my_waitpid (second_pid, &status, 0);
2673 }
2674 }
2675 else
2676 warning ("linux_test_for_tracefork: unexpected result from waitpid "
2677 "(%d, status 0x%x)", ret, status);
2678
2679 do
2680 {
2681 ret = ptrace (PTRACE_KILL, child_pid, 0, 0);
2682 if (ret != 0)
2683 warning ("linux_test_for_tracefork: failed to kill child");
2684 my_waitpid (child_pid, &status, 0);
2685 }
2686 while (WIFSTOPPED (status));
51c2684e
DJ
2687
2688 free (stack);
24a09b5f
DJ
2689}
2690
2691
2f2893d9
DJ
2692static void
2693linux_look_up_symbols (void)
2694{
0d62e5e8 2695#ifdef USE_THREAD_DB
95954743
PA
2696 struct process_info *proc = current_process ();
2697
cdbfd419 2698 if (proc->private->thread_db != NULL)
0d62e5e8
DJ
2699 return;
2700
cdbfd419 2701 thread_db_init (!linux_supports_tracefork_flag);
0d62e5e8
DJ
2702#endif
2703}
2704
e5379b03 2705static void
ef57601b 2706linux_request_interrupt (void)
e5379b03 2707{
a1928bad 2708 extern unsigned long signal_pid;
e5379b03 2709
95954743
PA
2710 if (!ptid_equal (cont_thread, null_ptid)
2711 && !ptid_equal (cont_thread, minus_one_ptid))
e5379b03 2712 {
54a0b537 2713 struct lwp_info *lwp;
bd99dc85 2714 int lwpid;
e5379b03 2715
54a0b537 2716 lwp = get_thread_lwp (current_inferior);
bd99dc85
PA
2717 lwpid = lwpid_of (lwp);
2718 kill_lwp (lwpid, SIGINT);
e5379b03
DJ
2719 }
2720 else
ef57601b 2721 kill_lwp (signal_pid, SIGINT);
e5379b03
DJ
2722}
2723
aa691b87
RM
2724/* Copy LEN bytes from inferior's auxiliary vector starting at OFFSET
2725 to debugger memory starting at MYADDR. */
2726
2727static int
f450004a 2728linux_read_auxv (CORE_ADDR offset, unsigned char *myaddr, unsigned int len)
aa691b87
RM
2729{
2730 char filename[PATH_MAX];
2731 int fd, n;
95954743 2732 int pid = lwpid_of (get_thread_lwp (current_inferior));
aa691b87 2733
95954743 2734 snprintf (filename, sizeof filename, "/proc/%d/auxv", pid);
aa691b87
RM
2735
2736 fd = open (filename, O_RDONLY);
2737 if (fd < 0)
2738 return -1;
2739
2740 if (offset != (CORE_ADDR) 0
2741 && lseek (fd, (off_t) offset, SEEK_SET) != (off_t) offset)
2742 n = -1;
2743 else
2744 n = read (fd, myaddr, len);
2745
2746 close (fd);
2747
2748 return n;
2749}
2750
d993e290
PA
2751/* These breakpoint and watchpoint related wrapper functions simply
2752 pass on the function call if the target has registered a
2753 corresponding function. */
e013ee27
OF
2754
2755static int
d993e290 2756linux_insert_point (char type, CORE_ADDR addr, int len)
e013ee27 2757{
d993e290
PA
2758 if (the_low_target.insert_point != NULL)
2759 return the_low_target.insert_point (type, addr, len);
e013ee27
OF
2760 else
2761 /* Unsupported (see target.h). */
2762 return 1;
2763}
2764
2765static int
d993e290 2766linux_remove_point (char type, CORE_ADDR addr, int len)
e013ee27 2767{
d993e290
PA
2768 if (the_low_target.remove_point != NULL)
2769 return the_low_target.remove_point (type, addr, len);
e013ee27
OF
2770 else
2771 /* Unsupported (see target.h). */
2772 return 1;
2773}
2774
2775static int
2776linux_stopped_by_watchpoint (void)
2777{
2778 if (the_low_target.stopped_by_watchpoint != NULL)
2779 return the_low_target.stopped_by_watchpoint ();
2780 else
2781 return 0;
2782}
2783
2784static CORE_ADDR
2785linux_stopped_data_address (void)
2786{
2787 if (the_low_target.stopped_data_address != NULL)
2788 return the_low_target.stopped_data_address ();
2789 else
2790 return 0;
2791}
2792
42c81e2a 2793#if defined(__UCLIBC__) && defined(HAS_NOMMU)
52fb6437
NS
2794#if defined(__mcoldfire__)
2795/* These should really be defined in the kernel's ptrace.h header. */
2796#define PT_TEXT_ADDR 49*4
2797#define PT_DATA_ADDR 50*4
2798#define PT_TEXT_END_ADDR 51*4
2799#endif
2800
2801/* Under uClinux, programs are loaded at non-zero offsets, which we need
2802 to tell gdb about. */
2803
2804static int
2805linux_read_offsets (CORE_ADDR *text_p, CORE_ADDR *data_p)
2806{
2807#if defined(PT_TEXT_ADDR) && defined(PT_DATA_ADDR) && defined(PT_TEXT_END_ADDR)
2808 unsigned long text, text_end, data;
bd99dc85 2809 int pid = lwpid_of (get_thread_lwp (current_inferior));
52fb6437
NS
2810
2811 errno = 0;
2812
2813 text = ptrace (PTRACE_PEEKUSER, pid, (long)PT_TEXT_ADDR, 0);
2814 text_end = ptrace (PTRACE_PEEKUSER, pid, (long)PT_TEXT_END_ADDR, 0);
2815 data = ptrace (PTRACE_PEEKUSER, pid, (long)PT_DATA_ADDR, 0);
2816
2817 if (errno == 0)
2818 {
2819 /* Both text and data offsets produced at compile-time (and so
1b3f6016
PA
2820 used by gdb) are relative to the beginning of the program,
2821 with the data segment immediately following the text segment.
2822 However, the actual runtime layout in memory may put the data
2823 somewhere else, so when we send gdb a data base-address, we
2824 use the real data base address and subtract the compile-time
2825 data base-address from it (which is just the length of the
2826 text segment). BSS immediately follows data in both
2827 cases. */
52fb6437
NS
2828 *text_p = text;
2829 *data_p = data - (text_end - text);
1b3f6016 2830
52fb6437
NS
2831 return 1;
2832 }
2833#endif
2834 return 0;
2835}
2836#endif
2837
dc146f7c
VP
2838static int
2839compare_ints (const void *xa, const void *xb)
2840{
2841 int a = *(const int *)xa;
2842 int b = *(const int *)xb;
2843
2844 return a - b;
2845}
2846
2847static int *
2848unique (int *b, int *e)
2849{
2850 int *d = b;
2851 while (++b != e)
2852 if (*d != *b)
2853 *++d = *b;
2854 return ++d;
2855}
2856
2857/* Given PID, iterates over all threads in that process.
2858
2859 Information about each thread, in a format suitable for qXfer:osdata:thread
2860 is printed to BUFFER, if it's not NULL. BUFFER is assumed to be already
2861 initialized, and the caller is responsible for finishing and appending '\0'
2862 to it.
2863
2864 The list of cores that threads are running on is assigned to *CORES, if it
2865 is not NULL. If no cores are found, *CORES will be set to NULL. Caller
2866 should free *CORES. */
2867
2868static void
2869list_threads (int pid, struct buffer *buffer, char **cores)
2870{
2871 int count = 0;
2872 int allocated = 10;
2873 int *core_numbers = xmalloc (sizeof (int) * allocated);
2874 char pathname[128];
2875 DIR *dir;
2876 struct dirent *dp;
2877 struct stat statbuf;
2878
2879 sprintf (pathname, "/proc/%d/task", pid);
2880 if (stat (pathname, &statbuf) == 0 && S_ISDIR (statbuf.st_mode))
2881 {
2882 dir = opendir (pathname);
2883 if (!dir)
2884 {
2885 free (core_numbers);
2886 return;
2887 }
2888
2889 while ((dp = readdir (dir)) != NULL)
2890 {
2891 unsigned long lwp = strtoul (dp->d_name, NULL, 10);
2892
2893 if (lwp != 0)
2894 {
2895 unsigned core = linux_core_of_thread (ptid_build (pid, lwp, 0));
2896
2897 if (core != -1)
2898 {
2899 char s[sizeof ("4294967295")];
2900 sprintf (s, "%u", core);
2901
2902 if (count == allocated)
2903 {
2904 allocated *= 2;
2905 core_numbers = realloc (core_numbers,
2906 sizeof (int) * allocated);
2907 }
2908 core_numbers[count++] = core;
2909 if (buffer)
2910 buffer_xml_printf (buffer,
2911 "<item>"
2912 "<column name=\"pid\">%d</column>"
2913 "<column name=\"tid\">%s</column>"
2914 "<column name=\"core\">%s</column>"
2915 "</item>", pid, dp->d_name, s);
2916 }
2917 else
2918 {
2919 if (buffer)
2920 buffer_xml_printf (buffer,
2921 "<item>"
2922 "<column name=\"pid\">%d</column>"
2923 "<column name=\"tid\">%s</column>"
2924 "</item>", pid, dp->d_name);
2925 }
2926 }
2927 }
2928 }
2929
2930 if (cores)
2931 {
2932 *cores = NULL;
2933 if (count > 0)
2934 {
2935 struct buffer buffer2;
2936 int *b;
2937 int *e;
2938 qsort (core_numbers, count, sizeof (int), compare_ints);
2939
2940 /* Remove duplicates. */
2941 b = core_numbers;
2942 e = unique (b, core_numbers + count);
2943
2944 buffer_init (&buffer2);
2945
2946 for (b = core_numbers; b != e; ++b)
2947 {
2948 char number[sizeof ("4294967295")];
2949 sprintf (number, "%u", *b);
2950 buffer_xml_printf (&buffer2, "%s%s",
2951 (b == core_numbers) ? "" : ",", number);
2952 }
2953 buffer_grow_str0 (&buffer2, "");
2954
2955 *cores = buffer_finish (&buffer2);
2956 }
2957 }
2958 free (core_numbers);
2959}
2960
2961static void
2962show_process (int pid, const char *username, struct buffer *buffer)
2963{
2964 char pathname[128];
2965 FILE *f;
2966 char cmd[MAXPATHLEN + 1];
2967
2968 sprintf (pathname, "/proc/%d/cmdline", pid);
2969
2970 if ((f = fopen (pathname, "r")) != NULL)
2971 {
2972 size_t len = fread (cmd, 1, sizeof (cmd) - 1, f);
2973 if (len > 0)
2974 {
2975 char *cores = 0;
2976 int i;
2977 for (i = 0; i < len; i++)
2978 if (cmd[i] == '\0')
2979 cmd[i] = ' ';
2980 cmd[len] = '\0';
2981
2982 buffer_xml_printf (buffer,
2983 "<item>"
2984 "<column name=\"pid\">%d</column>"
2985 "<column name=\"user\">%s</column>"
2986 "<column name=\"command\">%s</column>",
2987 pid,
2988 username,
2989 cmd);
2990
2991 /* This only collects core numbers, and does not print threads. */
2992 list_threads (pid, NULL, &cores);
2993
2994 if (cores)
2995 {
2996 buffer_xml_printf (buffer,
2997 "<column name=\"cores\">%s</column>", cores);
2998 free (cores);
2999 }
3000
3001 buffer_xml_printf (buffer, "</item>");
3002 }
3003 fclose (f);
3004 }
3005}
3006
07e059b5
VP
3007static int
3008linux_qxfer_osdata (const char *annex,
1b3f6016
PA
3009 unsigned char *readbuf, unsigned const char *writebuf,
3010 CORE_ADDR offset, int len)
07e059b5
VP
3011{
3012 /* We make the process list snapshot when the object starts to be
3013 read. */
3014 static const char *buf;
3015 static long len_avail = -1;
3016 static struct buffer buffer;
dc146f7c
VP
3017 int processes = 0;
3018 int threads = 0;
07e059b5
VP
3019
3020 DIR *dirp;
3021
dc146f7c
VP
3022 if (strcmp (annex, "processes") == 0)
3023 processes = 1;
3024 else if (strcmp (annex, "threads") == 0)
3025 threads = 1;
3026 else
07e059b5
VP
3027 return 0;
3028
3029 if (!readbuf || writebuf)
3030 return 0;
3031
3032 if (offset == 0)
3033 {
3034 if (len_avail != -1 && len_avail != 0)
3035 buffer_free (&buffer);
3036 len_avail = 0;
3037 buf = NULL;
3038 buffer_init (&buffer);
dc146f7c
VP
3039 if (processes)
3040 buffer_grow_str (&buffer, "<osdata type=\"processes\">");
3041 else if (threads)
3042 buffer_grow_str (&buffer, "<osdata type=\"threads\">");
07e059b5
VP
3043
3044 dirp = opendir ("/proc");
3045 if (dirp)
3046 {
1b3f6016
PA
3047 struct dirent *dp;
3048 while ((dp = readdir (dirp)) != NULL)
3049 {
3050 struct stat statbuf;
3051 char procentry[sizeof ("/proc/4294967295")];
3052
3053 if (!isdigit (dp->d_name[0])
3054 || strlen (dp->d_name) > sizeof ("4294967295") - 1)
3055 continue;
3056
3057 sprintf (procentry, "/proc/%s", dp->d_name);
3058 if (stat (procentry, &statbuf) == 0
3059 && S_ISDIR (statbuf.st_mode))
3060 {
dc146f7c 3061 int pid = (int) strtoul (dp->d_name, NULL, 10);
1b3f6016 3062
dc146f7c 3063 if (processes)
1b3f6016 3064 {
dc146f7c
VP
3065 struct passwd *entry = getpwuid (statbuf.st_uid);
3066 show_process (pid, entry ? entry->pw_name : "?", &buffer);
3067 }
3068 else if (threads)
3069 {
3070 list_threads (pid, &buffer, NULL);
1b3f6016
PA
3071 }
3072 }
3073 }
07e059b5 3074
1b3f6016 3075 closedir (dirp);
07e059b5
VP
3076 }
3077 buffer_grow_str0 (&buffer, "</osdata>\n");
3078 buf = buffer_finish (&buffer);
3079 len_avail = strlen (buf);
3080 }
3081
3082 if (offset >= len_avail)
3083 {
3084 /* Done. Get rid of the data. */
3085 buffer_free (&buffer);
3086 buf = NULL;
3087 len_avail = 0;
3088 return 0;
3089 }
3090
3091 if (len > len_avail - offset)
3092 len = len_avail - offset;
3093 memcpy (readbuf, buf + offset, len);
3094
3095 return len;
3096}
3097
d0722149
DE
3098/* Convert a native/host siginfo object, into/from the siginfo in the
3099 layout of the inferiors' architecture. */
3100
3101static void
3102siginfo_fixup (struct siginfo *siginfo, void *inf_siginfo, int direction)
3103{
3104 int done = 0;
3105
3106 if (the_low_target.siginfo_fixup != NULL)
3107 done = the_low_target.siginfo_fixup (siginfo, inf_siginfo, direction);
3108
3109 /* If there was no callback, or the callback didn't do anything,
3110 then just do a straight memcpy. */
3111 if (!done)
3112 {
3113 if (direction == 1)
3114 memcpy (siginfo, inf_siginfo, sizeof (struct siginfo));
3115 else
3116 memcpy (inf_siginfo, siginfo, sizeof (struct siginfo));
3117 }
3118}
3119
4aa995e1
PA
3120static int
3121linux_xfer_siginfo (const char *annex, unsigned char *readbuf,
3122 unsigned const char *writebuf, CORE_ADDR offset, int len)
3123{
d0722149 3124 int pid;
4aa995e1 3125 struct siginfo siginfo;
d0722149 3126 char inf_siginfo[sizeof (struct siginfo)];
4aa995e1
PA
3127
3128 if (current_inferior == NULL)
3129 return -1;
3130
bd99dc85 3131 pid = lwpid_of (get_thread_lwp (current_inferior));
4aa995e1
PA
3132
3133 if (debug_threads)
d0722149 3134 fprintf (stderr, "%s siginfo for lwp %d.\n",
4aa995e1
PA
3135 readbuf != NULL ? "Reading" : "Writing",
3136 pid);
3137
3138 if (offset > sizeof (siginfo))
3139 return -1;
3140
3141 if (ptrace (PTRACE_GETSIGINFO, pid, 0, &siginfo) != 0)
3142 return -1;
3143
d0722149
DE
3144 /* When GDBSERVER is built as a 64-bit application, ptrace writes into
3145 SIGINFO an object with 64-bit layout. Since debugging a 32-bit
3146 inferior with a 64-bit GDBSERVER should look the same as debugging it
3147 with a 32-bit GDBSERVER, we need to convert it. */
3148 siginfo_fixup (&siginfo, inf_siginfo, 0);
3149
4aa995e1
PA
3150 if (offset + len > sizeof (siginfo))
3151 len = sizeof (siginfo) - offset;
3152
3153 if (readbuf != NULL)
d0722149 3154 memcpy (readbuf, inf_siginfo + offset, len);
4aa995e1
PA
3155 else
3156 {
d0722149
DE
3157 memcpy (inf_siginfo + offset, writebuf, len);
3158
3159 /* Convert back to ptrace layout before flushing it out. */
3160 siginfo_fixup (&siginfo, inf_siginfo, 1);
3161
4aa995e1
PA
3162 if (ptrace (PTRACE_SETSIGINFO, pid, 0, &siginfo) != 0)
3163 return -1;
3164 }
3165
3166 return len;
3167}
3168
bd99dc85
PA
3169/* SIGCHLD handler that serves two purposes: In non-stop/async mode,
3170 so we notice when children change state; as the handler for the
3171 sigsuspend in my_waitpid. */
3172
3173static void
3174sigchld_handler (int signo)
3175{
3176 int old_errno = errno;
3177
3178 if (debug_threads)
3179 /* fprintf is not async-signal-safe, so call write directly. */
3180 write (2, "sigchld_handler\n", sizeof ("sigchld_handler\n") - 1);
3181
3182 if (target_is_async_p ())
3183 async_file_mark (); /* trigger a linux_wait */
3184
3185 errno = old_errno;
3186}
3187
3188static int
3189linux_supports_non_stop (void)
3190{
3191 return 1;
3192}
3193
3194static int
3195linux_async (int enable)
3196{
3197 int previous = (linux_event_pipe[0] != -1);
3198
3199 if (previous != enable)
3200 {
3201 sigset_t mask;
3202 sigemptyset (&mask);
3203 sigaddset (&mask, SIGCHLD);
3204
3205 sigprocmask (SIG_BLOCK, &mask, NULL);
3206
3207 if (enable)
3208 {
3209 if (pipe (linux_event_pipe) == -1)
3210 fatal ("creating event pipe failed.");
3211
3212 fcntl (linux_event_pipe[0], F_SETFL, O_NONBLOCK);
3213 fcntl (linux_event_pipe[1], F_SETFL, O_NONBLOCK);
3214
3215 /* Register the event loop handler. */
3216 add_file_handler (linux_event_pipe[0],
3217 handle_target_event, NULL);
3218
3219 /* Always trigger a linux_wait. */
3220 async_file_mark ();
3221 }
3222 else
3223 {
3224 delete_file_handler (linux_event_pipe[0]);
3225
3226 close (linux_event_pipe[0]);
3227 close (linux_event_pipe[1]);
3228 linux_event_pipe[0] = -1;
3229 linux_event_pipe[1] = -1;
3230 }
3231
3232 sigprocmask (SIG_UNBLOCK, &mask, NULL);
3233 }
3234
3235 return previous;
3236}
3237
3238static int
3239linux_start_non_stop (int nonstop)
3240{
3241 /* Register or unregister from event-loop accordingly. */
3242 linux_async (nonstop);
3243 return 0;
3244}
3245
cf8fd78b
PA
3246static int
3247linux_supports_multi_process (void)
3248{
3249 return 1;
3250}
3251
efcbbd14
UW
3252
3253/* Enumerate spufs IDs for process PID. */
3254static int
3255spu_enumerate_spu_ids (long pid, unsigned char *buf, CORE_ADDR offset, int len)
3256{
3257 int pos = 0;
3258 int written = 0;
3259 char path[128];
3260 DIR *dir;
3261 struct dirent *entry;
3262
3263 sprintf (path, "/proc/%ld/fd", pid);
3264 dir = opendir (path);
3265 if (!dir)
3266 return -1;
3267
3268 rewinddir (dir);
3269 while ((entry = readdir (dir)) != NULL)
3270 {
3271 struct stat st;
3272 struct statfs stfs;
3273 int fd;
3274
3275 fd = atoi (entry->d_name);
3276 if (!fd)
3277 continue;
3278
3279 sprintf (path, "/proc/%ld/fd/%d", pid, fd);
3280 if (stat (path, &st) != 0)
3281 continue;
3282 if (!S_ISDIR (st.st_mode))
3283 continue;
3284
3285 if (statfs (path, &stfs) != 0)
3286 continue;
3287 if (stfs.f_type != SPUFS_MAGIC)
3288 continue;
3289
3290 if (pos >= offset && pos + 4 <= offset + len)
3291 {
3292 *(unsigned int *)(buf + pos - offset) = fd;
3293 written += 4;
3294 }
3295 pos += 4;
3296 }
3297
3298 closedir (dir);
3299 return written;
3300}
3301
3302/* Implements the to_xfer_partial interface for the TARGET_OBJECT_SPU
3303 object type, using the /proc file system. */
3304static int
3305linux_qxfer_spu (const char *annex, unsigned char *readbuf,
3306 unsigned const char *writebuf,
3307 CORE_ADDR offset, int len)
3308{
3309 long pid = lwpid_of (get_thread_lwp (current_inferior));
3310 char buf[128];
3311 int fd = 0;
3312 int ret = 0;
3313
3314 if (!writebuf && !readbuf)
3315 return -1;
3316
3317 if (!*annex)
3318 {
3319 if (!readbuf)
3320 return -1;
3321 else
3322 return spu_enumerate_spu_ids (pid, readbuf, offset, len);
3323 }
3324
3325 sprintf (buf, "/proc/%ld/fd/%s", pid, annex);
3326 fd = open (buf, writebuf? O_WRONLY : O_RDONLY);
3327 if (fd <= 0)
3328 return -1;
3329
3330 if (offset != 0
3331 && lseek (fd, (off_t) offset, SEEK_SET) != (off_t) offset)
3332 {
3333 close (fd);
3334 return 0;
3335 }
3336
3337 if (writebuf)
3338 ret = write (fd, writebuf, (size_t) len);
3339 else
3340 ret = read (fd, readbuf, (size_t) len);
3341
3342 close (fd);
3343 return ret;
3344}
3345
dc146f7c
VP
3346static int
3347linux_core_of_thread (ptid_t ptid)
3348{
3349 char filename[sizeof ("/proc//task//stat")
3350 + 2 * 20 /* decimal digits for 2 numbers, max 2^64 bit each */
3351 + 1];
3352 FILE *f;
3353 char *content = NULL;
3354 char *p;
3355 char *ts = 0;
3356 int content_read = 0;
3357 int i;
3358 int core;
3359
3360 sprintf (filename, "/proc/%d/task/%ld/stat",
3361 ptid_get_pid (ptid), ptid_get_lwp (ptid));
3362 f = fopen (filename, "r");
3363 if (!f)
3364 return -1;
3365
3366 for (;;)
3367 {
3368 int n;
3369 content = realloc (content, content_read + 1024);
3370 n = fread (content + content_read, 1, 1024, f);
3371 content_read += n;
3372 if (n < 1024)
3373 {
3374 content[content_read] = '\0';
3375 break;
3376 }
3377 }
3378
3379 p = strchr (content, '(');
3380 p = strchr (p, ')') + 2; /* skip ")" and a whitespace. */
3381
3382 p = strtok_r (p, " ", &ts);
3383 for (i = 0; i != 36; ++i)
3384 p = strtok_r (NULL, " ", &ts);
3385
3386 if (sscanf (p, "%d", &core) == 0)
3387 core = -1;
3388
3389 free (content);
3390 fclose (f);
3391
3392 return core;
3393}
3394
ce3a066d
DJ
3395static struct target_ops linux_target_ops = {
3396 linux_create_inferior,
3397 linux_attach,
3398 linux_kill,
6ad8ae5c 3399 linux_detach,
444d6139 3400 linux_join,
ce3a066d
DJ
3401 linux_thread_alive,
3402 linux_resume,
3403 linux_wait,
3404 linux_fetch_registers,
3405 linux_store_registers,
3406 linux_read_memory,
3407 linux_write_memory,
2f2893d9 3408 linux_look_up_symbols,
ef57601b 3409 linux_request_interrupt,
aa691b87 3410 linux_read_auxv,
d993e290
PA
3411 linux_insert_point,
3412 linux_remove_point,
e013ee27
OF
3413 linux_stopped_by_watchpoint,
3414 linux_stopped_data_address,
42c81e2a 3415#if defined(__UCLIBC__) && defined(HAS_NOMMU)
52fb6437 3416 linux_read_offsets,
dae5f5cf
DJ
3417#else
3418 NULL,
3419#endif
3420#ifdef USE_THREAD_DB
3421 thread_db_get_tls_address,
3422#else
3423 NULL,
52fb6437 3424#endif
efcbbd14 3425 linux_qxfer_spu,
59a016f0 3426 hostio_last_error_from_errno,
07e059b5 3427 linux_qxfer_osdata,
4aa995e1 3428 linux_xfer_siginfo,
bd99dc85
PA
3429 linux_supports_non_stop,
3430 linux_async,
3431 linux_start_non_stop,
cdbfd419
PP
3432 linux_supports_multi_process,
3433#ifdef USE_THREAD_DB
dc146f7c 3434 thread_db_handle_monitor_command,
cdbfd419 3435#else
dc146f7c 3436 NULL,
cdbfd419 3437#endif
dc146f7c 3438 linux_core_of_thread
ce3a066d
DJ
3439};
3440
0d62e5e8
DJ
3441static void
3442linux_init_signals ()
3443{
3444 /* FIXME drow/2002-06-09: As above, we should check with LinuxThreads
3445 to find what the cancel signal actually is. */
60c3d7b0 3446#ifdef __SIGRTMIN /* Bionic doesn't use SIGRTMIN the way glibc does. */
254787d4 3447 signal (__SIGRTMIN+1, SIG_IGN);
60c3d7b0 3448#endif
0d62e5e8
DJ
3449}
3450
da6d8c04
DJ
3451void
3452initialize_low (void)
3453{
bd99dc85
PA
3454 struct sigaction sigchld_action;
3455 memset (&sigchld_action, 0, sizeof (sigchld_action));
ce3a066d 3456 set_target_ops (&linux_target_ops);
611cb4a5
DJ
3457 set_breakpoint_data (the_low_target.breakpoint,
3458 the_low_target.breakpoint_len);
0d62e5e8 3459 linux_init_signals ();
24a09b5f 3460 linux_test_for_tracefork ();
52fa2412
UW
3461#ifdef HAVE_LINUX_REGSETS
3462 for (num_regsets = 0; target_regsets[num_regsets].size >= 0; num_regsets++)
3463 ;
bca929d3 3464 disabled_regsets = xmalloc (num_regsets);
52fa2412 3465#endif
bd99dc85
PA
3466
3467 sigchld_action.sa_handler = sigchld_handler;
3468 sigemptyset (&sigchld_action.sa_mask);
3469 sigchld_action.sa_flags = SA_RESTART;
3470 sigaction (SIGCHLD, &sigchld_action, NULL);
da6d8c04 3471}
This page took 0.767035 seconds and 4 git commands to generate.