summaryrefslogtreecommitdiffhomepage
path: root/pkg/sentry/fs/host/descriptor_test.go
blob: d8e4605b63ac589d0b63eccd9d4b02a8e8820518 (plain)
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
// 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 host

import (
	"io/ioutil"
	"path/filepath"
	"syscall"
	"testing"

	"gvisor.dev/gvisor/pkg/fdnotifier"
	"gvisor.dev/gvisor/pkg/waiter"
)

func TestDescriptorRelease(t *testing.T) {
	for _, tc := range []struct {
		name       string
		saveable   bool
		wouldBlock bool
	}{
		{name: "all false"},
		{name: "saveable", saveable: true},
		{name: "wouldBlock", wouldBlock: true},
	} {
		t.Run(tc.name, func(t *testing.T) {
			dir, err := ioutil.TempDir("", "descriptor_test")
			if err != nil {
				t.Fatal("ioutil.TempDir() failed:", err)
			}

			fd, err := syscall.Open(filepath.Join(dir, "file"), syscall.O_RDWR|syscall.O_CREAT, 0666)
			if err != nil {
				t.Fatal("failed to open temp file:", err)
			}

			// FD ownership is transferred to the descritor.
			queue := &waiter.Queue{}
			d, err := newDescriptor(fd, tc.saveable, tc.wouldBlock, queue)
			if err != nil {
				syscall.Close(fd)
				t.Fatalf("newDescriptor(%d, %t, %t, queue) failed, err: %v", fd, tc.saveable, tc.wouldBlock, err)
			}
			if tc.saveable {
				if d.origFD < 0 {
					t.Errorf("saveable descriptor must preserve origFD, desc: %+v", d)
				}
			}
			if tc.wouldBlock {
				if !fdnotifier.HasFD(int32(d.value)) {
					t.Errorf("FD not registered with notifier, desc: %+v", d)
				}
			}

			oldVal := d.value
			d.Release()
			if d.value != -1 {
				t.Errorf("d.value want: -1, got: %d", d.value)
			}
			if tc.wouldBlock {
				if fdnotifier.HasFD(int32(oldVal)) {
					t.Errorf("FD not unregistered with notifier, desc: %+v", d)
				}
			}
		})
	}
}