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