summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLalatendu Mohanty <lmohanty@redhat.com>2014-10-28 17:27:25 +0530
committerNiels de Vos <ndevos@redhat.com>2014-10-28 09:33:48 -0700
commitd8c40d37a5850bf1021288c91d75a66c494c9c98 (patch)
treec3ab0e9f5778415994880511bd37b16ab0057396
parent027d38cf6ba838cd015886207d3c265ef6446757 (diff)
Posix: Brick failure detection fix for ext4 filesystem
Issue: stat() on XFS has a check for the filesystem status but ext4 does not. Fix: Replacing stat() call with open, write and read to a new file under the "brick/.glusterfs" directory. This change will work for xfs, ext4 and other fileystems. Change-Id: Id03c4bc07df4ee22916a293442bd74819b051839 BUG: 1130204 "Signed-off-by: Lalatendu Mohanty <lmohanty@redhat.com>" "Reviewed-on: http://review.gluster.org/8213" "Reviewed-by: Niels de Vos <ndevos@redhat.com>" "Tested-by: Gluster Build System <jenkins@build.gluster.com>" (cherry picked from commit a7ef6eea4d43afdba9d0453c095e71e6bf22cdb7) Signed-off-by: Lalatendu Mohanty <lmohanty@redhat.com> Reviewed-on: http://review.gluster.org/8989 Tested-by: Gluster Build System <jenkins@build.gluster.com> Reviewed-by: Niels de Vos <ndevos@redhat.com>
-rw-r--r--xlators/storage/posix/src/posix-helpers.c70
1 files changed, 64 insertions, 6 deletions
diff --git a/xlators/storage/posix/src/posix-helpers.c b/xlators/storage/posix/src/posix-helpers.c
index 7474a609524..db6e50be3e0 100644
--- a/xlators/storage/posix/src/posix-helpers.c
+++ b/xlators/storage/posix/src/posix-helpers.c
@@ -1347,6 +1347,65 @@ posix_fd_ctx_get (fd_t *fd, xlator_t *this, struct posix_fd **pfd)
return ret;
}
+int
+posix_fs_health_check (xlator_t *this)
+{
+ struct posix_private *priv = NULL;
+ int ret = -1;
+ char *subvol_path = NULL;
+ char timestamp[256] = {0,};
+ int fd = -1;
+ int timelen = -1;
+ int nofbytes = 0;
+ time_t time_sec = {0,};
+ char buff[64] = {0};
+ char file_path[PATH_MAX] = {0};
+
+ GF_VALIDATE_OR_GOTO (this->name, this, out);
+ priv = this->private;
+ GF_VALIDATE_OR_GOTO ("posix-helpers", priv, out);
+
+ subvol_path = priv->base_path;
+ snprintf (file_path, sizeof (file_path), "%s/%s/health_check",
+ subvol_path, GF_HIDDEN_PATH);
+
+ time_sec = time (NULL);
+ gf_time_fmt (timestamp, sizeof timestamp, time_sec, gf_timefmt_FT);
+ timelen = strlen (timestamp);
+
+ fd = open (file_path, O_CREAT|O_RDWR, 0644);
+ if (fd == -1) {
+ gf_log (this->name, GF_LOG_WARNING,
+ "open() on %s returned: %s", file_path,
+ strerror (errno));
+ goto out;
+ }
+ nofbytes = write (fd, timestamp, timelen);
+ if (nofbytes != timelen) {
+ gf_log (this->name, GF_LOG_WARNING,
+ "write() on %s returned: %s", file_path,
+ strerror (errno));
+ goto out;
+ }
+ /* Seek the offset to the beginning of the file, so that the offset for
+ read is from beginning of file */
+ lseek(fd, 0, SEEK_SET);
+ nofbytes = read (fd, buff, timelen);
+ if (nofbytes == -1) {
+ gf_log (this->name, GF_LOG_WARNING,
+ "read() on %s returned: %s", file_path,
+ strerror (errno));
+ goto out;
+ }
+ ret = 0;
+out:
+ if (fd != -1) {
+ close (fd);
+ }
+ return ret;
+
+}
+
static void *
posix_health_check_thread_proc (void *data)
{
@@ -1354,7 +1413,6 @@ posix_health_check_thread_proc (void *data)
struct posix_private *priv = NULL;
uint32_t interval = 0;
int ret = -1;
- struct stat sb = {0, };
this = data;
priv = this->private;
@@ -1377,13 +1435,13 @@ posix_health_check_thread_proc (void *data)
/* prevent thread errors while doing the health-check(s) */
pthread_setcancelstate (PTHREAD_CANCEL_DISABLE, NULL);
- /* Do the health-check, it should be moved to its own function
- * in case it gets more complex. */
- ret = stat (priv->base_path, &sb);
+ /* Do the health-check.*/
+ ret = posix_fs_health_check (this);
+
if (ret < 0) {
gf_log (this->name, GF_LOG_WARNING,
- "stat() on %s returned: %s", priv->base_path,
- strerror (errno));
+ "health_check on %s returned: %s",
+ priv->base_path, strerror (errno));
goto abort;
}