]> granicus.if.org Git - postgresql/commitdiff
Treat clean shutdown of an SSL connection same as the non-SSL case.
authorHeikki Linnakangas <heikki.linnakangas@iki.fi>
Mon, 3 Jul 2017 11:51:51 +0000 (14:51 +0300)
committerHeikki Linnakangas <heikki.linnakangas@iki.fi>
Mon, 3 Jul 2017 11:53:12 +0000 (14:53 +0300)
If the client closes an SSL connection, treat it the same as EOF on a
non-SSL connection. In particular, don't write a message in the log about
that.

Michael Paquier.

Discussion: https://www.postgresql.org/message-id/CAB7nPqSfyVV42Q2acFo%3DvrvF2gxoZAMJLAPq3S3KkjhZAYi7aw@mail.gmail.com

src/backend/libpq/be-secure.c

index 58df6bec9c9316b6f340815e6abd47ddb9a53708..34e0043bd3afa8df0e2f6156657b85b830113493 100644 (file)
@@ -289,11 +289,13 @@ rloop:
                                ereport(COMMERROR,
                                                (errcode(ERRCODE_PROTOCOL_VIOLATION),
                                                 errmsg("SSL error: %s", SSLerrmessage(ecode))));
-                               /* fall through */
-                       case SSL_ERROR_ZERO_RETURN:
                                errno = ECONNRESET;
                                n = -1;
                                break;
+                       case SSL_ERROR_ZERO_RETURN:
+                               /* connection was cleanly shut down by peer */
+                               n = 0;
+                               break;
                        default:
                                ereport(COMMERROR,
                                                (errcode(ERRCODE_PROTOCOL_VIOLATION),
@@ -414,8 +416,14 @@ wloop:
                                ereport(COMMERROR,
                                                (errcode(ERRCODE_PROTOCOL_VIOLATION),
                                                 errmsg("SSL error: %s", SSLerrmessage(ecode))));
-                               /* fall through */
+                               errno = ECONNRESET;
+                               n = -1;
+                               break;
                        case SSL_ERROR_ZERO_RETURN:
+                               /*
+                                * the SSL connnection was closed, leave it to the caller
+                                * to ereport it
+                                */
                                errno = ECONNRESET;
                                n = -1;
                                break;