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
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
|
// Copyright 2018 The gVisor Authors.
//
// 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 fdpipe
import (
"bytes"
"io"
"os"
"syscall"
"testing"
"gvisor.dev/gvisor/pkg/fd"
"gvisor.dev/gvisor/pkg/fdnotifier"
"gvisor.dev/gvisor/pkg/sentry/contexttest"
"gvisor.dev/gvisor/pkg/sentry/fs"
"gvisor.dev/gvisor/pkg/syserror"
"gvisor.dev/gvisor/pkg/usermem"
)
func singlePipeFD() (int, error) {
fds := make([]int, 2)
if err := syscall.Pipe(fds); err != nil {
return -1, err
}
syscall.Close(fds[1])
return fds[0], nil
}
func singleDirFD() (int, error) {
return syscall.Open(os.TempDir(), syscall.O_RDONLY, 0666)
}
func mockPipeDirent(t *testing.T) *fs.Dirent {
ctx := contexttest.Context(t)
node := fs.NewMockInodeOperations(ctx)
node.UAttr = fs.UnstableAttr{
Perms: fs.FilePermissions{
User: fs.PermMask{Read: true, Write: true},
},
}
inode := fs.NewInode(ctx, node, fs.NewMockMountSource(nil), fs.StableAttr{
Type: fs.Pipe,
BlockSize: usermem.PageSize,
})
return fs.NewDirent(ctx, inode, "")
}
func TestNewPipe(t *testing.T) {
for _, test := range []struct {
// desc is the test's description.
desc string
// getfd generates the fd to pass to newPipeOperations.
getfd func() (int, error)
// flags are the fs.FileFlags passed to newPipeOperations.
flags fs.FileFlags
// readAheadBuffer is the buffer passed to newPipeOperations.
readAheadBuffer []byte
// err is the expected error.
err error
}{
{
desc: "Cannot make new pipe from bad fd",
getfd: func() (int, error) { return -1, nil },
err: syscall.EINVAL,
},
{
desc: "Cannot make new pipe from non-pipe fd",
getfd: singleDirFD,
err: syscall.EINVAL,
},
{
desc: "Can make new pipe from pipe fd",
getfd: singlePipeFD,
flags: fs.FileFlags{Read: true},
readAheadBuffer: []byte("hello"),
},
} {
gfd, err := test.getfd()
if err != nil {
t.Errorf("%s: getfd got (%d, %v), want (fd, nil)", test.desc, gfd, err)
continue
}
f := fd.New(gfd)
ctx := contexttest.Context(t)
p, err := newPipeOperations(ctx, nil, test.flags, f, test.readAheadBuffer)
if p != nil {
// This is necessary to remove the fd from the global fd notifier.
defer p.Release(ctx)
} else {
// If there is no p to DecRef on, because newPipeOperations failed, then the
// file still needs to be closed.
defer f.Close()
}
if err != test.err {
t.Errorf("%s: got error %v, want %v", test.desc, err, test.err)
continue
}
// Check the state of the pipe given that it was successfully opened.
if err == nil {
if p == nil {
t.Errorf("%s: got nil pipe and nil error, want (pipe, nil)", test.desc)
continue
}
if flags := p.flags; test.flags != flags {
t.Errorf("%s: got file flags %v, want %v", test.desc, flags, test.flags)
continue
}
if len(test.readAheadBuffer) != len(p.readAheadBuffer) {
t.Errorf("%s: got read ahead buffer length %d, want %d", test.desc, len(p.readAheadBuffer), len(test.readAheadBuffer))
continue
}
fileFlags, _, errno := syscall.Syscall(syscall.SYS_FCNTL, uintptr(p.file.FD()), syscall.F_GETFL, 0)
if errno != 0 {
t.Errorf("%s: failed to get file flags for fd %d, got %v, want 0", test.desc, p.file.FD(), errno)
continue
}
if fileFlags&syscall.O_NONBLOCK == 0 {
t.Errorf("%s: pipe is blocking, expected non-blocking", test.desc)
continue
}
if !fdnotifier.HasFD(int32(f.FD())) {
t.Errorf("%s: pipe fd %d is not registered for events", test.desc, f.FD())
}
}
}
}
func TestPipeDestruction(t *testing.T) {
fds := make([]int, 2)
if err := syscall.Pipe(fds); err != nil {
t.Fatalf("failed to create pipes: got %v, want nil", err)
}
f := fd.New(fds[0])
// We don't care about the other end, just use the read end.
syscall.Close(fds[1])
// Test the read end, but it doesn't really matter which.
ctx := contexttest.Context(t)
p, err := newPipeOperations(ctx, nil, fs.FileFlags{Read: true}, f, nil)
if err != nil {
f.Close()
t.Fatalf("newPipeOperations got error %v, want nil", err)
}
// Drop our only reference, which should trigger the destructor.
p.Release(ctx)
if fdnotifier.HasFD(int32(fds[0])) {
t.Fatalf("after DecRef fdnotifier has fd %d, want no longer registered", fds[0])
}
if p.file != nil {
t.Errorf("after DecRef got file, want nil")
}
}
type Seek struct{}
type ReadDir struct{}
type Writev struct {
Src usermem.IOSequence
}
type Readv struct {
Dst usermem.IOSequence
}
type Fsync struct{}
func TestPipeRequest(t *testing.T) {
for _, test := range []struct {
// desc is the test's description.
desc string
// request to execute.
context interface{}
// flags determines whether to use the read or write end
// of the pipe, for this test it can only be Read or Write.
flags fs.FileFlags
// keepOpenPartner if false closes the other end of the pipe,
// otherwise this is delayed until the end of the test.
keepOpenPartner bool
// expected error
err error
}{
{
desc: "ReadDir on pipe returns ENOTDIR",
context: &ReadDir{},
err: syscall.ENOTDIR,
},
{
desc: "Fsync on pipe returns EINVAL",
context: &Fsync{},
err: syscall.EINVAL,
},
{
desc: "Seek on pipe returns ESPIPE",
context: &Seek{},
err: syscall.ESPIPE,
},
{
desc: "Readv on pipe from empty buffer returns nil",
context: &Readv{Dst: usermem.BytesIOSequence(nil)},
flags: fs.FileFlags{Read: true},
},
{
desc: "Readv on pipe from non-empty buffer and closed partner returns EOF",
context: &Readv{Dst: usermem.BytesIOSequence(make([]byte, 10))},
flags: fs.FileFlags{Read: true},
err: io.EOF,
},
{
desc: "Readv on pipe from non-empty buffer and open partner returns EWOULDBLOCK",
context: &Readv{Dst: usermem.BytesIOSequence(make([]byte, 10))},
flags: fs.FileFlags{Read: true},
keepOpenPartner: true,
err: syserror.ErrWouldBlock,
},
{
desc: "Writev on pipe from empty buffer returns nil",
context: &Writev{Src: usermem.BytesIOSequence(nil)},
flags: fs.FileFlags{Write: true},
},
{
desc: "Writev on pipe from non-empty buffer and closed partner returns EPIPE",
context: &Writev{Src: usermem.BytesIOSequence([]byte("hello"))},
flags: fs.FileFlags{Write: true},
err: syscall.EPIPE,
},
{
desc: "Writev on pipe from non-empty buffer and open partner succeeds",
context: &Writev{Src: usermem.BytesIOSequence([]byte("hello"))},
flags: fs.FileFlags{Write: true},
keepOpenPartner: true,
},
} {
if test.flags.Read && test.flags.Write {
panic("both read and write not supported for this test")
}
fds := make([]int, 2)
if err := syscall.Pipe(fds); err != nil {
t.Errorf("%s: failed to create pipes: got %v, want nil", test.desc, err)
continue
}
// Configure the fd and partner fd based on the file flags.
testFd, partnerFd := fds[0], fds[1]
if test.flags.Write {
testFd, partnerFd = fds[1], fds[0]
}
// Configure closing the fds.
if test.keepOpenPartner {
defer syscall.Close(partnerFd)
} else {
syscall.Close(partnerFd)
}
// Create the pipe.
ctx := contexttest.Context(t)
p, err := newPipeOperations(ctx, nil, test.flags, fd.New(testFd), nil)
if err != nil {
t.Fatalf("%s: newPipeOperations got error %v, want nil", test.desc, err)
}
defer p.Release(ctx)
inode := fs.NewMockInode(ctx, fs.NewMockMountSource(nil), fs.StableAttr{Type: fs.Pipe})
file := fs.NewFile(ctx, fs.NewDirent(ctx, inode, "pipe"), fs.FileFlags{Read: true}, p)
// Issue request via the appropriate function.
switch c := test.context.(type) {
case *Seek:
_, err = p.Seek(ctx, file, 0, 0)
case *ReadDir:
_, err = p.Readdir(ctx, file, nil)
case *Readv:
_, err = p.Read(ctx, file, c.Dst, 0)
case *Writev:
_, err = p.Write(ctx, file, c.Src, 0)
case *Fsync:
err = p.Fsync(ctx, file, 0, fs.FileMaxOffset, fs.SyncAll)
default:
t.Errorf("%s: unknown request type %T", test.desc, test.context)
}
if unwrapError(err) != test.err {
t.Errorf("%s: got error %v, want %v", test.desc, err, test.err)
}
}
}
func TestPipeReadAheadBuffer(t *testing.T) {
fds := make([]int, 2)
if err := syscall.Pipe(fds); err != nil {
t.Fatalf("failed to create pipes: got %v, want nil", err)
}
rfile := fd.New(fds[0])
// Eventually close the write end, which is not wrapped in a pipe object.
defer syscall.Close(fds[1])
// Write some bytes to this end.
data := []byte("world")
if n, err := syscall.Write(fds[1], data); n != len(data) || err != nil {
rfile.Close()
t.Fatalf("write to pipe got (%d, %v), want (%d, nil)", n, err, len(data))
}
// Close the write end immediately, we don't care about it.
buffered := []byte("hello ")
ctx := contexttest.Context(t)
p, err := newPipeOperations(ctx, nil, fs.FileFlags{Read: true}, rfile, buffered)
if err != nil {
rfile.Close()
t.Fatalf("newPipeOperations got error %v, want nil", err)
}
defer p.Release(ctx)
inode := fs.NewMockInode(ctx, fs.NewMockMountSource(nil), fs.StableAttr{
Type: fs.Pipe,
})
file := fs.NewFile(ctx, fs.NewDirent(ctx, inode, "pipe"), fs.FileFlags{Read: true}, p)
// In total we expect to read data + buffered.
total := append(buffered, data...)
buf := make([]byte, len(total))
iov := usermem.BytesIOSequence(buf)
n, err := p.Read(contexttest.Context(t), file, iov, 0)
if err != nil {
t.Fatalf("read request got error %v, want nil", err)
}
if n != int64(len(total)) {
t.Fatalf("read request got %d bytes, want %d", n, len(total))
}
if !bytes.Equal(buf, total) {
t.Errorf("read request got bytes [%v], want [%v]", buf, total)
}
}
// This is very important for pipes in general because they can return
// EWOULDBLOCK and for those that block they must continue until they have read
// all of the data (and report it as such).
func TestPipeReadsAccumulate(t *testing.T) {
fds := make([]int, 2)
if err := syscall.Pipe(fds); err != nil {
t.Fatalf("failed to create pipes: got %v, want nil", err)
}
rfile := fd.New(fds[0])
// Eventually close the write end, it doesn't depend on a pipe object.
defer syscall.Close(fds[1])
// Get a new read only pipe reference.
ctx := contexttest.Context(t)
p, err := newPipeOperations(ctx, nil, fs.FileFlags{Read: true}, rfile, nil)
if err != nil {
rfile.Close()
t.Fatalf("newPipeOperations got error %v, want nil", err)
}
// Don't forget to remove the fd from the fd notifier. Otherwise other tests will
// likely be borked, because it's global :(
defer p.Release(ctx)
inode := fs.NewMockInode(ctx, fs.NewMockMountSource(nil), fs.StableAttr{
Type: fs.Pipe,
})
file := fs.NewFile(ctx, fs.NewDirent(ctx, inode, "pipe"), fs.FileFlags{Read: true}, p)
// Write some some bytes to the pipe.
data := []byte("some message")
if n, err := syscall.Write(fds[1], data); n != len(data) || err != nil {
t.Fatalf("write to pipe got (%d, %v), want (%d, nil)", n, err, len(data))
}
// Construct a segment vec that is a bit more than we have written so we
// trigger an EWOULDBLOCK.
wantBytes := len(data) + 1
readBuffer := make([]byte, wantBytes)
iov := usermem.BytesIOSequence(readBuffer)
n, err := p.Read(ctx, file, iov, 0)
total := n
iov = iov.DropFirst64(n)
if err != syserror.ErrWouldBlock {
t.Fatalf("Readv got error %v, want %v", err, syserror.ErrWouldBlock)
}
// Write a few more bytes to allow us to read more/accumulate.
extra := []byte("extra")
if n, err := syscall.Write(fds[1], extra); n != len(extra) || err != nil {
t.Fatalf("write to pipe got (%d, %v), want (%d, nil)", n, err, len(extra))
}
// This time, using the same request, we should not block.
n, err = p.Read(ctx, file, iov, 0)
total += n
if err != nil {
t.Fatalf("Readv got error %v, want nil", err)
}
// Assert that the result we got back is cumulative.
if total != int64(wantBytes) {
t.Fatalf("Readv sequence got %d bytes, want %d", total, wantBytes)
}
if want := append(data, extra[0]); !bytes.Equal(readBuffer, want) {
t.Errorf("Readv sequence got %v, want %v", readBuffer, want)
}
}
// Same as TestReadsAccumulate.
func TestPipeWritesAccumulate(t *testing.T) {
fds := make([]int, 2)
if err := syscall.Pipe(fds); err != nil {
t.Fatalf("failed to create pipes: got %v, want nil", err)
}
wfile := fd.New(fds[1])
// Eventually close the read end, it doesn't depend on a pipe object.
defer syscall.Close(fds[0])
// Get a new write only pipe reference.
ctx := contexttest.Context(t)
p, err := newPipeOperations(ctx, nil, fs.FileFlags{Write: true}, wfile, nil)
if err != nil {
wfile.Close()
t.Fatalf("newPipeOperations got error %v, want nil", err)
}
// Don't forget to remove the fd from the fd notifier. Otherwise other tests
// will likely be borked, because it's global :(
defer p.Release(ctx)
inode := fs.NewMockInode(ctx, fs.NewMockMountSource(nil), fs.StableAttr{
Type: fs.Pipe,
})
file := fs.NewFile(ctx, fs.NewDirent(ctx, inode, "pipe"), fs.FileFlags{Read: true}, p)
pipeSize, _, errno := syscall.Syscall(syscall.SYS_FCNTL, uintptr(wfile.FD()), syscall.F_GETPIPE_SZ, 0)
if errno != 0 {
t.Fatalf("fcntl(F_GETPIPE_SZ) failed: %v", errno)
}
t.Logf("Pipe buffer size: %d", pipeSize)
// Construct a segment vec that is larger than the pipe size to trigger an
// EWOULDBLOCK.
wantBytes := int(pipeSize) * 2
writeBuffer := make([]byte, wantBytes)
for i := 0; i < wantBytes; i++ {
writeBuffer[i] = 'a'
}
iov := usermem.BytesIOSequence(writeBuffer)
n, err := p.Write(ctx, file, iov, 0)
if err != syserror.ErrWouldBlock {
t.Fatalf("Writev got error %v, want %v", err, syserror.ErrWouldBlock)
}
if n != int64(pipeSize) {
t.Fatalf("Writev partial write, got: %v, want %v", n, pipeSize)
}
total := n
iov = iov.DropFirst64(n)
// Read the entire pipe buf size to make space for the second half.
readBuffer := make([]byte, n)
if n, err := syscall.Read(fds[0], readBuffer); n != len(readBuffer) || err != nil {
t.Fatalf("write to pipe got (%d, %v), want (%d, nil)", n, err, len(readBuffer))
}
if !bytes.Equal(readBuffer, writeBuffer[:len(readBuffer)]) {
t.Fatalf("wrong data read from pipe, got: %v, want: %v", readBuffer, writeBuffer)
}
// This time we should not block.
n, err = p.Write(ctx, file, iov, 0)
if err != nil {
t.Fatalf("Writev got error %v, want nil", err)
}
if n != int64(pipeSize) {
t.Fatalf("Writev partial write, got: %v, want %v", n, pipeSize)
}
total += n
// Assert that the result we got back is cumulative.
if total != int64(wantBytes) {
t.Fatalf("Writev sequence got %d bytes, want %d", total, wantBytes)
}
}
|