2014-05-13 11:25:48 -07:00
|
|
|
// +build linux darwin
|
|
|
|
|
2016-06-02 18:09:14 -07:00
|
|
|
package command
|
2014-05-13 11:25:48 -07:00
|
|
|
|
|
|
|
import (
|
2014-10-26 11:34:55 -07:00
|
|
|
"fmt"
|
2019-02-18 12:11:52 -08:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/security"
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/server"
|
|
|
|
"github.com/spf13/viper"
|
2018-12-28 23:36:13 -08:00
|
|
|
"os"
|
|
|
|
"os/user"
|
2014-10-26 11:34:55 -07:00
|
|
|
"runtime"
|
2018-12-28 23:36:13 -08:00
|
|
|
"strconv"
|
2018-11-08 07:37:34 -08:00
|
|
|
"strings"
|
|
|
|
"time"
|
2014-10-26 11:34:55 -07:00
|
|
|
|
2018-05-27 11:52:26 -07:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/filesys"
|
2016-06-02 18:09:14 -07:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/glog"
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/util"
|
2018-12-29 13:16:23 -08:00
|
|
|
"github.com/seaweedfs/fuse"
|
|
|
|
"github.com/seaweedfs/fuse/fs"
|
2014-05-13 11:25:48 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
func runMount(cmd *Command, args []string) bool {
|
2019-02-18 12:11:52 -08:00
|
|
|
|
|
|
|
weed_server.LoadConfiguration("security", false)
|
|
|
|
|
2015-04-16 21:11:25 +00:00
|
|
|
fmt.Printf("This is SeaweedFS version %s %s %s\n", util.VERSION, runtime.GOOS, runtime.GOARCH)
|
2014-05-13 11:25:48 -07:00
|
|
|
if *mountOptions.dir == "" {
|
|
|
|
fmt.Printf("Please specify the mount directory via \"-dir\"")
|
|
|
|
return false
|
|
|
|
}
|
2018-05-29 01:21:21 -07:00
|
|
|
if *mountOptions.chunkSizeLimitMB <= 0 {
|
|
|
|
fmt.Printf("Please specify a reasonable buffer size.")
|
|
|
|
return false
|
|
|
|
}
|
2014-05-13 11:25:48 -07:00
|
|
|
|
2018-05-05 22:47:16 -07:00
|
|
|
fuse.Unmount(*mountOptions.dir)
|
|
|
|
|
2018-12-28 23:36:13 -08:00
|
|
|
// detect mount folder mode
|
|
|
|
mountMode := os.ModeDir | 0755
|
|
|
|
if fileInfo, err := os.Stat(*mountOptions.dir); err == nil {
|
|
|
|
mountMode = os.ModeDir | fileInfo.Mode()
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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-14 22:48:54 -08:00
|
|
|
util.SetupProfiling(*mountCpuProfile, *mountMemProfile)
|
|
|
|
|
2018-05-07 00:37:47 -07:00
|
|
|
c, err := fuse.Mount(
|
|
|
|
*mountOptions.dir,
|
|
|
|
fuse.VolumeName("SeaweedFS"),
|
|
|
|
fuse.FSName("SeaweedFS"),
|
2018-11-22 23:04:23 -08:00
|
|
|
fuse.Subtype("SeaweedFS"),
|
2018-05-07 00:37:47 -07:00
|
|
|
fuse.NoAppleDouble(),
|
|
|
|
fuse.NoAppleXattr(),
|
2018-12-29 13:16:23 -08:00
|
|
|
fuse.NoBrowse(),
|
2018-12-29 13:55:38 -08:00
|
|
|
fuse.AutoXattr(),
|
2018-05-07 00:37:47 -07:00
|
|
|
fuse.ExclCreate(),
|
|
|
|
fuse.DaemonTimeout("3600"),
|
|
|
|
fuse.AllowOther(),
|
|
|
|
fuse.AllowSUID(),
|
|
|
|
fuse.DefaultPermissions(),
|
2018-11-12 11:19:13 -08:00
|
|
|
fuse.MaxReadahead(1024*128),
|
2018-05-07 00:37:47 -07:00
|
|
|
fuse.AsyncRead(),
|
2018-11-11 00:43:30 -08:00
|
|
|
fuse.WritebackCache(),
|
2018-05-07 00:37:47 -07:00
|
|
|
)
|
2014-05-13 11:25:48 -07:00
|
|
|
if err != nil {
|
|
|
|
glog.Fatal(err)
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2017-06-22 01:33:58 -07:00
|
|
|
util.OnInterrupt(func() {
|
2014-05-13 15:04:04 -07:00
|
|
|
fuse.Unmount(*mountOptions.dir)
|
|
|
|
c.Close()
|
|
|
|
})
|
2014-05-13 11:25:48 -07:00
|
|
|
|
2018-07-18 02:37:09 -07:00
|
|
|
filerGrpcAddress, err := parseFilerGrpcAddress(*mountOptions.filer, *mountOptions.filerGrpcPort)
|
|
|
|
if err != nil {
|
|
|
|
glog.Fatal(err)
|
2018-06-05 23:37:41 -07:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2018-07-22 01:14:36 -07:00
|
|
|
mountRoot := *mountOptions.filerMountRootPath
|
|
|
|
if mountRoot != "/" && strings.HasSuffix(mountRoot, "/") {
|
2018-07-22 01:15:11 -07:00
|
|
|
mountRoot = mountRoot[0 : len(mountRoot)-1]
|
2018-07-22 01:14:36 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
err = fs.Serve(c, filesys.NewSeaweedFileSystem(&filesys.Option{
|
|
|
|
FilerGrpcAddress: filerGrpcAddress,
|
2019-02-18 12:11:52 -08:00
|
|
|
GrpcDialOption: security.LoadClientTLS(viper.Sub("grpc"), "client"),
|
2018-07-22 01:14:36 -07: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,
|
2018-11-08 07:37:34 -08:00
|
|
|
EntryCacheTtl: 3 * time.Second,
|
2018-12-28 23:36:13 -08:00
|
|
|
MountUid: uid,
|
|
|
|
MountGid: gid,
|
|
|
|
MountMode: mountMode,
|
2018-07-22 01:14:36 -07:00
|
|
|
}))
|
2014-05-13 11:25:48 -07: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
|
|
|
|
}
|