seaweedfs/weed/command/mount_std.go

131 lines
3.2 KiB
Go
Raw Normal View History

// +build linux darwin
package command
import (
"fmt"
2019-02-18 20:11:52 +00:00
"github.com/chrislusf/seaweedfs/weed/security"
"github.com/chrislusf/seaweedfs/weed/server"
"github.com/spf13/viper"
"os"
"os/user"
"path"
"runtime"
"strconv"
"strings"
"time"
2018-05-27 18:52:26 +00:00
"github.com/chrislusf/seaweedfs/weed/filesys"
"github.com/chrislusf/seaweedfs/weed/glog"
"github.com/chrislusf/seaweedfs/weed/util"
2018-12-29 21:16:23 +00:00
"github.com/seaweedfs/fuse"
"github.com/seaweedfs/fuse/fs"
)
func runMount(cmd *Command, args []string) bool {
2019-02-18 20:11:52 +00:00
weed_server.LoadConfiguration("security", false)
fmt.Printf("This is SeaweedFS version %s %s %s\n", util.VERSION, runtime.GOOS, runtime.GOARCH)
if *mountOptions.dir == "" {
fmt.Printf("Please specify the mount directory via \"-dir\"")
return false
}
2018-05-29 08:21:21 +00:00
if *mountOptions.chunkSizeLimitMB <= 0 {
fmt.Printf("Please specify a reasonable buffer size.")
return false
}
2018-05-06 05:47:16 +00:00
fuse.Unmount(*mountOptions.dir)
// detect mount folder mode
mountMode := os.ModeDir | 0755
if fileInfo, err := os.Stat(*mountOptions.dir); err == nil {
mountMode = os.ModeDir | fileInfo.Mode()
}
mountName := path.Base(*mountOptions.dir)
// detect current user
uid, gid := uint32(0), uint32(0)
if u, err := user.Current(); err == nil {
if parsedId, pe := strconv.ParseUint(u.Uid, 10, 32); pe == nil {
uid = uint32(parsedId)
}
if parsedId, pe := strconv.ParseUint(u.Gid, 10, 32); pe == nil {
gid = uint32(parsedId)
}
}
2018-11-15 06:48:54 +00:00
util.SetupProfiling(*mountCpuProfile, *mountMemProfile)
options := []fuse.MountOption{
fuse.VolumeName(mountName),
2018-05-07 07:37:47 +00:00
fuse.FSName("SeaweedFS"),
2018-11-23 07:04:23 +00:00
fuse.Subtype("SeaweedFS"),
2018-05-07 07:37:47 +00:00
fuse.NoAppleDouble(),
fuse.NoAppleXattr(),
2018-12-29 21:16:23 +00:00
fuse.NoBrowse(),
2018-12-29 21:55:38 +00:00
fuse.AutoXattr(),
2018-05-07 07:37:47 +00:00
fuse.ExclCreate(),
fuse.DaemonTimeout("3600"),
fuse.AllowSUID(),
fuse.DefaultPermissions(),
fuse.MaxReadahead(1024 * 128),
2018-05-07 07:37:47 +00:00
fuse.AsyncRead(),
2018-11-11 08:43:30 +00:00
fuse.WritebackCache(),
}
if *mountOptions.allowOthers {
options = append(options, fuse.AllowOther())
}
c, err := fuse.Mount(*mountOptions.dir, options...)
if err != nil {
glog.Fatal(err)
return false
}
2017-06-22 08:33:58 +00:00
util.OnInterrupt(func() {
2014-05-13 22:04:04 +00:00
fuse.Unmount(*mountOptions.dir)
c.Close()
})
filerGrpcAddress, err := parseFilerGrpcAddress(*mountOptions.filer)
2018-07-18 09:37:09 +00:00
if err != nil {
glog.Fatal(err)
2018-06-06 06:37:41 +00:00
return false
}
2018-07-22 08:14:36 +00:00
mountRoot := *mountOptions.filerMountRootPath
if mountRoot != "/" && strings.HasSuffix(mountRoot, "/") {
2018-07-22 08:15:11 +00:00
mountRoot = mountRoot[0 : len(mountRoot)-1]
2018-07-22 08:14:36 +00:00
}
err = fs.Serve(c, filesys.NewSeaweedFileSystem(&filesys.Option{
FilerGrpcAddress: filerGrpcAddress,
2019-02-18 20:11:52 +00:00
GrpcDialOption: security.LoadClientTLS(viper.Sub("grpc"), "client"),
2018-07-22 08:14:36 +00:00
FilerMountRootPath: mountRoot,
Collection: *mountOptions.collection,
Replication: *mountOptions.replication,
TtlSec: int32(*mountOptions.ttlSec),
ChunkSizeLimit: int64(*mountOptions.chunkSizeLimitMB) * 1024 * 1024,
DataCenter: *mountOptions.dataCenter,
DirListingLimit: *mountOptions.dirListingLimit,
EntryCacheTtl: 3 * time.Second,
MountUid: uid,
MountGid: gid,
MountMode: mountMode,
2018-07-22 08:14:36 +00:00
}))
if err != nil {
fuse.Unmount(*mountOptions.dir)
}
// check if the mount process has an error to report
<-c.Ready
if err := c.MountError; err != nil {
glog.Fatal(err)
}
return true
}