-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3272 from AkihiroSuda/mount-rro
Support recursive mount attrs ("rro", "rnosuid", "rnodev", ...)
- Loading branch information
Showing
76 changed files
with
455 additions
and
236 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
#!/usr/bin/env bats | ||
|
||
load helpers | ||
|
||
TESTVOLUME="${BATS_RUN_TMPDIR}/mounts_recursive" | ||
|
||
function setup_volume() { | ||
# requires root (in the current user namespace) to mount tmpfs outside runc | ||
requires root | ||
|
||
mkdir -p "${TESTVOLUME}" | ||
mount -t tmpfs none "${TESTVOLUME}" | ||
echo "foo" >"${TESTVOLUME}/foo" | ||
|
||
mkdir "${TESTVOLUME}/subvol" | ||
mount -t tmpfs none "${TESTVOLUME}/subvol" | ||
echo "bar" >"${TESTVOLUME}/subvol/bar" | ||
} | ||
|
||
function teardown_volume() { | ||
umount -R "${TESTVOLUME}" | ||
} | ||
|
||
function setup() { | ||
setup_volume | ||
setup_busybox | ||
} | ||
|
||
function teardown() { | ||
teardown_volume | ||
teardown_bundle | ||
} | ||
|
||
@test "runc run [rbind,ro mount is read-only but not recursively]" { | ||
update_config ".mounts += [{source: \"${TESTVOLUME}\" , destination: \"/mnt\", options: [\"rbind\",\"ro\"]}]" | ||
|
||
runc run -d --console-socket "$CONSOLE_SOCKET" test_rbind_ro | ||
[ "$status" -eq 0 ] | ||
|
||
runc exec test_rbind_ro touch /mnt/foo | ||
[ "$status" -eq 1 ] | ||
[[ "${output}" == *"Read-only file system"* ]] | ||
|
||
runc exec test_rbind_ro touch /mnt/subvol/bar | ||
[ "$status" -eq 0 ] | ||
} | ||
|
||
@test "runc run [rbind,rro mount is recursively read-only]" { | ||
requires_kernel 5.12 | ||
update_config ".mounts += [{source: \"${TESTVOLUME}\" , destination: \"/mnt\", options: [\"rbind\",\"rro\"]}]" | ||
|
||
runc run -d --console-socket "$CONSOLE_SOCKET" test_rbind_rro | ||
[ "$status" -eq 0 ] | ||
|
||
runc exec test_rbind_rro touch /mnt/foo | ||
[ "$status" -eq 1 ] | ||
[[ "${output}" == *"Read-only file system"* ]] | ||
|
||
runc exec test_rbind_rro touch /mnt/subvol/bar | ||
[ "$status" -eq 1 ] | ||
[[ "${output}" == *"Read-only file system"* ]] | ||
} | ||
|
||
@test "runc run [rbind,ro,rro mount is recursively read-only too]" { | ||
requires_kernel 5.12 | ||
update_config ".mounts += [{source: \"${TESTVOLUME}\" , destination: \"/mnt\", options: [\"rbind\",\"ro\",\"rro\"]}]" | ||
|
||
runc run -d --console-socket "$CONSOLE_SOCKET" test_rbind_ro_rro | ||
[ "$status" -eq 0 ] | ||
|
||
runc exec test_rbind_ro_rro touch /mnt/foo | ||
[ "$status" -eq 1 ] | ||
[[ "${output}" == *"Read-only file system"* ]] | ||
|
||
runc exec test_rbind_ro_rro touch /mnt/subvol/bar | ||
[ "$status" -eq 1 ] | ||
[[ "${output}" == *"Read-only file system"* ]] | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.