75aa201631
Resolves: RHEL-13159,RHEL-20322,RHEL-27512,RHEL-30372,RHEL-31070,RHEL-31219,RHEL-33890,RHEL-35703,RHEL-38864,RHEL-40878,RHEL-6589
84 lines
4.3 KiB
Diff
84 lines
4.3 KiB
Diff
From 3e65e8111f7cc30ac38901dced3ed0defbd90206 Mon Sep 17 00:00:00 2001
|
|
From: Mike Yuan <me@yhndnzj.com>
|
|
Date: Sat, 17 Feb 2024 03:03:50 +0800
|
|
Subject: [PATCH] core/mount: if umount(8) fails but mount disappeared, assume
|
|
success
|
|
|
|
Fixes #31337
|
|
|
|
(cherry picked from commit 8e94bb62a5c1309c56c57e0a505aae13a2ac5f4f)
|
|
|
|
Resolves: RHEL-13159
|
|
---
|
|
src/core/mount.c | 20 ++++++++++++--------
|
|
1 file changed, 12 insertions(+), 8 deletions(-)
|
|
|
|
diff --git a/src/core/mount.c b/src/core/mount.c
|
|
index a46ac804d8..cfe3f40302 100644
|
|
--- a/src/core/mount.c
|
|
+++ b/src/core/mount.c
|
|
@@ -1439,7 +1439,8 @@ static void mount_sigchld_event(Unit *u, pid_t pid, int code, int status) {
|
|
|
|
if (IN_SET(m->state, MOUNT_REMOUNTING, MOUNT_REMOUNTING_SIGKILL, MOUNT_REMOUNTING_SIGTERM))
|
|
mount_set_reload_result(m, f);
|
|
- else if (m->result == MOUNT_SUCCESS)
|
|
+ else if (m->result == MOUNT_SUCCESS && !IN_SET(m->state, MOUNT_MOUNTING, MOUNT_UNMOUNTING))
|
|
+ /* MOUNT_MOUNTING and MOUNT_UNMOUNTING states need to be patched, see below. */
|
|
m->result = f;
|
|
|
|
if (m->control_command) {
|
|
@@ -1462,11 +1463,11 @@ static void mount_sigchld_event(Unit *u, pid_t pid, int code, int status) {
|
|
switch (m->state) {
|
|
|
|
case MOUNT_MOUNTING:
|
|
- /* Our mount point has not appeared in mountinfo. Something went wrong. */
|
|
+ /* Our mount point has not appeared in mountinfo. Something went wrong. */
|
|
|
|
if (f == MOUNT_SUCCESS) {
|
|
- /* Either /bin/mount has an unexpected definition of success,
|
|
- * or someone raced us and we lost. */
|
|
+ /* Either /bin/mount has an unexpected definition of success, or someone raced us
|
|
+ * and we lost. */
|
|
log_unit_warning(UNIT(m), "Mount process finished, but there is no mount.");
|
|
f = MOUNT_FAILURE_PROTOCOL;
|
|
}
|
|
@@ -1484,9 +1485,7 @@ static void mount_sigchld_event(Unit *u, pid_t pid, int code, int status) {
|
|
break;
|
|
|
|
case MOUNT_UNMOUNTING:
|
|
-
|
|
if (f == MOUNT_SUCCESS && m->from_proc_self_mountinfo) {
|
|
-
|
|
/* Still a mount point? If so, let's try again. Most likely there were multiple mount points
|
|
* stacked on top of each other. We might exceed the timeout specified by the user overall,
|
|
* but we will stop as soon as any one umount times out. */
|
|
@@ -1499,13 +1498,18 @@ static void mount_sigchld_event(Unit *u, pid_t pid, int code, int status) {
|
|
log_unit_warning(u, "Mount still present after %u attempts to unmount, giving up.", m->n_retry_umount);
|
|
mount_enter_mounted(m, f);
|
|
}
|
|
+ } else if (f == MOUNT_FAILURE_EXIT_CODE && !m->from_proc_self_mountinfo) {
|
|
+ /* Hmm, umount process spawned by us failed, but the mount disappeared anyway?
|
|
+ * Maybe someone else is trying to unmount at the same time. */
|
|
+ log_unit_notice(u, "Mount disappeared even though umount process failed, continuing.");
|
|
+ mount_enter_dead(m, MOUNT_SUCCESS);
|
|
} else
|
|
mount_enter_dead_or_mounted(m, f);
|
|
|
|
break;
|
|
|
|
- case MOUNT_UNMOUNTING_SIGKILL:
|
|
case MOUNT_UNMOUNTING_SIGTERM:
|
|
+ case MOUNT_UNMOUNTING_SIGKILL:
|
|
mount_enter_dead_or_mounted(m, f);
|
|
break;
|
|
|
|
@@ -2040,7 +2044,7 @@ static int mount_process_proc_self_mountinfo(Manager *m) {
|
|
* then remove it because of an internal error. E.g., fuse.sshfs seems
|
|
* to do that when the connection fails. See #17617. To handle such the
|
|
* case, let's once set the state back to mounting. Then, the unit can
|
|
- * correctly enter the failed state later in mount_sigchld(). */
|
|
+ * correctly enter the failed state later in mount_sigchld_event(). */
|
|
mount_set_state(mount, MOUNT_MOUNTING);
|
|
break;
|
|
|