Whamcloud - gitweb
4c1ffef590bc10d1591c00da9647a0a4f178ebc6
[fs/lustre-release.git] / lustre / tests / sanity-selinux.sh
1 #!/bin/bash
2 #
3 # NOTE
4 # In order to be able to do the runcon commands in test_4,
5 # the SELinux policy must allow transitions from unconfined_t
6 # to user_t and guest_t:
7 # #============= unconfined_r ==============
8 # allow unconfined_r guest_r;
9 # allow unconfined_r user_r;
10 #
11 # Run select tests by setting ONLY, or as arguments to the script.
12 # Skip specific tests by setting EXCEPT.
13 #
14 # e.g. ONLY="22 23" or ONLY="`seq 32 39`" or EXCEPT="31"
15 set -e
16
17 ONLY=${ONLY:-"$*"}
18 # bug number for skipped test:
19 ALWAYS_EXCEPT=${ALWAYS_EXCEPT:-"$SANITY_SELINUX_EXCEPT"}
20 # UPDATE THE COMMENT ABOVE WITH BUG NUMBERS WHEN CHANGING ALWAYS_EXCEPT!
21
22 SRCDIR=$(dirname $0)
23 SAVE_PWD=$PWD
24
25 LUSTRE=${LUSTRE:-$(dirname $0)/..}
26 . $LUSTRE/tests/test-framework.sh
27 init_test_env $@
28 . ${CONFIG:=$LUSTRE/tests/cfg/$NAME.sh}
29 init_logging
30
31 require_dsh_mds || exit 0
32
33 [ "$SLOW" = "no" ] && EXCEPT_SLOW="xxx"
34
35 RUNAS_CMD=${RUNAS_CMD:-runas}
36 # $RUNAS_ID may get set incorrectly somewhere else
37 [ $UID -eq 0 -a $RUNAS_ID -eq 0 ] &&
38         error "RUNAS_ID set to 0, but UID is also 0!"
39
40 #
41 # global variables of this  sanity
42 #
43
44 check_selinux() {
45         echo -n "Checking SELinux environment... "
46         local selinux_status=$(getenforce)
47         if [ "$selinux_status" != "Enforcing" ]; then
48             skip "SELinux is currently in $selinux_status mode," \
49                  "but it must be enforced to run sanity-selinux" && exit 0
50         fi
51         local selinux_policy=$(sestatus |
52                 awk -F':' '$1 == "Loaded policy name" {print $2}' | xargs)
53         if [ -z "$selinux_policy" ]; then
54             selinux_policy=$(sestatus |
55                 awk -F':' '$1 == "Policy from config file" {print $2}' | xargs)
56         fi
57         [ "$selinux_policy" == "targeted" ] ||
58                 error "Accepting only targeted policy"
59         echo "$selinux_status, $selinux_policy"
60 }
61
62 check_selinux
63
64 # we want double mount
65 MOUNT_2=${MOUNT_2:-"yes"}
66 check_and_setup_lustre
67
68 rm -rf $DIR/[df][0-9]*
69
70 check_runas_id $RUNAS_ID $RUNAS_ID $RUNAS
71
72 build_test_filter
73
74 umask 077
75
76 check_selinux_xattr() {
77         local mds=$1
78         local mds_path=$2
79         local mds_dev=$(facet_device $mds)
80         local mntpt="/tmp/mdt_"
81         local opts
82
83         do_facet $mds mkdir -p $mntpt  || error "mkdir $mntpt failed"
84         mount_fstype $mds $mntpt  || error "mount $mds failed"
85
86         local xattrval=$(do_facet $mds getfattr -n security.selinux \
87                                 ${mntpt}/ROOT/$mds_path |
88                          awk -F"=" '$1=="security.selinux" {print $2}')
89
90         unmount_fstype $mds $mntpt || error "umount $mds failed"
91         do_facet $mds rmdir $mntpt || error "rmdir $mntpt failed"
92
93         echo $xattrval
94 }
95
96
97 test_1() {
98         local devname=$(mdsdevname 1)
99         local filename=${DIR}/${tdir}/df1
100         local mds_path=${filename#$MOUNT}
101
102         mds_path=${mds_path#/}
103
104         $LFS setdirstripe -i0 -c1 ${DIR}/$tdir || error "create dir $tdir failed"
105         touch $filename || error "cannot touch $filename"
106
107         local xattrval=$(check_selinux_xattr "mds1" $mds_path)
108
109         [ -n "$xattrval" -a "$xattrval" != '""' ] ||
110                 error "security.selinux xattr is not set"
111 }
112 run_test 1 "create file and check security.selinux xattr is set on MDT"
113
114 test_2a() {
115         local devname=$(mdsdevname 1)
116         local dirname=${DIR}/${tdir}/dir2a
117         local mds_path=${dirname#$MOUNT}
118
119         mds_path=${mds_path#/}
120
121         $LFS setdirstripe -i0 -c1 ${DIR}/$tdir || error "create dir failed"
122         mkdir $dirname || error "cannot mkdir $dirname"
123
124         local xattrval=$(check_selinux_xattr "mds1" $mds_path)
125
126         [ -n "$xattrval" -a "$xattrval" != '""' ] ||
127                 error "security.selinux xattr is not set"
128 }
129 run_test 2a "create dir (mkdir) and check security.selinux xattr is set on MDT"
130
131 test_2b() {
132         local devname=$(mdsdevname 1)
133         local dirname1=${DIR}/$tdir/dir2b1
134         local dirname2=${DIR}/$tdir/dir2b2
135         local mds_path=${dirname1#$MOUNT}
136
137         mds_path=${mds_path#/}
138
139         $LFS setdirstripe -i0 -c1 ${DIR}/$tdir || error "create dir failed"
140         $LFS mkdir -c0 -i0 $dirname1 || error "cannot 'lfs mkdir' $dirname1"
141
142         local xattrval=$(check_selinux_xattr "mds1" $mds_path)
143
144         mds_path=${dirname2#$MOUNT}
145         mds_path=${mds_path#/}
146
147         [ -n "$xattrval" -a "$xattrval" != '""' ] ||
148                 error "security.selinux xattr is not set"
149
150         $LFS setdirstripe -i0 $dirname2 ||
151             error "cannot 'lfs setdirstripe' $dirname2"
152
153         xattrval=$(check_selinux_xattr "mds1" $mds_path)
154
155         [ -n "$xattrval" -a "$xattrval" != '""' ] ||
156                 error "security.selinux xattr is not set"
157 }
158 run_test 2b "create dir with lfs and check security.selinux xattr is set on MDT"
159
160 test_3() {
161         local filename=$DIR/$tdir/df3
162         local level=$(id -Z | cut -d':' -f4-)
163         local unconctx="-u unconfined_u -r unconfined_r -t unconfined_t \
164                         -l $level"
165
166         mkdir -p $DIR/$tdir
167         chmod 777 $DIR/$tdir
168
169         # "access" Lustre
170         echo "As unconfined_u: touch $filename"
171         $RUNAS_CMD -u $RUNAS_ID runcon $unconctx touch $filename ||
172                 error "can't touch $filename"
173         echo "As unconfined_u: rm -f $filename"
174         $RUNAS_CMD -u $RUNAS_ID runcon $unconctx rm -f $filename ||
175                 error "can't remove $filename"
176
177         return 0
178 }
179 run_test 3 "access with unconfined user"
180
181 test_4() {
182         local filename=$DIR/$tdir/df4
183         local guestctx="-u guest_u -r guest_r -t guest_t -l s0"
184         local usrctx="-u user_u -r user_r -t user_t -l s0"
185
186         sesearch --role_allow | grep -q "allow unconfined_r user_r"
187         if [ $? -ne 0 ]; then
188             skip "SELinux policy module must allow transition from \
189                    unconfined_r to user_r for this test." && exit 0
190         fi
191         sesearch --role_allow | grep -q "allow unconfined_r guest_r"
192         if [ $? -ne 0 ]; then
193             skip "SELinux policy module must allow transition from \
194                    unconfined_r to guest_r for this test." && exit 0
195         fi
196
197         mkdir -p $DIR/$tdir
198         chmod 777 $DIR/$tdir
199
200         # "access" Lustre
201         echo "As guest_u: touch $filename"
202         $RUNAS_CMD -u $RUNAS_ID runcon $guestctx touch $filename &&
203                 error "touch $filename should have failed"
204
205         # "access" Lustre
206         echo "As user_u: touch $filename"
207         $RUNAS_CMD -u $RUNAS_ID runcon $usrctx touch $filename ||
208                 error "can't touch $filename"
209         echo "As user_u: rm -f $filename"
210         $RUNAS_CMD -u $RUNAS_ID runcon $usrctx rm -f $filename ||
211                 error "can't remove $filename"
212
213         return 0
214 }
215 run_test 4 "access with specific SELinux user"
216
217 test_5() {
218         local filename=$DIR/df5
219         local newsecctx="nfs_t"
220
221         # create file
222         touch $filename || error "cannot touch $filename"
223
224         # change sec context
225         chcon -t $newsecctx $filename
226         ls -lZ $filename
227
228         # purge client's cache
229         sync ; echo 3 > /proc/sys/vm/drop_caches
230
231         # get sec context
232         ls -lZ $filename
233         local secctxseen=$(ls -lZ $filename | awk '{print $4}' | cut -d: -f3)
234
235         [ "$newsecctx" == "$secctxseen" ] ||
236                 error "sec context seen from 1st mount point is not correct"
237
238         return 0
239 }
240 run_test 5 "security context retrieval from MDT xattr"
241
242 test_10() {
243         local filename1=$DIR/df10
244         local filename2=$DIR2/df10
245         local newsecctx="nfs_t"
246
247         # create file from 1st mount point
248         touch $filename1 || error "cannot touch $filename1"
249         ls -lZ $filename1
250
251         # change sec context from 2nd mount point
252         chcon -t $newsecctx $filename2
253         ls -lZ $filename2
254
255         # get sec context from 1st mount point
256         ls -lZ $filename1
257         local secctxseen=$(ls -lZ $filename1 | awk '{print $4}' | cut -d: -f3)
258
259         [ "$newsecctx" == "$secctxseen" ] ||
260                 error_ignore LU-6784 \
261                     "sec context seen from 1st mount point is not correct"
262
263         return 0
264 }
265 run_test 10 "[consistency] concurrent security context change"
266
267 test_20a() {
268         local filename1=$DIR/$tdir/df20a
269         local filename2=$DIR2/$tdir/df20a
270         local req_delay=20
271         local unconctx="-u unconfined_u -r unconfined_r -t unconfined_t -l s0"
272
273         mkdir -p $DIR/$tdir
274         chmod 777 $DIR/$tdir
275
276         # sleep some time in ll_create_nd()
277         #define OBD_FAIL_LLITE_CREATE_FILE_PAUSE   0x1409
278         do_facet client "$LCTL set_param fail_val=$req_delay fail_loc=0x1409"
279
280         # create file on first mount point
281         $RUNAS_CMD -u $RUNAS_ID runcon $unconctx touch $filename1 &
282         local touchpid=$!
283         sleep 5
284
285         if [[ -z "$(ps h -o comm -p $touchpid)" ]]; then
286                 error "touch failed to sleep, pid=$touchpid"
287         fi
288
289         # get sec info on second mount point
290         if [ -e "$filename2" ]; then
291                 secinfo2=$(ls -lZ $filename2 | awk '{print $4}')
292         fi
293
294         # get sec info on first mount point
295         wait $touchpid
296         secinfo1=$(ls -lZ $filename1 | awk '{print $4}')
297
298         # compare sec contexts
299         [ -z "$secinfo2" -o "$secinfo1" == "$secinfo2" ] ||
300                 error "sec context seen from 2nd mount point is not correct"
301
302         return 0
303 }
304 run_test 20a "[atomicity] concurrent access from another client (file)"
305
306 test_20b() {
307         local dirname1=$DIR/$tdir/dd20b
308         local dirname2=$DIR2/$tdir/dd20b
309         local req_delay=20
310         local unconctx="-u unconfined_u -r unconfined_r -t unconfined_t -l s0"
311
312         mkdir -p $DIR/$tdir
313         chmod 777 $DIR/$tdir
314
315         # sleep some time in ll_create_nd()
316         #define OBD_FAIL_LLITE_NEWNODE_PAUSE     0x140a
317         do_facet client "$LCTL set_param fail_val=$req_delay fail_loc=0x140a"
318
319         # create file on first mount point
320         $RUNAS_CMD -u $RUNAS_ID runcon $unconctx mkdir $dirname1 &
321         local mkdirpid=$!
322         sleep 5
323
324         if [[ -z "$(ps h -o comm -p $mkdirpid)" ]]; then
325                 error "mkdir failed to sleep, pid=$mkdirpid"
326         fi
327
328         # get sec info on second mount point
329         if [ -e "$dirname2" ]; then
330                 secinfo2=$(ls -ldZ $dirname2 | awk '{print $4}')
331         else
332                 secinfo2=""
333         fi
334
335         # get sec info on first mount point
336         wait $mkdirpid
337         secinfo1=$(ls -ldZ $dirname1 | awk '{print $4}')
338
339         # compare sec contexts
340         [ -z "$secinfo2" -o "$secinfo1" == "$secinfo2" ] ||
341                 error "sec context seen from 2nd mount point is not correct"
342
343         return 0
344 }
345 run_test 20b "[atomicity] concurrent access from another client (dir)"
346
347 test_20c() {
348         local dirname1=$DIR/dd20c
349         local dirname2=$DIR2/dd20c
350         local req_delay=20
351
352         # sleep some time in ll_create_nd()
353         #define OBD_FAIL_LLITE_SETDIRSTRIPE_PAUSE     0x140b
354         do_facet client "$LCTL set_param fail_val=$req_delay fail_loc=0x140b"
355
356         # create file on first mount point
357         $LFS mkdir -c0 -i0 $dirname1 &
358         local mkdirpid=$!
359         sleep 5
360
361         if [[ -z "$(ps h -o comm -p $mkdirpid)" ]]; then
362                 error "lfs mkdir failed to sleep, pid=$mkdirpid"
363         fi
364
365         # get sec info on second mount point
366         if [ -e "$dirname2" ]; then
367                 secinfo2=$(ls -ldZ $dirname2 | awk '{print $4}')
368         else
369                 secinfo2=""
370         fi
371
372         # get sec info on first mount point
373         wait $mkdirpid
374         secinfo1=$(ls -ldZ $dirname1 | awk '{print $4}')
375
376         # compare sec contexts
377         [ -z "$secinfo2" -o "$secinfo1" == "$secinfo2" ] ||
378                 error "sec context seen from 2nd mount point is not correct"
379
380         return 0
381 }
382 run_test 20c "[atomicity] concurrent access from another client (dir via lfs)"
383
384 check_nodemap() {
385         local nm=$1
386         local key=$2
387         local val=$3
388         local i
389
390         if [ "$nm" == "active" ]; then
391                 proc_param="active"
392         else
393                 proc_param="$nm.$key"
394         fi
395         is_sync=false
396         for i in $(seq 1 20); do
397                 out=$(do_facet mds1 $LCTL get_param -n \
398                                    nodemap.$proc_param 2>/dev/null)
399                 echo "On mds1, ${proc_param} = $out"
400                 [ "$val" == "$out" ] && is_sync=true && break
401                 sleep 1
402         done
403         if ! $is_sync; then
404                 error "$proc_param not updated on mds1 after 20 secs"
405         fi
406 }
407
408 create_nodemap() {
409         local nm=$1
410         local sepol
411         local client_ip=$(host_nids_address $HOSTNAME $NETTYPE)
412         local client_nid=$(h2nettype $client_ip)
413
414         do_facet mgs $LCTL nodemap_activate 1
415
416         do_facet mgs $LCTL nodemap_add $nm
417         do_facet mgs $LCTL nodemap_add_range \
418                         --name $nm --range $client_nid
419         do_facet mgs $LCTL nodemap_modify --name $nm \
420                         --property admin --value 1
421         do_facet mgs $LCTL nodemap_modify --name $nm \
422                         --property trusted --value 1
423
424         check_nodemap $nm admin_nodemap 1
425         check_nodemap $nm trusted_nodemap 1
426
427         sepol=$(l_getsepol | cut -d':' -f2- | xargs)
428         do_facet mgs $LCTL set_param nodemap.$nm.sepol="$sepol"
429         do_facet mgs $LCTL set_param -P nodemap.$nm.sepol="$sepol"
430
431         check_nodemap $nm sepol $sepol
432 }
433
434 remove_nodemap() {
435         local nm=$1
436
437         do_facet mgs $LCTL nodemap_del $nm
438
439         do_facet mgs $LCTL nodemap_activate 0
440
441         check_nodemap active x  0
442 }
443
444 test_21a() {
445         local sepol
446
447         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.56) ] &&
448                 skip "Need MDS >= 2.11.56"
449
450         # umount client
451         if [ "$MOUNT_2" ] && $(grep -q $MOUNT2' ' /proc/mounts); then
452                 umount_client $MOUNT2 || error "umount $MOUNT2 failed"
453         fi
454         if $(grep -q $MOUNT' ' /proc/mounts); then
455                 umount_client $MOUNT || error "umount $MOUNT failed"
456         fi
457
458         # create nodemap entry with sepol
459         create_nodemap nm1
460
461         # mount client without sending sepol
462         mount_client $MOUNT $MOUNT_OPTS &&
463                 error "client mount without sending sepol should be refused"
464
465         # mount client with sepol
466         echo -1 > /sys/module/ptlrpc/parameters/send_sepol
467         mount_client $MOUNT $MOUNT_OPTS ||
468                 error "client mount with sepol failed"
469
470         # umount client
471         umount_client $MOUNT || error "umount $MOUNT failed"
472
473         # store wrong sepol in nodemap
474         sepol="0:policy:0:0000000000000000000000000000000000000000000000000000000000000000"
475         do_facet mgs $LCTL set_param nodemap.nm1.sepol="$sepol"
476         do_facet mgs $LCTL set_param -P nodemap.nm1.sepol="$sepol"
477         check_nodemap nm1 sepol $sepol
478
479         # mount client with sepol
480         mount_client $MOUNT $MOUNT_OPTS &&
481                 error "client mount without matching sepol should be refused"
482
483         # remove nodemap
484         remove_nodemap nm1
485
486         # remount client normally
487         echo 0 > /sys/module/ptlrpc/parameters/send_sepol
488         mountcli || error "normal client mount failed"
489 }
490 run_test 21a "Send sepol at connect"
491
492 test_21b() {
493         local sepol
494
495         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.56) ] &&
496                 skip "Need MDS >= 2.11.56"
497
498         mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
499         echo test > $DIR/$tdir/toopen ||
500                 error "failed to write to $DIR/$tdir/toopen"
501         touch $DIR/$tdir/ftoremove ||
502                 error "failed to create $DIR/$tdir/ftoremove"
503         touch $DIR/$tdir/ftoremove2 ||
504                 error "failed to create $DIR/$tdir/ftoremove2"
505         touch $DIR/$tdir/ftoremove3 ||
506                 error "failed to create $DIR/$tdir/ftoremove3"
507         touch $DIR/$tdir/ftoremove4 ||
508                 error "failed to create $DIR/$tdir/ftoremove4"
509         mkdir $DIR/$tdir/dtoremove ||
510                 error "failed to create $DIR/$tdir/dtoremove"
511         mkdir $DIR/$tdir/dtoremove2 ||
512                 error "failed to create $DIR/$tdir/dtoremove2"
513         mkdir $DIR/$tdir/dtoremove3 ||
514                 error "failed to create $DIR/$tdir/dtoremove3"
515         mkdir $DIR/$tdir/dtoremove4 ||
516                 error "failed to create $DIR/$tdir/dtoremove4"
517         touch $DIR/$tdir/ftorename ||
518                 error "failed to create $DIR/$tdir/ftorename"
519         mkdir $DIR/$tdir/dtorename ||
520                 error "failed to create $DIR/$tdir/dtorename"
521         setfattr -n user.myattr -v myval $DIR/$tdir/toopen ||
522                 error "failed to set xattr on $DIR/$tdir/toopen"
523         echo 3 > /proc/sys/vm/drop_caches
524
525         # create nodemap entry with sepol
526         create_nodemap nm1
527
528         # metadata ops without sending sepol
529         touch $DIR/$tdir/f0 && error "touch (1)"
530         lfs setstripe -c1 $DIR/$tdir/f1 && error "lfs setstripe (1)"
531         mkdir $DIR/$tdir/d0 && error "mkdir (1)"
532         lfs setdirstripe -i0 -c1 $DIR/$tdir/d1 && error "lfs setdirstripe (1)"
533         cat $DIR/$tdir/toopen && error "cat (1)"
534         rm -f $DIR/$tdir/ftoremove && error "rm (1)"
535         rmdir $DIR/$tdir/dtoremove && error "rmdir (1)"
536         mv $DIR/$tdir/ftorename $DIR/$tdir/ftorename2 && error "mv (1)"
537         mv $DIR/$tdir/dtorename $DIR/$tdir/dtorename2 && error "mv (2)"
538         getfattr -n user.myattr $DIR/$tdir/toopen && error "getfattr (1)"
539         setfattr -n user.myattr -v myval2 $DIR/$tdir/toopen &&
540                 error "setfattr (1)"
541         chattr +i $DIR/$tdir/toopen && error "chattr (1)"
542         lsattr $DIR/$tdir/toopen && error "lsattr (1)"
543         chattr -i $DIR/$tdir/toopen && error "chattr (1)"
544         ln -s $DIR/$tdir/toopen $DIR/$tdir/toopen_sl1 && error "symlink (1)"
545         ln $DIR/$tdir/toopen $DIR/$tdir/toopen_hl1 && error "hardlink (1)"
546
547         # metadata ops with sepol
548         echo -1 > /sys/module/ptlrpc/parameters/send_sepol
549         touch $DIR/$tdir/f2 || error "touch (2)"
550         lfs setstripe -c1 $DIR/$tdir/f3 || error "lfs setstripe (2)"
551         mkdir $DIR/$tdir/d2 || error "mkdir (2)"
552         lfs setdirstripe -i0 -c1 $DIR/$tdir/d3 || error "lfs setdirstripe (2)"
553         cat $DIR/$tdir/toopen || error "cat (2)"
554         rm -f $DIR/$tdir/ftoremove || error "rm (2)"
555         rmdir $DIR/$tdir/dtoremove || error "rmdir (2)"
556         mv $DIR/$tdir/ftorename $DIR/$tdir/ftorename2 || error "mv (3)"
557         mv $DIR/$tdir/dtorename $DIR/$tdir/dtorename2 || error "mv (4)"
558         getfattr -n user.myattr $DIR/$tdir/toopen || error "getfattr (2)"
559         setfattr -n user.myattr -v myval2 $DIR/$tdir/toopen ||
560                 error "setfattr (2)"
561         chattr +i $DIR/$tdir/toopen || error "chattr (2)"
562         lsattr $DIR/$tdir/toopen || error "lsattr (2)"
563         chattr -i $DIR/$tdir/toopen || error "chattr (2)"
564         ln -s $DIR/$tdir/toopen $DIR/$tdir/toopen_sl2 || error "symlink (2)"
565         ln $DIR/$tdir/toopen $DIR/$tdir/toopen_hl2 || error "hardlink (2)"
566         echo 3 > /proc/sys/vm/drop_caches
567
568         # store wrong sepol in nodemap
569         sepol="0:policy:0:0000000000000000000000000000000000000000000000000000000000000000"
570         do_facet mgs $LCTL set_param nodemap.nm1.sepol="$sepol"
571         do_facet mgs $LCTL set_param -P nodemap.nm1.sepol="$sepol"
572         check_nodemap nm1 sepol $sepol
573
574         # metadata ops with sepol
575         touch $DIR/$tdir/f4 && error "touch (3)"
576         lfs setstripe -c1 $DIR/$tdir/f5 && error "lfs setstripe (3)"
577         mkdir $DIR/$tdir/d4 && error "mkdir (3)"
578         lfs setdirstripe -i0 -c1 $DIR/$tdir/d5 && error "lfs setdirstripe (3)"
579         cat $DIR/$tdir/toopen && error "cat (3)"
580         rm -f $DIR/$tdir/ftoremove2 && error "rm (3)"
581         rmdir $DIR/$tdir/dtoremove2 && error "rmdir (3)"
582         mv $DIR/$tdir/ftorename2 $DIR/$tdir/ftorename && error "mv (5)"
583         mv $DIR/$tdir/dtorename2 $DIR/$tdir/dtorename && error "mv (6)"
584         getfattr -n user.myattr $DIR/$tdir/toopen && error "getfattr (3)"
585         setfattr -n user.myattr -v myval3 $DIR/$tdir/toopen &&
586                 error "setfattr (3)"
587         chattr +i $DIR/$tdir/toopen && error "chattr (3)"
588         lsattr $DIR/$tdir/toopen && error "lsattr (3)"
589         chattr -i $DIR/$tdir/toopen && error "chattr (3)"
590         ln -s $DIR/$tdir/toopen $DIR/$tdir/toopen_sl3 && error "symlink (3)"
591         ln $DIR/$tdir/toopen $DIR/$tdir/toopen_hl3 && error "hardlink (3)"
592
593         # reset correct sepol
594         sepol=$(l_getsepol | cut -d':' -f2- | xargs)
595         do_facet mgs $LCTL set_param nodemap.nm1.sepol="$sepol"
596         do_facet mgs $LCTL set_param -P nodemap.nm1.sepol="$sepol"
597         check_nodemap nm1 sepol $sepol
598
599         # metadata ops with sepol every 10 seconds only
600         echo 10 > /sys/module/ptlrpc/parameters/send_sepol
601         touch $DIR/$tdir/f6 || error "touch (4)"
602         lfs setstripe -c1 $DIR/$tdir/f7 || error "lfs setstripe (4)"
603         mkdir $DIR/$tdir/d6 || error "mkdir (4)"
604         lfs setdirstripe -i0 -c1 $DIR/$tdir/d7 || error "lfs setdirstripe (4)"
605         cat $DIR/$tdir/toopen || error "cat (4)"
606         rm -f $DIR/$tdir/ftoremove2 || error "rm (4)"
607         rmdir $DIR/$tdir/dtoremove2 || error "rmdir (4)"
608         mv $DIR/$tdir/ftorename2 $DIR/$tdir/ftorename || error "mv (7)"
609         mv $DIR/$tdir/dtorename2 $DIR/$tdir/dtorename || error "mv (8)"
610         getfattr -n user.myattr $DIR/$tdir/toopen || error "getfattr (4)"
611         setfattr -n user.myattr -v myval3 $DIR/$tdir/toopen ||
612                 error "setfattr (4)"
613         chattr +i $DIR/$tdir/toopen || error "chattr (4)"
614         lsattr $DIR/$tdir/toopen || error "lsattr (4)"
615         chattr -i $DIR/$tdir/toopen || error "chattr (4)"
616         ln -s $DIR/$tdir/toopen $DIR/$tdir/toopen_sl4 || error "symlink (4)"
617         ln $DIR/$tdir/toopen $DIR/$tdir/toopen_hl4 || error "hardlink (4)"
618         echo 3 > /proc/sys/vm/drop_caches
619
620         # change one SELinux boolean value
621         sebool=$(getsebool deny_ptrace | awk '{print $3}')
622         if [ "$sebool" == "off" ]; then
623                 setsebool -P deny_ptrace on
624         else
625                 setsebool -P deny_ptrace off
626         fi
627
628         # sepol should not be checked yet, so metadata ops without matching
629         # sepol should succeed
630         touch $DIR/$tdir/f8 || error "touch (5)"
631         lfs setstripe -c1 $DIR/$tdir/f9 || error "lfs setstripe (5)"
632         mkdir $DIR/$tdir/d8 || error "mkdir (5)"
633         lfs setdirstripe -i0 -c1 $DIR/$tdir/d9 || error "lfs setdirstripe (5)"
634         cat $DIR/$tdir/toopen || error "cat (5)"
635         rm -f $DIR/$tdir/ftoremove3 || error "rm (5)"
636         rmdir $DIR/$tdir/dtoremove3 || error "rmdir (5)"
637         mv $DIR/$tdir/ftorename $DIR/$tdir/ftorename2 || error "mv (9)"
638         mv $DIR/$tdir/dtorename $DIR/$tdir/dtorename2 || error "mv (10)"
639         getfattr -n user.myattr $DIR/$tdir/toopen || error "getfattr (5)"
640         setfattr -n user.myattr -v myval4 $DIR/$tdir/toopen ||
641                 error "setfattr (5)"
642         chattr +i $DIR/$tdir/toopen || error "chattr (5)"
643         lsattr $DIR/$tdir/toopen || error "lsattr (5)"
644         chattr -i $DIR/$tdir/toopen || error "chattr (5)"
645         ln -s $DIR/$tdir/toopen $DIR/$tdir/toopen_sl5 || error "symlink (5)"
646         ln $DIR/$tdir/toopen $DIR/$tdir/toopen_hl5 || error "hardlink (5)"
647         echo 3 > /proc/sys/vm/drop_caches
648
649         sleep 10
650         # metadata ops without matching sepol: should fail now
651         touch $DIR/$tdir/f10 && error "touch (6)"
652         lfs setstripe -c1 $DIR/$tdir/f11 && error "lfs setstripe (6)"
653         mkdir $DIR/$tdir/d10 && error "mkdir (6)"
654         lfs setdirstripe -i0 -c1 $DIR/$tdir/d11 && error "lfs setdirstripe (6)"
655         cat $DIR/$tdir/toopen && error "cat (6)"
656         rm -f $DIR/$tdir/ftoremove4 && error "rm (6)"
657         rmdir $DIR/$tdir/dtoremove4 && error "rmdir (6)"
658         mv $DIR/$tdir/ftorename2 $DIR/$tdir/ftorename && error "mv (11)"
659         mv $DIR/$tdir/dtorename2 $DIR/$tdir/dtorename && error "mv (12)"
660         getfattr -n user.myattr $DIR/$tdir/toopen && error "getfattr (6)"
661         setfattr -n user.myattr -v myval5 $DIR/$tdir/toopen &&
662                 error "setfattr (6)"
663         chattr +i $DIR/$tdir/toopen && error "chattr (6)"
664         lsattr $DIR/$tdir/toopen && error "lsattr (6)"
665         chattr -i $DIR/$tdir/toopen && error "chattr (6)"
666         ln -s $DIR/$tdir/toopen $DIR/$tdir/toopen_sl6 && error "symlink (6)"
667         ln $DIR/$tdir/toopen $DIR/$tdir/toopen_hl6 && error "hardlink (6)"
668
669         # restore SELinux boolean value
670         if [ "$sebool" == "off" ]; then
671                 setsebool -P deny_ptrace off
672         else
673                 setsebool -P deny_ptrace on
674         fi
675
676         # remove nodemap
677         remove_nodemap nm1
678         echo 0 > /sys/module/ptlrpc/parameters/send_sepol
679 }
680 run_test 21b "Send sepol for metadata ops"
681
682 complete $SECONDS
683 check_and_cleanup_lustre
684 exit_status