mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-01-06 12:09:26 +08:00
0803633106
As preparation for multi-target, this patch makes each inferior have its own thread list. This isn't absolutely necessary for multi-target, but simplifies things. It originally stemmed from the desire to eliminate the init_thread_list calls sprinkled around, plus it makes it more efficient to iterate over threads of a given inferior (no need to always iterate over threads of all inferiors). We still need to iterate over threads of all inferiors in a number of places, which means we'd need adjust the ALL_THREADS / ALL_NON_EXITED_THREADS macros. However, naively tweaking those macros to have an extra for loop, like: #define ALL_THREADS (thr, inf) \ for (inf = inferior_list; inf; inf = inf->next) \ for (thr = inf->thread_list; thr; thr = thr->next) causes problems with code that does "break" or "continue" within the ALL_THREADS loop body. Plus, we need to declare the extra "inf" local variable in order to pass it as temporary variable to ALL_THREADS (etc.) It gets even trickier when we consider extending the macros to filter out threads matching a ptid_t and a target. The macros become tricker to read/write. Been there. An alternative (which was my next attempt), is to replace the ALL_THREADS etc. iteration style with for_each_all_threads, for_each_non_exited_threads, etc. functions which would take a callback as parameter, which would usually be passed a lambda. However, I did not find that satisfactory at all, because the resulting code ends up a little less natural / more noisy to read, write and debug/step-through (due to use of lambdas), and in many places where we use "continue;" to skip to the next thread now need to use "return;". (I ran into hard to debug bugs caused by a continue/return confusion.) I.e., before: ALL_NON_EXITED_THREADS (tp) { if (tp->not_what_I_want) continue; // do something } would turn into: for_each_non_exited_thread ([&] (thread_info *tp) { if (tp->not_what_I_want) return; // do something }); Lastly, the solution I settled with was to replace the ALL_THREADS / ALL_NON_EXITED_THREADS / ALL_INFERIORS macros with (C++20-like) ranges and iterators, such that you can instead naturaly iterate over threads/inferiors using range-for, like e.g,.: // all threads, including THREAD_EXITED threads. for (thread_info *tp : all_threads ()) { .... } // all non-exited threads. for (thread_info *tp : all_non_exited_threads ()) { .... } // all non-exited threads of INF inferior. for (thread_info *tp : inf->non_exited_threads ()) { .... } The all_non_exited_threads() function takes an optional filter ptid_t as parameter, which is quite convenient when we need to iterate over threads matching that filter. See e.g., how the set_executing/set_stop_requested/finish_thread_state etc. functions in thread.c end up being simplified. Most of the patch thus is about adding the infrustructure for allowing the above. Later on when we get to actual multi-target, these functions/ranges/iterators will gain a "target_ops *" parameter so that e.g., we can iterate over all threads of a given target that match a given filter ptid_t. The only entry points users needs to be aware of are the all_threads/all_non_exited_threads etc. functions seen above. Thus, those functions are declared in gdbthread.h/inferior.h. The actual iterators/ranges are mainly "internals" and thus are put out of view in the new thread-iter.h/thread-iter.c/inferior-iter.h files. That keeps the gdbthread.h/inferior.h headers quite a bit more readable. A common/safe-iterator.h header is added which adds a template that can be used to build "safe" iterators, which are forward iterators that can be used to replace the ALL_THREADS_SAFE macro and other instances of the same idiom in future. There's a little bit of shuffling of code between gdbthread.h/thread.c/inferior.h in the patch. That is necessary in order to avoid circular dependencies between the gdbthread.h/inferior.h headers. As for the init_thread_list calls sprinkled around, they're all eliminated by this patch, and a new, central call is added to inferior_appeared. Note how also related to that, there's a call to init_wait_for_inferior in remote.c that is eliminated. init_wait_for_inferior is currently responsible for discarding skipped inline frames, which had to be moved elsewhere. Given that nowadays we always have a thread even for single-threaded processes, the natural place is to delete a frame's inline frame info when we delete the thread. I.e., from clear_thread_inferior_resources. gdb/ChangeLog: 2018-11-22 Pedro Alves <palves@redhat.com> * Makefile.in (COMMON_SFILES): Add thread-iter.c. * breakpoint.c (breakpoints_should_be_inserted_now): Replace ALL_NON_EXITED_THREADS with all_non_exited_threads. (print_one_breakpoint_location): Replace ALL_INFERIORS with all_inferiors. * bsd-kvm.c: Include inferior.h. * btrace.c (btrace_free_objfile): Replace ALL_NON_EXITED_THREADS with all_non_exited_threads. * common/filtered-iterator.h: New. * common/safe-iterator.h: New. * corelow.c (core_target_open): Don't call init_thread_list here. * darwin-nat.c (thread_info_from_private_thread_info): Replace ALL_THREADS with all_threads. * fbsd-nat.c (fbsd_nat_target::resume): Replace ALL_NON_EXITED_THREADS with inf->non_exited_threads. * fbsd-tdep.c (fbsd_make_corefile_notes): Replace ALL_NON_EXITED_THREADS with inf->non_exited_threads. * fork-child.c (postfork_hook): Don't call init_thread_list here. * gdbarch-selftests.c (register_to_value_test): Adjust. * gdbthread.h: Don't include "inferior.h" here. (struct inferior): Forward declare. (enum step_over_calls_kind): Moved here from inferior.h. (thread_info::deletable): Definition moved to thread.c. (find_thread_ptid (inferior *, ptid_t)): Declare. (ALL_THREADS, ALL_THREADS_BY_INFERIOR, ALL_THREADS_SAFE): Delete. Include "thread-iter.h". (all_threads, all_non_exited_threads, all_threads_safe): New. (any_thread_p): Declare. (thread_list): Delete. * infcmd.c (signal_command): Replace ALL_NON_EXITED_THREADS with all_non_exited_threads. (proceed_after_attach_callback): Delete. (proceed_after_attach): Take an inferior pointer instead of an integer PID. Adjust to use range-for. (attach_post_wait): Pass down inferior pointer instead of pid. Use range-for instead of ALL_NON_EXITED_THREADS. (detach_command): Remove init_thread_list call. * inferior-iter.h: New. * inferior.c (struct delete_thread_of_inferior_arg): Delete. (delete_thread_of_inferior): Delete. (delete_inferior, exit_inferior_1): Use range-for with inf->threads_safe() instead of iterate_over_threads. (inferior_appeared): Call init_thread_list here. (discard_all_inferiors): Use all_non_exited_inferiors. (find_inferior_id, find_inferior_pid): Use all_inferiors. (iterate_over_inferiors): Use all_inferiors_safe. (have_inferiors, number_of_live_inferiors): Use all_non_exited_inferiors. (number_of_inferiors): Use all_inferiors and std::distance. (print_inferior): Use all_inferiors. * inferior.h: Include gdbthread.h. (enum step_over_calls_kind): Moved to gdbthread.h. (struct inferior) <thread_list>: New field. <threads, non_exited_threads, threads_safe>: New methods. (ALL_INFERIORS): Delete. Include "inferior-iter.h". (ALL_NON_EXITED_INFERIORS): Delete. (all_inferiors_safe, all_inferiors, all_non_exited_inferiors): New functions. * inflow.c (child_interrupt, child_pass_ctrlc): Replace ALL_NON_EXITED_THREADS with all_non_exited_threads. * infrun.c (follow_exec): Use all_threads_safe. (clear_proceed_status, proceed): Use all_non_exited_threads. (init_wait_for_inferior): Don't clear inline frame state here. (infrun_thread_stop_requested, for_each_just_stopped_thread): Use all_threads instead of ALL_NON_EXITED_THREADS. (random_pending_event_thread): Use all_non_exited_threads instead of ALL_NON_EXITED_THREADS. Use a lambda for repeated code. (clean_up_just_stopped_threads_fsms): Use all_non_exited_threads instead of ALL_NON_EXITED_THREADS. (handle_no_resumed): Use all_non_exited_threads instead of ALL_NON_EXITED_THREADS. Use all_inferiors instead of ALL_INFERIORS. (restart_threads, switch_back_to_stepped_thread): Use all_non_exited_threads instead of ALL_NON_EXITED_THREADS. * linux-nat.c (check_zombie_leaders): Replace ALL_INFERIORS with all_inferiors. (kill_unfollowed_fork_children): Use inf->non_exited_threads instead of ALL_NON_EXITED_THREADS. * linux-tdep.c (linux_make_corefile_notes): Use inf->non_exited_threads instead of ALL_NON_EXITED_THREADS. * linux-thread-db.c (thread_db_target::update_thread_list): Replace ALL_INFERIORS with all_inferiors. (thread_db_target::thread_handle_to_thread_info): Use inf->non_exited_threads instead of ALL_NON_EXITED_THREADS. * mi/mi-interp.c (multiple_inferiors_p): New. (mi_on_resume_1): Simplify using all_non_exited_threads and multiple_inferiors_p. * mi/mi-main.c (mi_cmd_thread_list_ids): Use all_non_exited_threads instead of ALL_NON_EXITED_THREADS. * nto-procfs.c (nto_procfs_target::open): Don't call init_thread_list here. * record-btrace.c (record_btrace_target_open) (record_btrace_target::stop_recording) (record_btrace_target::close) (record_btrace_target::record_is_replaying) (record_btrace_target::resume, record_btrace_target::wait) (record_btrace_target::record_stop_replaying): Use all_non_exited_threads instead of ALL_NON_EXITED_THREADS. * record-full.c (record_full_wait_1): Use all_non_exited_threads instead of ALL_NON_EXITED_THREADS. * regcache.c (cooked_read_test): Remove reference to global thread_list. * remote-sim.c (gdbsim_target::create_inferior): Don't call init_thread_list here. * remote.c (remote_target::update_thread_list): Use all_threads_safe instead of ALL_NON_EXITED_THREADS. (remote_target::process_initial_stop_replies): Replace ALL_INFERIORS with all_non_exited_inferiors and use all_non_exited_threads instead of ALL_NON_EXITED_THREADS. (remote_target::open_1): Don't call init_thread_list here. (remote_target::append_pending_thread_resumptions) (remote_target::remote_resume_with_hc): Use all_non_exited_threads instead of ALL_NON_EXITED_THREADS. (remote_target::commit_resume) (remote_target::remove_new_fork_children): Replace ALL_INFERIORS with all_non_exited_inferiors and use all_non_exited_threads instead of ALL_NON_EXITED_THREADS. (remote_target::kill_new_fork_children): Use all_non_exited_threads instead of ALL_NON_EXITED_THREADS. Remove init_thread_list and init_wait_for_inferior calls. (remote_target::remote_btrace_maybe_reopen) (remote_target::thread_handle_to_thread_info): Use all_non_exited_threads instead of ALL_NON_EXITED_THREADS. * target.c (target_terminal::restore_inferior) (target_terminal_is_ours_kind): Replace ALL_INFERIORS with all_non_exited_inferiors. * thread-iter.c: New file. * thread-iter.h: New file. * thread.c: Include "inline-frame.h". (thread_list): Delete. (clear_thread_inferior_resources): Call clear_inline_frame_state. (init_thread_list): Use all_threads_safe instead of ALL_THREADS_SAFE. Adjust to per-inferior thread lists. (new_thread): Adjust to per-inferior thread lists. (add_thread_silent): Pass inferior to find_thread_ptid. (thread_info::deletable): New, moved from the header. (delete_thread_1): Adjust to per-inferior thread lists. (find_thread_global_id): Use inf->threads(). (find_thread_ptid): Use find_inferior_ptid and pass inferior to find_thread_ptid. (find_thread_ptid(inferior*, ptid_t)): New overload. (iterate_over_threads): Use all_threads_safe. (any_thread_p): New. (thread_count): Use all_threads and std::distance. (live_threads_count): Use all_non_exited_threads and std::distance. (valid_global_thread_id): Use all_threads. (in_thread_list): Use find_thread_ptid. (first_thread_of_inferior): Adjust to per-inferior thread lists. (any_thread_of_inferior, any_live_thread_of_inferior): Use inf->non_exited_threads(). (prune_threads, delete_exited_threads): Use all_threads_safe. (thread_change_ptid): Pass inferior pointer to find_thread_ptid. (set_resumed, set_running): Use all_non_exited_threads. (is_thread_state, is_stopped, is_exited, is_running) (is_executing): Delete. (set_executing, set_stop_requested, finish_thread_state): Use all_non_exited_threads. (print_thread_info_1): Use all_inferiors and all_threads. (thread_apply_all_command): Use all_non_exited_threads. (thread_find_command): Use all_threads. (update_threads_executing): Use all_non_exited_threads. * tid-parse.c (parse_thread_id): Use inf->threads. * x86-bsd-nat.c (x86bsd_dr_set): Use inf->non_exited_threads ().
419 lines
11 KiB
C
419 lines
11 KiB
C
/* BSD Kernel Data Access Library (libkvm) interface.
|
||
|
||
Copyright (C) 2004-2018 Free Software Foundation, Inc.
|
||
|
||
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 3 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, see <http://www.gnu.org/licenses/>. */
|
||
|
||
#define _KMEMUSER
|
||
#include "defs.h"
|
||
#include "cli/cli-cmds.h"
|
||
#include "command.h"
|
||
#include "frame.h"
|
||
#include "regcache.h"
|
||
#include "target.h"
|
||
#include "value.h"
|
||
#include "gdbcore.h"
|
||
#include "inferior.h" /* for get_exec_file */
|
||
#include "gdbthread.h"
|
||
|
||
#include <fcntl.h>
|
||
#include <kvm.h>
|
||
#ifdef HAVE_NLIST_H
|
||
#include <nlist.h>
|
||
#endif
|
||
#include <paths.h>
|
||
#include "readline/readline.h"
|
||
#include <sys/param.h>
|
||
#include <sys/proc.h>
|
||
#ifdef HAVE_SYS_USER_H
|
||
#include <sys/user.h>
|
||
#endif
|
||
|
||
#include "bsd-kvm.h"
|
||
|
||
/* Kernel memory device file. */
|
||
static const char *bsd_kvm_corefile;
|
||
|
||
/* Kernel memory interface descriptor. */
|
||
static kvm_t *core_kd;
|
||
|
||
/* Address of process control block. */
|
||
static struct pcb *bsd_kvm_paddr;
|
||
|
||
/* Pointer to architecture-specific function that reconstructs the
|
||
register state from PCB and supplies it to REGCACHE. */
|
||
static int (*bsd_kvm_supply_pcb)(struct regcache *regcache, struct pcb *pcb);
|
||
|
||
/* This is the ptid we use while we're connected to kvm. The kvm
|
||
target currently doesn't export any view of the running processes,
|
||
so this represents the kernel task. */
|
||
static ptid_t bsd_kvm_ptid;
|
||
|
||
/* The libkvm target. */
|
||
|
||
static const target_info bsd_kvm_target_info = {
|
||
"kvm",
|
||
N_("Kernel memory interface"),
|
||
N_("Use a kernel virtual memory image as a target.\n\
|
||
Optionally specify the filename of a core dump.")
|
||
};
|
||
|
||
class bsd_kvm_target final : public target_ops
|
||
{
|
||
public:
|
||
bsd_kvm_target ()
|
||
{ this->to_stratum = process_stratum; }
|
||
|
||
const target_info &info () const override
|
||
{ return bsd_kvm_target_info; }
|
||
|
||
void close () override;
|
||
|
||
void fetch_registers (struct regcache *, int) override;
|
||
enum target_xfer_status xfer_partial (enum target_object object,
|
||
const char *annex,
|
||
gdb_byte *readbuf,
|
||
const gdb_byte *writebuf,
|
||
ULONGEST offset, ULONGEST len,
|
||
ULONGEST *xfered_len) override;
|
||
|
||
void files_info () override;
|
||
bool thread_alive (ptid_t ptid) override;
|
||
const char *pid_to_str (ptid_t) override;
|
||
|
||
bool has_memory () override { return true; }
|
||
bool has_stack () override { return true; }
|
||
bool has_registers () override { return true; }
|
||
};
|
||
|
||
/* Target ops for libkvm interface. */
|
||
static bsd_kvm_target bsd_kvm_ops;
|
||
|
||
static void
|
||
bsd_kvm_target_open (const char *arg, int from_tty)
|
||
{
|
||
char errbuf[_POSIX2_LINE_MAX];
|
||
char *execfile = NULL;
|
||
kvm_t *temp_kd;
|
||
char *filename = NULL;
|
||
|
||
target_preopen (from_tty);
|
||
|
||
if (arg)
|
||
{
|
||
char *temp;
|
||
|
||
filename = tilde_expand (arg);
|
||
if (filename[0] != '/')
|
||
{
|
||
temp = concat (current_directory, "/", filename, (char *)NULL);
|
||
xfree (filename);
|
||
filename = temp;
|
||
}
|
||
}
|
||
|
||
execfile = get_exec_file (0);
|
||
temp_kd = kvm_openfiles (execfile, filename, NULL,
|
||
write_files ? O_RDWR : O_RDONLY, errbuf);
|
||
if (temp_kd == NULL)
|
||
error (("%s"), errbuf);
|
||
|
||
bsd_kvm_corefile = filename;
|
||
unpush_target (&bsd_kvm_ops);
|
||
core_kd = temp_kd;
|
||
push_target (&bsd_kvm_ops);
|
||
|
||
add_thread_silent (bsd_kvm_ptid);
|
||
inferior_ptid = bsd_kvm_ptid;
|
||
|
||
target_fetch_registers (get_current_regcache (), -1);
|
||
|
||
reinit_frame_cache ();
|
||
print_stack_frame (get_selected_frame (NULL), 0, SRC_AND_LOC, 1);
|
||
}
|
||
|
||
void
|
||
bsd_kvm_target::close ()
|
||
{
|
||
if (core_kd)
|
||
{
|
||
if (kvm_close (core_kd) == -1)
|
||
warning (("%s"), kvm_geterr(core_kd));
|
||
core_kd = NULL;
|
||
}
|
||
|
||
inferior_ptid = null_ptid;
|
||
discard_all_inferiors ();
|
||
}
|
||
|
||
static LONGEST
|
||
bsd_kvm_xfer_memory (CORE_ADDR addr, ULONGEST len,
|
||
gdb_byte *readbuf, const gdb_byte *writebuf)
|
||
{
|
||
ssize_t nbytes = len;
|
||
|
||
if (readbuf)
|
||
nbytes = kvm_read (core_kd, addr, readbuf, nbytes);
|
||
if (writebuf && nbytes > 0)
|
||
nbytes = kvm_write (core_kd, addr, writebuf, nbytes);
|
||
return nbytes;
|
||
}
|
||
|
||
enum target_xfer_status
|
||
bsd_kvm_target::xfer_partial (enum target_object object,
|
||
const char *annex, gdb_byte *readbuf,
|
||
const gdb_byte *writebuf,
|
||
ULONGEST offset, ULONGEST len, ULONGEST *xfered_len)
|
||
{
|
||
switch (object)
|
||
{
|
||
case TARGET_OBJECT_MEMORY:
|
||
{
|
||
LONGEST ret = bsd_kvm_xfer_memory (offset, len, readbuf, writebuf);
|
||
|
||
if (ret < 0)
|
||
return TARGET_XFER_E_IO;
|
||
else if (ret == 0)
|
||
return TARGET_XFER_EOF;
|
||
else
|
||
{
|
||
*xfered_len = (ULONGEST) ret;
|
||
return TARGET_XFER_OK;
|
||
}
|
||
}
|
||
|
||
default:
|
||
return TARGET_XFER_E_IO;
|
||
}
|
||
}
|
||
|
||
void
|
||
bsd_kvm_target::files_info ()
|
||
{
|
||
if (bsd_kvm_corefile && strcmp (bsd_kvm_corefile, _PATH_MEM) != 0)
|
||
printf_filtered (_("\tUsing the kernel crash dump %s.\n"),
|
||
bsd_kvm_corefile);
|
||
else
|
||
printf_filtered (_("\tUsing the currently running kernel.\n"));
|
||
}
|
||
|
||
/* Fetch process control block at address PADDR. */
|
||
|
||
static int
|
||
bsd_kvm_fetch_pcb (struct regcache *regcache, struct pcb *paddr)
|
||
{
|
||
struct pcb pcb;
|
||
|
||
if (kvm_read (core_kd, (unsigned long) paddr, &pcb, sizeof pcb) == -1)
|
||
error (("%s"), kvm_geterr (core_kd));
|
||
|
||
gdb_assert (bsd_kvm_supply_pcb);
|
||
return bsd_kvm_supply_pcb (regcache, &pcb);
|
||
}
|
||
|
||
void
|
||
bsd_kvm_target::fetch_registers (struct regcache *regcache, int regnum)
|
||
{
|
||
struct nlist nl[2];
|
||
|
||
if (bsd_kvm_paddr)
|
||
{
|
||
bsd_kvm_fetch_pcb (regcache, bsd_kvm_paddr);
|
||
return;
|
||
}
|
||
|
||
/* On dumping core, BSD kernels store the faulting context (PCB)
|
||
in the variable "dumppcb". */
|
||
memset (nl, 0, sizeof nl);
|
||
nl[0].n_name = "_dumppcb";
|
||
|
||
if (kvm_nlist (core_kd, nl) == -1)
|
||
error (("%s"), kvm_geterr (core_kd));
|
||
|
||
if (nl[0].n_value != 0)
|
||
{
|
||
/* Found dumppcb. If it contains a valid context, return
|
||
immediately. */
|
||
if (bsd_kvm_fetch_pcb (regcache, (struct pcb *) nl[0].n_value))
|
||
return;
|
||
}
|
||
|
||
/* Traditional BSD kernels have a process proc0 that should always
|
||
be present. The address of proc0's PCB is stored in the variable
|
||
"proc0paddr". */
|
||
|
||
memset (nl, 0, sizeof nl);
|
||
nl[0].n_name = "_proc0paddr";
|
||
|
||
if (kvm_nlist (core_kd, nl) == -1)
|
||
error (("%s"), kvm_geterr (core_kd));
|
||
|
||
if (nl[0].n_value != 0)
|
||
{
|
||
struct pcb *paddr;
|
||
|
||
/* Found proc0paddr. */
|
||
if (kvm_read (core_kd, nl[0].n_value, &paddr, sizeof paddr) == -1)
|
||
error (("%s"), kvm_geterr (core_kd));
|
||
|
||
bsd_kvm_fetch_pcb (regcache, paddr);
|
||
return;
|
||
}
|
||
|
||
#ifdef HAVE_STRUCT_THREAD_TD_PCB
|
||
/* In FreeBSD kernels for 5.0-RELEASE and later, the PCB no longer
|
||
lives in `struct proc' but in `struct thread'. The `struct
|
||
thread' for the initial thread for proc0 can be found in the
|
||
variable "thread0". */
|
||
|
||
memset (nl, 0, sizeof nl);
|
||
nl[0].n_name = "_thread0";
|
||
|
||
if (kvm_nlist (core_kd, nl) == -1)
|
||
error (("%s"), kvm_geterr (core_kd));
|
||
|
||
if (nl[0].n_value != 0)
|
||
{
|
||
struct pcb *paddr;
|
||
|
||
/* Found thread0. */
|
||
nl[0].n_value += offsetof (struct thread, td_pcb);
|
||
if (kvm_read (core_kd, nl[0].n_value, &paddr, sizeof paddr) == -1)
|
||
error (("%s"), kvm_geterr (core_kd));
|
||
|
||
bsd_kvm_fetch_pcb (regcache, paddr);
|
||
return;
|
||
}
|
||
#endif
|
||
|
||
/* i18n: PCB == "Process Control Block". */
|
||
error (_("Cannot find a valid PCB"));
|
||
}
|
||
|
||
|
||
/* Kernel memory interface commands. */
|
||
struct cmd_list_element *bsd_kvm_cmdlist;
|
||
|
||
static void
|
||
bsd_kvm_cmd (const char *arg, int fromtty)
|
||
{
|
||
/* ??? Should this become an alias for "target kvm"? */
|
||
}
|
||
|
||
#ifndef HAVE_STRUCT_THREAD_TD_PCB
|
||
|
||
static void
|
||
bsd_kvm_proc_cmd (const char *arg, int fromtty)
|
||
{
|
||
CORE_ADDR addr;
|
||
|
||
if (arg == NULL)
|
||
error_no_arg (_("proc address"));
|
||
|
||
if (core_kd == NULL)
|
||
error (_("No kernel memory image."));
|
||
|
||
addr = parse_and_eval_address (arg);
|
||
#ifdef HAVE_STRUCT_LWP
|
||
addr += offsetof (struct lwp, l_addr);
|
||
#else
|
||
addr += offsetof (struct proc, p_addr);
|
||
#endif
|
||
|
||
if (kvm_read (core_kd, addr, &bsd_kvm_paddr, sizeof bsd_kvm_paddr) == -1)
|
||
error (("%s"), kvm_geterr (core_kd));
|
||
|
||
target_fetch_registers (get_current_regcache (), -1);
|
||
|
||
reinit_frame_cache ();
|
||
print_stack_frame (get_selected_frame (NULL), 0, SRC_AND_LOC, 1);
|
||
}
|
||
|
||
#endif
|
||
|
||
static void
|
||
bsd_kvm_pcb_cmd (const char *arg, int fromtty)
|
||
{
|
||
if (arg == NULL)
|
||
/* i18n: PCB == "Process Control Block". */
|
||
error_no_arg (_("pcb address"));
|
||
|
||
if (core_kd == NULL)
|
||
error (_("No kernel memory image."));
|
||
|
||
bsd_kvm_paddr = (struct pcb *)(u_long) parse_and_eval_address (arg);
|
||
|
||
target_fetch_registers (get_current_regcache (), -1);
|
||
|
||
reinit_frame_cache ();
|
||
print_stack_frame (get_selected_frame (NULL), 0, SRC_AND_LOC, 1);
|
||
}
|
||
|
||
bool
|
||
bsd_kvm_target::thread_alive (ptid_t ptid)
|
||
{
|
||
return true;
|
||
}
|
||
|
||
const char *
|
||
bsd_kvm_target::pid_to_str (ptid_t ptid)
|
||
{
|
||
static char buf[64];
|
||
xsnprintf (buf, sizeof buf, "<kvm>");
|
||
return buf;
|
||
}
|
||
|
||
/* Add the libkvm interface to the list of all possible targets and
|
||
register CUPPLY_PCB as the architecture-specific process control
|
||
block interpreter. */
|
||
|
||
void
|
||
bsd_kvm_add_target (int (*supply_pcb)(struct regcache *, struct pcb *))
|
||
{
|
||
gdb_assert (bsd_kvm_supply_pcb == NULL);
|
||
bsd_kvm_supply_pcb = supply_pcb;
|
||
|
||
add_target (bsd_kvm_target_info, bsd_kvm_target_open);
|
||
|
||
add_prefix_cmd ("kvm", class_obscure, bsd_kvm_cmd, _("\
|
||
Generic command for manipulating the kernel memory interface."),
|
||
&bsd_kvm_cmdlist, "kvm ", 0, &cmdlist);
|
||
|
||
#ifndef HAVE_STRUCT_THREAD_TD_PCB
|
||
add_cmd ("proc", class_obscure, bsd_kvm_proc_cmd,
|
||
_("Set current context from proc address"), &bsd_kvm_cmdlist);
|
||
#endif
|
||
add_cmd ("pcb", class_obscure, bsd_kvm_pcb_cmd,
|
||
/* i18n: PCB == "Process Control Block". */
|
||
_("Set current context from pcb address"), &bsd_kvm_cmdlist);
|
||
|
||
/* Some notes on the ptid usage on this target.
|
||
|
||
The pid field represents the kvm inferior instance. Currently,
|
||
we don't support multiple kvm inferiors, but we start at 1
|
||
anyway. The lwp field is set to != 0, in case the core wants to
|
||
refer to the whole kvm inferior with ptid(1,0,0).
|
||
|
||
If kvm is made to export running processes as gdb threads,
|
||
the following form can be used:
|
||
ptid (1, 1, 0) -> kvm inferior 1, in kernel
|
||
ptid (1, 1, 1) -> kvm inferior 1, process 1
|
||
ptid (1, 1, 2) -> kvm inferior 1, process 2
|
||
ptid (1, 1, n) -> kvm inferior 1, process n */
|
||
|
||
bsd_kvm_ptid = ptid_t (1, 1, 0);
|
||
}
|