seaweedfs/weed/command/fuse.go

272 lines
7.3 KiB
Go
Raw Normal View History

package command
import (
"fmt"
2021-07-01 08:21:14 +00:00
"os"
"strconv"
2021-07-01 08:21:14 +00:00
"strings"
"time"
)
func init() {
cmdFuse.Run = runFuse // break init cycle
}
2021-05-29 03:37:25 +00:00
type parameter struct {
2021-07-01 08:21:14 +00:00
name string
2021-05-29 03:37:25 +00:00
value string
}
2021-05-29 03:37:25 +00:00
func runFuse(cmd *Command, args []string) bool {
rawArgs := strings.Join(args, " ")
rawArgsLen := len(rawArgs)
option := strings.Builder{}
options := []parameter{}
2021-06-20 05:48:46 +00:00
masterProcess := true
2021-07-01 03:07:54 +00:00
fusermountPath := ""
2021-05-29 03:37:25 +00:00
// first parameter
i := 0
for i = 0; i < rawArgsLen && rawArgs[i] != ' '; i++ {
option.WriteByte(rawArgs[i])
}
2021-05-29 03:37:25 +00:00
options = append(options, parameter{"arg0", option.String()})
option.Reset()
for i++; i < rawArgsLen; i++ {
// space separator check for filled option
if rawArgs[i] == ' ' {
if option.Len() > 0 {
options = append(options, parameter{option.String(), "true"})
option.Reset()
}
2021-07-01 08:21:14 +00:00
// dash separator read option until next space
2021-05-29 03:37:25 +00:00
} else if rawArgs[i] == '-' {
for i++; i < rawArgsLen && rawArgs[i] != ' '; i++ {
option.WriteByte(rawArgs[i])
}
// ignore "-o"
if option.String() != "o" {
options = append(options, parameter{option.String(), "true"})
}
2021-05-29 03:37:25 +00:00
option.Reset()
2021-07-01 08:21:14 +00:00
// equal separator start option with pending value
2021-05-29 03:37:25 +00:00
} else if rawArgs[i] == '=' {
name := option.String()
option.Reset()
2021-07-02 19:52:52 +00:00
for i++; i < rawArgsLen && rawArgs[i] != ',' && rawArgs[i] != ' '; i++ {
2021-05-29 03:37:25 +00:00
// double quote separator read option until next double quote
if rawArgs[i] == '"' {
for i++; i < rawArgsLen && rawArgs[i] != '"'; i++ {
option.WriteByte(rawArgs[i])
}
2021-07-21 13:48:04 +00:00
// single quote separator read option until next single quote
2021-05-29 03:37:25 +00:00
} else if rawArgs[i] == '\'' {
for i++; i < rawArgsLen && rawArgs[i] != '\''; i++ {
option.WriteByte(rawArgs[i])
}
2021-07-01 08:21:14 +00:00
// add chars before comma
2021-05-29 03:37:25 +00:00
} else if rawArgs[i] != ' ' {
option.WriteByte(rawArgs[i])
}
}
2021-05-29 03:37:25 +00:00
options = append(options, parameter{name, option.String()})
option.Reset()
2021-07-01 08:21:14 +00:00
// comma separator just read current option
2021-05-29 03:37:25 +00:00
} else if rawArgs[i] == ',' {
options = append(options, parameter{option.String(), "true"})
option.Reset()
2021-07-01 08:21:14 +00:00
// what is not a separator fill option buffer
2021-05-29 03:37:25 +00:00
} else {
option.WriteByte(rawArgs[i])
}
}
2021-05-29 03:37:25 +00:00
// get residual option data
if option.Len() > 0 {
// add value to pending option
options = append(options, parameter{option.String(), "true"})
option.Reset()
}
2021-05-29 03:37:25 +00:00
// scan each parameter
for i := 0; i < len(options); i++ {
parameter := options[i]
2021-07-01 08:21:14 +00:00
switch parameter.name {
2021-06-20 05:48:46 +00:00
case "child":
masterProcess = false
2021-05-29 03:37:25 +00:00
case "arg0":
mountOptions.dir = &parameter.value
case "filer":
mountOptions.filer = &parameter.value
case "filer.path":
mountOptions.filerMountRootPath = &parameter.value
case "dirAutoCreate":
2021-07-21 13:48:04 +00:00
if parsed, err := strconv.ParseBool(parameter.value); err == nil {
2021-05-29 03:37:25 +00:00
mountOptions.dirAutoCreate = &parsed
} else {
panic(fmt.Errorf("dirAutoCreate: %s", err))
}
case "collection":
mountOptions.collection = &parameter.value
case "replication":
mountOptions.replication = &parameter.value
case "disk":
mountOptions.diskType = &parameter.value
case "ttl":
2021-07-21 13:48:04 +00:00
if parsed, err := strconv.ParseInt(parameter.value, 0, 32); err == nil {
2021-05-29 03:37:25 +00:00
intValue := int(parsed)
mountOptions.ttlSec = &intValue
} else {
panic(fmt.Errorf("ttl: %s", err))
}
case "chunkSizeLimitMB":
2021-07-21 13:48:04 +00:00
if parsed, err := strconv.ParseInt(parameter.value, 0, 32); err == nil {
2021-05-29 03:37:25 +00:00
intValue := int(parsed)
mountOptions.chunkSizeLimitMB = &intValue
} else {
panic(fmt.Errorf("chunkSizeLimitMB: %s", err))
}
case "concurrentWriters":
i++
2021-07-21 13:48:04 +00:00
if parsed, err := strconv.ParseInt(parameter.value, 0, 32); err == nil {
2021-05-29 03:37:25 +00:00
intValue := int(parsed)
mountOptions.concurrentWriters = &intValue
} else {
panic(fmt.Errorf("concurrentWriters: %s", err))
}
case "cacheDir":
2023-08-17 06:47:43 +00:00
mountOptions.cacheDirForRead = &parameter.value
2021-05-29 03:37:25 +00:00
case "cacheCapacityMB":
2021-07-21 13:48:04 +00:00
if parsed, err := strconv.ParseInt(parameter.value, 0, 64); err == nil {
2023-08-17 06:47:43 +00:00
mountOptions.cacheSizeMBForRead = &parsed
2021-05-29 03:37:25 +00:00
} else {
panic(fmt.Errorf("cacheCapacityMB: %s", err))
}
case "cacheDirWrite":
2023-08-17 06:47:43 +00:00
mountOptions.cacheDirForWrite = &parameter.value
2021-05-29 03:37:25 +00:00
case "dataCenter":
mountOptions.dataCenter = &parameter.value
case "allowOthers":
2021-07-21 13:48:04 +00:00
if parsed, err := strconv.ParseBool(parameter.value); err == nil {
2021-05-29 03:37:25 +00:00
mountOptions.allowOthers = &parsed
} else {
panic(fmt.Errorf("allowOthers: %s", err))
}
case "umask":
mountOptions.umaskString = &parameter.value
case "nonempty":
2021-07-21 13:48:04 +00:00
if parsed, err := strconv.ParseBool(parameter.value); err == nil {
2021-05-29 03:37:25 +00:00
mountOptions.nonempty = &parsed
} else {
panic(fmt.Errorf("nonempty: %s", err))
}
case "volumeServerAccess":
mountOptions.volumeServerAccess = &parameter.value
case "map.uid":
mountOptions.uidMap = &parameter.value
case "map.gid":
mountOptions.gidMap = &parameter.value
case "readOnly":
2021-07-21 13:48:04 +00:00
if parsed, err := strconv.ParseBool(parameter.value); err == nil {
2021-05-29 03:37:25 +00:00
mountOptions.readOnly = &parsed
} else {
panic(fmt.Errorf("readOnly: %s", err))
}
case "cpuprofile":
mountCpuProfile = &parameter.value
case "memprofile":
mountMemProfile = &parameter.value
case "readRetryTime":
2021-07-21 13:48:04 +00:00
if parsed, err := time.ParseDuration(parameter.value); err == nil {
2021-05-29 03:37:25 +00:00
mountReadRetryTime = &parsed
} else {
panic(fmt.Errorf("readRetryTime: %s", err))
}
2021-07-01 03:07:54 +00:00
case "fusermount.path":
fusermountPath = parameter.value
default:
2022-09-30 15:49:38 +00:00
t := parameter.name
if parameter.value != "true" {
t = fmt.Sprintf("%s=%s", parameter.name, parameter.value)
}
mountOptions.extraOptions = append(mountOptions.extraOptions, t)
}
}
2021-06-20 05:48:46 +00:00
// the master start the child, release it then finish himself
if masterProcess {
2021-07-02 20:33:15 +00:00
arg0, err := os.Executable()
if err != nil {
panic(err)
}
2021-06-20 05:48:46 +00:00
argv := append(os.Args, "-o", "child")
2021-07-01 08:21:14 +00:00
attr := os.ProcAttr{}
attr.Env = os.Environ()
2021-06-20 05:48:46 +00:00
child, err := os.StartProcess(arg0, argv, &attr)
if err != nil {
panic(fmt.Errorf("master process can not start child process: %s", err))
}
err = child.Release()
if err != nil {
panic(fmt.Errorf("master process can not release child process: %s", err))
}
return true
}
2021-07-01 03:07:54 +00:00
if fusermountPath != "" {
if err := os.Setenv("PATH", fusermountPath); err != nil {
panic(fmt.Errorf("setenv: %s", err))
}
} else if os.Getenv("PATH") == "" {
if err := os.Setenv("PATH", "/bin:/sbin:/usr/bin:/usr/sbin"); err != nil {
panic(fmt.Errorf("setenv: %s", err))
}
}
// just call "weed mount" command
return runMount(cmdMount, []string{})
}
var cmdFuse = &Command{
2021-05-26 15:07:36 +00:00
UsageLine: "fuse /mnt/mount/point -o \"filer=localhost:8888,filer.path=/\"",
2021-07-01 08:21:14 +00:00
Short: "Allow use weed with linux's mount command",
Long: `Allow use weed with linux's mount command
You can use -t weed on mount command:
mv weed /sbin/mount.weed
2021-05-26 15:07:36 +00:00
mount -t weed fuse /mnt -o "filer=localhost:8888,filer.path=/"
Or you can use -t fuse on mount command:
mv weed /sbin/weed
2021-05-26 15:07:36 +00:00
mount -t fuse.weed fuse /mnt -o "filer=localhost:8888,filer.path=/"
mount -t fuse "weed#fuse" /mnt -o "filer=localhost:8888,filer.path=/"
To use without mess with your /sbin:
2021-05-26 15:07:36 +00:00
mount -t fuse./home/user/bin/weed fuse /mnt -o "filer=localhost:8888,filer.path=/"
mount -t fuse "/home/user/bin/weed#fuse" /mnt -o "filer=localhost:8888,filer.path=/"
2021-05-29 03:37:25 +00:00
To pass more than one parameter use quotes, example:
mount -t weed fuse /mnt -o "filer='192.168.0.1:8888,192.168.0.2:8888',filer.path=/"
To check valid options look "weed mount --help"
`,
}