-
Notifications
You must be signed in to change notification settings - Fork 18
/
procfs_linux_test.go
425 lines (365 loc) · 14.8 KB
/
procfs_linux_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
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
//go:build linux
// Copyright (C) 2024 SUSE LLC. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package securejoin
import (
"errors"
"fmt"
"os"
"path"
"runtime"
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"golang.org/x/sys/unix"
)
func doMount(t *testing.T, source, target, fsType string, flags uintptr) {
var sourcePath string
if source != "" {
// In order to be able to bind-mount a symlink source we need to
// bind-mount using an O_PATH|O_NOFOLLOW of the source.
file, err := os.OpenFile(source, unix.O_PATH|unix.O_NOFOLLOW|unix.O_CLOEXEC, 0)
require.NoError(t, err)
defer runtime.KeepAlive(file)
defer file.Close()
sourcePath = fmt.Sprintf("/proc/self/fd/%d", file.Fd())
}
var targetPath string
if target != "" {
// In order to be able to mount on top of symlinks we need to
// bind-mount through an O_PATH|O_NOFOLLOW of the target.
file, err := os.OpenFile(target, unix.O_PATH|unix.O_NOFOLLOW|unix.O_CLOEXEC, 0)
require.NoError(t, err)
defer runtime.KeepAlive(file)
defer file.Close()
targetPath = fmt.Sprintf("/proc/self/fd/%d", file.Fd())
}
err := unix.Mount(sourcePath, targetPath, fsType, flags, "")
if errors.Is(err, unix.ENOENT) {
// Future kernels will block these kinds of mounts by marking all of
// these dentries with dont_mount(), which returns -ENOENT from mount.
// See <https://lore.kernel.org/all/[email protected]/>,
// which should make it into Linux 6.12. So ignore those errors.
t.Skipf("current kernel does not allow /proc overmounts -- all proc operations are implicitly safe")
}
require.NoErrorf(t, err, "mount(%s<%s>, %s<%s>, %s, 0x%x)", sourcePath, source, targetPath, target, fsType, flags)
}
func setupMountNamespace(t *testing.T) {
requireRoot(t)
// Lock our thread because we need to create a custom mount namespace. Each
// test run is run in its own goroutine (this is not _explicitly_
// guaranteed by Go but t.FailNow() uses Goexit, which means it has to be
// true in practice) so locking the test to this thread means the other
// tests will run on different goroutines.
//
// There is no UnlockOSThread() here, to ensure that the Go runtime will
// kill this thread once this goroutine returns (ensuring no other
// goroutines run in this context).
runtime.LockOSThread()
// New mount namespace (we are multi-threaded with a shared fs so we need
// CLONE_FS to split us from the other threads in the Go process).
err := unix.Unshare(unix.CLONE_FS | unix.CLONE_NEWNS)
require.NoError(t, err, "new mount namespace")
// Private /.
err = unix.Mount("", "/", "", unix.MS_PRIVATE|unix.MS_REC, "")
require.NoError(t, err)
}
func testProcThreadSelf(t *testing.T, procRoot *os.File, subpath string, expectErr bool) {
handle, closer, err := procThreadSelf(procRoot, subpath)
if expectErr {
assert.ErrorIsf(t, err, errUnsafeProcfs, "should have detected /proc/thread-self/%s overmount", subpath)
} else if assert.NoErrorf(t, err, "/proc/thread-self/%s open should succeed", subpath) {
_ = handle.Close()
closer() // LockOSThread stacks, so we can call this safely.
}
}
type procRootFunc func() (*os.File, error)
func testProcOvermountSubdir(t *testing.T, procRootFn procRootFunc, expectOvermounts bool) {
testForceProcThreadSelf(t, func(t *testing.T) {
setupMountNamespace(t)
// Create some overmounts on /proc/{thread-self/,self/}.
for _, procThreadSelfPath := range []string{
fmt.Sprintf("/proc/self/task/%d", unix.Gettid()),
"/proc/self",
} {
for _, mount := range []struct {
source, targetSubPath, fsType string
flags uintptr
}{
// A tmpfs on top of /proc/thread-self/fdinfo to check whether
// verifyProcRoot() works on old kernels.
{"", "fdinfo", "tmpfs", 0},
// A bind-mount of noop-write real procfs file on top of
// /proc/thread-self/attr/current so we can test whether
// verifyProcRoot() works for the file case.
//
// We don't use procThreadSelf for files in filepath-securejoin, but
// this is to test the runc-equivalent behaviour for when this logic is
// moved to libpathrs.
{"/proc/self/sched", "attr/current", "", unix.MS_BIND},
// Bind-mounts on top of symlinks should be detected by
// checkSymlinkOvermount.
{"/proc/1/fd/0", "exe", "", unix.MS_BIND},
{"/proc/1/exe", "fd/0", "", unix.MS_BIND},
// TODO: Add a test for mounting on top of /proc/self or
// /proc/thread-self. This should be detected with openat2.
} {
target := path.Join(procThreadSelfPath, mount.targetSubPath)
doMount(t, mount.source, target, mount.fsType, mount.flags)
}
}
procRoot, err := procRootFn()
require.NoError(t, err)
defer procRoot.Close()
// We expect to always detect tmpfs overmounts if we have a /proc with
// overmounts.
detectFdinfo := expectOvermounts
testProcThreadSelf(t, procRoot, "fdinfo", detectFdinfo)
// We only expect to detect procfs bind-mounts if there are /proc
// overmounts and we have openat2.
detectAttrCurrent := expectOvermounts && hasOpenat2()
testProcThreadSelf(t, procRoot, "attr/current", detectAttrCurrent)
// For magic-links we expect to detect overmounts if there are any.
symlinkOvermountErr := errUnsafeProcfs
if !expectOvermounts {
symlinkOvermountErr = nil
}
procSelf, closer, err := procThreadSelf(procRoot, ".")
require.NoError(t, err)
defer procSelf.Close()
defer closer()
// Open these paths directly to emulate a non-openat2 handle that
// didn't detect a bind-mount to check that checkSymlinkOvermount works
// properly for AT_EMPTY_PATH checks as well.
procCwd, err := openatFile(procSelf, "cwd", unix.O_PATH|unix.O_NOFOLLOW|unix.O_CLOEXEC, 0)
require.NoError(t, err)
defer procCwd.Close()
procExe, err := openatFile(procSelf, "exe", unix.O_PATH|unix.O_NOFOLLOW|unix.O_CLOEXEC, 0)
require.NoError(t, err)
defer procExe.Close()
// no overmount
err = checkSymlinkOvermount(procRoot, procCwd, "")
assert.NoError(t, err, "checking /proc/self/cwd with no overmount should succeed")
err = checkSymlinkOvermount(procRoot, procSelf, "cwd")
assert.NoError(t, err, "checking /proc/self/cwd with no overmount should succeed")
// basic overmount
err = checkSymlinkOvermount(procRoot, procExe, "")
assert.ErrorIs(t, err, symlinkOvermountErr, "unexpected /proc/self/exe overmount result")
err = checkSymlinkOvermount(procRoot, procSelf, "exe")
assert.ErrorIs(t, err, symlinkOvermountErr, "unexpected /proc/self/exe overmount result")
// fd no overmount
_, err = doRawProcSelfFdReadlink(procRoot, 1)
assert.NoError(t, err, "checking /proc/self/fd/1 with no overmount should succeed")
// fd overmount
link, err := doRawProcSelfFdReadlink(procRoot, 0)
assert.ErrorIs(t, err, symlinkOvermountErr, "unexpected /proc/self/fd/0 overmount result: got link %q", link)
})
}
func TestProcOvermountSubdir_unsafeHostProcRoot(t *testing.T) {
withWithoutOpenat2(t, true, func(t *testing.T) {
// If we use the host /proc directly, we should see overmounts.
testProcOvermountSubdir(t, unsafeHostProcRoot, true)
})
}
func TestProcOvermountSubdir_newPrivateProcMount(t *testing.T) {
if !hasNewMountApi() {
t.Skip("test requires fsopen/open_tree support")
}
withWithoutOpenat2(t, true, func(t *testing.T) {
// If we create our own procfs, the overmounts shouldn't appear.
testProcOvermountSubdir(t, newPrivateProcMount, false)
})
}
func TestProcOvermountSubdir_clonePrivateProcMount(t *testing.T) {
if !hasNewMountApi() {
t.Skip("test requires fsopen/open_tree support")
}
withWithoutOpenat2(t, true, func(t *testing.T) {
// If we use open_tree(2), we don't use AT_RECURSIVE when running in
// this test (because the overmounts are not locked mounts) and so we
// don't expect to see overmounts.
testProcOvermountSubdir(t, clonePrivateProcMount, false)
})
}
func TestProcOvermountSubdir_doGetProcRoot(t *testing.T) {
withWithoutOpenat2(t, true, func(t *testing.T) {
// We expect to not get overmounts if we have the new mount API.
// FIXME: It's possible to hit overmounts if there are locked mounts
// and we hit the AT_RECURSIVE case...
testProcOvermountSubdir(t, doGetProcRoot, !hasNewMountApi())
})
}
func TestProcOvermountSubdir_doGetProcRoot_Mocked(t *testing.T) {
if !hasNewMountApi() {
t.Skip("test requires fsopen/open_tree support")
}
withWithoutOpenat2(t, true, func(t *testing.T) {
testForceGetProcRoot(t, func(t *testing.T, expectOvermounts bool) {
testProcOvermountSubdir(t, doGetProcRoot, expectOvermounts)
})
})
}
func canFsOpen() bool {
f, err := fsopen("tmpfs", 0)
if f != nil {
_ = f.Close()
}
return err == nil
}
func testProcOvermount(t *testing.T, procRootFn procRootFunc, privateProcMount bool) {
testForceProcThreadSelf(t, func(t *testing.T) {
for _, mount := range []struct {
source, fsType string
flags uintptr
}{
// Try a non-procfs filesystem overmount.
{"", "tmpfs", 0},
// Try a procfs subdir overmount.
{"/proc/tty", "bind", unix.MS_BIND},
} {
mount := mount // copy iterator
t.Run("procmount="+mount.fsType, func(t *testing.T) {
setupMountNamespace(t)
doMount(t, mount.source, "/proc", mount.fsType, mount.flags)
procRoot, err := procRootFn()
if procRoot != nil {
defer procRoot.Close()
}
if privateProcMount {
assert.NoError(t, err, "get proc handle should succeed")
assert.NoError(t, verifyProcRoot(procRoot), "verify private proc mount should succeed")
} else {
if !assert.ErrorIs(t, err, errUnsafeProcfs, "get proc handle should fail") {
t.Logf("procRootFn() = %v, %v", procRoot, err)
}
}
})
}
})
}
func TestProcOvermount_unsafeHostProcRoot(t *testing.T) {
testProcOvermount(t, unsafeHostProcRoot, false)
}
func TestProcOvermount_clonePrivateProcMount(t *testing.T) {
if !hasNewMountApi() {
t.Skip("test requires open_tree support")
}
testProcOvermount(t, clonePrivateProcMount, false)
}
func TestProcOvermount_newPrivateProcMount(t *testing.T) {
if !hasNewMountApi() || !canFsOpen() {
t.Skip("test requires fsopen support")
}
testProcOvermount(t, newPrivateProcMount, true)
}
func TestProcOvermount_doGetProcRoot(t *testing.T) {
privateProcMount := canFsOpen() && !testingForcePrivateProcRootOpenTree(nil)
testProcOvermount(t, doGetProcRoot, privateProcMount)
}
func TestProcOvermount_doGetProcRoot_Mocked(t *testing.T) {
if !hasNewMountApi() {
t.Skip("test requires fsopen/open_tree support")
}
testForceGetProcRoot(t, func(t *testing.T, expectOvermounts bool) {
privateProcMount := canFsOpen() && !testingForcePrivateProcRootOpenTree(nil)
testProcOvermount(t, doGetProcRoot, privateProcMount)
})
}
func TestProcSelfFdPath(t *testing.T) {
testForceProcThreadSelf(t, func(t *testing.T) {
root := t.TempDir()
filePath := path.Join(root, "file")
err := unix.Mknod(filePath, unix.S_IFREG|0o644, 0)
require.NoError(t, err)
symPath := path.Join(root, "sym")
err = unix.Symlink(filePath, symPath)
require.NoError(t, err)
// Open through the symlink.
handle, err := os.Open(symPath)
defer handle.Close()
// The check should fail if we expect the symlink path.
err = checkProcSelfFdPath(symPath, handle)
assert.ErrorIs(t, err, errPossibleBreakout, "checkProcSelfFdPath should fail for wrong path")
// The check should fail if we expect the symlink path.
err = checkProcSelfFdPath(filePath, handle)
assert.NoError(t, err)
})
}
func TestProcSelfFdPath_DeadFile(t *testing.T) {
testForceProcThreadSelf(t, func(t *testing.T) {
root := t.TempDir()
fullPath := path.Join(root, "file")
handle, err := os.Create(fullPath)
require.NoError(t, err)
defer handle.Close()
// The path still exists.
err = checkProcSelfFdPath(fullPath, handle)
assert.NoError(t, err, "checkProcSelfFdPath should succeed with regular file")
// Delete the path.
err = os.Remove(fullPath)
require.NoError(t, err)
// The check should fail now.
err = checkProcSelfFdPath(fullPath, handle)
assert.ErrorIs(t, err, errDeletedInode, "checkProcSelfFdPath should fail after deletion")
// The check should fail even if the expected path ends with " (deleted)".
err = checkProcSelfFdPath(fullPath+" (deleted)", handle)
assert.ErrorIs(t, err, errDeletedInode, "checkProcSelfFdPath should fail after deletion even with (deleted) suffix")
})
}
func TestProcSelfFdPath_DeadDir(t *testing.T) {
testForceProcThreadSelf(t, func(t *testing.T) {
root := t.TempDir()
fullPath := path.Join(root, "dir")
err := os.Mkdir(fullPath, 0o755)
require.NoError(t, err)
handle, err := os.OpenFile(fullPath, unix.O_DIRECTORY|unix.O_CLOEXEC, 0)
require.NoError(t, err)
defer handle.Close()
// The path still exists.
err = checkProcSelfFdPath(fullPath, handle)
assert.NoError(t, err, "checkProcSelfFdPath should succeed with regular directory")
// Delete the path.
err = os.Remove(fullPath)
require.NoError(t, err)
// The check should fail now.
err = checkProcSelfFdPath(fullPath, handle)
assert.ErrorIs(t, err, errInvalidDirectory, "checkProcSelfFdPath should fail after deletion")
// The check should fail even if the expected path ends with " (deleted)".
err = checkProcSelfFdPath(fullPath+" (deleted)", handle)
assert.ErrorIs(t, err, errInvalidDirectory, "checkProcSelfFdPath should fail after deletion even with (deleted) suffix")
})
}
func testVerifyProcRoot(t *testing.T, procRoot string, expectedErr error, errString string) {
fakeProcRoot, err := os.OpenFile(procRoot, unix.O_PATH|unix.O_CLOEXEC, 0)
require.NoError(t, err)
defer fakeProcRoot.Close()
err = verifyProcRoot(fakeProcRoot)
assert.ErrorIsf(t, err, expectedErr, "verifyProcRoot(%s)", procRoot)
if expectedErr != nil {
assert.ErrorContainsf(t, err, errString, "verifyProcRoot(%s)", procRoot)
}
}
func TestVerifyProcRoot_Regular(t *testing.T) {
testForceProcThreadSelf(t, func(t *testing.T) {
testVerifyProcRoot(t, "/proc", nil, "")
})
}
func TestVerifyProcRoot_ProcNonRoot(t *testing.T) {
testForceProcThreadSelf(t, func(t *testing.T) {
testVerifyProcRoot(t, "/proc/self", errUnsafeProcfs, "incorrect procfs root inode number")
testVerifyProcRoot(t, "/proc/mounts", errUnsafeProcfs, "incorrect procfs root inode number")
testVerifyProcRoot(t, "/proc/stat", errUnsafeProcfs, "incorrect procfs root inode number")
})
}
func TestVerifyProcRoot_NotProc(t *testing.T) {
testForceProcThreadSelf(t, func(t *testing.T) {
testVerifyProcRoot(t, "/", errUnsafeProcfs, "incorrect procfs root filesystem type")
testVerifyProcRoot(t, ".", errUnsafeProcfs, "incorrect procfs root filesystem type")
testVerifyProcRoot(t, t.TempDir(), errUnsafeProcfs, "incorrect procfs root filesystem type")
})
}
func TestProcfsDummyHooks(t *testing.T) {
assert.False(t, hookDummy(), "hookDummy should always return false")
assert.False(t, hookDummyFile(nil), "hookDummyFile should always return false")
}