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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
|
package mountmanager
import (
"errors"
"fmt"
"os"
"os/exec"
"strings"
"sync"
"syscall"
"time"
"github.com/seaweedfs/seaweedfs/weed/glog"
"k8s.io/mount-utils"
)
var kubeMounter = mount.New("")
// Manager owns weed mount processes and exposes helpers to start and stop them.
type Manager struct {
weedBinary string
mu sync.Mutex
mounts map[string]*mountEntry
locks *keyMutex
}
// Config configures a Manager instance.
type Config struct {
WeedBinary string
}
// NewManager returns a Manager ready to accept mount requests.
func NewManager(cfg Config) *Manager {
binary := cfg.WeedBinary
if binary == "" {
binary = DefaultWeedBinary
}
return &Manager{
weedBinary: binary,
mounts: make(map[string]*mountEntry),
locks: newKeyMutex(),
}
}
// Mount starts a weed mount process using the provided request.
func (m *Manager) Mount(req *MountRequest) (*MountResponse, error) {
if req == nil {
return nil, errors.New("mount request is nil")
}
if err := validateMountRequest(req); err != nil {
return nil, err
}
lock := m.locks.get(req.VolumeID)
lock.Lock()
defer lock.Unlock()
if entry := m.getMount(req.VolumeID); entry != nil {
if entry.targetPath == req.TargetPath {
glog.Infof("volume %s already mounted at %s", req.VolumeID, req.TargetPath)
return &MountResponse{LocalSocket: entry.localSocket}, nil
}
return nil, fmt.Errorf("volume %s already mounted at %s", req.VolumeID, entry.targetPath)
}
entry, err := m.startMount(req)
if err != nil {
return nil, err
}
m.mu.Lock()
m.mounts[req.VolumeID] = entry
m.mu.Unlock()
glog.Infof("started weed mount process for volume %s at %s", req.VolumeID, req.TargetPath)
return &MountResponse{LocalSocket: entry.localSocket}, nil
}
// Unmount terminates the weed mount process associated with the provided request.
func (m *Manager) Unmount(req *UnmountRequest) (*UnmountResponse, error) {
if req == nil {
return nil, errors.New("unmount request is nil")
}
if req.VolumeID == "" {
return nil, errors.New("volumeId is required")
}
lock := m.locks.get(req.VolumeID)
lock.Lock()
defer lock.Unlock()
entry := m.removeMount(req.VolumeID)
if entry == nil {
glog.Infof("volume %s not mounted", req.VolumeID)
return &UnmountResponse{}, nil
}
if ok, err := kubeMounter.IsMountPoint(entry.targetPath); ok || mount.IsCorruptedMnt(err) {
if err = kubeMounter.Unmount(entry.targetPath); err != nil {
return nil, err
}
}
if err := entry.process.stop(); err != nil {
return nil, err
}
// Remove cache dir only after process has been successfully stopped
if err := os.RemoveAll(entry.cacheDir); err != nil {
glog.Warningf("failed to remove cache dir %s for volume %s: %v", entry.cacheDir, req.VolumeID, err)
}
glog.Infof("stopped weed mount process for volume %s at %s", req.VolumeID, entry.targetPath)
return &UnmountResponse{}, nil
}
func (m *Manager) getMount(volumeID string) *mountEntry {
m.mu.Lock()
defer m.mu.Unlock()
return m.mounts[volumeID]
}
func (m *Manager) removeMount(volumeID string) *mountEntry {
m.mu.Lock()
defer m.mu.Unlock()
entry := m.mounts[volumeID]
delete(m.mounts, volumeID)
m.locks.delete(volumeID)
return entry
}
func (m *Manager) startMount(req *MountRequest) (*mountEntry, error) {
targetPath := req.TargetPath
if err := ensureTargetClean(targetPath); err != nil {
return nil, err
}
cacheDir := req.CacheDir
if cacheDir == "" {
return nil, errors.New("cacheDir is required")
}
if err := os.MkdirAll(cacheDir, 0755); err != nil {
return nil, fmt.Errorf("creating cache dir: %w", err)
}
localSocket := req.LocalSocket
if localSocket == "" {
return nil, errors.New("localSocket is required")
}
args := req.MountArgs
if len(args) == 0 {
return nil, errors.New("mountArgs is required")
}
process, err := startWeedMountProcess(m.weedBinary, args, targetPath)
if err != nil {
return nil, err
}
return &mountEntry{
volumeID: req.VolumeID,
targetPath: targetPath,
cacheDir: cacheDir,
localSocket: localSocket,
process: process,
}, nil
}
func ensureTargetClean(targetPath string) error {
isMount, err := kubeMounter.IsMountPoint(targetPath)
if err != nil {
if os.IsNotExist(err) {
// Path does not exist, which is a clean state. Directory will be created below.
} else if mount.IsCorruptedMnt(err) {
glog.Warningf("Target path %s is a corrupted mount, attempting to unmount", targetPath)
if err := kubeMounter.Unmount(targetPath); err != nil {
return fmt.Errorf("failed to unmount corrupted mount %s: %w", targetPath, err)
}
} else {
return err
}
} else if isMount {
glog.Infof("Target path %s is an existing mount, attempting to unmount", targetPath)
if err := kubeMounter.Unmount(targetPath); err != nil {
return fmt.Errorf("failed to unmount existing mount %s: %w", targetPath, err)
}
}
// Ensure the path exists and is a directory.
return os.MkdirAll(targetPath, 0755)
}
func validateMountRequest(req *MountRequest) error {
if req.VolumeID == "" {
return errors.New("volumeId is required")
}
if req.TargetPath == "" {
return errors.New("targetPath is required")
}
if req.CacheDir == "" {
return errors.New("cacheDir is required")
}
if req.LocalSocket == "" {
return errors.New("localSocket is required")
}
if len(req.MountArgs) == 0 {
return errors.New("mountArgs is required")
}
return nil
}
type mountEntry struct {
volumeID string
targetPath string
cacheDir string
localSocket string
process *weedMountProcess
}
type weedMountProcess struct {
cmd *exec.Cmd
target string
done chan struct{}
}
func startWeedMountProcess(command string, args []string, target string) (*weedMountProcess, error) {
cmd := exec.Command(command, args...)
cmd.Stdout = os.Stdout
cmd.Stderr = os.Stderr
glog.V(0).Infof("Starting weed mount: %s %s", command, strings.Join(args, " "))
if err := cmd.Start(); err != nil {
return nil, fmt.Errorf("starting weed mount: %w", err)
}
process := &weedMountProcess{
cmd: cmd,
target: target,
done: make(chan struct{}),
}
go process.wait()
if err := waitForMount(target, 10*time.Second); err != nil {
_ = process.stop()
return nil, err
}
return process, nil
}
func (p *weedMountProcess) wait() {
if err := p.cmd.Wait(); err != nil {
glog.Errorf("weed mount exit (pid: %d, target: %s): %v", p.cmd.Process.Pid, p.target, err)
} else {
glog.Infof("weed mount exit (pid: %d, target: %s)", p.cmd.Process.Pid, p.target)
}
time.Sleep(100 * time.Millisecond)
_ = kubeMounter.Unmount(p.target)
close(p.done)
}
func (p *weedMountProcess) stop() error {
if err := p.cmd.Process.Signal(syscall.SIGTERM); err != nil {
glog.Warningf("sending SIGTERM to weed mount failed: %v", err)
}
select {
case <-p.done:
return nil
case <-time.After(5 * time.Second):
}
if err := p.cmd.Process.Kill(); err != nil {
glog.Warningf("killing weed mount failed: %v", err)
}
select {
case <-p.done:
return nil
case <-time.After(1 * time.Second):
return errors.New("timed out waiting for weed mount to stop")
}
}
func waitForMount(path string, timeout time.Duration) error {
var elapsed time.Duration
interval := 10 * time.Millisecond
for {
notMount, err := kubeMounter.IsLikelyNotMountPoint(path)
if err != nil {
return err
}
if !notMount {
return nil
}
time.Sleep(interval)
elapsed += interval
if elapsed >= timeout {
return errors.New("timeout waiting for mount")
}
}
}
|