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