*** empty log message ***
[deliverable/binutils-gdb.git] / gdb / inf-ttrace.c
CommitLineData
eee22bf8
MK
1/* Low-level child interface to ttrace.
2
7b6bb8da 3 Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
0fb0cc75 4 Free Software Foundation, Inc.
eee22bf8
MK
5
6 This file is part of GDB.
7
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
a9762ec7 10 the Free Software Foundation; either version 3 of the License, or
eee22bf8
MK
11 (at your option) any later version.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
a9762ec7 19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
eee22bf8
MK
20
21#include "defs.h"
22
23/* The ttrace(2) system call didn't exist before HP-UX 10.30. Don't
24 try to compile this code unless we have it. */
25#ifdef HAVE_TTRACE
26
27#include "command.h"
28#include "gdbcore.h"
a7be7fa8 29#include "gdbthread.h"
eee22bf8 30#include "inferior.h"
191c4426 31#include "terminal.h"
eee22bf8
MK
32#include "target.h"
33
34#include "gdb_assert.h"
35#include "gdb_string.h"
932936f0 36#include <sys/mman.h>
eee22bf8 37#include <sys/ttrace.h>
438ac09b 38#include <signal.h>
eee22bf8
MK
39
40#include "inf-child.h"
41#include "inf-ttrace.h"
42
932936f0
MK
43\f
44
a7be7fa8
MK
45/* HP-UX uses a threading model where each user-space thread
46 corresponds to a kernel thread. These kernel threads are called
47 lwps. The ttrace(2) interface gives us almost full control over
48 the threads, which makes it very easy to support them in GDB. We
49 identify the threads by process ID and lwp ID. The ttrace(2) also
50 provides us with a thread's user ID (in the `tts_user_tid' member
51 of `ttstate_t') but we don't use that (yet) as it isn't necessary
52 to uniquely label the thread. */
53
54/* Number of active lwps. */
55static int inf_ttrace_num_lwps;
56\f
57
932936f0
MK
58/* On HP-UX versions that have the ttrace(2) system call, we can
59 implement "hardware" watchpoints by fiddling with the protection of
60 pages in the address space that contain the variable being watched.
61 In order to implement this, we keep a dictionary of pages for which
62 we have changed the protection. */
63
64struct inf_ttrace_page
65{
66 CORE_ADDR addr; /* Page address. */
67 int prot; /* Protection. */
68 int refcount; /* Reference count. */
69 struct inf_ttrace_page *next;
70 struct inf_ttrace_page *prev;
71};
72
73struct inf_ttrace_page_dict
74{
75 struct inf_ttrace_page buckets[128];
76 int pagesize; /* Page size. */
77 int count; /* Number of pages in this dictionary. */
78} inf_ttrace_page_dict;
79
60e2c248
JG
80struct inf_ttrace_private_thread_info
81{
82 int dying;
83};
84
a7be7fa8
MK
85/* Number of lwps that are currently in a system call. */
86static int inf_ttrace_num_lwps_in_syscall;
932936f0
MK
87
88/* Flag to indicate whether we should re-enable page protections after
89 the next wait. */
90static int inf_ttrace_reenable_page_protections;
91
92/* Enable system call events for process PID. */
93
94static void
95inf_ttrace_enable_syscall_events (pid_t pid)
96{
97 ttevent_t tte;
98 ttstate_t tts;
99
a7be7fa8 100 gdb_assert (inf_ttrace_num_lwps_in_syscall == 0);
932936f0
MK
101
102 if (ttrace (TT_PROC_GET_EVENT_MASK, pid, 0,
103 (uintptr_t)&tte, sizeof tte, 0) == -1)
e2e0b3e5 104 perror_with_name (("ttrace"));
932936f0
MK
105
106 tte.tte_events |= (TTEVT_SYSCALL_ENTRY | TTEVT_SYSCALL_RETURN);
107
108 if (ttrace (TT_PROC_SET_EVENT_MASK, pid, 0,
109 (uintptr_t)&tte, sizeof tte, 0) == -1)
e2e0b3e5 110 perror_with_name (("ttrace"));
932936f0
MK
111
112 if (ttrace (TT_PROC_GET_FIRST_LWP_STATE, pid, 0,
113 (uintptr_t)&tts, sizeof tts, 0) == -1)
e2e0b3e5 114 perror_with_name (("ttrace"));
932936f0
MK
115
116 if (tts.tts_flags & TTS_INSYSCALL)
a7be7fa8 117 inf_ttrace_num_lwps_in_syscall++;
932936f0
MK
118
119 /* FIXME: Handle multiple threads. */
120}
121
122/* Disable system call events for process PID. */
123
124static void
125inf_ttrace_disable_syscall_events (pid_t pid)
126{
127 ttevent_t tte;
128
129 gdb_assert (inf_ttrace_page_dict.count == 0);
130
131 if (ttrace (TT_PROC_GET_EVENT_MASK, pid, 0,
132 (uintptr_t)&tte, sizeof tte, 0) == -1)
e2e0b3e5 133 perror_with_name (("ttrace"));
932936f0
MK
134
135 tte.tte_events &= ~(TTEVT_SYSCALL_ENTRY | TTEVT_SYSCALL_RETURN);
136
137 if (ttrace (TT_PROC_SET_EVENT_MASK, pid, 0,
138 (uintptr_t)&tte, sizeof tte, 0) == -1)
e2e0b3e5 139 perror_with_name (("ttrace"));
932936f0 140
a7be7fa8 141 inf_ttrace_num_lwps_in_syscall = 0;
932936f0
MK
142}
143
144/* Get information about the page at address ADDR for process PID from
145 the dictionary. */
146
147static struct inf_ttrace_page *
148inf_ttrace_get_page (pid_t pid, CORE_ADDR addr)
149{
150 const int num_buckets = ARRAY_SIZE (inf_ttrace_page_dict.buckets);
151 const int pagesize = inf_ttrace_page_dict.pagesize;
152 int bucket;
153 struct inf_ttrace_page *page;
154
155 bucket = (addr / pagesize) % num_buckets;
156 page = &inf_ttrace_page_dict.buckets[bucket];
157 while (page)
158 {
159 if (page->addr == addr)
160 break;
161
162 page = page->next;
163 }
164
165 return page;
166}
167
168/* Add the page at address ADDR for process PID to the dictionary. */
169
170static struct inf_ttrace_page *
171inf_ttrace_add_page (pid_t pid, CORE_ADDR addr)
172{
173 const int num_buckets = ARRAY_SIZE (inf_ttrace_page_dict.buckets);
174 const int pagesize = inf_ttrace_page_dict.pagesize;
175 int bucket;
176 struct inf_ttrace_page *page;
177 struct inf_ttrace_page *prev = NULL;
178
179 bucket = (addr / pagesize) % num_buckets;
180 page = &inf_ttrace_page_dict.buckets[bucket];
181 while (page)
182 {
183 if (page->addr == addr)
184 break;
185
186 prev = page;
187 page = page->next;
188 }
189
190 if (!page)
191 {
192 int prot;
193
194 if (ttrace (TT_PROC_GET_MPROTECT, pid, 0,
195 addr, 0, (uintptr_t)&prot) == -1)
e2e0b3e5 196 perror_with_name (("ttrace"));
932936f0
MK
197
198 page = XMALLOC (struct inf_ttrace_page);
199 page->addr = addr;
200 page->prot = prot;
201 page->refcount = 0;
202 page->next = NULL;
203
204 page->prev = prev;
205 prev->next = page;
206
207 inf_ttrace_page_dict.count++;
208 if (inf_ttrace_page_dict.count == 1)
209 inf_ttrace_enable_syscall_events (pid);
210
a7be7fa8 211 if (inf_ttrace_num_lwps_in_syscall == 0)
932936f0
MK
212 {
213 if (ttrace (TT_PROC_SET_MPROTECT, pid, 0,
214 addr, pagesize, prot & ~PROT_WRITE) == -1)
e2e0b3e5 215 perror_with_name (("ttrace"));
932936f0
MK
216 }
217 }
218
219 return page;
220}
221
222/* Insert the page at address ADDR of process PID to the dictionary. */
223
224static void
225inf_ttrace_insert_page (pid_t pid, CORE_ADDR addr)
226{
227 struct inf_ttrace_page *page;
228
229 page = inf_ttrace_get_page (pid, addr);
230 if (!page)
231 page = inf_ttrace_add_page (pid, addr);
232
233 page->refcount++;
234}
235
236/* Remove the page at address ADDR of process PID from the dictionary. */
237
238static void
239inf_ttrace_remove_page (pid_t pid, CORE_ADDR addr)
240{
241 const int pagesize = inf_ttrace_page_dict.pagesize;
242 struct inf_ttrace_page *page;
243
244 page = inf_ttrace_get_page (pid, addr);
245 page->refcount--;
246
247 gdb_assert (page->refcount >= 0);
248
249 if (page->refcount == 0)
250 {
a7be7fa8 251 if (inf_ttrace_num_lwps_in_syscall == 0)
932936f0
MK
252 {
253 if (ttrace (TT_PROC_SET_MPROTECT, pid, 0,
254 addr, pagesize, page->prot) == -1)
e2e0b3e5 255 perror_with_name (("ttrace"));
932936f0
MK
256 }
257
258 inf_ttrace_page_dict.count--;
259 if (inf_ttrace_page_dict.count == 0)
260 inf_ttrace_disable_syscall_events (pid);
261
262 page->prev->next = page->next;
263 if (page->next)
264 page->next->prev = page->prev;
265
266 xfree (page);
267 }
268}
269
270/* Mask the bits in PROT from the page protections that are currently
271 in the dictionary for process PID. */
272
273static void
274inf_ttrace_mask_page_protections (pid_t pid, int prot)
275{
276 const int num_buckets = ARRAY_SIZE (inf_ttrace_page_dict.buckets);
277 const int pagesize = inf_ttrace_page_dict.pagesize;
278 int bucket;
279
280 for (bucket = 0; bucket < num_buckets; bucket++)
281 {
282 struct inf_ttrace_page *page;
283
284 page = inf_ttrace_page_dict.buckets[bucket].next;
285 while (page)
286 {
287 if (ttrace (TT_PROC_SET_MPROTECT, pid, 0,
288 page->addr, pagesize, page->prot & ~prot) == -1)
e2e0b3e5 289 perror_with_name (("ttrace"));
932936f0
MK
290
291 page = page->next;
292 }
293 }
294}
295
296/* Write-protect the pages in the dictionary for process PID. */
297
298static void
299inf_ttrace_enable_page_protections (pid_t pid)
300{
301 inf_ttrace_mask_page_protections (pid, PROT_WRITE);
302}
303
304/* Restore the protection of the pages in the dictionary for process
305 PID. */
306
307static void
308inf_ttrace_disable_page_protections (pid_t pid)
309{
310 inf_ttrace_mask_page_protections (pid, 0);
311}
312
313/* Insert a "hardware" watchpoint for LEN bytes at address ADDR of
314 type TYPE. */
315
316static int
0cf6dd15
TJB
317inf_ttrace_insert_watchpoint (CORE_ADDR addr, int len, int type,
318 struct expression *cond)
932936f0
MK
319{
320 const int pagesize = inf_ttrace_page_dict.pagesize;
321 pid_t pid = ptid_get_pid (inferior_ptid);
322 CORE_ADDR page_addr;
323 int num_pages;
324 int page;
325
326 gdb_assert (type == hw_write);
327
328 page_addr = (addr / pagesize) * pagesize;
329 num_pages = (len + pagesize - 1) / pagesize;
330
331 for (page = 0; page < num_pages; page++, page_addr += pagesize)
332 inf_ttrace_insert_page (pid, page_addr);
333
334 return 1;
335}
336
337/* Remove a "hardware" watchpoint for LEN bytes at address ADDR of
338 type TYPE. */
339
340static int
0cf6dd15
TJB
341inf_ttrace_remove_watchpoint (CORE_ADDR addr, int len, int type,
342 struct expression *cond)
932936f0
MK
343{
344 const int pagesize = inf_ttrace_page_dict.pagesize;
345 pid_t pid = ptid_get_pid (inferior_ptid);
346 CORE_ADDR page_addr;
347 int num_pages;
348 int page;
349
350 gdb_assert (type == hw_write);
351
352 page_addr = (addr / pagesize) * pagesize;
353 num_pages = (len + pagesize - 1) / pagesize;
354
355 for (page = 0; page < num_pages; page++, page_addr += pagesize)
356 inf_ttrace_remove_page (pid, page_addr);
357
358 return 1;
359}
360
361static int
362inf_ttrace_can_use_hw_breakpoint (int type, int len, int ot)
363{
364 return (type == bp_hardware_watchpoint);
365}
366
367static int
2a3cdf79 368inf_ttrace_region_ok_for_hw_watchpoint (CORE_ADDR addr, int len)
932936f0
MK
369{
370 return 1;
371}
372
373/* Return non-zero if the current inferior was (potentially) stopped
374 by hitting a "hardware" watchpoint. */
375
376static int
377inf_ttrace_stopped_by_watchpoint (void)
378{
379 pid_t pid = ptid_get_pid (inferior_ptid);
380 lwpid_t lwpid = ptid_get_lwp (inferior_ptid);
381 ttstate_t tts;
382
383 if (inf_ttrace_page_dict.count > 0)
384 {
385 if (ttrace (TT_LWP_GET_STATE, pid, lwpid,
386 (uintptr_t)&tts, sizeof tts, 0) == -1)
e2e0b3e5 387 perror_with_name (("ttrace"));
932936f0
MK
388
389 if (tts.tts_event == TTEVT_SIGNAL
390 && tts.tts_u.tts_signal.tts_signo == SIGBUS)
391 {
392 const int pagesize = inf_ttrace_page_dict.pagesize;
393 void *addr = tts.tts_u.tts_signal.tts_siginfo.si_addr;
394 CORE_ADDR page_addr = ((uintptr_t)addr / pagesize) * pagesize;
395
396 if (inf_ttrace_get_page (pid, page_addr))
397 return 1;
398 }
399 }
400
401 return 0;
402}
403\f
eee22bf8 404
b2a4db28
MK
405/* When tracking a vfork(2), we cannot detach from the parent until
406 after the child has called exec(3) or has exited. If we are still
407 attached to the parent, this variable will be set to the process ID
408 of the parent. Otherwise it will be set to zero. */
409static pid_t inf_ttrace_vfork_ppid = -1;
410
411static int
ee057212 412inf_ttrace_follow_fork (struct target_ops *ops, int follow_child)
b2a4db28
MK
413{
414 pid_t pid, fpid;
415 lwpid_t lwpid, flwpid;
416 ttstate_t tts;
e58b0e63
PA
417 struct thread_info *tp = inferior_thread ();
418
419 gdb_assert (tp->pending_follow.kind == TARGET_WAITKIND_FORKED
420 || tp->pending_follow.kind == TARGET_WAITKIND_VFORKED);
421
422 pid = ptid_get_pid (inferior_ptid);
423 lwpid = ptid_get_lwp (inferior_ptid);
b2a4db28
MK
424
425 /* Get all important details that core GDB doesn't (and shouldn't)
426 know about. */
427 if (ttrace (TT_LWP_GET_STATE, pid, lwpid,
428 (uintptr_t)&tts, sizeof tts, 0) == -1)
429 perror_with_name (("ttrace"));
430
431 gdb_assert (tts.tts_event == TTEVT_FORK || tts.tts_event == TTEVT_VFORK);
432
433 if (tts.tts_u.tts_fork.tts_isparent)
434 {
435 pid = tts.tts_pid;
436 lwpid = tts.tts_lwpid;
437 fpid = tts.tts_u.tts_fork.tts_fpid;
438 flwpid = tts.tts_u.tts_fork.tts_flwpid;
439 }
440 else
441 {
442 pid = tts.tts_u.tts_fork.tts_fpid;
443 lwpid = tts.tts_u.tts_fork.tts_flwpid;
444 fpid = tts.tts_pid;
445 flwpid = tts.tts_lwpid;
446 }
447
448 if (follow_child)
449 {
77435e4c 450 struct inferior *inf;
191c4426
PA
451 struct inferior *parent_inf;
452
453 parent_inf = find_inferior_pid (pid);
77435e4c 454
b2a4db28 455 inferior_ptid = ptid_build (fpid, flwpid, 0);
77435e4c 456 inf = add_inferior (fpid);
191c4426 457 inf->attach_flag = parent_inf->attach_flag;
6c95b8df
PA
458 inf->pspace = parent_inf->pspace;
459 inf->aspace = parent_inf->aspace;
191c4426 460 copy_terminal_info (inf, parent_inf);
b2a4db28
MK
461 detach_breakpoints (pid);
462
463 target_terminal_ours ();
464 fprintf_unfiltered (gdb_stdlog, _("\
465Attaching after fork to child process %ld.\n"), (long)fpid);
466 }
467 else
468 {
469 inferior_ptid = ptid_build (pid, lwpid, 0);
470 detach_breakpoints (fpid);
471
472 target_terminal_ours ();
473 fprintf_unfiltered (gdb_stdlog, _("\
474Detaching after fork from child process %ld.\n"), (long)fpid);
475 }
476
477 if (tts.tts_event == TTEVT_VFORK)
478 {
479 gdb_assert (!tts.tts_u.tts_fork.tts_isparent);
480
481 if (follow_child)
482 {
483 /* We can't detach from the parent yet. */
484 inf_ttrace_vfork_ppid = pid;
485
486 reattach_breakpoints (fpid);
487 }
488 else
489 {
490 if (ttrace (TT_PROC_DETACH, fpid, 0, 0, 0, 0) == -1)
491 perror_with_name (("ttrace"));
492
493 /* Wait till we get the TTEVT_VFORK event in the parent.
494 This indicates that the child has called exec(3) or has
495 exited and that the parent is ready to be traced again. */
496 if (ttrace_wait (pid, lwpid, TTRACE_WAITOK, &tts, sizeof tts) == -1)
497 perror_with_name (("ttrace_wait"));
498 gdb_assert (tts.tts_event == TTEVT_VFORK);
499 gdb_assert (tts.tts_u.tts_fork.tts_isparent);
500
501 reattach_breakpoints (pid);
502 }
503 }
504 else
505 {
506 gdb_assert (tts.tts_u.tts_fork.tts_isparent);
507
508 if (follow_child)
509 {
510 if (ttrace (TT_PROC_DETACH, pid, 0, 0, 0, 0) == -1)
511 perror_with_name (("ttrace"));
512 }
513 else
514 {
515 if (ttrace (TT_PROC_DETACH, fpid, 0, 0, 0, 0) == -1)
516 perror_with_name (("ttrace"));
517 }
518 }
519
520 if (follow_child)
521 {
2935f27f
PA
522 struct thread_info *ti;
523
b2a4db28 524 /* The child will start out single-threaded. */
2935f27f 525 inf_ttrace_num_lwps = 1;
b2a4db28
MK
526 inf_ttrace_num_lwps_in_syscall = 0;
527
2935f27f
PA
528 /* Delete parent. */
529 delete_thread_silent (ptid_build (pid, lwpid, 0));
7f9f62ba 530 detach_inferior (pid);
2935f27f 531
7f9f62ba 532 /* Add child thread. inferior_ptid was already set above. */
2935f27f
PA
533 ti = add_thread_silent (inferior_ptid);
534 ti->private =
535 xmalloc (sizeof (struct inf_ttrace_private_thread_info));
536 memset (ti->private, 0,
537 sizeof (struct inf_ttrace_private_thread_info));
b2a4db28
MK
538 }
539
540 return 0;
541}
542\f
543
eee22bf8
MK
544/* File descriptors for pipes used as semaphores during initial
545 startup of an inferior. */
546static int inf_ttrace_pfd1[2];
547static int inf_ttrace_pfd2[2];
548
549static void
550do_cleanup_pfds (void *dummy)
551{
552 close (inf_ttrace_pfd1[0]);
553 close (inf_ttrace_pfd1[1]);
554 close (inf_ttrace_pfd2[0]);
555 close (inf_ttrace_pfd2[1]);
556}
557
558static void
559inf_ttrace_prepare (void)
560{
561 if (pipe (inf_ttrace_pfd1) == -1)
a3f17187 562 perror_with_name (("pipe"));
eee22bf8
MK
563
564 if (pipe (inf_ttrace_pfd2) == -1)
565 {
566 close (inf_ttrace_pfd1[0]);
567 close (inf_ttrace_pfd2[0]);
a3f17187 568 perror_with_name (("pipe"));
eee22bf8
MK
569 }
570}
571
572/* Prepare to be traced. */
573
574static void
575inf_ttrace_me (void)
576{
577 struct cleanup *old_chain = make_cleanup (do_cleanup_pfds, 0);
578 char c;
579
580 /* "Trace me, Dr. Memory!" */
581 if (ttrace (TT_PROC_SETTRC, 0, 0, 0, TT_VERSION, 0) == -1)
e2e0b3e5 582 perror_with_name (("ttrace"));
eee22bf8
MK
583
584 /* Tell our parent that we are ready to be traced. */
585 if (write (inf_ttrace_pfd1[1], &c, sizeof c) != sizeof c)
e2e0b3e5 586 perror_with_name (("write"));
eee22bf8
MK
587
588 /* Wait until our parent has set the initial event mask. */
589 if (read (inf_ttrace_pfd2[0], &c, sizeof c) != sizeof c)
e2e0b3e5 590 perror_with_name (("read"));
eee22bf8
MK
591
592 do_cleanups (old_chain);
593}
594
595/* Start tracing PID. */
596
597static void
28439f5e 598inf_ttrace_him (struct target_ops *ops, int pid)
eee22bf8
MK
599{
600 struct cleanup *old_chain = make_cleanup (do_cleanup_pfds, 0);
601 ttevent_t tte;
eee22bf8
MK
602 char c;
603
604 /* Wait until our child is ready to be traced. */
605 if (read (inf_ttrace_pfd1[0], &c, sizeof c) != sizeof c)
e2e0b3e5 606 perror_with_name (("read"));
eee22bf8
MK
607
608 /* Set the initial event mask. */
609 memset (&tte, 0, sizeof (tte));
b2a4db28 610 tte.tte_events |= TTEVT_EXEC | TTEVT_EXIT | TTEVT_FORK | TTEVT_VFORK;
a7be7fa8 611 tte.tte_events |= TTEVT_LWP_CREATE | TTEVT_LWP_EXIT | TTEVT_LWP_TERMINATE;
7ba0e0c2
MK
612#ifdef TTEVT_BPT_SSTEP
613 tte.tte_events |= TTEVT_BPT_SSTEP;
614#endif
b2a4db28 615 tte.tte_opts |= TTEO_PROC_INHERIT;
eee22bf8
MK
616 if (ttrace (TT_PROC_SET_EVENT_MASK, pid, 0,
617 (uintptr_t)&tte, sizeof tte, 0) == -1)
e2e0b3e5 618 perror_with_name (("ttrace"));
eee22bf8
MK
619
620 /* Tell our child that we have set the initial event mask. */
621 if (write (inf_ttrace_pfd2[1], &c, sizeof c) != sizeof c)
e2e0b3e5 622 perror_with_name (("write"));
eee22bf8
MK
623
624 do_cleanups (old_chain);
625
28439f5e 626 push_target (ops);
eee22bf8 627
eee22bf8
MK
628 /* START_INFERIOR_TRAPS_EXPECTED is defined in inferior.h, and will
629 be 1 or 2 depending on whether we're starting without or with a
630 shell. */
631 startup_inferior (START_INFERIOR_TRAPS_EXPECTED);
632
633 /* On some targets, there must be some explicit actions taken after
634 the inferior has been started up. */
635 target_post_startup_inferior (pid_to_ptid (pid));
636}
637
638static void
136d6dae
VP
639inf_ttrace_create_inferior (struct target_ops *ops, char *exec_file,
640 char *allargs, char **env, int from_tty)
eee22bf8 641{
28439f5e
PA
642 int pid;
643
a7be7fa8
MK
644 gdb_assert (inf_ttrace_num_lwps == 0);
645 gdb_assert (inf_ttrace_num_lwps_in_syscall == 0);
932936f0 646 gdb_assert (inf_ttrace_page_dict.count == 0);
932936f0 647 gdb_assert (inf_ttrace_reenable_page_protections == 0);
b2a4db28 648 gdb_assert (inf_ttrace_vfork_ppid == -1);
932936f0 649
28439f5e
PA
650 pid = fork_inferior (exec_file, allargs, env, inf_ttrace_me, NULL,
651 inf_ttrace_prepare, NULL);
652
653 inf_ttrace_him (ops, pid);
eee22bf8
MK
654}
655
eee22bf8 656static void
136d6dae 657inf_ttrace_mourn_inferior (struct target_ops *ops)
eee22bf8 658{
932936f0
MK
659 const int num_buckets = ARRAY_SIZE (inf_ttrace_page_dict.buckets);
660 int bucket;
661
a7be7fa8
MK
662 inf_ttrace_num_lwps = 0;
663 inf_ttrace_num_lwps_in_syscall = 0;
932936f0
MK
664
665 for (bucket = 0; bucket < num_buckets; bucket++)
666 {
667 struct inf_ttrace_page *page;
668 struct inf_ttrace_page *next;
669
670 page = inf_ttrace_page_dict.buckets[bucket].next;
671 while (page)
672 {
673 next = page->next;
674 xfree (page);
675 page = next;
676 }
677 }
678 inf_ttrace_page_dict.count = 0;
679
28439f5e 680 unpush_target (ops);
eee22bf8
MK
681 generic_mourn_inferior ();
682}
683
684static void
136d6dae 685inf_ttrace_attach (struct target_ops *ops, char *args, int from_tty)
eee22bf8
MK
686{
687 char *exec_file;
688 pid_t pid;
932936f0 689 ttevent_t tte;
181e7f93 690 struct inferior *inf;
eee22bf8 691
74164c56 692 pid = parse_pid_to_attach (args);
eee22bf8
MK
693
694 if (pid == getpid ()) /* Trying to masturbate? */
8a3fe4f8 695 error (_("I refuse to debug myself!"));
eee22bf8
MK
696
697 if (from_tty)
698 {
346e281c 699 exec_file = get_exec_file (0);
eee22bf8
MK
700
701 if (exec_file)
a3f17187 702 printf_unfiltered (_("Attaching to program: %s, %s\n"), exec_file,
eee22bf8
MK
703 target_pid_to_str (pid_to_ptid (pid)));
704 else
a3f17187 705 printf_unfiltered (_("Attaching to %s\n"),
eee22bf8
MK
706 target_pid_to_str (pid_to_ptid (pid)));
707
708 gdb_flush (gdb_stdout);
709 }
710
a7be7fa8
MK
711 gdb_assert (inf_ttrace_num_lwps == 0);
712 gdb_assert (inf_ttrace_num_lwps_in_syscall == 0);
b2a4db28 713 gdb_assert (inf_ttrace_vfork_ppid == -1);
a7be7fa8 714
eee22bf8 715 if (ttrace (TT_PROC_ATTACH, pid, 0, TT_KILL_ON_EXIT, TT_VERSION, 0) == -1)
e2e0b3e5 716 perror_with_name (("ttrace"));
eee22bf8 717
6c95b8df
PA
718 inf = current_inferior ();
719 inferior_appeared (inf, pid);
181e7f93 720 inf->attach_flag = 1;
7f9f62ba 721
932936f0 722 /* Set the initial event mask. */
932936f0 723 memset (&tte, 0, sizeof (tte));
b2a4db28 724 tte.tte_events |= TTEVT_EXEC | TTEVT_EXIT | TTEVT_FORK | TTEVT_VFORK;
a7be7fa8 725 tte.tte_events |= TTEVT_LWP_CREATE | TTEVT_LWP_EXIT | TTEVT_LWP_TERMINATE;
7ba0e0c2
MK
726#ifdef TTEVT_BPT_SSTEP
727 tte.tte_events |= TTEVT_BPT_SSTEP;
728#endif
b2a4db28 729 tte.tte_opts |= TTEO_PROC_INHERIT;
932936f0
MK
730 if (ttrace (TT_PROC_SET_EVENT_MASK, pid, 0,
731 (uintptr_t)&tte, sizeof tte, 0) == -1)
e2e0b3e5 732 perror_with_name (("ttrace"));
932936f0 733
28439f5e 734 push_target (ops);
2935f27f
PA
735
736 /* We'll bump inf_ttrace_num_lwps up and add the private data to the
737 thread as soon as we get to inf_ttrace_wait. At this point, we
738 don't have lwpid info yet. */
739 inferior_ptid = pid_to_ptid (pid);
740 add_thread_silent (inferior_ptid);
eee22bf8
MK
741}
742
743static void
136d6dae 744inf_ttrace_detach (struct target_ops *ops, char *args, int from_tty)
eee22bf8 745{
eee22bf8 746 pid_t pid = ptid_get_pid (inferior_ptid);
5d426ff1 747 int sig = 0;
eee22bf8
MK
748
749 if (from_tty)
750 {
751 char *exec_file = get_exec_file (0);
752 if (exec_file == 0)
753 exec_file = "";
a3f17187 754 printf_unfiltered (_("Detaching from program: %s, %s\n"), exec_file,
eee22bf8
MK
755 target_pid_to_str (pid_to_ptid (pid)));
756 gdb_flush (gdb_stdout);
757 }
758 if (args)
759 sig = atoi (args);
760
761 /* ??? The HP-UX 11.0 ttrace(2) manual page doesn't mention that we
762 can pass a signal number here. Does this really work? */
763 if (ttrace (TT_PROC_DETACH, pid, 0, 0, sig, 0) == -1)
e2e0b3e5 764 perror_with_name (("ttrace"));
eee22bf8 765
b2a4db28
MK
766 if (inf_ttrace_vfork_ppid != -1)
767 {
768 if (ttrace (TT_PROC_DETACH, inf_ttrace_vfork_ppid, 0, 0, 0, 0) == -1)
769 perror_with_name (("ttrace"));
770 inf_ttrace_vfork_ppid = -1;
771 }
772
a7be7fa8
MK
773 inf_ttrace_num_lwps = 0;
774 inf_ttrace_num_lwps_in_syscall = 0;
932936f0 775
932936f0 776 inferior_ptid = null_ptid;
7f9f62ba
PA
777 detach_inferior (pid);
778
28439f5e 779 unpush_target (ops);
eee22bf8
MK
780}
781
346e281c 782static void
7d85a9c0 783inf_ttrace_kill (struct target_ops *ops)
346e281c
MK
784{
785 pid_t pid = ptid_get_pid (inferior_ptid);
786
787 if (pid == 0)
788 return;
789
790 if (ttrace (TT_PROC_EXIT, pid, 0, 0, 0, 0) == -1)
791 perror_with_name (("ttrace"));
792 /* ??? Is it necessary to call ttrace_wait() here? */
793
794 if (inf_ttrace_vfork_ppid != -1)
795 {
796 if (ttrace (TT_PROC_DETACH, inf_ttrace_vfork_ppid, 0, 0, 0, 0) == -1)
797 perror_with_name (("ttrace"));
798 inf_ttrace_vfork_ppid = -1;
799 }
800
801 target_mourn_inferior ();
802}
803
438ac09b
PA
804/* Check is a dying thread is dead by now, and delete it from GDBs
805 thread list if so. */
7ba0e0c2 806static int
438ac09b 807inf_ttrace_delete_dead_threads_callback (struct thread_info *info, void *arg)
7ba0e0c2 808{
438ac09b
PA
809 lwpid_t lwpid;
810 struct inf_ttrace_private_thread_info *p;
7ba0e0c2 811
438ac09b
PA
812 if (is_exited (info->ptid))
813 return 0;
814
815 lwpid = ptid_get_lwp (info->ptid);
816 p = (struct inf_ttrace_private_thread_info *) info->private;
817
818 /* Check if an lwp that was dying is still there or not. */
819 if (p->dying && (kill (lwpid, 0) == -1))
820 /* It's gone now. */
821 delete_thread (info->ptid);
7ba0e0c2
MK
822
823 return 0;
824}
825
438ac09b
PA
826/* Resume the lwp pointed to by INFO, with REQUEST, and pass it signal
827 SIG. */
828
829static void
830inf_ttrace_resume_lwp (struct thread_info *info, ttreq_t request, int sig)
831{
832 pid_t pid = ptid_get_pid (info->ptid);
833 lwpid_t lwpid = ptid_get_lwp (info->ptid);
834
835 if (ttrace (request, pid, lwpid, TT_NOPC, sig, 0) == -1)
836 {
837 struct inf_ttrace_private_thread_info *p
838 = (struct inf_ttrace_private_thread_info *) info->private;
839 if (p->dying && errno == EPROTO)
840 /* This is expected, it means the dying lwp is really gone
841 by now. If ttrace had an event to inform the debugger
842 the lwp is really gone, this wouldn't be needed. */
843 delete_thread (info->ptid);
844 else
845 /* This was really unexpected. */
846 perror_with_name (("ttrace"));
847 }
848}
849
850/* Callback for iterate_over_threads. */
851
60e2c248 852static int
438ac09b 853inf_ttrace_resume_callback (struct thread_info *info, void *arg)
60e2c248 854{
438ac09b
PA
855 if (!ptid_equal (info->ptid, inferior_ptid) && !is_exited (info->ptid))
856 inf_ttrace_resume_lwp (info, TT_LWP_CONTINUE, 0);
857
60e2c248
JG
858 return 0;
859}
860
eee22bf8 861static void
28439f5e
PA
862inf_ttrace_resume (struct target_ops *ops,
863 ptid_t ptid, int step, enum target_signal signal)
eee22bf8 864{
438ac09b 865 int resume_all;
eee22bf8
MK
866 ttreq_t request = step ? TT_LWP_SINGLE : TT_LWP_CONTINUE;
867 int sig = target_signal_to_host (signal);
438ac09b 868 struct thread_info *info;
eee22bf8 869
438ac09b
PA
870 /* A specific PTID means `step only this process id'. */
871 resume_all = (ptid_equal (ptid, minus_one_ptid));
eee22bf8 872
438ac09b
PA
873 /* If resuming all threads, it's the current thread that should be
874 handled specially. */
875 if (resume_all)
876 ptid = inferior_ptid;
eee22bf8 877
e09875d4 878 info = find_thread_ptid (ptid);
438ac09b
PA
879 inf_ttrace_resume_lwp (info, request, sig);
880
881 if (resume_all)
882 /* Let all the other threads run too. */
883 iterate_over_threads (inf_ttrace_resume_callback, NULL);
eee22bf8
MK
884}
885
886static ptid_t
117de6a9 887inf_ttrace_wait (struct target_ops *ops,
47608cb1 888 ptid_t ptid, struct target_waitstatus *ourstatus, int options)
eee22bf8
MK
889{
890 pid_t pid = ptid_get_pid (ptid);
891 lwpid_t lwpid = ptid_get_lwp (ptid);
892 ttstate_t tts;
60e2c248 893 struct thread_info *ti;
3a3e9ee3 894 ptid_t related_ptid;
eee22bf8 895
932936f0 896 /* Until proven otherwise. */
a7be7fa8 897 ourstatus->kind = TARGET_WAITKIND_SPURIOUS;
eee22bf8
MK
898
899 if (pid == -1)
b2a4db28 900 pid = lwpid = 0;
eee22bf8 901
b2a4db28 902 gdb_assert (pid != 0 || lwpid == 0);
eee22bf8
MK
903
904 do
905 {
906 set_sigint_trap ();
eee22bf8
MK
907
908 if (ttrace_wait (pid, lwpid, TTRACE_WAITOK, &tts, sizeof tts) == -1)
a3f17187 909 perror_with_name (("ttrace_wait"));
eee22bf8 910
b2a4db28
MK
911 if (tts.tts_event == TTEVT_VFORK && tts.tts_u.tts_fork.tts_isparent)
912 {
913 if (inf_ttrace_vfork_ppid != -1)
914 {
915 gdb_assert (inf_ttrace_vfork_ppid == tts.tts_pid);
916
917 if (ttrace (TT_PROC_DETACH, tts.tts_pid, 0, 0, 0, 0) == -1)
918 perror_with_name (("ttrace"));
919 inf_ttrace_vfork_ppid = -1;
920 }
921
922 tts.tts_event = TTEVT_NONE;
923 }
924
eee22bf8
MK
925 clear_sigint_trap ();
926 }
927 while (tts.tts_event == TTEVT_NONE);
928
932936f0
MK
929 /* Now that we've waited, we can re-enable the page protections. */
930 if (inf_ttrace_reenable_page_protections)
931 {
a7be7fa8 932 gdb_assert (inf_ttrace_num_lwps_in_syscall == 0);
932936f0
MK
933 inf_ttrace_enable_page_protections (tts.tts_pid);
934 inf_ttrace_reenable_page_protections = 0;
935 }
936
a7be7fa8
MK
937 ptid = ptid_build (tts.tts_pid, tts.tts_lwpid, 0);
938
2935f27f
PA
939 if (inf_ttrace_num_lwps == 0)
940 {
941 struct thread_info *ti;
942
943 inf_ttrace_num_lwps = 1;
944
945 /* This is the earliest we hear about the lwp member of
946 INFERIOR_PTID, after an attach or fork_inferior. */
947 gdb_assert (ptid_get_lwp (inferior_ptid) == 0);
948
949 /* We haven't set the private member on the main thread yet. Do
950 it now. */
e09875d4 951 ti = find_thread_ptid (inferior_ptid);
2935f27f
PA
952 gdb_assert (ti != NULL && ti->private == NULL);
953 ti->private =
954 xmalloc (sizeof (struct inf_ttrace_private_thread_info));
955 memset (ti->private, 0,
956 sizeof (struct inf_ttrace_private_thread_info));
957
958 /* Notify the core that this ptid changed. This changes
959 inferior_ptid as well. */
960 thread_change_ptid (inferior_ptid, ptid);
961 }
962
eee22bf8
MK
963 switch (tts.tts_event)
964 {
7ba0e0c2
MK
965#ifdef TTEVT_BPT_SSTEP
966 case TTEVT_BPT_SSTEP:
967 /* Make it look like a breakpoint. */
968 ourstatus->kind = TARGET_WAITKIND_STOPPED;
969 ourstatus->value.sig = TARGET_SIGNAL_TRAP;
970 break;
971#endif
972
eee22bf8 973 case TTEVT_EXEC:
5d426ff1
MK
974 ourstatus->kind = TARGET_WAITKIND_EXECD;
975 ourstatus->value.execd_pathname =
976 xmalloc (tts.tts_u.tts_exec.tts_pathlen + 1);
977 if (ttrace (TT_PROC_GET_PATHNAME, tts.tts_pid, 0,
978 (uintptr_t)ourstatus->value.execd_pathname,
979 tts.tts_u.tts_exec.tts_pathlen, 0) == -1)
980 perror_with_name (("ttrace"));
981 ourstatus->value.execd_pathname[tts.tts_u.tts_exec.tts_pathlen] = 0;
25b22b0a
PA
982
983 /* At this point, all inserted breakpoints are gone. Doing this
984 as soon as we detect an exec prevents the badness of deleting
985 a breakpoint writing the current "shadow contents" to lift
986 the bp. That shadow is NOT valid after an exec. */
987 mark_breakpoints_out ();
eee22bf8 988 break;
932936f0 989
eee22bf8
MK
990 case TTEVT_EXIT:
991 store_waitstatus (ourstatus, tts.tts_u.tts_exit.tts_exitcode);
a7be7fa8
MK
992 inf_ttrace_num_lwps = 0;
993 break;
994
b2a4db28 995 case TTEVT_FORK:
3a3e9ee3
PA
996 related_ptid = ptid_build (tts.tts_u.tts_fork.tts_fpid,
997 tts.tts_u.tts_fork.tts_flwpid, 0);
998
b2a4db28 999 ourstatus->kind = TARGET_WAITKIND_FORKED;
3a3e9ee3 1000 ourstatus->value.related_pid = related_ptid;
b2a4db28
MK
1001
1002 /* Make sure the other end of the fork is stopped too. */
1003 if (ttrace_wait (tts.tts_u.tts_fork.tts_fpid,
1004 tts.tts_u.tts_fork.tts_flwpid,
1005 TTRACE_WAITOK, &tts, sizeof tts) == -1)
1006 perror_with_name (("ttrace_wait"));
1007
1008 gdb_assert (tts.tts_event == TTEVT_FORK);
1009 if (tts.tts_u.tts_fork.tts_isparent)
1010 {
3a3e9ee3
PA
1011 related_ptid = ptid_build (tts.tts_u.tts_fork.tts_fpid,
1012 tts.tts_u.tts_fork.tts_flwpid, 0);
b2a4db28 1013 ptid = ptid_build (tts.tts_pid, tts.tts_lwpid, 0);
3a3e9ee3 1014 ourstatus->value.related_pid = related_ptid;
b2a4db28
MK
1015 }
1016 break;
1017
1018 case TTEVT_VFORK:
1019 gdb_assert (!tts.tts_u.tts_fork.tts_isparent);
1020
3a3e9ee3
PA
1021 related_ptid = ptid_build (tts.tts_u.tts_fork.tts_fpid,
1022 tts.tts_u.tts_fork.tts_flwpid, 0);
1023
b2a4db28 1024 ourstatus->kind = TARGET_WAITKIND_VFORKED;
3a3e9ee3 1025 ourstatus->value.related_pid = related_ptid;
b2a4db28
MK
1026
1027 /* HACK: To avoid touching the parent during the vfork, switch
1028 away from it. */
1029 inferior_ptid = ptid;
1030 break;
1031
a7be7fa8
MK
1032 case TTEVT_LWP_CREATE:
1033 lwpid = tts.tts_u.tts_thread.tts_target_lwpid;
1034 ptid = ptid_build (tts.tts_pid, lwpid, 0);
60e2c248
JG
1035 ti = add_thread (ptid);
1036 ti->private =
1037 xmalloc (sizeof (struct inf_ttrace_private_thread_info));
1038 memset (ti->private, 0,
1039 sizeof (struct inf_ttrace_private_thread_info));
a7be7fa8
MK
1040 inf_ttrace_num_lwps++;
1041 ptid = ptid_build (tts.tts_pid, tts.tts_lwpid, 0);
62a93fa9
PA
1042 /* Let the lwp_create-caller thread continue. */
1043 ttrace (TT_LWP_CONTINUE, ptid_get_pid (ptid),
1044 ptid_get_lwp (ptid), TT_NOPC, 0, 0);
1045 /* Return without stopping the whole process. */
1046 ourstatus->kind = TARGET_WAITKIND_IGNORE;
1047 return ptid;
a7be7fa8
MK
1048
1049 case TTEVT_LWP_EXIT:
17faa917
DJ
1050 if (print_thread_events)
1051 printf_unfiltered (_("[%s exited]\n"), target_pid_to_str (ptid));
e09875d4 1052 ti = find_thread_ptid (ptid);
60e2c248
JG
1053 gdb_assert (ti != NULL);
1054 ((struct inf_ttrace_private_thread_info *)ti->private)->dying = 1;
a7be7fa8 1055 inf_ttrace_num_lwps--;
62a93fa9 1056 /* Let the thread really exit. */
60e2c248
JG
1057 ttrace (TT_LWP_CONTINUE, ptid_get_pid (ptid),
1058 ptid_get_lwp (ptid), TT_NOPC, 0, 0);
62a93fa9
PA
1059 /* Return without stopping the whole process. */
1060 ourstatus->kind = TARGET_WAITKIND_IGNORE;
1061 return ptid;
a7be7fa8
MK
1062
1063 case TTEVT_LWP_TERMINATE:
1064 lwpid = tts.tts_u.tts_thread.tts_target_lwpid;
1065 ptid = ptid_build (tts.tts_pid, lwpid, 0);
62a93fa9 1066 if (print_thread_events)
b861ac81 1067 printf_unfiltered(_("[%s has been terminated]\n"),
62a93fa9 1068 target_pid_to_str (ptid));
e09875d4 1069 ti = find_thread_ptid (ptid);
60e2c248
JG
1070 gdb_assert (ti != NULL);
1071 ((struct inf_ttrace_private_thread_info *)ti->private)->dying = 1;
a7be7fa8 1072 inf_ttrace_num_lwps--;
62a93fa9
PA
1073
1074 /* Resume the lwp_terminate-caller thread. */
a7be7fa8 1075 ptid = ptid_build (tts.tts_pid, tts.tts_lwpid, 0);
62a93fa9
PA
1076 ttrace (TT_LWP_CONTINUE, ptid_get_pid (ptid),
1077 ptid_get_lwp (ptid), TT_NOPC, 0, 0);
1078 /* Return without stopping the whole process. */
1079 ourstatus->kind = TARGET_WAITKIND_IGNORE;
1080 return ptid;
932936f0 1081
eee22bf8
MK
1082 case TTEVT_SIGNAL:
1083 ourstatus->kind = TARGET_WAITKIND_STOPPED;
1084 ourstatus->value.sig =
1085 target_signal_from_host (tts.tts_u.tts_signal.tts_signo);
1086 break;
932936f0
MK
1087
1088 case TTEVT_SYSCALL_ENTRY:
1089 gdb_assert (inf_ttrace_reenable_page_protections == 0);
a7be7fa8
MK
1090 inf_ttrace_num_lwps_in_syscall++;
1091 if (inf_ttrace_num_lwps_in_syscall == 1)
932936f0
MK
1092 {
1093 /* A thread has just entered a system call. Disable any
1094 page protections as the kernel can't deal with them. */
1095 inf_ttrace_disable_page_protections (tts.tts_pid);
1096 }
1097 ourstatus->kind = TARGET_WAITKIND_SYSCALL_ENTRY;
01dedca2 1098 ourstatus->value.syscall_number = tts.tts_scno;
932936f0
MK
1099 break;
1100
1101 case TTEVT_SYSCALL_RETURN:
a7be7fa8 1102 if (inf_ttrace_num_lwps_in_syscall > 0)
932936f0
MK
1103 {
1104 /* If the last thread has just left the system call, this
1105 would be a logical place to re-enable the page
1106 protections, but that doesn't work. We can't re-enable
1107 them until we've done another wait. */
1108 inf_ttrace_reenable_page_protections =
a7be7fa8
MK
1109 (inf_ttrace_num_lwps_in_syscall == 1);
1110 inf_ttrace_num_lwps_in_syscall--;
932936f0
MK
1111 }
1112 ourstatus->kind = TARGET_WAITKIND_SYSCALL_RETURN;
01dedca2 1113 ourstatus->value.syscall_number = tts.tts_scno;
932936f0 1114 break;
a7be7fa8
MK
1115
1116 default:
1117 gdb_assert (!"Unexpected ttrace event");
1118 break;
eee22bf8
MK
1119 }
1120
1121 /* Make sure all threads within the process are stopped. */
1122 if (ttrace (TT_PROC_STOP, tts.tts_pid, 0, 0, 0, 0) == -1)
e2e0b3e5 1123 perror_with_name (("ttrace"));
eee22bf8 1124
438ac09b
PA
1125 /* Now that the whole process is stopped, check if any dying thread
1126 is really dead by now. If a dying thread is still alive, it will
1127 be stopped too, and will still show up in `info threads', tagged
1128 with "(Exiting)". We could make `info threads' prune dead
1129 threads instead via inf_ttrace_thread_alive, but doing this here
1130 has the advantage that a frontend is notificed sooner of thread
1131 exits. Note that a dying lwp is still alive, it still has to be
1132 resumed, like any other lwp. */
1133 iterate_over_threads (inf_ttrace_delete_dead_threads_callback, NULL);
1134
a7be7fa8 1135 return ptid;
eee22bf8
MK
1136}
1137
1138/* Transfer LEN bytes from ADDR in the inferior's memory into READBUF,
1139 and transfer LEN bytes from WRITEBUF into the inferior's memory at
1140 ADDR. Either READBUF or WRITEBUF may be null, in which case the
1141 corresponding transfer doesn't happen. Return the number of bytes
1142 actually transferred (which may be zero if an error occurs). */
1143
1144static LONGEST
1145inf_ttrace_xfer_memory (CORE_ADDR addr, ULONGEST len,
1146 void *readbuf, const void *writebuf)
1147{
1148 pid_t pid = ptid_get_pid (inferior_ptid);
1149
1150 /* HP-UX treats text space and data space differently. GDB however,
1151 doesn't really know the difference. Therefore we try both. Try
1152 text space before data space though because when we're writing
1153 into text space the instruction cache might need to be flushed. */
1154
1155 if (readbuf
1156 && ttrace (TT_PROC_RDTEXT, pid, 0, addr, len, (uintptr_t)readbuf) == -1
1157 && ttrace (TT_PROC_RDDATA, pid, 0, addr, len, (uintptr_t)readbuf) == -1)
1158 return 0;
1159
1160 if (writebuf
1161 && ttrace (TT_PROC_WRTEXT, pid, 0, addr, len, (uintptr_t)writebuf) == -1
1162 && ttrace (TT_PROC_WRDATA, pid, 0, addr, len, (uintptr_t)writebuf) == -1)
1163 return 0;
1164
1165 return len;
1166}
1167
1168static LONGEST
1169inf_ttrace_xfer_partial (struct target_ops *ops, enum target_object object,
7a4609f7
MK
1170 const char *annex, gdb_byte *readbuf,
1171 const gdb_byte *writebuf, ULONGEST offset, LONGEST len)
eee22bf8
MK
1172{
1173 switch (object)
1174 {
1175 case TARGET_OBJECT_MEMORY:
1176 return inf_ttrace_xfer_memory (offset, len, readbuf, writebuf);
1177
1178 case TARGET_OBJECT_UNWIND_TABLE:
1179 return -1;
1180
1181 case TARGET_OBJECT_AUXV:
1182 return -1;
1183
1184 case TARGET_OBJECT_WCOOKIE:
1185 return -1;
1186
1187 default:
1188 return -1;
1189 }
1190}
1191
1192/* Print status information about what we're accessing. */
1193
1194static void
1195inf_ttrace_files_info (struct target_ops *ignore)
1196{
181e7f93 1197 struct inferior *inf = current_inferior ();
346e281c 1198 printf_filtered (_("\tUsing the running image of %s %s.\n"),
181e7f93 1199 inf->attach_flag ? "attached" : "child",
346e281c 1200 target_pid_to_str (inferior_ptid));
eee22bf8 1201}
a7be7fa8
MK
1202
1203static int
28439f5e 1204inf_ttrace_thread_alive (struct target_ops *ops, ptid_t ptid)
a7be7fa8 1205{
438ac09b
PA
1206 return 1;
1207}
1208
1209/* Return a string describing the state of the thread specified by
1210 INFO. */
1211
1212static char *
1213inf_ttrace_extra_thread_info (struct thread_info *info)
1214{
1215 struct inf_ttrace_private_thread_info* private =
1216 (struct inf_ttrace_private_thread_info *) info->private;
1217
1218 if (private != NULL && private->dying)
1219 return "Exiting";
1220
1221 return NULL;
a7be7fa8
MK
1222}
1223
1224static char *
117de6a9 1225inf_ttrace_pid_to_str (struct target_ops *ops, ptid_t ptid)
a7be7fa8 1226{
2935f27f
PA
1227 pid_t pid = ptid_get_pid (ptid);
1228 lwpid_t lwpid = ptid_get_lwp (ptid);
1229 static char buf[128];
a7be7fa8 1230
2935f27f
PA
1231 if (lwpid == 0)
1232 xsnprintf (buf, sizeof buf, "process %ld",
1233 (long) pid);
1234 else
1235 xsnprintf (buf, sizeof buf, "process %ld, lwp %ld",
1236 (long) pid, (long) lwpid);
1237 return buf;
a7be7fa8 1238}
eee22bf8
MK
1239\f
1240
fa07e785
JB
1241/* Implement the get_ada_task_ptid target_ops method. */
1242
1243static ptid_t
1244inf_ttrace_get_ada_task_ptid (long lwp, long thread)
1245{
1246 return ptid_build (ptid_get_pid (inferior_ptid), lwp, 0);
1247}
1248
1249\f
eee22bf8
MK
1250struct target_ops *
1251inf_ttrace_target (void)
1252{
1253 struct target_ops *t = inf_child_target ();
1254
eee22bf8
MK
1255 t->to_attach = inf_ttrace_attach;
1256 t->to_detach = inf_ttrace_detach;
1257 t->to_resume = inf_ttrace_resume;
1258 t->to_wait = inf_ttrace_wait;
eee22bf8 1259 t->to_files_info = inf_ttrace_files_info;
932936f0 1260 t->to_can_use_hw_breakpoint = inf_ttrace_can_use_hw_breakpoint;
932936f0
MK
1261 t->to_insert_watchpoint = inf_ttrace_insert_watchpoint;
1262 t->to_remove_watchpoint = inf_ttrace_remove_watchpoint;
1263 t->to_stopped_by_watchpoint = inf_ttrace_stopped_by_watchpoint;
2a3cdf79
WZ
1264 t->to_region_ok_for_hw_watchpoint =
1265 inf_ttrace_region_ok_for_hw_watchpoint;
346e281c
MK
1266 t->to_kill = inf_ttrace_kill;
1267 t->to_create_inferior = inf_ttrace_create_inferior;
1268 t->to_follow_fork = inf_ttrace_follow_fork;
1269 t->to_mourn_inferior = inf_ttrace_mourn_inferior;
1270 t->to_thread_alive = inf_ttrace_thread_alive;
438ac09b 1271 t->to_extra_thread_info = inf_ttrace_extra_thread_info;
346e281c
MK
1272 t->to_pid_to_str = inf_ttrace_pid_to_str;
1273 t->to_xfer_partial = inf_ttrace_xfer_partial;
fa07e785 1274 t->to_get_ada_task_ptid = inf_ttrace_get_ada_task_ptid;
eee22bf8 1275
eee22bf8
MK
1276 return t;
1277}
d3322e8a 1278#endif
932936f0
MK
1279\f
1280
1281/* Prevent warning from -Wmissing-prototypes. */
1282void _initialize_hppa_hpux_nat (void);
eee22bf8 1283
932936f0
MK
1284void
1285_initialize_inf_ttrace (void)
1286{
d3322e8a 1287#ifdef HAVE_TTRACE
932936f0 1288 inf_ttrace_page_dict.pagesize = getpagesize();
eee22bf8 1289#endif
d3322e8a 1290}
This page took 0.54883 seconds and 4 git commands to generate.