[29717] in CVS-changelog-for-Kerberos-V5

home help back first fref pref prev next nref lref last post

krb5 commit: Properly handle EOF condition on libkrad sockets

daemon@ATHENA.MIT.EDU (Greg Hudson)
Fri Sep 30 13:10:48 2016

Date: Fri, 30 Sep 2016 13:10:43 -0400
From: Greg Hudson <ghudson@mit.edu>
Message-Id: <201609301710.u8UHAhgG022792@drugstore.mit.edu>
To: cvs-krb5@mit.edu
Reply-To: krbdev@mit.edu
MIME-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: 7bit
Errors-To: cvs-krb5-bounces@mit.edu

https://github.com/krb5/krb5/commit/248497427d5a45225817b6c22e9224e8ad969872
commit 248497427d5a45225817b6c22e9224e8ad969872
Author: Nathaniel McCallum <npmccallum@redhat.com>
Date:   Fri Sep 30 10:03:33 2016 -0400

    Properly handle EOF condition on libkrad sockets
    
    In the previous code, when the remote peer performed an orderly shutdown
    on the socket, libkrad would enter a state in which all future requests
    timed out.  Instead, if the peer shuts down its socket, we need to
    attempt to reopen it.
    
    ticket: 8504 (new)
    target_version: 1.14-next
    tags: pullup

 src/lib/krad/remote.c |   13 ++++++-------
 1 files changed, 6 insertions(+), 7 deletions(-)

diff --git a/src/lib/krad/remote.c b/src/lib/krad/remote.c
index f6abc43..437f7e9 100644
--- a/src/lib/krad/remote.c
+++ b/src/lib/krad/remote.c
@@ -329,16 +329,15 @@ on_io_read(krad_remote *rr)
     /* Read the packet. */
     i = recv(verto_get_fd(rr->io), rr->buffer.data + rr->buffer.length,
              pktlen, 0);
-    if (i < 0) {
-        /* Should we try again? */
-        if (errno == EWOULDBLOCK || errno == EAGAIN || errno == EINTR)
-            return;
 
-        /* The socket is unrecoverable. */
+    /* On these errors, try again. */
+    if (i < 0 && (errno == EWOULDBLOCK || errno == EAGAIN || errno == EINTR))
+        return;
+
+    /* On any other errors or on EOF, the socket is unrecoverable. */
+    if (i <= 0) {
         remote_shutdown(rr);
         return;
-    } else if (i == 0) {
-        remote_del_flags(rr, FLAGS_READ);
     }
 
     /* If we have a partial read or just the header, try again. */
_______________________________________________
cvs-krb5 mailing list
cvs-krb5@mit.edu
https://mailman.mit.edu/mailman/listinfo/cvs-krb5

home help back first fref pref prev next nref lref last post