From patchwork Fri Feb 27 00:46:16 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Don Breazeal X-Patchwork-Id: 5331 Received: (qmail 24405 invoked by alias); 27 Feb 2015 00:47:59 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Delivered-To: mailing list gdb-patches@sourceware.org Received: (qmail 24392 invoked by uid 89); 27 Feb 2015 00:47:58 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.1 required=5.0 tests=AWL, BAYES_00, RCVD_IN_DNSWL_LOW, SPF_PASS autolearn=ham version=3.3.2 X-HELO: relay1.mentorg.com Received: from relay1.mentorg.com (HELO relay1.mentorg.com) (192.94.38.131) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 27 Feb 2015 00:47:56 +0000 Received: from svr-orw-fem-05.mgc.mentorg.com ([147.34.97.43]) by relay1.mentorg.com with esmtp id 1YR95t-0006bz-CR from Don_Breazeal@mentor.com ; Thu, 26 Feb 2015 16:47:53 -0800 Received: from build4-lucid-cs (147.34.91.1) by svr-orw-fem-05.mgc.mentorg.com (147.34.97.43) with Microsoft SMTP Server id 14.3.224.2; Thu, 26 Feb 2015 16:47:53 -0800 Received: by build4-lucid-cs (Postfix, from userid 1905) id D6B7640FB6; Thu, 26 Feb 2015 16:47:52 -0800 (PST) From: Don Breazeal To: , Subject: [PATCH v5 05/06] Remote follow vfork Date: Thu, 26 Feb 2015 16:46:16 -0800 Message-ID: <1424997977-13316-6-git-send-email-donb@codesourcery.com> In-Reply-To: <1424997977-13316-1-git-send-email-donb@codesourcery.com> References: <54C566F2.2020302@codesourcery.com> <1424997977-13316-1-git-send-email-donb@codesourcery.com> MIME-Version: 1.0 X-IsSubscribed: yes This is an updated version of the patch last reviewed here: https://sourceware.org/ml/gdb-patches/2015-02/msg00263.html. The patch has been modified to remove all 'target remote' support, which will be added in a later patch. Hi Pedro, here are responses to your review comments: On 2/10/2015 8:39 AM, Pedro Alves wrote: >On 01/25/2015 09:46 PM, Don Breazeal wrote: >> --- a/gdb/remote.c >> +++ b/gdb/remote.c >> @@ -1481,7 +1481,10 @@ remote_follow_fork (struct target_ops *target, int follow_child, >> pid_t child_pid; >> >> gdb_assert ((inferior_thread ()->pending_follow.kind >> - == TARGET_WAITKIND_FORKED)); >> + == TARGET_WAITKIND_FORKED) >> + || (inferior_thread ()->pending_follow.kind >> + == TARGET_WAITKIND_VFORKED)); >> + > > Please use a temporary variable, something like: > > kind = inferior_thread ()->pending_follow.kind > gdb_assert (kind == TARGET_WAITKIND_FORKED) > || (kind == TARGET_WAITKIND_VFORKED)); > > Makes it easier to debug a core dump caused by this assert. Done. > >> child_ptid = inferior_thread ()->pending_follow.value.related_pid; >> child_pid = ptid_get_pid (child_ptid); >> >> @@ -4502,7 +4505,8 @@ remote_detach_1 (struct target_ops *ops, const char *args, >> { >> inferior_ptid = null_ptid; >> detach_inferior (pid); >> - inf_child_maybe_unpush_target (ops); >> + if (!extended) >> + inf_child_maybe_unpush_target (ops); > > Hmm, I'm afraid I don't understand why is this part of this patch? It was another manifestation of the "unpush" confusion I had in some of the previous patches, and an artifact of the 'target remote' work. I have removed this. The updated patch is below. Thanks --Don This patch implements follow-fork for vfork on remote and extended-remote Linux targets. The implementation follows the native implementation as much as possible. Most of the work is done on the GDB side in the existing code now in infrun.c. GDBserver just has to report the events and do a little bookkeeping. Implementation was almost entirely in gdbserver, excepting changes to gdb/remote.c, and included: * enabling VFORK events by adding ptrace options for VFORK and VFORK_DONE as 'additional options' in linux-low.c:initialize_low. * handling VFORK and VFORK_DONE events in linux-low.c:handle_extended_wait and reporting them to GDB. * including VFORK and VFORK_DONE events in the predicate linux-low.c:extended_event_reported. * adding support for VFORK and VFORK_DONE events in RSP by adding stop reasons "vfork" and "vforkdone" to the 'T' Stop Reply Packet in both gdbserver/remote-utils.c and gdb/remote.c. Tested on x64 Ubuntu Lucid, native, remote, extended-remote. Thanks --Don gdb/doc/ 2015-02-25 Don Breazeal * gdb.texinfo (Stop Reply Packets): List new stop reasons "vfork" and "vforkdone". gdb/gdbserver/ 2015-02-25 Don Breazeal * linux-low.c (handle_extended_wait): Handle PTRACE_EVENT_FORK and PTRACE_EVENT_VFORK_DONE. (linux_low_enable_events): Prevent enablement of VFORK events if GDB has not requested them. (extended_event_reported): Add vfork and vfork-done to the list of extended events. (initialize_low): Enable PTRACE_EVENT_FORK and PTRACE_EVENT_VFORK_DONE. * remote-utils.c (prepare_resume_reply): New stop reasons "vfork" and "vforkdone" for RSP 'T' Stop Reply Packet. * server.h (report_vfork_events): Declare global variable. gdb/ 2015-02-25 Don Breazeal * NEWS: Add vfork and vforkdone to the announcements about fork event support and RSP support for fork events. * remote.c (remote_follow_fork): Add vfork event type to assert. (remote_parse_stop_reply): New stop reasons "vfork" and "vforkdone" for RSP 'T' Stop Reply Packet. --- gdb/NEWS | 11 +++++++---- gdb/doc/gdb.texinfo | 14 ++++++++++++++ gdb/gdbserver/linux-low.c | 30 +++++++++++++++++++++++++----- gdb/gdbserver/remote-utils.c | 17 +++++++++++++++-- gdb/gdbserver/server.h | 1 + gdb/remote.c | 26 ++++++++++++++++++++++++-- 6 files changed, 86 insertions(+), 13 deletions(-) diff --git a/gdb/NEWS b/gdb/NEWS index 00cca93..db62e35 100644 --- a/gdb/NEWS +++ b/gdb/NEWS @@ -64,8 +64,11 @@ Qbtrace-conf:bts:size Set the requested ring buffer size for branch tracing in BTS format. T Stop Reply Packet's reason - The T stop reply packet supports a new stop reason 'xfork', which - signifies that the specified inferior has executed a fork. + The T stop reply packet supports new stop reasons 'xfork', 'vfork', + and 'vforkdone'. The 'xfork' and 'vfork' reasons signify that the + specified inferior has executed a fork or vfork, respectively. The + 'vforkdone' reason signifies that the a vforked child process has + executed either an exec or exit. * The info record command now shows the recording format and the branch tracing configuration for the current thread when using @@ -81,8 +84,8 @@ T Stop Reply Packet's reason GDB's qSupported query. GDBserver extended-remote Linux targets now provides basic support - for fork events. This enables follow-fork-mode and detach-on-fork - for those targets with Linux kernels 2.5.60 and later. + for fork and vfork events. This enables follow-fork-mode and + detach-on-fork for those targets with Linux kernels 2.5.60 and later. *** Changes in GDB 7.9 diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo index 2276976..e23b49c 100644 --- a/gdb/doc/gdb.texinfo +++ b/gdb/doc/gdb.texinfo @@ -35190,6 +35190,20 @@ The packet indicates that @code{fork} was called, and @var{r} is the ptid of the new child process. This packet is only applicable to targets that support fork events. +@cindex vfork events, remote reply +@item vfork +The packet indicates that @code{vfork} was called, and @var{r} +is the ptid of the new child process. This packet is only +applicable to targets that support vfork events. + +@cindex vforkdone events, remote reply +@item vforkdone +The packet indicates that a child process created by a vfork +has either called @code{exec} or terminated, so that the +address spaces of the parent and child process are no longer +shared. The @var{r} part is ignored. This packet is only +applicable to targets that support vforkdone events. + @cindex replay log events, remote reply @item replaylog The packet indicates that the target cannot continue replaying diff --git a/gdb/gdbserver/linux-low.c b/gdb/gdbserver/linux-low.c index 9a50353..5f9f9d4 100644 --- a/gdb/gdbserver/linux-low.c +++ b/gdb/gdbserver/linux-low.c @@ -382,7 +382,8 @@ handle_extended_wait (struct lwp_info *event_child, int wstat) struct thread_info *event_thr = get_lwp_thread (event_child); struct lwp_info *new_lwp; - if ((event == PTRACE_EVENT_FORK) || (event == PTRACE_EVENT_CLONE)) + if ((event == PTRACE_EVENT_FORK) || (event == PTRACE_EVENT_VFORK) + || (event == PTRACE_EVENT_CLONE)) { ptid_t ptid; unsigned long new_pid; @@ -408,7 +409,7 @@ handle_extended_wait (struct lwp_info *event_child, int wstat) warning ("wait returned unexpected status 0x%x", status); } - if (event == PTRACE_EVENT_FORK) + if (event == PTRACE_EVENT_FORK || event == PTRACE_EVENT_VFORK) { struct process_info *parent_proc; struct process_info *child_proc; @@ -453,8 +454,13 @@ handle_extended_wait (struct lwp_info *event_child, int wstat) /* Save fork info in the parent thread. */ parent_lwp = get_thread_lwp (event_thr); - parent_lwp->waitstatus.kind = TARGET_WAITKIND_FORKED; + if (event == PTRACE_EVENT_FORK) + parent_lwp->waitstatus.kind = TARGET_WAITKIND_FORKED; + else if (event == PTRACE_EVENT_VFORK) + parent_lwp->waitstatus.kind = TARGET_WAITKIND_VFORKED; + parent_lwp->waitstatus.value.related_pid = ptid; + /* The status_pending field contains bits denoting the extended event, so when the pending event is handled, the handler will look at lwp->waitstatus. */ @@ -497,6 +503,14 @@ handle_extended_wait (struct lwp_info *event_child, int wstat) /* Don't report the event. */ return 1; } + else if (event == PTRACE_EVENT_VFORK_DONE) + { + struct lwp_info *parent_lwp; + + parent_lwp = get_thread_lwp (event_thr); + parent_lwp->waitstatus.kind = TARGET_WAITKIND_VFORK_DONE; + return 0; + } internal_error (__FILE__, __LINE__, _("unknown ptrace event %d"), event); } @@ -1846,6 +1860,8 @@ linux_low_enable_events (pid_t pid, int attached) { if (!report_fork_events) linux_ptrace_clear_flags (PTRACE_O_TRACEFORK); + if (!report_vfork_events) + linux_ptrace_clear_flags (PTRACE_O_TRACEVFORK); linux_enable_event_reporting (pid, attached); } @@ -2528,7 +2544,9 @@ extended_event_reported (const struct target_waitstatus *waitstatus) if (waitstatus == NULL) return 0; - return (waitstatus->kind == TARGET_WAITKIND_FORKED); + return (waitstatus->kind == TARGET_WAITKIND_FORKED + || waitstatus->kind == TARGET_WAITKIND_VFORKED + || waitstatus->kind == TARGET_WAITKIND_VFORK_DONE); } /* Wait for process, returns status. */ @@ -6355,6 +6373,8 @@ initialize_low (void) initialize_low_arch (); /* Enable extended ptrace events. */ - linux_ptrace_set_additional_flags (PTRACE_O_TRACEFORK); + linux_ptrace_set_additional_flags (PTRACE_O_TRACEFORK + | PTRACE_O_TRACEVFORK + | PTRACE_O_TRACEVFORKDONE); linux_check_ptrace_features (); } diff --git a/gdb/gdbserver/remote-utils.c b/gdb/gdbserver/remote-utils.c index 6191e58..56f4246 100644 --- a/gdb/gdbserver/remote-utils.c +++ b/gdb/gdbserver/remote-utils.c @@ -1115,15 +1115,19 @@ prepare_resume_reply (char *buf, ptid_t ptid, { case TARGET_WAITKIND_STOPPED: case TARGET_WAITKIND_FORKED: + case TARGET_WAITKIND_VFORKED: { struct thread_info *saved_thread; const char **regp; struct regcache *regcache; - if (status->kind == TARGET_WAITKIND_FORKED && report_fork_events) + if ((status->kind == TARGET_WAITKIND_FORKED && report_fork_events) + || (status->kind == TARGET_WAITKIND_VFORKED + && report_vfork_events)) { enum gdb_signal signal = GDB_SIGNAL_TRAP; - const char *event = "xfork"; + const char *event = (status->kind == TARGET_WAITKIND_FORKED + ? "xfork" : "vfork"); sprintf (buf, "T%02x%s:", signal, event); buf += strlen (buf); @@ -1235,6 +1239,15 @@ prepare_resume_reply (char *buf, ptid_t ptid, else sprintf (buf, "X%02x", status->value.sig); break; + case TARGET_WAITKIND_VFORK_DONE: + if (multi_process) + { + enum gdb_signal signal = GDB_SIGNAL_TRAP; + const char *event = "vforkdone"; + + sprintf (buf, "T%02x%s:;", signal, event); + } + break; default: error ("unhandled waitkind"); break; diff --git a/gdb/gdbserver/server.h b/gdb/gdbserver/server.h index ce6ffb9..5284dac 100644 --- a/gdb/gdbserver/server.h +++ b/gdb/gdbserver/server.h @@ -85,6 +85,7 @@ extern int disable_packet_qfThreadInfo; extern int run_once; extern int multi_process; extern int report_fork_events; +extern int report_vfork_events; extern int non_stop; extern int disable_randomization; diff --git a/gdb/remote.c b/gdb/remote.c index 3a6c6cb..13fd837 100644 --- a/gdb/remote.c +++ b/gdb/remote.c @@ -4496,15 +4496,20 @@ remote_follow_fork (struct target_ops *ops, int follow_child, { struct remote_state *rs = get_remote_state (); + /* If fork events aren't supported, then return. We know that if + fork events are supported, then so are vfork events, since they + were both introduced in the same version of the linux kernel. */ if (remote_fork_event_p (rs)) { if (detach_fork && !follow_child) { ptid_t parent_ptid; ptid_t child_ptid; + enum target_waitkind kind; - gdb_assert (inferior_thread ()->pending_follow.kind - == TARGET_WAITKIND_FORKED); + kind = inferior_thread ()->pending_follow.kind; + gdb_assert (kind == TARGET_WAITKIND_FORKED + || kind == TARGET_WAITKIND_VFORKED); /* remote_detach_1 detaches inferior_ptid, which is currently the ptid of the parent. Switch inferior_ptid to the ptid @@ -5667,6 +5672,23 @@ Packet: '%s'\n"), event->ws.value.related_pid = read_ptid (++p1, &p); event->ws.kind = TARGET_WAITKIND_FORKED; } + else if (strncmp (p, "vfork", p1 - p) == 0) + { + event->ws.value.related_pid = read_ptid (++p1, &p); + event->ws.kind = TARGET_WAITKIND_VFORKED; + } + else if (strncmp (p, "vforkdone", p1 - p) == 0) + { + char *p_temp; + + p1++; + p_temp = p1; + while (*p_temp && *p_temp != ';') + p_temp++; + + event->ws.kind = TARGET_WAITKIND_VFORK_DONE; + p = p_temp; + } else { ULONGEST pnum;