Commit | Line | Data |
---|---|---|
da6d8c04 | 1 | /* Low level interface to ptrace, for the remote server for GDB. |
32d0add0 | 2 | Copyright (C) 1995-2015 Free Software Foundation, Inc. |
da6d8c04 DJ |
3 | |
4 | This file is part of GDB. | |
5 | ||
6 | This program is free software; you can redistribute it and/or modify | |
7 | it under the terms of the GNU General Public License as published by | |
a9762ec7 | 8 | the Free Software Foundation; either version 3 of the License, or |
da6d8c04 DJ |
9 | (at your option) any later version. |
10 | ||
11 | This program is distributed in the hope that it will be useful, | |
12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 | GNU General Public License for more details. | |
15 | ||
16 | You should have received a copy of the GNU General Public License | |
a9762ec7 | 17 | along with this program. If not, see <http://www.gnu.org/licenses/>. */ |
da6d8c04 DJ |
18 | |
19 | #include "server.h" | |
58caa3dc | 20 | #include "linux-low.h" |
125f8a3d | 21 | #include "nat/linux-osdata.h" |
58b4daa5 | 22 | #include "agent.h" |
de0d863e | 23 | #include "tdesc.h" |
b20a6524 | 24 | #include "rsp-low.h" |
da6d8c04 | 25 | |
96d7229d LM |
26 | #include "nat/linux-nat.h" |
27 | #include "nat/linux-waitpid.h" | |
8bdce1ff | 28 | #include "gdb_wait.h" |
5826e159 | 29 | #include "nat/gdb_ptrace.h" |
125f8a3d GB |
30 | #include "nat/linux-ptrace.h" |
31 | #include "nat/linux-procfs.h" | |
8cc73a39 | 32 | #include "nat/linux-personality.h" |
da6d8c04 DJ |
33 | #include <signal.h> |
34 | #include <sys/ioctl.h> | |
35 | #include <fcntl.h> | |
0a30fbc4 | 36 | #include <unistd.h> |
fd500816 | 37 | #include <sys/syscall.h> |
f9387fc3 | 38 | #include <sched.h> |
07e059b5 VP |
39 | #include <ctype.h> |
40 | #include <pwd.h> | |
41 | #include <sys/types.h> | |
42 | #include <dirent.h> | |
53ce3c39 | 43 | #include <sys/stat.h> |
efcbbd14 | 44 | #include <sys/vfs.h> |
1570b33e | 45 | #include <sys/uio.h> |
602e3198 | 46 | #include "filestuff.h" |
c144c7a0 | 47 | #include "tracepoint.h" |
533b0600 | 48 | #include "hostio.h" |
957f3f49 DE |
49 | #ifndef ELFMAG0 |
50 | /* Don't include <linux/elf.h> here. If it got included by gdb_proc_service.h | |
51 | then ELFMAG0 will have been defined. If it didn't get included by | |
52 | gdb_proc_service.h then including it will likely introduce a duplicate | |
53 | definition of elf_fpregset_t. */ | |
54 | #include <elf.h> | |
55 | #endif | |
14d2069a | 56 | #include "nat/linux-namespaces.h" |
efcbbd14 UW |
57 | |
58 | #ifndef SPUFS_MAGIC | |
59 | #define SPUFS_MAGIC 0x23c9b64e | |
60 | #endif | |
da6d8c04 | 61 | |
03583c20 UW |
62 | #ifdef HAVE_PERSONALITY |
63 | # include <sys/personality.h> | |
64 | # if !HAVE_DECL_ADDR_NO_RANDOMIZE | |
65 | # define ADDR_NO_RANDOMIZE 0x0040000 | |
66 | # endif | |
67 | #endif | |
68 | ||
fd462a61 DJ |
69 | #ifndef O_LARGEFILE |
70 | #define O_LARGEFILE 0 | |
71 | #endif | |
1a981360 | 72 | |
db0dfaa0 LM |
73 | /* Some targets did not define these ptrace constants from the start, |
74 | so gdbserver defines them locally here. In the future, these may | |
75 | be removed after they are added to asm/ptrace.h. */ | |
76 | #if !(defined(PT_TEXT_ADDR) \ | |
77 | || defined(PT_DATA_ADDR) \ | |
78 | || defined(PT_TEXT_END_ADDR)) | |
79 | #if defined(__mcoldfire__) | |
80 | /* These are still undefined in 3.10 kernels. */ | |
81 | #define PT_TEXT_ADDR 49*4 | |
82 | #define PT_DATA_ADDR 50*4 | |
83 | #define PT_TEXT_END_ADDR 51*4 | |
84 | /* BFIN already defines these since at least 2.6.32 kernels. */ | |
85 | #elif defined(BFIN) | |
86 | #define PT_TEXT_ADDR 220 | |
87 | #define PT_TEXT_END_ADDR 224 | |
88 | #define PT_DATA_ADDR 228 | |
89 | /* These are still undefined in 3.10 kernels. */ | |
90 | #elif defined(__TMS320C6X__) | |
91 | #define PT_TEXT_ADDR (0x10000*4) | |
92 | #define PT_DATA_ADDR (0x10004*4) | |
93 | #define PT_TEXT_END_ADDR (0x10008*4) | |
94 | #endif | |
95 | #endif | |
96 | ||
9accd112 | 97 | #ifdef HAVE_LINUX_BTRACE |
125f8a3d | 98 | # include "nat/linux-btrace.h" |
734b0e4b | 99 | # include "btrace-common.h" |
9accd112 MM |
100 | #endif |
101 | ||
8365dcf5 TJB |
102 | #ifndef HAVE_ELF32_AUXV_T |
103 | /* Copied from glibc's elf.h. */ | |
104 | typedef struct | |
105 | { | |
106 | uint32_t a_type; /* Entry type */ | |
107 | union | |
108 | { | |
109 | uint32_t a_val; /* Integer value */ | |
110 | /* We use to have pointer elements added here. We cannot do that, | |
111 | though, since it does not work when using 32-bit definitions | |
112 | on 64-bit platforms and vice versa. */ | |
113 | } a_un; | |
114 | } Elf32_auxv_t; | |
115 | #endif | |
116 | ||
117 | #ifndef HAVE_ELF64_AUXV_T | |
118 | /* Copied from glibc's elf.h. */ | |
119 | typedef struct | |
120 | { | |
121 | uint64_t a_type; /* Entry type */ | |
122 | union | |
123 | { | |
124 | uint64_t a_val; /* Integer value */ | |
125 | /* We use to have pointer elements added here. We cannot do that, | |
126 | though, since it does not work when using 32-bit definitions | |
127 | on 64-bit platforms and vice versa. */ | |
128 | } a_un; | |
129 | } Elf64_auxv_t; | |
130 | #endif | |
131 | ||
ded48a5e YQ |
132 | /* Does the current host support PTRACE_GETREGSET? */ |
133 | int have_ptrace_getregset = -1; | |
134 | ||
cff068da GB |
135 | /* LWP accessors. */ |
136 | ||
137 | /* See nat/linux-nat.h. */ | |
138 | ||
139 | ptid_t | |
140 | ptid_of_lwp (struct lwp_info *lwp) | |
141 | { | |
142 | return ptid_of (get_lwp_thread (lwp)); | |
143 | } | |
144 | ||
145 | /* See nat/linux-nat.h. */ | |
146 | ||
4b134ca1 GB |
147 | void |
148 | lwp_set_arch_private_info (struct lwp_info *lwp, | |
149 | struct arch_lwp_info *info) | |
150 | { | |
151 | lwp->arch_private = info; | |
152 | } | |
153 | ||
154 | /* See nat/linux-nat.h. */ | |
155 | ||
156 | struct arch_lwp_info * | |
157 | lwp_arch_private_info (struct lwp_info *lwp) | |
158 | { | |
159 | return lwp->arch_private; | |
160 | } | |
161 | ||
162 | /* See nat/linux-nat.h. */ | |
163 | ||
cff068da GB |
164 | int |
165 | lwp_is_stopped (struct lwp_info *lwp) | |
166 | { | |
167 | return lwp->stopped; | |
168 | } | |
169 | ||
170 | /* See nat/linux-nat.h. */ | |
171 | ||
172 | enum target_stop_reason | |
173 | lwp_stop_reason (struct lwp_info *lwp) | |
174 | { | |
175 | return lwp->stop_reason; | |
176 | } | |
177 | ||
05044653 PA |
178 | /* A list of all unknown processes which receive stop signals. Some |
179 | other process will presumably claim each of these as forked | |
180 | children momentarily. */ | |
24a09b5f | 181 | |
05044653 PA |
182 | struct simple_pid_list |
183 | { | |
184 | /* The process ID. */ | |
185 | int pid; | |
186 | ||
187 | /* The status as reported by waitpid. */ | |
188 | int status; | |
189 | ||
190 | /* Next in chain. */ | |
191 | struct simple_pid_list *next; | |
192 | }; | |
193 | struct simple_pid_list *stopped_pids; | |
194 | ||
195 | /* Trivial list manipulation functions to keep track of a list of new | |
196 | stopped processes. */ | |
197 | ||
198 | static void | |
199 | add_to_pid_list (struct simple_pid_list **listp, int pid, int status) | |
200 | { | |
8d749320 | 201 | struct simple_pid_list *new_pid = XNEW (struct simple_pid_list); |
05044653 PA |
202 | |
203 | new_pid->pid = pid; | |
204 | new_pid->status = status; | |
205 | new_pid->next = *listp; | |
206 | *listp = new_pid; | |
207 | } | |
208 | ||
209 | static int | |
210 | pull_pid_from_list (struct simple_pid_list **listp, int pid, int *statusp) | |
211 | { | |
212 | struct simple_pid_list **p; | |
213 | ||
214 | for (p = listp; *p != NULL; p = &(*p)->next) | |
215 | if ((*p)->pid == pid) | |
216 | { | |
217 | struct simple_pid_list *next = (*p)->next; | |
218 | ||
219 | *statusp = (*p)->status; | |
220 | xfree (*p); | |
221 | *p = next; | |
222 | return 1; | |
223 | } | |
224 | return 0; | |
225 | } | |
24a09b5f | 226 | |
bde24c0a PA |
227 | enum stopping_threads_kind |
228 | { | |
229 | /* Not stopping threads presently. */ | |
230 | NOT_STOPPING_THREADS, | |
231 | ||
232 | /* Stopping threads. */ | |
233 | STOPPING_THREADS, | |
234 | ||
235 | /* Stopping and suspending threads. */ | |
236 | STOPPING_AND_SUSPENDING_THREADS | |
237 | }; | |
238 | ||
239 | /* This is set while stop_all_lwps is in effect. */ | |
240 | enum stopping_threads_kind stopping_threads = NOT_STOPPING_THREADS; | |
0d62e5e8 DJ |
241 | |
242 | /* FIXME make into a target method? */ | |
24a09b5f | 243 | int using_threads = 1; |
24a09b5f | 244 | |
fa593d66 PA |
245 | /* True if we're presently stabilizing threads (moving them out of |
246 | jump pads). */ | |
247 | static int stabilizing_threads; | |
248 | ||
2acc282a | 249 | static void linux_resume_one_lwp (struct lwp_info *lwp, |
54a0b537 | 250 | int step, int signal, siginfo_t *info); |
2bd7c093 | 251 | static void linux_resume (struct thread_resume *resume_info, size_t n); |
7984d532 PA |
252 | static void stop_all_lwps (int suspend, struct lwp_info *except); |
253 | static void unstop_all_lwps (int unsuspend, struct lwp_info *except); | |
fa96cb38 PA |
254 | static int linux_wait_for_event_filtered (ptid_t wait_ptid, ptid_t filter_ptid, |
255 | int *wstat, int options); | |
95954743 | 256 | static int linux_wait_for_event (ptid_t ptid, int *wstat, int options); |
b3312d80 | 257 | static struct lwp_info *add_lwp (ptid_t ptid); |
94585166 | 258 | static void linux_mourn (struct process_info *process); |
c35fafde | 259 | static int linux_stopped_by_watchpoint (void); |
95954743 | 260 | static void mark_lwp_dead (struct lwp_info *lwp, int wstat); |
00db26fa | 261 | static int lwp_is_marked_dead (struct lwp_info *lwp); |
d50171e4 | 262 | static void proceed_all_lwps (void); |
d50171e4 | 263 | static int finish_step_over (struct lwp_info *lwp); |
d50171e4 | 264 | static int kill_lwp (unsigned long lwpid, int signo); |
863d01bd PA |
265 | static void enqueue_pending_signal (struct lwp_info *lwp, int signal, siginfo_t *info); |
266 | static void complete_ongoing_step_over (void); | |
d50171e4 | 267 | |
582511be PA |
268 | /* When the event-loop is doing a step-over, this points at the thread |
269 | being stepped. */ | |
270 | ptid_t step_over_bkpt; | |
271 | ||
7d00775e | 272 | /* True if the low target can hardware single-step. */ |
d50171e4 PA |
273 | |
274 | static int | |
275 | can_hardware_single_step (void) | |
276 | { | |
7d00775e AT |
277 | if (the_low_target.supports_hardware_single_step != NULL) |
278 | return the_low_target.supports_hardware_single_step (); | |
279 | else | |
280 | return 0; | |
281 | } | |
282 | ||
283 | /* True if the low target can software single-step. Such targets | |
284 | implement the BREAKPOINT_REINSERT_ADDR callback. */ | |
285 | ||
286 | static int | |
287 | can_software_single_step (void) | |
288 | { | |
289 | return (the_low_target.breakpoint_reinsert_addr != NULL); | |
d50171e4 PA |
290 | } |
291 | ||
292 | /* True if the low target supports memory breakpoints. If so, we'll | |
293 | have a GET_PC implementation. */ | |
294 | ||
295 | static int | |
296 | supports_breakpoints (void) | |
297 | { | |
298 | return (the_low_target.get_pc != NULL); | |
299 | } | |
0d62e5e8 | 300 | |
fa593d66 PA |
301 | /* Returns true if this target can support fast tracepoints. This |
302 | does not mean that the in-process agent has been loaded in the | |
303 | inferior. */ | |
304 | ||
305 | static int | |
306 | supports_fast_tracepoints (void) | |
307 | { | |
308 | return the_low_target.install_fast_tracepoint_jump_pad != NULL; | |
309 | } | |
310 | ||
c2d6af84 PA |
311 | /* True if LWP is stopped in its stepping range. */ |
312 | ||
313 | static int | |
314 | lwp_in_step_range (struct lwp_info *lwp) | |
315 | { | |
316 | CORE_ADDR pc = lwp->stop_pc; | |
317 | ||
318 | return (pc >= lwp->step_range_start && pc < lwp->step_range_end); | |
319 | } | |
320 | ||
0d62e5e8 DJ |
321 | struct pending_signals |
322 | { | |
323 | int signal; | |
32ca6d61 | 324 | siginfo_t info; |
0d62e5e8 DJ |
325 | struct pending_signals *prev; |
326 | }; | |
611cb4a5 | 327 | |
bd99dc85 PA |
328 | /* The read/write ends of the pipe registered as waitable file in the |
329 | event loop. */ | |
330 | static int linux_event_pipe[2] = { -1, -1 }; | |
331 | ||
332 | /* True if we're currently in async mode. */ | |
333 | #define target_is_async_p() (linux_event_pipe[0] != -1) | |
334 | ||
02fc4de7 | 335 | static void send_sigstop (struct lwp_info *lwp); |
fa96cb38 | 336 | static void wait_for_sigstop (void); |
bd99dc85 | 337 | |
d0722149 DE |
338 | /* Return non-zero if HEADER is a 64-bit ELF file. */ |
339 | ||
340 | static int | |
214d508e | 341 | elf_64_header_p (const Elf64_Ehdr *header, unsigned int *machine) |
d0722149 | 342 | { |
214d508e L |
343 | if (header->e_ident[EI_MAG0] == ELFMAG0 |
344 | && header->e_ident[EI_MAG1] == ELFMAG1 | |
345 | && header->e_ident[EI_MAG2] == ELFMAG2 | |
346 | && header->e_ident[EI_MAG3] == ELFMAG3) | |
347 | { | |
348 | *machine = header->e_machine; | |
349 | return header->e_ident[EI_CLASS] == ELFCLASS64; | |
350 | ||
351 | } | |
352 | *machine = EM_NONE; | |
353 | return -1; | |
d0722149 DE |
354 | } |
355 | ||
356 | /* Return non-zero if FILE is a 64-bit ELF file, | |
357 | zero if the file is not a 64-bit ELF file, | |
358 | and -1 if the file is not accessible or doesn't exist. */ | |
359 | ||
be07f1a2 | 360 | static int |
214d508e | 361 | elf_64_file_p (const char *file, unsigned int *machine) |
d0722149 | 362 | { |
957f3f49 | 363 | Elf64_Ehdr header; |
d0722149 DE |
364 | int fd; |
365 | ||
366 | fd = open (file, O_RDONLY); | |
367 | if (fd < 0) | |
368 | return -1; | |
369 | ||
370 | if (read (fd, &header, sizeof (header)) != sizeof (header)) | |
371 | { | |
372 | close (fd); | |
373 | return 0; | |
374 | } | |
375 | close (fd); | |
376 | ||
214d508e | 377 | return elf_64_header_p (&header, machine); |
d0722149 DE |
378 | } |
379 | ||
be07f1a2 PA |
380 | /* Accepts an integer PID; Returns true if the executable PID is |
381 | running is a 64-bit ELF file.. */ | |
382 | ||
383 | int | |
214d508e | 384 | linux_pid_exe_is_elf_64_file (int pid, unsigned int *machine) |
be07f1a2 | 385 | { |
d8d2a3ee | 386 | char file[PATH_MAX]; |
be07f1a2 PA |
387 | |
388 | sprintf (file, "/proc/%d/exe", pid); | |
214d508e | 389 | return elf_64_file_p (file, machine); |
be07f1a2 PA |
390 | } |
391 | ||
bd99dc85 PA |
392 | static void |
393 | delete_lwp (struct lwp_info *lwp) | |
394 | { | |
fa96cb38 PA |
395 | struct thread_info *thr = get_lwp_thread (lwp); |
396 | ||
397 | if (debug_threads) | |
398 | debug_printf ("deleting %ld\n", lwpid_of (thr)); | |
399 | ||
400 | remove_thread (thr); | |
aa5ca48f | 401 | free (lwp->arch_private); |
bd99dc85 PA |
402 | free (lwp); |
403 | } | |
404 | ||
95954743 PA |
405 | /* Add a process to the common process list, and set its private |
406 | data. */ | |
407 | ||
408 | static struct process_info * | |
409 | linux_add_process (int pid, int attached) | |
410 | { | |
411 | struct process_info *proc; | |
412 | ||
95954743 | 413 | proc = add_process (pid, attached); |
8d749320 | 414 | proc->priv = XCNEW (struct process_info_private); |
95954743 | 415 | |
aa5ca48f | 416 | if (the_low_target.new_process != NULL) |
fe978cb0 | 417 | proc->priv->arch_private = the_low_target.new_process (); |
aa5ca48f | 418 | |
95954743 PA |
419 | return proc; |
420 | } | |
421 | ||
582511be PA |
422 | static CORE_ADDR get_pc (struct lwp_info *lwp); |
423 | ||
94585166 DB |
424 | /* Implement the arch_setup target_ops method. */ |
425 | ||
426 | static void | |
427 | linux_arch_setup (void) | |
428 | { | |
429 | the_low_target.arch_setup (); | |
430 | } | |
431 | ||
432 | /* Call the target arch_setup function on THREAD. */ | |
433 | ||
434 | static void | |
435 | linux_arch_setup_thread (struct thread_info *thread) | |
436 | { | |
437 | struct thread_info *saved_thread; | |
438 | ||
439 | saved_thread = current_thread; | |
440 | current_thread = thread; | |
441 | ||
442 | linux_arch_setup (); | |
443 | ||
444 | current_thread = saved_thread; | |
445 | } | |
446 | ||
447 | /* Handle a GNU/Linux extended wait response. If we see a clone, | |
448 | fork, or vfork event, we need to add the new LWP to our list | |
449 | (and return 0 so as not to report the trap to higher layers). | |
450 | If we see an exec event, we will modify ORIG_EVENT_LWP to point | |
451 | to a new LWP representing the new program. */ | |
0d62e5e8 | 452 | |
de0d863e | 453 | static int |
94585166 | 454 | handle_extended_wait (struct lwp_info **orig_event_lwp, int wstat) |
24a09b5f | 455 | { |
94585166 | 456 | struct lwp_info *event_lwp = *orig_event_lwp; |
89a5711c | 457 | int event = linux_ptrace_get_extended_event (wstat); |
de0d863e | 458 | struct thread_info *event_thr = get_lwp_thread (event_lwp); |
54a0b537 | 459 | struct lwp_info *new_lwp; |
24a09b5f | 460 | |
65706a29 PA |
461 | gdb_assert (event_lwp->waitstatus.kind == TARGET_WAITKIND_IGNORE); |
462 | ||
c269dbdb DB |
463 | if ((event == PTRACE_EVENT_FORK) || (event == PTRACE_EVENT_VFORK) |
464 | || (event == PTRACE_EVENT_CLONE)) | |
24a09b5f | 465 | { |
95954743 | 466 | ptid_t ptid; |
24a09b5f | 467 | unsigned long new_pid; |
05044653 | 468 | int ret, status; |
24a09b5f | 469 | |
de0d863e | 470 | /* Get the pid of the new lwp. */ |
d86d4aaf | 471 | ptrace (PTRACE_GETEVENTMSG, lwpid_of (event_thr), (PTRACE_TYPE_ARG3) 0, |
56f7af9c | 472 | &new_pid); |
24a09b5f DJ |
473 | |
474 | /* If we haven't already seen the new PID stop, wait for it now. */ | |
05044653 | 475 | if (!pull_pid_from_list (&stopped_pids, new_pid, &status)) |
24a09b5f DJ |
476 | { |
477 | /* The new child has a pending SIGSTOP. We can't affect it until it | |
478 | hits the SIGSTOP, but we're already attached. */ | |
479 | ||
97438e3f | 480 | ret = my_waitpid (new_pid, &status, __WALL); |
24a09b5f DJ |
481 | |
482 | if (ret == -1) | |
483 | perror_with_name ("waiting for new child"); | |
484 | else if (ret != new_pid) | |
485 | warning ("wait returned unexpected PID %d", ret); | |
da5898ce | 486 | else if (!WIFSTOPPED (status)) |
24a09b5f DJ |
487 | warning ("wait returned unexpected status 0x%x", status); |
488 | } | |
489 | ||
c269dbdb | 490 | if (event == PTRACE_EVENT_FORK || event == PTRACE_EVENT_VFORK) |
de0d863e DB |
491 | { |
492 | struct process_info *parent_proc; | |
493 | struct process_info *child_proc; | |
494 | struct lwp_info *child_lwp; | |
bfacd19d | 495 | struct thread_info *child_thr; |
de0d863e DB |
496 | struct target_desc *tdesc; |
497 | ||
498 | ptid = ptid_build (new_pid, new_pid, 0); | |
499 | ||
500 | if (debug_threads) | |
501 | { | |
502 | debug_printf ("HEW: Got fork event from LWP %ld, " | |
503 | "new child is %d\n", | |
504 | ptid_get_lwp (ptid_of (event_thr)), | |
505 | ptid_get_pid (ptid)); | |
506 | } | |
507 | ||
508 | /* Add the new process to the tables and clone the breakpoint | |
509 | lists of the parent. We need to do this even if the new process | |
510 | will be detached, since we will need the process object and the | |
511 | breakpoints to remove any breakpoints from memory when we | |
512 | detach, and the client side will access registers. */ | |
513 | child_proc = linux_add_process (new_pid, 0); | |
514 | gdb_assert (child_proc != NULL); | |
515 | child_lwp = add_lwp (ptid); | |
516 | gdb_assert (child_lwp != NULL); | |
517 | child_lwp->stopped = 1; | |
bfacd19d DB |
518 | child_lwp->must_set_ptrace_flags = 1; |
519 | child_lwp->status_pending_p = 0; | |
520 | child_thr = get_lwp_thread (child_lwp); | |
521 | child_thr->last_resume_kind = resume_stop; | |
998d452a PA |
522 | child_thr->last_status.kind = TARGET_WAITKIND_STOPPED; |
523 | ||
863d01bd PA |
524 | /* If we're suspending all threads, leave this one suspended |
525 | too. */ | |
526 | if (stopping_threads == STOPPING_AND_SUSPENDING_THREADS) | |
527 | { | |
528 | if (debug_threads) | |
529 | debug_printf ("HEW: leaving child suspended\n"); | |
530 | child_lwp->suspended = 1; | |
531 | } | |
532 | ||
de0d863e DB |
533 | parent_proc = get_thread_process (event_thr); |
534 | child_proc->attached = parent_proc->attached; | |
535 | clone_all_breakpoints (&child_proc->breakpoints, | |
536 | &child_proc->raw_breakpoints, | |
537 | parent_proc->breakpoints); | |
538 | ||
8d749320 | 539 | tdesc = XNEW (struct target_desc); |
de0d863e DB |
540 | copy_target_description (tdesc, parent_proc->tdesc); |
541 | child_proc->tdesc = tdesc; | |
de0d863e | 542 | |
3a8a0396 DB |
543 | /* Clone arch-specific process data. */ |
544 | if (the_low_target.new_fork != NULL) | |
545 | the_low_target.new_fork (parent_proc, child_proc); | |
546 | ||
de0d863e | 547 | /* Save fork info in the parent thread. */ |
c269dbdb DB |
548 | if (event == PTRACE_EVENT_FORK) |
549 | event_lwp->waitstatus.kind = TARGET_WAITKIND_FORKED; | |
550 | else if (event == PTRACE_EVENT_VFORK) | |
551 | event_lwp->waitstatus.kind = TARGET_WAITKIND_VFORKED; | |
552 | ||
de0d863e | 553 | event_lwp->waitstatus.value.related_pid = ptid; |
c269dbdb | 554 | |
de0d863e DB |
555 | /* The status_pending field contains bits denoting the |
556 | extended event, so when the pending event is handled, | |
557 | the handler will look at lwp->waitstatus. */ | |
558 | event_lwp->status_pending_p = 1; | |
559 | event_lwp->status_pending = wstat; | |
560 | ||
561 | /* Report the event. */ | |
562 | return 0; | |
563 | } | |
564 | ||
fa96cb38 PA |
565 | if (debug_threads) |
566 | debug_printf ("HEW: Got clone event " | |
567 | "from LWP %ld, new child is LWP %ld\n", | |
568 | lwpid_of (event_thr), new_pid); | |
569 | ||
d86d4aaf | 570 | ptid = ptid_build (pid_of (event_thr), new_pid, 0); |
b3312d80 | 571 | new_lwp = add_lwp (ptid); |
24a09b5f | 572 | |
e27d73f6 DE |
573 | /* Either we're going to immediately resume the new thread |
574 | or leave it stopped. linux_resume_one_lwp is a nop if it | |
575 | thinks the thread is currently running, so set this first | |
576 | before calling linux_resume_one_lwp. */ | |
577 | new_lwp->stopped = 1; | |
578 | ||
bde24c0a PA |
579 | /* If we're suspending all threads, leave this one suspended |
580 | too. */ | |
581 | if (stopping_threads == STOPPING_AND_SUSPENDING_THREADS) | |
582 | new_lwp->suspended = 1; | |
583 | ||
da5898ce DJ |
584 | /* Normally we will get the pending SIGSTOP. But in some cases |
585 | we might get another signal delivered to the group first. | |
f21cc1a2 | 586 | If we do get another signal, be sure not to lose it. */ |
20ba1ce6 | 587 | if (WSTOPSIG (status) != SIGSTOP) |
da5898ce | 588 | { |
54a0b537 | 589 | new_lwp->stop_expected = 1; |
20ba1ce6 PA |
590 | new_lwp->status_pending_p = 1; |
591 | new_lwp->status_pending = status; | |
da5898ce | 592 | } |
65706a29 PA |
593 | else if (report_thread_events) |
594 | { | |
595 | new_lwp->waitstatus.kind = TARGET_WAITKIND_THREAD_CREATED; | |
596 | new_lwp->status_pending_p = 1; | |
597 | new_lwp->status_pending = status; | |
598 | } | |
de0d863e DB |
599 | |
600 | /* Don't report the event. */ | |
601 | return 1; | |
24a09b5f | 602 | } |
c269dbdb DB |
603 | else if (event == PTRACE_EVENT_VFORK_DONE) |
604 | { | |
605 | event_lwp->waitstatus.kind = TARGET_WAITKIND_VFORK_DONE; | |
606 | ||
607 | /* Report the event. */ | |
608 | return 0; | |
609 | } | |
94585166 DB |
610 | else if (event == PTRACE_EVENT_EXEC && report_exec_events) |
611 | { | |
612 | struct process_info *proc; | |
613 | ptid_t event_ptid; | |
614 | pid_t event_pid; | |
615 | ||
616 | if (debug_threads) | |
617 | { | |
618 | debug_printf ("HEW: Got exec event from LWP %ld\n", | |
619 | lwpid_of (event_thr)); | |
620 | } | |
621 | ||
622 | /* Get the event ptid. */ | |
623 | event_ptid = ptid_of (event_thr); | |
624 | event_pid = ptid_get_pid (event_ptid); | |
625 | ||
626 | /* Delete the execing process and all its threads. */ | |
627 | proc = get_thread_process (event_thr); | |
628 | linux_mourn (proc); | |
629 | current_thread = NULL; | |
630 | ||
631 | /* Create a new process/lwp/thread. */ | |
632 | proc = linux_add_process (event_pid, 0); | |
633 | event_lwp = add_lwp (event_ptid); | |
634 | event_thr = get_lwp_thread (event_lwp); | |
635 | gdb_assert (current_thread == event_thr); | |
636 | linux_arch_setup_thread (event_thr); | |
637 | ||
638 | /* Set the event status. */ | |
639 | event_lwp->waitstatus.kind = TARGET_WAITKIND_EXECD; | |
640 | event_lwp->waitstatus.value.execd_pathname | |
641 | = xstrdup (linux_proc_pid_to_exec_file (lwpid_of (event_thr))); | |
642 | ||
643 | /* Mark the exec status as pending. */ | |
644 | event_lwp->stopped = 1; | |
645 | event_lwp->status_pending_p = 1; | |
646 | event_lwp->status_pending = wstat; | |
647 | event_thr->last_resume_kind = resume_continue; | |
648 | event_thr->last_status.kind = TARGET_WAITKIND_IGNORE; | |
649 | ||
650 | /* Report the event. */ | |
651 | *orig_event_lwp = event_lwp; | |
652 | return 0; | |
653 | } | |
de0d863e DB |
654 | |
655 | internal_error (__FILE__, __LINE__, _("unknown ptrace event %d"), event); | |
24a09b5f DJ |
656 | } |
657 | ||
d50171e4 PA |
658 | /* Return the PC as read from the regcache of LWP, without any |
659 | adjustment. */ | |
660 | ||
661 | static CORE_ADDR | |
662 | get_pc (struct lwp_info *lwp) | |
663 | { | |
0bfdf32f | 664 | struct thread_info *saved_thread; |
d50171e4 PA |
665 | struct regcache *regcache; |
666 | CORE_ADDR pc; | |
667 | ||
668 | if (the_low_target.get_pc == NULL) | |
669 | return 0; | |
670 | ||
0bfdf32f GB |
671 | saved_thread = current_thread; |
672 | current_thread = get_lwp_thread (lwp); | |
d50171e4 | 673 | |
0bfdf32f | 674 | regcache = get_thread_regcache (current_thread, 1); |
d50171e4 PA |
675 | pc = (*the_low_target.get_pc) (regcache); |
676 | ||
677 | if (debug_threads) | |
87ce2a04 | 678 | debug_printf ("pc is 0x%lx\n", (long) pc); |
d50171e4 | 679 | |
0bfdf32f | 680 | current_thread = saved_thread; |
d50171e4 PA |
681 | return pc; |
682 | } | |
683 | ||
684 | /* This function should only be called if LWP got a SIGTRAP. | |
0d62e5e8 DJ |
685 | The SIGTRAP could mean several things. |
686 | ||
687 | On i386, where decr_pc_after_break is non-zero: | |
582511be PA |
688 | |
689 | If we were single-stepping this process using PTRACE_SINGLESTEP, we | |
690 | will get only the one SIGTRAP. The value of $eip will be the next | |
691 | instruction. If the instruction we stepped over was a breakpoint, | |
692 | we need to decrement the PC. | |
693 | ||
0d62e5e8 DJ |
694 | If we continue the process using PTRACE_CONT, we will get a |
695 | SIGTRAP when we hit a breakpoint. The value of $eip will be | |
696 | the instruction after the breakpoint (i.e. needs to be | |
697 | decremented). If we report the SIGTRAP to GDB, we must also | |
582511be | 698 | report the undecremented PC. If the breakpoint is removed, we |
0d62e5e8 DJ |
699 | must resume at the decremented PC. |
700 | ||
582511be PA |
701 | On a non-decr_pc_after_break machine with hardware or kernel |
702 | single-step: | |
703 | ||
704 | If we either single-step a breakpoint instruction, or continue and | |
705 | hit a breakpoint instruction, our PC will point at the breakpoint | |
0d62e5e8 DJ |
706 | instruction. */ |
707 | ||
582511be PA |
708 | static int |
709 | check_stopped_by_breakpoint (struct lwp_info *lwp) | |
0d62e5e8 | 710 | { |
582511be PA |
711 | CORE_ADDR pc; |
712 | CORE_ADDR sw_breakpoint_pc; | |
713 | struct thread_info *saved_thread; | |
3e572f71 PA |
714 | #if USE_SIGTRAP_SIGINFO |
715 | siginfo_t siginfo; | |
716 | #endif | |
d50171e4 PA |
717 | |
718 | if (the_low_target.get_pc == NULL) | |
719 | return 0; | |
0d62e5e8 | 720 | |
582511be PA |
721 | pc = get_pc (lwp); |
722 | sw_breakpoint_pc = pc - the_low_target.decr_pc_after_break; | |
d50171e4 | 723 | |
582511be PA |
724 | /* breakpoint_at reads from the current thread. */ |
725 | saved_thread = current_thread; | |
726 | current_thread = get_lwp_thread (lwp); | |
47c0c975 | 727 | |
3e572f71 PA |
728 | #if USE_SIGTRAP_SIGINFO |
729 | if (ptrace (PTRACE_GETSIGINFO, lwpid_of (current_thread), | |
730 | (PTRACE_TYPE_ARG3) 0, &siginfo) == 0) | |
731 | { | |
732 | if (siginfo.si_signo == SIGTRAP) | |
733 | { | |
1db33b5a | 734 | if (GDB_ARCH_IS_TRAP_BRKPT (siginfo.si_code)) |
3e572f71 PA |
735 | { |
736 | if (debug_threads) | |
737 | { | |
738 | struct thread_info *thr = get_lwp_thread (lwp); | |
739 | ||
2bf6fb9d | 740 | debug_printf ("CSBB: %s stopped by software breakpoint\n", |
3e572f71 PA |
741 | target_pid_to_str (ptid_of (thr))); |
742 | } | |
743 | ||
744 | /* Back up the PC if necessary. */ | |
745 | if (pc != sw_breakpoint_pc) | |
746 | { | |
747 | struct regcache *regcache | |
748 | = get_thread_regcache (current_thread, 1); | |
749 | (*the_low_target.set_pc) (regcache, sw_breakpoint_pc); | |
750 | } | |
751 | ||
752 | lwp->stop_pc = sw_breakpoint_pc; | |
753 | lwp->stop_reason = TARGET_STOPPED_BY_SW_BREAKPOINT; | |
754 | current_thread = saved_thread; | |
755 | return 1; | |
756 | } | |
757 | else if (siginfo.si_code == TRAP_HWBKPT) | |
758 | { | |
759 | if (debug_threads) | |
760 | { | |
761 | struct thread_info *thr = get_lwp_thread (lwp); | |
762 | ||
2bf6fb9d PA |
763 | debug_printf ("CSBB: %s stopped by hardware " |
764 | "breakpoint/watchpoint\n", | |
3e572f71 PA |
765 | target_pid_to_str (ptid_of (thr))); |
766 | } | |
767 | ||
768 | lwp->stop_pc = pc; | |
769 | lwp->stop_reason = TARGET_STOPPED_BY_HW_BREAKPOINT; | |
770 | current_thread = saved_thread; | |
771 | return 1; | |
772 | } | |
2bf6fb9d PA |
773 | else if (siginfo.si_code == TRAP_TRACE) |
774 | { | |
775 | if (debug_threads) | |
776 | { | |
777 | struct thread_info *thr = get_lwp_thread (lwp); | |
778 | ||
779 | debug_printf ("CSBB: %s stopped by trace\n", | |
780 | target_pid_to_str (ptid_of (thr))); | |
781 | } | |
863d01bd PA |
782 | |
783 | lwp->stop_reason = TARGET_STOPPED_BY_SINGLE_STEP; | |
2bf6fb9d | 784 | } |
3e572f71 PA |
785 | } |
786 | } | |
787 | #else | |
582511be PA |
788 | /* We may have just stepped a breakpoint instruction. E.g., in |
789 | non-stop mode, GDB first tells the thread A to step a range, and | |
790 | then the user inserts a breakpoint inside the range. In that | |
8090aef2 PA |
791 | case we need to report the breakpoint PC. */ |
792 | if ((!lwp->stepping || lwp->stop_pc == sw_breakpoint_pc) | |
582511be PA |
793 | && (*the_low_target.breakpoint_at) (sw_breakpoint_pc)) |
794 | { | |
795 | if (debug_threads) | |
796 | { | |
797 | struct thread_info *thr = get_lwp_thread (lwp); | |
798 | ||
799 | debug_printf ("CSBB: %s stopped by software breakpoint\n", | |
800 | target_pid_to_str (ptid_of (thr))); | |
801 | } | |
802 | ||
803 | /* Back up the PC if necessary. */ | |
804 | if (pc != sw_breakpoint_pc) | |
805 | { | |
806 | struct regcache *regcache | |
807 | = get_thread_regcache (current_thread, 1); | |
808 | (*the_low_target.set_pc) (regcache, sw_breakpoint_pc); | |
809 | } | |
810 | ||
811 | lwp->stop_pc = sw_breakpoint_pc; | |
15c66dd6 | 812 | lwp->stop_reason = TARGET_STOPPED_BY_SW_BREAKPOINT; |
582511be PA |
813 | current_thread = saved_thread; |
814 | return 1; | |
815 | } | |
816 | ||
817 | if (hardware_breakpoint_inserted_here (pc)) | |
818 | { | |
819 | if (debug_threads) | |
820 | { | |
821 | struct thread_info *thr = get_lwp_thread (lwp); | |
822 | ||
823 | debug_printf ("CSBB: %s stopped by hardware breakpoint\n", | |
824 | target_pid_to_str (ptid_of (thr))); | |
825 | } | |
47c0c975 | 826 | |
582511be | 827 | lwp->stop_pc = pc; |
15c66dd6 | 828 | lwp->stop_reason = TARGET_STOPPED_BY_HW_BREAKPOINT; |
582511be PA |
829 | current_thread = saved_thread; |
830 | return 1; | |
831 | } | |
3e572f71 | 832 | #endif |
582511be PA |
833 | |
834 | current_thread = saved_thread; | |
835 | return 0; | |
0d62e5e8 | 836 | } |
ce3a066d | 837 | |
b3312d80 | 838 | static struct lwp_info * |
95954743 | 839 | add_lwp (ptid_t ptid) |
611cb4a5 | 840 | { |
54a0b537 | 841 | struct lwp_info *lwp; |
0d62e5e8 | 842 | |
8d749320 | 843 | lwp = XCNEW (struct lwp_info); |
00db26fa PA |
844 | |
845 | lwp->waitstatus.kind = TARGET_WAITKIND_IGNORE; | |
0d62e5e8 | 846 | |
aa5ca48f | 847 | if (the_low_target.new_thread != NULL) |
34c703da | 848 | the_low_target.new_thread (lwp); |
aa5ca48f | 849 | |
f7667f0d | 850 | lwp->thread = add_thread (ptid, lwp); |
0d62e5e8 | 851 | |
54a0b537 | 852 | return lwp; |
0d62e5e8 | 853 | } |
611cb4a5 | 854 | |
da6d8c04 DJ |
855 | /* Start an inferior process and returns its pid. |
856 | ALLARGS is a vector of program-name and args. */ | |
857 | ||
ce3a066d DJ |
858 | static int |
859 | linux_create_inferior (char *program, char **allargs) | |
da6d8c04 | 860 | { |
a6dbe5df | 861 | struct lwp_info *new_lwp; |
da6d8c04 | 862 | int pid; |
95954743 | 863 | ptid_t ptid; |
8cc73a39 SDJ |
864 | struct cleanup *restore_personality |
865 | = maybe_disable_address_space_randomization (disable_randomization); | |
03583c20 | 866 | |
42c81e2a | 867 | #if defined(__UCLIBC__) && defined(HAS_NOMMU) |
52fb6437 NS |
868 | pid = vfork (); |
869 | #else | |
da6d8c04 | 870 | pid = fork (); |
52fb6437 | 871 | #endif |
da6d8c04 DJ |
872 | if (pid < 0) |
873 | perror_with_name ("fork"); | |
874 | ||
875 | if (pid == 0) | |
876 | { | |
602e3198 | 877 | close_most_fds (); |
b8e1b30e | 878 | ptrace (PTRACE_TRACEME, 0, (PTRACE_TYPE_ARG3) 0, (PTRACE_TYPE_ARG4) 0); |
da6d8c04 | 879 | |
1a981360 | 880 | #ifndef __ANDROID__ /* Bionic doesn't use SIGRTMIN the way glibc does. */ |
254787d4 | 881 | signal (__SIGRTMIN + 1, SIG_DFL); |
60c3d7b0 | 882 | #endif |
0d62e5e8 | 883 | |
a9fa9f7d DJ |
884 | setpgid (0, 0); |
885 | ||
e0f9f062 DE |
886 | /* If gdbserver is connected to gdb via stdio, redirect the inferior's |
887 | stdout to stderr so that inferior i/o doesn't corrupt the connection. | |
888 | Also, redirect stdin to /dev/null. */ | |
889 | if (remote_connection_is_stdio ()) | |
890 | { | |
891 | close (0); | |
892 | open ("/dev/null", O_RDONLY); | |
893 | dup2 (2, 1); | |
3e52c33d JK |
894 | if (write (2, "stdin/stdout redirected\n", |
895 | sizeof ("stdin/stdout redirected\n") - 1) < 0) | |
8c29b58e YQ |
896 | { |
897 | /* Errors ignored. */; | |
898 | } | |
e0f9f062 DE |
899 | } |
900 | ||
2b876972 DJ |
901 | execv (program, allargs); |
902 | if (errno == ENOENT) | |
903 | execvp (program, allargs); | |
da6d8c04 DJ |
904 | |
905 | fprintf (stderr, "Cannot exec %s: %s.\n", program, | |
d07c63e7 | 906 | strerror (errno)); |
da6d8c04 DJ |
907 | fflush (stderr); |
908 | _exit (0177); | |
909 | } | |
910 | ||
8cc73a39 | 911 | do_cleanups (restore_personality); |
03583c20 | 912 | |
55d7b841 | 913 | linux_add_process (pid, 0); |
95954743 PA |
914 | |
915 | ptid = ptid_build (pid, pid, 0); | |
916 | new_lwp = add_lwp (ptid); | |
a6dbe5df | 917 | new_lwp->must_set_ptrace_flags = 1; |
611cb4a5 | 918 | |
a9fa9f7d | 919 | return pid; |
da6d8c04 DJ |
920 | } |
921 | ||
8784d563 PA |
922 | /* Attach to an inferior process. Returns 0 on success, ERRNO on |
923 | error. */ | |
da6d8c04 | 924 | |
7ae1a6a6 PA |
925 | int |
926 | linux_attach_lwp (ptid_t ptid) | |
da6d8c04 | 927 | { |
54a0b537 | 928 | struct lwp_info *new_lwp; |
7ae1a6a6 | 929 | int lwpid = ptid_get_lwp (ptid); |
611cb4a5 | 930 | |
b8e1b30e | 931 | if (ptrace (PTRACE_ATTACH, lwpid, (PTRACE_TYPE_ARG3) 0, (PTRACE_TYPE_ARG4) 0) |
56f7af9c | 932 | != 0) |
7ae1a6a6 | 933 | return errno; |
24a09b5f | 934 | |
b3312d80 | 935 | new_lwp = add_lwp (ptid); |
0d62e5e8 | 936 | |
a6dbe5df PA |
937 | /* We need to wait for SIGSTOP before being able to make the next |
938 | ptrace call on this LWP. */ | |
939 | new_lwp->must_set_ptrace_flags = 1; | |
940 | ||
644cebc9 | 941 | if (linux_proc_pid_is_stopped (lwpid)) |
c14d7ab2 PA |
942 | { |
943 | if (debug_threads) | |
87ce2a04 | 944 | debug_printf ("Attached to a stopped process\n"); |
c14d7ab2 PA |
945 | |
946 | /* The process is definitely stopped. It is in a job control | |
947 | stop, unless the kernel predates the TASK_STOPPED / | |
948 | TASK_TRACED distinction, in which case it might be in a | |
949 | ptrace stop. Make sure it is in a ptrace stop; from there we | |
950 | can kill it, signal it, et cetera. | |
951 | ||
952 | First make sure there is a pending SIGSTOP. Since we are | |
953 | already attached, the process can not transition from stopped | |
954 | to running without a PTRACE_CONT; so we know this signal will | |
955 | go into the queue. The SIGSTOP generated by PTRACE_ATTACH is | |
956 | probably already in the queue (unless this kernel is old | |
957 | enough to use TASK_STOPPED for ptrace stops); but since | |
958 | SIGSTOP is not an RT signal, it can only be queued once. */ | |
959 | kill_lwp (lwpid, SIGSTOP); | |
960 | ||
961 | /* Finally, resume the stopped process. This will deliver the | |
962 | SIGSTOP (or a higher priority signal, just like normal | |
963 | PTRACE_ATTACH), which we'll catch later on. */ | |
b8e1b30e | 964 | ptrace (PTRACE_CONT, lwpid, (PTRACE_TYPE_ARG3) 0, (PTRACE_TYPE_ARG4) 0); |
c14d7ab2 PA |
965 | } |
966 | ||
0d62e5e8 | 967 | /* The next time we wait for this LWP we'll see a SIGSTOP as PTRACE_ATTACH |
0e21c1ec DE |
968 | brings it to a halt. |
969 | ||
970 | There are several cases to consider here: | |
971 | ||
972 | 1) gdbserver has already attached to the process and is being notified | |
1b3f6016 | 973 | of a new thread that is being created. |
d50171e4 PA |
974 | In this case we should ignore that SIGSTOP and resume the |
975 | process. This is handled below by setting stop_expected = 1, | |
8336d594 | 976 | and the fact that add_thread sets last_resume_kind == |
d50171e4 | 977 | resume_continue. |
0e21c1ec DE |
978 | |
979 | 2) This is the first thread (the process thread), and we're attaching | |
1b3f6016 PA |
980 | to it via attach_inferior. |
981 | In this case we want the process thread to stop. | |
d50171e4 PA |
982 | This is handled by having linux_attach set last_resume_kind == |
983 | resume_stop after we return. | |
e3deef73 LM |
984 | |
985 | If the pid we are attaching to is also the tgid, we attach to and | |
986 | stop all the existing threads. Otherwise, we attach to pid and | |
987 | ignore any other threads in the same group as this pid. | |
0e21c1ec DE |
988 | |
989 | 3) GDB is connecting to gdbserver and is requesting an enumeration of all | |
1b3f6016 PA |
990 | existing threads. |
991 | In this case we want the thread to stop. | |
992 | FIXME: This case is currently not properly handled. | |
993 | We should wait for the SIGSTOP but don't. Things work apparently | |
994 | because enough time passes between when we ptrace (ATTACH) and when | |
995 | gdb makes the next ptrace call on the thread. | |
0d62e5e8 DJ |
996 | |
997 | On the other hand, if we are currently trying to stop all threads, we | |
998 | should treat the new thread as if we had sent it a SIGSTOP. This works | |
54a0b537 | 999 | because we are guaranteed that the add_lwp call above added us to the |
0e21c1ec DE |
1000 | end of the list, and so the new thread has not yet reached |
1001 | wait_for_sigstop (but will). */ | |
d50171e4 | 1002 | new_lwp->stop_expected = 1; |
0d62e5e8 | 1003 | |
7ae1a6a6 | 1004 | return 0; |
95954743 PA |
1005 | } |
1006 | ||
8784d563 PA |
1007 | /* Callback for linux_proc_attach_tgid_threads. Attach to PTID if not |
1008 | already attached. Returns true if a new LWP is found, false | |
1009 | otherwise. */ | |
1010 | ||
1011 | static int | |
1012 | attach_proc_task_lwp_callback (ptid_t ptid) | |
1013 | { | |
1014 | /* Is this a new thread? */ | |
1015 | if (find_thread_ptid (ptid) == NULL) | |
1016 | { | |
1017 | int lwpid = ptid_get_lwp (ptid); | |
1018 | int err; | |
1019 | ||
1020 | if (debug_threads) | |
1021 | debug_printf ("Found new lwp %d\n", lwpid); | |
1022 | ||
1023 | err = linux_attach_lwp (ptid); | |
1024 | ||
1025 | /* Be quiet if we simply raced with the thread exiting. EPERM | |
1026 | is returned if the thread's task still exists, and is marked | |
1027 | as exited or zombie, as well as other conditions, so in that | |
1028 | case, confirm the status in /proc/PID/status. */ | |
1029 | if (err == ESRCH | |
1030 | || (err == EPERM && linux_proc_pid_is_gone (lwpid))) | |
1031 | { | |
1032 | if (debug_threads) | |
1033 | { | |
1034 | debug_printf ("Cannot attach to lwp %d: " | |
1035 | "thread is gone (%d: %s)\n", | |
1036 | lwpid, err, strerror (err)); | |
1037 | } | |
1038 | } | |
1039 | else if (err != 0) | |
1040 | { | |
1041 | warning (_("Cannot attach to lwp %d: %s"), | |
1042 | lwpid, | |
1043 | linux_ptrace_attach_fail_reason_string (ptid, err)); | |
1044 | } | |
1045 | ||
1046 | return 1; | |
1047 | } | |
1048 | return 0; | |
1049 | } | |
1050 | ||
500c1d85 PA |
1051 | static void async_file_mark (void); |
1052 | ||
e3deef73 LM |
1053 | /* Attach to PID. If PID is the tgid, attach to it and all |
1054 | of its threads. */ | |
1055 | ||
c52daf70 | 1056 | static int |
a1928bad | 1057 | linux_attach (unsigned long pid) |
0d62e5e8 | 1058 | { |
500c1d85 PA |
1059 | struct process_info *proc; |
1060 | struct thread_info *initial_thread; | |
7ae1a6a6 PA |
1061 | ptid_t ptid = ptid_build (pid, pid, 0); |
1062 | int err; | |
1063 | ||
e3deef73 LM |
1064 | /* Attach to PID. We will check for other threads |
1065 | soon. */ | |
7ae1a6a6 PA |
1066 | err = linux_attach_lwp (ptid); |
1067 | if (err != 0) | |
1068 | error ("Cannot attach to process %ld: %s", | |
8784d563 | 1069 | pid, linux_ptrace_attach_fail_reason_string (ptid, err)); |
7ae1a6a6 | 1070 | |
500c1d85 | 1071 | proc = linux_add_process (pid, 1); |
0d62e5e8 | 1072 | |
500c1d85 PA |
1073 | /* Don't ignore the initial SIGSTOP if we just attached to this |
1074 | process. It will be collected by wait shortly. */ | |
1075 | initial_thread = find_thread_ptid (ptid_build (pid, pid, 0)); | |
1076 | initial_thread->last_resume_kind = resume_stop; | |
0d62e5e8 | 1077 | |
8784d563 PA |
1078 | /* We must attach to every LWP. If /proc is mounted, use that to |
1079 | find them now. On the one hand, the inferior may be using raw | |
1080 | clone instead of using pthreads. On the other hand, even if it | |
1081 | is using pthreads, GDB may not be connected yet (thread_db needs | |
1082 | to do symbol lookups, through qSymbol). Also, thread_db walks | |
1083 | structures in the inferior's address space to find the list of | |
1084 | threads/LWPs, and those structures may well be corrupted. Note | |
1085 | that once thread_db is loaded, we'll still use it to list threads | |
1086 | and associate pthread info with each LWP. */ | |
1087 | linux_proc_attach_tgid_threads (pid, attach_proc_task_lwp_callback); | |
500c1d85 PA |
1088 | |
1089 | /* GDB will shortly read the xml target description for this | |
1090 | process, to figure out the process' architecture. But the target | |
1091 | description is only filled in when the first process/thread in | |
1092 | the thread group reports its initial PTRACE_ATTACH SIGSTOP. Do | |
1093 | that now, otherwise, if GDB is fast enough, it could read the | |
1094 | target description _before_ that initial stop. */ | |
1095 | if (non_stop) | |
1096 | { | |
1097 | struct lwp_info *lwp; | |
1098 | int wstat, lwpid; | |
1099 | ptid_t pid_ptid = pid_to_ptid (pid); | |
1100 | ||
1101 | lwpid = linux_wait_for_event_filtered (pid_ptid, pid_ptid, | |
1102 | &wstat, __WALL); | |
1103 | gdb_assert (lwpid > 0); | |
1104 | ||
1105 | lwp = find_lwp_pid (pid_to_ptid (lwpid)); | |
1106 | ||
1107 | if (!WIFSTOPPED (wstat) || WSTOPSIG (wstat) != SIGSTOP) | |
1108 | { | |
1109 | lwp->status_pending_p = 1; | |
1110 | lwp->status_pending = wstat; | |
1111 | } | |
1112 | ||
1113 | initial_thread->last_resume_kind = resume_continue; | |
1114 | ||
1115 | async_file_mark (); | |
1116 | ||
1117 | gdb_assert (proc->tdesc != NULL); | |
1118 | } | |
1119 | ||
95954743 PA |
1120 | return 0; |
1121 | } | |
1122 | ||
1123 | struct counter | |
1124 | { | |
1125 | int pid; | |
1126 | int count; | |
1127 | }; | |
1128 | ||
1129 | static int | |
1130 | second_thread_of_pid_p (struct inferior_list_entry *entry, void *args) | |
1131 | { | |
9a3c8263 | 1132 | struct counter *counter = (struct counter *) args; |
95954743 PA |
1133 | |
1134 | if (ptid_get_pid (entry->id) == counter->pid) | |
1135 | { | |
1136 | if (++counter->count > 1) | |
1137 | return 1; | |
1138 | } | |
d61ddec4 | 1139 | |
da6d8c04 DJ |
1140 | return 0; |
1141 | } | |
1142 | ||
95954743 | 1143 | static int |
fa96cb38 | 1144 | last_thread_of_process_p (int pid) |
95954743 | 1145 | { |
95954743 | 1146 | struct counter counter = { pid , 0 }; |
da6d8c04 | 1147 | |
95954743 PA |
1148 | return (find_inferior (&all_threads, |
1149 | second_thread_of_pid_p, &counter) == NULL); | |
1150 | } | |
1151 | ||
da84f473 PA |
1152 | /* Kill LWP. */ |
1153 | ||
1154 | static void | |
1155 | linux_kill_one_lwp (struct lwp_info *lwp) | |
1156 | { | |
d86d4aaf DE |
1157 | struct thread_info *thr = get_lwp_thread (lwp); |
1158 | int pid = lwpid_of (thr); | |
da84f473 PA |
1159 | |
1160 | /* PTRACE_KILL is unreliable. After stepping into a signal handler, | |
1161 | there is no signal context, and ptrace(PTRACE_KILL) (or | |
1162 | ptrace(PTRACE_CONT, SIGKILL), pretty much the same) acts like | |
1163 | ptrace(CONT, pid, 0,0) and just resumes the tracee. A better | |
1164 | alternative is to kill with SIGKILL. We only need one SIGKILL | |
1165 | per process, not one for each thread. But since we still support | |
1166 | linuxthreads, and we also support debugging programs using raw | |
1167 | clone without CLONE_THREAD, we send one for each thread. For | |
1168 | years, we used PTRACE_KILL only, so we're being a bit paranoid | |
1169 | about some old kernels where PTRACE_KILL might work better | |
1170 | (dubious if there are any such, but that's why it's paranoia), so | |
1171 | we try SIGKILL first, PTRACE_KILL second, and so we're fine | |
1172 | everywhere. */ | |
1173 | ||
1174 | errno = 0; | |
69ff6be5 | 1175 | kill_lwp (pid, SIGKILL); |
da84f473 | 1176 | if (debug_threads) |
ce9e3fe7 PA |
1177 | { |
1178 | int save_errno = errno; | |
1179 | ||
1180 | debug_printf ("LKL: kill_lwp (SIGKILL) %s, 0, 0 (%s)\n", | |
1181 | target_pid_to_str (ptid_of (thr)), | |
1182 | save_errno ? strerror (save_errno) : "OK"); | |
1183 | } | |
da84f473 PA |
1184 | |
1185 | errno = 0; | |
b8e1b30e | 1186 | ptrace (PTRACE_KILL, pid, (PTRACE_TYPE_ARG3) 0, (PTRACE_TYPE_ARG4) 0); |
da84f473 | 1187 | if (debug_threads) |
ce9e3fe7 PA |
1188 | { |
1189 | int save_errno = errno; | |
1190 | ||
1191 | debug_printf ("LKL: PTRACE_KILL %s, 0, 0 (%s)\n", | |
1192 | target_pid_to_str (ptid_of (thr)), | |
1193 | save_errno ? strerror (save_errno) : "OK"); | |
1194 | } | |
da84f473 PA |
1195 | } |
1196 | ||
e76126e8 PA |
1197 | /* Kill LWP and wait for it to die. */ |
1198 | ||
1199 | static void | |
1200 | kill_wait_lwp (struct lwp_info *lwp) | |
1201 | { | |
1202 | struct thread_info *thr = get_lwp_thread (lwp); | |
1203 | int pid = ptid_get_pid (ptid_of (thr)); | |
1204 | int lwpid = ptid_get_lwp (ptid_of (thr)); | |
1205 | int wstat; | |
1206 | int res; | |
1207 | ||
1208 | if (debug_threads) | |
1209 | debug_printf ("kwl: killing lwp %d, for pid: %d\n", lwpid, pid); | |
1210 | ||
1211 | do | |
1212 | { | |
1213 | linux_kill_one_lwp (lwp); | |
1214 | ||
1215 | /* Make sure it died. Notes: | |
1216 | ||
1217 | - The loop is most likely unnecessary. | |
1218 | ||
1219 | - We don't use linux_wait_for_event as that could delete lwps | |
1220 | while we're iterating over them. We're not interested in | |
1221 | any pending status at this point, only in making sure all | |
1222 | wait status on the kernel side are collected until the | |
1223 | process is reaped. | |
1224 | ||
1225 | - We don't use __WALL here as the __WALL emulation relies on | |
1226 | SIGCHLD, and killing a stopped process doesn't generate | |
1227 | one, nor an exit status. | |
1228 | */ | |
1229 | res = my_waitpid (lwpid, &wstat, 0); | |
1230 | if (res == -1 && errno == ECHILD) | |
1231 | res = my_waitpid (lwpid, &wstat, __WCLONE); | |
1232 | } while (res > 0 && WIFSTOPPED (wstat)); | |
1233 | ||
586b02a9 PA |
1234 | /* Even if it was stopped, the child may have already disappeared. |
1235 | E.g., if it was killed by SIGKILL. */ | |
1236 | if (res < 0 && errno != ECHILD) | |
1237 | perror_with_name ("kill_wait_lwp"); | |
e76126e8 PA |
1238 | } |
1239 | ||
da84f473 PA |
1240 | /* Callback for `find_inferior'. Kills an lwp of a given process, |
1241 | except the leader. */ | |
95954743 PA |
1242 | |
1243 | static int | |
da84f473 | 1244 | kill_one_lwp_callback (struct inferior_list_entry *entry, void *args) |
da6d8c04 | 1245 | { |
0d62e5e8 | 1246 | struct thread_info *thread = (struct thread_info *) entry; |
54a0b537 | 1247 | struct lwp_info *lwp = get_thread_lwp (thread); |
95954743 PA |
1248 | int pid = * (int *) args; |
1249 | ||
1250 | if (ptid_get_pid (entry->id) != pid) | |
1251 | return 0; | |
0d62e5e8 | 1252 | |
fd500816 DJ |
1253 | /* We avoid killing the first thread here, because of a Linux kernel (at |
1254 | least 2.6.0-test7 through 2.6.8-rc4) bug; if we kill the parent before | |
1255 | the children get a chance to be reaped, it will remain a zombie | |
1256 | forever. */ | |
95954743 | 1257 | |
d86d4aaf | 1258 | if (lwpid_of (thread) == pid) |
95954743 PA |
1259 | { |
1260 | if (debug_threads) | |
87ce2a04 DE |
1261 | debug_printf ("lkop: is last of process %s\n", |
1262 | target_pid_to_str (entry->id)); | |
95954743 PA |
1263 | return 0; |
1264 | } | |
fd500816 | 1265 | |
e76126e8 | 1266 | kill_wait_lwp (lwp); |
95954743 | 1267 | return 0; |
da6d8c04 DJ |
1268 | } |
1269 | ||
95954743 PA |
1270 | static int |
1271 | linux_kill (int pid) | |
0d62e5e8 | 1272 | { |
95954743 | 1273 | struct process_info *process; |
54a0b537 | 1274 | struct lwp_info *lwp; |
fd500816 | 1275 | |
95954743 PA |
1276 | process = find_process_pid (pid); |
1277 | if (process == NULL) | |
1278 | return -1; | |
9d606399 | 1279 | |
f9e39928 PA |
1280 | /* If we're killing a running inferior, make sure it is stopped |
1281 | first, as PTRACE_KILL will not work otherwise. */ | |
7984d532 | 1282 | stop_all_lwps (0, NULL); |
f9e39928 | 1283 | |
da84f473 | 1284 | find_inferior (&all_threads, kill_one_lwp_callback , &pid); |
fd500816 | 1285 | |
54a0b537 | 1286 | /* See the comment in linux_kill_one_lwp. We did not kill the first |
fd500816 | 1287 | thread in the list, so do so now. */ |
95954743 | 1288 | lwp = find_lwp_pid (pid_to_ptid (pid)); |
bd99dc85 | 1289 | |
784867a5 | 1290 | if (lwp == NULL) |
fd500816 | 1291 | { |
784867a5 | 1292 | if (debug_threads) |
d86d4aaf DE |
1293 | debug_printf ("lk_1: cannot find lwp for pid: %d\n", |
1294 | pid); | |
784867a5 JK |
1295 | } |
1296 | else | |
e76126e8 | 1297 | kill_wait_lwp (lwp); |
2d717e4f | 1298 | |
8336d594 | 1299 | the_target->mourn (process); |
f9e39928 PA |
1300 | |
1301 | /* Since we presently can only stop all lwps of all processes, we | |
1302 | need to unstop lwps of other processes. */ | |
7984d532 | 1303 | unstop_all_lwps (0, NULL); |
95954743 | 1304 | return 0; |
0d62e5e8 DJ |
1305 | } |
1306 | ||
9b224c5e PA |
1307 | /* Get pending signal of THREAD, for detaching purposes. This is the |
1308 | signal the thread last stopped for, which we need to deliver to the | |
1309 | thread when detaching, otherwise, it'd be suppressed/lost. */ | |
1310 | ||
1311 | static int | |
1312 | get_detach_signal (struct thread_info *thread) | |
1313 | { | |
a493e3e2 | 1314 | enum gdb_signal signo = GDB_SIGNAL_0; |
9b224c5e PA |
1315 | int status; |
1316 | struct lwp_info *lp = get_thread_lwp (thread); | |
1317 | ||
1318 | if (lp->status_pending_p) | |
1319 | status = lp->status_pending; | |
1320 | else | |
1321 | { | |
1322 | /* If the thread had been suspended by gdbserver, and it stopped | |
1323 | cleanly, then it'll have stopped with SIGSTOP. But we don't | |
1324 | want to deliver that SIGSTOP. */ | |
1325 | if (thread->last_status.kind != TARGET_WAITKIND_STOPPED | |
a493e3e2 | 1326 | || thread->last_status.value.sig == GDB_SIGNAL_0) |
9b224c5e PA |
1327 | return 0; |
1328 | ||
1329 | /* Otherwise, we may need to deliver the signal we | |
1330 | intercepted. */ | |
1331 | status = lp->last_status; | |
1332 | } | |
1333 | ||
1334 | if (!WIFSTOPPED (status)) | |
1335 | { | |
1336 | if (debug_threads) | |
87ce2a04 | 1337 | debug_printf ("GPS: lwp %s hasn't stopped: no pending signal\n", |
d86d4aaf | 1338 | target_pid_to_str (ptid_of (thread))); |
9b224c5e PA |
1339 | return 0; |
1340 | } | |
1341 | ||
1342 | /* Extended wait statuses aren't real SIGTRAPs. */ | |
89a5711c | 1343 | if (WSTOPSIG (status) == SIGTRAP && linux_is_extended_waitstatus (status)) |
9b224c5e PA |
1344 | { |
1345 | if (debug_threads) | |
87ce2a04 DE |
1346 | debug_printf ("GPS: lwp %s had stopped with extended " |
1347 | "status: no pending signal\n", | |
d86d4aaf | 1348 | target_pid_to_str (ptid_of (thread))); |
9b224c5e PA |
1349 | return 0; |
1350 | } | |
1351 | ||
2ea28649 | 1352 | signo = gdb_signal_from_host (WSTOPSIG (status)); |
9b224c5e PA |
1353 | |
1354 | if (program_signals_p && !program_signals[signo]) | |
1355 | { | |
1356 | if (debug_threads) | |
87ce2a04 | 1357 | debug_printf ("GPS: lwp %s had signal %s, but it is in nopass state\n", |
d86d4aaf | 1358 | target_pid_to_str (ptid_of (thread)), |
87ce2a04 | 1359 | gdb_signal_to_string (signo)); |
9b224c5e PA |
1360 | return 0; |
1361 | } | |
1362 | else if (!program_signals_p | |
1363 | /* If we have no way to know which signals GDB does not | |
1364 | want to have passed to the program, assume | |
1365 | SIGTRAP/SIGINT, which is GDB's default. */ | |
a493e3e2 | 1366 | && (signo == GDB_SIGNAL_TRAP || signo == GDB_SIGNAL_INT)) |
9b224c5e PA |
1367 | { |
1368 | if (debug_threads) | |
87ce2a04 DE |
1369 | debug_printf ("GPS: lwp %s had signal %s, " |
1370 | "but we don't know if we should pass it. " | |
1371 | "Default to not.\n", | |
d86d4aaf | 1372 | target_pid_to_str (ptid_of (thread)), |
87ce2a04 | 1373 | gdb_signal_to_string (signo)); |
9b224c5e PA |
1374 | return 0; |
1375 | } | |
1376 | else | |
1377 | { | |
1378 | if (debug_threads) | |
87ce2a04 | 1379 | debug_printf ("GPS: lwp %s has pending signal %s: delivering it.\n", |
d86d4aaf | 1380 | target_pid_to_str (ptid_of (thread)), |
87ce2a04 | 1381 | gdb_signal_to_string (signo)); |
9b224c5e PA |
1382 | |
1383 | return WSTOPSIG (status); | |
1384 | } | |
1385 | } | |
1386 | ||
95954743 PA |
1387 | static int |
1388 | linux_detach_one_lwp (struct inferior_list_entry *entry, void *args) | |
6ad8ae5c DJ |
1389 | { |
1390 | struct thread_info *thread = (struct thread_info *) entry; | |
54a0b537 | 1391 | struct lwp_info *lwp = get_thread_lwp (thread); |
95954743 | 1392 | int pid = * (int *) args; |
9b224c5e | 1393 | int sig; |
95954743 PA |
1394 | |
1395 | if (ptid_get_pid (entry->id) != pid) | |
1396 | return 0; | |
6ad8ae5c | 1397 | |
9b224c5e | 1398 | /* If there is a pending SIGSTOP, get rid of it. */ |
54a0b537 | 1399 | if (lwp->stop_expected) |
ae13219e | 1400 | { |
9b224c5e | 1401 | if (debug_threads) |
87ce2a04 | 1402 | debug_printf ("Sending SIGCONT to %s\n", |
d86d4aaf | 1403 | target_pid_to_str (ptid_of (thread))); |
9b224c5e | 1404 | |
d86d4aaf | 1405 | kill_lwp (lwpid_of (thread), SIGCONT); |
54a0b537 | 1406 | lwp->stop_expected = 0; |
ae13219e DJ |
1407 | } |
1408 | ||
1409 | /* Flush any pending changes to the process's registers. */ | |
d86d4aaf | 1410 | regcache_invalidate_thread (thread); |
ae13219e | 1411 | |
9b224c5e PA |
1412 | /* Pass on any pending signal for this thread. */ |
1413 | sig = get_detach_signal (thread); | |
1414 | ||
ae13219e | 1415 | /* Finally, let it resume. */ |
82bfbe7e PA |
1416 | if (the_low_target.prepare_to_resume != NULL) |
1417 | the_low_target.prepare_to_resume (lwp); | |
d86d4aaf | 1418 | if (ptrace (PTRACE_DETACH, lwpid_of (thread), (PTRACE_TYPE_ARG3) 0, |
b8e1b30e | 1419 | (PTRACE_TYPE_ARG4) (long) sig) < 0) |
9b224c5e | 1420 | error (_("Can't detach %s: %s"), |
d86d4aaf | 1421 | target_pid_to_str (ptid_of (thread)), |
9b224c5e | 1422 | strerror (errno)); |
bd99dc85 PA |
1423 | |
1424 | delete_lwp (lwp); | |
95954743 | 1425 | return 0; |
6ad8ae5c DJ |
1426 | } |
1427 | ||
95954743 PA |
1428 | static int |
1429 | linux_detach (int pid) | |
1430 | { | |
1431 | struct process_info *process; | |
1432 | ||
1433 | process = find_process_pid (pid); | |
1434 | if (process == NULL) | |
1435 | return -1; | |
1436 | ||
863d01bd PA |
1437 | /* As there's a step over already in progress, let it finish first, |
1438 | otherwise nesting a stabilize_threads operation on top gets real | |
1439 | messy. */ | |
1440 | complete_ongoing_step_over (); | |
1441 | ||
f9e39928 PA |
1442 | /* Stop all threads before detaching. First, ptrace requires that |
1443 | the thread is stopped to sucessfully detach. Second, thread_db | |
1444 | may need to uninstall thread event breakpoints from memory, which | |
1445 | only works with a stopped process anyway. */ | |
7984d532 | 1446 | stop_all_lwps (0, NULL); |
f9e39928 | 1447 | |
ca5c370d | 1448 | #ifdef USE_THREAD_DB |
8336d594 | 1449 | thread_db_detach (process); |
ca5c370d PA |
1450 | #endif |
1451 | ||
fa593d66 PA |
1452 | /* Stabilize threads (move out of jump pads). */ |
1453 | stabilize_threads (); | |
1454 | ||
95954743 | 1455 | find_inferior (&all_threads, linux_detach_one_lwp, &pid); |
8336d594 PA |
1456 | |
1457 | the_target->mourn (process); | |
f9e39928 PA |
1458 | |
1459 | /* Since we presently can only stop all lwps of all processes, we | |
1460 | need to unstop lwps of other processes. */ | |
7984d532 | 1461 | unstop_all_lwps (0, NULL); |
f9e39928 PA |
1462 | return 0; |
1463 | } | |
1464 | ||
1465 | /* Remove all LWPs that belong to process PROC from the lwp list. */ | |
1466 | ||
1467 | static int | |
1468 | delete_lwp_callback (struct inferior_list_entry *entry, void *proc) | |
1469 | { | |
d86d4aaf DE |
1470 | struct thread_info *thread = (struct thread_info *) entry; |
1471 | struct lwp_info *lwp = get_thread_lwp (thread); | |
9a3c8263 | 1472 | struct process_info *process = (struct process_info *) proc; |
f9e39928 | 1473 | |
d86d4aaf | 1474 | if (pid_of (thread) == pid_of (process)) |
f9e39928 PA |
1475 | delete_lwp (lwp); |
1476 | ||
dd6953e1 | 1477 | return 0; |
6ad8ae5c DJ |
1478 | } |
1479 | ||
8336d594 PA |
1480 | static void |
1481 | linux_mourn (struct process_info *process) | |
1482 | { | |
1483 | struct process_info_private *priv; | |
1484 | ||
1485 | #ifdef USE_THREAD_DB | |
1486 | thread_db_mourn (process); | |
1487 | #endif | |
1488 | ||
d86d4aaf | 1489 | find_inferior (&all_threads, delete_lwp_callback, process); |
f9e39928 | 1490 | |
8336d594 | 1491 | /* Freeing all private data. */ |
fe978cb0 | 1492 | priv = process->priv; |
8336d594 PA |
1493 | free (priv->arch_private); |
1494 | free (priv); | |
fe978cb0 | 1495 | process->priv = NULL; |
505106cd PA |
1496 | |
1497 | remove_process (process); | |
8336d594 PA |
1498 | } |
1499 | ||
444d6139 | 1500 | static void |
95954743 | 1501 | linux_join (int pid) |
444d6139 | 1502 | { |
444d6139 PA |
1503 | int status, ret; |
1504 | ||
1505 | do { | |
95954743 | 1506 | ret = my_waitpid (pid, &status, 0); |
444d6139 PA |
1507 | if (WIFEXITED (status) || WIFSIGNALED (status)) |
1508 | break; | |
1509 | } while (ret != -1 || errno != ECHILD); | |
1510 | } | |
1511 | ||
6ad8ae5c | 1512 | /* Return nonzero if the given thread is still alive. */ |
0d62e5e8 | 1513 | static int |
95954743 | 1514 | linux_thread_alive (ptid_t ptid) |
0d62e5e8 | 1515 | { |
95954743 PA |
1516 | struct lwp_info *lwp = find_lwp_pid (ptid); |
1517 | ||
1518 | /* We assume we always know if a thread exits. If a whole process | |
1519 | exited but we still haven't been able to report it to GDB, we'll | |
1520 | hold on to the last lwp of the dead process. */ | |
1521 | if (lwp != NULL) | |
00db26fa | 1522 | return !lwp_is_marked_dead (lwp); |
0d62e5e8 DJ |
1523 | else |
1524 | return 0; | |
1525 | } | |
1526 | ||
582511be PA |
1527 | /* Return 1 if this lwp still has an interesting status pending. If |
1528 | not (e.g., it had stopped for a breakpoint that is gone), return | |
1529 | false. */ | |
1530 | ||
1531 | static int | |
1532 | thread_still_has_status_pending_p (struct thread_info *thread) | |
1533 | { | |
1534 | struct lwp_info *lp = get_thread_lwp (thread); | |
1535 | ||
1536 | if (!lp->status_pending_p) | |
1537 | return 0; | |
1538 | ||
582511be | 1539 | if (thread->last_resume_kind != resume_stop |
15c66dd6 PA |
1540 | && (lp->stop_reason == TARGET_STOPPED_BY_SW_BREAKPOINT |
1541 | || lp->stop_reason == TARGET_STOPPED_BY_HW_BREAKPOINT)) | |
582511be PA |
1542 | { |
1543 | struct thread_info *saved_thread; | |
1544 | CORE_ADDR pc; | |
1545 | int discard = 0; | |
1546 | ||
1547 | gdb_assert (lp->last_status != 0); | |
1548 | ||
1549 | pc = get_pc (lp); | |
1550 | ||
1551 | saved_thread = current_thread; | |
1552 | current_thread = thread; | |
1553 | ||
1554 | if (pc != lp->stop_pc) | |
1555 | { | |
1556 | if (debug_threads) | |
1557 | debug_printf ("PC of %ld changed\n", | |
1558 | lwpid_of (thread)); | |
1559 | discard = 1; | |
1560 | } | |
3e572f71 PA |
1561 | |
1562 | #if !USE_SIGTRAP_SIGINFO | |
15c66dd6 | 1563 | else if (lp->stop_reason == TARGET_STOPPED_BY_SW_BREAKPOINT |
582511be PA |
1564 | && !(*the_low_target.breakpoint_at) (pc)) |
1565 | { | |
1566 | if (debug_threads) | |
1567 | debug_printf ("previous SW breakpoint of %ld gone\n", | |
1568 | lwpid_of (thread)); | |
1569 | discard = 1; | |
1570 | } | |
15c66dd6 | 1571 | else if (lp->stop_reason == TARGET_STOPPED_BY_HW_BREAKPOINT |
582511be PA |
1572 | && !hardware_breakpoint_inserted_here (pc)) |
1573 | { | |
1574 | if (debug_threads) | |
1575 | debug_printf ("previous HW breakpoint of %ld gone\n", | |
1576 | lwpid_of (thread)); | |
1577 | discard = 1; | |
1578 | } | |
3e572f71 | 1579 | #endif |
582511be PA |
1580 | |
1581 | current_thread = saved_thread; | |
1582 | ||
1583 | if (discard) | |
1584 | { | |
1585 | if (debug_threads) | |
1586 | debug_printf ("discarding pending breakpoint status\n"); | |
1587 | lp->status_pending_p = 0; | |
1588 | return 0; | |
1589 | } | |
1590 | } | |
1591 | ||
1592 | return 1; | |
1593 | } | |
1594 | ||
a681f9c9 PA |
1595 | /* Returns true if LWP is resumed from the client's perspective. */ |
1596 | ||
1597 | static int | |
1598 | lwp_resumed (struct lwp_info *lwp) | |
1599 | { | |
1600 | struct thread_info *thread = get_lwp_thread (lwp); | |
1601 | ||
1602 | if (thread->last_resume_kind != resume_stop) | |
1603 | return 1; | |
1604 | ||
1605 | /* Did gdb send us a `vCont;t', but we haven't reported the | |
1606 | corresponding stop to gdb yet? If so, the thread is still | |
1607 | resumed/running from gdb's perspective. */ | |
1608 | if (thread->last_resume_kind == resume_stop | |
1609 | && thread->last_status.kind == TARGET_WAITKIND_IGNORE) | |
1610 | return 1; | |
1611 | ||
1612 | return 0; | |
1613 | } | |
1614 | ||
6bf5e0ba | 1615 | /* Return 1 if this lwp has an interesting status pending. */ |
611cb4a5 | 1616 | static int |
d50171e4 | 1617 | status_pending_p_callback (struct inferior_list_entry *entry, void *arg) |
0d62e5e8 | 1618 | { |
d86d4aaf | 1619 | struct thread_info *thread = (struct thread_info *) entry; |
582511be | 1620 | struct lwp_info *lp = get_thread_lwp (thread); |
95954743 PA |
1621 | ptid_t ptid = * (ptid_t *) arg; |
1622 | ||
1623 | /* Check if we're only interested in events from a specific process | |
afa8d396 PA |
1624 | or a specific LWP. */ |
1625 | if (!ptid_match (ptid_of (thread), ptid)) | |
95954743 | 1626 | return 0; |
0d62e5e8 | 1627 | |
a681f9c9 PA |
1628 | if (!lwp_resumed (lp)) |
1629 | return 0; | |
1630 | ||
582511be PA |
1631 | if (lp->status_pending_p |
1632 | && !thread_still_has_status_pending_p (thread)) | |
1633 | { | |
1634 | linux_resume_one_lwp (lp, lp->stepping, GDB_SIGNAL_0, NULL); | |
1635 | return 0; | |
1636 | } | |
0d62e5e8 | 1637 | |
582511be | 1638 | return lp->status_pending_p; |
0d62e5e8 DJ |
1639 | } |
1640 | ||
95954743 PA |
1641 | static int |
1642 | same_lwp (struct inferior_list_entry *entry, void *data) | |
1643 | { | |
1644 | ptid_t ptid = *(ptid_t *) data; | |
1645 | int lwp; | |
1646 | ||
1647 | if (ptid_get_lwp (ptid) != 0) | |
1648 | lwp = ptid_get_lwp (ptid); | |
1649 | else | |
1650 | lwp = ptid_get_pid (ptid); | |
1651 | ||
1652 | if (ptid_get_lwp (entry->id) == lwp) | |
1653 | return 1; | |
1654 | ||
1655 | return 0; | |
1656 | } | |
1657 | ||
1658 | struct lwp_info * | |
1659 | find_lwp_pid (ptid_t ptid) | |
1660 | { | |
d86d4aaf DE |
1661 | struct inferior_list_entry *thread |
1662 | = find_inferior (&all_threads, same_lwp, &ptid); | |
1663 | ||
1664 | if (thread == NULL) | |
1665 | return NULL; | |
1666 | ||
1667 | return get_thread_lwp ((struct thread_info *) thread); | |
95954743 PA |
1668 | } |
1669 | ||
fa96cb38 | 1670 | /* Return the number of known LWPs in the tgid given by PID. */ |
0d62e5e8 | 1671 | |
fa96cb38 PA |
1672 | static int |
1673 | num_lwps (int pid) | |
1674 | { | |
1675 | struct inferior_list_entry *inf, *tmp; | |
1676 | int count = 0; | |
0d62e5e8 | 1677 | |
fa96cb38 | 1678 | ALL_INFERIORS (&all_threads, inf, tmp) |
24a09b5f | 1679 | { |
fa96cb38 PA |
1680 | if (ptid_get_pid (inf->id) == pid) |
1681 | count++; | |
24a09b5f | 1682 | } |
3aee8918 | 1683 | |
fa96cb38 PA |
1684 | return count; |
1685 | } | |
d61ddec4 | 1686 | |
6d4ee8c6 GB |
1687 | /* The arguments passed to iterate_over_lwps. */ |
1688 | ||
1689 | struct iterate_over_lwps_args | |
1690 | { | |
1691 | /* The FILTER argument passed to iterate_over_lwps. */ | |
1692 | ptid_t filter; | |
1693 | ||
1694 | /* The CALLBACK argument passed to iterate_over_lwps. */ | |
1695 | iterate_over_lwps_ftype *callback; | |
1696 | ||
1697 | /* The DATA argument passed to iterate_over_lwps. */ | |
1698 | void *data; | |
1699 | }; | |
1700 | ||
1701 | /* Callback for find_inferior used by iterate_over_lwps to filter | |
1702 | calls to the callback supplied to that function. Returning a | |
1703 | nonzero value causes find_inferiors to stop iterating and return | |
1704 | the current inferior_list_entry. Returning zero indicates that | |
1705 | find_inferiors should continue iterating. */ | |
1706 | ||
1707 | static int | |
1708 | iterate_over_lwps_filter (struct inferior_list_entry *entry, void *args_p) | |
1709 | { | |
1710 | struct iterate_over_lwps_args *args | |
1711 | = (struct iterate_over_lwps_args *) args_p; | |
1712 | ||
1713 | if (ptid_match (entry->id, args->filter)) | |
1714 | { | |
1715 | struct thread_info *thr = (struct thread_info *) entry; | |
1716 | struct lwp_info *lwp = get_thread_lwp (thr); | |
1717 | ||
1718 | return (*args->callback) (lwp, args->data); | |
1719 | } | |
1720 | ||
1721 | return 0; | |
1722 | } | |
1723 | ||
1724 | /* See nat/linux-nat.h. */ | |
1725 | ||
1726 | struct lwp_info * | |
1727 | iterate_over_lwps (ptid_t filter, | |
1728 | iterate_over_lwps_ftype callback, | |
1729 | void *data) | |
1730 | { | |
1731 | struct iterate_over_lwps_args args = {filter, callback, data}; | |
1732 | struct inferior_list_entry *entry; | |
1733 | ||
1734 | entry = find_inferior (&all_threads, iterate_over_lwps_filter, &args); | |
1735 | if (entry == NULL) | |
1736 | return NULL; | |
1737 | ||
1738 | return get_thread_lwp ((struct thread_info *) entry); | |
1739 | } | |
1740 | ||
fa96cb38 PA |
1741 | /* Detect zombie thread group leaders, and "exit" them. We can't reap |
1742 | their exits until all other threads in the group have exited. */ | |
c3adc08c | 1743 | |
fa96cb38 PA |
1744 | static void |
1745 | check_zombie_leaders (void) | |
1746 | { | |
1747 | struct process_info *proc, *tmp; | |
c3adc08c | 1748 | |
fa96cb38 | 1749 | ALL_PROCESSES (proc, tmp) |
c3adc08c | 1750 | { |
fa96cb38 PA |
1751 | pid_t leader_pid = pid_of (proc); |
1752 | struct lwp_info *leader_lp; | |
c3adc08c | 1753 | |
fa96cb38 | 1754 | leader_lp = find_lwp_pid (pid_to_ptid (leader_pid)); |
c3adc08c | 1755 | |
fa96cb38 PA |
1756 | if (debug_threads) |
1757 | debug_printf ("leader_pid=%d, leader_lp!=NULL=%d, " | |
1758 | "num_lwps=%d, zombie=%d\n", | |
1759 | leader_pid, leader_lp!= NULL, num_lwps (leader_pid), | |
1760 | linux_proc_pid_is_zombie (leader_pid)); | |
1761 | ||
94585166 | 1762 | if (leader_lp != NULL && !leader_lp->stopped |
fa96cb38 PA |
1763 | /* Check if there are other threads in the group, as we may |
1764 | have raced with the inferior simply exiting. */ | |
1765 | && !last_thread_of_process_p (leader_pid) | |
1766 | && linux_proc_pid_is_zombie (leader_pid)) | |
1767 | { | |
1768 | /* A leader zombie can mean one of two things: | |
1769 | ||
1770 | - It exited, and there's an exit status pending | |
1771 | available, or only the leader exited (not the whole | |
1772 | program). In the latter case, we can't waitpid the | |
1773 | leader's exit status until all other threads are gone. | |
1774 | ||
1775 | - There are 3 or more threads in the group, and a thread | |
1776 | other than the leader exec'd. On an exec, the Linux | |
1777 | kernel destroys all other threads (except the execing | |
1778 | one) in the thread group, and resets the execing thread's | |
1779 | tid to the tgid. No exit notification is sent for the | |
1780 | execing thread -- from the ptracer's perspective, it | |
1781 | appears as though the execing thread just vanishes. | |
1782 | Until we reap all other threads except the leader and the | |
1783 | execing thread, the leader will be zombie, and the | |
1784 | execing thread will be in `D (disc sleep)'. As soon as | |
1785 | all other threads are reaped, the execing thread changes | |
1786 | it's tid to the tgid, and the previous (zombie) leader | |
1787 | vanishes, giving place to the "new" leader. We could try | |
1788 | distinguishing the exit and exec cases, by waiting once | |
1789 | more, and seeing if something comes out, but it doesn't | |
1790 | sound useful. The previous leader _does_ go away, and | |
1791 | we'll re-add the new one once we see the exec event | |
1792 | (which is just the same as what would happen if the | |
1793 | previous leader did exit voluntarily before some other | |
1794 | thread execs). */ | |
c3adc08c | 1795 | |
fa96cb38 PA |
1796 | if (debug_threads) |
1797 | fprintf (stderr, | |
1798 | "CZL: Thread group leader %d zombie " | |
1799 | "(it exited, or another thread execd).\n", | |
1800 | leader_pid); | |
c3adc08c | 1801 | |
fa96cb38 | 1802 | delete_lwp (leader_lp); |
c3adc08c PA |
1803 | } |
1804 | } | |
fa96cb38 | 1805 | } |
c3adc08c | 1806 | |
fa96cb38 PA |
1807 | /* Callback for `find_inferior'. Returns the first LWP that is not |
1808 | stopped. ARG is a PTID filter. */ | |
d50171e4 | 1809 | |
fa96cb38 PA |
1810 | static int |
1811 | not_stopped_callback (struct inferior_list_entry *entry, void *arg) | |
1812 | { | |
1813 | struct thread_info *thr = (struct thread_info *) entry; | |
1814 | struct lwp_info *lwp; | |
1815 | ptid_t filter = *(ptid_t *) arg; | |
47c0c975 | 1816 | |
fa96cb38 PA |
1817 | if (!ptid_match (ptid_of (thr), filter)) |
1818 | return 0; | |
bd99dc85 | 1819 | |
fa96cb38 PA |
1820 | lwp = get_thread_lwp (thr); |
1821 | if (!lwp->stopped) | |
1822 | return 1; | |
1823 | ||
1824 | return 0; | |
0d62e5e8 | 1825 | } |
611cb4a5 | 1826 | |
863d01bd PA |
1827 | /* Increment LWP's suspend count. */ |
1828 | ||
1829 | static void | |
1830 | lwp_suspended_inc (struct lwp_info *lwp) | |
1831 | { | |
1832 | lwp->suspended++; | |
1833 | ||
1834 | if (debug_threads && lwp->suspended > 4) | |
1835 | { | |
1836 | struct thread_info *thread = get_lwp_thread (lwp); | |
1837 | ||
1838 | debug_printf ("LWP %ld has a suspiciously high suspend count," | |
1839 | " suspended=%d\n", lwpid_of (thread), lwp->suspended); | |
1840 | } | |
1841 | } | |
1842 | ||
1843 | /* Decrement LWP's suspend count. */ | |
1844 | ||
1845 | static void | |
1846 | lwp_suspended_decr (struct lwp_info *lwp) | |
1847 | { | |
1848 | lwp->suspended--; | |
1849 | ||
1850 | if (lwp->suspended < 0) | |
1851 | { | |
1852 | struct thread_info *thread = get_lwp_thread (lwp); | |
1853 | ||
1854 | internal_error (__FILE__, __LINE__, | |
1855 | "unsuspend LWP %ld, suspended=%d\n", lwpid_of (thread), | |
1856 | lwp->suspended); | |
1857 | } | |
1858 | } | |
1859 | ||
219f2f23 PA |
1860 | /* This function should only be called if the LWP got a SIGTRAP. |
1861 | ||
1862 | Handle any tracepoint steps or hits. Return true if a tracepoint | |
1863 | event was handled, 0 otherwise. */ | |
1864 | ||
1865 | static int | |
1866 | handle_tracepoints (struct lwp_info *lwp) | |
1867 | { | |
1868 | struct thread_info *tinfo = get_lwp_thread (lwp); | |
1869 | int tpoint_related_event = 0; | |
1870 | ||
582511be PA |
1871 | gdb_assert (lwp->suspended == 0); |
1872 | ||
7984d532 PA |
1873 | /* If this tracepoint hit causes a tracing stop, we'll immediately |
1874 | uninsert tracepoints. To do this, we temporarily pause all | |
1875 | threads, unpatch away, and then unpause threads. We need to make | |
1876 | sure the unpausing doesn't resume LWP too. */ | |
863d01bd | 1877 | lwp_suspended_inc (lwp); |
7984d532 | 1878 | |
219f2f23 PA |
1879 | /* And we need to be sure that any all-threads-stopping doesn't try |
1880 | to move threads out of the jump pads, as it could deadlock the | |
1881 | inferior (LWP could be in the jump pad, maybe even holding the | |
1882 | lock.) */ | |
1883 | ||
1884 | /* Do any necessary step collect actions. */ | |
1885 | tpoint_related_event |= tracepoint_finished_step (tinfo, lwp->stop_pc); | |
1886 | ||
fa593d66 PA |
1887 | tpoint_related_event |= handle_tracepoint_bkpts (tinfo, lwp->stop_pc); |
1888 | ||
219f2f23 PA |
1889 | /* See if we just hit a tracepoint and do its main collect |
1890 | actions. */ | |
1891 | tpoint_related_event |= tracepoint_was_hit (tinfo, lwp->stop_pc); | |
1892 | ||
863d01bd | 1893 | lwp_suspended_decr (lwp); |
7984d532 PA |
1894 | |
1895 | gdb_assert (lwp->suspended == 0); | |
fa593d66 | 1896 | gdb_assert (!stabilizing_threads || lwp->collecting_fast_tracepoint); |
7984d532 | 1897 | |
219f2f23 PA |
1898 | if (tpoint_related_event) |
1899 | { | |
1900 | if (debug_threads) | |
87ce2a04 | 1901 | debug_printf ("got a tracepoint event\n"); |
219f2f23 PA |
1902 | return 1; |
1903 | } | |
1904 | ||
1905 | return 0; | |
1906 | } | |
1907 | ||
fa593d66 PA |
1908 | /* Convenience wrapper. Returns true if LWP is presently collecting a |
1909 | fast tracepoint. */ | |
1910 | ||
1911 | static int | |
1912 | linux_fast_tracepoint_collecting (struct lwp_info *lwp, | |
1913 | struct fast_tpoint_collect_status *status) | |
1914 | { | |
1915 | CORE_ADDR thread_area; | |
d86d4aaf | 1916 | struct thread_info *thread = get_lwp_thread (lwp); |
fa593d66 PA |
1917 | |
1918 | if (the_low_target.get_thread_area == NULL) | |
1919 | return 0; | |
1920 | ||
1921 | /* Get the thread area address. This is used to recognize which | |
1922 | thread is which when tracing with the in-process agent library. | |
1923 | We don't read anything from the address, and treat it as opaque; | |
1924 | it's the address itself that we assume is unique per-thread. */ | |
d86d4aaf | 1925 | if ((*the_low_target.get_thread_area) (lwpid_of (thread), &thread_area) == -1) |
fa593d66 PA |
1926 | return 0; |
1927 | ||
1928 | return fast_tracepoint_collecting (thread_area, lwp->stop_pc, status); | |
1929 | } | |
1930 | ||
1931 | /* The reason we resume in the caller, is because we want to be able | |
1932 | to pass lwp->status_pending as WSTAT, and we need to clear | |
1933 | status_pending_p before resuming, otherwise, linux_resume_one_lwp | |
1934 | refuses to resume. */ | |
1935 | ||
1936 | static int | |
1937 | maybe_move_out_of_jump_pad (struct lwp_info *lwp, int *wstat) | |
1938 | { | |
0bfdf32f | 1939 | struct thread_info *saved_thread; |
fa593d66 | 1940 | |
0bfdf32f GB |
1941 | saved_thread = current_thread; |
1942 | current_thread = get_lwp_thread (lwp); | |
fa593d66 PA |
1943 | |
1944 | if ((wstat == NULL | |
1945 | || (WIFSTOPPED (*wstat) && WSTOPSIG (*wstat) != SIGTRAP)) | |
1946 | && supports_fast_tracepoints () | |
58b4daa5 | 1947 | && agent_loaded_p ()) |
fa593d66 PA |
1948 | { |
1949 | struct fast_tpoint_collect_status status; | |
1950 | int r; | |
1951 | ||
1952 | if (debug_threads) | |
87ce2a04 DE |
1953 | debug_printf ("Checking whether LWP %ld needs to move out of the " |
1954 | "jump pad.\n", | |
0bfdf32f | 1955 | lwpid_of (current_thread)); |
fa593d66 PA |
1956 | |
1957 | r = linux_fast_tracepoint_collecting (lwp, &status); | |
1958 | ||
1959 | if (wstat == NULL | |
1960 | || (WSTOPSIG (*wstat) != SIGILL | |
1961 | && WSTOPSIG (*wstat) != SIGFPE | |
1962 | && WSTOPSIG (*wstat) != SIGSEGV | |
1963 | && WSTOPSIG (*wstat) != SIGBUS)) | |
1964 | { | |
1965 | lwp->collecting_fast_tracepoint = r; | |
1966 | ||
1967 | if (r != 0) | |
1968 | { | |
1969 | if (r == 1 && lwp->exit_jump_pad_bkpt == NULL) | |
1970 | { | |
1971 | /* Haven't executed the original instruction yet. | |
1972 | Set breakpoint there, and wait till it's hit, | |
1973 | then single-step until exiting the jump pad. */ | |
1974 | lwp->exit_jump_pad_bkpt | |
1975 | = set_breakpoint_at (status.adjusted_insn_addr, NULL); | |
1976 | } | |
1977 | ||
1978 | if (debug_threads) | |
87ce2a04 DE |
1979 | debug_printf ("Checking whether LWP %ld needs to move out of " |
1980 | "the jump pad...it does\n", | |
0bfdf32f GB |
1981 | lwpid_of (current_thread)); |
1982 | current_thread = saved_thread; | |
fa593d66 PA |
1983 | |
1984 | return 1; | |
1985 | } | |
1986 | } | |
1987 | else | |
1988 | { | |
1989 | /* If we get a synchronous signal while collecting, *and* | |
1990 | while executing the (relocated) original instruction, | |
1991 | reset the PC to point at the tpoint address, before | |
1992 | reporting to GDB. Otherwise, it's an IPA lib bug: just | |
1993 | report the signal to GDB, and pray for the best. */ | |
1994 | ||
1995 | lwp->collecting_fast_tracepoint = 0; | |
1996 | ||
1997 | if (r != 0 | |
1998 | && (status.adjusted_insn_addr <= lwp->stop_pc | |
1999 | && lwp->stop_pc < status.adjusted_insn_addr_end)) | |
2000 | { | |
2001 | siginfo_t info; | |
2002 | struct regcache *regcache; | |
2003 | ||
2004 | /* The si_addr on a few signals references the address | |
2005 | of the faulting instruction. Adjust that as | |
2006 | well. */ | |
2007 | if ((WSTOPSIG (*wstat) == SIGILL | |
2008 | || WSTOPSIG (*wstat) == SIGFPE | |
2009 | || WSTOPSIG (*wstat) == SIGBUS | |
2010 | || WSTOPSIG (*wstat) == SIGSEGV) | |
0bfdf32f | 2011 | && ptrace (PTRACE_GETSIGINFO, lwpid_of (current_thread), |
b8e1b30e | 2012 | (PTRACE_TYPE_ARG3) 0, &info) == 0 |
fa593d66 PA |
2013 | /* Final check just to make sure we don't clobber |
2014 | the siginfo of non-kernel-sent signals. */ | |
2015 | && (uintptr_t) info.si_addr == lwp->stop_pc) | |
2016 | { | |
2017 | info.si_addr = (void *) (uintptr_t) status.tpoint_addr; | |
0bfdf32f | 2018 | ptrace (PTRACE_SETSIGINFO, lwpid_of (current_thread), |
b8e1b30e | 2019 | (PTRACE_TYPE_ARG3) 0, &info); |
fa593d66 PA |
2020 | } |
2021 | ||
0bfdf32f | 2022 | regcache = get_thread_regcache (current_thread, 1); |
fa593d66 PA |
2023 | (*the_low_target.set_pc) (regcache, status.tpoint_addr); |
2024 | lwp->stop_pc = status.tpoint_addr; | |
2025 | ||
2026 | /* Cancel any fast tracepoint lock this thread was | |
2027 | holding. */ | |
2028 | force_unlock_trace_buffer (); | |
2029 | } | |
2030 | ||
2031 | if (lwp->exit_jump_pad_bkpt != NULL) | |
2032 | { | |
2033 | if (debug_threads) | |
87ce2a04 DE |
2034 | debug_printf ("Cancelling fast exit-jump-pad: removing bkpt. " |
2035 | "stopping all threads momentarily.\n"); | |
fa593d66 PA |
2036 | |
2037 | stop_all_lwps (1, lwp); | |
fa593d66 PA |
2038 | |
2039 | delete_breakpoint (lwp->exit_jump_pad_bkpt); | |
2040 | lwp->exit_jump_pad_bkpt = NULL; | |
2041 | ||
2042 | unstop_all_lwps (1, lwp); | |
2043 | ||
2044 | gdb_assert (lwp->suspended >= 0); | |
2045 | } | |
2046 | } | |
2047 | } | |
2048 | ||
2049 | if (debug_threads) | |
87ce2a04 DE |
2050 | debug_printf ("Checking whether LWP %ld needs to move out of the " |
2051 | "jump pad...no\n", | |
0bfdf32f | 2052 | lwpid_of (current_thread)); |
0cccb683 | 2053 | |
0bfdf32f | 2054 | current_thread = saved_thread; |
fa593d66 PA |
2055 | return 0; |
2056 | } | |
2057 | ||
2058 | /* Enqueue one signal in the "signals to report later when out of the | |
2059 | jump pad" list. */ | |
2060 | ||
2061 | static void | |
2062 | enqueue_one_deferred_signal (struct lwp_info *lwp, int *wstat) | |
2063 | { | |
2064 | struct pending_signals *p_sig; | |
d86d4aaf | 2065 | struct thread_info *thread = get_lwp_thread (lwp); |
fa593d66 PA |
2066 | |
2067 | if (debug_threads) | |
87ce2a04 | 2068 | debug_printf ("Deferring signal %d for LWP %ld.\n", |
d86d4aaf | 2069 | WSTOPSIG (*wstat), lwpid_of (thread)); |
fa593d66 PA |
2070 | |
2071 | if (debug_threads) | |
2072 | { | |
2073 | struct pending_signals *sig; | |
2074 | ||
2075 | for (sig = lwp->pending_signals_to_report; | |
2076 | sig != NULL; | |
2077 | sig = sig->prev) | |
87ce2a04 DE |
2078 | debug_printf (" Already queued %d\n", |
2079 | sig->signal); | |
fa593d66 | 2080 | |
87ce2a04 | 2081 | debug_printf (" (no more currently queued signals)\n"); |
fa593d66 PA |
2082 | } |
2083 | ||
1a981360 PA |
2084 | /* Don't enqueue non-RT signals if they are already in the deferred |
2085 | queue. (SIGSTOP being the easiest signal to see ending up here | |
2086 | twice) */ | |
2087 | if (WSTOPSIG (*wstat) < __SIGRTMIN) | |
2088 | { | |
2089 | struct pending_signals *sig; | |
2090 | ||
2091 | for (sig = lwp->pending_signals_to_report; | |
2092 | sig != NULL; | |
2093 | sig = sig->prev) | |
2094 | { | |
2095 | if (sig->signal == WSTOPSIG (*wstat)) | |
2096 | { | |
2097 | if (debug_threads) | |
87ce2a04 DE |
2098 | debug_printf ("Not requeuing already queued non-RT signal %d" |
2099 | " for LWP %ld\n", | |
2100 | sig->signal, | |
d86d4aaf | 2101 | lwpid_of (thread)); |
1a981360 PA |
2102 | return; |
2103 | } | |
2104 | } | |
2105 | } | |
2106 | ||
8d749320 | 2107 | p_sig = XCNEW (struct pending_signals); |
fa593d66 PA |
2108 | p_sig->prev = lwp->pending_signals_to_report; |
2109 | p_sig->signal = WSTOPSIG (*wstat); | |
8d749320 | 2110 | |
d86d4aaf | 2111 | ptrace (PTRACE_GETSIGINFO, lwpid_of (thread), (PTRACE_TYPE_ARG3) 0, |
56f7af9c | 2112 | &p_sig->info); |
fa593d66 PA |
2113 | |
2114 | lwp->pending_signals_to_report = p_sig; | |
2115 | } | |
2116 | ||
2117 | /* Dequeue one signal from the "signals to report later when out of | |
2118 | the jump pad" list. */ | |
2119 | ||
2120 | static int | |
2121 | dequeue_one_deferred_signal (struct lwp_info *lwp, int *wstat) | |
2122 | { | |
d86d4aaf DE |
2123 | struct thread_info *thread = get_lwp_thread (lwp); |
2124 | ||
fa593d66 PA |
2125 | if (lwp->pending_signals_to_report != NULL) |
2126 | { | |
2127 | struct pending_signals **p_sig; | |
2128 | ||
2129 | p_sig = &lwp->pending_signals_to_report; | |
2130 | while ((*p_sig)->prev != NULL) | |
2131 | p_sig = &(*p_sig)->prev; | |
2132 | ||
2133 | *wstat = W_STOPCODE ((*p_sig)->signal); | |
2134 | if ((*p_sig)->info.si_signo != 0) | |
d86d4aaf | 2135 | ptrace (PTRACE_SETSIGINFO, lwpid_of (thread), (PTRACE_TYPE_ARG3) 0, |
56f7af9c | 2136 | &(*p_sig)->info); |
fa593d66 PA |
2137 | free (*p_sig); |
2138 | *p_sig = NULL; | |
2139 | ||
2140 | if (debug_threads) | |
87ce2a04 | 2141 | debug_printf ("Reporting deferred signal %d for LWP %ld.\n", |
d86d4aaf | 2142 | WSTOPSIG (*wstat), lwpid_of (thread)); |
fa593d66 PA |
2143 | |
2144 | if (debug_threads) | |
2145 | { | |
2146 | struct pending_signals *sig; | |
2147 | ||
2148 | for (sig = lwp->pending_signals_to_report; | |
2149 | sig != NULL; | |
2150 | sig = sig->prev) | |
87ce2a04 DE |
2151 | debug_printf (" Still queued %d\n", |
2152 | sig->signal); | |
fa593d66 | 2153 | |
87ce2a04 | 2154 | debug_printf (" (no more queued signals)\n"); |
fa593d66 PA |
2155 | } |
2156 | ||
2157 | return 1; | |
2158 | } | |
2159 | ||
2160 | return 0; | |
2161 | } | |
2162 | ||
582511be PA |
2163 | /* Fetch the possibly triggered data watchpoint info and store it in |
2164 | CHILD. | |
d50171e4 | 2165 | |
582511be PA |
2166 | On some archs, like x86, that use debug registers to set |
2167 | watchpoints, it's possible that the way to know which watched | |
2168 | address trapped, is to check the register that is used to select | |
2169 | which address to watch. Problem is, between setting the watchpoint | |
2170 | and reading back which data address trapped, the user may change | |
2171 | the set of watchpoints, and, as a consequence, GDB changes the | |
2172 | debug registers in the inferior. To avoid reading back a stale | |
2173 | stopped-data-address when that happens, we cache in LP the fact | |
2174 | that a watchpoint trapped, and the corresponding data address, as | |
2175 | soon as we see CHILD stop with a SIGTRAP. If GDB changes the debug | |
2176 | registers meanwhile, we have the cached data we can rely on. */ | |
d50171e4 | 2177 | |
582511be PA |
2178 | static int |
2179 | check_stopped_by_watchpoint (struct lwp_info *child) | |
2180 | { | |
2181 | if (the_low_target.stopped_by_watchpoint != NULL) | |
d50171e4 | 2182 | { |
582511be | 2183 | struct thread_info *saved_thread; |
d50171e4 | 2184 | |
582511be PA |
2185 | saved_thread = current_thread; |
2186 | current_thread = get_lwp_thread (child); | |
2187 | ||
2188 | if (the_low_target.stopped_by_watchpoint ()) | |
d50171e4 | 2189 | { |
15c66dd6 | 2190 | child->stop_reason = TARGET_STOPPED_BY_WATCHPOINT; |
582511be PA |
2191 | |
2192 | if (the_low_target.stopped_data_address != NULL) | |
2193 | child->stopped_data_address | |
2194 | = the_low_target.stopped_data_address (); | |
2195 | else | |
2196 | child->stopped_data_address = 0; | |
d50171e4 PA |
2197 | } |
2198 | ||
0bfdf32f | 2199 | current_thread = saved_thread; |
d50171e4 PA |
2200 | } |
2201 | ||
15c66dd6 | 2202 | return child->stop_reason == TARGET_STOPPED_BY_WATCHPOINT; |
c4d9ceb6 YQ |
2203 | } |
2204 | ||
de0d863e DB |
2205 | /* Return the ptrace options that we want to try to enable. */ |
2206 | ||
2207 | static int | |
2208 | linux_low_ptrace_options (int attached) | |
2209 | { | |
2210 | int options = 0; | |
2211 | ||
2212 | if (!attached) | |
2213 | options |= PTRACE_O_EXITKILL; | |
2214 | ||
2215 | if (report_fork_events) | |
2216 | options |= PTRACE_O_TRACEFORK; | |
2217 | ||
c269dbdb DB |
2218 | if (report_vfork_events) |
2219 | options |= (PTRACE_O_TRACEVFORK | PTRACE_O_TRACEVFORKDONE); | |
2220 | ||
94585166 DB |
2221 | if (report_exec_events) |
2222 | options |= PTRACE_O_TRACEEXEC; | |
2223 | ||
de0d863e DB |
2224 | return options; |
2225 | } | |
2226 | ||
fa96cb38 PA |
2227 | /* Do low-level handling of the event, and check if we should go on |
2228 | and pass it to caller code. Return the affected lwp if we are, or | |
2229 | NULL otherwise. */ | |
2230 | ||
2231 | static struct lwp_info * | |
582511be | 2232 | linux_low_filter_event (int lwpid, int wstat) |
fa96cb38 PA |
2233 | { |
2234 | struct lwp_info *child; | |
2235 | struct thread_info *thread; | |
582511be | 2236 | int have_stop_pc = 0; |
fa96cb38 PA |
2237 | |
2238 | child = find_lwp_pid (pid_to_ptid (lwpid)); | |
2239 | ||
94585166 DB |
2240 | /* Check for stop events reported by a process we didn't already |
2241 | know about - anything not already in our LWP list. | |
2242 | ||
2243 | If we're expecting to receive stopped processes after | |
2244 | fork, vfork, and clone events, then we'll just add the | |
2245 | new one to our list and go back to waiting for the event | |
2246 | to be reported - the stopped process might be returned | |
2247 | from waitpid before or after the event is. | |
2248 | ||
2249 | But note the case of a non-leader thread exec'ing after the | |
2250 | leader having exited, and gone from our lists (because | |
2251 | check_zombie_leaders deleted it). The non-leader thread | |
2252 | changes its tid to the tgid. */ | |
2253 | ||
2254 | if (WIFSTOPPED (wstat) && child == NULL && WSTOPSIG (wstat) == SIGTRAP | |
2255 | && linux_ptrace_get_extended_event (wstat) == PTRACE_EVENT_EXEC) | |
2256 | { | |
2257 | ptid_t child_ptid; | |
2258 | ||
2259 | /* A multi-thread exec after we had seen the leader exiting. */ | |
2260 | if (debug_threads) | |
2261 | { | |
2262 | debug_printf ("LLW: Re-adding thread group leader LWP %d" | |
2263 | "after exec.\n", lwpid); | |
2264 | } | |
2265 | ||
2266 | child_ptid = ptid_build (lwpid, lwpid, 0); | |
2267 | child = add_lwp (child_ptid); | |
2268 | child->stopped = 1; | |
2269 | current_thread = child->thread; | |
2270 | } | |
2271 | ||
fa96cb38 PA |
2272 | /* If we didn't find a process, one of two things presumably happened: |
2273 | - A process we started and then detached from has exited. Ignore it. | |
2274 | - A process we are controlling has forked and the new child's stop | |
2275 | was reported to us by the kernel. Save its PID. */ | |
2276 | if (child == NULL && WIFSTOPPED (wstat)) | |
2277 | { | |
2278 | add_to_pid_list (&stopped_pids, lwpid, wstat); | |
2279 | return NULL; | |
2280 | } | |
2281 | else if (child == NULL) | |
2282 | return NULL; | |
2283 | ||
2284 | thread = get_lwp_thread (child); | |
2285 | ||
2286 | child->stopped = 1; | |
2287 | ||
2288 | child->last_status = wstat; | |
2289 | ||
582511be PA |
2290 | /* Check if the thread has exited. */ |
2291 | if ((WIFEXITED (wstat) || WIFSIGNALED (wstat))) | |
2292 | { | |
2293 | if (debug_threads) | |
2294 | debug_printf ("LLFE: %d exited.\n", lwpid); | |
65706a29 PA |
2295 | /* If there is at least one more LWP, then the exit signal was |
2296 | not the end of the debugged application and should be | |
2297 | ignored, unless GDB wants to hear about thread exits. */ | |
2298 | if (report_thread_events | |
2299 | || last_thread_of_process_p (pid_of (thread))) | |
582511be | 2300 | { |
65706a29 PA |
2301 | /* Since events are serialized to GDB core, and we can't |
2302 | report this one right now. Leave the status pending for | |
2303 | the next time we're able to report it. */ | |
2304 | mark_lwp_dead (child, wstat); | |
2305 | return child; | |
582511be PA |
2306 | } |
2307 | else | |
2308 | { | |
65706a29 PA |
2309 | delete_lwp (child); |
2310 | return NULL; | |
582511be PA |
2311 | } |
2312 | } | |
2313 | ||
2314 | gdb_assert (WIFSTOPPED (wstat)); | |
2315 | ||
fa96cb38 PA |
2316 | if (WIFSTOPPED (wstat)) |
2317 | { | |
2318 | struct process_info *proc; | |
2319 | ||
c06cbd92 | 2320 | /* Architecture-specific setup after inferior is running. */ |
fa96cb38 | 2321 | proc = find_process_pid (pid_of (thread)); |
c06cbd92 | 2322 | if (proc->tdesc == NULL) |
fa96cb38 | 2323 | { |
c06cbd92 YQ |
2324 | if (proc->attached) |
2325 | { | |
c06cbd92 YQ |
2326 | /* This needs to happen after we have attached to the |
2327 | inferior and it is stopped for the first time, but | |
2328 | before we access any inferior registers. */ | |
94585166 | 2329 | linux_arch_setup_thread (thread); |
c06cbd92 YQ |
2330 | } |
2331 | else | |
2332 | { | |
2333 | /* The process is started, but GDBserver will do | |
2334 | architecture-specific setup after the program stops at | |
2335 | the first instruction. */ | |
2336 | child->status_pending_p = 1; | |
2337 | child->status_pending = wstat; | |
2338 | return child; | |
2339 | } | |
fa96cb38 PA |
2340 | } |
2341 | } | |
2342 | ||
fa96cb38 PA |
2343 | if (WIFSTOPPED (wstat) && child->must_set_ptrace_flags) |
2344 | { | |
beed38b8 | 2345 | struct process_info *proc = find_process_pid (pid_of (thread)); |
de0d863e | 2346 | int options = linux_low_ptrace_options (proc->attached); |
beed38b8 | 2347 | |
de0d863e | 2348 | linux_enable_event_reporting (lwpid, options); |
fa96cb38 PA |
2349 | child->must_set_ptrace_flags = 0; |
2350 | } | |
2351 | ||
582511be PA |
2352 | /* Be careful to not overwrite stop_pc until |
2353 | check_stopped_by_breakpoint is called. */ | |
fa96cb38 | 2354 | if (WIFSTOPPED (wstat) && WSTOPSIG (wstat) == SIGTRAP |
89a5711c | 2355 | && linux_is_extended_waitstatus (wstat)) |
fa96cb38 | 2356 | { |
582511be | 2357 | child->stop_pc = get_pc (child); |
94585166 | 2358 | if (handle_extended_wait (&child, wstat)) |
de0d863e DB |
2359 | { |
2360 | /* The event has been handled, so just return without | |
2361 | reporting it. */ | |
2362 | return NULL; | |
2363 | } | |
fa96cb38 PA |
2364 | } |
2365 | ||
3e572f71 PA |
2366 | /* Check first whether this was a SW/HW breakpoint before checking |
2367 | watchpoints, because at least s390 can't tell the data address of | |
2368 | hardware watchpoint hits, and returns stopped-by-watchpoint as | |
2369 | long as there's a watchpoint set. */ | |
2370 | if (WIFSTOPPED (wstat) && linux_wstatus_maybe_breakpoint (wstat)) | |
582511be PA |
2371 | { |
2372 | if (check_stopped_by_breakpoint (child)) | |
2373 | have_stop_pc = 1; | |
2374 | } | |
2375 | ||
3e572f71 PA |
2376 | /* Note that TRAP_HWBKPT can indicate either a hardware breakpoint |
2377 | or hardware watchpoint. Check which is which if we got | |
863d01bd PA |
2378 | TARGET_STOPPED_BY_HW_BREAKPOINT. Likewise, we may have single |
2379 | stepped an instruction that triggered a watchpoint. In that | |
2380 | case, on some architectures (such as x86), instead of | |
2381 | TRAP_HWBKPT, si_code indicates TRAP_TRACE, and we need to check | |
2382 | the debug registers separately. */ | |
3e572f71 | 2383 | if (WIFSTOPPED (wstat) && WSTOPSIG (wstat) == SIGTRAP |
863d01bd | 2384 | && child->stop_reason != TARGET_STOPPED_BY_SW_BREAKPOINT) |
3e572f71 PA |
2385 | check_stopped_by_watchpoint (child); |
2386 | ||
582511be PA |
2387 | if (!have_stop_pc) |
2388 | child->stop_pc = get_pc (child); | |
2389 | ||
fa96cb38 PA |
2390 | if (WIFSTOPPED (wstat) && WSTOPSIG (wstat) == SIGSTOP |
2391 | && child->stop_expected) | |
2392 | { | |
2393 | if (debug_threads) | |
2394 | debug_printf ("Expected stop.\n"); | |
2395 | child->stop_expected = 0; | |
2396 | ||
2397 | if (thread->last_resume_kind == resume_stop) | |
2398 | { | |
2399 | /* We want to report the stop to the core. Treat the | |
2400 | SIGSTOP as a normal event. */ | |
2bf6fb9d PA |
2401 | if (debug_threads) |
2402 | debug_printf ("LLW: resume_stop SIGSTOP caught for %s.\n", | |
2403 | target_pid_to_str (ptid_of (thread))); | |
fa96cb38 PA |
2404 | } |
2405 | else if (stopping_threads != NOT_STOPPING_THREADS) | |
2406 | { | |
2407 | /* Stopping threads. We don't want this SIGSTOP to end up | |
582511be | 2408 | pending. */ |
2bf6fb9d PA |
2409 | if (debug_threads) |
2410 | debug_printf ("LLW: SIGSTOP caught for %s " | |
2411 | "while stopping threads.\n", | |
2412 | target_pid_to_str (ptid_of (thread))); | |
fa96cb38 PA |
2413 | return NULL; |
2414 | } | |
2415 | else | |
2416 | { | |
2bf6fb9d PA |
2417 | /* This is a delayed SIGSTOP. Filter out the event. */ |
2418 | if (debug_threads) | |
2419 | debug_printf ("LLW: %s %s, 0, 0 (discard delayed SIGSTOP)\n", | |
2420 | child->stepping ? "step" : "continue", | |
2421 | target_pid_to_str (ptid_of (thread))); | |
2422 | ||
fa96cb38 PA |
2423 | linux_resume_one_lwp (child, child->stepping, 0, NULL); |
2424 | return NULL; | |
2425 | } | |
2426 | } | |
2427 | ||
582511be PA |
2428 | child->status_pending_p = 1; |
2429 | child->status_pending = wstat; | |
fa96cb38 PA |
2430 | return child; |
2431 | } | |
2432 | ||
20ba1ce6 PA |
2433 | /* Resume LWPs that are currently stopped without any pending status |
2434 | to report, but are resumed from the core's perspective. */ | |
2435 | ||
2436 | static void | |
2437 | resume_stopped_resumed_lwps (struct inferior_list_entry *entry) | |
2438 | { | |
2439 | struct thread_info *thread = (struct thread_info *) entry; | |
2440 | struct lwp_info *lp = get_thread_lwp (thread); | |
2441 | ||
2442 | if (lp->stopped | |
863d01bd | 2443 | && !lp->suspended |
20ba1ce6 | 2444 | && !lp->status_pending_p |
20ba1ce6 PA |
2445 | && thread->last_status.kind == TARGET_WAITKIND_IGNORE) |
2446 | { | |
2447 | int step = thread->last_resume_kind == resume_step; | |
2448 | ||
2449 | if (debug_threads) | |
2450 | debug_printf ("RSRL: resuming stopped-resumed LWP %s at %s: step=%d\n", | |
2451 | target_pid_to_str (ptid_of (thread)), | |
2452 | paddress (lp->stop_pc), | |
2453 | step); | |
2454 | ||
2455 | linux_resume_one_lwp (lp, step, GDB_SIGNAL_0, NULL); | |
2456 | } | |
2457 | } | |
2458 | ||
fa96cb38 PA |
2459 | /* Wait for an event from child(ren) WAIT_PTID, and return any that |
2460 | match FILTER_PTID (leaving others pending). The PTIDs can be: | |
2461 | minus_one_ptid, to specify any child; a pid PTID, specifying all | |
2462 | lwps of a thread group; or a PTID representing a single lwp. Store | |
2463 | the stop status through the status pointer WSTAT. OPTIONS is | |
2464 | passed to the waitpid call. Return 0 if no event was found and | |
2465 | OPTIONS contains WNOHANG. Return -1 if no unwaited-for children | |
2466 | was found. Return the PID of the stopped child otherwise. */ | |
bd99dc85 | 2467 | |
0d62e5e8 | 2468 | static int |
fa96cb38 PA |
2469 | linux_wait_for_event_filtered (ptid_t wait_ptid, ptid_t filter_ptid, |
2470 | int *wstatp, int options) | |
0d62e5e8 | 2471 | { |
d86d4aaf | 2472 | struct thread_info *event_thread; |
d50171e4 | 2473 | struct lwp_info *event_child, *requested_child; |
fa96cb38 | 2474 | sigset_t block_mask, prev_mask; |
d50171e4 | 2475 | |
fa96cb38 | 2476 | retry: |
d86d4aaf DE |
2477 | /* N.B. event_thread points to the thread_info struct that contains |
2478 | event_child. Keep them in sync. */ | |
2479 | event_thread = NULL; | |
d50171e4 PA |
2480 | event_child = NULL; |
2481 | requested_child = NULL; | |
0d62e5e8 | 2482 | |
95954743 | 2483 | /* Check for a lwp with a pending status. */ |
bd99dc85 | 2484 | |
fa96cb38 | 2485 | if (ptid_equal (filter_ptid, minus_one_ptid) || ptid_is_pid (filter_ptid)) |
0d62e5e8 | 2486 | { |
d86d4aaf | 2487 | event_thread = (struct thread_info *) |
fa96cb38 | 2488 | find_inferior (&all_threads, status_pending_p_callback, &filter_ptid); |
d86d4aaf DE |
2489 | if (event_thread != NULL) |
2490 | event_child = get_thread_lwp (event_thread); | |
2491 | if (debug_threads && event_thread) | |
2492 | debug_printf ("Got a pending child %ld\n", lwpid_of (event_thread)); | |
0d62e5e8 | 2493 | } |
fa96cb38 | 2494 | else if (!ptid_equal (filter_ptid, null_ptid)) |
0d62e5e8 | 2495 | { |
fa96cb38 | 2496 | requested_child = find_lwp_pid (filter_ptid); |
d50171e4 | 2497 | |
bde24c0a | 2498 | if (stopping_threads == NOT_STOPPING_THREADS |
fa593d66 PA |
2499 | && requested_child->status_pending_p |
2500 | && requested_child->collecting_fast_tracepoint) | |
2501 | { | |
2502 | enqueue_one_deferred_signal (requested_child, | |
2503 | &requested_child->status_pending); | |
2504 | requested_child->status_pending_p = 0; | |
2505 | requested_child->status_pending = 0; | |
2506 | linux_resume_one_lwp (requested_child, 0, 0, NULL); | |
2507 | } | |
2508 | ||
2509 | if (requested_child->suspended | |
2510 | && requested_child->status_pending_p) | |
38e08fca GB |
2511 | { |
2512 | internal_error (__FILE__, __LINE__, | |
2513 | "requesting an event out of a" | |
2514 | " suspended child?"); | |
2515 | } | |
fa593d66 | 2516 | |
d50171e4 | 2517 | if (requested_child->status_pending_p) |
d86d4aaf DE |
2518 | { |
2519 | event_child = requested_child; | |
2520 | event_thread = get_lwp_thread (event_child); | |
2521 | } | |
0d62e5e8 | 2522 | } |
611cb4a5 | 2523 | |
0d62e5e8 DJ |
2524 | if (event_child != NULL) |
2525 | { | |
bd99dc85 | 2526 | if (debug_threads) |
87ce2a04 | 2527 | debug_printf ("Got an event from pending child %ld (%04x)\n", |
d86d4aaf | 2528 | lwpid_of (event_thread), event_child->status_pending); |
fa96cb38 | 2529 | *wstatp = event_child->status_pending; |
bd99dc85 PA |
2530 | event_child->status_pending_p = 0; |
2531 | event_child->status_pending = 0; | |
0bfdf32f | 2532 | current_thread = event_thread; |
d86d4aaf | 2533 | return lwpid_of (event_thread); |
0d62e5e8 DJ |
2534 | } |
2535 | ||
fa96cb38 PA |
2536 | /* But if we don't find a pending event, we'll have to wait. |
2537 | ||
2538 | We only enter this loop if no process has a pending wait status. | |
2539 | Thus any action taken in response to a wait status inside this | |
2540 | loop is responding as soon as we detect the status, not after any | |
2541 | pending events. */ | |
d8301ad1 | 2542 | |
fa96cb38 PA |
2543 | /* Make sure SIGCHLD is blocked until the sigsuspend below. Block |
2544 | all signals while here. */ | |
2545 | sigfillset (&block_mask); | |
2546 | sigprocmask (SIG_BLOCK, &block_mask, &prev_mask); | |
2547 | ||
582511be PA |
2548 | /* Always pull all events out of the kernel. We'll randomly select |
2549 | an event LWP out of all that have events, to prevent | |
2550 | starvation. */ | |
fa96cb38 | 2551 | while (event_child == NULL) |
0d62e5e8 | 2552 | { |
fa96cb38 | 2553 | pid_t ret = 0; |
0d62e5e8 | 2554 | |
fa96cb38 PA |
2555 | /* Always use -1 and WNOHANG, due to couple of a kernel/ptrace |
2556 | quirks: | |
0d62e5e8 | 2557 | |
fa96cb38 PA |
2558 | - If the thread group leader exits while other threads in the |
2559 | thread group still exist, waitpid(TGID, ...) hangs. That | |
2560 | waitpid won't return an exit status until the other threads | |
2561 | in the group are reaped. | |
611cb4a5 | 2562 | |
fa96cb38 PA |
2563 | - When a non-leader thread execs, that thread just vanishes |
2564 | without reporting an exit (so we'd hang if we waited for it | |
2565 | explicitly in that case). The exec event is reported to | |
94585166 | 2566 | the TGID pid. */ |
fa96cb38 PA |
2567 | errno = 0; |
2568 | ret = my_waitpid (-1, wstatp, options | WNOHANG); | |
d8301ad1 | 2569 | |
fa96cb38 PA |
2570 | if (debug_threads) |
2571 | debug_printf ("LWFE: waitpid(-1, ...) returned %d, %s\n", | |
2572 | ret, errno ? strerror (errno) : "ERRNO-OK"); | |
0d62e5e8 | 2573 | |
fa96cb38 | 2574 | if (ret > 0) |
0d62e5e8 | 2575 | { |
89be2091 | 2576 | if (debug_threads) |
bd99dc85 | 2577 | { |
fa96cb38 PA |
2578 | debug_printf ("LLW: waitpid %ld received %s\n", |
2579 | (long) ret, status_to_str (*wstatp)); | |
bd99dc85 | 2580 | } |
89be2091 | 2581 | |
582511be PA |
2582 | /* Filter all events. IOW, leave all events pending. We'll |
2583 | randomly select an event LWP out of all that have events | |
2584 | below. */ | |
2585 | linux_low_filter_event (ret, *wstatp); | |
fa96cb38 PA |
2586 | /* Retry until nothing comes out of waitpid. A single |
2587 | SIGCHLD can indicate more than one child stopped. */ | |
89be2091 DJ |
2588 | continue; |
2589 | } | |
2590 | ||
20ba1ce6 PA |
2591 | /* Now that we've pulled all events out of the kernel, resume |
2592 | LWPs that don't have an interesting event to report. */ | |
2593 | if (stopping_threads == NOT_STOPPING_THREADS) | |
2594 | for_each_inferior (&all_threads, resume_stopped_resumed_lwps); | |
2595 | ||
2596 | /* ... and find an LWP with a status to report to the core, if | |
2597 | any. */ | |
582511be PA |
2598 | event_thread = (struct thread_info *) |
2599 | find_inferior (&all_threads, status_pending_p_callback, &filter_ptid); | |
2600 | if (event_thread != NULL) | |
2601 | { | |
2602 | event_child = get_thread_lwp (event_thread); | |
2603 | *wstatp = event_child->status_pending; | |
2604 | event_child->status_pending_p = 0; | |
2605 | event_child->status_pending = 0; | |
2606 | break; | |
2607 | } | |
2608 | ||
fa96cb38 PA |
2609 | /* Check for zombie thread group leaders. Those can't be reaped |
2610 | until all other threads in the thread group are. */ | |
2611 | check_zombie_leaders (); | |
2612 | ||
2613 | /* If there are no resumed children left in the set of LWPs we | |
2614 | want to wait for, bail. We can't just block in | |
2615 | waitpid/sigsuspend, because lwps might have been left stopped | |
2616 | in trace-stop state, and we'd be stuck forever waiting for | |
2617 | their status to change (which would only happen if we resumed | |
2618 | them). Even if WNOHANG is set, this return code is preferred | |
2619 | over 0 (below), as it is more detailed. */ | |
2620 | if ((find_inferior (&all_threads, | |
2621 | not_stopped_callback, | |
2622 | &wait_ptid) == NULL)) | |
a6dbe5df | 2623 | { |
fa96cb38 PA |
2624 | if (debug_threads) |
2625 | debug_printf ("LLW: exit (no unwaited-for LWP)\n"); | |
2626 | sigprocmask (SIG_SETMASK, &prev_mask, NULL); | |
2627 | return -1; | |
a6dbe5df PA |
2628 | } |
2629 | ||
fa96cb38 PA |
2630 | /* No interesting event to report to the caller. */ |
2631 | if ((options & WNOHANG)) | |
24a09b5f | 2632 | { |
fa96cb38 PA |
2633 | if (debug_threads) |
2634 | debug_printf ("WNOHANG set, no event found\n"); | |
2635 | ||
2636 | sigprocmask (SIG_SETMASK, &prev_mask, NULL); | |
2637 | return 0; | |
24a09b5f DJ |
2638 | } |
2639 | ||
fa96cb38 PA |
2640 | /* Block until we get an event reported with SIGCHLD. */ |
2641 | if (debug_threads) | |
2642 | debug_printf ("sigsuspend'ing\n"); | |
d50171e4 | 2643 | |
fa96cb38 PA |
2644 | sigsuspend (&prev_mask); |
2645 | sigprocmask (SIG_SETMASK, &prev_mask, NULL); | |
2646 | goto retry; | |
2647 | } | |
d50171e4 | 2648 | |
fa96cb38 | 2649 | sigprocmask (SIG_SETMASK, &prev_mask, NULL); |
d50171e4 | 2650 | |
0bfdf32f | 2651 | current_thread = event_thread; |
d50171e4 | 2652 | |
fa96cb38 PA |
2653 | return lwpid_of (event_thread); |
2654 | } | |
2655 | ||
2656 | /* Wait for an event from child(ren) PTID. PTIDs can be: | |
2657 | minus_one_ptid, to specify any child; a pid PTID, specifying all | |
2658 | lwps of a thread group; or a PTID representing a single lwp. Store | |
2659 | the stop status through the status pointer WSTAT. OPTIONS is | |
2660 | passed to the waitpid call. Return 0 if no event was found and | |
2661 | OPTIONS contains WNOHANG. Return -1 if no unwaited-for children | |
2662 | was found. Return the PID of the stopped child otherwise. */ | |
2663 | ||
2664 | static int | |
2665 | linux_wait_for_event (ptid_t ptid, int *wstatp, int options) | |
2666 | { | |
2667 | return linux_wait_for_event_filtered (ptid, ptid, wstatp, options); | |
611cb4a5 DJ |
2668 | } |
2669 | ||
6bf5e0ba PA |
2670 | /* Count the LWP's that have had events. */ |
2671 | ||
2672 | static int | |
2673 | count_events_callback (struct inferior_list_entry *entry, void *data) | |
2674 | { | |
d86d4aaf | 2675 | struct thread_info *thread = (struct thread_info *) entry; |
8bf3b159 | 2676 | struct lwp_info *lp = get_thread_lwp (thread); |
9a3c8263 | 2677 | int *count = (int *) data; |
6bf5e0ba PA |
2678 | |
2679 | gdb_assert (count != NULL); | |
2680 | ||
582511be | 2681 | /* Count only resumed LWPs that have an event pending. */ |
8336d594 | 2682 | if (thread->last_status.kind == TARGET_WAITKIND_IGNORE |
8bf3b159 | 2683 | && lp->status_pending_p) |
6bf5e0ba PA |
2684 | (*count)++; |
2685 | ||
2686 | return 0; | |
2687 | } | |
2688 | ||
2689 | /* Select the LWP (if any) that is currently being single-stepped. */ | |
2690 | ||
2691 | static int | |
2692 | select_singlestep_lwp_callback (struct inferior_list_entry *entry, void *data) | |
2693 | { | |
d86d4aaf DE |
2694 | struct thread_info *thread = (struct thread_info *) entry; |
2695 | struct lwp_info *lp = get_thread_lwp (thread); | |
6bf5e0ba | 2696 | |
8336d594 PA |
2697 | if (thread->last_status.kind == TARGET_WAITKIND_IGNORE |
2698 | && thread->last_resume_kind == resume_step | |
6bf5e0ba PA |
2699 | && lp->status_pending_p) |
2700 | return 1; | |
2701 | else | |
2702 | return 0; | |
2703 | } | |
2704 | ||
b90fc188 | 2705 | /* Select the Nth LWP that has had an event. */ |
6bf5e0ba PA |
2706 | |
2707 | static int | |
2708 | select_event_lwp_callback (struct inferior_list_entry *entry, void *data) | |
2709 | { | |
d86d4aaf | 2710 | struct thread_info *thread = (struct thread_info *) entry; |
8bf3b159 | 2711 | struct lwp_info *lp = get_thread_lwp (thread); |
9a3c8263 | 2712 | int *selector = (int *) data; |
6bf5e0ba PA |
2713 | |
2714 | gdb_assert (selector != NULL); | |
2715 | ||
582511be | 2716 | /* Select only resumed LWPs that have an event pending. */ |
91baf43f | 2717 | if (thread->last_status.kind == TARGET_WAITKIND_IGNORE |
8bf3b159 | 2718 | && lp->status_pending_p) |
6bf5e0ba PA |
2719 | if ((*selector)-- == 0) |
2720 | return 1; | |
2721 | ||
2722 | return 0; | |
2723 | } | |
2724 | ||
6bf5e0ba PA |
2725 | /* Select one LWP out of those that have events pending. */ |
2726 | ||
2727 | static void | |
2728 | select_event_lwp (struct lwp_info **orig_lp) | |
2729 | { | |
2730 | int num_events = 0; | |
2731 | int random_selector; | |
582511be PA |
2732 | struct thread_info *event_thread = NULL; |
2733 | ||
2734 | /* In all-stop, give preference to the LWP that is being | |
2735 | single-stepped. There will be at most one, and it's the LWP that | |
2736 | the core is most interested in. If we didn't do this, then we'd | |
2737 | have to handle pending step SIGTRAPs somehow in case the core | |
2738 | later continues the previously-stepped thread, otherwise we'd | |
2739 | report the pending SIGTRAP, and the core, not having stepped the | |
2740 | thread, wouldn't understand what the trap was for, and therefore | |
2741 | would report it to the user as a random signal. */ | |
2742 | if (!non_stop) | |
6bf5e0ba | 2743 | { |
582511be PA |
2744 | event_thread |
2745 | = (struct thread_info *) find_inferior (&all_threads, | |
2746 | select_singlestep_lwp_callback, | |
2747 | NULL); | |
2748 | if (event_thread != NULL) | |
2749 | { | |
2750 | if (debug_threads) | |
2751 | debug_printf ("SEL: Select single-step %s\n", | |
2752 | target_pid_to_str (ptid_of (event_thread))); | |
2753 | } | |
6bf5e0ba | 2754 | } |
582511be | 2755 | if (event_thread == NULL) |
6bf5e0ba PA |
2756 | { |
2757 | /* No single-stepping LWP. Select one at random, out of those | |
b90fc188 | 2758 | which have had events. */ |
6bf5e0ba | 2759 | |
b90fc188 | 2760 | /* First see how many events we have. */ |
d86d4aaf | 2761 | find_inferior (&all_threads, count_events_callback, &num_events); |
8bf3b159 | 2762 | gdb_assert (num_events > 0); |
6bf5e0ba | 2763 | |
b90fc188 PA |
2764 | /* Now randomly pick a LWP out of those that have had |
2765 | events. */ | |
6bf5e0ba PA |
2766 | random_selector = (int) |
2767 | ((num_events * (double) rand ()) / (RAND_MAX + 1.0)); | |
2768 | ||
2769 | if (debug_threads && num_events > 1) | |
87ce2a04 DE |
2770 | debug_printf ("SEL: Found %d SIGTRAP events, selecting #%d\n", |
2771 | num_events, random_selector); | |
6bf5e0ba | 2772 | |
d86d4aaf DE |
2773 | event_thread |
2774 | = (struct thread_info *) find_inferior (&all_threads, | |
2775 | select_event_lwp_callback, | |
2776 | &random_selector); | |
6bf5e0ba PA |
2777 | } |
2778 | ||
d86d4aaf | 2779 | if (event_thread != NULL) |
6bf5e0ba | 2780 | { |
d86d4aaf DE |
2781 | struct lwp_info *event_lp = get_thread_lwp (event_thread); |
2782 | ||
6bf5e0ba PA |
2783 | /* Switch the event LWP. */ |
2784 | *orig_lp = event_lp; | |
2785 | } | |
2786 | } | |
2787 | ||
7984d532 PA |
2788 | /* Decrement the suspend count of an LWP. */ |
2789 | ||
2790 | static int | |
2791 | unsuspend_one_lwp (struct inferior_list_entry *entry, void *except) | |
2792 | { | |
d86d4aaf DE |
2793 | struct thread_info *thread = (struct thread_info *) entry; |
2794 | struct lwp_info *lwp = get_thread_lwp (thread); | |
7984d532 PA |
2795 | |
2796 | /* Ignore EXCEPT. */ | |
2797 | if (lwp == except) | |
2798 | return 0; | |
2799 | ||
863d01bd | 2800 | lwp_suspended_decr (lwp); |
7984d532 PA |
2801 | return 0; |
2802 | } | |
2803 | ||
2804 | /* Decrement the suspend count of all LWPs, except EXCEPT, if non | |
2805 | NULL. */ | |
2806 | ||
2807 | static void | |
2808 | unsuspend_all_lwps (struct lwp_info *except) | |
2809 | { | |
d86d4aaf | 2810 | find_inferior (&all_threads, unsuspend_one_lwp, except); |
7984d532 PA |
2811 | } |
2812 | ||
fa593d66 PA |
2813 | static void move_out_of_jump_pad_callback (struct inferior_list_entry *entry); |
2814 | static int stuck_in_jump_pad_callback (struct inferior_list_entry *entry, | |
2815 | void *data); | |
2816 | static int lwp_running (struct inferior_list_entry *entry, void *data); | |
2817 | static ptid_t linux_wait_1 (ptid_t ptid, | |
2818 | struct target_waitstatus *ourstatus, | |
2819 | int target_options); | |
2820 | ||
2821 | /* Stabilize threads (move out of jump pads). | |
2822 | ||
2823 | If a thread is midway collecting a fast tracepoint, we need to | |
2824 | finish the collection and move it out of the jump pad before | |
2825 | reporting the signal. | |
2826 | ||
2827 | This avoids recursion while collecting (when a signal arrives | |
2828 | midway, and the signal handler itself collects), which would trash | |
2829 | the trace buffer. In case the user set a breakpoint in a signal | |
2830 | handler, this avoids the backtrace showing the jump pad, etc.. | |
2831 | Most importantly, there are certain things we can't do safely if | |
2832 | threads are stopped in a jump pad (or in its callee's). For | |
2833 | example: | |
2834 | ||
2835 | - starting a new trace run. A thread still collecting the | |
2836 | previous run, could trash the trace buffer when resumed. The trace | |
2837 | buffer control structures would have been reset but the thread had | |
2838 | no way to tell. The thread could even midway memcpy'ing to the | |
2839 | buffer, which would mean that when resumed, it would clobber the | |
2840 | trace buffer that had been set for a new run. | |
2841 | ||
2842 | - we can't rewrite/reuse the jump pads for new tracepoints | |
2843 | safely. Say you do tstart while a thread is stopped midway while | |
2844 | collecting. When the thread is later resumed, it finishes the | |
2845 | collection, and returns to the jump pad, to execute the original | |
2846 | instruction that was under the tracepoint jump at the time the | |
2847 | older run had been started. If the jump pad had been rewritten | |
2848 | since for something else in the new run, the thread would now | |
2849 | execute the wrong / random instructions. */ | |
2850 | ||
2851 | static void | |
2852 | linux_stabilize_threads (void) | |
2853 | { | |
0bfdf32f | 2854 | struct thread_info *saved_thread; |
d86d4aaf | 2855 | struct thread_info *thread_stuck; |
fa593d66 | 2856 | |
d86d4aaf DE |
2857 | thread_stuck |
2858 | = (struct thread_info *) find_inferior (&all_threads, | |
2859 | stuck_in_jump_pad_callback, | |
2860 | NULL); | |
2861 | if (thread_stuck != NULL) | |
fa593d66 | 2862 | { |
b4d51a55 | 2863 | if (debug_threads) |
87ce2a04 | 2864 | debug_printf ("can't stabilize, LWP %ld is stuck in jump pad\n", |
d86d4aaf | 2865 | lwpid_of (thread_stuck)); |
fa593d66 PA |
2866 | return; |
2867 | } | |
2868 | ||
0bfdf32f | 2869 | saved_thread = current_thread; |
fa593d66 PA |
2870 | |
2871 | stabilizing_threads = 1; | |
2872 | ||
2873 | /* Kick 'em all. */ | |
d86d4aaf | 2874 | for_each_inferior (&all_threads, move_out_of_jump_pad_callback); |
fa593d66 PA |
2875 | |
2876 | /* Loop until all are stopped out of the jump pads. */ | |
d86d4aaf | 2877 | while (find_inferior (&all_threads, lwp_running, NULL) != NULL) |
fa593d66 PA |
2878 | { |
2879 | struct target_waitstatus ourstatus; | |
2880 | struct lwp_info *lwp; | |
fa593d66 PA |
2881 | int wstat; |
2882 | ||
2883 | /* Note that we go through the full wait even loop. While | |
2884 | moving threads out of jump pad, we need to be able to step | |
2885 | over internal breakpoints and such. */ | |
32fcada3 | 2886 | linux_wait_1 (minus_one_ptid, &ourstatus, 0); |
fa593d66 PA |
2887 | |
2888 | if (ourstatus.kind == TARGET_WAITKIND_STOPPED) | |
2889 | { | |
0bfdf32f | 2890 | lwp = get_thread_lwp (current_thread); |
fa593d66 PA |
2891 | |
2892 | /* Lock it. */ | |
863d01bd | 2893 | lwp_suspended_inc (lwp); |
fa593d66 | 2894 | |
a493e3e2 | 2895 | if (ourstatus.value.sig != GDB_SIGNAL_0 |
0bfdf32f | 2896 | || current_thread->last_resume_kind == resume_stop) |
fa593d66 | 2897 | { |
2ea28649 | 2898 | wstat = W_STOPCODE (gdb_signal_to_host (ourstatus.value.sig)); |
fa593d66 PA |
2899 | enqueue_one_deferred_signal (lwp, &wstat); |
2900 | } | |
2901 | } | |
2902 | } | |
2903 | ||
d86d4aaf | 2904 | find_inferior (&all_threads, unsuspend_one_lwp, NULL); |
fa593d66 PA |
2905 | |
2906 | stabilizing_threads = 0; | |
2907 | ||
0bfdf32f | 2908 | current_thread = saved_thread; |
fa593d66 | 2909 | |
b4d51a55 | 2910 | if (debug_threads) |
fa593d66 | 2911 | { |
d86d4aaf DE |
2912 | thread_stuck |
2913 | = (struct thread_info *) find_inferior (&all_threads, | |
2914 | stuck_in_jump_pad_callback, | |
2915 | NULL); | |
2916 | if (thread_stuck != NULL) | |
87ce2a04 | 2917 | debug_printf ("couldn't stabilize, LWP %ld got stuck in jump pad\n", |
d86d4aaf | 2918 | lwpid_of (thread_stuck)); |
fa593d66 PA |
2919 | } |
2920 | } | |
2921 | ||
582511be PA |
2922 | /* Convenience function that is called when the kernel reports an |
2923 | event that is not passed out to GDB. */ | |
2924 | ||
2925 | static ptid_t | |
2926 | ignore_event (struct target_waitstatus *ourstatus) | |
2927 | { | |
2928 | /* If we got an event, there may still be others, as a single | |
2929 | SIGCHLD can indicate more than one child stopped. This forces | |
2930 | another target_wait call. */ | |
2931 | async_file_mark (); | |
2932 | ||
2933 | ourstatus->kind = TARGET_WAITKIND_IGNORE; | |
2934 | return null_ptid; | |
2935 | } | |
2936 | ||
65706a29 PA |
2937 | /* Convenience function that is called when the kernel reports an exit |
2938 | event. This decides whether to report the event to GDB as a | |
2939 | process exit event, a thread exit event, or to suppress the | |
2940 | event. */ | |
2941 | ||
2942 | static ptid_t | |
2943 | filter_exit_event (struct lwp_info *event_child, | |
2944 | struct target_waitstatus *ourstatus) | |
2945 | { | |
2946 | struct thread_info *thread = get_lwp_thread (event_child); | |
2947 | ptid_t ptid = ptid_of (thread); | |
2948 | ||
2949 | if (!last_thread_of_process_p (pid_of (thread))) | |
2950 | { | |
2951 | if (report_thread_events) | |
2952 | ourstatus->kind = TARGET_WAITKIND_THREAD_EXITED; | |
2953 | else | |
2954 | ourstatus->kind = TARGET_WAITKIND_IGNORE; | |
2955 | ||
2956 | delete_lwp (event_child); | |
2957 | } | |
2958 | return ptid; | |
2959 | } | |
2960 | ||
0d62e5e8 | 2961 | /* Wait for process, returns status. */ |
da6d8c04 | 2962 | |
95954743 PA |
2963 | static ptid_t |
2964 | linux_wait_1 (ptid_t ptid, | |
2965 | struct target_waitstatus *ourstatus, int target_options) | |
da6d8c04 | 2966 | { |
e5f1222d | 2967 | int w; |
fc7238bb | 2968 | struct lwp_info *event_child; |
bd99dc85 | 2969 | int options; |
bd99dc85 | 2970 | int pid; |
6bf5e0ba PA |
2971 | int step_over_finished; |
2972 | int bp_explains_trap; | |
2973 | int maybe_internal_trap; | |
2974 | int report_to_gdb; | |
219f2f23 | 2975 | int trace_event; |
c2d6af84 | 2976 | int in_step_range; |
f2faf941 | 2977 | int any_resumed; |
bd99dc85 | 2978 | |
87ce2a04 DE |
2979 | if (debug_threads) |
2980 | { | |
2981 | debug_enter (); | |
2982 | debug_printf ("linux_wait_1: [%s]\n", target_pid_to_str (ptid)); | |
2983 | } | |
2984 | ||
bd99dc85 PA |
2985 | /* Translate generic target options into linux options. */ |
2986 | options = __WALL; | |
2987 | if (target_options & TARGET_WNOHANG) | |
2988 | options |= WNOHANG; | |
0d62e5e8 | 2989 | |
fa593d66 PA |
2990 | bp_explains_trap = 0; |
2991 | trace_event = 0; | |
c2d6af84 | 2992 | in_step_range = 0; |
bd99dc85 PA |
2993 | ourstatus->kind = TARGET_WAITKIND_IGNORE; |
2994 | ||
f2faf941 PA |
2995 | /* Find a resumed LWP, if any. */ |
2996 | if (find_inferior (&all_threads, | |
2997 | status_pending_p_callback, | |
2998 | &minus_one_ptid) != NULL) | |
2999 | any_resumed = 1; | |
3000 | else if ((find_inferior (&all_threads, | |
3001 | not_stopped_callback, | |
3002 | &minus_one_ptid) != NULL)) | |
3003 | any_resumed = 1; | |
3004 | else | |
3005 | any_resumed = 0; | |
3006 | ||
6bf5e0ba PA |
3007 | if (ptid_equal (step_over_bkpt, null_ptid)) |
3008 | pid = linux_wait_for_event (ptid, &w, options); | |
3009 | else | |
3010 | { | |
3011 | if (debug_threads) | |
87ce2a04 DE |
3012 | debug_printf ("step_over_bkpt set [%s], doing a blocking wait\n", |
3013 | target_pid_to_str (step_over_bkpt)); | |
6bf5e0ba PA |
3014 | pid = linux_wait_for_event (step_over_bkpt, &w, options & ~WNOHANG); |
3015 | } | |
3016 | ||
f2faf941 | 3017 | if (pid == 0 || (pid == -1 && !any_resumed)) |
87ce2a04 | 3018 | { |
fa96cb38 PA |
3019 | gdb_assert (target_options & TARGET_WNOHANG); |
3020 | ||
87ce2a04 DE |
3021 | if (debug_threads) |
3022 | { | |
fa96cb38 PA |
3023 | debug_printf ("linux_wait_1 ret = null_ptid, " |
3024 | "TARGET_WAITKIND_IGNORE\n"); | |
87ce2a04 DE |
3025 | debug_exit (); |
3026 | } | |
fa96cb38 PA |
3027 | |
3028 | ourstatus->kind = TARGET_WAITKIND_IGNORE; | |
87ce2a04 DE |
3029 | return null_ptid; |
3030 | } | |
fa96cb38 PA |
3031 | else if (pid == -1) |
3032 | { | |
3033 | if (debug_threads) | |
3034 | { | |
3035 | debug_printf ("linux_wait_1 ret = null_ptid, " | |
3036 | "TARGET_WAITKIND_NO_RESUMED\n"); | |
3037 | debug_exit (); | |
3038 | } | |
bd99dc85 | 3039 | |
fa96cb38 PA |
3040 | ourstatus->kind = TARGET_WAITKIND_NO_RESUMED; |
3041 | return null_ptid; | |
3042 | } | |
0d62e5e8 | 3043 | |
0bfdf32f | 3044 | event_child = get_thread_lwp (current_thread); |
0d62e5e8 | 3045 | |
fa96cb38 PA |
3046 | /* linux_wait_for_event only returns an exit status for the last |
3047 | child of a process. Report it. */ | |
3048 | if (WIFEXITED (w) || WIFSIGNALED (w)) | |
da6d8c04 | 3049 | { |
fa96cb38 | 3050 | if (WIFEXITED (w)) |
0d62e5e8 | 3051 | { |
fa96cb38 PA |
3052 | ourstatus->kind = TARGET_WAITKIND_EXITED; |
3053 | ourstatus->value.integer = WEXITSTATUS (w); | |
bd99dc85 | 3054 | |
fa96cb38 | 3055 | if (debug_threads) |
bd99dc85 | 3056 | { |
fa96cb38 PA |
3057 | debug_printf ("linux_wait_1 ret = %s, exited with " |
3058 | "retcode %d\n", | |
0bfdf32f | 3059 | target_pid_to_str (ptid_of (current_thread)), |
fa96cb38 PA |
3060 | WEXITSTATUS (w)); |
3061 | debug_exit (); | |
bd99dc85 | 3062 | } |
fa96cb38 PA |
3063 | } |
3064 | else | |
3065 | { | |
3066 | ourstatus->kind = TARGET_WAITKIND_SIGNALLED; | |
3067 | ourstatus->value.sig = gdb_signal_from_host (WTERMSIG (w)); | |
5b1c542e | 3068 | |
fa96cb38 PA |
3069 | if (debug_threads) |
3070 | { | |
3071 | debug_printf ("linux_wait_1 ret = %s, terminated with " | |
3072 | "signal %d\n", | |
0bfdf32f | 3073 | target_pid_to_str (ptid_of (current_thread)), |
fa96cb38 PA |
3074 | WTERMSIG (w)); |
3075 | debug_exit (); | |
3076 | } | |
0d62e5e8 | 3077 | } |
fa96cb38 | 3078 | |
65706a29 PA |
3079 | if (ourstatus->kind == TARGET_WAITKIND_EXITED) |
3080 | return filter_exit_event (event_child, ourstatus); | |
3081 | ||
0bfdf32f | 3082 | return ptid_of (current_thread); |
da6d8c04 DJ |
3083 | } |
3084 | ||
2d97cd35 AT |
3085 | /* If step-over executes a breakpoint instruction, in the case of a |
3086 | hardware single step it means a gdb/gdbserver breakpoint had been | |
3087 | planted on top of a permanent breakpoint, in the case of a software | |
3088 | single step it may just mean that gdbserver hit the reinsert breakpoint. | |
3089 | The PC has been adjusted by check_stopped_by_breakpoint to point at | |
3090 | the breakpoint address. | |
3091 | So in the case of the hardware single step advance the PC manually | |
3092 | past the breakpoint and in the case of software single step advance only | |
3093 | if it's not the reinsert_breakpoint we are hitting. | |
3094 | This avoids that a program would keep trapping a permanent breakpoint | |
3095 | forever. */ | |
8090aef2 | 3096 | if (!ptid_equal (step_over_bkpt, null_ptid) |
2d97cd35 AT |
3097 | && event_child->stop_reason == TARGET_STOPPED_BY_SW_BREAKPOINT |
3098 | && (event_child->stepping | |
3099 | || !reinsert_breakpoint_inserted_here (event_child->stop_pc))) | |
8090aef2 | 3100 | { |
dd373349 AT |
3101 | int increment_pc = 0; |
3102 | int breakpoint_kind = 0; | |
3103 | CORE_ADDR stop_pc = event_child->stop_pc; | |
3104 | ||
769ef81f AT |
3105 | breakpoint_kind = |
3106 | the_target->breakpoint_kind_from_current_state (&stop_pc); | |
dd373349 | 3107 | the_target->sw_breakpoint_from_kind (breakpoint_kind, &increment_pc); |
8090aef2 PA |
3108 | |
3109 | if (debug_threads) | |
3110 | { | |
3111 | debug_printf ("step-over for %s executed software breakpoint\n", | |
3112 | target_pid_to_str (ptid_of (current_thread))); | |
3113 | } | |
3114 | ||
3115 | if (increment_pc != 0) | |
3116 | { | |
3117 | struct regcache *regcache | |
3118 | = get_thread_regcache (current_thread, 1); | |
3119 | ||
3120 | event_child->stop_pc += increment_pc; | |
3121 | (*the_low_target.set_pc) (regcache, event_child->stop_pc); | |
3122 | ||
3123 | if (!(*the_low_target.breakpoint_at) (event_child->stop_pc)) | |
15c66dd6 | 3124 | event_child->stop_reason = TARGET_STOPPED_BY_NO_REASON; |
8090aef2 PA |
3125 | } |
3126 | } | |
3127 | ||
6bf5e0ba PA |
3128 | /* If this event was not handled before, and is not a SIGTRAP, we |
3129 | report it. SIGILL and SIGSEGV are also treated as traps in case | |
3130 | a breakpoint is inserted at the current PC. If this target does | |
3131 | not support internal breakpoints at all, we also report the | |
3132 | SIGTRAP without further processing; it's of no concern to us. */ | |
3133 | maybe_internal_trap | |
3134 | = (supports_breakpoints () | |
3135 | && (WSTOPSIG (w) == SIGTRAP | |
3136 | || ((WSTOPSIG (w) == SIGILL | |
3137 | || WSTOPSIG (w) == SIGSEGV) | |
3138 | && (*the_low_target.breakpoint_at) (event_child->stop_pc)))); | |
3139 | ||
3140 | if (maybe_internal_trap) | |
3141 | { | |
3142 | /* Handle anything that requires bookkeeping before deciding to | |
3143 | report the event or continue waiting. */ | |
3144 | ||
3145 | /* First check if we can explain the SIGTRAP with an internal | |
3146 | breakpoint, or if we should possibly report the event to GDB. | |
3147 | Do this before anything that may remove or insert a | |
3148 | breakpoint. */ | |
3149 | bp_explains_trap = breakpoint_inserted_here (event_child->stop_pc); | |
3150 | ||
3151 | /* We have a SIGTRAP, possibly a step-over dance has just | |
3152 | finished. If so, tweak the state machine accordingly, | |
3153 | reinsert breakpoints and delete any reinsert (software | |
3154 | single-step) breakpoints. */ | |
3155 | step_over_finished = finish_step_over (event_child); | |
3156 | ||
3157 | /* Now invoke the callbacks of any internal breakpoints there. */ | |
3158 | check_breakpoints (event_child->stop_pc); | |
3159 | ||
219f2f23 PA |
3160 | /* Handle tracepoint data collecting. This may overflow the |
3161 | trace buffer, and cause a tracing stop, removing | |
3162 | breakpoints. */ | |
3163 | trace_event = handle_tracepoints (event_child); | |
3164 | ||
6bf5e0ba PA |
3165 | if (bp_explains_trap) |
3166 | { | |
3167 | /* If we stepped or ran into an internal breakpoint, we've | |
3168 | already handled it. So next time we resume (from this | |
3169 | PC), we should step over it. */ | |
3170 | if (debug_threads) | |
87ce2a04 | 3171 | debug_printf ("Hit a gdbserver breakpoint.\n"); |
6bf5e0ba | 3172 | |
8b07ae33 PA |
3173 | if (breakpoint_here (event_child->stop_pc)) |
3174 | event_child->need_step_over = 1; | |
6bf5e0ba PA |
3175 | } |
3176 | } | |
3177 | else | |
3178 | { | |
3179 | /* We have some other signal, possibly a step-over dance was in | |
3180 | progress, and it should be cancelled too. */ | |
3181 | step_over_finished = finish_step_over (event_child); | |
fa593d66 PA |
3182 | } |
3183 | ||
3184 | /* We have all the data we need. Either report the event to GDB, or | |
3185 | resume threads and keep waiting for more. */ | |
3186 | ||
3187 | /* If we're collecting a fast tracepoint, finish the collection and | |
3188 | move out of the jump pad before delivering a signal. See | |
3189 | linux_stabilize_threads. */ | |
3190 | ||
3191 | if (WIFSTOPPED (w) | |
3192 | && WSTOPSIG (w) != SIGTRAP | |
3193 | && supports_fast_tracepoints () | |
58b4daa5 | 3194 | && agent_loaded_p ()) |
fa593d66 PA |
3195 | { |
3196 | if (debug_threads) | |
87ce2a04 DE |
3197 | debug_printf ("Got signal %d for LWP %ld. Check if we need " |
3198 | "to defer or adjust it.\n", | |
0bfdf32f | 3199 | WSTOPSIG (w), lwpid_of (current_thread)); |
fa593d66 PA |
3200 | |
3201 | /* Allow debugging the jump pad itself. */ | |
0bfdf32f | 3202 | if (current_thread->last_resume_kind != resume_step |
fa593d66 PA |
3203 | && maybe_move_out_of_jump_pad (event_child, &w)) |
3204 | { | |
3205 | enqueue_one_deferred_signal (event_child, &w); | |
3206 | ||
3207 | if (debug_threads) | |
87ce2a04 | 3208 | debug_printf ("Signal %d for LWP %ld deferred (in jump pad)\n", |
0bfdf32f | 3209 | WSTOPSIG (w), lwpid_of (current_thread)); |
fa593d66 PA |
3210 | |
3211 | linux_resume_one_lwp (event_child, 0, 0, NULL); | |
582511be PA |
3212 | |
3213 | return ignore_event (ourstatus); | |
fa593d66 PA |
3214 | } |
3215 | } | |
219f2f23 | 3216 | |
fa593d66 PA |
3217 | if (event_child->collecting_fast_tracepoint) |
3218 | { | |
3219 | if (debug_threads) | |
87ce2a04 DE |
3220 | debug_printf ("LWP %ld was trying to move out of the jump pad (%d). " |
3221 | "Check if we're already there.\n", | |
0bfdf32f | 3222 | lwpid_of (current_thread), |
87ce2a04 | 3223 | event_child->collecting_fast_tracepoint); |
fa593d66 PA |
3224 | |
3225 | trace_event = 1; | |
3226 | ||
3227 | event_child->collecting_fast_tracepoint | |
3228 | = linux_fast_tracepoint_collecting (event_child, NULL); | |
3229 | ||
3230 | if (event_child->collecting_fast_tracepoint != 1) | |
3231 | { | |
3232 | /* No longer need this breakpoint. */ | |
3233 | if (event_child->exit_jump_pad_bkpt != NULL) | |
3234 | { | |
3235 | if (debug_threads) | |
87ce2a04 DE |
3236 | debug_printf ("No longer need exit-jump-pad bkpt; removing it." |
3237 | "stopping all threads momentarily.\n"); | |
fa593d66 PA |
3238 | |
3239 | /* Other running threads could hit this breakpoint. | |
3240 | We don't handle moribund locations like GDB does, | |
3241 | instead we always pause all threads when removing | |
3242 | breakpoints, so that any step-over or | |
3243 | decr_pc_after_break adjustment is always taken | |
3244 | care of while the breakpoint is still | |
3245 | inserted. */ | |
3246 | stop_all_lwps (1, event_child); | |
fa593d66 PA |
3247 | |
3248 | delete_breakpoint (event_child->exit_jump_pad_bkpt); | |
3249 | event_child->exit_jump_pad_bkpt = NULL; | |
3250 | ||
3251 | unstop_all_lwps (1, event_child); | |
3252 | ||
3253 | gdb_assert (event_child->suspended >= 0); | |
3254 | } | |
3255 | } | |
3256 | ||
3257 | if (event_child->collecting_fast_tracepoint == 0) | |
3258 | { | |
3259 | if (debug_threads) | |
87ce2a04 DE |
3260 | debug_printf ("fast tracepoint finished " |
3261 | "collecting successfully.\n"); | |
fa593d66 PA |
3262 | |
3263 | /* We may have a deferred signal to report. */ | |
3264 | if (dequeue_one_deferred_signal (event_child, &w)) | |
3265 | { | |
3266 | if (debug_threads) | |
87ce2a04 | 3267 | debug_printf ("dequeued one signal.\n"); |
fa593d66 | 3268 | } |
3c11dd79 | 3269 | else |
fa593d66 | 3270 | { |
3c11dd79 | 3271 | if (debug_threads) |
87ce2a04 | 3272 | debug_printf ("no deferred signals.\n"); |
fa593d66 PA |
3273 | |
3274 | if (stabilizing_threads) | |
3275 | { | |
3276 | ourstatus->kind = TARGET_WAITKIND_STOPPED; | |
a493e3e2 | 3277 | ourstatus->value.sig = GDB_SIGNAL_0; |
87ce2a04 DE |
3278 | |
3279 | if (debug_threads) | |
3280 | { | |
3281 | debug_printf ("linux_wait_1 ret = %s, stopped " | |
3282 | "while stabilizing threads\n", | |
0bfdf32f | 3283 | target_pid_to_str (ptid_of (current_thread))); |
87ce2a04 DE |
3284 | debug_exit (); |
3285 | } | |
3286 | ||
0bfdf32f | 3287 | return ptid_of (current_thread); |
fa593d66 PA |
3288 | } |
3289 | } | |
3290 | } | |
6bf5e0ba PA |
3291 | } |
3292 | ||
e471f25b PA |
3293 | /* Check whether GDB would be interested in this event. */ |
3294 | ||
3295 | /* If GDB is not interested in this signal, don't stop other | |
3296 | threads, and don't report it to GDB. Just resume the inferior | |
3297 | right away. We do this for threading-related signals as well as | |
3298 | any that GDB specifically requested we ignore. But never ignore | |
3299 | SIGSTOP if we sent it ourselves, and do not ignore signals when | |
3300 | stepping - they may require special handling to skip the signal | |
c9587f88 AT |
3301 | handler. Also never ignore signals that could be caused by a |
3302 | breakpoint. */ | |
e471f25b PA |
3303 | /* FIXME drow/2002-06-09: Get signal numbers from the inferior's |
3304 | thread library? */ | |
3305 | if (WIFSTOPPED (w) | |
0bfdf32f | 3306 | && current_thread->last_resume_kind != resume_step |
e471f25b | 3307 | && ( |
1a981360 | 3308 | #if defined (USE_THREAD_DB) && !defined (__ANDROID__) |
fe978cb0 | 3309 | (current_process ()->priv->thread_db != NULL |
e471f25b PA |
3310 | && (WSTOPSIG (w) == __SIGRTMIN |
3311 | || WSTOPSIG (w) == __SIGRTMIN + 1)) | |
3312 | || | |
3313 | #endif | |
2ea28649 | 3314 | (pass_signals[gdb_signal_from_host (WSTOPSIG (w))] |
e471f25b | 3315 | && !(WSTOPSIG (w) == SIGSTOP |
c9587f88 AT |
3316 | && current_thread->last_resume_kind == resume_stop) |
3317 | && !linux_wstatus_maybe_breakpoint (w)))) | |
e471f25b PA |
3318 | { |
3319 | siginfo_t info, *info_p; | |
3320 | ||
3321 | if (debug_threads) | |
87ce2a04 | 3322 | debug_printf ("Ignored signal %d for LWP %ld.\n", |
0bfdf32f | 3323 | WSTOPSIG (w), lwpid_of (current_thread)); |
e471f25b | 3324 | |
0bfdf32f | 3325 | if (ptrace (PTRACE_GETSIGINFO, lwpid_of (current_thread), |
b8e1b30e | 3326 | (PTRACE_TYPE_ARG3) 0, &info) == 0) |
e471f25b PA |
3327 | info_p = &info; |
3328 | else | |
3329 | info_p = NULL; | |
863d01bd PA |
3330 | |
3331 | if (step_over_finished) | |
3332 | { | |
3333 | /* We cancelled this thread's step-over above. We still | |
3334 | need to unsuspend all other LWPs, and set them back | |
3335 | running again while the signal handler runs. */ | |
3336 | unsuspend_all_lwps (event_child); | |
3337 | ||
3338 | /* Enqueue the pending signal info so that proceed_all_lwps | |
3339 | doesn't lose it. */ | |
3340 | enqueue_pending_signal (event_child, WSTOPSIG (w), info_p); | |
3341 | ||
3342 | proceed_all_lwps (); | |
3343 | } | |
3344 | else | |
3345 | { | |
3346 | linux_resume_one_lwp (event_child, event_child->stepping, | |
3347 | WSTOPSIG (w), info_p); | |
3348 | } | |
582511be | 3349 | return ignore_event (ourstatus); |
e471f25b PA |
3350 | } |
3351 | ||
c2d6af84 PA |
3352 | /* Note that all addresses are always "out of the step range" when |
3353 | there's no range to begin with. */ | |
3354 | in_step_range = lwp_in_step_range (event_child); | |
3355 | ||
3356 | /* If GDB wanted this thread to single step, and the thread is out | |
3357 | of the step range, we always want to report the SIGTRAP, and let | |
3358 | GDB handle it. Watchpoints should always be reported. So should | |
3359 | signals we can't explain. A SIGTRAP we can't explain could be a | |
3360 | GDB breakpoint --- we may or not support Z0 breakpoints. If we | |
3361 | do, we're be able to handle GDB breakpoints on top of internal | |
3362 | breakpoints, by handling the internal breakpoint and still | |
3363 | reporting the event to GDB. If we don't, we're out of luck, GDB | |
863d01bd PA |
3364 | won't see the breakpoint hit. If we see a single-step event but |
3365 | the thread should be continuing, don't pass the trap to gdb. | |
3366 | That indicates that we had previously finished a single-step but | |
3367 | left the single-step pending -- see | |
3368 | complete_ongoing_step_over. */ | |
6bf5e0ba | 3369 | report_to_gdb = (!maybe_internal_trap |
0bfdf32f | 3370 | || (current_thread->last_resume_kind == resume_step |
c2d6af84 | 3371 | && !in_step_range) |
15c66dd6 | 3372 | || event_child->stop_reason == TARGET_STOPPED_BY_WATCHPOINT |
863d01bd PA |
3373 | || (!in_step_range |
3374 | && !bp_explains_trap | |
3375 | && !trace_event | |
3376 | && !step_over_finished | |
3377 | && !(current_thread->last_resume_kind == resume_continue | |
3378 | && event_child->stop_reason == TARGET_STOPPED_BY_SINGLE_STEP)) | |
9f3a5c85 | 3379 | || (gdb_breakpoint_here (event_child->stop_pc) |
d3ce09f5 | 3380 | && gdb_condition_true_at_breakpoint (event_child->stop_pc) |
de0d863e | 3381 | && gdb_no_commands_at_breakpoint (event_child->stop_pc)) |
00db26fa | 3382 | || event_child->waitstatus.kind != TARGET_WAITKIND_IGNORE); |
d3ce09f5 SS |
3383 | |
3384 | run_breakpoint_commands (event_child->stop_pc); | |
6bf5e0ba PA |
3385 | |
3386 | /* We found no reason GDB would want us to stop. We either hit one | |
3387 | of our own breakpoints, or finished an internal step GDB | |
3388 | shouldn't know about. */ | |
3389 | if (!report_to_gdb) | |
3390 | { | |
3391 | if (debug_threads) | |
3392 | { | |
3393 | if (bp_explains_trap) | |
87ce2a04 | 3394 | debug_printf ("Hit a gdbserver breakpoint.\n"); |
6bf5e0ba | 3395 | if (step_over_finished) |
87ce2a04 | 3396 | debug_printf ("Step-over finished.\n"); |
219f2f23 | 3397 | if (trace_event) |
87ce2a04 | 3398 | debug_printf ("Tracepoint event.\n"); |
c2d6af84 | 3399 | if (lwp_in_step_range (event_child)) |
87ce2a04 DE |
3400 | debug_printf ("Range stepping pc 0x%s [0x%s, 0x%s).\n", |
3401 | paddress (event_child->stop_pc), | |
3402 | paddress (event_child->step_range_start), | |
3403 | paddress (event_child->step_range_end)); | |
6bf5e0ba PA |
3404 | } |
3405 | ||
3406 | /* We're not reporting this breakpoint to GDB, so apply the | |
3407 | decr_pc_after_break adjustment to the inferior's regcache | |
3408 | ourselves. */ | |
3409 | ||
3410 | if (the_low_target.set_pc != NULL) | |
3411 | { | |
3412 | struct regcache *regcache | |
0bfdf32f | 3413 | = get_thread_regcache (current_thread, 1); |
6bf5e0ba PA |
3414 | (*the_low_target.set_pc) (regcache, event_child->stop_pc); |
3415 | } | |
3416 | ||
7984d532 PA |
3417 | /* We may have finished stepping over a breakpoint. If so, |
3418 | we've stopped and suspended all LWPs momentarily except the | |
3419 | stepping one. This is where we resume them all again. We're | |
3420 | going to keep waiting, so use proceed, which handles stepping | |
3421 | over the next breakpoint. */ | |
6bf5e0ba | 3422 | if (debug_threads) |
87ce2a04 | 3423 | debug_printf ("proceeding all threads.\n"); |
7984d532 PA |
3424 | |
3425 | if (step_over_finished) | |
3426 | unsuspend_all_lwps (event_child); | |
3427 | ||
6bf5e0ba | 3428 | proceed_all_lwps (); |
582511be | 3429 | return ignore_event (ourstatus); |
6bf5e0ba PA |
3430 | } |
3431 | ||
3432 | if (debug_threads) | |
3433 | { | |
00db26fa | 3434 | if (event_child->waitstatus.kind != TARGET_WAITKIND_IGNORE) |
ad071a30 PA |
3435 | { |
3436 | char *str; | |
3437 | ||
3438 | str = target_waitstatus_to_string (&event_child->waitstatus); | |
3439 | debug_printf ("LWP %ld: extended event with waitstatus %s\n", | |
3440 | lwpid_of (get_lwp_thread (event_child)), str); | |
3441 | xfree (str); | |
3442 | } | |
0bfdf32f | 3443 | if (current_thread->last_resume_kind == resume_step) |
c2d6af84 PA |
3444 | { |
3445 | if (event_child->step_range_start == event_child->step_range_end) | |
87ce2a04 | 3446 | debug_printf ("GDB wanted to single-step, reporting event.\n"); |
c2d6af84 | 3447 | else if (!lwp_in_step_range (event_child)) |
87ce2a04 | 3448 | debug_printf ("Out of step range, reporting event.\n"); |
c2d6af84 | 3449 | } |
15c66dd6 | 3450 | if (event_child->stop_reason == TARGET_STOPPED_BY_WATCHPOINT) |
87ce2a04 | 3451 | debug_printf ("Stopped by watchpoint.\n"); |
582511be | 3452 | else if (gdb_breakpoint_here (event_child->stop_pc)) |
87ce2a04 | 3453 | debug_printf ("Stopped by GDB breakpoint.\n"); |
6bf5e0ba | 3454 | if (debug_threads) |
87ce2a04 | 3455 | debug_printf ("Hit a non-gdbserver trap event.\n"); |
6bf5e0ba PA |
3456 | } |
3457 | ||
3458 | /* Alright, we're going to report a stop. */ | |
3459 | ||
582511be | 3460 | if (!stabilizing_threads) |
6bf5e0ba PA |
3461 | { |
3462 | /* In all-stop, stop all threads. */ | |
582511be PA |
3463 | if (!non_stop) |
3464 | stop_all_lwps (0, NULL); | |
6bf5e0ba PA |
3465 | |
3466 | /* If we're not waiting for a specific LWP, choose an event LWP | |
3467 | from among those that have had events. Giving equal priority | |
3468 | to all LWPs that have had events helps prevent | |
3469 | starvation. */ | |
3470 | if (ptid_equal (ptid, minus_one_ptid)) | |
3471 | { | |
3472 | event_child->status_pending_p = 1; | |
3473 | event_child->status_pending = w; | |
3474 | ||
3475 | select_event_lwp (&event_child); | |
3476 | ||
0bfdf32f GB |
3477 | /* current_thread and event_child must stay in sync. */ |
3478 | current_thread = get_lwp_thread (event_child); | |
ee1e2d4f | 3479 | |
6bf5e0ba PA |
3480 | event_child->status_pending_p = 0; |
3481 | w = event_child->status_pending; | |
3482 | } | |
3483 | ||
c03e6ccc | 3484 | if (step_over_finished) |
582511be PA |
3485 | { |
3486 | if (!non_stop) | |
3487 | { | |
3488 | /* If we were doing a step-over, all other threads but | |
3489 | the stepping one had been paused in start_step_over, | |
3490 | with their suspend counts incremented. We don't want | |
3491 | to do a full unstop/unpause, because we're in | |
3492 | all-stop mode (so we want threads stopped), but we | |
3493 | still need to unsuspend the other threads, to | |
3494 | decrement their `suspended' count back. */ | |
3495 | unsuspend_all_lwps (event_child); | |
3496 | } | |
3497 | else | |
3498 | { | |
3499 | /* If we just finished a step-over, then all threads had | |
3500 | been momentarily paused. In all-stop, that's fine, | |
3501 | we want threads stopped by now anyway. In non-stop, | |
3502 | we need to re-resume threads that GDB wanted to be | |
3503 | running. */ | |
3504 | unstop_all_lwps (1, event_child); | |
3505 | } | |
3506 | } | |
c03e6ccc | 3507 | |
fa593d66 | 3508 | /* Stabilize threads (move out of jump pads). */ |
582511be PA |
3509 | if (!non_stop) |
3510 | stabilize_threads (); | |
6bf5e0ba PA |
3511 | } |
3512 | else | |
3513 | { | |
3514 | /* If we just finished a step-over, then all threads had been | |
3515 | momentarily paused. In all-stop, that's fine, we want | |
3516 | threads stopped by now anyway. In non-stop, we need to | |
3517 | re-resume threads that GDB wanted to be running. */ | |
3518 | if (step_over_finished) | |
7984d532 | 3519 | unstop_all_lwps (1, event_child); |
6bf5e0ba PA |
3520 | } |
3521 | ||
00db26fa | 3522 | if (event_child->waitstatus.kind != TARGET_WAITKIND_IGNORE) |
de0d863e | 3523 | { |
00db26fa PA |
3524 | /* If the reported event is an exit, fork, vfork or exec, let |
3525 | GDB know. */ | |
3526 | *ourstatus = event_child->waitstatus; | |
de0d863e DB |
3527 | /* Clear the event lwp's waitstatus since we handled it already. */ |
3528 | event_child->waitstatus.kind = TARGET_WAITKIND_IGNORE; | |
3529 | } | |
3530 | else | |
3531 | ourstatus->kind = TARGET_WAITKIND_STOPPED; | |
5b1c542e | 3532 | |
582511be | 3533 | /* Now that we've selected our final event LWP, un-adjust its PC if |
3e572f71 PA |
3534 | it was a software breakpoint, and the client doesn't know we can |
3535 | adjust the breakpoint ourselves. */ | |
3536 | if (event_child->stop_reason == TARGET_STOPPED_BY_SW_BREAKPOINT | |
3537 | && !swbreak_feature) | |
582511be PA |
3538 | { |
3539 | int decr_pc = the_low_target.decr_pc_after_break; | |
3540 | ||
3541 | if (decr_pc != 0) | |
3542 | { | |
3543 | struct regcache *regcache | |
3544 | = get_thread_regcache (current_thread, 1); | |
3545 | (*the_low_target.set_pc) (regcache, event_child->stop_pc + decr_pc); | |
3546 | } | |
3547 | } | |
3548 | ||
0bfdf32f | 3549 | if (current_thread->last_resume_kind == resume_stop |
8336d594 | 3550 | && WSTOPSIG (w) == SIGSTOP) |
bd99dc85 PA |
3551 | { |
3552 | /* A thread that has been requested to stop by GDB with vCont;t, | |
3553 | and it stopped cleanly, so report as SIG0. The use of | |
3554 | SIGSTOP is an implementation detail. */ | |
a493e3e2 | 3555 | ourstatus->value.sig = GDB_SIGNAL_0; |
bd99dc85 | 3556 | } |
0bfdf32f | 3557 | else if (current_thread->last_resume_kind == resume_stop |
8336d594 | 3558 | && WSTOPSIG (w) != SIGSTOP) |
bd99dc85 PA |
3559 | { |
3560 | /* A thread that has been requested to stop by GDB with vCont;t, | |
d50171e4 | 3561 | but, it stopped for other reasons. */ |
2ea28649 | 3562 | ourstatus->value.sig = gdb_signal_from_host (WSTOPSIG (w)); |
bd99dc85 | 3563 | } |
de0d863e | 3564 | else if (ourstatus->kind == TARGET_WAITKIND_STOPPED) |
bd99dc85 | 3565 | { |
2ea28649 | 3566 | ourstatus->value.sig = gdb_signal_from_host (WSTOPSIG (w)); |
bd99dc85 PA |
3567 | } |
3568 | ||
d50171e4 PA |
3569 | gdb_assert (ptid_equal (step_over_bkpt, null_ptid)); |
3570 | ||
bd99dc85 | 3571 | if (debug_threads) |
87ce2a04 DE |
3572 | { |
3573 | debug_printf ("linux_wait_1 ret = %s, %d, %d\n", | |
0bfdf32f | 3574 | target_pid_to_str (ptid_of (current_thread)), |
87ce2a04 DE |
3575 | ourstatus->kind, ourstatus->value.sig); |
3576 | debug_exit (); | |
3577 | } | |
bd99dc85 | 3578 | |
65706a29 PA |
3579 | if (ourstatus->kind == TARGET_WAITKIND_EXITED) |
3580 | return filter_exit_event (event_child, ourstatus); | |
3581 | ||
0bfdf32f | 3582 | return ptid_of (current_thread); |
bd99dc85 PA |
3583 | } |
3584 | ||
3585 | /* Get rid of any pending event in the pipe. */ | |
3586 | static void | |
3587 | async_file_flush (void) | |
3588 | { | |
3589 | int ret; | |
3590 | char buf; | |
3591 | ||
3592 | do | |
3593 | ret = read (linux_event_pipe[0], &buf, 1); | |
3594 | while (ret >= 0 || (ret == -1 && errno == EINTR)); | |
3595 | } | |
3596 | ||
3597 | /* Put something in the pipe, so the event loop wakes up. */ | |
3598 | static void | |
3599 | async_file_mark (void) | |
3600 | { | |
3601 | int ret; | |
3602 | ||
3603 | async_file_flush (); | |
3604 | ||
3605 | do | |
3606 | ret = write (linux_event_pipe[1], "+", 1); | |
3607 | while (ret == 0 || (ret == -1 && errno == EINTR)); | |
3608 | ||
3609 | /* Ignore EAGAIN. If the pipe is full, the event loop will already | |
3610 | be awakened anyway. */ | |
3611 | } | |
3612 | ||
95954743 PA |
3613 | static ptid_t |
3614 | linux_wait (ptid_t ptid, | |
3615 | struct target_waitstatus *ourstatus, int target_options) | |
bd99dc85 | 3616 | { |
95954743 | 3617 | ptid_t event_ptid; |
bd99dc85 | 3618 | |
bd99dc85 PA |
3619 | /* Flush the async file first. */ |
3620 | if (target_is_async_p ()) | |
3621 | async_file_flush (); | |
3622 | ||
582511be PA |
3623 | do |
3624 | { | |
3625 | event_ptid = linux_wait_1 (ptid, ourstatus, target_options); | |
3626 | } | |
3627 | while ((target_options & TARGET_WNOHANG) == 0 | |
3628 | && ptid_equal (event_ptid, null_ptid) | |
3629 | && ourstatus->kind == TARGET_WAITKIND_IGNORE); | |
bd99dc85 PA |
3630 | |
3631 | /* If at least one stop was reported, there may be more. A single | |
3632 | SIGCHLD can signal more than one child stop. */ | |
3633 | if (target_is_async_p () | |
3634 | && (target_options & TARGET_WNOHANG) != 0 | |
95954743 | 3635 | && !ptid_equal (event_ptid, null_ptid)) |
bd99dc85 PA |
3636 | async_file_mark (); |
3637 | ||
3638 | return event_ptid; | |
da6d8c04 DJ |
3639 | } |
3640 | ||
c5f62d5f | 3641 | /* Send a signal to an LWP. */ |
fd500816 DJ |
3642 | |
3643 | static int | |
a1928bad | 3644 | kill_lwp (unsigned long lwpid, int signo) |
fd500816 | 3645 | { |
c5f62d5f DE |
3646 | /* Use tkill, if possible, in case we are using nptl threads. If tkill |
3647 | fails, then we are not using nptl threads and we should be using kill. */ | |
fd500816 | 3648 | |
c5f62d5f DE |
3649 | #ifdef __NR_tkill |
3650 | { | |
3651 | static int tkill_failed; | |
fd500816 | 3652 | |
c5f62d5f DE |
3653 | if (!tkill_failed) |
3654 | { | |
3655 | int ret; | |
3656 | ||
3657 | errno = 0; | |
3658 | ret = syscall (__NR_tkill, lwpid, signo); | |
3659 | if (errno != ENOSYS) | |
3660 | return ret; | |
3661 | tkill_failed = 1; | |
3662 | } | |
3663 | } | |
fd500816 DJ |
3664 | #endif |
3665 | ||
3666 | return kill (lwpid, signo); | |
3667 | } | |
3668 | ||
964e4306 PA |
3669 | void |
3670 | linux_stop_lwp (struct lwp_info *lwp) | |
3671 | { | |
3672 | send_sigstop (lwp); | |
3673 | } | |
3674 | ||
0d62e5e8 | 3675 | static void |
02fc4de7 | 3676 | send_sigstop (struct lwp_info *lwp) |
0d62e5e8 | 3677 | { |
bd99dc85 | 3678 | int pid; |
0d62e5e8 | 3679 | |
d86d4aaf | 3680 | pid = lwpid_of (get_lwp_thread (lwp)); |
bd99dc85 | 3681 | |
0d62e5e8 DJ |
3682 | /* If we already have a pending stop signal for this process, don't |
3683 | send another. */ | |
54a0b537 | 3684 | if (lwp->stop_expected) |
0d62e5e8 | 3685 | { |
ae13219e | 3686 | if (debug_threads) |
87ce2a04 | 3687 | debug_printf ("Have pending sigstop for lwp %d\n", pid); |
ae13219e | 3688 | |
0d62e5e8 DJ |
3689 | return; |
3690 | } | |
3691 | ||
3692 | if (debug_threads) | |
87ce2a04 | 3693 | debug_printf ("Sending sigstop to lwp %d\n", pid); |
0d62e5e8 | 3694 | |
d50171e4 | 3695 | lwp->stop_expected = 1; |
bd99dc85 | 3696 | kill_lwp (pid, SIGSTOP); |
0d62e5e8 DJ |
3697 | } |
3698 | ||
7984d532 PA |
3699 | static int |
3700 | send_sigstop_callback (struct inferior_list_entry *entry, void *except) | |
02fc4de7 | 3701 | { |
d86d4aaf DE |
3702 | struct thread_info *thread = (struct thread_info *) entry; |
3703 | struct lwp_info *lwp = get_thread_lwp (thread); | |
02fc4de7 | 3704 | |
7984d532 PA |
3705 | /* Ignore EXCEPT. */ |
3706 | if (lwp == except) | |
3707 | return 0; | |
3708 | ||
02fc4de7 | 3709 | if (lwp->stopped) |
7984d532 | 3710 | return 0; |
02fc4de7 PA |
3711 | |
3712 | send_sigstop (lwp); | |
7984d532 PA |
3713 | return 0; |
3714 | } | |
3715 | ||
3716 | /* Increment the suspend count of an LWP, and stop it, if not stopped | |
3717 | yet. */ | |
3718 | static int | |
3719 | suspend_and_send_sigstop_callback (struct inferior_list_entry *entry, | |
3720 | void *except) | |
3721 | { | |
d86d4aaf DE |
3722 | struct thread_info *thread = (struct thread_info *) entry; |
3723 | struct lwp_info *lwp = get_thread_lwp (thread); | |
7984d532 PA |
3724 | |
3725 | /* Ignore EXCEPT. */ | |
3726 | if (lwp == except) | |
3727 | return 0; | |
3728 | ||
863d01bd | 3729 | lwp_suspended_inc (lwp); |
7984d532 PA |
3730 | |
3731 | return send_sigstop_callback (entry, except); | |
02fc4de7 PA |
3732 | } |
3733 | ||
95954743 PA |
3734 | static void |
3735 | mark_lwp_dead (struct lwp_info *lwp, int wstat) | |
3736 | { | |
95954743 PA |
3737 | /* Store the exit status for later. */ |
3738 | lwp->status_pending_p = 1; | |
3739 | lwp->status_pending = wstat; | |
3740 | ||
00db26fa PA |
3741 | /* Store in waitstatus as well, as there's nothing else to process |
3742 | for this event. */ | |
3743 | if (WIFEXITED (wstat)) | |
3744 | { | |
3745 | lwp->waitstatus.kind = TARGET_WAITKIND_EXITED; | |
3746 | lwp->waitstatus.value.integer = WEXITSTATUS (wstat); | |
3747 | } | |
3748 | else if (WIFSIGNALED (wstat)) | |
3749 | { | |
3750 | lwp->waitstatus.kind = TARGET_WAITKIND_SIGNALLED; | |
3751 | lwp->waitstatus.value.sig = gdb_signal_from_host (WTERMSIG (wstat)); | |
3752 | } | |
3753 | ||
95954743 PA |
3754 | /* Prevent trying to stop it. */ |
3755 | lwp->stopped = 1; | |
3756 | ||
3757 | /* No further stops are expected from a dead lwp. */ | |
3758 | lwp->stop_expected = 0; | |
3759 | } | |
3760 | ||
00db26fa PA |
3761 | /* Return true if LWP has exited already, and has a pending exit event |
3762 | to report to GDB. */ | |
3763 | ||
3764 | static int | |
3765 | lwp_is_marked_dead (struct lwp_info *lwp) | |
3766 | { | |
3767 | return (lwp->status_pending_p | |
3768 | && (WIFEXITED (lwp->status_pending) | |
3769 | || WIFSIGNALED (lwp->status_pending))); | |
3770 | } | |
3771 | ||
fa96cb38 PA |
3772 | /* Wait for all children to stop for the SIGSTOPs we just queued. */ |
3773 | ||
0d62e5e8 | 3774 | static void |
fa96cb38 | 3775 | wait_for_sigstop (void) |
0d62e5e8 | 3776 | { |
0bfdf32f | 3777 | struct thread_info *saved_thread; |
95954743 | 3778 | ptid_t saved_tid; |
fa96cb38 PA |
3779 | int wstat; |
3780 | int ret; | |
0d62e5e8 | 3781 | |
0bfdf32f GB |
3782 | saved_thread = current_thread; |
3783 | if (saved_thread != NULL) | |
3784 | saved_tid = saved_thread->entry.id; | |
bd99dc85 | 3785 | else |
95954743 | 3786 | saved_tid = null_ptid; /* avoid bogus unused warning */ |
bd99dc85 | 3787 | |
d50171e4 | 3788 | if (debug_threads) |
fa96cb38 | 3789 | debug_printf ("wait_for_sigstop: pulling events\n"); |
d50171e4 | 3790 | |
fa96cb38 PA |
3791 | /* Passing NULL_PTID as filter indicates we want all events to be |
3792 | left pending. Eventually this returns when there are no | |
3793 | unwaited-for children left. */ | |
3794 | ret = linux_wait_for_event_filtered (minus_one_ptid, null_ptid, | |
3795 | &wstat, __WALL); | |
3796 | gdb_assert (ret == -1); | |
0d62e5e8 | 3797 | |
0bfdf32f GB |
3798 | if (saved_thread == NULL || linux_thread_alive (saved_tid)) |
3799 | current_thread = saved_thread; | |
0d62e5e8 DJ |
3800 | else |
3801 | { | |
3802 | if (debug_threads) | |
87ce2a04 | 3803 | debug_printf ("Previously current thread died.\n"); |
0d62e5e8 | 3804 | |
f0db101d PA |
3805 | /* We can't change the current inferior behind GDB's back, |
3806 | otherwise, a subsequent command may apply to the wrong | |
3807 | process. */ | |
3808 | current_thread = NULL; | |
0d62e5e8 DJ |
3809 | } |
3810 | } | |
3811 | ||
fa593d66 PA |
3812 | /* Returns true if LWP ENTRY is stopped in a jump pad, and we can't |
3813 | move it out, because we need to report the stop event to GDB. For | |
3814 | example, if the user puts a breakpoint in the jump pad, it's | |
3815 | because she wants to debug it. */ | |
3816 | ||
3817 | static int | |
3818 | stuck_in_jump_pad_callback (struct inferior_list_entry *entry, void *data) | |
3819 | { | |
d86d4aaf DE |
3820 | struct thread_info *thread = (struct thread_info *) entry; |
3821 | struct lwp_info *lwp = get_thread_lwp (thread); | |
fa593d66 | 3822 | |
863d01bd PA |
3823 | if (lwp->suspended != 0) |
3824 | { | |
3825 | internal_error (__FILE__, __LINE__, | |
3826 | "LWP %ld is suspended, suspended=%d\n", | |
3827 | lwpid_of (thread), lwp->suspended); | |
3828 | } | |
fa593d66 PA |
3829 | gdb_assert (lwp->stopped); |
3830 | ||
3831 | /* Allow debugging the jump pad, gdb_collect, etc.. */ | |
3832 | return (supports_fast_tracepoints () | |
58b4daa5 | 3833 | && agent_loaded_p () |
fa593d66 | 3834 | && (gdb_breakpoint_here (lwp->stop_pc) |
15c66dd6 | 3835 | || lwp->stop_reason == TARGET_STOPPED_BY_WATCHPOINT |
fa593d66 PA |
3836 | || thread->last_resume_kind == resume_step) |
3837 | && linux_fast_tracepoint_collecting (lwp, NULL)); | |
3838 | } | |
3839 | ||
3840 | static void | |
3841 | move_out_of_jump_pad_callback (struct inferior_list_entry *entry) | |
3842 | { | |
d86d4aaf | 3843 | struct thread_info *thread = (struct thread_info *) entry; |
f0ce0d3a | 3844 | struct thread_info *saved_thread; |
d86d4aaf | 3845 | struct lwp_info *lwp = get_thread_lwp (thread); |
fa593d66 PA |
3846 | int *wstat; |
3847 | ||
863d01bd PA |
3848 | if (lwp->suspended != 0) |
3849 | { | |
3850 | internal_error (__FILE__, __LINE__, | |
3851 | "LWP %ld is suspended, suspended=%d\n", | |
3852 | lwpid_of (thread), lwp->suspended); | |
3853 | } | |
fa593d66 PA |
3854 | gdb_assert (lwp->stopped); |
3855 | ||
f0ce0d3a PA |
3856 | /* For gdb_breakpoint_here. */ |
3857 | saved_thread = current_thread; | |
3858 | current_thread = thread; | |
3859 | ||
fa593d66 PA |
3860 | wstat = lwp->status_pending_p ? &lwp->status_pending : NULL; |
3861 | ||
3862 | /* Allow debugging the jump pad, gdb_collect, etc. */ | |
3863 | if (!gdb_breakpoint_here (lwp->stop_pc) | |
15c66dd6 | 3864 | && lwp->stop_reason != TARGET_STOPPED_BY_WATCHPOINT |
fa593d66 PA |
3865 | && thread->last_resume_kind != resume_step |
3866 | && maybe_move_out_of_jump_pad (lwp, wstat)) | |
3867 | { | |
3868 | if (debug_threads) | |
87ce2a04 | 3869 | debug_printf ("LWP %ld needs stabilizing (in jump pad)\n", |
d86d4aaf | 3870 | lwpid_of (thread)); |
fa593d66 PA |
3871 | |
3872 | if (wstat) | |
3873 | { | |
3874 | lwp->status_pending_p = 0; | |
3875 | enqueue_one_deferred_signal (lwp, wstat); | |
3876 | ||
3877 | if (debug_threads) | |
87ce2a04 DE |
3878 | debug_printf ("Signal %d for LWP %ld deferred " |
3879 | "(in jump pad)\n", | |
d86d4aaf | 3880 | WSTOPSIG (*wstat), lwpid_of (thread)); |
fa593d66 PA |
3881 | } |
3882 | ||
3883 | linux_resume_one_lwp (lwp, 0, 0, NULL); | |
3884 | } | |
3885 | else | |
863d01bd | 3886 | lwp_suspended_inc (lwp); |
f0ce0d3a PA |
3887 | |
3888 | current_thread = saved_thread; | |
fa593d66 PA |
3889 | } |
3890 | ||
3891 | static int | |
3892 | lwp_running (struct inferior_list_entry *entry, void *data) | |
3893 | { | |
d86d4aaf DE |
3894 | struct thread_info *thread = (struct thread_info *) entry; |
3895 | struct lwp_info *lwp = get_thread_lwp (thread); | |
fa593d66 | 3896 | |
00db26fa | 3897 | if (lwp_is_marked_dead (lwp)) |
fa593d66 PA |
3898 | return 0; |
3899 | if (lwp->stopped) | |
3900 | return 0; | |
3901 | return 1; | |
3902 | } | |
3903 | ||
7984d532 PA |
3904 | /* Stop all lwps that aren't stopped yet, except EXCEPT, if not NULL. |
3905 | If SUSPEND, then also increase the suspend count of every LWP, | |
3906 | except EXCEPT. */ | |
3907 | ||
0d62e5e8 | 3908 | static void |
7984d532 | 3909 | stop_all_lwps (int suspend, struct lwp_info *except) |
0d62e5e8 | 3910 | { |
bde24c0a PA |
3911 | /* Should not be called recursively. */ |
3912 | gdb_assert (stopping_threads == NOT_STOPPING_THREADS); | |
3913 | ||
87ce2a04 DE |
3914 | if (debug_threads) |
3915 | { | |
3916 | debug_enter (); | |
3917 | debug_printf ("stop_all_lwps (%s, except=%s)\n", | |
3918 | suspend ? "stop-and-suspend" : "stop", | |
3919 | except != NULL | |
d86d4aaf | 3920 | ? target_pid_to_str (ptid_of (get_lwp_thread (except))) |
87ce2a04 DE |
3921 | : "none"); |
3922 | } | |
3923 | ||
bde24c0a PA |
3924 | stopping_threads = (suspend |
3925 | ? STOPPING_AND_SUSPENDING_THREADS | |
3926 | : STOPPING_THREADS); | |
7984d532 PA |
3927 | |
3928 | if (suspend) | |
d86d4aaf | 3929 | find_inferior (&all_threads, suspend_and_send_sigstop_callback, except); |
7984d532 | 3930 | else |
d86d4aaf | 3931 | find_inferior (&all_threads, send_sigstop_callback, except); |
fa96cb38 | 3932 | wait_for_sigstop (); |
bde24c0a | 3933 | stopping_threads = NOT_STOPPING_THREADS; |
87ce2a04 DE |
3934 | |
3935 | if (debug_threads) | |
3936 | { | |
3937 | debug_printf ("stop_all_lwps done, setting stopping_threads " | |
3938 | "back to !stopping\n"); | |
3939 | debug_exit (); | |
3940 | } | |
0d62e5e8 DJ |
3941 | } |
3942 | ||
863d01bd PA |
3943 | /* Enqueue one signal in the chain of signals which need to be |
3944 | delivered to this process on next resume. */ | |
3945 | ||
3946 | static void | |
3947 | enqueue_pending_signal (struct lwp_info *lwp, int signal, siginfo_t *info) | |
3948 | { | |
8d749320 | 3949 | struct pending_signals *p_sig = XNEW (struct pending_signals); |
863d01bd | 3950 | |
863d01bd PA |
3951 | p_sig->prev = lwp->pending_signals; |
3952 | p_sig->signal = signal; | |
3953 | if (info == NULL) | |
3954 | memset (&p_sig->info, 0, sizeof (siginfo_t)); | |
3955 | else | |
3956 | memcpy (&p_sig->info, info, sizeof (siginfo_t)); | |
3957 | lwp->pending_signals = p_sig; | |
3958 | } | |
3959 | ||
23f238d3 PA |
3960 | /* Resume execution of LWP. If STEP is nonzero, single-step it. If |
3961 | SIGNAL is nonzero, give it that signal. */ | |
da6d8c04 | 3962 | |
ce3a066d | 3963 | static void |
23f238d3 PA |
3964 | linux_resume_one_lwp_throw (struct lwp_info *lwp, |
3965 | int step, int signal, siginfo_t *info) | |
da6d8c04 | 3966 | { |
d86d4aaf | 3967 | struct thread_info *thread = get_lwp_thread (lwp); |
0bfdf32f | 3968 | struct thread_info *saved_thread; |
fa593d66 | 3969 | int fast_tp_collecting; |
c06cbd92 YQ |
3970 | struct process_info *proc = get_thread_process (thread); |
3971 | ||
3972 | /* Note that target description may not be initialised | |
3973 | (proc->tdesc == NULL) at this point because the program hasn't | |
3974 | stopped at the first instruction yet. It means GDBserver skips | |
3975 | the extra traps from the wrapper program (see option --wrapper). | |
3976 | Code in this function that requires register access should be | |
3977 | guarded by proc->tdesc == NULL or something else. */ | |
0d62e5e8 | 3978 | |
54a0b537 | 3979 | if (lwp->stopped == 0) |
0d62e5e8 DJ |
3980 | return; |
3981 | ||
65706a29 PA |
3982 | gdb_assert (lwp->waitstatus.kind == TARGET_WAITKIND_IGNORE); |
3983 | ||
fa593d66 PA |
3984 | fast_tp_collecting = lwp->collecting_fast_tracepoint; |
3985 | ||
3986 | gdb_assert (!stabilizing_threads || fast_tp_collecting); | |
3987 | ||
219f2f23 PA |
3988 | /* Cancel actions that rely on GDB not changing the PC (e.g., the |
3989 | user used the "jump" command, or "set $pc = foo"). */ | |
c06cbd92 | 3990 | if (thread->while_stepping != NULL && lwp->stop_pc != get_pc (lwp)) |
219f2f23 PA |
3991 | { |
3992 | /* Collecting 'while-stepping' actions doesn't make sense | |
3993 | anymore. */ | |
d86d4aaf | 3994 | release_while_stepping_state_list (thread); |
219f2f23 PA |
3995 | } |
3996 | ||
0d62e5e8 DJ |
3997 | /* If we have pending signals or status, and a new signal, enqueue the |
3998 | signal. Also enqueue the signal if we are waiting to reinsert a | |
3999 | breakpoint; it will be picked up again below. */ | |
4000 | if (signal != 0 | |
fa593d66 PA |
4001 | && (lwp->status_pending_p |
4002 | || lwp->pending_signals != NULL | |
4003 | || lwp->bp_reinsert != 0 | |
4004 | || fast_tp_collecting)) | |
0d62e5e8 | 4005 | { |
8d749320 SM |
4006 | struct pending_signals *p_sig = XNEW (struct pending_signals); |
4007 | ||
54a0b537 | 4008 | p_sig->prev = lwp->pending_signals; |
0d62e5e8 | 4009 | p_sig->signal = signal; |
32ca6d61 DJ |
4010 | if (info == NULL) |
4011 | memset (&p_sig->info, 0, sizeof (siginfo_t)); | |
4012 | else | |
4013 | memcpy (&p_sig->info, info, sizeof (siginfo_t)); | |
54a0b537 | 4014 | lwp->pending_signals = p_sig; |
0d62e5e8 DJ |
4015 | } |
4016 | ||
d50171e4 PA |
4017 | if (lwp->status_pending_p) |
4018 | { | |
4019 | if (debug_threads) | |
87ce2a04 DE |
4020 | debug_printf ("Not resuming lwp %ld (%s, signal %d, stop %s);" |
4021 | " has pending status\n", | |
d86d4aaf | 4022 | lwpid_of (thread), step ? "step" : "continue", signal, |
87ce2a04 | 4023 | lwp->stop_expected ? "expected" : "not expected"); |
d50171e4 PA |
4024 | return; |
4025 | } | |
0d62e5e8 | 4026 | |
0bfdf32f GB |
4027 | saved_thread = current_thread; |
4028 | current_thread = thread; | |
0d62e5e8 DJ |
4029 | |
4030 | if (debug_threads) | |
87ce2a04 | 4031 | debug_printf ("Resuming lwp %ld (%s, signal %d, stop %s)\n", |
d86d4aaf | 4032 | lwpid_of (thread), step ? "step" : "continue", signal, |
87ce2a04 | 4033 | lwp->stop_expected ? "expected" : "not expected"); |
0d62e5e8 DJ |
4034 | |
4035 | /* This bit needs some thinking about. If we get a signal that | |
4036 | we must report while a single-step reinsert is still pending, | |
4037 | we often end up resuming the thread. It might be better to | |
4038 | (ew) allow a stack of pending events; then we could be sure that | |
4039 | the reinsert happened right away and not lose any signals. | |
4040 | ||
4041 | Making this stack would also shrink the window in which breakpoints are | |
54a0b537 | 4042 | uninserted (see comment in linux_wait_for_lwp) but not enough for |
0d62e5e8 DJ |
4043 | complete correctness, so it won't solve that problem. It may be |
4044 | worthwhile just to solve this one, however. */ | |
54a0b537 | 4045 | if (lwp->bp_reinsert != 0) |
0d62e5e8 DJ |
4046 | { |
4047 | if (debug_threads) | |
87ce2a04 DE |
4048 | debug_printf (" pending reinsert at 0x%s\n", |
4049 | paddress (lwp->bp_reinsert)); | |
d50171e4 | 4050 | |
85e00e85 | 4051 | if (can_hardware_single_step ()) |
d50171e4 | 4052 | { |
fa593d66 PA |
4053 | if (fast_tp_collecting == 0) |
4054 | { | |
4055 | if (step == 0) | |
4056 | fprintf (stderr, "BAD - reinserting but not stepping.\n"); | |
4057 | if (lwp->suspended) | |
4058 | fprintf (stderr, "BAD - reinserting and suspended(%d).\n", | |
4059 | lwp->suspended); | |
4060 | } | |
d50171e4 PA |
4061 | |
4062 | step = 1; | |
4063 | } | |
0d62e5e8 DJ |
4064 | |
4065 | /* Postpone any pending signal. It was enqueued above. */ | |
4066 | signal = 0; | |
4067 | } | |
4068 | ||
fa593d66 PA |
4069 | if (fast_tp_collecting == 1) |
4070 | { | |
4071 | if (debug_threads) | |
87ce2a04 DE |
4072 | debug_printf ("lwp %ld wants to get out of fast tracepoint jump pad" |
4073 | " (exit-jump-pad-bkpt)\n", | |
d86d4aaf | 4074 | lwpid_of (thread)); |
fa593d66 PA |
4075 | |
4076 | /* Postpone any pending signal. It was enqueued above. */ | |
4077 | signal = 0; | |
4078 | } | |
4079 | else if (fast_tp_collecting == 2) | |
4080 | { | |
4081 | if (debug_threads) | |
87ce2a04 DE |
4082 | debug_printf ("lwp %ld wants to get out of fast tracepoint jump pad" |
4083 | " single-stepping\n", | |
d86d4aaf | 4084 | lwpid_of (thread)); |
fa593d66 PA |
4085 | |
4086 | if (can_hardware_single_step ()) | |
4087 | step = 1; | |
4088 | else | |
38e08fca GB |
4089 | { |
4090 | internal_error (__FILE__, __LINE__, | |
4091 | "moving out of jump pad single-stepping" | |
4092 | " not implemented on this target"); | |
4093 | } | |
fa593d66 PA |
4094 | |
4095 | /* Postpone any pending signal. It was enqueued above. */ | |
4096 | signal = 0; | |
4097 | } | |
4098 | ||
219f2f23 PA |
4099 | /* If we have while-stepping actions in this thread set it stepping. |
4100 | If we have a signal to deliver, it may or may not be set to | |
4101 | SIG_IGN, we don't know. Assume so, and allow collecting | |
4102 | while-stepping into a signal handler. A possible smart thing to | |
4103 | do would be to set an internal breakpoint at the signal return | |
4104 | address, continue, and carry on catching this while-stepping | |
4105 | action only when that breakpoint is hit. A future | |
4106 | enhancement. */ | |
d86d4aaf | 4107 | if (thread->while_stepping != NULL |
219f2f23 PA |
4108 | && can_hardware_single_step ()) |
4109 | { | |
4110 | if (debug_threads) | |
87ce2a04 | 4111 | debug_printf ("lwp %ld has a while-stepping action -> forcing step.\n", |
d86d4aaf | 4112 | lwpid_of (thread)); |
219f2f23 PA |
4113 | step = 1; |
4114 | } | |
4115 | ||
c06cbd92 | 4116 | if (proc->tdesc != NULL && the_low_target.get_pc != NULL) |
0d62e5e8 | 4117 | { |
0bfdf32f | 4118 | struct regcache *regcache = get_thread_regcache (current_thread, 1); |
582511be PA |
4119 | |
4120 | lwp->stop_pc = (*the_low_target.get_pc) (regcache); | |
4121 | ||
4122 | if (debug_threads) | |
4123 | { | |
4124 | debug_printf (" %s from pc 0x%lx\n", step ? "step" : "continue", | |
4125 | (long) lwp->stop_pc); | |
4126 | } | |
0d62e5e8 DJ |
4127 | } |
4128 | ||
fa593d66 PA |
4129 | /* If we have pending signals, consume one unless we are trying to |
4130 | reinsert a breakpoint or we're trying to finish a fast tracepoint | |
4131 | collect. */ | |
4132 | if (lwp->pending_signals != NULL | |
4133 | && lwp->bp_reinsert == 0 | |
4134 | && fast_tp_collecting == 0) | |
0d62e5e8 DJ |
4135 | { |
4136 | struct pending_signals **p_sig; | |
4137 | ||
54a0b537 | 4138 | p_sig = &lwp->pending_signals; |
0d62e5e8 DJ |
4139 | while ((*p_sig)->prev != NULL) |
4140 | p_sig = &(*p_sig)->prev; | |
4141 | ||
4142 | signal = (*p_sig)->signal; | |
32ca6d61 | 4143 | if ((*p_sig)->info.si_signo != 0) |
d86d4aaf | 4144 | ptrace (PTRACE_SETSIGINFO, lwpid_of (thread), (PTRACE_TYPE_ARG3) 0, |
56f7af9c | 4145 | &(*p_sig)->info); |
32ca6d61 | 4146 | |
0d62e5e8 DJ |
4147 | free (*p_sig); |
4148 | *p_sig = NULL; | |
4149 | } | |
4150 | ||
aa5ca48f DE |
4151 | if (the_low_target.prepare_to_resume != NULL) |
4152 | the_low_target.prepare_to_resume (lwp); | |
4153 | ||
d86d4aaf | 4154 | regcache_invalidate_thread (thread); |
da6d8c04 | 4155 | errno = 0; |
54a0b537 | 4156 | lwp->stepping = step; |
d86d4aaf | 4157 | ptrace (step ? PTRACE_SINGLESTEP : PTRACE_CONT, lwpid_of (thread), |
b8e1b30e | 4158 | (PTRACE_TYPE_ARG3) 0, |
14ce3065 DE |
4159 | /* Coerce to a uintptr_t first to avoid potential gcc warning |
4160 | of coercing an 8 byte integer to a 4 byte pointer. */ | |
b8e1b30e | 4161 | (PTRACE_TYPE_ARG4) (uintptr_t) signal); |
0d62e5e8 | 4162 | |
0bfdf32f | 4163 | current_thread = saved_thread; |
da6d8c04 | 4164 | if (errno) |
23f238d3 PA |
4165 | perror_with_name ("resuming thread"); |
4166 | ||
4167 | /* Successfully resumed. Clear state that no longer makes sense, | |
4168 | and mark the LWP as running. Must not do this before resuming | |
4169 | otherwise if that fails other code will be confused. E.g., we'd | |
4170 | later try to stop the LWP and hang forever waiting for a stop | |
4171 | status. Note that we must not throw after this is cleared, | |
4172 | otherwise handle_zombie_lwp_error would get confused. */ | |
4173 | lwp->stopped = 0; | |
4174 | lwp->stop_reason = TARGET_STOPPED_BY_NO_REASON; | |
4175 | } | |
4176 | ||
4177 | /* Called when we try to resume a stopped LWP and that errors out. If | |
4178 | the LWP is no longer in ptrace-stopped state (meaning it's zombie, | |
4179 | or about to become), discard the error, clear any pending status | |
4180 | the LWP may have, and return true (we'll collect the exit status | |
4181 | soon enough). Otherwise, return false. */ | |
4182 | ||
4183 | static int | |
4184 | check_ptrace_stopped_lwp_gone (struct lwp_info *lp) | |
4185 | { | |
4186 | struct thread_info *thread = get_lwp_thread (lp); | |
4187 | ||
4188 | /* If we get an error after resuming the LWP successfully, we'd | |
4189 | confuse !T state for the LWP being gone. */ | |
4190 | gdb_assert (lp->stopped); | |
4191 | ||
4192 | /* We can't just check whether the LWP is in 'Z (Zombie)' state, | |
4193 | because even if ptrace failed with ESRCH, the tracee may be "not | |
4194 | yet fully dead", but already refusing ptrace requests. In that | |
4195 | case the tracee has 'R (Running)' state for a little bit | |
4196 | (observed in Linux 3.18). See also the note on ESRCH in the | |
4197 | ptrace(2) man page. Instead, check whether the LWP has any state | |
4198 | other than ptrace-stopped. */ | |
4199 | ||
4200 | /* Don't assume anything if /proc/PID/status can't be read. */ | |
4201 | if (linux_proc_pid_is_trace_stopped_nowarn (lwpid_of (thread)) == 0) | |
3221518c | 4202 | { |
23f238d3 PA |
4203 | lp->stop_reason = TARGET_STOPPED_BY_NO_REASON; |
4204 | lp->status_pending_p = 0; | |
4205 | return 1; | |
4206 | } | |
4207 | return 0; | |
4208 | } | |
4209 | ||
4210 | /* Like linux_resume_one_lwp_throw, but no error is thrown if the LWP | |
4211 | disappears while we try to resume it. */ | |
3221518c | 4212 | |
23f238d3 PA |
4213 | static void |
4214 | linux_resume_one_lwp (struct lwp_info *lwp, | |
4215 | int step, int signal, siginfo_t *info) | |
4216 | { | |
4217 | TRY | |
4218 | { | |
4219 | linux_resume_one_lwp_throw (lwp, step, signal, info); | |
4220 | } | |
4221 | CATCH (ex, RETURN_MASK_ERROR) | |
4222 | { | |
4223 | if (!check_ptrace_stopped_lwp_gone (lwp)) | |
4224 | throw_exception (ex); | |
3221518c | 4225 | } |
23f238d3 | 4226 | END_CATCH |
da6d8c04 DJ |
4227 | } |
4228 | ||
2bd7c093 PA |
4229 | struct thread_resume_array |
4230 | { | |
4231 | struct thread_resume *resume; | |
4232 | size_t n; | |
4233 | }; | |
64386c31 | 4234 | |
ebcf782c DE |
4235 | /* This function is called once per thread via find_inferior. |
4236 | ARG is a pointer to a thread_resume_array struct. | |
4237 | We look up the thread specified by ENTRY in ARG, and mark the thread | |
4238 | with a pointer to the appropriate resume request. | |
5544ad89 DJ |
4239 | |
4240 | This algorithm is O(threads * resume elements), but resume elements | |
4241 | is small (and will remain small at least until GDB supports thread | |
4242 | suspension). */ | |
ebcf782c | 4243 | |
2bd7c093 PA |
4244 | static int |
4245 | linux_set_resume_request (struct inferior_list_entry *entry, void *arg) | |
0d62e5e8 | 4246 | { |
d86d4aaf DE |
4247 | struct thread_info *thread = (struct thread_info *) entry; |
4248 | struct lwp_info *lwp = get_thread_lwp (thread); | |
5544ad89 | 4249 | int ndx; |
2bd7c093 | 4250 | struct thread_resume_array *r; |
64386c31 | 4251 | |
9a3c8263 | 4252 | r = (struct thread_resume_array *) arg; |
64386c31 | 4253 | |
2bd7c093 | 4254 | for (ndx = 0; ndx < r->n; ndx++) |
95954743 PA |
4255 | { |
4256 | ptid_t ptid = r->resume[ndx].thread; | |
4257 | if (ptid_equal (ptid, minus_one_ptid) | |
4258 | || ptid_equal (ptid, entry->id) | |
0c9070b3 YQ |
4259 | /* Handle both 'pPID' and 'pPID.-1' as meaning 'all threads |
4260 | of PID'. */ | |
d86d4aaf | 4261 | || (ptid_get_pid (ptid) == pid_of (thread) |
0c9070b3 YQ |
4262 | && (ptid_is_pid (ptid) |
4263 | || ptid_get_lwp (ptid) == -1))) | |
95954743 | 4264 | { |
d50171e4 | 4265 | if (r->resume[ndx].kind == resume_stop |
8336d594 | 4266 | && thread->last_resume_kind == resume_stop) |
d50171e4 PA |
4267 | { |
4268 | if (debug_threads) | |
87ce2a04 DE |
4269 | debug_printf ("already %s LWP %ld at GDB's request\n", |
4270 | (thread->last_status.kind | |
4271 | == TARGET_WAITKIND_STOPPED) | |
4272 | ? "stopped" | |
4273 | : "stopping", | |
d86d4aaf | 4274 | lwpid_of (thread)); |
d50171e4 PA |
4275 | |
4276 | continue; | |
4277 | } | |
4278 | ||
95954743 | 4279 | lwp->resume = &r->resume[ndx]; |
8336d594 | 4280 | thread->last_resume_kind = lwp->resume->kind; |
fa593d66 | 4281 | |
c2d6af84 PA |
4282 | lwp->step_range_start = lwp->resume->step_range_start; |
4283 | lwp->step_range_end = lwp->resume->step_range_end; | |
4284 | ||
fa593d66 PA |
4285 | /* If we had a deferred signal to report, dequeue one now. |
4286 | This can happen if LWP gets more than one signal while | |
4287 | trying to get out of a jump pad. */ | |
4288 | if (lwp->stopped | |
4289 | && !lwp->status_pending_p | |
4290 | && dequeue_one_deferred_signal (lwp, &lwp->status_pending)) | |
4291 | { | |
4292 | lwp->status_pending_p = 1; | |
4293 | ||
4294 | if (debug_threads) | |
87ce2a04 DE |
4295 | debug_printf ("Dequeueing deferred signal %d for LWP %ld, " |
4296 | "leaving status pending.\n", | |
d86d4aaf DE |
4297 | WSTOPSIG (lwp->status_pending), |
4298 | lwpid_of (thread)); | |
fa593d66 PA |
4299 | } |
4300 | ||
95954743 PA |
4301 | return 0; |
4302 | } | |
4303 | } | |
2bd7c093 PA |
4304 | |
4305 | /* No resume action for this thread. */ | |
4306 | lwp->resume = NULL; | |
64386c31 | 4307 | |
2bd7c093 | 4308 | return 0; |
5544ad89 DJ |
4309 | } |
4310 | ||
20ad9378 DE |
4311 | /* find_inferior callback for linux_resume. |
4312 | Set *FLAG_P if this lwp has an interesting status pending. */ | |
5544ad89 | 4313 | |
bd99dc85 PA |
4314 | static int |
4315 | resume_status_pending_p (struct inferior_list_entry *entry, void *flag_p) | |
5544ad89 | 4316 | { |
d86d4aaf DE |
4317 | struct thread_info *thread = (struct thread_info *) entry; |
4318 | struct lwp_info *lwp = get_thread_lwp (thread); | |
5544ad89 | 4319 | |
bd99dc85 PA |
4320 | /* LWPs which will not be resumed are not interesting, because |
4321 | we might not wait for them next time through linux_wait. */ | |
2bd7c093 | 4322 | if (lwp->resume == NULL) |
bd99dc85 | 4323 | return 0; |
64386c31 | 4324 | |
582511be | 4325 | if (thread_still_has_status_pending_p (thread)) |
d50171e4 PA |
4326 | * (int *) flag_p = 1; |
4327 | ||
4328 | return 0; | |
4329 | } | |
4330 | ||
4331 | /* Return 1 if this lwp that GDB wants running is stopped at an | |
4332 | internal breakpoint that we need to step over. It assumes that any | |
4333 | required STOP_PC adjustment has already been propagated to the | |
4334 | inferior's regcache. */ | |
4335 | ||
4336 | static int | |
4337 | need_step_over_p (struct inferior_list_entry *entry, void *dummy) | |
4338 | { | |
d86d4aaf DE |
4339 | struct thread_info *thread = (struct thread_info *) entry; |
4340 | struct lwp_info *lwp = get_thread_lwp (thread); | |
0bfdf32f | 4341 | struct thread_info *saved_thread; |
d50171e4 | 4342 | CORE_ADDR pc; |
c06cbd92 YQ |
4343 | struct process_info *proc = get_thread_process (thread); |
4344 | ||
4345 | /* GDBserver is skipping the extra traps from the wrapper program, | |
4346 | don't have to do step over. */ | |
4347 | if (proc->tdesc == NULL) | |
4348 | return 0; | |
d50171e4 PA |
4349 | |
4350 | /* LWPs which will not be resumed are not interesting, because we | |
4351 | might not wait for them next time through linux_wait. */ | |
4352 | ||
4353 | if (!lwp->stopped) | |
4354 | { | |
4355 | if (debug_threads) | |
87ce2a04 | 4356 | debug_printf ("Need step over [LWP %ld]? Ignoring, not stopped\n", |
d86d4aaf | 4357 | lwpid_of (thread)); |
d50171e4 PA |
4358 | return 0; |
4359 | } | |
4360 | ||
8336d594 | 4361 | if (thread->last_resume_kind == resume_stop) |
d50171e4 PA |
4362 | { |
4363 | if (debug_threads) | |
87ce2a04 DE |
4364 | debug_printf ("Need step over [LWP %ld]? Ignoring, should remain" |
4365 | " stopped\n", | |
d86d4aaf | 4366 | lwpid_of (thread)); |
d50171e4 PA |
4367 | return 0; |
4368 | } | |
4369 | ||
7984d532 PA |
4370 | gdb_assert (lwp->suspended >= 0); |
4371 | ||
4372 | if (lwp->suspended) | |
4373 | { | |
4374 | if (debug_threads) | |
87ce2a04 | 4375 | debug_printf ("Need step over [LWP %ld]? Ignoring, suspended\n", |
d86d4aaf | 4376 | lwpid_of (thread)); |
7984d532 PA |
4377 | return 0; |
4378 | } | |
4379 | ||
d50171e4 PA |
4380 | if (!lwp->need_step_over) |
4381 | { | |
4382 | if (debug_threads) | |
d86d4aaf | 4383 | debug_printf ("Need step over [LWP %ld]? No\n", lwpid_of (thread)); |
d50171e4 | 4384 | } |
5544ad89 | 4385 | |
bd99dc85 | 4386 | if (lwp->status_pending_p) |
d50171e4 PA |
4387 | { |
4388 | if (debug_threads) | |
87ce2a04 DE |
4389 | debug_printf ("Need step over [LWP %ld]? Ignoring, has pending" |
4390 | " status.\n", | |
d86d4aaf | 4391 | lwpid_of (thread)); |
d50171e4 PA |
4392 | return 0; |
4393 | } | |
4394 | ||
4395 | /* Note: PC, not STOP_PC. Either GDB has adjusted the PC already, | |
4396 | or we have. */ | |
4397 | pc = get_pc (lwp); | |
4398 | ||
4399 | /* If the PC has changed since we stopped, then don't do anything, | |
4400 | and let the breakpoint/tracepoint be hit. This happens if, for | |
4401 | instance, GDB handled the decr_pc_after_break subtraction itself, | |
4402 | GDB is OOL stepping this thread, or the user has issued a "jump" | |
4403 | command, or poked thread's registers herself. */ | |
4404 | if (pc != lwp->stop_pc) | |
4405 | { | |
4406 | if (debug_threads) | |
87ce2a04 DE |
4407 | debug_printf ("Need step over [LWP %ld]? Cancelling, PC was changed. " |
4408 | "Old stop_pc was 0x%s, PC is now 0x%s\n", | |
d86d4aaf DE |
4409 | lwpid_of (thread), |
4410 | paddress (lwp->stop_pc), paddress (pc)); | |
d50171e4 PA |
4411 | |
4412 | lwp->need_step_over = 0; | |
4413 | return 0; | |
4414 | } | |
4415 | ||
0bfdf32f GB |
4416 | saved_thread = current_thread; |
4417 | current_thread = thread; | |
d50171e4 | 4418 | |
8b07ae33 | 4419 | /* We can only step over breakpoints we know about. */ |
fa593d66 | 4420 | if (breakpoint_here (pc) || fast_tracepoint_jump_here (pc)) |
d50171e4 | 4421 | { |
8b07ae33 | 4422 | /* Don't step over a breakpoint that GDB expects to hit |
9f3a5c85 LM |
4423 | though. If the condition is being evaluated on the target's side |
4424 | and it evaluate to false, step over this breakpoint as well. */ | |
4425 | if (gdb_breakpoint_here (pc) | |
d3ce09f5 SS |
4426 | && gdb_condition_true_at_breakpoint (pc) |
4427 | && gdb_no_commands_at_breakpoint (pc)) | |
8b07ae33 PA |
4428 | { |
4429 | if (debug_threads) | |
87ce2a04 DE |
4430 | debug_printf ("Need step over [LWP %ld]? yes, but found" |
4431 | " GDB breakpoint at 0x%s; skipping step over\n", | |
d86d4aaf | 4432 | lwpid_of (thread), paddress (pc)); |
d50171e4 | 4433 | |
0bfdf32f | 4434 | current_thread = saved_thread; |
8b07ae33 PA |
4435 | return 0; |
4436 | } | |
4437 | else | |
4438 | { | |
4439 | if (debug_threads) | |
87ce2a04 DE |
4440 | debug_printf ("Need step over [LWP %ld]? yes, " |
4441 | "found breakpoint at 0x%s\n", | |
d86d4aaf | 4442 | lwpid_of (thread), paddress (pc)); |
d50171e4 | 4443 | |
8b07ae33 PA |
4444 | /* We've found an lwp that needs stepping over --- return 1 so |
4445 | that find_inferior stops looking. */ | |
0bfdf32f | 4446 | current_thread = saved_thread; |
8b07ae33 PA |
4447 | |
4448 | /* If the step over is cancelled, this is set again. */ | |
4449 | lwp->need_step_over = 0; | |
4450 | return 1; | |
4451 | } | |
d50171e4 PA |
4452 | } |
4453 | ||
0bfdf32f | 4454 | current_thread = saved_thread; |
d50171e4 PA |
4455 | |
4456 | if (debug_threads) | |
87ce2a04 DE |
4457 | debug_printf ("Need step over [LWP %ld]? No, no breakpoint found" |
4458 | " at 0x%s\n", | |
d86d4aaf | 4459 | lwpid_of (thread), paddress (pc)); |
c6ecbae5 | 4460 | |
bd99dc85 | 4461 | return 0; |
5544ad89 DJ |
4462 | } |
4463 | ||
d50171e4 PA |
4464 | /* Start a step-over operation on LWP. When LWP stopped at a |
4465 | breakpoint, to make progress, we need to remove the breakpoint out | |
4466 | of the way. If we let other threads run while we do that, they may | |
4467 | pass by the breakpoint location and miss hitting it. To avoid | |
4468 | that, a step-over momentarily stops all threads while LWP is | |
4469 | single-stepped while the breakpoint is temporarily uninserted from | |
4470 | the inferior. When the single-step finishes, we reinsert the | |
4471 | breakpoint, and let all threads that are supposed to be running, | |
4472 | run again. | |
4473 | ||
4474 | On targets that don't support hardware single-step, we don't | |
4475 | currently support full software single-stepping. Instead, we only | |
4476 | support stepping over the thread event breakpoint, by asking the | |
4477 | low target where to place a reinsert breakpoint. Since this | |
4478 | routine assumes the breakpoint being stepped over is a thread event | |
4479 | breakpoint, it usually assumes the return address of the current | |
4480 | function is a good enough place to set the reinsert breakpoint. */ | |
4481 | ||
4482 | static int | |
4483 | start_step_over (struct lwp_info *lwp) | |
4484 | { | |
d86d4aaf | 4485 | struct thread_info *thread = get_lwp_thread (lwp); |
0bfdf32f | 4486 | struct thread_info *saved_thread; |
d50171e4 PA |
4487 | CORE_ADDR pc; |
4488 | int step; | |
4489 | ||
4490 | if (debug_threads) | |
87ce2a04 | 4491 | debug_printf ("Starting step-over on LWP %ld. Stopping all threads\n", |
d86d4aaf | 4492 | lwpid_of (thread)); |
d50171e4 | 4493 | |
7984d532 | 4494 | stop_all_lwps (1, lwp); |
863d01bd PA |
4495 | |
4496 | if (lwp->suspended != 0) | |
4497 | { | |
4498 | internal_error (__FILE__, __LINE__, | |
4499 | "LWP %ld suspended=%d\n", lwpid_of (thread), | |
4500 | lwp->suspended); | |
4501 | } | |
d50171e4 PA |
4502 | |
4503 | if (debug_threads) | |
87ce2a04 | 4504 | debug_printf ("Done stopping all threads for step-over.\n"); |
d50171e4 PA |
4505 | |
4506 | /* Note, we should always reach here with an already adjusted PC, | |
4507 | either by GDB (if we're resuming due to GDB's request), or by our | |
4508 | caller, if we just finished handling an internal breakpoint GDB | |
4509 | shouldn't care about. */ | |
4510 | pc = get_pc (lwp); | |
4511 | ||
0bfdf32f GB |
4512 | saved_thread = current_thread; |
4513 | current_thread = thread; | |
d50171e4 PA |
4514 | |
4515 | lwp->bp_reinsert = pc; | |
4516 | uninsert_breakpoints_at (pc); | |
fa593d66 | 4517 | uninsert_fast_tracepoint_jumps_at (pc); |
d50171e4 PA |
4518 | |
4519 | if (can_hardware_single_step ()) | |
4520 | { | |
4521 | step = 1; | |
4522 | } | |
7d00775e | 4523 | else if (can_software_single_step ()) |
d50171e4 PA |
4524 | { |
4525 | CORE_ADDR raddr = (*the_low_target.breakpoint_reinsert_addr) (); | |
4526 | set_reinsert_breakpoint (raddr); | |
4527 | step = 0; | |
4528 | } | |
7d00775e AT |
4529 | else |
4530 | { | |
4531 | internal_error (__FILE__, __LINE__, | |
4532 | "stepping is not implemented on this target"); | |
4533 | } | |
d50171e4 | 4534 | |
0bfdf32f | 4535 | current_thread = saved_thread; |
d50171e4 PA |
4536 | |
4537 | linux_resume_one_lwp (lwp, step, 0, NULL); | |
4538 | ||
4539 | /* Require next event from this LWP. */ | |
d86d4aaf | 4540 | step_over_bkpt = thread->entry.id; |
d50171e4 PA |
4541 | return 1; |
4542 | } | |
4543 | ||
4544 | /* Finish a step-over. Reinsert the breakpoint we had uninserted in | |
4545 | start_step_over, if still there, and delete any reinsert | |
4546 | breakpoints we've set, on non hardware single-step targets. */ | |
4547 | ||
4548 | static int | |
4549 | finish_step_over (struct lwp_info *lwp) | |
4550 | { | |
4551 | if (lwp->bp_reinsert != 0) | |
4552 | { | |
4553 | if (debug_threads) | |
87ce2a04 | 4554 | debug_printf ("Finished step over.\n"); |
d50171e4 PA |
4555 | |
4556 | /* Reinsert any breakpoint at LWP->BP_REINSERT. Note that there | |
4557 | may be no breakpoint to reinsert there by now. */ | |
4558 | reinsert_breakpoints_at (lwp->bp_reinsert); | |
fa593d66 | 4559 | reinsert_fast_tracepoint_jumps_at (lwp->bp_reinsert); |
d50171e4 PA |
4560 | |
4561 | lwp->bp_reinsert = 0; | |
4562 | ||
4563 | /* Delete any software-single-step reinsert breakpoints. No | |
4564 | longer needed. We don't have to worry about other threads | |
4565 | hitting this trap, and later not being able to explain it, | |
4566 | because we were stepping over a breakpoint, and we hold all | |
4567 | threads but LWP stopped while doing that. */ | |
4568 | if (!can_hardware_single_step ()) | |
4569 | delete_reinsert_breakpoints (); | |
4570 | ||
4571 | step_over_bkpt = null_ptid; | |
4572 | return 1; | |
4573 | } | |
4574 | else | |
4575 | return 0; | |
4576 | } | |
4577 | ||
863d01bd PA |
4578 | /* If there's a step over in progress, wait until all threads stop |
4579 | (that is, until the stepping thread finishes its step), and | |
4580 | unsuspend all lwps. The stepping thread ends with its status | |
4581 | pending, which is processed later when we get back to processing | |
4582 | events. */ | |
4583 | ||
4584 | static void | |
4585 | complete_ongoing_step_over (void) | |
4586 | { | |
4587 | if (!ptid_equal (step_over_bkpt, null_ptid)) | |
4588 | { | |
4589 | struct lwp_info *lwp; | |
4590 | int wstat; | |
4591 | int ret; | |
4592 | ||
4593 | if (debug_threads) | |
4594 | debug_printf ("detach: step over in progress, finish it first\n"); | |
4595 | ||
4596 | /* Passing NULL_PTID as filter indicates we want all events to | |
4597 | be left pending. Eventually this returns when there are no | |
4598 | unwaited-for children left. */ | |
4599 | ret = linux_wait_for_event_filtered (minus_one_ptid, null_ptid, | |
4600 | &wstat, __WALL); | |
4601 | gdb_assert (ret == -1); | |
4602 | ||
4603 | lwp = find_lwp_pid (step_over_bkpt); | |
4604 | if (lwp != NULL) | |
4605 | finish_step_over (lwp); | |
4606 | step_over_bkpt = null_ptid; | |
4607 | unsuspend_all_lwps (lwp); | |
4608 | } | |
4609 | } | |
4610 | ||
5544ad89 DJ |
4611 | /* This function is called once per thread. We check the thread's resume |
4612 | request, which will tell us whether to resume, step, or leave the thread | |
bd99dc85 | 4613 | stopped; and what signal, if any, it should be sent. |
5544ad89 | 4614 | |
bd99dc85 PA |
4615 | For threads which we aren't explicitly told otherwise, we preserve |
4616 | the stepping flag; this is used for stepping over gdbserver-placed | |
4617 | breakpoints. | |
4618 | ||
4619 | If pending_flags was set in any thread, we queue any needed | |
4620 | signals, since we won't actually resume. We already have a pending | |
4621 | event to report, so we don't need to preserve any step requests; | |
4622 | they should be re-issued if necessary. */ | |
4623 | ||
4624 | static int | |
4625 | linux_resume_one_thread (struct inferior_list_entry *entry, void *arg) | |
5544ad89 | 4626 | { |
d86d4aaf DE |
4627 | struct thread_info *thread = (struct thread_info *) entry; |
4628 | struct lwp_info *lwp = get_thread_lwp (thread); | |
bd99dc85 | 4629 | int step; |
d50171e4 PA |
4630 | int leave_all_stopped = * (int *) arg; |
4631 | int leave_pending; | |
5544ad89 | 4632 | |
2bd7c093 | 4633 | if (lwp->resume == NULL) |
bd99dc85 | 4634 | return 0; |
5544ad89 | 4635 | |
bd99dc85 | 4636 | if (lwp->resume->kind == resume_stop) |
5544ad89 | 4637 | { |
bd99dc85 | 4638 | if (debug_threads) |
d86d4aaf | 4639 | debug_printf ("resume_stop request for LWP %ld\n", lwpid_of (thread)); |
bd99dc85 PA |
4640 | |
4641 | if (!lwp->stopped) | |
4642 | { | |
4643 | if (debug_threads) | |
d86d4aaf | 4644 | debug_printf ("stopping LWP %ld\n", lwpid_of (thread)); |
bd99dc85 | 4645 | |
d50171e4 PA |
4646 | /* Stop the thread, and wait for the event asynchronously, |
4647 | through the event loop. */ | |
02fc4de7 | 4648 | send_sigstop (lwp); |
bd99dc85 PA |
4649 | } |
4650 | else | |
4651 | { | |
4652 | if (debug_threads) | |
87ce2a04 | 4653 | debug_printf ("already stopped LWP %ld\n", |
d86d4aaf | 4654 | lwpid_of (thread)); |
d50171e4 PA |
4655 | |
4656 | /* The LWP may have been stopped in an internal event that | |
4657 | was not meant to be notified back to GDB (e.g., gdbserver | |
4658 | breakpoint), so we should be reporting a stop event in | |
4659 | this case too. */ | |
4660 | ||
4661 | /* If the thread already has a pending SIGSTOP, this is a | |
4662 | no-op. Otherwise, something later will presumably resume | |
4663 | the thread and this will cause it to cancel any pending | |
4664 | operation, due to last_resume_kind == resume_stop. If | |
4665 | the thread already has a pending status to report, we | |
4666 | will still report it the next time we wait - see | |
4667 | status_pending_p_callback. */ | |
1a981360 PA |
4668 | |
4669 | /* If we already have a pending signal to report, then | |
4670 | there's no need to queue a SIGSTOP, as this means we're | |
4671 | midway through moving the LWP out of the jumppad, and we | |
4672 | will report the pending signal as soon as that is | |
4673 | finished. */ | |
4674 | if (lwp->pending_signals_to_report == NULL) | |
4675 | send_sigstop (lwp); | |
bd99dc85 | 4676 | } |
32ca6d61 | 4677 | |
bd99dc85 PA |
4678 | /* For stop requests, we're done. */ |
4679 | lwp->resume = NULL; | |
fc7238bb | 4680 | thread->last_status.kind = TARGET_WAITKIND_IGNORE; |
bd99dc85 | 4681 | return 0; |
5544ad89 DJ |
4682 | } |
4683 | ||
bd99dc85 | 4684 | /* If this thread which is about to be resumed has a pending status, |
863d01bd PA |
4685 | then don't resume it - we can just report the pending status. |
4686 | Likewise if it is suspended, because e.g., another thread is | |
4687 | stepping past a breakpoint. Make sure to queue any signals that | |
4688 | would otherwise be sent. In all-stop mode, we do this decision | |
4689 | based on if *any* thread has a pending status. If there's a | |
4690 | thread that needs the step-over-breakpoint dance, then don't | |
4691 | resume any other thread but that particular one. */ | |
4692 | leave_pending = (lwp->suspended | |
4693 | || lwp->status_pending_p | |
4694 | || leave_all_stopped); | |
5544ad89 | 4695 | |
d50171e4 | 4696 | if (!leave_pending) |
bd99dc85 PA |
4697 | { |
4698 | if (debug_threads) | |
d86d4aaf | 4699 | debug_printf ("resuming LWP %ld\n", lwpid_of (thread)); |
5544ad89 | 4700 | |
d50171e4 | 4701 | step = (lwp->resume->kind == resume_step); |
2acc282a | 4702 | linux_resume_one_lwp (lwp, step, lwp->resume->sig, NULL); |
bd99dc85 PA |
4703 | } |
4704 | else | |
4705 | { | |
4706 | if (debug_threads) | |
d86d4aaf | 4707 | debug_printf ("leaving LWP %ld stopped\n", lwpid_of (thread)); |
5544ad89 | 4708 | |
bd99dc85 PA |
4709 | /* If we have a new signal, enqueue the signal. */ |
4710 | if (lwp->resume->sig != 0) | |
4711 | { | |
8d749320 SM |
4712 | struct pending_signals *p_sig = XCNEW (struct pending_signals); |
4713 | ||
bd99dc85 PA |
4714 | p_sig->prev = lwp->pending_signals; |
4715 | p_sig->signal = lwp->resume->sig; | |
bd99dc85 PA |
4716 | |
4717 | /* If this is the same signal we were previously stopped by, | |
4718 | make sure to queue its siginfo. We can ignore the return | |
4719 | value of ptrace; if it fails, we'll skip | |
4720 | PTRACE_SETSIGINFO. */ | |
4721 | if (WIFSTOPPED (lwp->last_status) | |
4722 | && WSTOPSIG (lwp->last_status) == lwp->resume->sig) | |
d86d4aaf | 4723 | ptrace (PTRACE_GETSIGINFO, lwpid_of (thread), (PTRACE_TYPE_ARG3) 0, |
56f7af9c | 4724 | &p_sig->info); |
bd99dc85 PA |
4725 | |
4726 | lwp->pending_signals = p_sig; | |
4727 | } | |
4728 | } | |
5544ad89 | 4729 | |
fc7238bb | 4730 | thread->last_status.kind = TARGET_WAITKIND_IGNORE; |
bd99dc85 | 4731 | lwp->resume = NULL; |
5544ad89 | 4732 | return 0; |
0d62e5e8 DJ |
4733 | } |
4734 | ||
4735 | static void | |
2bd7c093 | 4736 | linux_resume (struct thread_resume *resume_info, size_t n) |
0d62e5e8 | 4737 | { |
2bd7c093 | 4738 | struct thread_resume_array array = { resume_info, n }; |
d86d4aaf | 4739 | struct thread_info *need_step_over = NULL; |
d50171e4 PA |
4740 | int any_pending; |
4741 | int leave_all_stopped; | |
c6ecbae5 | 4742 | |
87ce2a04 DE |
4743 | if (debug_threads) |
4744 | { | |
4745 | debug_enter (); | |
4746 | debug_printf ("linux_resume:\n"); | |
4747 | } | |
4748 | ||
2bd7c093 | 4749 | find_inferior (&all_threads, linux_set_resume_request, &array); |
5544ad89 | 4750 | |
d50171e4 PA |
4751 | /* If there is a thread which would otherwise be resumed, which has |
4752 | a pending status, then don't resume any threads - we can just | |
4753 | report the pending status. Make sure to queue any signals that | |
4754 | would otherwise be sent. In non-stop mode, we'll apply this | |
4755 | logic to each thread individually. We consume all pending events | |
4756 | before considering to start a step-over (in all-stop). */ | |
4757 | any_pending = 0; | |
bd99dc85 | 4758 | if (!non_stop) |
d86d4aaf | 4759 | find_inferior (&all_threads, resume_status_pending_p, &any_pending); |
d50171e4 PA |
4760 | |
4761 | /* If there is a thread which would otherwise be resumed, which is | |
4762 | stopped at a breakpoint that needs stepping over, then don't | |
4763 | resume any threads - have it step over the breakpoint with all | |
4764 | other threads stopped, then resume all threads again. Make sure | |
4765 | to queue any signals that would otherwise be delivered or | |
4766 | queued. */ | |
4767 | if (!any_pending && supports_breakpoints ()) | |
4768 | need_step_over | |
d86d4aaf DE |
4769 | = (struct thread_info *) find_inferior (&all_threads, |
4770 | need_step_over_p, NULL); | |
d50171e4 PA |
4771 | |
4772 | leave_all_stopped = (need_step_over != NULL || any_pending); | |
4773 | ||
4774 | if (debug_threads) | |
4775 | { | |
4776 | if (need_step_over != NULL) | |
87ce2a04 | 4777 | debug_printf ("Not resuming all, need step over\n"); |
d50171e4 | 4778 | else if (any_pending) |
87ce2a04 DE |
4779 | debug_printf ("Not resuming, all-stop and found " |
4780 | "an LWP with pending status\n"); | |
d50171e4 | 4781 | else |
87ce2a04 | 4782 | debug_printf ("Resuming, no pending status or step over needed\n"); |
d50171e4 PA |
4783 | } |
4784 | ||
4785 | /* Even if we're leaving threads stopped, queue all signals we'd | |
4786 | otherwise deliver. */ | |
4787 | find_inferior (&all_threads, linux_resume_one_thread, &leave_all_stopped); | |
4788 | ||
4789 | if (need_step_over) | |
d86d4aaf | 4790 | start_step_over (get_thread_lwp (need_step_over)); |
87ce2a04 DE |
4791 | |
4792 | if (debug_threads) | |
4793 | { | |
4794 | debug_printf ("linux_resume done\n"); | |
4795 | debug_exit (); | |
4796 | } | |
1bebeeca PA |
4797 | |
4798 | /* We may have events that were pending that can/should be sent to | |
4799 | the client now. Trigger a linux_wait call. */ | |
4800 | if (target_is_async_p ()) | |
4801 | async_file_mark (); | |
d50171e4 PA |
4802 | } |
4803 | ||
4804 | /* This function is called once per thread. We check the thread's | |
4805 | last resume request, which will tell us whether to resume, step, or | |
4806 | leave the thread stopped. Any signal the client requested to be | |
4807 | delivered has already been enqueued at this point. | |
4808 | ||
4809 | If any thread that GDB wants running is stopped at an internal | |
4810 | breakpoint that needs stepping over, we start a step-over operation | |
4811 | on that particular thread, and leave all others stopped. */ | |
4812 | ||
7984d532 PA |
4813 | static int |
4814 | proceed_one_lwp (struct inferior_list_entry *entry, void *except) | |
d50171e4 | 4815 | { |
d86d4aaf DE |
4816 | struct thread_info *thread = (struct thread_info *) entry; |
4817 | struct lwp_info *lwp = get_thread_lwp (thread); | |
d50171e4 PA |
4818 | int step; |
4819 | ||
7984d532 PA |
4820 | if (lwp == except) |
4821 | return 0; | |
d50171e4 PA |
4822 | |
4823 | if (debug_threads) | |
d86d4aaf | 4824 | debug_printf ("proceed_one_lwp: lwp %ld\n", lwpid_of (thread)); |
d50171e4 PA |
4825 | |
4826 | if (!lwp->stopped) | |
4827 | { | |
4828 | if (debug_threads) | |
d86d4aaf | 4829 | debug_printf (" LWP %ld already running\n", lwpid_of (thread)); |
7984d532 | 4830 | return 0; |
d50171e4 PA |
4831 | } |
4832 | ||
02fc4de7 PA |
4833 | if (thread->last_resume_kind == resume_stop |
4834 | && thread->last_status.kind != TARGET_WAITKIND_IGNORE) | |
d50171e4 PA |
4835 | { |
4836 | if (debug_threads) | |
87ce2a04 | 4837 | debug_printf (" client wants LWP to remain %ld stopped\n", |
d86d4aaf | 4838 | lwpid_of (thread)); |
7984d532 | 4839 | return 0; |
d50171e4 PA |
4840 | } |
4841 | ||
4842 | if (lwp->status_pending_p) | |
4843 | { | |
4844 | if (debug_threads) | |
87ce2a04 | 4845 | debug_printf (" LWP %ld has pending status, leaving stopped\n", |
d86d4aaf | 4846 | lwpid_of (thread)); |
7984d532 | 4847 | return 0; |
d50171e4 PA |
4848 | } |
4849 | ||
7984d532 PA |
4850 | gdb_assert (lwp->suspended >= 0); |
4851 | ||
d50171e4 PA |
4852 | if (lwp->suspended) |
4853 | { | |
4854 | if (debug_threads) | |
d86d4aaf | 4855 | debug_printf (" LWP %ld is suspended\n", lwpid_of (thread)); |
7984d532 | 4856 | return 0; |
d50171e4 PA |
4857 | } |
4858 | ||
1a981360 PA |
4859 | if (thread->last_resume_kind == resume_stop |
4860 | && lwp->pending_signals_to_report == NULL | |
4861 | && lwp->collecting_fast_tracepoint == 0) | |
02fc4de7 PA |
4862 | { |
4863 | /* We haven't reported this LWP as stopped yet (otherwise, the | |
4864 | last_status.kind check above would catch it, and we wouldn't | |
4865 | reach here. This LWP may have been momentarily paused by a | |
4866 | stop_all_lwps call while handling for example, another LWP's | |
4867 | step-over. In that case, the pending expected SIGSTOP signal | |
4868 | that was queued at vCont;t handling time will have already | |
4869 | been consumed by wait_for_sigstop, and so we need to requeue | |
4870 | another one here. Note that if the LWP already has a SIGSTOP | |
4871 | pending, this is a no-op. */ | |
4872 | ||
4873 | if (debug_threads) | |
87ce2a04 DE |
4874 | debug_printf ("Client wants LWP %ld to stop. " |
4875 | "Making sure it has a SIGSTOP pending\n", | |
d86d4aaf | 4876 | lwpid_of (thread)); |
02fc4de7 PA |
4877 | |
4878 | send_sigstop (lwp); | |
4879 | } | |
4880 | ||
863d01bd PA |
4881 | if (thread->last_resume_kind == resume_step) |
4882 | { | |
4883 | if (debug_threads) | |
4884 | debug_printf (" stepping LWP %ld, client wants it stepping\n", | |
4885 | lwpid_of (thread)); | |
4886 | step = 1; | |
4887 | } | |
4888 | else if (lwp->bp_reinsert != 0) | |
4889 | { | |
4890 | if (debug_threads) | |
4891 | debug_printf (" stepping LWP %ld, reinsert set\n", | |
4892 | lwpid_of (thread)); | |
4893 | step = 1; | |
4894 | } | |
4895 | else | |
4896 | step = 0; | |
4897 | ||
d50171e4 | 4898 | linux_resume_one_lwp (lwp, step, 0, NULL); |
7984d532 PA |
4899 | return 0; |
4900 | } | |
4901 | ||
4902 | static int | |
4903 | unsuspend_and_proceed_one_lwp (struct inferior_list_entry *entry, void *except) | |
4904 | { | |
d86d4aaf DE |
4905 | struct thread_info *thread = (struct thread_info *) entry; |
4906 | struct lwp_info *lwp = get_thread_lwp (thread); | |
7984d532 PA |
4907 | |
4908 | if (lwp == except) | |
4909 | return 0; | |
4910 | ||
863d01bd | 4911 | lwp_suspended_decr (lwp); |
7984d532 PA |
4912 | |
4913 | return proceed_one_lwp (entry, except); | |
d50171e4 PA |
4914 | } |
4915 | ||
4916 | /* When we finish a step-over, set threads running again. If there's | |
4917 | another thread that may need a step-over, now's the time to start | |
4918 | it. Eventually, we'll move all threads past their breakpoints. */ | |
4919 | ||
4920 | static void | |
4921 | proceed_all_lwps (void) | |
4922 | { | |
d86d4aaf | 4923 | struct thread_info *need_step_over; |
d50171e4 PA |
4924 | |
4925 | /* If there is a thread which would otherwise be resumed, which is | |
4926 | stopped at a breakpoint that needs stepping over, then don't | |
4927 | resume any threads - have it step over the breakpoint with all | |
4928 | other threads stopped, then resume all threads again. */ | |
4929 | ||
4930 | if (supports_breakpoints ()) | |
4931 | { | |
4932 | need_step_over | |
d86d4aaf DE |
4933 | = (struct thread_info *) find_inferior (&all_threads, |
4934 | need_step_over_p, NULL); | |
d50171e4 PA |
4935 | |
4936 | if (need_step_over != NULL) | |
4937 | { | |
4938 | if (debug_threads) | |
87ce2a04 DE |
4939 | debug_printf ("proceed_all_lwps: found " |
4940 | "thread %ld needing a step-over\n", | |
4941 | lwpid_of (need_step_over)); | |
d50171e4 | 4942 | |
d86d4aaf | 4943 | start_step_over (get_thread_lwp (need_step_over)); |
d50171e4 PA |
4944 | return; |
4945 | } | |
4946 | } | |
5544ad89 | 4947 | |
d50171e4 | 4948 | if (debug_threads) |
87ce2a04 | 4949 | debug_printf ("Proceeding, no step-over needed\n"); |
d50171e4 | 4950 | |
d86d4aaf | 4951 | find_inferior (&all_threads, proceed_one_lwp, NULL); |
d50171e4 PA |
4952 | } |
4953 | ||
4954 | /* Stopped LWPs that the client wanted to be running, that don't have | |
4955 | pending statuses, are set to run again, except for EXCEPT, if not | |
4956 | NULL. This undoes a stop_all_lwps call. */ | |
4957 | ||
4958 | static void | |
7984d532 | 4959 | unstop_all_lwps (int unsuspend, struct lwp_info *except) |
d50171e4 | 4960 | { |
5544ad89 DJ |
4961 | if (debug_threads) |
4962 | { | |
87ce2a04 | 4963 | debug_enter (); |
d50171e4 | 4964 | if (except) |
87ce2a04 | 4965 | debug_printf ("unstopping all lwps, except=(LWP %ld)\n", |
d86d4aaf | 4966 | lwpid_of (get_lwp_thread (except))); |
5544ad89 | 4967 | else |
87ce2a04 | 4968 | debug_printf ("unstopping all lwps\n"); |
5544ad89 DJ |
4969 | } |
4970 | ||
7984d532 | 4971 | if (unsuspend) |
d86d4aaf | 4972 | find_inferior (&all_threads, unsuspend_and_proceed_one_lwp, except); |
7984d532 | 4973 | else |
d86d4aaf | 4974 | find_inferior (&all_threads, proceed_one_lwp, except); |
87ce2a04 DE |
4975 | |
4976 | if (debug_threads) | |
4977 | { | |
4978 | debug_printf ("unstop_all_lwps done\n"); | |
4979 | debug_exit (); | |
4980 | } | |
0d62e5e8 DJ |
4981 | } |
4982 | ||
58caa3dc DJ |
4983 | |
4984 | #ifdef HAVE_LINUX_REGSETS | |
4985 | ||
1faeff08 MR |
4986 | #define use_linux_regsets 1 |
4987 | ||
030031ee PA |
4988 | /* Returns true if REGSET has been disabled. */ |
4989 | ||
4990 | static int | |
4991 | regset_disabled (struct regsets_info *info, struct regset_info *regset) | |
4992 | { | |
4993 | return (info->disabled_regsets != NULL | |
4994 | && info->disabled_regsets[regset - info->regsets]); | |
4995 | } | |
4996 | ||
4997 | /* Disable REGSET. */ | |
4998 | ||
4999 | static void | |
5000 | disable_regset (struct regsets_info *info, struct regset_info *regset) | |
5001 | { | |
5002 | int dr_offset; | |
5003 | ||
5004 | dr_offset = regset - info->regsets; | |
5005 | if (info->disabled_regsets == NULL) | |
224c3ddb | 5006 | info->disabled_regsets = (char *) xcalloc (1, info->num_regsets); |
030031ee PA |
5007 | info->disabled_regsets[dr_offset] = 1; |
5008 | } | |
5009 | ||
58caa3dc | 5010 | static int |
3aee8918 PA |
5011 | regsets_fetch_inferior_registers (struct regsets_info *regsets_info, |
5012 | struct regcache *regcache) | |
58caa3dc DJ |
5013 | { |
5014 | struct regset_info *regset; | |
e9d25b98 | 5015 | int saw_general_regs = 0; |
95954743 | 5016 | int pid; |
1570b33e | 5017 | struct iovec iov; |
58caa3dc | 5018 | |
0bfdf32f | 5019 | pid = lwpid_of (current_thread); |
28eef672 | 5020 | for (regset = regsets_info->regsets; regset->size >= 0; regset++) |
58caa3dc | 5021 | { |
1570b33e L |
5022 | void *buf, *data; |
5023 | int nt_type, res; | |
58caa3dc | 5024 | |
030031ee | 5025 | if (regset->size == 0 || regset_disabled (regsets_info, regset)) |
28eef672 | 5026 | continue; |
58caa3dc | 5027 | |
bca929d3 | 5028 | buf = xmalloc (regset->size); |
1570b33e L |
5029 | |
5030 | nt_type = regset->nt_type; | |
5031 | if (nt_type) | |
5032 | { | |
5033 | iov.iov_base = buf; | |
5034 | iov.iov_len = regset->size; | |
5035 | data = (void *) &iov; | |
5036 | } | |
5037 | else | |
5038 | data = buf; | |
5039 | ||
dfb64f85 | 5040 | #ifndef __sparc__ |
f15f9948 | 5041 | res = ptrace (regset->get_request, pid, |
b8e1b30e | 5042 | (PTRACE_TYPE_ARG3) (long) nt_type, data); |
dfb64f85 | 5043 | #else |
1570b33e | 5044 | res = ptrace (regset->get_request, pid, data, nt_type); |
dfb64f85 | 5045 | #endif |
58caa3dc DJ |
5046 | if (res < 0) |
5047 | { | |
5048 | if (errno == EIO) | |
5049 | { | |
52fa2412 | 5050 | /* If we get EIO on a regset, do not try it again for |
3aee8918 | 5051 | this process mode. */ |
030031ee | 5052 | disable_regset (regsets_info, regset); |
58caa3dc | 5053 | } |
e5a9158d AA |
5054 | else if (errno == ENODATA) |
5055 | { | |
5056 | /* ENODATA may be returned if the regset is currently | |
5057 | not "active". This can happen in normal operation, | |
5058 | so suppress the warning in this case. */ | |
5059 | } | |
58caa3dc DJ |
5060 | else |
5061 | { | |
0d62e5e8 | 5062 | char s[256]; |
95954743 PA |
5063 | sprintf (s, "ptrace(regsets_fetch_inferior_registers) PID=%d", |
5064 | pid); | |
0d62e5e8 | 5065 | perror (s); |
58caa3dc DJ |
5066 | } |
5067 | } | |
098dbe61 AA |
5068 | else |
5069 | { | |
5070 | if (regset->type == GENERAL_REGS) | |
5071 | saw_general_regs = 1; | |
5072 | regset->store_function (regcache, buf); | |
5073 | } | |
fdeb2a12 | 5074 | free (buf); |
58caa3dc | 5075 | } |
e9d25b98 DJ |
5076 | if (saw_general_regs) |
5077 | return 0; | |
5078 | else | |
5079 | return 1; | |
58caa3dc DJ |
5080 | } |
5081 | ||
5082 | static int | |
3aee8918 PA |
5083 | regsets_store_inferior_registers (struct regsets_info *regsets_info, |
5084 | struct regcache *regcache) | |
58caa3dc DJ |
5085 | { |
5086 | struct regset_info *regset; | |
e9d25b98 | 5087 | int saw_general_regs = 0; |
95954743 | 5088 | int pid; |
1570b33e | 5089 | struct iovec iov; |
58caa3dc | 5090 | |
0bfdf32f | 5091 | pid = lwpid_of (current_thread); |
28eef672 | 5092 | for (regset = regsets_info->regsets; regset->size >= 0; regset++) |
58caa3dc | 5093 | { |
1570b33e L |
5094 | void *buf, *data; |
5095 | int nt_type, res; | |
58caa3dc | 5096 | |
feea5f36 AA |
5097 | if (regset->size == 0 || regset_disabled (regsets_info, regset) |
5098 | || regset->fill_function == NULL) | |
28eef672 | 5099 | continue; |
58caa3dc | 5100 | |
bca929d3 | 5101 | buf = xmalloc (regset->size); |
545587ee DJ |
5102 | |
5103 | /* First fill the buffer with the current register set contents, | |
5104 | in case there are any items in the kernel's regset that are | |
5105 | not in gdbserver's regcache. */ | |
1570b33e L |
5106 | |
5107 | nt_type = regset->nt_type; | |
5108 | if (nt_type) | |
5109 | { | |
5110 | iov.iov_base = buf; | |
5111 | iov.iov_len = regset->size; | |
5112 | data = (void *) &iov; | |
5113 | } | |
5114 | else | |
5115 | data = buf; | |
5116 | ||
dfb64f85 | 5117 | #ifndef __sparc__ |
f15f9948 | 5118 | res = ptrace (regset->get_request, pid, |
b8e1b30e | 5119 | (PTRACE_TYPE_ARG3) (long) nt_type, data); |
dfb64f85 | 5120 | #else |
689cc2ae | 5121 | res = ptrace (regset->get_request, pid, data, nt_type); |
dfb64f85 | 5122 | #endif |
545587ee DJ |
5123 | |
5124 | if (res == 0) | |
5125 | { | |
5126 | /* Then overlay our cached registers on that. */ | |
442ea881 | 5127 | regset->fill_function (regcache, buf); |
545587ee DJ |
5128 | |
5129 | /* Only now do we write the register set. */ | |
dfb64f85 | 5130 | #ifndef __sparc__ |
f15f9948 | 5131 | res = ptrace (regset->set_request, pid, |
b8e1b30e | 5132 | (PTRACE_TYPE_ARG3) (long) nt_type, data); |
dfb64f85 | 5133 | #else |
1570b33e | 5134 | res = ptrace (regset->set_request, pid, data, nt_type); |
dfb64f85 | 5135 | #endif |
545587ee DJ |
5136 | } |
5137 | ||
58caa3dc DJ |
5138 | if (res < 0) |
5139 | { | |
5140 | if (errno == EIO) | |
5141 | { | |
52fa2412 | 5142 | /* If we get EIO on a regset, do not try it again for |
3aee8918 | 5143 | this process mode. */ |
030031ee | 5144 | disable_regset (regsets_info, regset); |
58caa3dc | 5145 | } |
3221518c UW |
5146 | else if (errno == ESRCH) |
5147 | { | |
1b3f6016 PA |
5148 | /* At this point, ESRCH should mean the process is |
5149 | already gone, in which case we simply ignore attempts | |
5150 | to change its registers. See also the related | |
5151 | comment in linux_resume_one_lwp. */ | |
fdeb2a12 | 5152 | free (buf); |
3221518c UW |
5153 | return 0; |
5154 | } | |
58caa3dc DJ |
5155 | else |
5156 | { | |
ce3a066d | 5157 | perror ("Warning: ptrace(regsets_store_inferior_registers)"); |
58caa3dc DJ |
5158 | } |
5159 | } | |
e9d25b98 DJ |
5160 | else if (regset->type == GENERAL_REGS) |
5161 | saw_general_regs = 1; | |
09ec9b38 | 5162 | free (buf); |
58caa3dc | 5163 | } |
e9d25b98 DJ |
5164 | if (saw_general_regs) |
5165 | return 0; | |
5166 | else | |
5167 | return 1; | |
58caa3dc DJ |
5168 | } |
5169 | ||
1faeff08 | 5170 | #else /* !HAVE_LINUX_REGSETS */ |
58caa3dc | 5171 | |
1faeff08 | 5172 | #define use_linux_regsets 0 |
3aee8918 PA |
5173 | #define regsets_fetch_inferior_registers(regsets_info, regcache) 1 |
5174 | #define regsets_store_inferior_registers(regsets_info, regcache) 1 | |
58caa3dc | 5175 | |
58caa3dc | 5176 | #endif |
1faeff08 MR |
5177 | |
5178 | /* Return 1 if register REGNO is supported by one of the regset ptrace | |
5179 | calls or 0 if it has to be transferred individually. */ | |
5180 | ||
5181 | static int | |
3aee8918 | 5182 | linux_register_in_regsets (const struct regs_info *regs_info, int regno) |
1faeff08 MR |
5183 | { |
5184 | unsigned char mask = 1 << (regno % 8); | |
5185 | size_t index = regno / 8; | |
5186 | ||
5187 | return (use_linux_regsets | |
3aee8918 PA |
5188 | && (regs_info->regset_bitmap == NULL |
5189 | || (regs_info->regset_bitmap[index] & mask) != 0)); | |
1faeff08 MR |
5190 | } |
5191 | ||
58caa3dc | 5192 | #ifdef HAVE_LINUX_USRREGS |
1faeff08 MR |
5193 | |
5194 | int | |
3aee8918 | 5195 | register_addr (const struct usrregs_info *usrregs, int regnum) |
1faeff08 MR |
5196 | { |
5197 | int addr; | |
5198 | ||
3aee8918 | 5199 | if (regnum < 0 || regnum >= usrregs->num_regs) |
1faeff08 MR |
5200 | error ("Invalid register number %d.", regnum); |
5201 | ||
3aee8918 | 5202 | addr = usrregs->regmap[regnum]; |
1faeff08 MR |
5203 | |
5204 | return addr; | |
5205 | } | |
5206 | ||
5207 | /* Fetch one register. */ | |
5208 | static void | |
3aee8918 PA |
5209 | fetch_register (const struct usrregs_info *usrregs, |
5210 | struct regcache *regcache, int regno) | |
1faeff08 MR |
5211 | { |
5212 | CORE_ADDR regaddr; | |
5213 | int i, size; | |
5214 | char *buf; | |
5215 | int pid; | |
5216 | ||
3aee8918 | 5217 | if (regno >= usrregs->num_regs) |
1faeff08 MR |
5218 | return; |
5219 | if ((*the_low_target.cannot_fetch_register) (regno)) | |
5220 | return; | |
5221 | ||
3aee8918 | 5222 | regaddr = register_addr (usrregs, regno); |
1faeff08 MR |
5223 | if (regaddr == -1) |
5224 | return; | |
5225 | ||
3aee8918 PA |
5226 | size = ((register_size (regcache->tdesc, regno) |
5227 | + sizeof (PTRACE_XFER_TYPE) - 1) | |
1faeff08 | 5228 | & -sizeof (PTRACE_XFER_TYPE)); |
224c3ddb | 5229 | buf = (char *) alloca (size); |
1faeff08 | 5230 | |
0bfdf32f | 5231 | pid = lwpid_of (current_thread); |
1faeff08 MR |
5232 | for (i = 0; i < size; i += sizeof (PTRACE_XFER_TYPE)) |
5233 | { | |
5234 | errno = 0; | |
5235 | *(PTRACE_XFER_TYPE *) (buf + i) = | |
5236 | ptrace (PTRACE_PEEKUSER, pid, | |
5237 | /* Coerce to a uintptr_t first to avoid potential gcc warning | |
5238 | of coercing an 8 byte integer to a 4 byte pointer. */ | |
b8e1b30e | 5239 | (PTRACE_TYPE_ARG3) (uintptr_t) regaddr, (PTRACE_TYPE_ARG4) 0); |
1faeff08 MR |
5240 | regaddr += sizeof (PTRACE_XFER_TYPE); |
5241 | if (errno != 0) | |
5242 | error ("reading register %d: %s", regno, strerror (errno)); | |
5243 | } | |
5244 | ||
5245 | if (the_low_target.supply_ptrace_register) | |
5246 | the_low_target.supply_ptrace_register (regcache, regno, buf); | |
5247 | else | |
5248 | supply_register (regcache, regno, buf); | |
5249 | } | |
5250 | ||
5251 | /* Store one register. */ | |
5252 | static void | |
3aee8918 PA |
5253 | store_register (const struct usrregs_info *usrregs, |
5254 | struct regcache *regcache, int regno) | |
1faeff08 MR |
5255 | { |
5256 | CORE_ADDR regaddr; | |
5257 | int i, size; | |
5258 | char *buf; | |
5259 | int pid; | |
5260 | ||
3aee8918 | 5261 | if (regno >= usrregs->num_regs) |
1faeff08 MR |
5262 | return; |
5263 | if ((*the_low_target.cannot_store_register) (regno)) | |
5264 | return; | |
5265 | ||
3aee8918 | 5266 | regaddr = register_addr (usrregs, regno); |
1faeff08 MR |
5267 | if (regaddr == -1) |
5268 | return; | |
5269 | ||
3aee8918 PA |
5270 | size = ((register_size (regcache->tdesc, regno) |
5271 | + sizeof (PTRACE_XFER_TYPE) - 1) | |
1faeff08 | 5272 | & -sizeof (PTRACE_XFER_TYPE)); |
224c3ddb | 5273 | buf = (char *) alloca (size); |
1faeff08 MR |
5274 | memset (buf, 0, size); |
5275 | ||
5276 | if (the_low_target.collect_ptrace_register) | |
5277 | the_low_target.collect_ptrace_register (regcache, regno, buf); | |
5278 | else | |
5279 | collect_register (regcache, regno, buf); | |
5280 | ||
0bfdf32f | 5281 | pid = lwpid_of (current_thread); |
1faeff08 MR |
5282 | for (i = 0; i < size; i += sizeof (PTRACE_XFER_TYPE)) |
5283 | { | |
5284 | errno = 0; | |
5285 | ptrace (PTRACE_POKEUSER, pid, | |
5286 | /* Coerce to a uintptr_t first to avoid potential gcc warning | |
5287 | about coercing an 8 byte integer to a 4 byte pointer. */ | |
b8e1b30e LM |
5288 | (PTRACE_TYPE_ARG3) (uintptr_t) regaddr, |
5289 | (PTRACE_TYPE_ARG4) *(PTRACE_XFER_TYPE *) (buf + i)); | |
1faeff08 MR |
5290 | if (errno != 0) |
5291 | { | |
5292 | /* At this point, ESRCH should mean the process is | |
5293 | already gone, in which case we simply ignore attempts | |
5294 | to change its registers. See also the related | |
5295 | comment in linux_resume_one_lwp. */ | |
5296 | if (errno == ESRCH) | |
5297 | return; | |
5298 | ||
5299 | if ((*the_low_target.cannot_store_register) (regno) == 0) | |
5300 | error ("writing register %d: %s", regno, strerror (errno)); | |
5301 | } | |
5302 | regaddr += sizeof (PTRACE_XFER_TYPE); | |
5303 | } | |
5304 | } | |
5305 | ||
5306 | /* Fetch all registers, or just one, from the child process. | |
5307 | If REGNO is -1, do this for all registers, skipping any that are | |
5308 | assumed to have been retrieved by regsets_fetch_inferior_registers, | |
5309 | unless ALL is non-zero. | |
5310 | Otherwise, REGNO specifies which register (so we can save time). */ | |
5311 | static void | |
3aee8918 PA |
5312 | usr_fetch_inferior_registers (const struct regs_info *regs_info, |
5313 | struct regcache *regcache, int regno, int all) | |
1faeff08 | 5314 | { |
3aee8918 PA |
5315 | struct usrregs_info *usr = regs_info->usrregs; |
5316 | ||
1faeff08 MR |
5317 | if (regno == -1) |
5318 | { | |
3aee8918 PA |
5319 | for (regno = 0; regno < usr->num_regs; regno++) |
5320 | if (all || !linux_register_in_regsets (regs_info, regno)) | |
5321 | fetch_register (usr, regcache, regno); | |
1faeff08 MR |
5322 | } |
5323 | else | |
3aee8918 | 5324 | fetch_register (usr, regcache, regno); |
1faeff08 MR |
5325 | } |
5326 | ||
5327 | /* Store our register values back into the inferior. | |
5328 | If REGNO is -1, do this for all registers, skipping any that are | |
5329 | assumed to have been saved by regsets_store_inferior_registers, | |
5330 | unless ALL is non-zero. | |
5331 | Otherwise, REGNO specifies which register (so we can save time). */ | |
5332 | static void | |
3aee8918 PA |
5333 | usr_store_inferior_registers (const struct regs_info *regs_info, |
5334 | struct regcache *regcache, int regno, int all) | |
1faeff08 | 5335 | { |
3aee8918 PA |
5336 | struct usrregs_info *usr = regs_info->usrregs; |
5337 | ||
1faeff08 MR |
5338 | if (regno == -1) |
5339 | { | |
3aee8918 PA |
5340 | for (regno = 0; regno < usr->num_regs; regno++) |
5341 | if (all || !linux_register_in_regsets (regs_info, regno)) | |
5342 | store_register (usr, regcache, regno); | |
1faeff08 MR |
5343 | } |
5344 | else | |
3aee8918 | 5345 | store_register (usr, regcache, regno); |
1faeff08 MR |
5346 | } |
5347 | ||
5348 | #else /* !HAVE_LINUX_USRREGS */ | |
5349 | ||
3aee8918 PA |
5350 | #define usr_fetch_inferior_registers(regs_info, regcache, regno, all) do {} while (0) |
5351 | #define usr_store_inferior_registers(regs_info, regcache, regno, all) do {} while (0) | |
1faeff08 | 5352 | |
58caa3dc | 5353 | #endif |
1faeff08 MR |
5354 | |
5355 | ||
5356 | void | |
5357 | linux_fetch_registers (struct regcache *regcache, int regno) | |
5358 | { | |
5359 | int use_regsets; | |
5360 | int all = 0; | |
3aee8918 | 5361 | const struct regs_info *regs_info = (*the_low_target.regs_info) (); |
1faeff08 MR |
5362 | |
5363 | if (regno == -1) | |
5364 | { | |
3aee8918 PA |
5365 | if (the_low_target.fetch_register != NULL |
5366 | && regs_info->usrregs != NULL) | |
5367 | for (regno = 0; regno < regs_info->usrregs->num_regs; regno++) | |
c14dfd32 PA |
5368 | (*the_low_target.fetch_register) (regcache, regno); |
5369 | ||
3aee8918 PA |
5370 | all = regsets_fetch_inferior_registers (regs_info->regsets_info, regcache); |
5371 | if (regs_info->usrregs != NULL) | |
5372 | usr_fetch_inferior_registers (regs_info, regcache, -1, all); | |
1faeff08 MR |
5373 | } |
5374 | else | |
5375 | { | |
c14dfd32 PA |
5376 | if (the_low_target.fetch_register != NULL |
5377 | && (*the_low_target.fetch_register) (regcache, regno)) | |
5378 | return; | |
5379 | ||
3aee8918 | 5380 | use_regsets = linux_register_in_regsets (regs_info, regno); |
1faeff08 | 5381 | if (use_regsets) |
3aee8918 PA |
5382 | all = regsets_fetch_inferior_registers (regs_info->regsets_info, |
5383 | regcache); | |
5384 | if ((!use_regsets || all) && regs_info->usrregs != NULL) | |
5385 | usr_fetch_inferior_registers (regs_info, regcache, regno, 1); | |
1faeff08 | 5386 | } |
58caa3dc DJ |
5387 | } |
5388 | ||
5389 | void | |
442ea881 | 5390 | linux_store_registers (struct regcache *regcache, int regno) |
58caa3dc | 5391 | { |
1faeff08 MR |
5392 | int use_regsets; |
5393 | int all = 0; | |
3aee8918 | 5394 | const struct regs_info *regs_info = (*the_low_target.regs_info) (); |
1faeff08 MR |
5395 | |
5396 | if (regno == -1) | |
5397 | { | |
3aee8918 PA |
5398 | all = regsets_store_inferior_registers (regs_info->regsets_info, |
5399 | regcache); | |
5400 | if (regs_info->usrregs != NULL) | |
5401 | usr_store_inferior_registers (regs_info, regcache, regno, all); | |
1faeff08 MR |
5402 | } |
5403 | else | |
5404 | { | |
3aee8918 | 5405 | use_regsets = linux_register_in_regsets (regs_info, regno); |
1faeff08 | 5406 | if (use_regsets) |
3aee8918 PA |
5407 | all = regsets_store_inferior_registers (regs_info->regsets_info, |
5408 | regcache); | |
5409 | if ((!use_regsets || all) && regs_info->usrregs != NULL) | |
5410 | usr_store_inferior_registers (regs_info, regcache, regno, 1); | |
1faeff08 | 5411 | } |
58caa3dc DJ |
5412 | } |
5413 | ||
da6d8c04 | 5414 | |
da6d8c04 DJ |
5415 | /* Copy LEN bytes from inferior's memory starting at MEMADDR |
5416 | to debugger memory starting at MYADDR. */ | |
5417 | ||
c3e735a6 | 5418 | static int |
f450004a | 5419 | linux_read_memory (CORE_ADDR memaddr, unsigned char *myaddr, int len) |
da6d8c04 | 5420 | { |
0bfdf32f | 5421 | int pid = lwpid_of (current_thread); |
4934b29e MR |
5422 | register PTRACE_XFER_TYPE *buffer; |
5423 | register CORE_ADDR addr; | |
5424 | register int count; | |
5425 | char filename[64]; | |
da6d8c04 | 5426 | register int i; |
4934b29e | 5427 | int ret; |
fd462a61 | 5428 | int fd; |
fd462a61 DJ |
5429 | |
5430 | /* Try using /proc. Don't bother for one word. */ | |
5431 | if (len >= 3 * sizeof (long)) | |
5432 | { | |
4934b29e MR |
5433 | int bytes; |
5434 | ||
fd462a61 DJ |
5435 | /* We could keep this file open and cache it - possibly one per |
5436 | thread. That requires some juggling, but is even faster. */ | |
95954743 | 5437 | sprintf (filename, "/proc/%d/mem", pid); |
fd462a61 DJ |
5438 | fd = open (filename, O_RDONLY | O_LARGEFILE); |
5439 | if (fd == -1) | |
5440 | goto no_proc; | |
5441 | ||
5442 | /* If pread64 is available, use it. It's faster if the kernel | |
5443 | supports it (only one syscall), and it's 64-bit safe even on | |
5444 | 32-bit platforms (for instance, SPARC debugging a SPARC64 | |
5445 | application). */ | |
5446 | #ifdef HAVE_PREAD64 | |
4934b29e | 5447 | bytes = pread64 (fd, myaddr, len, memaddr); |
fd462a61 | 5448 | #else |
4934b29e MR |
5449 | bytes = -1; |
5450 | if (lseek (fd, memaddr, SEEK_SET) != -1) | |
5451 | bytes = read (fd, myaddr, len); | |
fd462a61 | 5452 | #endif |
fd462a61 DJ |
5453 | |
5454 | close (fd); | |
4934b29e MR |
5455 | if (bytes == len) |
5456 | return 0; | |
5457 | ||
5458 | /* Some data was read, we'll try to get the rest with ptrace. */ | |
5459 | if (bytes > 0) | |
5460 | { | |
5461 | memaddr += bytes; | |
5462 | myaddr += bytes; | |
5463 | len -= bytes; | |
5464 | } | |
fd462a61 | 5465 | } |
da6d8c04 | 5466 | |
fd462a61 | 5467 | no_proc: |
4934b29e MR |
5468 | /* Round starting address down to longword boundary. */ |
5469 | addr = memaddr & -(CORE_ADDR) sizeof (PTRACE_XFER_TYPE); | |
5470 | /* Round ending address up; get number of longwords that makes. */ | |
5471 | count = ((((memaddr + len) - addr) + sizeof (PTRACE_XFER_TYPE) - 1) | |
5472 | / sizeof (PTRACE_XFER_TYPE)); | |
5473 | /* Allocate buffer of that many longwords. */ | |
8d749320 | 5474 | buffer = XALLOCAVEC (PTRACE_XFER_TYPE, count); |
4934b29e | 5475 | |
da6d8c04 | 5476 | /* Read all the longwords */ |
4934b29e | 5477 | errno = 0; |
da6d8c04 DJ |
5478 | for (i = 0; i < count; i++, addr += sizeof (PTRACE_XFER_TYPE)) |
5479 | { | |
14ce3065 DE |
5480 | /* Coerce the 3rd arg to a uintptr_t first to avoid potential gcc warning |
5481 | about coercing an 8 byte integer to a 4 byte pointer. */ | |
5482 | buffer[i] = ptrace (PTRACE_PEEKTEXT, pid, | |
b8e1b30e LM |
5483 | (PTRACE_TYPE_ARG3) (uintptr_t) addr, |
5484 | (PTRACE_TYPE_ARG4) 0); | |
c3e735a6 | 5485 | if (errno) |
4934b29e | 5486 | break; |
da6d8c04 | 5487 | } |
4934b29e | 5488 | ret = errno; |
da6d8c04 DJ |
5489 | |
5490 | /* Copy appropriate bytes out of the buffer. */ | |
8d409d16 MR |
5491 | if (i > 0) |
5492 | { | |
5493 | i *= sizeof (PTRACE_XFER_TYPE); | |
5494 | i -= memaddr & (sizeof (PTRACE_XFER_TYPE) - 1); | |
5495 | memcpy (myaddr, | |
5496 | (char *) buffer + (memaddr & (sizeof (PTRACE_XFER_TYPE) - 1)), | |
5497 | i < len ? i : len); | |
5498 | } | |
c3e735a6 | 5499 | |
4934b29e | 5500 | return ret; |
da6d8c04 DJ |
5501 | } |
5502 | ||
93ae6fdc PA |
5503 | /* Copy LEN bytes of data from debugger memory at MYADDR to inferior's |
5504 | memory at MEMADDR. On failure (cannot write to the inferior) | |
f0ae6fc3 | 5505 | returns the value of errno. Always succeeds if LEN is zero. */ |
da6d8c04 | 5506 | |
ce3a066d | 5507 | static int |
f450004a | 5508 | linux_write_memory (CORE_ADDR memaddr, const unsigned char *myaddr, int len) |
da6d8c04 DJ |
5509 | { |
5510 | register int i; | |
5511 | /* Round starting address down to longword boundary. */ | |
5512 | register CORE_ADDR addr = memaddr & -(CORE_ADDR) sizeof (PTRACE_XFER_TYPE); | |
5513 | /* Round ending address up; get number of longwords that makes. */ | |
5514 | register int count | |
493e2a69 MS |
5515 | = (((memaddr + len) - addr) + sizeof (PTRACE_XFER_TYPE) - 1) |
5516 | / sizeof (PTRACE_XFER_TYPE); | |
5517 | ||
da6d8c04 | 5518 | /* Allocate buffer of that many longwords. */ |
8d749320 | 5519 | register PTRACE_XFER_TYPE *buffer = XALLOCAVEC (PTRACE_XFER_TYPE, count); |
493e2a69 | 5520 | |
0bfdf32f | 5521 | int pid = lwpid_of (current_thread); |
da6d8c04 | 5522 | |
f0ae6fc3 PA |
5523 | if (len == 0) |
5524 | { | |
5525 | /* Zero length write always succeeds. */ | |
5526 | return 0; | |
5527 | } | |
5528 | ||
0d62e5e8 DJ |
5529 | if (debug_threads) |
5530 | { | |
58d6951d | 5531 | /* Dump up to four bytes. */ |
bf47e248 PA |
5532 | char str[4 * 2 + 1]; |
5533 | char *p = str; | |
5534 | int dump = len < 4 ? len : 4; | |
5535 | ||
5536 | for (i = 0; i < dump; i++) | |
5537 | { | |
5538 | sprintf (p, "%02x", myaddr[i]); | |
5539 | p += 2; | |
5540 | } | |
5541 | *p = '\0'; | |
5542 | ||
5543 | debug_printf ("Writing %s to 0x%08lx in process %d\n", | |
5544 | str, (long) memaddr, pid); | |
0d62e5e8 DJ |
5545 | } |
5546 | ||
da6d8c04 DJ |
5547 | /* Fill start and end extra bytes of buffer with existing memory data. */ |
5548 | ||
93ae6fdc | 5549 | errno = 0; |
14ce3065 DE |
5550 | /* Coerce the 3rd arg to a uintptr_t first to avoid potential gcc warning |
5551 | about coercing an 8 byte integer to a 4 byte pointer. */ | |
5552 | buffer[0] = ptrace (PTRACE_PEEKTEXT, pid, | |
b8e1b30e LM |
5553 | (PTRACE_TYPE_ARG3) (uintptr_t) addr, |
5554 | (PTRACE_TYPE_ARG4) 0); | |
93ae6fdc PA |
5555 | if (errno) |
5556 | return errno; | |
da6d8c04 DJ |
5557 | |
5558 | if (count > 1) | |
5559 | { | |
93ae6fdc | 5560 | errno = 0; |
da6d8c04 | 5561 | buffer[count - 1] |
95954743 | 5562 | = ptrace (PTRACE_PEEKTEXT, pid, |
14ce3065 DE |
5563 | /* Coerce to a uintptr_t first to avoid potential gcc warning |
5564 | about coercing an 8 byte integer to a 4 byte pointer. */ | |
b8e1b30e | 5565 | (PTRACE_TYPE_ARG3) (uintptr_t) (addr + (count - 1) |
14ce3065 | 5566 | * sizeof (PTRACE_XFER_TYPE)), |
b8e1b30e | 5567 | (PTRACE_TYPE_ARG4) 0); |
93ae6fdc PA |
5568 | if (errno) |
5569 | return errno; | |
da6d8c04 DJ |
5570 | } |
5571 | ||
93ae6fdc | 5572 | /* Copy data to be written over corresponding part of buffer. */ |
da6d8c04 | 5573 | |
493e2a69 MS |
5574 | memcpy ((char *) buffer + (memaddr & (sizeof (PTRACE_XFER_TYPE) - 1)), |
5575 | myaddr, len); | |
da6d8c04 DJ |
5576 | |
5577 | /* Write the entire buffer. */ | |
5578 | ||
5579 | for (i = 0; i < count; i++, addr += sizeof (PTRACE_XFER_TYPE)) | |
5580 | { | |
5581 | errno = 0; | |
14ce3065 DE |
5582 | ptrace (PTRACE_POKETEXT, pid, |
5583 | /* Coerce to a uintptr_t first to avoid potential gcc warning | |
5584 | about coercing an 8 byte integer to a 4 byte pointer. */ | |
b8e1b30e LM |
5585 | (PTRACE_TYPE_ARG3) (uintptr_t) addr, |
5586 | (PTRACE_TYPE_ARG4) buffer[i]); | |
da6d8c04 DJ |
5587 | if (errno) |
5588 | return errno; | |
5589 | } | |
5590 | ||
5591 | return 0; | |
5592 | } | |
2f2893d9 DJ |
5593 | |
5594 | static void | |
5595 | linux_look_up_symbols (void) | |
5596 | { | |
0d62e5e8 | 5597 | #ifdef USE_THREAD_DB |
95954743 PA |
5598 | struct process_info *proc = current_process (); |
5599 | ||
fe978cb0 | 5600 | if (proc->priv->thread_db != NULL) |
0d62e5e8 DJ |
5601 | return; |
5602 | ||
9b4c5f87 | 5603 | thread_db_init (); |
0d62e5e8 DJ |
5604 | #endif |
5605 | } | |
5606 | ||
e5379b03 | 5607 | static void |
ef57601b | 5608 | linux_request_interrupt (void) |
e5379b03 | 5609 | { |
a1928bad | 5610 | extern unsigned long signal_pid; |
e5379b03 | 5611 | |
78708b7c PA |
5612 | /* Send a SIGINT to the process group. This acts just like the user |
5613 | typed a ^C on the controlling terminal. */ | |
5614 | kill (-signal_pid, SIGINT); | |
e5379b03 DJ |
5615 | } |
5616 | ||
aa691b87 RM |
5617 | /* Copy LEN bytes from inferior's auxiliary vector starting at OFFSET |
5618 | to debugger memory starting at MYADDR. */ | |
5619 | ||
5620 | static int | |
f450004a | 5621 | linux_read_auxv (CORE_ADDR offset, unsigned char *myaddr, unsigned int len) |
aa691b87 RM |
5622 | { |
5623 | char filename[PATH_MAX]; | |
5624 | int fd, n; | |
0bfdf32f | 5625 | int pid = lwpid_of (current_thread); |
aa691b87 | 5626 | |
6cebaf6e | 5627 | xsnprintf (filename, sizeof filename, "/proc/%d/auxv", pid); |
aa691b87 RM |
5628 | |
5629 | fd = open (filename, O_RDONLY); | |
5630 | if (fd < 0) | |
5631 | return -1; | |
5632 | ||
5633 | if (offset != (CORE_ADDR) 0 | |
5634 | && lseek (fd, (off_t) offset, SEEK_SET) != (off_t) offset) | |
5635 | n = -1; | |
5636 | else | |
5637 | n = read (fd, myaddr, len); | |
5638 | ||
5639 | close (fd); | |
5640 | ||
5641 | return n; | |
5642 | } | |
5643 | ||
d993e290 PA |
5644 | /* These breakpoint and watchpoint related wrapper functions simply |
5645 | pass on the function call if the target has registered a | |
5646 | corresponding function. */ | |
e013ee27 OF |
5647 | |
5648 | static int | |
802e8e6d PA |
5649 | linux_supports_z_point_type (char z_type) |
5650 | { | |
5651 | return (the_low_target.supports_z_point_type != NULL | |
5652 | && the_low_target.supports_z_point_type (z_type)); | |
5653 | } | |
5654 | ||
5655 | static int | |
5656 | linux_insert_point (enum raw_bkpt_type type, CORE_ADDR addr, | |
5657 | int size, struct raw_breakpoint *bp) | |
e013ee27 | 5658 | { |
c8f4bfdd YQ |
5659 | if (type == raw_bkpt_type_sw) |
5660 | return insert_memory_breakpoint (bp); | |
5661 | else if (the_low_target.insert_point != NULL) | |
802e8e6d | 5662 | return the_low_target.insert_point (type, addr, size, bp); |
e013ee27 OF |
5663 | else |
5664 | /* Unsupported (see target.h). */ | |
5665 | return 1; | |
5666 | } | |
5667 | ||
5668 | static int | |
802e8e6d PA |
5669 | linux_remove_point (enum raw_bkpt_type type, CORE_ADDR addr, |
5670 | int size, struct raw_breakpoint *bp) | |
e013ee27 | 5671 | { |
c8f4bfdd YQ |
5672 | if (type == raw_bkpt_type_sw) |
5673 | return remove_memory_breakpoint (bp); | |
5674 | else if (the_low_target.remove_point != NULL) | |
802e8e6d | 5675 | return the_low_target.remove_point (type, addr, size, bp); |
e013ee27 OF |
5676 | else |
5677 | /* Unsupported (see target.h). */ | |
5678 | return 1; | |
5679 | } | |
5680 | ||
3e572f71 PA |
5681 | /* Implement the to_stopped_by_sw_breakpoint target_ops |
5682 | method. */ | |
5683 | ||
5684 | static int | |
5685 | linux_stopped_by_sw_breakpoint (void) | |
5686 | { | |
5687 | struct lwp_info *lwp = get_thread_lwp (current_thread); | |
5688 | ||
5689 | return (lwp->stop_reason == TARGET_STOPPED_BY_SW_BREAKPOINT); | |
5690 | } | |
5691 | ||
5692 | /* Implement the to_supports_stopped_by_sw_breakpoint target_ops | |
5693 | method. */ | |
5694 | ||
5695 | static int | |
5696 | linux_supports_stopped_by_sw_breakpoint (void) | |
5697 | { | |
5698 | return USE_SIGTRAP_SIGINFO; | |
5699 | } | |
5700 | ||
5701 | /* Implement the to_stopped_by_hw_breakpoint target_ops | |
5702 | method. */ | |
5703 | ||
5704 | static int | |
5705 | linux_stopped_by_hw_breakpoint (void) | |
5706 | { | |
5707 | struct lwp_info *lwp = get_thread_lwp (current_thread); | |
5708 | ||
5709 | return (lwp->stop_reason == TARGET_STOPPED_BY_HW_BREAKPOINT); | |
5710 | } | |
5711 | ||
5712 | /* Implement the to_supports_stopped_by_hw_breakpoint target_ops | |
5713 | method. */ | |
5714 | ||
5715 | static int | |
5716 | linux_supports_stopped_by_hw_breakpoint (void) | |
5717 | { | |
5718 | return USE_SIGTRAP_SIGINFO; | |
5719 | } | |
5720 | ||
70b90b91 | 5721 | /* Implement the supports_hardware_single_step target_ops method. */ |
45614f15 YQ |
5722 | |
5723 | static int | |
70b90b91 | 5724 | linux_supports_hardware_single_step (void) |
45614f15 | 5725 | { |
45614f15 YQ |
5726 | return can_hardware_single_step (); |
5727 | } | |
5728 | ||
7d00775e AT |
5729 | static int |
5730 | linux_supports_software_single_step (void) | |
5731 | { | |
5732 | return can_software_single_step (); | |
5733 | } | |
5734 | ||
e013ee27 OF |
5735 | static int |
5736 | linux_stopped_by_watchpoint (void) | |
5737 | { | |
0bfdf32f | 5738 | struct lwp_info *lwp = get_thread_lwp (current_thread); |
c3adc08c | 5739 | |
15c66dd6 | 5740 | return lwp->stop_reason == TARGET_STOPPED_BY_WATCHPOINT; |
e013ee27 OF |
5741 | } |
5742 | ||
5743 | static CORE_ADDR | |
5744 | linux_stopped_data_address (void) | |
5745 | { | |
0bfdf32f | 5746 | struct lwp_info *lwp = get_thread_lwp (current_thread); |
c3adc08c PA |
5747 | |
5748 | return lwp->stopped_data_address; | |
e013ee27 OF |
5749 | } |
5750 | ||
db0dfaa0 LM |
5751 | #if defined(__UCLIBC__) && defined(HAS_NOMMU) \ |
5752 | && defined(PT_TEXT_ADDR) && defined(PT_DATA_ADDR) \ | |
5753 | && defined(PT_TEXT_END_ADDR) | |
5754 | ||
5755 | /* This is only used for targets that define PT_TEXT_ADDR, | |
5756 | PT_DATA_ADDR and PT_TEXT_END_ADDR. If those are not defined, supposedly | |
5757 | the target has different ways of acquiring this information, like | |
5758 | loadmaps. */ | |
52fb6437 NS |
5759 | |
5760 | /* Under uClinux, programs are loaded at non-zero offsets, which we need | |
5761 | to tell gdb about. */ | |
5762 | ||
5763 | static int | |
5764 | linux_read_offsets (CORE_ADDR *text_p, CORE_ADDR *data_p) | |
5765 | { | |
52fb6437 | 5766 | unsigned long text, text_end, data; |
62828379 | 5767 | int pid = lwpid_of (current_thread); |
52fb6437 NS |
5768 | |
5769 | errno = 0; | |
5770 | ||
b8e1b30e LM |
5771 | text = ptrace (PTRACE_PEEKUSER, pid, (PTRACE_TYPE_ARG3) PT_TEXT_ADDR, |
5772 | (PTRACE_TYPE_ARG4) 0); | |
5773 | text_end = ptrace (PTRACE_PEEKUSER, pid, (PTRACE_TYPE_ARG3) PT_TEXT_END_ADDR, | |
5774 | (PTRACE_TYPE_ARG4) 0); | |
5775 | data = ptrace (PTRACE_PEEKUSER, pid, (PTRACE_TYPE_ARG3) PT_DATA_ADDR, | |
5776 | (PTRACE_TYPE_ARG4) 0); | |
52fb6437 NS |
5777 | |
5778 | if (errno == 0) | |
5779 | { | |
5780 | /* Both text and data offsets produced at compile-time (and so | |
1b3f6016 PA |
5781 | used by gdb) are relative to the beginning of the program, |
5782 | with the data segment immediately following the text segment. | |
5783 | However, the actual runtime layout in memory may put the data | |
5784 | somewhere else, so when we send gdb a data base-address, we | |
5785 | use the real data base address and subtract the compile-time | |
5786 | data base-address from it (which is just the length of the | |
5787 | text segment). BSS immediately follows data in both | |
5788 | cases. */ | |
52fb6437 NS |
5789 | *text_p = text; |
5790 | *data_p = data - (text_end - text); | |
1b3f6016 | 5791 | |
52fb6437 NS |
5792 | return 1; |
5793 | } | |
52fb6437 NS |
5794 | return 0; |
5795 | } | |
5796 | #endif | |
5797 | ||
07e059b5 VP |
5798 | static int |
5799 | linux_qxfer_osdata (const char *annex, | |
1b3f6016 PA |
5800 | unsigned char *readbuf, unsigned const char *writebuf, |
5801 | CORE_ADDR offset, int len) | |
07e059b5 | 5802 | { |
d26e3629 | 5803 | return linux_common_xfer_osdata (annex, readbuf, offset, len); |
07e059b5 VP |
5804 | } |
5805 | ||
d0722149 DE |
5806 | /* Convert a native/host siginfo object, into/from the siginfo in the |
5807 | layout of the inferiors' architecture. */ | |
5808 | ||
5809 | static void | |
a5362b9a | 5810 | siginfo_fixup (siginfo_t *siginfo, void *inf_siginfo, int direction) |
d0722149 DE |
5811 | { |
5812 | int done = 0; | |
5813 | ||
5814 | if (the_low_target.siginfo_fixup != NULL) | |
5815 | done = the_low_target.siginfo_fixup (siginfo, inf_siginfo, direction); | |
5816 | ||
5817 | /* If there was no callback, or the callback didn't do anything, | |
5818 | then just do a straight memcpy. */ | |
5819 | if (!done) | |
5820 | { | |
5821 | if (direction == 1) | |
a5362b9a | 5822 | memcpy (siginfo, inf_siginfo, sizeof (siginfo_t)); |
d0722149 | 5823 | else |
a5362b9a | 5824 | memcpy (inf_siginfo, siginfo, sizeof (siginfo_t)); |
d0722149 DE |
5825 | } |
5826 | } | |
5827 | ||
4aa995e1 PA |
5828 | static int |
5829 | linux_xfer_siginfo (const char *annex, unsigned char *readbuf, | |
5830 | unsigned const char *writebuf, CORE_ADDR offset, int len) | |
5831 | { | |
d0722149 | 5832 | int pid; |
a5362b9a TS |
5833 | siginfo_t siginfo; |
5834 | char inf_siginfo[sizeof (siginfo_t)]; | |
4aa995e1 | 5835 | |
0bfdf32f | 5836 | if (current_thread == NULL) |
4aa995e1 PA |
5837 | return -1; |
5838 | ||
0bfdf32f | 5839 | pid = lwpid_of (current_thread); |
4aa995e1 PA |
5840 | |
5841 | if (debug_threads) | |
87ce2a04 DE |
5842 | debug_printf ("%s siginfo for lwp %d.\n", |
5843 | readbuf != NULL ? "Reading" : "Writing", | |
5844 | pid); | |
4aa995e1 | 5845 | |
0adea5f7 | 5846 | if (offset >= sizeof (siginfo)) |
4aa995e1 PA |
5847 | return -1; |
5848 | ||
b8e1b30e | 5849 | if (ptrace (PTRACE_GETSIGINFO, pid, (PTRACE_TYPE_ARG3) 0, &siginfo) != 0) |
4aa995e1 PA |
5850 | return -1; |
5851 | ||
d0722149 DE |
5852 | /* When GDBSERVER is built as a 64-bit application, ptrace writes into |
5853 | SIGINFO an object with 64-bit layout. Since debugging a 32-bit | |
5854 | inferior with a 64-bit GDBSERVER should look the same as debugging it | |
5855 | with a 32-bit GDBSERVER, we need to convert it. */ | |
5856 | siginfo_fixup (&siginfo, inf_siginfo, 0); | |
5857 | ||
4aa995e1 PA |
5858 | if (offset + len > sizeof (siginfo)) |
5859 | len = sizeof (siginfo) - offset; | |
5860 | ||
5861 | if (readbuf != NULL) | |
d0722149 | 5862 | memcpy (readbuf, inf_siginfo + offset, len); |
4aa995e1 PA |
5863 | else |
5864 | { | |
d0722149 DE |
5865 | memcpy (inf_siginfo + offset, writebuf, len); |
5866 | ||
5867 | /* Convert back to ptrace layout before flushing it out. */ | |
5868 | siginfo_fixup (&siginfo, inf_siginfo, 1); | |
5869 | ||
b8e1b30e | 5870 | if (ptrace (PTRACE_SETSIGINFO, pid, (PTRACE_TYPE_ARG3) 0, &siginfo) != 0) |
4aa995e1 PA |
5871 | return -1; |
5872 | } | |
5873 | ||
5874 | return len; | |
5875 | } | |
5876 | ||
bd99dc85 PA |
5877 | /* SIGCHLD handler that serves two purposes: In non-stop/async mode, |
5878 | so we notice when children change state; as the handler for the | |
5879 | sigsuspend in my_waitpid. */ | |
5880 | ||
5881 | static void | |
5882 | sigchld_handler (int signo) | |
5883 | { | |
5884 | int old_errno = errno; | |
5885 | ||
5886 | if (debug_threads) | |
e581f2b4 PA |
5887 | { |
5888 | do | |
5889 | { | |
5890 | /* fprintf is not async-signal-safe, so call write | |
5891 | directly. */ | |
5892 | if (write (2, "sigchld_handler\n", | |
5893 | sizeof ("sigchld_handler\n") - 1) < 0) | |
5894 | break; /* just ignore */ | |
5895 | } while (0); | |
5896 | } | |
bd99dc85 PA |
5897 | |
5898 | if (target_is_async_p ()) | |
5899 | async_file_mark (); /* trigger a linux_wait */ | |
5900 | ||
5901 | errno = old_errno; | |
5902 | } | |
5903 | ||
5904 | static int | |
5905 | linux_supports_non_stop (void) | |
5906 | { | |
5907 | return 1; | |
5908 | } | |
5909 | ||
5910 | static int | |
5911 | linux_async (int enable) | |
5912 | { | |
7089dca4 | 5913 | int previous = target_is_async_p (); |
bd99dc85 | 5914 | |
8336d594 | 5915 | if (debug_threads) |
87ce2a04 DE |
5916 | debug_printf ("linux_async (%d), previous=%d\n", |
5917 | enable, previous); | |
8336d594 | 5918 | |
bd99dc85 PA |
5919 | if (previous != enable) |
5920 | { | |
5921 | sigset_t mask; | |
5922 | sigemptyset (&mask); | |
5923 | sigaddset (&mask, SIGCHLD); | |
5924 | ||
5925 | sigprocmask (SIG_BLOCK, &mask, NULL); | |
5926 | ||
5927 | if (enable) | |
5928 | { | |
5929 | if (pipe (linux_event_pipe) == -1) | |
aa96c426 GB |
5930 | { |
5931 | linux_event_pipe[0] = -1; | |
5932 | linux_event_pipe[1] = -1; | |
5933 | sigprocmask (SIG_UNBLOCK, &mask, NULL); | |
5934 | ||
5935 | warning ("creating event pipe failed."); | |
5936 | return previous; | |
5937 | } | |
bd99dc85 PA |
5938 | |
5939 | fcntl (linux_event_pipe[0], F_SETFL, O_NONBLOCK); | |
5940 | fcntl (linux_event_pipe[1], F_SETFL, O_NONBLOCK); | |
5941 | ||
5942 | /* Register the event loop handler. */ | |
5943 | add_file_handler (linux_event_pipe[0], | |
5944 | handle_target_event, NULL); | |
5945 | ||
5946 | /* Always trigger a linux_wait. */ | |
5947 | async_file_mark (); | |
5948 | } | |
5949 | else | |
5950 | { | |
5951 | delete_file_handler (linux_event_pipe[0]); | |
5952 | ||
5953 | close (linux_event_pipe[0]); | |
5954 | close (linux_event_pipe[1]); | |
5955 | linux_event_pipe[0] = -1; | |
5956 | linux_event_pipe[1] = -1; | |
5957 | } | |
5958 | ||
5959 | sigprocmask (SIG_UNBLOCK, &mask, NULL); | |
5960 | } | |
5961 | ||
5962 | return previous; | |
5963 | } | |
5964 | ||
5965 | static int | |
5966 | linux_start_non_stop (int nonstop) | |
5967 | { | |
5968 | /* Register or unregister from event-loop accordingly. */ | |
5969 | linux_async (nonstop); | |
aa96c426 GB |
5970 | |
5971 | if (target_is_async_p () != (nonstop != 0)) | |
5972 | return -1; | |
5973 | ||
bd99dc85 PA |
5974 | return 0; |
5975 | } | |
5976 | ||
cf8fd78b PA |
5977 | static int |
5978 | linux_supports_multi_process (void) | |
5979 | { | |
5980 | return 1; | |
5981 | } | |
5982 | ||
89245bc0 DB |
5983 | /* Check if fork events are supported. */ |
5984 | ||
5985 | static int | |
5986 | linux_supports_fork_events (void) | |
5987 | { | |
5988 | return linux_supports_tracefork (); | |
5989 | } | |
5990 | ||
5991 | /* Check if vfork events are supported. */ | |
5992 | ||
5993 | static int | |
5994 | linux_supports_vfork_events (void) | |
5995 | { | |
5996 | return linux_supports_tracefork (); | |
5997 | } | |
5998 | ||
94585166 DB |
5999 | /* Check if exec events are supported. */ |
6000 | ||
6001 | static int | |
6002 | linux_supports_exec_events (void) | |
6003 | { | |
6004 | return linux_supports_traceexec (); | |
6005 | } | |
6006 | ||
de0d863e DB |
6007 | /* Callback for 'find_inferior'. Set the (possibly changed) ptrace |
6008 | options for the specified lwp. */ | |
6009 | ||
6010 | static int | |
6011 | reset_lwp_ptrace_options_callback (struct inferior_list_entry *entry, | |
6012 | void *args) | |
6013 | { | |
6014 | struct thread_info *thread = (struct thread_info *) entry; | |
6015 | struct lwp_info *lwp = get_thread_lwp (thread); | |
6016 | ||
6017 | if (!lwp->stopped) | |
6018 | { | |
6019 | /* Stop the lwp so we can modify its ptrace options. */ | |
6020 | lwp->must_set_ptrace_flags = 1; | |
6021 | linux_stop_lwp (lwp); | |
6022 | } | |
6023 | else | |
6024 | { | |
6025 | /* Already stopped; go ahead and set the ptrace options. */ | |
6026 | struct process_info *proc = find_process_pid (pid_of (thread)); | |
6027 | int options = linux_low_ptrace_options (proc->attached); | |
6028 | ||
6029 | linux_enable_event_reporting (lwpid_of (thread), options); | |
6030 | lwp->must_set_ptrace_flags = 0; | |
6031 | } | |
6032 | ||
6033 | return 0; | |
6034 | } | |
6035 | ||
6036 | /* Target hook for 'handle_new_gdb_connection'. Causes a reset of the | |
6037 | ptrace flags for all inferiors. This is in case the new GDB connection | |
6038 | doesn't support the same set of events that the previous one did. */ | |
6039 | ||
6040 | static void | |
6041 | linux_handle_new_gdb_connection (void) | |
6042 | { | |
6043 | pid_t pid; | |
6044 | ||
6045 | /* Request that all the lwps reset their ptrace options. */ | |
6046 | find_inferior (&all_threads, reset_lwp_ptrace_options_callback , &pid); | |
6047 | } | |
6048 | ||
03583c20 UW |
6049 | static int |
6050 | linux_supports_disable_randomization (void) | |
6051 | { | |
6052 | #ifdef HAVE_PERSONALITY | |
6053 | return 1; | |
6054 | #else | |
6055 | return 0; | |
6056 | #endif | |
6057 | } | |
efcbbd14 | 6058 | |
d1feda86 YQ |
6059 | static int |
6060 | linux_supports_agent (void) | |
6061 | { | |
6062 | return 1; | |
6063 | } | |
6064 | ||
c2d6af84 PA |
6065 | static int |
6066 | linux_supports_range_stepping (void) | |
6067 | { | |
6068 | if (*the_low_target.supports_range_stepping == NULL) | |
6069 | return 0; | |
6070 | ||
6071 | return (*the_low_target.supports_range_stepping) (); | |
6072 | } | |
6073 | ||
efcbbd14 UW |
6074 | /* Enumerate spufs IDs for process PID. */ |
6075 | static int | |
6076 | spu_enumerate_spu_ids (long pid, unsigned char *buf, CORE_ADDR offset, int len) | |
6077 | { | |
6078 | int pos = 0; | |
6079 | int written = 0; | |
6080 | char path[128]; | |
6081 | DIR *dir; | |
6082 | struct dirent *entry; | |
6083 | ||
6084 | sprintf (path, "/proc/%ld/fd", pid); | |
6085 | dir = opendir (path); | |
6086 | if (!dir) | |
6087 | return -1; | |
6088 | ||
6089 | rewinddir (dir); | |
6090 | while ((entry = readdir (dir)) != NULL) | |
6091 | { | |
6092 | struct stat st; | |
6093 | struct statfs stfs; | |
6094 | int fd; | |
6095 | ||
6096 | fd = atoi (entry->d_name); | |
6097 | if (!fd) | |
6098 | continue; | |
6099 | ||
6100 | sprintf (path, "/proc/%ld/fd/%d", pid, fd); | |
6101 | if (stat (path, &st) != 0) | |
6102 | continue; | |
6103 | if (!S_ISDIR (st.st_mode)) | |
6104 | continue; | |
6105 | ||
6106 | if (statfs (path, &stfs) != 0) | |
6107 | continue; | |
6108 | if (stfs.f_type != SPUFS_MAGIC) | |
6109 | continue; | |
6110 | ||
6111 | if (pos >= offset && pos + 4 <= offset + len) | |
6112 | { | |
6113 | *(unsigned int *)(buf + pos - offset) = fd; | |
6114 | written += 4; | |
6115 | } | |
6116 | pos += 4; | |
6117 | } | |
6118 | ||
6119 | closedir (dir); | |
6120 | return written; | |
6121 | } | |
6122 | ||
6123 | /* Implements the to_xfer_partial interface for the TARGET_OBJECT_SPU | |
6124 | object type, using the /proc file system. */ | |
6125 | static int | |
6126 | linux_qxfer_spu (const char *annex, unsigned char *readbuf, | |
6127 | unsigned const char *writebuf, | |
6128 | CORE_ADDR offset, int len) | |
6129 | { | |
0bfdf32f | 6130 | long pid = lwpid_of (current_thread); |
efcbbd14 UW |
6131 | char buf[128]; |
6132 | int fd = 0; | |
6133 | int ret = 0; | |
6134 | ||
6135 | if (!writebuf && !readbuf) | |
6136 | return -1; | |
6137 | ||
6138 | if (!*annex) | |
6139 | { | |
6140 | if (!readbuf) | |
6141 | return -1; | |
6142 | else | |
6143 | return spu_enumerate_spu_ids (pid, readbuf, offset, len); | |
6144 | } | |
6145 | ||
6146 | sprintf (buf, "/proc/%ld/fd/%s", pid, annex); | |
6147 | fd = open (buf, writebuf? O_WRONLY : O_RDONLY); | |
6148 | if (fd <= 0) | |
6149 | return -1; | |
6150 | ||
6151 | if (offset != 0 | |
6152 | && lseek (fd, (off_t) offset, SEEK_SET) != (off_t) offset) | |
6153 | { | |
6154 | close (fd); | |
6155 | return 0; | |
6156 | } | |
6157 | ||
6158 | if (writebuf) | |
6159 | ret = write (fd, writebuf, (size_t) len); | |
6160 | else | |
6161 | ret = read (fd, readbuf, (size_t) len); | |
6162 | ||
6163 | close (fd); | |
6164 | return ret; | |
6165 | } | |
6166 | ||
723b724b | 6167 | #if defined PT_GETDSBT || defined PTRACE_GETFDPIC |
78d85199 YQ |
6168 | struct target_loadseg |
6169 | { | |
6170 | /* Core address to which the segment is mapped. */ | |
6171 | Elf32_Addr addr; | |
6172 | /* VMA recorded in the program header. */ | |
6173 | Elf32_Addr p_vaddr; | |
6174 | /* Size of this segment in memory. */ | |
6175 | Elf32_Word p_memsz; | |
6176 | }; | |
6177 | ||
723b724b | 6178 | # if defined PT_GETDSBT |
78d85199 YQ |
6179 | struct target_loadmap |
6180 | { | |
6181 | /* Protocol version number, must be zero. */ | |
6182 | Elf32_Word version; | |
6183 | /* Pointer to the DSBT table, its size, and the DSBT index. */ | |
6184 | unsigned *dsbt_table; | |
6185 | unsigned dsbt_size, dsbt_index; | |
6186 | /* Number of segments in this map. */ | |
6187 | Elf32_Word nsegs; | |
6188 | /* The actual memory map. */ | |
6189 | struct target_loadseg segs[/*nsegs*/]; | |
6190 | }; | |
723b724b MF |
6191 | # define LINUX_LOADMAP PT_GETDSBT |
6192 | # define LINUX_LOADMAP_EXEC PTRACE_GETDSBT_EXEC | |
6193 | # define LINUX_LOADMAP_INTERP PTRACE_GETDSBT_INTERP | |
6194 | # else | |
6195 | struct target_loadmap | |
6196 | { | |
6197 | /* Protocol version number, must be zero. */ | |
6198 | Elf32_Half version; | |
6199 | /* Number of segments in this map. */ | |
6200 | Elf32_Half nsegs; | |
6201 | /* The actual memory map. */ | |
6202 | struct target_loadseg segs[/*nsegs*/]; | |
6203 | }; | |
6204 | # define LINUX_LOADMAP PTRACE_GETFDPIC | |
6205 | # define LINUX_LOADMAP_EXEC PTRACE_GETFDPIC_EXEC | |
6206 | # define LINUX_LOADMAP_INTERP PTRACE_GETFDPIC_INTERP | |
6207 | # endif | |
78d85199 | 6208 | |
78d85199 YQ |
6209 | static int |
6210 | linux_read_loadmap (const char *annex, CORE_ADDR offset, | |
6211 | unsigned char *myaddr, unsigned int len) | |
6212 | { | |
0bfdf32f | 6213 | int pid = lwpid_of (current_thread); |
78d85199 YQ |
6214 | int addr = -1; |
6215 | struct target_loadmap *data = NULL; | |
6216 | unsigned int actual_length, copy_length; | |
6217 | ||
6218 | if (strcmp (annex, "exec") == 0) | |
723b724b | 6219 | addr = (int) LINUX_LOADMAP_EXEC; |
78d85199 | 6220 | else if (strcmp (annex, "interp") == 0) |
723b724b | 6221 | addr = (int) LINUX_LOADMAP_INTERP; |
78d85199 YQ |
6222 | else |
6223 | return -1; | |
6224 | ||
723b724b | 6225 | if (ptrace (LINUX_LOADMAP, pid, addr, &data) != 0) |
78d85199 YQ |
6226 | return -1; |
6227 | ||
6228 | if (data == NULL) | |
6229 | return -1; | |
6230 | ||
6231 | actual_length = sizeof (struct target_loadmap) | |
6232 | + sizeof (struct target_loadseg) * data->nsegs; | |
6233 | ||
6234 | if (offset < 0 || offset > actual_length) | |
6235 | return -1; | |
6236 | ||
6237 | copy_length = actual_length - offset < len ? actual_length - offset : len; | |
6238 | memcpy (myaddr, (char *) data + offset, copy_length); | |
6239 | return copy_length; | |
6240 | } | |
723b724b MF |
6241 | #else |
6242 | # define linux_read_loadmap NULL | |
6243 | #endif /* defined PT_GETDSBT || defined PTRACE_GETFDPIC */ | |
78d85199 | 6244 | |
1570b33e | 6245 | static void |
06e03fff | 6246 | linux_process_qsupported (char **features, int count) |
1570b33e L |
6247 | { |
6248 | if (the_low_target.process_qsupported != NULL) | |
06e03fff | 6249 | the_low_target.process_qsupported (features, count); |
1570b33e L |
6250 | } |
6251 | ||
219f2f23 PA |
6252 | static int |
6253 | linux_supports_tracepoints (void) | |
6254 | { | |
6255 | if (*the_low_target.supports_tracepoints == NULL) | |
6256 | return 0; | |
6257 | ||
6258 | return (*the_low_target.supports_tracepoints) (); | |
6259 | } | |
6260 | ||
6261 | static CORE_ADDR | |
6262 | linux_read_pc (struct regcache *regcache) | |
6263 | { | |
6264 | if (the_low_target.get_pc == NULL) | |
6265 | return 0; | |
6266 | ||
6267 | return (*the_low_target.get_pc) (regcache); | |
6268 | } | |
6269 | ||
6270 | static void | |
6271 | linux_write_pc (struct regcache *regcache, CORE_ADDR pc) | |
6272 | { | |
6273 | gdb_assert (the_low_target.set_pc != NULL); | |
6274 | ||
6275 | (*the_low_target.set_pc) (regcache, pc); | |
6276 | } | |
6277 | ||
8336d594 PA |
6278 | static int |
6279 | linux_thread_stopped (struct thread_info *thread) | |
6280 | { | |
6281 | return get_thread_lwp (thread)->stopped; | |
6282 | } | |
6283 | ||
6284 | /* This exposes stop-all-threads functionality to other modules. */ | |
6285 | ||
6286 | static void | |
7984d532 | 6287 | linux_pause_all (int freeze) |
8336d594 | 6288 | { |
7984d532 PA |
6289 | stop_all_lwps (freeze, NULL); |
6290 | } | |
6291 | ||
6292 | /* This exposes unstop-all-threads functionality to other gdbserver | |
6293 | modules. */ | |
6294 | ||
6295 | static void | |
6296 | linux_unpause_all (int unfreeze) | |
6297 | { | |
6298 | unstop_all_lwps (unfreeze, NULL); | |
8336d594 PA |
6299 | } |
6300 | ||
90d74c30 PA |
6301 | static int |
6302 | linux_prepare_to_access_memory (void) | |
6303 | { | |
6304 | /* Neither ptrace nor /proc/PID/mem allow accessing memory through a | |
6305 | running LWP. */ | |
6306 | if (non_stop) | |
6307 | linux_pause_all (1); | |
6308 | return 0; | |
6309 | } | |
6310 | ||
6311 | static void | |
0146f85b | 6312 | linux_done_accessing_memory (void) |
90d74c30 PA |
6313 | { |
6314 | /* Neither ptrace nor /proc/PID/mem allow accessing memory through a | |
6315 | running LWP. */ | |
6316 | if (non_stop) | |
6317 | linux_unpause_all (1); | |
6318 | } | |
6319 | ||
fa593d66 PA |
6320 | static int |
6321 | linux_install_fast_tracepoint_jump_pad (CORE_ADDR tpoint, CORE_ADDR tpaddr, | |
6322 | CORE_ADDR collector, | |
6323 | CORE_ADDR lockaddr, | |
6324 | ULONGEST orig_size, | |
6325 | CORE_ADDR *jump_entry, | |
405f8e94 SS |
6326 | CORE_ADDR *trampoline, |
6327 | ULONGEST *trampoline_size, | |
fa593d66 PA |
6328 | unsigned char *jjump_pad_insn, |
6329 | ULONGEST *jjump_pad_insn_size, | |
6330 | CORE_ADDR *adjusted_insn_addr, | |
405f8e94 SS |
6331 | CORE_ADDR *adjusted_insn_addr_end, |
6332 | char *err) | |
fa593d66 PA |
6333 | { |
6334 | return (*the_low_target.install_fast_tracepoint_jump_pad) | |
6335 | (tpoint, tpaddr, collector, lockaddr, orig_size, | |
405f8e94 SS |
6336 | jump_entry, trampoline, trampoline_size, |
6337 | jjump_pad_insn, jjump_pad_insn_size, | |
6338 | adjusted_insn_addr, adjusted_insn_addr_end, | |
6339 | err); | |
fa593d66 PA |
6340 | } |
6341 | ||
6a271cae PA |
6342 | static struct emit_ops * |
6343 | linux_emit_ops (void) | |
6344 | { | |
6345 | if (the_low_target.emit_ops != NULL) | |
6346 | return (*the_low_target.emit_ops) (); | |
6347 | else | |
6348 | return NULL; | |
6349 | } | |
6350 | ||
405f8e94 SS |
6351 | static int |
6352 | linux_get_min_fast_tracepoint_insn_len (void) | |
6353 | { | |
6354 | return (*the_low_target.get_min_fast_tracepoint_insn_len) (); | |
6355 | } | |
6356 | ||
2268b414 JK |
6357 | /* Extract &phdr and num_phdr in the inferior. Return 0 on success. */ |
6358 | ||
6359 | static int | |
6360 | get_phdr_phnum_from_proc_auxv (const int pid, const int is_elf64, | |
6361 | CORE_ADDR *phdr_memaddr, int *num_phdr) | |
6362 | { | |
6363 | char filename[PATH_MAX]; | |
6364 | int fd; | |
6365 | const int auxv_size = is_elf64 | |
6366 | ? sizeof (Elf64_auxv_t) : sizeof (Elf32_auxv_t); | |
6367 | char buf[sizeof (Elf64_auxv_t)]; /* The larger of the two. */ | |
6368 | ||
6369 | xsnprintf (filename, sizeof filename, "/proc/%d/auxv", pid); | |
6370 | ||
6371 | fd = open (filename, O_RDONLY); | |
6372 | if (fd < 0) | |
6373 | return 1; | |
6374 | ||
6375 | *phdr_memaddr = 0; | |
6376 | *num_phdr = 0; | |
6377 | while (read (fd, buf, auxv_size) == auxv_size | |
6378 | && (*phdr_memaddr == 0 || *num_phdr == 0)) | |
6379 | { | |
6380 | if (is_elf64) | |
6381 | { | |
6382 | Elf64_auxv_t *const aux = (Elf64_auxv_t *) buf; | |
6383 | ||
6384 | switch (aux->a_type) | |
6385 | { | |
6386 | case AT_PHDR: | |
6387 | *phdr_memaddr = aux->a_un.a_val; | |
6388 | break; | |
6389 | case AT_PHNUM: | |
6390 | *num_phdr = aux->a_un.a_val; | |
6391 | break; | |
6392 | } | |
6393 | } | |
6394 | else | |
6395 | { | |
6396 | Elf32_auxv_t *const aux = (Elf32_auxv_t *) buf; | |
6397 | ||
6398 | switch (aux->a_type) | |
6399 | { | |
6400 | case AT_PHDR: | |
6401 | *phdr_memaddr = aux->a_un.a_val; | |
6402 | break; | |
6403 | case AT_PHNUM: | |
6404 | *num_phdr = aux->a_un.a_val; | |
6405 | break; | |
6406 | } | |
6407 | } | |
6408 | } | |
6409 | ||
6410 | close (fd); | |
6411 | ||
6412 | if (*phdr_memaddr == 0 || *num_phdr == 0) | |
6413 | { | |
6414 | warning ("Unexpected missing AT_PHDR and/or AT_PHNUM: " | |
6415 | "phdr_memaddr = %ld, phdr_num = %d", | |
6416 | (long) *phdr_memaddr, *num_phdr); | |
6417 | return 2; | |
6418 | } | |
6419 | ||
6420 | return 0; | |
6421 | } | |
6422 | ||
6423 | /* Return &_DYNAMIC (via PT_DYNAMIC) in the inferior, or 0 if not present. */ | |
6424 | ||
6425 | static CORE_ADDR | |
6426 | get_dynamic (const int pid, const int is_elf64) | |
6427 | { | |
6428 | CORE_ADDR phdr_memaddr, relocation; | |
db1ff28b | 6429 | int num_phdr, i; |
2268b414 | 6430 | unsigned char *phdr_buf; |
db1ff28b | 6431 | const int phdr_size = is_elf64 ? sizeof (Elf64_Phdr) : sizeof (Elf32_Phdr); |
2268b414 JK |
6432 | |
6433 | if (get_phdr_phnum_from_proc_auxv (pid, is_elf64, &phdr_memaddr, &num_phdr)) | |
6434 | return 0; | |
6435 | ||
6436 | gdb_assert (num_phdr < 100); /* Basic sanity check. */ | |
224c3ddb | 6437 | phdr_buf = (unsigned char *) alloca (num_phdr * phdr_size); |
2268b414 JK |
6438 | |
6439 | if (linux_read_memory (phdr_memaddr, phdr_buf, num_phdr * phdr_size)) | |
6440 | return 0; | |
6441 | ||
6442 | /* Compute relocation: it is expected to be 0 for "regular" executables, | |
6443 | non-zero for PIE ones. */ | |
6444 | relocation = -1; | |
db1ff28b JK |
6445 | for (i = 0; relocation == -1 && i < num_phdr; i++) |
6446 | if (is_elf64) | |
6447 | { | |
6448 | Elf64_Phdr *const p = (Elf64_Phdr *) (phdr_buf + i * phdr_size); | |
6449 | ||
6450 | if (p->p_type == PT_PHDR) | |
6451 | relocation = phdr_memaddr - p->p_vaddr; | |
6452 | } | |
6453 | else | |
6454 | { | |
6455 | Elf32_Phdr *const p = (Elf32_Phdr *) (phdr_buf + i * phdr_size); | |
6456 | ||
6457 | if (p->p_type == PT_PHDR) | |
6458 | relocation = phdr_memaddr - p->p_vaddr; | |
6459 | } | |
6460 | ||
2268b414 JK |
6461 | if (relocation == -1) |
6462 | { | |
e237a7e2 JK |
6463 | /* PT_PHDR is optional, but necessary for PIE in general. Fortunately |
6464 | any real world executables, including PIE executables, have always | |
6465 | PT_PHDR present. PT_PHDR is not present in some shared libraries or | |
6466 | in fpc (Free Pascal 2.4) binaries but neither of those have a need for | |
6467 | or present DT_DEBUG anyway (fpc binaries are statically linked). | |
6468 | ||
6469 | Therefore if there exists DT_DEBUG there is always also PT_PHDR. | |
6470 | ||
6471 | GDB could find RELOCATION also from AT_ENTRY - e_entry. */ | |
6472 | ||
2268b414 JK |
6473 | return 0; |
6474 | } | |
6475 | ||
db1ff28b JK |
6476 | for (i = 0; i < num_phdr; i++) |
6477 | { | |
6478 | if (is_elf64) | |
6479 | { | |
6480 | Elf64_Phdr *const p = (Elf64_Phdr *) (phdr_buf + i * phdr_size); | |
6481 | ||
6482 | if (p->p_type == PT_DYNAMIC) | |
6483 | return p->p_vaddr + relocation; | |
6484 | } | |
6485 | else | |
6486 | { | |
6487 | Elf32_Phdr *const p = (Elf32_Phdr *) (phdr_buf + i * phdr_size); | |
2268b414 | 6488 | |
db1ff28b JK |
6489 | if (p->p_type == PT_DYNAMIC) |
6490 | return p->p_vaddr + relocation; | |
6491 | } | |
6492 | } | |
2268b414 JK |
6493 | |
6494 | return 0; | |
6495 | } | |
6496 | ||
6497 | /* Return &_r_debug in the inferior, or -1 if not present. Return value | |
367ba2c2 MR |
6498 | can be 0 if the inferior does not yet have the library list initialized. |
6499 | We look for DT_MIPS_RLD_MAP first. MIPS executables use this instead of | |
6500 | DT_DEBUG, although they sometimes contain an unused DT_DEBUG entry too. */ | |
2268b414 JK |
6501 | |
6502 | static CORE_ADDR | |
6503 | get_r_debug (const int pid, const int is_elf64) | |
6504 | { | |
6505 | CORE_ADDR dynamic_memaddr; | |
6506 | const int dyn_size = is_elf64 ? sizeof (Elf64_Dyn) : sizeof (Elf32_Dyn); | |
6507 | unsigned char buf[sizeof (Elf64_Dyn)]; /* The larger of the two. */ | |
367ba2c2 | 6508 | CORE_ADDR map = -1; |
2268b414 JK |
6509 | |
6510 | dynamic_memaddr = get_dynamic (pid, is_elf64); | |
6511 | if (dynamic_memaddr == 0) | |
367ba2c2 | 6512 | return map; |
2268b414 JK |
6513 | |
6514 | while (linux_read_memory (dynamic_memaddr, buf, dyn_size) == 0) | |
6515 | { | |
6516 | if (is_elf64) | |
6517 | { | |
6518 | Elf64_Dyn *const dyn = (Elf64_Dyn *) buf; | |
a738da3a | 6519 | #if defined DT_MIPS_RLD_MAP || defined DT_MIPS_RLD_MAP_REL |
367ba2c2 MR |
6520 | union |
6521 | { | |
6522 | Elf64_Xword map; | |
6523 | unsigned char buf[sizeof (Elf64_Xword)]; | |
6524 | } | |
6525 | rld_map; | |
a738da3a MF |
6526 | #endif |
6527 | #ifdef DT_MIPS_RLD_MAP | |
367ba2c2 MR |
6528 | if (dyn->d_tag == DT_MIPS_RLD_MAP) |
6529 | { | |
6530 | if (linux_read_memory (dyn->d_un.d_val, | |
6531 | rld_map.buf, sizeof (rld_map.buf)) == 0) | |
6532 | return rld_map.map; | |
6533 | else | |
6534 | break; | |
6535 | } | |
75f62ce7 | 6536 | #endif /* DT_MIPS_RLD_MAP */ |
a738da3a MF |
6537 | #ifdef DT_MIPS_RLD_MAP_REL |
6538 | if (dyn->d_tag == DT_MIPS_RLD_MAP_REL) | |
6539 | { | |
6540 | if (linux_read_memory (dyn->d_un.d_val + dynamic_memaddr, | |
6541 | rld_map.buf, sizeof (rld_map.buf)) == 0) | |
6542 | return rld_map.map; | |
6543 | else | |
6544 | break; | |
6545 | } | |
6546 | #endif /* DT_MIPS_RLD_MAP_REL */ | |
2268b414 | 6547 | |
367ba2c2 MR |
6548 | if (dyn->d_tag == DT_DEBUG && map == -1) |
6549 | map = dyn->d_un.d_val; | |
2268b414 JK |
6550 | |
6551 | if (dyn->d_tag == DT_NULL) | |
6552 | break; | |
6553 | } | |
6554 | else | |
6555 | { | |
6556 | Elf32_Dyn *const dyn = (Elf32_Dyn *) buf; | |
a738da3a | 6557 | #if defined DT_MIPS_RLD_MAP || defined DT_MIPS_RLD_MAP_REL |
367ba2c2 MR |
6558 | union |
6559 | { | |
6560 | Elf32_Word map; | |
6561 | unsigned char buf[sizeof (Elf32_Word)]; | |
6562 | } | |
6563 | rld_map; | |
a738da3a MF |
6564 | #endif |
6565 | #ifdef DT_MIPS_RLD_MAP | |
367ba2c2 MR |
6566 | if (dyn->d_tag == DT_MIPS_RLD_MAP) |
6567 | { | |
6568 | if (linux_read_memory (dyn->d_un.d_val, | |
6569 | rld_map.buf, sizeof (rld_map.buf)) == 0) | |
6570 | return rld_map.map; | |
6571 | else | |
6572 | break; | |
6573 | } | |
75f62ce7 | 6574 | #endif /* DT_MIPS_RLD_MAP */ |
a738da3a MF |
6575 | #ifdef DT_MIPS_RLD_MAP_REL |
6576 | if (dyn->d_tag == DT_MIPS_RLD_MAP_REL) | |
6577 | { | |
6578 | if (linux_read_memory (dyn->d_un.d_val + dynamic_memaddr, | |
6579 | rld_map.buf, sizeof (rld_map.buf)) == 0) | |
6580 | return rld_map.map; | |
6581 | else | |
6582 | break; | |
6583 | } | |
6584 | #endif /* DT_MIPS_RLD_MAP_REL */ | |
2268b414 | 6585 | |
367ba2c2 MR |
6586 | if (dyn->d_tag == DT_DEBUG && map == -1) |
6587 | map = dyn->d_un.d_val; | |
2268b414 JK |
6588 | |
6589 | if (dyn->d_tag == DT_NULL) | |
6590 | break; | |
6591 | } | |
6592 | ||
6593 | dynamic_memaddr += dyn_size; | |
6594 | } | |
6595 | ||
367ba2c2 | 6596 | return map; |
2268b414 JK |
6597 | } |
6598 | ||
6599 | /* Read one pointer from MEMADDR in the inferior. */ | |
6600 | ||
6601 | static int | |
6602 | read_one_ptr (CORE_ADDR memaddr, CORE_ADDR *ptr, int ptr_size) | |
6603 | { | |
485f1ee4 PA |
6604 | int ret; |
6605 | ||
6606 | /* Go through a union so this works on either big or little endian | |
6607 | hosts, when the inferior's pointer size is smaller than the size | |
6608 | of CORE_ADDR. It is assumed the inferior's endianness is the | |
6609 | same of the superior's. */ | |
6610 | union | |
6611 | { | |
6612 | CORE_ADDR core_addr; | |
6613 | unsigned int ui; | |
6614 | unsigned char uc; | |
6615 | } addr; | |
6616 | ||
6617 | ret = linux_read_memory (memaddr, &addr.uc, ptr_size); | |
6618 | if (ret == 0) | |
6619 | { | |
6620 | if (ptr_size == sizeof (CORE_ADDR)) | |
6621 | *ptr = addr.core_addr; | |
6622 | else if (ptr_size == sizeof (unsigned int)) | |
6623 | *ptr = addr.ui; | |
6624 | else | |
6625 | gdb_assert_not_reached ("unhandled pointer size"); | |
6626 | } | |
6627 | return ret; | |
2268b414 JK |
6628 | } |
6629 | ||
6630 | struct link_map_offsets | |
6631 | { | |
6632 | /* Offset and size of r_debug.r_version. */ | |
6633 | int r_version_offset; | |
6634 | ||
6635 | /* Offset and size of r_debug.r_map. */ | |
6636 | int r_map_offset; | |
6637 | ||
6638 | /* Offset to l_addr field in struct link_map. */ | |
6639 | int l_addr_offset; | |
6640 | ||
6641 | /* Offset to l_name field in struct link_map. */ | |
6642 | int l_name_offset; | |
6643 | ||
6644 | /* Offset to l_ld field in struct link_map. */ | |
6645 | int l_ld_offset; | |
6646 | ||
6647 | /* Offset to l_next field in struct link_map. */ | |
6648 | int l_next_offset; | |
6649 | ||
6650 | /* Offset to l_prev field in struct link_map. */ | |
6651 | int l_prev_offset; | |
6652 | }; | |
6653 | ||
fb723180 | 6654 | /* Construct qXfer:libraries-svr4:read reply. */ |
2268b414 JK |
6655 | |
6656 | static int | |
6657 | linux_qxfer_libraries_svr4 (const char *annex, unsigned char *readbuf, | |
6658 | unsigned const char *writebuf, | |
6659 | CORE_ADDR offset, int len) | |
6660 | { | |
6661 | char *document; | |
6662 | unsigned document_len; | |
fe978cb0 | 6663 | struct process_info_private *const priv = current_process ()->priv; |
2268b414 JK |
6664 | char filename[PATH_MAX]; |
6665 | int pid, is_elf64; | |
6666 | ||
6667 | static const struct link_map_offsets lmo_32bit_offsets = | |
6668 | { | |
6669 | 0, /* r_version offset. */ | |
6670 | 4, /* r_debug.r_map offset. */ | |
6671 | 0, /* l_addr offset in link_map. */ | |
6672 | 4, /* l_name offset in link_map. */ | |
6673 | 8, /* l_ld offset in link_map. */ | |
6674 | 12, /* l_next offset in link_map. */ | |
6675 | 16 /* l_prev offset in link_map. */ | |
6676 | }; | |
6677 | ||
6678 | static const struct link_map_offsets lmo_64bit_offsets = | |
6679 | { | |
6680 | 0, /* r_version offset. */ | |
6681 | 8, /* r_debug.r_map offset. */ | |
6682 | 0, /* l_addr offset in link_map. */ | |
6683 | 8, /* l_name offset in link_map. */ | |
6684 | 16, /* l_ld offset in link_map. */ | |
6685 | 24, /* l_next offset in link_map. */ | |
6686 | 32 /* l_prev offset in link_map. */ | |
6687 | }; | |
6688 | const struct link_map_offsets *lmo; | |
214d508e | 6689 | unsigned int machine; |
b1fbec62 GB |
6690 | int ptr_size; |
6691 | CORE_ADDR lm_addr = 0, lm_prev = 0; | |
6692 | int allocated = 1024; | |
6693 | char *p; | |
6694 | CORE_ADDR l_name, l_addr, l_ld, l_next, l_prev; | |
6695 | int header_done = 0; | |
2268b414 JK |
6696 | |
6697 | if (writebuf != NULL) | |
6698 | return -2; | |
6699 | if (readbuf == NULL) | |
6700 | return -1; | |
6701 | ||
0bfdf32f | 6702 | pid = lwpid_of (current_thread); |
2268b414 | 6703 | xsnprintf (filename, sizeof filename, "/proc/%d/exe", pid); |
214d508e | 6704 | is_elf64 = elf_64_file_p (filename, &machine); |
2268b414 | 6705 | lmo = is_elf64 ? &lmo_64bit_offsets : &lmo_32bit_offsets; |
b1fbec62 | 6706 | ptr_size = is_elf64 ? 8 : 4; |
2268b414 | 6707 | |
b1fbec62 GB |
6708 | while (annex[0] != '\0') |
6709 | { | |
6710 | const char *sep; | |
6711 | CORE_ADDR *addrp; | |
6712 | int len; | |
2268b414 | 6713 | |
b1fbec62 GB |
6714 | sep = strchr (annex, '='); |
6715 | if (sep == NULL) | |
6716 | break; | |
0c5bf5a9 | 6717 | |
b1fbec62 | 6718 | len = sep - annex; |
61012eef | 6719 | if (len == 5 && startswith (annex, "start")) |
b1fbec62 | 6720 | addrp = &lm_addr; |
61012eef | 6721 | else if (len == 4 && startswith (annex, "prev")) |
b1fbec62 GB |
6722 | addrp = &lm_prev; |
6723 | else | |
6724 | { | |
6725 | annex = strchr (sep, ';'); | |
6726 | if (annex == NULL) | |
6727 | break; | |
6728 | annex++; | |
6729 | continue; | |
6730 | } | |
6731 | ||
6732 | annex = decode_address_to_semicolon (addrp, sep + 1); | |
2268b414 | 6733 | } |
b1fbec62 GB |
6734 | |
6735 | if (lm_addr == 0) | |
2268b414 | 6736 | { |
b1fbec62 GB |
6737 | int r_version = 0; |
6738 | ||
6739 | if (priv->r_debug == 0) | |
6740 | priv->r_debug = get_r_debug (pid, is_elf64); | |
6741 | ||
6742 | /* We failed to find DT_DEBUG. Such situation will not change | |
6743 | for this inferior - do not retry it. Report it to GDB as | |
6744 | E01, see for the reasons at the GDB solib-svr4.c side. */ | |
6745 | if (priv->r_debug == (CORE_ADDR) -1) | |
6746 | return -1; | |
6747 | ||
6748 | if (priv->r_debug != 0) | |
2268b414 | 6749 | { |
b1fbec62 GB |
6750 | if (linux_read_memory (priv->r_debug + lmo->r_version_offset, |
6751 | (unsigned char *) &r_version, | |
6752 | sizeof (r_version)) != 0 | |
6753 | || r_version != 1) | |
6754 | { | |
6755 | warning ("unexpected r_debug version %d", r_version); | |
6756 | } | |
6757 | else if (read_one_ptr (priv->r_debug + lmo->r_map_offset, | |
6758 | &lm_addr, ptr_size) != 0) | |
6759 | { | |
6760 | warning ("unable to read r_map from 0x%lx", | |
6761 | (long) priv->r_debug + lmo->r_map_offset); | |
6762 | } | |
2268b414 | 6763 | } |
b1fbec62 | 6764 | } |
2268b414 | 6765 | |
224c3ddb | 6766 | document = (char *) xmalloc (allocated); |
b1fbec62 GB |
6767 | strcpy (document, "<library-list-svr4 version=\"1.0\""); |
6768 | p = document + strlen (document); | |
6769 | ||
6770 | while (lm_addr | |
6771 | && read_one_ptr (lm_addr + lmo->l_name_offset, | |
6772 | &l_name, ptr_size) == 0 | |
6773 | && read_one_ptr (lm_addr + lmo->l_addr_offset, | |
6774 | &l_addr, ptr_size) == 0 | |
6775 | && read_one_ptr (lm_addr + lmo->l_ld_offset, | |
6776 | &l_ld, ptr_size) == 0 | |
6777 | && read_one_ptr (lm_addr + lmo->l_prev_offset, | |
6778 | &l_prev, ptr_size) == 0 | |
6779 | && read_one_ptr (lm_addr + lmo->l_next_offset, | |
6780 | &l_next, ptr_size) == 0) | |
6781 | { | |
6782 | unsigned char libname[PATH_MAX]; | |
6783 | ||
6784 | if (lm_prev != l_prev) | |
2268b414 | 6785 | { |
b1fbec62 GB |
6786 | warning ("Corrupted shared library list: 0x%lx != 0x%lx", |
6787 | (long) lm_prev, (long) l_prev); | |
6788 | break; | |
2268b414 JK |
6789 | } |
6790 | ||
d878444c JK |
6791 | /* Ignore the first entry even if it has valid name as the first entry |
6792 | corresponds to the main executable. The first entry should not be | |
6793 | skipped if the dynamic loader was loaded late by a static executable | |
6794 | (see solib-svr4.c parameter ignore_first). But in such case the main | |
6795 | executable does not have PT_DYNAMIC present and this function already | |
6796 | exited above due to failed get_r_debug. */ | |
6797 | if (lm_prev == 0) | |
2268b414 | 6798 | { |
d878444c JK |
6799 | sprintf (p, " main-lm=\"0x%lx\"", (unsigned long) lm_addr); |
6800 | p = p + strlen (p); | |
6801 | } | |
6802 | else | |
6803 | { | |
6804 | /* Not checking for error because reading may stop before | |
6805 | we've got PATH_MAX worth of characters. */ | |
6806 | libname[0] = '\0'; | |
6807 | linux_read_memory (l_name, libname, sizeof (libname) - 1); | |
6808 | libname[sizeof (libname) - 1] = '\0'; | |
6809 | if (libname[0] != '\0') | |
2268b414 | 6810 | { |
d878444c JK |
6811 | /* 6x the size for xml_escape_text below. */ |
6812 | size_t len = 6 * strlen ((char *) libname); | |
6813 | char *name; | |
2268b414 | 6814 | |
d878444c JK |
6815 | if (!header_done) |
6816 | { | |
6817 | /* Terminate `<library-list-svr4'. */ | |
6818 | *p++ = '>'; | |
6819 | header_done = 1; | |
6820 | } | |
2268b414 | 6821 | |
db1ff28b | 6822 | while (allocated < p - document + len + 200) |
d878444c JK |
6823 | { |
6824 | /* Expand to guarantee sufficient storage. */ | |
6825 | uintptr_t document_len = p - document; | |
2268b414 | 6826 | |
224c3ddb | 6827 | document = (char *) xrealloc (document, 2 * allocated); |
d878444c JK |
6828 | allocated *= 2; |
6829 | p = document + document_len; | |
6830 | } | |
6831 | ||
6832 | name = xml_escape_text ((char *) libname); | |
6833 | p += sprintf (p, "<library name=\"%s\" lm=\"0x%lx\" " | |
db1ff28b | 6834 | "l_addr=\"0x%lx\" l_ld=\"0x%lx\"/>", |
d878444c JK |
6835 | name, (unsigned long) lm_addr, |
6836 | (unsigned long) l_addr, (unsigned long) l_ld); | |
6837 | free (name); | |
6838 | } | |
0afae3cf | 6839 | } |
b1fbec62 GB |
6840 | |
6841 | lm_prev = lm_addr; | |
6842 | lm_addr = l_next; | |
2268b414 JK |
6843 | } |
6844 | ||
b1fbec62 GB |
6845 | if (!header_done) |
6846 | { | |
6847 | /* Empty list; terminate `<library-list-svr4'. */ | |
6848 | strcpy (p, "/>"); | |
6849 | } | |
6850 | else | |
6851 | strcpy (p, "</library-list-svr4>"); | |
6852 | ||
2268b414 JK |
6853 | document_len = strlen (document); |
6854 | if (offset < document_len) | |
6855 | document_len -= offset; | |
6856 | else | |
6857 | document_len = 0; | |
6858 | if (len > document_len) | |
6859 | len = document_len; | |
6860 | ||
6861 | memcpy (readbuf, document + offset, len); | |
6862 | xfree (document); | |
6863 | ||
6864 | return len; | |
6865 | } | |
6866 | ||
9accd112 MM |
6867 | #ifdef HAVE_LINUX_BTRACE |
6868 | ||
969c39fb | 6869 | /* See to_disable_btrace target method. */ |
9accd112 | 6870 | |
969c39fb MM |
6871 | static int |
6872 | linux_low_disable_btrace (struct btrace_target_info *tinfo) | |
6873 | { | |
6874 | enum btrace_error err; | |
6875 | ||
6876 | err = linux_disable_btrace (tinfo); | |
6877 | return (err == BTRACE_ERR_NONE ? 0 : -1); | |
6878 | } | |
6879 | ||
b20a6524 MM |
6880 | /* Encode an Intel(R) Processor Trace configuration. */ |
6881 | ||
6882 | static void | |
6883 | linux_low_encode_pt_config (struct buffer *buffer, | |
6884 | const struct btrace_data_pt_config *config) | |
6885 | { | |
6886 | buffer_grow_str (buffer, "<pt-config>\n"); | |
6887 | ||
6888 | switch (config->cpu.vendor) | |
6889 | { | |
6890 | case CV_INTEL: | |
6891 | buffer_xml_printf (buffer, "<cpu vendor=\"GenuineIntel\" family=\"%u\" " | |
6892 | "model=\"%u\" stepping=\"%u\"/>\n", | |
6893 | config->cpu.family, config->cpu.model, | |
6894 | config->cpu.stepping); | |
6895 | break; | |
6896 | ||
6897 | default: | |
6898 | break; | |
6899 | } | |
6900 | ||
6901 | buffer_grow_str (buffer, "</pt-config>\n"); | |
6902 | } | |
6903 | ||
6904 | /* Encode a raw buffer. */ | |
6905 | ||
6906 | static void | |
6907 | linux_low_encode_raw (struct buffer *buffer, const gdb_byte *data, | |
6908 | unsigned int size) | |
6909 | { | |
6910 | if (size == 0) | |
6911 | return; | |
6912 | ||
6913 | /* We use hex encoding - see common/rsp-low.h. */ | |
6914 | buffer_grow_str (buffer, "<raw>\n"); | |
6915 | ||
6916 | while (size-- > 0) | |
6917 | { | |
6918 | char elem[2]; | |
6919 | ||
6920 | elem[0] = tohex ((*data >> 4) & 0xf); | |
6921 | elem[1] = tohex (*data++ & 0xf); | |
6922 | ||
6923 | buffer_grow (buffer, elem, 2); | |
6924 | } | |
6925 | ||
6926 | buffer_grow_str (buffer, "</raw>\n"); | |
6927 | } | |
6928 | ||
969c39fb MM |
6929 | /* See to_read_btrace target method. */ |
6930 | ||
6931 | static int | |
9accd112 | 6932 | linux_low_read_btrace (struct btrace_target_info *tinfo, struct buffer *buffer, |
add67df8 | 6933 | enum btrace_read_type type) |
9accd112 | 6934 | { |
734b0e4b | 6935 | struct btrace_data btrace; |
9accd112 | 6936 | struct btrace_block *block; |
969c39fb | 6937 | enum btrace_error err; |
9accd112 MM |
6938 | int i; |
6939 | ||
734b0e4b MM |
6940 | btrace_data_init (&btrace); |
6941 | ||
969c39fb MM |
6942 | err = linux_read_btrace (&btrace, tinfo, type); |
6943 | if (err != BTRACE_ERR_NONE) | |
6944 | { | |
6945 | if (err == BTRACE_ERR_OVERFLOW) | |
6946 | buffer_grow_str0 (buffer, "E.Overflow."); | |
6947 | else | |
6948 | buffer_grow_str0 (buffer, "E.Generic Error."); | |
6949 | ||
b20a6524 | 6950 | goto err; |
969c39fb | 6951 | } |
9accd112 | 6952 | |
734b0e4b MM |
6953 | switch (btrace.format) |
6954 | { | |
6955 | case BTRACE_FORMAT_NONE: | |
6956 | buffer_grow_str0 (buffer, "E.No Trace."); | |
b20a6524 | 6957 | goto err; |
734b0e4b MM |
6958 | |
6959 | case BTRACE_FORMAT_BTS: | |
6960 | buffer_grow_str (buffer, "<!DOCTYPE btrace SYSTEM \"btrace.dtd\">\n"); | |
6961 | buffer_grow_str (buffer, "<btrace version=\"1.0\">\n"); | |
9accd112 | 6962 | |
734b0e4b MM |
6963 | for (i = 0; |
6964 | VEC_iterate (btrace_block_s, btrace.variant.bts.blocks, i, block); | |
6965 | i++) | |
6966 | buffer_xml_printf (buffer, "<block begin=\"0x%s\" end=\"0x%s\"/>\n", | |
6967 | paddress (block->begin), paddress (block->end)); | |
9accd112 | 6968 | |
734b0e4b MM |
6969 | buffer_grow_str0 (buffer, "</btrace>\n"); |
6970 | break; | |
6971 | ||
b20a6524 MM |
6972 | case BTRACE_FORMAT_PT: |
6973 | buffer_grow_str (buffer, "<!DOCTYPE btrace SYSTEM \"btrace.dtd\">\n"); | |
6974 | buffer_grow_str (buffer, "<btrace version=\"1.0\">\n"); | |
6975 | buffer_grow_str (buffer, "<pt>\n"); | |
6976 | ||
6977 | linux_low_encode_pt_config (buffer, &btrace.variant.pt.config); | |
9accd112 | 6978 | |
b20a6524 MM |
6979 | linux_low_encode_raw (buffer, btrace.variant.pt.data, |
6980 | btrace.variant.pt.size); | |
6981 | ||
6982 | buffer_grow_str (buffer, "</pt>\n"); | |
6983 | buffer_grow_str0 (buffer, "</btrace>\n"); | |
6984 | break; | |
6985 | ||
6986 | default: | |
6987 | buffer_grow_str0 (buffer, "E.Unsupported Trace Format."); | |
6988 | goto err; | |
734b0e4b | 6989 | } |
969c39fb | 6990 | |
734b0e4b | 6991 | btrace_data_fini (&btrace); |
969c39fb | 6992 | return 0; |
b20a6524 MM |
6993 | |
6994 | err: | |
6995 | btrace_data_fini (&btrace); | |
6996 | return -1; | |
9accd112 | 6997 | } |
f4abbc16 MM |
6998 | |
6999 | /* See to_btrace_conf target method. */ | |
7000 | ||
7001 | static int | |
7002 | linux_low_btrace_conf (const struct btrace_target_info *tinfo, | |
7003 | struct buffer *buffer) | |
7004 | { | |
7005 | const struct btrace_config *conf; | |
7006 | ||
7007 | buffer_grow_str (buffer, "<!DOCTYPE btrace-conf SYSTEM \"btrace-conf.dtd\">\n"); | |
7008 | buffer_grow_str (buffer, "<btrace-conf version=\"1.0\">\n"); | |
7009 | ||
7010 | conf = linux_btrace_conf (tinfo); | |
7011 | if (conf != NULL) | |
7012 | { | |
7013 | switch (conf->format) | |
7014 | { | |
7015 | case BTRACE_FORMAT_NONE: | |
7016 | break; | |
7017 | ||
7018 | case BTRACE_FORMAT_BTS: | |
d33501a5 MM |
7019 | buffer_xml_printf (buffer, "<bts"); |
7020 | buffer_xml_printf (buffer, " size=\"0x%x\"", conf->bts.size); | |
7021 | buffer_xml_printf (buffer, " />\n"); | |
f4abbc16 | 7022 | break; |
b20a6524 MM |
7023 | |
7024 | case BTRACE_FORMAT_PT: | |
7025 | buffer_xml_printf (buffer, "<pt"); | |
7026 | buffer_xml_printf (buffer, " size=\"0x%x\"", conf->pt.size); | |
7027 | buffer_xml_printf (buffer, "/>\n"); | |
7028 | break; | |
f4abbc16 MM |
7029 | } |
7030 | } | |
7031 | ||
7032 | buffer_grow_str0 (buffer, "</btrace-conf>\n"); | |
7033 | return 0; | |
7034 | } | |
9accd112 MM |
7035 | #endif /* HAVE_LINUX_BTRACE */ |
7036 | ||
7b669087 GB |
7037 | /* See nat/linux-nat.h. */ |
7038 | ||
7039 | ptid_t | |
7040 | current_lwp_ptid (void) | |
7041 | { | |
7042 | return ptid_of (current_thread); | |
7043 | } | |
7044 | ||
dd373349 AT |
7045 | /* Implementation of the target_ops method "breakpoint_kind_from_pc". */ |
7046 | ||
7047 | static int | |
7048 | linux_breakpoint_kind_from_pc (CORE_ADDR *pcptr) | |
7049 | { | |
7050 | if (the_low_target.breakpoint_kind_from_pc != NULL) | |
7051 | return (*the_low_target.breakpoint_kind_from_pc) (pcptr); | |
7052 | else | |
1652a986 | 7053 | return default_breakpoint_kind_from_pc (pcptr); |
dd373349 AT |
7054 | } |
7055 | ||
7056 | /* Implementation of the target_ops method "sw_breakpoint_from_kind". */ | |
7057 | ||
7058 | static const gdb_byte * | |
7059 | linux_sw_breakpoint_from_kind (int kind, int *size) | |
7060 | { | |
7061 | gdb_assert (the_low_target.sw_breakpoint_from_kind != NULL); | |
7062 | ||
7063 | return (*the_low_target.sw_breakpoint_from_kind) (kind, size); | |
7064 | } | |
7065 | ||
769ef81f AT |
7066 | /* Implementation of the target_ops method |
7067 | "breakpoint_kind_from_current_state". */ | |
7068 | ||
7069 | static int | |
7070 | linux_breakpoint_kind_from_current_state (CORE_ADDR *pcptr) | |
7071 | { | |
7072 | if (the_low_target.breakpoint_kind_from_current_state != NULL) | |
7073 | return (*the_low_target.breakpoint_kind_from_current_state) (pcptr); | |
7074 | else | |
7075 | return linux_breakpoint_kind_from_pc (pcptr); | |
7076 | } | |
7077 | ||
ce3a066d DJ |
7078 | static struct target_ops linux_target_ops = { |
7079 | linux_create_inferior, | |
c06cbd92 | 7080 | linux_arch_setup, |
ce3a066d DJ |
7081 | linux_attach, |
7082 | linux_kill, | |
6ad8ae5c | 7083 | linux_detach, |
8336d594 | 7084 | linux_mourn, |
444d6139 | 7085 | linux_join, |
ce3a066d DJ |
7086 | linux_thread_alive, |
7087 | linux_resume, | |
7088 | linux_wait, | |
7089 | linux_fetch_registers, | |
7090 | linux_store_registers, | |
90d74c30 | 7091 | linux_prepare_to_access_memory, |
0146f85b | 7092 | linux_done_accessing_memory, |
ce3a066d DJ |
7093 | linux_read_memory, |
7094 | linux_write_memory, | |
2f2893d9 | 7095 | linux_look_up_symbols, |
ef57601b | 7096 | linux_request_interrupt, |
aa691b87 | 7097 | linux_read_auxv, |
802e8e6d | 7098 | linux_supports_z_point_type, |
d993e290 PA |
7099 | linux_insert_point, |
7100 | linux_remove_point, | |
3e572f71 PA |
7101 | linux_stopped_by_sw_breakpoint, |
7102 | linux_supports_stopped_by_sw_breakpoint, | |
7103 | linux_stopped_by_hw_breakpoint, | |
7104 | linux_supports_stopped_by_hw_breakpoint, | |
70b90b91 | 7105 | linux_supports_hardware_single_step, |
e013ee27 OF |
7106 | linux_stopped_by_watchpoint, |
7107 | linux_stopped_data_address, | |
db0dfaa0 LM |
7108 | #if defined(__UCLIBC__) && defined(HAS_NOMMU) \ |
7109 | && defined(PT_TEXT_ADDR) && defined(PT_DATA_ADDR) \ | |
7110 | && defined(PT_TEXT_END_ADDR) | |
52fb6437 | 7111 | linux_read_offsets, |
dae5f5cf DJ |
7112 | #else |
7113 | NULL, | |
7114 | #endif | |
7115 | #ifdef USE_THREAD_DB | |
7116 | thread_db_get_tls_address, | |
7117 | #else | |
7118 | NULL, | |
52fb6437 | 7119 | #endif |
efcbbd14 | 7120 | linux_qxfer_spu, |
59a016f0 | 7121 | hostio_last_error_from_errno, |
07e059b5 | 7122 | linux_qxfer_osdata, |
4aa995e1 | 7123 | linux_xfer_siginfo, |
bd99dc85 PA |
7124 | linux_supports_non_stop, |
7125 | linux_async, | |
7126 | linux_start_non_stop, | |
cdbfd419 | 7127 | linux_supports_multi_process, |
89245bc0 DB |
7128 | linux_supports_fork_events, |
7129 | linux_supports_vfork_events, | |
94585166 | 7130 | linux_supports_exec_events, |
de0d863e | 7131 | linux_handle_new_gdb_connection, |
cdbfd419 | 7132 | #ifdef USE_THREAD_DB |
dc146f7c | 7133 | thread_db_handle_monitor_command, |
cdbfd419 | 7134 | #else |
dc146f7c | 7135 | NULL, |
cdbfd419 | 7136 | #endif |
d26e3629 | 7137 | linux_common_core_of_thread, |
78d85199 | 7138 | linux_read_loadmap, |
219f2f23 PA |
7139 | linux_process_qsupported, |
7140 | linux_supports_tracepoints, | |
7141 | linux_read_pc, | |
8336d594 PA |
7142 | linux_write_pc, |
7143 | linux_thread_stopped, | |
7984d532 | 7144 | NULL, |
711e434b | 7145 | linux_pause_all, |
7984d532 | 7146 | linux_unpause_all, |
fa593d66 | 7147 | linux_stabilize_threads, |
6a271cae | 7148 | linux_install_fast_tracepoint_jump_pad, |
03583c20 UW |
7149 | linux_emit_ops, |
7150 | linux_supports_disable_randomization, | |
405f8e94 | 7151 | linux_get_min_fast_tracepoint_insn_len, |
2268b414 | 7152 | linux_qxfer_libraries_svr4, |
d1feda86 | 7153 | linux_supports_agent, |
9accd112 MM |
7154 | #ifdef HAVE_LINUX_BTRACE |
7155 | linux_supports_btrace, | |
0568462b | 7156 | linux_enable_btrace, |
969c39fb | 7157 | linux_low_disable_btrace, |
9accd112 | 7158 | linux_low_read_btrace, |
f4abbc16 | 7159 | linux_low_btrace_conf, |
9accd112 MM |
7160 | #else |
7161 | NULL, | |
7162 | NULL, | |
7163 | NULL, | |
7164 | NULL, | |
f4abbc16 | 7165 | NULL, |
9accd112 | 7166 | #endif |
c2d6af84 | 7167 | linux_supports_range_stepping, |
e57f1de3 | 7168 | linux_proc_pid_to_exec_file, |
14d2069a GB |
7169 | linux_mntns_open_cloexec, |
7170 | linux_mntns_unlink, | |
7171 | linux_mntns_readlink, | |
dd373349 | 7172 | linux_breakpoint_kind_from_pc, |
79efa585 SM |
7173 | linux_sw_breakpoint_from_kind, |
7174 | linux_proc_tid_get_name, | |
7d00775e AT |
7175 | linux_breakpoint_kind_from_current_state, |
7176 | linux_supports_software_single_step | |
ce3a066d DJ |
7177 | }; |
7178 | ||
0d62e5e8 DJ |
7179 | static void |
7180 | linux_init_signals () | |
7181 | { | |
7182 | /* FIXME drow/2002-06-09: As above, we should check with LinuxThreads | |
7183 | to find what the cancel signal actually is. */ | |
1a981360 | 7184 | #ifndef __ANDROID__ /* Bionic doesn't use SIGRTMIN the way glibc does. */ |
254787d4 | 7185 | signal (__SIGRTMIN+1, SIG_IGN); |
60c3d7b0 | 7186 | #endif |
0d62e5e8 DJ |
7187 | } |
7188 | ||
3aee8918 PA |
7189 | #ifdef HAVE_LINUX_REGSETS |
7190 | void | |
7191 | initialize_regsets_info (struct regsets_info *info) | |
7192 | { | |
7193 | for (info->num_regsets = 0; | |
7194 | info->regsets[info->num_regsets].size >= 0; | |
7195 | info->num_regsets++) | |
7196 | ; | |
3aee8918 PA |
7197 | } |
7198 | #endif | |
7199 | ||
da6d8c04 DJ |
7200 | void |
7201 | initialize_low (void) | |
7202 | { | |
bd99dc85 | 7203 | struct sigaction sigchld_action; |
dd373349 | 7204 | |
bd99dc85 | 7205 | memset (&sigchld_action, 0, sizeof (sigchld_action)); |
ce3a066d | 7206 | set_target_ops (&linux_target_ops); |
dd373349 | 7207 | |
0d62e5e8 | 7208 | linux_init_signals (); |
aa7c7447 | 7209 | linux_ptrace_init_warnings (); |
bd99dc85 PA |
7210 | |
7211 | sigchld_action.sa_handler = sigchld_handler; | |
7212 | sigemptyset (&sigchld_action.sa_mask); | |
7213 | sigchld_action.sa_flags = SA_RESTART; | |
7214 | sigaction (SIGCHLD, &sigchld_action, NULL); | |
3aee8918 PA |
7215 | |
7216 | initialize_low_arch (); | |
89245bc0 DB |
7217 | |
7218 | linux_check_ptrace_features (); | |
da6d8c04 | 7219 | } |