kubo/fuse/node/mount_unix.go
Marcin Rataj 9faefe316f
Some checks are pending
CodeQL / codeql (push) Waiting to run
Docker Check / lint (push) Waiting to run
Docker Check / build (push) Waiting to run
Gateway Conformance / gateway-conformance (push) Waiting to run
Gateway Conformance / gateway-conformance-libp2p-experiment (push) Waiting to run
Go Build / go-build (push) Waiting to run
Go Check / go-check (push) Waiting to run
Go Lint / go-lint (push) Waiting to run
Go Test / go-test (push) Waiting to run
Interop / interop-prep (push) Waiting to run
Interop / helia-interop (push) Blocked by required conditions
Interop / ipfs-webui (push) Blocked by required conditions
Sharness / sharness-test (push) Waiting to run
Spell Check / spellcheck (push) Waiting to run
refactor(ci): optimize build workflows (#10973)
* ci: optimize build workflows

- use go version from go.mod instead of hardcoding
- group platforms by OS for parallel builds
- remove legacy try-build targets

* fix: checkout before setup-go in all workflows

setup-go needs go.mod to be present, so checkout must happen first

* chore: remove deprecated // +build syntax

go 1.17+ uses //go:build, the old syntax is no longer needed

* simplify: remove nofuse tag from CI workflows

- workflows now rely on platform build constraints
- keep make nofuse target for manual builds
- remove unused appveyor.yml

* ci: remove legacy travis variable and fix gateway-conformance

- remove TRAVIS env variable from 4 workflows
- fix gateway-conformance checkout path to match working-directory
- replace deprecated cache-go-action with built-in setup-go caching
2025-09-19 14:44:38 +02:00

149 lines
3.4 KiB
Go

//go:build !windows && !openbsd && !netbsd && !plan9 && !nofuse
package node
import (
"errors"
"fmt"
"strings"
"sync"
core "github.com/ipfs/kubo/core"
ipns "github.com/ipfs/kubo/fuse/ipns"
mfs "github.com/ipfs/kubo/fuse/mfs"
mount "github.com/ipfs/kubo/fuse/mount"
rofs "github.com/ipfs/kubo/fuse/readonly"
logging "github.com/ipfs/go-log/v2"
)
var log = logging.Logger("node")
// fuseNoDirectory used to check the returning fuse error.
const fuseNoDirectory = "fusermount: failed to access mountpoint"
// fuseExitStatus1 used to check the returning fuse error.
const fuseExitStatus1 = "fusermount: exit status 1"
// platformFuseChecks can get overridden by arch-specific files
// to run fuse checks (like checking the OSXFUSE version).
var platformFuseChecks = func(*core.IpfsNode) error {
return nil
}
func Mount(node *core.IpfsNode, fsdir, nsdir, mfsdir string) error {
// check if we already have live mounts.
// if the user said "Mount", then there must be something wrong.
// so, close them and try again.
Unmount(node)
if err := platformFuseChecks(node); err != nil {
return err
}
return doMount(node, fsdir, nsdir, mfsdir)
}
func Unmount(node *core.IpfsNode) {
if node.Mounts.Ipfs != nil && node.Mounts.Ipfs.IsActive() {
// best effort
if err := node.Mounts.Ipfs.Unmount(); err != nil {
log.Errorf("error unmounting IPFS: %s", err)
}
}
if node.Mounts.Ipns != nil && node.Mounts.Ipns.IsActive() {
// best effort
if err := node.Mounts.Ipns.Unmount(); err != nil {
log.Errorf("error unmounting IPNS: %s", err)
}
}
if node.Mounts.Mfs != nil && node.Mounts.Mfs.IsActive() {
// best effort
if err := node.Mounts.Mfs.Unmount(); err != nil {
log.Errorf("error unmounting MFS: %s", err)
}
}
}
func doMount(node *core.IpfsNode, fsdir, nsdir, mfsdir string) error {
fmtFuseErr := func(err error, mountpoint string) error {
s := err.Error()
if strings.Contains(s, fuseNoDirectory) {
s = strings.Replace(s, `fusermount: "fusermount:`, "", -1)
s = strings.Replace(s, `\n", exit status 1`, "", -1)
return errors.New(s)
}
if s == fuseExitStatus1 {
s = fmt.Sprintf("fuse failed to access mountpoint %s", mountpoint)
return errors.New(s)
}
return err
}
// this sync stuff is so that both can be mounted simultaneously.
var fsmount, nsmount, mfmount mount.Mount
var err1, err2, err3 error
var wg sync.WaitGroup
wg.Add(1)
go func() {
defer wg.Done()
fsmount, err1 = rofs.Mount(node, fsdir)
}()
if node.IsOnline {
wg.Add(1)
go func() {
defer wg.Done()
nsmount, err2 = ipns.Mount(node, nsdir, fsdir)
}()
}
wg.Add(1)
go func() {
defer wg.Done()
mfmount, err3 = mfs.Mount(node, mfsdir)
}()
wg.Wait()
if err1 != nil {
log.Errorf("error mounting IPFS %s: %s", fsdir, err1)
}
if err2 != nil {
log.Errorf("error mounting IPNS %s for IPFS %s: %s", nsdir, fsdir, err2)
}
if err3 != nil {
log.Errorf("error mounting MFS %s: %s", mfsdir, err3)
}
if err1 != nil || err2 != nil || err3 != nil {
if fsmount != nil {
_ = fsmount.Unmount()
}
if nsmount != nil {
_ = nsmount.Unmount()
}
if mfmount != nil {
_ = mfmount.Unmount()
}
if err1 != nil {
return fmtFuseErr(err1, fsdir)
}
if err2 != nil {
return fmtFuseErr(err2, nsdir)
}
return fmtFuseErr(err3, mfsdir)
}
// setup node state, so that it can be canceled
node.Mounts.Ipfs = fsmount
node.Mounts.Ipns = nsmount
node.Mounts.Mfs = mfmount
return nil
}