forked from GoogleCloudPlatform/gcsfuse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mount.go
150 lines (132 loc) · 4.61 KB
/
mount.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
// Copyright 2015 Google Inc. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package main
import (
"fmt"
"log"
"os"
"golang.org/x/net/context"
"github.com/googlecloudplatform/gcsfuse/internal/fs"
"github.com/googlecloudplatform/gcsfuse/internal/gcsx"
"github.com/googlecloudplatform/gcsfuse/internal/logger"
"github.com/googlecloudplatform/gcsfuse/internal/perms"
"github.com/jacobsa/fuse"
"github.com/jacobsa/fuse/fsutil"
"github.com/jacobsa/timeutil"
)
// Mount the file system based on the supplied arguments, returning a
// fuse.MountedFileSystem that can be joined to wait for unmounting.
func mountWithConn(
ctx context.Context,
bucketName string,
mountPoint string,
flags *flagStorage,
conn *gcsx.Connection,
status *log.Logger) (mfs *fuse.MountedFileSystem, err error) {
// Sanity check: make sure the temporary directory exists and is writable
// currently. This gives a better user experience than harder to debug EIO
// errors when reading files in the future.
if flags.TempDir != "" {
logger.Infof("Creating a temporary directory at %q\n", flags.TempDir)
var f *os.File
f, err = fsutil.AnonymousFile(flags.TempDir)
f.Close()
if err != nil {
err = fmt.Errorf(
"Error writing to temporary directory (%q); are you sure it exists "+
"with the correct permissions?",
err.Error())
return
}
}
// Find the current process's UID and GID. If it was invoked as root and the
// user hasn't explicitly overridden --uid, everything is going to be owned
// by root. This is probably not what the user wants, so print a warning.
uid, gid, err := perms.MyUserAndGroup()
if err != nil {
err = fmt.Errorf("MyUserAndGroup: %w", err)
return
}
if uid == 0 && flags.Uid < 0 {
fmt.Fprintln(os.Stdout, `
WARNING: gcsfuse invoked as root. This will cause all files to be owned by
root. If this is not what you intended, invoke gcsfuse as the user that will
be interacting with the file system.`)
}
// Choose UID and GID.
if flags.Uid >= 0 {
uid = uint32(flags.Uid)
}
if flags.Gid >= 0 {
gid = uint32(flags.Gid)
}
bucketCfg := gcsx.BucketConfig{
BillingProject: flags.BillingProject,
OnlyDir: flags.OnlyDir,
EgressBandwidthLimitBytesPerSecond: flags.EgressBandwidthLimitBytesPerSecond,
OpRateLimitHz: flags.OpRateLimitHz,
StatCacheCapacity: flags.StatCacheCapacity,
StatCacheTTL: flags.StatCacheTTL,
EnableMonitoring: flags.StackdriverExportInterval > 0,
AppendThreshold: 1 << 21, // 2 MiB, a total guess.
TmpObjectPrefix: ".gcsfuse_tmp/",
}
bm := gcsx.NewBucketManager(bucketCfg, conn)
// Create a file system server.
serverCfg := &fs.ServerConfig{
CacheClock: timeutil.RealClock(),
BucketManager: bm,
BucketName: bucketName,
LocalFileCache: flags.LocalFileCache,
DebugFS: flags.DebugFS,
TempDir: flags.TempDir,
ImplicitDirectories: flags.ImplicitDirs,
InodeAttributeCacheTTL: flags.StatCacheTTL,
DirTypeCacheTTL: flags.TypeCacheTTL,
Uid: uid,
Gid: gid,
FilePerms: os.FileMode(flags.FileMode),
DirPerms: os.FileMode(flags.DirMode),
RenameDirLimit: flags.RenameDirLimit,
}
logger.Infof("Creating a new server...\n")
server, err := fs.NewServer(ctx, serverCfg)
if err != nil {
err = fmt.Errorf("fs.NewServer: %w", err)
return
}
fsName := bucketName
if bucketName == "" || bucketName == "_" {
// mouting all the buckets at once
fsName = "gcsfuse"
}
// Mount the file system.
status.Printf("Mounting file system %q...", fsName)
mountCfg := &fuse.MountConfig{
FSName: fsName,
Subtype: "gcsfuse",
VolumeName: "gcsfuse",
Options: flags.MountOptions,
ErrorLogger: logger.NewError("fuse: "),
}
if flags.DebugFuse {
mountCfg.DebugLogger = logger.NewDebug("fuse_debug: ")
}
mfs, err = fuse.Mount(mountPoint, server, mountCfg)
if err != nil {
err = fmt.Errorf("Mount: %w", err)
return
}
return
}