14f8ab
From feeee9a35c1219b2077ea07b6fd80976960bd181 Mon Sep 17 00:00:00 2001
14f8ab
From: Mohammed Rafi KC <rkavunga@redhat.com>
14f8ab
Date: Thu, 11 Jul 2019 12:44:42 +0530
14f8ab
Subject: [PATCH 234/255] Revert "glusterd/shd: Change shd logfile to a unique
14f8ab
 name"
14f8ab
14f8ab
This reverts commit 541e1400ecaec5fea0f56e8ca18f00c229906d8a.
14f8ab
14f8ab
BUG: 1471742
14f8ab
Change-Id: I7e0371d77db6897981f7364c04d4b9b523b865ba
14f8ab
Signed-off-by: Mohammed Rafi KC <rkavunga@redhat.com>
14f8ab
Reviewed-on: https://code.engineering.redhat.com/gerrit/175943
14f8ab
Tested-by: RHGS Build Bot <nigelb@redhat.com>
14f8ab
Reviewed-by: Sunil Kumar Heggodu Gopala Acharya <sheggodu@redhat.com>
14f8ab
---
14f8ab
 .../mgmt/glusterd/src/glusterd-shd-svc-helper.c    | 12 ++++++++
14f8ab
 .../mgmt/glusterd/src/glusterd-shd-svc-helper.h    |  6 ++++
14f8ab
 xlators/mgmt/glusterd/src/glusterd-shd-svc.c       | 14 ++++-----
14f8ab
 xlators/mgmt/glusterd/src/glusterd-svc-helper.c    | 34 +++++-----------------
14f8ab
 xlators/mgmt/glusterd/src/glusterd-svc-mgmt.c      |  4 +--
14f8ab
 xlators/mgmt/glusterd/src/glusterd-svc-mgmt.h      |  4 ---
14f8ab
 6 files changed, 34 insertions(+), 40 deletions(-)
14f8ab
14f8ab
diff --git a/xlators/mgmt/glusterd/src/glusterd-shd-svc-helper.c b/xlators/mgmt/glusterd/src/glusterd-shd-svc-helper.c
14f8ab
index 57ceda9..9196758 100644
14f8ab
--- a/xlators/mgmt/glusterd/src/glusterd-shd-svc-helper.c
14f8ab
+++ b/xlators/mgmt/glusterd/src/glusterd-shd-svc-helper.c
14f8ab
@@ -75,6 +75,18 @@ glusterd_svc_build_shd_volfile_path(glusterd_volinfo_t *volinfo, char *path,
14f8ab
 }
14f8ab
 
14f8ab
 void
14f8ab
+glusterd_svc_build_shd_logdir(char *logdir, char *volname, size_t len)
14f8ab
+{
14f8ab
+    snprintf(logdir, len, "%s/shd/%s", DEFAULT_LOG_FILE_DIRECTORY, volname);
14f8ab
+}
14f8ab
+
14f8ab
+void
14f8ab
+glusterd_svc_build_shd_logfile(char *logfile, char *logdir, size_t len)
14f8ab
+{
14f8ab
+    snprintf(logfile, len, "%s/shd.log", logdir);
14f8ab
+}
14f8ab
+
14f8ab
+void
14f8ab
 glusterd_shd_svcproc_cleanup(glusterd_shdsvc_t *shd)
14f8ab
 {
14f8ab
     glusterd_svc_proc_t *svc_proc = NULL;
14f8ab
diff --git a/xlators/mgmt/glusterd/src/glusterd-shd-svc-helper.h b/xlators/mgmt/glusterd/src/glusterd-shd-svc-helper.h
14f8ab
index 59466ec..c70702c 100644
14f8ab
--- a/xlators/mgmt/glusterd/src/glusterd-shd-svc-helper.h
14f8ab
+++ b/xlators/mgmt/glusterd/src/glusterd-shd-svc-helper.h
14f8ab
@@ -27,6 +27,12 @@ glusterd_svc_build_shd_volfile_path(glusterd_volinfo_t *volinfo, char *path,
14f8ab
                                     int path_len);
14f8ab
 
14f8ab
 void
14f8ab
+glusterd_svc_build_shd_logdir(char *logdir, char *volname, size_t len);
14f8ab
+
14f8ab
+void
14f8ab
+glusterd_svc_build_shd_logfile(char *logfile, char *logdir, size_t len);
14f8ab
+
14f8ab
+void
14f8ab
 glusterd_shd_svcproc_cleanup(glusterd_shdsvc_t *shd);
14f8ab
 
14f8ab
 int
14f8ab
diff --git a/xlators/mgmt/glusterd/src/glusterd-shd-svc.c b/xlators/mgmt/glusterd/src/glusterd-shd-svc.c
14f8ab
index 8ad90a9..dbe2560 100644
14f8ab
--- a/xlators/mgmt/glusterd/src/glusterd-shd-svc.c
14f8ab
+++ b/xlators/mgmt/glusterd/src/glusterd-shd-svc.c
14f8ab
@@ -90,8 +90,8 @@ glusterd_shdsvc_init(void *data, glusterd_conn_t *mux_conn,
14f8ab
     GLUSTERD_GET_SHD_RUNDIR(rundir, volinfo, priv);
14f8ab
     glusterd_svc_create_rundir(rundir);
14f8ab
 
14f8ab
-    glusterd_svc_build_logfile_path(shd_svc_name, DEFAULT_LOG_FILE_DIRECTORY,
14f8ab
-                                    logfile, sizeof(logfile));
14f8ab
+    glusterd_svc_build_shd_logdir(logdir, volinfo->volname, sizeof(logdir));
14f8ab
+    glusterd_svc_build_shd_logfile(logfile, logdir, sizeof(logfile));
14f8ab
 
14f8ab
     /* Initialize the connection mgmt */
14f8ab
     if (mux_conn && mux_svc->rpc) {
14f8ab
@@ -104,7 +104,7 @@ glusterd_shdsvc_init(void *data, glusterd_conn_t *mux_conn,
14f8ab
         if (ret < 0)
14f8ab
             goto out;
14f8ab
     } else {
14f8ab
-        ret = mkdir_p(DEFAULT_LOG_FILE_DIRECTORY, 0755, _gf_true);
14f8ab
+        ret = mkdir_p(logdir, 0755, _gf_true);
14f8ab
         if ((ret == -1) && (EEXIST != errno)) {
14f8ab
             gf_msg(this->name, GF_LOG_ERROR, errno, GD_MSG_CREATE_DIR_FAILED,
14f8ab
                    "Unable to create logdir %s", logdir);
14f8ab
@@ -460,7 +460,6 @@ glusterd_shdsvc_start(glusterd_svc_t *svc, int flags)
14f8ab
         return -1;
14f8ab
 
14f8ab
     glusterd_volinfo_ref(volinfo);
14f8ab
-
14f8ab
     if (!svc->inited) {
14f8ab
         ret = glusterd_shd_svc_mux_init(volinfo, svc);
14f8ab
         if (ret)
14f8ab
@@ -472,11 +471,12 @@ glusterd_shdsvc_start(glusterd_svc_t *svc, int flags)
14f8ab
         /* Unref will happen from glusterd_svc_attach_cbk */
14f8ab
         ret = glusterd_attach_svc(svc, volinfo, flags);
14f8ab
         if (ret) {
14f8ab
+            glusterd_volinfo_unref(volinfo);
14f8ab
             gf_msg("glusterd", GF_LOG_ERROR, 0, GD_MSG_VOLINFO_GET_FAIL,
14f8ab
-                   "Failed to attach shd svc(volume=%s) to pid=%d",
14f8ab
+                   "Failed to attach shd svc(volume=%s) to pid=%d. Starting"
14f8ab
+                   "a new process",
14f8ab
                    volinfo->volname, glusterd_proc_get_pid(&svc->proc));
14f8ab
-            glusterd_shd_svcproc_cleanup(&volinfo->shd);
14f8ab
-            glusterd_volinfo_unref(volinfo);
14f8ab
+            ret = glusterd_recover_shd_attach_failure(volinfo, svc, flags);
14f8ab
         }
14f8ab
         goto out;
14f8ab
     }
14f8ab
diff --git a/xlators/mgmt/glusterd/src/glusterd-svc-helper.c b/xlators/mgmt/glusterd/src/glusterd-svc-helper.c
14f8ab
index 400826f..a6e662f 100644
14f8ab
--- a/xlators/mgmt/glusterd/src/glusterd-svc-helper.c
14f8ab
+++ b/xlators/mgmt/glusterd/src/glusterd-svc-helper.c
14f8ab
@@ -469,9 +469,6 @@ glusterd_shd_svc_mux_init(glusterd_volinfo_t *volinfo, glusterd_svc_t *svc)
14f8ab
     glusterd_conf_t *conf = NULL;
14f8ab
     glusterd_svc_t *parent_svc = NULL;
14f8ab
     int pid = -1;
14f8ab
-    char pidfile[PATH_MAX] = {
14f8ab
-        0,
14f8ab
-    };
14f8ab
 
14f8ab
     GF_VALIDATE_OR_GOTO("glusterd", svc, out);
14f8ab
     GF_VALIDATE_OR_GOTO("glusterd", volinfo, out);
14f8ab
@@ -481,26 +478,8 @@ glusterd_shd_svc_mux_init(glusterd_volinfo_t *volinfo, glusterd_svc_t *svc)
14f8ab
 
14f8ab
     pthread_mutex_lock(&conf->attach_lock);
14f8ab
     {
14f8ab
-        if (svc->inited && !glusterd_proc_is_running(&(svc->proc))) {
14f8ab
-            /* This is the case when shd process was abnormally killed */
14f8ab
-            pthread_mutex_unlock(&conf->attach_lock);
14f8ab
-            glusterd_shd_svcproc_cleanup(&volinfo->shd);
14f8ab
-            pthread_mutex_lock(&conf->attach_lock);
14f8ab
-        }
14f8ab
-
14f8ab
         if (!svc->inited) {
14f8ab
-            glusterd_svc_build_shd_pidfile(volinfo, pidfile, sizeof(pidfile));
14f8ab
-            ret = snprintf(svc->proc.name, sizeof(svc->proc.name), "%s",
14f8ab
-                           "glustershd");
14f8ab
-            if (ret < 0)
14f8ab
-                goto unlock;
14f8ab
-
14f8ab
-            ret = snprintf(svc->proc.pidfile, sizeof(svc->proc.pidfile), "%s",
14f8ab
-                           pidfile);
14f8ab
-            if (ret < 0)
14f8ab
-                goto unlock;
14f8ab
-
14f8ab
-            if (gf_is_service_running(pidfile, &pid)) {
14f8ab
+            if (gf_is_service_running(svc->proc.pidfile, &pid)) {
14f8ab
                 /* Just connect is required, but we don't know what happens
14f8ab
                  * during the disconnect. So better to reattach.
14f8ab
                  */
14f8ab
@@ -508,10 +487,10 @@ glusterd_shd_svc_mux_init(glusterd_volinfo_t *volinfo, glusterd_svc_t *svc)
14f8ab
             }
14f8ab
 
14f8ab
             if (!mux_proc) {
14f8ab
-                if (pid != -1 && sys_access(pidfile, R_OK) == 0) {
14f8ab
+                if (pid != -1 && sys_access(svc->proc.pidfile, R_OK) == 0) {
14f8ab
                     /* stale pid file, stop and unlink it */
14f8ab
                     glusterd_proc_stop(&svc->proc, SIGTERM, PROC_STOP_FORCE);
14f8ab
-                    glusterd_unlink_file(pidfile);
14f8ab
+                    glusterd_unlink_file(svc->proc.pidfile);
14f8ab
                 }
14f8ab
                 mux_proc = __gf_find_compatible_svc(GD_NODE_SHD);
14f8ab
             }
14f8ab
@@ -705,10 +684,11 @@ glusterd_svc_attach_cbk(struct rpc_req *req, struct iovec *iov, int count,
14f8ab
                volinfo->volname, glusterd_proc_get_pid(&svc->proc));
14f8ab
     } else {
14f8ab
         gf_msg(this->name, GF_LOG_ERROR, 0, GD_MSG_SVC_ATTACH_FAIL,
14f8ab
-               "svc %s of volume %s failed to attach to pid %d", svc->name,
14f8ab
-               volinfo->volname, glusterd_proc_get_pid(&svc->proc));
14f8ab
+               "svc %s of volume %s failed to "
14f8ab
+               "attach to pid %d. Starting a new process",
14f8ab
+               svc->name, volinfo->volname, glusterd_proc_get_pid(&svc->proc));
14f8ab
         if (!strcmp(svc->name, "glustershd")) {
14f8ab
-            glusterd_shd_svcproc_cleanup(&volinfo->shd);
14f8ab
+            glusterd_recover_shd_attach_failure(volinfo, svc, *flag);
14f8ab
         }
14f8ab
     }
14f8ab
 out:
14f8ab
diff --git a/xlators/mgmt/glusterd/src/glusterd-svc-mgmt.c b/xlators/mgmt/glusterd/src/glusterd-svc-mgmt.c
14f8ab
index fa316a6..f32dafc 100644
14f8ab
--- a/xlators/mgmt/glusterd/src/glusterd-svc-mgmt.c
14f8ab
+++ b/xlators/mgmt/glusterd/src/glusterd-svc-mgmt.c
14f8ab
@@ -33,14 +33,14 @@ glusterd_svc_create_rundir(char *rundir)
14f8ab
     return ret;
14f8ab
 }
14f8ab
 
14f8ab
-void
14f8ab
+static void
14f8ab
 glusterd_svc_build_logfile_path(char *server, char *logdir, char *logfile,
14f8ab
                                 size_t len)
14f8ab
 {
14f8ab
     snprintf(logfile, len, "%s/%s.log", logdir, server);
14f8ab
 }
14f8ab
 
14f8ab
-void
14f8ab
+static void
14f8ab
 glusterd_svc_build_volfileid_path(char *server, char *volfileid, size_t len)
14f8ab
 {
14f8ab
     snprintf(volfileid, len, "gluster/%s", server);
14f8ab
diff --git a/xlators/mgmt/glusterd/src/glusterd-svc-mgmt.h b/xlators/mgmt/glusterd/src/glusterd-svc-mgmt.h
14f8ab
index 5a5466a..fbc5225 100644
14f8ab
--- a/xlators/mgmt/glusterd/src/glusterd-svc-mgmt.h
14f8ab
+++ b/xlators/mgmt/glusterd/src/glusterd-svc-mgmt.h
14f8ab
@@ -74,10 +74,6 @@ glusterd_svc_build_volfile_path(char *server, char *workdir, char *volfile,
14f8ab
                                 size_t len);
14f8ab
 
14f8ab
 void
14f8ab
-glusterd_svc_build_logfile_path(char *server, char *logdir, char *logfile,
14f8ab
-                                size_t len);
14f8ab
-
14f8ab
-void
14f8ab
 glusterd_svc_build_svcdir(char *server, char *workdir, char *path, size_t len);
14f8ab
 
14f8ab
 void
14f8ab
-- 
14f8ab
1.8.3.1
14f8ab