1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
|
package driver
import (
"errors"
"os"
"time"
"github.com/seaweedfs/seaweedfs/weed/glog"
"k8s.io/mount-utils"
)
var mountutil = mount.New("")
// isStagingPathHealthy checks if the staging path has a healthy FUSE mount.
// It returns true if the path is mounted and accessible, false otherwise.
func isStagingPathHealthy(stagingPath string) bool {
// Check if path exists
info, err := os.Stat(stagingPath)
if err != nil {
if os.IsNotExist(err) {
glog.V(4).Infof("staging path %s does not exist", stagingPath)
return false
}
// "Transport endpoint is not connected" or similar FUSE errors
if mount.IsCorruptedMnt(err) {
glog.Warningf("staging path %s has corrupted mount: %v", stagingPath, err)
return false
}
glog.V(4).Infof("staging path %s stat error: %v", stagingPath, err)
return false
}
// Check if it's a directory
if !info.IsDir() {
glog.Warningf("staging path %s is not a directory", stagingPath)
return false
}
// Check if it's a mount point
isMnt, err := mountutil.IsMountPoint(stagingPath)
if err != nil {
if mount.IsCorruptedMnt(err) {
glog.Warningf("staging path %s has corrupted mount point: %v", stagingPath, err)
return false
}
glog.V(4).Infof("staging path %s mount point check error: %v", stagingPath, err)
return false
}
if !isMnt {
glog.V(4).Infof("staging path %s is not a mount point", stagingPath)
return false
}
// Try to read the directory to verify FUSE is responsive
_, err = os.ReadDir(stagingPath)
if err != nil {
glog.Warningf("staging path %s is not readable (FUSE may be dead): %v", stagingPath, err)
return false
}
glog.V(4).Infof("staging path %s is healthy", stagingPath)
return true
}
// cleanupStaleStagingPath cleans up a stale or corrupted staging mount point.
// It attempts to unmount and remove the directory.
func cleanupStaleStagingPath(stagingPath string) error {
glog.Infof("cleaning up stale staging path %s", stagingPath)
// Try to unmount first (handles corrupted mounts)
if err := mountutil.Unmount(stagingPath); err != nil {
glog.V(4).Infof("unmount staging path %s (may already be unmounted): %v", stagingPath, err)
}
// Check if directory still exists and remove it
// Use RemoveAll to handle cases where directory is not empty after imperfect unmount
if _, err := os.Stat(stagingPath); err == nil {
if err := os.RemoveAll(stagingPath); err != nil {
glog.Warningf("failed to remove staging path %s: %v", stagingPath, err)
return err
}
} else if !os.IsNotExist(err) {
// If stat fails with a different error (like corrupted mount), try force cleanup
if mount.IsCorruptedMnt(err) {
// Force unmount for corrupted mounts
if cleanupErr := mount.CleanupMountPoint(stagingPath, mountutil, true); cleanupErr != nil {
glog.Warningf("failed to cleanup corrupted mount point %s: %v", stagingPath, cleanupErr)
return cleanupErr
}
} else {
// stat failed with an unexpected error, return it
glog.Warningf("stat on staging path %s failed during cleanup: %v", stagingPath, err)
return err
}
}
glog.Infof("successfully cleaned up staging path %s", stagingPath)
return nil
}
func waitForMount(path string, timeout time.Duration) error {
var elapsed time.Duration
var interval = 10 * time.Millisecond
for {
notMount, err := mountutil.IsLikelyNotMountPoint(path)
if err != nil {
return err
}
if !notMount {
return nil
}
time.Sleep(interval)
elapsed = elapsed + interval
if elapsed >= timeout {
return errors.New("timeout waiting for mount")
}
}
}
|