mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-21 10:27:46 +08:00
* chore: apply go fix modernizers from Go 1.26
automated refactoring: interface{} to any, slices.Contains,
and other idiomatic updates.
* feat(ci): add `go fix` check to Go analysis workflow
ensures Go 1.26 modernizers are applied, fails CI if `go fix ./...`
produces any changes (similar to existing `go fmt` enforcement)
103 lines
2.1 KiB
Go
103 lines
2.1 KiB
Go
// package mount provides a simple abstraction around a mount point
|
|
package mount
|
|
|
|
import (
|
|
"fmt"
|
|
"io"
|
|
"os/exec"
|
|
"runtime"
|
|
"time"
|
|
|
|
logging "github.com/ipfs/go-log/v2"
|
|
)
|
|
|
|
var log = logging.Logger("mount")
|
|
|
|
var MountTimeout = time.Second * 5
|
|
|
|
// Mount represents a filesystem mount.
|
|
type Mount interface {
|
|
// MountPoint is the path at which this mount is mounted
|
|
MountPoint() string
|
|
|
|
// Unmounts the mount
|
|
Unmount() error
|
|
|
|
// Checks if the mount is still active.
|
|
IsActive() bool
|
|
}
|
|
|
|
// ForceUnmount attempts to forcibly unmount a given mount.
|
|
// It does so by calling diskutil or fusermount directly.
|
|
func ForceUnmount(m Mount) error {
|
|
point := m.MountPoint()
|
|
log.Warnf("Force-Unmounting %s...", point)
|
|
|
|
cmd, err := UnmountCmd(point)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
errc := make(chan error, 1)
|
|
go func() {
|
|
defer close(errc)
|
|
|
|
// try vanilla unmount first.
|
|
if err := exec.Command("umount", point).Run(); err == nil {
|
|
return
|
|
}
|
|
|
|
// retry to unmount with the fallback cmd
|
|
errc <- cmd.Run()
|
|
}()
|
|
|
|
select {
|
|
case <-time.After(7 * time.Second):
|
|
return fmt.Errorf("umount timeout")
|
|
case err := <-errc:
|
|
return err
|
|
}
|
|
}
|
|
|
|
// UnmountCmd creates an exec.Cmd that is GOOS-specific
|
|
// for unmount a FUSE mount.
|
|
func UnmountCmd(point string) (*exec.Cmd, error) {
|
|
switch runtime.GOOS {
|
|
case "darwin":
|
|
return exec.Command("diskutil", "umount", "force", point), nil
|
|
case "linux":
|
|
return exec.Command("fusermount", "-u", point), nil
|
|
default:
|
|
return nil, fmt.Errorf("unmount: unimplemented")
|
|
}
|
|
}
|
|
|
|
// ForceUnmountManyTimes attempts to forcibly unmount a given mount,
|
|
// many times. It does so by calling diskutil or fusermount directly.
|
|
// Attempts a given number of times.
|
|
func ForceUnmountManyTimes(m Mount, attempts int) error {
|
|
var err error
|
|
for range attempts {
|
|
err = ForceUnmount(m)
|
|
if err == nil {
|
|
return err
|
|
}
|
|
|
|
<-time.After(time.Millisecond * 500)
|
|
}
|
|
return fmt.Errorf("unmount %s failed after 10 seconds of trying", m.MountPoint())
|
|
}
|
|
|
|
type closer struct {
|
|
M Mount
|
|
}
|
|
|
|
func (c *closer) Close() error {
|
|
log.Warn(" (c *closer) Close(),", c.M.MountPoint())
|
|
return c.M.Unmount()
|
|
}
|
|
|
|
func Closer(m Mount) io.Closer {
|
|
return &closer{m}
|
|
}
|