forked from bazil/fuse
-
Notifications
You must be signed in to change notification settings - Fork 1
/
options_test.go
306 lines (268 loc) · 6.85 KB
/
options_test.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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
package fuse_test
import (
"bufio"
"context"
"errors"
"flag"
"fmt"
"os"
"runtime"
"syscall"
"testing"
"bazil.org/fuse"
"bazil.org/fuse/fs"
"bazil.org/fuse/fs/fstestutil"
"bazil.org/fuse/fs/fstestutil/spawntest"
"bazil.org/fuse/fs/fstestutil/spawntest/httpjson"
)
func init() {
fstestutil.DebugByDefault()
}
func maybeParallel(t *testing.T) {
// t.Parallel()
}
var helpers spawntest.Registry
func TestMain(m *testing.M) {
helpers.AddFlag(flag.CommandLine)
flag.Parse()
helpers.RunIfNeeded()
os.Exit(m.Run())
}
func TestMountOptionFSName(t *testing.T) {
if runtime.GOOS == "freebsd" {
t.Skip("FreeBSD does not support FSName")
}
maybeParallel(t)
const name = "FuseTestMarker"
mnt, err := fstestutil.MountedT(t, fstestutil.SimpleFS{Node: fstestutil.Dir{}}, nil,
fuse.FSName(name),
)
if err != nil {
t.Fatal(err)
}
defer mnt.Close()
info, err := fstestutil.GetMountInfo(mnt.Dir)
if err != nil {
t.Fatal(err)
}
if g, e := info.FSName, name; g != e {
t.Errorf("wrong FSName: %q != %q", g, e)
}
}
func testMountOptionFSNameEvil(t *testing.T, evil string) {
if runtime.GOOS == "freebsd" {
t.Skip("FreeBSD does not support FSName")
}
maybeParallel(t)
name := "FuseTest" + evil + "Marker"
mnt, err := fstestutil.MountedT(t, fstestutil.SimpleFS{Node: fstestutil.Dir{}}, nil,
fuse.FSName(name),
)
if err != nil {
t.Fatal(err)
}
defer mnt.Close()
info, err := fstestutil.GetMountInfo(mnt.Dir)
if err != nil {
t.Fatal(err)
}
if g, e := info.FSName, name; g != e {
t.Errorf("wrong FSName: %q != %q", g, e)
}
}
func TestMountOptionFSNameEvilComma(t *testing.T) {
testMountOptionFSNameEvil(t, ",")
}
func TestMountOptionFSNameEvilSpace(t *testing.T) {
testMountOptionFSNameEvil(t, " ")
}
func TestMountOptionFSNameEvilTab(t *testing.T) {
testMountOptionFSNameEvil(t, "\t")
}
func TestMountOptionFSNameEvilNewline(t *testing.T) {
testMountOptionFSNameEvil(t, "\n")
}
func TestMountOptionFSNameEvilBackslash(t *testing.T) {
testMountOptionFSNameEvil(t, `\`)
}
func TestMountOptionFSNameEvilBackslashDouble(t *testing.T) {
// catch double-unescaping, if it were to happen
testMountOptionFSNameEvil(t, `\\`)
}
func TestMountOptionSubtype(t *testing.T) {
if runtime.GOOS == "freebsd" {
t.Skip("FreeBSD does not support Subtype")
}
maybeParallel(t)
const name = "FuseTestMarker"
mnt, err := fstestutil.MountedT(t, fstestutil.SimpleFS{Node: fstestutil.Dir{}}, nil,
fuse.Subtype(name),
)
if err != nil {
t.Fatal(err)
}
defer mnt.Close()
info, err := fstestutil.GetMountInfo(mnt.Dir)
if err != nil {
t.Fatal(err)
}
if g, e := info.Type, "fuse."+name; g != e {
t.Errorf("wrong Subtype: %q != %q", g, e)
}
}
func etcFuseHasAllowOther(t testing.TB) bool {
// sucks to go poking around in other programs' config files.
f, err := os.Open("/etc/fuse.conf")
if errors.Is(err, os.ErrNotExist) {
return false
}
if err != nil {
t.Fatal(err)
}
defer f.Close()
scanner := bufio.NewScanner(f)
for scanner.Scan() {
if scanner.Text() == "user_allow_other" {
return true
}
}
if err := scanner.Err(); err != nil {
t.Fatalf("reading /etc/fuse.conf: %v", err)
}
return false
}
func TestMountOptionAllowOther(t *testing.T) {
if !etcFuseHasAllowOther(t) {
t.Skip("need user_allow_other in /etc/fuse.conf")
}
maybeParallel(t)
mnt, err := fstestutil.MountedT(t, fstestutil.SimpleFS{Node: fstestutil.Dir{}}, nil,
fuse.AllowOther(),
)
if err != nil {
t.Fatalf("mount error: %v", err)
}
defer mnt.Close()
// we're not going to bother testing that other users actually can
// access the fs, that's quite fiddly and system specific -- we'd
// need to run as root and switch to some other account for the
// client.
}
type unwritableFile struct{}
func (f unwritableFile) Attr(ctx context.Context, a *fuse.Attr) error {
a.Mode = 0o000
return nil
}
type openRequest struct {
Path string
Flags int
Perm os.FileMode
WantErrno syscall.Errno
}
func doOpenErr(ctx context.Context, req openRequest) (*struct{}, error) {
f, err := os.OpenFile(req.Path, req.Flags, req.Perm)
if err == nil {
f.Close()
}
if !errors.Is(err, req.WantErrno) {
return nil, fmt.Errorf("wrong error: %v", err)
}
return &struct{}{}, nil
}
var openErrHelper = helpers.Register("openErr", httpjson.ServePOST(doOpenErr))
func TestMountOptionDefaultPermissions(t *testing.T) {
if runtime.GOOS == "freebsd" {
t.Skip("FreeBSD does not support DefaultPermissions")
}
if os.Getuid() == 0 {
t.Skip("root cannot be denied by DefaultPermissions")
}
maybeParallel(t)
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
mnt, err := fstestutil.MountedT(t,
fstestutil.SimpleFS{
Node: &fstestutil.ChildMap{"child": unwritableFile{}},
},
nil,
fuse.DefaultPermissions(),
)
if err != nil {
t.Fatal(err)
}
defer mnt.Close()
control := openErrHelper.Spawn(ctx, t)
defer control.Close()
// This will be prevented by kernel-level access checking when
// DefaultPermissions is used.
req := openRequest{
Path: mnt.Dir + "/child",
Flags: os.O_WRONLY,
Perm: 0,
WantErrno: syscall.EACCES,
}
var nothing struct{}
if err := control.JSON("/").Call(ctx, req, ¬hing); err != nil {
t.Fatalf("calling helper: %v", err)
}
}
type createrDir struct {
fstestutil.Dir
}
var _ fs.NodeCreater = createrDir{}
func (createrDir) Create(ctx context.Context, req *fuse.CreateRequest, resp *fuse.CreateResponse) (fs.Node, fs.Handle, error) {
// pick a really distinct error, to identify it later
return nil, nil, fuse.Errno(syscall.ENAMETOOLONG)
}
func TestMountOptionReadOnly(t *testing.T) {
maybeParallel(t)
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
mnt, err := fstestutil.MountedT(t,
fstestutil.SimpleFS{Node: createrDir{}},
nil,
fuse.ReadOnly(),
)
if err != nil {
t.Fatal(err)
}
defer mnt.Close()
control := openErrHelper.Spawn(ctx, t)
defer control.Close()
// This will be prevented by kernel-level access checking when
// ReadOnly is used.
req := openRequest{
Path: mnt.Dir + "/child",
Flags: os.O_WRONLY | os.O_CREATE,
Perm: 0,
WantErrno: syscall.EROFS,
}
var nothing struct{}
if err := control.JSON("/").Call(ctx, req, ¬hing); err != nil {
t.Fatalf("calling helper: %v", err)
}
}
func TestMountOptionMaxBackground(t *testing.T) {
maybeParallel(t)
mnt, err := fstestutil.MountedT(t, fstestutil.SimpleFS{Node: fstestutil.Dir{}}, nil,
fuse.MaxBackground(4),
)
if err != nil {
t.Fatal(err)
}
defer mnt.Close()
// TODO figure out our connection id and read
// /sys/fs/fuse/connections/NUM/max_background
}
func TestMountOptionCongestionThreshold(t *testing.T) {
maybeParallel(t)
mnt, err := fstestutil.MountedT(t, fstestutil.SimpleFS{Node: fstestutil.Dir{}}, nil,
fuse.CongestionThreshold(3),
)
if err != nil {
t.Fatal(err)
}
defer mnt.Close()
// TODO figure out our connection id and read
// /sys/fs/fuse/connections/NUM/congestion_threshold
}