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
|
// 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 syserror_test
import (
"errors"
"io"
"io/fs"
"syscall"
"testing"
"golang.org/x/sys/unix"
"gvisor.dev/gvisor/pkg/abi/linux/errno"
gErrors "gvisor.dev/gvisor/pkg/errors"
"gvisor.dev/gvisor/pkg/errors/linuxerr"
"gvisor.dev/gvisor/pkg/syserror"
)
var globalError error
func BenchmarkAssignUnix(b *testing.B) {
for i := b.N; i > 0; i-- {
globalError = unix.EINVAL
}
}
func BenchmarkAssignLinuxerr(b *testing.B) {
for i := b.N; i > 0; i-- {
globalError = linuxerr.EINVAL
}
}
func BenchmarkAssignSyserror(b *testing.B) {
for i := b.N; i > 0; i-- {
globalError = syserror.EINVAL
}
}
func BenchmarkCompareUnix(b *testing.B) {
globalError = unix.EAGAIN
j := 0
for i := b.N; i > 0; i-- {
if globalError == unix.EINVAL {
j++
}
}
}
func BenchmarkCompareLinuxerr(b *testing.B) {
globalError = linuxerr.E2BIG
j := 0
for i := b.N; i > 0; i-- {
if globalError == linuxerr.EINVAL {
j++
}
}
}
func BenchmarkCompareSyserror(b *testing.B) {
globalError = syserror.EAGAIN
j := 0
for i := b.N; i > 0; i-- {
if globalError == syserror.EINVAL {
j++
}
}
}
func BenchmarkSwitchUnix(b *testing.B) {
globalError = unix.EPERM
j := 0
for i := b.N; i > 0; i-- {
switch globalError {
case unix.EINVAL:
j++
case unix.EINTR:
j += 2
case unix.EAGAIN:
j += 3
}
}
}
func BenchmarkSwitchLinuxerr(b *testing.B) {
globalError = linuxerr.EPERM
j := 0
for i := b.N; i > 0; i-- {
switch globalError {
case linuxerr.EINVAL:
j++
case linuxerr.EINTR:
j += 2
case linuxerr.EAGAIN:
j += 3
}
}
}
func BenchmarkSwitchSyserror(b *testing.B) {
globalError = syserror.EPERM
j := 0
for i := b.N; i > 0; i-- {
switch globalError {
case syserror.EINVAL:
j++
case syserror.EINTR:
j += 2
case syserror.EAGAIN:
j += 3
}
}
}
func BenchmarkReturnUnix(b *testing.B) {
var localError error
f := func() error {
return unix.EINVAL
}
for i := b.N; i > 0; i-- {
localError = f()
}
if localError != nil {
return
}
}
func BenchmarkReturnLinuxerr(b *testing.B) {
var localError error
f := func() error {
return linuxerr.EINVAL
}
for i := b.N; i > 0; i-- {
localError = f()
}
if localError != nil {
return
}
}
func BenchmarkConvertUnixLinuxerr(b *testing.B) {
var localError error
for i := b.N; i > 0; i-- {
localError = linuxerr.ErrorFromErrno(errno.Errno(unix.EINVAL))
}
if localError != nil {
return
}
}
func BenchmarkConvertUnixLinuxerrZero(b *testing.B) {
var localError error
for i := b.N; i > 0; i-- {
localError = linuxerr.ErrorFromErrno(errno.Errno(0))
}
if localError != nil {
return
}
}
type translationTestTable struct {
fn string
errIn error
syscallErrorIn unix.Errno
expectedBool bool
expectedTranslation unix.Errno
}
func TestErrorTranslation(t *testing.T) {
myError := errors.New("My test error")
myError2 := errors.New("Another test error")
testTable := []translationTestTable{
{"TranslateError", myError, 0, false, 0},
{"TranslateError", myError2, 0, false, 0},
{"AddErrorTranslation", myError, unix.EAGAIN, true, 0},
{"AddErrorTranslation", myError, unix.EAGAIN, false, 0},
{"AddErrorTranslation", myError, unix.EPERM, false, 0},
{"TranslateError", myError, 0, true, unix.EAGAIN},
{"TranslateError", myError2, 0, false, 0},
{"AddErrorTranslation", myError2, unix.EPERM, true, 0},
{"AddErrorTranslation", myError2, unix.EPERM, false, 0},
{"AddErrorTranslation", myError2, unix.EAGAIN, false, 0},
{"TranslateError", myError, 0, true, unix.EAGAIN},
{"TranslateError", myError2, 0, true, unix.EPERM},
}
for _, tt := range testTable {
switch tt.fn {
case "TranslateError":
err, ok := syserror.TranslateError(tt.errIn)
if ok != tt.expectedBool {
t.Fatalf("%v(%v) => %v expected %v", tt.fn, tt.errIn, ok, tt.expectedBool)
} else if err != tt.expectedTranslation {
t.Fatalf("%v(%v) (error) => %v expected %v", tt.fn, tt.errIn, err, tt.expectedTranslation)
}
case "AddErrorTranslation":
ok := syserror.AddErrorTranslation(tt.errIn, tt.syscallErrorIn)
if ok != tt.expectedBool {
t.Fatalf("%v(%v) => %v expected %v", tt.fn, tt.errIn, ok, tt.expectedBool)
}
default:
t.Fatalf("Unknown function %v", tt.fn)
}
}
}
func TestSyscallErrnoToErrors(t *testing.T) {
for _, tc := range []struct {
errno syscall.Errno
err *gErrors.Error
}{
{errno: syscall.EACCES, err: linuxerr.EACCES},
{errno: syscall.EAGAIN, err: linuxerr.EAGAIN},
{errno: syscall.EBADF, err: linuxerr.EBADF},
{errno: syscall.EBUSY, err: linuxerr.EBUSY},
{errno: syscall.EDOM, err: linuxerr.EDOM},
{errno: syscall.EEXIST, err: linuxerr.EEXIST},
{errno: syscall.EFAULT, err: linuxerr.EFAULT},
{errno: syscall.EFBIG, err: linuxerr.EFBIG},
{errno: syscall.EINTR, err: linuxerr.EINTR},
{errno: syscall.EINVAL, err: linuxerr.EINVAL},
{errno: syscall.EIO, err: linuxerr.EIO},
{errno: syscall.ENOTDIR, err: linuxerr.ENOTDIR},
{errno: syscall.ENOTTY, err: linuxerr.ENOTTY},
{errno: syscall.EPERM, err: linuxerr.EPERM},
{errno: syscall.EPIPE, err: linuxerr.EPIPE},
{errno: syscall.ESPIPE, err: linuxerr.ESPIPE},
{errno: syscall.EWOULDBLOCK, err: linuxerr.EAGAIN},
} {
t.Run(tc.errno.Error(), func(t *testing.T) {
e := linuxerr.ErrorFromErrno(errno.Errno(tc.errno))
if e != tc.err {
t.Fatalf("Mismatch errors: want: %+v (%d) got: %+v %d", tc.err, tc.err.Errno(), e, e.Errno())
}
})
}
}
// TestEqualsMethod tests that the Equals method correctly compares syerror,
// unix.Errno and linuxerr.
// TODO (b/34162363): Remove this.
func TestEqualsMethod(t *testing.T) {
for _, tc := range []struct {
name string
linuxErr []*gErrors.Error
err []error
equal bool
}{
{
name: "compare nil",
linuxErr: []*gErrors.Error{nil, linuxerr.NOERROR},
err: []error{nil, linuxerr.NOERROR, unix.Errno(0)},
equal: true,
},
{
name: "linuxerr nil error not",
linuxErr: []*gErrors.Error{nil, linuxerr.NOERROR},
err: []error{unix.Errno(1), linuxerr.EPERM, syserror.EACCES},
equal: false,
},
{
name: "linuxerr not nil error nil",
linuxErr: []*gErrors.Error{linuxerr.ENOENT},
err: []error{nil, unix.Errno(0), linuxerr.NOERROR},
equal: false,
},
{
name: "equal errors",
linuxErr: []*gErrors.Error{linuxerr.ESRCH},
err: []error{linuxerr.ESRCH, syserror.ESRCH, unix.Errno(linuxerr.ESRCH.Errno())},
equal: true,
},
{
name: "unequal errors",
linuxErr: []*gErrors.Error{linuxerr.ENOENT},
err: []error{linuxerr.ESRCH, syserror.ESRCH, unix.Errno(linuxerr.ESRCH.Errno())},
equal: false,
},
{
name: "other error",
linuxErr: []*gErrors.Error{nil, linuxerr.NOERROR, linuxerr.E2BIG, linuxerr.EINVAL},
err: []error{fs.ErrInvalid, io.EOF},
equal: false,
},
} {
t.Run(tc.name, func(t *testing.T) {
for _, le := range tc.linuxErr {
for _, e := range tc.err {
if linuxerr.Equals(le, e) != tc.equal {
t.Fatalf("Expected %t from Equals method for linuxerr: %s %T and error: %s %T", tc.equal, le, le, e, e)
}
}
}
})
}
}
|