2004-11-23 22:14:33 +01:00
|
|
|
|
/* Low-level child interface to ttrace.
|
|
|
|
|
|
2005-12-17 23:34:03 +01:00
|
|
|
|
Copyright (C) 2004, 2005 Free Software Foundation, Inc.
|
2004-11-23 22:14:33 +01:00
|
|
|
|
|
|
|
|
|
This file is part of GDB.
|
|
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
|
along with this program; if not, write to the Free Software
|
2005-12-17 23:34:03 +01:00
|
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
|
|
|
Boston, MA 02110-1301, USA. */
|
2004-11-23 22:14:33 +01:00
|
|
|
|
|
|
|
|
|
#include "defs.h"
|
|
|
|
|
|
|
|
|
|
/* The ttrace(2) system call didn't exist before HP-UX 10.30. Don't
|
|
|
|
|
try to compile this code unless we have it. */
|
|
|
|
|
#ifdef HAVE_TTRACE
|
|
|
|
|
|
|
|
|
|
#include "command.h"
|
|
|
|
|
#include "gdbcore.h"
|
2004-12-07 20:57:21 +01:00
|
|
|
|
#include "gdbthread.h"
|
2004-11-23 22:14:33 +01:00
|
|
|
|
#include "inferior.h"
|
|
|
|
|
#include "observer.h"
|
|
|
|
|
#include "target.h"
|
|
|
|
|
|
|
|
|
|
#include "gdb_assert.h"
|
|
|
|
|
#include "gdb_string.h"
|
2004-12-03 23:20:00 +01:00
|
|
|
|
#include <sys/mman.h>
|
2004-11-23 22:14:33 +01:00
|
|
|
|
#include <sys/ttrace.h>
|
|
|
|
|
|
|
|
|
|
#include "inf-child.h"
|
|
|
|
|
#include "inf-ttrace.h"
|
|
|
|
|
|
|
|
|
|
/* HACK: Save the ttrace ops returned by inf_ttrace_target. */
|
|
|
|
|
static struct target_ops *ttrace_ops_hack;
|
2004-12-03 23:20:00 +01:00
|
|
|
|
|
|
|
|
|
|
2004-12-07 20:57:21 +01:00
|
|
|
|
/* HP-UX uses a threading model where each user-space thread
|
|
|
|
|
corresponds to a kernel thread. These kernel threads are called
|
|
|
|
|
lwps. The ttrace(2) interface gives us almost full control over
|
|
|
|
|
the threads, which makes it very easy to support them in GDB. We
|
|
|
|
|
identify the threads by process ID and lwp ID. The ttrace(2) also
|
|
|
|
|
provides us with a thread's user ID (in the `tts_user_tid' member
|
|
|
|
|
of `ttstate_t') but we don't use that (yet) as it isn't necessary
|
|
|
|
|
to uniquely label the thread. */
|
|
|
|
|
|
|
|
|
|
/* Number of active lwps. */
|
|
|
|
|
static int inf_ttrace_num_lwps;
|
|
|
|
|
|
|
|
|
|
|
2004-12-03 23:20:00 +01:00
|
|
|
|
/* On HP-UX versions that have the ttrace(2) system call, we can
|
|
|
|
|
implement "hardware" watchpoints by fiddling with the protection of
|
|
|
|
|
pages in the address space that contain the variable being watched.
|
|
|
|
|
In order to implement this, we keep a dictionary of pages for which
|
|
|
|
|
we have changed the protection. */
|
|
|
|
|
|
|
|
|
|
struct inf_ttrace_page
|
|
|
|
|
{
|
|
|
|
|
CORE_ADDR addr; /* Page address. */
|
|
|
|
|
int prot; /* Protection. */
|
|
|
|
|
int refcount; /* Reference count. */
|
|
|
|
|
struct inf_ttrace_page *next;
|
|
|
|
|
struct inf_ttrace_page *prev;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct inf_ttrace_page_dict
|
|
|
|
|
{
|
|
|
|
|
struct inf_ttrace_page buckets[128];
|
|
|
|
|
int pagesize; /* Page size. */
|
|
|
|
|
int count; /* Number of pages in this dictionary. */
|
|
|
|
|
} inf_ttrace_page_dict;
|
|
|
|
|
|
2004-12-07 20:57:21 +01:00
|
|
|
|
/* Number of lwps that are currently in a system call. */
|
|
|
|
|
static int inf_ttrace_num_lwps_in_syscall;
|
2004-12-03 23:20:00 +01:00
|
|
|
|
|
|
|
|
|
/* Flag to indicate whether we should re-enable page protections after
|
|
|
|
|
the next wait. */
|
|
|
|
|
static int inf_ttrace_reenable_page_protections;
|
|
|
|
|
|
|
|
|
|
/* Enable system call events for process PID. */
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
inf_ttrace_enable_syscall_events (pid_t pid)
|
|
|
|
|
{
|
|
|
|
|
ttevent_t tte;
|
|
|
|
|
ttstate_t tts;
|
|
|
|
|
|
2004-12-07 20:57:21 +01:00
|
|
|
|
gdb_assert (inf_ttrace_num_lwps_in_syscall == 0);
|
2004-12-03 23:20:00 +01:00
|
|
|
|
|
|
|
|
|
if (ttrace (TT_PROC_GET_EVENT_MASK, pid, 0,
|
|
|
|
|
(uintptr_t)&tte, sizeof tte, 0) == -1)
|
2005-02-11 Andrew Cagney <cagney@gnu.org>
Mark up error_no_arg, query, perror_with_name, complaint, and
internal_error.
* breakpoint.c, cp-abi.c, cp-namespace.c, cp-support.c: Update.
* cris-tdep.c, dbxread.c, dictionary.c, dsrec.c: Update.
* dummy-frame.c, dve3900-rom.c, dwarf2-frame.c, dwarf2expr.c: Update.
* dwarf2read.c, dwarfread.c, elfread.c, event-loop.c: Update.
* exceptions.c, exec.c, f-lang.c, findvar.c, fork-child.c: Update.
* frame-unwind.c, frame.c, frv-linux-tdep.c, frv-tdep.c: Update.
* gdb_assert.h, gdbarch.c, gdbtypes.c, gnu-nat.c: Update.
* go32-nat.c, hppa-tdep.c, hppabsd-nat.c, hpread.c: Update.
* i386-linux-nat.c, i386-nat.c, i386-tdep.c, i386bsd-nat.c: Update.
* i386fbsd-nat.c, inf-ptrace.c, inf-ttrace.c, infcall.c: Update.
* infcmd.c, inflow.c, infptrace.c, infrun.c, inftarg.c: Update.
* interps.c, language.c, linespec.c, linux-nat.c: Update.
* m32r-linux-nat.c, m68k-tdep.c, m68kbsd-nat.c: Update.
* m68klinux-nat.c, m88kbsd-nat.c, macroexp.c, macroscope.c: Update.
* macrotab.c, maint.c, mdebugread.c, memattr.c: Update.
* mips-linux-tdep.c, mips-tdep.c, mips64obsd-nat.c: Update.
* mipsnbsd-nat.c, mn10300-tdep.c, monitor.c, nto-procfs.c: Update.
* objc-lang.c, objfiles.c, objfiles.h, ocd.c, osabi.c: Update.
* parse.c, ppc-bdm.c, ppc-linux-nat.c, ppc-sysv-tdep.c: Update.
* ppcnbsd-nat.c, ppcobsd-nat.c, printcmd.c, procfs.c: Update.
* regcache.c, reggroups.c, remote-e7000.c, remote-mips.c: Update.
* remote-rdp.c, remote-sds.c, remote-sim.c, remote-st.c: Update.
* remote-utils.c, remote.c, rs6000-nat.c, rs6000-tdep.c: Update.
* s390-nat.c, s390-tdep.c, sentinel-frame.c, serial.c: Update.
* sh-tdep.c, sh3-rom.c, sh64-tdep.c, shnbsd-nat.c: Update.
* solib-aix5.c, solib-svr4.c, solib.c, source.c: Update.
* sparc-nat.c, stabsread.c, stack.c, symfile.c, symtab.c: Update.
* symtab.h, target.c, tracepoint.c, ui-file.c, ui-out.c: Update.
* utils.c, valops.c, valprint.c, vax-nat.c, vaxbsd-nat.c: Update.
* win32-nat.c, xcoffread.c, xstormy16-tdep.c: Update.
* cli/cli-cmds.c, cli/cli-logging.c, cli/cli-script.c: Update.
* cli/cli-setshow.c, mi/mi-cmd-break.c, mi/mi-cmds.c: Update.
* mi/mi-console.c, mi/mi-getopt.c, mi/mi-out.c: Update.
* tui/tui-file.c, tui/tui-interp.c: Update.
2005-02-11 19:13:55 +01:00
|
|
|
|
perror_with_name (("ttrace"));
|
2004-12-03 23:20:00 +01:00
|
|
|
|
|
|
|
|
|
tte.tte_events |= (TTEVT_SYSCALL_ENTRY | TTEVT_SYSCALL_RETURN);
|
|
|
|
|
|
|
|
|
|
if (ttrace (TT_PROC_SET_EVENT_MASK, pid, 0,
|
|
|
|
|
(uintptr_t)&tte, sizeof tte, 0) == -1)
|
2005-02-11 Andrew Cagney <cagney@gnu.org>
Mark up error_no_arg, query, perror_with_name, complaint, and
internal_error.
* breakpoint.c, cp-abi.c, cp-namespace.c, cp-support.c: Update.
* cris-tdep.c, dbxread.c, dictionary.c, dsrec.c: Update.
* dummy-frame.c, dve3900-rom.c, dwarf2-frame.c, dwarf2expr.c: Update.
* dwarf2read.c, dwarfread.c, elfread.c, event-loop.c: Update.
* exceptions.c, exec.c, f-lang.c, findvar.c, fork-child.c: Update.
* frame-unwind.c, frame.c, frv-linux-tdep.c, frv-tdep.c: Update.
* gdb_assert.h, gdbarch.c, gdbtypes.c, gnu-nat.c: Update.
* go32-nat.c, hppa-tdep.c, hppabsd-nat.c, hpread.c: Update.
* i386-linux-nat.c, i386-nat.c, i386-tdep.c, i386bsd-nat.c: Update.
* i386fbsd-nat.c, inf-ptrace.c, inf-ttrace.c, infcall.c: Update.
* infcmd.c, inflow.c, infptrace.c, infrun.c, inftarg.c: Update.
* interps.c, language.c, linespec.c, linux-nat.c: Update.
* m32r-linux-nat.c, m68k-tdep.c, m68kbsd-nat.c: Update.
* m68klinux-nat.c, m88kbsd-nat.c, macroexp.c, macroscope.c: Update.
* macrotab.c, maint.c, mdebugread.c, memattr.c: Update.
* mips-linux-tdep.c, mips-tdep.c, mips64obsd-nat.c: Update.
* mipsnbsd-nat.c, mn10300-tdep.c, monitor.c, nto-procfs.c: Update.
* objc-lang.c, objfiles.c, objfiles.h, ocd.c, osabi.c: Update.
* parse.c, ppc-bdm.c, ppc-linux-nat.c, ppc-sysv-tdep.c: Update.
* ppcnbsd-nat.c, ppcobsd-nat.c, printcmd.c, procfs.c: Update.
* regcache.c, reggroups.c, remote-e7000.c, remote-mips.c: Update.
* remote-rdp.c, remote-sds.c, remote-sim.c, remote-st.c: Update.
* remote-utils.c, remote.c, rs6000-nat.c, rs6000-tdep.c: Update.
* s390-nat.c, s390-tdep.c, sentinel-frame.c, serial.c: Update.
* sh-tdep.c, sh3-rom.c, sh64-tdep.c, shnbsd-nat.c: Update.
* solib-aix5.c, solib-svr4.c, solib.c, source.c: Update.
* sparc-nat.c, stabsread.c, stack.c, symfile.c, symtab.c: Update.
* symtab.h, target.c, tracepoint.c, ui-file.c, ui-out.c: Update.
* utils.c, valops.c, valprint.c, vax-nat.c, vaxbsd-nat.c: Update.
* win32-nat.c, xcoffread.c, xstormy16-tdep.c: Update.
* cli/cli-cmds.c, cli/cli-logging.c, cli/cli-script.c: Update.
* cli/cli-setshow.c, mi/mi-cmd-break.c, mi/mi-cmds.c: Update.
* mi/mi-console.c, mi/mi-getopt.c, mi/mi-out.c: Update.
* tui/tui-file.c, tui/tui-interp.c: Update.
2005-02-11 19:13:55 +01:00
|
|
|
|
perror_with_name (("ttrace"));
|
2004-12-03 23:20:00 +01:00
|
|
|
|
|
|
|
|
|
if (ttrace (TT_PROC_GET_FIRST_LWP_STATE, pid, 0,
|
|
|
|
|
(uintptr_t)&tts, sizeof tts, 0) == -1)
|
2005-02-11 Andrew Cagney <cagney@gnu.org>
Mark up error_no_arg, query, perror_with_name, complaint, and
internal_error.
* breakpoint.c, cp-abi.c, cp-namespace.c, cp-support.c: Update.
* cris-tdep.c, dbxread.c, dictionary.c, dsrec.c: Update.
* dummy-frame.c, dve3900-rom.c, dwarf2-frame.c, dwarf2expr.c: Update.
* dwarf2read.c, dwarfread.c, elfread.c, event-loop.c: Update.
* exceptions.c, exec.c, f-lang.c, findvar.c, fork-child.c: Update.
* frame-unwind.c, frame.c, frv-linux-tdep.c, frv-tdep.c: Update.
* gdb_assert.h, gdbarch.c, gdbtypes.c, gnu-nat.c: Update.
* go32-nat.c, hppa-tdep.c, hppabsd-nat.c, hpread.c: Update.
* i386-linux-nat.c, i386-nat.c, i386-tdep.c, i386bsd-nat.c: Update.
* i386fbsd-nat.c, inf-ptrace.c, inf-ttrace.c, infcall.c: Update.
* infcmd.c, inflow.c, infptrace.c, infrun.c, inftarg.c: Update.
* interps.c, language.c, linespec.c, linux-nat.c: Update.
* m32r-linux-nat.c, m68k-tdep.c, m68kbsd-nat.c: Update.
* m68klinux-nat.c, m88kbsd-nat.c, macroexp.c, macroscope.c: Update.
* macrotab.c, maint.c, mdebugread.c, memattr.c: Update.
* mips-linux-tdep.c, mips-tdep.c, mips64obsd-nat.c: Update.
* mipsnbsd-nat.c, mn10300-tdep.c, monitor.c, nto-procfs.c: Update.
* objc-lang.c, objfiles.c, objfiles.h, ocd.c, osabi.c: Update.
* parse.c, ppc-bdm.c, ppc-linux-nat.c, ppc-sysv-tdep.c: Update.
* ppcnbsd-nat.c, ppcobsd-nat.c, printcmd.c, procfs.c: Update.
* regcache.c, reggroups.c, remote-e7000.c, remote-mips.c: Update.
* remote-rdp.c, remote-sds.c, remote-sim.c, remote-st.c: Update.
* remote-utils.c, remote.c, rs6000-nat.c, rs6000-tdep.c: Update.
* s390-nat.c, s390-tdep.c, sentinel-frame.c, serial.c: Update.
* sh-tdep.c, sh3-rom.c, sh64-tdep.c, shnbsd-nat.c: Update.
* solib-aix5.c, solib-svr4.c, solib.c, source.c: Update.
* sparc-nat.c, stabsread.c, stack.c, symfile.c, symtab.c: Update.
* symtab.h, target.c, tracepoint.c, ui-file.c, ui-out.c: Update.
* utils.c, valops.c, valprint.c, vax-nat.c, vaxbsd-nat.c: Update.
* win32-nat.c, xcoffread.c, xstormy16-tdep.c: Update.
* cli/cli-cmds.c, cli/cli-logging.c, cli/cli-script.c: Update.
* cli/cli-setshow.c, mi/mi-cmd-break.c, mi/mi-cmds.c: Update.
* mi/mi-console.c, mi/mi-getopt.c, mi/mi-out.c: Update.
* tui/tui-file.c, tui/tui-interp.c: Update.
2005-02-11 19:13:55 +01:00
|
|
|
|
perror_with_name (("ttrace"));
|
2004-12-03 23:20:00 +01:00
|
|
|
|
|
|
|
|
|
if (tts.tts_flags & TTS_INSYSCALL)
|
2004-12-07 20:57:21 +01:00
|
|
|
|
inf_ttrace_num_lwps_in_syscall++;
|
2004-12-03 23:20:00 +01:00
|
|
|
|
|
|
|
|
|
/* FIXME: Handle multiple threads. */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Disable system call events for process PID. */
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
inf_ttrace_disable_syscall_events (pid_t pid)
|
|
|
|
|
{
|
|
|
|
|
ttevent_t tte;
|
|
|
|
|
|
|
|
|
|
gdb_assert (inf_ttrace_page_dict.count == 0);
|
|
|
|
|
|
|
|
|
|
if (ttrace (TT_PROC_GET_EVENT_MASK, pid, 0,
|
|
|
|
|
(uintptr_t)&tte, sizeof tte, 0) == -1)
|
2005-02-11 Andrew Cagney <cagney@gnu.org>
Mark up error_no_arg, query, perror_with_name, complaint, and
internal_error.
* breakpoint.c, cp-abi.c, cp-namespace.c, cp-support.c: Update.
* cris-tdep.c, dbxread.c, dictionary.c, dsrec.c: Update.
* dummy-frame.c, dve3900-rom.c, dwarf2-frame.c, dwarf2expr.c: Update.
* dwarf2read.c, dwarfread.c, elfread.c, event-loop.c: Update.
* exceptions.c, exec.c, f-lang.c, findvar.c, fork-child.c: Update.
* frame-unwind.c, frame.c, frv-linux-tdep.c, frv-tdep.c: Update.
* gdb_assert.h, gdbarch.c, gdbtypes.c, gnu-nat.c: Update.
* go32-nat.c, hppa-tdep.c, hppabsd-nat.c, hpread.c: Update.
* i386-linux-nat.c, i386-nat.c, i386-tdep.c, i386bsd-nat.c: Update.
* i386fbsd-nat.c, inf-ptrace.c, inf-ttrace.c, infcall.c: Update.
* infcmd.c, inflow.c, infptrace.c, infrun.c, inftarg.c: Update.
* interps.c, language.c, linespec.c, linux-nat.c: Update.
* m32r-linux-nat.c, m68k-tdep.c, m68kbsd-nat.c: Update.
* m68klinux-nat.c, m88kbsd-nat.c, macroexp.c, macroscope.c: Update.
* macrotab.c, maint.c, mdebugread.c, memattr.c: Update.
* mips-linux-tdep.c, mips-tdep.c, mips64obsd-nat.c: Update.
* mipsnbsd-nat.c, mn10300-tdep.c, monitor.c, nto-procfs.c: Update.
* objc-lang.c, objfiles.c, objfiles.h, ocd.c, osabi.c: Update.
* parse.c, ppc-bdm.c, ppc-linux-nat.c, ppc-sysv-tdep.c: Update.
* ppcnbsd-nat.c, ppcobsd-nat.c, printcmd.c, procfs.c: Update.
* regcache.c, reggroups.c, remote-e7000.c, remote-mips.c: Update.
* remote-rdp.c, remote-sds.c, remote-sim.c, remote-st.c: Update.
* remote-utils.c, remote.c, rs6000-nat.c, rs6000-tdep.c: Update.
* s390-nat.c, s390-tdep.c, sentinel-frame.c, serial.c: Update.
* sh-tdep.c, sh3-rom.c, sh64-tdep.c, shnbsd-nat.c: Update.
* solib-aix5.c, solib-svr4.c, solib.c, source.c: Update.
* sparc-nat.c, stabsread.c, stack.c, symfile.c, symtab.c: Update.
* symtab.h, target.c, tracepoint.c, ui-file.c, ui-out.c: Update.
* utils.c, valops.c, valprint.c, vax-nat.c, vaxbsd-nat.c: Update.
* win32-nat.c, xcoffread.c, xstormy16-tdep.c: Update.
* cli/cli-cmds.c, cli/cli-logging.c, cli/cli-script.c: Update.
* cli/cli-setshow.c, mi/mi-cmd-break.c, mi/mi-cmds.c: Update.
* mi/mi-console.c, mi/mi-getopt.c, mi/mi-out.c: Update.
* tui/tui-file.c, tui/tui-interp.c: Update.
2005-02-11 19:13:55 +01:00
|
|
|
|
perror_with_name (("ttrace"));
|
2004-12-03 23:20:00 +01:00
|
|
|
|
|
|
|
|
|
tte.tte_events &= ~(TTEVT_SYSCALL_ENTRY | TTEVT_SYSCALL_RETURN);
|
|
|
|
|
|
|
|
|
|
if (ttrace (TT_PROC_SET_EVENT_MASK, pid, 0,
|
|
|
|
|
(uintptr_t)&tte, sizeof tte, 0) == -1)
|
2005-02-11 Andrew Cagney <cagney@gnu.org>
Mark up error_no_arg, query, perror_with_name, complaint, and
internal_error.
* breakpoint.c, cp-abi.c, cp-namespace.c, cp-support.c: Update.
* cris-tdep.c, dbxread.c, dictionary.c, dsrec.c: Update.
* dummy-frame.c, dve3900-rom.c, dwarf2-frame.c, dwarf2expr.c: Update.
* dwarf2read.c, dwarfread.c, elfread.c, event-loop.c: Update.
* exceptions.c, exec.c, f-lang.c, findvar.c, fork-child.c: Update.
* frame-unwind.c, frame.c, frv-linux-tdep.c, frv-tdep.c: Update.
* gdb_assert.h, gdbarch.c, gdbtypes.c, gnu-nat.c: Update.
* go32-nat.c, hppa-tdep.c, hppabsd-nat.c, hpread.c: Update.
* i386-linux-nat.c, i386-nat.c, i386-tdep.c, i386bsd-nat.c: Update.
* i386fbsd-nat.c, inf-ptrace.c, inf-ttrace.c, infcall.c: Update.
* infcmd.c, inflow.c, infptrace.c, infrun.c, inftarg.c: Update.
* interps.c, language.c, linespec.c, linux-nat.c: Update.
* m32r-linux-nat.c, m68k-tdep.c, m68kbsd-nat.c: Update.
* m68klinux-nat.c, m88kbsd-nat.c, macroexp.c, macroscope.c: Update.
* macrotab.c, maint.c, mdebugread.c, memattr.c: Update.
* mips-linux-tdep.c, mips-tdep.c, mips64obsd-nat.c: Update.
* mipsnbsd-nat.c, mn10300-tdep.c, monitor.c, nto-procfs.c: Update.
* objc-lang.c, objfiles.c, objfiles.h, ocd.c, osabi.c: Update.
* parse.c, ppc-bdm.c, ppc-linux-nat.c, ppc-sysv-tdep.c: Update.
* ppcnbsd-nat.c, ppcobsd-nat.c, printcmd.c, procfs.c: Update.
* regcache.c, reggroups.c, remote-e7000.c, remote-mips.c: Update.
* remote-rdp.c, remote-sds.c, remote-sim.c, remote-st.c: Update.
* remote-utils.c, remote.c, rs6000-nat.c, rs6000-tdep.c: Update.
* s390-nat.c, s390-tdep.c, sentinel-frame.c, serial.c: Update.
* sh-tdep.c, sh3-rom.c, sh64-tdep.c, shnbsd-nat.c: Update.
* solib-aix5.c, solib-svr4.c, solib.c, source.c: Update.
* sparc-nat.c, stabsread.c, stack.c, symfile.c, symtab.c: Update.
* symtab.h, target.c, tracepoint.c, ui-file.c, ui-out.c: Update.
* utils.c, valops.c, valprint.c, vax-nat.c, vaxbsd-nat.c: Update.
* win32-nat.c, xcoffread.c, xstormy16-tdep.c: Update.
* cli/cli-cmds.c, cli/cli-logging.c, cli/cli-script.c: Update.
* cli/cli-setshow.c, mi/mi-cmd-break.c, mi/mi-cmds.c: Update.
* mi/mi-console.c, mi/mi-getopt.c, mi/mi-out.c: Update.
* tui/tui-file.c, tui/tui-interp.c: Update.
2005-02-11 19:13:55 +01:00
|
|
|
|
perror_with_name (("ttrace"));
|
2004-12-03 23:20:00 +01:00
|
|
|
|
|
2004-12-07 20:57:21 +01:00
|
|
|
|
inf_ttrace_num_lwps_in_syscall = 0;
|
2004-12-03 23:20:00 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Get information about the page at address ADDR for process PID from
|
|
|
|
|
the dictionary. */
|
|
|
|
|
|
|
|
|
|
static struct inf_ttrace_page *
|
|
|
|
|
inf_ttrace_get_page (pid_t pid, CORE_ADDR addr)
|
|
|
|
|
{
|
|
|
|
|
const int num_buckets = ARRAY_SIZE (inf_ttrace_page_dict.buckets);
|
|
|
|
|
const int pagesize = inf_ttrace_page_dict.pagesize;
|
|
|
|
|
int bucket;
|
|
|
|
|
struct inf_ttrace_page *page;
|
|
|
|
|
|
|
|
|
|
bucket = (addr / pagesize) % num_buckets;
|
|
|
|
|
page = &inf_ttrace_page_dict.buckets[bucket];
|
|
|
|
|
while (page)
|
|
|
|
|
{
|
|
|
|
|
if (page->addr == addr)
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
page = page->next;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return page;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Add the page at address ADDR for process PID to the dictionary. */
|
|
|
|
|
|
|
|
|
|
static struct inf_ttrace_page *
|
|
|
|
|
inf_ttrace_add_page (pid_t pid, CORE_ADDR addr)
|
|
|
|
|
{
|
|
|
|
|
const int num_buckets = ARRAY_SIZE (inf_ttrace_page_dict.buckets);
|
|
|
|
|
const int pagesize = inf_ttrace_page_dict.pagesize;
|
|
|
|
|
int bucket;
|
|
|
|
|
struct inf_ttrace_page *page;
|
|
|
|
|
struct inf_ttrace_page *prev = NULL;
|
|
|
|
|
|
|
|
|
|
bucket = (addr / pagesize) % num_buckets;
|
|
|
|
|
page = &inf_ttrace_page_dict.buckets[bucket];
|
|
|
|
|
while (page)
|
|
|
|
|
{
|
|
|
|
|
if (page->addr == addr)
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
prev = page;
|
|
|
|
|
page = page->next;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!page)
|
|
|
|
|
{
|
|
|
|
|
int prot;
|
|
|
|
|
|
|
|
|
|
if (ttrace (TT_PROC_GET_MPROTECT, pid, 0,
|
|
|
|
|
addr, 0, (uintptr_t)&prot) == -1)
|
2005-02-11 Andrew Cagney <cagney@gnu.org>
Mark up error_no_arg, query, perror_with_name, complaint, and
internal_error.
* breakpoint.c, cp-abi.c, cp-namespace.c, cp-support.c: Update.
* cris-tdep.c, dbxread.c, dictionary.c, dsrec.c: Update.
* dummy-frame.c, dve3900-rom.c, dwarf2-frame.c, dwarf2expr.c: Update.
* dwarf2read.c, dwarfread.c, elfread.c, event-loop.c: Update.
* exceptions.c, exec.c, f-lang.c, findvar.c, fork-child.c: Update.
* frame-unwind.c, frame.c, frv-linux-tdep.c, frv-tdep.c: Update.
* gdb_assert.h, gdbarch.c, gdbtypes.c, gnu-nat.c: Update.
* go32-nat.c, hppa-tdep.c, hppabsd-nat.c, hpread.c: Update.
* i386-linux-nat.c, i386-nat.c, i386-tdep.c, i386bsd-nat.c: Update.
* i386fbsd-nat.c, inf-ptrace.c, inf-ttrace.c, infcall.c: Update.
* infcmd.c, inflow.c, infptrace.c, infrun.c, inftarg.c: Update.
* interps.c, language.c, linespec.c, linux-nat.c: Update.
* m32r-linux-nat.c, m68k-tdep.c, m68kbsd-nat.c: Update.
* m68klinux-nat.c, m88kbsd-nat.c, macroexp.c, macroscope.c: Update.
* macrotab.c, maint.c, mdebugread.c, memattr.c: Update.
* mips-linux-tdep.c, mips-tdep.c, mips64obsd-nat.c: Update.
* mipsnbsd-nat.c, mn10300-tdep.c, monitor.c, nto-procfs.c: Update.
* objc-lang.c, objfiles.c, objfiles.h, ocd.c, osabi.c: Update.
* parse.c, ppc-bdm.c, ppc-linux-nat.c, ppc-sysv-tdep.c: Update.
* ppcnbsd-nat.c, ppcobsd-nat.c, printcmd.c, procfs.c: Update.
* regcache.c, reggroups.c, remote-e7000.c, remote-mips.c: Update.
* remote-rdp.c, remote-sds.c, remote-sim.c, remote-st.c: Update.
* remote-utils.c, remote.c, rs6000-nat.c, rs6000-tdep.c: Update.
* s390-nat.c, s390-tdep.c, sentinel-frame.c, serial.c: Update.
* sh-tdep.c, sh3-rom.c, sh64-tdep.c, shnbsd-nat.c: Update.
* solib-aix5.c, solib-svr4.c, solib.c, source.c: Update.
* sparc-nat.c, stabsread.c, stack.c, symfile.c, symtab.c: Update.
* symtab.h, target.c, tracepoint.c, ui-file.c, ui-out.c: Update.
* utils.c, valops.c, valprint.c, vax-nat.c, vaxbsd-nat.c: Update.
* win32-nat.c, xcoffread.c, xstormy16-tdep.c: Update.
* cli/cli-cmds.c, cli/cli-logging.c, cli/cli-script.c: Update.
* cli/cli-setshow.c, mi/mi-cmd-break.c, mi/mi-cmds.c: Update.
* mi/mi-console.c, mi/mi-getopt.c, mi/mi-out.c: Update.
* tui/tui-file.c, tui/tui-interp.c: Update.
2005-02-11 19:13:55 +01:00
|
|
|
|
perror_with_name (("ttrace"));
|
2004-12-03 23:20:00 +01:00
|
|
|
|
|
|
|
|
|
page = XMALLOC (struct inf_ttrace_page);
|
|
|
|
|
page->addr = addr;
|
|
|
|
|
page->prot = prot;
|
|
|
|
|
page->refcount = 0;
|
|
|
|
|
page->next = NULL;
|
|
|
|
|
|
|
|
|
|
page->prev = prev;
|
|
|
|
|
prev->next = page;
|
|
|
|
|
|
|
|
|
|
inf_ttrace_page_dict.count++;
|
|
|
|
|
if (inf_ttrace_page_dict.count == 1)
|
|
|
|
|
inf_ttrace_enable_syscall_events (pid);
|
|
|
|
|
|
2004-12-07 20:57:21 +01:00
|
|
|
|
if (inf_ttrace_num_lwps_in_syscall == 0)
|
2004-12-03 23:20:00 +01:00
|
|
|
|
{
|
|
|
|
|
if (ttrace (TT_PROC_SET_MPROTECT, pid, 0,
|
|
|
|
|
addr, pagesize, prot & ~PROT_WRITE) == -1)
|
2005-02-11 Andrew Cagney <cagney@gnu.org>
Mark up error_no_arg, query, perror_with_name, complaint, and
internal_error.
* breakpoint.c, cp-abi.c, cp-namespace.c, cp-support.c: Update.
* cris-tdep.c, dbxread.c, dictionary.c, dsrec.c: Update.
* dummy-frame.c, dve3900-rom.c, dwarf2-frame.c, dwarf2expr.c: Update.
* dwarf2read.c, dwarfread.c, elfread.c, event-loop.c: Update.
* exceptions.c, exec.c, f-lang.c, findvar.c, fork-child.c: Update.
* frame-unwind.c, frame.c, frv-linux-tdep.c, frv-tdep.c: Update.
* gdb_assert.h, gdbarch.c, gdbtypes.c, gnu-nat.c: Update.
* go32-nat.c, hppa-tdep.c, hppabsd-nat.c, hpread.c: Update.
* i386-linux-nat.c, i386-nat.c, i386-tdep.c, i386bsd-nat.c: Update.
* i386fbsd-nat.c, inf-ptrace.c, inf-ttrace.c, infcall.c: Update.
* infcmd.c, inflow.c, infptrace.c, infrun.c, inftarg.c: Update.
* interps.c, language.c, linespec.c, linux-nat.c: Update.
* m32r-linux-nat.c, m68k-tdep.c, m68kbsd-nat.c: Update.
* m68klinux-nat.c, m88kbsd-nat.c, macroexp.c, macroscope.c: Update.
* macrotab.c, maint.c, mdebugread.c, memattr.c: Update.
* mips-linux-tdep.c, mips-tdep.c, mips64obsd-nat.c: Update.
* mipsnbsd-nat.c, mn10300-tdep.c, monitor.c, nto-procfs.c: Update.
* objc-lang.c, objfiles.c, objfiles.h, ocd.c, osabi.c: Update.
* parse.c, ppc-bdm.c, ppc-linux-nat.c, ppc-sysv-tdep.c: Update.
* ppcnbsd-nat.c, ppcobsd-nat.c, printcmd.c, procfs.c: Update.
* regcache.c, reggroups.c, remote-e7000.c, remote-mips.c: Update.
* remote-rdp.c, remote-sds.c, remote-sim.c, remote-st.c: Update.
* remote-utils.c, remote.c, rs6000-nat.c, rs6000-tdep.c: Update.
* s390-nat.c, s390-tdep.c, sentinel-frame.c, serial.c: Update.
* sh-tdep.c, sh3-rom.c, sh64-tdep.c, shnbsd-nat.c: Update.
* solib-aix5.c, solib-svr4.c, solib.c, source.c: Update.
* sparc-nat.c, stabsread.c, stack.c, symfile.c, symtab.c: Update.
* symtab.h, target.c, tracepoint.c, ui-file.c, ui-out.c: Update.
* utils.c, valops.c, valprint.c, vax-nat.c, vaxbsd-nat.c: Update.
* win32-nat.c, xcoffread.c, xstormy16-tdep.c: Update.
* cli/cli-cmds.c, cli/cli-logging.c, cli/cli-script.c: Update.
* cli/cli-setshow.c, mi/mi-cmd-break.c, mi/mi-cmds.c: Update.
* mi/mi-console.c, mi/mi-getopt.c, mi/mi-out.c: Update.
* tui/tui-file.c, tui/tui-interp.c: Update.
2005-02-11 19:13:55 +01:00
|
|
|
|
perror_with_name (("ttrace"));
|
2004-12-03 23:20:00 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return page;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Insert the page at address ADDR of process PID to the dictionary. */
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
inf_ttrace_insert_page (pid_t pid, CORE_ADDR addr)
|
|
|
|
|
{
|
|
|
|
|
struct inf_ttrace_page *page;
|
|
|
|
|
|
|
|
|
|
page = inf_ttrace_get_page (pid, addr);
|
|
|
|
|
if (!page)
|
|
|
|
|
page = inf_ttrace_add_page (pid, addr);
|
|
|
|
|
|
|
|
|
|
page->refcount++;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Remove the page at address ADDR of process PID from the dictionary. */
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
inf_ttrace_remove_page (pid_t pid, CORE_ADDR addr)
|
|
|
|
|
{
|
|
|
|
|
const int pagesize = inf_ttrace_page_dict.pagesize;
|
|
|
|
|
struct inf_ttrace_page *page;
|
|
|
|
|
|
|
|
|
|
page = inf_ttrace_get_page (pid, addr);
|
|
|
|
|
page->refcount--;
|
|
|
|
|
|
|
|
|
|
gdb_assert (page->refcount >= 0);
|
|
|
|
|
|
|
|
|
|
if (page->refcount == 0)
|
|
|
|
|
{
|
2004-12-07 20:57:21 +01:00
|
|
|
|
if (inf_ttrace_num_lwps_in_syscall == 0)
|
2004-12-03 23:20:00 +01:00
|
|
|
|
{
|
|
|
|
|
if (ttrace (TT_PROC_SET_MPROTECT, pid, 0,
|
|
|
|
|
addr, pagesize, page->prot) == -1)
|
2005-02-11 Andrew Cagney <cagney@gnu.org>
Mark up error_no_arg, query, perror_with_name, complaint, and
internal_error.
* breakpoint.c, cp-abi.c, cp-namespace.c, cp-support.c: Update.
* cris-tdep.c, dbxread.c, dictionary.c, dsrec.c: Update.
* dummy-frame.c, dve3900-rom.c, dwarf2-frame.c, dwarf2expr.c: Update.
* dwarf2read.c, dwarfread.c, elfread.c, event-loop.c: Update.
* exceptions.c, exec.c, f-lang.c, findvar.c, fork-child.c: Update.
* frame-unwind.c, frame.c, frv-linux-tdep.c, frv-tdep.c: Update.
* gdb_assert.h, gdbarch.c, gdbtypes.c, gnu-nat.c: Update.
* go32-nat.c, hppa-tdep.c, hppabsd-nat.c, hpread.c: Update.
* i386-linux-nat.c, i386-nat.c, i386-tdep.c, i386bsd-nat.c: Update.
* i386fbsd-nat.c, inf-ptrace.c, inf-ttrace.c, infcall.c: Update.
* infcmd.c, inflow.c, infptrace.c, infrun.c, inftarg.c: Update.
* interps.c, language.c, linespec.c, linux-nat.c: Update.
* m32r-linux-nat.c, m68k-tdep.c, m68kbsd-nat.c: Update.
* m68klinux-nat.c, m88kbsd-nat.c, macroexp.c, macroscope.c: Update.
* macrotab.c, maint.c, mdebugread.c, memattr.c: Update.
* mips-linux-tdep.c, mips-tdep.c, mips64obsd-nat.c: Update.
* mipsnbsd-nat.c, mn10300-tdep.c, monitor.c, nto-procfs.c: Update.
* objc-lang.c, objfiles.c, objfiles.h, ocd.c, osabi.c: Update.
* parse.c, ppc-bdm.c, ppc-linux-nat.c, ppc-sysv-tdep.c: Update.
* ppcnbsd-nat.c, ppcobsd-nat.c, printcmd.c, procfs.c: Update.
* regcache.c, reggroups.c, remote-e7000.c, remote-mips.c: Update.
* remote-rdp.c, remote-sds.c, remote-sim.c, remote-st.c: Update.
* remote-utils.c, remote.c, rs6000-nat.c, rs6000-tdep.c: Update.
* s390-nat.c, s390-tdep.c, sentinel-frame.c, serial.c: Update.
* sh-tdep.c, sh3-rom.c, sh64-tdep.c, shnbsd-nat.c: Update.
* solib-aix5.c, solib-svr4.c, solib.c, source.c: Update.
* sparc-nat.c, stabsread.c, stack.c, symfile.c, symtab.c: Update.
* symtab.h, target.c, tracepoint.c, ui-file.c, ui-out.c: Update.
* utils.c, valops.c, valprint.c, vax-nat.c, vaxbsd-nat.c: Update.
* win32-nat.c, xcoffread.c, xstormy16-tdep.c: Update.
* cli/cli-cmds.c, cli/cli-logging.c, cli/cli-script.c: Update.
* cli/cli-setshow.c, mi/mi-cmd-break.c, mi/mi-cmds.c: Update.
* mi/mi-console.c, mi/mi-getopt.c, mi/mi-out.c: Update.
* tui/tui-file.c, tui/tui-interp.c: Update.
2005-02-11 19:13:55 +01:00
|
|
|
|
perror_with_name (("ttrace"));
|
2004-12-03 23:20:00 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
inf_ttrace_page_dict.count--;
|
|
|
|
|
if (inf_ttrace_page_dict.count == 0)
|
|
|
|
|
inf_ttrace_disable_syscall_events (pid);
|
|
|
|
|
|
|
|
|
|
page->prev->next = page->next;
|
|
|
|
|
if (page->next)
|
|
|
|
|
page->next->prev = page->prev;
|
|
|
|
|
|
|
|
|
|
xfree (page);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Mask the bits in PROT from the page protections that are currently
|
|
|
|
|
in the dictionary for process PID. */
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
inf_ttrace_mask_page_protections (pid_t pid, int prot)
|
|
|
|
|
{
|
|
|
|
|
const int num_buckets = ARRAY_SIZE (inf_ttrace_page_dict.buckets);
|
|
|
|
|
const int pagesize = inf_ttrace_page_dict.pagesize;
|
|
|
|
|
int bucket;
|
|
|
|
|
|
|
|
|
|
for (bucket = 0; bucket < num_buckets; bucket++)
|
|
|
|
|
{
|
|
|
|
|
struct inf_ttrace_page *page;
|
|
|
|
|
|
|
|
|
|
page = inf_ttrace_page_dict.buckets[bucket].next;
|
|
|
|
|
while (page)
|
|
|
|
|
{
|
|
|
|
|
if (ttrace (TT_PROC_SET_MPROTECT, pid, 0,
|
|
|
|
|
page->addr, pagesize, page->prot & ~prot) == -1)
|
2005-02-11 Andrew Cagney <cagney@gnu.org>
Mark up error_no_arg, query, perror_with_name, complaint, and
internal_error.
* breakpoint.c, cp-abi.c, cp-namespace.c, cp-support.c: Update.
* cris-tdep.c, dbxread.c, dictionary.c, dsrec.c: Update.
* dummy-frame.c, dve3900-rom.c, dwarf2-frame.c, dwarf2expr.c: Update.
* dwarf2read.c, dwarfread.c, elfread.c, event-loop.c: Update.
* exceptions.c, exec.c, f-lang.c, findvar.c, fork-child.c: Update.
* frame-unwind.c, frame.c, frv-linux-tdep.c, frv-tdep.c: Update.
* gdb_assert.h, gdbarch.c, gdbtypes.c, gnu-nat.c: Update.
* go32-nat.c, hppa-tdep.c, hppabsd-nat.c, hpread.c: Update.
* i386-linux-nat.c, i386-nat.c, i386-tdep.c, i386bsd-nat.c: Update.
* i386fbsd-nat.c, inf-ptrace.c, inf-ttrace.c, infcall.c: Update.
* infcmd.c, inflow.c, infptrace.c, infrun.c, inftarg.c: Update.
* interps.c, language.c, linespec.c, linux-nat.c: Update.
* m32r-linux-nat.c, m68k-tdep.c, m68kbsd-nat.c: Update.
* m68klinux-nat.c, m88kbsd-nat.c, macroexp.c, macroscope.c: Update.
* macrotab.c, maint.c, mdebugread.c, memattr.c: Update.
* mips-linux-tdep.c, mips-tdep.c, mips64obsd-nat.c: Update.
* mipsnbsd-nat.c, mn10300-tdep.c, monitor.c, nto-procfs.c: Update.
* objc-lang.c, objfiles.c, objfiles.h, ocd.c, osabi.c: Update.
* parse.c, ppc-bdm.c, ppc-linux-nat.c, ppc-sysv-tdep.c: Update.
* ppcnbsd-nat.c, ppcobsd-nat.c, printcmd.c, procfs.c: Update.
* regcache.c, reggroups.c, remote-e7000.c, remote-mips.c: Update.
* remote-rdp.c, remote-sds.c, remote-sim.c, remote-st.c: Update.
* remote-utils.c, remote.c, rs6000-nat.c, rs6000-tdep.c: Update.
* s390-nat.c, s390-tdep.c, sentinel-frame.c, serial.c: Update.
* sh-tdep.c, sh3-rom.c, sh64-tdep.c, shnbsd-nat.c: Update.
* solib-aix5.c, solib-svr4.c, solib.c, source.c: Update.
* sparc-nat.c, stabsread.c, stack.c, symfile.c, symtab.c: Update.
* symtab.h, target.c, tracepoint.c, ui-file.c, ui-out.c: Update.
* utils.c, valops.c, valprint.c, vax-nat.c, vaxbsd-nat.c: Update.
* win32-nat.c, xcoffread.c, xstormy16-tdep.c: Update.
* cli/cli-cmds.c, cli/cli-logging.c, cli/cli-script.c: Update.
* cli/cli-setshow.c, mi/mi-cmd-break.c, mi/mi-cmds.c: Update.
* mi/mi-console.c, mi/mi-getopt.c, mi/mi-out.c: Update.
* tui/tui-file.c, tui/tui-interp.c: Update.
2005-02-11 19:13:55 +01:00
|
|
|
|
perror_with_name (("ttrace"));
|
2004-12-03 23:20:00 +01:00
|
|
|
|
|
|
|
|
|
page = page->next;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Write-protect the pages in the dictionary for process PID. */
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
inf_ttrace_enable_page_protections (pid_t pid)
|
|
|
|
|
{
|
|
|
|
|
inf_ttrace_mask_page_protections (pid, PROT_WRITE);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Restore the protection of the pages in the dictionary for process
|
|
|
|
|
PID. */
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
inf_ttrace_disable_page_protections (pid_t pid)
|
|
|
|
|
{
|
|
|
|
|
inf_ttrace_mask_page_protections (pid, 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Insert a "hardware" watchpoint for LEN bytes at address ADDR of
|
|
|
|
|
type TYPE. */
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
inf_ttrace_insert_watchpoint (CORE_ADDR addr, int len, int type)
|
|
|
|
|
{
|
|
|
|
|
const int pagesize = inf_ttrace_page_dict.pagesize;
|
|
|
|
|
pid_t pid = ptid_get_pid (inferior_ptid);
|
|
|
|
|
CORE_ADDR page_addr;
|
|
|
|
|
int num_pages;
|
|
|
|
|
int page;
|
|
|
|
|
|
|
|
|
|
gdb_assert (type == hw_write);
|
|
|
|
|
|
|
|
|
|
page_addr = (addr / pagesize) * pagesize;
|
|
|
|
|
num_pages = (len + pagesize - 1) / pagesize;
|
|
|
|
|
|
|
|
|
|
for (page = 0; page < num_pages; page++, page_addr += pagesize)
|
|
|
|
|
inf_ttrace_insert_page (pid, page_addr);
|
|
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Remove a "hardware" watchpoint for LEN bytes at address ADDR of
|
|
|
|
|
type TYPE. */
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
inf_ttrace_remove_watchpoint (CORE_ADDR addr, int len, int type)
|
|
|
|
|
{
|
|
|
|
|
const int pagesize = inf_ttrace_page_dict.pagesize;
|
|
|
|
|
pid_t pid = ptid_get_pid (inferior_ptid);
|
|
|
|
|
CORE_ADDR page_addr;
|
|
|
|
|
int num_pages;
|
|
|
|
|
int page;
|
|
|
|
|
|
|
|
|
|
gdb_assert (type == hw_write);
|
|
|
|
|
|
|
|
|
|
page_addr = (addr / pagesize) * pagesize;
|
|
|
|
|
num_pages = (len + pagesize - 1) / pagesize;
|
|
|
|
|
|
|
|
|
|
for (page = 0; page < num_pages; page++, page_addr += pagesize)
|
|
|
|
|
inf_ttrace_remove_page (pid, page_addr);
|
|
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
inf_ttrace_can_use_hw_breakpoint (int type, int len, int ot)
|
|
|
|
|
{
|
|
|
|
|
return (type == bp_hardware_watchpoint);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
inf_ttrace_region_size_ok_for_hw_watchpoint (int len)
|
|
|
|
|
{
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Return non-zero if the current inferior was (potentially) stopped
|
|
|
|
|
by hitting a "hardware" watchpoint. */
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
inf_ttrace_stopped_by_watchpoint (void)
|
|
|
|
|
{
|
|
|
|
|
pid_t pid = ptid_get_pid (inferior_ptid);
|
|
|
|
|
lwpid_t lwpid = ptid_get_lwp (inferior_ptid);
|
|
|
|
|
ttstate_t tts;
|
|
|
|
|
|
|
|
|
|
if (inf_ttrace_page_dict.count > 0)
|
|
|
|
|
{
|
|
|
|
|
if (ttrace (TT_LWP_GET_STATE, pid, lwpid,
|
|
|
|
|
(uintptr_t)&tts, sizeof tts, 0) == -1)
|
2005-02-11 Andrew Cagney <cagney@gnu.org>
Mark up error_no_arg, query, perror_with_name, complaint, and
internal_error.
* breakpoint.c, cp-abi.c, cp-namespace.c, cp-support.c: Update.
* cris-tdep.c, dbxread.c, dictionary.c, dsrec.c: Update.
* dummy-frame.c, dve3900-rom.c, dwarf2-frame.c, dwarf2expr.c: Update.
* dwarf2read.c, dwarfread.c, elfread.c, event-loop.c: Update.
* exceptions.c, exec.c, f-lang.c, findvar.c, fork-child.c: Update.
* frame-unwind.c, frame.c, frv-linux-tdep.c, frv-tdep.c: Update.
* gdb_assert.h, gdbarch.c, gdbtypes.c, gnu-nat.c: Update.
* go32-nat.c, hppa-tdep.c, hppabsd-nat.c, hpread.c: Update.
* i386-linux-nat.c, i386-nat.c, i386-tdep.c, i386bsd-nat.c: Update.
* i386fbsd-nat.c, inf-ptrace.c, inf-ttrace.c, infcall.c: Update.
* infcmd.c, inflow.c, infptrace.c, infrun.c, inftarg.c: Update.
* interps.c, language.c, linespec.c, linux-nat.c: Update.
* m32r-linux-nat.c, m68k-tdep.c, m68kbsd-nat.c: Update.
* m68klinux-nat.c, m88kbsd-nat.c, macroexp.c, macroscope.c: Update.
* macrotab.c, maint.c, mdebugread.c, memattr.c: Update.
* mips-linux-tdep.c, mips-tdep.c, mips64obsd-nat.c: Update.
* mipsnbsd-nat.c, mn10300-tdep.c, monitor.c, nto-procfs.c: Update.
* objc-lang.c, objfiles.c, objfiles.h, ocd.c, osabi.c: Update.
* parse.c, ppc-bdm.c, ppc-linux-nat.c, ppc-sysv-tdep.c: Update.
* ppcnbsd-nat.c, ppcobsd-nat.c, printcmd.c, procfs.c: Update.
* regcache.c, reggroups.c, remote-e7000.c, remote-mips.c: Update.
* remote-rdp.c, remote-sds.c, remote-sim.c, remote-st.c: Update.
* remote-utils.c, remote.c, rs6000-nat.c, rs6000-tdep.c: Update.
* s390-nat.c, s390-tdep.c, sentinel-frame.c, serial.c: Update.
* sh-tdep.c, sh3-rom.c, sh64-tdep.c, shnbsd-nat.c: Update.
* solib-aix5.c, solib-svr4.c, solib.c, source.c: Update.
* sparc-nat.c, stabsread.c, stack.c, symfile.c, symtab.c: Update.
* symtab.h, target.c, tracepoint.c, ui-file.c, ui-out.c: Update.
* utils.c, valops.c, valprint.c, vax-nat.c, vaxbsd-nat.c: Update.
* win32-nat.c, xcoffread.c, xstormy16-tdep.c: Update.
* cli/cli-cmds.c, cli/cli-logging.c, cli/cli-script.c: Update.
* cli/cli-setshow.c, mi/mi-cmd-break.c, mi/mi-cmds.c: Update.
* mi/mi-console.c, mi/mi-getopt.c, mi/mi-out.c: Update.
* tui/tui-file.c, tui/tui-interp.c: Update.
2005-02-11 19:13:55 +01:00
|
|
|
|
perror_with_name (("ttrace"));
|
2004-12-03 23:20:00 +01:00
|
|
|
|
|
|
|
|
|
if (tts.tts_event == TTEVT_SIGNAL
|
|
|
|
|
&& tts.tts_u.tts_signal.tts_signo == SIGBUS)
|
|
|
|
|
{
|
|
|
|
|
const int pagesize = inf_ttrace_page_dict.pagesize;
|
|
|
|
|
void *addr = tts.tts_u.tts_signal.tts_siginfo.si_addr;
|
|
|
|
|
CORE_ADDR page_addr = ((uintptr_t)addr / pagesize) * pagesize;
|
|
|
|
|
|
|
|
|
|
if (inf_ttrace_get_page (pid, page_addr))
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2004-11-23 22:14:33 +01:00
|
|
|
|
|
2005-07-20 15:25:28 +02:00
|
|
|
|
/* When tracking a vfork(2), we cannot detach from the parent until
|
|
|
|
|
after the child has called exec(3) or has exited. If we are still
|
|
|
|
|
attached to the parent, this variable will be set to the process ID
|
|
|
|
|
of the parent. Otherwise it will be set to zero. */
|
|
|
|
|
static pid_t inf_ttrace_vfork_ppid = -1;
|
|
|
|
|
|
|
|
|
|
static int
|
2005-09-04 18:18:20 +02:00
|
|
|
|
inf_ttrace_follow_fork (struct target_ops *ops, int follow_child)
|
2005-07-20 15:25:28 +02:00
|
|
|
|
{
|
|
|
|
|
pid_t pid, fpid;
|
|
|
|
|
lwpid_t lwpid, flwpid;
|
|
|
|
|
ttstate_t tts;
|
|
|
|
|
|
|
|
|
|
/* FIXME: kettenis/20050720: This stuff should really be passed as
|
|
|
|
|
an argument by our caller. */
|
|
|
|
|
{
|
|
|
|
|
ptid_t ptid;
|
|
|
|
|
struct target_waitstatus status;
|
|
|
|
|
|
|
|
|
|
get_last_target_status (&ptid, &status);
|
|
|
|
|
gdb_assert (status.kind == TARGET_WAITKIND_FORKED
|
|
|
|
|
|| status.kind == TARGET_WAITKIND_VFORKED);
|
|
|
|
|
|
|
|
|
|
pid = ptid_get_pid (ptid);
|
|
|
|
|
lwpid = ptid_get_lwp (ptid);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Get all important details that core GDB doesn't (and shouldn't)
|
|
|
|
|
know about. */
|
|
|
|
|
if (ttrace (TT_LWP_GET_STATE, pid, lwpid,
|
|
|
|
|
(uintptr_t)&tts, sizeof tts, 0) == -1)
|
|
|
|
|
perror_with_name (("ttrace"));
|
|
|
|
|
|
|
|
|
|
gdb_assert (tts.tts_event == TTEVT_FORK || tts.tts_event == TTEVT_VFORK);
|
|
|
|
|
|
|
|
|
|
if (tts.tts_u.tts_fork.tts_isparent)
|
|
|
|
|
{
|
|
|
|
|
pid = tts.tts_pid;
|
|
|
|
|
lwpid = tts.tts_lwpid;
|
|
|
|
|
fpid = tts.tts_u.tts_fork.tts_fpid;
|
|
|
|
|
flwpid = tts.tts_u.tts_fork.tts_flwpid;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
pid = tts.tts_u.tts_fork.tts_fpid;
|
|
|
|
|
lwpid = tts.tts_u.tts_fork.tts_flwpid;
|
|
|
|
|
fpid = tts.tts_pid;
|
|
|
|
|
flwpid = tts.tts_lwpid;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (follow_child)
|
|
|
|
|
{
|
|
|
|
|
inferior_ptid = ptid_build (fpid, flwpid, 0);
|
|
|
|
|
detach_breakpoints (pid);
|
|
|
|
|
|
|
|
|
|
target_terminal_ours ();
|
|
|
|
|
fprintf_unfiltered (gdb_stdlog, _("\
|
|
|
|
|
Attaching after fork to child process %ld.\n"), (long)fpid);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
inferior_ptid = ptid_build (pid, lwpid, 0);
|
|
|
|
|
detach_breakpoints (fpid);
|
|
|
|
|
|
|
|
|
|
target_terminal_ours ();
|
|
|
|
|
fprintf_unfiltered (gdb_stdlog, _("\
|
|
|
|
|
Detaching after fork from child process %ld.\n"), (long)fpid);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (tts.tts_event == TTEVT_VFORK)
|
|
|
|
|
{
|
|
|
|
|
gdb_assert (!tts.tts_u.tts_fork.tts_isparent);
|
|
|
|
|
|
|
|
|
|
if (follow_child)
|
|
|
|
|
{
|
|
|
|
|
/* We can't detach from the parent yet. */
|
|
|
|
|
inf_ttrace_vfork_ppid = pid;
|
|
|
|
|
|
|
|
|
|
reattach_breakpoints (fpid);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (ttrace (TT_PROC_DETACH, fpid, 0, 0, 0, 0) == -1)
|
|
|
|
|
perror_with_name (("ttrace"));
|
|
|
|
|
|
|
|
|
|
/* Wait till we get the TTEVT_VFORK event in the parent.
|
|
|
|
|
This indicates that the child has called exec(3) or has
|
|
|
|
|
exited and that the parent is ready to be traced again. */
|
|
|
|
|
if (ttrace_wait (pid, lwpid, TTRACE_WAITOK, &tts, sizeof tts) == -1)
|
|
|
|
|
perror_with_name (("ttrace_wait"));
|
|
|
|
|
gdb_assert (tts.tts_event == TTEVT_VFORK);
|
|
|
|
|
gdb_assert (tts.tts_u.tts_fork.tts_isparent);
|
|
|
|
|
|
|
|
|
|
reattach_breakpoints (pid);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
gdb_assert (tts.tts_u.tts_fork.tts_isparent);
|
|
|
|
|
|
|
|
|
|
if (follow_child)
|
|
|
|
|
{
|
|
|
|
|
if (ttrace (TT_PROC_DETACH, pid, 0, 0, 0, 0) == -1)
|
|
|
|
|
perror_with_name (("ttrace"));
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (ttrace (TT_PROC_DETACH, fpid, 0, 0, 0, 0) == -1)
|
|
|
|
|
perror_with_name (("ttrace"));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (follow_child)
|
|
|
|
|
{
|
|
|
|
|
/* The child will start out single-threaded. */
|
|
|
|
|
inf_ttrace_num_lwps = 0;
|
|
|
|
|
inf_ttrace_num_lwps_in_syscall = 0;
|
|
|
|
|
|
|
|
|
|
/* Reset breakpoints in the child as appropriate. */
|
|
|
|
|
follow_inferior_reset_breakpoints ();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2004-11-23 22:14:33 +01:00
|
|
|
|
/* File descriptors for pipes used as semaphores during initial
|
|
|
|
|
startup of an inferior. */
|
|
|
|
|
static int inf_ttrace_pfd1[2];
|
|
|
|
|
static int inf_ttrace_pfd2[2];
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
do_cleanup_pfds (void *dummy)
|
|
|
|
|
{
|
|
|
|
|
close (inf_ttrace_pfd1[0]);
|
|
|
|
|
close (inf_ttrace_pfd1[1]);
|
|
|
|
|
close (inf_ttrace_pfd2[0]);
|
|
|
|
|
close (inf_ttrace_pfd2[1]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
inf_ttrace_prepare (void)
|
|
|
|
|
{
|
|
|
|
|
if (pipe (inf_ttrace_pfd1) == -1)
|
2005-02-11 Andrew Cagney <cagney@gnu.org>
Mark up some of printf_filtered and printf_unfiltered.
* ada-lang.c, annotate.c, arch-utils.c, breakpoint.c: Update.
* corelow.c, cp-namespace.c, cp-support.c, dcache.c: Update.
* demangle.c, dsrec.c, dwarf2read.c, dwarfread.c: Update.
* event-loop.c, event-top.c, exec.c, f-valprint.c: Update.
* gdbtypes.c, inf-loop.c, inf-ptrace.c, inf-ttrace.c: Update.
* infcmd.c, inflow.c, infrun.c, inftarg.c, language.c: Update.
* linespec.c, linux-nat.c, linux-thread-db.c, maint.c: Update.
* mdebugread.c, memattr.c, monitor.c, objc-lang.c: Update.
* ocd.c, osabi.c, printcmd.c, procfs.c, regcache.c: Update.
* remote.c, solib-som.c, solib.c, somsolib.c, source.c: Update.
* stack.c, symfile.c, symmisc.c, target.c, thread.c: Update.
* top.c, utils.c, valprint.c, value.c, cli/cli-cmds.c: Update.
* cli/cli-dump.c, cli/cli-logging.c, tui/tui-hooks.c: Update.
* tui/tui-regs.c, tui/tui-win.c: Update.
2005-02-12 01:39:24 +01:00
|
|
|
|
perror_with_name (("pipe"));
|
2004-11-23 22:14:33 +01:00
|
|
|
|
|
|
|
|
|
if (pipe (inf_ttrace_pfd2) == -1)
|
|
|
|
|
{
|
|
|
|
|
close (inf_ttrace_pfd1[0]);
|
|
|
|
|
close (inf_ttrace_pfd2[0]);
|
2005-02-11 Andrew Cagney <cagney@gnu.org>
Mark up some of printf_filtered and printf_unfiltered.
* ada-lang.c, annotate.c, arch-utils.c, breakpoint.c: Update.
* corelow.c, cp-namespace.c, cp-support.c, dcache.c: Update.
* demangle.c, dsrec.c, dwarf2read.c, dwarfread.c: Update.
* event-loop.c, event-top.c, exec.c, f-valprint.c: Update.
* gdbtypes.c, inf-loop.c, inf-ptrace.c, inf-ttrace.c: Update.
* infcmd.c, inflow.c, infrun.c, inftarg.c, language.c: Update.
* linespec.c, linux-nat.c, linux-thread-db.c, maint.c: Update.
* mdebugread.c, memattr.c, monitor.c, objc-lang.c: Update.
* ocd.c, osabi.c, printcmd.c, procfs.c, regcache.c: Update.
* remote.c, solib-som.c, solib.c, somsolib.c, source.c: Update.
* stack.c, symfile.c, symmisc.c, target.c, thread.c: Update.
* top.c, utils.c, valprint.c, value.c, cli/cli-cmds.c: Update.
* cli/cli-dump.c, cli/cli-logging.c, tui/tui-hooks.c: Update.
* tui/tui-regs.c, tui/tui-win.c: Update.
2005-02-12 01:39:24 +01:00
|
|
|
|
perror_with_name (("pipe"));
|
2004-11-23 22:14:33 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Prepare to be traced. */
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
inf_ttrace_me (void)
|
|
|
|
|
{
|
|
|
|
|
struct cleanup *old_chain = make_cleanup (do_cleanup_pfds, 0);
|
|
|
|
|
char c;
|
|
|
|
|
|
|
|
|
|
/* "Trace me, Dr. Memory!" */
|
|
|
|
|
if (ttrace (TT_PROC_SETTRC, 0, 0, 0, TT_VERSION, 0) == -1)
|
2005-02-11 Andrew Cagney <cagney@gnu.org>
Mark up error_no_arg, query, perror_with_name, complaint, and
internal_error.
* breakpoint.c, cp-abi.c, cp-namespace.c, cp-support.c: Update.
* cris-tdep.c, dbxread.c, dictionary.c, dsrec.c: Update.
* dummy-frame.c, dve3900-rom.c, dwarf2-frame.c, dwarf2expr.c: Update.
* dwarf2read.c, dwarfread.c, elfread.c, event-loop.c: Update.
* exceptions.c, exec.c, f-lang.c, findvar.c, fork-child.c: Update.
* frame-unwind.c, frame.c, frv-linux-tdep.c, frv-tdep.c: Update.
* gdb_assert.h, gdbarch.c, gdbtypes.c, gnu-nat.c: Update.
* go32-nat.c, hppa-tdep.c, hppabsd-nat.c, hpread.c: Update.
* i386-linux-nat.c, i386-nat.c, i386-tdep.c, i386bsd-nat.c: Update.
* i386fbsd-nat.c, inf-ptrace.c, inf-ttrace.c, infcall.c: Update.
* infcmd.c, inflow.c, infptrace.c, infrun.c, inftarg.c: Update.
* interps.c, language.c, linespec.c, linux-nat.c: Update.
* m32r-linux-nat.c, m68k-tdep.c, m68kbsd-nat.c: Update.
* m68klinux-nat.c, m88kbsd-nat.c, macroexp.c, macroscope.c: Update.
* macrotab.c, maint.c, mdebugread.c, memattr.c: Update.
* mips-linux-tdep.c, mips-tdep.c, mips64obsd-nat.c: Update.
* mipsnbsd-nat.c, mn10300-tdep.c, monitor.c, nto-procfs.c: Update.
* objc-lang.c, objfiles.c, objfiles.h, ocd.c, osabi.c: Update.
* parse.c, ppc-bdm.c, ppc-linux-nat.c, ppc-sysv-tdep.c: Update.
* ppcnbsd-nat.c, ppcobsd-nat.c, printcmd.c, procfs.c: Update.
* regcache.c, reggroups.c, remote-e7000.c, remote-mips.c: Update.
* remote-rdp.c, remote-sds.c, remote-sim.c, remote-st.c: Update.
* remote-utils.c, remote.c, rs6000-nat.c, rs6000-tdep.c: Update.
* s390-nat.c, s390-tdep.c, sentinel-frame.c, serial.c: Update.
* sh-tdep.c, sh3-rom.c, sh64-tdep.c, shnbsd-nat.c: Update.
* solib-aix5.c, solib-svr4.c, solib.c, source.c: Update.
* sparc-nat.c, stabsread.c, stack.c, symfile.c, symtab.c: Update.
* symtab.h, target.c, tracepoint.c, ui-file.c, ui-out.c: Update.
* utils.c, valops.c, valprint.c, vax-nat.c, vaxbsd-nat.c: Update.
* win32-nat.c, xcoffread.c, xstormy16-tdep.c: Update.
* cli/cli-cmds.c, cli/cli-logging.c, cli/cli-script.c: Update.
* cli/cli-setshow.c, mi/mi-cmd-break.c, mi/mi-cmds.c: Update.
* mi/mi-console.c, mi/mi-getopt.c, mi/mi-out.c: Update.
* tui/tui-file.c, tui/tui-interp.c: Update.
2005-02-11 19:13:55 +01:00
|
|
|
|
perror_with_name (("ttrace"));
|
2004-11-23 22:14:33 +01:00
|
|
|
|
|
|
|
|
|
/* Tell our parent that we are ready to be traced. */
|
|
|
|
|
if (write (inf_ttrace_pfd1[1], &c, sizeof c) != sizeof c)
|
2005-02-11 Andrew Cagney <cagney@gnu.org>
Mark up error_no_arg, query, perror_with_name, complaint, and
internal_error.
* breakpoint.c, cp-abi.c, cp-namespace.c, cp-support.c: Update.
* cris-tdep.c, dbxread.c, dictionary.c, dsrec.c: Update.
* dummy-frame.c, dve3900-rom.c, dwarf2-frame.c, dwarf2expr.c: Update.
* dwarf2read.c, dwarfread.c, elfread.c, event-loop.c: Update.
* exceptions.c, exec.c, f-lang.c, findvar.c, fork-child.c: Update.
* frame-unwind.c, frame.c, frv-linux-tdep.c, frv-tdep.c: Update.
* gdb_assert.h, gdbarch.c, gdbtypes.c, gnu-nat.c: Update.
* go32-nat.c, hppa-tdep.c, hppabsd-nat.c, hpread.c: Update.
* i386-linux-nat.c, i386-nat.c, i386-tdep.c, i386bsd-nat.c: Update.
* i386fbsd-nat.c, inf-ptrace.c, inf-ttrace.c, infcall.c: Update.
* infcmd.c, inflow.c, infptrace.c, infrun.c, inftarg.c: Update.
* interps.c, language.c, linespec.c, linux-nat.c: Update.
* m32r-linux-nat.c, m68k-tdep.c, m68kbsd-nat.c: Update.
* m68klinux-nat.c, m88kbsd-nat.c, macroexp.c, macroscope.c: Update.
* macrotab.c, maint.c, mdebugread.c, memattr.c: Update.
* mips-linux-tdep.c, mips-tdep.c, mips64obsd-nat.c: Update.
* mipsnbsd-nat.c, mn10300-tdep.c, monitor.c, nto-procfs.c: Update.
* objc-lang.c, objfiles.c, objfiles.h, ocd.c, osabi.c: Update.
* parse.c, ppc-bdm.c, ppc-linux-nat.c, ppc-sysv-tdep.c: Update.
* ppcnbsd-nat.c, ppcobsd-nat.c, printcmd.c, procfs.c: Update.
* regcache.c, reggroups.c, remote-e7000.c, remote-mips.c: Update.
* remote-rdp.c, remote-sds.c, remote-sim.c, remote-st.c: Update.
* remote-utils.c, remote.c, rs6000-nat.c, rs6000-tdep.c: Update.
* s390-nat.c, s390-tdep.c, sentinel-frame.c, serial.c: Update.
* sh-tdep.c, sh3-rom.c, sh64-tdep.c, shnbsd-nat.c: Update.
* solib-aix5.c, solib-svr4.c, solib.c, source.c: Update.
* sparc-nat.c, stabsread.c, stack.c, symfile.c, symtab.c: Update.
* symtab.h, target.c, tracepoint.c, ui-file.c, ui-out.c: Update.
* utils.c, valops.c, valprint.c, vax-nat.c, vaxbsd-nat.c: Update.
* win32-nat.c, xcoffread.c, xstormy16-tdep.c: Update.
* cli/cli-cmds.c, cli/cli-logging.c, cli/cli-script.c: Update.
* cli/cli-setshow.c, mi/mi-cmd-break.c, mi/mi-cmds.c: Update.
* mi/mi-console.c, mi/mi-getopt.c, mi/mi-out.c: Update.
* tui/tui-file.c, tui/tui-interp.c: Update.
2005-02-11 19:13:55 +01:00
|
|
|
|
perror_with_name (("write"));
|
2004-11-23 22:14:33 +01:00
|
|
|
|
|
|
|
|
|
/* Wait until our parent has set the initial event mask. */
|
|
|
|
|
if (read (inf_ttrace_pfd2[0], &c, sizeof c) != sizeof c)
|
2005-02-11 Andrew Cagney <cagney@gnu.org>
Mark up error_no_arg, query, perror_with_name, complaint, and
internal_error.
* breakpoint.c, cp-abi.c, cp-namespace.c, cp-support.c: Update.
* cris-tdep.c, dbxread.c, dictionary.c, dsrec.c: Update.
* dummy-frame.c, dve3900-rom.c, dwarf2-frame.c, dwarf2expr.c: Update.
* dwarf2read.c, dwarfread.c, elfread.c, event-loop.c: Update.
* exceptions.c, exec.c, f-lang.c, findvar.c, fork-child.c: Update.
* frame-unwind.c, frame.c, frv-linux-tdep.c, frv-tdep.c: Update.
* gdb_assert.h, gdbarch.c, gdbtypes.c, gnu-nat.c: Update.
* go32-nat.c, hppa-tdep.c, hppabsd-nat.c, hpread.c: Update.
* i386-linux-nat.c, i386-nat.c, i386-tdep.c, i386bsd-nat.c: Update.
* i386fbsd-nat.c, inf-ptrace.c, inf-ttrace.c, infcall.c: Update.
* infcmd.c, inflow.c, infptrace.c, infrun.c, inftarg.c: Update.
* interps.c, language.c, linespec.c, linux-nat.c: Update.
* m32r-linux-nat.c, m68k-tdep.c, m68kbsd-nat.c: Update.
* m68klinux-nat.c, m88kbsd-nat.c, macroexp.c, macroscope.c: Update.
* macrotab.c, maint.c, mdebugread.c, memattr.c: Update.
* mips-linux-tdep.c, mips-tdep.c, mips64obsd-nat.c: Update.
* mipsnbsd-nat.c, mn10300-tdep.c, monitor.c, nto-procfs.c: Update.
* objc-lang.c, objfiles.c, objfiles.h, ocd.c, osabi.c: Update.
* parse.c, ppc-bdm.c, ppc-linux-nat.c, ppc-sysv-tdep.c: Update.
* ppcnbsd-nat.c, ppcobsd-nat.c, printcmd.c, procfs.c: Update.
* regcache.c, reggroups.c, remote-e7000.c, remote-mips.c: Update.
* remote-rdp.c, remote-sds.c, remote-sim.c, remote-st.c: Update.
* remote-utils.c, remote.c, rs6000-nat.c, rs6000-tdep.c: Update.
* s390-nat.c, s390-tdep.c, sentinel-frame.c, serial.c: Update.
* sh-tdep.c, sh3-rom.c, sh64-tdep.c, shnbsd-nat.c: Update.
* solib-aix5.c, solib-svr4.c, solib.c, source.c: Update.
* sparc-nat.c, stabsread.c, stack.c, symfile.c, symtab.c: Update.
* symtab.h, target.c, tracepoint.c, ui-file.c, ui-out.c: Update.
* utils.c, valops.c, valprint.c, vax-nat.c, vaxbsd-nat.c: Update.
* win32-nat.c, xcoffread.c, xstormy16-tdep.c: Update.
* cli/cli-cmds.c, cli/cli-logging.c, cli/cli-script.c: Update.
* cli/cli-setshow.c, mi/mi-cmd-break.c, mi/mi-cmds.c: Update.
* mi/mi-console.c, mi/mi-getopt.c, mi/mi-out.c: Update.
* tui/tui-file.c, tui/tui-interp.c: Update.
2005-02-11 19:13:55 +01:00
|
|
|
|
perror_with_name (("read"));
|
2004-11-23 22:14:33 +01:00
|
|
|
|
|
|
|
|
|
do_cleanups (old_chain);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Start tracing PID. */
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
inf_ttrace_him (int pid)
|
|
|
|
|
{
|
|
|
|
|
struct cleanup *old_chain = make_cleanup (do_cleanup_pfds, 0);
|
|
|
|
|
ttevent_t tte;
|
|
|
|
|
char c;
|
|
|
|
|
|
|
|
|
|
/* Wait until our child is ready to be traced. */
|
|
|
|
|
if (read (inf_ttrace_pfd1[0], &c, sizeof c) != sizeof c)
|
2005-02-11 Andrew Cagney <cagney@gnu.org>
Mark up error_no_arg, query, perror_with_name, complaint, and
internal_error.
* breakpoint.c, cp-abi.c, cp-namespace.c, cp-support.c: Update.
* cris-tdep.c, dbxread.c, dictionary.c, dsrec.c: Update.
* dummy-frame.c, dve3900-rom.c, dwarf2-frame.c, dwarf2expr.c: Update.
* dwarf2read.c, dwarfread.c, elfread.c, event-loop.c: Update.
* exceptions.c, exec.c, f-lang.c, findvar.c, fork-child.c: Update.
* frame-unwind.c, frame.c, frv-linux-tdep.c, frv-tdep.c: Update.
* gdb_assert.h, gdbarch.c, gdbtypes.c, gnu-nat.c: Update.
* go32-nat.c, hppa-tdep.c, hppabsd-nat.c, hpread.c: Update.
* i386-linux-nat.c, i386-nat.c, i386-tdep.c, i386bsd-nat.c: Update.
* i386fbsd-nat.c, inf-ptrace.c, inf-ttrace.c, infcall.c: Update.
* infcmd.c, inflow.c, infptrace.c, infrun.c, inftarg.c: Update.
* interps.c, language.c, linespec.c, linux-nat.c: Update.
* m32r-linux-nat.c, m68k-tdep.c, m68kbsd-nat.c: Update.
* m68klinux-nat.c, m88kbsd-nat.c, macroexp.c, macroscope.c: Update.
* macrotab.c, maint.c, mdebugread.c, memattr.c: Update.
* mips-linux-tdep.c, mips-tdep.c, mips64obsd-nat.c: Update.
* mipsnbsd-nat.c, mn10300-tdep.c, monitor.c, nto-procfs.c: Update.
* objc-lang.c, objfiles.c, objfiles.h, ocd.c, osabi.c: Update.
* parse.c, ppc-bdm.c, ppc-linux-nat.c, ppc-sysv-tdep.c: Update.
* ppcnbsd-nat.c, ppcobsd-nat.c, printcmd.c, procfs.c: Update.
* regcache.c, reggroups.c, remote-e7000.c, remote-mips.c: Update.
* remote-rdp.c, remote-sds.c, remote-sim.c, remote-st.c: Update.
* remote-utils.c, remote.c, rs6000-nat.c, rs6000-tdep.c: Update.
* s390-nat.c, s390-tdep.c, sentinel-frame.c, serial.c: Update.
* sh-tdep.c, sh3-rom.c, sh64-tdep.c, shnbsd-nat.c: Update.
* solib-aix5.c, solib-svr4.c, solib.c, source.c: Update.
* sparc-nat.c, stabsread.c, stack.c, symfile.c, symtab.c: Update.
* symtab.h, target.c, tracepoint.c, ui-file.c, ui-out.c: Update.
* utils.c, valops.c, valprint.c, vax-nat.c, vaxbsd-nat.c: Update.
* win32-nat.c, xcoffread.c, xstormy16-tdep.c: Update.
* cli/cli-cmds.c, cli/cli-logging.c, cli/cli-script.c: Update.
* cli/cli-setshow.c, mi/mi-cmd-break.c, mi/mi-cmds.c: Update.
* mi/mi-console.c, mi/mi-getopt.c, mi/mi-out.c: Update.
* tui/tui-file.c, tui/tui-interp.c: Update.
2005-02-11 19:13:55 +01:00
|
|
|
|
perror_with_name (("read"));
|
2004-11-23 22:14:33 +01:00
|
|
|
|
|
|
|
|
|
/* Set the initial event mask. */
|
|
|
|
|
memset (&tte, 0, sizeof (tte));
|
2005-07-20 15:25:28 +02:00
|
|
|
|
tte.tte_events |= TTEVT_EXEC | TTEVT_EXIT | TTEVT_FORK | TTEVT_VFORK;
|
2004-12-07 20:57:21 +01:00
|
|
|
|
tte.tte_events |= TTEVT_LWP_CREATE | TTEVT_LWP_EXIT | TTEVT_LWP_TERMINATE;
|
2004-12-11 22:53:58 +01:00
|
|
|
|
#ifdef TTEVT_BPT_SSTEP
|
|
|
|
|
tte.tte_events |= TTEVT_BPT_SSTEP;
|
|
|
|
|
#endif
|
2005-07-20 15:25:28 +02:00
|
|
|
|
tte.tte_opts |= TTEO_PROC_INHERIT;
|
2004-11-23 22:14:33 +01:00
|
|
|
|
if (ttrace (TT_PROC_SET_EVENT_MASK, pid, 0,
|
|
|
|
|
(uintptr_t)&tte, sizeof tte, 0) == -1)
|
2005-02-11 Andrew Cagney <cagney@gnu.org>
Mark up error_no_arg, query, perror_with_name, complaint, and
internal_error.
* breakpoint.c, cp-abi.c, cp-namespace.c, cp-support.c: Update.
* cris-tdep.c, dbxread.c, dictionary.c, dsrec.c: Update.
* dummy-frame.c, dve3900-rom.c, dwarf2-frame.c, dwarf2expr.c: Update.
* dwarf2read.c, dwarfread.c, elfread.c, event-loop.c: Update.
* exceptions.c, exec.c, f-lang.c, findvar.c, fork-child.c: Update.
* frame-unwind.c, frame.c, frv-linux-tdep.c, frv-tdep.c: Update.
* gdb_assert.h, gdbarch.c, gdbtypes.c, gnu-nat.c: Update.
* go32-nat.c, hppa-tdep.c, hppabsd-nat.c, hpread.c: Update.
* i386-linux-nat.c, i386-nat.c, i386-tdep.c, i386bsd-nat.c: Update.
* i386fbsd-nat.c, inf-ptrace.c, inf-ttrace.c, infcall.c: Update.
* infcmd.c, inflow.c, infptrace.c, infrun.c, inftarg.c: Update.
* interps.c, language.c, linespec.c, linux-nat.c: Update.
* m32r-linux-nat.c, m68k-tdep.c, m68kbsd-nat.c: Update.
* m68klinux-nat.c, m88kbsd-nat.c, macroexp.c, macroscope.c: Update.
* macrotab.c, maint.c, mdebugread.c, memattr.c: Update.
* mips-linux-tdep.c, mips-tdep.c, mips64obsd-nat.c: Update.
* mipsnbsd-nat.c, mn10300-tdep.c, monitor.c, nto-procfs.c: Update.
* objc-lang.c, objfiles.c, objfiles.h, ocd.c, osabi.c: Update.
* parse.c, ppc-bdm.c, ppc-linux-nat.c, ppc-sysv-tdep.c: Update.
* ppcnbsd-nat.c, ppcobsd-nat.c, printcmd.c, procfs.c: Update.
* regcache.c, reggroups.c, remote-e7000.c, remote-mips.c: Update.
* remote-rdp.c, remote-sds.c, remote-sim.c, remote-st.c: Update.
* remote-utils.c, remote.c, rs6000-nat.c, rs6000-tdep.c: Update.
* s390-nat.c, s390-tdep.c, sentinel-frame.c, serial.c: Update.
* sh-tdep.c, sh3-rom.c, sh64-tdep.c, shnbsd-nat.c: Update.
* solib-aix5.c, solib-svr4.c, solib.c, source.c: Update.
* sparc-nat.c, stabsread.c, stack.c, symfile.c, symtab.c: Update.
* symtab.h, target.c, tracepoint.c, ui-file.c, ui-out.c: Update.
* utils.c, valops.c, valprint.c, vax-nat.c, vaxbsd-nat.c: Update.
* win32-nat.c, xcoffread.c, xstormy16-tdep.c: Update.
* cli/cli-cmds.c, cli/cli-logging.c, cli/cli-script.c: Update.
* cli/cli-setshow.c, mi/mi-cmd-break.c, mi/mi-cmds.c: Update.
* mi/mi-console.c, mi/mi-getopt.c, mi/mi-out.c: Update.
* tui/tui-file.c, tui/tui-interp.c: Update.
2005-02-11 19:13:55 +01:00
|
|
|
|
perror_with_name (("ttrace"));
|
2004-11-23 22:14:33 +01:00
|
|
|
|
|
|
|
|
|
/* Tell our child that we have set the initial event mask. */
|
|
|
|
|
if (write (inf_ttrace_pfd2[1], &c, sizeof c) != sizeof c)
|
2005-02-11 Andrew Cagney <cagney@gnu.org>
Mark up error_no_arg, query, perror_with_name, complaint, and
internal_error.
* breakpoint.c, cp-abi.c, cp-namespace.c, cp-support.c: Update.
* cris-tdep.c, dbxread.c, dictionary.c, dsrec.c: Update.
* dummy-frame.c, dve3900-rom.c, dwarf2-frame.c, dwarf2expr.c: Update.
* dwarf2read.c, dwarfread.c, elfread.c, event-loop.c: Update.
* exceptions.c, exec.c, f-lang.c, findvar.c, fork-child.c: Update.
* frame-unwind.c, frame.c, frv-linux-tdep.c, frv-tdep.c: Update.
* gdb_assert.h, gdbarch.c, gdbtypes.c, gnu-nat.c: Update.
* go32-nat.c, hppa-tdep.c, hppabsd-nat.c, hpread.c: Update.
* i386-linux-nat.c, i386-nat.c, i386-tdep.c, i386bsd-nat.c: Update.
* i386fbsd-nat.c, inf-ptrace.c, inf-ttrace.c, infcall.c: Update.
* infcmd.c, inflow.c, infptrace.c, infrun.c, inftarg.c: Update.
* interps.c, language.c, linespec.c, linux-nat.c: Update.
* m32r-linux-nat.c, m68k-tdep.c, m68kbsd-nat.c: Update.
* m68klinux-nat.c, m88kbsd-nat.c, macroexp.c, macroscope.c: Update.
* macrotab.c, maint.c, mdebugread.c, memattr.c: Update.
* mips-linux-tdep.c, mips-tdep.c, mips64obsd-nat.c: Update.
* mipsnbsd-nat.c, mn10300-tdep.c, monitor.c, nto-procfs.c: Update.
* objc-lang.c, objfiles.c, objfiles.h, ocd.c, osabi.c: Update.
* parse.c, ppc-bdm.c, ppc-linux-nat.c, ppc-sysv-tdep.c: Update.
* ppcnbsd-nat.c, ppcobsd-nat.c, printcmd.c, procfs.c: Update.
* regcache.c, reggroups.c, remote-e7000.c, remote-mips.c: Update.
* remote-rdp.c, remote-sds.c, remote-sim.c, remote-st.c: Update.
* remote-utils.c, remote.c, rs6000-nat.c, rs6000-tdep.c: Update.
* s390-nat.c, s390-tdep.c, sentinel-frame.c, serial.c: Update.
* sh-tdep.c, sh3-rom.c, sh64-tdep.c, shnbsd-nat.c: Update.
* solib-aix5.c, solib-svr4.c, solib.c, source.c: Update.
* sparc-nat.c, stabsread.c, stack.c, symfile.c, symtab.c: Update.
* symtab.h, target.c, tracepoint.c, ui-file.c, ui-out.c: Update.
* utils.c, valops.c, valprint.c, vax-nat.c, vaxbsd-nat.c: Update.
* win32-nat.c, xcoffread.c, xstormy16-tdep.c: Update.
* cli/cli-cmds.c, cli/cli-logging.c, cli/cli-script.c: Update.
* cli/cli-setshow.c, mi/mi-cmd-break.c, mi/mi-cmds.c: Update.
* mi/mi-console.c, mi/mi-getopt.c, mi/mi-out.c: Update.
* tui/tui-file.c, tui/tui-interp.c: Update.
2005-02-11 19:13:55 +01:00
|
|
|
|
perror_with_name (("write"));
|
2004-11-23 22:14:33 +01:00
|
|
|
|
|
|
|
|
|
do_cleanups (old_chain);
|
|
|
|
|
|
|
|
|
|
push_target (ttrace_ops_hack);
|
|
|
|
|
|
|
|
|
|
/* On some targets, there must be some explicit synchronization
|
|
|
|
|
between the parent and child processes after the debugger forks,
|
|
|
|
|
and before the child execs the debuggee program. This call
|
|
|
|
|
basically gives permission for the child to exec. */
|
|
|
|
|
|
|
|
|
|
target_acknowledge_created_inferior (pid);
|
|
|
|
|
|
|
|
|
|
/* START_INFERIOR_TRAPS_EXPECTED is defined in inferior.h, and will
|
|
|
|
|
be 1 or 2 depending on whether we're starting without or with a
|
|
|
|
|
shell. */
|
|
|
|
|
startup_inferior (START_INFERIOR_TRAPS_EXPECTED);
|
|
|
|
|
|
|
|
|
|
/* On some targets, there must be some explicit actions taken after
|
|
|
|
|
the inferior has been started up. */
|
|
|
|
|
target_post_startup_inferior (pid_to_ptid (pid));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
inf_ttrace_create_inferior (char *exec_file, char *allargs, char **env,
|
|
|
|
|
int from_tty)
|
|
|
|
|
{
|
2004-12-07 20:57:21 +01:00
|
|
|
|
gdb_assert (inf_ttrace_num_lwps == 0);
|
|
|
|
|
gdb_assert (inf_ttrace_num_lwps_in_syscall == 0);
|
2004-12-03 23:20:00 +01:00
|
|
|
|
gdb_assert (inf_ttrace_page_dict.count == 0);
|
|
|
|
|
gdb_assert (inf_ttrace_reenable_page_protections == 0);
|
2005-07-20 15:25:28 +02:00
|
|
|
|
gdb_assert (inf_ttrace_vfork_ppid == -1);
|
2004-12-03 23:20:00 +01:00
|
|
|
|
|
2004-11-23 22:14:33 +01:00
|
|
|
|
fork_inferior (exec_file, allargs, env, inf_ttrace_me, inf_ttrace_him,
|
|
|
|
|
inf_ttrace_prepare, NULL);
|
|
|
|
|
|
|
|
|
|
/* We are at the first instruction we care about. */
|
|
|
|
|
observer_notify_inferior_created (¤t_target, from_tty);
|
|
|
|
|
|
|
|
|
|
/* Pedal to the metal... */
|
|
|
|
|
proceed ((CORE_ADDR) -1, TARGET_SIGNAL_0, 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
inf_ttrace_mourn_inferior (void)
|
|
|
|
|
{
|
2004-12-03 23:20:00 +01:00
|
|
|
|
const int num_buckets = ARRAY_SIZE (inf_ttrace_page_dict.buckets);
|
|
|
|
|
int bucket;
|
|
|
|
|
|
2004-12-07 20:57:21 +01:00
|
|
|
|
inf_ttrace_num_lwps = 0;
|
|
|
|
|
inf_ttrace_num_lwps_in_syscall = 0;
|
2004-12-03 23:20:00 +01:00
|
|
|
|
|
|
|
|
|
for (bucket = 0; bucket < num_buckets; bucket++)
|
|
|
|
|
{
|
|
|
|
|
struct inf_ttrace_page *page;
|
|
|
|
|
struct inf_ttrace_page *next;
|
|
|
|
|
|
|
|
|
|
page = inf_ttrace_page_dict.buckets[bucket].next;
|
|
|
|
|
while (page)
|
|
|
|
|
{
|
|
|
|
|
next = page->next;
|
|
|
|
|
xfree (page);
|
|
|
|
|
page = next;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
inf_ttrace_page_dict.count = 0;
|
|
|
|
|
|
2004-11-23 22:14:33 +01:00
|
|
|
|
unpush_target (ttrace_ops_hack);
|
|
|
|
|
generic_mourn_inferior ();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
inf_ttrace_attach (char *args, int from_tty)
|
|
|
|
|
{
|
|
|
|
|
char *exec_file;
|
|
|
|
|
pid_t pid;
|
|
|
|
|
char *dummy;
|
2004-12-03 23:20:00 +01:00
|
|
|
|
ttevent_t tte;
|
2004-11-23 22:14:33 +01:00
|
|
|
|
|
|
|
|
|
if (!args)
|
2005-02-11 Andrew Cagney <cagney@gnu.org>
Mark up some of printf_filtered and printf_unfiltered.
* ada-lang.c, annotate.c, arch-utils.c, breakpoint.c: Update.
* corelow.c, cp-namespace.c, cp-support.c, dcache.c: Update.
* demangle.c, dsrec.c, dwarf2read.c, dwarfread.c: Update.
* event-loop.c, event-top.c, exec.c, f-valprint.c: Update.
* gdbtypes.c, inf-loop.c, inf-ptrace.c, inf-ttrace.c: Update.
* infcmd.c, inflow.c, infrun.c, inftarg.c, language.c: Update.
* linespec.c, linux-nat.c, linux-thread-db.c, maint.c: Update.
* mdebugread.c, memattr.c, monitor.c, objc-lang.c: Update.
* ocd.c, osabi.c, printcmd.c, procfs.c, regcache.c: Update.
* remote.c, solib-som.c, solib.c, somsolib.c, source.c: Update.
* stack.c, symfile.c, symmisc.c, target.c, thread.c: Update.
* top.c, utils.c, valprint.c, value.c, cli/cli-cmds.c: Update.
* cli/cli-dump.c, cli/cli-logging.c, tui/tui-hooks.c: Update.
* tui/tui-regs.c, tui/tui-win.c: Update.
2005-02-12 01:39:24 +01:00
|
|
|
|
error_no_arg (_("process-id to attach"));
|
2004-11-23 22:14:33 +01:00
|
|
|
|
|
|
|
|
|
dummy = args;
|
|
|
|
|
pid = strtol (args, &dummy, 0);
|
|
|
|
|
if (pid == 0 && args == dummy)
|
2005-02-10 Andrew Cagney <cagney@gnu.org>
Mark up all error and warning messages.
* ada-lang.c, amd64-tdep.c, arch-utils.c, breakpoint.c: Update.
* bsd-kvm.c, bsd-uthread.c, coff-solib.h, coffread.c: Update.
* core-aout.c, core-regset.c, corefile.c, corelow.c: Update.
* cp-abi.c, cp-support.c, cp-valprint.c, cris-tdep.c: Update.
* dbxread.c, demangle.c, doublest.c, dsrec.c: Update.
* dve3900-rom.c, dwarf2expr.c, dwarf2loc.c: Update.
* dwarf2read.c, dwarfread.c, elfread.c, eval.c: Update.
* event-top.c, exec.c, expprint.c, f-lang.c: Update.
* f-typeprint.c, f-valprint.c, fbsd-nat.c, findvar.c: Update.
* frame.c, frv-linux-tdep.c, gcore.c, gdbtypes.c: Update.
* gnu-nat.c, gnu-v2-abi.c, gnu-v3-abi.c, go32-nat.c: Update.
* hpacc-abi.c, hppa-hpux-nat.c, hppa-hpux-tdep.c: Update.
* hppa-linux-nat.c, hppa-linux-tdep.c, hppa-tdep.c: Update.
* hpread.c, hpux-thread.c, i386-linux-nat.c: Update.
* i386-linux-tdep.c, i386-tdep.c, i386bsd-nat.c: Update.
* i386gnu-nat.c, i387-tdep.c, ia64-linux-nat.c: Update.
* ia64-tdep.c, inf-child.c, inf-ptrace.c, inf-ttrace.c: Update.
* infcall.c, infcmd.c, inflow.c, infptrace.c, infrun.c: Update.
* inftarg.c, interps.c, irix5-nat.c, jv-lang.c: Update.
* kod-cisco.c, kod.c, language.c, libunwind-frame.c: Update.
* linespec.c, linux-nat.c, linux-thread-db.c, m2-lang.c: Update.
* m32r-rom.c, m68hc11-tdep.c, m68k-tdep.c: Update.
* m68klinux-nat.c, macrocmd.c, macroexp.c, main.c: Update.
* maint.c, mdebugread.c, mem-break.c, memattr.c: Update.
* mips-linux-tdep.c, mips-tdep.c, mipsread.c, monitor.c: Update.
* nlmread.c, nto-procfs.c, objc-lang.c, objfiles.c: Update.
* observer.c, ocd.c, p-lang.c, p-typeprint.c: Update.
* p-valprint.c, pa64solib.c, parse.c, ppc-linux-tdep.c: Update.
* ppcnbsd-tdep.c, printcmd.c, procfs.c, remote-e7000.c: Update.
* remote-fileio.c, remote-m32r-sdi.c, remote-rdi.c: Update.
* remote-rdp.c, remote-sim.c, remote-st.c: Update.
* remote-utils.c, remote-utils.h, remote.c: Update.
* rom68k-rom.c, rs6000-nat.c, s390-tdep.c, scm-lang.c: Update.
* ser-e7kpc.c, ser-tcp.c, ser-unix.c, sh-tdep.c: Update.
* sh3-rom.c, shnbsd-tdep.c, sol-thread.c, solib-aix5.c: Update.
* solib-frv.c, solib-irix.c, solib-osf.c, solib-pa64.c: Update.
* solib-som.c, solib-sunos.c, solib-svr4.c, solib.c: Update.
* somread.c, somsolib.c, source.c, stabsread.c: Update.
* stack.c, std-regs.c, symfile-mem.c, symfile.c: Update.
* symmisc.c, symtab.c, target.c, thread.c, top.c: Update.
* tracepoint.c, trad-frame.c, typeprint.c, utils.c: Update.
* uw-thread.c, valarith.c, valops.c, valprint.c: Update.
* value.c, varobj.c, version.in, win32-nat.c, wince.c: Update.
* xcoffread.c, xcoffsolib.c, cli/cli-cmds.c: Update.
* cli/cli-decode.c, cli/cli-dump.c, cli/cli-logging.c: Update.
* cli/cli-script.c, cli/cli-setshow.c, mi/mi-cmd-break.c: Update.
* mi/mi-cmd-disas.c, mi/mi-cmd-env.c, mi/mi-cmd-file.c: Update.
* mi/mi-cmd-stack.c, mi/mi-cmd-var.c, mi/mi-getopt.c: Update.
* mi/mi-symbol-cmds.c, tui/tui-layout.c, tui/tui-stack.c: Update.
* tui/tui-win.c: Update.
2005-02-11 05:06:14 +01:00
|
|
|
|
error (_("Illegal process-id: %s."), args);
|
2004-11-23 22:14:33 +01:00
|
|
|
|
|
|
|
|
|
if (pid == getpid ()) /* Trying to masturbate? */
|
2005-02-10 Andrew Cagney <cagney@gnu.org>
Mark up all error and warning messages.
* ada-lang.c, amd64-tdep.c, arch-utils.c, breakpoint.c: Update.
* bsd-kvm.c, bsd-uthread.c, coff-solib.h, coffread.c: Update.
* core-aout.c, core-regset.c, corefile.c, corelow.c: Update.
* cp-abi.c, cp-support.c, cp-valprint.c, cris-tdep.c: Update.
* dbxread.c, demangle.c, doublest.c, dsrec.c: Update.
* dve3900-rom.c, dwarf2expr.c, dwarf2loc.c: Update.
* dwarf2read.c, dwarfread.c, elfread.c, eval.c: Update.
* event-top.c, exec.c, expprint.c, f-lang.c: Update.
* f-typeprint.c, f-valprint.c, fbsd-nat.c, findvar.c: Update.
* frame.c, frv-linux-tdep.c, gcore.c, gdbtypes.c: Update.
* gnu-nat.c, gnu-v2-abi.c, gnu-v3-abi.c, go32-nat.c: Update.
* hpacc-abi.c, hppa-hpux-nat.c, hppa-hpux-tdep.c: Update.
* hppa-linux-nat.c, hppa-linux-tdep.c, hppa-tdep.c: Update.
* hpread.c, hpux-thread.c, i386-linux-nat.c: Update.
* i386-linux-tdep.c, i386-tdep.c, i386bsd-nat.c: Update.
* i386gnu-nat.c, i387-tdep.c, ia64-linux-nat.c: Update.
* ia64-tdep.c, inf-child.c, inf-ptrace.c, inf-ttrace.c: Update.
* infcall.c, infcmd.c, inflow.c, infptrace.c, infrun.c: Update.
* inftarg.c, interps.c, irix5-nat.c, jv-lang.c: Update.
* kod-cisco.c, kod.c, language.c, libunwind-frame.c: Update.
* linespec.c, linux-nat.c, linux-thread-db.c, m2-lang.c: Update.
* m32r-rom.c, m68hc11-tdep.c, m68k-tdep.c: Update.
* m68klinux-nat.c, macrocmd.c, macroexp.c, main.c: Update.
* maint.c, mdebugread.c, mem-break.c, memattr.c: Update.
* mips-linux-tdep.c, mips-tdep.c, mipsread.c, monitor.c: Update.
* nlmread.c, nto-procfs.c, objc-lang.c, objfiles.c: Update.
* observer.c, ocd.c, p-lang.c, p-typeprint.c: Update.
* p-valprint.c, pa64solib.c, parse.c, ppc-linux-tdep.c: Update.
* ppcnbsd-tdep.c, printcmd.c, procfs.c, remote-e7000.c: Update.
* remote-fileio.c, remote-m32r-sdi.c, remote-rdi.c: Update.
* remote-rdp.c, remote-sim.c, remote-st.c: Update.
* remote-utils.c, remote-utils.h, remote.c: Update.
* rom68k-rom.c, rs6000-nat.c, s390-tdep.c, scm-lang.c: Update.
* ser-e7kpc.c, ser-tcp.c, ser-unix.c, sh-tdep.c: Update.
* sh3-rom.c, shnbsd-tdep.c, sol-thread.c, solib-aix5.c: Update.
* solib-frv.c, solib-irix.c, solib-osf.c, solib-pa64.c: Update.
* solib-som.c, solib-sunos.c, solib-svr4.c, solib.c: Update.
* somread.c, somsolib.c, source.c, stabsread.c: Update.
* stack.c, std-regs.c, symfile-mem.c, symfile.c: Update.
* symmisc.c, symtab.c, target.c, thread.c, top.c: Update.
* tracepoint.c, trad-frame.c, typeprint.c, utils.c: Update.
* uw-thread.c, valarith.c, valops.c, valprint.c: Update.
* value.c, varobj.c, version.in, win32-nat.c, wince.c: Update.
* xcoffread.c, xcoffsolib.c, cli/cli-cmds.c: Update.
* cli/cli-decode.c, cli/cli-dump.c, cli/cli-logging.c: Update.
* cli/cli-script.c, cli/cli-setshow.c, mi/mi-cmd-break.c: Update.
* mi/mi-cmd-disas.c, mi/mi-cmd-env.c, mi/mi-cmd-file.c: Update.
* mi/mi-cmd-stack.c, mi/mi-cmd-var.c, mi/mi-getopt.c: Update.
* mi/mi-symbol-cmds.c, tui/tui-layout.c, tui/tui-stack.c: Update.
* tui/tui-win.c: Update.
2005-02-11 05:06:14 +01:00
|
|
|
|
error (_("I refuse to debug myself!"));
|
2004-11-23 22:14:33 +01:00
|
|
|
|
|
|
|
|
|
if (from_tty)
|
|
|
|
|
{
|
2005-10-28 20:20:35 +02:00
|
|
|
|
exec_file = get_exec_file (0);
|
2004-11-23 22:14:33 +01:00
|
|
|
|
|
|
|
|
|
if (exec_file)
|
2005-02-11 Andrew Cagney <cagney@gnu.org>
Mark up some of printf_filtered and printf_unfiltered.
* ada-lang.c, annotate.c, arch-utils.c, breakpoint.c: Update.
* corelow.c, cp-namespace.c, cp-support.c, dcache.c: Update.
* demangle.c, dsrec.c, dwarf2read.c, dwarfread.c: Update.
* event-loop.c, event-top.c, exec.c, f-valprint.c: Update.
* gdbtypes.c, inf-loop.c, inf-ptrace.c, inf-ttrace.c: Update.
* infcmd.c, inflow.c, infrun.c, inftarg.c, language.c: Update.
* linespec.c, linux-nat.c, linux-thread-db.c, maint.c: Update.
* mdebugread.c, memattr.c, monitor.c, objc-lang.c: Update.
* ocd.c, osabi.c, printcmd.c, procfs.c, regcache.c: Update.
* remote.c, solib-som.c, solib.c, somsolib.c, source.c: Update.
* stack.c, symfile.c, symmisc.c, target.c, thread.c: Update.
* top.c, utils.c, valprint.c, value.c, cli/cli-cmds.c: Update.
* cli/cli-dump.c, cli/cli-logging.c, tui/tui-hooks.c: Update.
* tui/tui-regs.c, tui/tui-win.c: Update.
2005-02-12 01:39:24 +01:00
|
|
|
|
printf_unfiltered (_("Attaching to program: %s, %s\n"), exec_file,
|
2004-11-23 22:14:33 +01:00
|
|
|
|
target_pid_to_str (pid_to_ptid (pid)));
|
|
|
|
|
else
|
2005-02-11 Andrew Cagney <cagney@gnu.org>
Mark up some of printf_filtered and printf_unfiltered.
* ada-lang.c, annotate.c, arch-utils.c, breakpoint.c: Update.
* corelow.c, cp-namespace.c, cp-support.c, dcache.c: Update.
* demangle.c, dsrec.c, dwarf2read.c, dwarfread.c: Update.
* event-loop.c, event-top.c, exec.c, f-valprint.c: Update.
* gdbtypes.c, inf-loop.c, inf-ptrace.c, inf-ttrace.c: Update.
* infcmd.c, inflow.c, infrun.c, inftarg.c, language.c: Update.
* linespec.c, linux-nat.c, linux-thread-db.c, maint.c: Update.
* mdebugread.c, memattr.c, monitor.c, objc-lang.c: Update.
* ocd.c, osabi.c, printcmd.c, procfs.c, regcache.c: Update.
* remote.c, solib-som.c, solib.c, somsolib.c, source.c: Update.
* stack.c, symfile.c, symmisc.c, target.c, thread.c: Update.
* top.c, utils.c, valprint.c, value.c, cli/cli-cmds.c: Update.
* cli/cli-dump.c, cli/cli-logging.c, tui/tui-hooks.c: Update.
* tui/tui-regs.c, tui/tui-win.c: Update.
2005-02-12 01:39:24 +01:00
|
|
|
|
printf_unfiltered (_("Attaching to %s\n"),
|
2004-11-23 22:14:33 +01:00
|
|
|
|
target_pid_to_str (pid_to_ptid (pid)));
|
|
|
|
|
|
|
|
|
|
gdb_flush (gdb_stdout);
|
|
|
|
|
}
|
|
|
|
|
|
2004-12-07 20:57:21 +01:00
|
|
|
|
gdb_assert (inf_ttrace_num_lwps == 0);
|
|
|
|
|
gdb_assert (inf_ttrace_num_lwps_in_syscall == 0);
|
2005-07-20 15:25:28 +02:00
|
|
|
|
gdb_assert (inf_ttrace_vfork_ppid == -1);
|
2004-12-07 20:57:21 +01:00
|
|
|
|
|
2004-11-23 22:14:33 +01:00
|
|
|
|
if (ttrace (TT_PROC_ATTACH, pid, 0, TT_KILL_ON_EXIT, TT_VERSION, 0) == -1)
|
2005-02-11 Andrew Cagney <cagney@gnu.org>
Mark up error_no_arg, query, perror_with_name, complaint, and
internal_error.
* breakpoint.c, cp-abi.c, cp-namespace.c, cp-support.c: Update.
* cris-tdep.c, dbxread.c, dictionary.c, dsrec.c: Update.
* dummy-frame.c, dve3900-rom.c, dwarf2-frame.c, dwarf2expr.c: Update.
* dwarf2read.c, dwarfread.c, elfread.c, event-loop.c: Update.
* exceptions.c, exec.c, f-lang.c, findvar.c, fork-child.c: Update.
* frame-unwind.c, frame.c, frv-linux-tdep.c, frv-tdep.c: Update.
* gdb_assert.h, gdbarch.c, gdbtypes.c, gnu-nat.c: Update.
* go32-nat.c, hppa-tdep.c, hppabsd-nat.c, hpread.c: Update.
* i386-linux-nat.c, i386-nat.c, i386-tdep.c, i386bsd-nat.c: Update.
* i386fbsd-nat.c, inf-ptrace.c, inf-ttrace.c, infcall.c: Update.
* infcmd.c, inflow.c, infptrace.c, infrun.c, inftarg.c: Update.
* interps.c, language.c, linespec.c, linux-nat.c: Update.
* m32r-linux-nat.c, m68k-tdep.c, m68kbsd-nat.c: Update.
* m68klinux-nat.c, m88kbsd-nat.c, macroexp.c, macroscope.c: Update.
* macrotab.c, maint.c, mdebugread.c, memattr.c: Update.
* mips-linux-tdep.c, mips-tdep.c, mips64obsd-nat.c: Update.
* mipsnbsd-nat.c, mn10300-tdep.c, monitor.c, nto-procfs.c: Update.
* objc-lang.c, objfiles.c, objfiles.h, ocd.c, osabi.c: Update.
* parse.c, ppc-bdm.c, ppc-linux-nat.c, ppc-sysv-tdep.c: Update.
* ppcnbsd-nat.c, ppcobsd-nat.c, printcmd.c, procfs.c: Update.
* regcache.c, reggroups.c, remote-e7000.c, remote-mips.c: Update.
* remote-rdp.c, remote-sds.c, remote-sim.c, remote-st.c: Update.
* remote-utils.c, remote.c, rs6000-nat.c, rs6000-tdep.c: Update.
* s390-nat.c, s390-tdep.c, sentinel-frame.c, serial.c: Update.
* sh-tdep.c, sh3-rom.c, sh64-tdep.c, shnbsd-nat.c: Update.
* solib-aix5.c, solib-svr4.c, solib.c, source.c: Update.
* sparc-nat.c, stabsread.c, stack.c, symfile.c, symtab.c: Update.
* symtab.h, target.c, tracepoint.c, ui-file.c, ui-out.c: Update.
* utils.c, valops.c, valprint.c, vax-nat.c, vaxbsd-nat.c: Update.
* win32-nat.c, xcoffread.c, xstormy16-tdep.c: Update.
* cli/cli-cmds.c, cli/cli-logging.c, cli/cli-script.c: Update.
* cli/cli-setshow.c, mi/mi-cmd-break.c, mi/mi-cmds.c: Update.
* mi/mi-console.c, mi/mi-getopt.c, mi/mi-out.c: Update.
* tui/tui-file.c, tui/tui-interp.c: Update.
2005-02-11 19:13:55 +01:00
|
|
|
|
perror_with_name (("ttrace"));
|
2004-11-23 22:14:33 +01:00
|
|
|
|
attach_flag = 1;
|
|
|
|
|
|
2004-12-03 23:20:00 +01:00
|
|
|
|
/* Set the initial event mask. */
|
|
|
|
|
memset (&tte, 0, sizeof (tte));
|
2005-07-20 15:25:28 +02:00
|
|
|
|
tte.tte_events |= TTEVT_EXEC | TTEVT_EXIT | TTEVT_FORK | TTEVT_VFORK;
|
2004-12-07 20:57:21 +01:00
|
|
|
|
tte.tte_events |= TTEVT_LWP_CREATE | TTEVT_LWP_EXIT | TTEVT_LWP_TERMINATE;
|
2004-12-11 22:53:58 +01:00
|
|
|
|
#ifdef TTEVT_BPT_SSTEP
|
|
|
|
|
tte.tte_events |= TTEVT_BPT_SSTEP;
|
|
|
|
|
#endif
|
2005-07-20 15:25:28 +02:00
|
|
|
|
tte.tte_opts |= TTEO_PROC_INHERIT;
|
2004-12-03 23:20:00 +01:00
|
|
|
|
if (ttrace (TT_PROC_SET_EVENT_MASK, pid, 0,
|
|
|
|
|
(uintptr_t)&tte, sizeof tte, 0) == -1)
|
2005-02-11 Andrew Cagney <cagney@gnu.org>
Mark up error_no_arg, query, perror_with_name, complaint, and
internal_error.
* breakpoint.c, cp-abi.c, cp-namespace.c, cp-support.c: Update.
* cris-tdep.c, dbxread.c, dictionary.c, dsrec.c: Update.
* dummy-frame.c, dve3900-rom.c, dwarf2-frame.c, dwarf2expr.c: Update.
* dwarf2read.c, dwarfread.c, elfread.c, event-loop.c: Update.
* exceptions.c, exec.c, f-lang.c, findvar.c, fork-child.c: Update.
* frame-unwind.c, frame.c, frv-linux-tdep.c, frv-tdep.c: Update.
* gdb_assert.h, gdbarch.c, gdbtypes.c, gnu-nat.c: Update.
* go32-nat.c, hppa-tdep.c, hppabsd-nat.c, hpread.c: Update.
* i386-linux-nat.c, i386-nat.c, i386-tdep.c, i386bsd-nat.c: Update.
* i386fbsd-nat.c, inf-ptrace.c, inf-ttrace.c, infcall.c: Update.
* infcmd.c, inflow.c, infptrace.c, infrun.c, inftarg.c: Update.
* interps.c, language.c, linespec.c, linux-nat.c: Update.
* m32r-linux-nat.c, m68k-tdep.c, m68kbsd-nat.c: Update.
* m68klinux-nat.c, m88kbsd-nat.c, macroexp.c, macroscope.c: Update.
* macrotab.c, maint.c, mdebugread.c, memattr.c: Update.
* mips-linux-tdep.c, mips-tdep.c, mips64obsd-nat.c: Update.
* mipsnbsd-nat.c, mn10300-tdep.c, monitor.c, nto-procfs.c: Update.
* objc-lang.c, objfiles.c, objfiles.h, ocd.c, osabi.c: Update.
* parse.c, ppc-bdm.c, ppc-linux-nat.c, ppc-sysv-tdep.c: Update.
* ppcnbsd-nat.c, ppcobsd-nat.c, printcmd.c, procfs.c: Update.
* regcache.c, reggroups.c, remote-e7000.c, remote-mips.c: Update.
* remote-rdp.c, remote-sds.c, remote-sim.c, remote-st.c: Update.
* remote-utils.c, remote.c, rs6000-nat.c, rs6000-tdep.c: Update.
* s390-nat.c, s390-tdep.c, sentinel-frame.c, serial.c: Update.
* sh-tdep.c, sh3-rom.c, sh64-tdep.c, shnbsd-nat.c: Update.
* solib-aix5.c, solib-svr4.c, solib.c, source.c: Update.
* sparc-nat.c, stabsread.c, stack.c, symfile.c, symtab.c: Update.
* symtab.h, target.c, tracepoint.c, ui-file.c, ui-out.c: Update.
* utils.c, valops.c, valprint.c, vax-nat.c, vaxbsd-nat.c: Update.
* win32-nat.c, xcoffread.c, xstormy16-tdep.c: Update.
* cli/cli-cmds.c, cli/cli-logging.c, cli/cli-script.c: Update.
* cli/cli-setshow.c, mi/mi-cmd-break.c, mi/mi-cmds.c: Update.
* mi/mi-console.c, mi/mi-getopt.c, mi/mi-out.c: Update.
* tui/tui-file.c, tui/tui-interp.c: Update.
2005-02-11 19:13:55 +01:00
|
|
|
|
perror_with_name (("ttrace"));
|
2004-12-03 23:20:00 +01:00
|
|
|
|
|
2004-11-23 22:14:33 +01:00
|
|
|
|
inferior_ptid = pid_to_ptid (pid);
|
|
|
|
|
push_target (ttrace_ops_hack);
|
|
|
|
|
|
|
|
|
|
/* Do this first, before anything has had a chance to query the
|
|
|
|
|
inferior's symbol table or similar. */
|
|
|
|
|
observer_notify_inferior_created (¤t_target, from_tty);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
inf_ttrace_detach (char *args, int from_tty)
|
|
|
|
|
{
|
|
|
|
|
pid_t pid = ptid_get_pid (inferior_ptid);
|
2005-07-21 12:36:19 +02:00
|
|
|
|
int sig = 0;
|
2004-11-23 22:14:33 +01:00
|
|
|
|
|
|
|
|
|
if (from_tty)
|
|
|
|
|
{
|
|
|
|
|
char *exec_file = get_exec_file (0);
|
|
|
|
|
if (exec_file == 0)
|
|
|
|
|
exec_file = "";
|
2005-02-11 Andrew Cagney <cagney@gnu.org>
Mark up some of printf_filtered and printf_unfiltered.
* ada-lang.c, annotate.c, arch-utils.c, breakpoint.c: Update.
* corelow.c, cp-namespace.c, cp-support.c, dcache.c: Update.
* demangle.c, dsrec.c, dwarf2read.c, dwarfread.c: Update.
* event-loop.c, event-top.c, exec.c, f-valprint.c: Update.
* gdbtypes.c, inf-loop.c, inf-ptrace.c, inf-ttrace.c: Update.
* infcmd.c, inflow.c, infrun.c, inftarg.c, language.c: Update.
* linespec.c, linux-nat.c, linux-thread-db.c, maint.c: Update.
* mdebugread.c, memattr.c, monitor.c, objc-lang.c: Update.
* ocd.c, osabi.c, printcmd.c, procfs.c, regcache.c: Update.
* remote.c, solib-som.c, solib.c, somsolib.c, source.c: Update.
* stack.c, symfile.c, symmisc.c, target.c, thread.c: Update.
* top.c, utils.c, valprint.c, value.c, cli/cli-cmds.c: Update.
* cli/cli-dump.c, cli/cli-logging.c, tui/tui-hooks.c: Update.
* tui/tui-regs.c, tui/tui-win.c: Update.
2005-02-12 01:39:24 +01:00
|
|
|
|
printf_unfiltered (_("Detaching from program: %s, %s\n"), exec_file,
|
2004-11-23 22:14:33 +01:00
|
|
|
|
target_pid_to_str (pid_to_ptid (pid)));
|
|
|
|
|
gdb_flush (gdb_stdout);
|
|
|
|
|
}
|
|
|
|
|
if (args)
|
|
|
|
|
sig = atoi (args);
|
|
|
|
|
|
|
|
|
|
/* ??? The HP-UX 11.0 ttrace(2) manual page doesn't mention that we
|
|
|
|
|
can pass a signal number here. Does this really work? */
|
|
|
|
|
if (ttrace (TT_PROC_DETACH, pid, 0, 0, sig, 0) == -1)
|
2005-02-11 Andrew Cagney <cagney@gnu.org>
Mark up error_no_arg, query, perror_with_name, complaint, and
internal_error.
* breakpoint.c, cp-abi.c, cp-namespace.c, cp-support.c: Update.
* cris-tdep.c, dbxread.c, dictionary.c, dsrec.c: Update.
* dummy-frame.c, dve3900-rom.c, dwarf2-frame.c, dwarf2expr.c: Update.
* dwarf2read.c, dwarfread.c, elfread.c, event-loop.c: Update.
* exceptions.c, exec.c, f-lang.c, findvar.c, fork-child.c: Update.
* frame-unwind.c, frame.c, frv-linux-tdep.c, frv-tdep.c: Update.
* gdb_assert.h, gdbarch.c, gdbtypes.c, gnu-nat.c: Update.
* go32-nat.c, hppa-tdep.c, hppabsd-nat.c, hpread.c: Update.
* i386-linux-nat.c, i386-nat.c, i386-tdep.c, i386bsd-nat.c: Update.
* i386fbsd-nat.c, inf-ptrace.c, inf-ttrace.c, infcall.c: Update.
* infcmd.c, inflow.c, infptrace.c, infrun.c, inftarg.c: Update.
* interps.c, language.c, linespec.c, linux-nat.c: Update.
* m32r-linux-nat.c, m68k-tdep.c, m68kbsd-nat.c: Update.
* m68klinux-nat.c, m88kbsd-nat.c, macroexp.c, macroscope.c: Update.
* macrotab.c, maint.c, mdebugread.c, memattr.c: Update.
* mips-linux-tdep.c, mips-tdep.c, mips64obsd-nat.c: Update.
* mipsnbsd-nat.c, mn10300-tdep.c, monitor.c, nto-procfs.c: Update.
* objc-lang.c, objfiles.c, objfiles.h, ocd.c, osabi.c: Update.
* parse.c, ppc-bdm.c, ppc-linux-nat.c, ppc-sysv-tdep.c: Update.
* ppcnbsd-nat.c, ppcobsd-nat.c, printcmd.c, procfs.c: Update.
* regcache.c, reggroups.c, remote-e7000.c, remote-mips.c: Update.
* remote-rdp.c, remote-sds.c, remote-sim.c, remote-st.c: Update.
* remote-utils.c, remote.c, rs6000-nat.c, rs6000-tdep.c: Update.
* s390-nat.c, s390-tdep.c, sentinel-frame.c, serial.c: Update.
* sh-tdep.c, sh3-rom.c, sh64-tdep.c, shnbsd-nat.c: Update.
* solib-aix5.c, solib-svr4.c, solib.c, source.c: Update.
* sparc-nat.c, stabsread.c, stack.c, symfile.c, symtab.c: Update.
* symtab.h, target.c, tracepoint.c, ui-file.c, ui-out.c: Update.
* utils.c, valops.c, valprint.c, vax-nat.c, vaxbsd-nat.c: Update.
* win32-nat.c, xcoffread.c, xstormy16-tdep.c: Update.
* cli/cli-cmds.c, cli/cli-logging.c, cli/cli-script.c: Update.
* cli/cli-setshow.c, mi/mi-cmd-break.c, mi/mi-cmds.c: Update.
* mi/mi-console.c, mi/mi-getopt.c, mi/mi-out.c: Update.
* tui/tui-file.c, tui/tui-interp.c: Update.
2005-02-11 19:13:55 +01:00
|
|
|
|
perror_with_name (("ttrace"));
|
2004-11-23 22:14:33 +01:00
|
|
|
|
|
2005-07-20 15:25:28 +02:00
|
|
|
|
if (inf_ttrace_vfork_ppid != -1)
|
|
|
|
|
{
|
|
|
|
|
if (ttrace (TT_PROC_DETACH, inf_ttrace_vfork_ppid, 0, 0, 0, 0) == -1)
|
|
|
|
|
perror_with_name (("ttrace"));
|
|
|
|
|
inf_ttrace_vfork_ppid = -1;
|
|
|
|
|
}
|
|
|
|
|
|
2004-12-07 20:57:21 +01:00
|
|
|
|
inf_ttrace_num_lwps = 0;
|
|
|
|
|
inf_ttrace_num_lwps_in_syscall = 0;
|
2004-12-03 23:20:00 +01:00
|
|
|
|
|
2004-11-23 22:14:33 +01:00
|
|
|
|
unpush_target (ttrace_ops_hack);
|
2004-12-03 23:20:00 +01:00
|
|
|
|
inferior_ptid = null_ptid;
|
2004-11-23 22:14:33 +01:00
|
|
|
|
}
|
|
|
|
|
|
2005-10-28 20:20:35 +02:00
|
|
|
|
static void
|
|
|
|
|
inf_ttrace_kill (void)
|
|
|
|
|
{
|
|
|
|
|
pid_t pid = ptid_get_pid (inferior_ptid);
|
|
|
|
|
|
|
|
|
|
if (pid == 0)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
if (ttrace (TT_PROC_EXIT, pid, 0, 0, 0, 0) == -1)
|
|
|
|
|
perror_with_name (("ttrace"));
|
|
|
|
|
/* ??? Is it necessary to call ttrace_wait() here? */
|
|
|
|
|
|
|
|
|
|
if (inf_ttrace_vfork_ppid != -1)
|
|
|
|
|
{
|
|
|
|
|
if (ttrace (TT_PROC_DETACH, inf_ttrace_vfork_ppid, 0, 0, 0, 0) == -1)
|
|
|
|
|
perror_with_name (("ttrace"));
|
|
|
|
|
inf_ttrace_vfork_ppid = -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
target_mourn_inferior ();
|
|
|
|
|
}
|
|
|
|
|
|
2004-12-11 22:53:58 +01:00
|
|
|
|
static int
|
|
|
|
|
inf_ttrace_resume_callback (struct thread_info *info, void *arg)
|
|
|
|
|
{
|
|
|
|
|
if (!ptid_equal (info->ptid, inferior_ptid))
|
|
|
|
|
{
|
|
|
|
|
pid_t pid = ptid_get_pid (info->ptid);
|
|
|
|
|
lwpid_t lwpid = ptid_get_lwp (info->ptid);
|
|
|
|
|
|
|
|
|
|
if (ttrace (TT_LWP_CONTINUE, pid, lwpid, TT_NOPC, 0, 0) == -1)
|
2005-02-11 Andrew Cagney <cagney@gnu.org>
Mark up error_no_arg, query, perror_with_name, complaint, and
internal_error.
* breakpoint.c, cp-abi.c, cp-namespace.c, cp-support.c: Update.
* cris-tdep.c, dbxread.c, dictionary.c, dsrec.c: Update.
* dummy-frame.c, dve3900-rom.c, dwarf2-frame.c, dwarf2expr.c: Update.
* dwarf2read.c, dwarfread.c, elfread.c, event-loop.c: Update.
* exceptions.c, exec.c, f-lang.c, findvar.c, fork-child.c: Update.
* frame-unwind.c, frame.c, frv-linux-tdep.c, frv-tdep.c: Update.
* gdb_assert.h, gdbarch.c, gdbtypes.c, gnu-nat.c: Update.
* go32-nat.c, hppa-tdep.c, hppabsd-nat.c, hpread.c: Update.
* i386-linux-nat.c, i386-nat.c, i386-tdep.c, i386bsd-nat.c: Update.
* i386fbsd-nat.c, inf-ptrace.c, inf-ttrace.c, infcall.c: Update.
* infcmd.c, inflow.c, infptrace.c, infrun.c, inftarg.c: Update.
* interps.c, language.c, linespec.c, linux-nat.c: Update.
* m32r-linux-nat.c, m68k-tdep.c, m68kbsd-nat.c: Update.
* m68klinux-nat.c, m88kbsd-nat.c, macroexp.c, macroscope.c: Update.
* macrotab.c, maint.c, mdebugread.c, memattr.c: Update.
* mips-linux-tdep.c, mips-tdep.c, mips64obsd-nat.c: Update.
* mipsnbsd-nat.c, mn10300-tdep.c, monitor.c, nto-procfs.c: Update.
* objc-lang.c, objfiles.c, objfiles.h, ocd.c, osabi.c: Update.
* parse.c, ppc-bdm.c, ppc-linux-nat.c, ppc-sysv-tdep.c: Update.
* ppcnbsd-nat.c, ppcobsd-nat.c, printcmd.c, procfs.c: Update.
* regcache.c, reggroups.c, remote-e7000.c, remote-mips.c: Update.
* remote-rdp.c, remote-sds.c, remote-sim.c, remote-st.c: Update.
* remote-utils.c, remote.c, rs6000-nat.c, rs6000-tdep.c: Update.
* s390-nat.c, s390-tdep.c, sentinel-frame.c, serial.c: Update.
* sh-tdep.c, sh3-rom.c, sh64-tdep.c, shnbsd-nat.c: Update.
* solib-aix5.c, solib-svr4.c, solib.c, source.c: Update.
* sparc-nat.c, stabsread.c, stack.c, symfile.c, symtab.c: Update.
* symtab.h, target.c, tracepoint.c, ui-file.c, ui-out.c: Update.
* utils.c, valops.c, valprint.c, vax-nat.c, vaxbsd-nat.c: Update.
* win32-nat.c, xcoffread.c, xstormy16-tdep.c: Update.
* cli/cli-cmds.c, cli/cli-logging.c, cli/cli-script.c: Update.
* cli/cli-setshow.c, mi/mi-cmd-break.c, mi/mi-cmds.c: Update.
* mi/mi-console.c, mi/mi-getopt.c, mi/mi-out.c: Update.
* tui/tui-file.c, tui/tui-interp.c: Update.
2005-02-11 19:13:55 +01:00
|
|
|
|
perror_with_name (("ttrace"));
|
2004-12-11 22:53:58 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2004-11-23 22:14:33 +01:00
|
|
|
|
static void
|
|
|
|
|
inf_ttrace_resume (ptid_t ptid, int step, enum target_signal signal)
|
|
|
|
|
{
|
|
|
|
|
pid_t pid = ptid_get_pid (ptid);
|
|
|
|
|
lwpid_t lwpid = ptid_get_lwp (ptid);
|
|
|
|
|
ttreq_t request = step ? TT_LWP_SINGLE : TT_LWP_CONTINUE;
|
|
|
|
|
int sig = target_signal_to_host (signal);
|
|
|
|
|
|
|
|
|
|
if (pid == -1)
|
|
|
|
|
{
|
|
|
|
|
pid = ptid_get_pid (inferior_ptid);
|
|
|
|
|
lwpid = ptid_get_lwp (inferior_ptid);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (ttrace (request, pid, lwpid, TT_NOPC, sig, 0) == -1)
|
2005-02-11 Andrew Cagney <cagney@gnu.org>
Mark up error_no_arg, query, perror_with_name, complaint, and
internal_error.
* breakpoint.c, cp-abi.c, cp-namespace.c, cp-support.c: Update.
* cris-tdep.c, dbxread.c, dictionary.c, dsrec.c: Update.
* dummy-frame.c, dve3900-rom.c, dwarf2-frame.c, dwarf2expr.c: Update.
* dwarf2read.c, dwarfread.c, elfread.c, event-loop.c: Update.
* exceptions.c, exec.c, f-lang.c, findvar.c, fork-child.c: Update.
* frame-unwind.c, frame.c, frv-linux-tdep.c, frv-tdep.c: Update.
* gdb_assert.h, gdbarch.c, gdbtypes.c, gnu-nat.c: Update.
* go32-nat.c, hppa-tdep.c, hppabsd-nat.c, hpread.c: Update.
* i386-linux-nat.c, i386-nat.c, i386-tdep.c, i386bsd-nat.c: Update.
* i386fbsd-nat.c, inf-ptrace.c, inf-ttrace.c, infcall.c: Update.
* infcmd.c, inflow.c, infptrace.c, infrun.c, inftarg.c: Update.
* interps.c, language.c, linespec.c, linux-nat.c: Update.
* m32r-linux-nat.c, m68k-tdep.c, m68kbsd-nat.c: Update.
* m68klinux-nat.c, m88kbsd-nat.c, macroexp.c, macroscope.c: Update.
* macrotab.c, maint.c, mdebugread.c, memattr.c: Update.
* mips-linux-tdep.c, mips-tdep.c, mips64obsd-nat.c: Update.
* mipsnbsd-nat.c, mn10300-tdep.c, monitor.c, nto-procfs.c: Update.
* objc-lang.c, objfiles.c, objfiles.h, ocd.c, osabi.c: Update.
* parse.c, ppc-bdm.c, ppc-linux-nat.c, ppc-sysv-tdep.c: Update.
* ppcnbsd-nat.c, ppcobsd-nat.c, printcmd.c, procfs.c: Update.
* regcache.c, reggroups.c, remote-e7000.c, remote-mips.c: Update.
* remote-rdp.c, remote-sds.c, remote-sim.c, remote-st.c: Update.
* remote-utils.c, remote.c, rs6000-nat.c, rs6000-tdep.c: Update.
* s390-nat.c, s390-tdep.c, sentinel-frame.c, serial.c: Update.
* sh-tdep.c, sh3-rom.c, sh64-tdep.c, shnbsd-nat.c: Update.
* solib-aix5.c, solib-svr4.c, solib.c, source.c: Update.
* sparc-nat.c, stabsread.c, stack.c, symfile.c, symtab.c: Update.
* symtab.h, target.c, tracepoint.c, ui-file.c, ui-out.c: Update.
* utils.c, valops.c, valprint.c, vax-nat.c, vaxbsd-nat.c: Update.
* win32-nat.c, xcoffread.c, xstormy16-tdep.c: Update.
* cli/cli-cmds.c, cli/cli-logging.c, cli/cli-script.c: Update.
* cli/cli-setshow.c, mi/mi-cmd-break.c, mi/mi-cmds.c: Update.
* mi/mi-console.c, mi/mi-getopt.c, mi/mi-out.c: Update.
* tui/tui-file.c, tui/tui-interp.c: Update.
2005-02-11 19:13:55 +01:00
|
|
|
|
perror_with_name (("ttrace"));
|
2004-11-23 22:14:33 +01:00
|
|
|
|
|
2004-12-11 22:53:58 +01:00
|
|
|
|
if (ptid_equal (ptid, minus_one_ptid) && inf_ttrace_num_lwps > 0)
|
2004-11-23 22:14:33 +01:00
|
|
|
|
{
|
|
|
|
|
/* Let all the other threads run too. */
|
2004-12-11 22:53:58 +01:00
|
|
|
|
iterate_over_threads (inf_ttrace_resume_callback, NULL);
|
2004-11-23 22:14:33 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static ptid_t
|
|
|
|
|
inf_ttrace_wait (ptid_t ptid, struct target_waitstatus *ourstatus)
|
|
|
|
|
{
|
|
|
|
|
pid_t pid = ptid_get_pid (ptid);
|
|
|
|
|
lwpid_t lwpid = ptid_get_lwp (ptid);
|
|
|
|
|
ttstate_t tts;
|
|
|
|
|
|
2004-12-03 23:20:00 +01:00
|
|
|
|
/* Until proven otherwise. */
|
2004-12-07 20:57:21 +01:00
|
|
|
|
ourstatus->kind = TARGET_WAITKIND_SPURIOUS;
|
2004-11-23 22:14:33 +01:00
|
|
|
|
|
|
|
|
|
if (pid == -1)
|
2005-07-20 15:25:28 +02:00
|
|
|
|
pid = lwpid = 0;
|
2004-11-23 22:14:33 +01:00
|
|
|
|
|
2005-07-20 15:25:28 +02:00
|
|
|
|
gdb_assert (pid != 0 || lwpid == 0);
|
2004-11-23 22:14:33 +01:00
|
|
|
|
|
|
|
|
|
do
|
|
|
|
|
{
|
|
|
|
|
set_sigint_trap ();
|
|
|
|
|
set_sigio_trap ();
|
|
|
|
|
|
|
|
|
|
if (ttrace_wait (pid, lwpid, TTRACE_WAITOK, &tts, sizeof tts) == -1)
|
2005-02-11 Andrew Cagney <cagney@gnu.org>
Mark up some of printf_filtered and printf_unfiltered.
* ada-lang.c, annotate.c, arch-utils.c, breakpoint.c: Update.
* corelow.c, cp-namespace.c, cp-support.c, dcache.c: Update.
* demangle.c, dsrec.c, dwarf2read.c, dwarfread.c: Update.
* event-loop.c, event-top.c, exec.c, f-valprint.c: Update.
* gdbtypes.c, inf-loop.c, inf-ptrace.c, inf-ttrace.c: Update.
* infcmd.c, inflow.c, infrun.c, inftarg.c, language.c: Update.
* linespec.c, linux-nat.c, linux-thread-db.c, maint.c: Update.
* mdebugread.c, memattr.c, monitor.c, objc-lang.c: Update.
* ocd.c, osabi.c, printcmd.c, procfs.c, regcache.c: Update.
* remote.c, solib-som.c, solib.c, somsolib.c, source.c: Update.
* stack.c, symfile.c, symmisc.c, target.c, thread.c: Update.
* top.c, utils.c, valprint.c, value.c, cli/cli-cmds.c: Update.
* cli/cli-dump.c, cli/cli-logging.c, tui/tui-hooks.c: Update.
* tui/tui-regs.c, tui/tui-win.c: Update.
2005-02-12 01:39:24 +01:00
|
|
|
|
perror_with_name (("ttrace_wait"));
|
2004-11-23 22:14:33 +01:00
|
|
|
|
|
2005-07-20 15:25:28 +02:00
|
|
|
|
if (tts.tts_event == TTEVT_VFORK && tts.tts_u.tts_fork.tts_isparent)
|
|
|
|
|
{
|
|
|
|
|
if (inf_ttrace_vfork_ppid != -1)
|
|
|
|
|
{
|
|
|
|
|
gdb_assert (inf_ttrace_vfork_ppid == tts.tts_pid);
|
|
|
|
|
|
|
|
|
|
if (ttrace (TT_PROC_DETACH, tts.tts_pid, 0, 0, 0, 0) == -1)
|
|
|
|
|
perror_with_name (("ttrace"));
|
|
|
|
|
inf_ttrace_vfork_ppid = -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
tts.tts_event = TTEVT_NONE;
|
|
|
|
|
}
|
|
|
|
|
|
2004-11-23 22:14:33 +01:00
|
|
|
|
clear_sigio_trap ();
|
|
|
|
|
clear_sigint_trap ();
|
|
|
|
|
}
|
|
|
|
|
while (tts.tts_event == TTEVT_NONE);
|
|
|
|
|
|
2004-12-03 23:20:00 +01:00
|
|
|
|
/* Now that we've waited, we can re-enable the page protections. */
|
|
|
|
|
if (inf_ttrace_reenable_page_protections)
|
|
|
|
|
{
|
2004-12-07 20:57:21 +01:00
|
|
|
|
gdb_assert (inf_ttrace_num_lwps_in_syscall == 0);
|
2004-12-03 23:20:00 +01:00
|
|
|
|
inf_ttrace_enable_page_protections (tts.tts_pid);
|
|
|
|
|
inf_ttrace_reenable_page_protections = 0;
|
|
|
|
|
}
|
|
|
|
|
|
2004-12-07 20:57:21 +01:00
|
|
|
|
ptid = ptid_build (tts.tts_pid, tts.tts_lwpid, 0);
|
|
|
|
|
|
2004-11-23 22:14:33 +01:00
|
|
|
|
switch (tts.tts_event)
|
|
|
|
|
{
|
2004-12-11 22:53:58 +01:00
|
|
|
|
#ifdef TTEVT_BPT_SSTEP
|
|
|
|
|
case TTEVT_BPT_SSTEP:
|
|
|
|
|
/* Make it look like a breakpoint. */
|
|
|
|
|
ourstatus->kind = TARGET_WAITKIND_STOPPED;
|
|
|
|
|
ourstatus->value.sig = TARGET_SIGNAL_TRAP;
|
|
|
|
|
break;
|
|
|
|
|
#endif
|
|
|
|
|
|
2004-11-23 22:14:33 +01:00
|
|
|
|
case TTEVT_EXEC:
|
2005-10-29 23:22:39 +02:00
|
|
|
|
/* FIXME: kettenis/20051029: GDB doesn't really know how to deal
|
|
|
|
|
with TARGET_WAITKIND_EXECD events yet. So we make it look
|
|
|
|
|
like a SIGTRAP instead. */
|
|
|
|
|
#if 0
|
2005-07-21 12:36:19 +02:00
|
|
|
|
ourstatus->kind = TARGET_WAITKIND_EXECD;
|
|
|
|
|
ourstatus->value.execd_pathname =
|
|
|
|
|
xmalloc (tts.tts_u.tts_exec.tts_pathlen + 1);
|
|
|
|
|
if (ttrace (TT_PROC_GET_PATHNAME, tts.tts_pid, 0,
|
|
|
|
|
(uintptr_t)ourstatus->value.execd_pathname,
|
|
|
|
|
tts.tts_u.tts_exec.tts_pathlen, 0) == -1)
|
|
|
|
|
perror_with_name (("ttrace"));
|
|
|
|
|
ourstatus->value.execd_pathname[tts.tts_u.tts_exec.tts_pathlen] = 0;
|
2005-10-29 23:22:39 +02:00
|
|
|
|
#else
|
|
|
|
|
ourstatus->kind = TARGET_WAITKIND_STOPPED;
|
|
|
|
|
ourstatus->value.sig = TARGET_SIGNAL_TRAP;
|
|
|
|
|
#endif
|
2004-11-23 22:14:33 +01:00
|
|
|
|
break;
|
2004-12-03 23:20:00 +01:00
|
|
|
|
|
2004-11-23 22:14:33 +01:00
|
|
|
|
case TTEVT_EXIT:
|
|
|
|
|
store_waitstatus (ourstatus, tts.tts_u.tts_exit.tts_exitcode);
|
2004-12-07 20:57:21 +01:00
|
|
|
|
inf_ttrace_num_lwps = 0;
|
|
|
|
|
break;
|
|
|
|
|
|
2005-07-20 15:25:28 +02:00
|
|
|
|
case TTEVT_FORK:
|
|
|
|
|
ourstatus->kind = TARGET_WAITKIND_FORKED;
|
|
|
|
|
ourstatus->value.related_pid = tts.tts_u.tts_fork.tts_fpid;
|
|
|
|
|
|
|
|
|
|
/* Make sure the other end of the fork is stopped too. */
|
|
|
|
|
if (ttrace_wait (tts.tts_u.tts_fork.tts_fpid,
|
|
|
|
|
tts.tts_u.tts_fork.tts_flwpid,
|
|
|
|
|
TTRACE_WAITOK, &tts, sizeof tts) == -1)
|
|
|
|
|
perror_with_name (("ttrace_wait"));
|
|
|
|
|
|
|
|
|
|
gdb_assert (tts.tts_event == TTEVT_FORK);
|
|
|
|
|
if (tts.tts_u.tts_fork.tts_isparent)
|
|
|
|
|
{
|
|
|
|
|
ptid = ptid_build (tts.tts_pid, tts.tts_lwpid, 0);
|
|
|
|
|
ourstatus->value.related_pid = tts.tts_u.tts_fork.tts_fpid;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case TTEVT_VFORK:
|
|
|
|
|
gdb_assert (!tts.tts_u.tts_fork.tts_isparent);
|
|
|
|
|
|
|
|
|
|
ourstatus->kind = TARGET_WAITKIND_VFORKED;
|
|
|
|
|
ourstatus->value.related_pid = tts.tts_u.tts_fork.tts_fpid;
|
|
|
|
|
|
|
|
|
|
/* HACK: To avoid touching the parent during the vfork, switch
|
|
|
|
|
away from it. */
|
|
|
|
|
inferior_ptid = ptid;
|
|
|
|
|
break;
|
|
|
|
|
|
2004-12-07 20:57:21 +01:00
|
|
|
|
case TTEVT_LWP_CREATE:
|
|
|
|
|
lwpid = tts.tts_u.tts_thread.tts_target_lwpid;
|
|
|
|
|
ptid = ptid_build (tts.tts_pid, lwpid, 0);
|
|
|
|
|
if (inf_ttrace_num_lwps == 0)
|
|
|
|
|
{
|
|
|
|
|
/* Now that we're going to be multi-threaded, add the
|
2005-12-23 21:51:35 +01:00
|
|
|
|
original thread to the list first. */
|
2004-12-07 20:57:21 +01:00
|
|
|
|
add_thread (ptid_build (tts.tts_pid, tts.tts_lwpid, 0));
|
|
|
|
|
inf_ttrace_num_lwps++;
|
|
|
|
|
}
|
2005-02-11 Andrew Cagney <cagney@gnu.org>
Mark up some of printf_filtered and printf_unfiltered.
* ada-lang.c, annotate.c, arch-utils.c, breakpoint.c: Update.
* corelow.c, cp-namespace.c, cp-support.c, dcache.c: Update.
* demangle.c, dsrec.c, dwarf2read.c, dwarfread.c: Update.
* event-loop.c, event-top.c, exec.c, f-valprint.c: Update.
* gdbtypes.c, inf-loop.c, inf-ptrace.c, inf-ttrace.c: Update.
* infcmd.c, inflow.c, infrun.c, inftarg.c, language.c: Update.
* linespec.c, linux-nat.c, linux-thread-db.c, maint.c: Update.
* mdebugread.c, memattr.c, monitor.c, objc-lang.c: Update.
* ocd.c, osabi.c, printcmd.c, procfs.c, regcache.c: Update.
* remote.c, solib-som.c, solib.c, somsolib.c, source.c: Update.
* stack.c, symfile.c, symmisc.c, target.c, thread.c: Update.
* top.c, utils.c, valprint.c, value.c, cli/cli-cmds.c: Update.
* cli/cli-dump.c, cli/cli-logging.c, tui/tui-hooks.c: Update.
* tui/tui-regs.c, tui/tui-win.c: Update.
2005-02-12 01:39:24 +01:00
|
|
|
|
printf_filtered (_("[New %s]\n"), target_pid_to_str (ptid));
|
2004-12-07 20:57:21 +01:00
|
|
|
|
add_thread (ptid);
|
|
|
|
|
inf_ttrace_num_lwps++;
|
|
|
|
|
ptid = ptid_build (tts.tts_pid, tts.tts_lwpid, 0);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case TTEVT_LWP_EXIT:
|
2005-02-11 Andrew Cagney <cagney@gnu.org>
Mark up some of printf_filtered and printf_unfiltered.
* ada-lang.c, annotate.c, arch-utils.c, breakpoint.c: Update.
* corelow.c, cp-namespace.c, cp-support.c, dcache.c: Update.
* demangle.c, dsrec.c, dwarf2read.c, dwarfread.c: Update.
* event-loop.c, event-top.c, exec.c, f-valprint.c: Update.
* gdbtypes.c, inf-loop.c, inf-ptrace.c, inf-ttrace.c: Update.
* infcmd.c, inflow.c, infrun.c, inftarg.c, language.c: Update.
* linespec.c, linux-nat.c, linux-thread-db.c, maint.c: Update.
* mdebugread.c, memattr.c, monitor.c, objc-lang.c: Update.
* ocd.c, osabi.c, printcmd.c, procfs.c, regcache.c: Update.
* remote.c, solib-som.c, solib.c, somsolib.c, source.c: Update.
* stack.c, symfile.c, symmisc.c, target.c, thread.c: Update.
* top.c, utils.c, valprint.c, value.c, cli/cli-cmds.c: Update.
* cli/cli-dump.c, cli/cli-logging.c, tui/tui-hooks.c: Update.
* tui/tui-regs.c, tui/tui-win.c: Update.
2005-02-12 01:39:24 +01:00
|
|
|
|
printf_filtered(_("[%s exited]\n"), target_pid_to_str (ptid));
|
2004-12-07 20:57:21 +01:00
|
|
|
|
delete_thread (ptid);
|
|
|
|
|
inf_ttrace_num_lwps--;
|
|
|
|
|
/* If we don't return -1 here, core GDB will re-add the thread. */
|
|
|
|
|
ptid = minus_one_ptid;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case TTEVT_LWP_TERMINATE:
|
|
|
|
|
lwpid = tts.tts_u.tts_thread.tts_target_lwpid;
|
|
|
|
|
ptid = ptid_build (tts.tts_pid, lwpid, 0);
|
2005-02-11 Andrew Cagney <cagney@gnu.org>
Mark up some of printf_filtered and printf_unfiltered.
* ada-lang.c, annotate.c, arch-utils.c, breakpoint.c: Update.
* corelow.c, cp-namespace.c, cp-support.c, dcache.c: Update.
* demangle.c, dsrec.c, dwarf2read.c, dwarfread.c: Update.
* event-loop.c, event-top.c, exec.c, f-valprint.c: Update.
* gdbtypes.c, inf-loop.c, inf-ptrace.c, inf-ttrace.c: Update.
* infcmd.c, inflow.c, infrun.c, inftarg.c, language.c: Update.
* linespec.c, linux-nat.c, linux-thread-db.c, maint.c: Update.
* mdebugread.c, memattr.c, monitor.c, objc-lang.c: Update.
* ocd.c, osabi.c, printcmd.c, procfs.c, regcache.c: Update.
* remote.c, solib-som.c, solib.c, somsolib.c, source.c: Update.
* stack.c, symfile.c, symmisc.c, target.c, thread.c: Update.
* top.c, utils.c, valprint.c, value.c, cli/cli-cmds.c: Update.
* cli/cli-dump.c, cli/cli-logging.c, tui/tui-hooks.c: Update.
* tui/tui-regs.c, tui/tui-win.c: Update.
2005-02-12 01:39:24 +01:00
|
|
|
|
printf_filtered(_("[%s has been terminated]\n"), target_pid_to_str (ptid));
|
2004-12-07 20:57:21 +01:00
|
|
|
|
delete_thread (ptid);
|
|
|
|
|
inf_ttrace_num_lwps--;
|
|
|
|
|
ptid = ptid_build (tts.tts_pid, tts.tts_lwpid, 0);
|
2004-11-23 22:14:33 +01:00
|
|
|
|
break;
|
2004-12-03 23:20:00 +01:00
|
|
|
|
|
2004-11-23 22:14:33 +01:00
|
|
|
|
case TTEVT_SIGNAL:
|
|
|
|
|
ourstatus->kind = TARGET_WAITKIND_STOPPED;
|
|
|
|
|
ourstatus->value.sig =
|
|
|
|
|
target_signal_from_host (tts.tts_u.tts_signal.tts_signo);
|
|
|
|
|
break;
|
2004-12-03 23:20:00 +01:00
|
|
|
|
|
|
|
|
|
case TTEVT_SYSCALL_ENTRY:
|
|
|
|
|
gdb_assert (inf_ttrace_reenable_page_protections == 0);
|
2004-12-07 20:57:21 +01:00
|
|
|
|
inf_ttrace_num_lwps_in_syscall++;
|
|
|
|
|
if (inf_ttrace_num_lwps_in_syscall == 1)
|
2004-12-03 23:20:00 +01:00
|
|
|
|
{
|
|
|
|
|
/* A thread has just entered a system call. Disable any
|
|
|
|
|
page protections as the kernel can't deal with them. */
|
|
|
|
|
inf_ttrace_disable_page_protections (tts.tts_pid);
|
|
|
|
|
}
|
|
|
|
|
ourstatus->kind = TARGET_WAITKIND_SYSCALL_ENTRY;
|
|
|
|
|
ourstatus->value.syscall_id = tts.tts_scno;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case TTEVT_SYSCALL_RETURN:
|
2004-12-07 20:57:21 +01:00
|
|
|
|
if (inf_ttrace_num_lwps_in_syscall > 0)
|
2004-12-03 23:20:00 +01:00
|
|
|
|
{
|
|
|
|
|
/* If the last thread has just left the system call, this
|
|
|
|
|
would be a logical place to re-enable the page
|
|
|
|
|
protections, but that doesn't work. We can't re-enable
|
|
|
|
|
them until we've done another wait. */
|
|
|
|
|
inf_ttrace_reenable_page_protections =
|
2004-12-07 20:57:21 +01:00
|
|
|
|
(inf_ttrace_num_lwps_in_syscall == 1);
|
|
|
|
|
inf_ttrace_num_lwps_in_syscall--;
|
2004-12-03 23:20:00 +01:00
|
|
|
|
}
|
|
|
|
|
ourstatus->kind = TARGET_WAITKIND_SYSCALL_RETURN;
|
|
|
|
|
ourstatus->value.syscall_id = tts.tts_scno;
|
|
|
|
|
break;
|
2004-12-07 20:57:21 +01:00
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
gdb_assert (!"Unexpected ttrace event");
|
|
|
|
|
break;
|
2004-11-23 22:14:33 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Make sure all threads within the process are stopped. */
|
|
|
|
|
if (ttrace (TT_PROC_STOP, tts.tts_pid, 0, 0, 0, 0) == -1)
|
2005-02-11 Andrew Cagney <cagney@gnu.org>
Mark up error_no_arg, query, perror_with_name, complaint, and
internal_error.
* breakpoint.c, cp-abi.c, cp-namespace.c, cp-support.c: Update.
* cris-tdep.c, dbxread.c, dictionary.c, dsrec.c: Update.
* dummy-frame.c, dve3900-rom.c, dwarf2-frame.c, dwarf2expr.c: Update.
* dwarf2read.c, dwarfread.c, elfread.c, event-loop.c: Update.
* exceptions.c, exec.c, f-lang.c, findvar.c, fork-child.c: Update.
* frame-unwind.c, frame.c, frv-linux-tdep.c, frv-tdep.c: Update.
* gdb_assert.h, gdbarch.c, gdbtypes.c, gnu-nat.c: Update.
* go32-nat.c, hppa-tdep.c, hppabsd-nat.c, hpread.c: Update.
* i386-linux-nat.c, i386-nat.c, i386-tdep.c, i386bsd-nat.c: Update.
* i386fbsd-nat.c, inf-ptrace.c, inf-ttrace.c, infcall.c: Update.
* infcmd.c, inflow.c, infptrace.c, infrun.c, inftarg.c: Update.
* interps.c, language.c, linespec.c, linux-nat.c: Update.
* m32r-linux-nat.c, m68k-tdep.c, m68kbsd-nat.c: Update.
* m68klinux-nat.c, m88kbsd-nat.c, macroexp.c, macroscope.c: Update.
* macrotab.c, maint.c, mdebugread.c, memattr.c: Update.
* mips-linux-tdep.c, mips-tdep.c, mips64obsd-nat.c: Update.
* mipsnbsd-nat.c, mn10300-tdep.c, monitor.c, nto-procfs.c: Update.
* objc-lang.c, objfiles.c, objfiles.h, ocd.c, osabi.c: Update.
* parse.c, ppc-bdm.c, ppc-linux-nat.c, ppc-sysv-tdep.c: Update.
* ppcnbsd-nat.c, ppcobsd-nat.c, printcmd.c, procfs.c: Update.
* regcache.c, reggroups.c, remote-e7000.c, remote-mips.c: Update.
* remote-rdp.c, remote-sds.c, remote-sim.c, remote-st.c: Update.
* remote-utils.c, remote.c, rs6000-nat.c, rs6000-tdep.c: Update.
* s390-nat.c, s390-tdep.c, sentinel-frame.c, serial.c: Update.
* sh-tdep.c, sh3-rom.c, sh64-tdep.c, shnbsd-nat.c: Update.
* solib-aix5.c, solib-svr4.c, solib.c, source.c: Update.
* sparc-nat.c, stabsread.c, stack.c, symfile.c, symtab.c: Update.
* symtab.h, target.c, tracepoint.c, ui-file.c, ui-out.c: Update.
* utils.c, valops.c, valprint.c, vax-nat.c, vaxbsd-nat.c: Update.
* win32-nat.c, xcoffread.c, xstormy16-tdep.c: Update.
* cli/cli-cmds.c, cli/cli-logging.c, cli/cli-script.c: Update.
* cli/cli-setshow.c, mi/mi-cmd-break.c, mi/mi-cmds.c: Update.
* mi/mi-console.c, mi/mi-getopt.c, mi/mi-out.c: Update.
* tui/tui-file.c, tui/tui-interp.c: Update.
2005-02-11 19:13:55 +01:00
|
|
|
|
perror_with_name (("ttrace"));
|
2004-11-23 22:14:33 +01:00
|
|
|
|
|
|
|
|
|
/* HACK: Twiddle INFERIOR_PTID such that the initial thread of a
|
|
|
|
|
process isn't recognized as a new thread. */
|
|
|
|
|
if (ptid_get_lwp (inferior_ptid) == 0)
|
2004-12-07 20:57:21 +01:00
|
|
|
|
inferior_ptid = ptid;
|
2004-11-23 22:14:33 +01:00
|
|
|
|
|
2004-12-07 20:57:21 +01:00
|
|
|
|
return ptid;
|
2004-11-23 22:14:33 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Transfer LEN bytes from ADDR in the inferior's memory into READBUF,
|
|
|
|
|
and transfer LEN bytes from WRITEBUF into the inferior's memory at
|
|
|
|
|
ADDR. Either READBUF or WRITEBUF may be null, in which case the
|
|
|
|
|
corresponding transfer doesn't happen. Return the number of bytes
|
|
|
|
|
actually transferred (which may be zero if an error occurs). */
|
|
|
|
|
|
|
|
|
|
static LONGEST
|
|
|
|
|
inf_ttrace_xfer_memory (CORE_ADDR addr, ULONGEST len,
|
|
|
|
|
void *readbuf, const void *writebuf)
|
|
|
|
|
{
|
|
|
|
|
pid_t pid = ptid_get_pid (inferior_ptid);
|
|
|
|
|
|
|
|
|
|
/* HP-UX treats text space and data space differently. GDB however,
|
|
|
|
|
doesn't really know the difference. Therefore we try both. Try
|
|
|
|
|
text space before data space though because when we're writing
|
|
|
|
|
into text space the instruction cache might need to be flushed. */
|
|
|
|
|
|
|
|
|
|
if (readbuf
|
|
|
|
|
&& ttrace (TT_PROC_RDTEXT, pid, 0, addr, len, (uintptr_t)readbuf) == -1
|
|
|
|
|
&& ttrace (TT_PROC_RDDATA, pid, 0, addr, len, (uintptr_t)readbuf) == -1)
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
if (writebuf
|
|
|
|
|
&& ttrace (TT_PROC_WRTEXT, pid, 0, addr, len, (uintptr_t)writebuf) == -1
|
|
|
|
|
&& ttrace (TT_PROC_WRDATA, pid, 0, addr, len, (uintptr_t)writebuf) == -1)
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
return len;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static LONGEST
|
|
|
|
|
inf_ttrace_xfer_partial (struct target_ops *ops, enum target_object object,
|
2005-06-21 13:58:39 +02:00
|
|
|
|
const char *annex, gdb_byte *readbuf,
|
|
|
|
|
const gdb_byte *writebuf, ULONGEST offset, LONGEST len)
|
2004-11-23 22:14:33 +01:00
|
|
|
|
{
|
|
|
|
|
switch (object)
|
|
|
|
|
{
|
|
|
|
|
case TARGET_OBJECT_MEMORY:
|
|
|
|
|
return inf_ttrace_xfer_memory (offset, len, readbuf, writebuf);
|
|
|
|
|
|
|
|
|
|
case TARGET_OBJECT_UNWIND_TABLE:
|
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
|
|
case TARGET_OBJECT_AUXV:
|
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
|
|
case TARGET_OBJECT_WCOOKIE:
|
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Print status information about what we're accessing. */
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
inf_ttrace_files_info (struct target_ops *ignore)
|
|
|
|
|
{
|
2005-10-28 20:20:35 +02:00
|
|
|
|
printf_filtered (_("\tUsing the running image of %s %s.\n"),
|
|
|
|
|
attach_flag ? "attached" : "child",
|
|
|
|
|
target_pid_to_str (inferior_ptid));
|
2004-11-23 22:14:33 +01:00
|
|
|
|
}
|
2004-12-07 20:57:21 +01:00
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
inf_ttrace_thread_alive (ptid_t ptid)
|
|
|
|
|
{
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static char *
|
|
|
|
|
inf_ttrace_pid_to_str (ptid_t ptid)
|
|
|
|
|
{
|
|
|
|
|
if (inf_ttrace_num_lwps > 0)
|
|
|
|
|
{
|
|
|
|
|
pid_t pid = ptid_get_pid (ptid);
|
|
|
|
|
lwpid_t lwpid = ptid_get_lwp (ptid);
|
2005-03-13 23:06:10 +01:00
|
|
|
|
static char buf[128];
|
2004-12-07 20:57:21 +01:00
|
|
|
|
|
2005-07-18 23:00:50 +02:00
|
|
|
|
xsnprintf (buf, sizeof buf, "process %ld, lwp %ld",
|
|
|
|
|
(long)pid, (long)lwpid);
|
2004-12-07 20:57:21 +01:00
|
|
|
|
return buf;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return normal_pid_to_str (ptid);
|
|
|
|
|
}
|
2004-11-23 22:14:33 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
struct target_ops *
|
|
|
|
|
inf_ttrace_target (void)
|
|
|
|
|
{
|
|
|
|
|
struct target_ops *t = inf_child_target ();
|
|
|
|
|
|
|
|
|
|
t->to_attach = inf_ttrace_attach;
|
|
|
|
|
t->to_detach = inf_ttrace_detach;
|
|
|
|
|
t->to_resume = inf_ttrace_resume;
|
|
|
|
|
t->to_wait = inf_ttrace_wait;
|
|
|
|
|
t->to_files_info = inf_ttrace_files_info;
|
2004-12-03 23:20:00 +01:00
|
|
|
|
t->to_can_use_hw_breakpoint = inf_ttrace_can_use_hw_breakpoint;
|
|
|
|
|
t->to_insert_watchpoint = inf_ttrace_insert_watchpoint;
|
|
|
|
|
t->to_remove_watchpoint = inf_ttrace_remove_watchpoint;
|
|
|
|
|
t->to_stopped_by_watchpoint = inf_ttrace_stopped_by_watchpoint;
|
2005-10-28 20:20:35 +02:00
|
|
|
|
t->to_region_size_ok_for_hw_watchpoint =
|
|
|
|
|
inf_ttrace_region_size_ok_for_hw_watchpoint;
|
|
|
|
|
t->to_kill = inf_ttrace_kill;
|
|
|
|
|
t->to_create_inferior = inf_ttrace_create_inferior;
|
|
|
|
|
t->to_follow_fork = inf_ttrace_follow_fork;
|
|
|
|
|
t->to_mourn_inferior = inf_ttrace_mourn_inferior;
|
|
|
|
|
t->to_thread_alive = inf_ttrace_thread_alive;
|
|
|
|
|
t->to_pid_to_str = inf_ttrace_pid_to_str;
|
|
|
|
|
t->to_xfer_partial = inf_ttrace_xfer_partial;
|
2004-11-23 22:14:33 +01:00
|
|
|
|
|
|
|
|
|
ttrace_ops_hack = t;
|
|
|
|
|
return t;
|
|
|
|
|
}
|
2004-12-11 17:49:26 +01:00
|
|
|
|
#endif
|
2004-12-03 23:20:00 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Prevent warning from -Wmissing-prototypes. */
|
|
|
|
|
void _initialize_hppa_hpux_nat (void);
|
2004-11-23 22:14:33 +01:00
|
|
|
|
|
2004-12-03 23:20:00 +01:00
|
|
|
|
void
|
|
|
|
|
_initialize_inf_ttrace (void)
|
|
|
|
|
{
|
2004-12-11 17:49:26 +01:00
|
|
|
|
#ifdef HAVE_TTRACE
|
2004-12-03 23:20:00 +01:00
|
|
|
|
inf_ttrace_page_dict.pagesize = getpagesize();
|
2004-11-23 22:14:33 +01:00
|
|
|
|
#endif
|
2004-12-11 17:49:26 +01:00
|
|
|
|
}
|