a3470f
From 123f052f7925074087e4393b22f68b9eb510936d Mon Sep 17 00:00:00 2001
a3470f
From: Sanju Rakonde <srakonde@redhat.com>
a3470f
Date: Tue, 17 Apr 2018 18:10:01 +0530
a3470f
Subject: [PATCH 284/305] glusterd: glusterd is releasing the locks before
a3470f
 timeout
a3470f
a3470f
Problem: We introduced lock timer in mgmt v3, which will realease
a3470f
the lock after 3 minutes from command execution. Some commands related
a3470f
to heal/profile will take more time to execute. For these comands
a3470f
timeout is set to 10 minutes. As the lock timer is set to 3 minutes
a3470f
glusterd is releasing the lock after 3 minutes. That means locks are
a3470f
released before the command is completed its execution.
a3470f
a3470f
Solution: Pass a timeout parameter from cli to glusterd, when there
a3470f
is a change in default timeout value(i.e, default timeout value can
a3470f
be changed through command line or for the commands related to profile/heal
a3470f
we will change the default timeout value to 10 minutes.) glusterd will
a3470f
set the lock timer timeout according to the timeout value passed.
a3470f
a3470f
>Change-Id: I7b7a9a4f95ed44aca39ef9d9907f546bca99c69d
a3470f
>fixes: bz#1577731
a3470f
>Signed-off-by: Sanju Rakonde <srakonde@redhat.com>
a3470f
a3470f
upstream patch: https://review.gluster.org/#/c/19890/
a3470f
a3470f
Change-Id: I7b7a9a4f95ed44aca39ef9d9907f546bca99c69d
a3470f
BUG: 1575557
a3470f
Signed-off-by: Sanju Rakonde <srakonde@redhat.com>
a3470f
Reviewed-on: https://code.engineering.redhat.com/gerrit/140025
a3470f
Tested-by: RHGS Build Bot <nigelb@redhat.com>
a3470f
Reviewed-by: Sunil Kumar Heggodu Gopala Acharya <sheggodu@redhat.com>
a3470f
---
a3470f
 cli/src/cli-rpc-ops.c                             | 22 ++++++++++++++++++++++
a3470f
 xlators/mgmt/glusterd/src/glusterd-handler.c      | 10 ++++++++++
a3470f
 xlators/mgmt/glusterd/src/glusterd-locks.c        |  2 ++
a3470f
 xlators/mgmt/glusterd/src/glusterd-mgmt-handler.c | 13 +++++++++++++
a3470f
 xlators/mgmt/glusterd/src/glusterd-mgmt.c         | 10 ++++++++++
a3470f
 xlators/mgmt/glusterd/src/glusterd-op-sm.c        | 14 ++++++++++++++
a3470f
 xlators/mgmt/glusterd/src/glusterd-syncop.c       |  9 +++++++++
a3470f
 7 files changed, 80 insertions(+)
a3470f
a3470f
diff --git a/cli/src/cli-rpc-ops.c b/cli/src/cli-rpc-ops.c
a3470f
index 1bb01e8..54b61ee65 100644
a3470f
--- a/cli/src/cli-rpc-ops.c
a3470f
+++ b/cli/src/cli-rpc-ops.c
a3470f
@@ -91,6 +91,9 @@ cli_to_glusterd (gf_cli_req *req, call_frame_t *frame, fop_cbk_fn_t cbkfn,
a3470f
                  xdrproc_t xdrproc, dict_t *dict, int procnum, xlator_t *this,
a3470f
                  rpc_clnt_prog_t *prog, struct iobref *iobref);
a3470f
 
a3470f
+int
a3470f
+add_cli_cmd_timeout_to_dict (dict_t *dict);
a3470f
+
a3470f
 rpc_clnt_prog_t cli_handshake_prog = {
a3470f
         .progname  = "cli handshake",
a3470f
         .prognum   = GLUSTER_HNDSK_PROGRAM,
a3470f
@@ -4131,6 +4134,8 @@ cli_quotad_getlimit (call_frame_t *frame, xlator_t *this, void *data)
a3470f
         }
a3470f
 
a3470f
         dict = data;
a3470f
+        ret = add_cli_cmd_timeout_to_dict (dict);
a3470f
+
a3470f
         ret = dict_allocate_and_serialize (dict, &req.dict.dict_val,
a3470f
                                            &req.dict.dict_len);
a3470f
         if (ret < 0) {
a3470f
@@ -11650,6 +11655,21 @@ out:
a3470f
 }
a3470f
 
a3470f
 int
a3470f
+add_cli_cmd_timeout_to_dict (dict_t *dict)
a3470f
+{
a3470f
+        int      ret     = 0;
a3470f
+
a3470f
+        if (cli_default_conn_timeout > 120) {
a3470f
+                ret = dict_set_uint32 (dict, "timeout", cli_default_conn_timeout);
a3470f
+                if (ret) {
a3470f
+                        gf_log ("cli", GF_LOG_INFO, "Failed to save"
a3470f
+                                "timeout to dict");
a3470f
+                }
a3470f
+        }
a3470f
+        return ret;
a3470f
+}
a3470f
+
a3470f
+int
a3470f
 cli_to_glusterd (gf_cli_req *req, call_frame_t *frame,
a3470f
                  fop_cbk_fn_t cbkfn, xdrproc_t xdrproc, dict_t *dict,
a3470f
                  int procnum, xlator_t *this, rpc_clnt_prog_t *prog,
a3470f
@@ -11703,6 +11723,8 @@ cli_to_glusterd (gf_cli_req *req, call_frame_t *frame,
a3470f
         if (ret)
a3470f
                 goto out;
a3470f
 
a3470f
+        ret = add_cli_cmd_timeout_to_dict (dict);
a3470f
+
a3470f
         ret = dict_allocate_and_serialize (dict, &(req->dict).dict_val,
a3470f
                                            &(req->dict).dict_len);
a3470f
 
a3470f
diff --git a/xlators/mgmt/glusterd/src/glusterd-handler.c b/xlators/mgmt/glusterd/src/glusterd-handler.c
a3470f
index 962c87e..c072b05 100644
a3470f
--- a/xlators/mgmt/glusterd/src/glusterd-handler.c
a3470f
+++ b/xlators/mgmt/glusterd/src/glusterd-handler.c
a3470f
@@ -718,6 +718,7 @@ glusterd_op_txn_begin (rpcsvc_request_t *req, glusterd_op_t op, void *ctx,
a3470f
         glusterd_op_info_t          txn_op_info     = {{0},};
a3470f
         glusterd_op_sm_event_type_t event_type      = GD_OP_EVENT_NONE;
a3470f
         uint32_t                    op_errno        = 0;
a3470f
+        uint32_t                    timeout          = 0;
a3470f
 
a3470f
         GF_ASSERT (req);
a3470f
         GF_ASSERT ((op > GD_OP_NONE) && (op < GD_OP_MAX));
a3470f
@@ -785,6 +786,15 @@ glusterd_op_txn_begin (rpcsvc_request_t *req, glusterd_op_t op, void *ctx,
a3470f
                                 goto out;
a3470f
                 }
a3470f
 
a3470f
+                /* Cli will add timeout key to dict if the default timeout is
a3470f
+                 * other than 2 minutes. Here we use this value to check whether
a3470f
+                 * mgmt_v3_lock_timeout should be set to default value or we
a3470f
+                 * need to change the value according to timeout value
a3470f
+                 * i.e, timeout + 120 seconds. */
a3470f
+                ret = dict_get_uint32 (dict, "timeout", &timeout);
a3470f
+                if (!ret)
a3470f
+                        priv->mgmt_v3_lock_timeout = timeout + 120;
a3470f
+
a3470f
                 ret = glusterd_mgmt_v3_lock (volname, MY_UUID, &op_errno,
a3470f
                                              "vol");
a3470f
                 if (ret) {
a3470f
diff --git a/xlators/mgmt/glusterd/src/glusterd-locks.c b/xlators/mgmt/glusterd/src/glusterd-locks.c
a3470f
index a19d688..831be20 100644
a3470f
--- a/xlators/mgmt/glusterd/src/glusterd-locks.c
a3470f
+++ b/xlators/mgmt/glusterd/src/glusterd-locks.c
a3470f
@@ -656,6 +656,8 @@ glusterd_mgmt_v3_lock (const char *name, uuid_t uuid, uint32_t *op_errno,
a3470f
         key_dup = gf_strdup (key);
a3470f
         delay.tv_sec = priv->mgmt_v3_lock_timeout;
a3470f
         delay.tv_nsec = 0;
a3470f
+        /*changing to default timeout value*/
a3470f
+        priv->mgmt_v3_lock_timeout = GF_LOCK_TIMER;
a3470f
 
a3470f
         ret = -1;
a3470f
         mgmt_lock_timer_xl = mgmt_lock_timer->xl;
a3470f
diff --git a/xlators/mgmt/glusterd/src/glusterd-mgmt-handler.c b/xlators/mgmt/glusterd/src/glusterd-mgmt-handler.c
a3470f
index 5b7f0fa..993f12a 100644
a3470f
--- a/xlators/mgmt/glusterd/src/glusterd-mgmt-handler.c
a3470f
+++ b/xlators/mgmt/glusterd/src/glusterd-mgmt-handler.c
a3470f
@@ -132,8 +132,12 @@ glusterd_handle_mgmt_v3_lock_fn (rpcsvc_request_t *req)
a3470f
         xlator_t               *this            = NULL;
a3470f
         gf_boolean_t            is_synctasked   = _gf_false;
a3470f
         gf_boolean_t            free_ctx        = _gf_false;
a3470f
+        glusterd_conf_t        *conf            = NULL;
a3470f
+        uint32_t                timeout         = 0;
a3470f
 
a3470f
         this = THIS;
a3470f
+        conf = this->private;
a3470f
+        GF_ASSERT (conf);
a3470f
         GF_ASSERT (this);
a3470f
         GF_ASSERT (req);
a3470f
 
a3470f
@@ -183,6 +187,15 @@ glusterd_handle_mgmt_v3_lock_fn (rpcsvc_request_t *req)
a3470f
                 goto out;
a3470f
         }
a3470f
 
a3470f
+        /* Cli will add timeout key to dict if the default timeout is
a3470f
+         * other than 2 minutes. Here we use this value to check whether
a3470f
+         * mgmt_v3_lock_timeout should be set to default value or we
a3470f
+         * need to change the value according to timeout value
a3470f
+         * i.e, timeout + 120 seconds. */
a3470f
+        ret = dict_get_uint32 (ctx->dict, "timeout", &timeout);
a3470f
+        if (!ret)
a3470f
+                conf->mgmt_v3_lock_timeout = timeout + 120;
a3470f
+
a3470f
         is_synctasked = dict_get_str_boolean (ctx->dict,
a3470f
                                               "is_synctasked", _gf_false);
a3470f
         if (is_synctasked) {
a3470f
diff --git a/xlators/mgmt/glusterd/src/glusterd-mgmt.c b/xlators/mgmt/glusterd/src/glusterd-mgmt.c
a3470f
index 8bc1f1b..d7da3c1 100644
a3470f
--- a/xlators/mgmt/glusterd/src/glusterd-mgmt.c
a3470f
+++ b/xlators/mgmt/glusterd/src/glusterd-mgmt.c
a3470f
@@ -693,6 +693,7 @@ glusterd_mgmt_v3_initiate_lockdown (glusterd_op_t op, dict_t *dict,
a3470f
         uuid_t               peer_uuid  = {0};
a3470f
         xlator_t            *this       = NULL;
a3470f
         glusterd_conf_t     *conf       = NULL;
a3470f
+        uint32_t             timeout    = 0;
a3470f
 
a3470f
         this = THIS;
a3470f
         GF_ASSERT (this);
a3470f
@@ -703,6 +704,15 @@ glusterd_mgmt_v3_initiate_lockdown (glusterd_op_t op, dict_t *dict,
a3470f
         GF_ASSERT (op_errstr);
a3470f
         GF_ASSERT (is_acquired);
a3470f
 
a3470f
+        /* Cli will add timeout key to dict if the default timeout is
a3470f
+         * other than 2 minutes. Here we use this value to check whether
a3470f
+         * mgmt_v3_lock_timeout should be set to default value or we
a3470f
+         * need to change the value according to timeout value
a3470f
+         * i.e, timeout + 120 seconds. */
a3470f
+        ret = dict_get_uint32 (dict, "timeout", &timeout);
a3470f
+        if (!ret)
a3470f
+                conf->mgmt_v3_lock_timeout = timeout + 120;
a3470f
+
a3470f
         /* Trying to acquire multiple mgmt_v3 locks on local node */
a3470f
         ret = glusterd_multiple_mgmt_v3_lock (dict, MY_UUID, op_errno);
a3470f
         if (ret) {
a3470f
diff --git a/xlators/mgmt/glusterd/src/glusterd-op-sm.c b/xlators/mgmt/glusterd/src/glusterd-op-sm.c
a3470f
index 7107a46..7e959a0 100644
a3470f
--- a/xlators/mgmt/glusterd/src/glusterd-op-sm.c
a3470f
+++ b/xlators/mgmt/glusterd/src/glusterd-op-sm.c
a3470f
@@ -4159,11 +4159,16 @@ glusterd_op_ac_lock (glusterd_op_sm_event_t *event, void *ctx)
a3470f
         glusterd_op_lock_ctx_t         *lock_ctx        = NULL;
a3470f
         xlator_t                       *this            = NULL;
a3470f
         uint32_t                        op_errno        = 0;
a3470f
+        glusterd_conf_t                *conf            = NULL;
a3470f
+        uint32_t                        timeout         = 0;
a3470f
 
a3470f
         GF_ASSERT (event);
a3470f
         GF_ASSERT (ctx);
a3470f
 
a3470f
         this = THIS;
a3470f
+        GF_ASSERT (this);
a3470f
+        conf = this->private;
a3470f
+        GF_ASSERT (conf);
a3470f
 
a3470f
         lock_ctx = (glusterd_op_lock_ctx_t *)ctx;
a3470f
 
a3470f
@@ -4174,6 +4179,15 @@ glusterd_op_ac_lock (glusterd_op_sm_event_t *event, void *ctx)
a3470f
                 ret = glusterd_lock (lock_ctx->uuid);
a3470f
                 glusterd_op_lock_send_resp (lock_ctx->req, ret);
a3470f
         } else {
a3470f
+                /* Cli will add timeout key to dict if the default timeout is
a3470f
+                 * other than 2 minutes. Here we use this value to check whether
a3470f
+                 * mgmt_v3_lock_timeout should be set to default value or we
a3470f
+                 * need to change the value according to timeout value
a3470f
+                 * i.e, timeout + 120 seconds. */
a3470f
+                ret = dict_get_uint32 (lock_ctx->dict, "timeout", &timeout);
a3470f
+                if (!ret)
a3470f
+                        conf->mgmt_v3_lock_timeout = timeout + 120;
a3470f
+
a3470f
                 ret = dict_get_str (lock_ctx->dict, "volname", &volname);
a3470f
                 if (ret)
a3470f
                         gf_msg (this->name, GF_LOG_ERROR, 0,
a3470f
diff --git a/xlators/mgmt/glusterd/src/glusterd-syncop.c b/xlators/mgmt/glusterd/src/glusterd-syncop.c
a3470f
index 066c7f9..5aaa7f8 100644
a3470f
--- a/xlators/mgmt/glusterd/src/glusterd-syncop.c
a3470f
+++ b/xlators/mgmt/glusterd/src/glusterd-syncop.c
a3470f
@@ -1818,6 +1818,7 @@ gd_sync_task_begin (dict_t *op_ctx, rpcsvc_request_t * req)
a3470f
         glusterd_op_info_t          txn_opinfo       = {{0},};
a3470f
         uint32_t                    op_errno         = 0;
a3470f
         gf_boolean_t                cluster_lock     = _gf_false;
a3470f
+        uint32_t                    timeout          = 0;
a3470f
 
a3470f
         this = THIS;
a3470f
         GF_ASSERT (this);
a3470f
@@ -1879,6 +1880,14 @@ gd_sync_task_begin (dict_t *op_ctx, rpcsvc_request_t * req)
a3470f
                         goto out;
a3470f
                 }
a3470f
         } else {
a3470f
+                /* Cli will add timeout key to dict if the default timeout is
a3470f
+                 * other than 2 minutes. Here we use this value to check whether
a3470f
+                 * mgmt_v3_lock_timeout should be set to default value or we
a3470f
+                 * need to change the value according to timeout value
a3470f
+                 * i.e, timeout + 120 seconds. */
a3470f
+                ret = dict_get_uint32 (op_ctx, "timeout", &timeout);
a3470f
+                if (!ret)
a3470f
+                        conf->mgmt_v3_lock_timeout = timeout + 120;
a3470f
 
a3470f
                 ret = dict_get_str (op_ctx, "globalname", &global);
a3470f
                 if (!ret) {
a3470f
-- 
a3470f
1.8.3.1
a3470f