diff options
| author | Emmanuel Dreyfus <manu@netbsd.org> | 2014-09-26 02:28:15 +0200 |
|---|---|---|
| committer | Vijay Bellur <vbellur@redhat.com> | 2014-10-03 08:01:29 -0700 |
| commit | 89de9adbf2b7d446abe9a27c8e384d205a996176 (patch) | |
| tree | dc5cf55b3bdb7afc3c7895835b8201912ef34f57 /libglusterfs/src/compat.c | |
| parent | 5ee6a5384ee298314e1ef50c293ad5cbc281c609 (diff) | |
Do not hardcode umount(8) path, emulate lazy umount
1) Use a system-dependent macro for umount(8) location instead of
relying on $PATH to find it, for security and portability sake.
2) Introduce gf_umount_lazy() to replace umount -l (-l for lazy) invocations,
which is only supported on Linux; On Linux behavior in unchanged. On other
systems, we fork an external process (umountd) that will take care of
periodically attempt to unmount, and optionally rmdir.
Backport of Ia91167c0652f8ddab85136324b08f87c5ac1edd51d
BUG: 1138897
Change-Id: I9d82c87e85af0dee79f2de39bc697c486b7103c8
Signed-off-by: Emmanuel Dreyfus <manu@netbsd.org>
Reviewed-on: http://review.gluster.org/8863
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Csaba Henk <csaba@redhat.com>
Reviewed-by: Vijay Bellur <vbellur@redhat.com>
Diffstat (limited to 'libglusterfs/src/compat.c')
| -rw-r--r-- | libglusterfs/src/compat.c | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/libglusterfs/src/compat.c b/libglusterfs/src/compat.c index eb6d8d4b7f1..93e7b45a69e 100644 --- a/libglusterfs/src/compat.c +++ b/libglusterfs/src/compat.c @@ -15,6 +15,7 @@ #include <string.h> #include <stdlib.h> +#include <unistd.h> #include <stdarg.h> #include <getopt.h> #include <sys/types.h> @@ -28,6 +29,7 @@ #include "common-utils.h" #include "iatt.h" #include "inode.h" +#include "run.h" #ifdef GF_SOLARIS_HOST_OS int @@ -543,3 +545,40 @@ strnlen(const char *string, size_t maxlen) return len; } #endif /* STRNLEN */ + +int +gf_umount_lazy (char *xlname, char *path, int rmdir_flag) +{ + int ret = -1; + runner_t runner = {0,}; + + runinit (&runner); +#ifdef GF_LINUX_HOST_OS + runner_add_args (&runner, _PATH_UMOUNT, "-l", path, NULL); +#else + if (rmdir_flag) + runner_add_args (&runner, SBIN_DIR "/umountd", + "-r", path, NULL); + else + runner_add_args (&runner, SBIN_DIR "/umountd", + path, NULL); +#endif + ret = runner_run (&runner); + if (ret) { + gf_log (xlname, GF_LOG_ERROR, + "Lazy unmount of %s failed: %s", + path, strerror (errno)); + } + +#ifdef GF_LINUX_HOST_OS + if (!ret && rmdir_flag) { + ret = rmdir (path); + if (ret) + gf_log (xlname, GF_LOG_WARNING, + "rmdir %s failed: %s", + path, strerror (errno)); + } +#endif + + return ret; +} |
