This commit adds multi-target support to GDB. What this means is that with this commit, GDB can now be connected to different targets at the same time. E.g., you can debug a live native process and a core dump at the same time, connect to multiple gdbservers, etc. Actually, the word "target" is overloaded in gdb. We already have a target stack, with pushes several target_ops instances on top of one another. We also have "info target" already, which means something completely different to what this patch does. So from here on, I'll be using the "target connections" term, to mean an open process_stratum target, pushed on a target stack. This patch makes gdb have multiple target stacks, and multiple process_stratum targets open simultaneously. The user-visible changes / commands will also use this terminology, but of course it's all open to debate. User-interface-wise, not that much changes. The main difference is that each inferior may have its own target connection. A target connection (e.g., a target extended-remote connection) may support debugging multiple processes, just as before. Say you're debugging against gdbserver in extended-remote mode, and you do "add-inferior" to prepare to spawn a new process, like: (gdb) target extended-remote :9999 ... (gdb) start ... (gdb) add-inferior Added inferior 2 (gdb) inferior 2 [Switching to inferior 2 [<null>] (<noexec>)] (gdb) file a.out ... (gdb) start ... At this point, you have two inferiors connected to the same gdbserver. With this commit, GDB will maintain a target stack per inferior, instead of a global target stack. To preserve the behavior above, by default, "add-inferior" makes the new inferior inherit a copy of the target stack of the current inferior. Same across a fork - the child inherits a copy of the target stack of the parent. While the target stacks are copied, the targets themselves are not. Instead, target_ops is made a refcounted_object, which means that target_ops instances are refcounted, which each inferior counting for a reference. What if you want to create an inferior and connect it to some _other_ target? For that, this commit introduces a new "add-inferior -no-connection" option that makes the new inferior not share the current inferior's target. So you could do: (gdb) target extended-remote :9999 Remote debugging using :9999 ... (gdb) add-inferior -no-connection [New inferior 2] Added inferior 2 (gdb) inferior 2 [Switching to inferior 2 [<null>] (<noexec>)] (gdb) info inferiors Num Description Executable 1 process 18401 target:/home/pedro/tmp/main * 2 <null> (gdb) tar extended-remote :10000 Remote debugging using :10000 ... (gdb) info inferiors Num Description Executable 1 process 18401 target:/home/pedro/tmp/main * 2 process 18450 target:/home/pedro/tmp/main (gdb) A following patch will extended "info inferiors" to include a column indicating which connection an inferior is bound to, along with a couple other UI tweaks. Other than that, debugging is the same as before. Users interact with inferiors and threads as before. The only difference is that inferiors may be bound to processes running in different machines. That's pretty much all there is to it in terms of noticeable UI changes. On to implementation. Since we can be connected to different systems at the same time, a ptid_t is no longer a unique identifier. Instead a thread can be identified by a pair of ptid_t and 'process_stratum_target *', the later being the instance of the process_stratum target that owns the process/thread. Note that process_stratum_target inherits from target_ops, and all process_stratum targets inherit from process_stratum_target. In earlier patches, many places in gdb were converted to refer to threads by thread_info pointer instead of ptid_t, but there are still places in gdb where we start with a pid/tid and need to find the corresponding inferior or thread_info objects. So you'll see in the patch many places adding a process_stratum_target parameter to functions that used to take only a ptid_t. Since each inferior has its own target stack now, we can always find the process_stratum target for an inferior. That is done via a inf->process_target() convenience method. Since each inferior has its own target stack, we need to handle the "beneath" calls when servicing target calls. The solution I settled with is just to make sure to switch the current inferior to the inferior you want before making a target call. Not relying on global context is just not feasible in current GDB. Fortunately, there aren't that many places that need to do that, because generally most code that calls target methods already has the current context pointing to the right inferior/thread. Note, to emphasize -- there's no method to "switch to this target stack". Instead, you switch the current inferior, and that implicitly switches the target stack. In some spots, we need to iterate over all inferiors so that we reach all target stacks. Native targets are still singletons. There's always only a single instance of such targets. Remote targets however, we'll have one instance per remote connection. The exec target is still a singleton. There's only one instance. I did not see the point of instanciating more than one exec_target object. After vfork, we need to make sure to push the exec target on the new inferior. See exec_on_vfork. For type safety, functions that need a {target, ptid} pair to identify a thread, take a process_stratum_target pointer for target parameter instead of target_ops *. Some shared code in gdb/nat/ also need to gain a target pointer parameter. This poses an issue, since gdbserver doesn't have process_stratum_target, only target_ops. To fix this, this commit renames gdbserver's target_ops to process_stratum_target. I think this makes sense. There's no concept of target stack in gdbserver, and gdbserver's target_ops really implements a process_stratum-like target. The thread and inferior iterator functions also gain process_stratum_target parameters. These are used to be able to iterate over threads and inferiors of a given target. Following usual conventions, if the target pointer is null, then we iterate over threads and inferiors of all targets. I tried converting "add-inferior" to the gdb::option framework, as a preparatory patch, but that stumbled on the fact that gdb::option does not support file options yet, for "add-inferior -exec". I have a WIP patchset that adds that, but it's not a trivial patch, mainly due to need to integrate readline's filename completion, so I deferred that to some other time. In infrun.c/infcmd.c, the main change is that we need to poll events out of all targets. See do_target_wait. Right after collecting an event, we switch the current inferior to an inferior bound to the target that reported the event, so that target methods can be used while handling the event. This makes most of the code transparent to multi-targets. See fetch_inferior_event. infrun.c:stop_all_threads is interesting -- in this function we need to stop all threads of all targets. What the function does is send an asynchronous stop request to all threads, and then synchronously waits for events, with target_wait, rinse repeat, until all it finds are stopped threads. Now that we have multiple targets, it's not efficient to synchronously block in target_wait waiting for events out of one target. Instead, we implement a mini event loop, with interruptible_select, select'ing on one file descriptor per target. For this to work, we need to be able to ask the target for a waitable file descriptor. Such file descriptors already exist, they are the descriptors registered in the main event loop with add_file_handler, inside the target_async implementations. This commit adds a new target_async_wait_fd target method that just returns the file descriptor in question. See wait_one / stop_all_threads in infrun.c. The 'threads_executing' global is made a per-target variable. Since it is only relevant to process_stratum_target targets, this is where it is put, instead of in target_ops. You'll notice that remote.c includes some FIXME notes. These refer to the fact that the global arrays that hold data for the remote packets supported are still globals. For example, if we connect to two different servers/stubs, then each might support different remote protocol features. They might even be different architectures, like e.g., one ARM baremetal stub, and a x86 gdbserver, to debug a host/controller scenario as a single program. That isn't going to work correctly today, because of said globals. I'm leaving fixing that for another pass, since it does not appear to be trivial, and I'd rather land the base work first. It's already useful to be able to debug multiple instances of the same server (e.g., a distributed cluster, where you have full control over the servers installed), so I think as is it's already reasonable incremental progress. Current limitations: - You can only resume more that one target at the same time if all targets support asynchronous debugging, and support non-stop mode. It should be possible to support mixed all-stop + non-stop backends, but that is left for another time. This means that currently in order to do multi-target with gdbserver you need to issue "maint set target-non-stop on". I would like to make that mode be the default, but we're not there yet. Note that I'm talking about how the target backend works, only. User-visible all-stop mode works just fine. - As explained above, connecting to different remote servers at the same time is likely to produce bad results if they don't support the exact set of RSP features. FreeBSD updates courtesy of John Baldwin. gdb/ChangeLog: 2020-01-10 Pedro Alves <palves@redhat.com> John Baldwin <jhb@FreeBSD.org> * aarch64-linux-nat.c (aarch64_linux_nat_target::thread_architecture): Adjust. * ada-tasks.c (print_ada_task_info): Adjust find_thread_ptid call. (task_command_1): Likewise. * aix-thread.c (sync_threadlists, aix_thread_target::resume) (aix_thread_target::wait, aix_thread_target::fetch_registers) (aix_thread_target::store_registers) (aix_thread_target::thread_alive): Adjust. * amd64-fbsd-tdep.c: Include "inferior.h". (amd64fbsd_get_thread_local_address): Pass down target. * amd64-linux-nat.c (ps_get_thread_area): Use ps_prochandle thread's gdbarch instead of target_gdbarch. * break-catch-sig.c (signal_catchpoint_print_it): Adjust call to get_last_target_status. * break-catch-syscall.c (print_it_catch_syscall): Likewise. * breakpoint.c (breakpoints_should_be_inserted_now): Consider all inferiors. (update_inserted_breakpoint_locations): Skip if inferiors with no execution. (update_global_location_list): When handling moribund locations, find representative inferior for location's pspace, and use thread count of its process_stratum target. * bsd-kvm.c (bsd_kvm_target_open): Pass target down. * bsd-uthread.c (bsd_uthread_target::wait): Use as_process_stratum_target and adjust thread_change_ptid and add_thread calls. (bsd_uthread_target::update_thread_list): Use as_process_stratum_target and adjust find_thread_ptid, thread_change_ptid and add_thread calls. * btrace.c (maint_btrace_packet_history_cmd): Adjust find_thread_ptid call. * corelow.c (add_to_thread_list): Adjust add_thread call. (core_target_open): Adjust add_thread_silent and thread_count calls. (core_target::pid_to_str): Adjust find_inferior_ptid call. * ctf.c (ctf_target_open): Adjust add_thread_silent call. * event-top.c (async_disconnect): Pop targets from all inferiors. * exec.c (add_target_sections): Push exec target on all inferiors sharing the program space. (remove_target_sections): Remove the exec target from all inferiors sharing the program space. (exec_on_vfork): New. * exec.h (exec_on_vfork): Declare. * fbsd-nat.c (fbsd_add_threads): Add fbsd_nat_target parameter. Pass it down. (fbsd_nat_target::update_thread_list): Adjust. (fbsd_nat_target::resume): Adjust. (fbsd_handle_debug_trap): Add fbsd_nat_target parameter. Pass it down. (fbsd_nat_target::wait, fbsd_nat_target::post_attach): Adjust. * fbsd-tdep.c (fbsd_corefile_thread): Adjust get_thread_arch_regcache call. * fork-child.c (gdb_startup_inferior): Pass target down to startup_inferior and set_executing. * gdbthread.h (struct process_stratum_target): Forward declare. (add_thread, add_thread_silent, add_thread_with_info) (in_thread_list): Add process_stratum_target parameter. (find_thread_ptid(inferior*, ptid_t)): New overload. (find_thread_ptid, thread_change_ptid): Add process_stratum_target parameter. (all_threads()): Delete overload. (all_threads, all_non_exited_threads): Add process_stratum_target parameter. (all_threads_safe): Use brace initialization. (thread_count): Add process_stratum_target parameter. (set_resumed, set_running, set_stop_requested, set_executing) (threads_are_executing, finish_thread_state): Add process_stratum_target parameter. (switch_to_thread): Use is_current_thread. * i386-fbsd-tdep.c: Include "inferior.h". (i386fbsd_get_thread_local_address): Pass down target. * i386-linux-nat.c (i386_linux_nat_target::low_resume): Adjust. * inf-child.c (inf_child_target::maybe_unpush_target): Remove have_inferiors check. * inf-ptrace.c (inf_ptrace_target::create_inferior) (inf_ptrace_target::attach): Adjust. * infcall.c (run_inferior_call): Adjust. * infcmd.c (run_command_1): Pass target to scoped_finish_thread_state. (proceed_thread_callback): Skip inferiors with no execution. (continue_command): Rename 'all_threads' local to avoid hiding 'all_threads' function. Adjust get_last_target_status call. (prepare_one_step): Adjust set_running call. (signal_command): Use user_visible_resume_target. Compare thread pointers instead of inferior_ptid. (info_program_command): Adjust to pass down target. (attach_command): Mark target's 'thread_executing' flag. (stop_current_target_threads_ns): New, factored out from ... (interrupt_target_1): ... this. Switch inferior before making target calls. * inferior-iter.h (struct all_inferiors_iterator, struct all_inferiors_range) (struct all_inferiors_safe_range) (struct all_non_exited_inferiors_range): Filter on process_stratum_target too. Remove explicit. * inferior.c (inferior::inferior): Push dummy target on target stack. (find_inferior_pid, find_inferior_ptid, number_of_live_inferiors): Add process_stratum_target parameter, and pass it down. (have_live_inferiors): Adjust. (switch_to_inferior_and_push_target): New. (add_inferior_command, clone_inferior_command): Handle "-no-connection" parameter. Use switch_to_inferior_and_push_target. (_initialize_inferior): Mention "-no-connection" option in the help of "add-inferior" and "clone-inferior" commands. * inferior.h: Include "process-stratum-target.h". (interrupt_target_1): Use bool. (struct inferior) <push_target, unpush_target, target_is_pushed, find_target_beneath, top_target, process_target, target_at, m_stack>: New. (discard_all_inferiors): Delete. (find_inferior_pid, find_inferior_ptid, number_of_live_inferiors) (all_inferiors, all_non_exited_inferiors): Add process_stratum_target parameter. * infrun.c: Include "gdb_select.h" and <unordered_map>. (target_last_proc_target): New global. (follow_fork_inferior): Push target on new inferior. Pass target to add_thread_silent. Call exec_on_vfork. Handle target's reference count. (follow_fork): Adjust get_last_target_status call. Also consider target. (follow_exec): Push target on new inferior. (struct execution_control_state) <target>: New field. (user_visible_resume_target): New. (do_target_resume): Call target_async. (resume_1): Set target's threads_executing flag. Consider resume target. (commit_resume_all_targets): New. (proceed): Also consider resume target. Skip threads of inferiors with no execution. Commit resumtion in all targets. (start_remote): Pass current inferior to wait_for_inferior. (infrun_thread_stop_requested): Consider target as well. Pass thread_info pointer to clear_inline_frame_state instead of ptid. (infrun_thread_thread_exit): Consider target as well. (random_pending_event_thread): New inferior parameter. Use it. (do_target_wait): Rename to ... (do_target_wait_1): ... this. Add inferior parameter, and pass it down. (threads_are_resumed_pending_p, do_target_wait): New. (prepare_for_detach): Adjust calls. (wait_for_inferior): New inferior parameter. Handle it. Use do_target_wait_1 instead of do_target_wait. (fetch_inferior_event): Adjust. Switch to representative inferior. Pass target down. (set_last_target_status): Add process_stratum_target parameter. Save target in global. (get_last_target_status): Add process_stratum_target parameter and handle it. (nullify_last_target_wait_ptid): Clear 'target_last_proc_target'. (context_switch): Check inferior_ptid == null_ptid before calling inferior_thread(). (get_inferior_stop_soon): Pass down target. (wait_one): Rename to ... (poll_one_curr_target): ... this. (struct wait_one_event): New. (wait_one): New. (stop_all_threads): Adjust. (handle_no_resumed, handle_inferior_event): Adjust to consider the event's target. (switch_back_to_stepped_thread): Also consider target. (print_stop_event): Update. (normal_stop): Update. Also consider the resume target. * infrun.h (wait_for_inferior): Remove declaration. (user_visible_resume_target): New declaration. (get_last_target_status, set_last_target_status): New process_stratum_target parameter. * inline-frame.c (clear_inline_frame_state(ptid_t)): Add process_stratum_target parameter, and use it. (clear_inline_frame_state (thread_info*)): New. * inline-frame.c (clear_inline_frame_state(ptid_t)): Add process_stratum_target parameter. (clear_inline_frame_state (thread_info*)): Declare. * linux-fork.c (delete_checkpoint_command): Pass target down to find_thread_ptid. (checkpoint_command): Adjust. * linux-nat.c (linux_nat_target::follow_fork): Switch to thread instead of just tweaking inferior_ptid. (linux_nat_switch_fork): Pass target down to thread_change_ptid. (exit_lwp): Pass target down to find_thread_ptid. (attach_proc_task_lwp_callback): Pass target down to add_thread/set_running/set_executing. (linux_nat_target::attach): Pass target down to thread_change_ptid. (get_detach_signal): Pass target down to find_thread_ptid. Consider last target status's target. (linux_resume_one_lwp_throw, resume_lwp) (linux_handle_syscall_trap, linux_handle_extended_wait, wait_lwp) (stop_wait_callback, save_stop_reason, linux_nat_filter_event) (linux_nat_wait_1, resume_stopped_resumed_lwps): Pass target down. (linux_nat_target::async_wait_fd): New. (linux_nat_stop_lwp, linux_nat_target::thread_address_space): Pass target down. * linux-nat.h (linux_nat_target::async_wait_fd): Declare. * linux-tdep.c (get_thread_arch_regcache): Pass target down. * linux-thread-db.c (struct thread_db_info::process_target): New field. (add_thread_db_info): Save target. (get_thread_db_info): New process_stratum_target parameter. Also match target. (delete_thread_db_info): New process_stratum_target parameter. Also match target. (thread_from_lwp): Adjust to pass down target. (thread_db_notice_clone): Pass down target. (check_thread_db_callback): Pass down target. (try_thread_db_load_1): Always push the thread_db target. (try_thread_db_load, record_thread): Pass target down. (thread_db_target::detach): Pass target down. Always unpush the thread_db target. (thread_db_target::wait, thread_db_target::mourn_inferior): Pass target down. Always unpush the thread_db target. (find_new_threads_callback, thread_db_find_new_threads_2) (thread_db_target::update_thread_list): Pass target down. (thread_db_target::pid_to_str): Pass current inferior down. (thread_db_target::get_thread_local_address): Pass target down. (thread_db_target::resume, maintenance_check_libthread_db): Pass target down. * nto-procfs.c (nto_procfs_target::update_thread_list): Adjust. * procfs.c (procfs_target::procfs_init_inferior): Declare. (proc_set_current_signal, do_attach, procfs_target::wait): Adjust. (procfs_init_inferior): Rename to ... (procfs_target::procfs_init_inferior): ... this and adjust. (procfs_target::create_inferior, procfs_notice_thread) (procfs_do_thread_registers): Adjust. * ppc-fbsd-tdep.c: Include "inferior.h". (ppcfbsd_get_thread_local_address): Pass down target. * proc-service.c (ps_xfer_memory): Switch current inferior and program space as well. (get_ps_regcache): Pass target down. * process-stratum-target.c (process_stratum_target::thread_address_space) (process_stratum_target::thread_architecture): Pass target down. * process-stratum-target.h (process_stratum_target::threads_executing): New field. (as_process_stratum_target): New. * ravenscar-thread.c (ravenscar_thread_target::update_inferior_ptid): Pass target down. (ravenscar_thread_target::wait, ravenscar_add_thread): Pass target down. * record-btrace.c (record_btrace_target::info_record): Adjust. (record_btrace_target::record_method) (record_btrace_target::record_is_replaying) (record_btrace_target::fetch_registers) (get_thread_current_frame_id, record_btrace_target::resume) (record_btrace_target::wait, record_btrace_target::stop): Pass target down. * record-full.c (record_full_wait_1): Switch to event thread. Pass target down. * regcache.c (regcache::regcache) (get_thread_arch_aspace_regcache, get_thread_arch_regcache): Add process_stratum_target parameter and handle it. (current_thread_target): New global. (get_thread_regcache): Add process_stratum_target parameter and handle it. Switch inferior before calling target method. (get_thread_regcache): Pass target down. (get_thread_regcache_for_ptid): Pass target down. (registers_changed_ptid): Add process_stratum_target parameter and handle it. (registers_changed_thread, registers_changed): Pass target down. (test_get_thread_arch_aspace_regcache): New. (current_regcache_test): Define a couple local test_target_ops instances and use them for testing. (readwrite_regcache): Pass process_stratum_target parameter. (cooked_read_test, cooked_write_test): Pass mock_target down. * regcache.h (get_thread_regcache, get_thread_arch_regcache) (get_thread_arch_aspace_regcache): Add process_stratum_target parameter. (regcache::target): New method. (regcache::regcache, regcache::get_thread_arch_aspace_regcache) (regcache::registers_changed_ptid): Add process_stratum_target parameter. (regcache::m_target): New field. (registers_changed_ptid): Add process_stratum_target parameter. * remote.c (remote_state::supports_vCont_probed): New field. (remote_target::async_wait_fd): New method. (remote_unpush_and_throw): Add remote_target parameter. (get_current_remote_target): Adjust. (remote_target::remote_add_inferior): Push target. (remote_target::remote_add_thread) (remote_target::remote_notice_new_inferior) (get_remote_thread_info): Pass target down. (remote_target::update_thread_list): Skip threads of inferiors bound to other targets. (remote_target::close): Don't discard inferiors. (remote_target::add_current_inferior_and_thread) (remote_target::process_initial_stop_replies) (remote_target::start_remote) (remote_target::remote_serial_quit_handler): Pass down target. (remote_target::remote_unpush_target): New remote_target parameter. Unpush the target from all inferiors. (remote_target::remote_unpush_and_throw): New remote_target parameter. Pass it down. (remote_target::open_1): Check whether the current inferior has execution instead of checking whether any inferior is live. Pass target down. (remote_target::remote_detach_1): Pass down target. Use remote_unpush_target. (extended_remote_target::attach): Pass down target. (remote_target::remote_vcont_probe): Set supports_vCont_probed. (remote_target::append_resumption): Pass down target. (remote_target::append_pending_thread_resumptions) (remote_target::remote_resume_with_hc, remote_target::resume) (remote_target::commit_resume): Pass down target. (remote_target::remote_stop_ns): Check supports_vCont_probed. (remote_target::interrupt_query) (remote_target::remove_new_fork_children) (remote_target::check_pending_events_prevent_wildcard_vcont) (remote_target::remote_parse_stop_reply) (remote_target::process_stop_reply): Pass down target. (first_remote_resumed_thread): New remote_target parameter. Pass it down. (remote_target::wait_as): Pass down target. (unpush_and_perror): New remote_target parameter. Pass it down. (remote_target::readchar, remote_target::remote_serial_write) (remote_target::getpkt_or_notif_sane_1) (remote_target::kill_new_fork_children, remote_target::kill): Pass down target. (remote_target::mourn_inferior): Pass down target. Use remote_unpush_target. (remote_target::core_of_thread) (remote_target::remote_btrace_maybe_reopen): Pass down target. (remote_target::pid_to_exec_file) (remote_target::thread_handle_to_thread_info): Pass down target. (remote_target::async_wait_fd): New. * riscv-fbsd-tdep.c: Include "inferior.h". (riscv_fbsd_get_thread_local_address): Pass down target. * sol2-tdep.c (sol2_core_pid_to_str): Pass down target. * sol-thread.c (sol_thread_target::wait, ps_lgetregs, ps_lsetregs) (ps_lgetfpregs, ps_lsetfpregs, sol_update_thread_list_callback): Adjust. * solib-spu.c (spu_skip_standalone_loader): Pass down target. * solib-svr4.c (enable_break): Pass down target. * spu-multiarch.c (parse_spufs_run): Pass down target. * spu-tdep.c (spu2ppu_sniffer): Pass down target. * target-delegates.c: Regenerate. * target.c (g_target_stack): Delete. (current_top_target): Return the current inferior's top target. (target_has_execution_1): Refer to the passed-in inferior's top target. (target_supports_terminal_ours): Check whether the initial inferior was already created. (decref_target): New. (target_stack::push): Incref/decref the target. (push_target, push_target, unpush_target): Adjust. (target_stack::unpush): Defref target. (target_is_pushed): Return bool. Adjust to refer to the current inferior's target stack. (dispose_inferior): Delete, and inline parts ... (target_preopen): ... here. Only dispose of the current inferior. (target_detach): Hold strong target reference while detaching. Pass target down. (target_thread_name): Add assertion. (target_resume): Pass down target. (target_ops::beneath, find_target_at): Adjust to refer to the current inferior's target stack. (get_dummy_target): New. (target_pass_ctrlc): Pass the Ctrl-C to the first inferior that has a thread running. (initialize_targets): Rename to ... (_initialize_target): ... this. * target.h: Include "gdbsupport/refcounted-object.h". (struct target_ops): Inherit refcounted_object. (target_ops::shortname, target_ops::longname): Make const. (target_ops::async_wait_fd): New method. (decref_target): Declare. (struct target_ops_ref_policy): New. (target_ops_ref): New typedef. (get_dummy_target): Declare function. (target_is_pushed): Return bool. * thread-iter.c (all_matching_threads_iterator::m_inf_matches) (all_matching_threads_iterator::all_matching_threads_iterator): Handle filter target. * thread-iter.h (struct all_matching_threads_iterator, struct all_matching_threads_range, class all_non_exited_threads_range): Filter by target too. Remove explicit. * thread.c (threads_executing): Delete. (inferior_thread): Pass down current inferior. (clear_thread_inferior_resources): Pass down thread pointer instead of ptid_t. (add_thread_silent, add_thread_with_info, add_thread): Add process_stratum_target parameter. Use it for thread and inferior searches. (is_current_thread): New. (thread_info::deletable): Use it. (find_thread_ptid, thread_count, in_thread_list) (thread_change_ptid, set_resumed, set_running): New process_stratum_target parameter. Pass it down. (set_executing): New process_stratum_target parameter. Pass it down. Adjust reference to 'threads_executing'. (threads_are_executing): New process_stratum_target parameter. Adjust reference to 'threads_executing'. (set_stop_requested, finish_thread_state): New process_stratum_target parameter. Pass it down. (switch_to_thread): Also match inferior. (switch_to_thread): New process_stratum_target parameter. Pass it down. (update_threads_executing): Reimplement. * top.c (quit_force): Pop targets from all inferior. (gdb_init): Don't call initialize_targets. * windows-nat.c (windows_nat_target) <get_windows_debug_event>: Declare. (windows_add_thread, windows_delete_thread): Adjust. (get_windows_debug_event): Rename to ... (windows_nat_target::get_windows_debug_event): ... this. Adjust. * tracefile-tfile.c (tfile_target_open): Pass down target. * gdbsupport/common-gdbthread.h (struct process_stratum_target): Forward declare. (switch_to_thread): Add process_stratum_target parameter. * mi/mi-interp.c (mi_on_resume_1): Add process_stratum_target parameter. Use it. (mi_on_resume): Pass target down. * nat/fork-inferior.c (startup_inferior): Add process_stratum_target parameter. Pass it down. * nat/fork-inferior.h (startup_inferior): Add process_stratum_target parameter. * python/py-threadevent.c (py_get_event_thread): Pass target down. gdb/gdbserver/ChangeLog: 2020-01-10 Pedro Alves <palves@redhat.com> * fork-child.c (post_fork_inferior): Pass target down to startup_inferior. * inferiors.c (switch_to_thread): Add process_stratum_target parameter. * lynx-low.c (lynx_target_ops): Now a process_stratum_target. * nto-low.c (nto_target_ops): Now a process_stratum_target. * linux-low.c (linux_target_ops): Now a process_stratum_target. * remote-utils.c (prepare_resume_reply): Pass the target to switch_to_thread. * target.c (the_target): Now a process_stratum_target. (done_accessing_memory): Pass the target to switch_to_thread. (set_target_ops): Ajust to use process_stratum_target. * target.h (struct target_ops): Rename to ... (struct process_stratum_target): ... this. (the_target, set_target_ops): Adjust. (prepare_to_access_memory): Adjust comment. * win32-low.c (child_xfer_memory): Adjust to use process_stratum_target. (win32_target_ops): Now a process_stratum_target.
1883 lines
50 KiB
C
1883 lines
50 KiB
C
/* Low level interface to Windows debugging, for gdbserver.
|
|
Copyright (C) 2006-2020 Free Software Foundation, Inc.
|
|
|
|
Contributed by Leo Zayas. Based on "win32-nat.c" from GDB.
|
|
|
|
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/>. */
|
|
|
|
#include "server.h"
|
|
#include "regcache.h"
|
|
#include "gdb/fileio.h"
|
|
#include "mem-break.h"
|
|
#include "win32-low.h"
|
|
#include "gdbthread.h"
|
|
#include "dll.h"
|
|
#include "hostio.h"
|
|
#include <windows.h>
|
|
#include <winnt.h>
|
|
#include <imagehlp.h>
|
|
#include <tlhelp32.h>
|
|
#include <psapi.h>
|
|
#include <process.h>
|
|
#include "gdbsupport/gdb_tilde_expand.h"
|
|
#include "gdbsupport/common-inferior.h"
|
|
#include "gdbsupport/gdb_wait.h"
|
|
|
|
#ifndef USE_WIN32API
|
|
#include <sys/cygwin.h>
|
|
#endif
|
|
|
|
#define OUTMSG(X) do { printf X; fflush (stderr); } while (0)
|
|
|
|
#define OUTMSG2(X) \
|
|
do \
|
|
{ \
|
|
if (debug_threads) \
|
|
{ \
|
|
printf X; \
|
|
fflush (stderr); \
|
|
} \
|
|
} while (0)
|
|
|
|
#ifndef _T
|
|
#define _T(x) TEXT (x)
|
|
#endif
|
|
|
|
#ifndef COUNTOF
|
|
#define COUNTOF(STR) (sizeof (STR) / sizeof ((STR)[0]))
|
|
#endif
|
|
|
|
#ifdef _WIN32_WCE
|
|
# define GETPROCADDRESS(DLL, PROC) \
|
|
((winapi_ ## PROC) GetProcAddress (DLL, TEXT (#PROC)))
|
|
#else
|
|
# define GETPROCADDRESS(DLL, PROC) \
|
|
((winapi_ ## PROC) GetProcAddress (DLL, #PROC))
|
|
#endif
|
|
|
|
int using_threads = 1;
|
|
|
|
/* Globals. */
|
|
static int attaching = 0;
|
|
static HANDLE current_process_handle = NULL;
|
|
static DWORD current_process_id = 0;
|
|
static DWORD main_thread_id = 0;
|
|
static enum gdb_signal last_sig = GDB_SIGNAL_0;
|
|
|
|
/* The current debug event from WaitForDebugEvent. */
|
|
static DEBUG_EVENT current_event;
|
|
|
|
/* A status that hasn't been reported to the core yet, and so
|
|
win32_wait should return it next, instead of fetching the next
|
|
debug event off the win32 API. */
|
|
static struct target_waitstatus cached_status;
|
|
|
|
/* Non zero if an interrupt request is to be satisfied by suspending
|
|
all threads. */
|
|
static int soft_interrupt_requested = 0;
|
|
|
|
/* Non zero if the inferior is stopped in a simulated breakpoint done
|
|
by suspending all the threads. */
|
|
static int faked_breakpoint = 0;
|
|
|
|
const struct target_desc *win32_tdesc;
|
|
|
|
#define NUM_REGS (the_low_target.num_regs)
|
|
|
|
typedef BOOL (WINAPI *winapi_DebugActiveProcessStop) (DWORD dwProcessId);
|
|
typedef BOOL (WINAPI *winapi_DebugSetProcessKillOnExit) (BOOL KillOnExit);
|
|
typedef BOOL (WINAPI *winapi_DebugBreakProcess) (HANDLE);
|
|
typedef BOOL (WINAPI *winapi_GenerateConsoleCtrlEvent) (DWORD, DWORD);
|
|
|
|
static ptid_t win32_wait (ptid_t ptid, struct target_waitstatus *ourstatus,
|
|
int options);
|
|
static void win32_resume (struct thread_resume *resume_info, size_t n);
|
|
#ifndef _WIN32_WCE
|
|
static void win32_add_all_dlls (void);
|
|
#endif
|
|
|
|
/* Get the thread ID from the current selected inferior (the current
|
|
thread). */
|
|
static ptid_t
|
|
current_thread_ptid (void)
|
|
{
|
|
return current_ptid;
|
|
}
|
|
|
|
/* The current debug event from WaitForDebugEvent. */
|
|
static ptid_t
|
|
debug_event_ptid (DEBUG_EVENT *event)
|
|
{
|
|
return ptid_t (event->dwProcessId, event->dwThreadId, 0);
|
|
}
|
|
|
|
/* Get the thread context of the thread associated with TH. */
|
|
|
|
static void
|
|
win32_get_thread_context (win32_thread_info *th)
|
|
{
|
|
memset (&th->context, 0, sizeof (CONTEXT));
|
|
(*the_low_target.get_thread_context) (th);
|
|
#ifdef _WIN32_WCE
|
|
memcpy (&th->base_context, &th->context, sizeof (CONTEXT));
|
|
#endif
|
|
}
|
|
|
|
/* Set the thread context of the thread associated with TH. */
|
|
|
|
static void
|
|
win32_set_thread_context (win32_thread_info *th)
|
|
{
|
|
#ifdef _WIN32_WCE
|
|
/* Calling SuspendThread on a thread that is running kernel code
|
|
will report that the suspending was successful, but in fact, that
|
|
will often not be true. In those cases, the context returned by
|
|
GetThreadContext will not be correct by the time the thread
|
|
stops, hence we can't set that context back into the thread when
|
|
resuming - it will most likely crash the inferior.
|
|
Unfortunately, there is no way to know when the thread will
|
|
really stop. To work around it, we'll only write the context
|
|
back to the thread when either the user or GDB explicitly change
|
|
it between stopping and resuming. */
|
|
if (memcmp (&th->context, &th->base_context, sizeof (CONTEXT)) != 0)
|
|
#endif
|
|
SetThreadContext (th->h, &th->context);
|
|
}
|
|
|
|
/* Set the thread context of the thread associated with TH. */
|
|
|
|
static void
|
|
win32_prepare_to_resume (win32_thread_info *th)
|
|
{
|
|
if (the_low_target.prepare_to_resume != NULL)
|
|
(*the_low_target.prepare_to_resume) (th);
|
|
}
|
|
|
|
/* See win32-low.h. */
|
|
|
|
void
|
|
win32_require_context (win32_thread_info *th)
|
|
{
|
|
if (th->context.ContextFlags == 0)
|
|
{
|
|
if (!th->suspended)
|
|
{
|
|
if (SuspendThread (th->h) == (DWORD) -1)
|
|
{
|
|
DWORD err = GetLastError ();
|
|
OUTMSG (("warning: SuspendThread failed in thread_rec, "
|
|
"(error %d): %s\n", (int) err, strwinerror (err)));
|
|
}
|
|
else
|
|
th->suspended = 1;
|
|
}
|
|
|
|
win32_get_thread_context (th);
|
|
}
|
|
}
|
|
|
|
/* Find a thread record given a thread id. If GET_CONTEXT is set then
|
|
also retrieve the context for this thread. */
|
|
static win32_thread_info *
|
|
thread_rec (ptid_t ptid, int get_context)
|
|
{
|
|
thread_info *thread = find_thread_ptid (ptid);
|
|
if (thread == NULL)
|
|
return NULL;
|
|
|
|
win32_thread_info *th = (win32_thread_info *) thread_target_data (thread);
|
|
if (get_context)
|
|
win32_require_context (th);
|
|
return th;
|
|
}
|
|
|
|
/* Add a thread to the thread list. */
|
|
static win32_thread_info *
|
|
child_add_thread (DWORD pid, DWORD tid, HANDLE h, void *tlb)
|
|
{
|
|
win32_thread_info *th;
|
|
ptid_t ptid = ptid_t (pid, tid, 0);
|
|
|
|
if ((th = thread_rec (ptid, FALSE)))
|
|
return th;
|
|
|
|
th = XCNEW (win32_thread_info);
|
|
th->tid = tid;
|
|
th->h = h;
|
|
th->thread_local_base = (CORE_ADDR) (uintptr_t) tlb;
|
|
|
|
add_thread (ptid, th);
|
|
|
|
if (the_low_target.thread_added != NULL)
|
|
(*the_low_target.thread_added) (th);
|
|
|
|
return th;
|
|
}
|
|
|
|
/* Delete a thread from the list of threads. */
|
|
static void
|
|
delete_thread_info (thread_info *thread)
|
|
{
|
|
win32_thread_info *th = (win32_thread_info *) thread_target_data (thread);
|
|
|
|
remove_thread (thread);
|
|
CloseHandle (th->h);
|
|
free (th);
|
|
}
|
|
|
|
/* Delete a thread from the list of threads. */
|
|
static void
|
|
child_delete_thread (DWORD pid, DWORD tid)
|
|
{
|
|
/* If the last thread is exiting, just return. */
|
|
if (all_threads.size () == 1)
|
|
return;
|
|
|
|
thread_info *thread = find_thread_ptid (ptid_t (pid, tid));
|
|
if (thread == NULL)
|
|
return;
|
|
|
|
delete_thread_info (thread);
|
|
}
|
|
|
|
/* These watchpoint related wrapper functions simply pass on the function call
|
|
if the low target has registered a corresponding function. */
|
|
|
|
static int
|
|
win32_supports_z_point_type (char z_type)
|
|
{
|
|
return (the_low_target.supports_z_point_type != NULL
|
|
&& the_low_target.supports_z_point_type (z_type));
|
|
}
|
|
|
|
static int
|
|
win32_insert_point (enum raw_bkpt_type type, CORE_ADDR addr,
|
|
int size, struct raw_breakpoint *bp)
|
|
{
|
|
if (the_low_target.insert_point != NULL)
|
|
return the_low_target.insert_point (type, addr, size, bp);
|
|
else
|
|
/* Unsupported (see target.h). */
|
|
return 1;
|
|
}
|
|
|
|
static int
|
|
win32_remove_point (enum raw_bkpt_type type, CORE_ADDR addr,
|
|
int size, struct raw_breakpoint *bp)
|
|
{
|
|
if (the_low_target.remove_point != NULL)
|
|
return the_low_target.remove_point (type, addr, size, bp);
|
|
else
|
|
/* Unsupported (see target.h). */
|
|
return 1;
|
|
}
|
|
|
|
static int
|
|
win32_stopped_by_watchpoint (void)
|
|
{
|
|
if (the_low_target.stopped_by_watchpoint != NULL)
|
|
return the_low_target.stopped_by_watchpoint ();
|
|
else
|
|
return 0;
|
|
}
|
|
|
|
static CORE_ADDR
|
|
win32_stopped_data_address (void)
|
|
{
|
|
if (the_low_target.stopped_data_address != NULL)
|
|
return the_low_target.stopped_data_address ();
|
|
else
|
|
return 0;
|
|
}
|
|
|
|
|
|
/* Transfer memory from/to the debugged process. */
|
|
static int
|
|
child_xfer_memory (CORE_ADDR memaddr, char *our, int len,
|
|
int write, process_stratum_target *target)
|
|
{
|
|
BOOL success;
|
|
SIZE_T done = 0;
|
|
DWORD lasterror = 0;
|
|
uintptr_t addr = (uintptr_t) memaddr;
|
|
|
|
if (write)
|
|
{
|
|
success = WriteProcessMemory (current_process_handle, (LPVOID) addr,
|
|
(LPCVOID) our, len, &done);
|
|
if (!success)
|
|
lasterror = GetLastError ();
|
|
FlushInstructionCache (current_process_handle, (LPCVOID) addr, len);
|
|
}
|
|
else
|
|
{
|
|
success = ReadProcessMemory (current_process_handle, (LPCVOID) addr,
|
|
(LPVOID) our, len, &done);
|
|
if (!success)
|
|
lasterror = GetLastError ();
|
|
}
|
|
if (!success && lasterror == ERROR_PARTIAL_COPY && done > 0)
|
|
return done;
|
|
else
|
|
return success ? done : -1;
|
|
}
|
|
|
|
/* Clear out any old thread list and reinitialize it to a pristine
|
|
state. */
|
|
static void
|
|
child_init_thread_list (void)
|
|
{
|
|
for_each_thread (delete_thread_info);
|
|
}
|
|
|
|
/* Zero during the child initialization phase, and nonzero otherwise. */
|
|
|
|
static int child_initialization_done = 0;
|
|
|
|
static void
|
|
do_initial_child_stuff (HANDLE proch, DWORD pid, int attached)
|
|
{
|
|
struct process_info *proc;
|
|
|
|
last_sig = GDB_SIGNAL_0;
|
|
|
|
current_process_handle = proch;
|
|
current_process_id = pid;
|
|
main_thread_id = 0;
|
|
|
|
soft_interrupt_requested = 0;
|
|
faked_breakpoint = 0;
|
|
|
|
memset (¤t_event, 0, sizeof (current_event));
|
|
|
|
proc = add_process (pid, attached);
|
|
proc->tdesc = win32_tdesc;
|
|
child_init_thread_list ();
|
|
child_initialization_done = 0;
|
|
|
|
if (the_low_target.initial_stuff != NULL)
|
|
(*the_low_target.initial_stuff) ();
|
|
|
|
cached_status.kind = TARGET_WAITKIND_IGNORE;
|
|
|
|
/* Flush all currently pending debug events (thread and dll list) up
|
|
to the initial breakpoint. */
|
|
while (1)
|
|
{
|
|
struct target_waitstatus status;
|
|
|
|
win32_wait (minus_one_ptid, &status, 0);
|
|
|
|
/* Note win32_wait doesn't return thread events. */
|
|
if (status.kind != TARGET_WAITKIND_LOADED)
|
|
{
|
|
cached_status = status;
|
|
break;
|
|
}
|
|
|
|
{
|
|
struct thread_resume resume;
|
|
|
|
resume.thread = minus_one_ptid;
|
|
resume.kind = resume_continue;
|
|
resume.sig = 0;
|
|
|
|
win32_resume (&resume, 1);
|
|
}
|
|
}
|
|
|
|
#ifndef _WIN32_WCE
|
|
/* Now that the inferior has been started and all DLLs have been mapped,
|
|
we can iterate over all DLLs and load them in.
|
|
|
|
We avoid doing it any earlier because, on certain versions of Windows,
|
|
LOAD_DLL_DEBUG_EVENTs are sometimes not complete. In particular,
|
|
we have seen on Windows 8.1 that the ntdll.dll load event does not
|
|
include the DLL name, preventing us from creating an associated SO.
|
|
A possible explanation is that ntdll.dll might be mapped before
|
|
the SO info gets created by the Windows system -- ntdll.dll is
|
|
the first DLL to be reported via LOAD_DLL_DEBUG_EVENT and other DLLs
|
|
do not seem to suffer from that problem.
|
|
|
|
Rather than try to work around this sort of issue, it is much
|
|
simpler to just ignore DLL load/unload events during the startup
|
|
phase, and then process them all in one batch now. */
|
|
win32_add_all_dlls ();
|
|
#endif
|
|
|
|
child_initialization_done = 1;
|
|
}
|
|
|
|
/* Resume all artificially suspended threads if we are continuing
|
|
execution. */
|
|
static void
|
|
continue_one_thread (thread_info *thread, int thread_id)
|
|
{
|
|
win32_thread_info *th = (win32_thread_info *) thread_target_data (thread);
|
|
|
|
if (thread_id == -1 || thread_id == th->tid)
|
|
{
|
|
win32_prepare_to_resume (th);
|
|
|
|
if (th->suspended)
|
|
{
|
|
if (th->context.ContextFlags)
|
|
{
|
|
win32_set_thread_context (th);
|
|
th->context.ContextFlags = 0;
|
|
}
|
|
|
|
if (ResumeThread (th->h) == (DWORD) -1)
|
|
{
|
|
DWORD err = GetLastError ();
|
|
OUTMSG (("warning: ResumeThread failed in continue_one_thread, "
|
|
"(error %d): %s\n", (int) err, strwinerror (err)));
|
|
}
|
|
th->suspended = 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
static BOOL
|
|
child_continue (DWORD continue_status, int thread_id)
|
|
{
|
|
/* The inferior will only continue after the ContinueDebugEvent
|
|
call. */
|
|
for_each_thread ([&] (thread_info *thread)
|
|
{
|
|
continue_one_thread (thread, thread_id);
|
|
});
|
|
faked_breakpoint = 0;
|
|
|
|
if (!ContinueDebugEvent (current_event.dwProcessId,
|
|
current_event.dwThreadId,
|
|
continue_status))
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
/* Fetch register(s) from the current thread context. */
|
|
static void
|
|
child_fetch_inferior_registers (struct regcache *regcache, int r)
|
|
{
|
|
int regno;
|
|
win32_thread_info *th = thread_rec (current_thread_ptid (), TRUE);
|
|
if (r == -1 || r > NUM_REGS)
|
|
child_fetch_inferior_registers (regcache, NUM_REGS);
|
|
else
|
|
for (regno = 0; regno < r; regno++)
|
|
(*the_low_target.fetch_inferior_register) (regcache, th, regno);
|
|
}
|
|
|
|
/* Store a new register value into the current thread context. We don't
|
|
change the program's context until later, when we resume it. */
|
|
static void
|
|
child_store_inferior_registers (struct regcache *regcache, int r)
|
|
{
|
|
int regno;
|
|
win32_thread_info *th = thread_rec (current_thread_ptid (), TRUE);
|
|
if (r == -1 || r == 0 || r > NUM_REGS)
|
|
child_store_inferior_registers (regcache, NUM_REGS);
|
|
else
|
|
for (regno = 0; regno < r; regno++)
|
|
(*the_low_target.store_inferior_register) (regcache, th, regno);
|
|
}
|
|
|
|
/* Map the Windows error number in ERROR to a locale-dependent error
|
|
message string and return a pointer to it. Typically, the values
|
|
for ERROR come from GetLastError.
|
|
|
|
The string pointed to shall not be modified by the application,
|
|
but may be overwritten by a subsequent call to strwinerror
|
|
|
|
The strwinerror function does not change the current setting
|
|
of GetLastError. */
|
|
|
|
char *
|
|
strwinerror (DWORD error)
|
|
{
|
|
static char buf[1024];
|
|
TCHAR *msgbuf;
|
|
DWORD lasterr = GetLastError ();
|
|
DWORD chars = FormatMessage (FORMAT_MESSAGE_FROM_SYSTEM
|
|
| FORMAT_MESSAGE_ALLOCATE_BUFFER,
|
|
NULL,
|
|
error,
|
|
0, /* Default language */
|
|
(LPTSTR) &msgbuf,
|
|
0,
|
|
NULL);
|
|
if (chars != 0)
|
|
{
|
|
/* If there is an \r\n appended, zap it. */
|
|
if (chars >= 2
|
|
&& msgbuf[chars - 2] == '\r'
|
|
&& msgbuf[chars - 1] == '\n')
|
|
{
|
|
chars -= 2;
|
|
msgbuf[chars] = 0;
|
|
}
|
|
|
|
if (chars > ((COUNTOF (buf)) - 1))
|
|
{
|
|
chars = COUNTOF (buf) - 1;
|
|
msgbuf [chars] = 0;
|
|
}
|
|
|
|
#ifdef UNICODE
|
|
wcstombs (buf, msgbuf, chars + 1);
|
|
#else
|
|
strncpy (buf, msgbuf, chars + 1);
|
|
#endif
|
|
LocalFree (msgbuf);
|
|
}
|
|
else
|
|
sprintf (buf, "unknown win32 error (%u)", (unsigned) error);
|
|
|
|
SetLastError (lasterr);
|
|
return buf;
|
|
}
|
|
|
|
static BOOL
|
|
create_process (const char *program, char *args,
|
|
DWORD flags, PROCESS_INFORMATION *pi)
|
|
{
|
|
const char *inferior_cwd = get_inferior_cwd ();
|
|
BOOL ret;
|
|
|
|
#ifdef _WIN32_WCE
|
|
wchar_t *p, *wprogram, *wargs, *wcwd = NULL;
|
|
size_t argslen;
|
|
|
|
wprogram = alloca ((strlen (program) + 1) * sizeof (wchar_t));
|
|
mbstowcs (wprogram, program, strlen (program) + 1);
|
|
|
|
for (p = wprogram; *p; ++p)
|
|
if (L'/' == *p)
|
|
*p = L'\\';
|
|
|
|
argslen = strlen (args);
|
|
wargs = alloca ((argslen + 1) * sizeof (wchar_t));
|
|
mbstowcs (wargs, args, argslen + 1);
|
|
|
|
if (inferior_cwd != NULL)
|
|
{
|
|
std::string expanded_infcwd = gdb_tilde_expand (inferior_cwd);
|
|
std::replace (expanded_infcwd.begin (), expanded_infcwd.end (),
|
|
'/', '\\');
|
|
wcwd = alloca ((expanded_infcwd.size () + 1) * sizeof (wchar_t));
|
|
if (mbstowcs (wcwd, expanded_infcwd.c_str (),
|
|
expanded_infcwd.size () + 1) == NULL)
|
|
{
|
|
error (_("\
|
|
Could not convert the expanded inferior cwd to wide-char."));
|
|
}
|
|
}
|
|
|
|
ret = CreateProcessW (wprogram, /* image name */
|
|
wargs, /* command line */
|
|
NULL, /* security, not supported */
|
|
NULL, /* thread, not supported */
|
|
FALSE, /* inherit handles, not supported */
|
|
flags, /* start flags */
|
|
NULL, /* environment, not supported */
|
|
wcwd, /* current directory */
|
|
NULL, /* start info, not supported */
|
|
pi); /* proc info */
|
|
#else
|
|
STARTUPINFOA si = { sizeof (STARTUPINFOA) };
|
|
|
|
ret = CreateProcessA (program, /* image name */
|
|
args, /* command line */
|
|
NULL, /* security */
|
|
NULL, /* thread */
|
|
TRUE, /* inherit handles */
|
|
flags, /* start flags */
|
|
NULL, /* environment */
|
|
/* current directory */
|
|
(inferior_cwd == NULL
|
|
? NULL
|
|
: gdb_tilde_expand (inferior_cwd).c_str()),
|
|
&si, /* start info */
|
|
pi); /* proc info */
|
|
#endif
|
|
|
|
return ret;
|
|
}
|
|
|
|
/* Start a new process.
|
|
PROGRAM is the program name.
|
|
PROGRAM_ARGS is the vector containing the inferior's args.
|
|
Returns the new PID on success, -1 on failure. Registers the new
|
|
process with the process list. */
|
|
static int
|
|
win32_create_inferior (const char *program,
|
|
const std::vector<char *> &program_args)
|
|
{
|
|
client_state &cs = get_client_state ();
|
|
#ifndef USE_WIN32API
|
|
char real_path[PATH_MAX];
|
|
char *orig_path, *new_path, *path_ptr;
|
|
#endif
|
|
BOOL ret;
|
|
DWORD flags;
|
|
PROCESS_INFORMATION pi;
|
|
DWORD err;
|
|
std::string str_program_args = stringify_argv (program_args);
|
|
char *args = (char *) str_program_args.c_str ();
|
|
|
|
/* win32_wait needs to know we're not attaching. */
|
|
attaching = 0;
|
|
|
|
if (!program)
|
|
error ("No executable specified, specify executable to debug.\n");
|
|
|
|
flags = DEBUG_PROCESS | DEBUG_ONLY_THIS_PROCESS;
|
|
|
|
#ifndef USE_WIN32API
|
|
orig_path = NULL;
|
|
path_ptr = getenv ("PATH");
|
|
if (path_ptr)
|
|
{
|
|
int size = cygwin_conv_path_list (CCP_POSIX_TO_WIN_A, path_ptr, NULL, 0);
|
|
orig_path = (char *) alloca (strlen (path_ptr) + 1);
|
|
new_path = (char *) alloca (size);
|
|
strcpy (orig_path, path_ptr);
|
|
cygwin_conv_path_list (CCP_POSIX_TO_WIN_A, path_ptr, new_path, size);
|
|
setenv ("PATH", new_path, 1);
|
|
}
|
|
cygwin_conv_path (CCP_POSIX_TO_WIN_A, program, real_path, PATH_MAX);
|
|
program = real_path;
|
|
#endif
|
|
|
|
OUTMSG2 (("Command line is \"%s\"\n", args));
|
|
|
|
#ifdef CREATE_NEW_PROCESS_GROUP
|
|
flags |= CREATE_NEW_PROCESS_GROUP;
|
|
#endif
|
|
|
|
ret = create_process (program, args, flags, &pi);
|
|
err = GetLastError ();
|
|
if (!ret && err == ERROR_FILE_NOT_FOUND)
|
|
{
|
|
char *exename = (char *) alloca (strlen (program) + 5);
|
|
strcat (strcpy (exename, program), ".exe");
|
|
ret = create_process (exename, args, flags, &pi);
|
|
err = GetLastError ();
|
|
}
|
|
|
|
#ifndef USE_WIN32API
|
|
if (orig_path)
|
|
setenv ("PATH", orig_path, 1);
|
|
#endif
|
|
|
|
if (!ret)
|
|
{
|
|
error ("Error creating process \"%s%s\", (error %d): %s\n",
|
|
program, args, (int) err, strwinerror (err));
|
|
}
|
|
else
|
|
{
|
|
OUTMSG2 (("Process created: %s\n", (char *) args));
|
|
}
|
|
|
|
#ifndef _WIN32_WCE
|
|
/* On Windows CE this handle can't be closed. The OS reuses
|
|
it in the debug events, while the 9x/NT versions of Windows
|
|
probably use a DuplicateHandle'd one. */
|
|
CloseHandle (pi.hThread);
|
|
#endif
|
|
|
|
do_initial_child_stuff (pi.hProcess, pi.dwProcessId, 0);
|
|
|
|
/* Wait till we are at 1st instruction in program, return new pid
|
|
(assuming success). */
|
|
cs.last_ptid = win32_wait (ptid_t (current_process_id), &cs.last_status, 0);
|
|
|
|
return current_process_id;
|
|
}
|
|
|
|
/* Attach to a running process.
|
|
PID is the process ID to attach to, specified by the user
|
|
or a higher layer. */
|
|
static int
|
|
win32_attach (unsigned long pid)
|
|
{
|
|
HANDLE h;
|
|
winapi_DebugSetProcessKillOnExit DebugSetProcessKillOnExit = NULL;
|
|
DWORD err;
|
|
#ifdef _WIN32_WCE
|
|
HMODULE dll = GetModuleHandle (_T("COREDLL.DLL"));
|
|
#else
|
|
HMODULE dll = GetModuleHandle (_T("KERNEL32.DLL"));
|
|
#endif
|
|
DebugSetProcessKillOnExit = GETPROCADDRESS (dll, DebugSetProcessKillOnExit);
|
|
|
|
h = OpenProcess (PROCESS_ALL_ACCESS, FALSE, pid);
|
|
if (h != NULL)
|
|
{
|
|
if (DebugActiveProcess (pid))
|
|
{
|
|
if (DebugSetProcessKillOnExit != NULL)
|
|
DebugSetProcessKillOnExit (FALSE);
|
|
|
|
/* win32_wait needs to know we're attaching. */
|
|
attaching = 1;
|
|
do_initial_child_stuff (h, pid, 1);
|
|
return 0;
|
|
}
|
|
|
|
CloseHandle (h);
|
|
}
|
|
|
|
err = GetLastError ();
|
|
error ("Attach to process failed (error %d): %s\n",
|
|
(int) err, strwinerror (err));
|
|
}
|
|
|
|
/* Handle OUTPUT_DEBUG_STRING_EVENT from child process. */
|
|
static void
|
|
handle_output_debug_string (void)
|
|
{
|
|
#define READ_BUFFER_LEN 1024
|
|
CORE_ADDR addr;
|
|
char s[READ_BUFFER_LEN + 1] = { 0 };
|
|
DWORD nbytes = current_event.u.DebugString.nDebugStringLength;
|
|
|
|
if (nbytes == 0)
|
|
return;
|
|
|
|
if (nbytes > READ_BUFFER_LEN)
|
|
nbytes = READ_BUFFER_LEN;
|
|
|
|
addr = (CORE_ADDR) (size_t) current_event.u.DebugString.lpDebugStringData;
|
|
|
|
if (current_event.u.DebugString.fUnicode)
|
|
{
|
|
/* The event tells us how many bytes, not chars, even
|
|
in Unicode. */
|
|
WCHAR buffer[(READ_BUFFER_LEN + 1) / sizeof (WCHAR)] = { 0 };
|
|
if (read_inferior_memory (addr, (unsigned char *) buffer, nbytes) != 0)
|
|
return;
|
|
wcstombs (s, buffer, (nbytes + 1) / sizeof (WCHAR));
|
|
}
|
|
else
|
|
{
|
|
if (read_inferior_memory (addr, (unsigned char *) s, nbytes) != 0)
|
|
return;
|
|
}
|
|
|
|
if (!startswith (s, "cYg"))
|
|
{
|
|
if (!server_waiting)
|
|
{
|
|
OUTMSG2(("%s", s));
|
|
return;
|
|
}
|
|
|
|
monitor_output (s);
|
|
}
|
|
#undef READ_BUFFER_LEN
|
|
}
|
|
|
|
static void
|
|
win32_clear_inferiors (void)
|
|
{
|
|
if (current_process_handle != NULL)
|
|
CloseHandle (current_process_handle);
|
|
|
|
for_each_thread (delete_thread_info);
|
|
clear_inferiors ();
|
|
}
|
|
|
|
/* Implementation of target_ops::kill. */
|
|
|
|
static int
|
|
win32_kill (process_info *process)
|
|
{
|
|
TerminateProcess (current_process_handle, 0);
|
|
for (;;)
|
|
{
|
|
if (!child_continue (DBG_CONTINUE, -1))
|
|
break;
|
|
if (!WaitForDebugEvent (¤t_event, INFINITE))
|
|
break;
|
|
if (current_event.dwDebugEventCode == EXIT_PROCESS_DEBUG_EVENT)
|
|
break;
|
|
else if (current_event.dwDebugEventCode == OUTPUT_DEBUG_STRING_EVENT)
|
|
handle_output_debug_string ();
|
|
}
|
|
|
|
win32_clear_inferiors ();
|
|
|
|
remove_process (process);
|
|
return 0;
|
|
}
|
|
|
|
/* Implementation of target_ops::detach. */
|
|
|
|
static int
|
|
win32_detach (process_info *process)
|
|
{
|
|
winapi_DebugActiveProcessStop DebugActiveProcessStop = NULL;
|
|
winapi_DebugSetProcessKillOnExit DebugSetProcessKillOnExit = NULL;
|
|
#ifdef _WIN32_WCE
|
|
HMODULE dll = GetModuleHandle (_T("COREDLL.DLL"));
|
|
#else
|
|
HMODULE dll = GetModuleHandle (_T("KERNEL32.DLL"));
|
|
#endif
|
|
DebugActiveProcessStop = GETPROCADDRESS (dll, DebugActiveProcessStop);
|
|
DebugSetProcessKillOnExit = GETPROCADDRESS (dll, DebugSetProcessKillOnExit);
|
|
|
|
if (DebugSetProcessKillOnExit == NULL
|
|
|| DebugActiveProcessStop == NULL)
|
|
return -1;
|
|
|
|
{
|
|
struct thread_resume resume;
|
|
resume.thread = minus_one_ptid;
|
|
resume.kind = resume_continue;
|
|
resume.sig = 0;
|
|
win32_resume (&resume, 1);
|
|
}
|
|
|
|
if (!DebugActiveProcessStop (current_process_id))
|
|
return -1;
|
|
|
|
DebugSetProcessKillOnExit (FALSE);
|
|
remove_process (process);
|
|
|
|
win32_clear_inferiors ();
|
|
return 0;
|
|
}
|
|
|
|
static void
|
|
win32_mourn (struct process_info *process)
|
|
{
|
|
remove_process (process);
|
|
}
|
|
|
|
/* Implementation of target_ops::join. */
|
|
|
|
static void
|
|
win32_join (int pid)
|
|
{
|
|
HANDLE h = OpenProcess (PROCESS_ALL_ACCESS, FALSE, pid);
|
|
if (h != NULL)
|
|
{
|
|
WaitForSingleObject (h, INFINITE);
|
|
CloseHandle (h);
|
|
}
|
|
}
|
|
|
|
/* Return 1 iff the thread with thread ID TID is alive. */
|
|
static int
|
|
win32_thread_alive (ptid_t ptid)
|
|
{
|
|
/* Our thread list is reliable; don't bother to poll target
|
|
threads. */
|
|
return find_thread_ptid (ptid) != NULL;
|
|
}
|
|
|
|
/* Resume the inferior process. RESUME_INFO describes how we want
|
|
to resume. */
|
|
static void
|
|
win32_resume (struct thread_resume *resume_info, size_t n)
|
|
{
|
|
DWORD tid;
|
|
enum gdb_signal sig;
|
|
int step;
|
|
win32_thread_info *th;
|
|
DWORD continue_status = DBG_CONTINUE;
|
|
ptid_t ptid;
|
|
|
|
/* This handles the very limited set of resume packets that GDB can
|
|
currently produce. */
|
|
|
|
if (n == 1 && resume_info[0].thread == minus_one_ptid)
|
|
tid = -1;
|
|
else if (n > 1)
|
|
tid = -1;
|
|
else
|
|
/* Yes, we're ignoring resume_info[0].thread. It'd be tricky to make
|
|
the Windows resume code do the right thing for thread switching. */
|
|
tid = current_event.dwThreadId;
|
|
|
|
if (resume_info[0].thread != minus_one_ptid)
|
|
{
|
|
sig = gdb_signal_from_host (resume_info[0].sig);
|
|
step = resume_info[0].kind == resume_step;
|
|
}
|
|
else
|
|
{
|
|
sig = GDB_SIGNAL_0;
|
|
step = 0;
|
|
}
|
|
|
|
if (sig != GDB_SIGNAL_0)
|
|
{
|
|
if (current_event.dwDebugEventCode != EXCEPTION_DEBUG_EVENT)
|
|
{
|
|
OUTMSG (("Cannot continue with signal %s here.\n",
|
|
gdb_signal_to_string (sig)));
|
|
}
|
|
else if (sig == last_sig)
|
|
continue_status = DBG_EXCEPTION_NOT_HANDLED;
|
|
else
|
|
OUTMSG (("Can only continue with received signal %s.\n",
|
|
gdb_signal_to_string (last_sig)));
|
|
}
|
|
|
|
last_sig = GDB_SIGNAL_0;
|
|
|
|
/* Get context for the currently selected thread. */
|
|
ptid = debug_event_ptid (¤t_event);
|
|
th = thread_rec (ptid, FALSE);
|
|
if (th)
|
|
{
|
|
win32_prepare_to_resume (th);
|
|
|
|
if (th->context.ContextFlags)
|
|
{
|
|
/* Move register values from the inferior into the thread
|
|
context structure. */
|
|
regcache_invalidate ();
|
|
|
|
if (step)
|
|
{
|
|
if (the_low_target.single_step != NULL)
|
|
(*the_low_target.single_step) (th);
|
|
else
|
|
error ("Single stepping is not supported "
|
|
"in this configuration.\n");
|
|
}
|
|
|
|
win32_set_thread_context (th);
|
|
th->context.ContextFlags = 0;
|
|
}
|
|
}
|
|
|
|
/* Allow continuing with the same signal that interrupted us.
|
|
Otherwise complain. */
|
|
|
|
child_continue (continue_status, tid);
|
|
}
|
|
|
|
static void
|
|
win32_add_one_solib (const char *name, CORE_ADDR load_addr)
|
|
{
|
|
char buf[MAX_PATH + 1];
|
|
char buf2[MAX_PATH + 1];
|
|
|
|
#ifdef _WIN32_WCE
|
|
WIN32_FIND_DATA w32_fd;
|
|
WCHAR wname[MAX_PATH + 1];
|
|
mbstowcs (wname, name, MAX_PATH);
|
|
HANDLE h = FindFirstFile (wname, &w32_fd);
|
|
#else
|
|
WIN32_FIND_DATAA w32_fd;
|
|
HANDLE h = FindFirstFileA (name, &w32_fd);
|
|
#endif
|
|
|
|
/* The symbols in a dll are offset by 0x1000, which is the
|
|
offset from 0 of the first byte in an image - because
|
|
of the file header and the section alignment. */
|
|
load_addr += 0x1000;
|
|
|
|
if (h == INVALID_HANDLE_VALUE)
|
|
strcpy (buf, name);
|
|
else
|
|
{
|
|
FindClose (h);
|
|
strcpy (buf, name);
|
|
#ifndef _WIN32_WCE
|
|
{
|
|
char cwd[MAX_PATH + 1];
|
|
char *p;
|
|
if (GetCurrentDirectoryA (MAX_PATH + 1, cwd))
|
|
{
|
|
p = strrchr (buf, '\\');
|
|
if (p)
|
|
p[1] = '\0';
|
|
SetCurrentDirectoryA (buf);
|
|
GetFullPathNameA (w32_fd.cFileName, MAX_PATH, buf, &p);
|
|
SetCurrentDirectoryA (cwd);
|
|
}
|
|
}
|
|
#endif
|
|
}
|
|
|
|
#ifndef _WIN32_WCE
|
|
if (strcasecmp (buf, "ntdll.dll") == 0)
|
|
{
|
|
GetSystemDirectoryA (buf, sizeof (buf));
|
|
strcat (buf, "\\ntdll.dll");
|
|
}
|
|
#endif
|
|
|
|
#ifdef __CYGWIN__
|
|
cygwin_conv_path (CCP_WIN_A_TO_POSIX, buf, buf2, sizeof (buf2));
|
|
#else
|
|
strcpy (buf2, buf);
|
|
#endif
|
|
|
|
loaded_dll (buf2, load_addr);
|
|
}
|
|
|
|
static char *
|
|
get_image_name (HANDLE h, void *address, int unicode)
|
|
{
|
|
static char buf[(2 * MAX_PATH) + 1];
|
|
DWORD size = unicode ? sizeof (WCHAR) : sizeof (char);
|
|
char *address_ptr;
|
|
int len = 0;
|
|
char b[2];
|
|
SIZE_T done;
|
|
|
|
/* Attempt to read the name of the dll that was detected.
|
|
This is documented to work only when actively debugging
|
|
a program. It will not work for attached processes. */
|
|
if (address == NULL)
|
|
return NULL;
|
|
|
|
#ifdef _WIN32_WCE
|
|
/* Windows CE reports the address of the image name,
|
|
instead of an address of a pointer into the image name. */
|
|
address_ptr = address;
|
|
#else
|
|
/* See if we could read the address of a string, and that the
|
|
address isn't null. */
|
|
if (!ReadProcessMemory (h, address, &address_ptr,
|
|
sizeof (address_ptr), &done)
|
|
|| done != sizeof (address_ptr)
|
|
|| !address_ptr)
|
|
return NULL;
|
|
#endif
|
|
|
|
/* Find the length of the string */
|
|
while (ReadProcessMemory (h, address_ptr + len++ * size, &b, size, &done)
|
|
&& (b[0] != 0 || b[size - 1] != 0) && done == size)
|
|
continue;
|
|
|
|
if (!unicode)
|
|
ReadProcessMemory (h, address_ptr, buf, len, &done);
|
|
else
|
|
{
|
|
WCHAR *unicode_address = XALLOCAVEC (WCHAR, len);
|
|
ReadProcessMemory (h, address_ptr, unicode_address, len * sizeof (WCHAR),
|
|
&done);
|
|
|
|
WideCharToMultiByte (CP_ACP, 0, unicode_address, len, buf, len, 0, 0);
|
|
}
|
|
|
|
return buf;
|
|
}
|
|
|
|
typedef BOOL (WINAPI *winapi_EnumProcessModules) (HANDLE, HMODULE *,
|
|
DWORD, LPDWORD);
|
|
typedef BOOL (WINAPI *winapi_GetModuleInformation) (HANDLE, HMODULE,
|
|
LPMODULEINFO, DWORD);
|
|
typedef DWORD (WINAPI *winapi_GetModuleFileNameExA) (HANDLE, HMODULE,
|
|
LPSTR, DWORD);
|
|
|
|
static winapi_EnumProcessModules win32_EnumProcessModules;
|
|
static winapi_GetModuleInformation win32_GetModuleInformation;
|
|
static winapi_GetModuleFileNameExA win32_GetModuleFileNameExA;
|
|
|
|
static BOOL
|
|
load_psapi (void)
|
|
{
|
|
static int psapi_loaded = 0;
|
|
static HMODULE dll = NULL;
|
|
|
|
if (!psapi_loaded)
|
|
{
|
|
psapi_loaded = 1;
|
|
dll = LoadLibrary (TEXT("psapi.dll"));
|
|
if (!dll)
|
|
return FALSE;
|
|
win32_EnumProcessModules =
|
|
GETPROCADDRESS (dll, EnumProcessModules);
|
|
win32_GetModuleInformation =
|
|
GETPROCADDRESS (dll, GetModuleInformation);
|
|
win32_GetModuleFileNameExA =
|
|
GETPROCADDRESS (dll, GetModuleFileNameExA);
|
|
}
|
|
|
|
return (win32_EnumProcessModules != NULL
|
|
&& win32_GetModuleInformation != NULL
|
|
&& win32_GetModuleFileNameExA != NULL);
|
|
}
|
|
|
|
#ifndef _WIN32_WCE
|
|
|
|
/* Iterate over all DLLs currently mapped by our inferior, and
|
|
add them to our list of solibs. */
|
|
|
|
static void
|
|
win32_add_all_dlls (void)
|
|
{
|
|
size_t i;
|
|
HMODULE dh_buf[1];
|
|
HMODULE *DllHandle = dh_buf;
|
|
DWORD cbNeeded;
|
|
BOOL ok;
|
|
|
|
if (!load_psapi ())
|
|
return;
|
|
|
|
cbNeeded = 0;
|
|
ok = (*win32_EnumProcessModules) (current_process_handle,
|
|
DllHandle,
|
|
sizeof (HMODULE),
|
|
&cbNeeded);
|
|
|
|
if (!ok || !cbNeeded)
|
|
return;
|
|
|
|
DllHandle = (HMODULE *) alloca (cbNeeded);
|
|
if (!DllHandle)
|
|
return;
|
|
|
|
ok = (*win32_EnumProcessModules) (current_process_handle,
|
|
DllHandle,
|
|
cbNeeded,
|
|
&cbNeeded);
|
|
if (!ok)
|
|
return;
|
|
|
|
for (i = 1; i < ((size_t) cbNeeded / sizeof (HMODULE)); i++)
|
|
{
|
|
MODULEINFO mi;
|
|
char dll_name[MAX_PATH];
|
|
|
|
if (!(*win32_GetModuleInformation) (current_process_handle,
|
|
DllHandle[i],
|
|
&mi,
|
|
sizeof (mi)))
|
|
continue;
|
|
if ((*win32_GetModuleFileNameExA) (current_process_handle,
|
|
DllHandle[i],
|
|
dll_name,
|
|
MAX_PATH) == 0)
|
|
continue;
|
|
win32_add_one_solib (dll_name, (CORE_ADDR) (uintptr_t) mi.lpBaseOfDll);
|
|
}
|
|
}
|
|
#endif
|
|
|
|
typedef HANDLE (WINAPI *winapi_CreateToolhelp32Snapshot) (DWORD, DWORD);
|
|
typedef BOOL (WINAPI *winapi_Module32First) (HANDLE, LPMODULEENTRY32);
|
|
typedef BOOL (WINAPI *winapi_Module32Next) (HANDLE, LPMODULEENTRY32);
|
|
|
|
/* Handle a DLL load event.
|
|
|
|
This function assumes that this event did not occur during inferior
|
|
initialization, where their event info may be incomplete (see
|
|
do_initial_child_stuff and win32_add_all_dlls for more info on
|
|
how we handle DLL loading during that phase). */
|
|
|
|
static void
|
|
handle_load_dll (void)
|
|
{
|
|
LOAD_DLL_DEBUG_INFO *event = ¤t_event.u.LoadDll;
|
|
char *dll_name;
|
|
|
|
dll_name = get_image_name (current_process_handle,
|
|
event->lpImageName, event->fUnicode);
|
|
if (!dll_name)
|
|
return;
|
|
|
|
win32_add_one_solib (dll_name, (CORE_ADDR) (uintptr_t) event->lpBaseOfDll);
|
|
}
|
|
|
|
/* Handle a DLL unload event.
|
|
|
|
This function assumes that this event did not occur during inferior
|
|
initialization, where their event info may be incomplete (see
|
|
do_initial_child_stuff and win32_add_one_solib for more info
|
|
on how we handle DLL loading during that phase). */
|
|
|
|
static void
|
|
handle_unload_dll (void)
|
|
{
|
|
CORE_ADDR load_addr =
|
|
(CORE_ADDR) (uintptr_t) current_event.u.UnloadDll.lpBaseOfDll;
|
|
|
|
/* The symbols in a dll are offset by 0x1000, which is the
|
|
offset from 0 of the first byte in an image - because
|
|
of the file header and the section alignment. */
|
|
load_addr += 0x1000;
|
|
unloaded_dll (NULL, load_addr);
|
|
}
|
|
|
|
static void
|
|
handle_exception (struct target_waitstatus *ourstatus)
|
|
{
|
|
DWORD code = current_event.u.Exception.ExceptionRecord.ExceptionCode;
|
|
|
|
ourstatus->kind = TARGET_WAITKIND_STOPPED;
|
|
|
|
switch (code)
|
|
{
|
|
case EXCEPTION_ACCESS_VIOLATION:
|
|
OUTMSG2 (("EXCEPTION_ACCESS_VIOLATION"));
|
|
ourstatus->value.sig = GDB_SIGNAL_SEGV;
|
|
break;
|
|
case STATUS_STACK_OVERFLOW:
|
|
OUTMSG2 (("STATUS_STACK_OVERFLOW"));
|
|
ourstatus->value.sig = GDB_SIGNAL_SEGV;
|
|
break;
|
|
case STATUS_FLOAT_DENORMAL_OPERAND:
|
|
OUTMSG2 (("STATUS_FLOAT_DENORMAL_OPERAND"));
|
|
ourstatus->value.sig = GDB_SIGNAL_FPE;
|
|
break;
|
|
case EXCEPTION_ARRAY_BOUNDS_EXCEEDED:
|
|
OUTMSG2 (("EXCEPTION_ARRAY_BOUNDS_EXCEEDED"));
|
|
ourstatus->value.sig = GDB_SIGNAL_FPE;
|
|
break;
|
|
case STATUS_FLOAT_INEXACT_RESULT:
|
|
OUTMSG2 (("STATUS_FLOAT_INEXACT_RESULT"));
|
|
ourstatus->value.sig = GDB_SIGNAL_FPE;
|
|
break;
|
|
case STATUS_FLOAT_INVALID_OPERATION:
|
|
OUTMSG2 (("STATUS_FLOAT_INVALID_OPERATION"));
|
|
ourstatus->value.sig = GDB_SIGNAL_FPE;
|
|
break;
|
|
case STATUS_FLOAT_OVERFLOW:
|
|
OUTMSG2 (("STATUS_FLOAT_OVERFLOW"));
|
|
ourstatus->value.sig = GDB_SIGNAL_FPE;
|
|
break;
|
|
case STATUS_FLOAT_STACK_CHECK:
|
|
OUTMSG2 (("STATUS_FLOAT_STACK_CHECK"));
|
|
ourstatus->value.sig = GDB_SIGNAL_FPE;
|
|
break;
|
|
case STATUS_FLOAT_UNDERFLOW:
|
|
OUTMSG2 (("STATUS_FLOAT_UNDERFLOW"));
|
|
ourstatus->value.sig = GDB_SIGNAL_FPE;
|
|
break;
|
|
case STATUS_FLOAT_DIVIDE_BY_ZERO:
|
|
OUTMSG2 (("STATUS_FLOAT_DIVIDE_BY_ZERO"));
|
|
ourstatus->value.sig = GDB_SIGNAL_FPE;
|
|
break;
|
|
case STATUS_INTEGER_DIVIDE_BY_ZERO:
|
|
OUTMSG2 (("STATUS_INTEGER_DIVIDE_BY_ZERO"));
|
|
ourstatus->value.sig = GDB_SIGNAL_FPE;
|
|
break;
|
|
case STATUS_INTEGER_OVERFLOW:
|
|
OUTMSG2 (("STATUS_INTEGER_OVERFLOW"));
|
|
ourstatus->value.sig = GDB_SIGNAL_FPE;
|
|
break;
|
|
case EXCEPTION_BREAKPOINT:
|
|
OUTMSG2 (("EXCEPTION_BREAKPOINT"));
|
|
ourstatus->value.sig = GDB_SIGNAL_TRAP;
|
|
#ifdef _WIN32_WCE
|
|
/* Remove the initial breakpoint. */
|
|
check_breakpoints ((CORE_ADDR) (long) current_event
|
|
.u.Exception.ExceptionRecord.ExceptionAddress);
|
|
#endif
|
|
break;
|
|
case DBG_CONTROL_C:
|
|
OUTMSG2 (("DBG_CONTROL_C"));
|
|
ourstatus->value.sig = GDB_SIGNAL_INT;
|
|
break;
|
|
case DBG_CONTROL_BREAK:
|
|
OUTMSG2 (("DBG_CONTROL_BREAK"));
|
|
ourstatus->value.sig = GDB_SIGNAL_INT;
|
|
break;
|
|
case EXCEPTION_SINGLE_STEP:
|
|
OUTMSG2 (("EXCEPTION_SINGLE_STEP"));
|
|
ourstatus->value.sig = GDB_SIGNAL_TRAP;
|
|
break;
|
|
case EXCEPTION_ILLEGAL_INSTRUCTION:
|
|
OUTMSG2 (("EXCEPTION_ILLEGAL_INSTRUCTION"));
|
|
ourstatus->value.sig = GDB_SIGNAL_ILL;
|
|
break;
|
|
case EXCEPTION_PRIV_INSTRUCTION:
|
|
OUTMSG2 (("EXCEPTION_PRIV_INSTRUCTION"));
|
|
ourstatus->value.sig = GDB_SIGNAL_ILL;
|
|
break;
|
|
case EXCEPTION_NONCONTINUABLE_EXCEPTION:
|
|
OUTMSG2 (("EXCEPTION_NONCONTINUABLE_EXCEPTION"));
|
|
ourstatus->value.sig = GDB_SIGNAL_ILL;
|
|
break;
|
|
default:
|
|
if (current_event.u.Exception.dwFirstChance)
|
|
{
|
|
ourstatus->kind = TARGET_WAITKIND_SPURIOUS;
|
|
return;
|
|
}
|
|
OUTMSG2 (("gdbserver: unknown target exception 0x%08x at 0x%s",
|
|
(unsigned) current_event.u.Exception.ExceptionRecord.ExceptionCode,
|
|
phex_nz ((uintptr_t) current_event.u.Exception.ExceptionRecord.
|
|
ExceptionAddress, sizeof (uintptr_t))));
|
|
ourstatus->value.sig = GDB_SIGNAL_UNKNOWN;
|
|
break;
|
|
}
|
|
OUTMSG2 (("\n"));
|
|
last_sig = ourstatus->value.sig;
|
|
}
|
|
|
|
|
|
static void
|
|
suspend_one_thread (thread_info *thread)
|
|
{
|
|
win32_thread_info *th = (win32_thread_info *) thread_target_data (thread);
|
|
|
|
if (!th->suspended)
|
|
{
|
|
if (SuspendThread (th->h) == (DWORD) -1)
|
|
{
|
|
DWORD err = GetLastError ();
|
|
OUTMSG (("warning: SuspendThread failed in suspend_one_thread, "
|
|
"(error %d): %s\n", (int) err, strwinerror (err)));
|
|
}
|
|
else
|
|
th->suspended = 1;
|
|
}
|
|
}
|
|
|
|
static void
|
|
fake_breakpoint_event (void)
|
|
{
|
|
OUTMSG2(("fake_breakpoint_event\n"));
|
|
|
|
faked_breakpoint = 1;
|
|
|
|
memset (¤t_event, 0, sizeof (current_event));
|
|
current_event.dwThreadId = main_thread_id;
|
|
current_event.dwDebugEventCode = EXCEPTION_DEBUG_EVENT;
|
|
current_event.u.Exception.ExceptionRecord.ExceptionCode
|
|
= EXCEPTION_BREAKPOINT;
|
|
|
|
for_each_thread (suspend_one_thread);
|
|
}
|
|
|
|
#ifdef _WIN32_WCE
|
|
static int
|
|
auto_delete_breakpoint (CORE_ADDR stop_pc)
|
|
{
|
|
return 1;
|
|
}
|
|
#endif
|
|
|
|
/* Get the next event from the child. */
|
|
|
|
static int
|
|
get_child_debug_event (struct target_waitstatus *ourstatus)
|
|
{
|
|
ptid_t ptid;
|
|
|
|
last_sig = GDB_SIGNAL_0;
|
|
ourstatus->kind = TARGET_WAITKIND_SPURIOUS;
|
|
|
|
/* Check if GDB sent us an interrupt request. */
|
|
check_remote_input_interrupt_request ();
|
|
|
|
if (soft_interrupt_requested)
|
|
{
|
|
soft_interrupt_requested = 0;
|
|
fake_breakpoint_event ();
|
|
goto gotevent;
|
|
}
|
|
|
|
#ifndef _WIN32_WCE
|
|
attaching = 0;
|
|
#else
|
|
if (attaching)
|
|
{
|
|
/* WinCE doesn't set an initial breakpoint automatically. To
|
|
stop the inferior, we flush all currently pending debug
|
|
events -- the thread list and the dll list are always
|
|
reported immediatelly without delay, then, we suspend all
|
|
threads and pretend we saw a trap at the current PC of the
|
|
main thread.
|
|
|
|
Contrary to desktop Windows, Windows CE *does* report the dll
|
|
names on LOAD_DLL_DEBUG_EVENTs resulting from a
|
|
DebugActiveProcess call. This limits the way we can detect
|
|
if all the dlls have already been reported. If we get a real
|
|
debug event before leaving attaching, the worst that will
|
|
happen is the user will see a spurious breakpoint. */
|
|
|
|
current_event.dwDebugEventCode = 0;
|
|
if (!WaitForDebugEvent (¤t_event, 0))
|
|
{
|
|
OUTMSG2(("no attach events left\n"));
|
|
fake_breakpoint_event ();
|
|
attaching = 0;
|
|
}
|
|
else
|
|
OUTMSG2(("got attach event\n"));
|
|
}
|
|
else
|
|
#endif
|
|
{
|
|
/* Keep the wait time low enough for comfortable remote
|
|
interruption, but high enough so gdbserver doesn't become a
|
|
bottleneck. */
|
|
if (!WaitForDebugEvent (¤t_event, 250))
|
|
{
|
|
DWORD e = GetLastError();
|
|
|
|
if (e == ERROR_PIPE_NOT_CONNECTED)
|
|
{
|
|
/* This will happen if the loader fails to succesfully
|
|
load the application, e.g., if the main executable
|
|
tries to pull in a non-existing export from a
|
|
DLL. */
|
|
ourstatus->kind = TARGET_WAITKIND_EXITED;
|
|
ourstatus->value.integer = 1;
|
|
return 1;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
gotevent:
|
|
|
|
switch (current_event.dwDebugEventCode)
|
|
{
|
|
case CREATE_THREAD_DEBUG_EVENT:
|
|
OUTMSG2 (("gdbserver: kernel event CREATE_THREAD_DEBUG_EVENT "
|
|
"for pid=%u tid=%x)\n",
|
|
(unsigned) current_event.dwProcessId,
|
|
(unsigned) current_event.dwThreadId));
|
|
|
|
/* Record the existence of this thread. */
|
|
child_add_thread (current_event.dwProcessId,
|
|
current_event.dwThreadId,
|
|
current_event.u.CreateThread.hThread,
|
|
current_event.u.CreateThread.lpThreadLocalBase);
|
|
break;
|
|
|
|
case EXIT_THREAD_DEBUG_EVENT:
|
|
OUTMSG2 (("gdbserver: kernel event EXIT_THREAD_DEBUG_EVENT "
|
|
"for pid=%u tid=%x\n",
|
|
(unsigned) current_event.dwProcessId,
|
|
(unsigned) current_event.dwThreadId));
|
|
child_delete_thread (current_event.dwProcessId,
|
|
current_event.dwThreadId);
|
|
|
|
current_thread = get_first_thread ();
|
|
return 1;
|
|
|
|
case CREATE_PROCESS_DEBUG_EVENT:
|
|
OUTMSG2 (("gdbserver: kernel event CREATE_PROCESS_DEBUG_EVENT "
|
|
"for pid=%u tid=%x\n",
|
|
(unsigned) current_event.dwProcessId,
|
|
(unsigned) current_event.dwThreadId));
|
|
CloseHandle (current_event.u.CreateProcessInfo.hFile);
|
|
|
|
current_process_handle = current_event.u.CreateProcessInfo.hProcess;
|
|
main_thread_id = current_event.dwThreadId;
|
|
|
|
/* Add the main thread. */
|
|
child_add_thread (current_event.dwProcessId,
|
|
main_thread_id,
|
|
current_event.u.CreateProcessInfo.hThread,
|
|
current_event.u.CreateProcessInfo.lpThreadLocalBase);
|
|
|
|
#ifdef _WIN32_WCE
|
|
if (!attaching)
|
|
{
|
|
/* Windows CE doesn't set the initial breakpoint
|
|
automatically like the desktop versions of Windows do.
|
|
We add it explicitly here. It will be removed as soon as
|
|
it is hit. */
|
|
set_breakpoint_at ((CORE_ADDR) (long) current_event.u
|
|
.CreateProcessInfo.lpStartAddress,
|
|
auto_delete_breakpoint);
|
|
}
|
|
#endif
|
|
break;
|
|
|
|
case EXIT_PROCESS_DEBUG_EVENT:
|
|
OUTMSG2 (("gdbserver: kernel event EXIT_PROCESS_DEBUG_EVENT "
|
|
"for pid=%u tid=%x\n",
|
|
(unsigned) current_event.dwProcessId,
|
|
(unsigned) current_event.dwThreadId));
|
|
{
|
|
DWORD exit_status = current_event.u.ExitProcess.dwExitCode;
|
|
/* If the exit status looks like a fatal exception, but we
|
|
don't recognize the exception's code, make the original
|
|
exit status value available, to avoid losing information. */
|
|
int exit_signal
|
|
= WIFSIGNALED (exit_status) ? WTERMSIG (exit_status) : -1;
|
|
if (exit_signal == -1)
|
|
{
|
|
ourstatus->kind = TARGET_WAITKIND_EXITED;
|
|
ourstatus->value.integer = exit_status;
|
|
}
|
|
else
|
|
{
|
|
ourstatus->kind = TARGET_WAITKIND_SIGNALLED;
|
|
ourstatus->value.sig = gdb_signal_from_host (exit_signal);
|
|
}
|
|
}
|
|
child_continue (DBG_CONTINUE, -1);
|
|
CloseHandle (current_process_handle);
|
|
current_process_handle = NULL;
|
|
break;
|
|
|
|
case LOAD_DLL_DEBUG_EVENT:
|
|
OUTMSG2 (("gdbserver: kernel event LOAD_DLL_DEBUG_EVENT "
|
|
"for pid=%u tid=%x\n",
|
|
(unsigned) current_event.dwProcessId,
|
|
(unsigned) current_event.dwThreadId));
|
|
CloseHandle (current_event.u.LoadDll.hFile);
|
|
if (! child_initialization_done)
|
|
break;
|
|
handle_load_dll ();
|
|
|
|
ourstatus->kind = TARGET_WAITKIND_LOADED;
|
|
ourstatus->value.sig = GDB_SIGNAL_TRAP;
|
|
break;
|
|
|
|
case UNLOAD_DLL_DEBUG_EVENT:
|
|
OUTMSG2 (("gdbserver: kernel event UNLOAD_DLL_DEBUG_EVENT "
|
|
"for pid=%u tid=%x\n",
|
|
(unsigned) current_event.dwProcessId,
|
|
(unsigned) current_event.dwThreadId));
|
|
if (! child_initialization_done)
|
|
break;
|
|
handle_unload_dll ();
|
|
ourstatus->kind = TARGET_WAITKIND_LOADED;
|
|
ourstatus->value.sig = GDB_SIGNAL_TRAP;
|
|
break;
|
|
|
|
case EXCEPTION_DEBUG_EVENT:
|
|
OUTMSG2 (("gdbserver: kernel event EXCEPTION_DEBUG_EVENT "
|
|
"for pid=%u tid=%x\n",
|
|
(unsigned) current_event.dwProcessId,
|
|
(unsigned) current_event.dwThreadId));
|
|
handle_exception (ourstatus);
|
|
break;
|
|
|
|
case OUTPUT_DEBUG_STRING_EVENT:
|
|
/* A message from the kernel (or Cygwin). */
|
|
OUTMSG2 (("gdbserver: kernel event OUTPUT_DEBUG_STRING_EVENT "
|
|
"for pid=%u tid=%x\n",
|
|
(unsigned) current_event.dwProcessId,
|
|
(unsigned) current_event.dwThreadId));
|
|
handle_output_debug_string ();
|
|
break;
|
|
|
|
default:
|
|
OUTMSG2 (("gdbserver: kernel event unknown "
|
|
"for pid=%u tid=%x code=%x\n",
|
|
(unsigned) current_event.dwProcessId,
|
|
(unsigned) current_event.dwThreadId,
|
|
(unsigned) current_event.dwDebugEventCode));
|
|
break;
|
|
}
|
|
|
|
ptid = debug_event_ptid (¤t_event);
|
|
current_thread = find_thread_ptid (ptid);
|
|
return 1;
|
|
}
|
|
|
|
/* Wait for the inferior process to change state.
|
|
STATUS will be filled in with a response code to send to GDB.
|
|
Returns the signal which caused the process to stop. */
|
|
static ptid_t
|
|
win32_wait (ptid_t ptid, struct target_waitstatus *ourstatus, int options)
|
|
{
|
|
struct regcache *regcache;
|
|
|
|
if (cached_status.kind != TARGET_WAITKIND_IGNORE)
|
|
{
|
|
/* The core always does a wait after creating the inferior, and
|
|
do_initial_child_stuff already ran the inferior to the
|
|
initial breakpoint (or an exit, if creating the process
|
|
fails). Report it now. */
|
|
*ourstatus = cached_status;
|
|
cached_status.kind = TARGET_WAITKIND_IGNORE;
|
|
return debug_event_ptid (¤t_event);
|
|
}
|
|
|
|
while (1)
|
|
{
|
|
if (!get_child_debug_event (ourstatus))
|
|
continue;
|
|
|
|
switch (ourstatus->kind)
|
|
{
|
|
case TARGET_WAITKIND_EXITED:
|
|
OUTMSG2 (("Child exited with retcode = %x\n",
|
|
ourstatus->value.integer));
|
|
win32_clear_inferiors ();
|
|
return ptid_t (current_event.dwProcessId);
|
|
case TARGET_WAITKIND_STOPPED:
|
|
case TARGET_WAITKIND_SIGNALLED:
|
|
case TARGET_WAITKIND_LOADED:
|
|
OUTMSG2 (("Child Stopped with signal = %d \n",
|
|
ourstatus->value.sig));
|
|
|
|
regcache = get_thread_regcache (current_thread, 1);
|
|
child_fetch_inferior_registers (regcache, -1);
|
|
return debug_event_ptid (¤t_event);
|
|
default:
|
|
OUTMSG (("Ignoring unknown internal event, %d\n", ourstatus->kind));
|
|
/* fall-through */
|
|
case TARGET_WAITKIND_SPURIOUS:
|
|
/* do nothing, just continue */
|
|
child_continue (DBG_CONTINUE, -1);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
/* Fetch registers from the inferior process.
|
|
If REGNO is -1, fetch all registers; otherwise, fetch at least REGNO. */
|
|
static void
|
|
win32_fetch_inferior_registers (struct regcache *regcache, int regno)
|
|
{
|
|
child_fetch_inferior_registers (regcache, regno);
|
|
}
|
|
|
|
/* Store registers to the inferior process.
|
|
If REGNO is -1, store all registers; otherwise, store at least REGNO. */
|
|
static void
|
|
win32_store_inferior_registers (struct regcache *regcache, int regno)
|
|
{
|
|
child_store_inferior_registers (regcache, regno);
|
|
}
|
|
|
|
/* Read memory from the inferior process. This should generally be
|
|
called through read_inferior_memory, which handles breakpoint shadowing.
|
|
Read LEN bytes at MEMADDR into a buffer at MYADDR. */
|
|
static int
|
|
win32_read_inferior_memory (CORE_ADDR memaddr, unsigned char *myaddr, int len)
|
|
{
|
|
return child_xfer_memory (memaddr, (char *) myaddr, len, 0, 0) != len;
|
|
}
|
|
|
|
/* Write memory to the inferior process. This should generally be
|
|
called through write_inferior_memory, which handles breakpoint shadowing.
|
|
Write LEN bytes from the buffer at MYADDR to MEMADDR.
|
|
Returns 0 on success and errno on failure. */
|
|
static int
|
|
win32_write_inferior_memory (CORE_ADDR memaddr, const unsigned char *myaddr,
|
|
int len)
|
|
{
|
|
return child_xfer_memory (memaddr, (char *) myaddr, len, 1, 0) != len;
|
|
}
|
|
|
|
/* Send an interrupt request to the inferior process. */
|
|
static void
|
|
win32_request_interrupt (void)
|
|
{
|
|
winapi_DebugBreakProcess DebugBreakProcess;
|
|
winapi_GenerateConsoleCtrlEvent GenerateConsoleCtrlEvent;
|
|
|
|
#ifdef _WIN32_WCE
|
|
HMODULE dll = GetModuleHandle (_T("COREDLL.DLL"));
|
|
#else
|
|
HMODULE dll = GetModuleHandle (_T("KERNEL32.DLL"));
|
|
#endif
|
|
|
|
GenerateConsoleCtrlEvent = GETPROCADDRESS (dll, GenerateConsoleCtrlEvent);
|
|
|
|
if (GenerateConsoleCtrlEvent != NULL
|
|
&& GenerateConsoleCtrlEvent (CTRL_BREAK_EVENT, current_process_id))
|
|
return;
|
|
|
|
/* GenerateConsoleCtrlEvent can fail if process id being debugged is
|
|
not a process group id.
|
|
Fallback to XP/Vista 'DebugBreakProcess', which generates a
|
|
breakpoint exception in the interior process. */
|
|
|
|
DebugBreakProcess = GETPROCADDRESS (dll, DebugBreakProcess);
|
|
|
|
if (DebugBreakProcess != NULL
|
|
&& DebugBreakProcess (current_process_handle))
|
|
return;
|
|
|
|
/* Last resort, suspend all threads manually. */
|
|
soft_interrupt_requested = 1;
|
|
}
|
|
|
|
#ifdef _WIN32_WCE
|
|
int
|
|
win32_error_to_fileio_error (DWORD err)
|
|
{
|
|
switch (err)
|
|
{
|
|
case ERROR_BAD_PATHNAME:
|
|
case ERROR_FILE_NOT_FOUND:
|
|
case ERROR_INVALID_NAME:
|
|
case ERROR_PATH_NOT_FOUND:
|
|
return FILEIO_ENOENT;
|
|
case ERROR_CRC:
|
|
case ERROR_IO_DEVICE:
|
|
case ERROR_OPEN_FAILED:
|
|
return FILEIO_EIO;
|
|
case ERROR_INVALID_HANDLE:
|
|
return FILEIO_EBADF;
|
|
case ERROR_ACCESS_DENIED:
|
|
case ERROR_SHARING_VIOLATION:
|
|
return FILEIO_EACCES;
|
|
case ERROR_NOACCESS:
|
|
return FILEIO_EFAULT;
|
|
case ERROR_BUSY:
|
|
return FILEIO_EBUSY;
|
|
case ERROR_ALREADY_EXISTS:
|
|
case ERROR_FILE_EXISTS:
|
|
return FILEIO_EEXIST;
|
|
case ERROR_BAD_DEVICE:
|
|
return FILEIO_ENODEV;
|
|
case ERROR_DIRECTORY:
|
|
return FILEIO_ENOTDIR;
|
|
case ERROR_FILENAME_EXCED_RANGE:
|
|
case ERROR_INVALID_DATA:
|
|
case ERROR_INVALID_PARAMETER:
|
|
case ERROR_NEGATIVE_SEEK:
|
|
return FILEIO_EINVAL;
|
|
case ERROR_TOO_MANY_OPEN_FILES:
|
|
return FILEIO_EMFILE;
|
|
case ERROR_HANDLE_DISK_FULL:
|
|
case ERROR_DISK_FULL:
|
|
return FILEIO_ENOSPC;
|
|
case ERROR_WRITE_PROTECT:
|
|
return FILEIO_EROFS;
|
|
case ERROR_NOT_SUPPORTED:
|
|
return FILEIO_ENOSYS;
|
|
}
|
|
|
|
return FILEIO_EUNKNOWN;
|
|
}
|
|
|
|
static void
|
|
wince_hostio_last_error (char *buf)
|
|
{
|
|
DWORD winerr = GetLastError ();
|
|
int fileio_err = win32_error_to_fileio_error (winerr);
|
|
sprintf (buf, "F-1,%x", fileio_err);
|
|
}
|
|
#endif
|
|
|
|
/* Write Windows OS Thread Information Block address. */
|
|
|
|
static int
|
|
win32_get_tib_address (ptid_t ptid, CORE_ADDR *addr)
|
|
{
|
|
win32_thread_info *th;
|
|
th = thread_rec (ptid, 0);
|
|
if (th == NULL)
|
|
return 0;
|
|
if (addr != NULL)
|
|
*addr = th->thread_local_base;
|
|
return 1;
|
|
}
|
|
|
|
/* Implementation of the target_ops method "sw_breakpoint_from_kind". */
|
|
|
|
static const gdb_byte *
|
|
win32_sw_breakpoint_from_kind (int kind, int *size)
|
|
{
|
|
*size = the_low_target.breakpoint_len;
|
|
return the_low_target.breakpoint;
|
|
}
|
|
|
|
static process_stratum_target win32_target_ops = {
|
|
win32_create_inferior,
|
|
NULL, /* post_create_inferior */
|
|
win32_attach,
|
|
win32_kill,
|
|
win32_detach,
|
|
win32_mourn,
|
|
win32_join,
|
|
win32_thread_alive,
|
|
win32_resume,
|
|
win32_wait,
|
|
win32_fetch_inferior_registers,
|
|
win32_store_inferior_registers,
|
|
NULL, /* prepare_to_access_memory */
|
|
NULL, /* done_accessing_memory */
|
|
win32_read_inferior_memory,
|
|
win32_write_inferior_memory,
|
|
NULL, /* lookup_symbols */
|
|
win32_request_interrupt,
|
|
NULL, /* read_auxv */
|
|
win32_supports_z_point_type,
|
|
win32_insert_point,
|
|
win32_remove_point,
|
|
NULL, /* stopped_by_sw_breakpoint */
|
|
NULL, /* supports_stopped_by_sw_breakpoint */
|
|
NULL, /* stopped_by_hw_breakpoint */
|
|
NULL, /* supports_stopped_by_hw_breakpoint */
|
|
target_can_do_hardware_single_step,
|
|
win32_stopped_by_watchpoint,
|
|
win32_stopped_data_address,
|
|
NULL, /* read_offsets */
|
|
NULL, /* get_tls_address */
|
|
#ifdef _WIN32_WCE
|
|
wince_hostio_last_error,
|
|
#else
|
|
hostio_last_error_from_errno,
|
|
#endif
|
|
NULL, /* qxfer_osdata */
|
|
NULL, /* qxfer_siginfo */
|
|
NULL, /* supports_non_stop */
|
|
NULL, /* async */
|
|
NULL, /* start_non_stop */
|
|
NULL, /* supports_multi_process */
|
|
NULL, /* supports_fork_events */
|
|
NULL, /* supports_vfork_events */
|
|
NULL, /* supports_exec_events */
|
|
NULL, /* handle_new_gdb_connection */
|
|
NULL, /* handle_monitor_command */
|
|
NULL, /* core_of_thread */
|
|
NULL, /* read_loadmap */
|
|
NULL, /* process_qsupported */
|
|
NULL, /* supports_tracepoints */
|
|
NULL, /* read_pc */
|
|
NULL, /* write_pc */
|
|
NULL, /* thread_stopped */
|
|
win32_get_tib_address,
|
|
NULL, /* pause_all */
|
|
NULL, /* unpause_all */
|
|
NULL, /* stabilize_threads */
|
|
NULL, /* install_fast_tracepoint_jump_pad */
|
|
NULL, /* emit_ops */
|
|
NULL, /* supports_disable_randomization */
|
|
NULL, /* get_min_fast_tracepoint_insn_len */
|
|
NULL, /* qxfer_libraries_svr4 */
|
|
NULL, /* support_agent */
|
|
NULL, /* enable_btrace */
|
|
NULL, /* disable_btrace */
|
|
NULL, /* read_btrace */
|
|
NULL, /* read_btrace_conf */
|
|
NULL, /* supports_range_stepping */
|
|
NULL, /* pid_to_exec_file */
|
|
NULL, /* multifs_open */
|
|
NULL, /* multifs_unlink */
|
|
NULL, /* multifs_readlink */
|
|
NULL, /* breakpoint_kind_from_pc */
|
|
win32_sw_breakpoint_from_kind,
|
|
};
|
|
|
|
/* Initialize the Win32 backend. */
|
|
void
|
|
initialize_low (void)
|
|
{
|
|
set_target_ops (&win32_target_ops);
|
|
the_low_target.arch_setup ();
|
|
}
|