diff options
| author | Pranith Kumar K <pkarampu@redhat.com> | 2020-04-07 16:05:16 +0530 | 
|---|---|---|
| committer | Rinku Kothiya <rkothiya@redhat.com> | 2020-04-14 12:49:34 +0000 | 
| commit | 03f6c600b201d672a251df95cd8a11decf94e7ef (patch) | |
| tree | 2eaaef7dd174d8b33691fb3342210a550c3e416a | |
| parent | 6ec035a26bb1101d0ec8c8664b5dd0fa6313fa48 (diff) | |
mount/fuse: Wait for 'mount' child to exit before dying
Problem:
tests/bugs/protocol/bug-1433815-auth-allow.t fails
sometimes because of stale mount. This stale mount
comes into picture when parent process dies without
waiting for the child process which mounts fuse fs
to die
Fix:
Wait for mounting child process to die before dying.
Fixes: #1152
Change-Id: I8baee8720e88614fdb762ea822d5877973eef8dc
Signed-off-by: Pranith Kumar K <pkarampu@redhat.com>
| -rw-r--r-- | xlators/mount/fuse/src/fuse-bridge.c | 27 | 
1 files changed, 27 insertions, 0 deletions
diff --git a/xlators/mount/fuse/src/fuse-bridge.c b/xlators/mount/fuse/src/fuse-bridge.c index 11b38f66028..c1020321bf9 100644 --- a/xlators/mount/fuse/src/fuse-bridge.c +++ b/xlators/mount/fuse/src/fuse-bridge.c @@ -6263,6 +6263,7 @@ notify(xlator_t *this, int32_t event, void *data, ...)      fuse_private_t *private = NULL;      gf_boolean_t start_thread = _gf_false;      glusterfs_graph_t *graph = NULL; +    struct pollfd pfd = {0};     private      = this->private; @@ -6330,6 +6331,32 @@ notify(xlator_t *this, int32_t event, void *data, ...)              /* Authentication failure is an error and glusterfs should stop */              gf_log(this->name, GF_LOG_ERROR,                     "Server authenication failed. Shutting down."); +            pthread_mutex_lock(&private->sync_mutex); +            { +                /*Wait for mount to finish*/ +                if (!private->mount_finished) { +                    pfd.fd = private->status_pipe[0]; +                    pfd.events = POLLIN | POLLHUP | POLLERR; +                    if (poll(&pfd, 1, -1) < 0) { +                        gf_log(this->name, GF_LOG_ERROR, "poll error %s", +                               strerror(errno)); +                        goto auth_fail_unlock; +                    } +                    if (pfd.revents & POLLIN) { +                        if (fuse_get_mount_status(this) != 0) { +                            goto auth_fail_unlock; +                        } +                       private +                        ->mount_finished = _gf_true; +                    } else if (pfd.revents) { +                        gf_log(this->name, GF_LOG_ERROR, +                               "mount pipe closed without status"); +                        goto auth_fail_unlock; +                    } +                } +            } +        auth_fail_unlock: +            pthread_mutex_unlock(&private->sync_mutex);              fini(this);              break;          }  | 
