From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54826) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a3i9s-00082P-8v for qemu-devel@nongnu.org; Tue, 01 Dec 2015 05:27:45 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1a3i9r-0005GG-FP for qemu-devel@nongnu.org; Tue, 01 Dec 2015 05:27:40 -0500 Received: from mx1.redhat.com ([209.132.183.28]:33641) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a3i9r-0005GA-Ay for qemu-devel@nongnu.org; Tue, 01 Dec 2015 05:27:39 -0500 Received: from int-mx13.intmail.prod.int.phx2.redhat.com (int-mx13.intmail.prod.int.phx2.redhat.com [10.5.11.26]) by mx1.redhat.com (Postfix) with ESMTPS id 1BB0733E7F9 for ; Tue, 1 Dec 2015 10:27:39 +0000 (UTC) From: Paolo Bonzini Date: Tue, 1 Dec 2015 11:27:36 +0100 Message-Id: <1448965656-27220-1-git-send-email-pbonzini@redhat.com> Subject: [Qemu-devel] [PATCH for-2.5] qemu-char: retry g_poll on EINTR List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: armbru@redhat.com This is a case where pty_chr_update_read_handler_locked's lack of error checking can produce incorrect values. We are not using SIGUSR1 anymore, so this is quite theoretical, but easy to fix. Reported-by: Markus Armbruster Signed-off-by: Paolo Bonzini --- qemu-char.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/qemu-char.c b/qemu-char.c index 5448b0f..2969c44 100644 --- a/qemu-char.c +++ b/qemu-char.c @@ -1241,11 +1241,16 @@ static void pty_chr_update_read_handler_locked(CharDriverState *chr) { PtyCharDriver *s = chr->opaque; GPollFD pfd; + int rc; pfd.fd = g_io_channel_unix_get_fd(s->fd); pfd.events = G_IO_OUT; pfd.revents = 0; - g_poll(&pfd, 1, 0); + do { + rc = g_poll(&pfd, 1, 0); + } while (rc == -1 && errno == EINTR); + assert(rc >= 0); + if (pfd.revents & G_IO_HUP) { pty_chr_state(chr, 0); } else { -- 2.5.0