Whamcloud - gitweb
not send LOV EA under replay, we can't know about they size at this
[fs/lustre-release.git] / lustre / tests / conf-sanity.sh
1 #!/bin/bash
2 # requirement:
3 #       add uml1 uml2 uml3 in your /etc/hosts
4
5 # FIXME - there is no reason to use all of these different
6 #   return codes, espcially when most of them are mapped to something
7 #   else anyway.  The combination of test number and return code
8 #   figure out what failed.
9
10 set -e
11
12 ONLY=${ONLY:-"$*"}
13
14 # bug number for skipped test: 13739
15 HEAD_EXCEPT="                  32a 32b"
16
17 # bug number for skipped test:                                 
18 ALWAYS_EXCEPT=" $CONF_SANITY_EXCEPT $HEAD_EXCEPT"
19 # UPDATE THE COMMENT ABOVE WITH BUG NUMBERS WHEN CHANGING ALWAYS_EXCEPT!
20
21 SRCDIR=`dirname $0`
22 PATH=$PWD/$SRCDIR:$SRCDIR:$SRCDIR/../utils:$PATH
23
24 PTLDEBUG=${PTLDEBUG:--1}
25 SAVE_PWD=$PWD
26 LUSTRE=${LUSTRE:-`dirname $0`/..}
27 RLUSTRE=${RLUSTRE:-$LUSTRE}
28
29 . $LUSTRE/tests/test-framework.sh
30 init_test_env $@
31 # STORED_MDSSIZE is used in test_18
32 if [ -n "$MDSSIZE" ]; then
33     STORED_MDSSIZE=$MDSSIZE
34 fi
35 # use small MDS + OST size to speed formatting time
36 MDSSIZE=40000
37 OSTSIZE=40000
38 . ${CONFIG:=$LUSTRE/tests/cfg/$NAME.sh}
39
40 remote_mds_nodsh && skip "remote MDS with nodsh" && exit 0
41 remote_ost_nodsh && skip "remote OST with nodsh" && exit 0
42
43 #
44 [ "$SLOW" = "no" ] && EXCEPT_SLOW="0 1 2 3 6 7 15 18 24b 25 30 31 32 33 34a 45"
45
46 assert_DIR
47
48 reformat() {
49         formatall
50 }
51
52 writeconf() {
53     local facet=$SINGLEMDS
54     local dev=${facet}_dev
55     shift
56     stop ${facet} -f
57     rm -f ${facet}active
58     # who knows if/where $TUNEFS is installed?  Better reformat if it fails...
59     do_facet ${facet} "$TUNEFS --writeconf ${!dev}" || echo "tunefs failed, reformatting instead" && reformat
60 }
61
62 gen_config() {
63         reformat
64         # The MGS must be started before the OSTs for a new fs, so start
65         # and stop to generate the startup logs. 
66         start_mds
67         start_ost
68         sleep 5
69         stop_ost
70         stop_mds
71 }
72
73 start_mds() {
74         local facet=$SINGLEMDS
75         # we can not use MDSDEV1 here because SINGLEMDS could be set not to mds1 only
76         local num=$(echo $facet | tr -d "mds")
77         local dev=$(mdsdevname $num)
78         echo "start mds service on `facet_active_host $facet`"
79         start $facet ${dev} $MDS_MOUNT_OPTS || return 94
80 }
81
82 stop_mds() {
83         echo "stop mds service on `facet_active_host $SINGLEMDS`"
84         # These tests all use non-failover stop
85         stop $SINGLEMDS -f  || return 97
86 }
87
88 start_ost() {
89         echo "start ost1 service on `facet_active_host ost1`"
90         start ost1 `ostdevname 1` $OST_MOUNT_OPTS || return 95
91 }
92
93 stop_ost() {
94         echo "stop ost1 service on `facet_active_host ost1`"
95         # These tests all use non-failover stop
96         stop ost1 -f  || return 98
97 }
98
99 start_ost2() {
100         echo "start ost2 service on `facet_active_host ost2`"
101         start ost2 `ostdevname 2` $OST_MOUNT_OPTS || return 92
102 }
103
104 stop_ost2() {
105         echo "stop ost2 service on `facet_active_host ost2`"
106         # These tests all use non-failover stop
107         stop ost2 -f  || return 93
108 }
109
110 mount_client() {
111         local MOUNTPATH=$1
112         echo "mount $FSNAME on ${MOUNTPATH}....."
113         zconf_mount `hostname` $MOUNTPATH  || return 96
114 }
115
116 remount_client() {
117         local SAVEMOUNTOPT=$MOUNTOPT
118         MOUNTOPT="remount,$1"
119         local MOUNTPATH=$2
120         echo "remount '$1' lustre on ${MOUNTPATH}....."
121         zconf_mount `hostname`  $MOUNTPATH  || return 96
122         MOUNTOPT=$SAVEMOUNTOPT
123 }
124
125 umount_client() {
126         local MOUNTPATH=$1
127         echo "umount lustre on ${MOUNTPATH}....."
128         zconf_umount `hostname` $MOUNTPATH || return 97
129 }
130
131 manual_umount_client(){
132         local rc
133         local FORCE=$1
134         echo "manual umount lustre on ${MOUNT}...."
135         do_facet client "umount -d ${FORCE} $MOUNT"
136         rc=$?
137         return $rc
138 }
139
140 setup() {
141         start_ost
142         start_mds
143         mount_client $MOUNT
144 }
145
146 cleanup_nocli() {
147         stop_mds || return 201
148         stop_ost || return 202
149         unload_modules || return 203
150 }
151
152 cleanup() {
153         umount_client $MOUNT || return 200
154         cleanup_nocli || return $?
155 }
156
157 check_mount() {
158         do_facet client "cp /etc/passwd $DIR/a" || return 71
159         do_facet client "rm $DIR/a" || return 72
160         # make sure lustre is actually mounted (touch will block, 
161         # but grep won't, so do it after) 
162         do_facet client "grep $MOUNT' ' /proc/mounts > /dev/null" || return 73
163         echo "setup single mount lustre success"
164 }
165
166 check_mount2() {
167         do_facet client "touch $DIR/a" || return 71     
168         do_facet client "rm $DIR/a" || return 72        
169         do_facet client "touch $DIR2/a" || return 73    
170         do_facet client "rm $DIR2/a" || return 74       
171         echo "setup double mount lustre success"
172 }
173
174 build_test_filter
175
176 if [ "$ONLY" == "setup" ]; then
177         setup
178         exit
179 fi
180
181 if [ "$ONLY" == "cleanup" ]; then
182         cleanup
183         exit
184 fi
185
186 #create single point mountpoint
187
188 gen_config
189
190 init_gss
191
192 test_0() {
193         setup
194         check_mount || return 41
195         cleanup || return $?
196 }
197 run_test 0 "single mount setup"
198
199 test_1() {
200         start_ost
201         echo "start ost second time..."
202         setup
203         check_mount || return 42
204         cleanup || return $?
205 }
206 run_test 1 "start up ost twice (should return errors)"
207
208 test_2() {
209         start_ost
210         start_mds
211         echo "start mds second time.."
212         start_mds
213         mount_client $MOUNT
214         check_mount || return 43
215         cleanup || return $?
216 }
217 run_test 2 "start up mds twice (should return err)"
218
219 test_3() {
220         setup
221         #mount.lustre returns an error if already in mtab
222         mount_client $MOUNT && return $?
223         check_mount || return 44
224         cleanup || return $?
225 }
226 run_test 3 "mount client twice (should return err)"
227
228 test_4() {
229         setup
230         touch $DIR/$tfile || return 85
231         stop_ost -f
232         cleanup
233         eno=$?
234         # ok for ost to fail shutdown
235         if [ 202 -ne $eno ]; then
236                 return $eno;
237         fi
238         return 0
239 }
240 run_test 4 "force cleanup ost, then cleanup"
241
242 test_5a() {     # was test_5
243         setup
244         touch $DIR/$tfile || return 1
245         fuser -m -v $MOUNT && echo "$MOUNT is in use by user space process."
246
247         stop_mds -f || return 2
248
249         # cleanup may return an error from the failed
250         # disconnects; for now I'll consider this successful
251         # if all the modules have unloaded.
252         umount -d $MOUNT &
253         UMOUNT_PID=$!
254         sleep 6
255         echo "killing umount"
256         kill -TERM $UMOUNT_PID
257         echo "waiting for umount to finish"
258         wait $UMOUNT_PID
259         if grep " $MOUNT " /proc/mounts; then
260                 echo "test 5: /proc/mounts after failed umount"
261                 umount $MOUNT &
262                 UMOUNT_PID=$!
263                 sleep 2
264                 echo "killing umount"
265                 kill -TERM $UMOUNT_PID
266                 echo "waiting for umount to finish"
267                 wait $UMOUNT_PID
268                 grep " $MOUNT " /proc/mounts && echo "test 5: /proc/mounts after second umount" && return 11
269         fi
270
271         manual_umount_client
272         # stop_mds is a no-op here, and should not fail
273         cleanup_nocli || return $?
274         # df may have lingering entry
275         manual_umount_client
276         # mtab may have lingering entry
277         local WAIT=0
278         local MAX_WAIT=20
279         local sleep=1
280         while [ "$WAIT" -ne "$MAX_WAIT" ]; do
281                 sleep $sleep
282                 grep -q $MOUNT" " /etc/mtab || break
283                 echo "Waiting /etc/mtab updated ... "
284                 WAIT=$(( WAIT + sleep))
285         done
286         [ "$WAIT" -eq "$MAX_WAIT" ] && error "/etc/mtab is not updated in $WAIT secs"
287         echo "/etc/mtab updated in $WAIT secs"
288 }
289 run_test 5a "force cleanup mds, then cleanup"
290
291 test_5b() {
292         start_ost
293         [ -d $MOUNT ] || mkdir -p $MOUNT
294         grep " $MOUNT " /etc/mtab && echo "test 5b: mtab before mount" && return 10
295         mount_client $MOUNT && return 1
296         grep " $MOUNT " /etc/mtab && echo "test 5b: mtab after failed mount" && return 11
297         umount_client $MOUNT
298         # stop_mds is a no-op here, and should not fail
299         cleanup_nocli || return $?
300         return 0
301 }
302 run_test 5b "mds down, cleanup after failed mount (bug 2712) (should return errs)"
303
304 test_5c() {
305         start_ost
306         start_mds
307         [ -d $MOUNT ] || mkdir -p $MOUNT
308         grep " $MOUNT " /etc/mtab && echo "test 5c: mtab before mount" && return 10
309         local oldfs="${FSNAME}"
310         FSNAME="wrong.${FSNAME}"
311         mount_client $MOUNT || :
312         FSNAME=${oldfs}
313         grep " $MOUNT " /etc/mtab && echo "test 5c: mtab after failed mount" && return 11
314         umount_client $MOUNT
315         cleanup_nocli  || return $?
316 }
317 run_test 5c "cleanup after failed mount (bug 2712) (should return errs)"
318
319 test_5d() {
320         start_ost
321         start_mds
322         stop_ost -f
323         grep " $MOUNT " /etc/mtab && echo "test 5d: mtab before mount" && return 10
324         mount_client $MOUNT || return 1
325         cleanup  || return $?
326         grep " $MOUNT " /etc/mtab && echo "test 5d: mtab after unmount" && return 11
327         return 0
328 }
329 run_test 5d "mount with ost down"
330
331 test_5e() {
332         start_ost
333         start_mds
334
335 #define OBD_FAIL_PTLRPC_DELAY_SEND       0x506
336         do_facet client "lctl set_param fail_loc=0x80000506"
337         grep " $MOUNT " /etc/mtab && echo "test 5e: mtab before mount" && return 10
338         mount_client $MOUNT || echo "mount failed (not fatal)"
339         cleanup  || return $?
340         grep " $MOUNT " /etc/mtab && echo "test 5e: mtab after unmount" && return 11
341         return 0
342 }
343 run_test 5e "delayed connect, don't crash (bug 10268)"
344
345 test_6() {
346         setup
347         manual_umount_client
348         mount_client ${MOUNT} || return 87
349         touch $DIR/a || return 86
350         cleanup  || return $?
351 }
352 run_test 6 "manual umount, then mount again"
353
354 test_7() {
355         setup
356         manual_umount_client
357         cleanup_nocli || return $?
358 }
359 run_test 7 "manual umount, then cleanup"
360
361 test_8() {
362         setup
363         mount_client $MOUNT2
364         check_mount2 || return 45
365         umount_client $MOUNT2
366         cleanup  || return $?
367 }
368 run_test 8 "double mount setup"
369
370 test_9() {
371         start_ost
372
373         do_facet ost1 lctl set_param debug=\'inode trace\' || return 1
374         do_facet ost1 lctl set_param subsystem_debug=\'mds ost\' || return 1
375
376         CHECK_PTLDEBUG="`do_facet ost1 lctl get_param -n debug`"
377         if [ "$CHECK_PTLDEBUG" ] && { \
378            [ "$CHECK_PTLDEBUG" = "trace inode warning error emerg console" ] ||
379            [ "$CHECK_PTLDEBUG" = "trace inode" ]; }; then   
380            echo "lnet.debug success"
381         else
382            echo "lnet.debug: want 'trace inode', have '$CHECK_PTLDEBUG'"
383            return 1
384         fi
385         CHECK_SUBSYS="`do_facet ost1 lctl get_param -n subsystem_debug`"
386         if [ "$CHECK_SUBSYS" ] && [ "$CHECK_SUBSYS" = "mds ost" ]; then
387            echo "lnet.subsystem_debug success"
388         else
389            echo "lnet.subsystem_debug: want 'mds ost', have '$CHECK_SUBSYS'"
390            return 1
391         fi
392         stop_ost || return $?
393 }
394
395 run_test 9 "test ptldebug and subsystem for mkfs"
396
397 # LOGS/PENDING do not exist anymore since CMD3
398 test_16() {
399         local TMPMTPT="${TMP}/conf16"
400         local dev=${SINGLEMDS}_dev
401         local MDSDEV=${!dev}
402         if [ ! -e "$MDSDEV" ]; then
403             log "no $MDSDEV existing, so mount Lustre to create one"
404             setup
405             check_mount || return 41
406             cleanup || return $?
407         fi
408
409         [ -f "$MDSDEV" ] && LOOPOPT="-o loop"
410
411         log "change the mode of $MDSDEV/OBJECTS to 555"
412         do_facet $SINGLEMDS "mkdir -p $TMPMTPT &&
413                       mount $LOOPOPT -t $FSTYPE $MDSDEV $TMPMTPT &&
414                       chmod 555 $TMPMTPT/OBJECTS &&
415                       umount $TMPMTPT" || return $?
416
417         log "mount Lustre to change the mode of OBJECTS, then umount Lustre"
418         setup
419         check_mount || return 41
420         cleanup || return $?
421
422         log "read the mode of OBJECTS and check if they has been changed properly"
423         EXPECTEDOBJECTSMODE=`do_facet $SINGLEMDS "debugfs -R 'stat OBJECTS' $MDSDEV 2> /dev/null" | grep 'Mode: ' | sed -e "s/.*Mode: *//" -e "s/ *Flags:.*//"`
424
425         if [ "$EXPECTEDOBJECTSMODE" = "0777" ]; then
426                 log "Success:Lustre change the mode of OBJECTS correctly"
427         else
428                 error "Lustre does not change mode of OBJECTS properly"
429         fi
430 }
431 run_test 16 "verify that lustre will correct the mode of OBJECTS"
432
433 test_17() {
434         local dev=${SINGLEMDS}_dev
435         local MDSDEV=${!dev}
436
437         if [ ! -e "$MDSDEV" ]; then
438             echo "no $MDSDEV existing, so mount Lustre to create one"
439             setup
440             check_mount || return 41
441             cleanup || return $?
442         fi
443
444         echo "Remove mds config log"
445         do_facet $SINGLEMDS "debugfs -w -R 'unlink CONFIGS/$FSNAME-MDT0000' $MDSDEV || return \$?" || return $?
446
447         start_ost
448         start_mds && return 42
449         gen_config
450 }
451 run_test 17 "Verify failed mds_postsetup won't fail assertion (2936) (should return errs)"
452
453 test_18() {
454         [ "$FSTYPE" != "ldiskfs" ] && skip "not needed for FSTYPE=$FSTYPE" && return
455
456         local dev=${SINGLEMDS}_dev
457         local MDSDEV=${!dev}
458
459         local MIN=2000000
460
461         local OK=
462         # check if current MDSSIZE is large enough
463         [ $MDSSIZE -ge $MIN ] && OK=1 && myMDSSIZE=$MDSSIZE && \
464                 log "use MDSSIZE=$MDSSIZE"
465
466         # check if the global config has a large enough MDSSIZE
467         [ -z "$OK" -a ! -z "$STORED_MDSSIZE" ] && [ $STORED_MDSSIZE -ge $MIN ] && \
468                 OK=1 && myMDSSIZE=$STORED_MDSSIZE && \
469                 log "use STORED_MDSSIZE=$STORED_MDSSIZE"
470
471         # check if the block device is large enough
472         [ -z "$OK" -a -b $MDSDEV ] && \
473                 [ "$(dd if=$MDSDEV of=/dev/null bs=1k count=1 skip=$MIN 2>&1 |
474                      awk '($3 == "in") { print $1 }')" = "1+0" ] && OK=1 && \
475                 myMDSSIZE=$MIN && log "use device $MDSDEV with MIN=$MIN"
476
477         # check if a loopback device has enough space for fs metadata (5%)
478         [ -z "$OK" ] && [ -f $MDSDEV -o ! -e $MDSDEV ] &&
479                 SPACE=$(df -P $(dirname $MDSDEV) |
480                         awk '($1 != "Filesystem") {print $4}') &&
481                 [ $SPACE -gt $((MIN / 20)) ] && OK=1 && myMDSSIZE=$MIN && \
482                         log "use file $MDSDEV with MIN=$MIN"
483
484         [ -z "$OK" ] && skip "$MDSDEV too small for ${MIN}kB MDS" && return
485
486
487         echo "mount mds with large journal..."
488         local OLD_MDS_MKFS_OPTS=$MDS_MKFS_OPTS
489
490         MDS_MKFS_OPTS="--mgs --mdt --fsname=$FSNAME --device-size=$myMDSSIZE --param sys.timeout=$TIMEOUT $MDSOPT"
491
492         gen_config
493         echo "mount lustre system..."
494         setup
495         check_mount || return 41
496
497         echo "check journal size..."
498         local FOUNDSIZE=`do_facet mds "debugfs -c -R 'stat <8>' $MDSDEV" | awk '/Size: / { print $NF; exit;}'`
499         if [ $FOUNDSIZE -gt $((32 * 1024 * 1024)) ]; then
500                 log "Success: mkfs creates large journals. Size: $((FOUNDSIZE >> 20))M"
501         else
502                 error "expected journal size > 32M, found $((FOUNDSIZE >> 20))M"
503         fi
504
505         cleanup || return $?
506
507         MDS_MKFS_OPTS=$OLD_MDS_MKFS_OPTS
508         gen_config
509 }
510 run_test 18 "check mkfs creates large journals"
511
512 test_19a() {
513         start_mds || return 1
514         stop_mds -f || return 2
515 }
516 run_test 19a "start/stop MDS without OSTs"
517
518 test_19b() {
519         start_ost || return 1
520         stop_ost -f || return 2
521 }
522 run_test 19b "start/stop OSTs without MDS"
523
524 test_20() {
525         # first format the ost/mdt
526         start_ost
527         start_mds
528         mount_client $MOUNT
529         check_mount || return 43
530         rm -f $DIR/$tfile
531         remount_client ro $MOUNT || return 44
532         touch $DIR/$tfile && echo "$DIR/$tfile created incorrectly" && return 45
533         [ -e $DIR/$tfile ] && echo "$DIR/$tfile exists incorrectly" && return 46
534         remount_client rw $MOUNT || return 47
535         touch $DIR/$tfile
536         [ ! -f $DIR/$tfile ] && echo "$DIR/$tfile missing" && return 48
537         MCNT=`grep -c $MOUNT /etc/mtab`
538         [ "$MCNT" -ne 1 ] && echo "$MOUNT in /etc/mtab $MCNT times" && return 49
539         umount_client $MOUNT
540         stop_mds
541         stop_ost
542 }
543 run_test 20 "remount ro,rw mounts work and doesn't break /etc/mtab"
544
545 test_21a() {
546         start_mds
547         start_ost
548         stop_ost
549         stop_mds
550 }
551 run_test 21a "start mds before ost, stop ost first"
552
553 test_21b() {
554         start_ost
555         start_mds
556         stop_mds
557         stop_ost
558 }
559 run_test 21b "start ost before mds, stop mds first"
560
561 test_21c() {
562         start_ost
563         start_mds
564         start_ost2
565         stop_ost
566         stop_ost2
567         stop_mds
568         #writeconf to remove all ost2 traces for subsequent tests
569         writeconf
570 }
571 run_test 21c "start mds between two osts, stop mds last"
572
573 test_22() {
574         start_mds
575
576         echo Client mount with ost in logs, but none running
577         start_ost
578         stop_ost
579         mount_client $MOUNT
580         # check_mount will block trying to contact ost
581         umount_client $MOUNT
582         pass
583
584         echo Client mount with a running ost
585         start_ost
586         if $GSS; then
587                 # if gss enabled, wait full time to let connection from
588                 # mds to ost be established, due to the mismatch between
589                 # initial connect timeout and gss context negotiation timeout.
590                 # This perhaps could be remove after AT landed.
591                 echo "sleep $((TIMEOUT + TIMEOUT + TIMEOUT))s"
592                 sleep $((TIMEOUT + TIMEOUT + TIMEOUT))
593         fi
594         mount_client $MOUNT
595         check_mount || return 41
596         pass
597
598         cleanup
599 }
600 run_test 22 "start a client before osts (should return errs)"
601
602 test_23a() {    # was test_23
603         setup
604         # fail mds
605         stop $SINGLEMDS   
606         # force down client so that recovering mds waits for reconnect
607         local running=$(grep -c $MOUNT /proc/mounts) || true
608         if [ $running -ne 0 ]; then
609                 echo "Stopping client $MOUNT (opts: -f)"
610                 umount -f $MOUNT
611         fi
612
613         # enter recovery on mds
614         start_mds
615         # try to start a new client
616         mount_client $MOUNT &
617         sleep 5
618         MOUNT_PID=$(ps -ef | grep "t lustre" | grep -v grep | awk '{print $2}')
619         MOUNT_LUSTRE_PID=`ps -ef | grep mount.lustre | grep -v grep | awk '{print $2}'`
620         echo mount pid is ${MOUNT_PID}, mount.lustre pid is ${MOUNT_LUSTRE_PID}
621         ps --ppid $MOUNT_PID
622         ps --ppid $MOUNT_LUSTRE_PID
623         # FIXME why o why can't I kill these? Manual "ctrl-c" works...
624         kill -TERM $MOUNT_LUSTRE_PID
625         echo "waiting for mount to finish"
626         ps -ef | grep mount
627         # we can not wait $MOUNT_PID because it is not a child of this shell
628         local PID1
629         local PID2
630         local WAIT=0
631         local MAX_WAIT=20
632         local sleep=1
633         while [ "$WAIT" -lt "$MAX_WAIT" ]; do
634                 sleep $sleep
635                 PID1=$(ps -ef | awk '{print $2}' | grep -w $MOUNT_PID)
636                 PID2=$(ps -ef | awk '{print $2}' | grep -w $MOUNT_LUSTRE_PID)
637                 echo PID1=$PID1
638                 echo PID2=$PID2
639                 [ -z "$PID1" -a -z "$PID2" ] && break
640                 echo "waiting for mount to finish ... "
641                 WAIT=$(( WAIT + sleep))
642         done
643         [ "$WAIT" -eq "$MAX_WAIT" ] && error "MOUNT_PID $MOUNT_PID and \
644                 MOUNT__LUSTRE_PID $MOUNT__LUSTRE_PID still not killed in $WAIT secs"
645         ps -ef | grep mount
646         stop_mds || error
647         stop_ost || error
648 }
649 run_test 23a "interrupt client during recovery mount delay"
650
651 umount_client $MOUNT
652 cleanup_nocli
653
654 test_23b() {    # was test_23
655         start_ost
656         start_mds
657         # Simulate -EINTR during mount OBD_FAIL_LDLM_CLOSE_THREAD
658         lctl set_param fail_loc=0x80000313
659         mount_client $MOUNT
660         cleanup
661 }
662 run_test 23b "Simulate -EINTR during mount"
663
664 fs2mds_HOST=$mds_HOST
665 fs2ost_HOST=$ost_HOST
666
667 cleanup_24a() {
668         trap 0
669         echo "umount $MOUNT2 ..."
670         umount $MOUNT2 || true
671         echo "stopping fs2mds ..."
672         stop fs2mds -f || true
673         echo "stopping fs2ost ..."
674         stop fs2ost -f || true
675 }
676
677 test_24a() {
678         #set up fs1 
679         gen_config
680         #set up fs2
681         [ -n "$ost1_HOST" ] && fs2ost_HOST=$ost1_HOST
682         if [ -z "$fs2ost_DEV" -o -z "$fs2mds_DEV" ]; then
683                 do_facet $SINGLEMDS [ -b "$MDSDEV" ] && \
684                 skip "mixed loopback and real device not working" && return
685         fi
686
687         local fs2mdsdev=${fs2mds_DEV:-${MDSDEV}_2}
688         local fs2ostdev=${fs2ost_DEV:-$(ostdevname 1)_2}
689
690         # test 8-char fsname as well
691         local FSNAME2=test1234
692         add fs2mds $MDS_MKFS_OPTS --fsname=${FSNAME2} --nomgs --mgsnode=$MGSNID --reformat $fs2mdsdev || exit 10
693
694         add fs2ost $OST_MKFS_OPTS --fsname=${FSNAME2} --reformat $fs2ostdev || exit 10
695
696         setup
697         start fs2mds $fs2mdsdev $MDS_MOUNT_OPTS && trap cleanup_24a EXIT INT
698         start fs2ost $fs2ostdev $OST_MOUNT_OPTS
699         mkdir -p $MOUNT2
700         mount -t lustre $MGSNID:/${FSNAME2} $MOUNT2 || return 1
701         # 1 still works
702         check_mount || return 2
703         # files written on 1 should not show up on 2
704         cp /etc/passwd $DIR/$tfile
705         sleep 10
706         [ -e $MOUNT2/$tfile ] && error "File bleed" && return 7
707         # 2 should work
708         sleep 5
709         cp /etc/passwd $MOUNT2/b || return 3
710         rm $MOUNT2/b || return 4
711         # 2 is actually mounted
712         grep $MOUNT2' ' /proc/mounts > /dev/null || return 5
713         # failover 
714         facet_failover fs2mds
715         facet_failover fs2ost
716         df
717         umount_client $MOUNT 
718         # the MDS must remain up until last MDT
719         stop_mds
720         MDS=$(do_facet $SINGLEMDS "lctl get_param -n devices" | awk '($3 ~ "mdt" && $4 ~ "MDT") { print $4 }' | head -1)
721         [ -z "$MDS" ] && error "No MDT" && return 8
722         cleanup_24a
723         cleanup_nocli || return 6
724 }
725 run_test 24a "Multiple MDTs on a single node"
726
727 test_24b() {
728         if [ -z "$fs2mds_DEV" ]; then
729                 do_facet $SINGLEMDS [ -b "$MDSDEV" ] && \
730                 skip "mixed loopback and real device not working" && return
731         fi
732
733         local fs2mdsdev=${fs2mds_DEV:-${MDSDEV}_2}
734
735         add fs2mds $MDS_MKFS_OPTS --fsname=${FSNAME}2 --mgs --reformat $fs2mdsdev || exit 10 
736         setup
737         start fs2mds $fs2mdsdev $MDS_MOUNT_OPTS && return 2
738         cleanup || return 6
739 }
740 run_test 24b "Multiple MGSs on a single node (should return err)"
741
742 test_25() {
743         setup
744         check_mount || return 2
745         local MODULES=$($LCTL modules | awk '{ print $2 }')
746         rmmod $MODULES 2>/dev/null || true
747         cleanup || return 6
748 }
749 run_test 25 "Verify modules are referenced"
750
751 test_26() {
752     load_modules
753     # we need modules before mount for sysctl, so make sure...
754     do_facet $SINGLEMDS "lsmod | grep -q lustre || modprobe lustre"
755 #define OBD_FAIL_MDS_FS_SETUP            0x135
756     do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000135"
757     start_mds && echo MDS started && return 1
758     lctl get_param -n devices
759     DEVS=$(lctl get_param -n devices | wc -l)
760     [ $DEVS -gt 0 ] && return 2
761     unload_modules || return 203
762 }
763 run_test 26 "MDT startup failure cleans LOV (should return errs)"
764
765 set_and_check() {
766         local myfacet=$1
767         local TEST=$2
768         local PARAM=$3
769         local ORIG=$(do_facet $myfacet "$TEST") 
770         if [ $# -gt 3 ]; then
771             local FINAL=$4
772         else
773             local -i FINAL
774             FINAL=$(($ORIG + 5))
775         fi
776         echo "Setting $PARAM from $ORIG to $FINAL"
777         do_facet $SINGLEMDS "$LCTL conf_param $PARAM=$FINAL" || error conf_param failed
778         local RESULT
779         local MAX=90
780         local WAIT=0
781         while [ 1 ]; do
782             sleep 5
783             RESULT=$(do_facet $myfacet "$TEST") 
784             if [ $RESULT -eq $FINAL ]; then
785                 echo "Updated config after $WAIT sec (got $RESULT)"
786                 break
787             fi
788             WAIT=$((WAIT + 5))
789             if [ $WAIT -eq $MAX ]; then
790                 echo "Config update not seen: wanted $FINAL got $RESULT"
791                 return 3
792             fi
793             echo "Waiting $(($MAX - $WAIT)) secs for config update" 
794         done
795 }
796
797 test_27a() {
798         start_ost || return 1
799         start_mds || return 2
800         echo "Requeue thread should have started: " 
801         ps -e | grep ll_cfg_requeue 
802         set_and_check ost1 "lctl get_param -n obdfilter.$FSNAME-OST0000.client_cache_seconds" "$FSNAME-OST0000.ost.client_cache_seconds" || return 3
803         cleanup_nocli
804 }
805 run_test 27a "Reacquire MGS lock if OST started first"
806
807 test_27b() {
808         # FIXME. ~grev
809         setup
810         local device=$(do_facet $SINGLEMDS "lctl get_param -n devices" | awk '($3 ~ "mdt" && $4 ~ "MDT") { print $4 }')
811
812         facet_failover $SINGLEMDS
813         set_and_check $SINGLEMDS "lctl get_param -n mdt.$device.identity_acquire_expire" "$device.mdt.identity_acquire_expire" || return 3
814         set_and_check client "lctl get_param -n mdc.$device-mdc-*.max_rpcs_in_flight" "$device.mdc.max_rpcs_in_flight" || return 4
815         check_mount
816         cleanup
817 }
818 run_test 27b "Reacquire MGS lock after failover"
819
820 test_28() {
821         setup
822         TEST="lctl get_param -n llite.$FSNAME-*.max_read_ahead_whole_mb"
823         PARAM="$FSNAME.llite.max_read_ahead_whole_mb"
824         ORIG=$($TEST)
825         FINAL=$(($ORIG + 1))
826         set_and_check client "$TEST" "$PARAM" $FINAL || return 3
827         FINAL=$(($FINAL + 1))
828         set_and_check client "$TEST" "$PARAM" $FINAL || return 4
829         umount_client $MOUNT || return 200
830         mount_client $MOUNT
831         RESULT=$($TEST)
832         if [ $RESULT -ne $FINAL ]; then
833             echo "New config not seen: wanted $FINAL got $RESULT"
834             return 4
835         else
836             echo "New config success: got $RESULT"
837         fi
838         set_and_check client "$TEST" "$PARAM" $ORIG || return 5
839         cleanup
840 }
841 run_test 28 "permanent parameter setting"
842
843 test_29() {
844         [ "$OSTCOUNT" -lt "2" ] && skip "$OSTCOUNT < 2, skipping" && return
845         setup > /dev/null 2>&1
846         start_ost2
847         sleep 10
848
849         local PARAM="$FSNAME-OST0001.osc.active"
850         local PROC_ACT="osc.$FSNAME-OST0001-osc-[^M]*.active"
851         local PROC_UUID="osc.$FSNAME-OST0001-osc-[^M]*.ost_server_uuid"
852
853         ACTV=$(lctl get_param -n $PROC_ACT)
854         DEAC=$((1 - $ACTV))
855         set_and_check client "lctl get_param -n $PROC_ACT" "$PARAM" $DEAC || return 2
856         # also check ost_server_uuid status
857         RESULT=$(lctl get_param -n $PROC_UUID | grep DEACTIV)
858         if [ -z "$RESULT" ]; then
859             echo "Live client not deactivated: $(lctl get_param -n $PROC_UUID)"
860             return 3
861         else
862             echo "Live client success: got $RESULT"
863         fi
864
865         # check MDT too 
866         local MPROC="osc.$FSNAME-OST0001-osc-[M]*.active"
867         local MAX=30
868         local WAIT=0
869         while [ 1 ]; do
870             sleep 5
871             RESULT=`do_facet $SINGLEMDS " lctl get_param -n $MPROC"`
872             [ ${PIPESTATUS[0]} = 0 ] || error "Can't read $MPROC"
873             if [ $RESULT -eq $DEAC ]; then
874                 echo "MDT deactivated also after $WAIT sec (got $RESULT)"
875                 break
876             fi
877             WAIT=$((WAIT + 5))
878             if [ $WAIT -eq $MAX ]; then
879                 echo "MDT not deactivated: wanted $DEAC got $RESULT"
880                 return 4
881             fi
882             echo "Waiting $(($MAX - $WAIT)) secs for MDT deactivated"
883         done
884
885         # test new client starts deactivated
886         umount_client $MOUNT || return 200
887         mount_client $MOUNT
888         RESULT=$(lctl get_param -n $PROC_UUID | grep DEACTIV | grep NEW)
889         if [ -z "$RESULT" ]; then
890             echo "New client not deactivated from start: $(lctl get_param -n $PROC_UUID)"
891             return 5
892         else
893             echo "New client success: got $RESULT"
894         fi
895
896         # make sure it reactivates
897         set_and_check client "lctl get_param -n $PROC_ACT" "$PARAM" $ACTV || return 6
898
899         umount_client $MOUNT
900         stop_ost2
901         cleanup_nocli
902         #writeconf to remove all ost2 traces for subsequent tests
903         writeconf
904         start_mds
905         start_ost
906         cleanup
907 }
908 run_test 29 "permanently remove an OST"
909
910 test_30() {
911         setup
912
913         TEST="lctl get_param -n llite.$FSNAME-*.max_read_ahead_whole_mb"
914         ORIG=$($TEST)
915         LIST=(1 2 3 4 5 4 3 2 1 2 3 4 5 4 3 2 1 2 3 4 5)
916         for i in ${LIST[@]}; do
917             set_and_check client "$TEST" "$FSNAME.llite.max_read_ahead_whole_mb" $i || return 3
918         done
919         # make sure client restart still works 
920         umount_client $MOUNT
921         mount_client $MOUNT || return 4
922         [ "$($TEST)" -ne "$i" ] && return 5   
923         set_and_check client "$TEST" "$FSNAME.llite.max_read_ahead_whole_mb" $ORIG || return 6
924         cleanup
925 }
926 run_test 30 "Big config llog"
927
928 test_31() { # bug 10734
929         # ipaddr must not exist
930         mount -t lustre 4.3.2.1@tcp:/lustre $MOUNT || true
931         cleanup
932 }
933 run_test 31 "Connect to non-existent node (shouldn't crash)"
934
935 test_32a() {
936         # XXX - make this test verify 1.8 -> 2.0 upgrade is working
937         # XXX - make this run on client-only systems with real hardware on
938         #       the OST and MDT
939         #       there appears to be a lot of assumption here about loopback
940         #       devices
941         # or maybe this test is just totally useless on a client-only system
942         [ "$NETTYPE" = "tcp" ] || { skip "NETTYPE != tcp" && return 0; }
943         [ "$mds_HOST" = "`hostname`" ] || { skip "remote MDS" && return 0; }
944         [ "$ost_HOST" = "`hostname`" -o "$ost1_HOST" = "`hostname`" ] || \
945                 { skip "remote OST" && return 0; }
946
947         [ -z "$TUNEFS" ] && skip "No tunefs" && return
948         local DISK1_8=$LUSTRE/tests/disk1_8.tgz
949         [ ! -r $DISK1_8 ] && skip "Cannot find $DISK1_8" && return 0
950
951         mkdir -p $TMP/$tdir
952         tar xjvf $DISK1_8 -C $TMP/$tdir || \
953                 { skip "Cannot untar $DISK1_8" && return 0; }
954
955         load_modules
956         lctl set_param debug=$PTLDEBUG
957
958         $TUNEFS $tmpdir/mds || error "tunefs failed"
959         # nids are wrong, so client wont work, but server should start
960         start mds $tmpdir/mds "-o loop,exclude=lustre-OST0000" || return 3
961         local UUID=$(lctl get_param -n mdt.lustre-MDT0000.uuid)
962         echo MDS uuid $UUID
963         [ "$UUID" == "mdsA_UUID" ] || error "UUID is wrong: $UUID" 
964
965         $TUNEFS --mgsnode=`hostname` $tmpdir/ost1 || error "tunefs failed"
966         start ost1 $tmpdir/ost1 "-o loop" || return 5
967         UUID=$(lctl get_param -n obdfilter.lustre-OST0000.uuid)
968         echo OST uuid $UUID
969         [ "$UUID" == "ost1_UUID" ] || error "UUID is wrong: $UUID" 
970
971         local NID=$($LCTL list_nids | head -1)
972
973         echo "OSC changes should return err:" 
974         $LCTL conf_param lustre-OST0000.osc.max_dirty_mb=15 && return 7
975         $LCTL conf_param lustre-OST0000.failover.node=$NID && return 8
976         echo "ok."
977         echo "MDC changes should succeed:" 
978         $LCTL conf_param lustre-MDT0000.mdc.max_rpcs_in_flight=9 || return 9
979         $LCTL conf_param lustre-MDT0000.failover.node=$NID || return 10
980         echo "ok."
981
982         # With a new good MDT failover nid, we should be able to mount a client
983         # (but it cant talk to OST)
984         local OLDMOUNTOPT=$MOUNTOPT
985         MOUNTOPT="exclude=lustre-OST0000"
986         mount_client $MOUNT
987         MOUNTOPT=$OLDMOUNTOPT
988         set_and_check client "lctl get_param -n mdc.*.max_rpcs_in_flight" "lustre-MDT0000.mdc.max_rpcs_in_flight" ||
989                 return 11
990
991         zconf_umount `hostname` $MOUNT -f
992         cleanup_nocli
993         load_modules
994
995         # mount a second time to make sure we didnt leave upgrade flag on
996         load_modules
997         $TUNEFS --dryrun $tmpdir/mds || error "tunefs failed"
998         load_modules
999         start mds $tmpdir/mds "-o loop,exclude=lustre-OST0000" || return 12
1000         cleanup_nocli
1001
1002         rm -rf $tmpdir || true  # true is only for TMP on NFS
1003 }
1004 run_test 32a "Upgrade from 1.8 (not live)"
1005
1006 test_32b() {
1007         # XXX - make this test verify 1.8 -> 2.0 upgrade is working
1008         # XXX - make this run on client-only systems with real hardware on
1009         #       the OST and MDT
1010         #       there appears to be a lot of assumption here about loopback
1011         #       devices
1012         # or maybe this test is just totally useless on a client-only system
1013         [ "$NETTYPE" = "tcp" ] || { skip "NETTYPE != tcp" && return 0; }
1014         [ "$mds_HOST" = "`hostname`" ] || { skip "remote MDS" && return 0; }
1015         [ "$ost_HOST" = "`hostname`" -o "$ost1_HOST" = "`hostname`" ] || \
1016                 { skip "remote OST" && return 0; }
1017
1018         [ -z "$TUNEFS" ] && skip "No tunefs" && return
1019         local DISK1_8=$LUSTRE/tests/disk1_8.tgz
1020         [ ! -r $DISK1_8 ] && skip "Cannot find $DISK1_8" && return 0
1021         local tmpdir=$TMP/$tdir
1022         mkdir -p $tmpdir
1023         tar xjvf $DISK1_8 -C $tmpdir || \
1024                 { skip "Cannot untar $DISK1_8" && return ; }
1025
1026         load_modules
1027         lctl set_param debug=$PTLDEBUG
1028         NEWNAME=lustre
1029
1030         # writeconf will cause servers to register with their current nids
1031         $TUNEFS --writeconf --fsname=$NEWNAME $tmpdir/mds || error "tunefs failed"
1032         start mds1 $tmpdir/mds "-o loop" || return 3
1033         local UUID=$(lctl get_param -n mdt.${NEWNAME}-MDT0000.uuid)
1034         echo MDS uuid $UUID
1035         [ "$UUID" == "${NEWNAME}-MDT0000_UUID" ] || error "UUID is wrong: $UUID" 
1036
1037         $TUNEFS --mgsnode=`hostname` --writeconf --fsname=$NEWNAME $tmpdir/ost1 || error "tunefs failed"
1038         start ost1 $tmpdir/ost1 "-o loop" || return 5
1039         UUID=$(lctl get_param -n obdfilter.${NEWNAME}-OST0000.uuid)
1040         echo OST uuid $UUID
1041         [ "$UUID" == "${NEWNAME}-OST0000_UUID" ] || error "UUID is wrong: $UUID"
1042
1043         echo "OSC changes should succeed:" 
1044         $LCTL conf_param ${NEWNAME}-OST0000.osc.max_dirty_mb=15 || return 7
1045         $LCTL conf_param ${NEWNAME}-OST0000.failover.node=$NID || return 8
1046         echo "ok."
1047         echo "MDC changes should succeed:" 
1048         $LCTL conf_param ${NEWNAME}-MDT0000.mdc.max_rpcs_in_flight=9 || return 9
1049         echo "ok."
1050
1051         # MDT and OST should have registered with new nids, so we should have
1052         # a fully-functioning client
1053         echo "Check client and old fs contents"
1054         OLDFS=$FSNAME
1055         FSNAME=$NEWNAME
1056         mount_client $MOUNT
1057         FSNAME=$OLDFS
1058         set_and_check client "lctl get_param -n mdc.*.max_rpcs_in_flight" "${NEWNAME}-MDT0000.mdc.max_rpcs_in_flight" || return 11
1059         [ "$(cksum $MOUNT/passwd | cut -d' ' -f 1,2)" == "94306271 1478" ] || return 12
1060         echo "ok."
1061
1062         cleanup
1063         rm -rf $tmpdir || true  # true is only for TMP on NFS
1064 }
1065 run_test 32b "Upgrade from 1.8 with writeconf"
1066
1067 test_33a() { # bug 12333, was test_33
1068         local rc=0
1069         local FSNAME2=test-123
1070         [ -n "$ost1_HOST" ] && fs2ost_HOST=$ost1_HOST
1071
1072         if [ -z "$fs2ost_DEV" -o -z "$fs2mds_DEV" ]; then
1073                 do_facet $SINGLEMDS [ -b "$MDSDEV" ] && \
1074                 skip "mixed loopback and real device not working" && return
1075         fi
1076
1077         local fs2mdsdev=${fs2mds_DEV:-${MDSDEV}_2}
1078         local fs2ostdev=${fs2ost_DEV:-$(ostdevname 1)_2}
1079         add fs2mds $MDS_MKFS_OPTS --fsname=${FSNAME2} --reformat $fs2mdsdev || exit 10
1080         add fs2ost $OST_MKFS_OPTS --fsname=${FSNAME2} --index=8191 --mgsnode=$MGSNID --reformat $fs2ostdev || exit 10
1081
1082         start fs2mds $fs2mdsdev $MDS_MOUNT_OPTS && trap cleanup_24a EXIT INT
1083         start fs2ost $fs2ostdev $OST_MOUNT_OPTS
1084         do_facet $SINGLEMDS "$LCTL conf_param $FSNAME2.sys.timeout=200" || rc=1
1085         mkdir -p $MOUNT2
1086         mount -t lustre $MGSNID:/${FSNAME2} $MOUNT2 || rc=2
1087         echo "ok."
1088
1089         cp /etc/hosts $MOUNT2/ || rc=3 
1090         $LFS getstripe $MOUNT2/hosts
1091
1092         umount -d $MOUNT2
1093         stop fs2ost -f
1094         stop fs2mds -f
1095         rm -rf $MOUNT2 $fs2mdsdev $fs2ostdev
1096         cleanup_nocli || rc=6
1097         return $rc
1098 }
1099 run_test 33a "Mount ost with a large index number"
1100
1101 test_33b() {    # was test_34
1102         setup
1103
1104         do_facet client dd if=/dev/zero of=$MOUNT/24 bs=1024k count=1
1105         # Drop lock cancelation reply during umount
1106         #define OBD_FAIL_LDLM_CANCEL             0x304
1107         do_facet client lctl set_param fail_loc=0x80000304
1108         #lctl set_param debug=-1
1109         umount_client $MOUNT
1110         cleanup
1111 }
1112 run_test 33b "Drop cancel during umount"
1113
1114 test_34a() {
1115         setup
1116         do_facet client "sh runmultiop_bg_pause $DIR/file O_c"
1117         manual_umount_client
1118         rc=$?
1119         do_facet client killall -USR1 multiop
1120         if [ $rc -eq 0 ]; then
1121                 error "umount not fail!"
1122         fi
1123         sleep 1
1124         cleanup
1125 }
1126 run_test 34a "umount with opened file should be fail"
1127
1128
1129 test_34b() {
1130         setup
1131         touch $DIR/$tfile || return 1
1132         stop_mds --force || return 2
1133
1134         manual_umount_client --force
1135         rc=$?
1136         if [ $rc -ne 0 ]; then
1137                 error "mtab after failed umount - rc $rc"
1138         fi
1139
1140         cleanup
1141         return 0
1142 }
1143 run_test 34b "force umount with failed mds should be normal"
1144
1145 test_34c() {
1146         setup
1147         touch $DIR/$tfile || return 1
1148         stop_ost --force || return 2
1149
1150         manual_umount_client --force
1151         rc=$?
1152         if [ $rc -ne 0 ]; then
1153                 error "mtab after failed umount - rc $rc"
1154         fi
1155
1156         cleanup
1157         return 0
1158 }
1159 run_test 34c "force umount with failed ost should be normal"
1160
1161 test_35() { # bug 12459
1162         setup
1163
1164         DBG_SAVE="`lctl get_param -n debug`"
1165         lctl set_param debug="ha"
1166
1167         log "Set up a fake failnode for the MDS"
1168         FAKENID="127.0.0.2"
1169         local device=$(do_facet $SINGLEMDS "lctl get_param -n devices" | awk '($3 ~ "mdt" && $4 ~ "MDT") { print $4 }' | head -1)
1170         do_facet $SINGLEMDS $LCTL conf_param ${device}.failover.node=$FAKENID || return 4
1171
1172         log "Wait for RECONNECT_INTERVAL seconds (10s)"
1173         sleep 10
1174
1175         MSG="conf-sanity.sh test_35 `date +%F%kh%Mm%Ss`"
1176         $LCTL clear
1177         log "$MSG"
1178         log "Stopping the MDT:"
1179         stop_mds || return 5
1180
1181         df $MOUNT > /dev/null 2>&1 &
1182         DFPID=$!
1183         log "Restarting the MDT:"
1184         start_mds || return 6
1185         log "Wait for df ($DFPID) ... "
1186         wait $DFPID
1187         log "done"
1188         lctl set_param debug="$DBG_SAVE"
1189
1190         # retrieve from the log the first server that the client tried to
1191         # contact after the connection loss
1192         $LCTL dk $TMP/lustre-log-$TESTNAME.log
1193         NEXTCONN=`awk "/${MSG}/ {start = 1;}
1194                        /import_select_connection.$device-mdc.* using connection/ {
1195                                 if (start) {
1196                                         if (\\\$NF ~ /$FAKENID/)
1197                                                 print \\\$NF;
1198                                         else
1199                                                 print 0;
1200                                         exit;
1201                                 }
1202                        }" $TMP/lustre-log-$TESTNAME.log`
1203         [ "$NEXTCONN" != "0" ] && log "The client didn't try to reconnect to the last active server (tried ${NEXTCONN} instead)" && return 7
1204         cleanup
1205 }
1206 run_test 35 "Reconnect to the last active server first"
1207
1208 test_36() { # 12743
1209         local rc
1210         local FSNAME2=test1234
1211         local fs3ost_HOST=$ost_HOST
1212
1213         [ -n "$ost1_HOST" ] && fs2ost_HOST=$ost1_HOST && fs3ost_HOST=$ost1_HOST
1214         rc=0
1215
1216         if [ -z "$fs2ost_DEV" -o -z "$fs2mds_DEV" -o -z "$fs3ost_DEV" ]; then
1217                 do_facet $SINGLEMDS [ -b "$MDSDEV" ] && \
1218                 skip "mixed loopback and real device not working" && return
1219         fi
1220         [ $OSTCOUNT -lt 2 ] && skip "skipping test for single OST" && return
1221
1222         [ "$ost_HOST" = "`hostname`" -o "$ost1_HOST" = "`hostname`" ] || \
1223                 { skip "remote OST" && return 0; }
1224
1225         local fs2mdsdev=${fs2mds_DEV:-${MDSDEV}_2}
1226         local fs2ostdev=${fs2ost_DEV:-$(ostdevname 1)_2}
1227         local fs3ostdev=${fs3ost_DEV:-$(ostdevname 2)_2}
1228         add fs2mds $MDS_MKFS_OPTS --fsname=${FSNAME2} --reformat $fs2mdsdev || exit 10
1229         # XXX after we support non 4K disk blocksize, change following --mkfsoptions with
1230         # other argument
1231         add fs2ost $OST_MKFS_OPTS --mkfsoptions='-b4096' --fsname=${FSNAME2} --mgsnode=$MGSNID --reformat $fs2ostdev || exit 10
1232         add fs3ost $OST_MKFS_OPTS --mkfsoptions='-b4096' --fsname=${FSNAME2} --mgsnode=$MGSNID --reformat $fs3ostdev || exit 10
1233
1234         start fs2mds $fs2mdsdev $MDS_MOUNT_OPTS
1235         start fs2ost $fs2ostdev $OST_MOUNT_OPTS
1236         start fs3ost $fs3ostdev $OST_MOUNT_OPTS
1237         mkdir -p $MOUNT2
1238         mount -t lustre $MGSNID:/${FSNAME2} $MOUNT2 || return 1
1239
1240         sleep 5 # until 11778 fixed
1241
1242         dd if=/dev/zero of=$MOUNT2/$tfile bs=1M count=7 || return 2
1243
1244         BKTOTAL=`lctl get_param -n obdfilter.*.kbytestotal | awk 'BEGIN{total=0}; {total+=$1}; END{print total}'`
1245         BKFREE=`lctl get_param -n obdfilter.*.kbytesfree | awk 'BEGIN{free=0}; {free+=$1}; END{print free}'`
1246         BKAVAIL=`lctl get_param -n obdfilter.*.kbytesavail | awk 'BEGIN{avail=0}; {avail+=$1}; END{print avail}'`
1247         STRING=`df -P $MOUNT2 | tail -n 1 | awk '{print $2","$3","$4}'`
1248         DFTOTAL=`echo $STRING | cut -d, -f1`
1249         DFUSED=`echo $STRING  | cut -d, -f2`
1250         DFAVAIL=`echo $STRING | cut -d, -f3`
1251         DFFREE=$(($DFTOTAL - $DFUSED))
1252
1253         ALLOWANCE=$((64 * $OSTCOUNT))
1254
1255         if [ $DFTOTAL -lt $(($BKTOTAL - $ALLOWANCE)) ] ||  
1256            [ $DFTOTAL -gt $(($BKTOTAL + $ALLOWANCE)) ] ; then
1257                 echo "**** FAIL: df total($DFTOTAL) mismatch OST total($BKTOTAL)"
1258                 rc=1
1259         fi
1260         if [ $DFFREE -lt $(($BKFREE - $ALLOWANCE)) ] || 
1261            [ $DFFREE -gt $(($BKFREE + $ALLOWANCE)) ] ; then
1262                 echo "**** FAIL: df free($DFFREE) mismatch OST free($BKFREE)"
1263                 rc=2
1264         fi
1265         if [ $DFAVAIL -lt $(($BKAVAIL - $ALLOWANCE)) ] || 
1266            [ $DFAVAIL -gt $(($BKAVAIL + $ALLOWANCE)) ] ; then
1267                 echo "**** FAIL: df avail($DFAVAIL) mismatch OST avail($BKAVAIL)"
1268                 rc=3
1269        fi
1270
1271         umount -d $MOUNT2
1272         stop fs3ost -f || return 200
1273         stop fs2ost -f || return 201
1274         stop fs2mds -f || return 202
1275         rm -rf $MOUNT2 $fs2mdsdev $fs2ostdev $fs3ostdev
1276         unload_modules || return 203
1277         return $rc
1278 }
1279 run_test 36 "df report consistency on OSTs with different block size"
1280
1281 test_37() {
1282         [ -n "$CLIENTONLY" -o -n "$CLIENTMODSONLY" ] && skip "client only testing" && return 0
1283         LOCAL_MDSDEV="$TMP/mdt.img"
1284         SYM_MDSDEV="$TMP/sym_mdt.img"
1285
1286         echo "MDS :     $LOCAL_MDSDEV"
1287         echo "SYMLINK : $SYM_MDSDEV"
1288         rm -f $LOCAL_MDSDEV
1289
1290         touch $LOCAL_MDSDEV
1291         mkfs.lustre --reformat --fsname=lustre --mdt --mgs --device-size=9000 $LOCAL_MDSDEV ||
1292                 error "mkfs.lustre $LOCAL_MDSDEV failed"
1293         ln -s $LOCAL_MDSDEV $SYM_MDSDEV
1294
1295         echo "mount symlink device - $SYM_MDSDEV"
1296
1297         mount_op=`mount -v -t lustre -o loop $SYM_MDSDEV ${MOUNT%/*}/mds 2>&1 | grep "unable to set tunable"`
1298         umount -d ${MOUNT%/*}/mds
1299         rm -f $LOCAL_MDSDEV $SYM_MDSDEV
1300
1301         if [ -n "$mount_op" ]; then
1302                 error "**** FAIL: set tunables failed for symlink device"
1303         fi
1304         return 0
1305 }
1306 run_test 37 "verify set tunables works for symlink device"
1307
1308 test_38() { # bug 14222
1309         setup
1310         # like runtests
1311         COUNT=10
1312         SRC="/etc /bin"
1313         FILES=`find $SRC -type f -mtime +1 | head -n $COUNT`
1314         log "copying $(echo $FILES | wc -w) files to $DIR/$tdir"
1315         mkdir -p $DIR/$tdir
1316         tar cf - $FILES | tar xf - -C $DIR/$tdir || \
1317                 error "copying $SRC to $DIR/$tdir"
1318         sync
1319         umount_client $MOUNT
1320         stop_mds
1321         log "rename lov_objid file on MDS"
1322         rm -f $TMP/lov_objid.orig
1323
1324         local dev=${SINGLEMDS}_dev
1325         local MDSDEV=${!dev}
1326         do_facet $SINGLEMDS "debugfs -c -R \\\"dump lov_objid $TMP/lov_objid.orig\\\" $MDSDEV"
1327         do_facet $SINGLEMDS "debugfs -w -R \\\"rm lov_objid\\\" $MDSDEV"
1328
1329         do_facet $SINGLEMDS "od -Ax -td8 $TMP/lov_objid.orig"
1330         # check create in mds_lov_connect
1331         start_mds
1332         mount_client $MOUNT
1333         for f in $FILES; do
1334                 [ $V ] && log "verifying $DIR/$tdir/$f"
1335                 diff -q $f $DIR/$tdir/$f || ERROR=y
1336         done
1337         do_facet $SINGLEMDS "debugfs -c -R \\\"dump lov_objid $TMP/lov_objid.new\\\"  $MDSDEV"
1338         do_facet $SINGLEMDS "od -Ax -td8 $TMP/lov_objid.new"
1339         [ "$ERROR" = "y" ] && error "old and new files are different after connect" || true
1340
1341         # check it's updates in sync
1342         umount_client $MOUNT
1343         stop_mds
1344
1345         do_facet $SINGLEMDS dd if=/dev/zero of=$TMP/lov_objid.clear bs=4096 count=1
1346         do_facet $SINGLEMDS "debugfs -w -R \\\"rm lov_objid\\\" $MDSDEV"
1347         do_facet $SINGLEMDS "debugfs -w -R \\\"write $TMP/lov_objid.clear lov_objid\\\" $MDSDEV "
1348
1349         start_mds
1350         mount_client $MOUNT
1351         for f in $FILES; do
1352                 [ $V ] && log "verifying $DIR/$tdir/$f"
1353                 diff -q $f $DIR/$tdir/$f || ERROR=y
1354         done
1355         do_facet $SINGLEMDS "debugfs -c -R \\\"dump lov_objid $TMP/lov_objid.new1\\\" $MDSDEV"
1356         do_facet $SINGLEMDS "od -Ax -td8 $TMP/lov_objid.new1"
1357         umount_client $MOUNT
1358         stop_mds
1359         [ "$ERROR" = "y" ] && error "old and new files are different after sync" || true
1360
1361         log "files compared the same"
1362         cleanup
1363 }
1364 run_test 38 "MDS recreates missing lov_objid file from OST data"
1365
1366 test_39() {
1367         PTLDEBUG=+malloc
1368         setup
1369         cleanup
1370         perl $SRCDIR/leak_finder.pl $TMP/debug 2>&1 | egrep '*** Leak:' && 
1371                 error "memory leak detected" || true
1372 }
1373 run_test 39 "leak_finder recognizes both LUSTRE and LNET malloc messages"
1374
1375 test_40() { # bug 15759
1376         start_ost
1377         #define OBD_FAIL_TGT_TOOMANY_THREADS     0x706
1378         do_facet $SINGLEMDS "sysctl -w lustre.fail_loc=0x80000706"
1379         start_mds
1380         cleanup
1381 }
1382 run_test 40 "race during service thread startup"
1383
1384 test_41() { #bug 14134
1385         local rc
1386         local dev=${SINGLEMDS}_dev
1387         local MDSDEV=${!dev}
1388
1389         start $SINGLEMDS $MDSDEV $MDS_MOUNT_OPTS -o nosvc -n
1390         start ost1 `ostdevname 1` $OST_MOUNT_OPTS
1391         start $SINGLEMDS $MDSDEV $MDS_MOUNT_OPTS -o nomgs
1392         mkdir -p $MOUNT
1393         mount_client $MOUNT || return 1
1394         sleep 5
1395
1396         echo "blah blah" > $MOUNT/$tfile
1397         cat $MOUNT/$tfile
1398
1399         umount_client $MOUNT
1400         stop ost1 -f || return 201
1401         stop_mds -f || return 202
1402         stop_mds -f || return 203
1403         unload_modules || return 204
1404         return $rc
1405 }
1406 run_test 41 "mount mds with --nosvc and --nomgs"
1407
1408 test_42() { #bug 14693
1409         setup
1410         check_mount || return 2
1411         do_facet client lctl conf_param lustre.llite.some_wrong_param=10
1412         umount_client $MOUNT
1413         mount_client $MOUNT || return 1
1414         cleanup
1415         return 0
1416 }
1417 run_test 42 "invalid config param should not prevent client from mounting"
1418
1419 umount_client $MOUNT
1420 cleanup_nocli
1421 cleanup_gss
1422
1423 test_45() { #17310
1424         setup
1425         check_mount || return 2
1426         stop_mds
1427         df -h $MOUNT &
1428         log "sleep 60 sec"
1429         sleep 60
1430 #define OBD_FAIL_PTLRPC_LONG_UNLINK   0x50f
1431         do_facet client "lctl set_param fail_loc=0x50f"
1432         log "sleep 10 sec"
1433         sleep 10
1434         manual_umount_client --force || return 3
1435         do_facet client "lctl set_param fail_loc=0x0"
1436         start_mds
1437         mount_client $MOUNT || return 4
1438         cleanup
1439         return 0
1440 }
1441 run_test 45 "long unlink handling in ptlrpcd"
1442
1443
1444 equals_msg `basename $0`: test complete
1445 [ -f "$TESTSUITELOG" ] && cat $TESTSUITELOG || true