summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2021-04-05 20:53:14 +0200
committerGitHub <noreply@github.com>2021-04-05 20:53:14 +0200
commitca095e435c6b55ef101b1f2b9653214bd18164f6 (patch)
tree7c59a5513e18bb6a70e9c929cda6ac84e5116a9e /test
parent3fae801a3714ac058c5d19edf7f2288c18e84195 (diff)
parent6831c72f6acd211c34373a0f53f09b61222ce9bd (diff)
downloadpodman-ca095e435c6b55ef101b1f2b9653214bd18164f6.tar.gz
podman-ca095e435c6b55ef101b1f2b9653214bd18164f6.tar.bz2
podman-ca095e435c6b55ef101b1f2b9653214bd18164f6.zip
Merge pull request #9895 from rhatdan/relabel
Don't relabel volumes if running in a privileged container
Diffstat (limited to 'test')
-rw-r--r--test/system/410-selinux.bats28
1 files changed, 28 insertions, 0 deletions
diff --git a/test/system/410-selinux.bats b/test/system/410-selinux.bats
index 4a2c7b7a4..8a690fb48 100644
--- a/test/system/410-selinux.bats
+++ b/test/system/410-selinux.bats
@@ -191,5 +191,33 @@ function check_label() {
is "$output" "Error.*: \`/proc/thread-self/attr/exec\`: OCI runtime error: unable to assign security attribute" "useful diagnostic"
}
+@test "podman selinux: check relabel" {
+ skip_if_no_selinux
+
+ LABEL="system_u:object_r:tmp_t:s0"
+ tmpdir=$PODMAN_TMPDIR/vol
+ touch $tmpdir
+ chcon -vR ${LABEL} $tmpdir
+ ls -Z $tmpdir
+
+ run_podman run -v $tmpdir:/test $IMAGE cat /proc/self/attr/current
+ level=$(secon -l $output)
+ run ls -dZ ${tmpdir}
+ is "$output" ${LABEL} "No Relabel Correctly"
+
+ run_podman run -v $tmpdir:/test:Z --security-opt label=disable $IMAGE cat /proc/self/attr/current
+ level=$(secon -l $output)
+ run ls -dZ $tmpdir
+ is "$output" ${LABEL} "No Privileged Relabel Correctly"
+
+ run_podman run -v $tmpdir:/test:Z $IMAGE cat /proc/self/attr/current
+ level=$(secon -l $output)
+ run ls -dZ $tmpdir
+ is "$output" "system_u:object_r:container_file_t:$level" "Confined Relabel Correctly"
+
+ run_podman run -v $tmpdir:/test:z $IMAGE cat /proc/self/attr/current
+ run ls -dZ $tmpdir
+ is "$output" "system_u:object_r:container_file_t:s0" "Shared Relabel Correctly"
+}
# vim: filetype=sh