mirror of
git://git.sv.gnu.org/coreutils.git
synced 2026-02-25 16:45:40 +02:00
* tests/test-lib.sh (require_selinux_): New function. * tests/misc/chcon: Use it. * tests/misc/selinux: Use it here, too. * tests/cp/cp-a-selinux: and here. * tests/selinux: Remove file. * tests/Makefile.am (EXTRA_DIST): Remove selinux. Reported by Mike Frysinger and Bauke Jan Douma.
62 lines
1.3 KiB
Bash
Executable File
62 lines
1.3 KiB
Bash
Executable File
#!/bin/sh
|
|
# exercise chcon
|
|
|
|
if test "$VERBOSE" = yes; then
|
|
set -x
|
|
chcon --version
|
|
fi
|
|
|
|
. $srcdir/../lang-default
|
|
PRIV_CHECK_ARG=require-root . $srcdir/../priv-check
|
|
. $srcdir/../test-lib.sh
|
|
require_selinux_
|
|
|
|
mkdir -p d/sub/s2 || framework_failure
|
|
touch f g d/sub/1 d/sub/2 || framework_failure
|
|
|
|
fail=0
|
|
|
|
# Set to a specified context.
|
|
u1=root
|
|
r1=object_r
|
|
t1=tmp_t
|
|
ctx=$u1:$r1:$t1
|
|
chcon $ctx f || fail=1
|
|
stat --printf='f|%C\n' f > out || fail=1
|
|
|
|
# Use --reference.
|
|
chcon --ref=f g || fail=1
|
|
stat --printf='g|%C\n' g >> out || fail=1
|
|
|
|
# Change the individual parts of the context, one by one.
|
|
u2=user_u
|
|
r2=object_r
|
|
t2=file_t
|
|
l2=SystemLow-SystemHigh
|
|
for i in --user=$u2 --role=$r2 --type=$t2 --range=$l2; do
|
|
chcon $i f || fail=1
|
|
stat --printf="f|$i|"'%C\n' f >> out || fail=1
|
|
done
|
|
|
|
# Same, but change back using the short-named options.
|
|
for i in -u$u1 -r$r1 -t$t1; do
|
|
chcon $i f || fail=1
|
|
stat --printf="f|$i|"'%C\n' f >> out || fail=1
|
|
done
|
|
|
|
cat <<EOF > exp || fail=1
|
|
f|$ctx
|
|
g|$ctx
|
|
f|--user=$u2|$u2:$r1:$t1
|
|
f|--role=$r2|$u2:$r2:$t1
|
|
f|--type=$t2|$u2:$r2:$t2
|
|
f|--range=$l2|$u2:$r2:$t2:$l2
|
|
f|-uroot|root:object_r:file_t:SystemLow-SystemHigh
|
|
f|-robject_r|root:object_r:file_t:SystemLow-SystemHigh
|
|
f|-ttmp_t|root:object_r:tmp_t:SystemLow-SystemHigh
|
|
EOF
|
|
|
|
compare out exp || fail=1
|
|
|
|
(exit $fail); exit $fail
|