74b1de
From e3020e43344ddbc32e62e06bbbf88a4f5d7cdc82 Mon Sep 17 00:00:00 2001
74b1de
From: Mohit Agrawal <moagrawa@redhat.com>
74b1de
Date: Fri, 10 May 2019 11:13:45 +0530
74b1de
Subject: [PATCH 141/141] socket/ssl: fix crl handling
74b1de
74b1de
Problem:
74b1de
Just setting the path to the CRL directory in socket_init() wasn't working.
74b1de
74b1de
Solution:
74b1de
Need to use special API to retrieve and set X509_VERIFY_PARAM and set
74b1de
the CRL checking flags explicitly.
74b1de
Also, setting the CRL checking flags is a big pain, since the connection
74b1de
is declared as failed if any CRL isn't found in the designated file or
74b1de
directory. A comment has been added to the code appropriately.
74b1de
74b1de
> Change-Id: I8a8ed2ddaf4b5eb974387d2f7b1a85c1ca39fe79
74b1de
> fixes: bz#1687326
74b1de
> Signed-off-by: Milind Changire <mchangir@redhat.com>
74b1de
> (Cherry pick from commit 06fa261207f0f0625c52fa977b96e5875e9a91e0)
74b1de
> (Reviewed on upstream link https://review.gluster.org/#/c/glusterfs/+/22334/)
74b1de
74b1de
Change-Id: I0958e9890035fd376f1e1eafc1452caf3edd184b
74b1de
BUG: 1583585
74b1de
Signed-off-by: Mohit Agrawal <moagrawa@redhat.com>
74b1de
Reviewed-on: https://code.engineering.redhat.com/gerrit/166458
74b1de
Tested-by: RHGS Build Bot <nigelb@redhat.com>
74b1de
Reviewed-by: Sunil Kumar Heggodu Gopala Acharya <sheggodu@redhat.com>
74b1de
---
74b1de
 configure.ac                          |   2 +
74b1de
 rpc/rpc-transport/socket/src/socket.c | 110 ++++++++++++++++++++++++++++------
74b1de
 rpc/rpc-transport/socket/src/socket.h |   2 +
74b1de
 tests/features/ssl-ciphers.t          |  13 +++-
74b1de
 4 files changed, 107 insertions(+), 20 deletions(-)
74b1de
74b1de
diff --git a/configure.ac b/configure.ac
74b1de
index 3065077..0e11d4c 100644
74b1de
--- a/configure.ac
74b1de
+++ b/configure.ac
74b1de
@@ -491,6 +491,8 @@ AC_CHECK_HEADERS([openssl/dh.h])
74b1de
 
74b1de
 AC_CHECK_HEADERS([openssl/ecdh.h])
74b1de
 
74b1de
+AC_CHECK_LIB([ssl], [SSL_CTX_get0_param], [AC_DEFINE([HAVE_SSL_CTX_GET0_PARAM], [1], [define if found OpenSSL SSL_CTX_get0_param])])
74b1de
+
74b1de
 dnl Math library
74b1de
 AC_CHECK_LIB([m], [pow], [MATH_LIB='-lm'], [MATH_LIB=''])
74b1de
 AC_SUBST(MATH_LIB)
74b1de
diff --git a/rpc/rpc-transport/socket/src/socket.c b/rpc/rpc-transport/socket/src/socket.c
74b1de
index f6de1d3..bf2fa71 100644
74b1de
--- a/rpc/rpc-transport/socket/src/socket.c
74b1de
+++ b/rpc/rpc-transport/socket/src/socket.c
74b1de
@@ -308,8 +308,65 @@ out:
74b1de
 #define ssl_write_one(t, b, l)                                                 \
74b1de
     ssl_do((t), (b), (l), (SSL_trinary_func *)SSL_write)
74b1de
 
74b1de
+/* set crl verify flags only for server */
74b1de
+/* see man X509_VERIFY_PARAM_SET_FLAGS(3)
74b1de
+ * X509_V_FLAG_CRL_CHECK enables CRL checking for the certificate chain
74b1de
+ * leaf certificate. An error occurs if a suitable CRL cannot be found.
74b1de
+ * Since we're never going to revoke a gluster node cert, we better disable
74b1de
+ * CRL check for server certs to avoid getting error and failed connection
74b1de
+ * attempts.
74b1de
+ */
74b1de
+static void
74b1de
+ssl_clear_crl_verify_flags(SSL_CTX *ssl_ctx)
74b1de
+{
74b1de
+#ifdef X509_V_FLAG_CRL_CHECK_ALL
74b1de
+#ifdef HAVE_SSL_CTX_GET0_PARAM
74b1de
+    X509_VERIFY_PARAM *vpm;
74b1de
+
74b1de
+    vpm = SSL_CTX_get0_param(ssl_ctx);
74b1de
+    if (vpm) {
74b1de
+        X509_VERIFY_PARAM_clear_flags(
74b1de
+            vpm, (X509_V_FLAG_CRL_CHECK | X509_V_FLAG_CRL_CHECK_ALL));
74b1de
+    }
74b1de
+#else
74b1de
+    /* CRL verify flag need not be cleared for rhel6 kind of clients */
74b1de
+#endif
74b1de
+#else
74b1de
+    gf_log(this->name, GF_LOG_ERROR, "OpenSSL version does not support CRL");
74b1de
+#endif
74b1de
+    return;
74b1de
+}
74b1de
+
74b1de
+/* set crl verify flags only for server */
74b1de
+static void
74b1de
+ssl_set_crl_verify_flags(SSL_CTX *ssl_ctx)
74b1de
+{
74b1de
+#ifdef X509_V_FLAG_CRL_CHECK_ALL
74b1de
+#ifdef HAVE_SSL_CTX_GET0_PARAM
74b1de
+    X509_VERIFY_PARAM *vpm;
74b1de
+
74b1de
+    vpm = SSL_CTX_get0_param(ssl_ctx);
74b1de
+    if (vpm) {
74b1de
+        unsigned long flags;
74b1de
+
74b1de
+        flags = X509_VERIFY_PARAM_get_flags(vpm);
74b1de
+        flags |= (X509_V_FLAG_CRL_CHECK | X509_V_FLAG_CRL_CHECK_ALL);
74b1de
+        X509_VERIFY_PARAM_set_flags(vpm, flags);
74b1de
+    }
74b1de
+#else
74b1de
+    X509_STORE *x509store;
74b1de
+
74b1de
+    x509store = SSL_CTX_get_cert_store(ssl_ctx);
74b1de
+    X509_STORE_set_flags(x509store,
74b1de
+                         X509_V_FLAG_CRL_CHECK | X509_V_FLAG_CRL_CHECK_ALL);
74b1de
+#endif
74b1de
+#else
74b1de
+    gf_log(this->name, GF_LOG_ERROR, "OpenSSL version does not support CRL");
74b1de
+#endif
74b1de
+}
74b1de
+
74b1de
 int
74b1de
-ssl_setup_connection_prefix(rpc_transport_t *this)
74b1de
+ssl_setup_connection_prefix(rpc_transport_t *this, gf_boolean_t server)
74b1de
 {
74b1de
     int ret = -1;
74b1de
     socket_private_t *priv = NULL;
74b1de
@@ -332,6 +389,9 @@ ssl_setup_connection_prefix(rpc_transport_t *this)
74b1de
     priv->ssl_accepted = _gf_false;
74b1de
     priv->ssl_context_created = _gf_false;
74b1de
 
74b1de
+    if (!server && priv->crl_path)
74b1de
+        ssl_clear_crl_verify_flags(priv->ssl_ctx);
74b1de
+
74b1de
     priv->ssl_ssl = SSL_new(priv->ssl_ctx);
74b1de
     if (!priv->ssl_ssl) {
74b1de
         gf_log(this->name, GF_LOG_ERROR, "SSL_new failed");
74b1de
@@ -2664,7 +2724,7 @@ ssl_handle_server_connection_attempt(rpc_transport_t *this)
74b1de
     fd = priv->sock;
74b1de
 
74b1de
     if (!priv->ssl_context_created) {
74b1de
-        ret = ssl_setup_connection_prefix(this);
74b1de
+        ret = ssl_setup_connection_prefix(this, _gf_true);
74b1de
         if (ret < 0) {
74b1de
             gf_log(this->name, GF_LOG_TRACE,
74b1de
                    "> ssl_setup_connection_prefix() failed!");
74b1de
@@ -2718,7 +2778,7 @@ ssl_handle_client_connection_attempt(rpc_transport_t *this)
74b1de
         ret = -1;
74b1de
     } else {
74b1de
         if (!priv->ssl_context_created) {
74b1de
-            ret = ssl_setup_connection_prefix(this);
74b1de
+            ret = ssl_setup_connection_prefix(this, _gf_false);
74b1de
             if (ret < 0) {
74b1de
                 gf_log(this->name, GF_LOG_TRACE,
74b1de
                        "> ssl_setup_connection_prefix() "
74b1de
@@ -3085,7 +3145,30 @@ socket_server_event_handler(int fd, int idx, int gen, void *data, int poll_in,
74b1de
         gf_log(this->name, GF_LOG_TRACE, "XXX server:%s, client:%s",
74b1de
                new_trans->myinfo.identifier, new_trans->peerinfo.identifier);
74b1de
 
74b1de
+        /* Make options available to local socket_init() to create new
74b1de
+         * SSL_CTX per transport. A separate SSL_CTX per transport is
74b1de
+         * required to avoid setting crl checking options for client
74b1de
+         * connections. The verification options eventually get copied
74b1de
+         * to the SSL object. Unfortunately, there's no way to identify
74b1de
+         * whether socket_init() is being called after a client-side
74b1de
+         * connect() or a server-side accept(). Although, we could pass
74b1de
+         * a flag from the transport init() to the socket_init() and
74b1de
+         * from this place, this doesn't identify the case where the
74b1de
+         * server-side transport loading is done for the first time.
74b1de
+         * Also, SSL doesn't apply for UNIX sockets.
74b1de
+         */
74b1de
+        if (new_sockaddr.ss_family != AF_UNIX)
74b1de
+            new_trans->options = dict_ref(this->options);
74b1de
+        new_trans->ctx = this->ctx;
74b1de
+
74b1de
         ret = socket_init(new_trans);
74b1de
+
74b1de
+        /* reset options to NULL to avoid double free */
74b1de
+        if (new_sockaddr.ss_family != AF_UNIX) {
74b1de
+            dict_unref(new_trans->options);
74b1de
+            new_trans->options = NULL;
74b1de
+        }
74b1de
+
74b1de
         if (ret != 0) {
74b1de
             gf_log(this->name, GF_LOG_WARNING,
74b1de
                    "initialization of new_trans "
74b1de
@@ -4150,7 +4233,6 @@ ssl_setup_connection_params(rpc_transport_t *this)
74b1de
     char *cipher_list = DEFAULT_CIPHER_LIST;
74b1de
     char *dh_param = DEFAULT_DH_PARAM;
74b1de
     char *ec_curve = DEFAULT_EC_CURVE;
74b1de
-    char *crl_path = NULL;
74b1de
 
74b1de
     priv = this->private;
74b1de
 
74b1de
@@ -4192,6 +4274,7 @@ ssl_setup_connection_params(rpc_transport_t *this)
74b1de
     }
74b1de
     priv->ssl_ca_list = gf_strdup(priv->ssl_ca_list);
74b1de
 
74b1de
+    optstr = NULL;
74b1de
     if (dict_get_str(this->options, SSL_CRL_PATH_OPT, &optstr) == 0) {
74b1de
         if (!priv->ssl_enabled) {
74b1de
             gf_log(this->name, GF_LOG_WARNING,
74b1de
@@ -4199,9 +4282,9 @@ ssl_setup_connection_params(rpc_transport_t *this)
74b1de
                    SSL_ENABLED_OPT);
74b1de
         }
74b1de
         if (strcasecmp(optstr, "NULL") == 0)
74b1de
-            crl_path = NULL;
74b1de
+            priv->crl_path = NULL;
74b1de
         else
74b1de
-            crl_path = optstr;
74b1de
+            priv->crl_path = gf_strdup(optstr);
74b1de
     }
74b1de
 
74b1de
     gf_log(this->name, priv->ssl_enabled ? GF_LOG_INFO : GF_LOG_DEBUG,
74b1de
@@ -4343,24 +4426,15 @@ ssl_setup_connection_params(rpc_transport_t *this)
74b1de
         }
74b1de
 
74b1de
         if (!SSL_CTX_load_verify_locations(priv->ssl_ctx, priv->ssl_ca_list,
74b1de
-                                           crl_path)) {
74b1de
+                                           priv->crl_path)) {
74b1de
             gf_log(this->name, GF_LOG_ERROR, "could not load CA list");
74b1de
             goto err;
74b1de
         }
74b1de
 
74b1de
         SSL_CTX_set_verify_depth(priv->ssl_ctx, cert_depth);
74b1de
 
74b1de
-        if (crl_path) {
74b1de
-#ifdef X509_V_FLAG_CRL_CHECK_ALL
74b1de
-            X509_STORE *x509store;
74b1de
-
74b1de
-            x509store = SSL_CTX_get_cert_store(priv->ssl_ctx);
74b1de
-            X509_STORE_set_flags(
74b1de
-                x509store, X509_V_FLAG_CRL_CHECK | X509_V_FLAG_CRL_CHECK_ALL);
74b1de
-#else
74b1de
-            gf_log(this->name, GF_LOG_ERROR,
74b1de
-                   "OpenSSL version does not support CRL");
74b1de
-#endif
74b1de
+        if (priv->crl_path) {
74b1de
+            ssl_set_crl_verify_flags(priv->ssl_ctx);
74b1de
         }
74b1de
 
74b1de
         priv->ssl_session_id = session_id++;
74b1de
diff --git a/rpc/rpc-transport/socket/src/socket.h b/rpc/rpc-transport/socket/src/socket.h
74b1de
index e1ccae2..e7c0090 100644
74b1de
--- a/rpc/rpc-transport/socket/src/socket.h
74b1de
+++ b/rpc/rpc-transport/socket/src/socket.h
74b1de
@@ -14,6 +14,7 @@
74b1de
 #include <openssl/ssl.h>
74b1de
 #include <openssl/err.h>
74b1de
 #include <openssl/x509v3.h>
74b1de
+#include <openssl/x509_vfy.h>
74b1de
 #ifdef HAVE_OPENSSL_DH_H
74b1de
 #include <openssl/dh.h>
74b1de
 #endif
74b1de
@@ -246,6 +247,7 @@ typedef struct {
74b1de
     char *ssl_own_cert;
74b1de
     char *ssl_private_key;
74b1de
     char *ssl_ca_list;
74b1de
+    char *crl_path;
74b1de
     int pipe[2];
74b1de
     struct gf_sock_incoming incoming;
74b1de
     /* -1 = not connected. 0 = in progress. 1 = connected */
74b1de
diff --git a/tests/features/ssl-ciphers.t b/tests/features/ssl-ciphers.t
74b1de
index 563d37c..7e1e199 100644
74b1de
--- a/tests/features/ssl-ciphers.t
74b1de
+++ b/tests/features/ssl-ciphers.t
74b1de
@@ -175,8 +175,6 @@ BRICK_PORT=`brick_port $V0`
74b1de
 EXPECT "Y" openssl_connect -cipher EECDH -connect $H0:$BRICK_PORT
74b1de
 
74b1de
 # test revocation
74b1de
-# no need to restart the volume since the options are used
74b1de
-# by the client here.
74b1de
 TEST $CLI volume set $V0 ssl.crl-path $TMPDIR
74b1de
 EXPECT $TMPDIR volume_option $V0 ssl.crl-path
74b1de
 $GFS --volfile-id=$V0 --volfile-server=$H0 $M0
74b1de
@@ -189,14 +187,25 @@ TEST openssl ca -batch -config $SSL_CFG -revoke $SSL_CERT 2>&1
74b1de
 TEST openssl ca -config $SSL_CFG -gencrl -out $SSL_CRL 2>&1
74b1de
 
74b1de
 # Failed once revoked
74b1de
+# Although client fails to mount without restarting the server after crl-path
74b1de
+# is set when no actual crl file is found on the client, it would also fail
74b1de
+# when server is restarted for the same reason. Since the socket initialization
74b1de
+# code is the same for client and server, the crl verification flags need to
74b1de
+# be turned off for the client to avoid SSL searching for CRLs in the
74b1de
+# ssl.crl-path. If no CRL files are found in the ssl.crl-path, SSL fails the
74b1de
+# connect() attempt on the client.
74b1de
+TEST $CLI volume stop $V0
74b1de
+TEST $CLI volume start $V0
74b1de
 $GFS --volfile-id=$V0 --volfile-server=$H0 $M0
74b1de
 EXPECT "N" wait_mount $M0
74b1de
 TEST ! test -f $TEST_FILE
74b1de
 EXPECT_WITHIN $UMOUNT_TIMEOUT "Y" force_umount $M0
74b1de
 
74b1de
 # Succeed with CRL disabled
74b1de
+TEST $CLI volume stop $V0
74b1de
 TEST $CLI volume set $V0 ssl.crl-path NULL
74b1de
 EXPECT NULL volume_option $V0 ssl.crl-path
74b1de
+TEST $CLI volume start $V0
74b1de
 $GFS --volfile-id=$V0 --volfile-server=$H0 $M0
74b1de
 EXPECT "Y" wait_mount $M0
74b1de
 TEST test -f $TEST_FILE
74b1de
-- 
74b1de
1.8.3.1
74b1de