public inbox for gdb-patches@sourceware.org
 help / color / mirror / Atom feed
* [Oleg Nesterov] PATCH? gdb remote.c: readchar() should pop_target() if SERIAL_ERROR?
@ 2010-07-09 19:57 Tom Tromey
  2010-07-12 18:11 ` Michael Snyder
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Tom Tromey @ 2010-07-09 19:57 UTC (permalink / raw)
  To: gdb-patches

[-- Attachment #1: Type: text/plain, Size: 313 bytes --]

I am forwarding this from the archer list because I think this report is
reasonably complete -- I couldn't really improve on it.

Please comment on this patch.  I don't know this area of gdb well.

If the enclosed has insufficient information, please contact me and I
will get whatever is needed.  Thanks.

Tom



[-- Attachment #2: Type: message/rfc822, Size: 3290 bytes --]

From: Oleg Nesterov <oleg@redhat.com>
To: Tom Tromey <tromey@redhat.com>, Roland McGrath <roland@redhat.com>, "Frank Ch. Eigler" <fche@redhat.com>
Cc: archer@sourceware.org
Subject: PATCH? gdb remote.c: readchar() should pop_target() if SERIAL_ERROR?
Date: Fri, 2 Jul 2010 03:13:02 +0200
Message-ID: <20100702011302.GA24599@redhat.com>

Hello.

I was trying to learn how gdb works with gdbserver and hit the bug.
The patch below seems to fix the problem for me but I am not sure
it is correct, I never looked into the (complex!) gdb sources before.

In short, sometimes gdb doing "target remote :tcp_port" refuses to
exit, putpkt_binary() complains that putpkt failed and longjmp()s
to the main loop. This happens sometimes if gdbserver dies.

	(gdb) q
	A debugging session is active.

		Inferior 1 [Remote target] will be killed.

	Quit anyway? (y or n) y
	putpkt: write failed: Broken pipe.
	(gdb)

Not sure my analysis is correct, but I think that readchar() needs
a fix. A read/recv from a socket doesn't necessarily returns EOF if
the peer has closed the socket. It can return sock->sk_err set by
the previous send if the peer dies and sets sk->sk_shutdown.

The patch merely adds pop_target(). The more sophisticates fix
should probably continue the reading, sock->sk_err was cleared and
the socket may have the packets which we could read.

Oleg.

--- gdb-7.1/gdb/remote.c~	2010-03-07 15:39:53.000000000 +0100
+++ gdb-7.1/gdb/remote.c	2010-07-02 02:38:09.000000000 +0200
@@ -6364,6 +6364,7 @@ readchar (int timeout)
       error (_("Remote connection closed"));
       /* no return */
     case SERIAL_ERROR:
+      pop_target ();
       perror_with_name (_("Remote communication error"));
       /* no return */
     case SERIAL_TIMEOUT:


^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2010-07-28 20:20 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-07-09 19:57 [Oleg Nesterov] PATCH? gdb remote.c: readchar() should pop_target() if SERIAL_ERROR? Tom Tromey
2010-07-12 18:11 ` Michael Snyder
2010-07-27 21:55 ` Michael Snyder
2010-07-28 17:28   ` Tom Tromey
2010-07-28 19:49 ` Pedro Alves
2010-07-28 20:20   ` Tom Tromey

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).