Fix fdblocks accounting, need to consider cleared agfl blocks too; add shortcut ...
[xfstests-dev.git] / tools / auto-qa
1 #!/bin/sh
2 #
3 # Copyright (c) 2000-2002 Silicon Graphics, Inc.  All Rights Reserved.
4
5 # This program is free software; you can redistribute it and/or modify it
6 # under the terms of version 2 of the GNU General Public License as
7 # published by the Free Software Foundation.
8
9 # This program is distributed in the hope that it would be useful, but
10 # WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
12
13 # Further, this software is distributed without any warranty that it is
14 # free of the rightful claim of any third person regarding infringement
15 # or the like.  Any license provided herein, whether implied or
16 # otherwise, applies only to this software file.  Patent licenses, if
17 # any, provided herein do not apply to combinations of this program with
18 # other software, or any other product whatsoever.
19
20 # You should have received a copy of the GNU General Public License along
21 # with this program; if not, write the Free Software Foundation, Inc., 59
22 # Temple Place - Suite 330, Boston MA 02111-1307, USA.
23
24 # Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
25 # Mountain View, CA  94043, or:
26
27 # http://www.sgi.com 
28
29 # For further information regarding this notice, see: 
30
31 # http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/
32 #
33
34 # automatic qa system. 31/08/00 dxm@sgi.com
35
36 # configuration (you could tune this)
37
38 _log()
39 {
40     echo "$*" >&2
41     echo "$*" >> $LOG
42     sync
43 }
44
45 _fail()
46 {
47     if [ "$started" = "1" ] 
48     then
49         echo "auto-qa stopped" | wall
50         started=0
51     fi
52
53     _log "$*"
54     
55     # send special email if a cron'd qa run fails
56     case $state
57     in
58         cron*)
59             mail -s "XFS QA status report" $EMAIL \
60                 < $LOG 2>&1
61         ;;
62     esac
63
64     status=1
65     exit 1
66 }
67
68 _get_kernel_version()
69 {
70     [ -x "$WORKAREA" ] \
71         || _fail "can't access workarea $WORKAREA"
72     [ -r "$WORKAREA/linux/Makefile" ] \
73         || _fail "can't read makefile $WORKAREA/linux/Makefile"
74
75     eval `awk '
76         BEGIN { FS = "[ \t=]+" }
77         /^VERSION =/ { a=$2 }
78         /^PATCHLEVEL =/ { b=$2 }
79         /^SUBLEVEL =/ { c=$2 }
80         /^EXTRAVERSION =/ { d=$2 }
81         END { 
82             print "VERSION=" a "." b "." c d " ; SVERSION=" a "." b "." c
83         }
84    ' < $WORKAREA/linux/Makefile`
85 }
86
87 # this should be constant
88
89 ROOT="$HOME/qa"
90 HOST=`hostname -s`
91 if [ ! -z "$CVSROOT" ]; then
92     WORKAREA="$ROOT/linux-2.4-xfs"
93 else
94     [ -z "$WORKAREA" ] && WORKAREA="$ROOT/linux-xfs"
95 fi
96 export WORKAREA
97
98
99 export PATH="/bin:/usr/bin:/sbin:/usr/sbin:/usr/local/bin/ptools:/usr/local/bin"
100 STATE=$ROOT/qa.state
101 QADIR="$WORKAREA/cmd/xfstests"
102 SUDO="su -c"
103 CONFIG="$ROOT/$HOST.config"
104 COMMON_CONFIG="$WORKAREA/cmd/xfstests/common.config"
105 SH="/bin/sh"
106 LOG="$ROOT/qa.log"
107
108 # do some cleanup on exit
109
110 _cleanup()
111 {
112     umount $SCRATCH_DEV &> /dev/null
113     umount $TEST_DEV &> /dev/null
114     if [ "$started" = 1 ]
115     then
116         echo "auto-qa stopped" | wall
117         started=0
118     fi
119 }
120 status=1
121 trap "_cleanup; exit \$status" 0 1 2 3 15
122
123 # clean exit
124
125 _success()
126 {
127     status=0
128     exit 0
129 }
130
131 _get_state()
132 {
133     state=`cat $STATE`
134 }
135
136 _set_state()
137 {
138     echo $1 > $STATE
139     _get_state
140 }
141
142 _change_state()
143 {
144     new=$1
145     
146     case $state
147     in
148         *-*)
149             case $new
150             in
151                 *-*)
152                     _set_state $new
153                     ;;
154                 *)
155                     _set_state `echo $state | sed "s/-.*$/-$new/"`
156                     ;;
157             esac
158             ;;
159         *)
160             _set_state $new
161             ;;
162     esac
163 }
164
165 _sudo()
166 {
167     $ROOT/su -c "$*" < /dev/null ;# HACK - we need a hacked su at the mo
168 }
169
170 _restart()
171 {
172     exec $ROOT/su -c "(shutdown -r now \"auto-qa rebooting\" )&" < /dev/null
173 }
174
175 _update_autoqa_file()
176 {
177     SELF="$ROOT/auto-qa"
178     SELF_UPDATE="cmd/xfstests/tools/auto-qa"
179     if [ -z "$CVSROOT" ]; then
180             cmd="p_tupdate $SELF_UPDATE"
181     else
182             cmd="cvs -z3 update $SELF_UPDATE"
183     fi
184     exec $SH -c "cd $WORKAREA ; $cmd; chmod +x $SELF_UPDATE ; exec $SELF"
185 }
186
187 _update_workarea()
188 {
189     if [ -z "$CVSROOT" ]; then
190         _log "  *** p_tupdate"
191         cd $WORKAREA 
192         p_tupdate 2>&1 \
193                         || _fail "          !!! p_tupdate failed"
194
195         _log "  *** p_check/p_purge"
196         cd $WORKAREA 
197         p_check -s | p_purge -yiu 2>&1 \
198                         || _fail "          !!! p_check/p_purge failed"
199
200         _log "  *** non-trunk files"
201         cd $WORKAREA 
202         p_list -c 2>&1 \
203                         || _fail "          !!! p_list failed"
204     else
205         _log "  *** cvs update"
206         cd $WORKAREA
207         cvs -z3 update -d
208     fi
209 }
210
211 _test_mkfs_xfs()
212 {
213     TEST_OPTIONS=""
214     [ "$USE_EXTERNAL" = yes -a ! -z "$TEST_RTDEV" ] && \
215         TEST_OPTIONS="$TEST_OPTIONS -rrtdev=$TEST_RTDEV"
216     [ "$USE_EXTERNAL" = yes -a ! -z "$TEST_LOGDEV" ] && \
217         TEST_OPTIONS="$TEST_OPTIONS -llogdev=$TEST_LOGDEV"
218     _sudo /sbin/mkfs.xfs -f $TEST_OPTIONS $MKFS_OPTIONS $* $TEST_DEV
219 }
220
221 _test_mount()
222 {
223     TEST_OPTIONS=""
224     [ "$USE_EXTERNAL" = yes -a ! -z "$TEST_RTDEV" ] && \
225         TEST_OPTIONS="$TEST_OPTIONS -ortdev=$TEST_RTDEV"
226     [ "$USE_EXTERNAL" = yes -a ! -z "$TEST_LOGDEV" ] && \
227         TEST_OPTIONS="$TEST_OPTIONS -ologdev=$TEST_LOGDEV"
228     _sudo mount -t xfs $TEST_OPTIONS $* $TEST_DEV $TEST_DIR
229 }
230
231
232 _log "*** linux-xfs QA (`date`)"
233
234 _get_state
235
236 # check preconditions for starting state
237 case $1
238 in
239     cron-init)
240         case $state
241         in
242             *done)
243                 ;;
244             *)
245                 _fail "    !!! cron-init while not in \"*done\" state"
246                 ;;
247         esac
248         ;;
249     cron-restarted)
250         # we don't auto restart after reboot, but cron the restart
251         # to happen a bit later - it's much easier and safer that way
252         if [ "$state" != "cron-restarted" ]
253         then
254             _fail "    !!! cron-restarted while not in \"cron-restarted\" state"
255         fi
256         ;;
257 esac
258
259 if [ "$1" != "" ]
260 then
261     _set_state $1
262 fi
263
264 [ "$UID" -eq 0 ]        && _fail "    !!! QA most be run as a normal user"
265 [ -d "$ROOT" ]          || _fail "    !!! QA root \"$ROOT\" not found"
266 [ -d "$WORKAREA" ]      || _fail "    !!! QA workarea \"$WORKAREA\" not found"
267 [ -r "$CONFIG" ]        || _fail "    !!! Can't read config file $CONFIG"
268 . "$COMMON_CONFIG"      || _fail "    !!! Couldn't source $COMMON_CONFIG"
269
270 _get_kernel_version
271 IMAGE="$BOOT/vmlinuz$EXTRA"
272 SYSTEMMAP="$BOOT/System.map-$VERSION$EXTRA"
273 MODULES="/lib/modules/$SVERSION"
274
275 cd $ROOT
276
277 started=1
278 echo "auto-qa started" | wall
279
280 while true
281 do
282     _get_state
283
284     _log "    *** state $state start (`date`)"
285     _log "      (user=$USER, host=$HOST)"
286     new_state=""
287
288     case $state
289     in
290         *init)
291             echo "" > $ROOT/qa.log
292             echo "" > $ROOT/qa.full
293             _log "******************************************************"
294             _log "QA init $VERSION (`date`)"
295             _log "******************************************************"
296             _log "--- kernel ($IMAGE)"
297             _log "--- modules ($MODULES)"
298
299             _change_state "inited"
300             _update_autoqa_file
301             ;;
302             
303         *inited)
304             _log "      *** QA initialized"
305             new_state="update"
306             ;;
307         
308         *update)
309             _update_workarea
310             new_state="clean"
311             ;;
312
313         *clean)
314             # we need to configure or else we might fail to clean
315             for pkg in attr acl xfsprogs dmapi xfsdump xfstests
316             do
317                 cd $WORKAREA/cmd/$pkg
318                 _log "  *** clean $pkg tools"
319                 make realclean 2>&1 \
320                         || _fail "          !!! clean $pkg failed"
321             done
322
323             _log "      *** clean linux"
324             cd $WORKAREA/linux
325             make mrproper 2>&1 \
326                         || _fail "          !!! clean linux failed"
327
328             _log "      *** install configuration file"
329             cp -f $CONFIG $WORKAREA/linux/.config 2>&1 \
330                         || _fail "          !!! failed to install config"
331             
332             _log "      *** remove version file"
333             rm -f include/linux/version.h 2>&1 \
334                         || _fail "          !!! failed to clean version"
335
336             new_state="reconfig"
337             ;;
338             
339         *reconfig)
340         
341             _log "      *** reconfig kernel"
342             
343             _change_state "clean" ; # we better start from scratch if this fails
344             
345             cd $WORKAREA/linux
346             # we want to use default options for any new config options.
347             echo -e "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n" | \
348                 make EXTRAVERSION=$EXTRA oldconfig 2>&1 \
349                         || _fail "          !!! reconfig oldconfig failed"
350             make EXTRAVERSION=$EXTRA dep 2>&1 \
351                         || _fail "          !!! reconfig dep failed"
352
353             new_state="buildtools"
354             ;;
355             
356         *buildtools)
357             _log "      *** build and install tools"
358             for pkg in attr acl xfsprogs dmapi xfsdump xfstests 
359             do
360                 cd $WORKAREA/cmd/$pkg
361
362                 # use e-fence - but this will only take effect on configure
363                 make configure 2>&1 \
364                         || _fail "          !!! configure $pkg failed"
365                 make default 2>&1 \
366                         || _fail "          !!! build $pkg failed"
367
368                 _sudo make install install-dev 2>&1 \
369                         || _fail "          !!! install $pkg failed"
370
371                 # attr and acl now have install-lib targets as well
372                 [ "$pkg" = "attr" -o "$pkg" = "acl" ] || continue
373                 _sudo make install-lib 2>&1 \
374                         || _fail "          !!! install $pkg failed"
375             done
376
377             new_state="buildkernel"
378             ;;
379
380         *buildkernel)
381             _log "      *** build kernel"
382             
383             _change_state "clean" ; # we better start from scratch if this fails
384             
385             cd $WORKAREA/linux
386             make -j4 EXTRAVERSION=$EXTRA bzImage modules 2>&1 \
387                         || _fail "          !!! build bzImage/modules failed"
388             new_state="install"
389             ;;
390
391         *install)
392             _log "      *** blat old modules"
393             
394             _sudo rm -rf $MODULES
395             
396             _log "      *** install kernel"
397             cd $WORKAREA/linux
398             _sudo cp -f $WORKAREA/linux/arch/i386/boot/bzImage $IMAGE 2>&1 \
399                         || _fail "          !!! install kernel failed"
400             _sudo cp -f $WORKAREA/linux/System.map $SYSTEMMAP 2>&1 \
401                         || _fail "          !!! install kernel failed"
402             _sudo make EXTRAVERSION=$EXTRA modules_install 2>&1 \
403                         || _fail "          !!! install modules failed"
404
405             _log "      *** reinit lilo"
406             _sudo /sbin/lilo 2>&1 \
407                         || _fail "          !!! reinit lilo failed"
408             new_state="restart"
409             ;;
410             
411         *restart)
412             _log "          *** select qa kernel"
413             _sudo /sbin/lilo -R linux-xfs-qa $KERNEL_OPTIONS 2>&1 \
414                         || _fail "          !!! lilo failed"
415             
416             _log "          *** prepare to restart"
417             _change_state "restarted"
418             
419             _log "          *** restarting"
420
421             _restart # doesn't return
422             ;;
423             
424         *restarted)
425             _log "          *** QA reentered after restart"
426             
427             new_state="check"
428             ;;
429           
430         *check)
431             uname=`uname -ar`
432             _log "          *** uname $uname"
433             _log "          *** kernel"
434             ls -l /boot/*$EXTRA*  2>&1
435             _log "          *** kernel modules"
436             [ -d /lib/modules/$SVERSION$EXTRA/kernel/fs/xfs ] && \
437                 ls -l /lib/modules/$SVERSION$EXTRA/kernel/fs/xfs/*
438
439             if [ "$MODULAR" -eq 0 ]
440             then
441                 new_state="reset"
442             else
443                 new_state="probe"
444             fi
445             ;;
446             
447         *probe)
448             _log "          *** modules dependencies"
449             
450             _sudo depmod -a  2>&1 \
451                         || _fail "          !!! failed to depmod -a" 
452             
453             _log "          *** unmounting XFS mounts"
454             
455             _sudo umount -a -t xfs 2>&1
456             
457             _log "          *** removing modules"
458             
459             for m in xfsidbg xfs kdbm_pg kdbm_vm
460             do
461                 _sudo rmmod $m 2> /dev/null
462             done
463             
464             _log "          *** installing modules"
465
466             _sudo modprobe xfs 2>&1 \
467                         || _fail "          !!! failed to modprobe xfs"
468
469             new_state="reset"
470             ;;
471             
472         *reset)
473             
474             _log "          *** unmounting TEST_DEV"
475             
476             _sudo umount $TEST_DEV 2>&1
477             
478             _log "          *** unmounting SCRATCH_DEV"
479             
480             _sudo umount $SCRATCH_DEV 2>&1
481             
482             _log "          *** clean TEST_DEV"
483             
484             _test_mkfs_xfs 2>&1 \
485                         || _fail "          !!! failed to mkfs TEST_DEV"
486             
487             _log "          *** mounting TEST_DEV"
488             
489             _test_mount 2>&1 \
490                         || _fail "          !!! failed to mount"
491                                     
492             new_state="run"
493             ;;
494             
495         soak-run)
496             cd $QADIR
497             
498             _log "          *** run soak test"
499             _sudo ./soak $SOAK_PASSES $SOAK_STRESS $SOAK_PROC \
500                         || _fail "          !!! failed to run soak test"
501
502             new_state="done"
503             ;;
504             
505         bench-run)
506             cd $QADIR
507             
508             # $BENCHMARK is typically unset, which equates to "all"
509             #
510             _log "          *** run benchmarks"
511             _sudo ./bench $BENCH_PASSES `id -nu && id -ng` $BENCHMARK \
512                         || _fail "          !!! failed to run benchmarks"
513
514             _log ""
515             _log "          *** send results mail"
516             mail -s "XFS QA benchmark results" $EMAIL < $QADIR/bench.out 2>&1
517         
518             new_state="done"
519             ;;
520             
521         *run)
522             cd $QADIR
523             
524             _log "          *** run tests ($CHECK_OPTIONS)"
525             _sudo ./check -l $CHECK_OPTIONS 2>&1 | tee $ROOT/qa.out
526             
527             _log ""
528             _log "          *** send status mail"
529             mail -s "XFS QA status report" $EMAIL < $ROOT/qa.out 2>&1
530         
531             new_state="done"
532             ;;
533             
534         *done)
535             _log "*** QA run complete"
536
537             _success
538             ;;
539             
540         *nothing)
541             new_state="done"
542             _log "    *** do nothing"
543             ;;
544             
545         *)
546             _fail "        !!! unknown state $state"
547             ;;
548     esac
549
550     _log "    *** state $state done (`date`)"
551     [ "$new_state" = "" ] && _fail "    !!! no new state set"
552     _change_state $new_state
553     
554 done