6be40f6d547f35405ad08fcf2a602a919c86aa95
[xfstests-dev.git] / common.rc
1 ##/bin/sh
2 #-----------------------------------------------------------------------
3 #  Copyright (c) 2000-2006 Silicon Graphics, Inc.  All Rights Reserved.
4 #  This program is free software; you can redistribute it and/or modify
5 #  it under the terms of the GNU General Public License as published by
6 #  the Free Software Foundation; either version 2 of the License, or
7 #  (at your option) any later version.
8 #
9 #  This program is distributed in the hope that it will be useful,
10 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
11 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 #  GNU General Public License for more details.
13 #
14 #  You should have received a copy of the GNU General Public License
15 #  along with this program; if not, write to the Free Software
16 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307
17 #  USA
18 #
19 #  Contact information: Silicon Graphics, Inc., 1500 Crittenden Lane,
20 #  Mountain View, CA 94043, USA, or: http://www.sgi.com
21 #-----------------------------------------------------------------------
22
23 dd()
24 {
25    if [ "$HOSTOS" == "Linux" ]
26    then 
27         command dd --help | grep noxfer > /dev/null 2>&1
28         
29         if [ "$?" -eq 0 ]
30             then
31                 command dd status=noxfer $@
32             else
33                 command dd $@
34         fi
35    else
36         command dd $@
37    fi
38 }
39
40 _mount_opts()
41 {
42     case $FSTYP in
43     xfs)
44         export MOUNT_OPTIONS=$XFS_MOUNT_OPTIONS
45         ;;
46     udf)
47         export MOUNT_OPTIONS=$UDF_MOUNT_OPTIONS
48         ;;
49     nfs)
50         export MOUNT_OPTIONS=$NFS_MOUNT_OPTIONS
51         ;;
52     *)
53         ;;
54     esac
55 }
56
57 _mkfs_opts()
58 {
59     case $FSTYP in
60     xfs)
61         export MKFS_OPTIONS=$XFS_MKFS_OPTIONS
62         ;;
63     udf)
64         [ ! -z "$udf_fsize" ] && \
65             UDF_MKFS_OPTIONS="$UDF_MKFS_OPTIONS -s $udf_fsize"
66         export MKFS_OPTIONS=$UDF_MKFS_OPTIONS
67         ;;
68     nfs)
69         export MKFS_OPTIONS=$NFS_MKFS_OPTIONS
70         ;;
71     *)
72         ;;
73     esac
74 }
75
76 [ -z "$FSTYP" ] && FSTYP=xfs
77 [ -z "$MOUNT_OPTIONS" ] && _mount_opts
78 [ -z "$MKFS_OPTIONS" ] && _mkfs_opts
79
80
81 # we need common.config
82 if [ "$iam" != "check" ]
83 then
84     if ! . ./common.config
85         then
86         echo "$iam: failed to source common.config"
87         exit 1
88     fi
89 fi
90
91 # make sure we have a standard umask
92 umask 022
93
94 _mount()
95 {
96     $MOUNT_PROG $*
97 }
98
99 _scratch_options()
100 {
101     type=$1
102     SCRATCH_OPTIONS=""
103
104     if [ "$FSTYP" != "xfs" ]; then
105         return
106     fi
107
108     case $type in
109     mkfs)
110         [ "$HOSTOS" != "IRIX" ] && SCRATCH_OPTIONS="$SCRATCH_OPTIONS -f"
111         rt_opt="-r"
112         log_opt="-l"
113         ;;
114     mount)
115         rt_opt="-o"
116         log_opt="-o"
117         ;;
118     esac
119     [ "$USE_EXTERNAL" = yes -a ! -z "$SCRATCH_RTDEV" ] && \
120         SCRATCH_OPTIONS="$SCRATCH_OPTIONS ${rt_opt}rtdev=$SCRATCH_RTDEV"
121     [ "$USE_EXTERNAL" = yes -a ! -z "$SCRATCH_LOGDEV" ] && \
122         SCRATCH_OPTIONS="$SCRATCH_OPTIONS ${log_opt}logdev=$SCRATCH_LOGDEV"
123 }
124
125 _test_options()
126 {
127     type=$1
128     TEST_OPTIONS=""
129
130     if [ "$FSTYP" != "xfs" ]; then
131         return
132     fi
133
134     case $type in
135     mkfs)
136         rt_opt="-r"
137         log_opt="-l"
138         ;;
139     mount)
140         rt_opt="-o"
141         log_opt="-o"
142         ;;
143     esac
144     [ "$USE_EXTERNAL" = yes -a ! -z "$TEST_RTDEV" ] && \
145         TEST_OPTIONS="$TEST_OPTIONS ${rt_opt}rtdev=$TEST_RTDEV"
146     [ "$USE_EXTERNAL" = yes -a ! -z "$TEST_LOGDEV" ] && \
147         TEST_OPTIONS="$TEST_OPTIONS ${log_opt}logdev=$TEST_LOGDEV"
148 }
149
150 _scratch_mount_options()
151 {
152     _scratch_options mount
153     echo $SCRATCH_OPTIONS $MOUNT_OPTIONS $* $SCRATCH_DEV $SCRATCH_MNT
154 }
155
156 _scratch_mount()
157 {
158     _mount -t $FSTYP `_scratch_mount_options $*`
159 }
160
161 _test_mount()
162 {
163     _test_options mount
164     _mount -t $FSTYP $TEST_OPTIONS $MOUNT_OPTIONS $* $TEST_DEV $TEST_DIR
165 }
166
167 _scratch_mkfs_options()
168 {
169     _scratch_options mkfs
170     echo $SCRATCH_OPTIONS $MKFS_OPTIONS $* $SCRATCH_DEV
171 }
172
173 _scratch_mkfs_xfs()
174 {
175     _scratch_options mkfs
176
177     $MKFS_XFS_PROG $SCRATCH_OPTIONS $MKFS_OPTIONS $* $SCRATCH_DEV
178     mkfs_status=$?
179
180     if [ "$USE_BIG_LOOPFS" = yes ]; then
181         [ -z "$RETAIN_AG_BYTES" ] && RETAIN_AG_BYTES=0
182         ./tools/ag-wipe -q -r $RETAIN_AG_BYTES $SCRATCH_DEV
183     fi
184
185     return $mkfs_status
186 }
187
188 _scratch_mkfs()
189 {
190     case $FSTYP in
191     xfs)
192         _scratch_mkfs_xfs $*
193         ;;
194     nfs*)
195         # do nothing for nfs
196         ;;
197     udf)
198         $MKFS_UDF_PROG $MKFS_OPTIONS $* $SCRATCH_DEV > /dev/null
199         ;;
200     *)
201         /sbin/mkfs -t $FSTYP -- $MKFS_OPTIONS $* $SCRATCH_DEV > /dev/null
202         ;;
203     esac
204 }
205
206 _scratch_xfs_db_options()
207 {
208     SCRATCH_OPTIONS=""
209     [ "$USE_EXTERNAL" = yes -a ! -z "$SCRATCH_LOGDEV" ] && \
210         SCRATCH_OPTIONS="-l$SCRATCH_LOGDEV"
211     echo $SCRATCH_OPTIONS $* $SCRATCH_DEV
212 }
213
214 _scratch_xfs_logprint()
215 {
216     SCRATCH_OPTIONS=""
217     [ "$USE_EXTERNAL" = yes -a ! -z "$SCRATCH_LOGDEV" ] && \
218         SCRATCH_OPTIONS="-l$SCRATCH_LOGDEV"
219     $XFS_LOGPRINT_PROG $SCRATCH_OPTIONS $* $SCRATCH_DEV
220 }
221
222 _scratch_xfs_repair()
223 {
224     SCRATCH_OPTIONS=""
225     [ "$USE_EXTERNAL" = yes -a ! -z "$SCRATCH_LOGDEV" ] && \
226         SCRATCH_OPTIONS="-l$SCRATCH_LOGDEV"
227     [ "$USE_EXTERNAL" = yes -a ! -z "$SCRATCH_RTDEV" ] && \
228         SCRATCH_OPTIONS=$SCRATCH_OPTIONS" -r$SCRATCH_RTDEV"
229     [ "$USE_BIG_LOOPFS" = yes ] && SCRATCH_OPTIONS=$SCRATCH_OPTIONS" -t"
230     $XFS_REPAIR_PROG $SCRATCH_OPTIONS $* $SCRATCH_DEV
231 }
232
233 _get_pids_by_name()
234 {
235     if [ $# -ne 1 ]
236     then
237         echo "Usage: _get_pids_by_name process-name" 1>&2
238         exit 1
239     fi
240
241     # Algorithm ... all ps(1) variants have a time of the form MM:SS or
242     # HH:MM:SS before the psargs field, use this as the search anchor.
243     #
244     # Matches with $1 (process-name) occur if the first psarg is $1
245     # or ends in /$1 ... the matching uses sed's regular expressions,
246     # so passing a regex into $1 will work.
247
248     ps $PS_ALL_FLAGS \
249     | sed -n \
250         -e 's/$/ /' \
251         -e 's/[         ][      ]*/ /g' \
252         -e 's/^ //' \
253         -e 's/^[^ ]* //' \
254         -e "/[0-9]:[0-9][0-9]  *[^ ]*\/$1 /s/ .*//p" \
255         -e "/[0-9]:[0-9][0-9]  *$1 /s/ .*//p"
256 }
257
258 # fqdn for localhost
259 #
260 _get_fqdn()
261 {
262     host=`hostname`
263     $NSLOOKUP_PROG $host | $AWK_PROG '{ if ($1 == "Name:") print $2 }'
264 }
265
266 # fix malloc libs output
267 #
268 _fix_malloc()
269 {
270     # filter out the Electric Fence notice
271     $PERL_PROG -e '
272         while (<>) {
273             if (defined $o && /^\s+Electric Fence/) {
274                 chomp($o);
275                 print "$o";
276                 undef $o;
277                 next;
278             }
279             print $o if (defined $o);
280
281             $o=$_;
282         }
283         print $o if (defined $o);
284     '
285 }
286
287 # check if run as root
288 #
289 _need_to_be_root()
290 {
291     id=`id | $SED_PROG -e 's/(.*//' -e 's/.*=//'`
292     if [ "$id" -ne 0 ]
293     then
294         echo "Arrgh ... you need to be root (not uid=$id) to run this test"
295         exit 1
296     fi
297 }
298
299
300 #
301 # _df_device : get an IRIX style df line for a given device
302 #
303 #       - returns "" if not mounted
304 #       - returns fs type in field two (ala IRIX)
305 #       - joins line together if split by fancy df formatting
306 #       - strips header etc
307 #
308
309 _df_device()
310 {
311     if [ $# -ne 1 ]
312     then
313         echo "Usage: _df_device device" 1>&2
314         exit 1
315     fi
316
317     $DF_PROG 2>/dev/null | $AWK_PROG -v what=$1 '
318         match($1,what) && NF==1 {
319             v=$1
320             getline
321             print v, $0
322             exit
323         }
324         match($1,what) {
325             print
326             exit
327         }
328     '
329 }
330
331 #
332 # _df_dir : get an IRIX style df line for device where a directory resides
333 #
334 #       - returns fs type in field two (ala IRIX)
335 #       - joins line together if split by fancy df formatting
336 #       - strips header etc
337 #
338
339 _df_dir()
340 {
341     if [ $# -ne 1 ]
342     then
343         echo "Usage: _df_dir device" 1>&2
344         exit 1
345     fi
346
347     $DF_PROG $1 2>/dev/null | $AWK_PROG -v what=$1 '
348         NR == 2 && NF==1 {
349             v=$1
350             getline
351             print v, $0;
352             exit 0
353         }
354         NR == 2 {
355             print;
356             exit 0
357         }
358         {}
359     '
360     # otherwise, nada
361 }
362
363 # return percentage used disk space for mounted device
364
365 _used()
366 {
367     if [ $# -ne 1 ]
368     then
369         echo "Usage: _used device" 1>&2
370         exit 1
371     fi
372
373     _df_device $1 | $AWK_PROG '{ sub("%", "") ; print $6 }'
374 }
375
376 # return the FS type of a mounted device
377 #
378 _fs_type()
379 {
380     if [ $# -ne 1 ]
381     then
382         echo "Usage: _fs_type device" 1>&2
383         exit 1
384     fi
385
386     _df_device $1 | $AWK_PROG '{ print $2 }'
387 }
388
389 # return the FS mount options of a mounted device
390 #
391 # should write a version which just parses the output of mount for IRIX
392 # compatibility, but since this isn't used at all, at the moment I'll leave
393 # this for now
394 #
395 _fs_options()
396 {
397     if [ $# -ne 1 ]
398     then
399         echo "Usage: _fs_options device" 1>&2
400         exit 1
401     fi
402
403     $AWK_PROG -v dev=$1 '
404         match($1,dev) { print $4 }
405     ' </proc/mounts
406 }
407
408 # returns device number if a file is a block device
409 #
410 _is_block_dev()
411 {
412     if [ $# -ne 1 ]
413     then
414         echo "Usage: _is_block_dev dev" 1>&2
415         exit 1
416     fi
417
418     [ -b $1 ] && src/lstat64 $1 | $AWK_PROG '/Device type:/ { print $9 }'
419 }
420
421 # Do a command, log it to $seq.full, optionally test return status
422 # and die if command fails. If called with one argument _do executes the
423 # command, logs it, and returns its exit status. With two arguments _do
424 # first prints the message passed in the first argument, and then "done"
425 # or "fail" depending on the return status of the command passed in the
426 # second argument. If the command fails and the variable _do_die_on_error
427 # is set to "always" or the two argument form is used and _do_die_on_error
428 # is set to "message_only" _do will print an error message to
429 # $seq.out and exit.
430
431 _do()
432 {
433     if [ $# -eq 1 ]; then
434         _cmd=$1
435     elif [ $# -eq 2 ]; then
436         _note=$1
437         _cmd=$2
438         echo -n "$_note... "
439     else
440         echo "Usage: _do [note] cmd" 1>&2
441         status=1; exit
442     fi
443
444     (eval "echo '---' \"$_cmd\"") >>$here/$seq.full
445     (eval "$_cmd") >$tmp._out 2>&1; ret=$?
446     cat $tmp._out | _fix_malloc >>$here/$seq.full
447     if [ $# -eq 2 ]; then
448         if [ $ret -eq 0 ]; then
449             echo "done"
450         else
451             echo "fail"
452         fi
453     fi
454     if [ $ret -ne 0  ] \
455         && [ "$_do_die_on_error" = "always" \
456             -o \( $# -eq 2 -a "$_do_die_on_error" = "message_only" \) ]
457     then
458         [ $# -ne 2 ] && echo
459         eval "echo \"$_cmd\" failed \(returned $ret\): see $seq.full"
460         status=1; exit
461     fi
462
463     return $ret
464 }
465
466 # bail out, setting up .notrun file
467 #
468 _notrun()
469 {
470     echo "$*" >$seq.notrun
471     echo "$seq not run: $*"
472     status=0
473     exit
474 }
475
476 # just plain bail out
477 #
478 _fail()
479 {
480     echo "$*" | tee -a $here/$seq.full
481     echo "(see $seq.full for details)"
482     status=1
483     exit 1
484 }
485
486 # tests whether $FSTYP is one of the supported filesystems for a test
487 #
488 _supported_fs()
489 {
490     for f
491     do
492         if [ "$f" = "$FSTYP" ]
493         then
494             return
495         fi
496     done
497
498     _notrun "not suitable for this filesystem type: $FSTYP"
499 }
500
501 # tests whether $FSTYP is one of the supported OSes for a test
502 #
503 _supported_os()
504 {
505     for h
506     do
507         if [ "$h" = "$HOSTOS" ]
508         then
509             return
510         fi
511     done
512
513     _notrun "not suitable for this OS: $HOSTOS"
514 }
515
516 # this test needs a scratch partition - check we're ok & unmount it
517 #
518 _require_scratch()
519 {
520     case "$FSTYP" in
521         xfs|udf)
522                  if [ -z "$SCRATCH_DEV" -o "`_is_block_dev $SCRATCH_DEV`" = "" ]
523                  then
524                      _notrun "this test requires a valid \$SCRATCH_DEV"
525                  fi
526                  if [ "`_is_block_dev $SCRATCH_DEV`" = "`_is_block_dev $TEST_DEV`" ]
527                  then
528                      _notrun "this test requires a valid \$SCRATCH_DEV"
529                  fi
530                  ;;
531         nfs*|ext2|ext3|reiserfs)
532                  echo $SCRATCH_DEV | grep -q ":" > /dev/null 2>&1
533                  if [ ! -z "$SCRATCH_DEV" -a ! -b "$SCRATCH_DEV" -a "$?" != "0" ]
534                  then
535                      _notrun "this test requires a valid \$SCRATCH_DEV"
536                  fi
537                  ;;
538         *)
539                  _notrun "\$FSTYP ($FSTYP) unknown or not specified"
540                  ;;
541     esac
542
543     # mounted?
544     if _mount | grep -q $SCRATCH_DEV
545     then
546         # if it's mounted, make sure its on $SCRATCH_MNT
547         if ! _mount | grep $SCRATCH_DEV | grep -q $SCRATCH_MNT
548         then
549             echo "\$SCRATCH_DEV is mounted but not on \$SCRATCH_MNT - aborting"
550             exit 1
551         fi
552         # and then unmount it
553         if ! $UMOUNT_PROG $SCRATCH_DEV
554         then
555             echo "failed to unmount $SCRATCH_DEV"
556             exit 1
557         fi
558     fi
559 }
560
561 # this test needs a logdev
562 #
563 _require_logdev()
564 {
565     [ -z "$SCRATCH_LOGDEV" -o ! -b "$SCRATCH_LOGDEV" ] && \
566         _notrun "This test requires a valid \$SCRATCH_LOGDEV"
567     [ "$USE_EXTERNAL" != yes ] && \
568         _notrun "This test requires USE_EXTERNAL to be enabled"
569
570     # ensure its not mounted
571     $UMOUNT_PROG $SCRATCH_LOGDEV 2>/dev/null
572 }
573
574 # this test requires loopback device support
575 #
576 _require_loop()
577 {
578     if [ "$HOSTOS" != "Linux" ]
579     then
580         _notrun "This test requires linux for loopback device support"
581     fi
582
583     modprobe loop >/dev/null 2>&1
584     if grep loop /proc/devices >/dev/null 2>&1
585     then
586         :
587     else
588         _notrun "This test requires loopback device support"
589     fi
590 }
591
592 # this test requires that (large) loopback device files are not in use
593 #
594 _require_nobigloopfs()
595 {
596     [ "$USE_BIG_LOOPFS" = yes ] && \
597         _notrun "Large filesystem testing in progress, skipped this test"
598 }
599
600 # this test requires that a realtime subvolume is in use, and
601 # that the kernel supports realtime as well.
602 #
603 _require_realtime()
604 {
605     [ "$USE_EXTERNAL" = yes ] || \
606         _notrun "External volumes not in use, skipped this test"
607     [ "$SCRATCH_RTDEV" = "" ] && \
608         _notrun "Realtime device required, skipped this test"
609 }
610
611 # this test requires that a specified command (executable) exists
612 #
613 _require_command()
614 {
615     [ -x "$1" ] || _notrun "$1 utility required, skipped this test"
616 }
617
618 # this test requires that external log/realtime devices are not in use
619 #
620 _require_nonexternal()
621 {
622     [ "$USE_EXTERNAL" = yes ] && \
623         _notrun "External device testing in progress, skipped this test"
624 }
625
626 # check for the fsgqa user on the machine
627 #
628 _require_user()
629 {
630     qa_user=fsgqa
631     cat /etc/passwd | grep -q $qa_user
632     [ "$?" == "0" ] || _notrun "$qa_user user not defined."
633 }
634
635 # check that a FS is mounted as XFS. if so, return mount point
636 #
637 _xfs_mounted()
638 {
639     if [ $# -ne 1 ]
640     then
641         echo "Usage: _xfs_mounted device" 1>&2
642         exit 1
643     fi
644
645     device=$1
646
647     if _mount | grep "$device " | $AWK_PROG '
648         /type xfs/  { print $3 ; exit 0 }
649         END         { exit 1 }
650     '
651     then
652         echo "_xfs_mounted: $device is not a mounted XFS FS"
653         exit 1
654     fi
655 }
656
657
658 # remount a FS to a new mode (ro or rw)
659 #
660 _remount()
661 {
662     if [ $# -ne 2 ]
663     then
664         echo "Usage: _remount device ro/rw" 1>&2
665         exit 1
666     fi
667     device=$1
668     mode=$2
669
670     if ! mount -o remount,$mode $device
671     then
672         echo "_remount: failed to remount filesystem on $device as $mode"
673         exit 1
674     fi
675 }
676
677 # run xfs_check and friends on a FS.
678 #
679 # if the filesystem is mounted, it's either remounted ro before being
680 # checked or it's unmounted and then remounted
681 #
682
683 USE_REMOUNT=0
684
685 _check_xfs_filesystem()
686 {
687     if [ $# -ne 3 ]
688     then
689         echo "Usage: _check_xfs_filesystem device <logdev>|none <rtdev>|none" 1>&2
690         exit 1
691     fi
692
693     extra_mount_options=""
694     device=$1
695     if [ "$2" != "none" ]; then
696         extra_log_options="-l$2"
697         extra_mount_options="-ologdev=$2"
698     fi
699
700     if [ "$3" != "none" ]; then
701         extra_rt_options="-r$3"
702         extra_mount_options=$extra_mount_options" -ortdev=$3"
703     fi
704     extra_mount_options=$extra_mount_options" $MOUNT_OPTIONS"
705
706     [ "$FSTYP" != xfs ] && return 0
707     testoption=""
708     [ "$USE_BIG_LOOPFS" = yes ] && testoption=-t
709
710     type=`_fs_type $device`
711     ok=1
712
713     if [ "$type" = "xfs" ]
714     then
715         # mounted...
716
717         if [ $USE_REMOUNT -eq 0 ]
718         then
719             mountpoint=`_xfs_mounted $device`
720             $UMOUNT_PROG $device
721         else
722             _remount $device ro
723         fi
724     fi
725
726     $XFS_LOGPRINT_PROG -t $extra_log_options $device 2>&1 \
727                 | tee $tmp.logprint | grep -q "<CLEAN>"
728     if [ $? -ne 0 -a "$HOSTOS" = "Linux" ]
729     then
730         echo "_check_xfs_filesystem: filesystem on $device has dirty log (see $seq.full)"
731
732         echo "_check_xfs_filesystem: filesystem on $device has dirty log"   >>$here/$seq.full
733         echo "*** xfs_logprint -t output ***"                   >>$here/$seq.full
734         cat $tmp.logprint                                       >>$here/$seq.full
735         echo "*** end xfs_logprint output"                      >>$here/$seq.full
736
737         ok=0
738     fi
739
740     $XFS_CHECK_PROG $testoption $extra_log_options $device 2>&1 |\
741          _fix_malloc >$tmp.fs_check
742     if [ -s $tmp.fs_check ]
743     then
744         echo "_check_xfs_filesystem: filesystem on $device is inconsistent (c) (see $seq.full)"
745
746         echo "_check_xfs_filesystem: filesystem on $device is inconsistent" >>$here/$seq.full
747         echo "*** xfs_check output ***"                         >>$here/$seq.full
748         cat $tmp.fs_check                                       >>$here/$seq.full
749         echo "*** end xfs_check output"                         >>$here/$seq.full
750
751         ok=0
752     fi
753     # repair doesn't scale massively at this stage, optionally skip it for now
754     [ "$USE_BIG_LOOPFS" = yes ] || \
755     $XFS_REPAIR_PROG -n $extra_log_options $extra_rt_options $device >$tmp.repair 2>&1
756     if [ $? -ne 0 ]
757     then
758         echo "_check_xfs_filesystem: filesystem on $device is inconsistent (r) (see $seq.full)"
759
760         echo "_check_xfs_filesystem: filesystem on $device is inconsistent" >>$here/$seq.full
761         echo "*** xfs_repair -n output ***"                     >>$here/$seq.full
762         cat $tmp.repair | _fix_malloc                           >>$here/$seq.full
763         echo "*** end xfs_repair output"                        >>$here/$seq.full
764
765         ok=0
766     fi
767     rm -f $tmp.fs_check $tmp.logprint $tmp.repair
768
769     if [ $ok -eq 0 ]
770     then
771         echo "*** mount output ***"                             >>$here/$seq.full
772         _mount                                                  >>$here/$seq.full
773         echo "*** end mount output"                             >>$here/$seq.full
774     elif [ "$type" = "xfs" ]
775     then
776         # mounted...
777         if [ $USE_REMOUNT -eq 0 ]
778         then
779             if ! _mount -t xfs $extra_mount_options $device $mountpoint
780             then
781                 echo "!!! failed to remount $device on $mountpoint"
782                 ok=0
783             fi
784         else
785             _remount $device rw
786         fi
787     fi
788
789     [ $ok -eq 0 ] && exit 1
790     return 0
791 }
792
793 # Filter the knowen errors the UDF Verifier reports.
794 _udf_test_known_error_filter()
795 {
796         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."
797
798 }
799
800 _check_udf_filesystem()
801 {
802     [ "$DISABLE_UDF_TEST" == "1" ] && return
803
804     if [ $# -ne 1 -a $# -ne 2 ]
805     then
806         echo "Usage: _check_udf_filesystem device [last_block]" 1>&2
807         exit 1
808     fi
809
810     if [ ! -x $here/src/udf_test ]
811     then
812         echo "udf_test not installed, please download and build the Philips"
813         echo "UDF Verification Software from http://www.extra.research.philips.com/udf/."
814         echo "Then copy the udf_test binary to $here/src/."
815         echo "If you do not wish to run udf_test then set environment variable DISABLE_UDF_TEST"
816         echo "to 1."
817         return
818     fi
819
820     device=$1
821     if [ $# -eq 2 ];
822     then
823         LAST_BLOCK=`expr \( $2 - 1 \)`
824         OPT_ARG="-lastvalidblock $LAST_BLOCK"
825     fi
826
827     rm -f $seq.checkfs
828     sleep 1 # Due to a problem with time stamps in udf_test
829     $here/src/udf_test $OPT_ARG $device | tee $here/$seq.checkfs | egrep "Error|Warning" | \
830         _udf_test_known_error_filter | \
831         egrep -iv "Error count:.*[0-9]+.*total occurrences:.*[0-9]+|Warning count:.*[0-9]+.*total occurrences:.*[0-9]+" | \
832         sed "s/^.*$/Warning UDF Verifier reported errors see $seq.checkfs./g"
833
834 }
835
836 _check_test_fs()
837 {
838     if [ "$FSTYP" != "xfs" ]; then
839         return
840     fi
841
842     TEST_LOG="none"
843     TEST_RT="none"
844     [ "$USE_EXTERNAL" = yes -a ! -z "$TEST_LOGDEV" ] && \
845         TEST_LOG="$TEST_LOGDEV"
846
847     [ "$USE_EXTERNAL" = yes -a ! -z "$TEST_RTDEV" ] && \
848         TEST_RT="$TEST_RTDEV"
849
850     _check_xfs_filesystem $TEST_DEV $TEST_LOG $TEST_RT
851
852     # check for ipath consistency
853     if $XFS_GROWFS_PROG -n $TEST_DIR | grep -q 'inode-paths=1'; then
854         # errors go to stderr
855         xfs_check_ipaths $TEST_DIR >/dev/null
856         xfs_repair_ipaths -n $TEST_DIR >/dev/null
857     fi
858 }
859
860 _check_scratch_fs()
861 {
862     case $FSTYP in
863     xfs)
864         SCRATCH_LOG="none"
865         SCRATCH_RT="none"
866         [ "$USE_EXTERNAL" = yes -a ! -z "$SCRATCH_LOGDEV" ] && \
867             SCRATCH_LOG="$SCRATCH_LOGDEV"
868
869         [ "$USE_EXTERNAL" = yes -a ! -z "$SCRATCH_RTDEV" ] && \
870             SCRATCH_RT="$SCRATCH_RTDEV"
871
872         _check_xfs_filesystem $SCRATCH_DEV $SCRATCH_LOG $SCRATCH_RT
873         ;;
874     udf)
875         _check_udf_filesystem $SCRATCH_DEV $udf_fsize
876         ;;
877     nfs*)
878         # Don't know how to check an NFS filesystem, yet.
879         ;;
880     *)
881         ;;
882     esac
883 }
884
885 _full_fstyp_details()
886 {
887      [ -z "$FSTYP" ] && FSTYP=xfs
888      if [ $FSTYP = xfs ]; then
889         if [ -d /proc/fs/xfs ]; then
890             if grep -q 'debug 0' /proc/fs/xfs/stat; then
891                 FSTYP="$FSTYP (non-debug)"
892             elif grep -q 'debug 1' /proc/fs/xfs/stat; then
893                 FSTYP="$FSTYP (debug)"
894             fi
895         else
896             if uname -a | grep -qi 'debug'; then
897                 FSTYP="$FSTYP (debug)"
898             else
899                 FSTYP="$FSTYP (non-debug)"
900             fi
901         fi
902      fi
903      echo $FSTYP
904 }
905
906 _full_platform_details()
907 {
908      os=`uname -s`
909      host=`hostname -s`
910      kernel=`uname -r`
911      platform=`uname -m`
912      echo "$os/$platform $host $kernel"
913 }
914
915 _check_testdir()
916 {
917     case $FSTYP in
918     xfs)
919         _check_test_fs
920         ;;
921     udf)
922         _cleanup_testdir
923         _check_scratch_fs
924         _scratch_mount
925         ;;
926     nfs*)
927         # Don't know how to check an NFS filesystem, yet.
928         ;;
929     *)
930         ;;
931     esac
932 }
933
934
935 _setup_xfs_testdir()
936 {
937     [ "$FSTYP" != "xfs" ] \
938         && _fail "setup_xfs_testdir: \$FSTYP ($FSTYP) is not xfs"
939
940     testdir=$TEST_DIR
941 }
942
943 _setup_udf_scratchdir()
944 {
945     [ "$FSTYP" != "udf" ] \
946         && _fail "setup_udf_testdir: \$FSTYP is not udf"
947     [ -z "$SCRATCH_DEV" -o ! -b "$SCRATCH_DEV" ] \
948         && _notrun "this test requires a valid \$SCRATCH_DEV"
949     [ -z "$SCRATCH_MNT" ] \
950         && _notrun "this test requires a valid \$SCRATCH_MNT"
951
952     # mounted?
953     if _mount | grep -q $SCRATCH_DEV
954     then
955         # if it's mounted, make sure its on $TEST_RW_DIR
956         if ! _mount | grep $SCRATCH_DEV | grep -q $SCRATCH_MNT
957         then
958             _fail "\$SCRATCH_DEV is mounted but not on \$SCRATCH_MNT - aborting"
959         fi
960         $UMOUNT_PROG $SCRATCH_DEV
961     fi
962
963     _scratch_mkfs
964     _scratch_mount
965
966     testdir=$SCRATCH_MNT
967 }
968
969 _setup_nfs_scratchdir()
970 {
971     [ "$FSTYP" != "nfs" ] \
972         && _fail "setup_nfs_testdir: \$FSTYP is not nfs"
973     [ -z "$SCRATCH_DEV" ] \
974         && _notrun "this test requires a valid host fs for \$SCRATCH_DEV"
975     [ -z "$SCRATCH_MNT" ] \
976         && _notrun "this test requires a valid \$SCRATCH_MNT"
977
978     # mounted?
979     if _mount | grep -q $SCRATCH_DEV
980     then
981         # if it's mounted, make sure its on $SCRATCH_MNT
982         if ! _mount | grep $SCRATCH_DEV | grep -q $SCRATCH_MNT
983         then
984             _fail "\$SCRATCH_DEV is mounted but not on \$SCRATCH_MNT - aborting"
985         fi
986         $UMOUNT_PROG $SCRATCH_DEV
987     fi
988
989     _scratch_mkfs
990     _scratch_mount
991
992     testdir=$SCRATCH_MNT
993 }
994
995 #
996 # Warning for UDF and NFS this function calls _setup_udf_scratchdir and
997 # _setup_udf_scratchdir. This is done because testdir is a persistent
998 # XFS only partition.
999 #
1000 _setup_testdir()
1001 {
1002     case $FSTYP in
1003     xfs)
1004         _setup_xfs_testdir
1005         ;;
1006     udf)
1007         _setup_udf_scratchdir
1008         ;;
1009     nfs*)
1010         _setup_nfs_scratchdir
1011         ;;
1012     *)
1013         _fail "\$FSTYP is not xfs, udf or nfs"
1014         ;;
1015     esac
1016 }
1017
1018 _cleanup_testdir()
1019 {
1020     case $FSTYP in
1021     xfs)
1022         # do nothing, testdir is $TEST_DIR
1023         :
1024         ;;
1025     udf)
1026         # umount testdir as it is $SCRATCH_MNT which could be used by xfs next
1027         [ -n "$testdir" ] && $UMOUNT_PROG $testdir
1028         ;;
1029     nfs*)
1030         # umount testdir as it is $SCRATCH_MNT which could be used by xfs next
1031         [ -n "$testdir" ] && $UMOUNT_PROG $testdir
1032         ;;
1033     *)
1034         _fail "\$FSTYP is not xfs, udf or nfs"
1035         ;;
1036     esac
1037 }
1038
1039 _link_out_file()
1040 {
1041    if [ -z "$1" ]; then
1042       echo Error must pass \$seq.
1043       exit
1044    fi
1045    rm -f $1
1046    if [ "`uname`" == "IRIX64" ] || [ "`uname`" == "IRIX" ]; then
1047       ln -s $1.irix $1
1048    elif [ "`uname`" == "Linux" ]; then
1049       ln -s $1.linux $1
1050    else
1051       echo Error test $seq does not run on the operating system: `uname`
1052       exit
1053    fi
1054 }
1055
1056 _die()
1057 {
1058         echo $@
1059         exit 1
1060 }
1061
1062 _nfiles()
1063 {
1064         f=0
1065         while [ $f -lt $1 ]
1066         do
1067                 file=f$f
1068                 touch $file
1069                 if [ $size -gt 0 ]; then
1070                     dd if=/dev/zero of=$file bs=1024 count=$size
1071                 fi
1072                 f=`expr $f + 1`
1073         done
1074 }
1075
1076 # takes dirname, depth
1077 _descend()
1078 {
1079         dirname=$1; depth=$2
1080         mkdir $dirname  || die "mkdir $dirname failed"
1081         cd $dirname
1082
1083         _nfiles $files           # files for this dir
1084
1085         [ $depth -eq 0 ] && return
1086         deep=`expr $depth - 1`  # go 1 down
1087
1088         [ $verbose = true ] && echo "descending, depth from leaves = $deep"
1089
1090         d=0
1091         while [ $d -lt $dirs ]
1092         do
1093                 _descend d$d $deep &
1094                 d=`expr $d + 1`
1095                 wait
1096         done
1097 }
1098
1099 # Populate a filesystem with inodes for performance experiments
1100 #
1101 # usage: populate [-v] [-n ndirs] [-f nfiles] [-d depth] [-r root] [-s size]
1102 #
1103 _populate_fs()
1104 {
1105     here=`pwd`
1106     dirs=5          # ndirs in each subdir till leaves
1107     size=0          # sizeof files in K
1108     files=100       # num files in _each_ subdir
1109     depth=2         # depth of tree from root to leaves
1110     verbose=false
1111     root=root       # path of initial root of directory tree
1112
1113     while getopts "d:f:n:r:s:v" c
1114     do
1115         case $c in
1116         d)      depth=$OPTARG;;
1117         n)      dirs=$OPTARG;;
1118         f)      files=$OPTARG;;
1119         s)      size=$OPTARG;;
1120         v)      verbose=true;;
1121         r)      root=$OPTARG;;
1122         esac
1123     done
1124
1125     _descend $root $depth
1126     wait
1127
1128     cd $here
1129
1130     [ $verbose = true ] && echo done
1131 }
1132
1133 # query whether the given file has the given inode flag set
1134 #
1135 _test_inode_flag()
1136 {
1137     flag=$1
1138     file=$2
1139
1140     if which $XFS_IO_PROG >/dev/null; then
1141         if $XFS_IO_PROG -r -c 'lsattr -v' "$file" | grep -q "$flag" ; then
1142             return 0
1143         fi
1144     fi
1145     return 1
1146 }
1147
1148 # query the given files extsize allocator hint in bytes (if any)
1149 #
1150 _test_inode_extsz()
1151 {
1152     file=$1
1153     blocks=""
1154
1155     if which $XFS_IO_PROG >/dev/null; then
1156         blocks=`$XFS_IO_PROG -r -c 'stat' "$file" | \
1157                 awk '/^xattr.extsize =/ { print $3 }'`
1158     fi
1159     [ -z "$blocks" ] && blocks="0"
1160     echo $blocks
1161 }
1162
1163
1164 ################################################################################
1165
1166 if [ "$iam" != new -a "$iam" != bench ]
1167 then
1168     # make some further configuration checks here
1169
1170     if [ "$TEST_DEV" = ""  ]
1171     then
1172         echo "common.rc: Error: \$TEST_DEV is not set"
1173         exit 1
1174     fi
1175
1176     # if $TEST_DEV is not mounted, mount it now as XFS
1177     if [ -z "`_fs_type $TEST_DEV`" ]
1178     then
1179         # $TEST_DEV is not mounted
1180         if ! _test_mount
1181         then
1182             echo "common.rc: retrying test device mount with external set"
1183             [ "$USE_EXTERNAL" != "yes" ] && export USE_EXTERNAL=yes
1184             if ! _test_mount
1185             then
1186                 echo "common.rc: could not mount $TEST_DEV on $TEST_DIR"
1187                 exit 1
1188             fi
1189         fi
1190     fi
1191
1192     if [ "`_fs_type $TEST_DEV`" != "$FSTYP" ]
1193     then
1194         echo "common.rc: Error: \$TEST_DEV ($TEST_DEV) is not a MOUNTED $FSTYP filesystem"
1195         $DF_PROG $TEST_DEV
1196         exit 1
1197     fi
1198 fi
1199
1200 # make sure this script returns success
1201 /bin/true