Whamcloud - gitweb
101ffeec37e2c4573df13d6e8909c385b09540f5
[fs/lustre-release.git] / lustre / tests / conf-sanity.sh
1 #!/bin/bash
2
3 # FIXME - there is no reason to use all of these different return codes,
4 #   espcially when most of them are mapped to something else anyway.
5 #   The tests should use error() to describe the failure more clearly,
6 #   and reduce the need to look into the tests to see what failed.
7
8 set -e
9
10 ONLY=${ONLY:-"$*"}
11
12 # bug number for skipped test:     LU-2828
13 ALWAYS_EXCEPT="$CONF_SANITY_EXCEPT 59 64"
14 # UPDATE THE COMMENT ABOVE WITH BUG NUMBERS WHEN CHANGING ALWAYS_EXCEPT!
15
16 is_sles11()                                             # LU-2181
17 {
18         if [ -r /etc/SuSE-release ]
19         then
20                 local vers=`grep VERSION /etc/SuSE-release | awk '{print $3}'`
21                 local patchlev=`grep PATCHLEVEL /etc/SuSE-release \
22                         | awk '{print $3}'`
23                 if [ $vers -eq 11 ] && [ $patchlev -eq 2 ]
24                 then
25                         return 0
26                 fi
27         fi
28         return 1
29 }
30
31 if is_sles11; then                                      # LU-2181
32         ALWAYS_EXCEPT="$ALWAYS_EXCEPT 23a 34b"
33 fi
34
35 if [ "$FAILURE_MODE" = "HARD" ]; then
36         CONFIG_EXCEPTIONS="24a " && \
37         echo "Except the tests: $CONFIG_EXCEPTIONS for FAILURE_MODE=$FAILURE_MODE, bug 23573" && \
38         ALWAYS_EXCEPT="$ALWAYS_EXCEPT $CONFIG_EXCEPTIONS"
39 fi
40
41 # bug number for skipped test:
42 # a tool to create lustre filesystem images
43 ALWAYS_EXCEPT="32newtarball $ALWAYS_EXCEPT"
44
45 SRCDIR=`dirname $0`
46 PATH=$PWD/$SRCDIR:$SRCDIR:$SRCDIR/../utils:$PATH
47
48 PTLDEBUG=${PTLDEBUG:--1}
49 SAVE_PWD=$PWD
50 LUSTRE=${LUSTRE:-`dirname $0`/..}
51 RLUSTRE=${RLUSTRE:-$LUSTRE}
52 export MULTIOP=${MULTIOP:-multiop}
53
54 . $LUSTRE/tests/test-framework.sh
55 init_test_env $@
56 . ${CONFIG:=$LUSTRE/tests/cfg/$NAME.sh}
57
58 # use small MDS + OST size to speed formatting time
59 # do not use too small MDSSIZE/OSTSIZE, which affect the default jouranl size
60 # STORED_MDSSIZE is used in test_18
61 STORED_MDSSIZE=$MDSSIZE
62 STORED_OSTSIZE=$OSTSIZE
63 MDSSIZE=200000
64 OSTSIZE=200000
65
66 if ! combined_mgs_mds; then
67     # bug number for skipped test:    23954
68     ALWAYS_EXCEPT="$ALWAYS_EXCEPT       24b"
69 fi
70
71 # pass "-E lazy_itable_init" to mke2fs to speed up the formatting time
72 if [[ "$LDISKFS_MKFS_OPTS" != *lazy_itable_init* ]]; then
73         LDISKFS_MKFS_OPTS=$(csa_add "$LDISKFS_MKFS_OPTS" -E lazy_itable_init)
74 fi
75
76 [ $(facet_fstype $SINGLEMDS) = "zfs" ] &&
77 # bug number for skipped test:        LU-2778 LU-4444
78         ALWAYS_EXCEPT="$ALWAYS_EXCEPT 57b     69"
79
80 init_logging
81
82 #
83 require_dsh_mds || exit 0
84 require_dsh_ost || exit 0
85 #
86 [ "$SLOW" = "no" ] && EXCEPT_SLOW="30a 31 45 69"
87
88
89 assert_DIR
90
91 gen_config() {
92         # The MGS must be started before the OSTs for a new fs, so start
93         # and stop to generate the startup logs.
94         start_mds
95         start_ost
96         wait_osc_import_state mds ost FULL
97         stop_ost
98         stop_mds
99 }
100
101 reformat_and_config() {
102         reformat
103         if ! combined_mgs_mds ; then
104                 start_mgs
105         fi
106         gen_config
107 }
108
109 writeconf_or_reformat() {
110         # There are at most 2 OSTs for write_conf test
111         # who knows if/where $TUNEFS is installed?
112         # Better reformat if it fails...
113         writeconf_all $MDSCOUNT 2 ||
114                 { echo "tunefs failed, reformatting instead" &&
115                   reformat_and_config && return 0; }
116         return 0
117 }
118
119 reformat() {
120         formatall
121 }
122
123 start_mgs () {
124         echo "start mgs"
125         start mgs $(mgsdevname) $MGS_MOUNT_OPTS
126 }
127
128 start_mdt() {
129         local num=$1
130         local facet=mds$num
131         local dev=$(mdsdevname $num)
132         shift 1
133
134         echo "start mds service on `facet_active_host $facet`"
135         start $facet ${dev} $MDS_MOUNT_OPTS $@ || return 94
136 }
137
138 stop_mdt() {
139         local num=$1
140         local facet=mds$num
141         local dev=$(mdsdevname $num)
142         shift 1
143
144         echo "stop mds service on `facet_active_host $facet`"
145         # These tests all use non-failover stop
146         stop $facet -f  || return 97
147 }
148
149 start_mds() {
150         local num
151
152         for num in $(seq $MDSCOUNT); do
153                 start_mdt $num $@ || return 94
154         done
155 }
156
157 start_mgsmds() {
158         if ! combined_mgs_mds ; then
159                 start_mgs
160         fi
161         start_mds $@
162 }
163
164 stop_mds() {
165         local num
166         for num in $(seq $MDSCOUNT); do
167                 stop_mdt $num || return 97
168         done
169 }
170
171 stop_mgs() {
172        echo "stop mgs service on `facet_active_host mgs`"
173        # These tests all use non-failover stop
174        stop mgs -f  || return 97
175 }
176
177 start_ost() {
178         echo "start ost1 service on `facet_active_host ost1`"
179         start ost1 `ostdevname 1` $OST_MOUNT_OPTS $@ || return 95
180 }
181
182 stop_ost() {
183         echo "stop ost1 service on `facet_active_host ost1`"
184         # These tests all use non-failover stop
185         stop ost1 -f  || return 98
186 }
187
188 start_ost2() {
189         echo "start ost2 service on `facet_active_host ost2`"
190         start ost2 `ostdevname 2` $OST_MOUNT_OPTS $@ || return 92
191 }
192
193 stop_ost2() {
194         echo "stop ost2 service on `facet_active_host ost2`"
195         # These tests all use non-failover stop
196         stop ost2 -f  || return 93
197 }
198
199 mount_client() {
200         local MOUNTPATH=$1
201         echo "mount $FSNAME on ${MOUNTPATH}....."
202         zconf_mount `hostname` $MOUNTPATH  || return 96
203 }
204
205 remount_client() {
206         local mountopt="remount,$1"
207         local MOUNTPATH=$2
208         echo "remount '$1' lustre on ${MOUNTPATH}....."
209         zconf_mount `hostname`  $MOUNTPATH "$mountopt"  || return 96
210 }
211
212 umount_client() {
213         local MOUNTPATH=$1
214         echo "umount lustre on ${MOUNTPATH}....."
215         zconf_umount `hostname` $MOUNTPATH || return 97
216 }
217
218 manual_umount_client(){
219         local rc
220         local FORCE=$1
221         echo "manual umount lustre on ${MOUNT}...."
222         do_facet client "umount -d ${FORCE} $MOUNT"
223         rc=$?
224         return $rc
225 }
226
227 setup() {
228         start_mds || error "MDT start failed"
229         start_ost || error "OST start failed"
230         mount_client $MOUNT || error "client start failed"
231         client_up || error "client_up failed"
232 }
233
234 setup_noconfig() {
235         start_mgsmds
236         start_ost
237         mount_client $MOUNT
238 }
239
240 unload_modules_conf () {
241         if combined_mgs_mds || ! local_mode; then
242                 unload_modules || return 1
243         fi
244 }
245
246 cleanup_nocli() {
247         stop_ost || return 202
248         stop_mds || return 201
249         unload_modules_conf || return 203
250 }
251
252 cleanup() {
253         umount_client $MOUNT || return 200
254         cleanup_nocli || return $?
255 }
256
257 check_mount() {
258         do_facet client "cp /etc/passwd $DIR/a" || return 71
259         do_facet client "rm $DIR/a" || return 72
260         # make sure lustre is actually mounted (touch will block,
261         # but grep won't, so do it after)
262         do_facet client "grep $MOUNT' ' /proc/mounts > /dev/null" || return 73
263         echo "setup single mount lustre success"
264 }
265
266 check_mount2() {
267         do_facet client "touch $DIR/a" || return 71
268         do_facet client "rm $DIR/a" || return 72
269         do_facet client "touch $DIR2/a" || return 73
270         do_facet client "rm $DIR2/a" || return 74
271         echo "setup double mount lustre success"
272 }
273
274 build_test_filter
275
276 if [ "$ONLY" == "setup" ]; then
277         setup
278         exit
279 fi
280
281 if [ "$ONLY" == "cleanup" ]; then
282         cleanup
283         exit
284 fi
285
286 init_gss
287
288 #create single point mountpoint
289
290 reformat_and_config
291
292 test_0() {
293         setup
294         check_mount || return 41
295         cleanup || return $?
296 }
297 run_test 0 "single mount setup"
298
299 test_1() {
300         start_mds || error "MDT start failed"
301         start_ost
302         echo "start ost second time..."
303         start_ost && error "2nd OST start should fail"
304         mount_client $MOUNT || error "client start failed"
305         check_mount || return 42
306         cleanup || return $?
307 }
308 run_test 1 "start up ost twice (should return errors)"
309
310 test_2() {
311         start_mdt 1
312         echo "start mds second time.."
313         start_mdt 1 && error "2nd MDT start should fail"
314         start_ost
315         mount_client $MOUNT
316         check_mount || return 43
317         cleanup || return $?
318 }
319 run_test 2 "start up mds twice (should return err)"
320
321 test_3() {
322         setup
323         #mount.lustre returns an error if already in mtab
324         mount_client $MOUNT && error "2nd client mount should fail"
325         check_mount || return 44
326         cleanup || return $?
327 }
328 run_test 3 "mount client twice (should return err)"
329
330 test_4() {
331         setup
332         touch $DIR/$tfile || return 85
333         stop_ost -f
334         cleanup
335         eno=$?
336         # ok for ost to fail shutdown
337         if [ 202 -ne $eno ]; then
338                 return $eno;
339         fi
340         return 0
341 }
342 run_test 4 "force cleanup ost, then cleanup"
343
344 test_5a() {     # was test_5
345         setup
346         touch $DIR/$tfile || return 1
347         fuser -m -v $MOUNT && echo "$MOUNT is in use by user space process."
348
349         stop_mds -f || return 2
350
351         # cleanup may return an error from the failed
352         # disconnects; for now I'll consider this successful
353         # if all the modules have unloaded.
354         umount -d $MOUNT &
355         UMOUNT_PID=$!
356         sleep 6
357         echo "killing umount"
358         kill -TERM $UMOUNT_PID
359         echo "waiting for umount to finish"
360         wait $UMOUNT_PID
361         if grep " $MOUNT " /proc/mounts; then
362                 echo "test 5: /proc/mounts after failed umount"
363                 umount -f $MOUNT &
364                 UMOUNT_PID=$!
365                 sleep 2
366                 echo "killing umount"
367                 kill -TERM $UMOUNT_PID
368                 echo "waiting for umount to finish"
369                 wait $UMOUNT_PID
370                 grep " $MOUNT " /proc/mounts && echo "test 5: /proc/mounts after second umount" && return 11
371         fi
372
373         manual_umount_client
374         # stop_mds is a no-op here, and should not fail
375         cleanup_nocli || return $?
376         # df may have lingering entry
377         manual_umount_client
378         # mtab may have lingering entry
379         local WAIT=0
380         local MAX_WAIT=20
381         local sleep=1
382         while [ "$WAIT" -ne "$MAX_WAIT" ]; do
383                 sleep $sleep
384                 grep -q $MOUNT" " /etc/mtab || break
385                 echo "Waiting /etc/mtab updated ... "
386                 WAIT=$(( WAIT + sleep))
387         done
388         [ "$WAIT" -eq "$MAX_WAIT" ] && error "/etc/mtab is not updated in $WAIT secs"
389         echo "/etc/mtab updated in $WAIT secs"
390 }
391 run_test 5a "force cleanup mds, then cleanup"
392
393 cleanup_5b () {
394         trap 0
395         start_mgs
396 }
397
398 test_5b() {
399         grep " $MOUNT " /etc/mtab && \
400                 error false "unexpected entry in mtab before mount" && return 10
401
402         local rc=0
403         start_ost
404         if ! combined_mgs_mds ; then
405                 trap cleanup_5b EXIT ERR
406                 start_mds
407                 stop mgs
408         fi
409
410         [ -d $MOUNT ] || mkdir -p $MOUNT
411         mount_client $MOUNT && rc=1
412         grep " $MOUNT " /etc/mtab && \
413                 error "$MOUNT entry in mtab after failed mount" && rc=11
414         umount_client $MOUNT
415         # stop_mds is a no-op here, and should not fail
416         cleanup_nocli || rc=$?
417         if ! combined_mgs_mds ; then
418                 cleanup_5b
419         fi
420         return $rc
421 }
422 run_test 5b "Try to start a client with no MGS (should return errs)"
423
424 test_5c() {
425         grep " $MOUNT " /etc/mtab && \
426                 error false "unexpected entry in mtab before mount" && return 10
427
428         local rc=0
429         start_mds
430         start_ost
431         [ -d $MOUNT ] || mkdir -p $MOUNT
432         local oldfs="${FSNAME}"
433         FSNAME="wrong.${FSNAME}"
434         mount_client $MOUNT || :
435         FSNAME=${oldfs}
436         grep " $MOUNT " /etc/mtab && \
437                 error "$MOUNT entry in mtab after failed mount" && rc=11
438         umount_client $MOUNT
439         cleanup_nocli  || rc=$?
440         return $rc
441 }
442 run_test 5c "cleanup after failed mount (bug 2712) (should return errs)"
443
444 test_5d() {
445         grep " $MOUNT " /etc/mtab && \
446                 error false "unexpected entry in mtab before mount" && return 10
447
448         local rc=0
449         start_ost
450         start_mds
451         stop_ost -f
452         mount_client $MOUNT || rc=1
453         cleanup  || rc=$?
454         grep " $MOUNT " /etc/mtab && \
455                 error "$MOUNT entry in mtab after unmount" && rc=11
456         return $rc
457 }
458 run_test 5d "mount with ost down"
459
460 test_5e() {
461         grep " $MOUNT " /etc/mtab && \
462                 error false "unexpected entry in mtab before mount" && return 10
463
464         local rc=0
465         start_mds
466         start_ost
467
468 #define OBD_FAIL_PTLRPC_DELAY_SEND       0x506
469         do_facet client "lctl set_param fail_loc=0x80000506"
470         mount_client $MOUNT || echo "mount failed (not fatal)"
471         cleanup  || rc=$?
472         grep " $MOUNT " /etc/mtab && \
473                 error "$MOUNT entry in mtab after unmount" && rc=11
474         return $rc
475 }
476 run_test 5e "delayed connect, don't crash (bug 10268)"
477
478 test_5f() {
479         if combined_mgs_mds ; then
480                 skip "combined mgs and mds"
481                 return 0
482         fi
483
484         grep " $MOUNT " /etc/mtab && \
485                 error false "unexpected entry in mtab before mount" && return 10
486
487         local rc=0
488         start_ost
489         [ -d $MOUNT ] || mkdir -p $MOUNT
490         mount_client $MOUNT &
491         local pid=$!
492         echo client_mount pid is $pid
493
494         sleep 5
495
496         if ! ps -f -p $pid >/dev/null; then
497                 wait $pid
498                 rc=$?
499                 grep " $MOUNT " /etc/mtab && echo "test 5f: mtab after mount"
500                 error "mount returns $rc, expected to hang"
501                 rc=11
502                 cleanup || rc=$?
503                 return $rc
504         fi
505
506         # start mds
507         start_mds
508
509         # mount should succeed after start mds
510         wait $pid
511         rc=$?
512         [ $rc -eq 0 ] || error "mount returned $rc"
513         grep " $MOUNT " /etc/mtab && echo "test 5f: mtab after mount"
514         cleanup || return $?
515         return $rc
516 }
517 run_test 5f "mds down, cleanup after failed mount (bug 2712)"
518
519 test_6() {
520         setup
521         manual_umount_client
522         mount_client ${MOUNT} || return 87
523         touch $DIR/a || return 86
524         cleanup  || return $?
525 }
526 run_test 6 "manual umount, then mount again"
527
528 test_7() {
529         setup
530         manual_umount_client
531         cleanup_nocli || return $?
532 }
533 run_test 7 "manual umount, then cleanup"
534
535 test_8() {
536         setup
537         mount_client $MOUNT2
538         check_mount2 || return 45
539         umount_client $MOUNT2
540         cleanup  || return $?
541 }
542 run_test 8 "double mount setup"
543
544 test_9() {
545         start_ost
546
547         do_facet ost1 lctl set_param debug=\'inode trace\' || return 1
548         do_facet ost1 lctl set_param subsystem_debug=\'mds ost\' || return 1
549
550         CHECK_PTLDEBUG="`do_facet ost1 lctl get_param -n debug`"
551         if [ "$CHECK_PTLDEBUG" ] && { \
552            [ "$CHECK_PTLDEBUG" = "trace inode warning error emerg console" ] ||
553            [ "$CHECK_PTLDEBUG" = "trace inode" ]; }; then
554            echo "lnet.debug success"
555         else
556            echo "lnet.debug: want 'trace inode', have '$CHECK_PTLDEBUG'"
557            return 1
558         fi
559         CHECK_SUBSYS="`do_facet ost1 lctl get_param -n subsystem_debug`"
560         if [ "$CHECK_SUBSYS" ] && [ "$CHECK_SUBSYS" = "mds ost" ]; then
561            echo "lnet.subsystem_debug success"
562         else
563            echo "lnet.subsystem_debug: want 'mds ost', have '$CHECK_SUBSYS'"
564            return 1
565         fi
566         stop_ost || return $?
567 }
568 run_test 9 "test ptldebug and subsystem for mkfs"
569
570 is_blkdev () {
571         local facet=$1
572         local dev=$2
573         local size=${3:-""}
574
575         local rc=0
576         do_facet $facet "test -b $dev" || rc=1
577         if [[ "$size" ]]; then
578                 local in=$(do_facet $facet "dd if=$dev of=/dev/null bs=1k count=1 skip=$size 2>&1" |\
579                         awk '($3 == "in") { print $1 }')
580                 [[ $in  = "1+0" ]] || rc=1
581         fi
582         return $rc
583 }
584
585 #
586 # Test 16 was to "verify that lustre will correct the mode of OBJECTS".
587 # But with new MDS stack we don't care about the mode of local objects
588 # anymore, so this test is removed. See bug 22944 for more details.
589 #
590
591 test_17() {
592         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
593                 skip "Only applicable to ldiskfs-based MDTs"
594                 return
595         fi
596
597         setup
598         check_mount || return 41
599         cleanup || return $?
600
601         echo "Remove mds config log"
602         if ! combined_mgs_mds ; then
603                 stop mgs
604         fi
605
606         do_facet mgs "$DEBUGFS -w -R 'unlink CONFIGS/$FSNAME-MDT0000' \
607                 $(mgsdevname) || return \$?" || return $?
608
609         if ! combined_mgs_mds ; then
610                 start_mgs
611         fi
612
613         start_ost
614         start_mds && return 42
615         reformat_and_config
616 }
617 run_test 17 "Verify failed mds_postsetup won't fail assertion (2936) (should return errs)"
618
619 test_18() {
620         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
621                 skip "Only applicable to ldiskfs-based MDTs"
622                 return
623         fi
624
625         local MDSDEV=$(mdsdevname ${SINGLEMDS//mds/})
626
627         local MIN=2000000
628
629         local OK=
630         # check if current MDSSIZE is large enough
631         [ $MDSSIZE -ge $MIN ] && OK=1 && myMDSSIZE=$MDSSIZE && \
632                 log "use MDSSIZE=$MDSSIZE"
633
634         # check if the global config has a large enough MDSSIZE
635         [ -z "$OK" -a ! -z "$STORED_MDSSIZE" ] && [ $STORED_MDSSIZE -ge $MIN ] && \
636                 OK=1 && myMDSSIZE=$STORED_MDSSIZE && \
637                 log "use STORED_MDSSIZE=$STORED_MDSSIZE"
638
639         # check if the block device is large enough
640         is_blkdev $SINGLEMDS $MDSDEV $MIN
641         local large_enough=$?
642         if [ -n "$OK" ]; then
643                 [ $large_enough -ne 0 ] && OK=""
644         else
645                 [ $large_enough -eq 0 ] && OK=1 && myMDSSIZE=$MIN &&
646                         log "use device $MDSDEV with MIN=$MIN"
647         fi
648
649         # check if a loopback device has enough space for fs metadata (5%)
650
651         if [ -z "$OK" ]; then
652                 local SPACE=$(do_facet $SINGLEMDS "[ -f $MDSDEV -o ! -e $MDSDEV ] && df -P \\\$(dirname $MDSDEV)" |
653                         awk '($1 != "Filesystem") {print $4}')
654                 ! [ -z "$SPACE" ]  &&  [ $SPACE -gt $((MIN / 20)) ] && \
655                         OK=1 && myMDSSIZE=$MIN && \
656                         log "use file $MDSDEV with MIN=$MIN"
657         fi
658
659         [ -z "$OK" ] && skip_env "$MDSDEV too small for ${MIN}kB MDS" && return
660
661
662         echo "mount mds with large journal..."
663
664         local OLD_MDSSIZE=$MDSSIZE
665         MDSSIZE=$myMDSSIZE
666
667         reformat_and_config
668         echo "mount lustre system..."
669         setup
670         check_mount || return 41
671
672         echo "check journal size..."
673         local FOUNDSIZE=$(do_facet $SINGLEMDS "$DEBUGFS -c -R 'stat <8>' $MDSDEV" | awk '/Size: / { print $NF; exit;}')
674         if [ $FOUNDSIZE -gt $((32 * 1024 * 1024)) ]; then
675                 log "Success: mkfs creates large journals. Size: $((FOUNDSIZE >> 20))M"
676         else
677                 error "expected journal size > 32M, found $((FOUNDSIZE >> 20))M"
678         fi
679
680         cleanup || return $?
681
682         MDSSIZE=$OLD_MDSSIZE
683         reformat_and_config
684 }
685 run_test 18 "check mkfs creates large journals"
686
687 test_19a() {
688         start_mds || return 1
689         stop_mds -f || return 2
690 }
691 run_test 19a "start/stop MDS without OSTs"
692
693 test_19b() {
694         start_ost || return 1
695         stop_ost -f || return 2
696 }
697 run_test 19b "start/stop OSTs without MDS"
698
699 test_20() {
700         # first format the ost/mdt
701         start_mds
702         start_ost
703         mount_client $MOUNT
704         check_mount || return 43
705         rm -f $DIR/$tfile
706         remount_client ro $MOUNT || return 44
707         touch $DIR/$tfile && echo "$DIR/$tfile created incorrectly" && return 45
708         [ -e $DIR/$tfile ] && echo "$DIR/$tfile exists incorrectly" && return 46
709         remount_client rw $MOUNT || return 47
710         touch $DIR/$tfile
711         [ ! -f $DIR/$tfile ] && echo "$DIR/$tfile missing" && return 48
712         MCNT=`grep -c $MOUNT /etc/mtab`
713         [ "$MCNT" -ne 1 ] && echo "$MOUNT in /etc/mtab $MCNT times" && return 49
714         umount_client $MOUNT
715         stop_mds
716         stop_ost
717 }
718 run_test 20 "remount ro,rw mounts work and doesn't break /etc/mtab"
719
720 test_21a() {
721         start_mds
722         start_ost
723         wait_osc_import_state mds ost FULL
724         stop_ost
725         stop_mds
726 }
727 run_test 21a "start mds before ost, stop ost first"
728
729 test_21b() {
730         start_ost
731         start_mds
732         wait_osc_import_state mds ost FULL
733         stop_mds
734         stop_ost
735 }
736 run_test 21b "start ost before mds, stop mds first"
737
738 test_21c() {
739         start_ost
740         start_mds
741         start_ost2
742         wait_osc_import_state mds ost2 FULL
743         stop_ost
744         stop_ost2
745         stop_mds
746         #writeconf to remove all ost2 traces for subsequent tests
747         writeconf_or_reformat
748 }
749 run_test 21c "start mds between two osts, stop mds last"
750
751 test_21d() {
752         if combined_mgs_mds ; then
753                 skip "need separate mgs device" && return 0
754         fi
755         stopall
756
757         reformat
758
759         start_mgs
760         start_ost
761         start_ost2
762         start_mds
763         wait_osc_import_state mds ost2 FULL
764
765         stop_ost
766         stop_ost2
767         stop_mds
768         stop_mgs
769         #writeconf to remove all ost2 traces for subsequent tests
770         writeconf_or_reformat
771         start_mgs
772 }
773 run_test 21d "start mgs then ost and then mds"
774
775 test_22() {
776         start_mds
777
778         echo Client mount with ost in logs, but none running
779         start_ost
780         # wait until mds connected to ost and open client connection
781         wait_osc_import_state mds ost FULL
782         stop_ost
783         mount_client $MOUNT
784         # check_mount will block trying to contact ost
785         mcreate $DIR/$tfile || return 40
786         rm -f $DIR/$tfile || return 42
787         umount_client $MOUNT
788         pass
789
790         echo Client mount with a running ost
791         start_ost
792         if $GSS; then
793                 # if gss enabled, wait full time to let connection from
794                 # mds to ost be established, due to the mismatch between
795                 # initial connect timeout and gss context negotiation timeout.
796                 # This perhaps could be remove after AT landed.
797                 echo "sleep $((TIMEOUT + TIMEOUT + TIMEOUT))s"
798                 sleep $((TIMEOUT + TIMEOUT + TIMEOUT))
799         fi
800         mount_client $MOUNT
801         wait_osc_import_state mds ost FULL
802         wait_osc_import_state client ost FULL
803         check_mount || return 41
804         pass
805
806         cleanup
807 }
808 run_test 22 "start a client before osts (should return errs)"
809
810 test_23a() {    # was test_23
811         setup
812         # fail mds
813         stop $SINGLEMDS
814         # force down client so that recovering mds waits for reconnect
815         local running=$(grep -c $MOUNT /proc/mounts) || true
816         if [ $running -ne 0 ]; then
817                 echo "Stopping client $MOUNT (opts: -f)"
818                 umount -f $MOUNT
819         fi
820
821         # enter recovery on mds
822         start_mds
823         # try to start a new client
824         mount_client $MOUNT &
825         sleep 5
826         MOUNT_PID=$(ps -ef | grep "t lustre" | grep -v grep | awk '{print $2}')
827         MOUNT_LUSTRE_PID=`ps -ef | grep mount.lustre | grep -v grep | awk '{print $2}'`
828         echo mount pid is ${MOUNT_PID}, mount.lustre pid is ${MOUNT_LUSTRE_PID}
829         ps --ppid $MOUNT_PID
830         ps --ppid $MOUNT_LUSTRE_PID
831         echo "waiting for mount to finish"
832         ps -ef | grep mount
833         # "ctrl-c" sends SIGINT but it usually (in script) does not work on child process
834         # SIGTERM works but it does not spread to offspring processses
835         kill -s TERM $MOUNT_PID
836         kill -s TERM $MOUNT_LUSTRE_PID
837         # we can not wait $MOUNT_PID because it is not a child of this shell
838         local PID1
839         local PID2
840         local WAIT=0
841         local MAX_WAIT=30
842         local sleep=1
843         while [ "$WAIT" -lt "$MAX_WAIT" ]; do
844                 sleep $sleep
845                 PID1=$(ps -ef | awk '{print $2}' | grep -w $MOUNT_PID)
846                 PID2=$(ps -ef | awk '{print $2}' | grep -w $MOUNT_LUSTRE_PID)
847                 echo PID1=$PID1
848                 echo PID2=$PID2
849                 [ -z "$PID1" -a -z "$PID2" ] && break
850                 echo "waiting for mount to finish ... "
851                 WAIT=$(( WAIT + sleep))
852         done
853         if [ "$WAIT" -eq "$MAX_WAIT" ]; then
854                 error "MOUNT_PID $MOUNT_PID and "\
855                 "MOUNT_LUSTRE_PID $MOUNT_LUSTRE_PID still not killed in $WAIT secs"
856                 ps -ef | grep mount
857         fi
858         stop_mds || error "stopping MDSes failed"
859         stop_ost || error "stopping OSSes failed"
860 }
861 run_test 23a "interrupt client during recovery mount delay"
862
863 umount_client $MOUNT
864 cleanup_nocli
865
866 test_23b() {    # was test_23
867         start_mds
868         start_ost
869         # Simulate -EINTR during mount OBD_FAIL_LDLM_CLOSE_THREAD
870         lctl set_param fail_loc=0x80000313
871         mount_client $MOUNT
872         cleanup
873 }
874 run_test 23b "Simulate -EINTR during mount"
875
876 fs2mds_HOST=$mds_HOST
877 fs2ost_HOST=$ost_HOST
878
879 MDSDEV1_2=$fs2mds_DEV
880 OSTDEV1_2=$fs2ost_DEV
881 OSTDEV2_2=$fs3ost_DEV
882
883 cleanup_fs2() {
884         trap 0
885         echo "umount $MOUNT2 ..."
886         umount $MOUNT2 || true
887         echo "stopping fs2mds ..."
888         stop fs2mds -f || true
889         echo "stopping fs2ost ..."
890         stop fs2ost -f || true
891 }
892
893 test_24a() {
894         local MDSDEV=$(mdsdevname ${SINGLEMDS//mds/})
895
896         if [ -z "$fs2ost_DEV" -o -z "$fs2mds_DEV" ]; then
897                 is_blkdev $SINGLEMDS $MDSDEV && \
898                 skip_env "mixed loopback and real device not working" && return
899         fi
900
901         [ -n "$ost1_HOST" ] && fs2ost_HOST=$ost1_HOST
902
903         local fs2mdsdev=$(mdsdevname 1_2)
904         local fs2ostdev=$(ostdevname 1_2)
905         local fs2mdsvdev=$(mdsvdevname 1_2)
906         local fs2ostvdev=$(ostvdevname 1_2)
907
908         # test 8-char fsname as well
909         local FSNAME2=test1234
910
911         add fs2mds $(mkfs_opts mds1 ${fs2mdsdev} ) --nomgs --mgsnode=$MGSNID \
912                 --fsname=${FSNAME2} --reformat $fs2mdsdev $fs2mdsvdev || exit 10
913
914         add fs2ost $(mkfs_opts ost1 ${fs2ostdev}) --fsname=${FSNAME2} \
915                 --reformat $fs2ostdev $fs2ostvdev || exit 10
916
917         setup
918         start fs2mds $fs2mdsdev $MDS_MOUNT_OPTS && trap cleanup_fs2 EXIT INT
919         start fs2ost $fs2ostdev $OST_MOUNT_OPTS
920         mkdir -p $MOUNT2
921         $MOUNT_CMD $MGSNID:/${FSNAME2} $MOUNT2 || return 1
922         # 1 still works
923         check_mount || return 2
924         # files written on 1 should not show up on 2
925         cp /etc/passwd $DIR/$tfile
926         sleep 10
927         [ -e $MOUNT2/$tfile ] && error "File bleed" && return 7
928         # 2 should work
929         sleep 5
930         cp /etc/passwd $MOUNT2/b || return 3
931         rm $MOUNT2/b || return 4
932         # 2 is actually mounted
933         grep $MOUNT2' ' /proc/mounts > /dev/null || return 5
934         # failover
935         facet_failover fs2mds
936         facet_failover fs2ost
937         df
938         umount_client $MOUNT
939         # the MDS must remain up until last MDT
940         stop_mds
941         MDS=$(do_facet $SINGLEMDS "lctl get_param -n devices" | awk '($3 ~ "mdt" && $4 ~ "MDT") { print $4 }' | head -1)
942         [ -z "$MDS" ] && error "No MDT" && return 8
943         cleanup_fs2
944         cleanup_nocli || return 6
945 }
946 run_test 24a "Multiple MDTs on a single node"
947
948 test_24b() {
949         local MDSDEV=$(mdsdevname ${SINGLEMDS//mds/})
950
951         if [ -z "$fs2mds_DEV" ]; then
952                 local dev=${SINGLEMDS}_dev
953                 local MDSDEV=${!dev}
954                 is_blkdev $SINGLEMDS $MDSDEV && \
955                 skip_env "mixed loopback and real device not working" && return
956         fi
957
958         local fs2mdsdev=$(mdsdevname 1_2)
959         local fs2mdsvdev=$(mdsvdevname 1_2)
960
961         add fs2mds $(mkfs_opts mds1 ${fs2mdsdev} ) --mgs --fsname=${FSNAME}2 \
962                 --reformat $fs2mdsdev $fs2mdsvdev || exit 10
963         setup
964         start fs2mds $fs2mdsdev $MDS_MOUNT_OPTS && return 2
965         stop fs2mds -f
966         cleanup || return 6
967 }
968 run_test 24b "Multiple MGSs on a single node (should return err)"
969
970 test_25() {
971         setup
972         check_mount || return 2
973         local MODULES=$($LCTL modules | awk '{ print $2 }')
974         rmmod $MODULES 2>/dev/null || true
975         cleanup || return 6
976 }
977 run_test 25 "Verify modules are referenced"
978
979 test_26() {
980     load_modules
981     # we need modules before mount for sysctl, so make sure...
982     do_facet $SINGLEMDS "lsmod | grep -q lustre || modprobe lustre"
983 #define OBD_FAIL_MDS_FS_SETUP            0x135
984     do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000135"
985     start_mds && echo MDS started && return 1
986     lctl get_param -n devices
987     DEVS=$(lctl get_param -n devices | egrep -v MG | wc -l)
988     [ $DEVS -gt 0 ] && return 2
989     # start mds to drop writeconf setting
990     start_mds || return 3
991     stop_mds || return 4
992     unload_modules_conf || return $?
993 }
994 run_test 26 "MDT startup failure cleans LOV (should return errs)"
995
996 test_27a() {
997         start_ost || return 1
998         start_mds || return 2
999         echo "Requeue thread should have started: "
1000         ps -e | grep ll_cfg_requeue
1001         set_conf_param_and_check ost1                                         \
1002            "lctl get_param -n obdfilter.$FSNAME-OST0000.client_cache_seconds" \
1003            "$FSNAME-OST0000.ost.client_cache_seconds" || return 3
1004         cleanup_nocli
1005 }
1006 run_test 27a "Reacquire MGS lock if OST started first"
1007
1008 test_27b() {
1009         # FIXME. ~grev
1010         setup
1011         local device=$(do_facet $SINGLEMDS "lctl get_param -n devices" |
1012                         awk '($3 ~ "mdt" && $4 ~ "MDT0000") { print $4 }')
1013
1014         facet_failover $SINGLEMDS
1015         set_conf_param_and_check $SINGLEMDS                             \
1016                 "lctl get_param -n mdt.$device.identity_acquire_expire" \
1017                 "$device.mdt.identity_acquire_expire" || return 3
1018         set_conf_param_and_check client                                 \
1019                 "lctl get_param -n mdc.$device-mdc-*.max_rpcs_in_flight"\
1020                 "$device.mdc.max_rpcs_in_flight" || return 4
1021         check_mount
1022         cleanup
1023 }
1024 run_test 27b "Reacquire MGS lock after failover"
1025
1026 test_28() {
1027         setup
1028         TEST="lctl get_param -n llite.$FSNAME-*.max_read_ahead_whole_mb"
1029         PARAM="$FSNAME.llite.max_read_ahead_whole_mb"
1030         ORIG=$($TEST)
1031         FINAL=$(($ORIG + 1))
1032         set_conf_param_and_check client "$TEST" "$PARAM" $FINAL || return 3
1033         FINAL=$(($FINAL + 1))
1034         set_conf_param_and_check client "$TEST" "$PARAM" $FINAL || return 4
1035         umount_client $MOUNT || return 200
1036         mount_client $MOUNT
1037         RESULT=$($TEST)
1038         if [ $RESULT -ne $FINAL ]; then
1039             echo "New config not seen: wanted $FINAL got $RESULT"
1040             return 4
1041         else
1042             echo "New config success: got $RESULT"
1043         fi
1044         set_conf_param_and_check client "$TEST" "$PARAM" $ORIG || return 5
1045         cleanup
1046 }
1047 run_test 28 "permanent parameter setting"
1048
1049 test_28a() { # LU-4221
1050         [[ $(lustre_version_code ost1) -ge $(version_code 2.5.52) ]] ||
1051                 { skip "Need OST version at least 2.5.52" && return 0; }
1052         [ "$(facet_fstype ost1)" = "zfs" ] &&
1053                 skip "LU-4221: no such proc params for ZFS OSTs" && return
1054
1055         local name
1056         local param
1057         local cmd
1058         local old
1059         local new
1060         local device="$FSNAME-OST0000"
1061
1062         setup
1063
1064         # In this test we will set three kinds of proc parameters with
1065         # lctl conf_param:
1066         # 1. the ones moved from the OFD to the OSD, and only their
1067         #    symlinks kept in obdfilter
1068         # 2. non-symlink ones in the OFD
1069         # 3. non-symlink ones in the OSD
1070
1071         # Check 1.
1072         # prepare a symlink parameter in the OFD
1073         name="writethrough_cache_enable"
1074         param="$device.ost.$name"
1075         cmd="$LCTL get_param -n obdfilter.$device.$name"
1076
1077         # conf_param the symlink parameter in the OFD
1078         old=$(do_facet ost1 $cmd)
1079         new=$(((old + 1) % 2))
1080         set_conf_param_and_check ost1 "$cmd" "$param" $new ||
1081                 error "lctl conf_param $device.ost.$param=$new failed"
1082
1083         # conf_param the target parameter in the OSD
1084         param="$device.osd.$name"
1085         cmd="$LCTL get_param -n osd-*.$device.$name"
1086         set_conf_param_and_check ost1 "$cmd" "$param" $old ||
1087                 error "lctl conf_param $device.osd.$param=$old failed"
1088
1089         # Check 2.
1090         # prepare a non-symlink parameter in the OFD
1091         name="client_cache_seconds"
1092         param="$device.ost.$name"
1093         cmd="$LCTL get_param -n obdfilter.$device.$name"
1094
1095         # conf_param the parameter in the OFD
1096         old=$(do_facet ost1 $cmd)
1097         new=$((old * 2))
1098         set_conf_param_and_check ost1 "$cmd" "$param" $new ||
1099                 error "lctl conf_param $device.ost.$param=$new failed"
1100         set_conf_param_and_check ost1 "$cmd" "$param" $old ||
1101                 error "lctl conf_param $device.ost.$param=$old failed"
1102
1103         # Check 3.
1104         # prepare a non-symlink parameter in the OSD
1105         name="lma_self_repair"
1106         param="$device.osd.$name"
1107         cmd="$LCTL get_param -n osd-*.$device.$name"
1108
1109         # conf_param the parameter in the OSD
1110         old=$(do_facet ost1 $cmd)
1111         new=$(((old + 1) % 2))
1112         set_conf_param_and_check ost1 "$cmd" "$param" $new ||
1113                 error "lctl conf_param $device.osd.$param=$new failed"
1114         set_conf_param_and_check ost1 "$cmd" "$param" $old ||
1115                 error "lctl conf_param $device.osd.$param=$old failed"
1116
1117         cleanup
1118 }
1119 run_test 28a "set symlink parameters permanently with conf_param"
1120
1121 test_29() {
1122         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2, skipping" && return
1123         setup > /dev/null 2>&1
1124         start_ost2
1125         sleep 10
1126
1127         local PARAM="$FSNAME-OST0001.osc.active"
1128         local PROC_ACT="osc.$FSNAME-OST0001-osc-[^M]*.active"
1129         local PROC_UUID="osc.$FSNAME-OST0001-osc-[^M]*.ost_server_uuid"
1130
1131         ACTV=$(lctl get_param -n $PROC_ACT)
1132         DEAC=$((1 - $ACTV))
1133         set_conf_param_and_check client \
1134                 "lctl get_param -n $PROC_ACT" "$PARAM" $DEAC || return 2
1135         # also check ost_server_uuid status
1136         RESULT=$(lctl get_param -n $PROC_UUID | grep DEACTIV)
1137         if [ -z "$RESULT" ]; then
1138             echo "Live client not deactivated: $(lctl get_param -n $PROC_UUID)"
1139             return 3
1140         else
1141             echo "Live client success: got $RESULT"
1142         fi
1143
1144         # check MDTs too
1145         for num in $(seq $MDSCOUNT); do
1146                 local mdtosc=$(get_mdtosc_proc_path mds${num} $FSNAME-OST0001)
1147                 local MPROC="osc.$mdtosc.active"
1148                 local MAX=30
1149                 local WAIT=0
1150                 while [ 1 ]; do
1151                         sleep 5
1152                         RESULT=$(do_facet mds${num} " lctl get_param -n $MPROC")
1153                         [ ${PIPESTATUS[0]} = 0 ] || error "Can't read $MPROC"
1154                         if [ $RESULT -eq $DEAC ]; then
1155                                 echo -n "MDT deactivated also after"
1156                                 echo "$WAIT sec (got $RESULT)"
1157                                 break
1158                         fi
1159                         WAIT=$((WAIT + 5))
1160                         if [ $WAIT -eq $MAX ]; then
1161                                 echo -n "MDT not deactivated: wanted $DEAC"
1162                                 echo  "got $RESULT"
1163                                 return 4
1164                         fi
1165                         echo "Waiting $(($MAX - $WAIT))secs for MDT deactivated"
1166                 done
1167         done
1168         # test new client starts deactivated
1169         umount_client $MOUNT || return 200
1170         mount_client $MOUNT
1171         RESULT=$(lctl get_param -n $PROC_UUID | grep DEACTIV | grep NEW)
1172         if [ -z "$RESULT" ]; then
1173             echo "New client not deactivated from start: $(lctl get_param -n $PROC_UUID)"
1174             return 5
1175         else
1176             echo "New client success: got $RESULT"
1177         fi
1178
1179         # make sure it reactivates
1180         set_conf_param_and_check client \
1181                 "lctl get_param -n $PROC_ACT" "$PARAM" $ACTV || return 6
1182
1183         umount_client $MOUNT
1184         stop_ost2
1185         cleanup_nocli
1186         #writeconf to remove all ost2 traces for subsequent tests
1187         writeconf_or_reformat
1188 }
1189 run_test 29 "permanently remove an OST"
1190
1191 test_30a() {
1192         setup
1193
1194         echo Big config llog
1195         TEST="lctl get_param -n llite.$FSNAME-*.max_read_ahead_whole_mb"
1196         ORIG=$($TEST)
1197         LIST=(1 2 3 4 5 4 3 2 1 2 3 4 5 4 3 2 1 2 3 4 5)
1198         for i in ${LIST[@]}; do
1199                 set_conf_param_and_check client "$TEST" \
1200                         "$FSNAME.llite.max_read_ahead_whole_mb" $i || return 3
1201         done
1202         # make sure client restart still works
1203         umount_client $MOUNT
1204         mount_client $MOUNT || return 4
1205         [ "$($TEST)" -ne "$i" ] && error "Param didn't stick across restart $($TEST) != $i"
1206         pass
1207
1208         echo Erase parameter setting
1209         do_facet mgs "$LCTL conf_param -d $FSNAME.llite.max_read_ahead_whole_mb" || return 6
1210         umount_client $MOUNT
1211         mount_client $MOUNT || return 6
1212         FINAL=$($TEST)
1213         echo "deleted (default) value=$FINAL, orig=$ORIG"
1214         # assumes this parameter started at the default value
1215         [ "$FINAL" -eq "$ORIG" ] || fail "Deleted value=$FINAL, orig=$ORIG"
1216
1217         cleanup
1218 }
1219 run_test 30a "Big config llog and conf_param deletion"
1220
1221 test_30b() {
1222         setup
1223
1224         # Make a fake nid.  Use the OST nid, and add 20 to the least significant
1225         # numerical part of it. Hopefully that's not already a failover address for
1226         # the server.
1227         OSTNID=$(do_facet ost1 "$LCTL get_param nis" | tail -1 | awk '{print $1}')
1228         ORIGVAL=$(echo $OSTNID | egrep -oi "[0-9]*@")
1229         NEWVAL=$((($(echo $ORIGVAL | egrep -oi "[0-9]*") + 20) % 256))
1230         NEW=$(echo $OSTNID | sed "s/$ORIGVAL/$NEWVAL@/")
1231         echo "Using fake nid $NEW"
1232
1233         TEST="$LCTL get_param -n osc.$FSNAME-OST0000-osc-[^M]*.import |
1234                 grep failover_nids | sed -n 's/.*\($NEW\).*/\1/p'"
1235         set_conf_param_and_check client "$TEST" \
1236                 "$FSNAME-OST0000.failover.node" $NEW ||
1237                 error "didn't add failover nid $NEW"
1238         NIDS=$($LCTL get_param -n osc.$FSNAME-OST0000-osc-[^M]*.import |
1239                 grep failover_nids)
1240         echo $NIDS
1241         # The NIDS value is the failover nid strings and "[" and "]". So
1242         # we need to subtract the space taken by the delimiters. This has
1243         # changed from earlier version of Lustre but this test is run only
1244         # locally so this change will not break interop. See LU-3386
1245         NIDCOUNT=$(($(echo "$NIDS" | wc -w) - 3))
1246         echo "should have 2 failover nids: $NIDCOUNT"
1247         [ $NIDCOUNT -eq 2 ] || error "Failover nid not added"
1248         do_facet mgs "$LCTL conf_param -d $FSNAME-OST0000.failover.node" ||
1249                 error "conf_param delete failed"
1250         umount_client $MOUNT
1251         mount_client $MOUNT || return 3
1252
1253         NIDS=$($LCTL get_param -n osc.$FSNAME-OST0000-osc-[^M]*.import |
1254                 grep failover_nids)
1255         echo $NIDS
1256         NIDCOUNT=$(($(echo "$NIDS" | wc -w) - 3))
1257         echo "only 1 final nid should remain: $NIDCOUNT"
1258         [ $NIDCOUNT -eq 1 ] || error "Failover nids not removed"
1259
1260         cleanup
1261 }
1262 run_test 30b "Remove failover nids"
1263
1264 test_31() { # bug 10734
1265         # ipaddr must not exist
1266         $MOUNT_CMD 4.3.2.1@tcp:/lustre $MOUNT || true
1267         cleanup
1268 }
1269 run_test 31 "Connect to non-existent node (shouldn't crash)"
1270
1271
1272 T32_QID=60000
1273 T32_BLIMIT=20480 # Kbytes
1274 T32_ILIMIT=2
1275
1276 #
1277 # This is not really a test but a tool to create new disk
1278 # image tarballs for the upgrade tests.
1279 #
1280 # Disk image tarballs should be created on single-node
1281 # clusters by running this test with default configurations
1282 # plus a few mandatory environment settings that are verified
1283 # at the beginning of the test.
1284 #
1285 test_32newtarball() {
1286         local version
1287         local dst=.
1288         local src=/etc/rc.d
1289         local tmp=$TMP/t32_image_create
1290
1291         if [ $FSNAME != t32fs -o $MDSCOUNT -ne 1 -o                                                             \
1292                  \( -z "$MDSDEV" -a -z "$MDSDEV1" \) -o $OSTCOUNT -ne 1 -o                      \
1293                  -z "$OSTDEV1" ]; then
1294                 error "Needs FSNAME=t32fs MDSCOUNT=1 MDSDEV1=<nonexistent_file>"        \
1295                           "(or MDSDEV, in the case of b1_8) OSTCOUNT=1"                                 \
1296                           "OSTDEV1=<nonexistent_file>"
1297         fi
1298
1299         mkdir $tmp || {
1300                 echo "Found stale $tmp"
1301                 return 1
1302         }
1303
1304         mkdir $tmp/src
1305         tar cf - -C $src . | tar xf - -C $tmp/src
1306         dd if=/dev/zero of=$tmp/src/t32_qf_old bs=1M \
1307                 count=$(($T32_BLIMIT / 1024 / 2))
1308         chown $T32_QID.$T32_QID $tmp/src/t32_qf_old
1309
1310         # format ost with comma-separated NIDs to verify LU-4460
1311         local failnid="$(h2$NETTYPE 1.2.3.4),$(h2$NETTYPE 4.3.2.1)"
1312         MGSNID="$MGSNID,$MGSNID" OSTOPT="--failnode=$failnid" formatall
1313
1314         setupall
1315
1316         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.50) ] &&
1317                 $LFS quotacheck -ug /mnt/$FSNAME
1318         $LFS setquota -u $T32_QID -b 0 -B $T32_BLIMIT -i 0 -I $T32_ILIMIT \
1319                 /mnt/$FSNAME
1320
1321         tar cf - -C $tmp/src . | tar xf - -C /mnt/$FSNAME
1322         stopall
1323
1324         mkdir $tmp/img
1325
1326         setupall
1327         pushd /mnt/$FSNAME
1328         ls -Rni --time-style=+%s >$tmp/img/list
1329         find . ! -name .lustre -type f -exec sha1sum {} \; |
1330                 sort -k 2 >$tmp/img/sha1sums
1331         popd
1332         $LCTL get_param -n version | head -n 1 |
1333                 sed -e 's/^lustre: *//' >$tmp/img/commit
1334
1335         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.50) ] &&
1336                 $LFS quotaon -ug /mnt/$FSNAME
1337         $LFS quota -u $T32_QID -v /mnt/$FSNAME
1338         $LFS quota -v -u $T32_QID /mnt/$FSNAME |
1339                 awk 'BEGIN { num='1' } { if ($1 == "'/mnt/$FSNAME'") \
1340                 { if (NF == 1) { getline } else { num++ } ; print $num;} }' \
1341                 | tr -d "*" > $tmp/img/bspace
1342         $LFS quota -v -u $T32_QID /mnt/$FSNAME |
1343                 awk 'BEGIN { num='5' } { if ($1 == "'/mnt/$FSNAME'") \
1344                 { if (NF == 1) { getline } else { num++ } ; print $num;} }' \
1345                 | tr -d "*" > $tmp/img/ispace
1346
1347         stopall
1348
1349         pushd $tmp/src
1350         find -type f -exec sha1sum {} \; | sort -k 2 >$tmp/sha1sums.src
1351         popd
1352
1353         if ! diff -u $tmp/sha1sums.src $tmp/img/sha1sums; then
1354                 echo "Data verification failed"
1355         fi
1356
1357         uname -r >$tmp/img/kernel
1358         uname -m >$tmp/img/arch
1359
1360         mv ${MDSDEV1:-$MDSDEV} $tmp/img
1361         mv $OSTDEV1 $tmp/img
1362
1363         version=$(sed -e 's/\(^[0-9]\+\.[0-9]\+\)\(.*$\)/\1/' $tmp/img/commit |
1364                           sed -e 's/\./_/g')    # E.g., "1.8.7" -> "1_8"
1365         dst=$(cd $dst; pwd)
1366         pushd $tmp/img
1367         tar cjvf $dst/disk$version-$(facet_fstype $SINGLEMDS).tar.bz2 -S *
1368         popd
1369
1370         rm -r $tmp
1371 }
1372 #run_test 32newtarball "Create a new test_32 disk image tarball for this version"
1373
1374 #
1375 # The list of applicable tarballs is returned via the caller's
1376 # variable "tarballs".
1377 #
1378 t32_check() {
1379         local node=$(facet_active_host $SINGLEMDS)
1380         local r="do_node $node"
1381
1382         if [ "$CLIENTONLY" ]; then
1383                 skip "Client-only testing"
1384                 exit 0
1385         fi
1386
1387         if ! $r which $TUNEFS; then
1388                 skip_env "tunefs.lustre required on $node"
1389                 exit 0
1390         fi
1391
1392         local IMGTYPE=$(facet_fstype $SINGLEMDS)
1393
1394         tarballs=$($r find $RLUSTRE/tests -maxdepth 1 -name \'disk*-$IMGTYPE.tar.bz2\')
1395
1396         if [ -z "$tarballs" ]; then
1397                 skip "No applicable tarballs found"
1398                 exit 0
1399         fi
1400 }
1401
1402 t32_test_cleanup() {
1403         local tmp=$TMP/t32
1404         local fstype=$(facet_fstype $SINGLEMDS)
1405         local rc=$?
1406
1407         if $shall_cleanup_lustre; then
1408                 umount $tmp/mnt/lustre || rc=$?
1409         fi
1410         if $shall_cleanup_mdt; then
1411                 $r umount -d $tmp/mnt/mdt || rc=$?
1412         fi
1413         if $shall_cleanup_mdt1; then
1414                 $r umount -d $tmp/mnt/mdt1 || rc=$?
1415         fi
1416         if $shall_cleanup_ost; then
1417                 $r umount -d $tmp/mnt/ost || rc=$?
1418         fi
1419
1420         $r rm -rf $tmp
1421         rm -rf $tmp
1422         if [ $fstype == "zfs" ]; then
1423                 $r $ZPOOL destroy t32fs-mdt1 || rc=$?
1424                 $r $ZPOOL destroy t32fs-ost1 || rc=$?
1425         fi
1426         return $rc
1427 }
1428
1429 t32_bits_per_long() {
1430         #
1431         # Yes, this is not meant to be perfect.
1432         #
1433         case $1 in
1434                 ppc64|x86_64)
1435                         echo -n 64;;
1436                 i*86)
1437                         echo -n 32;;
1438         esac
1439 }
1440
1441 t32_reload_modules() {
1442         local node=$1
1443         local all_removed=false
1444         local i=0
1445
1446         while ((i < 20)); do
1447                 echo "Unloading modules on $node: Attempt $i"
1448                 do_rpc_nodes $node $LUSTRE_RMMOD $(facet_fstype $SINGLEMDS) &&
1449                         all_removed=true
1450                 do_rpc_nodes $node check_mem_leak || return 1
1451                 if $all_removed; then
1452                         do_rpc_nodes $node load_modules
1453                         return 0
1454                 fi
1455                 sleep 5
1456                 i=$((i + 1))
1457         done
1458         echo "Unloading modules on $node: Given up"
1459         return 1
1460 }
1461
1462 t32_wait_til_devices_gone() {
1463         local node=$1
1464         local devices
1465         local loops
1466         local i=0
1467
1468         echo wait for devices to go
1469         while ((i < 20)); do
1470                 devices=$(do_rpc_nodes $node $LCTL device_list | wc -l)
1471                 loops=$(do_rpc_nodes $node losetup -a | grep -c t32)
1472                 ((devices == 0 && loops == 0)) && return 0
1473                 sleep 5
1474                 i=$((i + 1))
1475         done
1476         echo "waiting for dev on $node: dev $devices loop $loops given up"
1477         do_rpc_nodes $node "losetup -a"
1478         do_rpc_nodes $node "$LCTL devices_list"
1479         return 1
1480 }
1481
1482 t32_verify_quota() {
1483         local node=$1
1484         local fsname=$2
1485         local mnt=$3
1486         local fstype=$(facet_fstype $SINGLEMDS)
1487         local qval
1488         local cmd
1489
1490         $LFS quota -u $T32_QID -v $mnt
1491
1492         qval=$($LFS quota -v -u $T32_QID $mnt |
1493                 awk 'BEGIN { num='1' } { if ($1 == "'$mnt'") \
1494                 { if (NF == 1) { getline } else { num++ } ; print $num;} }' \
1495                 | tr -d "*")
1496         [ $qval -eq $img_bspace ] || {
1497                 echo "bspace, act:$qval, exp:$img_bspace"
1498                 return 1
1499         }
1500
1501         qval=$($LFS quota -v -u $T32_QID $mnt |
1502                 awk 'BEGIN { num='5' } { if ($1 == "'$mnt'") \
1503                 { if (NF == 1) { getline } else { num++ } ; print $num;} }' \
1504                 | tr -d "*")
1505         [ $qval -eq $img_ispace ] || {
1506                 echo "ispace, act:$qval, exp:$img_ispace"
1507                 return 1
1508         }
1509
1510         qval=$($LFS quota -v -u $T32_QID $mnt |
1511                 awk 'BEGIN { num='3' } { if ($1 == "'$mnt'") \
1512                 { if (NF == 1) { getline } else { num++ } ; print $num;} }' \
1513                 | tr -d "*")
1514         [ $qval -eq $T32_BLIMIT ] || {
1515                 echo "blimit, act:$qval, exp:$T32_BLIMIT"
1516                 return 1
1517         }
1518
1519         qval=$($LFS quota -v -u $T32_QID $mnt |
1520                 awk 'BEGIN { num='7' } { if ($1 == "'$mnt'") \
1521                 { if (NF == 1) { getline } else { num++ } ; print $num;} }' \
1522                 | tr -d "*")
1523         [ $qval -eq $T32_ILIMIT ] || {
1524                 echo "ilimit, act:$qval, exp:$T32_ILIMIT"
1525                 return 1
1526         }
1527
1528         do_node $node $LCTL conf_param $fsname.quota.mdt=ug
1529         cmd="$LCTL get_param -n osd-$fstype.$fsname-MDT0000"
1530         cmd=$cmd.quota_slave.enabled
1531         wait_update $node "$cmd" "ug" || {
1532                 echo "Enable mdt quota failed"
1533                 return 1
1534         }
1535
1536         do_node $node $LCTL conf_param $fsname.quota.ost=ug
1537         cmd="$LCTL get_param -n osd-$fstype.$fsname-OST0000"
1538         cmd=$cmd.quota_slave.enabled
1539         wait_update $node "$cmd" "ug" || {
1540                 echo "Enable ost quota failed"
1541                 return 1
1542         }
1543
1544         chmod 0777 $mnt
1545         runas -u $T32_QID -g $T32_QID dd if=/dev/zero of=$mnt/t32_qf_new \
1546                 bs=1M count=$(($T32_BLIMIT / 1024)) oflag=sync && {
1547                 echo "Write succeed, but expect -EDQUOT"
1548                 return 1
1549         }
1550         rm -f $mnt/t32_qf_new
1551
1552         runas -u $T32_QID -g $T32_QID createmany -m $mnt/t32_qf_ \
1553                 $T32_ILIMIT && {
1554                 echo "Create succeed, but expect -EDQUOT"
1555                 return 1
1556         }
1557         unlinkmany $mnt/t32_qf_ $T32_ILIMIT
1558
1559         return 0
1560 }
1561
1562 t32_test() {
1563         local tarball=$1
1564         local writeconf=$2
1565         local dne_upgrade=${dne_upgrade:-"no"}
1566         local ff_convert=${ff_convert:-"no"}
1567         local shall_cleanup_mdt=false
1568         local shall_cleanup_mdt1=false
1569         local shall_cleanup_ost=false
1570         local shall_cleanup_lustre=false
1571         local node=$(facet_active_host $SINGLEMDS)
1572         local r="do_node $node"
1573         local node2=$(facet_active_host mds2)
1574         local tmp=$TMP/t32
1575         local img_commit
1576         local img_kernel
1577         local img_arch
1578         local img_bspace
1579         local img_ispace
1580         local fsname=t32fs
1581         local nid=$($r $LCTL list_nids | head -1)
1582         local mopts
1583         local uuid
1584         local nrpcs_orig
1585         local nrpcs
1586         local list
1587         local fstype=$(facet_fstype $SINGLEMDS)
1588         local mdt_dev=$tmp/mdt
1589         local ost_dev=$tmp/ost
1590
1591         trap 'trap - RETURN; t32_test_cleanup' RETURN
1592
1593         mkdir -p $tmp/mnt/lustre
1594         $r mkdir -p $tmp/mnt/{mdt,ost}
1595         $r tar xjvf $tarball -S -C $tmp || {
1596                 error_noexit "Unpacking the disk image tarball"
1597                 return 1
1598         }
1599         img_commit=$($r cat $tmp/commit)
1600         img_kernel=$($r cat $tmp/kernel)
1601         img_arch=$($r cat $tmp/arch)
1602         img_bspace=$($r cat $tmp/bspace)
1603         img_ispace=$($r cat $tmp/ispace)
1604         echo "Upgrading from $(basename $tarball), created with:"
1605         echo "  Commit: $img_commit"
1606         echo "  Kernel: $img_kernel"
1607         echo "    Arch: $img_arch"
1608
1609         local version=$(version_code $img_commit)
1610         [[ $version -ge $(version_code 2.5.0) ]] && ff_convert="no"
1611
1612         if [ $fstype == "zfs" ]; then
1613                 # import pool first
1614                 $r $ZPOOL import -f -d $tmp t32fs-mdt1
1615                 $r $ZPOOL import -f -d $tmp t32fs-ost1
1616                 mdt_dev=t32fs-mdt1/mdt1
1617                 ost_dev=t32fs-ost1/ost1
1618                 wait_update_facet $SINGLEMDS "$ZPOOL list |
1619                         awk '/^t32fs-mdt1/ { print \\\$1 }'" "t32fs-mdt1" || {
1620                                 error_noexit "import zfs pool failed"
1621                                 return 1
1622                         }
1623         fi
1624
1625         $r $LCTL set_param debug="$PTLDEBUG"
1626
1627         $r $TUNEFS --dryrun $mdt_dev || {
1628                 $r losetup -a
1629                 error_noexit "tunefs.lustre before mounting the MDT"
1630                 return 1
1631         }
1632         if [ "$writeconf" ]; then
1633                 mopts=writeconf
1634                 if [ $fstype == "ldiskfs" ]; then
1635                         mopts="loop,$mopts"
1636                         $r $TUNEFS --quota $mdt_dev || {
1637                                 $r losetup -a
1638                                 error_noexit "Enable mdt quota feature"
1639                                 return 1
1640                         }
1641                 fi
1642         else
1643                 if [ -n "$($LCTL list_nids | grep -v '\(tcp\|lo\)[[:digit:]]*$')" ]; then
1644                         [[ $(lustre_version_code mgs) -ge $(version_code 2.3.59) ]] ||
1645                         { skip "LU-2200: Cannot run over Inifiniband w/o lctl replace_nids "
1646                                 "(Need MGS version at least 2.3.59)"; return 0; }
1647
1648                         local osthost=$(facet_active_host ost1)
1649                         local ostnid=$(do_node $osthost $LCTL list_nids | head -1)
1650
1651                         mopts=nosvc
1652                         if [ $fstype == "ldiskfs" ]; then
1653                                 mopts="loop,$mopts"
1654                         fi
1655                         $r $MOUNT_CMD -o $mopts $mdt_dev $tmp/mnt/mdt
1656                         $r lctl replace_nids $fsname-OST0000 $ostnid
1657                         $r lctl replace_nids $fsname-MDT0000 $nid
1658                         $r umount -d $tmp/mnt/mdt
1659                 fi
1660
1661                 mopts=exclude=$fsname-OST0000
1662                 if [ $fstype == "ldiskfs" ]; then
1663                         mopts="loop,$mopts"
1664                 fi
1665         fi
1666
1667         t32_wait_til_devices_gone $node
1668
1669         $r $MOUNT_CMD -o $mopts $mdt_dev $tmp/mnt/mdt || {
1670                 $r losetup -a
1671                 error_noexit "Mounting the MDT"
1672                 return 1
1673         }
1674         shall_cleanup_mdt=true
1675
1676         if [ "$dne_upgrade" != "no" ]; then
1677                 local fs2mdsdev=$(mdsdevname 1_2)
1678                 local fs2mdsvdev=$(mdsvdevname 1_2)
1679
1680                 echo "mkfs new MDT on ${fs2mdsdev}...."
1681                 if [ $(facet_fstype mds1) == ldiskfs ]; then
1682                         mkfsoptions="--mkfsoptions=\\\"-J size=8\\\""
1683                 fi
1684
1685                 add fs2mds $(mkfs_opts mds2 $fs2mdsdev $fsname) --reformat \
1686                            $mkfsoptions $fs2mdsdev $fs2mdsvdev > /dev/null || {
1687                         error_noexit "Mkfs new MDT failed"
1688                         return 1
1689                 }
1690
1691                 $r $TUNEFS --dryrun $fs2mdsdev || {
1692                         error_noexit "tunefs.lustre before mounting the MDT"
1693                         return 1
1694                 }
1695
1696                 echo "mount new MDT....$fs2mdsdev"
1697                 $r mkdir -p $tmp/mnt/mdt1
1698                 $r $MOUNT_CMD -o $mopts $fs2mdsdev $tmp/mnt/mdt1 || {
1699                         error_noexit "mount mdt1 failed"
1700                         return 1
1701                 }
1702
1703                 $r $LCTL set_param -n mdt.${fsname}*.enable_remote_dir=1 ||
1704                         error_noexit "enable remote dir create failed"
1705
1706                 shall_cleanup_mdt1=true
1707         fi
1708
1709         uuid=$($r $LCTL get_param -n mdt.$fsname-MDT0000.uuid) || {
1710                 error_noexit "Getting MDT UUID"
1711                 return 1
1712         }
1713         if [ "$uuid" != $fsname-MDT0000_UUID ]; then
1714                 error_noexit "Unexpected MDT UUID: \"$uuid\""
1715                 return 1
1716         fi
1717
1718         $r $TUNEFS --dryrun $ost_dev || {
1719                 error_noexit "tunefs.lustre before mounting the OST"
1720                 return 1
1721         }
1722         if [ "$writeconf" ]; then
1723                 mopts=mgsnode=$nid,$writeconf
1724                 if [ $fstype == "ldiskfs" ]; then
1725                         mopts="loop,$mopts"
1726                         $r $TUNEFS --quota $ost_dev || {
1727                                 $r losetup -a
1728                                 error_noexit "Enable ost quota feature"
1729                                 return 1
1730                         }
1731                 fi
1732         else
1733                 mopts=mgsnode=$nid
1734                 if [ $fstype == "ldiskfs" ]; then
1735                         mopts="loop,$mopts"
1736                 fi
1737         fi
1738         $r $MOUNT_CMD -o $mopts $ost_dev $tmp/mnt/ost || {
1739                 error_noexit "Mounting the OST"
1740                 return 1
1741         }
1742         shall_cleanup_ost=true
1743
1744         uuid=$($r $LCTL get_param -n obdfilter.$fsname-OST0000.uuid) || {
1745                 error_noexit "Getting OST UUID"
1746                 return 1
1747         }
1748         if [ "$uuid" != $fsname-OST0000_UUID ]; then
1749                 error_noexit "Unexpected OST UUID: \"$uuid\""
1750                 return 1
1751         fi
1752
1753         $r $LCTL conf_param $fsname-OST0000.osc.max_dirty_mb=15 || {
1754                 error_noexit "Setting \"max_dirty_mb\""
1755                 return 1
1756         }
1757         $r $LCTL conf_param $fsname-OST0000.failover.node=$nid || {
1758                 error_noexit "Setting OST \"failover.node\""
1759                 return 1
1760         }
1761         $r $LCTL conf_param $fsname-MDT0000.mdc.max_rpcs_in_flight=9 || {
1762                 error_noexit "Setting \"max_rpcs_in_flight\""
1763                 return 1
1764         }
1765         $r $LCTL conf_param $fsname-MDT0000.failover.node=$nid || {
1766                 error_noexit "Setting MDT \"failover.node\""
1767                 return 1
1768         }
1769         $r $LCTL pool_new $fsname.interop || {
1770                 error_noexit "Setting \"interop\""
1771                 return 1
1772         }
1773         $r $LCTL conf_param $fsname-MDT0000.lov.stripesize=4M || {
1774                 error_noexit "Setting \"lov.stripesize\""
1775                 return 1
1776         }
1777
1778         if [ "$ff_convert" != "no" -a $(facet_fstype ost1) == "ldiskfs" ]; then
1779                 $r $LCTL lfsck_start -M $fsname-OST0000 || {
1780                         error_noexit "Start OI scrub on OST0"
1781                         return 1
1782                 }
1783
1784                 # The oi_scrub should be on ost1, but for test_32(),
1785                 # all on the SINGLEMDS.
1786                 wait_update_facet $SINGLEMDS "$LCTL get_param -n \
1787                         osd-ldiskfs.$fsname-OST0000.oi_scrub |
1788                         awk '/^status/ { print \\\$2 }'" "completed" 30 || {
1789                         error_noexit "Failed to get the expected 'completed'"
1790                         return 1
1791                 }
1792
1793                 local UPDATED=$($r $LCTL get_param -n \
1794                                 osd-ldiskfs.$fsname-OST0000.oi_scrub |
1795                                 awk '/^updated/ { print $2 }')
1796                 [ $UPDATED -ge 1 ] || {
1797                         error_noexit "Only $UPDATED objects have been converted"
1798                         return 1
1799                 }
1800         fi
1801
1802         if [ "$dne_upgrade" != "no" ]; then
1803                 $r $LCTL conf_param \
1804                                 $fsname-MDT0001.mdc.max_rpcs_in_flight=9 || {
1805                         error_noexit "Setting MDT1 \"max_rpcs_in_flight\""
1806                         return 1
1807                 }
1808                 $r $LCTL conf_param $fsname-MDT0001.failover.node=$nid || {
1809                         error_noexit "Setting MDT1 \"failover.node\""
1810                         return 1
1811                 }
1812                 $r $LCTL conf_param $fsname-MDT0001.lov.stripesize=4M || {
1813                         error_noexit "Setting MDT1 \"lov.stripesize\""
1814                         return 1
1815                 }
1816
1817         fi
1818
1819         if [ "$writeconf" ]; then
1820                 $MOUNT_CMD $nid:/$fsname $tmp/mnt/lustre || {
1821                         error_noexit "Mounting the client"
1822                         return 1
1823                 }
1824                 shall_cleanup_lustre=true
1825                 $LCTL set_param debug="$PTLDEBUG"
1826
1827                 t32_verify_quota $node $fsname $tmp/mnt/lustre || {
1828                         error_noexit "verify quota failed"
1829                         return 1
1830                 }
1831
1832                 if [ "$dne_upgrade" != "no" ]; then
1833                         $LFS mkdir -i 1 $tmp/mnt/lustre/remote_dir || {
1834                                 error_noexit "set remote dir failed"
1835                                 return 1
1836                         }
1837
1838                         pushd $tmp/mnt/lustre
1839                         tar -cf - . --exclude=./remote_dir |
1840                                 tar -xvf - -C remote_dir 1>/dev/null || {
1841                                 error_noexit "cp to remote dir failed"
1842                                 return 1
1843                         }
1844                         popd
1845                 fi
1846
1847                 dd if=/dev/zero of=$tmp/mnt/lustre/tmp_file bs=10k count=10 || {
1848                         error_noexit "dd failed"
1849                         return 1
1850                 }
1851                 rm -rf $tmp/mnt/lustre/tmp_file || {
1852                         error_noexit "rm failed"
1853                         return 1
1854                 }
1855
1856                 if $r test -f $tmp/sha1sums; then
1857                         # LU-2393 - do both sorts on same node to ensure locale
1858                         # is identical
1859                         $r cat $tmp/sha1sums | sort -k 2 >$tmp/sha1sums.orig
1860                         if [ "$dne_upgrade" != "no" ]; then
1861                                 pushd $tmp/mnt/lustre/remote_dir
1862                         else
1863                                 pushd $tmp/mnt/lustre
1864                         fi
1865
1866                         find ! -name .lustre -type f -exec sha1sum {} \; |
1867                                 sort -k 2 >$tmp/sha1sums || {
1868                                 error_noexit "sha1sum"
1869                                 return 1
1870                         }
1871                         popd
1872                         if ! diff -ub $tmp/sha1sums.orig $tmp/sha1sums; then
1873                                 error_noexit "sha1sum verification failed"
1874                                 return 1
1875                         fi
1876                 else
1877                         echo "sha1sum verification skipped"
1878                 fi
1879
1880                 if [ "$dne_upgrade" != "no" ]; then
1881                         rm -rf $tmp/mnt/lustre/remote_dir || {
1882                                 error_noexit "remove remote dir failed"
1883                                 return 1
1884                         }
1885                 fi
1886
1887                 if $r test -f $tmp/list; then
1888                         #
1889                         # There is not a Test Framework API to copy files to or
1890                         # from a remote node.
1891                         #
1892                         # LU-2393 - do both sorts on same node to ensure locale
1893                         # is identical
1894                         $r cat $tmp/list | sort -k 6 >$tmp/list.orig
1895                         pushd $tmp/mnt/lustre
1896                         ls -Rni --time-style=+%s | sort -k 6 >$tmp/list || {
1897                                 error_noexit "ls"
1898                                 return 1
1899                         }
1900                         popd
1901                         #
1902                         # 32-bit and 64-bit clients use different algorithms to
1903                         # convert FIDs into inode numbers.  Hence, remove the inode
1904                         # numbers from the lists, if the original list was created
1905                         # on an architecture with different number of bits per
1906                         # "long".
1907                         #
1908                         if [ $(t32_bits_per_long $(uname -m)) != \
1909                                 $(t32_bits_per_long $img_arch) ]; then
1910                                 echo "Different number of bits per \"long\" from the disk image"
1911                                 for list in list.orig list; do
1912                                         sed -i -e 's/^[0-9]\+[ \t]\+//' $tmp/$list
1913                                 done
1914                         fi
1915                         if ! diff -ub $tmp/list.orig $tmp/list; then
1916                                 error_noexit "list verification failed"
1917                                 return 1
1918                         fi
1919                 else
1920                         echo "list verification skipped"
1921                 fi
1922
1923                 #
1924                 # When adding new data verification tests, please check for
1925                 # the presence of the required reference files first, like
1926                 # the "sha1sums" and "list" tests above, to avoid the need to
1927                 # regenerate every image for each test addition.
1928                 #
1929
1930                 nrpcs_orig=$($LCTL get_param \
1931                                 -n mdc.*MDT0000*.max_rpcs_in_flight) || {
1932                         error_noexit "Getting \"max_rpcs_in_flight\""
1933                         return 1
1934                 }
1935                 nrpcs=$((nrpcs_orig + 5))
1936                 $r $LCTL conf_param $fsname-MDT0000.mdc.max_rpcs_in_flight=$nrpcs || {
1937                         error_noexit "Changing \"max_rpcs_in_flight\""
1938                         return 1
1939                 }
1940                 wait_update $HOSTNAME "$LCTL get_param \
1941                         -n mdc.*MDT0000*.max_rpcs_in_flight" $nrpcs || {
1942                         error_noexit "Verifying \"max_rpcs_in_flight\""
1943                         return 1
1944                 }
1945
1946                 umount $tmp/mnt/lustre || {
1947                         error_noexit "Unmounting the client"
1948                         return 1
1949                 }
1950                 shall_cleanup_lustre=false
1951         else
1952                 if [ "$dne_upgrade" != "no" ]; then
1953                         $r umount -d $tmp/mnt/mdt1 || {
1954                                 error_noexit "Unmounting the MDT2"
1955                                 return 1
1956                         }
1957                         shall_cleanup_mdt1=false
1958                 fi
1959
1960                 $r umount -d $tmp/mnt/mdt || {
1961                         error_noexit "Unmounting the MDT"
1962                         return 1
1963                 }
1964                 shall_cleanup_mdt=false
1965
1966                 $r umount -d $tmp/mnt/ost || {
1967                         error_noexit "Unmounting the OST"
1968                         return 1
1969                 }
1970                 shall_cleanup_ost=false
1971
1972                 t32_reload_modules $node || {
1973                         error_noexit "Reloading modules"
1974                         return 1
1975                 }
1976
1977                 # mount a second time to make sure we didnt leave upgrade flag on
1978                 $r $TUNEFS --dryrun $mdt_dev || {
1979                         $r losetup -a
1980                         error_noexit "tunefs.lustre before remounting the MDT"
1981                         return 1
1982                 }
1983
1984                 mopts=exclude=$fsname-OST0000
1985                 if [ $fstype == "ldiskfs" ]; then
1986                         mopts="loop,$mopts"
1987                 fi
1988                 $r $MOUNT_CMD -o $mopts $mdt_dev $tmp/mnt/mdt || {
1989                         error_noexit "Remounting the MDT"
1990                         return 1
1991                 }
1992                 shall_cleanup_mdt=true
1993         fi
1994 }
1995
1996 test_32a() {
1997         local tarballs
1998         local tarball
1999         local rc=0
2000
2001         t32_check
2002         for tarball in $tarballs; do
2003                 t32_test $tarball || let "rc += $?"
2004         done
2005         return $rc
2006 }
2007 run_test 32a "Upgrade (not live)"
2008
2009 test_32b() {
2010         local tarballs
2011         local tarball
2012         local rc=0
2013
2014         t32_check
2015         for tarball in $tarballs; do
2016                 t32_test $tarball writeconf || let "rc += $?"
2017         done
2018         return $rc
2019 }
2020 run_test 32b "Upgrade with writeconf"
2021
2022 test_32c() {
2023         local tarballs
2024         local tarball
2025         local rc=0
2026
2027         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2028         t32_check
2029         for tarball in $tarballs; do
2030                 dne_upgrade=yes t32_test $tarball writeconf || rc=$?
2031         done
2032         return $rc
2033 }
2034 run_test 32c "dne upgrade test"
2035
2036 test_32d() {
2037         local tarballs
2038         local tarball
2039         local rc=0
2040
2041         t32_check
2042         for tarball in $tarballs; do
2043                 ff_convert=yes t32_test $tarball || rc=$?
2044         done
2045         return $rc
2046 }
2047 run_test 32d "convert ff test"
2048
2049 test_33a() { # bug 12333, was test_33
2050         local rc=0
2051         local FSNAME2=test-123
2052         local MDSDEV=$(mdsdevname ${SINGLEMDS//mds/})
2053         local mkfsoptions
2054
2055         [ -n "$ost1_HOST" ] && fs2ost_HOST=$ost1_HOST
2056
2057         if [ -z "$fs2ost_DEV" -o -z "$fs2mds_DEV" ]; then
2058                 local dev=${SINGLEMDS}_dev
2059                 local MDSDEV=${!dev}
2060                 is_blkdev $SINGLEMDS $MDSDEV && \
2061                 skip_env "mixed loopback and real device not working" && return
2062         fi
2063
2064         local fs2mdsdev=$(mdsdevname 1_2)
2065         local fs2ostdev=$(ostdevname 1_2)
2066         local fs2mdsvdev=$(mdsvdevname 1_2)
2067         local fs2ostvdev=$(ostvdevname 1_2)
2068
2069         if [ $(facet_fstype mds1) == ldiskfs ]; then
2070                 mkfsoptions="--mkfsoptions=\\\"-J size=8\\\"" # See bug 17931.
2071         fi
2072
2073         add fs2mds $(mkfs_opts mds1 ${fs2mdsdev}) --mgs --fsname=${FSNAME2} \
2074                 --reformat $mkfsoptions $fs2mdsdev $fs2mdsvdev || exit 10
2075         add fs2ost $(mkfs_opts ost1 ${fs2ostdev}) --mgsnode=$MGSNID \
2076                 --fsname=${FSNAME2} --index=8191 --reformat $fs2ostdev \
2077                 $fs2ostvdev || exit 10
2078
2079         start fs2mds $fs2mdsdev $MDS_MOUNT_OPTS && trap cleanup_fs2 EXIT INT
2080         start fs2ost $fs2ostdev $OST_MOUNT_OPTS
2081         do_facet $SINGLEMDS "$LCTL conf_param $FSNAME2.sys.timeout=200" || rc=1
2082         mkdir -p $MOUNT2
2083         $MOUNT_CMD $MGSNID:/${FSNAME2} $MOUNT2 || rc=2
2084         echo "ok."
2085
2086         cp /etc/hosts $MOUNT2/ || rc=3
2087         $LFS getstripe $MOUNT2/hosts
2088
2089         umount -d $MOUNT2
2090         stop fs2ost -f
2091         stop fs2mds -f
2092         cleanup_nocli || rc=6
2093         return $rc
2094 }
2095 run_test 33a "Mount ost with a large index number"
2096
2097 test_33b() {    # was test_34
2098         setup
2099
2100         do_facet client dd if=/dev/zero of=$MOUNT/24 bs=1024k count=1
2101         # Drop lock cancelation reply during umount
2102         #define OBD_FAIL_LDLM_CANCEL_NET                        0x304
2103         do_facet client lctl set_param fail_loc=0x80000304
2104         #lctl set_param debug=-1
2105         umount_client $MOUNT
2106         cleanup
2107 }
2108 run_test 33b "Drop cancel during umount"
2109
2110 test_34a() {
2111         setup
2112         do_facet client "sh runmultiop_bg_pause $DIR/file O_c"
2113         manual_umount_client
2114         rc=$?
2115         do_facet client killall -USR1 multiop
2116         if [ $rc -eq 0 ]; then
2117                 error "umount not fail!"
2118         fi
2119         sleep 1
2120         cleanup
2121 }
2122 run_test 34a "umount with opened file should be fail"
2123
2124
2125 test_34b() {
2126         setup
2127         touch $DIR/$tfile || return 1
2128         stop_mds --force || return 2
2129
2130         manual_umount_client --force
2131         rc=$?
2132         if [ $rc -ne 0 ]; then
2133                 error "mtab after failed umount - rc $rc"
2134         fi
2135
2136         cleanup
2137         return 0
2138 }
2139 run_test 34b "force umount with failed mds should be normal"
2140
2141 test_34c() {
2142         setup
2143         touch $DIR/$tfile || return 1
2144         stop_ost --force || return 2
2145
2146         manual_umount_client --force
2147         rc=$?
2148         if [ $rc -ne 0 ]; then
2149                 error "mtab after failed umount - rc $rc"
2150         fi
2151
2152         cleanup
2153         return 0
2154 }
2155 run_test 34c "force umount with failed ost should be normal"
2156
2157 test_35a() { # bug 12459
2158         setup
2159
2160         DBG_SAVE="`lctl get_param -n debug`"
2161         lctl set_param debug="ha"
2162
2163         log "Set up a fake failnode for the MDS"
2164         FAKENID="127.0.0.2"
2165         local device=$(do_facet $SINGLEMDS "lctl get_param -n devices" |
2166                 awk '($3 ~ "mdt" && $4 ~ "MDT") { print $4 }' | head -1)
2167         do_facet mgs "$LCTL conf_param \
2168                 ${device}.failover.node=$(h2$NETTYPE $FAKENID)" || return 4
2169
2170         log "Wait for RECONNECT_INTERVAL seconds (10s)"
2171         sleep 10
2172
2173         MSG="conf-sanity.sh test_35a `date +%F%kh%Mm%Ss`"
2174         $LCTL clear
2175         log "$MSG"
2176         log "Stopping the MDT: $device"
2177         stop_mdt 1 || return 5
2178
2179         df $MOUNT > /dev/null 2>&1 &
2180         DFPID=$!
2181         log "Restarting the MDT: $device"
2182         start_mdt 1 || return 6
2183         log "Wait for df ($DFPID) ... "
2184         wait $DFPID
2185         log "done"
2186         lctl set_param debug="$DBG_SAVE"
2187
2188         # retrieve from the log the first server that the client tried to
2189         # contact after the connection loss
2190         $LCTL dk $TMP/lustre-log-$TESTNAME.log
2191         NEXTCONN=`awk "/${MSG}/ {start = 1;}
2192                        /import_select_connection.*$device-mdc.* using connection/ {
2193                                 if (start) {
2194                                         if (\\\$NF ~ /$FAKENID/)
2195                                                 print \\\$NF;
2196                                         else
2197                                                 print 0;
2198                                         exit;
2199                                 }
2200                        }" $TMP/lustre-log-$TESTNAME.log`
2201         [ "$NEXTCONN" != "0" ] && log "The client didn't try to reconnect to the last active server (tried ${NEXTCONN} instead)" && return 7
2202         cleanup
2203         # remove nid settings
2204         writeconf_or_reformat
2205 }
2206 run_test 35a "Reconnect to the last active server first"
2207
2208 test_35b() { # bug 18674
2209         remote_mds || { skip "local MDS" && return 0; }
2210         setup
2211
2212         debugsave
2213         $LCTL set_param debug="ha"
2214         $LCTL clear
2215         MSG="conf-sanity.sh test_35b `date +%F%kh%Mm%Ss`"
2216         log "$MSG"
2217
2218         log "Set up a fake failnode for the MDS"
2219         FAKENID="127.0.0.2"
2220         local device=$(do_facet $SINGLEMDS "$LCTL get_param -n devices" |
2221                 awk '($3 ~ "mdt" && $4 ~ "MDT") { print $4 }' | head -1)
2222         do_facet mgs "$LCTL conf_param \
2223                 ${device}.failover.node=$(h2$NETTYPE $FAKENID)" || return 1
2224
2225         local at_max_saved=0
2226         # adaptive timeouts may prevent seeing the issue
2227         if at_is_enabled; then
2228                 at_max_saved=$(at_max_get mds)
2229                 at_max_set 0 mds client
2230         fi
2231
2232         mkdir -p $MOUNT/$tdir
2233
2234         log "Injecting EBUSY on MDS"
2235         # Setting OBD_FAIL_MDS_RESEND=0x136
2236         do_facet $SINGLEMDS "$LCTL set_param fail_loc=0x80000136" || return 2
2237
2238         $LCTL set_param mdc.${FSNAME}*.stats=clear
2239
2240         log "Creating a test file and stat it"
2241         touch $MOUNT/$tdir/$tfile
2242         stat $MOUNT/$tdir/$tfile
2243
2244         log "Stop injecting EBUSY on MDS"
2245         do_facet $SINGLEMDS "$LCTL set_param fail_loc=0" || return 3
2246         rm -f $MOUNT/$tdir/$tfile
2247
2248         log "done"
2249         # restore adaptive timeout
2250         [ $at_max_saved -ne 0 ] && at_max_set $at_max_saved mds client
2251
2252         $LCTL dk $TMP/lustre-log-$TESTNAME.log
2253
2254         CONNCNT=`$LCTL get_param mdc.${FSNAME}*.stats | awk '/mds_connect/{print $2}'`
2255
2256         # retrieve from the log if the client has ever tried to
2257         # contact the fake server after the loss of connection
2258         FAILCONN=`awk "BEGIN {ret = 0;}
2259                        /import_select_connection.*${FSNAME}-MDT0000-mdc.* using connection/ {
2260                                 ret = 1;
2261                                 if (\\\$NF ~ /$FAKENID/) {
2262                                         ret = 2;
2263                                         exit;
2264                                 }
2265                        }
2266                        END {print ret}" $TMP/lustre-log-$TESTNAME.log`
2267
2268         [ "$FAILCONN" == "0" ] && \
2269                 log "ERROR: The client reconnection has not been triggered" && \
2270                 return 4
2271         [ "$FAILCONN" == "2" ] && \
2272                 log "ERROR: The client tried to reconnect to the failover server while the primary was busy" && \
2273                 return 5
2274
2275         # LU-290
2276         # When OBD_FAIL_MDS_RESEND is hit, we sleep for 2 * obd_timeout
2277         # Reconnects are supposed to be rate limited to one every 5s
2278         [ $CONNCNT -gt $((2 * $TIMEOUT / 5 + 1)) ] && \
2279                 log "ERROR: Too many reconnects $CONNCNT" && \
2280                 return 6
2281
2282         cleanup
2283         # remove nid settings
2284         writeconf_or_reformat
2285 }
2286 run_test 35b "Continue reconnection retries, if the active server is busy"
2287
2288 test_36() { # 12743
2289         [ $OSTCOUNT -lt 2 ] && skip_env "skipping test for single OST" && return
2290
2291         [ "$ost_HOST" = "`hostname`" -o "$ost1_HOST" = "`hostname`" ] || \
2292                 { skip "remote OST" && return 0; }
2293
2294         local rc=0
2295         local FSNAME2=test1234
2296         local fs3ost_HOST=$ost_HOST
2297         local MDSDEV=$(mdsdevname ${SINGLEMDS//mds/})
2298
2299         [ -n "$ost1_HOST" ] && fs2ost_HOST=$ost1_HOST && fs3ost_HOST=$ost1_HOST
2300
2301         if [ -z "$fs2ost_DEV" -o -z "$fs2mds_DEV" -o -z "$fs3ost_DEV" ]; then
2302                 is_blkdev $SINGLEMDS $MDSDEV && \
2303                 skip_env "mixed loopback and real device not working" && return
2304         fi
2305
2306         local fs2mdsdev=$(mdsdevname 1_2)
2307         local fs2ostdev=$(ostdevname 1_2)
2308         local fs3ostdev=$(ostdevname 2_2)
2309         local fs2mdsvdev=$(mdsvdevname 1_2)
2310         local fs2ostvdev=$(ostvdevname 1_2)
2311         local fs3ostvdev=$(ostvdevname 2_2)
2312
2313         add fs2mds $(mkfs_opts mds1 ${fs2mdsdev}) --mgs --fsname=${FSNAME2} \
2314                 --reformat $fs2mdsdev $fs2mdsvdev || exit 10
2315         # XXX after we support non 4K disk blocksize in ldiskfs, specify a
2316         #     different one than the default value here.
2317         add fs2ost $(mkfs_opts ost1 ${fs2ostdev}) --mgsnode=$MGSNID \
2318                 --fsname=${FSNAME2} --reformat $fs2ostdev $fs2ostvdev || exit 10
2319         add fs3ost $(mkfs_opts ost2 ${fs3ostdev}) --mgsnode=$MGSNID \
2320                 --fsname=${FSNAME2} --reformat $fs3ostdev $fs3ostvdev || exit 10
2321
2322         start fs2mds $fs2mdsdev $MDS_MOUNT_OPTS
2323         start fs2ost $fs2ostdev $OST_MOUNT_OPTS
2324         start fs3ost $fs3ostdev $OST_MOUNT_OPTS
2325         mkdir -p $MOUNT2
2326         $MOUNT_CMD $MGSNID:/${FSNAME2} $MOUNT2 || return 1
2327
2328         sleep 5 # until 11778 fixed
2329
2330         dd if=/dev/zero of=$MOUNT2/$tfile bs=1M count=7 || return 2
2331
2332         BKTOTAL=`lctl get_param -n obdfilter.*.kbytestotal | awk 'BEGIN{total=0}; {total+=$1}; END{print total}'`
2333         BKFREE=`lctl get_param -n obdfilter.*.kbytesfree | awk 'BEGIN{free=0}; {free+=$1}; END{print free}'`
2334         BKAVAIL=`lctl get_param -n obdfilter.*.kbytesavail | awk 'BEGIN{avail=0}; {avail+=$1}; END{print avail}'`
2335         STRING=`df -P $MOUNT2 | tail -n 1 | awk '{print $2","$3","$4}'`
2336         DFTOTAL=`echo $STRING | cut -d, -f1`
2337         DFUSED=`echo $STRING  | cut -d, -f2`
2338         DFAVAIL=`echo $STRING | cut -d, -f3`
2339         DFFREE=$(($DFTOTAL - $DFUSED))
2340
2341         ALLOWANCE=$((64 * $OSTCOUNT))
2342
2343         if [ $DFTOTAL -lt $(($BKTOTAL - $ALLOWANCE)) ] ||
2344            [ $DFTOTAL -gt $(($BKTOTAL + $ALLOWANCE)) ] ; then
2345                 echo "**** FAIL: df total($DFTOTAL) mismatch OST total($BKTOTAL)"
2346                 rc=1
2347         fi
2348         if [ $DFFREE -lt $(($BKFREE - $ALLOWANCE)) ] ||
2349            [ $DFFREE -gt $(($BKFREE + $ALLOWANCE)) ] ; then
2350                 echo "**** FAIL: df free($DFFREE) mismatch OST free($BKFREE)"
2351                 rc=2
2352         fi
2353         if [ $DFAVAIL -lt $(($BKAVAIL - $ALLOWANCE)) ] ||
2354            [ $DFAVAIL -gt $(($BKAVAIL + $ALLOWANCE)) ] ; then
2355                 echo "**** FAIL: df avail($DFAVAIL) mismatch OST avail($BKAVAIL)"
2356                 rc=3
2357        fi
2358
2359         umount -d $MOUNT2
2360         stop fs3ost -f || return 200
2361         stop fs2ost -f || return 201
2362         stop fs2mds -f || return 202
2363         unload_modules_conf || return 203
2364         return $rc
2365 }
2366 run_test 36 "df report consistency on OSTs with different block size"
2367
2368 test_37() {
2369         local mntpt=$(facet_mntpt $SINGLEMDS)
2370         local mdsdev=$(mdsdevname ${SINGLEMDS//mds/})
2371         local mdsdev_sym="$TMP/sym_mdt.img"
2372         local opts=$MDS_MOUNT_OPTS
2373         local rc=0
2374
2375         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
2376                 skip "Currently only applicable to ldiskfs-based MDTs"
2377                 return
2378         fi
2379
2380         echo "MDS :     $mdsdev"
2381         echo "SYMLINK : $mdsdev_sym"
2382         do_facet $SINGLEMDS rm -f $mdsdev_sym
2383
2384         do_facet $SINGLEMDS ln -s $mdsdev $mdsdev_sym
2385
2386         echo "mount symlink device - $mdsdev_sym"
2387
2388         if ! do_facet $SINGLEMDS test -b $mdsdev; then
2389                 opts=$(csa_add "$opts" -o loop)
2390         fi
2391         mount_op=$(do_facet $SINGLEMDS mount -v -t lustre $opts \
2392                 $mdsdev_sym $mntpt 2>&1)
2393         rc=${PIPESTATUS[0]}
2394
2395         echo mount_op=$mount_op
2396
2397         do_facet $SINGLEMDS "umount -d $mntpt && rm -f $mdsdev_sym"
2398
2399         if $(echo $mount_op | grep -q "unable to set tunable"); then
2400                 error "set tunables failed for symlink device"
2401         fi
2402
2403         [ $rc -eq 0 ] || error "mount symlink $mdsdev_sym failed! rc=$rc"
2404
2405         return 0
2406 }
2407 run_test 37 "verify set tunables works for symlink device"
2408
2409 test_38() { # bug 14222
2410         local fstype=$(facet_fstype $SINGLEMDS)
2411         local mntpt=$(facet_mntpt $SINGLEMDS)
2412
2413         setup
2414         # like runtests
2415         local COUNT=10
2416         local SRC="/etc /bin"
2417         local FILES=$(find $SRC -type f -mtime +1 | head -n $COUNT)
2418         log "copying $(echo $FILES | wc -w) files to $DIR/$tdir"
2419         mkdir -p $DIR/$tdir
2420         tar cf - $FILES | tar xf - -C $DIR/$tdir ||
2421                 error "copying $SRC to $DIR/$tdir"
2422         sync
2423         umount_client $MOUNT
2424         do_facet $SINGLEMDS "$LCTL get_param osp.*.prealloc_next_id"
2425         stop_mds
2426         log "delete lov_objid file on MDS"
2427
2428         mount_fstype $SINGLEMDS || error "mount MDS failed (1)"
2429
2430         do_facet $SINGLEMDS "od -Ax -td8 $mntpt/lov_objid; rm $mntpt/lov_objid"
2431
2432         unmount_fstype $SINGLEMDS || error "umount failed (1)"
2433
2434         # check create in mds_lov_connect
2435         start_mds
2436         mount_client $MOUNT
2437         for f in $FILES; do
2438                 [ $V ] && log "verifying $DIR/$tdir/$f"
2439                 diff -q $f $DIR/$tdir/$f || ERROR=y
2440         done
2441         do_facet $SINGLEMDS "$LCTL get_param osp.*.prealloc_next_id"
2442         if [ "$ERROR" = "y" ]; then
2443                 # check it's updates in sync
2444                 umount_client $MOUNT
2445                 stop_mds
2446                 mount_fstype $SIGNLEMDS
2447                 do_facet $SINGLEMDS "od -Ax -td8 $mntpt/lov_objid"
2448                 unmount_fstype $SINGLEMDS
2449                 error "old and new files are different after connect" || true
2450         fi
2451         touch $DIR/$tdir/f2 || error "f2 file create failed"
2452
2453         # check it's updates in sync
2454         umount_client $MOUNT
2455         stop_mds
2456
2457         mount_fstype $SINGLEMDS || error "mount MDS failed (3)"
2458
2459         do_facet $SINGLEMDS "od -Ax -td8 $mntpt/lov_objid"
2460         do_facet $SINGLEMDS dd if=/dev/zero of=$mntpt/lov_objid.clear count=8
2461
2462         unmount_fstype $SINGLEMDS || error "umount failed (3)"
2463
2464         start_mds
2465         mount_client $MOUNT
2466         for f in $FILES; do
2467                 [ $V ] && log "verifying $DIR/$tdir/$f"
2468                 diff -q $f $DIR/$tdir/$f || ERROR=y
2469         done
2470         touch $DIR/$tdir/f3 || error "f3 file create failed"
2471         do_facet $SINGLEMDS "$LCTL get_param osp.*.prealloc_next_id"
2472         umount_client $MOUNT
2473         stop_mds
2474         mount_fstype $SINGLEMDS || error "mount MDS failed (4)"
2475         do_facet $SINGLEMDS "od -Ax -td8 $mntpt/lov_objid"
2476         unmount_fstype $SINGLEMDS || error "umount failed (4)"
2477
2478         [ "$ERROR" = "y" ] &&
2479                 error "old and new files are different after sync" || true
2480
2481         log "files compared the same"
2482         cleanup
2483 }
2484 run_test 38 "MDS recreates missing lov_objid file from OST data"
2485
2486 test_39() {
2487         PTLDEBUG=+malloc
2488         setup
2489         cleanup
2490         perl $SRCDIR/leak_finder.pl $TMP/debug 2>&1 | egrep '*** Leak:' &&
2491                 error "memory leak detected" || true
2492 }
2493 run_test 39 "leak_finder recognizes both LUSTRE and LNET malloc messages"
2494
2495 test_40() { # bug 15759
2496         start_ost
2497         #define OBD_FAIL_TGT_TOOMANY_THREADS     0x706
2498         do_facet $SINGLEMDS "$LCTL set_param fail_loc=0x80000706"
2499         start_mds
2500         cleanup
2501 }
2502 run_test 40 "race during service thread startup"
2503
2504 test_41a() { #bug 14134
2505         if [ $(facet_fstype $SINGLEMDS) == ldiskfs ] &&
2506            ! do_facet $SINGLEMDS test -b $(mdsdevname 1); then
2507                 skip "Loop devices does not work with nosvc option"
2508                 return
2509         fi
2510
2511         local rc
2512         local MDSDEV=$(mdsdevname ${SINGLEMDS//mds/})
2513
2514         start $SINGLEMDS $MDSDEV $MDS_MOUNT_OPTS -o nosvc -n
2515         start ost1 `ostdevname 1` $OST_MOUNT_OPTS
2516         start $SINGLEMDS $MDSDEV $MDS_MOUNT_OPTS -o nomgs,force
2517         mkdir -p $MOUNT
2518         mount_client $MOUNT || return 1
2519         sleep 5
2520
2521         echo "blah blah" > $MOUNT/$tfile
2522         cat $MOUNT/$tfile
2523
2524         umount_client $MOUNT
2525         stop ost1 -f || return 201
2526         stop_mds -f || return 202
2527         stop_mds -f || return 203
2528         unload_modules_conf || return 204
2529         return $rc
2530 }
2531 run_test 41a "mount mds with --nosvc and --nomgs"
2532
2533 test_41b() {
2534         if [ $(facet_fstype $SINGLEMDS) == ldiskfs ] &&
2535            ! do_facet $SINGLEMDS test -b $(mdsdevname 1); then
2536                 skip "Loop devices does not work with nosvc option"
2537                 return
2538         fi
2539
2540         ! combined_mgs_mds && skip "needs combined mgs device" && return 0
2541
2542         stopall
2543         reformat
2544         local MDSDEV=$(mdsdevname ${SINGLEMDS//mds/})
2545
2546         start $SINGLEMDS $MDSDEV $MDS_MOUNT_OPTS -o nosvc -n
2547         start_ost
2548         start $SINGLEMDS $MDSDEV $MDS_MOUNT_OPTS -o nomgs,force
2549         mkdir -p $MOUNT
2550         mount_client $MOUNT || return 1
2551         sleep 5
2552
2553         echo "blah blah" > $MOUNT/$tfile
2554         cat $MOUNT/$tfile || return 200
2555
2556         umount_client $MOUNT
2557         stop_ost || return 201
2558         stop_mds -f || return 202
2559         stop_mds -f || return 203
2560
2561 }
2562 run_test 41b "mount mds with --nosvc and --nomgs on first mount"
2563
2564 test_41c() {
2565         cleanup
2566         # MDT concurent start
2567         #define OBD_FAIL_TGT_DELAY_CONNECT 0x703
2568         do_facet $SINGLEMDS "lctl set_param fail_loc=0x703"
2569         start mds1 $(mdsdevname 1) $MDS_MOUNT_OPTS &
2570         local pid=$!
2571         sleep 2
2572         do_facet $SINGLEMDS "lctl set_param fail_loc=0x0"
2573         start mds1 $(mdsdevname 1) $MDS_MOUNT_OPTS &
2574         local pid2=$!
2575         wait $pid2
2576         local rc2=$?
2577         wait $pid
2578         local rc=$?
2579         if [ $rc == 0 ] && [ $rc2 == 114 ]; then
2580                 echo "1st MDT start succeed"
2581                 echo "2nd MDT start failed with EALREADY"
2582         elif [ $rc2 == 0 ] && [ $rc == 114 ]; then
2583                 echo "1st MDT start failed with EALREADY"
2584                 echo "2nd MDT start succeed"
2585         else
2586                 stop mds1 -f
2587                 error "unexpected concurent MDT mounts result, rc=$rc rc2=$rc2"
2588         fi
2589
2590         # OST concurent start
2591         #define OBD_FAIL_TGT_DELAY_CONNECT 0x703
2592         do_facet ost1 "lctl set_param fail_loc=0x703"
2593         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS &
2594         pid=$!
2595         sleep 2
2596         do_facet ost1 "lctl set_param fail_loc=0x0"
2597         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS &
2598         pid2=$!
2599         wait $pid2
2600         rc2=$?
2601         wait $pid
2602         rc=$?
2603         if [ $rc == 0 ] && [ $rc2 == 114 ]; then
2604                 echo "1st OST start succeed"
2605                 echo "2nd OST start failed with EALREADY"
2606         elif [ $rc2 == 0 ] && [ $rc == 114 ]; then
2607                 echo "1st OST start failed with EALREADY"
2608                 echo "2nd OST start succeed"
2609         else
2610                 stop mds1 -f
2611                 stop ost1 -f
2612                 error "unexpected concurent OST mounts result, rc=$rc rc2=$rc2"
2613         fi
2614         # cleanup
2615         stop mds1 -f
2616         stop ost1 -f
2617
2618         # verify everything ok
2619         start_mds
2620         if [ $? != 0 ]
2621         then
2622                 stop mds1 -f
2623                 error "MDT(s) start failed"
2624         fi
2625
2626         start_ost
2627         if [ $? != 0 ]
2628         then
2629                 stop mds1 -f
2630                 stop ost1 -f
2631                 error "OST(s) start failed"
2632         fi
2633
2634         mount_client $MOUNT
2635         if [ $? != 0 ]
2636         then
2637                 stop mds1 -f
2638                 stop ost1 -f
2639                 error "client start failed"
2640         fi
2641         check_mount
2642         if [ $? != 0 ]
2643         then
2644                 stop mds1 -f
2645                 stop ost1 -f
2646                 error "client mount failed"
2647         fi
2648         cleanup
2649 }
2650 run_test 41c "concurent mounts of MDT/OST should all fail but one"
2651
2652 test_42() { #bug 14693
2653         setup
2654         check_mount || error "client was not mounted"
2655
2656         do_facet mgs $LCTL conf_param $FSNAME.llite.some_wrong_param=10
2657         umount_client $MOUNT ||
2658                 error "unmounting client failed with invalid llite param"
2659         mount_client $MOUNT ||
2660                 error "mounting client failed with invalid llite param"
2661
2662         do_facet mgs $LCTL conf_param $FSNAME.sys.some_wrong_param=20
2663         cleanup || error "stopping $FSNAME failed with invalid sys param"
2664         load_modules
2665         setup
2666         check_mount || "client was not mounted with invalid sys param"
2667         cleanup || error "stopping $FSNAME failed with invalid sys param"
2668         return 0
2669 }
2670 run_test 42 "allow client/server mount/unmount with invalid config param"
2671
2672 test_43() {
2673         [[ $(lustre_version_code mgs) -ge $(version_code 2.5.58) ]] ||
2674                 { skip "Need MDS version at least 2.5.58" && return 0; }
2675         [ $UID -ne 0 -o $RUNAS_ID -eq 0 ] && skip_env "run as root"
2676
2677         ID1=${ID1:-501}
2678         USER1=$(cat /etc/passwd | grep :$ID1:$ID1: | cut -d: -f1)
2679         [ -z "$USER1" ] && skip_env "missing user with uid=$ID1 gid=$ID1" &&
2680                 return
2681
2682         setup
2683         chmod ugo+x $DIR || error "chmod 0 failed"
2684         set_conf_param_and_check mds                                    \
2685                 "lctl get_param -n mdt.$FSNAME-MDT0000.root_squash"     \
2686                 "$FSNAME.mdt.root_squash"                               \
2687                 "0:0"
2688         wait_update $HOSTNAME                                           \
2689                 "lctl get_param -n llite.${FSNAME}*.root_squash"        \
2690                 "0:0" ||
2691                 error "check llite root_squash failed!"
2692         set_conf_param_and_check mds                                    \
2693                 "lctl get_param -n mdt.$FSNAME-MDT0000.nosquash_nids"   \
2694                 "$FSNAME.mdt.nosquash_nids"                             \
2695                 "NONE"
2696         wait_update $HOSTNAME                                           \
2697                 "lctl get_param -n llite.${FSNAME}*.nosquash_nids"      \
2698                 "NONE" ||
2699                 error "check llite nosquash_nids failed!"
2700
2701     #
2702     # create set of test files
2703     #
2704     echo "111" > $DIR/$tfile-userfile || error "write 1 failed"
2705     chmod go-rw $DIR/$tfile-userfile  || error "chmod 1 failed"
2706     chown $RUNAS_ID.$RUNAS_ID $DIR/$tfile-userfile || error "chown failed"
2707
2708     echo "222" > $DIR/$tfile-rootfile || error "write 2 failed"
2709     chmod go-rw $DIR/$tfile-rootfile  || error "chmod 2 faield"
2710
2711     mkdir $DIR/$tdir-rootdir -p       || error "mkdir failed"
2712     chmod go-rwx $DIR/$tdir-rootdir   || error "chmod 3 failed"
2713     touch $DIR/$tdir-rootdir/tfile-1  || error "touch failed"
2714
2715         echo "777" > $DIR/$tfile-user1file || error "write 7 failed"
2716         chmod go-rw $DIR/$tfile-user1file  || error "chmod 7 failed"
2717         chown $ID1.$ID1 $DIR/$tfile-user1file || error "chown failed"
2718
2719         #
2720         # check root_squash:
2721         #   set root squash UID:GID to RUNAS_ID
2722         #   root should be able to access only files owned by RUNAS_ID
2723         #
2724         set_conf_param_and_check mds                                    \
2725                 "lctl get_param -n mdt.$FSNAME-MDT0000.root_squash"     \
2726                 "$FSNAME.mdt.root_squash"                               \
2727                 "$RUNAS_ID:$RUNAS_ID"
2728         wait_update $HOSTNAME                                           \
2729                 "lctl get_param -n llite.${FSNAME}*.root_squash"        \
2730                 "$RUNAS_ID:$RUNAS_ID" ||
2731                 error "check llite root_squash failed!"
2732
2733     ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tfile-userfile)
2734     dd if=$DIR/$tfile-userfile 1>/dev/null 2>/dev/null || \
2735         error "$ST: root read permission is denied"
2736     echo "$ST: root read permission is granted - ok"
2737
2738     echo "444" | \
2739     dd conv=notrunc of=$DIR/$tfile-userfile 1>/dev/null 2>/dev/null || \
2740         error "$ST: root write permission is denied"
2741     echo "$ST: root write permission is granted - ok"
2742
2743     ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tfile-rootfile)
2744     dd if=$DIR/$tfile-rootfile 1>/dev/null 2>/dev/null && \
2745         error "$ST: root read permission is granted"
2746     echo "$ST: root read permission is denied - ok"
2747
2748     echo "555" | \
2749     dd conv=notrunc of=$DIR/$tfile-rootfile 1>/dev/null 2>/dev/null && \
2750         error "$ST: root write permission is granted"
2751     echo "$ST: root write permission is denied - ok"
2752
2753     ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tdir-rootdir)
2754     rm $DIR/$tdir-rootdir/tfile-1 1>/dev/null 2>/dev/null && \
2755         error "$ST: root unlink permission is granted"
2756     echo "$ST: root unlink permission is denied - ok"
2757
2758     touch $DIR/tdir-rootdir/tfile-2 1>/dev/null 2>/dev/null && \
2759         error "$ST: root create permission is granted"
2760     echo "$ST: root create permission is denied - ok"
2761
2762
2763         # LU-1778
2764         # check root_squash is enforced independently
2765         # of client cache content
2766         #
2767         # access file by USER1, keep access open
2768         # root should be denied access to user file
2769
2770         runas -u $ID1 tail -f $DIR/$tfile-user1file 1>/dev/null 2>&1 &
2771         pid=$!
2772         sleep 1
2773
2774         ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tfile-user1file)
2775         dd if=$DIR/$tfile-user1file 1>/dev/null 2>&1 &&
2776             { kill $pid; error "$ST: root read permission is granted"; }
2777         echo "$ST: root read permission is denied - ok"
2778
2779         echo "777" | \
2780         dd conv=notrunc of=$DIR/$tfile-user1file 1>/dev/null 2>&1 &&
2781             { kill $pid; error "$ST: root write permission is granted"; }
2782         echo "$ST: root write permission is denied - ok"
2783
2784         kill $pid
2785         wait $pid
2786
2787         #
2788         # check nosquash_nids:
2789         #   put client's NID into nosquash_nids list,
2790         #   root should be able to access root file after that
2791         #
2792         local NIDLIST=$(lctl list_nids all | tr '\n' ' ')
2793         NIDLIST="2@elan $NIDLIST 192.168.0.[2,10]@tcp"
2794         NIDLIST=$(echo $NIDLIST | tr -s ' ' ' ')
2795         set_conf_param_and_check mds                                    \
2796                 "lctl get_param -n mdt.$FSNAME-MDT0000.nosquash_nids"   \
2797                 "$FSNAME-MDTall.mdt.nosquash_nids"                      \
2798                 "$NIDLIST"
2799         wait_update $HOSTNAME                                           \
2800                 "lctl get_param -n llite.${FSNAME}*.nosquash_nids"      \
2801                 "$NIDLIST" ||
2802                 error "check llite nosquash_nids failed!"
2803
2804     ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tfile-rootfile)
2805     dd if=$DIR/$tfile-rootfile 1>/dev/null 2>/dev/null || \
2806         error "$ST: root read permission is denied"
2807     echo "$ST: root read permission is granted - ok"
2808
2809     echo "666" | \
2810     dd conv=notrunc of=$DIR/$tfile-rootfile 1>/dev/null 2>/dev/null || \
2811         error "$ST: root write permission is denied"
2812     echo "$ST: root write permission is granted - ok"
2813
2814     ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tdir-rootdir)
2815     rm $DIR/$tdir-rootdir/tfile-1 || \
2816         error "$ST: root unlink permission is denied"
2817     echo "$ST: root unlink permission is granted - ok"
2818     touch $DIR/$tdir-rootdir/tfile-2 || \
2819         error "$ST: root create permission is denied"
2820     echo "$ST: root create permission is granted - ok"
2821
2822     return 0
2823 }
2824 run_test 43 "check root_squash and nosquash_nids"
2825
2826 umount_client $MOUNT
2827 cleanup_nocli
2828
2829 test_44() { # 16317
2830         setup
2831         check_mount || return 2
2832         UUID=$($LCTL get_param llite.${FSNAME}*.uuid | cut -d= -f2)
2833         STATS_FOUND=no
2834         UUIDS=$(do_facet $SINGLEMDS "$LCTL get_param mdt.${FSNAME}*.exports.*.uuid")
2835         for VAL in $UUIDS; do
2836                 NID=$(echo $VAL | cut -d= -f1)
2837                 CLUUID=$(echo $VAL | cut -d= -f2)
2838                 [ "$UUID" = "$CLUUID" ] && STATS_FOUND=yes && break
2839         done
2840         [ "$STATS_FOUND" = "no" ] && error "stats not found for client"
2841         cleanup
2842         return 0
2843 }
2844 run_test 44 "mounted client proc entry exists"
2845
2846 test_45() { #17310
2847         setup
2848         check_mount || return 2
2849         stop_mds
2850         df -h $MOUNT &
2851         log "sleep 60 sec"
2852         sleep 60
2853 #define OBD_FAIL_PTLRPC_LONG_UNLINK   0x50f
2854         do_facet client "lctl set_param fail_loc=0x50f"
2855         log "sleep 10 sec"
2856         sleep 10
2857         manual_umount_client --force || return 3
2858         do_facet client "lctl set_param fail_loc=0x0"
2859         start_mds
2860         mount_client $MOUNT || return 4
2861         cleanup
2862         return 0
2863 }
2864 run_test 45 "long unlink handling in ptlrpcd"
2865
2866 cleanup_46a() {
2867         trap 0
2868         local rc=0
2869         local count=$1
2870
2871         umount_client $MOUNT2 || rc=$?
2872         umount_client $MOUNT || rc=$?
2873         while [ $count -gt 0 ]; do
2874                 stop ost${count} -f || rc=$?
2875                 let count=count-1
2876         done    
2877         stop_mds || rc=$?
2878         cleanup_nocli || rc=$?
2879         #writeconf to remove all ost2 traces for subsequent tests
2880         writeconf_or_reformat
2881         return $rc
2882 }
2883
2884 test_46a() {
2885         echo "Testing with $OSTCOUNT OSTs"
2886         reformat_and_config
2887         start_mds || return 1
2888         #first client should see only one ost
2889         start_ost || return 2
2890         wait_osc_import_state mds ost FULL
2891         #start_client
2892         mount_client $MOUNT || return 3
2893         trap "cleanup_46a $OSTCOUNT" EXIT ERR
2894
2895         local i
2896         for (( i=2; i<=$OSTCOUNT; i++ )); do
2897             start ost$i `ostdevname $i` $OST_MOUNT_OPTS || return $((i+2))
2898         done
2899
2900         # wait until osts in sync
2901         for (( i=2; i<=$OSTCOUNT; i++ )); do
2902             wait_osc_import_state mds ost$i FULL
2903             wait_osc_import_state client ost$i FULL
2904         done
2905
2906         #second client see all ost's
2907
2908         mount_client $MOUNT2 || return 8
2909         $LFS setstripe -c -1 $MOUNT2 || return 9
2910         $LFS getstripe $MOUNT2 || return 10
2911
2912         echo "ok" > $MOUNT2/widestripe
2913         $LFS getstripe $MOUNT2/widestripe || return 11
2914         # fill acl buffer for avoid expand lsm to them
2915         awk -F : '{if (FNR < 25) { print "u:"$1":rwx" }}' /etc/passwd | while read acl; do
2916             setfacl -m $acl $MOUNT2/widestripe
2917         done
2918
2919         # will be deadlock
2920         stat $MOUNT/widestripe || return 12
2921
2922         cleanup_46a $OSTCOUNT || { echo "cleanup_46a failed!" && return 13; }
2923         return 0
2924 }
2925 run_test 46a "handle ost additional - wide striped file"
2926
2927 test_47() { #17674
2928         reformat
2929         setup_noconfig
2930         check_mount || return 2
2931         $LCTL set_param ldlm.namespaces.$FSNAME-*-*-*.lru_size=100
2932
2933         local lru_size=[]
2934         local count=0
2935         for ns in $($LCTL get_param ldlm.namespaces.$FSNAME-*-*-*.lru_size); do
2936             if echo $ns | grep "MDT[[:digit:]]*"; then
2937                 continue
2938             fi
2939             lrs=$(echo $ns | sed 's/.*lru_size=//')
2940             lru_size[count]=$lrs
2941             let count=count+1
2942         done
2943
2944         facet_failover ost1
2945         facet_failover $SINGLEMDS
2946         client_up || return 3
2947
2948         count=0
2949         for ns in $($LCTL get_param ldlm.namespaces.$FSNAME-*-*-*.lru_size); do
2950             if echo $ns | grep "MDT[[:digit:]]*"; then
2951                 continue
2952             fi
2953             lrs=$(echo $ns | sed 's/.*lru_size=//')
2954             if ! test "$lrs" -eq "${lru_size[count]}"; then
2955                 n=$(echo $ns | sed -e 's/ldlm.namespaces.//' -e 's/.lru_size=.*//')
2956                 error "$n has lost lru_size: $lrs vs. ${lru_size[count]}"
2957             fi
2958             let count=count+1
2959         done
2960
2961         cleanup
2962         return 0
2963 }
2964 run_test 47 "server restart does not make client loss lru_resize settings"
2965
2966 cleanup_48() {
2967         trap 0
2968
2969         # reformat after this test is needed - if test will failed
2970         # we will have unkillable file at FS
2971         reformat_and_config
2972 }
2973
2974 test_48() { # bug 17636
2975         reformat
2976         setup_noconfig
2977         check_mount || return 2
2978
2979         $LFS setstripe -c -1 $MOUNT || return 9
2980         $LFS getstripe $MOUNT || return 10
2981
2982         echo "ok" > $MOUNT/widestripe
2983         $LFS getstripe $MOUNT/widestripe || return 11
2984
2985         trap cleanup_48 EXIT ERR
2986
2987         # fill acl buffer for avoid expand lsm to them
2988         getent passwd | awk -F : '{ print "u:"$1":rwx" }' |  while read acl; do
2989             setfacl -m $acl $MOUNT/widestripe
2990         done
2991
2992         stat $MOUNT/widestripe || return 12
2993
2994         cleanup_48
2995         return 0
2996 }
2997 run_test 48 "too many acls on file"
2998
2999 # check PARAM_SYS_LDLM_TIMEOUT option of MKFS.LUSTRE
3000 test_49a() { # bug 17710
3001         local timeout_orig=$TIMEOUT
3002         local ldlm_timeout_orig=$LDLM_TIMEOUT
3003         local LOCAL_TIMEOUT=20
3004
3005         LDLM_TIMEOUT=$LOCAL_TIMEOUT
3006         TIMEOUT=$LOCAL_TIMEOUT
3007
3008         reformat
3009         setup_noconfig
3010         check_mount || error "client mount failed"
3011
3012         echo "check ldlm_timout..."
3013         local LDLM_MDS="$(do_facet $SINGLEMDS lctl get_param -n ldlm_timeout)"
3014         local LDLM_OST1="$(do_facet ost1 lctl get_param -n ldlm_timeout)"
3015         local LDLM_CLIENT="$(do_facet client lctl get_param -n ldlm_timeout)"
3016
3017         if [ $LDLM_MDS -ne $LDLM_OST1 -o $LDLM_MDS -ne $LDLM_CLIENT ]; then
3018                 error "Different LDLM_TIMEOUT:$LDLM_MDS $LDLM_OST1 $LDLM_CLIENT"
3019         fi
3020
3021         if [ $LDLM_MDS -ne $((LOCAL_TIMEOUT / 3)) ]; then
3022                 error "LDLM_TIMEOUT($LDLM_MDS) is not $((LOCAL_TIMEOUT / 3))"
3023         fi
3024
3025         umount_client $MOUNT
3026         stop_ost || error "problem stopping OSS"
3027         stop_mds || error "problem stopping MDS"
3028
3029         LDLM_TIMEOUT=$ldlm_timeout_orig
3030         TIMEOUT=$timeout_orig
3031 }
3032 run_test 49a "check PARAM_SYS_LDLM_TIMEOUT option of mkfs.lustre"
3033
3034 test_49b() { # bug 17710
3035         local timeout_orig=$TIMEOUT
3036         local ldlm_timeout_orig=$LDLM_TIMEOUT
3037         local LOCAL_TIMEOUT=20
3038
3039         LDLM_TIMEOUT=$((LOCAL_TIMEOUT - 1))
3040         TIMEOUT=$LOCAL_TIMEOUT
3041
3042         reformat
3043         setup_noconfig
3044         check_mount || error "client mount failed"
3045
3046         local LDLM_MDS="$(do_facet $SINGLEMDS lctl get_param -n ldlm_timeout)"
3047         local LDLM_OST1="$(do_facet ost1 lctl get_param -n ldlm_timeout)"
3048         local LDLM_CLIENT="$(do_facet client lctl get_param -n ldlm_timeout)"
3049
3050         if [ $LDLM_MDS -ne $LDLM_OST1 -o $LDLM_MDS -ne $LDLM_CLIENT ]; then
3051                 error "Different LDLM_TIMEOUT:$LDLM_MDS $LDLM_OST1 $LDLM_CLIENT"
3052         fi
3053
3054         if [ $LDLM_MDS -ne $((LOCAL_TIMEOUT - 1)) ]; then
3055                 error "LDLM_TIMEOUT($LDLM_MDS) is not $((LOCAL_TIMEOUT - 1))"
3056         fi
3057
3058         cleanup || error "cleanup failed"
3059
3060         LDLM_TIMEOUT=$ldlm_timeout_orig
3061         TIMEOUT=$timeout_orig
3062 }
3063 run_test 49b "check PARAM_SYS_LDLM_TIMEOUT option of mkfs.lustre"
3064
3065 lazystatfs() {
3066         # Test both statfs and lfs df and fail if either one fails
3067         multiop_bg_pause $1 f_
3068         RC1=$?
3069         PID=$!
3070         killall -USR1 multiop
3071         [ $RC1 -ne 0 ] && log "lazystatfs multiop failed"
3072         wait $PID || { RC1=$?; log "multiop return error "; }
3073
3074         $LFS df &
3075         PID=$!
3076         sleep 5
3077         kill -s 0 $PID
3078         RC2=$?
3079         if [ $RC2 -eq 0 ]; then
3080             kill -s 9 $PID
3081             log "lazystatfs df failed"
3082         fi
3083
3084         RC=0
3085         [[ $RC1 -ne 0 || $RC2 -eq 0 ]] && RC=1
3086         return $RC
3087 }
3088
3089 test_50a() {
3090         setup
3091         lctl set_param llite.$FSNAME-*.lazystatfs=1
3092         touch $DIR/$tfile
3093
3094         lazystatfs $MOUNT || error "lazystatfs failed but no down servers"
3095
3096         cleanup || return $?
3097 }
3098 run_test 50a "lazystatfs all servers available =========================="
3099
3100 test_50b() {
3101         setup
3102         lctl set_param llite.$FSNAME-*.lazystatfs=1
3103         touch $DIR/$tfile
3104
3105         # Wait for client to detect down OST
3106         stop_ost || error "Unable to stop OST1"
3107         wait_osc_import_state mds ost DISCONN
3108
3109         lazystatfs $MOUNT || error "lazystatfs should don't have returned EIO"
3110
3111         umount_client $MOUNT || error "Unable to unmount client"
3112         stop_mds || error "Unable to stop MDS"
3113 }
3114 run_test 50b "lazystatfs all servers down =========================="
3115
3116 test_50c() {
3117         start_mds || error "Unable to start MDS"
3118         start_ost || error "Unable to start OST1"
3119         start_ost2 || error "Unable to start OST2"
3120         mount_client $MOUNT || error "Unable to mount client"
3121         lctl set_param llite.$FSNAME-*.lazystatfs=1
3122         touch $DIR/$tfile
3123
3124         # Wait for client to detect down OST
3125         stop_ost || error "Unable to stop OST1"
3126         wait_osc_import_state mds ost DISCONN
3127         lazystatfs $MOUNT || error "lazystatfs failed with one down server"
3128
3129         umount_client $MOUNT || error "Unable to unmount client"
3130         stop_ost2 || error "Unable to stop OST2"
3131         stop_mds || error "Unable to stop MDS"
3132         #writeconf to remove all ost2 traces for subsequent tests
3133         writeconf_or_reformat
3134 }
3135 run_test 50c "lazystatfs one server down =========================="
3136
3137 test_50d() {
3138         start_mds || error "Unable to start MDS"
3139         start_ost || error "Unable to start OST1"
3140         start_ost2 || error "Unable to start OST2"
3141         mount_client $MOUNT || error "Unable to mount client"
3142         lctl set_param llite.$FSNAME-*.lazystatfs=1
3143         touch $DIR/$tfile
3144
3145         # Issue the statfs during the window where the client still
3146         # belives the OST to be available but it is in fact down.
3147         # No failure just a statfs which hangs for a timeout interval.
3148         stop_ost || error "Unable to stop OST1"
3149         lazystatfs $MOUNT || error "lazystatfs failed with one down server"
3150
3151         umount_client $MOUNT || error "Unable to unmount client"
3152         stop_ost2 || error "Unable to stop OST2"
3153         stop_mds || error "Unable to stop MDS"
3154         #writeconf to remove all ost2 traces for subsequent tests
3155         writeconf_or_reformat
3156 }
3157 run_test 50d "lazystatfs client/server conn race =========================="
3158
3159 test_50e() {
3160         local RC1
3161         local pid
3162
3163         reformat_and_config
3164         start_mds || return 1
3165         #first client should see only one ost
3166         start_ost || return 2
3167         wait_osc_import_state mds ost FULL
3168
3169         # Wait for client to detect down OST
3170         stop_ost || error "Unable to stop OST1"
3171         wait_osc_import_state mds ost DISCONN
3172
3173         mount_client $MOUNT || error "Unable to mount client"
3174         lctl set_param llite.$FSNAME-*.lazystatfs=0
3175
3176         multiop_bg_pause $MOUNT _f
3177         RC1=$?
3178         pid=$!
3179
3180         if [ $RC1 -ne 0 ]; then
3181                 log "multiop failed $RC1"
3182         else
3183             kill -USR1 $pid
3184             sleep $(( $TIMEOUT+1 ))
3185             kill -0 $pid
3186             [ $? -ne 0 ] && error "process isn't sleep"
3187             start_ost || error "Unable to start OST1"
3188             wait $pid || error "statfs failed"
3189         fi
3190
3191         umount_client $MOUNT || error "Unable to unmount client"
3192         stop_ost || error "Unable to stop OST1"
3193         stop_mds || error "Unable to stop MDS"
3194 }
3195 run_test 50e "normal statfs all servers down =========================="
3196
3197 test_50f() {
3198         local RC1
3199         local pid
3200         CONN_PROC="osc.$FSNAME-OST0001-osc-[M]*.ost_server_uuid"
3201
3202         start_mds || error "Unable to start mds"
3203         #first client should see only one ost
3204         start_ost || error "Unable to start OST1"
3205         wait_osc_import_state mds ost FULL
3206
3207         start_ost2 || error "Unable to start OST2"
3208         wait_osc_import_state mds ost2 FULL
3209
3210         # Wait for client to detect down OST
3211         stop_ost2 || error "Unable to stop OST2"
3212
3213         wait_osc_import_state mds ost2 DISCONN
3214         mount_client $MOUNT || error "Unable to mount client"
3215         lctl set_param llite.$FSNAME-*.lazystatfs=0
3216
3217         multiop_bg_pause $MOUNT _f
3218         RC1=$?
3219         pid=$!
3220
3221         if [ $RC1 -ne 0 ]; then
3222                 log "lazystatfs multiop failed $RC1"
3223         else
3224             kill -USR1 $pid
3225             sleep $(( $TIMEOUT+1 ))
3226             kill -0 $pid
3227             [ $? -ne 0 ] && error "process isn't sleep"
3228             start_ost2 || error "Unable to start OST2"
3229             wait $pid || error "statfs failed"
3230             stop_ost2 || error "Unable to stop OST2"
3231         fi
3232
3233         umount_client $MOUNT || error "Unable to unmount client"
3234         stop_ost || error "Unable to stop OST1"
3235         stop_mds || error "Unable to stop MDS"
3236         #writeconf to remove all ost2 traces for subsequent tests
3237         writeconf_or_reformat
3238 }
3239 run_test 50f "normal statfs one server in down =========================="
3240
3241 test_50g() {
3242         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2, skipping" && return
3243         setup
3244         start_ost2 || error "Unable to start OST2"
3245         wait_osc_import_state mds ost2 FULL
3246         wait_osc_import_state client ost2 FULL
3247
3248         local PARAM="${FSNAME}-OST0001.osc.active"
3249
3250         $LFS setstripe -c -1 $DIR/$tfile || error "Unable to lfs setstripe"
3251         do_facet mgs $LCTL conf_param $PARAM=0 || error "Unable to deactivate OST"
3252
3253         umount_client $MOUNT || error "Unable to unmount client"
3254         mount_client $MOUNT || error "Unable to mount client"
3255         # This df should not cause a panic
3256         df -k $MOUNT
3257
3258         do_facet mgs $LCTL conf_param $PARAM=1 || error "Unable to activate OST"
3259         rm -f $DIR/$tfile
3260         umount_client $MOUNT || error "Unable to unmount client"
3261         stop_ost2 || error "Unable to stop OST2"
3262         stop_ost || error "Unable to stop OST1"
3263         stop_mds || error "Unable to stop MDS"
3264         #writeconf to remove all ost2 traces for subsequent tests
3265         writeconf_or_reformat
3266 }
3267 run_test 50g "deactivated OST should not cause panic====================="
3268
3269 # LU-642
3270 test_50h() {
3271         # prepare MDT/OST, make OSC inactive for OST1
3272         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2, skipping" && return
3273
3274         [ $(facet_fstype ost1) == zfs ] && import_zpool ost1
3275         do_facet ost1 "$TUNEFS --param osc.active=0 `ostdevname 1`" ||
3276                 error "tunefs OST1 failed"
3277         start_mds  || error "Unable to start MDT"
3278         start_ost  || error "Unable to start OST1"
3279         start_ost2 || error "Unable to start OST2"
3280         mount_client $MOUNT || error "client start failed"
3281
3282         mkdir -p $DIR/$tdir
3283
3284         # activatate OSC for OST1
3285         local TEST="$LCTL get_param -n osc.${FSNAME}-OST0000-osc-[!M]*.active"
3286         set_conf_param_and_check client                                 \
3287                 "$TEST" "${FSNAME}-OST0000.osc.active" 1 ||
3288                 error "Unable to activate OST1"
3289
3290         mkdir -p $DIR/$tdir/2
3291         $LFS setstripe -c -1 -i 0 $DIR/$tdir/2
3292         sleep 1 && echo "create a file after OST1 is activated"
3293         # create some file
3294         createmany -o $DIR/$tdir/2/$tfile-%d 1
3295
3296         # check OSC import is working
3297         stat $DIR/$tdir/2/* >/dev/null 2>&1 ||
3298                 error "some OSC imports are still not connected"
3299
3300         # cleanup
3301         umount_client $MOUNT || error "Unable to umount client"
3302         stop_ost2 || error "Unable to stop OST2"
3303         cleanup_nocli
3304 }
3305 run_test 50h "LU-642: activate deactivated OST  ==="
3306
3307 test_51() {
3308         local LOCAL_TIMEOUT=20
3309
3310         reformat
3311         setup_noconfig
3312         check_mount || return 1
3313
3314         mkdir $MOUNT/d1
3315         $LFS setstripe -c -1 $MOUNT/d1
3316         #define OBD_FAIL_MDS_REINT_DELAY         0x142
3317         do_facet $SINGLEMDS "lctl set_param fail_loc=0x142"
3318         touch $MOUNT/d1/f1 &
3319         local pid=$!
3320         sleep 2
3321         start_ost2 || return 2
3322         wait $pid
3323         stop_ost2 || return 3
3324         cleanup
3325         #writeconf to remove all ost2 traces for subsequent tests
3326         writeconf_or_reformat
3327 }
3328 run_test 51 "Verify that mdt_reint handles RMF_MDT_MD correctly when an OST is added"
3329
3330 copy_files_xattrs()
3331 {
3332         local node=$1
3333         local dest=$2
3334         local xattrs=$3
3335         shift 3
3336
3337         do_node $node mkdir -p $dest
3338         [ $? -eq 0 ] || { error "Unable to create directory"; return 1; }
3339
3340         do_node $node  'tar cf - '$@' | tar xf - -C '$dest';
3341                         [ \"\${PIPESTATUS[*]}\" = \"0 0\" ] || exit 1'
3342         [ $? -eq 0 ] || { error "Unable to tar files"; return 2; }
3343
3344         do_node $node 'getfattr -d -m "[a-z]*\\." '$@' > '$xattrs
3345         [ $? -eq 0 ] || { error "Unable to read xattrs"; return 3; }
3346 }
3347
3348 diff_files_xattrs()
3349 {
3350         local node=$1
3351         local backup=$2
3352         local xattrs=$3
3353         shift 3
3354
3355         local backup2=${TMP}/backup2
3356
3357         do_node $node mkdir -p $backup2
3358         [ $? -eq 0 ] || { error "Unable to create directory"; return 1; }
3359
3360         do_node $node  'tar cf - '$@' | tar xf - -C '$backup2';
3361                         [ \"\${PIPESTATUS[*]}\" = \"0 0\" ] || exit 1'
3362         [ $? -eq 0 ] || { error "Unable to tar files to diff"; return 2; }
3363
3364         do_node $node "diff -rq $backup $backup2"
3365         [ $? -eq 0 ] || { error "contents differ"; return 3; }
3366
3367         local xattrs2=${TMP}/xattrs2
3368         do_node $node 'getfattr -d -m "[a-z]*\\." '$@' > '$xattrs2
3369         [ $? -eq 0 ] || { error "Unable to read xattrs to diff"; return 4; }
3370
3371         do_node $node "diff $xattrs $xattrs2"
3372         [ $? -eq 0 ] || { error "xattrs differ"; return 5; }
3373
3374         do_node $node "rm -rf $backup2 $xattrs2"
3375         [ $? -eq 0 ] || { error "Unable to delete temporary files"; return 6; }
3376 }
3377
3378 test_52() {
3379         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
3380                 skip "Only applicable to ldiskfs-based MDTs"
3381                 return
3382         fi
3383
3384         start_mds
3385         [ $? -eq 0 ] || { error "Unable to start MDS"; return 1; }
3386         start_ost
3387         [ $? -eq 0 ] || { error "Unable to start OST1"; return 2; }
3388         mount_client $MOUNT
3389         [ $? -eq 0 ] || { error "Unable to mount client"; return 3; }
3390
3391         local nrfiles=8
3392         local ost1mnt=$(facet_mntpt ost1)
3393         local ost1node=$(facet_active_host ost1)
3394         local ost1tmp=$TMP/conf52
3395         local loop
3396
3397         mkdir -p $DIR/$tdir
3398         [ $? -eq 0 ] || { error "Unable to create tdir"; return 4; }
3399         touch $TMP/modified_first
3400         [ $? -eq 0 ] || { error "Unable to create temporary file"; return 5; }
3401         local mtime=$(stat -c %Y $TMP/modified_first)
3402         do_node $ost1node "mkdir -p $ost1tmp && touch -m -d @$mtime $ost1tmp/modified_first"
3403
3404         [ $? -eq 0 ] || { error "Unable to create temporary file"; return 6; }
3405         sleep 1
3406
3407         $LFS setstripe -c -1 -S 1M $DIR/$tdir
3408         [ $? -eq 0 ] || { error "lfs setstripe failed"; return 7; }
3409
3410         for (( i=0; i < nrfiles; i++ )); do
3411                 multiop $DIR/$tdir/$tfile-$i Ow1048576w1048576w524288c
3412                 [ $? -eq 0 ] || { error "multiop failed"; return 8; }
3413                 echo -n .
3414         done
3415         echo
3416
3417         # backup files
3418         echo backup files to $TMP/files
3419         local files=$(find $DIR/$tdir -type f -newer $TMP/modified_first)
3420         copy_files_xattrs `hostname` $TMP/files $TMP/file_xattrs $files
3421         [ $? -eq 0 ] || { error "Unable to copy files"; return 9; }
3422
3423         umount_client $MOUNT
3424         [ $? -eq 0 ] || { error "Unable to umount client"; return 10; }
3425         stop_ost
3426         [ $? -eq 0 ] || { error "Unable to stop ost1"; return 11; }
3427
3428         echo mount ost1 as ldiskfs
3429         do_node $ost1node mkdir -p $ost1mnt
3430         [ $? -eq 0 ] || { error "Unable to create $ost1mnt"; return 23; }
3431         if ! do_node $ost1node test -b $ost1_dev; then
3432                 loop="-o loop"
3433         fi
3434         do_node $ost1node mount -t $(facet_fstype ost1) $loop $ost1_dev \
3435                 $ost1mnt
3436         [ $? -eq 0 ] || { error "Unable to mount ost1 as ldiskfs"; return 12; }
3437
3438         # backup objects
3439         echo backup objects to $ost1tmp/objects
3440         local objects=$(do_node $ost1node 'find '$ost1mnt'/O/[0-9]* -type f'\
3441                 '-size +0 -newer '$ost1tmp'/modified_first -regex ".*\/[0-9]+"')
3442         copy_files_xattrs $ost1node $ost1tmp/objects $ost1tmp/object_xattrs \
3443                         $objects
3444         [ $? -eq 0 ] || { error "Unable to copy objects"; return 13; }
3445
3446         # move objects to lost+found
3447         do_node $ost1node 'mv '$objects' '${ost1mnt}'/lost+found'
3448         [ $? -eq 0 ] || { error "Unable to move objects"; return 14; }
3449
3450         # recover objects dry-run
3451         echo "ll_recover_lost_found_objs dry_run"
3452         do_node $ost1node "ll_recover_lost_found_objs -n -d $ost1mnt/O"
3453         [ $? -eq 0 ] || { error "ll_recover_lost_found_objs failed"; return 15; }
3454
3455         # recover objects
3456         echo "ll_recover_lost_found_objs fix run"
3457         do_node $ost1node "ll_recover_lost_found_objs -d $ost1mnt/lost+found"
3458         [ $? -eq 0 ] || { error "ll_recover_lost_found_objs failed"; return 15; }
3459
3460         # compare restored objects against saved ones
3461         diff_files_xattrs $ost1node $ost1tmp/objects $ost1tmp/object_xattrs $objects
3462         [ $? -eq 0 ] || { error "Unable to diff objects"; return 16; }
3463
3464         do_node $ost1node "umount $ost1mnt"
3465         [ $? -eq 0 ] || { error "Unable to umount ost1 as ldiskfs"; return 17; }
3466
3467         start_ost
3468         [ $? -eq 0 ] || { error "Unable to start ost1"; return 18; }
3469         mount_client $MOUNT
3470         [ $? -eq 0 ] || { error "Unable to mount client"; return 19; }
3471
3472         # compare files
3473         diff_files_xattrs `hostname` $TMP/files $TMP/file_xattrs $files
3474         [ $? -eq 0 ] || { error "Unable to diff files"; return 20; }
3475
3476         rm -rf $TMP/files $TMP/file_xattrs
3477         [ $? -eq 0 ] || { error "Unable to delete temporary files"; return 21; }
3478         do_node $ost1node "rm -rf $ost1tmp"
3479         [ $? -eq 0 ] || { error "Unable to delete temporary files"; return 22; }
3480         cleanup
3481 }
3482 run_test 52 "check recovering objects from lost+found"
3483
3484 # Checks threads_min/max/started for some service
3485 #
3486 # Arguments: service name (OST or MDT), facet (e.g., ost1, $SINGLEMDS), and a
3487 # parameter pattern prefix like 'ost.*.ost'.
3488 thread_sanity() {
3489         local modname=$1
3490         local facet=$2
3491         local parampat=$3
3492         local opts=$4
3493         local basethr=$5
3494         local tmin
3495         local tmin2
3496         local tmax
3497         local tmax2
3498         local tstarted
3499         local paramp
3500         local msg="Insane $modname thread counts"
3501         local ncpts=$(check_cpt_number $facet)
3502         local nthrs
3503         shift 4
3504
3505         check_mount || return 41
3506
3507         # We need to expand $parampat, but it may match multiple parameters, so
3508         # we'll pick the first one
3509         if ! paramp=$(do_facet $facet "lctl get_param -N ${parampat}.threads_min"|head -1); then
3510                 error "Couldn't expand ${parampat}.threads_min parameter name"
3511                 return 22
3512         fi
3513
3514         # Remove the .threads_min part
3515         paramp=${paramp%.threads_min}
3516
3517         # Check for sanity in defaults
3518         tmin=$(do_facet $facet "lctl get_param -n ${paramp}.threads_min" || echo 0)
3519         tmax=$(do_facet $facet "lctl get_param -n ${paramp}.threads_max" || echo 0)
3520         tstarted=$(do_facet $facet "lctl get_param -n ${paramp}.threads_started" || echo 0)
3521         lassert 23 "$msg (PDSH problems?)" '(($tstarted && $tmin && $tmax))' || return $?
3522         lassert 24 "$msg" '(($tstarted >= $tmin && $tstarted <= $tmax ))' || return $?
3523         nthrs=$(expr $tmax - $tmin)
3524         if [ $nthrs -lt $ncpts ]; then
3525                 nthrs=0
3526         else
3527                 nthrs=$ncpts
3528         fi
3529
3530         [ $tmin -eq $tmax -a $tmin -eq $tstarted ] &&
3531                 skip_env "module parameter forced $facet thread count" &&
3532                 tmin=3 && tmax=$((3 * tmax))
3533
3534         # Check that we can change min/max
3535         do_facet $facet "lctl set_param ${paramp}.threads_min=$((tmin + nthrs))"
3536         do_facet $facet "lctl set_param ${paramp}.threads_max=$((tmax - nthrs))"
3537         tmin2=$(do_facet $facet "lctl get_param -n ${paramp}.threads_min" || echo 0)
3538         tmax2=$(do_facet $facet "lctl get_param -n ${paramp}.threads_max" || echo 0)
3539         lassert 25 "$msg" '(($tmin2 == ($tmin + $nthrs) && $tmax2 == ($tmax - $nthrs)))' || return $?
3540
3541         # Check that we can set min/max to the same value
3542         tmin=$(do_facet $facet "lctl get_param -n ${paramp}.threads_min" || echo 0)
3543         do_facet $facet "lctl set_param ${paramp}.threads_max=$tmin"
3544         tmin2=$(do_facet $facet "lctl get_param -n ${paramp}.threads_min" || echo 0)
3545         tmax2=$(do_facet $facet "lctl get_param -n ${paramp}.threads_max" || echo 0)
3546         lassert 26 "$msg" '(($tmin2 == $tmin && $tmax2 == $tmin))' || return $?
3547
3548         # Check that we can't set max < min
3549         do_facet $facet "lctl set_param ${paramp}.threads_max=$((tmin - 1))"
3550         tmin2=$(do_facet $facet "lctl get_param -n ${paramp}.threads_min" || echo 0)
3551         tmax2=$(do_facet $facet "lctl get_param -n ${paramp}.threads_max" || echo 0)
3552         lassert 27 "$msg" '(($tmin2 <= $tmax2))' || return $?
3553
3554         # We need to ensure that we get the module options desired; to do this
3555         # we set LOAD_MODULES_REMOTE=true and we call setmodopts below.
3556         LOAD_MODULES_REMOTE=true
3557         cleanup
3558         local oldvalue
3559         local newvalue="${opts}=$(expr $basethr \* $ncpts)"
3560         setmodopts -a $modname "$newvalue" oldvalue
3561
3562         load_modules
3563         setup
3564         check_mount || return 41
3565
3566         # Restore previous setting of MODOPTS_*
3567         setmodopts $modname "$oldvalue"
3568
3569         # Check that $opts took
3570         tmin=$(do_facet $facet "lctl get_param -n ${paramp}.threads_min")
3571         tmax=$(do_facet $facet "lctl get_param -n ${paramp}.threads_max")
3572         tstarted=$(do_facet $facet "lctl get_param -n ${paramp}.threads_started")
3573         lassert 28 "$msg" '(($tstarted >= $tmin && $tstarted <= $tmax ))' || return $?
3574         cleanup
3575
3576         load_modules
3577         setup
3578 }
3579
3580 test_53a() {
3581         setup
3582         thread_sanity OST ost1 'ost.*.ost' 'oss_num_threads' '16'
3583         cleanup
3584 }
3585 run_test 53a "check OSS thread count params"
3586
3587 test_53b() {
3588         setup
3589         local mds=$(do_facet $SINGLEMDS "lctl get_param -N mds.*.*.threads_max \
3590                     2>/dev/null")
3591         if [ -z "$mds" ]; then
3592                 #running this on an old MDT
3593                 thread_sanity MDT $SINGLEMDS 'mdt.*.*.' 'mdt_num_threads' 16
3594         else
3595                 thread_sanity MDT $SINGLEMDS 'mds.*.*.' 'mds_num_threads' 16
3596         fi
3597         cleanup
3598 }
3599 run_test 53b "check MDS thread count params"
3600
3601 test_54a() {
3602         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
3603                 skip "Only applicable to ldiskfs-based MDTs"
3604                 return
3605         fi
3606
3607     do_rpc_nodes $(facet_host ost1) run_llverdev $(ostdevname 1) -p
3608     [ $? -eq 0 ] || error "llverdev failed!"
3609     reformat_and_config
3610 }
3611 run_test 54a "test llverdev and partial verify of device"
3612
3613 test_54b() {
3614         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
3615                 skip "Only applicable to ldiskfs-based MDTs"
3616                 return
3617         fi
3618
3619     setup
3620     run_llverfs $MOUNT -p
3621     [ $? -eq 0 ] || error "llverfs failed!"
3622     cleanup
3623 }
3624 run_test 54b "test llverfs and partial verify of filesystem"
3625
3626 lov_objid_size()
3627 {
3628         local max_ost_index=$1
3629         echo -n $(((max_ost_index + 1) * 8))
3630 }
3631
3632 test_55() {
3633         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
3634                 skip "Only applicable to ldiskfs-based MDTs"
3635                 return
3636         fi
3637
3638         local mdsdev=$(mdsdevname 1)
3639         local mdsvdev=$(mdsvdevname 1)
3640
3641         for i in 1023 2048
3642         do
3643                 add mds1 $(mkfs_opts mds1 ${mdsdev}) --reformat $mdsdev \
3644                         $mdsvdev || exit 10
3645                 add ost1 $(mkfs_opts ost1 $(ostdevname 1)) --index=$i \
3646                         --reformat $(ostdevname 1) $(ostvdevname 1)
3647                 setup_noconfig
3648                 stopall
3649                 setup_noconfig
3650                 sync
3651
3652                 echo checking size of lov_objid for ost index $i
3653                 LOV_OBJID_SIZE=$(do_facet mds1 "$DEBUGFS -R 'stat lov_objid' $mdsdev 2>/dev/null" | grep ^User | awk '{print $6}')
3654                 if [ "$LOV_OBJID_SIZE" != $(lov_objid_size $i) ]; then
3655                         error "lov_objid size has to be $(lov_objid_size $i), not $LOV_OBJID_SIZE"
3656                 else
3657                         echo ok, lov_objid size is correct: $LOV_OBJID_SIZE
3658                 fi
3659                 stopall
3660         done
3661
3662         reformat
3663 }
3664 run_test 55 "check lov_objid size"
3665
3666 test_56() {
3667         local mds_journal_size_orig=$MDSJOURNALSIZE
3668         local n
3669
3670         MDSJOURNALSIZE=16
3671
3672         for num in $(seq 1 $MDSCOUNT); do
3673                 add mds${num} $(mkfs_opts mds${num} $(mdsdevname $num)) \
3674                         --reformat $(mdsdevname $num) $(mdsvdevname $num)
3675         done
3676         add ost1 $(mkfs_opts ost1 $(ostdevname 1)) --index=10000 --reformat \
3677                 $(ostdevname 1) $(ostvdevname 1)
3678         add ost2 $(mkfs_opts ost2 $(ostdevname 2)) --index=1000 --reformat \
3679                 $(ostdevname 2) $(ostvdevname 2)
3680
3681         start_mgsmds
3682         start_ost || error "Unable to start first ost (idx 10000)"
3683         start_ost2 || error "Unable to start second ost (idx 1000)"
3684         mount_client $MOUNT || error "Unable to mount client"
3685         echo ok
3686         $LFS osts
3687         wait_osc_import_state mds ost1 FULL
3688         wait_osc_import_state mds ost2 FULL
3689         $LFS setstripe --stripe-count=-1 $DIR/$tfile || error "Unable to create"
3690         n=$($LFS getstripe --stripe-count $DIR/$tfile)
3691         [ "$n" -eq 2 ] || error "Stripe count not two: $n"
3692         rm $DIR/$tfile
3693         stopall
3694         MDSJOURNALSIZE=$mds_journal_size_orig
3695         reformat
3696 }
3697 run_test 56 "check big OST indexes and out-of-index-order start"
3698
3699 test_57a() { # bug 22656
3700         do_rpc_nodes $(facet_active_host ost1) load_modules_local
3701         local NID=$(do_facet ost1 "$LCTL get_param nis" | tail -1 | awk '{print $1}')
3702         writeconf_or_reformat
3703         [ $(facet_fstype ost1) == zfs ] && import_zpool ost1
3704         do_facet ost1 "$TUNEFS --failnode=$NID `ostdevname 1`" || error "tunefs failed"
3705         start_mgsmds
3706         start_ost && error "OST registration from failnode should fail"
3707         reformat
3708 }
3709 run_test 57a "initial registration from failnode should fail (should return errs)"
3710
3711 test_57b() {
3712         do_rpc_nodes $(facet_active_host ost1) load_modules_local
3713         local NID=$(do_facet ost1 "$LCTL get_param nis" | tail -1 | awk '{print $1}')
3714         writeconf_or_reformat
3715         [ $(facet_fstype ost1) == zfs ] && import_zpool ost1
3716         do_facet ost1 "$TUNEFS --servicenode=$NID `ostdevname 1`" || error "tunefs failed"
3717         start_mgsmds
3718         start_ost || error "OST registration from servicenode should not fail"
3719         reformat
3720 }
3721 run_test 57b "initial registration from servicenode should not fail"
3722
3723 count_osts() {
3724         do_facet mgs $LCTL get_param mgs.MGS.live.$FSNAME | grep OST | wc -l
3725 }
3726
3727 test_58() { # bug 22658
3728         setup_noconfig
3729         mkdir -p $DIR/$tdir
3730         createmany -o $DIR/$tdir/$tfile-%d 100
3731         # make sure that OSTs do not cancel llog cookies before we unmount the MDS
3732 #define OBD_FAIL_OBD_LOG_CANCEL_NET      0x601
3733         do_facet $SINGLEMDS "lctl set_param fail_loc=0x601"
3734         unlinkmany $DIR/$tdir/$tfile-%d 100
3735         stop_mds
3736
3737         local MNTDIR=$(facet_mntpt $SINGLEMDS)
3738         local devname=$(mdsdevname ${SINGLEMDS//mds/})
3739
3740         # remove all files from the OBJECTS dir
3741         mount_fstype $SINGLEMDS
3742
3743         do_facet $SINGLEMDS "find $MNTDIR/O/1/d* -type f -delete"
3744
3745         unmount_fstype $SINGLEMDS
3746         # restart MDS with missing llog files
3747         start_mds
3748         do_facet mds "lctl set_param fail_loc=0"
3749         reformat
3750 }
3751 run_test 58 "missing llog files must not prevent MDT from mounting"
3752
3753 test_59() {
3754         start_mgsmds >> /dev/null
3755         local C1=$(count_osts)
3756         if [ $C1 -eq 0 ]; then
3757                 start_ost >> /dev/null
3758                 C1=$(count_osts)
3759         fi
3760         stopall
3761         echo "original ost count: $C1 (expect > 0)"
3762         [ $C1 -gt 0 ] || error "No OSTs in $FSNAME log"
3763         start_mgsmds -o writeconf >> /dev/null || error "MDT start failed"
3764         local C2=$(count_osts)
3765         echo "after mdt writeconf count: $C2 (expect 0)"
3766         [ $C2 -gt 0 ] && error "MDT writeconf should erase OST logs"
3767         echo "OST start without writeconf should fail:"
3768         start_ost >> /dev/null && error "OST start without writeconf didn't fail"
3769         echo "OST start with writeconf should succeed:"
3770         start_ost -o writeconf >> /dev/null || error "OST1 start failed"
3771         local C3=$(count_osts)
3772         echo "after ost writeconf count: $C3 (expect 1)"
3773         [ $C3 -eq 1 ] || error "new OST writeconf should add:"
3774         start_ost2 -o writeconf >> /dev/null || error "OST2 start failed"
3775         local C4=$(count_osts)
3776         echo "after ost2 writeconf count: $C4 (expect 2)"
3777         [ $C4 -eq 2 ] || error "OST2 writeconf should add log"
3778         stop_ost2 >> /dev/null
3779         cleanup_nocli >> /dev/null
3780         #writeconf to remove all ost2 traces for subsequent tests
3781         writeconf_or_reformat
3782 }
3783 run_test 59 "writeconf mount option"
3784
3785 test_60() { # LU-471
3786         local num
3787
3788         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
3789                 skip "Only applicable to ldiskfs-based MDTs"
3790                 return
3791         fi
3792
3793         for num in $(seq $MDSCOUNT); do
3794                 add mds${num} $(mkfs_opts mds${num} $(mdsdevname $num)) \
3795                         --mkfsoptions='\" -E stride=64 -O ^uninit_bg\"' \
3796                         --reformat $(mdsdevname $num) $(mdsvdevname $num) ||
3797                         exit 10
3798         done
3799
3800         dump=$(do_facet $SINGLEMDS dumpe2fs $(mdsdevname 1))
3801         rc=${PIPESTATUS[0]}
3802         [ $rc -eq 0 ] || error "dumpe2fs $(mdsdevname 1) failed"
3803
3804         # MDT default has dirdata feature
3805         echo $dump | grep dirdata > /dev/null || error "dirdata is not set"
3806         # we disable uninit_bg feature
3807         echo $dump | grep uninit_bg > /dev/null && error "uninit_bg is set"
3808         # we set stride extended options
3809         echo $dump | grep stride > /dev/null || error "stride is not set"
3810         reformat
3811 }
3812 run_test 60 "check mkfs.lustre --mkfsoptions -E -O options setting"
3813
3814 test_61() { # LU-80
3815         local reformat=false
3816
3817         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.1.53) ] ||
3818                 { skip "Need MDS version at least 2.1.53"; return 0; }
3819
3820         if [ $(facet_fstype $SINGLEMDS) == ldiskfs ] &&
3821            ! large_xattr_enabled; then
3822                 reformat=true
3823                 LDISKFS_MKFS_OPTS+=" -O large_xattr"
3824
3825                 for num in $(seq $MDSCOUNT); do
3826                         add mds${num} $(mkfs_opts mds$num $(mdsdevname $num)) \
3827                         --reformat $(mdsdevname $num) $(mdsvdevname $num) ||
3828                         error "add mds $num failed"
3829                 done
3830         fi
3831
3832     setup_noconfig || error "setting up the filesystem failed"
3833     client_up || error "starting client failed"
3834
3835     local file=$DIR/$tfile
3836     touch $file
3837
3838     local large_value="$(generate_string $(max_xattr_size))"
3839     local small_value="bar"
3840
3841     local name="trusted.big"
3842     log "save large xattr $name on $file"
3843     setfattr -n $name -v $large_value $file ||
3844         error "saving $name on $file failed"
3845
3846     local new_value=$(get_xattr_value $name $file)
3847     [[ "$new_value" != "$large_value" ]] &&
3848         error "$name different after saving"
3849
3850     log "shrink value of $name on $file"
3851     setfattr -n $name -v $small_value $file ||
3852         error "shrinking value of $name on $file failed"
3853
3854     new_value=$(get_xattr_value $name $file)
3855     [[ "$new_value" != "$small_value" ]] &&
3856         error "$name different after shrinking"
3857
3858     log "grow value of $name on $file"
3859     setfattr -n $name -v $large_value $file ||
3860         error "growing value of $name on $file failed"
3861
3862     new_value=$(get_xattr_value $name $file)
3863     [[ "$new_value" != "$large_value" ]] &&
3864         error "$name different after growing"
3865
3866     log "check value of $name on $file after remounting MDS"
3867     fail $SINGLEMDS
3868     new_value=$(get_xattr_value $name $file)
3869     [[ "$new_value" != "$large_value" ]] &&
3870         error "$name different after remounting MDS"
3871
3872     log "remove large xattr $name from $file"
3873     setfattr -x $name $file || error "removing $name from $file failed"
3874
3875     rm -f $file
3876     stopall
3877         if $reformat; then
3878                 LDISKFS_MKFS_OPTS=${LDISKFS_MKFS_OPTS% -O large_xattr}
3879                 reformat
3880         fi
3881 }
3882 run_test 61 "large xattr"
3883
3884 test_62() {
3885         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
3886                 skip "Only applicable to ldiskfs-based MDTs"
3887                 return
3888         fi
3889
3890         # MRP-118
3891         local mdsdev=$(mdsdevname 1)
3892         local ostdev=$(ostdevname 1)
3893
3894         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
3895                 { skip "Need MDS version at least 2.2.51"; return 0; }
3896
3897         echo "disable journal for mds"
3898         do_facet mds tune2fs -O ^has_journal $mdsdev || error "tune2fs failed"
3899         start_mds && error "MDT start should fail"
3900         echo "disable journal for ost"
3901         do_facet ost1 tune2fs -O ^has_journal $ostdev || error "tune2fs failed"
3902         start_ost && error "OST start should fail"
3903         cleanup || return $?
3904         reformat_and_config
3905 }
3906 run_test 62 "start with disabled journal"
3907
3908 test_63() {
3909         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
3910                 skip "Only applicable to ldiskfs-based MDTs"
3911                 return
3912         fi
3913
3914         local inode_slab=$(do_facet $SINGLEMDS \
3915                 "awk '/ldiskfs_inode_cache/ { print \\\$5 }' /proc/slabinfo")
3916         if [ -z "$inode_slab" ]; then
3917                 skip "ldiskfs module has not been loaded"
3918                 return
3919         fi
3920
3921         echo "$inode_slab ldisk inodes per page"
3922         [ "$inode_slab" -ge "3" ] ||
3923                 error "ldisk inode size is too big, $inode_slab objs per page"
3924         return
3925 }
3926 run_test 63 "Verify each page can at least hold 3 ldisk inodes"
3927
3928 test_64() {
3929         start_mds
3930         start_ost
3931         start_ost2 || error "Unable to start second ost"
3932         mount_client $MOUNT || error "Unable to mount client"
3933         stop_ost2 || error "Unable to stop second ost"
3934         echo "$LFS df"
3935         $LFS df --lazy || error "lfs df failed"
3936         cleanup || return $?
3937         #writeconf to remove all ost2 traces for subsequent tests
3938         writeconf_or_reformat
3939 }
3940 run_test 64 "check lfs df --lazy "
3941
3942 test_65() { # LU-2237
3943         # Currently, the test is only valid for ldiskfs backend
3944         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
3945                 skip "non-ldiskfs backend" && return
3946
3947         local devname=$(mdsdevname ${SINGLEMDS//mds/})
3948         local brpt=$(facet_mntpt brpt)
3949         local opts=""
3950
3951         if ! do_facet $SINGLEMDS "test -b $devname"; then
3952                 opts="-o loop"
3953         fi
3954
3955         stop_mds
3956         local obj=$(do_facet $SINGLEMDS \
3957                     "$DEBUGFS -c -R \\\"stat last_rcvd\\\" $devname" |
3958                     grep Inode)
3959         if [ -z "$obj" ]; then
3960                 # The MDT may be just re-formatted, mount the MDT for the
3961                 # first time to guarantee the "last_rcvd" file is there.
3962                 start_mds || error "fail to mount the MDS for the first time"
3963                 stop_mds
3964         fi
3965
3966         # remove the "last_rcvd" file
3967         do_facet $SINGLEMDS "mkdir -p $brpt"
3968         do_facet $SINGLEMDS \
3969                 "mount -t $(facet_fstype $SINGLEMDS) $opts $devname $brpt"
3970         do_facet $SINGLEMDS "rm -f ${brpt}/last_rcvd"
3971         do_facet $SINGLEMDS "umount -d $brpt"
3972
3973         # restart MDS, the "last_rcvd" file should be recreated.
3974         start_mds || error "fail to restart the MDS"
3975         stop_mds
3976         obj=$(do_facet $SINGLEMDS \
3977               "$DEBUGFS -c -R \\\"stat last_rcvd\\\" $devname" | grep Inode)
3978         [ -n "$obj" ] || error "fail to re-create the last_rcvd"
3979 }
3980 run_test 65 "re-create the lost last_rcvd file when server mount"
3981
3982 test_66() {
3983         [[ $(lustre_version_code mgs) -ge $(version_code 2.3.59) ]] ||
3984                 { skip "Need MGS version at least 2.3.59"; return 0; }
3985
3986         setup
3987         local OST1_NID=$(do_facet ost1 $LCTL list_nids | head -1)
3988         local MDS_NID=$(do_facet $SINGLEMDS $LCTL list_nids | head -1)
3989
3990         echo "replace_nids should fail if MDS, OSTs and clients are UP"
3991         do_facet mgs $LCTL replace_nids $FSNAME-OST0000 $OST1_NID &&
3992                 error "replace_nids fail"
3993
3994         umount_client $MOUNT || error "unmounting client failed"
3995         echo "replace_nids should fail if MDS and OSTs are UP"
3996         do_facet mgs $LCTL replace_nids $FSNAME-OST0000 $OST1_NID &&
3997                 error "replace_nids fail"
3998
3999         stop_ost
4000         echo "replace_nids should fail if MDS is UP"
4001         do_facet mgs $LCTL replace_nids $FSNAME-OST0000 $OST1_NID &&
4002                 error "replace_nids fail"
4003
4004         stop_mds || error "stopping mds failed"
4005
4006         if combined_mgs_mds; then
4007                 start_mdt 1 "-o nosvc" ||
4008                         error "starting mds with nosvc option failed"
4009         fi
4010
4011         echo "command should accept two parameters"
4012         do_facet mgs $LCTL replace_nids $FSNAME-OST0000 &&
4013                 error "command should accept two params"
4014
4015         echo "correct device name should be passed"
4016         do_facet mgs $LCTL replace_nids $FSNAME-WRONG0000 $OST1_NID &&
4017                 error "wrong devname"
4018
4019         echo "wrong nids list should not destroy the system"
4020         do_facet mgs $LCTL replace_nids $FSNAME-OST0000 "wrong nids list" &&
4021                 error "wrong parse"
4022
4023         echo "replace OST nid"
4024         do_facet mgs $LCTL replace_nids $FSNAME-OST0000 $OST1_NID ||
4025                 error "replace nids failed"
4026
4027         echo "command should accept two parameters"
4028         do_facet mgs $LCTL replace_nids $FSNAME-MDT0000 &&
4029                 error "command should accept two params"
4030
4031         echo "wrong nids list should not destroy the system"
4032         do_facet mgs $LCTL replace_nids $FSNAME-MDT0000 "wrong nids list" &&
4033                 error "wrong parse"
4034
4035         echo "replace MDS nid"
4036         do_facet mgs $LCTL replace_nids $FSNAME-MDT0000 $MDS_NID ||
4037                 error "replace nids failed"
4038
4039         if ! combined_mgs_mds ; then
4040                 stop_mgs
4041         else
4042                 stop_mds
4043         fi
4044
4045         setup_noconfig
4046         check_mount || error "error after nid replace"
4047         cleanup || error "cleanup failed"
4048         reformat
4049 }
4050 run_test 66 "replace nids"
4051
4052 test_67() { #LU-2950
4053         local legacy="$TMP/legacy_lnet_config"
4054         local new="$TMP/new_routes_test"
4055         local out="$TMP/config_out_file"
4056         local verify="$TMP/conv_verify"
4057         local verify_conf="$TMP/conf_verify"
4058
4059         # Create the legacy file that will be run through the
4060         # lustre_routes_conversion script
4061         cat <<- LEGACY_LNET_CONFIG > $legacy
4062                 tcp1 23 192.168.213.1@tcp:1; tcp5 34 193.30.4.3@tcp:4;
4063                 tcp2 54 10.1.3.2@tcp;
4064                 tcp3 10.3.4.3@tcp:3;
4065                 tcp4 10.3.3.4@tcp;
4066         LEGACY_LNET_CONFIG
4067
4068         # Create the verification file to verify the output of
4069         # lustre_routes_conversion script against.
4070         cat <<- VERIFY_LNET_CONFIG > $verify
4071                 tcp1: { gateway: 192.168.213.1@tcp, hop: 23, priority: 1 }
4072                 tcp5: { gateway: 193.30.4.3@tcp, hop: 34, priority: 4 }
4073                 tcp2: { gateway: 10.1.3.2@tcp, hop: 54 }
4074                 tcp3: { gateway: 10.3.4.3@tcp, priority: 3 }
4075                 tcp4: { gateway: 10.3.3.4@tcp }
4076         VERIFY_LNET_CONFIG
4077
4078         # Create the verification file to verify the output of
4079         # lustre_routes_config script against
4080         cat <<- VERIFY_LNET_CONFIG > $verify_conf
4081                 lctl --net tcp1 add_route 192.168.213.1@tcp 23 1
4082                 lctl --net tcp5 add_route 193.30.4.3@tcp 34 4
4083                 lctl --net tcp2 add_route 10.1.3.2@tcp 54 4
4084                 lctl --net tcp3 add_route 10.3.4.3@tcp 1 3
4085                 lctl --net tcp4 add_route 10.3.3.4@tcp 1 3
4086         VERIFY_LNET_CONFIG
4087
4088         lustre_routes_conversion $legacy $new > /dev/null
4089         if [ -f $new ]; then
4090                 # verify the conversion output
4091                 cmp -s $new $verify > /dev/null
4092                 if [ $? -eq 1 ]; then
4093                         error "routes conversion failed"
4094                 fi
4095
4096                 lustre_routes_config --dry-run --verbose $new > $out
4097                 # check that the script succeeded
4098                 cmp -s $out $verify_conf > /dev/null
4099                 if [ $? -eq 1 ]; then
4100                         error "routes config failed"
4101                 fi
4102         else
4103                 error "routes conversion test failed"
4104         fi
4105         # remove generated files
4106         rm -f $new $legacy $verify $verify_conf $out
4107 }
4108 run_test 67 "test routes conversion and configuration"
4109
4110 test_68() {
4111         local fid
4112         local seq
4113         local START
4114         local END
4115
4116         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.4.53) ] ||
4117                 { skip "Need MDS version at least 2.4.53"; return 0; }
4118
4119         umount_client $MOUNT || error "umount client failed"
4120
4121         start_mdt 1 || error "MDT start failed"
4122         start_ost
4123
4124         # START-END - the sequences we'll be reserving
4125         START=$(do_facet $SINGLEMDS \
4126                 lctl get_param -n seq.ctl*.space | awk -F'[[ ]' '{print $2}')
4127         END=$((START + (1 << 30)))
4128         do_facet $SINGLEMDS \
4129                 lctl set_param seq.ctl*.fldb="[$START-$END\):0:mdt"
4130
4131         # reset the sequences MDT0000 has already assigned
4132         do_facet $SINGLEMDS \
4133                 lctl set_param seq.srv*MDT0000.space=clear
4134
4135         # remount to let the client allocate new sequence
4136         mount_client $MOUNT || error "mount client failed"
4137
4138         touch $DIR/$tfile
4139         do_facet $SINGLEMDS \
4140                 lctl get_param seq.srv*MDT0000.space
4141         $LFS path2fid $DIR/$tfile
4142
4143         local old_ifs="$IFS"
4144         IFS='[:]'
4145         fid=($($LFS path2fid $DIR/$tfile))
4146         IFS="$old_ifs"
4147         let seq=${fid[1]}
4148
4149         if [[ $seq < $END ]]; then
4150                 error "used reserved sequence $seq?"
4151         fi
4152         cleanup || return $?
4153 }
4154 run_test 68 "be able to reserve specific sequences in FLDB"
4155
4156 test_69() {
4157         local server_version=$(lustre_version_code $SINGLEMDS)
4158
4159         [[ $server_version -lt $(version_code 2.4.2) ]] &&
4160                 skip "Need MDS version at least 2.4.2" && return
4161
4162         [[ $server_version -ge $(version_code 2.4.50) ]] &&
4163         [[ $server_version -lt $(version_code 2.5.0) ]] &&
4164                 skip "Need MDS version at least 2.5.0" && return
4165
4166         setup
4167
4168         # use OST0000 since it probably has the most creations
4169         local OSTNAME=$(ostname_from_index 0)
4170         local mdtosc_proc1=$(get_mdtosc_proc_path mds1 $OSTNAME)
4171         local last_id=$(do_facet mds1 lctl get_param -n \
4172                         osc.$mdtosc_proc1.prealloc_last_id)
4173
4174         # Want to have OST LAST_ID over 1.5 * OST_MAX_PRECREATE to
4175         # verify that the LAST_ID recovery is working properly.  If
4176         # not, then the OST will refuse to allow the MDS connect
4177         # because the LAST_ID value is too different from the MDS
4178         #define OST_MAX_PRECREATE=20000
4179         local num_create=$((20000 * 5))
4180
4181         mkdir -p $DIR/$tdir
4182         $LFS setstripe -i 0 $DIR/$tdir
4183         createmany -o $DIR/$tdir/$tfile- $num_create ||
4184                 error "createmany: failed to create $num_create files: $?"
4185         # delete all of the files with objects on OST0 so the
4186         # filesystem is not inconsistent later on
4187         $LFS find $MOUNT --ost 0 | xargs rm
4188
4189         stop_ost || error "OST0 stop failure"
4190         add ost1 $(mkfs_opts ost1 $(ostdevname 1)) --reformat --replace \
4191                 $(ostdevname 1) $(ostvdevname 1) ||
4192                 error "reformat and replace $ostdev failed"
4193         start_ost || error "OST0 restart failure"
4194         wait_osc_import_state mds ost FULL
4195
4196         touch $DIR/$tdir/$tfile-last || error "create file after reformat"
4197         local idx=$($LFS getstripe -i $DIR/$tdir/$tfile-last)
4198         [ $idx -ne 0 ] && error "$DIR/$tdir/$tfile-last on $idx not 0" || true
4199
4200         cleanup
4201 }
4202 run_test 69 "replace an OST with the same index"
4203
4204 test_70a() {
4205         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4206         local MDTIDX=1
4207
4208         cleanup
4209
4210         start_mdt 1 || error "MDT0 start fail"
4211
4212         start_ost || error "OST0 start fail"
4213
4214         start_mdt 2 || error "MDT1 start fail"
4215
4216         mount_client $MOUNT || error "mount client fails"
4217
4218         mkdir -p $DIR/$tdir || error "create dir fail"
4219
4220         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
4221                                         error "create remote dir fail"
4222
4223         rm -rf $DIR/$tdir || error "delete dir fail"
4224         cleanup || return $?
4225 }
4226 run_test 70a "start MDT0, then OST, then MDT1"
4227
4228 test_70b() {
4229         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4230         local MDTIDX=1
4231
4232         start_ost || error "OST0 start fail"
4233
4234         start_mdt 1 || error "MDT0 start fail"
4235         start_mdt 2 || error "MDT1 start fail"
4236
4237         mount_client $MOUNT || error "mount client fails"
4238
4239         mkdir -p $DIR/$tdir || error "create dir fail"
4240
4241         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
4242                                         error "create remote dir fail"
4243
4244         rm -rf $DIR/$tdir || error "delete dir fail"
4245
4246         cleanup || return $?
4247 }
4248 run_test 70b "start OST, MDT1, MDT0"
4249
4250 test_70c() {
4251         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4252         local MDTIDX=1
4253
4254         start_mdt 1 || error "MDT0 start fail"
4255         start_mdt 2 || error "MDT1 start fail"
4256         start_ost || error "OST0 start fail"
4257
4258         mount_client $MOUNT || error "mount client fails"
4259         stop_mdt 1 || error "MDT1 start fail"
4260
4261         local mdc_for_mdt1=$($LCTL dl | grep MDT0000-mdc | awk '{print $4}')
4262         echo "deactivate $mdc_for_mdt1"
4263         $LCTL --device $mdc_for_mdt1 deactivate || return 1
4264
4265         mkdir -p $DIR/$tdir && error "mkdir succeed"
4266
4267         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir &&
4268                                         error "create remote dir succeed"
4269
4270         cleanup || return $?
4271 }
4272 run_test 70c "stop MDT0, mkdir fail, create remote dir fail"
4273
4274 test_70d() {
4275         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4276         local MDTIDX=1
4277
4278         start_mdt 1 || error "MDT0 start fail"
4279         start_mdt 2 || error "MDT1 start fail"
4280         start_ost || error "OST0 start fail"
4281
4282         mount_client $MOUNT || error "mount client fails"
4283
4284         stop_mdt 2 || error "MDT1 start fail"
4285
4286         local mdc_for_mdt2=$($LCTL dl | grep MDT0001-mdc |
4287                              awk '{print $4}')
4288         echo "deactivate $mdc_for_mdt2"
4289         $LCTL --device $mdc_for_mdt2 deactivate ||
4290                         error "set $mdc_for_mdt2 deactivate failed"
4291
4292         mkdir -p $DIR/$tdir || error "mkdir fail"
4293         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir &&
4294                         error "create remote dir succeed"
4295
4296         rm -rf $DIR/$tdir || error "delete dir fail"
4297
4298         cleanup || return $?
4299 }
4300 run_test 70d "stop MDT1, mkdir succeed, create remote dir fail"
4301
4302 test_71a() {
4303         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4304         if combined_mgs_mds; then
4305                 skip "needs separate MGS/MDT" && return
4306         fi
4307         local MDTIDX=1
4308
4309         start_mdt 1 || error "MDT0 start fail"
4310         start_ost || error "OST0 start fail"
4311         start_mdt 2 || error "MDT1 start fail"
4312         start_ost2 || error "OST1 start fail"
4313
4314         mount_client $MOUNT || error "mount client fails"
4315
4316         mkdir -p $DIR/$tdir || error "mkdir fail"
4317         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
4318                         error "create remote dir succeed"
4319
4320         mcreate $DIR/$tdir/remote_dir/$tfile || error "create file failed"
4321         rm -rf $DIR/$tdir || error "delete dir fail"
4322
4323         umount_client $MOUNT
4324         stop_mdt 1 || error "MDT0 stop fail"
4325         stop_mdt 2 || error "MDT1 stop fail"
4326         stop_ost || error "OST0 stop fail"
4327         stop_ost2 || error "OST1 stop fail"
4328 }
4329 run_test 71a "start MDT0 OST0, MDT1, OST1"
4330
4331 test_71b() {
4332         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4333         if combined_mgs_mds; then
4334                 skip "needs separate MGS/MDT" && return
4335         fi
4336         local MDTIDX=1
4337
4338         start_mdt 2 || error "MDT1 start fail"
4339         start_ost || error "OST0 start fail"
4340         start_mdt 1 || error "MDT0 start fail"
4341         start_ost2 || error "OST1 start fail"
4342
4343         mount_client $MOUNT || error "mount client fails"
4344
4345         mkdir -p $DIR/$tdir || error "mkdir fail"
4346         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
4347                         error "create remote dir succeed"
4348
4349         mcreate $DIR/$tdir/remote_dir/$tfile || error "create file failed"
4350         rm -rf $DIR/$tdir || error "delete dir fail"
4351
4352         umount_client $MOUNT
4353         stop_mdt 1 || error "MDT0 stop fail"
4354         stop_mdt 2 || error "MDT1 stop fail"
4355         stop_ost || error "OST0 stop fail"
4356         stop_ost2 || error "OST1 stop fail"
4357 }
4358 run_test 71b "start MDT1, OST0, MDT0, OST1"
4359
4360 test_71c() {
4361         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4362         if combined_mgs_mds; then
4363                 skip "needs separate MGS/MDT" && return
4364         fi
4365         local MDTIDX=1
4366
4367         start_ost || error "OST0 start fail"
4368         start_ost2 || error "OST1 start fail"
4369         start_mdt 2 || error "MDT1 start fail"
4370         start_mdt 1 || error "MDT0 start fail"
4371
4372         mount_client $MOUNT || error "mount client fails"
4373
4374         mkdir -p $DIR/$tdir || error "mkdir fail"
4375         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
4376                         error "create remote dir succeed"
4377
4378         mcreate $DIR/$tdir/remote_dir/$tfile || error "create file failed"
4379         rm -rf $DIR/$tdir || error "delete dir fail"
4380
4381         umount_client $MOUNT
4382         stop_mdt 1 || error "MDT0 stop fail"
4383         stop_mdt 2 || error "MDT1 stop fail"
4384         stop_ost || error "OST0 stop fail"
4385         stop_ost2 || error "OST1 stop fail"
4386
4387 }
4388 run_test 71c "start OST0, OST1, MDT1, MDT0"
4389
4390 test_71d() {
4391         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4392         if combined_mgs_mds; then
4393                 skip "needs separate MGS/MDT" && return
4394         fi
4395         local MDTIDX=1
4396
4397         start_ost || error "OST0 start fail"
4398         start_mdt 2 || error "MDT0 start fail"
4399         start_mdt 1 || error "MDT0 start fail"
4400         start_ost2 || error "OST1 start fail"
4401
4402         mount_client $MOUNT || error "mount client fails"
4403
4404         mkdir -p $DIR/$tdir || error "mkdir fail"
4405         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
4406                         error "create remote dir succeed"
4407
4408         mcreate $DIR/$tdir/remote_dir/$tfile || error "create file failed"
4409         rm -rf $DIR/$tdir || error "delete dir fail"
4410
4411         umount_client $MOUNT
4412         stop_mdt 1 || error "MDT0 stop fail"
4413         stop_mdt 2 || error "MDT1 stop fail"
4414         stop_ost || error "OST0 stop fail"
4415         stop_ost2 || error "OST1 stop fail"
4416
4417 }
4418 run_test 71d "start OST0, MDT1, MDT0, OST1"
4419
4420 test_71e() {
4421         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4422         if combined_mgs_mds; then
4423                 skip "needs separate MGS/MDT" && return
4424         fi
4425         local MDTIDX=1
4426
4427         start_ost || error "OST0 start fail"
4428         start_mdt 2 || error "MDT1 start fail"
4429         start_ost2 || error "OST1 start fail"
4430         start_mdt 1 || error "MDT0 start fail"
4431
4432         mount_client $MOUNT || error "mount client fails"
4433
4434         mkdir -p $DIR/$tdir || error "mkdir fail"
4435         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
4436                         error "create remote dir succeed"
4437
4438         mcreate $DIR/$tdir/remote_dir/$tfile || error "create file failed"
4439         rm -rf $DIR/$tdir || error "delete dir fail"
4440
4441         umount_client $MOUNT
4442         stop_mdt 1 || error "MDT0 stop fail"
4443         stop_mdt 2 || error "MDT1 stop fail"
4444         stop_ost || error "OST0 stop fail"
4445         stop_ost2 || error "OST1 stop fail"
4446
4447 }
4448 run_test 71e "start OST0, MDT1, OST1, MDT0"
4449
4450 test_72() { #LU-2634
4451         local mdsdev=$(mdsdevname 1)
4452         local ostdev=$(ostdevname 1)
4453         local cmd="$E2FSCK -fnvd $mdsdev"
4454         local fn=3
4455
4456         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
4457                 skip "ldiskfs only test" && return
4458
4459         #tune MDT with "-O extents"
4460
4461         for num in $(seq $MDSCOUNT); do
4462                 add mds${num} $(mkfs_opts mds$num $(mdsdevname $num)) \
4463                 --reformat $(mdsdevname $num) $(mdsvdevname $num) ||
4464                 error "add mds $num failed"
4465                 $TUNE2FS -O extents $(mdsdevname $num)
4466         done
4467
4468         add ost1 $(mkfs_opts ost1 $ostdev) --reformat $ostdev ||
4469                 error "add $ostdev failed"
4470         start_mgsmds || error "start mds failed"
4471         start_ost || error "start ost failed"
4472         mount_client $MOUNT || error "mount client failed"
4473
4474         #create some short symlinks
4475         mkdir -p $DIR/$tdir
4476         createmany -o $DIR/$tdir/$tfile-%d $fn
4477         echo "create $fn short symlinks"
4478         for i in $(seq -w 1 $fn); do
4479                 ln -s $DIR/$tdir/$tfile-$i $MOUNT/$tfile-$i
4480         done
4481         ls -al $MOUNT
4482
4483         #umount
4484         umount_client $MOUNT || error "umount client failed"
4485         stop_mds || error "stop mds failed"
4486         stop_ost || error "stop ost failed"
4487
4488         #run e2fsck
4489         run_e2fsck $(facet_active_host $SINGLEMDS) $mdsdev "-n"
4490 }
4491 run_test 72 "test fast symlink with extents flag enabled"
4492
4493 test_73() { #LU-3006
4494         load_modules
4495         [ $(facet_fstype ost1) == zfs ] && import_zpool ost1
4496         do_facet ost1 "$TUNEFS --failnode=1.2.3.4@$NETTYPE $(ostdevname 1)" ||
4497                 error "1st tunefs failed"
4498         start_mgsmds || error "start mds failed"
4499         start_ost || error "start ost failed"
4500         mount_client $MOUNT || error "mount client failed"
4501         lctl get_param -n osc.*OST0000-osc-[^M]*.import | grep failover_nids |
4502                 grep 1.2.3.4@$NETTYPE || error "failover nids haven't changed"
4503         umount_client $MOUNT || error "umount client failed"
4504         stopall
4505         reformat
4506 }
4507 run_test 73 "failnode to update from mountdata properly"
4508
4509 test_75() { # LU-2374
4510         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
4511                         skip "Need MDS version at least 2.4.1" && return
4512
4513         local index=0
4514         local opts_mds="$(mkfs_opts mds1 $(mdsdevname 1)) \
4515                 --reformat $(mdsdevname 1) $(mdsvdevname 1)"
4516         local opts_ost="$(mkfs_opts ost1 $(ostdevname 1)) \
4517                 --reformat $(ostdevname 1) $(ostvdevname 1)"
4518
4519         #check with default parameters
4520         add mds1 $opts_mds || error "add mds1 failed for default params"
4521         add ost1 $opts_ost || error "add ost1 failed for default params"
4522
4523         opts_mds=$(echo $opts_mds | sed -e "s/--mdt//")
4524         opts_mds=$(echo $opts_mds |
4525                    sed -e "s/--index=$index/--index=$index --mdt/")
4526         opts_ost=$(echo $opts_ost | sed -e "s/--ost//")
4527         opts_ost=$(echo $opts_ost |
4528                    sed -e "s/--index=$index/--index=$index --ost/")
4529
4530         add mds1 $opts_mds || error "add mds1 failed for new params"
4531         add ost1 $opts_ost || error "add ost1 failed for new params"
4532         return 0
4533 }
4534 run_test 75 "The order of --index should be irrelevant"
4535
4536 test_76a() {
4537         [[ $(lustre_version_code mgs) -ge $(version_code 2.4.52) ]] ||
4538                 { skip "Need MDS version at least 2.4.52" && return 0; }
4539         setup
4540         local MDMB_PARAM="osc.*.max_dirty_mb"
4541         echo "Change MGS params"
4542         local MAX_DIRTY_MB=$($LCTL get_param -n $MDMB_PARAM |
4543                 head -1)
4544         echo "max_dirty_mb: $MAX_DIRTY_MB"
4545         local NEW_MAX_DIRTY_MB=$((MAX_DIRTY_MB + MAX_DIRTY_MB))
4546         echo "new_max_dirty_mb: $NEW_MAX_DIRTY_MB"
4547         do_facet mgs $LCTL set_param -P $MDMB_PARAM=$NEW_MAX_DIRTY_MB
4548         wait_update $HOSTNAME "lctl get_param -n $MDMB_PARAM |
4549                 head -1" $NEW_MAX_DIRTY_MB
4550         MAX_DIRTY_MB=$($LCTL get_param -n $MDMB_PARAM | head -1)
4551         echo "$MAX_DIRTY_MB"
4552         [ $MAX_DIRTY_MB = $NEW_MAX_DIRTY_MB ] ||
4553                 error "error while apply max_dirty_mb"
4554
4555         echo "Check the value is stored after remount"
4556         stopall
4557         setupall
4558         wait_update $HOSTNAME "lctl get_param -n $MDMB_PARAM |
4559                 head -1" $NEW_MAX_DIRTY_MB
4560         MAX_DIRTY_MB=$($LCTL get_param -n $MDMB_PARAM | head -1)
4561         [ $MAX_DIRTY_MB = $NEW_MAX_DIRTY_MB ] ||
4562                 error "max_dirty_mb is not saved after remount"
4563
4564         echo "Change OST params"
4565         CLIENT_PARAM="obdfilter.*.client_cache_count"
4566         local CLIENT_CACHE_COUNT
4567         CLIENT_CACHE_COUNT=$(do_facet ost1 $LCTL get_param -n $CLIENT_PARAM |
4568                 head -1)
4569         echo "client_cache_count: $CLIENT_CACHE_COUNT"
4570         NEW_CLIENT_CACHE_COUNT=$((CLIENT_CACHE_COUNT+CLIENT_CACHE_COUNT))
4571         echo "new_client_cache_count: $NEW_CLIENT_CACHE_COUNT"
4572         do_facet mgs $LCTL set_param -P $CLIENT_PARAM=$NEW_CLIENT_CACHE_COUNT
4573         wait_update $(facet_host ost1) "lctl get_param -n $CLIENT_PARAM |
4574                 head -1" $NEW_CLIENT_CACHE_COUNT
4575         CLIENT_CACHE_COUNT=$(do_facet ost1 $LCTL get_param -n $CLIENT_PARAM |
4576                 head -1)
4577         echo "$CLIENT_CACHE_COUNT"
4578         [ $CLIENT_CACHE_COUNT = $NEW_CLIENT_CACHE_COUNT ] ||
4579                 error "error while apply client_cache_count"
4580
4581         echo "Check the value is stored after remount"
4582         stopall
4583         setupall
4584         wait_update $(facet_host ost1) "lctl get_param -n $CLIENT_PARAM |
4585                 head -1" $NEW_CLIENT_CACHE_COUNT
4586         CLIENT_CACHE_COUNT=$(do_facet ost1 $LCTL get_param -n $CLIENT_PARAM |
4587                 head -1)
4588         echo "$CLIENT_CACHE_COUNT"
4589         [ $CLIENT_CACHE_COUNT = $NEW_CLIENT_CACHE_COUNT ] ||
4590                 error "client_cache_count is not saved after remount"
4591         stopall
4592 }
4593 run_test 76a "set permanent params set_param -P"
4594
4595 test_76b() { # LU-4783
4596         [[ $(lustre_version_code mgs) -ge $(version_code 2.5.57) ]] ||
4597                 { skip "Need MGS version at least 2.5.57" && return 0; }
4598         stopall
4599         setupall
4600         do_facet mgs $LCTL get_param mgs.MGS.live.params ||
4601                 error "start params log failed"
4602         stopall
4603 }
4604 run_test 76b "verify params log setup correctly"
4605
4606 test_77() { # LU-3445
4607         local server_version=$(lustre_version_code $SINGLEMDS)
4608
4609         [[ $server_version -ge $(version_code 2.2.60) ]] &&
4610         [[ $server_version -le $(version_code 2.4.0) ]] &&
4611                 skip "Need MDS version < 2.2.60 or > 2.4.0" && return
4612
4613         if [[ -z "$fs2ost_DEV" || -z "$fs2mds_DEV" ]]; then
4614                 is_blkdev $SINGLEMDS $(mdsdevname ${SINGLEMDS//mds/}) &&
4615                 skip_env "mixed loopback and real device not working" && return
4616         fi
4617
4618         local fs2mdsdev=$(mdsdevname 1_2)
4619         local fs2ostdev=$(ostdevname 1_2)
4620         local fs2mdsvdev=$(mdsvdevname 1_2)
4621         local fs2ostvdev=$(ostvdevname 1_2)
4622         local fsname=test1234
4623         local mgsnid
4624         local failnid="$(h2$NETTYPE 1.2.3.4),$(h2$NETTYPE 4.3.2.1)"
4625
4626         add fs2mds $(mkfs_opts mds1 $fs2mdsdev) --mgs --fsname=$fsname \
4627                 --reformat $fs2mdsdev $fs2mdsvdev || error "add fs2mds failed"
4628         start fs2mds $fs2mdsdev $MDS_MOUNT_OPTS && trap cleanup_fs2 EXIT INT ||
4629                 error "start fs2mds failed"
4630
4631         mgsnid=$(do_facet fs2mds $LCTL list_nids | xargs | tr ' ' ,)
4632         [[ $mgsnid = *,* ]] || mgsnid+=",$mgsnid"
4633
4634         add fs2ost $(mkfs_opts ost1 $fs2ostdev) --mgsnode=$mgsnid \
4635                 --failnode=$failnid --fsname=$fsname \
4636                 --reformat $fs2ostdev $fs2ostvdev ||
4637                         error "add fs2ost failed"
4638         start fs2ost $fs2ostdev $OST_MOUNT_OPTS || error "start fs2ost failed"
4639
4640         mkdir -p $MOUNT2
4641         $MOUNT_CMD $mgsnid:/$fsname $MOUNT2 || error "mount $MOUNT2 failed"
4642         DIR=$MOUNT2 MOUNT=$MOUNT2 check_mount || error "check $MOUNT2 failed"
4643         cleanup_fs2
4644 }
4645 run_test 77 "comma-separated MGS NIDs and failover node NIDs"
4646
4647 test_78() {
4648         [[ $(facet_fstype $SINGLEMDS) != ldiskfs ||
4649            $(facet_fstype ost1) != ldiskfs ]] &&
4650                 skip "only applicable to ldiskfs-based MDTs and OSTs" && return
4651
4652         # reformat the Lustre filesystem with a smaller size
4653         local saved_MDSSIZE=$MDSSIZE
4654         local saved_OSTSIZE=$OSTSIZE
4655         MDSSIZE=$((MDSSIZE - 20000))
4656         OSTSIZE=$((OSTSIZE - 20000))
4657         reformat || error "(1) reformat Lustre filesystem failed"
4658         MDSSIZE=$saved_MDSSIZE
4659         OSTSIZE=$saved_OSTSIZE
4660
4661         # mount the Lustre filesystem
4662         setup_noconfig || error "(2) setup Lustre filesystem failed"
4663
4664         # create some files
4665         log "create test files"
4666         local i
4667         local file
4668         local num_files=100
4669         mkdir -p $MOUNT/$tdir || error "(3) mkdir $MOUNT/$tdir failed"
4670         for i in $(seq $num_files); do
4671                 file=$MOUNT/$tdir/$tfile-$i
4672                 dd if=/dev/urandom of=$file count=1 bs=1M ||
4673                         error "(4) create $file failed"
4674         done
4675
4676         # unmount the Lustre filesystem
4677         cleanup || error "(5) cleanup Lustre filesystem failed"
4678
4679         # run e2fsck on the MDT and OST devices
4680         local mds_host=$(facet_active_host $SINGLEMDS)
4681         local ost_host=$(facet_active_host ost1)
4682         local mds_dev=$(mdsdevname ${SINGLEMDS//mds/})
4683         local ost_dev=$(ostdevname 1)
4684
4685         run_e2fsck $mds_host $mds_dev "-y"
4686         run_e2fsck $ost_host $ost_dev "-y"
4687
4688         # get the original block count of the MDT and OST filesystems
4689         local mds_orig_blks=$(get_block_count $SINGLEMDS $mds_dev)
4690         local ost_orig_blks=$(get_block_count ost1 $ost_dev)
4691
4692         # expand the MDT and OST filesystems to the device size
4693         run_resize2fs $SINGLEMDS $mds_dev "" || error "expand $SINGLEMDS failed"
4694         run_resize2fs ost1 $ost_dev "" || error "expand ost1 failed"
4695
4696         # run e2fsck on the MDT and OST devices again
4697         run_e2fsck $mds_host $mds_dev "-y"
4698         run_e2fsck $ost_host $ost_dev "-y"
4699
4700         # mount the Lustre filesystem
4701         setup
4702
4703         # check the files
4704         log "check files after expanding the MDT and OST filesystems"
4705         for i in $(seq $num_files); do
4706                 file=$MOUNT/$tdir/$tfile-$i
4707                 $CHECKSTAT -t file -s 1048576 $file ||
4708                         error "(6) checkstat $file failed"
4709         done
4710
4711         # create more files
4712         log "create more files after expanding the MDT and OST filesystems"
4713         for i in $(seq $((num_files + 1)) $((num_files + 10))); do
4714                 file=$MOUNT/$tdir/$tfile-$i
4715                 dd if=/dev/urandom of=$file count=1 bs=1M ||
4716                         error "(7) create $file failed"
4717         done
4718
4719         # unmount the Lustre filesystem
4720         cleanup || error "(8) cleanup Lustre filesystem failed"
4721
4722         # run e2fsck on the MDT and OST devices
4723         run_e2fsck $mds_host $mds_dev "-y"
4724         run_e2fsck $ost_host $ost_dev "-y"
4725
4726         # get the maximum block count of the MDT and OST filesystems
4727         local mds_max_blks=$(get_block_count $SINGLEMDS $mds_dev)
4728         local ost_max_blks=$(get_block_count ost1 $ost_dev)
4729
4730         # get the minimum block count of the MDT and OST filesystems
4731         local mds_min_blks=$(run_resize2fs $SINGLEMDS $mds_dev "" "-P" 2>&1 |
4732                                 grep minimum | sed -e 's/^.*filesystem: //g')
4733         local ost_min_blks=$(run_resize2fs ost1 $ost_dev "" "-P" 2>&1 |
4734                                 grep minimum | sed -e 's/^.*filesystem: //g')
4735
4736         # shrink the MDT and OST filesystems to a smaller size
4737         local shrunk=false
4738         local new_blks
4739         local base_blks
4740         if [[ $mds_max_blks -gt $mds_min_blks &&
4741               $mds_max_blks -gt $mds_orig_blks ]]; then
4742                 [[ $mds_orig_blks -gt $mds_min_blks ]] &&
4743                         base_blks=$mds_orig_blks || base_blks=$mds_min_blks
4744                 new_blks=$(( (mds_max_blks - base_blks) / 2 + base_blks ))
4745                 run_resize2fs $SINGLEMDS $mds_dev $new_blks ||
4746                         error "shrink $SINGLEMDS to $new_blks failed"
4747                 shrunk=true
4748         fi
4749
4750         if [[ $ost_max_blks -gt $ost_min_blks &&
4751               $ost_max_blks -gt $ost_orig_blks ]]; then
4752                 [[ $ost_orig_blks -gt $ost_min_blks ]] &&
4753                         base_blks=$ost_orig_blks || base_blks=$ost_min_blks
4754                 new_blks=$(( (ost_max_blks - base_blks) / 2 + base_blks ))
4755                 run_resize2fs ost1 $ost_dev $new_blks ||
4756                         error "shrink ost1 to $new_blks failed"
4757                 shrunk=true
4758         fi
4759
4760         # check whether the MDT or OST filesystem was shrunk or not
4761         if ! $shrunk; then
4762                 combined_mgs_mds || stop_mgs || error "(9) stop mgs failed"
4763                 reformat || error "(10) reformat Lustre filesystem failed"
4764                 return 0
4765         fi
4766
4767         # run e2fsck on the MDT and OST devices again
4768         run_e2fsck $mds_host $mds_dev "-y"
4769         run_e2fsck $ost_host $ost_dev "-y"
4770
4771         # mount the Lustre filesystem again
4772         setup
4773
4774         # check the files
4775         log "check files after shrinking the MDT and OST filesystems"
4776         for i in $(seq $((num_files + 10))); do
4777                 file=$MOUNT/$tdir/$tfile-$i
4778                 $CHECKSTAT -t file -s 1048576 $file ||
4779                         error "(11) checkstat $file failed"
4780         done
4781
4782         # unmount and reformat the Lustre filesystem
4783         cleanup || error "(12) cleanup Lustre filesystem failed"
4784         combined_mgs_mds || stop_mgs || error "(13) stop mgs failed"
4785         reformat || error "(14) reformat Lustre filesystem failed"
4786 }
4787 run_test 78 "run resize2fs on MDT and OST filesystems"
4788
4789 test_79() { # LU-4227
4790         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.5.59) ]] ||
4791                 { skip "Need MDS version at least 2.5.59"; return 0; }
4792
4793         local mdsdev1=$(mdsdevname 1)
4794         local mdsvdev1=$(mdsvdevname 1)
4795         local mdsdev2=$(mdsdevname 2)
4796         local mdsvdev2=$(mdsvdevname 2)
4797         local ostdev1=$(ostdevname 1)
4798         local ostvdev1=$(ostvdevname 1)
4799         local opts_mds1="$(mkfs_opts mds1 $mdsdev1) --reformat"
4800         local opts_mds2="$(mkfs_opts mds2 $mdsdev2) --reformat"
4801         local opts_ost1="$(mkfs_opts ost1 $ostdev1) --reformat"
4802         local mgsnode_opt
4803
4804         # remove --mgs/--mgsnode from mkfs.lustre options
4805         opts_mds1=$(echo $opts_mds1 | sed -e "s/--mgs//")
4806
4807         mgsnode_opt=$(echo $opts_mds2 |
4808                 awk '{ for ( i = 1; i < NF; i++ )
4809                         if ( $i ~ "--mgsnode" ) { print $i; break } }')
4810         [ -n $mgsnode_opt ] &&
4811                 opts_mds2=$(echo $opts_mds2 | sed -e "s/$mgsnode_opt//")
4812
4813         mgsnode_opt=$(echo $opts_ost1 |
4814                 awk '{ for ( i = 1; i < NF; i++ )
4815                         if ( $i ~ "--mgsnode" ) { print $i; break } }')
4816         [ -n $mgsnode_opt ] &&
4817                 opts_ost1=$(echo $opts_ost1 | sed -e "s/$mgsnode_opt//")
4818
4819         # -MGS, format a mdt without --mgs option
4820         add mds1 $opts_mds1 $mdsdev1 $mdsvdev1 &&
4821                 error "Must specify --mgs when formatting mdt combined with mgs"
4822
4823         # +MGS, format a mdt/ost without --mgsnode option
4824         add mds1 $(mkfs_opts mds1 $mdsdev1) --reformat $mdsdev1 $mdsvdev1 \
4825                 > /dev/null || error "start mds1 failed"
4826         add mds2 $opts_mds2 $mdsdev2 $mdsvdev2 &&
4827                 error "Must specify --mgsnode when formatting a mdt"
4828         add ost1 $opts_ost1 $ostdev1 $ostvdev2 &&
4829                 error "Must specify --mgsnode when formatting an ost"
4830
4831         return 0
4832 }
4833 run_test 79 "format MDT/OST without mgs option (should return errors)"
4834
4835 test_80() {
4836         start_mds
4837         start_ost
4838         uuid=$(do_facet ost1 lctl get_param -n mgc.*.uuid)
4839 #define OBD_FAIL_MGS_PAUSE_TARGET_CON       0x906
4840         do_facet ost1 "lctl set_param fail_val=10 fail_loc=0x906"
4841         do_facet mgs "lctl set_param fail_val=10 fail_loc=0x906"
4842         do_facet mgs "lctl set_param -n mgs/MGS/evict_client $uuid"
4843         sleep 30
4844         start_ost2
4845
4846         do_facet ost1 "lctl set_param fail_loc=0"
4847         stopall
4848 }
4849 run_test 80 "mgc import reconnect race"
4850
4851 if ! combined_mgs_mds ; then
4852         stop mgs
4853 fi
4854
4855 cleanup_gss
4856
4857 # restore the values of MDSSIZE and OSTSIZE
4858 MDSSIZE=$STORED_MDSSIZE
4859 OSTSIZE=$STORED_OSTSIZE
4860 reformat
4861
4862 complete $SECONDS
4863 exit_status