public inbox for gdb-patches@sourceware.org
 help / color / mirror / Atom feed
From: Simon Marchi <simark@simark.ca>
To: Tom de Vries <tdevries@suse.de>, gdb-patches@sourceware.org
Subject: Re: [PATCH] [gdb/server] Emit warning for SIGINT failure
Date: Sat, 26 Nov 2022 15:29:00 -0500	[thread overview]
Message-ID: <c4d26d60-5608-073d-aad8-e95d6ea90c6c@simark.ca> (raw)
In-Reply-To: <20221109203258.26431-1-tdevries@suse.de>



On 11/9/22 15:32, Tom de Vries via Gdb-patches wrote:
> Consider the executable from test-case gdb.base/interrupt-daemon.exp.
> 
> When starting it using gdbserver:
> ...
> $ ./build/gdbserver/gdbserver localhost:2345 \
>   ./outputs/gdb.base/interrupt-daemon/interrupt-daemon
> ...
> and connecting to it using gdb:
> ...
> $ gdb -q -ex "target remote localhost:2345" \
>     -ex "set follow-fork-mode child" \
>     -ex "break daemon_main" -ex cont
> ...
> we are setup to do the same as in the test-case: interrupt a running inferior
> using ^C.
> 
> So let's try:
> ...
> (gdb) continue
> Continuing.
> ^C
> ...
> After pressing ^C, nothing happens.  This a known problem, filed as
> PR remote/18772.
> 
> The problem is that in linux_process_target::request_interrupt, a kill is used
> to send a SIGINT, but it fails.  And it fails silently.
> 
> Make the failure verbose by adding a warning, such that the gdbserver output
> becomes more helpful:
> ...
> Process interrupt-daemon created; pid = 15068
> Listening on port 2345
> Remote debugging from host ::1, port 35148
> Detaching from process 15068
> Detaching from process 15085
> gdbserver: Sending SIGINT to process group of pid 15068 failed: \
>   No such process
> ...
> 
> Note that the failure can easily be reproduced using the test-case and target
> board native-gdbserver:
> ...
> (gdb) continue^M
> Continuing.^M
> PASS: gdb.base/interrupt-daemon.exp: fg: continue
> ^CFAIL: gdb.base/interrupt-daemon.exp: fg: ctrl-c stops process (timeout)
> ...
> as reported in PR server/23382.
> 
> Tested on x86_64-linux.
> ---
>  gdbserver/linux-low.cc | 5 ++++-
>  1 file changed, 4 insertions(+), 1 deletion(-)
> 
> diff --git a/gdbserver/linux-low.cc b/gdbserver/linux-low.cc
> index 0cbfeb99086..f4df02d3ac9 100644
> --- a/gdbserver/linux-low.cc
> +++ b/gdbserver/linux-low.cc
> @@ -5467,7 +5467,10 @@ linux_process_target::request_interrupt ()
>  {
>    /* Send a SIGINT to the process group.  This acts just like the user
>       typed a ^C on the controlling terminal.  */
> -  ::kill (-signal_pid, SIGINT);
> +  int res = ::kill (-signal_pid, SIGINT);
> +  if (res == -1)
> +    warning (_("Sending SIGINT to process group of pid %ld failed: %s"),
> +	     signal_pid, safe_strerror (errno));

I don't fully understand the issue about the separate process group and
all that (and I just have a few minutes so I won't dig into that right
now), but I don't see any downside to your patch.  Therefore:

Approved-By: Simon Marchi <simon.marchi@efficios.com>

On a tangential note, at first glance, this use of the signal_pid global
seems bogus.  If you run two inferiors, signal_pid will have the pid of
the second one.  Then, if you only resume the first one and press
ctrl-c, I guess we'll send a SIGINT to the second one, that is not
resumed, and then wait for it to report a stop, which won't happen?

Simon

  parent reply	other threads:[~2022-11-26 20:29 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-11-09 20:32 Tom de Vries
2022-11-26 13:34 ` [PING] " Tom de Vries
2022-11-26 20:29 ` Simon Marchi [this message]
2022-11-27  9:27   ` Tom de Vries

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=c4d26d60-5608-073d-aad8-e95d6ea90c6c@simark.ca \
    --to=simark@simark.ca \
    --cc=gdb-patches@sourceware.org \
    --cc=tdevries@suse.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).