roll to version 2.4.2
[xfstests-dev.git] / common.rc
1 ##/bin/sh
2
3 #
4 # Copyright (c) 2000 Silicon Graphics, Inc.  All Rights Reserved.
5
6 # This program is free software; you can redistribute it and/or modify it
7 # under the terms of version 2 of the GNU General Public License as
8 # published by the Free Software Foundation.
9
10 # This program is distributed in the hope that it would be useful, but
11 # WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13
14 # Further, this software is distributed without any warranty that it is
15 # free of the rightful claim of any third person regarding infringement
16 # or the like.  Any license provided herein, whether implied or
17 # otherwise, applies only to this software file.  Patent licenses, if
18 # any, provided herein do not apply to combinations of this program with
19 # other software, or any other product whatsoever.
20
21 # You should have received a copy of the GNU General Public License along
22 # with this program; if not, write the Free Software Foundation, Inc., 59
23 # Temple Place - Suite 330, Boston MA 02111-1307, USA.
24
25 # Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
26 # Mountain View, CA  94043, or:
27
28 # http://www.sgi.com 
29
30 # For further information regarding this notice, see: 
31
32 # http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/
33 #
34
35 # we need common.config
36 if ! . ./common.config
37 then
38     echo "$iam: failed to source common.config"
39     exit 1
40 fi
41
42 # awk
43 AWK_PROG=awk
44
45 # ps
46 PS_HAVE_BSD=false
47 PS_ALL_FLAGS=-efw
48
49 # host os
50 PLATFORM=linux
51
52 # extra parameters for fsstress
53 FSSTRESS_AVOID="-f resvsp=0 -f unresvsp=0"
54
55 export AWK_PROG PS_HAVE_BSD PS_ALL_FLAGS PLATFORM
56
57 # we override mount so we can specify mount options
58
59 mount()
60 {
61     case "$*"
62     in
63         *remount*)
64             /bin/mount $*
65             ;;
66         *ext2*)
67             /bin/mount $*
68             ;;
69         *xfs*)
70             /bin/mount $* $MOUNT_OPTIONS
71             ;;
72         *)
73             /bin/mount $*
74             ;;
75     esac
76 }
77
78 #
79
80 _get_pids_by_name()
81 {
82     if [ $# -ne 1 ]
83     then
84         echo "Usage: _get_pids_by_name process-name" 1>&2
85         exit 1
86     fi
87
88     # Algorithm ... all ps(1) variants have a time of the form MM:SS or
89     # HH:MM:SS before the psargs field, use this as the search anchor.
90     #
91     # Matches with $1 (process-name) occur if the first psarg is $1
92     # or ends in /$1 ... the matching uses sed's regular expressions,
93     # so passing a regex into $1 will work.
94
95     ps $PS_ALL_FLAGS \
96     | sed -n \
97         -e 's/$/ /' \
98         -e 's/[         ][      ]*/ /g' \
99         -e 's/^ //' \
100         -e 's/^[^ ]* //' \
101         -e "/[0-9]:[0-9][0-9]  *[^ ]*\/$1 /s/ .*//p" \
102         -e "/[0-9]:[0-9][0-9]  *$1 /s/ .*//p"
103 }
104
105 # fqdn for localhost
106 #
107 _get_fqdn()
108 {
109     host=`hostname`
110     nslookup $host | $AWK_PROG '{ if ($1 == "Name:") print $2 }'
111 }
112
113 # fix malloc libs output
114 #
115 _fix_malloc()
116 {
117     # filter out the Electric Fence notice
118     perl -e '
119         while (<>) {
120             if (defined $o && /^\s+Electric Fence/) {
121                 chomp($o);
122                 print "$o";
123                 undef $o;
124                 next;
125             }
126             print $o if (defined $o);
127
128             $o=$_;
129         }
130         print $o if (defined $o);
131     '
132 }
133
134 # check if run as root
135 #
136 _need_to_be_root()
137 {
138     id=`id | sed -e 's/(.*//' -e 's/.*=//'`
139     if [ "$id" -ne 0 ]
140     then
141         echo "Arrgh ... you need to be root (not uid=$id) to run this test"
142         exit 1
143     fi
144 }
145
146
147 #
148 # _df_device : get an IRIX style df line for a given device 
149 #
150 #       - returns "" if not mounted
151 #       - returns fs type in field two (ala IRIX)
152 #       - joins line together if split by fancy df formatting
153 #       - strips header etc
154 #
155
156 _df_device()
157 {
158     if [ $# -ne 1 ]
159     then
160         echo "Usage: _df_device device" 1>&2
161         exit 1
162     fi
163     
164     df -T 2>/dev/null | $AWK_PROG -v what=$1 '
165         match($1,what) && NF==1 { 
166             v=$1
167             getline
168             print v, $0
169             exit
170         }
171         match($1,what) {
172             print
173             exit
174         }
175     '
176 }
177
178 #
179 # _df_dir : get an IRIX style df line for device where a directory resides
180 #
181 #       - returns fs type in field two (ala IRIX)
182 #       - joins line together if split by fancy df formatting
183 #       - strips header etc
184 #
185
186 _df_dir()
187 {
188     if [ $# -ne 1 ]
189     then
190         echo "Usage: _df_dir device" 1>&2
191         exit 1
192     fi
193     
194     df -T $1 2>/dev/null | $AWK_PROG -v what=$1 '
195         NR == 2 && NF==1 { 
196             v=$1
197             getline 
198             print v, $0;
199             exit 0
200         }
201         NR == 2 {
202             print;
203             exit 0
204         }
205         {}
206     '
207     # otherwise, nada
208 }
209
210 # return percentage used disk space for mounted device
211
212 _used()
213 {
214     if [ $# -ne 1 ]
215     then
216         echo "Usage: _used device" 1>&2
217         exit 1
218     fi
219     
220     _df_device $1 | $AWK_PROG '{ sub("%", "") ; print $6 }'
221 }
222
223 # return the FS type of a mounted device
224 #
225 _fs_type()
226 {
227     if [ $# -ne 1 ]
228     then
229         echo "Usage: _fs_type device" 1>&2
230         exit 1
231     fi
232     
233     _df_device $1 | $AWK_PROG '{ print $2 }'
234 }
235
236 # return the FS mount options of a mounted device
237 #
238 _fs_options()
239 {
240     if [ $# -ne 1 ]
241     then
242         echo "Usage: _fs_options device" 1>&2
243         exit 1
244     fi
245     
246     $AWK_PROG -v dev=$1 '
247         match($1,dev) { print $4 }
248     ' </proc/mounts
249     
250 }
251
252 # returns device number if a file is a block device
253 #
254 _is_block_dev()
255 {
256     if [ $# -ne 1 ]
257     then
258         echo "Usage: _is_block_dev dev" 1>&2
259         exit 1
260     fi
261     
262     [ -b $1 ] && src/lstat64 $1 | $AWK_PROG '/Device type:/ { print $9 }'
263 }
264
265 # bail out, setting up .notrun file
266
267 _notrun()
268 {
269     echo "$*" >$seq.notrun
270     echo "$seq not run: $*"
271     status=0
272     exit
273 }
274
275 # just plain bail out
276
277 _fail()
278 {
279     echo "$*" | tee -a $seq.full
280     echo "(see $seq.full for details)"
281     status=1
282     exit 1
283 }
284
285 # this test needs a scratch partition - check we're ok & unmount it
286
287 _require_scratch()
288 {
289
290     if [ -z "$SCRATCH_DEV" -o "`_is_block_dev $SCRATCH_DEV`" = "" ]
291     then
292         _notrun "this test requires a valid \$SCRATCH_DEV"
293     fi
294     
295     if [ "`_is_block_dev $SCRATCH_DEV`" = "`_is_block_dev $TEST_DEV`" ]
296     then
297         _notrun "this test requires a valid \$SCRATCH_DEV"
298     fi
299     
300     # mounted?
301     if mount | grep -q $SCRATCH_DEV
302     then 
303         # if it's mounted, make sure its on $SCRATCH_MNT
304         if ! mount | grep $SCRATCH_DEV | grep -q $SCRATCH_MNT
305         then 
306             echo "\$SCRATCH_DEV is mounted but not on \$SCRATCH_MNT - aborting"
307             exit 1
308         fi
309         
310         # and then unmount it
311     
312         if ! umount $SCRATCH_DEV
313         then
314             echo "failed to unmount $SCRATCH_DEV"
315             exit 1
316         fi
317     fi
318     
319     # should be ok now
320
321 }
322
323 # this test needs a logdev 
324
325 _require_logdev()
326 {
327     if [ -z "$SCRATCH_LOGDEV" -o ! -b "$SCRATCH_LOGDEV" ]
328     then
329         _notrun "This test requires a valid \$SCRATCH_LOGDEV" 
330     fi
331 }
332
333 # this test requires loopback device support
334
335 _require_loop()
336 {
337     if grep loop /proc/devices >/dev/null 2>&1
338     then
339         :
340     else
341         _notrun "This test requires loopback device support"
342     fi
343 }
344
345
346 # check that a FS is mounted as XFS. if so, return mount point
347 #
348 _xfs_mounted()
349 {
350     if [ $# -ne 1 ]
351     then
352         echo "Usage: _xfs_mounted device" 1>&2
353         exit 1
354     fi
355     
356     device=$1
357     
358     if mount | grep $device | $AWK_PROG '
359         /type xfs/  { print $3 ; exit 0 }
360         END         { exit 1 }
361     '
362     then
363         echo "_xfs_mounted: $device is not a mounted XFS FS"
364         exit 1
365     fi
366 }
367
368 # remount a FS to a new mode (ro or rw)
369 #
370
371 _remount()
372 {
373     if [ $# -ne 2 ]
374     then
375         echo "Usage: _remount device ro/rw" 1>&2
376         exit 1
377     fi
378     device=$1
379     mode=$2
380     
381     if ! mount -o remount,$mode $device
382     then
383         echo "_remount: failed to remount filesystem on $device as $mode"
384         exit 1
385     fi
386     
387     # we might like to check here later
388     #options=`_fs_options $device`
389
390 }
391
392 # run xfs_check on a FS. 
393 #
394 # if the filesystem is mounted, it's either remounted ro before being
395 # checked or it's unmounted and then remounted
396 #
397
398 USE_REMOUNT=0
399
400 _check_fs()
401 {
402     if [ $# -ne 1 ]
403     then
404         echo "Usage: _check_fs device" 1>&2
405         exit 1
406     fi
407     
408     device=$1
409     type=`_fs_type $device`
410     ok=1
411     
412     if [ "$type" = "xfs" ]
413     then
414         # mounted... 
415         
416         if [ $USE_REMOUNT -eq 0 ]
417         then
418             mountpoint=`_xfs_mounted $device`
419             umount $device
420         else
421             _remount $device ro
422         fi
423     fi
424
425     xfs_logprint -t $device 2>&1 | tee $tmp.fs_check | grep -q "<CLEAN>"
426     if [ $? -ne 0 ]
427     then
428         echo "_check_fs: filesystem on $device has dirty log (see $seq.full)"
429         
430         echo "_check_fs: filesystem on $device has dirty log"   >>$seq.full
431         echo "*** xfs_logprint -t output ***"                   >>$seq.full
432         cat $tmp.fs_check                                       >>$seq.full
433         echo "*** end xfs_logprint output"                      >>$seq.full
434         
435         ok=0
436     fi
437         
438     
439     xfs_check $device 2>&1 | _fix_malloc >$tmp.fs_check 
440     if [ -s $tmp.fs_check ]
441     then
442         echo "_check_fs: filesystem on $device is inconsistent (c) (see $seq.full)"
443         
444         echo "_check_fs: filesystem on $device is inconsistent" >>$seq.full
445         echo "*** xfs_check output ***"                         >>$seq.full
446         cat $tmp.fs_check                                       >>$seq.full
447         echo "*** end xfs_check output"                         >>$seq.full
448         
449         ok=0
450     fi
451     
452     if ! xfs_repair -n $device >$tmp.fs_check 2>&1
453     then
454         echo "_check_fs: filesystem on $device is inconsistent (r) (see $seq.full)"
455         
456         echo "_check_fs: filesystem on $device is inconsistent" >>$seq.full
457         echo "*** xfs_repair -n output ***"                     >>$seq.full
458         cat $tmp.fs_check | _fix_malloc                         >>$seq.full
459         echo "*** end xfs_repair output"                        >>$seq.full
460         
461         ok=0
462     fi
463     rm -f $tmp.fs_check
464     
465     if [ $ok -eq 0 ]
466     then
467         echo "*** mount output ***"                             >>$seq.full
468         mount                                                   >>$seq.full
469         echo "*** end mount output"                             >>$seq.full
470     fi
471     
472     if [ "$type" = "xfs" ]
473     then
474         # mounted... 
475         if [ $USE_REMOUNT -eq 0 ]
476         then
477             if ! mount -t xfs $device $mountpoint
478             then
479                 echo "!!! failed to remount $device on $mountpoint"
480                 ok=0
481             fi
482         else
483             _remount $device rw
484         fi
485     fi
486     
487     [ $ok -eq 0 ] && exit 1
488     
489 }
490
491 ################################################################################
492
493 [ -d /usr/bsd ] && PATH=$PATH:/usr/bsd
494 [ -d /usr/freeware/bin ] && PATH=$PATH:/usr/freeware/bin
495
496 if [ "$iam" != new ]
497 then
498
499     # make some further configuration checks here
500     
501     if [ "$TEST_DEV" = ""  ]
502     then
503         echo "common.rc: Error: \$TEST_DEV is not set"
504         exit 1
505     fi
506     
507     if [ "`_fs_type $TEST_DEV`" != "xfs" ]
508     then
509         echo "common.rc: Error: \$TEST_DEV ($TEST_DEV) is not a MOUNTED XFS filesystem"
510         df -T $TEST_DEV
511         exit 1
512     fi
513
514 fi
515
516 # check for some required biunaries on our $PATH
517 #
518 for exec in mkfs.xfs xfs_logprint xfs_check xfs_repair xfs_db
519 do
520     if which $exec >/dev/null 2>&1 
521     then
522         :
523     else
524         echo "common.rc: cannot find $exec on \$PATH=$PATH"
525         exit 1
526     fi
527 done
528
529 # make sure this script returns success
530 /bin/true