f8caadae26b1ae4432c936098d0a5859fd5ebaa9
[platform/upstream/coreutils.git] / tests / misc / chcon
1 #!/bin/sh
2 # exercise chcon
3
4 if test "$VERBOSE" = yes; then
5   set -x
6   chcon --version
7 fi
8
9 . $srcdir/test-lib.sh
10 require_root_
11 require_selinux_
12 skip_if_mcstransd_is_running_
13
14 mkdir -p d/sub/s2 || framework_failure
15 touch f g d/sub/1 d/sub/2 || framework_failure
16
17 fail=0
18
19 # Set to a specified context.
20 # Use root:object_r:tmp_t:s0.  It is special in that
21 # it works even when mcstransd isn't running.
22 u1=root
23 r1=object_r
24 t1=tmp_t
25 range=s0
26 ctx=$u1:$r1:$t1:$range
27 chcon $ctx f || fail=1
28 stat --printf='f|%C\n' f > out || fail=1
29
30 # Use --reference.
31 chcon --ref=f g || fail=1
32 stat --printf='g|%C\n' g >> out || fail=1
33
34 # Change the individual parts of the context, one by one.
35 u2=user_u
36 r2=object_r
37 t2=file_t
38 for i in --user=$u2 --role=$r2 --type=$t2 --range=$range; do
39   chcon $i f || fail=1
40   stat --printf="f|$i|"'%C\n' f >> out || fail=1
41 done
42
43 # Same, but change back using the short-named options.
44 for i in -u$u1 -r$r1 -t$t1; do
45   chcon $i f || fail=1
46   stat --printf="f|$i|"'%C\n' f >> out || fail=1
47 done
48
49 cat <<EOF > exp || fail=1
50 f|$ctx
51 g|$ctx
52 f|--user=$u2|$u2:$r1:$t1:$range
53 f|--role=$r2|$u2:$r2:$t1:$range
54 f|--type=$t2|$u2:$r2:$t2:$range
55 f|--range=$range|$u2:$r2:$t2:$range
56 f|-uroot|root:object_r:file_t:$range
57 f|-robject_r|root:object_r:file_t:$range
58 f|-ttmp_t|root:object_r:tmp_t:$range
59 EOF
60
61 compare out exp || fail=1
62
63 (exit $fail); exit $fail