Skip to content

Commit 059d773

Browse files
committed
merge branch 'pr-3785' into release-1.1
Kir Kolyshkin (1): Prohibit /proc and /sys to be symlinks Ref: CVE-2019-19921 CVE-2023-27561 LGTMs: AkihiroSuda cyphar Closes #3785
2 parents c6781d1 + 0abab45 commit 059d773

File tree

2 files changed

+39
-9
lines changed

2 files changed

+39
-9
lines changed

libcontainer/rootfs_linux.go

+20-9
Original file line numberDiff line numberDiff line change
@@ -398,32 +398,43 @@ func doTmpfsCopyUp(m *configs.Mount, rootfs, mountLabel string) (Err error) {
398398

399399
func mountToRootfs(m *configs.Mount, c *mountConfig) error {
400400
rootfs := c.root
401-
mountLabel := c.label
402-
mountFd := c.fd
403-
dest, err := securejoin.SecureJoin(rootfs, m.Destination)
404-
if err != nil {
405-
return err
406-
}
407401

402+
// procfs and sysfs are special because we need to ensure they are actually
403+
// mounted on a specific path in a container without any funny business.
408404
switch m.Device {
409405
case "proc", "sysfs":
410406
// If the destination already exists and is not a directory, we bail
411-
// out This is to avoid mounting through a symlink or similar -- which
407+
// out. This is to avoid mounting through a symlink or similar -- which
412408
// has been a "fun" attack scenario in the past.
413409
// TODO: This won't be necessary once we switch to libpathrs and we can
414410
// stop all of these symlink-exchange attacks.
411+
dest := filepath.Clean(m.Destination)
412+
if !strings.HasPrefix(dest, rootfs) {
413+
// Do not use securejoin as it resolves symlinks.
414+
dest = filepath.Join(rootfs, dest)
415+
}
415416
if fi, err := os.Lstat(dest); err != nil {
416417
if !os.IsNotExist(err) {
417418
return err
418419
}
419-
} else if fi.Mode()&os.ModeDir == 0 {
420+
} else if !fi.IsDir() {
420421
return fmt.Errorf("filesystem %q must be mounted on ordinary directory", m.Device)
421422
}
422423
if err := os.MkdirAll(dest, 0o755); err != nil {
423424
return err
424425
}
425-
// Selinux kernels do not support labeling of /proc or /sys
426+
// Selinux kernels do not support labeling of /proc or /sys.
426427
return mountPropagate(m, rootfs, "", nil)
428+
}
429+
430+
mountLabel := c.label
431+
mountFd := c.fd
432+
dest, err := securejoin.SecureJoin(rootfs, m.Destination)
433+
if err != nil {
434+
return err
435+
}
436+
437+
switch m.Device {
427438
case "mqueue":
428439
if err := os.MkdirAll(dest, 0o755); err != nil {
429440
return err

tests/integration/mask.bats

+19
Original file line numberDiff line numberDiff line change
@@ -56,3 +56,22 @@ function teardown() {
5656
[ "$status" -eq 1 ]
5757
[[ "${output}" == *"Operation not permitted"* ]]
5858
}
59+
60+
@test "mask paths [prohibit symlink /proc]" {
61+
ln -s /symlink rootfs/proc
62+
runc run -d --console-socket "$CONSOLE_SOCKET" test_busybox
63+
[ "$status" -eq 1 ]
64+
[[ "${output}" == *"must be mounted on ordinary directory"* ]]
65+
}
66+
67+
@test "mask paths [prohibit symlink /sys]" {
68+
# In rootless containers, /sys is a bind mount not a real sysfs.
69+
requires root
70+
71+
ln -s /symlink rootfs/sys
72+
runc run -d --console-socket "$CONSOLE_SOCKET" test_busybox
73+
[ "$status" -eq 1 ]
74+
# On cgroup v1, this may fail before checking if /sys is a symlink,
75+
# so we merely check that it fails, and do not check the exact error
76+
# message like for /proc above.
77+
}

0 commit comments

Comments
 (0)