fstests: test restricted file access sysctls
[xfstests-dev.git] / common / rc
1 ##/bin/bash
2 # SPDX-License-Identifier: GPL-2.0+
3 # Copyright (c) 2000-2006 Silicon Graphics, Inc.  All Rights Reserved.
4
5 . common/config
6
7 BC=$(which bc 2> /dev/null) || BC=
8
9 # Some tests are not relevant or functional when testing XFS realtime
10 # subvolumes along with the rtinherit=1 mkfs option.  In these cases,
11 # this test will opt-out of the test.
12 _require_no_rtinherit()
13 {
14         [ "$FSTYP" = "xfs" ] && echo "$MKFS_OPTIONS" |
15                 egrep -q "rtinherit([^=]|=1|$)" && \
16                 _notrun "rtinherit mkfs option is not supported by this test."
17 }
18
19 _require_math()
20 {
21         if [ -z "$BC" ]; then
22                 _notrun "this test requires 'bc' tool for doing math operations"
23         fi
24 }
25
26 _math()
27 {
28         [ $# -le 0 ] && return
29         LANG=C echo "scale=0; $@" | "$BC" -q 2> /dev/null
30 }
31
32 dd()
33 {
34    if [ "$HOSTOS" == "Linux" ]
35    then 
36         command dd --help 2>&1 | grep noxfer >/dev/null
37         
38         if [ "$?" -eq 0 ]
39             then
40                 command dd status=noxfer $@
41             else
42                 command dd $@
43         fi
44    else
45         command dd $@
46    fi
47 }
48
49 # Prints the md5 checksum of a given file
50 _md5_checksum()
51 {
52         md5sum $1 | cut -d ' ' -f1
53 }
54
55 # Write a byte into a range of a file
56 _pwrite_byte() {
57         local pattern="$1"
58         local offset="$2"
59         local len="$3"
60         local file="$4"
61         local xfs_io_args="$5"
62
63         $XFS_IO_PROG $xfs_io_args -f -c "pwrite -S $pattern $offset $len" "$file"
64 }
65
66 # mmap-write a byte into a range of a file
67 _mwrite_byte() {
68         local pattern="$1"
69         local offset="$2"
70         local len="$3"
71         local mmap_len="$4"
72         local file="$5"
73
74         $XFS_IO_PROG -f -c "mmap -rw 0 $mmap_len" -c "mwrite -S $pattern $offset $len" "$file"
75 }
76
77 # ls -l w/ selinux sometimes puts a dot at the end:
78 # -rwxrw-r--. id1 id2 file1
79 # Also filter out lost+found directory on extN file system if present
80
81 _ls_l()
82 {
83         ls -l $* | sed "s/\(^[-rwxdlbcpsStT]*\)\. /\1 /" | grep -v 'lost+found'
84 }
85
86 _dump_err()
87 {
88     _err_msg="$*"
89     echo "$_err_msg"
90 }
91
92 _dump_err_cont()
93 {
94     _err_msg="$*"
95     echo -n "$_err_msg"
96 }
97
98 _dump_err2()
99 {
100     _err_msg="$*"
101     >&2 echo "$_err_msg"
102 }
103
104 _log_err()
105 {
106     _err_msg="$*"
107     echo "$_err_msg" | tee -a $seqres.full
108     echo "(see $seqres.full for details)"
109 }
110
111 # make sure we have a standard umask
112 umask 022
113
114 # check for correct setup and source the $FSTYP specific functions now
115 case "$FSTYP" in
116     xfs)
117          [ "$XFS_LOGPRINT_PROG" = "" ] && _fatal "xfs_logprint not found"
118          [ "$XFS_REPAIR_PROG" = "" ] && _fatal "xfs_repair not found"
119          [ "$XFS_DB_PROG" = "" ] && _fatal "xfs_db not found"
120          [ "$MKFS_XFS_PROG" = "" ] && _fatal "mkfs_xfs not found"
121          [ "$XFS_INFO_PROG" = "" ] && _fatal "xfs_info not found"
122
123          . ./common/xfs
124          ;;
125     udf)
126          [ "$MKFS_UDF_PROG" = "" ] && _fatal "mkfs_udf/mkudffs not found"
127          ;;
128     btrfs)
129          [ "$MKFS_BTRFS_PROG" = "" ] && _fatal "mkfs.btrfs not found"
130
131          . ./common/btrfs
132          ;;
133     ext4)
134          [ "$MKFS_EXT4_PROG" = "" ] && _fatal "mkfs.ext4 not found"
135          ;;
136     f2fs)
137          [ "$MKFS_F2FS_PROG" = "" ] && _fatal "mkfs.f2fs not found"
138          ;;
139     nfs)
140          . ./common/nfs
141          ;;
142     cifs)
143          ;;
144     9p)
145          ;;
146     ceph)
147          ;;
148     glusterfs)
149          ;;
150     overlay)
151          . ./common/overlay
152          ;;
153     reiser4)
154          [ "$MKFS_REISER4_PROG" = "" ] && _fatal "mkfs.reiser4 not found"
155          ;;
156     pvfs2)
157         ;;
158     ubifs)
159         [ "$UBIUPDATEVOL_PROG" = "" ] && _fatal "ubiupdatevol not found"
160         ;;
161 esac
162
163 if [ ! -z "$REPORT_LIST" ]; then
164         . ./common/report
165         _assert_report_list
166 fi
167
168 _get_filesize()
169 {
170     stat -c %s "$1"
171 }
172
173 _mount()
174 {
175     $MOUNT_PROG `_mount_ops_filter $*`
176 }
177
178 # Call _mount to do mount operation but also save mountpoint to
179 # MOUNTED_POINT_STACK. Note that the mount point must be the last parameter
180 _get_mount()
181 {
182         local mnt_point=${!#}
183         local mnt_dev=${@:(-2):1}
184         local scratch_opts=""
185         if [ "$mnt_dev" = "$SCRATCH_DEV" ]; then
186                 _scratch_options mount
187                 scratch_opts="$SCRATCH_OPTIONS"
188         fi
189
190         _mount $scratch_opts $*
191         if [ $? -eq 0 ]; then
192                 # mount --move operation updates the mountpoint, so remove
193                 # the old one and insert the new one
194                 if [[ "$*" =~ --move|-M ]]; then
195                         MOUNTED_POINT_STACK=`echo $MOUNTED_POINT_STACK | \
196                                                 cut -d\  -f2-`
197                 fi
198                 MOUNTED_POINT_STACK="$mnt_point $MOUNTED_POINT_STACK"
199         else
200                 return 1
201         fi
202 }
203
204 # Unmount the last mounted mountpoint in MOUNTED_POINT_STACK
205 # and return it to caller
206 _put_mount()
207 {
208         local last_mnt=`echo $MOUNTED_POINT_STACK | awk '{print $1}'`
209
210         if [ -n "$last_mnt" ]; then
211                 $UMOUNT_PROG $last_mnt
212         fi
213         MOUNTED_POINT_STACK=`echo $MOUNTED_POINT_STACK | cut -d\  -f2-`
214 }
215
216 # Unmount all mountpoints in MOUNTED_POINT_STACK and clear the stack
217 _clear_mount_stack()
218 {
219         if [ -n "$MOUNTED_POINT_STACK" ]; then
220                 $UMOUNT_PROG $MOUNTED_POINT_STACK
221         fi
222         MOUNTED_POINT_STACK=""
223 }
224
225 _scratch_options()
226 {
227     local type=$1
228     local rt_opt=""
229     local log_opt=""
230     SCRATCH_OPTIONS=""
231
232     if [ "$FSTYP" != "xfs" ]; then
233         return
234     fi
235
236     case $type in
237     mkfs)
238         SCRATCH_OPTIONS="$SCRATCH_OPTIONS -f"
239         rt_opt="-r"
240         log_opt="-l"
241         ;;
242     mount)
243         rt_opt="-o"
244         log_opt="-o"
245         ;;
246     esac
247     [ "$USE_EXTERNAL" = yes -a ! -z "$SCRATCH_RTDEV" ] && \
248         SCRATCH_OPTIONS="$SCRATCH_OPTIONS ${rt_opt}rtdev=$SCRATCH_RTDEV"
249     [ "$USE_EXTERNAL" = yes -a ! -z "$SCRATCH_LOGDEV" ] && \
250         SCRATCH_OPTIONS="$SCRATCH_OPTIONS ${log_opt}logdev=$SCRATCH_LOGDEV"
251 }
252
253 _test_options()
254 {
255     local type=$1
256     local rt_opt=""
257     local log_opt=""
258     TEST_OPTIONS=""
259
260     if [ "$FSTYP" != "xfs" ]; then
261         return
262     fi
263
264     case $type in
265     mkfs)
266         rt_opt="-r"
267         log_opt="-l"
268         ;;
269     mount)
270         rt_opt="-o"
271         log_opt="-o"
272         ;;
273     esac
274     [ "$USE_EXTERNAL" = yes -a ! -z "$TEST_RTDEV" ] && \
275         TEST_OPTIONS="$TEST_OPTIONS ${rt_opt}rtdev=$TEST_RTDEV"
276     [ "$USE_EXTERNAL" = yes -a ! -z "$TEST_LOGDEV" ] && \
277         TEST_OPTIONS="$TEST_OPTIONS ${log_opt}logdev=$TEST_LOGDEV"
278 }
279
280 _mount_ops_filter()
281 {
282     local params="$*"
283     local last_index=$(( $# - 1 ))
284
285     #get mount point to handle dmapi mtpt option correctly
286     [ $last_index -gt 0 ] && shift $last_index
287     local fs_escaped=$1
288
289     echo $params | sed -e 's/dmapi/dmi/' \
290         | $PERL_PROG -ne "s#mtpt=[^,|^\n|^\s]*#mtpt=$fs_escaped\1\2#; print;"
291
292 }
293
294 # Used for mounting non-scratch devices (e.g. loop, dm constructs)
295 # with the safe set of scratch mount options (e.g. loop image may be
296 # hosted on $SCRATCH_DEV, so can't use external scratch devices).
297 _common_dev_mount_options()
298 {
299         echo $MOUNT_OPTIONS $SELINUX_MOUNT_OPTIONS $*
300 }
301
302 _scratch_mount_options()
303 {
304         _scratch_options mount
305
306         echo `_common_dev_mount_options $*` $SCRATCH_OPTIONS \
307                                         $SCRATCH_DEV $SCRATCH_MNT
308 }
309
310 _supports_filetype()
311 {
312         local dir=$1
313
314         local fstyp=`$DF_PROG $dir | tail -1 | $AWK_PROG '{print $2}'`
315         case "$fstyp" in
316         xfs)
317                 $XFS_INFO_PROG $dir | grep -q "ftype=1"
318                 ;;
319         ext2|ext3|ext4)
320                 local dev=`$DF_PROG $dir | tail -1 | $AWK_PROG '{print $1}'`
321                 tune2fs -l $dev | grep -q filetype
322                 ;;
323         *)
324                 local testfile=$dir/$$.ftype
325                 touch $testfile
326                 # look for DT_UNKNOWN files
327                 local unknowns=$($here/src/t_dir_type $dir u | wc -l)
328                 rm $testfile
329                 # 0 unknowns is success
330                 return $unknowns
331                 ;;
332         esac
333 }
334
335 # mount scratch device with given options but don't check mount status
336 _try_scratch_mount()
337 {
338         if [ "$FSTYP" == "overlay" ]; then
339                 _overlay_scratch_mount $*
340                 return $?
341         fi
342         _mount -t $FSTYP `_scratch_mount_options $*`
343 }
344
345 # mount scratch device with given options and _fail if mount fails
346 _scratch_mount()
347 {
348         _try_scratch_mount $* || _fail "mount failed"
349 }
350
351 _scratch_unmount()
352 {
353         case "$FSTYP" in
354         overlay)
355                 _overlay_scratch_unmount
356                 ;;
357         btrfs)
358                 $UMOUNT_PROG $SCRATCH_MNT
359                 ;;
360         *)
361                 $UMOUNT_PROG $SCRATCH_DEV
362                 ;;
363         esac
364 }
365
366 _scratch_remount()
367 {
368     local opts="$1"
369
370     if test -n "$opts"; then
371         _try_scratch_mount "-o remount,$opts"
372     fi
373 }
374
375 _scratch_cycle_mount()
376 {
377     local opts="$1"
378
379     if [ "$FSTYP" = tmpfs ]; then
380         _scratch_remount "$opts"
381         return
382     fi
383     if test -n "$opts"; then
384         opts="-o $opts"
385     fi
386     _scratch_unmount
387     _try_scratch_mount "$opts" || _fail "cycle mount failed"
388 }
389
390 _scratch_shutdown()
391 {
392         if [ $FSTYP = "overlay" ]; then
393                 # In lagacy overlay usage, it may specify directory as
394                 # SCRATCH_DEV, in this case OVL_BASE_SCRATCH_DEV
395                 # will be null, so check OVL_BASE_SCRATCH_DEV before
396                 # running shutdown to avoid shutting down base fs accidently.
397                 if [ -z $OVL_BASE_SCRATCH_DEV ]; then
398                         _fail "_scratch_shutdown: call _require_scratch_shutdown first in test"
399                 else
400                         $here/src/godown $* $OVL_BASE_SCRATCH_MNT
401                 fi
402         else
403                 $here/src/godown $* $SCRATCH_MNT
404         fi
405 }
406
407 # Return a file path that can be used to shut down the scratch filesystem.
408 # Caller should _require_scratch_shutdown before using this.
409 _scratch_shutdown_handle()
410 {
411         if [ $FSTYP = "overlay" ]; then
412                 echo $OVL_BASE_SCRATCH_MNT
413         else
414                 echo $SCRATCH_MNT
415         fi
416 }
417
418 _test_mount()
419 {
420     if [ "$FSTYP" == "overlay" ]; then
421         _overlay_test_mount $*
422         return $?
423     fi
424     _test_options mount
425     _mount -t $FSTYP $TEST_OPTIONS $TEST_FS_MOUNT_OPTS $SELINUX_MOUNT_OPTIONS $* $TEST_DEV $TEST_DIR
426 }
427
428 _test_unmount()
429 {
430         if [ "$FSTYP" == "overlay" ]; then
431                 _overlay_test_unmount
432         else
433                 $UMOUNT_PROG $TEST_DEV
434         fi
435 }
436
437 _test_cycle_mount()
438 {
439     if [ "$FSTYP" = tmpfs ]; then
440         return
441     fi
442     _test_unmount
443     _test_mount
444 }
445
446 _scratch_mkfs_options()
447 {
448     _scratch_options mkfs
449     echo $SCRATCH_OPTIONS $MKFS_OPTIONS $* $SCRATCH_DEV
450 }
451
452 # Do the actual mkfs work on SCRATCH_DEV. Firstly mkfs with both MKFS_OPTIONS
453 # and user specified mkfs options, if that fails (due to conflicts between mkfs
454 # options), do a second mkfs with only user provided mkfs options.
455 #
456 # First param is the mkfs command without any mkfs options and device.
457 # Second param is the filter to remove unnecessary messages from mkfs stderr.
458 # Other extra mkfs options are followed.
459 _scratch_do_mkfs()
460 {
461         local mkfs_cmd=$1
462         local mkfs_filter=$2
463         shift 2
464         local extra_mkfs_options=$*
465         local mkfs_status
466         local tmp=`mktemp -u`
467
468         # save mkfs output in case conflict means we need to run again.
469         # only the output for the mkfs that applies should be shown
470         eval "$mkfs_cmd $MKFS_OPTIONS $extra_mkfs_options $SCRATCH_DEV" \
471                 2>$tmp.mkfserr 1>$tmp.mkfsstd
472         mkfs_status=$?
473
474         # a mkfs failure may be caused by conflicts between $MKFS_OPTIONS and
475         # $extra_mkfs_options
476         if [ $mkfs_status -ne 0 -a -n "$extra_mkfs_options" ]; then
477                 (
478                 echo -n "** mkfs failed with extra mkfs options "
479                 echo "added to \"$MKFS_OPTIONS\" by test $seq **"
480                 echo -n "** attempting to mkfs using only test $seq "
481                 echo "options: $extra_mkfs_options **"
482                 ) >> $seqres.full
483
484                 # running mkfs again. overwrite previous mkfs output files
485                 eval "$mkfs_cmd $extra_mkfs_options $SCRATCH_DEV" \
486                         2>$tmp.mkfserr 1>$tmp.mkfsstd
487                 mkfs_status=$?
488         fi
489
490         # output stored mkfs output, filtering unnecessary output from stderr
491         cat $tmp.mkfsstd
492         eval "cat $tmp.mkfserr | $mkfs_filter" >&2
493
494         rm -f $tmp.mkfserr $tmp.mkfsstd
495         return $mkfs_status
496 }
497
498 _scratch_metadump()
499 {
500         local dumpfile=$1
501         shift
502         local options=
503
504         [ "$USE_EXTERNAL" = yes -a ! -z "$SCRATCH_LOGDEV" ] && \
505                 options="-l $SCRATCH_LOGDEV"
506
507         xfs_metadump $options "$@" $SCRATCH_DEV $dumpfile
508 }
509
510 _setup_large_ext4_fs()
511 {
512         local fs_size=$1
513         local tmp_dir=/tmp/
514
515         [ "$LARGE_SCRATCH_DEV" != yes ] && return 0
516         [ -z "$SCRATCH_DEV_EMPTY_SPACE" ] && SCRATCH_DEV_EMPTY_SPACE=0
517         [ $SCRATCH_DEV_EMPTY_SPACE -ge $fs_size ] && return 0
518
519         # Default free space in the FS is 50GB, but you can specify more via
520         # SCRATCH_DEV_EMPTY_SPACE
521         local space_to_consume=$(($fs_size - 50*1024*1024*1024 - $SCRATCH_DEV_EMPTY_SPACE))
522
523         # mount the filesystem and create 16TB - 4KB files until we consume
524         # all the necessary space.
525         _try_scratch_mount 2>&1 >$tmp_dir/mnt.err
526         local status=$?
527         if [ $status -ne 0 ]; then
528                 echo "mount failed"
529                 cat $tmp_dir/mnt.err >&2
530                 rm -f $tmp_dir/mnt.err
531                 return $status
532         fi
533         rm -f $tmp_dir/mnt.err
534
535         local file_size=$((16*1024*1024*1024*1024 - 4096))
536         local nfiles=0
537         while [ $space_to_consume -gt $file_size ]; do
538
539                 xfs_io -F -f \
540                         -c "truncate $file_size" \
541                         -c "falloc -k 0 $file_size" \
542                         $SCRATCH_MNT/.use_space.$nfiles 2>&1
543                 status=$?
544                 if [ $status -ne 0 ]; then
545                         break;
546                 fi
547
548                 space_to_consume=$(( $space_to_consume - $file_size ))
549                 nfiles=$(($nfiles + 1))
550         done
551
552         # consume the remaining space.
553         if [ $space_to_consume -gt 0 ]; then
554                 xfs_io -F -f \
555                         -c "truncate $space_to_consume" \
556                         -c "falloc -k 0 $space_to_consume" \
557                         $SCRATCH_MNT/.use_space.$nfiles 2>&1
558                 status=$?
559         fi
560         export NUM_SPACE_FILES=$nfiles
561
562         _scratch_unmount
563         if [ $status -ne 0 ]; then
564                 echo "large file prealloc failed"
565                 cat $tmp_dir/mnt.err >&2
566                 return $status
567         fi
568         return 0
569 }
570
571 _scratch_mkfs_ext4()
572 {
573         local mkfs_cmd="$MKFS_EXT4_PROG -F"
574         local mkfs_filter="grep -v -e ^Warning: -e \"^mke2fs \""
575         local tmp=`mktemp -u`
576         local mkfs_status
577
578         [ "$USE_EXTERNAL" = yes -a ! -z "$SCRATCH_LOGDEV" ] && \
579             $mkfs_cmd -O journal_dev $MKFS_OPTIONS $SCRATCH_LOGDEV && \
580             mkfs_cmd="$mkfs_cmd -J device=$SCRATCH_LOGDEV"
581
582         _scratch_do_mkfs "$mkfs_cmd" "$mkfs_filter" $* 2>$tmp.mkfserr 1>$tmp.mkfsstd
583         mkfs_status=$?
584
585         if [ $mkfs_status -eq 0 -a "$LARGE_SCRATCH_DEV" = yes ]; then
586                 # manually parse the mkfs output to get the fs size in bytes
587                 local fs_size=`cat $tmp.mkfsstd | awk ' \
588                         /^Block size/ { split($2, a, "="); bs = a[2] ; } \
589                         / inodes, / { blks = $3 } \
590                         /reserved for the super user/ { resv = $1 } \
591                         END { fssize = bs * blks - resv; print fssize }'`
592
593                 _setup_large_ext4_fs $fs_size
594                 mkfs_status=$?
595         fi
596
597         # output mkfs stdout and stderr
598         cat $tmp.mkfsstd
599         cat $tmp.mkfserr >&2
600         rm -f $tmp.mkfserr $tmp.mkfsstd
601
602         return $mkfs_status
603 }
604
605 _test_mkfs()
606 {
607     case $FSTYP in
608     nfs*)
609         # do nothing for nfs
610         ;;
611     cifs)
612         # do nothing for cifs
613         ;;
614     9p)
615         # do nothing for 9p
616         ;;
617     virtiofs)
618         # do nothing for virtiofs
619         ;;
620     ceph)
621         # do nothing for ceph
622         ;;
623     glusterfs)
624         # do nothing for glusterfs
625         ;;
626     overlay)
627         # do nothing for overlay
628         ;;
629     pvfs2)
630         # do nothing for pvfs2
631         ;;
632     udf)
633         $MKFS_UDF_PROG $MKFS_OPTIONS $* $TEST_DEV > /dev/null
634         ;;
635     btrfs)
636         $MKFS_BTRFS_PROG $MKFS_OPTIONS $* $TEST_DEV > /dev/null
637         ;;
638     ext2|ext3|ext4)
639         $MKFS_PROG -t $FSTYP -- -F $MKFS_OPTIONS $* $TEST_DEV
640         ;;
641     *)
642         yes | $MKFS_PROG -t $FSTYP -- $MKFS_OPTIONS $* $TEST_DEV
643         ;;
644     esac
645 }
646
647 _mkfs_dev()
648 {
649     local tmp=`mktemp -u`
650     case $FSTYP in
651     nfs*)
652         # do nothing for nfs
653         ;;
654     9p)
655         # do nothing for 9p
656         ;;
657     virtiofs)
658         # do nothing for virtiofs
659         ;;
660     overlay)
661         # do nothing for overlay
662         ;;
663     pvfs2)
664         # do nothing for pvfs2
665         ;;
666     udf)
667         $MKFS_UDF_PROG $MKFS_OPTIONS $* 2>$tmp.mkfserr 1>$tmp.mkfsstd
668         ;;
669     btrfs)
670         $MKFS_BTRFS_PROG $MKFS_OPTIONS $* 2>$tmp.mkfserr 1>$tmp.mkfsstd
671         ;;
672     ext2|ext3|ext4)
673         $MKFS_PROG -t $FSTYP -- -F $MKFS_OPTIONS $* \
674                 2>$tmp.mkfserr 1>$tmp.mkfsstd
675         ;;
676     xfs)
677         $MKFS_PROG -t $FSTYP -- -f $MKFS_OPTIONS $* \
678                 2>$tmp.mkfserr 1>$tmp.mkfsstd
679         ;;
680     *)
681         yes | $MKFS_PROG -t $FSTYP -- $MKFS_OPTIONS $* \
682                 2>$tmp.mkfserr 1>$tmp.mkfsstd
683         ;;
684     esac
685
686     if [ $? -ne 0 ]; then
687         # output stored mkfs output
688         cat $tmp.mkfserr >&2
689         cat $tmp.mkfsstd
690         status=1
691         exit 1
692     fi
693     rm -f $tmp.mkfserr $tmp.mkfsstd
694 }
695
696 # remove all files in $SCRATCH_MNT, useful when testing on NFS/CIFS
697 _scratch_cleanup_files()
698 {
699         case $FSTYP in
700         overlay)
701                 # Avoid rm -rf /* if we messed up
702                 [ -n "$OVL_BASE_SCRATCH_MNT" ] || return 1
703                 _overlay_base_scratch_mount || return 1
704                 rm -rf $OVL_BASE_SCRATCH_MNT/* || return 1
705                 _overlay_mkdirs $OVL_BASE_SCRATCH_MNT
706                 # leave base fs mouted so tests can setup lower/upper dir files
707                 ;;
708         *)
709                 [ -n "$SCRATCH_MNT" ] || return 1
710                 _scratch_mount
711                 rm -rf $SCRATCH_MNT/*
712                 _scratch_unmount
713                 ;;
714         esac
715 }
716
717 _scratch_mkfs()
718 {
719         local mkfs_cmd=""
720         local mkfs_filter=""
721         local mkfs_status
722
723         case $FSTYP in
724         nfs*|cifs|ceph|overlay|glusterfs|pvfs2|9p|virtiofs)
725                 # unable to re-create this fstyp, just remove all files in
726                 # $SCRATCH_MNT to avoid EEXIST caused by the leftover files
727                 # created in previous runs
728                 _scratch_cleanup_files
729                 return $?
730                 ;;
731         tmpfs)
732                 # do nothing for tmpfs
733                 return 0
734                 ;;
735         ubifs)
736                 # erase the UBI volume; reformated automatically on next mount
737                 $UBIUPDATEVOL_PROG ${SCRATCH_DEV} -t
738                 return 0
739                 ;;
740         ext4)
741                 _scratch_mkfs_ext4 $*
742                 return $?
743                 ;;
744         xfs)
745                 _scratch_mkfs_xfs $*
746                 return $?
747                 ;;
748         udf)
749                 mkfs_cmd="$MKFS_UDF_PROG"
750                 mkfs_filter="cat"
751                 ;;
752         btrfs)
753                 mkfs_cmd="$MKFS_BTRFS_PROG"
754                 mkfs_filter="cat"
755                 ;;
756         ext3)
757                 mkfs_cmd="$MKFS_PROG -t $FSTYP -- -F"
758                 mkfs_filter="grep -v -e ^Warning: -e \"^mke2fs \""
759
760                 # put journal on separate device?
761                 [ "$USE_EXTERNAL" = yes -a ! -z "$SCRATCH_LOGDEV" ] && \
762                 $mkfs_cmd -O journal_dev $MKFS_OPTIONS $SCRATCH_LOGDEV && \
763                 mkfs_cmd="$mkfs_cmd -J device=$SCRATCH_LOGDEV"
764                 ;;
765         ext2)
766                 mkfs_cmd="$MKFS_PROG -t $FSTYP -- -F"
767                 mkfs_filter="grep -v -e ^Warning: -e \"^mke2fs \""
768                 ;;
769         f2fs)
770                 mkfs_cmd="$MKFS_F2FS_PROG"
771                 mkfs_filter="cat"
772                 ;;
773         ocfs2)
774                 mkfs_cmd="yes | $MKFS_PROG -t $FSTYP --"
775                 mkfs_filter="grep -v -e ^mkfs\.ocfs2"
776                 ;;
777         *)
778                 mkfs_cmd="yes | $MKFS_PROG -t $FSTYP --"
779                 mkfs_filter="cat"
780                 ;;
781         esac
782
783         _scratch_do_mkfs "$mkfs_cmd" "$mkfs_filter" $*
784         return $?
785 }
786
787 # Helper function to get a spare or replace-target device from
788 # configured SCRATCH_DEV_POLL, must call _scratch_dev_pool_get()
789 # before _spare_dev_get(). Replace-target-device/Spare-device will
790 # be assigned to SPARE_DEV.
791 # As of now only one replace-target-device/spare-device can be
792 # assigned.
793 #
794 # Usage:
795 #  _scratch_dev_pool_get() <ndevs>
796 #     _spare_dev_get()
797 #     :: do stuff
798 #     _spare_dev_put()
799 #  _scratch_dev_pool_put()
800 #
801 _spare_dev_get()
802 {
803         typeset -p SCRATCH_DEV_POOL_SAVED >/dev/null 2>&1
804         if [ $? -ne 0 ]; then
805                 _fail "Bug: unset val, must call _scratch_dev_pool_get before _spare_dev_get"
806         fi
807
808         if [ -z "$SCRATCH_DEV_POOL_SAVED" ]; then
809                 _fail "Bug: str empty, must call _scratch_dev_pool_get before _spare_dev_get"
810         fi
811
812         # Check if the spare is already assigned
813         typeset -p SPARE_DEV >/dev/null 2>&1
814         if [ $? -eq 0 ]; then
815                 if [ ! -z "$SPARE_DEV" ]; then
816                         _fail "Bug: SPARE_DEV = $SPARE_DEV already assigned"
817                 fi
818         fi
819
820         local ndevs=`echo $SCRATCH_DEV_POOL| wc -w`
821         local config_ndevs=`echo $SCRATCH_DEV_POOL_SAVED| wc -w`
822
823         if [ $ndevs -eq $config_ndevs ]; then
824                 _notrun "All devs used no spare"
825         fi
826         # Get a dev that is not used
827         local -a devs="( $SCRATCH_DEV_POOL_SAVED )"
828         SPARE_DEV=${devs[@]:$ndevs:1}
829         export SPARE_DEV
830 }
831
832 _spare_dev_put()
833 {
834         typeset -p SPARE_DEV >/dev/null 2>&1
835         if [ $? -ne 0 ]; then
836                 _fail "Bug: unset val, must call _spare_dev_get before its put"
837         fi
838
839         if [ -z "$SPARE_DEV" ]; then
840                 _fail "Bug: str empty, must call _spare_dev_get before its put"
841         fi
842
843         export SPARE_DEV=""
844 }
845
846 #
847 # Generally test cases will have..
848 #   _require_scratch_dev_pool X
849 # to make sure it has the enough scratch devices including
850 # replace-target and spare device. Now arg1 here is the
851 # required number of scratch devices by a-test-case excluding
852 # the replace-target and spare device. So this function will
853 # set SCRATCH_DEV_POOL to the specified number of devices.
854 #
855 # Usage:
856 #  _scratch_dev_pool_get() <ndevs>
857 #     :: do stuff
858 #
859 #  _scratch_dev_pool_put()
860 #
861 _scratch_dev_pool_get()
862 {
863         if [ $# -ne 1 ]; then
864                 _fail "Usage: _scratch_dev_pool_get ndevs"
865         fi
866
867         local test_ndevs=$1
868         local config_ndevs=`echo $SCRATCH_DEV_POOL| wc -w`
869         local -a devs="( $SCRATCH_DEV_POOL )"
870
871         typeset -p config_ndevs >/dev/null 2>&1
872         if [ $? -ne 0 ]; then
873                 _fail "Bug: cant find SCRATCH_DEV_POOL ndevs"
874         fi
875
876         if [ $config_ndevs -lt $test_ndevs ]; then
877                 _notrun "Need at least test requested number of ndevs $test_ndevs"
878         fi
879
880         SCRATCH_DEV_POOL_SAVED=${SCRATCH_DEV_POOL}
881         export SCRATCH_DEV_POOL_SAVED
882         SCRATCH_DEV_POOL=${devs[@]:0:$test_ndevs}
883         export SCRATCH_DEV_POOL
884 }
885
886 _scratch_dev_pool_put()
887 {
888         typeset -p SCRATCH_DEV_POOL_SAVED >/dev/null 2>&1
889         if [ $? -ne 0 ]; then
890                 _fail "Bug: unset val, must call _scratch_dev_pool_get before _scratch_dev_pool_put"
891         fi
892
893         if [ -z "$SCRATCH_DEV_POOL_SAVED" ]; then
894                 _fail "Bug: str empty, must call _scratch_dev_pool_get before _scratch_dev_pool_put"
895         fi
896
897         export SCRATCH_DEV_POOL=$SCRATCH_DEV_POOL_SAVED
898         export SCRATCH_DEV_POOL_SAVED=""
899 }
900
901 _scratch_pool_mkfs()
902 {
903     case $FSTYP in
904     btrfs)
905         $MKFS_BTRFS_PROG $MKFS_OPTIONS $* $SCRATCH_DEV_POOL > /dev/null
906         ;;
907     *)
908         echo "_scratch_pool_mkfs is not implemented for $FSTYP" 1>&2
909         ;;
910     esac
911 }
912
913 # Return the amount of free memory available on the system
914 _free_memory_bytes()
915 {
916     free -b | grep ^Mem | awk '{print $4}'
917 }
918
919 _available_memory_bytes()
920 {
921         nf=`free -b | grep ^Mem | awk '{print NF}'`
922         if [[ nf -lt 7 ]]; then
923                 # Doesn't have available field. Fallback.
924                 _free_memory_bytes
925         else
926                 free -b | grep ^Mem | awk '{print $7}'
927         fi
928 }
929
930 # Create fs of certain size on scratch device
931 # _scratch_mkfs_sized <size in bytes> [optional blocksize]
932 _scratch_mkfs_sized()
933 {
934     local fssize=$1
935     local blocksize=$2
936     local def_blksz
937
938     case $FSTYP in
939     xfs)
940         def_blksz=`echo $MKFS_OPTIONS|sed -rn 's/.*-b ?size= ?+([0-9]+).*/\1/p'`
941         ;;
942     ext2|ext3|ext4|ext4dev|udf|btrfs|reiser4|ocfs2|reiserfs)
943         def_blksz=`echo $MKFS_OPTIONS| sed -rn 's/.*-b ?+([0-9]+).*/\1/p'`
944         ;;
945     jfs)
946         def_blksz=4096
947         ;;
948     esac
949
950     [ -n "$def_blksz" ] && blocksize=$def_blksz
951     [ -z "$blocksize" ] && blocksize=4096
952
953
954     local re='^[0-9]+$'
955     if ! [[ $fssize =~ $re ]] ; then
956         _notrun "error: _scratch_mkfs_sized: fs size \"$fssize\" not an integer."
957     fi
958     if ! [[ $blocksize =~ $re ]] ; then
959         _notrun "error: _scratch_mkfs_sized: block size \"$blocksize\" not an integer."
960     fi
961
962     local blocks=`expr $fssize / $blocksize`
963
964     if [ "$HOSTOS" == "Linux" -a -b "$SCRATCH_DEV" ]; then
965         local devsize=`blockdev --getsize64 $SCRATCH_DEV`
966         [ "$fssize" -gt "$devsize" ] && _notrun "Scratch device too small"
967     fi
968
969     case $FSTYP in
970     xfs)
971         # don't override MKFS_OPTIONS that set a block size.
972         echo $MKFS_OPTIONS |egrep -q "b?size="
973         if [ $? -eq 0 ]; then
974                 _scratch_mkfs_xfs -d size=$fssize
975         else
976                 _scratch_mkfs_xfs -d size=$fssize -b size=$blocksize
977         fi
978         ;;
979     ext2|ext3|ext4|ext4dev)
980         ${MKFS_PROG}.$FSTYP -F $MKFS_OPTIONS -b $blocksize $SCRATCH_DEV $blocks
981         ;;
982     gfs2)
983         # mkfs.gfs2 doesn't automatically shrink journal files on small
984         # filesystems, so the journal files may end up being bigger than the
985         # filesystem, which will cause mkfs.gfs2 to fail.  Until that's fixed,
986         # shrink the journal size to at most one eigth of the filesystem and at
987         # least 8 MiB, the minimum size allowed.
988         local min_journal_size=8
989         local default_journal_size=128
990         if (( fssize/8 / (1024*1024) < default_journal_size )); then
991             local journal_size=$(( fssize/8 / (1024*1024) ))
992             (( journal_size >= min_journal_size )) || journal_size=$min_journal_size
993             MKFS_OPTIONS="-J $journal_size $MKFS_OPTIONS"
994         fi
995         ${MKFS_PROG}.$FSTYP $MKFS_OPTIONS -O -b $blocksize $SCRATCH_DEV $blocks
996         ;;
997     ocfs2)
998         yes | ${MKFS_PROG}.$FSTYP -F $MKFS_OPTIONS -b $blocksize $SCRATCH_DEV $blocks
999         ;;
1000     udf)
1001         $MKFS_UDF_PROG $MKFS_OPTIONS -b $blocksize $SCRATCH_DEV $blocks
1002         ;;
1003     btrfs)
1004         local mixed_opt=
1005         # minimum size that's needed without the mixed option.
1006         # Ref: btrfs-prog: btrfs_min_dev_size()
1007         # Non mixed mode is also the default option.
1008         (( fssize < $((256 * 1024 *1024)) )) && mixed_opt='--mixed'
1009         $MKFS_BTRFS_PROG $MKFS_OPTIONS $mixed_opt -b $fssize $SCRATCH_DEV
1010         ;;
1011     jfs)
1012         ${MKFS_PROG}.$FSTYP $MKFS_OPTIONS $SCRATCH_DEV $blocks
1013         ;;
1014     reiserfs)
1015         ${MKFS_PROG}.$FSTYP $MKFS_OPTIONS -b $blocksize $SCRATCH_DEV $blocks
1016         ;;
1017     reiser4)
1018         # mkfs.resier4 requires size in KB as input for creating filesystem
1019         $MKFS_REISER4_PROG $MKFS_OPTIONS -y -b $blocksize $SCRATCH_DEV \
1020                            `expr $fssize / 1024`
1021         ;;
1022     f2fs)
1023         # mkfs.f2fs requires # of sectors as an input for the size
1024         local sector_size=`blockdev --getss $SCRATCH_DEV`
1025         $MKFS_F2FS_PROG $MKFS_OPTIONS $SCRATCH_DEV `expr $fssize / $sector_size`
1026         ;;
1027     tmpfs)
1028         local free_mem=`_free_memory_bytes`
1029         if [ "$free_mem" -lt "$fssize" ] ; then
1030            _notrun "Not enough memory ($free_mem) for tmpfs with $fssize bytes"
1031         fi
1032         export MOUNT_OPTIONS="-o size=$fssize $TMPFS_MOUNT_OPTIONS"
1033         ;;
1034     *)
1035         _notrun "Filesystem $FSTYP not supported in _scratch_mkfs_sized"
1036         ;;
1037     esac
1038 }
1039
1040 # Emulate an N-data-disk stripe w/ various stripe units
1041 # _scratch_mkfs_geom <sunit bytes> <swidth multiplier> [optional blocksize]
1042 _scratch_mkfs_geom()
1043 {
1044     local sunit_bytes=$1
1045     local swidth_mult=$2
1046     local blocksize=$3
1047     [ -z "$blocksize" ] && blocksize=4096
1048
1049     local sunit_blocks=$(( sunit_bytes / blocksize ))
1050     local swidth_blocks=$(( sunit_blocks * swidth_mult ))
1051
1052     case $FSTYP in
1053     xfs)
1054         MKFS_OPTIONS+=" -b size=$blocksize, -d su=$sunit_bytes,sw=$swidth_mult"
1055         ;;
1056     ext4|ext4dev)
1057         MKFS_OPTIONS+=" -b $blocksize -E stride=$sunit_blocks,stripe_width=$swidth_blocks"
1058         ;;
1059     *)
1060         _notrun "can't mkfs $FSTYP with geometry"
1061         ;;
1062     esac
1063     _scratch_mkfs
1064 }
1065
1066 # Create fs of certain blocksize on scratch device
1067 # _scratch_mkfs_blocksized blocksize
1068 _scratch_mkfs_blocksized()
1069 {
1070     local blocksize=$1
1071
1072     local re='^[0-9]+$'
1073     if ! [[ $blocksize =~ $re ]] ; then
1074         _notrun "error: _scratch_mkfs_sized: block size \"$blocksize\" not an integer."
1075     fi
1076
1077     case $FSTYP in
1078     xfs)
1079         _scratch_mkfs_xfs $MKFS_OPTIONS -b size=$blocksize
1080         ;;
1081     ext2|ext3|ext4)
1082         ${MKFS_PROG}.$FSTYP -F $MKFS_OPTIONS -b $blocksize $SCRATCH_DEV
1083         ;;
1084     gfs2)
1085         ${MKFS_PROG}.$FSTYP $MKFS_OPTIONS -O -b $blocksize $SCRATCH_DEV
1086         ;;
1087     ocfs2)
1088         yes | ${MKFS_PROG}.$FSTYP -F $MKFS_OPTIONS -b $blocksize -C $blocksize $SCRATCH_DEV
1089         ;;
1090     *)
1091         _notrun "Filesystem $FSTYP not supported in _scratch_mkfs_blocksized"
1092         ;;
1093     esac
1094 }
1095
1096 _scratch_resvblks()
1097 {
1098         case $FSTYP in
1099         xfs)
1100                 xfs_io -x -c "resblks $1" $SCRATCH_MNT
1101                 ;;
1102         *)
1103                 ;;
1104         esac
1105 }
1106
1107
1108 # Repair scratch filesystem.  Returns 0 if the FS is good to go (either no
1109 # errors found or errors were fixed) and nonzero otherwise; also spits out
1110 # a complaint on stderr if fsck didn't tell us that the FS is good to go.
1111 _repair_scratch_fs()
1112 {
1113     case $FSTYP in
1114     xfs)
1115         _scratch_xfs_repair "$@" 2>&1
1116         local res=$?
1117         if [ "$res" -ne 0 ]; then
1118                 echo "xfs_repair returns $res; replay log?"
1119                 _try_scratch_mount
1120                 res=$?
1121                 if [ "$res" -gt 0 ]; then
1122                         echo "mount returns $res; zap log?"
1123                         _scratch_xfs_repair -L 2>&1
1124                         echo "log zap returns $?"
1125                 else
1126                         umount "$SCRATCH_MNT"
1127                 fi
1128                 _scratch_xfs_repair "$@" 2>&1
1129                 res=$?
1130         fi
1131         if [ $res -ne 0 ]; then
1132                 _dump_err2 "xfs_repair failed, err=$res"
1133         fi
1134         return $res
1135         ;;
1136     *)
1137         local dev=$SCRATCH_DEV
1138         local fstyp=$FSTYP
1139         if [ $FSTYP = "overlay" -a -n "$OVL_BASE_SCRATCH_DEV" ]; then
1140                 _repair_overlay_scratch_fs
1141                 # Fall through to repair base fs
1142                 dev=$OVL_BASE_SCRATCH_DEV
1143                 fstyp=$OVL_BASE_FSTYP
1144                 $UMOUNT_PROG $OVL_BASE_SCRATCH_MNT
1145         fi
1146         # Let's hope fsck -y suffices...
1147         fsck -t $fstyp -y $dev 2>&1
1148         local res=$?
1149         case $res in
1150         $FSCK_OK|$FSCK_NONDESTRUCT|$FSCK_REBOOT)
1151                 res=0
1152                 ;;
1153         *)
1154                 _dump_err2 "fsck.$FSTYP failed, err=$res"
1155                 ;;
1156         esac
1157         return $res
1158         ;;
1159     esac
1160 }
1161
1162 _get_pids_by_name()
1163 {
1164     if [ $# -ne 1 ]
1165     then
1166         echo "Usage: _get_pids_by_name process-name" 1>&2
1167         exit 1
1168     fi
1169
1170     # Algorithm ... all ps(1) variants have a time of the form MM:SS or
1171     # HH:MM:SS before the psargs field, use this as the search anchor.
1172     #
1173     # Matches with $1 (process-name) occur if the first psarg is $1
1174     # or ends in /$1 ... the matching uses sed's regular expressions,
1175     # so passing a regex into $1 will work.
1176
1177     ps $PS_ALL_FLAGS \
1178     | sed -n \
1179         -e 's/$/ /' \
1180         -e 's/[         ][      ]*/ /g' \
1181         -e 's/^ //' \
1182         -e 's/^[^ ]* //' \
1183         -e "/[0-9]:[0-9][0-9]  *[^ ]*\/$1 /s/ .*//p" \
1184         -e "/[0-9]:[0-9][0-9]  *$1 /s/ .*//p"
1185 }
1186
1187 #
1188 # _df_device : get an IRIX style df line for a given device
1189 #
1190 #       - returns "" if not mounted
1191 #       - returns fs type in field two (ala IRIX)
1192 #       - joins line together if split by fancy df formatting
1193 #       - strips header etc
1194 #
1195
1196 _df_device()
1197 {
1198     if [ $# -ne 1 ]
1199     then
1200         echo "Usage: _df_device device" 1>&2
1201         exit 1
1202     fi
1203
1204     # Note that we use "==" here so awk doesn't try to interpret an NFS over
1205     # IPv6 server as a regular expression.
1206     $DF_PROG 2>/dev/null | $AWK_PROG -v what=$1 '
1207         ($1==what) && (NF==1) {
1208             v=$1
1209             getline
1210             print v, $0
1211             exit
1212         }
1213         ($1==what) {
1214             print
1215             exit
1216         }
1217     '
1218 }
1219
1220 #
1221 # _df_dir : get an IRIX style df line for device where a directory resides
1222 #
1223 #       - returns fs type in field two (ala IRIX)
1224 #       - joins line together if split by fancy df formatting
1225 #       - strips header etc
1226 #
1227
1228 _df_dir()
1229 {
1230     if [ $# -ne 1 ]
1231     then
1232         echo "Usage: _df_dir device" 1>&2
1233         exit 1
1234     fi
1235
1236     $DF_PROG $1 2>/dev/null | $AWK_PROG -v what=$1 '
1237         NR == 2 && NF==1 {
1238             v=$1
1239             getline
1240             print v, $0;
1241             exit 0
1242         }
1243         NR == 2 {
1244             print;
1245             exit 0
1246         }
1247         {}
1248     '
1249     # otherwise, nada
1250 }
1251
1252 # return percentage used disk space for mounted device
1253
1254 _used()
1255 {
1256     if [ $# -ne 1 ]
1257     then
1258         echo "Usage: _used device" 1>&2
1259         exit 1
1260     fi
1261
1262     _df_device $1 | $AWK_PROG '{ sub("%", "") ; print $6 }'
1263 }
1264
1265 # return the FS type of a mounted device
1266 #
1267 _fs_type()
1268 {
1269     if [ $# -ne 1 ]
1270     then
1271         echo "Usage: _fs_type device" 1>&2
1272         exit 1
1273     fi
1274
1275     #
1276     # The Linux kernel shows NFSv4 filesystems in df output as
1277     # filesystem type nfs4, although we mounted it as nfs earlier.
1278     # Fix the filesystem type up here so that the callers don't
1279     # have to bother with this quirk.
1280     #
1281     _df_device $1 | $AWK_PROG '{ print $2 }' | \
1282         sed -e 's/nfs4/nfs/' -e 's/fuse.glusterfs/glusterfs/'
1283 }
1284
1285 # return the FS mount options of a mounted device
1286 #
1287 # should write a version which just parses the output of mount for IRIX
1288 # compatibility, but since this isn't used at all, at the moment I'll leave
1289 # this for now
1290 #
1291 _fs_options()
1292 {
1293     if [ $# -ne 1 ]
1294     then
1295         echo "Usage: _fs_options device" 1>&2
1296         exit 1
1297     fi
1298
1299     $AWK_PROG -v dev=$1 '
1300         match($1,dev) { print $4 }
1301     ' </proc/mounts
1302 }
1303
1304 # returns device number if a file is a block device
1305 #
1306 _is_block_dev()
1307 {
1308     if [ $# -ne 1 ]
1309     then
1310         echo "Usage: _is_block_dev dev" 1>&2
1311         exit 1
1312     fi
1313
1314     local dev=$1
1315     if [ -L "$dev" ]; then
1316         dev=`readlink -f "$dev"`
1317     fi
1318
1319     if [ -b "$dev" ]; then
1320         $here/src/lstat64 "$dev" | $AWK_PROG '/Device type:/ { print $9 }'
1321     fi
1322 }
1323
1324 # returns device number if a file is a character device
1325 #
1326 _is_char_dev()
1327 {
1328         if [ $# -ne 1 ]; then
1329                 echo "Usage: _is_char_dev dev" 1>&2
1330                 exit 1
1331         fi
1332
1333         local dev=$1
1334         if [ -L "$dev" ]; then
1335                 dev=`readlink -f "$dev"`
1336         fi
1337
1338         if [ -c "$dev" ]; then
1339                 $here/src/lstat64 "$dev" | $AWK_PROG '/Device type:/ { print $9 }'
1340         fi
1341 }
1342
1343 # Do a command, log it to $seqres.full, optionally test return status
1344 # and die if command fails. If called with one argument _do executes the
1345 # command, logs it, and returns its exit status. With two arguments _do
1346 # first prints the message passed in the first argument, and then "done"
1347 # or "fail" depending on the return status of the command passed in the
1348 # second argument. If the command fails and the variable _do_die_on_error
1349 # is set to "always" or the two argument form is used and _do_die_on_error
1350 # is set to "message_only" _do will print an error message to
1351 # $seqres.out and exit.
1352
1353 _do()
1354 {
1355     if [ $# -eq 1 ]; then
1356         local cmd=$1
1357     elif [ $# -eq 2 ]; then
1358         local note=$1
1359         local cmd=$2
1360         echo -n "$note... "
1361     else
1362         echo "Usage: _do [note] cmd" 1>&2
1363         status=1; exit
1364     fi
1365
1366     (eval "echo '---' \"$cmd\"") >>$seqres.full
1367     (eval "$cmd") >$tmp._out 2>&1
1368     local ret=$?
1369     cat $tmp._out >>$seqres.full
1370     rm -f $tmp._out
1371     if [ $# -eq 2 ]; then
1372         if [ $ret -eq 0 ]; then
1373             echo "done"
1374         else
1375             echo "fail"
1376         fi
1377     fi
1378     if [ $ret -ne 0  ] \
1379         && [ "$_do_die_on_error" = "always" \
1380             -o \( $# -eq 2 -a "$_do_die_on_error" = "message_only" \) ]
1381     then
1382         [ $# -ne 2 ] && echo
1383         eval "echo \"$cmd\" failed \(returned $ret\): see $seqres.full"
1384         status=1; exit
1385     fi
1386
1387     return $ret
1388 }
1389
1390 # bail out, setting up .notrun file. Need to kill the filesystem check files
1391 # here, otherwise they are set incorrectly for the next test.
1392 #
1393 _notrun()
1394 {
1395     echo "$*" > $seqres.notrun
1396     echo "$seq not run: $*"
1397     rm -f ${RESULT_DIR}/require_test*
1398     rm -f ${RESULT_DIR}/require_scratch*
1399
1400     status=0
1401     exit
1402 }
1403
1404 # just plain bail out
1405 #
1406 _fail()
1407 {
1408     echo "$*" | tee -a $seqres.full
1409     echo "(see $seqres.full for details)"
1410     status=1
1411     exit 1
1412 }
1413
1414 # tests whether $FSTYP is one of the supported filesystems for a test
1415 #
1416 _supported_fs()
1417 {
1418     local f
1419
1420     for f
1421     do
1422         if [ "$f" = "$FSTYP" -o "$f" = "generic" ]
1423         then
1424             return
1425         fi
1426     done
1427
1428     _notrun "not suitable for this filesystem type: $FSTYP"
1429 }
1430
1431
1432 # tests whether $FSTYP is one of the supported OSes for a test
1433 #
1434 _supported_os()
1435 {
1436     local h
1437
1438     for h
1439     do
1440         if [ "$h" = "$HOSTOS" ]
1441         then
1442             return
1443         fi
1444     done
1445
1446     _notrun "not suitable for this OS: $HOSTOS"
1447 }
1448
1449 # check if a FS on a device is mounted
1450 # if so, verify that it is mounted on mount point
1451 # if fstype is given as argument, verify that it is also
1452 # mounted with correct fs type
1453 #
1454 _check_mounted_on()
1455 {
1456         local devname=$1
1457         local dev=$2
1458         local mntname=$3
1459         local mnt=$4
1460         local type=$5
1461
1462         # find $dev as the source, and print result in "$dev $mnt" format
1463         local mount_rec=`findmnt -rncv -S $dev -o SOURCE,TARGET`
1464         [ -n "$mount_rec" ] || return 1 # 1 = not mounted
1465
1466         # if it's mounted, make sure its on $mnt
1467         if [ "$mount_rec" != "$dev $mnt" ]; then
1468                 echo "$devname=$dev is mounted but not on $mntname=$mnt - aborting"
1469                 echo "Already mounted result:"
1470                 echo $mount_rec
1471                 return 2 # 2 = mounted on wrong mnt
1472         fi
1473
1474         if [ -n "$type" -a "`_fs_type $dev`" != "$type" ]; then
1475                 echo "$devname=$dev is mounted but not a type $type filesystem"
1476                 # raw $DF_PROG cannot handle NFS/CIFS/overlay correctly
1477                 _df_device $dev
1478                 return 3 # 3 = mounted as wrong type
1479         fi
1480         return 0 # 0 = mounted as expected
1481 }
1482
1483 # this test needs a scratch partition - check we're ok & unmount it
1484 # No post-test check of the device is required. e.g. the test intentionally
1485 # finishes the test with the filesystem in a corrupt state
1486 _require_scratch_nocheck()
1487 {
1488     case "$FSTYP" in
1489         glusterfs)
1490                 echo $SCRATCH_DEV | egrep -q ":/?" > /dev/null 2>&1
1491                 if [ -z "$SCRATCH_DEV" -o "$?" != "0" ]; then
1492                         _notrun "this test requires a valid \$SCRATCH_DEV"
1493                 fi
1494                 if [ ! -d "$SCRATCH_MNT" ]; then
1495                         _notrun "this test requires a valid \$SCRATCH_MNT"
1496                 fi
1497                 ;;
1498         9p|virtiofs)
1499                 if [ -z "$SCRATCH_DEV" ]; then
1500                         _notrun "this test requires a valid \$SCRATCH_DEV"
1501                 fi
1502                 if [ ! -d "$SCRATCH_MNT" ]; then
1503                         _notrun "this test requires a valid \$SCRATCH_MNT"
1504                 fi
1505                 ;;
1506         nfs*|ceph)
1507                 echo $SCRATCH_DEV | grep -q ":/" > /dev/null 2>&1
1508                 if [ -z "$SCRATCH_DEV" -o "$?" != "0" ]; then
1509                         _notrun "this test requires a valid \$SCRATCH_DEV"
1510                 fi
1511                 if [ ! -d "$SCRATCH_MNT" ]; then
1512                         _notrun "this test requires a valid \$SCRATCH_MNT"
1513                 fi
1514                 ;;
1515         pvfs2)
1516                 echo $SCRATCH_DEV | grep -q "://" > /dev/null 2>&1
1517                 if [ -z "$SCRATCH_DEV" -o "$?" != "0" ]; then
1518                         _notrun "this test requires a valid \$SCRATCH_DEV"
1519                 fi
1520                 if [ ! -d "$SCRATCH_MNT" ]; then
1521                         _notrun "this test requires a valid \$SCRATCH_MNT"
1522                 fi
1523                 ;;
1524         cifs)
1525                 echo $SCRATCH_DEV | grep -q "//" > /dev/null 2>&1
1526                 if [ -z "$SCRATCH_DEV" -o "$?" != "0" ]; then
1527                         _notrun "this test requires a valid \$SCRATCH_DEV"
1528                 fi
1529                 if [ ! -d "$SCRATCH_MNT" ]; then
1530                      _notrun "this test requires a valid \$SCRATCH_MNT"
1531                 fi
1532                 ;;
1533         overlay)
1534                 if [ -z "$OVL_BASE_SCRATCH_MNT" -o ! -d "$OVL_BASE_SCRATCH_MNT" ]; then
1535                         _notrun "this test requires a valid \$OVL_BASE_SCRATCH_MNT as ovl base dir"
1536                 fi
1537                 # if $SCRATCH_MNT is derived from $OVL_BASE_SCRATCH_MNT then
1538                 # don't check $SCRATCH_MNT dir here because base fs may not be mounted
1539                 # and we will create the mount point anyway on _overlay_mount
1540                 if [ "$SCRATCH_MNT" != "$OVL_BASE_SCRATCH_MNT/$OVL_MNT" -a ! -d "$SCRATCH_MNT" ]; then
1541                         _notrun "this test requires a valid \$SCRATCH_MNT"
1542                 fi
1543                 ;;
1544         tmpfs)
1545                 if [ -z "$SCRATCH_DEV" -o ! -d "$SCRATCH_MNT" ];
1546                 then
1547                     _notrun "this test requires a valid \$SCRATCH_MNT and unique $SCRATCH_DEV"
1548                 fi
1549                 ;;
1550         ubifs)
1551                 # ubifs needs an UBI volume. This will be a char device, not a block device.
1552                 if [ ! -c "$SCRATCH_DEV" ]; then
1553                         _notrun "this test requires a valid UBI volume for \$SCRATCH_DEV"
1554                 fi
1555                 if [ ! -d "$SCRATCH_MNT" ]; then
1556                         _notrun "this test requires a valid \$SCRATCH_MNT"
1557                 fi
1558                 ;;
1559         *)
1560                  if [ -z "$SCRATCH_DEV" -o "`_is_block_dev "$SCRATCH_DEV"`" = "" ]
1561                  then
1562                      _notrun "this test requires a valid \$SCRATCH_DEV"
1563                  fi
1564                  if [ "`_is_block_dev "$SCRATCH_DEV"`" = "`_is_block_dev "$TEST_DEV"`" ]
1565                  then
1566                      _notrun "this test requires a valid \$SCRATCH_DEV"
1567                  fi
1568                 if [ ! -d "$SCRATCH_MNT" ]
1569                 then
1570                      _notrun "this test requires a valid \$SCRATCH_MNT"
1571                 fi
1572                  ;;
1573     esac
1574
1575     _check_mounted_on SCRATCH_DEV $SCRATCH_DEV SCRATCH_MNT $SCRATCH_MNT
1576     local err=$?
1577     [ $err -le 1 ] || exit 1
1578     if [ $err -eq 0 ]
1579     then
1580         # if it's mounted, unmount it
1581         if ! _scratch_unmount
1582         then
1583             echo "failed to unmount $SCRATCH_DEV"
1584             exit 1
1585         fi
1586     fi
1587     rm -f ${RESULT_DIR}/require_scratch
1588 }
1589
1590 # we need the scratch device and it should be checked post test.
1591 _require_scratch()
1592 {
1593         _require_scratch_nocheck
1594         touch ${RESULT_DIR}/require_scratch
1595 }
1596
1597 # require a scratch dev of a minimum size (in kb)
1598 _require_scratch_size()
1599 {
1600         [ $# -eq 1 ] || _fail "_require_scratch_size: expected size param"
1601
1602         _require_scratch
1603         local devsize=`_get_device_size $SCRATCH_DEV`
1604         [ $devsize -lt $1 ] && _notrun "scratch dev too small"
1605 }
1606
1607
1608 # this test needs a test partition - check we're ok & mount it
1609 #
1610 _require_test()
1611 {
1612     case "$FSTYP" in
1613         glusterfs)
1614                 echo $TEST_DEV | egrep -q ":/?" > /dev/null 2>&1
1615                 if [ -z "$TEST_DEV" -o "$?" != "0" ]; then
1616                         _notrun "this test requires a valid \$TEST_DEV"
1617                 fi
1618                 if [ ! -d "$TEST_DIR" ]; then
1619                         _notrun "this test requires a valid \$TEST_DIR"
1620                 fi
1621                 ;;
1622         9p|virtiofs)
1623                 if [ -z "$TEST_DEV" ]; then
1624                         _notrun "this test requires a valid \$TEST_DEV"
1625                 fi
1626                 if [ ! -d "$TEST_DIR" ]; then
1627                         _notrun "this test requires a valid \$TEST_DIR"
1628                 fi
1629                 ;;
1630         nfs*|ceph)
1631                 echo $TEST_DEV | grep -q ":/" > /dev/null 2>&1
1632                 if [ -z "$TEST_DEV" -o "$?" != "0" ]; then
1633                         _notrun "this test requires a valid \$TEST_DEV"
1634                 fi
1635                 if [ ! -d "$TEST_DIR" ]; then
1636                         _notrun "this test requires a valid \$TEST_DIR"
1637                 fi
1638                 ;;
1639         cifs)
1640                 echo $TEST_DEV | grep -q "//" > /dev/null 2>&1
1641                 if [ -z "$TEST_DEV" -o "$?" != "0" ]; then
1642                         _notrun "this test requires a valid \$TEST_DEV"
1643                 fi
1644                 if [ ! -d "$TEST_DIR" ]; then
1645                      _notrun "this test requires a valid \$TEST_DIR"
1646                 fi
1647                 ;;
1648         pvfs2)
1649                 echo $TEST_DEV | grep -q "://" > /dev/null 2>&1
1650                 if [ -z "$TEST_DEV" -o "$?" != "0" ]; then
1651                         _notrun "this test requires a valid \$TEST_DIR"
1652                 fi
1653                 if [ ! -d "$TEST_DIR" ]; then
1654                         _notrun "this test requires a valid \$TEST_DIR"
1655                 fi
1656                 ;;
1657         overlay)
1658                 if [ -z "$OVL_BASE_TEST_DIR" -o ! -d "$OVL_BASE_TEST_DIR" ]; then
1659                         _notrun "this test requires a valid \$TEST_DIR as ovl base dir"
1660                 fi
1661                 if [ ! -d "$TEST_DIR" ]; then
1662                         _notrun "this test requires a valid \$TEST_DIR"
1663                 fi
1664                 ;;
1665         tmpfs)
1666                 if [ -z "$TEST_DEV" -o ! -d "$TEST_DIR" ];
1667                 then
1668                     _notrun "this test requires a valid \$TEST_DIR and unique $TEST_DEV"
1669                 fi
1670                 ;;
1671         ubifs)
1672                 # ubifs needs an UBI volume. This will be a char device, not a block device.
1673                 if [ ! -c "$TEST_DEV" ]; then
1674                         _notrun "this test requires a valid UBI volume for \$TEST_DEV"
1675                 fi
1676                 if [ ! -d "$TEST_DIR" ]; then
1677                         _notrun "this test requires a valid \$TEST_DIR"
1678                 fi
1679                 ;;
1680         *)
1681                  if [ -z "$TEST_DEV" ] || [ "`_is_block_dev "$TEST_DEV"`" = "" ]
1682                  then
1683                      _notrun "this test requires a valid \$TEST_DEV"
1684                  fi
1685                  if [ "`_is_block_dev "$SCRATCH_DEV"`" = "`_is_block_dev "$TEST_DEV"`" ]
1686                  then
1687                      _notrun "this test requires a valid \$TEST_DEV"
1688                  fi
1689                 if [ ! -d "$TEST_DIR" ]
1690                 then
1691                      _notrun "this test requires a valid \$TEST_DIR"
1692                 fi
1693                  ;;
1694     esac
1695
1696     _check_mounted_on TEST_DEV $TEST_DEV TEST_DIR $TEST_DIR
1697     local err=$?
1698     [ $err -le 1 ] || exit 1
1699     if [ $err -ne 0 ]
1700     then
1701         if ! _test_mount
1702         then
1703                 echo "!!! failed to mount $TEST_DEV on $TEST_DIR"
1704                 exit 1
1705         fi
1706     fi
1707     touch ${RESULT_DIR}/require_test
1708 }
1709
1710 _has_logdev()
1711 {
1712         local ret=0
1713         [ -z "$SCRATCH_LOGDEV" -o ! -b "$SCRATCH_LOGDEV" ] && ret=1
1714         [ "$USE_EXTERNAL" != yes ] && ret=1
1715
1716         return $ret
1717 }
1718
1719 # this test needs a logdev
1720 #
1721 _require_logdev()
1722 {
1723     [ -z "$SCRATCH_LOGDEV" -o ! -b "$SCRATCH_LOGDEV" ] && \
1724         _notrun "This test requires a valid \$SCRATCH_LOGDEV"
1725     [ "$USE_EXTERNAL" != yes ] && \
1726         _notrun "This test requires USE_EXTERNAL to be enabled"
1727
1728     # ensure its not mounted
1729     $UMOUNT_PROG $SCRATCH_LOGDEV 2>/dev/null
1730 }
1731
1732 # this test requires loopback device support
1733 #
1734 _require_loop()
1735 {
1736     if [ "$HOSTOS" != "Linux" ]
1737     then
1738         _notrun "This test requires linux for loopback device support"
1739     fi
1740
1741     modprobe loop >/dev/null 2>&1
1742     if grep loop /proc/devices >/dev/null 2>&1
1743     then
1744         :
1745     else
1746         _notrun "This test requires loopback device support"
1747     fi
1748 }
1749
1750 # this test requires ext2 filesystem support
1751 #
1752 _require_ext2()
1753 {
1754     if [ "$HOSTOS" != "Linux" ]
1755     then
1756         _notrun "This test requires linux for ext2 filesystem support"
1757     fi
1758
1759     modprobe ext2 >/dev/null 2>&1
1760     if grep ext2 /proc/filesystems >/dev/null 2>&1
1761     then
1762         :
1763     else
1764         _notrun "This test requires ext2 filesystem support"
1765     fi
1766 }
1767
1768 # this test requires tmpfs filesystem support
1769 #
1770 _require_tmpfs()
1771 {
1772         modprobe tmpfs >/dev/null 2>&1
1773         grep -q tmpfs /proc/filesystems ||
1774                 _notrun "this test requires tmpfs support"
1775 }
1776
1777 # this test requires that (large) loopback device files are not in use
1778 #
1779 _require_no_large_scratch_dev()
1780 {
1781     [ "$LARGE_SCRATCH_DEV" = yes ] && \
1782         _notrun "Large filesystem testing in progress, skipped this test"
1783 }
1784
1785 # this test requires that a realtime subvolume is in use, and
1786 # that the kernel supports realtime as well.
1787 #
1788 _require_realtime()
1789 {
1790     [ "$USE_EXTERNAL" = yes ] || \
1791         _notrun "External volumes not in use, skipped this test"
1792     [ "$SCRATCH_RTDEV" = "" ] && \
1793         _notrun "Realtime device required, skipped this test"
1794 }
1795
1796 # This test requires that a realtime subvolume is not in use
1797 #
1798 _require_no_realtime()
1799 {
1800         [ "$USE_EXTERNAL" = "yes" ] && [ -n "$SCRATCH_RTDEV" ] && \
1801                 _notrun "Test not compatible with realtime subvolumes, skipped this test"
1802 }
1803
1804 # this test requires that a specified command (executable) exists
1805 # $1 - command, $2 - name for error message
1806 #
1807 # Note: the command string might have parameters, so strip them before checking
1808 # whether it is executable.
1809 _require_command()
1810 {
1811         if [ $# -eq 2 ]; then
1812                 local name="$2"
1813         elif [ $# -eq 1 ]; then
1814                 local name="$1"
1815         else
1816                 _fail "usage: _require_command <command> [<name>]"
1817         fi
1818
1819         local command=`echo "$1" | awk '{ print $1 }'`
1820         if [ ! -x "$command" ]; then
1821                 _notrun "$name utility required, skipped this test"
1822         fi
1823 }
1824
1825 # this test requires the device to be valid block device
1826 # $1 - device
1827 _require_block_device()
1828 {
1829         if [ -z "$1" ]; then
1830                 echo "Usage: _require_block_device <dev>" 1>&2
1831                 exit 1
1832         fi
1833         if [ "`_is_block_dev "$1"`" == "" ]; then
1834                 _notrun "require $1 to be valid block disk"
1835         fi
1836 }
1837
1838 # this test requires a path to refere to a local block or character device
1839 # $1 - device
1840 _require_local_device()
1841 {
1842         if [ -z "$1" ]; then
1843                 echo "Usage: _require_local_device <dev>" 1>&2
1844                 exit 1
1845         fi
1846         if [ "`_is_block_dev "$1"`" != "" ]; then
1847                 return 0
1848         fi
1849         if [ "`_is_char_dev "$1"`" != "" ]; then
1850                 return 0
1851         fi
1852         _notrun "require $1 to be local device"
1853 }
1854
1855 # brd based ram disks erase the device when they receive a flush command when no
1856 # active references are present. This causes problems for DM devices sitting on
1857 # top of brd devices as DM doesn't hold active references to the brd device.
1858 _require_sane_bdev_flush()
1859 {
1860         echo $1 | grep -q "^/dev/ram[0-9]\+$"
1861         if [ $? -eq 0 ]; then
1862                 _notrun "This test requires a sane block device flush"
1863         fi
1864 }
1865
1866 # this test requires a specific device mapper target
1867 _require_dm_target()
1868 {
1869         local target=$1
1870
1871         # require SCRATCH_DEV to be a valid block device with sane BLKFLSBUF
1872         # behaviour
1873         _require_block_device $SCRATCH_DEV
1874         _require_sane_bdev_flush $SCRATCH_DEV
1875         _require_command "$DMSETUP_PROG" dmsetup
1876
1877         echo $MOUNT_OPTIONS | grep -q dax
1878         if [ $? -eq 0 ]; then
1879                 case $target in
1880                 stripe|linear|log-writes)
1881                         ;;
1882                 *)
1883                         _notrun "Cannot run tests with DAX on $target devices."
1884                         ;;
1885                 esac
1886         fi
1887
1888         modprobe dm-$target >/dev/null 2>&1
1889
1890         $DMSETUP_PROG targets 2>&1 | grep -q ^$target
1891         if [ $? -ne 0 ]; then
1892                 _notrun "This test requires dm $target support"
1893         fi
1894 }
1895
1896 # this test requires the ext4 kernel support crc feature on scratch device
1897 #
1898 _require_scratch_ext4_crc()
1899 {
1900         _scratch_mkfs_ext4 >/dev/null 2>&1
1901         dumpe2fs -h $SCRATCH_DEV 2> /dev/null | grep -q metadata_csum || _notrun "metadata_csum not supported by this filesystem"
1902         _try_scratch_mount >/dev/null 2>&1 \
1903            || _notrun "Kernel doesn't support metadata_csum feature"
1904         _scratch_unmount
1905 }
1906
1907 # Check whether the specified feature whether it is supported by
1908 # mkfs.ext4 and the kernel.
1909 _require_scratch_ext4_feature()
1910 {
1911     if [ -z "$1" ]; then
1912         echo "Usage: _require_scratch_ext4_feature feature"
1913         exit 1
1914     fi
1915     $MKFS_EXT4_PROG -F $MKFS_OPTIONS -O "$1" \
1916                     $SCRATCH_DEV 512m >/dev/null 2>&1 \
1917         || _notrun "mkfs.ext4 doesn't support $1 feature"
1918     _try_scratch_mount >/dev/null 2>&1 \
1919         || _notrun "Kernel doesn't support the ext4 feature(s): $1"
1920     _scratch_unmount
1921 }
1922
1923 # this test requires that external log/realtime devices are not in use
1924 #
1925 _require_nonexternal()
1926 {
1927     [ "$USE_EXTERNAL" = yes ] && \
1928         _notrun "External device testing in progress, skipped this test"
1929 }
1930
1931 # this test requires that the kernel supports asynchronous I/O
1932 _require_aio()
1933 {
1934         $here/src/feature -A
1935         case $? in
1936         0)
1937                 ;;
1938         1)
1939                 _notrun "kernel does not support asynchronous I/O"
1940                 ;;
1941         *)
1942                 _fail "unexpected error testing for asynchronous I/O support"
1943                 ;;
1944         esac
1945 }
1946
1947 # this test requires that a (specified) aio-dio executable exists
1948 # and that the kernel supports asynchronous I/O.
1949 # $1 - command (optional)
1950 #
1951 _require_aiodio()
1952 {
1953     if [ -z "$1" ]
1954     then
1955         AIO_TEST=$here/src/aio-dio-regress/aiodio_sparse2
1956         [ -x $AIO_TEST ] || _notrun "aio-dio utilities required"
1957     else
1958         AIO_TEST=$here/src/aio-dio-regress/$1
1959         [ -x $AIO_TEST ] || _notrun "$AIO_TEST not built"
1960     fi
1961     _require_aio
1962     _require_odirect
1963 }
1964
1965 # this test requires that a test program exists under src/
1966 # $1 - command (require)
1967 #
1968 _require_test_program()
1969 {
1970     local prog=$here/src/$1
1971     [ -x $prog ] || _notrun "$prog not built"
1972 }
1973
1974 # run an aio-dio program
1975 # $1 - command
1976 _run_aiodio()
1977 {
1978     if [ -z "$1" ]
1979     then
1980         echo "usage: _run_aiodio command_name" 2>&1
1981         status=1; exit 1
1982     fi
1983
1984     _require_aiodio $1
1985
1986     local testtemp=$TEST_DIR/aio-testfile
1987     rm -f $testtemp
1988     $AIO_TEST $testtemp 2>&1
1989     status=$?
1990     rm -f $testtemp
1991
1992     return $status
1993 }
1994
1995 _require_timestamp_range()
1996 {
1997         local device=${1:-$TEST_DEV}
1998
1999         local tsmin tsmax
2000         read tsmin tsmax <<<$(_filesystem_timestamp_range $device)
2001         if [ $tsmin -eq -1 -a $tsmax -eq -1 ]; then
2002                 _notrun "filesystem $FSTYP timestamp bounds are unknown"
2003         fi
2004
2005         # expect console warning from rw scratch mount if fs limit is near
2006         if [ $tsmax -le $((1<<31)) ] && \
2007                 ! _check_dmesg_for "filesystem being mounted at .* supports timestamps until"
2008         then
2009                 _notrun "Kernel does not support timestamp limits"
2010         fi
2011 }
2012
2013 _filesystem_timestamp_range()
2014 {
2015         local device=${1:-$TEST_DEV}
2016         local fstyp=${2:-$FSTYP}
2017         u32max=$(((1<<32)-1))
2018         s32min=-$((1<<31))
2019         s32max=$(((1<<31)-1))
2020         s64max=$(((1<<63)-1))
2021         s64min=$((1<<63))
2022
2023         case $fstyp in
2024         ext2)
2025                 echo "$s32min $s32max"
2026                 ;;
2027         ext3|ext4)
2028                 if [ $(dumpe2fs -h $device 2>/dev/null | grep "Inode size:" | cut -d: -f2) -gt 128 ]; then
2029                         printf "%d %d\n" $s32min 0x37fffffff
2030                 else
2031                         echo "$s32min $s32max"
2032                 fi
2033                 ;;
2034
2035         jfs)
2036                 echo "0 $u32max"
2037                 ;;
2038         xfs)
2039                 echo "$s32min $s32max"
2040                 ;;
2041         btrfs)
2042                 echo "$s64min $s64max"
2043                 ;;
2044         overlay)
2045                 if [ ! -z $OVL_BASE_FSTYP -a $OVL_BASE_FSTYP != "overlay" ]; then
2046                         _filesystem_timestamp_range $OVL_BASE_TEST_DEV $OVL_BASE_FSTYP
2047                 else
2048                         echo "-1 -1"
2049                 fi
2050                 ;;
2051         *)
2052                 echo "-1 -1"
2053                 ;;
2054         esac
2055 }
2056
2057 # indicate whether YP/NIS is active or not
2058 #
2059 _yp_active()
2060 {
2061         local dn
2062         dn=$(domainname 2>/dev/null)
2063         local ypcat=$(type -P ypcat)
2064         local rpcinfo=$(type -P rpcinfo)
2065         test -n "${dn}" -a "${dn}" != "(none)" -a "${dn}" != "localdomain" -a -n "${ypcat}" -a -n "${rpcinfo}" && \
2066                 "${rpcinfo}" -p localhost 2>/dev/null | grep -q ypbind
2067         echo $?
2068 }
2069
2070 # cat the password file
2071 #
2072 _cat_passwd()
2073 {
2074         [ $(_yp_active) -eq 0 ] && ypcat passwd
2075         cat /etc/passwd
2076 }
2077
2078 # cat the group file
2079 #
2080 _cat_group()
2081 {
2082         [ $(_yp_active) -eq 0 ] && ypcat group
2083         cat /etc/group
2084 }
2085
2086 # check for a user on the machine, fsgqa as default
2087 #
2088 _require_user()
2089 {
2090     qa_user=fsgqa
2091     if [ -n "$1" ];then
2092         qa_user=$1
2093     fi
2094     _cat_passwd | grep -q $qa_user
2095     [ "$?" == "0" ] || _notrun "$qa_user user not defined."
2096     echo /bin/true | su $qa_user
2097     [ "$?" == "0" ] || _notrun "$qa_user cannot execute commands."
2098 }
2099
2100 # check for a group on the machine, fsgqa as default
2101 #
2102 _require_group()
2103 {
2104     qa_group=fsgqa
2105     if [ -n "$1" ];then
2106         qa_group=$1
2107     fi
2108     _cat_group | grep -q $qa_group
2109     [ "$?" == "0" ] || _notrun "$qa_group group not defined."
2110 }
2111
2112 _filter_user_do()
2113 {
2114         perl -ne "
2115 s,.*Permission\sdenied.*,Permission denied,;
2116 s,.*no\saccess\sto\stty.*,,;
2117 s,.*no\sjob\scontrol\sin\sthis\sshell.*,,;
2118 s,^\s*$,,;
2119         print;"
2120 }
2121
2122 _user_do()
2123 {
2124         echo $1 | su -s /bin/bash $qa_user 2>&1 | _filter_user_do
2125 }
2126
2127 _require_xfs_io_command()
2128 {
2129         if [ -z "$1" ]
2130         then
2131                 echo "Usage: _require_xfs_io_command command [switch]" 1>&2
2132                 exit 1
2133         fi
2134         local command=$1
2135         shift
2136         local param="$*"
2137         local param_checked=""
2138         local opts=""
2139
2140         local testfile=$TEST_DIR/$$.xfs_io
2141         local testio
2142         case $command in
2143         "chattr")
2144                 if [ -z "$param" ]; then
2145                         param=s
2146                 fi
2147                 # Test xfs_io chattr support AND
2148                 # filesystem FS_IOC_FSSETXATTR support
2149                 testio=`$XFS_IO_PROG -F -f -c "chattr +$param" $testfile 2>&1`
2150                 $XFS_IO_PROG -F -f -r -c "chattr -$param" $testfile 2>&1
2151                 param_checked="+$param"
2152                 ;;
2153         "chproj")
2154                 testio=`$XFS_IO_PROG -F -f -c "chproj 0" $testfile 2>&1`
2155                 ;;
2156         "copy_range")
2157                 local testcopy=$TEST_DIR/$$.copy.xfs_io
2158                 local copy_opts=$testfile
2159                 if [ "$param" == "-f" ]; then
2160                         # source file is the open destination file
2161                         testcopy=$testfile
2162                         copy_opts="0 -d 4k -l 4k"
2163                 fi
2164                 $XFS_IO_PROG -F -f -c "pwrite 0 4k" $testfile > /dev/null 2>&1
2165                 testio=`$XFS_IO_PROG -F -f -c "copy_range $param $copy_opts" $testcopy 2>&1`
2166                 rm -f $testcopy > /dev/null 2>&1
2167                 param_checked="$param"
2168                 ;;
2169         "falloc" )
2170                 testio=`$XFS_IO_PROG -F -f -c "falloc $param 0 1m" $testfile 2>&1`
2171                 param_checked="$param"
2172                 ;;
2173         "fpunch" | "fcollapse" | "zero" | "fzero" | "finsert" | "funshare")
2174                 local blocksize=$(_get_block_size $TEST_DIR)
2175                 testio=`$XFS_IO_PROG -F -f -c "pwrite 0 $((5 * $blocksize))" \
2176                         -c "fsync" -c "$command $blocksize $((2 * $blocksize))" \
2177                         $testfile 2>&1`
2178                 ;;
2179         "fiemap")
2180                 # If 'ranged' is passed as argument then we check to see if fiemap supports
2181                 # ranged query params
2182                 if echo "$param" | grep -q "ranged"; then
2183                         param=$(echo "$param" | sed "s/ranged//")
2184                         $XFS_IO_PROG -c "help fiemap" | grep -q "\[offset \[len\]\]"
2185                         [ $? -eq 0 ] || _notrun "xfs_io $command ranged support is missing"
2186                 fi
2187                 testio=`$XFS_IO_PROG -F -f -c "pwrite 0 20k" -c "fsync" \
2188                         -c "fiemap -v $param" $testfile 2>&1`
2189                 param_checked="$param"
2190                 ;;
2191         "flink")
2192                 local testlink=$TEST_DIR/$$.link.xfs_io
2193                 testio=`$XFS_IO_PROG -F -f -c "flink $testlink" $testfile 2>&1`
2194                 rm -f $testlink > /dev/null 2>&1
2195                 ;;
2196         "-T")
2197                 # Check O_TMPFILE support in xfs_io, kernel and fs
2198                 testio=`$XFS_IO_PROG -T -c quit $TEST_DIR 2>&1`
2199                 echo $testio | egrep -q "invalid option|Is a directory" && \
2200                         _notrun "xfs_io $command support is missing"
2201                 echo $testio | grep -q "Operation not supported" && \
2202                         _notrun "O_TMPFILE is not supported"
2203                 ;;
2204         "fsmap")
2205                 testio=`$XFS_IO_PROG -f -c "fsmap" $testfile 2>&1`
2206                 echo $testio | grep -q "Inappropriate ioctl" && \
2207                         _notrun "xfs_io $command support is missing"
2208                 ;;
2209         "label")
2210                 testio=`$XFS_IO_PROG -c "label" $TEST_DIR 2>&1`
2211                 ;;
2212         "open")
2213                 # -c "open $f" is broken in xfs_io <= 4.8. Along with the fix,
2214                 # a new -C flag was introduced to execute one shot commands.
2215                 # Check for -C flag support as an indication for the bug fix.
2216                 testio=`$XFS_IO_PROG -F -f -C "open $testfile" $testfile 2>&1`
2217                 echo $testio | grep -q "invalid option" && \
2218                         _notrun "xfs_io $command support is missing"
2219                 ;;
2220         "pwrite")
2221                 # -N (RWF_NOWAIT) only works with direct vectored I/O writes
2222                 local pwrite_opts=" "
2223                 if [ "$param" == "-N" ]; then
2224                         opts+=" -d"
2225                         pwrite_opts+="-V 1 -b 4k"
2226                 fi
2227                 testio=`$XFS_IO_PROG -f $opts -c \
2228                         "pwrite $pwrite_opts $param 0 4k" $testfile 2>&1`
2229                 param_checked="$pwrite_opts $param"
2230                 ;;
2231         "scrub"|"repair")
2232                 testio=`$XFS_IO_PROG -x -c "$command probe" $TEST_DIR 2>&1`
2233                 echo $testio | grep -q "Inappropriate ioctl" && \
2234                         _notrun "xfs_io $command support is missing"
2235                 ;;
2236         "utimes" )
2237                 testio=`$XFS_IO_PROG -f -c "utimes 0 0 0 0" $testfile 2>&1`
2238                 ;;
2239         "syncfs")
2240                 touch $testfile
2241                 testio=`$XFS_IO_PROG -c "syncfs" $testfile 2>&1`
2242                 ;;
2243         *)
2244                 testio=`$XFS_IO_PROG -c "help $command" 2>&1`
2245         esac
2246
2247         rm -f $testfile 2>&1 > /dev/null
2248         echo $testio | grep -q "not found" && \
2249                 _notrun "xfs_io $command $param_checked support is missing"
2250         echo $testio | grep -q "Operation not supported\|Inappropriate ioctl" && \
2251                 _notrun "xfs_io $command $param_checked failed (old kernel/wrong fs?)"
2252         echo $testio | grep -q "Invalid" && \
2253                 _notrun "xfs_io $command $param_checked failed (old kernel/wrong fs/bad args?)"
2254         echo $testio | grep -q "foreign file active" && \
2255                 _notrun "xfs_io $command $param_checked not supported on $FSTYP"
2256         echo $testio | grep -q "Function not implemented" && \
2257                 _notrun "xfs_io $command $param_checked support is missing (missing syscall?)"
2258
2259         [ -n "$param" ] || return
2260
2261         if [ -z "$param_checked" ]; then
2262                 $XFS_IO_PROG -c "help $command" | grep -E -q "^ $param ([a-zA-Z_]+ )?--" || \
2263                         _notrun "xfs_io $command doesn't support $param"
2264         else
2265                 # xfs_io could result in "command %c not supported" if it was
2266                 # built on kernels not supporting pwritev2() calls
2267                 echo $testio | grep -q "\(invalid option\|not supported\)" && \
2268                         _notrun "xfs_io $command doesn't support $param"
2269         fi
2270 }
2271
2272 # check that kernel and filesystem support direct I/O
2273 _require_odirect()
2274 {
2275         if [ $FSTYP = "ext4" ] || [ $FSTYP = "f2fs" ] ; then
2276                 if echo "$MOUNT_OPTIONS" | grep -q "test_dummy_encryption"; then
2277                         _notrun "$FSTYP encryption doesn't support O_DIRECT"
2278                 fi
2279         fi
2280         if [ $FSTYP = "ext4" ] ; then
2281                 if echo "$MOUNT_OPTIONS" | grep -q "data=journal"; then
2282                         _notrun "ext4 data journaling doesn't support O_DIRECT"
2283                 fi
2284         fi
2285         local testfile=$TEST_DIR/$$.direct
2286         $XFS_IO_PROG -F -f -d -c "pwrite 0 20k" $testfile > /dev/null 2>&1
2287         if [ $? -ne 0 ]; then
2288                 _notrun "O_DIRECT is not supported"
2289         fi
2290         rm -f $testfile 2>&1 > /dev/null
2291 }
2292
2293 _format_swapfile() {
2294         local fname="$1"
2295         local sz="$2"
2296
2297         rm -f "$fname"
2298         touch "$fname"
2299         chmod 0600 "$fname"
2300         # Swap files must be nocow on Btrfs.
2301         $CHATTR_PROG +C "$fname" > /dev/null 2>&1
2302         _pwrite_byte 0x61 0 "$sz" "$fname" >> $seqres.full
2303         $MKSWAP_PROG "$fname" >> $seqres.full
2304 }
2305
2306 # Check that the filesystem supports swapfiles
2307 _require_scratch_swapfile()
2308 {
2309         _require_scratch
2310         _require_command "$MKSWAP_PROG" "mkswap"
2311
2312         _scratch_mkfs >/dev/null
2313
2314         # With mounting SELinux context(e.g. system_u:object_r:root_t:s0),
2315         # standard mkswap tried to reset the type of default context to
2316         # swapfile_t if it's not swapfile_t, and then it failed and returned
2317         # ENOTSUP expectedly as we don't want to create any SELinux attr on
2318         # purpose.  standard mkswap ignored this relabel error by commit
2319         # d97dc0e of util-linux, but it still reported the error before
2320         # commit d97dc0e.  We mount swapfile context directly to skip the
2321         # reset step.
2322         [ -n "$SELINUX_MOUNT_OPTIONS" ] && export \
2323                 SELINUX_MOUNT_OPTIONS="-o context=system_u:object_r:swapfile_t:s0"
2324
2325         _scratch_mount
2326
2327         # Minimum size for mkswap is 10 pages
2328         _format_swapfile "$SCRATCH_MNT/swap" $(($(get_page_size) * 10))
2329
2330         if ! swapon "$SCRATCH_MNT/swap" >/dev/null 2>&1; then
2331                 _scratch_unmount
2332                 _notrun "swapfiles are not supported"
2333         fi
2334
2335         swapoff "$SCRATCH_MNT/swap" >/dev/null 2>&1
2336         _scratch_unmount
2337 }
2338
2339 # Check that a fs has enough free space (in 1024b blocks)
2340 #
2341 _require_fs_space()
2342 {
2343         local mnt=$1
2344         local blocks=$2 # in units of 1024
2345         local gb=$(( blocks / 1024 / 1024 ))
2346
2347         local free_blocks=`df -kP $mnt | grep -v Filesystem | awk '{print $4}'`
2348         [ $free_blocks -lt $blocks ] && \
2349                 _notrun "This test requires at least ${gb}GB free on $mnt to run"
2350 }
2351
2352 #
2353 # Check if the filesystem supports sparse files.
2354 #
2355 # Unfortunately there is no better way to do this than a manual black list.
2356 #
2357 _require_sparse_files()
2358 {
2359     case $FSTYP in
2360     hfsplus|exfat)
2361         _notrun "Sparse files not supported by this filesystem type: $FSTYP"
2362         ;;
2363     *)
2364         ;;
2365     esac
2366 }
2367
2368 _require_debugfs()
2369 {
2370     #boot_params always present in debugfs
2371     [ -d "$DEBUGFS_MNT/boot_params" ] || _notrun "Debugfs not mounted"
2372 }
2373
2374 _require_fail_make_request()
2375 {
2376     [ -f "$DEBUGFS_MNT/fail_make_request/probability" ] \
2377         || _notrun "$DEBUGFS_MNT/fail_make_request \
2378  not found. Seems that CONFIG_FAULT_INJECTION_DEBUG_FS kernel config option not enabled"
2379 }
2380
2381 # Disable extent zeroing for ext4 on the given device
2382 _ext4_disable_extent_zeroout()
2383 {
2384         local dev=${1:-$TEST_DEV}
2385         local sdev=`_short_dev $dev`
2386
2387         [ -f /sys/fs/ext4/$sdev/extent_max_zeroout_kb ] && \
2388                 echo 0 >/sys/fs/ext4/$sdev/extent_max_zeroout_kb
2389 }
2390
2391 # The default behavior of SEEK_HOLE is to always return EOF.
2392 # Filesystems that implement non-default behavior return the offset
2393 # of holes with SEEK_HOLE. There is no way to query the filesystem
2394 # of which behavior it is implementing.
2395 # We use this whitelist FSTYP, to set expectation and avoid silent
2396 # regression of filesystem seek hole behavior.
2397 #
2398 # Return 0 for true
2399 _fstyp_has_non_default_seek_data_hole()
2400 {
2401         if [ -z $1 ]; then
2402                 local fstyp=$FSTYP
2403         else
2404                 local fstyp=$1
2405         fi
2406
2407         case "$fstyp" in
2408         btrfs|ext4|xfs|cifs|f2fs|gfs2|ocfs2|tmpfs)
2409                 return 0
2410                 ;;
2411         nfs*)
2412                 # NFSv2 and NFSv3 only support default behavior of SEEK_HOLE,
2413                 # while NFSv4 supports non-default behavior
2414                 local nfsvers=`_df_device $TEST_DEV | $AWK_PROG '{ print $2 }'`
2415                 [ "$nfsvers" = "nfs4" ]
2416                 return $?
2417                 ;;
2418         overlay)
2419                 if [ ! -z $OVL_BASE_FSTYP -a $OVL_BASE_FSTYP != "overlay" ]; then
2420                         _fstyp_has_non_default_seek_data_hole $OVL_BASE_FSTYP
2421                         return $?
2422                 else
2423                         # Assume that base fs has default behavior
2424                         return 1
2425                 fi
2426                 ;;
2427         *)
2428                 # by default fstyp has default SEEK_HOLE behavior;
2429                 # if your fs has non-default behavior, add it to whitelist above!
2430                 return 1
2431                 ;;
2432         esac
2433 }
2434
2435 # Run seek sanity test with predefined expectation for SEEK_DATA/HOLE behavior
2436 _run_seek_sanity_test()
2437 {
2438         local testseekargs
2439         if _fstyp_has_non_default_seek_data_hole; then
2440                 testseekargs+="-f"
2441         fi
2442         $here/src/seek_sanity_test $testseekargs $*
2443 }
2444
2445 # Check if the file system supports seek_data/hole
2446 _require_seek_data_hole()
2447 {
2448         local dev=${1:-$TEST_DEV}
2449         local testfile=$TEST_DIR/$$.seek
2450         local testseek=`$here/src/seek_sanity_test -t $testfile 2>&1`
2451
2452         rm -f $testfile &>/dev/null
2453         echo $testseek | grep -q "Kernel does not support" && \
2454                 _notrun "File system does not support llseek(2) SEEK_DATA/HOLE"
2455         # Disable extent zeroing for ext4 as that change where holes are
2456         # created
2457         if [ "$FSTYP" = "ext4" ]; then
2458                 _ext4_disable_extent_zeroout $dev
2459         fi
2460 }
2461
2462 _require_runas()
2463 {
2464         _require_test_program "runas"
2465 }
2466
2467 _runas()
2468 {
2469         "$here/src/runas" "$@"
2470 }
2471
2472 _require_richacl_prog()
2473 {
2474         _require_command "$GETRICHACL_PROG" getrichacl
2475         _require_command "$SETRICHACL_PROG" setrichacl
2476 }
2477
2478 _require_scratch_richacl_xfs()
2479 {
2480         _scratch_mkfs_xfs_supported -m richacl=1 >/dev/null 2>&1 \
2481                 || _notrun "mkfs.xfs doesn't have richacl feature"
2482         _scratch_mkfs_xfs -m richacl=1 >/dev/null 2>&1
2483         _try_scratch_mount >/dev/null 2>&1 \
2484                 || _notrun "kernel doesn't support richacl feature on $FSTYP"
2485         _scratch_unmount
2486 }
2487
2488 _require_scratch_richacl_ext4()
2489 {
2490         _scratch_mkfs -O richacl >/dev/null 2>&1 \
2491                 || _notrun "can't mkfs $FSTYP with option -O richacl"
2492         _try_scratch_mount >/dev/null 2>&1 \
2493                 || _notrun "kernel doesn't support richacl feature on $FSTYP"
2494         _scratch_unmount
2495 }
2496
2497 _require_scratch_richacl_support()
2498 {
2499         _scratch_mount
2500         $GETFATTR_PROG -n system.richacl >/dev/null 2>&1 \
2501                 || _notrun "this test requires richacl support on \$SCRATCH_DEV"
2502         _scratch_unmount
2503 }
2504
2505 _require_scratch_richacl()
2506 {
2507         case "$FSTYP" in
2508         xfs)    _require_scratch_richacl_xfs
2509                 ;;
2510         ext4)   _require_scratch_richacl_ext4
2511                 ;;
2512         nfs*|cifs|overlay)
2513                 _require_scratch_richacl_support
2514                 ;;
2515         *)      _notrun "this test requires richacl support on \$SCRATCH_DEV"
2516                 ;;
2517         esac
2518 }
2519
2520 _scratch_mkfs_richacl()
2521 {
2522         case "$FSTYP" in
2523         xfs)    _scratch_mkfs_xfs -m richacl=1
2524                 ;;
2525         ext4)   _scratch_mkfs -O richacl
2526                 ;;
2527         nfs*|cifs|overlay)
2528                 _scratch_mkfs
2529                 ;;
2530         esac
2531 }
2532
2533 # check if the given device is mounted, if so, return mount point
2534 _is_dev_mounted()
2535 {
2536         local dev=$1
2537         local fstype=${2:-$FSTYP}
2538
2539         if [ $# -lt 1 ]; then
2540                 echo "Usage: _is_dev_mounted <device> [fstype]" 1>&2
2541                 exit 1
2542         fi
2543
2544         findmnt -rncv -S $dev -t $fstype -o TARGET | head -1
2545 }
2546
2547 # check if the given dir is a mount point, if so, return mount point
2548 _is_dir_mountpoint()
2549 {
2550         local dir=$1
2551         local fstype=${2:-$FSTYP}
2552
2553         if [ $# -lt 1 ]; then
2554                 echo "Uasge: _is_dir_mountpoint <dir> [fstype]" 1>&2
2555                 exit 1
2556         fi
2557
2558         findmnt -rncv -t $fstype -o TARGET $dir | head -1
2559 }
2560
2561 # remount a FS to a new mode (ro or rw)
2562 #
2563 _remount()
2564 {
2565     if [ $# -ne 2 ]
2566     then
2567         echo "Usage: _remount device ro/rw" 1>&2
2568         exit 1
2569     fi
2570     local device=$1
2571     local mode=$2
2572
2573     if ! mount -o remount,$mode $device
2574     then
2575         echo "_remount: failed to remount filesystem on $device as $mode"
2576         exit 1
2577     fi
2578 }
2579
2580 # Run the appropriate repair/check on a filesystem
2581 #
2582 # if the filesystem is mounted, it's either remounted ro before being
2583 # checked or it's unmounted and then remounted
2584 #
2585
2586 # If set, we remount ro instead of unmounting for fsck
2587 USE_REMOUNT=0
2588
2589 _umount_or_remount_ro()
2590 {
2591     if [ $# -ne 1 ]
2592     then
2593         echo "Usage: _umount_or_remount_ro <device>" 1>&2
2594         exit 1
2595     fi
2596
2597     local device=$1
2598     local mountpoint=`_is_dev_mounted $device`
2599
2600     if [ $USE_REMOUNT -eq 0 ]; then
2601         $UMOUNT_PROG $device
2602     else
2603         _remount $device ro
2604     fi
2605     echo "$mountpoint"
2606 }
2607
2608 _mount_or_remount_rw()
2609 {
2610         if [ $# -ne 3 ]; then
2611                 echo "Usage: _mount_or_remount_rw <opts> <dev> <mnt>" 1>&2
2612                 exit 1
2613         fi
2614         local mount_opts=$1
2615         local device=$2
2616         local mountpoint=$3
2617
2618         if [ $USE_REMOUNT -eq 0 ]; then
2619                 if [ "$FSTYP" != "overlay" ]; then
2620                         _mount -t $FSTYP $mount_opts $device $mountpoint
2621                 else
2622                         _overlay_mount $device $mountpoint
2623                 fi
2624                 if [ $? -ne 0 ]; then
2625                         _dump_err "!!! failed to remount $device on $mountpoint"
2626                         return 0 # ok=0
2627                 fi
2628         else
2629                 _remount $device rw
2630         fi
2631
2632         return 1 # ok=1
2633 }
2634
2635 # Check a generic filesystem in no-op mode; this assumes that the
2636 # underlying fsck program accepts "-n" for a no-op (check-only) run,
2637 # and that it will still return an errno for corruption in this mode.
2638 #
2639 # Filesystems which don't support this will need to define their
2640 # own check routine.
2641 #
2642 _check_generic_filesystem()
2643 {
2644     local device=$1
2645
2646     # If type is set, we're mounted
2647     local type=`_fs_type $device`
2648     local ok=1
2649
2650     if [ "$type" = "$FSTYP" ]
2651     then
2652         # mounted ...
2653         local mountpoint=`_umount_or_remount_ro $device`
2654     fi
2655
2656     fsck -t $FSTYP $FSCK_OPTIONS $device >$tmp.fsck 2>&1
2657     if [ $? -ne 0 ]
2658     then
2659         _log_err "_check_generic_filesystem: filesystem on $device is inconsistent"
2660         echo "*** fsck.$FSTYP output ***"       >>$seqres.full
2661         cat $tmp.fsck                           >>$seqres.full
2662         echo "*** end fsck.$FSTYP output"       >>$seqres.full
2663
2664         ok=0
2665     fi
2666     rm -f $tmp.fsck
2667
2668     if [ $ok -eq 0 ]
2669     then
2670         echo "*** mount output ***"             >>$seqres.full
2671         _mount                                  >>$seqres.full
2672         echo "*** end mount output"             >>$seqres.full
2673     elif [ "$type" = "$FSTYP" ]
2674     then
2675         # was mounted ...
2676         _mount_or_remount_rw "$MOUNT_OPTIONS" $device $mountpoint
2677         ok=$?
2678     fi
2679
2680     if [ $ok -eq 0 ]; then
2681         status=1
2682         if [ "$iam" != "check" ]; then
2683                 exit 1
2684         fi
2685         return 1
2686     fi
2687
2688     return 0
2689 }
2690
2691 # Filter the knowen errors the UDF Verifier reports.
2692 _udf_test_known_error_filter()
2693 {
2694         egrep -v "PVD  60  Error: Interchange Level: 1, Maximum Interchange Level: 0|FSD  28  Error: Interchange Level: 1, Maximum Interchange Level: 1,|PVD  72  Warning: Volume Set Identifier: \"\*IRIX UDF\",|Warning: [0-9]+ unused blocks NOT marked as unallocated."
2695
2696 }
2697
2698 _check_udf_filesystem()
2699 {
2700     [ "$DISABLE_UDF_TEST" == "1" ] && return
2701
2702     if [ $# -ne 1 -a $# -ne 2 ]
2703     then
2704         echo "Usage: _check_udf_filesystem device [last_block]" 1>&2
2705         exit 1
2706     fi
2707
2708     if [ ! -x $here/src/udf_test ]
2709     then
2710         echo "udf_test not installed, please download and build the Philips"
2711         echo "UDF Verification Software from http://www.extra.research.philips.com/udf/."
2712         echo "Then copy the udf_test binary to $here/src/."
2713         echo "If you do not wish to run udf_test then set environment variable DISABLE_UDF_TEST"
2714         echo "to 1."
2715         return
2716     fi
2717
2718     local device=$1
2719     local opt_arg=""
2720     if [ $# -eq 2 ]; then
2721         opt_arg="-lastvalidblock $(( $2 - 1 ))"
2722     fi
2723
2724     rm -f $seqres.checkfs
2725     sleep 1 # Due to a problem with time stamps in udf_test
2726     $here/src/udf_test $opt_arg $device | tee $seqres.checkfs | egrep "Error|Warning" | \
2727         _udf_test_known_error_filter | \
2728         egrep -iv "Error count:.*[0-9]+.*total occurrences:.*[0-9]+|Warning count:.*[0-9]+.*total occurrences:.*[0-9]+" && \
2729         echo "Warning UDF Verifier reported errors see $seqres.checkfs." && return 1
2730     return 0
2731 }
2732
2733 _check_test_fs()
2734 {
2735     case $FSTYP in
2736     xfs)
2737         _check_xfs_test_fs
2738         ;;
2739     nfs)
2740         # no way to check consistency for nfs
2741         ;;
2742     cifs)
2743         # no way to check consistency for cifs
2744         ;;
2745     9p)
2746         # no way to check consistency for 9p
2747         ;;
2748     virtiofs)
2749         # no way to check consistency for virtiofs
2750         ;;
2751     ceph)
2752         # no way to check consistency for CephFS
2753         ;;
2754     glusterfs)
2755         # no way to check consistency for GlusterFS
2756         ;;
2757     overlay)
2758         _check_overlay_test_fs
2759         ;;
2760     pvfs2)
2761         ;;
2762     udf)
2763         # do nothing for now
2764         ;;
2765     btrfs)
2766         _check_btrfs_filesystem $TEST_DEV
2767         ;;
2768     tmpfs)
2769         # no way to check consistency for tmpfs
2770         ;;
2771     ubifs)
2772         # there is no fsck program for ubifs yet
2773         ;;
2774     *)
2775         _check_generic_filesystem $TEST_DEV
2776         ;;
2777     esac
2778 }
2779
2780 _check_scratch_fs()
2781 {
2782     local device=$SCRATCH_DEV
2783     [ $# -eq 1 ] && device=$1
2784
2785     case $FSTYP in
2786     xfs)
2787         local scratch_log="none"
2788         local scratch_rt="none"
2789         [ "$USE_EXTERNAL" = yes -a ! -z "$SCRATCH_LOGDEV" ] && \
2790             scratch_log="$SCRATCH_LOGDEV"
2791
2792         [ "$USE_EXTERNAL" = yes -a ! -z "$SCRATCH_RTDEV" ] && \
2793             scratch_rt="$SCRATCH_RTDEV"
2794
2795         _check_xfs_filesystem $device $scratch_log $scratch_rt
2796         ;;
2797     udf)
2798         _check_udf_filesystem $device $udf_fsize
2799         ;;
2800     nfs*)
2801         # Don't know how to check an NFS filesystem, yet.
2802         ;;
2803     cifs)
2804         # Don't know how to check a CIFS filesystem, yet.
2805         ;;
2806     9p)
2807         # no way to check consistency for 9p
2808         ;;
2809     virtiofs)
2810         # no way to check consistency for virtiofs
2811         ;;
2812     ceph)
2813         # no way to check consistency for CephFS
2814         ;;
2815     glusterfs)
2816         # no way to check consistency for GlusterFS
2817         ;;
2818     overlay)
2819         _check_overlay_scratch_fs
2820         ;;
2821     pvfs2)
2822         ;;
2823     btrfs)
2824         _check_btrfs_filesystem $device
2825         ;;
2826     tmpfs)
2827         # no way to check consistency for tmpfs
2828         ;;
2829     ubifs)
2830         # there is no fsck program for ubifs yet
2831         ;;
2832     *)
2833         _check_generic_filesystem $device
2834         ;;
2835     esac
2836 }
2837
2838 _full_fstyp_details()
2839 {
2840      [ -z "$FSTYP" ] && FSTYP=xfs
2841      if [ $FSTYP = xfs ]; then
2842         if [ -d /proc/fs/xfs ]; then
2843             if grep -q 'debug 0' /proc/fs/xfs/stat; then
2844                 FSTYP="$FSTYP (non-debug)"
2845             elif grep -q 'debug 1' /proc/fs/xfs/stat; then
2846                 FSTYP="$FSTYP (debug)"
2847             fi
2848         else
2849             if uname -a | grep -qi 'debug'; then
2850                 FSTYP="$FSTYP (debug)"
2851             else
2852                 FSTYP="$FSTYP (non-debug)"
2853             fi
2854         fi
2855      fi
2856      echo $FSTYP
2857 }
2858
2859 _full_platform_details()
2860 {
2861      local os=`uname -s`
2862      local host=`hostname -s`
2863      local kernel=`uname -rv`
2864      local platform=`uname -m`
2865      echo "$os/$platform $host $kernel"
2866 }
2867
2868 _get_os_name()
2869 {
2870         if [ "`uname`" == "Linux" ]; then
2871                 echo 'linux'
2872         else
2873                 echo Unknown operating system: `uname`
2874                 exit
2875         fi
2876 }
2877
2878 _link_out_file_named()
2879 {
2880         local features=$2
2881         local suffix=$(FEATURES="$features" perl -e '
2882                 my %feathash;
2883                 my $feature, $result, $suffix, $opts;
2884
2885                 foreach $feature (split(/,/, $ENV{"FEATURES"})) {
2886                         $feathash{$feature} = 1;
2887                 }
2888                 $result = "default";
2889                 while (<>) {
2890                         my $found = 1;
2891
2892                         chomp;
2893                         ($opts, $suffix) = split(/ *: */);
2894                         foreach my $opt (split(/,/, $opts)) {
2895                                 if (!exists($feathash{$opt})) {
2896                                         $found = 0;
2897                                         last;
2898                                 }
2899                         }
2900                         if ($found == 1) {
2901                                 $result = $suffix;
2902                                 last;
2903                         }
2904                 }
2905                 print $result
2906                 ' <$seqfull.cfg)
2907         rm -f $1
2908         ln -fs $(basename $1).$suffix $1
2909 }
2910
2911 _link_out_file()
2912 {
2913         local features
2914
2915         if [ $# -eq 0 ]; then
2916                 features="$(_get_os_name),$FSTYP"
2917                 if [ -n "$MOUNT_OPTIONS" ]; then
2918                         features=$features,${MOUNT_OPTIONS##"-o "}
2919                 fi
2920         else
2921                 features=$1
2922         fi
2923
2924         _link_out_file_named $seqfull.out "$features"
2925 }
2926
2927 _die()
2928 {
2929         echo $@
2930         exit 1
2931 }
2932
2933 # convert urandom incompressible data to compressible text data
2934 _ddt()
2935 {
2936         od /dev/urandom | dd iflag=fullblock ${*}
2937 }
2938
2939 #takes files, randomdata
2940 _nfiles()
2941 {
2942         local f=0
2943         while [ $f -lt $1 ]
2944         do
2945                 local file=f$f
2946                 echo > $file
2947                 if [ $size -gt 0 ]; then
2948                     if [ "$2" == "false" ]; then
2949                         dd if=/dev/zero of=$file bs=1024 count=$size 2>&1 | _filter_dd
2950                     elif [ "$2" == "comp" ]; then
2951                         _ddt of=$file bs=1024 count=$size 2>&1 | _filter_dd
2952                     else
2953                         dd if=/dev/urandom of=$file bs=1024 count=$size 2>&1 | _filter_dd
2954                     fi
2955                 fi
2956                 let f=$f+1
2957         done
2958 }
2959
2960 # takes dirname, depth, randomdata
2961 _descend()
2962 {
2963         local dirname=$1 depth=$2 randomdata=$3
2964         mkdir $dirname  || die "mkdir $dirname failed"
2965         cd $dirname
2966
2967         _nfiles $files $randomdata          # files for this dir and data type
2968
2969         [ $depth -eq 0 ] && return
2970         local deep=$(( depth - 1 )) # go 1 down
2971
2972         [ $verbose = true ] && echo "descending, depth from leaves = $deep"
2973
2974         local d=0
2975         while [ $d -lt $dirs ]
2976         do
2977                 _descend d$d $deep &
2978                 let d=$d+1
2979                 wait
2980         done
2981 }
2982
2983 # Populate a filesystem with inodes for performance experiments
2984 #
2985 # usage: populate [-v] [-n ndirs] [-f nfiles] [-d depth] [-r root] [-s size] [-x]
2986 #
2987 _populate_fs()
2988 {
2989     local here=`pwd`
2990     local dirs=5          # ndirs in each subdir till leaves
2991     local size=0          # sizeof files in K
2992     local files=100       # num files in _each_ subdir
2993     local depth=2         # depth of tree from root to leaves
2994     local verbose=false
2995     local root=root       # path of initial root of directory tree
2996     local randomdata=false # -x data type urandom, zero or compressible
2997     local c
2998
2999     OPTIND=1
3000     while getopts "d:f:n:r:s:v:x:c" c
3001     do
3002         case $c in
3003         d)      depth=$OPTARG;;
3004         n)      dirs=$OPTARG;;
3005         f)      files=$OPTARG;;
3006         s)      size=$OPTARG;;
3007         v)      verbose=true;;
3008         r)      root=$OPTARG;;
3009         x)      randomdata=true;;
3010         c)      randomdata=comp;;
3011         esac
3012     done
3013
3014     _descend $root $depth $randomdata
3015     wait
3016
3017     cd $here
3018
3019     [ $verbose = true ] && echo done
3020 }
3021
3022 # query whether the given file has the given inode flag set
3023 #
3024 _test_inode_flag()
3025 {
3026         local flag=$1
3027         local file=$2
3028
3029         if $XFS_IO_PROG -r -c 'lsattr -v' "$file" | grep -q "$flag" ; then
3030                 return 0
3031         fi
3032         return 1
3033 }
3034
3035 # query the given files extsize allocator hint in bytes (if any)
3036 #
3037 _test_inode_extsz()
3038 {
3039         local file=$1
3040         local blocks=""
3041
3042         blocks=`$XFS_IO_PROG -r -c 'stat' "$file" | \
3043                 awk '/^xattr.extsize =/ { print $3 }'`
3044         [ -z "$blocks" ] && blocks="0"
3045         echo $blocks
3046 }
3047
3048 # scratch_dev_pool should contain the disks pool for the btrfs raid
3049 _require_scratch_dev_pool()
3050 {
3051         local i
3052         local ndevs
3053
3054         if [ -z "$SCRATCH_DEV_POOL" ]; then
3055                 _notrun "this test requires a valid \$SCRATCH_DEV_POOL"
3056         fi
3057
3058         if [ -z "$1" ]; then
3059                 ndevs=2
3060         else
3061                 ndevs=$1
3062         fi
3063
3064         # btrfs test case needs ndevs or more scratch_dev_pool; other FS not sure
3065         # so fail it
3066         case $FSTYP in
3067         btrfs)
3068                 if [ "`echo $SCRATCH_DEV_POOL|wc -w`" -lt $ndevs ]; then
3069                         _notrun "btrfs and this test needs $ndevs or more disks in SCRATCH_DEV_POOL"
3070                 fi
3071         ;;
3072         *)
3073                 _notrun "dev_pool is not supported by fstype \"$FSTYP\""
3074         ;;
3075         esac
3076
3077         for i in $SCRATCH_DEV_POOL; do
3078                 if [ "`_is_block_dev "$i"`" = "" ]; then
3079                         _notrun "this test requires valid block disk $i"
3080                 fi
3081                 if [ "`_is_block_dev "$i"`" = "`_is_block_dev "$TEST_DEV"`" ]; then
3082                         _notrun "$i is part of TEST_DEV, this test requires unique disks"
3083                 fi
3084                 if _mount | grep -q $i; then
3085                         if ! $UMOUNT_PROG $i; then
3086                             echo "failed to unmount $i - aborting"
3087                             exit 1
3088                         fi
3089                 fi
3090                 # to help better debug when something fails, we remove
3091                 # traces of previous btrfs FS on the dev.
3092                 dd if=/dev/zero of=$i bs=4096 count=100 > /dev/null 2>&1
3093         done
3094 }
3095
3096 # ensure devices in SCRATCH_DEV_POOL are of the same size
3097 # must be called after _require_scratch_dev_pool
3098 _require_scratch_dev_pool_equal_size()
3099 {
3100         local size
3101         local newsize
3102         local dev
3103
3104         # SCRATCH_DEV has been set to the first device in SCRATCH_DEV_POOL
3105         size=`_get_device_size $SCRATCH_DEV`
3106         for dev in $SCRATCH_DEV_POOL; do
3107                 newsize=`_get_device_size $dev`
3108                 if [ $size -ne $newsize ]; then
3109                         _notrun "This test requires devices in SCRATCH_DEV_POOL have the same size"
3110                 fi
3111         done
3112 }
3113
3114
3115 # Check that fio is present, and it is able to execute given jobfile
3116 _require_fio()
3117 {
3118         local job=$1
3119
3120         _require_command "$FIO_PROG" fio
3121         if [ -z "$1" ]; then
3122                 return 1;
3123         fi
3124
3125         $FIO_PROG --warnings-fatal --showcmd $job >> $seqres.full 2>&1
3126         [ $? -eq 0 ] || _notrun "$FIO_PROG too old, see $seqres.full"
3127 }
3128
3129 # Does freeze work on this fs?
3130 _require_freeze()
3131 {
3132         xfs_freeze -f "$TEST_DIR" >/dev/null 2>&1
3133         local result=$?
3134         xfs_freeze -u "$TEST_DIR" >/dev/null 2>&1
3135         [ $result -eq 0 ] || _notrun "$FSTYP does not support freezing"
3136 }
3137
3138 # Does NFS export work on this fs?
3139 _require_exportfs()
3140 {
3141         _require_test_program "open_by_handle"
3142         mkdir -p "$TEST_DIR"/exportfs_test
3143         $here/src/open_by_handle -c "$TEST_DIR"/exportfs_test 2>&1 \
3144                 || _notrun "$FSTYP does not support NFS export"
3145 }
3146
3147
3148 # Does shutdown work on this fs?
3149 _require_scratch_shutdown()
3150 {
3151         [ -x $here/src/godown ] || _notrun "src/godown executable not found"
3152
3153         _scratch_mkfs > /dev/null 2>&1 || _notrun "_scratch_mkfs failed on $SCRATCH_DEV"
3154         _scratch_mount
3155
3156         if [ $FSTYP = "overlay" ]; then
3157                 if [ -z $OVL_BASE_SCRATCH_DEV ]; then
3158                         # In lagacy overlay usage, it may specify directory as
3159                         # SCRATCH_DEV, in this case OVL_BASE_SCRATCH_DEV
3160                         # will be null, so check OVL_BASE_SCRATCH_DEV before
3161                         # running shutdown to avoid shutting down base fs accidently.
3162                         _notrun "This test requires a valid $OVL_BASE_SCRATCH_DEV as ovl base fs"
3163                 else
3164                         $here/src/godown -f $OVL_BASE_SCRATCH_MNT 2>&1 \
3165                         || _notrun "Underlying filesystem does not support shutdown"
3166                 fi
3167         else
3168                 $here/src/godown -f $SCRATCH_MNT 2>&1 \
3169                         || _notrun "$FSTYP does not support shutdown"
3170         fi
3171
3172         _scratch_unmount
3173 }
3174
3175 # Does dax mount option work on this dev/fs?
3176 _require_scratch_dax()
3177 {
3178         _require_scratch
3179         _scratch_mkfs > /dev/null 2>&1
3180         _try_scratch_mount -o dax || \
3181                 _notrun "mount $SCRATCH_DEV with dax failed"
3182         # Check options to be sure. XFS ignores dax option
3183         # and goes on if dev underneath does not support dax.
3184         _fs_options $SCRATCH_DEV | grep -qw "dax" || \
3185                 _notrun "$SCRATCH_DEV $FSTYP does not support -o dax"
3186         _scratch_unmount
3187 }
3188
3189 # Does norecovery support by this fs?
3190 _require_norecovery()
3191 {
3192         _try_scratch_mount -o ro,norecovery || \
3193                 _notrun "$FSTYP does not support norecovery"
3194         _scratch_unmount
3195 }
3196
3197 # Does this filesystem support metadata journaling?
3198 # We exclude ones here that don't; otherwise we assume that it does, so the
3199 # test will run, fail, and motivate someone to update this test for a new
3200 # filesystem.
3201 #
3202 # It's possible that TEST_DEV and SCRATCH_DEV have different features (it'd be
3203 # odd, but possible) so check $TEST_DEV by default, but we can optionall pass
3204 # any dev we want.
3205 _has_metadata_journaling()
3206 {
3207         if [ -z $1 ]; then
3208                 local dev=$TEST_DEV
3209         else
3210                 local dev=$1
3211         fi
3212
3213         case "$FSTYP" in
3214         ext2|vfat|msdos|udf|exfat)
3215                 echo "$FSTYP does not support metadata journaling"
3216                 return 1
3217                 ;;
3218         ext4)
3219                 # ext4 could be mkfs'd without a journal...
3220                 _require_dumpe2fs
3221                 $DUMPE2FS_PROG -h $dev 2>&1 | grep -q has_journal || {
3222                         echo "$FSTYP on $dev not configured with metadata journaling"
3223                         return 1
3224                 }
3225                 # ext4 might not load a journal
3226                 if _normalize_mount_options | grep -qw "noload"; then
3227                         echo "mount option \"noload\" not allowed in this test"
3228                         return 1
3229                 fi
3230                 ;;
3231         overlay)
3232                 # metadata journaling check is based on base filesystem configurations
3233                 # and  because -overlay option saves those configurations to OVL_BASE_*,
3234                 # adding restore/override the configurations before/after the check.
3235                 if [ ! -z $OVL_BASE_FSTYP -a $OVL_BASE_FSTYP != "overlay" ]; then
3236                         local ret
3237
3238                         _overlay_config_restore
3239                         _has_metadata_journaling
3240                         ret=$?
3241                         _overlay_config_override
3242                         return $ret
3243                 else
3244                         echo "No metadata journaling support for legacy overlay setup"
3245                         return 1
3246                 fi
3247                 ;;
3248         *)
3249                 # by default we pass; if you need to, add your fs above!
3250                 ;;
3251         esac
3252         return 0
3253 }
3254
3255 _require_metadata_journaling()
3256 {
3257         local msg=$(_has_metadata_journaling $@)
3258         if [ -n "$msg" ]; then
3259                 _notrun "$msg"
3260         fi
3261 }
3262
3263 _count_extents()
3264 {
3265         $XFS_IO_PROG -r -c "fiemap" $1 | tail -n +2 | grep -v hole | wc -l
3266 }
3267
3268 # Similar to _count_extents() but if any extent is shared multiples times in
3269 # the file (reflinked to different file offsets), it is accounted as 1 extent
3270 # instead of N extents.
3271 _count_exclusive_extents()
3272 {
3273         $XFS_IO_PROG -r -c "fiemap" $1 | tail -n +2 | grep -v hole | \
3274                 cut -d ' ' -f 3 | sort | uniq | wc -l
3275 }
3276
3277 _count_holes()
3278 {
3279         $XFS_IO_PROG -r -c "fiemap" $1 | tail -n +2 | grep hole | wc -l
3280 }
3281
3282 _count_attr_extents()
3283 {
3284         $XFS_IO_PROG -c "fiemap -a" $1 | tail -n +2 | grep -v hole | wc -l
3285 }
3286
3287 # arg 1 is dev to remove and is output of the below eg.
3288 # ls -l /sys/class/block/sdd | rev | cut -d "/" -f 3 | rev
3289 _devmgt_remove()
3290 {
3291         local lun=$1
3292         local disk=$2
3293
3294         echo 1 > /sys/class/scsi_device/${lun}/device/delete || _fail "Remove disk failed"
3295
3296         stat $disk > /dev/null 2>&1
3297         while [ $? -eq 0 ]; do
3298                 sleep 1
3299                 stat $disk > /dev/null 2>&1
3300         done
3301 }
3302
3303 # arg 1 is dev to add and is output of the below eg.
3304 # ls -l /sys/class/block/sdd | rev | cut -d "/" -f 3 | rev
3305 _devmgt_add()
3306 {
3307         local h
3308         local tdl
3309         # arg 1 will be in h:t:d:l format now in the h and "t d l" format
3310         h=`echo ${1} | cut -d":" -f 1`
3311         tdl=`echo ${1} | cut -d":" -f 2-|sed 's/:/ /g'`
3312
3313         echo ${tdl} >  /sys/class/scsi_host/host${h}/scan || _fail "Add disk failed"
3314
3315         # ensure the device comes online
3316         local dev_back_oneline=0
3317         local i
3318         for i in `seq 1 10`; do
3319                 if [ -d /sys/class/scsi_device/${1}/device/block ]; then
3320                         local dev=`ls /sys/class/scsi_device/${1}/device/block`
3321                         local j
3322                         for j in `seq 1 10`;
3323                         do
3324                                 stat /dev/$dev > /dev/null 2>&1
3325                                 if [ $? -eq 0 ]; then
3326                                         dev_back_oneline=1
3327                                         break
3328                                 fi
3329                                 sleep 1
3330                         done
3331                         break
3332                 else
3333                         sleep 1
3334                 fi
3335         done
3336         if [ $dev_back_oneline -eq 0 ]; then
3337                 echo "/dev/$dev online failed" >> $seqres.full
3338         else
3339                 echo "/dev/$dev is back online" >> $seqres.full
3340         fi
3341 }
3342
3343 _require_fstrim()
3344 {
3345         if [ -z "$FSTRIM_PROG" ]; then
3346                 _notrun "This test requires fstrim utility."
3347         fi
3348 }
3349
3350 _require_batched_discard()
3351 {
3352         if [ $# -ne 1 ]; then
3353                 echo "Usage: _require_batched_discard mnt_point" 1>&2
3354                 exit 1
3355         fi
3356         _require_fstrim
3357         $FSTRIM_PROG $1 > /dev/null 2>&1 || _notrun "FITRIM not supported on $1"
3358 }
3359
3360 _require_dumpe2fs()
3361 {
3362         if [ -z "$DUMPE2FS_PROG" ]; then
3363                 _notrun "This test requires dumpe2fs utility."
3364         fi
3365 }
3366
3367 _require_ugid_map()
3368 {
3369         if [ ! -e /proc/self/uid_map ]; then
3370                 _notrun "This test requires procfs uid_map support."
3371         fi
3372         if [ ! -e /proc/self/gid_map ]; then
3373                 _notrun "This test requires procfs gid_map support."
3374         fi
3375 }
3376
3377 _require_fssum()
3378 {
3379         FSSUM_PROG=$here/src/fssum
3380         [ -x $FSSUM_PROG ] || _notrun "fssum not built"
3381 }
3382
3383 _require_cloner()
3384 {
3385         CLONER_PROG=$here/src/cloner
3386         [ -x $CLONER_PROG ] || \
3387                 _notrun "cloner binary not present at $CLONER_PROG"
3388 }
3389
3390 # Normalize mount options from global $MOUNT_OPTIONS
3391 # Convert options like "-o opt1,opt2 -oopt3" to
3392 # "opt1 opt2 opt3"
3393 _normalize_mount_options()
3394 {
3395         echo $MOUNT_OPTIONS | sed -n 's/-o\s*\(\S*\)/\1/gp'| sed 's/,/ /g'
3396 }
3397
3398 # skip test if MOUNT_OPTIONS contains the given strings
3399 _exclude_scratch_mount_option()
3400 {
3401         local mnt_opts=$(_normalize_mount_options)
3402
3403         while [ $# -gt 0 ]; do
3404                 if echo $mnt_opts | grep -qw "$1"; then
3405                         _notrun "mount option \"$1\" not allowed in this test"
3406                 fi
3407                 shift
3408         done
3409 }
3410
3411 _require_atime()
3412 {
3413         _exclude_scratch_mount_option "noatime"
3414         case $FSTYP in
3415         nfs|cifs)
3416                 _notrun "atime related mount options have no effect on $FSTYP"
3417                 ;;
3418         esac
3419
3420 }
3421
3422 _require_relatime()
3423 {
3424         _scratch_mkfs > /dev/null 2>&1
3425         _try_scratch_mount -o relatime || \
3426                 _notrun "relatime not supported by the current kernel"
3427         _scratch_unmount
3428 }
3429
3430 _require_userns()
3431 {
3432         [ -x $here/src/nsexec ] || _notrun "src/nsexec executable not found"
3433         $here/src/nsexec -U true 2>/dev/null || _notrun "userns not supported by this kernel"
3434 }
3435
3436 _create_loop_device()
3437 {
3438         local file=$1 dev
3439         dev=`losetup -f --show $file` || _fail "Cannot assign $file to a loop device"
3440         echo $dev
3441 }
3442
3443 _destroy_loop_device()
3444 {
3445         local dev=$1
3446         losetup -d $dev || _fail "Cannot destroy loop device $dev"
3447 }
3448
3449 _scale_fsstress_args()
3450 {
3451     local args=""
3452     while [ $# -gt 0 ]; do
3453         case "$1" in
3454             -n) args="$args $1 $(($2 * $TIME_FACTOR))"; shift ;;
3455             -p) args="$args $1 $(($2 * $LOAD_FACTOR))"; shift ;;
3456             *) args="$args $1" ;;
3457         esac
3458         shift
3459     done
3460     printf '%s\n' "$args"
3461 }
3462
3463 #
3464 # Return the logical block size if running on a block device,
3465 # else substitute the page size.
3466 #
3467 _min_dio_alignment()
3468 {
3469     local dev=$1
3470
3471     if [ -b "$dev" ]; then
3472         blockdev --getss $dev
3473     else
3474         $here/src/feature -s
3475     fi
3476 }
3477
3478 run_check()
3479 {
3480         echo "# $@" >> $seqres.full 2>&1
3481         "$@" >> $seqres.full 2>&1 || _fail "failed: '$@'"
3482 }
3483
3484 _require_symlinks()
3485 {
3486         local target=`mktemp -p $TEST_DIR`
3487         local link=`mktemp -p $TEST_DIR -u`
3488         ln -s `basename $target` $link
3489         if [ "$?" -ne 0 ]; then
3490                 rm -f $target
3491                 _notrun "Require symlinks support"
3492         fi
3493         rm -f $target $link
3494 }
3495
3496 _require_hardlinks()
3497 {
3498         local target=`mktemp -p $TEST_DIR`
3499         local link=`mktemp -p $TEST_DIR -u`
3500         ln $target $link
3501         if [ "$?" -ne 0 ]; then
3502                 rm -f $target
3503                 _notrun "No hardlink support"
3504         fi
3505         rm -f $target $link
3506 }
3507
3508 _require_test_fcntl_advisory_locks()
3509 {
3510         [ "$FSTYP" != "cifs" ] && return 0
3511         cat /proc/mounts | grep $TEST_DEV | grep cifs | grep -q "nobrl" && return 0
3512         cat /proc/mounts | grep $TEST_DEV | grep cifs | grep -qE "nounix|forcemand" && \
3513                 _notrun "Require fcntl advisory locks support"
3514 }
3515
3516 _require_test_fcntl_setlease()
3517 {
3518         _require_test_program "locktest"
3519         touch $TEST_DIR/setlease_testfile
3520         $here/src/locktest -t $TEST_DIR/setlease_testfile >/dev/null 2>&1
3521         [ $? -eq 22 ] && _notrun "Require fcntl setlease support"
3522 }
3523
3524 _require_ofd_locks()
3525 {
3526         # Give a test run by getlk wrlck on testfile.
3527         # If the running kernel does not support OFD locks,
3528         # EINVAL will be returned.
3529         _require_test_program "t_ofd_locks"
3530         touch $TEST_DIR/ofd_testfile
3531         $here/src/t_ofd_locks -t $TEST_DIR/ofd_testfile > /dev/null 2>&1
3532         [ $? -eq 22 ] && _notrun "Require OFD locks support"
3533 }
3534
3535 _require_test_lsattr()
3536 {
3537         local testio=$(lsattr -d $TEST_DIR 2>&1)
3538         echo $testio | grep -q "Operation not supported" && \
3539                 _notrun "lsattr not supported by test filesystem type: $FSTYP"
3540         echo $testio | grep -q "Inappropriate ioctl for device" && \
3541                 _notrun "lsattr not supported by test filesystem type: $FSTYP"
3542 }
3543
3544 _require_chattr()
3545 {
3546         if [ -z "$1" ]; then
3547                 echo "Usage: _require_chattr <attr>"
3548                 exit 1
3549         fi
3550         local attribute=$1
3551
3552         touch $TEST_DIR/syscalltest
3553         chattr "+$attribute" $TEST_DIR/syscalltest > $TEST_DIR/syscalltest.out 2>&1
3554         local ret=$?
3555         chattr "-$attribute" $TEST_DIR/syscalltest > $TEST_DIR/syscalltest.out 2>&1
3556         if [ "$ret" -ne 0 ]; then
3557                 _notrun "file system doesn't support chattr +$attribute"
3558         fi
3559         cat $TEST_DIR/syscalltest.out >> $seqres.full
3560         rm -f $TEST_DIR/syscalltest.out
3561 }
3562
3563 _get_total_inode()
3564 {
3565         if [ -z "$1" ]; then
3566                 echo "Usage: _get_total_inode <mnt>"
3567                 exit 1
3568         fi
3569         local nr_inode;
3570         nr_inode=`$DF_PROG -i $1 | tail -1 | awk '{print $3}'`
3571         echo $nr_inode
3572 }
3573
3574 _get_used_inode()
3575 {
3576         if [ -z "$1" ]; then
3577                 echo "Usage: _get_used_inode <mnt>"
3578                 exit 1
3579         fi
3580         local nr_inode;
3581         nr_inode=`$DF_PROG -i $1 | tail -1 | awk '{print $4}'`
3582         echo $nr_inode
3583 }
3584
3585 _get_used_inode_percent()
3586 {
3587         if [ -z "$1" ]; then
3588                 echo "Usage: _get_used_inode_percent <mnt>"
3589                 exit 1
3590         fi
3591         local pct_inode;
3592         pct_inode=`$DF_PROG -i $1 | tail -1 | awk '{ print $6 }' | \
3593                    sed -e 's/%//'`
3594         echo $pct_inode
3595 }
3596
3597 _get_free_inode()
3598 {
3599         if [ -z "$1" ]; then
3600                 echo "Usage: _get_free_inode <mnt>"
3601                 exit 1
3602         fi
3603         local nr_inode;
3604         nr_inode=`$DF_PROG -i $1 | tail -1 | awk '{print $5}'`
3605         echo $nr_inode
3606 }
3607
3608 # get the available space in bytes
3609 #
3610 _get_available_space()
3611 {
3612         if [ -z "$1" ]; then
3613                 echo "Usage: _get_available_space <mnt>"
3614                 exit 1
3615         fi
3616         local avail_kb;
3617         avail_kb=`$DF_PROG $1 | tail -n1 | awk '{ print $5 }'`
3618         echo $((avail_kb * 1024))
3619 }
3620
3621 # return device size in kb
3622 _get_device_size()
3623 {
3624         grep -w `_short_dev $1` /proc/partitions | awk '{print $3}'
3625 }
3626
3627 # Make sure we actually have dmesg checking set up.
3628 _require_check_dmesg()
3629 {
3630         test -w /dev/kmsg || \
3631                 _notrun "Test requires writable /dev/kmsg."
3632 }
3633
3634 # Return the dmesg log since the start of this test.  Caller must ensure that
3635 # /dev/kmsg was writable when the test was started so that we can find the
3636 # beginning of this test's log messages; _require_check_dmesg does this.
3637 _dmesg_since_test_start()
3638 {
3639         # search the dmesg log of last run of $seqnum for possible failures
3640         # use sed \cregexpc address type, since $seqnum contains "/"
3641         dmesg | tac | sed -ne "0,\#run fstests $seqnum at $date_time#p" | \
3642                 tac
3643 }
3644
3645 # check dmesg log for a specific string, subject to the same requirements as
3646 # _dmesg_since_test_start.
3647 _check_dmesg_for()
3648 {
3649         _dmesg_since_test_start | egrep -q "$1"
3650 }
3651
3652 # Default filter for dmesg scanning.
3653 # Ignore lockdep complaining about its own bugginess when scanning dmesg
3654 # output, because we shouldn't be failing filesystem tests on account of
3655 # lockdep.
3656 _check_dmesg_filter()
3657 {
3658         egrep -v -e "BUG: MAX_LOCKDEP_CHAIN_HLOCKS too low" \
3659                 -e "BUG: MAX_STACK_TRACE_ENTRIES too low"
3660 }
3661
3662 # check dmesg log for WARNING/Oops/etc.
3663 _check_dmesg()
3664 {
3665         if [ ! -f ${RESULT_DIR}/check_dmesg ]; then
3666                 return 0
3667         fi
3668         rm -f ${RESULT_DIR}/check_dmesg
3669
3670         # default filter is a simple cat command, caller could provide a
3671         # customized filter and pass the name through the first argument, to
3672         # filter out intentional WARNINGs or Oopses
3673         local filter=${1:-_check_dmesg_filter}
3674
3675         _dmesg_since_test_start | $filter >$seqres.dmesg
3676         egrep -q -e "kernel BUG at" \
3677              -e "WARNING:" \
3678              -e "\bBUG:" \
3679              -e "Oops:" \
3680              -e "possible recursive locking detected" \
3681              -e "Internal error" \
3682              -e "(INFO|ERR): suspicious RCU usage" \
3683              -e "INFO: possible circular locking dependency detected" \
3684              -e "general protection fault:" \
3685              -e "BUG .* remaining" \
3686              -e "UBSAN:" \
3687              $seqres.dmesg
3688         if [ $? -eq 0 ]; then
3689                 _dump_err "_check_dmesg: something found in dmesg (see $seqres.dmesg)"
3690                 return 1
3691         else
3692                 if [ "$KEEP_DMESG" != "yes" ]; then
3693                         rm -f $seqres.dmesg
3694                 fi
3695                 return 0
3696         fi
3697 }
3698
3699 # capture the kmemleak report
3700 _capture_kmemleak()
3701 {
3702         local kern_knob="$DEBUGFS_MNT/kmemleak"
3703         local leak_file="$1"
3704
3705         # Tell the kernel to scan for memory leaks.  Apparently the write
3706         # returns before the scan is complete, so do it twice in the hopes
3707         # that twice is enough to capture all the leaks.
3708         echo "scan" > "$kern_knob"
3709         cat "$kern_knob" > /dev/null
3710         echo "scan" > "$kern_knob"
3711         cat "$kern_knob" > "$leak_file.tmp"
3712         if [ -s "$leak_file.tmp" ]; then
3713                 cat > "$leak_file" << ENDL
3714 EXPERIMENTAL kmemleak reported some memory leaks!  Due to the way kmemleak
3715 works, the leak might be from an earlier test, or something totally unrelated.
3716 ENDL
3717                 cat "$leak_file.tmp" >> "$leak_file"
3718         fi
3719         rm -rf "$leak_file.tmp"
3720         echo "clear" > "$kern_knob"
3721 }
3722
3723 # Figure out if the running kernel supports kmemleak; if it does, clear out
3724 # anything that leaked before we even started testing.  The leak checker only
3725 # needs to be primed like this once per ./check invocation.
3726 _detect_kmemleak()
3727 {
3728         local kern_knob="$DEBUGFS_MNT/kmemleak"
3729         KMEMLEAK_CHECK_FILE="/tmp/check_kmemleak"
3730
3731         # Since kernel v4.19-rc3, the kmemleak knob exists even if kmemleak is
3732         # disabled, but returns EBUSY on write. So instead of relying on
3733         # existance of writable knob file, we use a test file to indicate that
3734         # _check_kmemleak() is enabled only if we actually managed to write to
3735         # the knob file.
3736         rm -f "$KMEMLEAK_CHECK_FILE"
3737
3738         if [ ! -w "$kern_knob" ]; then
3739                 return 0
3740         fi
3741
3742         # Disable the automatic scan so that we can control it completely,
3743         # then dump all the leaks recorded so far.
3744         if echo "scan=off" > "$kern_knob" 2>/dev/null; then
3745                 _capture_kmemleak /dev/null
3746                 touch "$KMEMLEAK_CHECK_FILE"
3747         fi
3748 }
3749
3750 # Kick the kmemleak checker to scan for leaks.  Background leak scan mode is
3751 # not enabled, so we must call the kernel to ask for a scan and deal with the
3752 # results appropriately.  This we do after every test completes, whether or not
3753 # it was successful.
3754 _check_kmemleak()
3755 {
3756         local kern_knob="$DEBUGFS_MNT/kmemleak"
3757         local leak_file="$seqres.kmemleak"
3758
3759         if [ ! -f "$KMEMLEAK_CHECK_FILE" ]; then
3760                 return 0
3761         fi
3762
3763         # Not enabled, so discard any report of leaks found.
3764         if [ "$USE_KMEMLEAK" != "yes" ]; then
3765                 _capture_kmemleak /dev/null
3766                 return 0
3767         fi
3768
3769         # Capture and report any leaks
3770         _capture_kmemleak "$leak_file"
3771         if [ -s "$leak_file" ]; then
3772                 _dump_err "_check_kmemleak: something found in kmemleak (see $leak_file)"
3773                 return 1
3774         else
3775                 rm -f "$leak_file"
3776                 return 0
3777         fi
3778 }
3779
3780 # don't check dmesg log after test
3781 _disable_dmesg_check()
3782 {
3783         rm -f ${RESULT_DIR}/check_dmesg
3784 }
3785
3786 init_rc()
3787 {
3788         # make some further configuration checks here
3789         if [ "$TEST_DEV" = ""  ]
3790         then
3791                 echo "common/rc: Error: \$TEST_DEV is not set"
3792                 exit 1
3793         fi
3794
3795         # if $TEST_DEV is not mounted, mount it now as XFS
3796         if [ -z "`_fs_type $TEST_DEV`" ]
3797         then
3798                 # $TEST_DEV is not mounted
3799                 if ! _test_mount
3800                 then
3801                         echo "common/rc: retrying test device mount with external set"
3802                         [ "$USE_EXTERNAL" != "yes" ] && export USE_EXTERNAL=yes
3803                         if ! _test_mount
3804                         then
3805                                 echo "common/rc: could not mount $TEST_DEV on $TEST_DIR"
3806                                 exit 1
3807                         fi
3808                 fi
3809         fi
3810
3811         # Sanity check that TEST partition is not mounted at another mount point
3812         # or as another fs type
3813         _check_mounted_on TEST_DEV $TEST_DEV TEST_DIR $TEST_DIR $FSTYP || exit 1
3814         if [ -n "$SCRATCH_DEV" ]; then
3815                 # Sanity check that SCRATCH partition is not mounted at another
3816                 # mount point, because it is about to be unmounted and formatted.
3817                 # Another fs type for scratch is fine (bye bye old fs type).
3818                 _check_mounted_on SCRATCH_DEV $SCRATCH_DEV SCRATCH_MNT $SCRATCH_MNT
3819                 [ $? -le 1 ] || exit 1
3820         fi
3821
3822         # Figure out if we need to add -F ("foreign", deprecated) option to xfs_io
3823         $XFS_IO_PROG -c stat $TEST_DIR 2>&1 | grep -q "is not on an XFS filesystem" && \
3824                 export XFS_IO_PROG="$XFS_IO_PROG -F"
3825
3826         # xfs_io -i option starts an idle thread for xfs_io.
3827         # With single threaded process, the file table is not shared
3828         # and file structs are not reference counted.
3829         # Spawning an idle thread can help detecting file struct
3830         # reference leaks, so we want to enable the option whenever
3831         # it is supported.
3832         $XFS_IO_PROG -i -c quit 2>/dev/null && \
3833                 export XFS_IO_PROG="$XFS_IO_PROG -i"
3834
3835         # xfs_copy on v5 filesystems do not require the "-d" option if xfs_db
3836         # can change the UUID on v5 filesystems
3837         if [ "$FSTYP" == "xfs" ]; then
3838                 touch /tmp/$$.img
3839                 $MKFS_XFS_PROG -d file,name=/tmp/$$.img,size=512m >/dev/null 2>&1
3840                 # xfs_db will return 0 even if it can't generate a new uuid, so
3841                 # check the output to make sure if it can change UUID of V5 xfs
3842                 $XFS_DB_PROG -x -c "uuid generate" /tmp/$$.img \
3843                         | grep -q "invalid UUID\|supported on V5 fs" \
3844                         && export XFS_COPY_PROG="$XFS_COPY_PROG -d"
3845                 rm -f /tmp/$$.img
3846         fi
3847 }
3848
3849 # get real device path name by following link
3850 _real_dev()
3851 {
3852         local dev=$1
3853         if [ -b "$dev" ] && [ -L "$dev" ]; then
3854                 dev=`readlink -f "$dev"`
3855         fi
3856         echo $dev
3857 }
3858
3859 # basename of a device
3860 _short_dev()
3861 {
3862         echo `basename $(_real_dev $1)`
3863 }
3864
3865 _sysfs_dev()
3866 {
3867         local dev=`_real_dev $1`
3868         local maj=$(stat -c%t $dev | tr [:lower:] [:upper:])
3869         local min=$(stat -c%T $dev | tr [:lower:] [:upper:])
3870         maj=$(echo "ibase=16; $maj" | bc)
3871         min=$(echo "ibase=16; $min" | bc)
3872         echo /sys/dev/block/$maj:$min
3873 }
3874
3875 # Get the minimum block size of a file.  Usually this is the
3876 # minimum fs block size, but some filesystems (ocfs2) do block
3877 # mappings in larger units.
3878 _get_file_block_size()
3879 {
3880         if [ -z $1 ] || [ ! -d $1 ]; then
3881                 echo "Missing mount point argument for _get_file_block_size"
3882                 exit 1
3883         fi
3884         if [ "$FSTYP" = "ocfs2" ]; then
3885                 stat -c '%o' $1
3886         else
3887                 _get_block_size $1
3888         fi
3889 }
3890
3891 # Get the minimum block size of an fs.
3892 _get_block_size()
3893 {
3894         if [ -z $1 ] || [ ! -d $1 ]; then
3895                 echo "Missing mount point argument for _get_block_size"
3896                 exit 1
3897         fi
3898         stat -f -c %S $1
3899 }
3900
3901 get_page_size()
3902 {
3903         echo $(getconf PAGE_SIZE)
3904 }
3905
3906
3907 run_fsx()
3908 {
3909         echo fsx $@
3910         local args=`echo $@ | sed -e "s/ BSIZE / $bsize /g" -e "s/ PSIZE / $psize /g"`
3911         set -- $here/ltp/fsx $args $FSX_AVOID $TEST_DIR/junk
3912         echo "$@" >>$seqres.full
3913         rm -f $TEST_DIR/junk
3914         "$@" 2>&1 | tee -a $seqres.full >$tmp.fsx
3915         if [ ${PIPESTATUS[0]} -ne 0 ]; then
3916                 cat $tmp.fsx
3917                 rm -f $tmp.fsx
3918                 exit 1
3919         fi
3920         rm -f $tmp.fsx
3921 }
3922
3923 # Test for the existence of a sysfs entry at /sys/fs/$FSTYP/DEV/$ATTR
3924 #
3925 # Only one argument is needed:
3926 #  - attr: path name under /sys/fs/$FSTYP/DEV
3927 #
3928 # Usage example:
3929 #   _require_fs_sysfs error/fail_at_unmount
3930 _require_fs_sysfs()
3931 {
3932         local attr=$1
3933         local dname=$(_short_dev $TEST_DEV)
3934
3935         if [ -z "$attr" -o -z "$dname" ];then
3936                 _fail "Usage: _require_fs_sysfs <sysfs_attr_path>"
3937         fi
3938
3939         if [ ! -e /sys/fs/${FSTYP}/${dname}/${attr} ];then
3940                 _notrun "This test requires /sys/fs/${FSTYP}/${dname}/${attr}"
3941         fi
3942 }
3943
3944 _require_statx()
3945 {
3946         $here/src/stat_test --check-statx ||
3947         _notrun "This test requires the statx system call"
3948 }
3949
3950 # Write "content" into /sys/fs/$FSTYP/$DEV/$ATTR
3951 #
3952 # All arguments are necessary, and in this order:
3953 #  - dev: device name, e.g. $SCRATCH_DEV
3954 #  - attr: path name under /sys/fs/$FSTYP/$dev
3955 #  - content: the content of $attr
3956 #
3957 # Usage example:
3958 #   _set_fs_sysfs_attr /dev/mapper/scratch-dev error/fail_at_unmount 0
3959 _set_fs_sysfs_attr()
3960 {
3961         local dev=$1
3962         shift
3963         local attr=$1
3964         shift
3965         local content="$*"
3966
3967         if [ ! -b "$dev" -o -z "$attr" -o -z "$content" ];then
3968                 _fail "Usage: _set_fs_sysfs_attr <mounted_device> <attr> <content>"
3969         fi
3970
3971         local dname=$(_short_dev $dev)
3972         echo "$content" > /sys/fs/${FSTYP}/${dname}/${attr}
3973 }
3974
3975 # Print the content of /sys/fs/$FSTYP/$DEV/$ATTR
3976 #
3977 # All arguments are necessary, and in this order:
3978 #  - dev: device name, e.g. $SCRATCH_DEV
3979 #  - attr: path name under /sys/fs/$FSTYP/$dev
3980 #
3981 # Usage example:
3982 #   _get_fs_sysfs_attr /dev/mapper/scratch-dev error/fail_at_unmount
3983 _get_fs_sysfs_attr()
3984 {
3985         local dev=$1
3986         local attr=$2
3987
3988         if [ ! -b "$dev" -o -z "$attr" ];then
3989                 _fail "Usage: _get_fs_sysfs_attr <mounted_device> <attr>"
3990         fi
3991
3992         local dname=$(_short_dev $dev)
3993         cat /sys/fs/${FSTYP}/${dname}/${attr}
3994 }
3995
3996 # Generic test for specific filesystem feature.
3997 # Currently only implemented to test overlayfs features.
3998 _require_scratch_feature()
3999 {
4000         local feature=$1
4001
4002         case "$FSTYP" in
4003         overlay)
4004                 _require_scratch_overlay_features ${feature}
4005                 ;;
4006         *)
4007                 _fail "Test for feature '${feature}' of ${FSTYP} is not implemented"
4008                 ;;
4009         esac
4010 }
4011
4012 # Get the maximum size of a file in $TEST_DIR (s_maxbytes).  On ext4 this will
4013 # be UINT32_MAX * block_size, but other filesystems may allow up to LLONG_MAX.
4014 _get_max_file_size()
4015 {
4016         local testfile=$TEST_DIR/maxfilesize.$seq
4017         local l=0
4018         local r=9223372036854775807 # LLONG_MAX
4019
4020         rm -f $testfile
4021         while (( l < r )); do
4022                 # Use _math() to avoid signed integer overflow.
4023                 local m=$(_math "($l + $r + 1) / 2")
4024                 if $XFS_IO_PROG -f -c "truncate $m" $testfile \
4025                         |& grep -q 'File too large'
4026                 then
4027                         r=$(( m - 1 ))
4028                 else
4029                         l=$m
4030                 fi
4031         done
4032         echo $l
4033 }
4034
4035 # get MAX_LFS_FILESIZE
4036 _get_max_lfs_filesize()
4037 {
4038         case "$(getconf LONG_BIT)" in
4039         "32")
4040                 local ulong_max=$(getconf ULONG_MAX)
4041                 local page_size=$(getconf PAGE_SIZE)
4042                 echo $(( ulong_max * page_size ))
4043                 ;;
4044         "64")
4045                 echo 9223372036854775807
4046                 ;;
4047         *)
4048                 _fail "sizeof(long) == $(getconf LONG_BIT)?"
4049                 ;;
4050         esac
4051 }
4052
4053 # The maximum filesystem label length, /not/ including terminating NULL
4054 _label_get_max()
4055 {
4056         case $FSTYP in
4057         xfs)
4058                 echo 12
4059                 ;;
4060         btrfs)
4061                 echo 255
4062                 ;;
4063         f2fs)
4064                 echo 255
4065                 ;;
4066         *)
4067                 _notrun "$FSTYP does not define maximum label length"
4068                 ;;
4069         esac
4070 }
4071
4072 # Helper to check above early in a script
4073 _require_label_get_max()
4074 {
4075         # Just call _label_get_max which will notrun if appropriate
4076         dummy=$(_label_get_max)
4077 }
4078
4079 _dmsetup_remove()
4080 {
4081         $UDEV_SETTLE_PROG >/dev/null 2>&1
4082         $DMSETUP_PROG remove "$@" >>$seqres.full 2>&1
4083         $DMSETUP_PROG mknodes >/dev/null 2>&1
4084 }
4085
4086 _dmsetup_create()
4087 {
4088         $DMSETUP_PROG create "$@" >>$seqres.full 2>&1 || return 1
4089         $DMSETUP_PROG mknodes >/dev/null 2>&1
4090         $UDEV_SETTLE_PROG >/dev/null 2>&1
4091 }
4092
4093 _require_btime()
4094 {
4095         # Note: filesystems are not required to report btime (creation time)
4096         # if the caller doesn't ask for it, so we define STATX_BTIME here and
4097         # pass it in to the statx command.
4098         export STATX_BTIME=0x800
4099         $XFS_IO_PROG -f $TEST_DIR/test_creation_time -c "statx -m $STATX_BTIME -v" \
4100                 | grep btime >>$seqres.full 2>&1 || \
4101                 _notrun "inode creation time not supported by this filesystem"
4102         rm -f $TEST_DIR/test_creation_time
4103 }
4104
4105 _require_scratch_btime()
4106 {
4107         _require_scratch
4108         _scratch_mkfs > /dev/null 2>&1
4109         _scratch_mount
4110
4111         # Note: filesystems are not required to report btime (creation time)
4112         # if the caller doesn't ask for it, so we define STATX_BTIME here and
4113         # pass it in to the statx command.
4114         export STATX_BTIME=0x800
4115         $XFS_IO_PROG -f $SCRATCH_MNT/test_creation_time -c "statx -m $STATX_BTIME -v" \
4116                 | grep btime >>$seqres.full 2>&1 || \
4117                 _notrun "inode creation time not supported by this filesystem"
4118
4119         _scratch_unmount
4120 }
4121
4122 _require_inode_limits()
4123 {
4124         if [ $(_get_free_inode $TEST_DIR) -eq 0 ]; then
4125                 _notrun "$FSTYP does not have a fixed number of inodes available"
4126         fi
4127 }
4128
4129 _require_filefrag_options()
4130 {
4131         _require_command "$FILEFRAG_PROG" filefrag
4132
4133         local options=$1
4134         local file="$TEST_DIR/options_testfile"
4135
4136         echo "XX" > $file
4137         ${FILEFRAG_PROG} -$options $file 2>&1 | grep -q "invalid option" && \
4138                 _notrun "filefrag doesn't support $options option"
4139         rm -f $file
4140 }
4141
4142 _require_fibmap()
4143 {
4144         _require_filefrag_options "B"
4145
4146         local file="$TEST_DIR/fibmap_testfile"
4147
4148         echo "XX" > $file
4149         ${FILEFRAG_PROG} -B $file 2>&1 | grep -q "FIBMAP[[:space:]]*unsupported"
4150         if [ $? -eq 0 ]; then
4151                 _notrun "FIBMAP not supported by this filesystem"
4152         fi
4153         rm -f $file
4154 }
4155
4156 _try_wipe_scratch_devs()
4157 {
4158         test -x "$WIPEFS_PROG" || return 0
4159
4160         # Do specified filesystem wipe at first
4161         case "$FSTYP" in
4162         "xfs")
4163                 _try_wipe_scratch_xfs
4164                 ;;
4165         esac
4166
4167         # Then do wipefs on all scratch devices
4168         for dev in $SCRATCH_DEV_POOL $SCRATCH_DEV $SCRATCH_LOGDEV $SCRATCH_RTDEV; do
4169                 test -b $dev && $WIPEFS_PROG -a $dev
4170         done
4171 }
4172
4173 # Only run this on xfs if xfs_scrub is available and has the unicode checker
4174 _check_xfs_scrub_does_unicode() {
4175         [ "${FSTYP}" == "xfs" ] || return 1
4176
4177         local mount="$1"
4178         local dev="$2"
4179
4180         _supports_xfs_scrub "${mount}" "${dev}" || return 1
4181
4182         # We only care if xfs_scrub has unicode string support...
4183         if ! type ldd > /dev/null 2>&1 || \
4184            ! ldd "${XFS_SCRUB_PROG}" | grep -q libicui18n; then
4185                 return 1
4186         fi
4187
4188         return 0
4189 }
4190
4191 # exfat timestamps start at 1980 and cannot be prior to epoch
4192 _require_negative_timestamps() {
4193         case "$FSTYP" in
4194         ceph|exfat)
4195                 _notrun "$FSTYP does not support negative timestamps"
4196                 ;;
4197         esac
4198 }
4199
4200 # Require the 'accton' userspace tool and CONFIG_BSD_PROCESS_ACCT=y.
4201 _require_bsd_process_accounting()
4202 {
4203         _require_command "$ACCTON_PROG" accton
4204         $ACCTON_PROG on &> $tmp.test_accton
4205         cat $tmp.test_accton >> $seqres.full
4206         if grep 'Function not implemented' $tmp.test_accton; then
4207                 _notrun "BSD process accounting support unavailable"
4208         fi
4209         $ACCTON_PROG off >> $seqres.full
4210 }
4211
4212 _require_sysctl_variable()
4213 {
4214         local name=$1
4215         sysctl $name &>/dev/null || _notrun "$name sysctl unavailable"
4216 }
4217
4218 init_rc
4219
4220 ################################################################################
4221 # make sure this script returns success
4222 /bin/true