Whamcloud - gitweb
LU-1866 osd: ancillary work for initial OI scrub
[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
4 #   return codes, espcially when most of them are mapped to something
5 #   else anyway.  The combination of test number and return code
6 #   figure out what failed.
7
8 set -e
9
10 ONLY=${ONLY:-"$*"}
11
12 # bug number for skipped test:
13 ALWAYS_EXCEPT="$CONF_SANITY_EXCEPT"
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
57 # use small MDS + OST size to speed formatting time
58 # do not use too small MDSSIZE/OSTSIZE, which affect the default jouranl size
59 MDSSIZE=200000
60 OSTSIZE=200000
61 . ${CONFIG:=$LUSTRE/tests/cfg/$NAME.sh}
62
63 if ! combined_mgs_mds; then
64     # bug number for skipped test:    23954
65     ALWAYS_EXCEPT="$ALWAYS_EXCEPT       24b"
66 fi
67
68 # STORED_MDSSIZE is used in test_18
69 if [ -n "$MDSSIZE" ]; then
70     STORED_MDSSIZE=$MDSSIZE
71 fi
72
73 # pass "-E lazy_itable_init" to mke2fs to speed up the formatting time
74 if [[ "$LDISKFS_MKFS_OPTS" != *lazy_itable_init* ]]; then
75         LDISKFS_MKFS_OPTS=$(csa_add "$LDISKFS_MKFS_OPTS" -E lazy_itable_init)
76 fi
77
78 init_logging
79
80 #
81 require_dsh_mds || exit 0
82 require_dsh_ost || exit 0
83 #
84 [ "$SLOW" = "no" ] && EXCEPT_SLOW="30a 31 45"
85
86
87 assert_DIR
88
89 gen_config() {
90         # The MGS must be started before the OSTs for a new fs, so start
91         # and stop to generate the startup logs.
92         start_mds
93         start_ost
94         wait_osc_import_state mds ost FULL
95         stop_ost
96         stop_mds
97 }
98
99 reformat_and_config() {
100         reformat
101         if ! combined_mgs_mds ; then
102                 start_mgs
103         fi
104         gen_config
105 }
106
107 writeconf_or_reformat() {
108         # There are at most 2 OSTs for write_conf test
109         # who knows if/where $TUNEFS is installed?
110         # Better reformat if it fails...
111         writeconf_all $MDSCOUNT 2 ||
112                 { echo "tunefs failed, reformatting instead" &&
113                   reformat_and_config && return 1; }
114         return 0
115 }
116
117 reformat() {
118         formatall
119 }
120
121 start_mgs () {
122         echo "start mgs"
123         start mgs $MGSDEV $MGS_MOUNT_OPTS
124 }
125
126 start_mdt() {
127         local num=$1
128         local facet=mds$num
129         local dev=$(mdsdevname $num)
130         shift 1
131
132         echo "start mds service on `facet_active_host $facet`"
133         start $facet ${dev} $MDS_MOUNT_OPTS $@ || return 94
134 }
135
136 stop_mdt() {
137         local num=$1
138         local facet=mds$num
139         local dev=$(mdsdevname $num)
140         shift 1
141
142         echo "stop mds service on `facet_active_host $facet`"
143         # These tests all use non-failover stop
144         stop $facet -f  || return 97
145 }
146
147 start_mds() {
148         local num
149
150         for num in $(seq $MDSCOUNT); do
151                 start_mdt $num $@ || return 94
152         done
153 }
154
155 start_mgsmds() {
156         if ! combined_mgs_mds ; then
157                 start_mgs
158         fi
159         start_mds $@
160 }
161
162 stop_mds() {
163         local num
164         for num in $(seq $MDSCOUNT); do
165                 stop_mdt $num || return 97
166         done
167 }
168
169 stop_mgs() {
170        echo "stop mgs service on `facet_active_host mgs`"
171        # These tests all use non-failover stop
172        stop mgs -f  || return 97
173 }
174
175 start_ost() {
176         echo "start ost1 service on `facet_active_host ost1`"
177         start ost1 `ostdevname 1` $OST_MOUNT_OPTS $@ || return 95
178 }
179
180 stop_ost() {
181         echo "stop ost1 service on `facet_active_host ost1`"
182         # These tests all use non-failover stop
183         stop ost1 -f  || return 98
184 }
185
186 start_ost2() {
187         echo "start ost2 service on `facet_active_host ost2`"
188         start ost2 `ostdevname 2` $OST_MOUNT_OPTS $@ || return 92
189 }
190
191 stop_ost2() {
192         echo "stop ost2 service on `facet_active_host ost2`"
193         # These tests all use non-failover stop
194         stop ost2 -f  || return 93
195 }
196
197 mount_client() {
198         local MOUNTPATH=$1
199         echo "mount $FSNAME on ${MOUNTPATH}....."
200         zconf_mount `hostname` $MOUNTPATH  || return 96
201 }
202
203 remount_client() {
204         local mountopt="-o remount,$1"
205         local MOUNTPATH=$2
206         echo "remount '$1' lustre on ${MOUNTPATH}....."
207         zconf_mount `hostname`  $MOUNTPATH "$mountopt"  || return 96
208 }
209
210 umount_client() {
211         local MOUNTPATH=$1
212         echo "umount lustre on ${MOUNTPATH}....."
213         zconf_umount `hostname` $MOUNTPATH || return 97
214 }
215
216 manual_umount_client(){
217         local rc
218         local FORCE=$1
219         echo "manual umount lustre on ${MOUNT}...."
220         do_facet client "umount -d ${FORCE} $MOUNT"
221         rc=$?
222         return $rc
223 }
224
225 setup() {
226         start_mds || error "MDT start failed"
227         start_ost || error "OST start failed"
228         mount_client $MOUNT || error "client start failed"
229         client_up || error "client_up failed"
230 }
231
232 setup_noconfig() {
233         if ! combined_mgs_mds ; then
234                 start_mgs
235         fi
236
237         start_mds
238         start_ost
239         mount_client $MOUNT
240 }
241
242 unload_modules_conf () {
243         if combined_mgs_mds || ! local_mode; then
244                 unload_modules || return 1
245         fi
246 }
247
248 cleanup_nocli() {
249         stop_ost || return 202
250         stop_mds || return 201
251         unload_modules_conf || return 203
252 }
253
254 cleanup() {
255         umount_client $MOUNT || return 200
256         cleanup_nocli || return $?
257 }
258
259 check_mount() {
260         do_facet client "cp /etc/passwd $DIR/a" || return 71
261         do_facet client "rm $DIR/a" || return 72
262         # make sure lustre is actually mounted (touch will block,
263         # but grep won't, so do it after)
264         do_facet client "grep $MOUNT' ' /proc/mounts > /dev/null" || return 73
265         echo "setup single mount lustre success"
266 }
267
268 check_mount2() {
269         do_facet client "touch $DIR/a" || return 71
270         do_facet client "rm $DIR/a" || return 72
271         do_facet client "touch $DIR2/a" || return 73
272         do_facet client "rm $DIR2/a" || return 74
273         echo "setup double mount lustre success"
274 }
275
276 build_test_filter
277
278 if [ "$ONLY" == "setup" ]; then
279         setup
280         exit
281 fi
282
283 if [ "$ONLY" == "cleanup" ]; then
284         cleanup
285         exit
286 fi
287
288 init_gss
289
290 #create single point mountpoint
291
292 reformat_and_config
293
294 test_0() {
295         setup
296         check_mount || return 41
297         cleanup || return $?
298 }
299 run_test 0 "single mount setup"
300
301 test_1() {
302         start_mds || error "MDT start failed"
303         start_ost
304         echo "start ost second time..."
305         start_ost && error "2nd OST start should fail"
306         mount_client $MOUNT || error "client start failed"
307         check_mount || return 42
308         cleanup || return $?
309 }
310 run_test 1 "start up ost twice (should return errors)"
311
312 test_2() {
313         start_mdt 1
314         echo "start mds second time.."
315         start_mdt 1 && error "2nd MDT start should fail"
316         start_ost
317         mount_client $MOUNT
318         check_mount || return 43
319         cleanup || return $?
320 }
321 run_test 2 "start up mds twice (should return err)"
322
323 test_3() {
324         setup
325         #mount.lustre returns an error if already in mtab
326         mount_client $MOUNT && error "2nd client mount should fail"
327         check_mount || return 44
328         cleanup || return $?
329 }
330 run_test 3 "mount client twice (should return err)"
331
332 test_4() {
333         setup
334         touch $DIR/$tfile || return 85
335         stop_ost -f
336         cleanup
337         eno=$?
338         # ok for ost to fail shutdown
339         if [ 202 -ne $eno ]; then
340                 return $eno;
341         fi
342         return 0
343 }
344 run_test 4 "force cleanup ost, then cleanup"
345
346 test_5a() {     # was test_5
347         setup
348         touch $DIR/$tfile || return 1
349         fuser -m -v $MOUNT && echo "$MOUNT is in use by user space process."
350
351         stop_mds -f || return 2
352
353         # cleanup may return an error from the failed
354         # disconnects; for now I'll consider this successful
355         # if all the modules have unloaded.
356         umount -d $MOUNT &
357         UMOUNT_PID=$!
358         sleep 6
359         echo "killing umount"
360         kill -TERM $UMOUNT_PID
361         echo "waiting for umount to finish"
362         wait $UMOUNT_PID
363         if grep " $MOUNT " /proc/mounts; then
364                 echo "test 5: /proc/mounts after failed umount"
365                 umount $MOUNT &
366                 UMOUNT_PID=$!
367                 sleep 2
368                 echo "killing umount"
369                 kill -TERM $UMOUNT_PID
370                 echo "waiting for umount to finish"
371                 wait $UMOUNT_PID
372                 grep " $MOUNT " /proc/mounts && echo "test 5: /proc/mounts after second umount" && return 11
373         fi
374
375         manual_umount_client
376         # stop_mds is a no-op here, and should not fail
377         cleanup_nocli || return $?
378         # df may have lingering entry
379         manual_umount_client
380         # mtab may have lingering entry
381         local WAIT=0
382         local MAX_WAIT=20
383         local sleep=1
384         while [ "$WAIT" -ne "$MAX_WAIT" ]; do
385                 sleep $sleep
386                 grep -q $MOUNT" " /etc/mtab || break
387                 echo "Waiting /etc/mtab updated ... "
388                 WAIT=$(( WAIT + sleep))
389         done
390         [ "$WAIT" -eq "$MAX_WAIT" ] && error "/etc/mtab is not updated in $WAIT secs"
391         echo "/etc/mtab updated in $WAIT secs"
392 }
393 run_test 5a "force cleanup mds, then cleanup"
394
395 cleanup_5b () {
396         trap 0
397         start_mgs
398 }
399
400 test_5b() {
401         grep " $MOUNT " /etc/mtab && \
402                 error false "unexpected entry in mtab before mount" && return 10
403
404         local rc=0
405         start_ost
406         if ! combined_mgs_mds ; then
407                 trap cleanup_5b EXIT ERR
408                 start_mds
409                 stop mgs
410         fi
411
412         [ -d $MOUNT ] || mkdir -p $MOUNT
413         mount_client $MOUNT && rc=1
414         grep " $MOUNT " /etc/mtab && \
415                 error "$MOUNT entry in mtab after failed mount" && rc=11
416         umount_client $MOUNT
417         # stop_mds is a no-op here, and should not fail
418         cleanup_nocli || rc=$?
419         if ! combined_mgs_mds ; then
420                 cleanup_5b
421         fi
422         return $rc
423 }
424 run_test 5b "Try to start a client with no MGS (should return errs)"
425
426 test_5c() {
427         grep " $MOUNT " /etc/mtab && \
428                 error false "unexpected entry in mtab before mount" && return 10
429
430         local rc=0
431         start_mds
432         start_ost
433         [ -d $MOUNT ] || mkdir -p $MOUNT
434         local oldfs="${FSNAME}"
435         FSNAME="wrong.${FSNAME}"
436         mount_client $MOUNT || :
437         FSNAME=${oldfs}
438         grep " $MOUNT " /etc/mtab && \
439                 error "$MOUNT entry in mtab after failed mount" && rc=11
440         umount_client $MOUNT
441         cleanup_nocli  || rc=$?
442         return $rc
443 }
444 run_test 5c "cleanup after failed mount (bug 2712) (should return errs)"
445
446 test_5d() {
447         grep " $MOUNT " /etc/mtab && \
448                 error false "unexpected entry in mtab before mount" && return 10
449
450         [ "$(facet_fstype ost1)" = "zfs" ] &&
451                 skip "LU-2059: no local config for ZFS OSTs" && return
452
453         local rc=0
454         start_ost
455         start_mds
456         stop_ost -f
457         mount_client $MOUNT || rc=1
458         cleanup  || rc=$?
459         grep " $MOUNT " /etc/mtab && \
460                 error "$MOUNT entry in mtab after unmount" && rc=11
461         return $rc
462 }
463 run_test 5d "mount with ost down"
464
465 test_5e() {
466         grep " $MOUNT " /etc/mtab && \
467                 error false "unexpected entry in mtab before mount" && return 10
468
469         local rc=0
470         start_mds
471         start_ost
472
473 #define OBD_FAIL_PTLRPC_DELAY_SEND       0x506
474         do_facet client "lctl set_param fail_loc=0x80000506"
475         mount_client $MOUNT || echo "mount failed (not fatal)"
476         cleanup  || rc=$?
477         grep " $MOUNT " /etc/mtab && \
478                 error "$MOUNT entry in mtab after unmount" && rc=11
479         return $rc
480 }
481 run_test 5e "delayed connect, don't crash (bug 10268)"
482
483 test_5f() {
484         if combined_mgs_mds ; then
485                 skip "combined mgs and mds"
486                 return 0
487         fi
488
489         grep " $MOUNT " /etc/mtab && \
490                 error false "unexpected entry in mtab before mount" && return 10
491
492         local rc=0
493         start_ost
494         [ -d $MOUNT ] || mkdir -p $MOUNT
495         mount_client $MOUNT &
496         local pid=$!
497         echo client_mount pid is $pid
498
499         sleep 5
500
501         if ! ps -f -p $pid >/dev/null; then
502                 wait $pid
503                 rc=$?
504                 grep " $MOUNT " /etc/mtab && echo "test 5f: mtab after mount"
505                 error "mount returns $rc, expected to hang"
506                 rc=11
507                 cleanup || rc=$?
508                 return $rc
509         fi
510
511         # start mds
512         start_mds
513
514         # mount should succeed after start mds
515         wait $pid
516         rc=$?
517         [ $rc -eq 0 ] || error "mount returned $rc"
518         grep " $MOUNT " /etc/mtab && echo "test 5f: mtab after mount"
519         cleanup || return $?
520         return $rc
521 }
522 run_test 5f "mds down, cleanup after failed mount (bug 2712)"
523
524 test_6() {
525         setup
526         manual_umount_client
527         mount_client ${MOUNT} || return 87
528         touch $DIR/a || return 86
529         cleanup  || return $?
530 }
531 run_test 6 "manual umount, then mount again"
532
533 test_7() {
534         setup
535         manual_umount_client
536         cleanup_nocli || return $?
537 }
538 run_test 7 "manual umount, then cleanup"
539
540 test_8() {
541         setup
542         mount_client $MOUNT2
543         check_mount2 || return 45
544         umount_client $MOUNT2
545         cleanup  || return $?
546 }
547 run_test 8 "double mount setup"
548
549 test_9() {
550         start_ost
551
552         do_facet ost1 lctl set_param debug=\'inode trace\' || return 1
553         do_facet ost1 lctl set_param subsystem_debug=\'mds ost\' || return 1
554
555         CHECK_PTLDEBUG="`do_facet ost1 lctl get_param -n debug`"
556         if [ "$CHECK_PTLDEBUG" ] && { \
557            [ "$CHECK_PTLDEBUG" = "trace inode warning error emerg console" ] ||
558            [ "$CHECK_PTLDEBUG" = "trace inode" ]; }; then
559            echo "lnet.debug success"
560         else
561            echo "lnet.debug: want 'trace inode', have '$CHECK_PTLDEBUG'"
562            return 1
563         fi
564         CHECK_SUBSYS="`do_facet ost1 lctl get_param -n subsystem_debug`"
565         if [ "$CHECK_SUBSYS" ] && [ "$CHECK_SUBSYS" = "mds ost" ]; then
566            echo "lnet.subsystem_debug success"
567         else
568            echo "lnet.subsystem_debug: want 'mds ost', have '$CHECK_SUBSYS'"
569            return 1
570         fi
571         stop_ost || return $?
572 }
573 run_test 9 "test ptldebug and subsystem for mkfs"
574
575 is_blkdev () {
576         local facet=$1
577         local dev=$2
578         local size=${3:-""}
579
580         local rc=0
581         do_facet $facet "test -b $dev" || rc=1
582         if [[ "$size" ]]; then
583                 local in=$(do_facet $facet "dd if=$dev of=/dev/null bs=1k count=1 skip=$size 2>&1" |\
584                         awk '($3 == "in") { print $1 }')
585                 [[ $in  = "1+0" ]] || rc=1
586         fi
587         return $rc
588 }
589
590 #
591 # Test 16 was to "verify that lustre will correct the mode of OBJECTS".
592 # But with new MDS stack we don't care about the mode of local objects
593 # anymore, so this test is removed. See bug 22944 for more details.
594 #
595
596 test_17() {
597         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
598                 skip "Only applicable to ldiskfs-based MDTs"
599                 return
600         fi
601
602         setup
603         check_mount || return 41
604         cleanup || return $?
605
606         echo "Remove mds config log"
607         if ! combined_mgs_mds ; then
608                 stop mgs
609         fi
610
611         do_facet mgs "$DEBUGFS -w -R 'unlink CONFIGS/$FSNAME-MDT0000' $MGSDEV || return \$?" || return $?
612
613         if ! combined_mgs_mds ; then
614                 start_mgs
615         fi
616
617         start_ost
618         start_mds && return 42
619         reformat_and_config
620 }
621 run_test 17 "Verify failed mds_postsetup won't fail assertion (2936) (should return errs)"
622
623 test_18() {
624         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
625                 skip "Only applicable to ldiskfs-based MDTs"
626                 return
627         fi
628
629         local MDSDEV=$(mdsdevname ${SINGLEMDS//mds/})
630
631         local MIN=2000000
632
633         local OK=
634         # check if current MDSSIZE is large enough
635         [ $MDSSIZE -ge $MIN ] && OK=1 && myMDSSIZE=$MDSSIZE && \
636                 log "use MDSSIZE=$MDSSIZE"
637
638         # check if the global config has a large enough MDSSIZE
639         [ -z "$OK" -a ! -z "$STORED_MDSSIZE" ] && [ $STORED_MDSSIZE -ge $MIN ] && \
640                 OK=1 && myMDSSIZE=$STORED_MDSSIZE && \
641                 log "use STORED_MDSSIZE=$STORED_MDSSIZE"
642
643         # check if the block device is large enough
644         is_blkdev $SINGLEMDS $MDSDEV $MIN
645         local large_enough=$?
646         if [ -n "$OK" ]; then
647                 [ $large_enough -ne 0 ] && OK=""
648         else
649                 [ $large_enough -eq 0 ] && OK=1 && myMDSSIZE=$MIN &&
650                         log "use device $MDSDEV with MIN=$MIN"
651         fi
652
653         # check if a loopback device has enough space for fs metadata (5%)
654
655         if [ -z "$OK" ]; then
656                 local SPACE=$(do_facet $SINGLEMDS "[ -f $MDSDEV -o ! -e $MDSDEV ] && df -P \\\$(dirname $MDSDEV)" |
657                         awk '($1 != "Filesystem") {print $4}')
658                 ! [ -z "$SPACE" ]  &&  [ $SPACE -gt $((MIN / 20)) ] && \
659                         OK=1 && myMDSSIZE=$MIN && \
660                         log "use file $MDSDEV with MIN=$MIN"
661         fi
662
663         [ -z "$OK" ] && skip_env "$MDSDEV too small for ${MIN}kB MDS" && return
664
665
666         echo "mount mds with large journal..."
667
668         local OLD_MDSSIZE=$MDSSIZE
669         MDSSIZE=$myMDSSIZE
670
671         reformat_and_config
672         echo "mount lustre system..."
673         setup
674         check_mount || return 41
675
676         echo "check journal size..."
677         local FOUNDSIZE=$(do_facet $SINGLEMDS "$DEBUGFS -c -R 'stat <8>' $MDSDEV" | awk '/Size: / { print $NF; exit;}')
678         if [ $FOUNDSIZE -gt $((32 * 1024 * 1024)) ]; then
679                 log "Success: mkfs creates large journals. Size: $((FOUNDSIZE >> 20))M"
680         else
681                 error "expected journal size > 32M, found $((FOUNDSIZE >> 20))M"
682         fi
683
684         cleanup || return $?
685
686         MDSSIZE=$OLD_MDSSIZE
687         reformat_and_config
688 }
689 run_test 18 "check mkfs creates large journals"
690
691 test_19a() {
692         start_mds || return 1
693         stop_mds -f || return 2
694 }
695 run_test 19a "start/stop MDS without OSTs"
696
697 test_19b() {
698         [ "$(facet_fstype ost1)" = "zfs" ] &&
699                 skip "LU-2059: no local config for ZFS OSTs" && return
700
701         start_ost || return 1
702         stop_ost -f || return 2
703 }
704 run_test 19b "start/stop OSTs without MDS"
705
706 test_20() {
707         # first format the ost/mdt
708         start_mds
709         start_ost
710         mount_client $MOUNT
711         check_mount || return 43
712         rm -f $DIR/$tfile
713         remount_client ro $MOUNT || return 44
714         touch $DIR/$tfile && echo "$DIR/$tfile created incorrectly" && return 45
715         [ -e $DIR/$tfile ] && echo "$DIR/$tfile exists incorrectly" && return 46
716         remount_client rw $MOUNT || return 47
717         touch $DIR/$tfile
718         [ ! -f $DIR/$tfile ] && echo "$DIR/$tfile missing" && return 48
719         MCNT=`grep -c $MOUNT /etc/mtab`
720         [ "$MCNT" -ne 1 ] && echo "$MOUNT in /etc/mtab $MCNT times" && return 49
721         umount_client $MOUNT
722         stop_mds
723         stop_ost
724 }
725 run_test 20 "remount ro,rw mounts work and doesn't break /etc/mtab"
726
727 test_21a() {
728         start_mds
729         start_ost
730         wait_osc_import_state mds ost FULL
731         stop_ost
732         stop_mds
733 }
734 run_test 21a "start mds before ost, stop ost first"
735
736 test_21b() {
737         [ "$(facet_fstype ost1)" = "zfs" ] &&
738                 skip "LU-2059: no local config for ZFS OSTs" && return
739
740         start_ost
741         start_mds
742         wait_osc_import_state mds ost FULL
743         stop_mds
744         stop_ost
745 }
746 run_test 21b "start ost before mds, stop mds first"
747
748 test_21c() {
749         start_ost
750         start_mds
751         start_ost2
752         wait_osc_import_state mds ost2 FULL
753         stop_ost
754         stop_ost2
755         stop_mds
756         #writeconf to remove all ost2 traces for subsequent tests
757         writeconf_or_reformat
758 }
759 run_test 21c "start mds between two osts, stop mds last"
760
761 test_21d() {
762         if combined_mgs_mds ; then
763                 skip "need separate mgs device" && return 0
764         fi
765         stopall
766
767         reformat
768
769         start_mgs
770         start_ost
771         start_ost2
772         start_mds
773         wait_osc_import_state mds ost2 FULL
774
775         stop_ost
776         stop_ost2
777         stop_mds
778         stop_mgs
779         #writeconf to remove all ost2 traces for subsequent tests
780         writeconf_or_reformat
781         start_mgs
782 }
783 run_test 21d "start mgs then ost and then mds"
784
785 test_22() {
786         local num
787
788         start_mds
789
790         echo Client mount with ost in logs, but none running
791         start_ost
792         # wait until mds connected to ost and open client connection
793         for num in $(seq 1 $MDSCOUNT); do
794                 wait_osc_import_state mds${num} ost FULL
795         done
796         stop_ost
797         mount_client $MOUNT
798         # check_mount will block trying to contact ost
799         mcreate $DIR/$tfile || return 40
800         rm -f $DIR/$tfile || return 42
801         umount_client $MOUNT
802         pass
803
804         echo Client mount with a running ost
805         start_ost
806         if $GSS; then
807                 # if gss enabled, wait full time to let connection from
808                 # mds to ost be established, due to the mismatch between
809                 # initial connect timeout and gss context negotiation timeout.
810                 # This perhaps could be remove after AT landed.
811                 echo "sleep $((TIMEOUT + TIMEOUT + TIMEOUT))s"
812                 sleep $((TIMEOUT + TIMEOUT + TIMEOUT))
813         fi
814         mount_client $MOUNT
815         for num in $(seq 1 $MDSCOUNT); do
816                 wait_osc_import_state mds${num} ost FULL
817         done
818         wait_osc_import_state client ost FULL
819         check_mount || return 41
820         pass
821
822         cleanup
823 }
824 run_test 22 "start a client before osts (should return errs)"
825
826 test_23a() {    # was test_23
827         setup
828         # fail mds
829         stop $SINGLEMDS
830         # force down client so that recovering mds waits for reconnect
831         local running=$(grep -c $MOUNT /proc/mounts) || true
832         if [ $running -ne 0 ]; then
833                 echo "Stopping client $MOUNT (opts: -f)"
834                 umount -f $MOUNT
835         fi
836
837         # enter recovery on mds
838         start_mds
839         # try to start a new client
840         mount_client $MOUNT &
841         sleep 5
842         MOUNT_PID=$(ps -ef | grep "t lustre" | grep -v grep | awk '{print $2}')
843         MOUNT_LUSTRE_PID=`ps -ef | grep mount.lustre | grep -v grep | awk '{print $2}'`
844         echo mount pid is ${MOUNT_PID}, mount.lustre pid is ${MOUNT_LUSTRE_PID}
845         ps --ppid $MOUNT_PID
846         ps --ppid $MOUNT_LUSTRE_PID
847         echo "waiting for mount to finish"
848         ps -ef | grep mount
849         # "ctrl-c" sends SIGINT but it usually (in script) does not work on child process
850         # SIGTERM works but it does not spread to offspring processses
851         kill -s TERM $MOUNT_PID
852         kill -s TERM $MOUNT_LUSTRE_PID
853         # we can not wait $MOUNT_PID because it is not a child of this shell
854         local PID1
855         local PID2
856         local WAIT=0
857         local MAX_WAIT=30
858         local sleep=1
859         while [ "$WAIT" -lt "$MAX_WAIT" ]; do
860                 sleep $sleep
861                 PID1=$(ps -ef | awk '{print $2}' | grep -w $MOUNT_PID)
862                 PID2=$(ps -ef | awk '{print $2}' | grep -w $MOUNT_LUSTRE_PID)
863                 echo PID1=$PID1
864                 echo PID2=$PID2
865                 [ -z "$PID1" -a -z "$PID2" ] && break
866                 echo "waiting for mount to finish ... "
867                 WAIT=$(( WAIT + sleep))
868         done
869         if [ "$WAIT" -eq "$MAX_WAIT" ]; then
870                 error "MOUNT_PID $MOUNT_PID and "\
871                 "MOUNT_LUSTRE_PID $MOUNT_LUSTRE_PID still not killed in $WAIT secs"
872                 ps -ef | grep mount
873         fi
874         stop_mds || error
875         stop_ost || error
876 }
877 run_test 23a "interrupt client during recovery mount delay"
878
879 umount_client $MOUNT
880 cleanup_nocli
881
882 test_23b() {    # was test_23
883         start_mds
884         start_ost
885         # Simulate -EINTR during mount OBD_FAIL_LDLM_CLOSE_THREAD
886         lctl set_param fail_loc=0x80000313
887         mount_client $MOUNT
888         cleanup
889 }
890 run_test 23b "Simulate -EINTR during mount"
891
892 fs2mds_HOST=$mds_HOST
893 fs2ost_HOST=$ost_HOST
894
895 MDSDEV1_2=$fs2mds_DEV
896 OSTDEV1_2=$fs2ost_DEV
897 OSTDEV2_2=$fs3ost_DEV
898
899 cleanup_24a() {
900         trap 0
901         echo "umount $MOUNT2 ..."
902         umount $MOUNT2 || true
903         echo "stopping fs2mds ..."
904         stop fs2mds -f || true
905         echo "stopping fs2ost ..."
906         stop fs2ost -f || true
907 }
908
909 test_24a() {
910         local MDSDEV=$(mdsdevname ${SINGLEMDS//mds/})
911
912         if [ -z "$fs2ost_DEV" -o -z "$fs2mds_DEV" ]; then
913                 is_blkdev $SINGLEMDS $MDSDEV && \
914                 skip_env "mixed loopback and real device not working" && return
915         fi
916
917         [ -n "$ost1_HOST" ] && fs2ost_HOST=$ost1_HOST
918
919         local fs2mdsdev=$(mdsdevname 1_2)
920         local fs2ostdev=$(ostdevname 1_2)
921         local fs2mdsvdev=$(mdsvdevname 1_2)
922         local fs2ostvdev=$(ostvdevname 1_2)
923
924         # test 8-char fsname as well
925         local FSNAME2=test1234
926
927         add fs2mds $(mkfs_opts mds1 ${fs2mdsdev} ) --nomgs --mgsnode=$MGSNID \
928                 --fsname=${FSNAME2} --reformat $fs2mdsdev $fs2mdsvdev || exit 10
929
930         add fs2ost $(mkfs_opts ost1 ${fs2ostdev}) --fsname=${FSNAME2} \
931                 --reformat $fs2ostdev $fs2ostvdev || exit 10
932
933         setup
934         start fs2mds $fs2mdsdev $MDS_MOUNT_OPTS && trap cleanup_24a EXIT INT
935         start fs2ost $fs2ostdev $OST_MOUNT_OPTS
936         mkdir -p $MOUNT2
937         mount -t lustre $MGSNID:/${FSNAME2} $MOUNT2 || return 1
938         # 1 still works
939         check_mount || return 2
940         # files written on 1 should not show up on 2
941         cp /etc/passwd $DIR/$tfile
942         sleep 10
943         [ -e $MOUNT2/$tfile ] && error "File bleed" && return 7
944         # 2 should work
945         sleep 5
946         cp /etc/passwd $MOUNT2/b || return 3
947         rm $MOUNT2/b || return 4
948         # 2 is actually mounted
949         grep $MOUNT2' ' /proc/mounts > /dev/null || return 5
950         # failover
951         facet_failover fs2mds
952         facet_failover fs2ost
953         df
954         umount_client $MOUNT
955         # the MDS must remain up until last MDT
956         stop_mds
957         MDS=$(do_facet $SINGLEMDS "lctl get_param -n devices" | awk '($3 ~ "mdt" && $4 ~ "MDT") { print $4 }' | head -1)
958         [ -z "$MDS" ] && error "No MDT" && return 8
959         cleanup_24a
960         cleanup_nocli || return 6
961 }
962 run_test 24a "Multiple MDTs on a single node"
963
964 test_24b() {
965         local MDSDEV=$(mdsdevname ${SINGLEMDS//mds/})
966
967         if [ -z "$fs2mds_DEV" ]; then
968                 local dev=${SINGLEMDS}_dev
969                 local MDSDEV=${!dev}
970                 is_blkdev $SINGLEMDS $MDSDEV && \
971                 skip_env "mixed loopback and real device not working" && return
972         fi
973
974         local fs2mdsdev=$(mdsdevname 1_2)
975         local fs2mdsvdev=$(mdsvdevname 1_2)
976
977         add fs2mds $(mkfs_opts mds1 ${fs2mdsdev} ) --mgs --fsname=${FSNAME}2 \
978                 --reformat $fs2mdsdev $fs2mdsvdev || exit 10
979         setup
980         start fs2mds $fs2mdsdev $MDS_MOUNT_OPTS && return 2
981         cleanup || return 6
982 }
983 run_test 24b "Multiple MGSs on a single node (should return err)"
984
985 test_25() {
986         setup
987         check_mount || return 2
988         local MODULES=$($LCTL modules | awk '{ print $2 }')
989         rmmod $MODULES 2>/dev/null || true
990         cleanup || return 6
991 }
992 run_test 25 "Verify modules are referenced"
993
994 test_26() {
995     load_modules
996     # we need modules before mount for sysctl, so make sure...
997     do_facet $SINGLEMDS "lsmod | grep -q lustre || modprobe lustre"
998 #define OBD_FAIL_MDS_FS_SETUP            0x135
999     do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000135"
1000     start_mds && echo MDS started && return 1
1001     lctl get_param -n devices
1002     DEVS=$(lctl get_param -n devices | egrep -v MG | wc -l)
1003     [ $DEVS -gt 0 ] && return 2
1004     # start mds to drop writeconf setting
1005     start_mds || return 3
1006     stop_mds || return 4
1007     unload_modules_conf || return $?
1008 }
1009 run_test 26 "MDT startup failure cleans LOV (should return errs)"
1010
1011 test_27a() {
1012         [ "$(facet_fstype ost1)" = "zfs" ] &&
1013                 skip "LU-2059: no local config for ZFS OSTs" && return
1014
1015         start_ost || return 1
1016         start_mds || return 2
1017         echo "Requeue thread should have started: "
1018         ps -e | grep ll_cfg_requeue
1019         set_conf_param_and_check ost1                                         \
1020            "lctl get_param -n obdfilter.$FSNAME-OST0000.client_cache_seconds" \
1021            "$FSNAME-OST0000.ost.client_cache_seconds" || return 3
1022         cleanup_nocli
1023 }
1024 run_test 27a "Reacquire MGS lock if OST started first"
1025
1026 test_27b() {
1027         # FIXME. ~grev
1028         setup
1029         local device=$(do_facet $SINGLEMDS "lctl get_param -n devices" |
1030                         awk '($3 ~ "mdt" && $4 ~ "MDT0000") { print $4 }')
1031
1032         facet_failover $SINGLEMDS
1033         set_conf_param_and_check $SINGLEMDS                             \
1034                 "lctl get_param -n mdt.$device.identity_acquire_expire" \
1035                 "$device.mdt.identity_acquire_expire" || return 3
1036         set_conf_param_and_check client                                 \
1037                 "lctl get_param -n mdc.$device-mdc-*.max_rpcs_in_flight"\
1038                 "$device.mdc.max_rpcs_in_flight" || return 4
1039         check_mount
1040         cleanup
1041 }
1042 run_test 27b "Reacquire MGS lock after failover"
1043
1044 test_28() {
1045         setup
1046         TEST="lctl get_param -n llite.$FSNAME-*.max_read_ahead_whole_mb"
1047         PARAM="$FSNAME.llite.max_read_ahead_whole_mb"
1048         ORIG=$($TEST)
1049         FINAL=$(($ORIG + 1))
1050         set_conf_param_and_check client "$TEST" "$PARAM" $FINAL || return 3
1051         FINAL=$(($FINAL + 1))
1052         set_conf_param_and_check client "$TEST" "$PARAM" $FINAL || return 4
1053         umount_client $MOUNT || return 200
1054         mount_client $MOUNT
1055         RESULT=$($TEST)
1056         if [ $RESULT -ne $FINAL ]; then
1057             echo "New config not seen: wanted $FINAL got $RESULT"
1058             return 4
1059         else
1060             echo "New config success: got $RESULT"
1061         fi
1062         set_conf_param_and_check client "$TEST" "$PARAM" $ORIG || return 5
1063         cleanup
1064 }
1065 run_test 28 "permanent parameter setting"
1066
1067 test_29() {
1068         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2, skipping" && return
1069         setup > /dev/null 2>&1
1070         start_ost2
1071         sleep 10
1072
1073         local PARAM="$FSNAME-OST0001.osc.active"
1074         local PROC_ACT="osc.$FSNAME-OST0001-osc-[^M]*.active"
1075         local PROC_UUID="osc.$FSNAME-OST0001-osc-[^M]*.ost_server_uuid"
1076
1077         ACTV=$(lctl get_param -n $PROC_ACT)
1078         DEAC=$((1 - $ACTV))
1079         set_conf_param_and_check client \
1080                 "lctl get_param -n $PROC_ACT" "$PARAM" $DEAC || return 2
1081         # also check ost_server_uuid status
1082         RESULT=$(lctl get_param -n $PROC_UUID | grep DEACTIV)
1083         if [ -z "$RESULT" ]; then
1084             echo "Live client not deactivated: $(lctl get_param -n $PROC_UUID)"
1085             return 3
1086         else
1087             echo "Live client success: got $RESULT"
1088         fi
1089
1090         # check MDTs too
1091         for num in $(seq $MDSCOUNT); do
1092                 local mdtosc=$(get_mdtosc_proc_path mds${num} $FSNAME-OST0001)
1093                 local MPROC="osc.$mdtosc.active"
1094                 local MAX=30
1095                 local WAIT=0
1096                 while [ 1 ]; do
1097                         sleep 5
1098                         RESULT=$(do_facet mds${num} " lctl get_param -n $MPROC")
1099                         [ ${PIPESTATUS[0]} = 0 ] || error "Can't read $MPROC"
1100                         if [ $RESULT -eq $DEAC ]; then
1101                                 echo -n "MDT deactivated also after"
1102                                 echo "$WAIT sec (got $RESULT)"
1103                                 break
1104                         fi
1105                         WAIT=$((WAIT + 5))
1106                         if [ $WAIT -eq $MAX ]; then
1107                                 echo -n "MDT not deactivated: wanted $DEAC"
1108                                 echo  "got $RESULT"
1109                                 return 4
1110                         fi
1111                         echo "Waiting $(($MAX - $WAIT))secs for MDT deactivated"
1112                 done
1113         done
1114         # test new client starts deactivated
1115         umount_client $MOUNT || return 200
1116         mount_client $MOUNT
1117         RESULT=$(lctl get_param -n $PROC_UUID | grep DEACTIV | grep NEW)
1118         if [ -z "$RESULT" ]; then
1119             echo "New client not deactivated from start: $(lctl get_param -n $PROC_UUID)"
1120             return 5
1121         else
1122             echo "New client success: got $RESULT"
1123         fi
1124
1125         # make sure it reactivates
1126         set_conf_param_and_check client \
1127                 "lctl get_param -n $PROC_ACT" "$PARAM" $ACTV || return 6
1128
1129         umount_client $MOUNT
1130         stop_ost2
1131         cleanup_nocli
1132         #writeconf to remove all ost2 traces for subsequent tests
1133         writeconf_or_reformat
1134 }
1135 run_test 29 "permanently remove an OST"
1136
1137 test_30a() {
1138         setup
1139
1140         echo Big config llog
1141         TEST="lctl get_param -n llite.$FSNAME-*.max_read_ahead_whole_mb"
1142         ORIG=$($TEST)
1143         LIST=(1 2 3 4 5 4 3 2 1 2 3 4 5 4 3 2 1 2 3 4 5)
1144         for i in ${LIST[@]}; do
1145                 set_conf_param_and_check client "$TEST" \
1146                         "$FSNAME.llite.max_read_ahead_whole_mb" $i || return 3
1147         done
1148         # make sure client restart still works
1149         umount_client $MOUNT
1150         mount_client $MOUNT || return 4
1151         [ "$($TEST)" -ne "$i" ] && error "Param didn't stick across restart $($TEST) != $i"
1152         pass
1153
1154         echo Erase parameter setting
1155         do_facet mgs "$LCTL conf_param -d $FSNAME.llite.max_read_ahead_whole_mb" || return 6
1156         umount_client $MOUNT
1157         mount_client $MOUNT || return 6
1158         FINAL=$($TEST)
1159         echo "deleted (default) value=$FINAL, orig=$ORIG"
1160         # assumes this parameter started at the default value
1161         [ "$FINAL" -eq "$ORIG" ] || fail "Deleted value=$FINAL, orig=$ORIG"
1162
1163         cleanup
1164 }
1165 run_test 30a "Big config llog and conf_param deletion"
1166
1167 test_30b() {
1168         setup
1169
1170         # Make a fake nid.  Use the OST nid, and add 20 to the least significant
1171         # numerical part of it. Hopefully that's not already a failover address for
1172         # the server.
1173         OSTNID=$(do_facet ost1 "$LCTL get_param nis" | tail -1 | awk '{print $1}')
1174         ORIGVAL=$(echo $OSTNID | egrep -oi "[0-9]*@")
1175         NEWVAL=$((($(echo $ORIGVAL | egrep -oi "[0-9]*") + 20) % 256))
1176         NEW=$(echo $OSTNID | sed "s/$ORIGVAL/$NEWVAL@/")
1177         echo "Using fake nid $NEW"
1178
1179         TEST="$LCTL get_param -n osc.$FSNAME-OST0000-osc-[^M]*.import | grep failover_nids | sed -n 's/.*\($NEW\).*/\1/p'"
1180         set_conf_param_and_check client "$TEST" \
1181                 "$FSNAME-OST0000.failover.node" $NEW ||
1182                 error "didn't add failover nid $NEW"
1183         NIDS=$($LCTL get_param -n osc.$FSNAME-OST0000-osc-[^M]*.import | grep failover_nids)
1184         echo $NIDS
1185         NIDCOUNT=$(($(echo "$NIDS" | wc -w) - 1))
1186         echo "should have 2 failover nids: $NIDCOUNT"
1187         [ $NIDCOUNT -eq 2 ] || error "Failover nid not added"
1188         do_facet mgs "$LCTL conf_param -d $FSNAME-OST0000.failover.node" || error "conf_param delete failed"
1189         umount_client $MOUNT
1190         mount_client $MOUNT || return 3
1191
1192         NIDS=$($LCTL get_param -n osc.$FSNAME-OST0000-osc-[^M]*.import | grep failover_nids)
1193         echo $NIDS
1194         NIDCOUNT=$(($(echo "$NIDS" | wc -w) - 1))
1195         echo "only 1 final nid should remain: $NIDCOUNT"
1196         [ $NIDCOUNT -eq 1 ] || error "Failover nids not removed"
1197
1198         cleanup
1199 }
1200 run_test 30b "Remove failover nids"
1201
1202 test_31() { # bug 10734
1203         # ipaddr must not exist
1204         mount -t lustre 4.3.2.1@tcp:/lustre $MOUNT || true
1205         cleanup
1206 }
1207 run_test 31 "Connect to non-existent node (shouldn't crash)"
1208
1209 #
1210 # This is not really a test but a tool to create new disk
1211 # image tarballs for the upgrade tests.
1212 #
1213 # Disk image tarballs should be created on single-node
1214 # clusters by running this test with default configurations
1215 # plus a few mandatory environment settings that are verified
1216 # at the beginning of the test.
1217 #
1218 test_32newtarball() {
1219         local version
1220         local dst=.
1221         local src=/etc/rc.d
1222         local tmp=$TMP/t32_image_create
1223
1224         if [ $FSNAME != t32fs -o $MDSCOUNT -ne 1 -o                                                             \
1225                  \( -z "$MDSDEV" -a -z "$MDSDEV1" \) -o $OSTCOUNT -ne 1 -o                      \
1226                  -z "$OSTDEV1" ]; then
1227                 error "Needs FSNAME=t32fs MDSCOUNT=1 MDSDEV1=<nonexistent_file>"        \
1228                           "(or MDSDEV, in the case of b1_8) OSTCOUNT=1"                                 \
1229                           "OSTDEV1=<nonexistent_file>"
1230         fi
1231
1232         mkdir $tmp || {
1233                 echo "Found stale $tmp"
1234                 return 1
1235         }
1236
1237         mkdir $tmp/src
1238         tar cf - -C $src . | tar xf - -C $tmp/src
1239
1240         formatall
1241
1242         setupall
1243         tar cf - -C $tmp/src . | tar xf - -C /mnt/$FSNAME
1244         stopall
1245
1246         mkdir $tmp/img
1247
1248         setupall
1249         pushd /mnt/$FSNAME
1250         ls -Rni --time-style=+%s >$tmp/img/list
1251         find . ! -name .lustre -type f -exec sha1sum {} \; |
1252                 sort -k 2 >$tmp/img/sha1sums
1253         popd
1254         $LCTL get_param -n version | head -n 1 |
1255                 sed -e 's/^lustre: *//' >$tmp/img/commit
1256         stopall
1257
1258         pushd $tmp/src
1259         find -type f -exec sha1sum {} \; | sort -k 2 >$tmp/sha1sums.src
1260         popd
1261
1262         if ! diff -u $tmp/sha1sums.src $tmp/img/sha1sums; then
1263                 echo "Data verification failed"
1264         fi
1265
1266         uname -r >$tmp/img/kernel
1267         uname -m >$tmp/img/arch
1268
1269         mv ${MDSDEV1:-$MDSDEV} $tmp/img
1270         mv $OSTDEV1 $tmp/img
1271
1272         version=$(sed -e 's/\(^[0-9]\+\.[0-9]\+\)\(.*$\)/\1/' $tmp/img/commit |
1273                           sed -e 's/\./_/g')    # E.g., "1.8.7" -> "1_8"
1274         dst=$(cd $dst; pwd)
1275         pushd $tmp/img
1276         tar cjvf $dst/disk$version-$(facet_fstype $SINGLEMDS).tar.bz2 -S *
1277         popd
1278
1279         rm -r $tmp
1280 }
1281 #run_test 32newtarball "Create a new test_32 disk image tarball for this version"
1282
1283 #
1284 # The list of applicable tarballs is returned via the caller's
1285 # variable "tarballs".
1286 #
1287 t32_check() {
1288         local node=$(facet_active_host $SINGLEMDS)
1289         local r="do_node $node"
1290
1291         if [ "$CLIENTONLY" ]; then
1292                 skip "Client-only testing"
1293                 exit 0
1294         fi
1295
1296         if ! $r which $TUNEFS; then
1297                 skip_env "tunefs.lustre required on $node"
1298                 exit 0
1299         fi
1300
1301         if [ -n "$($LCTL list_nids | grep -v '\(tcp\|lo\)[[:digit:]]*$')" ]; then
1302                 skip "LU-2200: Test cannot run over Infiniband"
1303                 exit 0
1304         fi
1305
1306         local IMGTYPE=$(facet_fstype $SINGLEMDS)
1307
1308         tarballs=$($r find $RLUSTRE/tests -maxdepth 1 -name \'disk*-$IMGTYPE.tar.bz2\')
1309
1310         if [ -z "$tarballs" ]; then
1311                 skip "No applicable tarballs found"
1312                 exit 0
1313         fi
1314 }
1315
1316 t32_test_cleanup() {
1317         local node=$(facet_active_host $SINGLEMDS)
1318         local r="do_node $node"
1319         local tmp=$TMP/t32
1320         local rc=$?
1321
1322         if $shall_cleanup_lustre; then
1323                 umount $tmp/mnt/lustre || rc=$?
1324         fi
1325         if $shall_cleanup_mdt; then
1326                 $r umount -d $tmp/mnt/mdt || rc=$?
1327         fi
1328         if $shall_cleanup_mdt1; then
1329                 $r umount -d $tmp/mnt/mdt1 || rc=$?
1330         fi
1331         if $shall_cleanup_ost; then
1332                 $r umount -d $tmp/mnt/ost || rc=$?
1333         fi
1334         $r rm -rf $tmp || rc=$?
1335         rm -rf $tmp || rc=$?
1336         return $rc
1337 }
1338
1339 t32_bits_per_long() {
1340         #
1341         # Yes, this is not meant to be perfect.
1342         #
1343         case $1 in
1344                 ppc64|x86_64)
1345                         echo -n 64;;
1346                 i*86)
1347                         echo -n 32;;
1348         esac
1349 }
1350
1351 t32_reload_modules() {
1352         local node=$1
1353         local all_removed=false
1354         local i=0
1355
1356         while ((i < 20)); do
1357                 echo "Unloading modules on $node: Attempt $i"
1358                 do_rpc_nodes $node $LUSTRE_RMMOD $(facet_fstype $SINGLEMDS) &&
1359                         all_removed=true
1360                 do_rpc_nodes $node check_mem_leak || return 1
1361                 if $all_removed; then
1362                         load_modules
1363                         return 0
1364                 fi
1365                 sleep 5
1366                 i=$((i + 1))
1367         done
1368         echo "Unloading modules on $node: Given up"
1369         return 1
1370 }
1371
1372 t32_wait_til_devices_gone() {
1373         local node=$1
1374         local devices
1375         local i=0
1376
1377         echo wait for devices to go
1378         while ((i < 20)); do
1379                 devices=$(do_rpc_nodes $node $LCTL device_list | wc -l)
1380                 echo $device
1381                 ((devices == 0)) && return 1
1382                 sleep 5
1383                 i=$((i + 1))
1384         done
1385         echo "waiting for devices on $node: Given up"
1386         return 1
1387 }
1388
1389 t32_test() {
1390         local tarball=$1
1391         local writeconf=$2
1392         local dne_upgrade=${dne_upgrade:-"no"}
1393         local shall_cleanup_mdt=false
1394         local shall_cleanup_mdt1=false
1395         local shall_cleanup_ost=false
1396         local shall_cleanup_lustre=false
1397         local node=$(facet_active_host $SINGLEMDS)
1398         local r="do_node $node"
1399         local node2=$(facet_active_host mds2)
1400         local r2="do_node $node2"
1401         local tmp=$TMP/t32
1402         local img_commit
1403         local img_kernel
1404         local img_arch
1405         local fsname=t32fs
1406         local nid=$($r $LCTL list_nids | head -1)
1407         local mopts
1408         local uuid
1409         local nrpcs_orig
1410         local nrpcs
1411         local list
1412
1413         trap 'trap - RETURN; t32_test_cleanup' RETURN
1414
1415         mkdir -p $tmp/mnt/lustre
1416         $r mkdir -p $tmp/mnt/{mdt,ost}
1417         $r tar xjvf $tarball -S -C $tmp || {
1418                 error_noexit "Unpacking the disk image tarball"
1419                 return 1
1420         }
1421         img_commit=$($r cat $tmp/commit)
1422         img_kernel=$($r cat $tmp/kernel)
1423         img_arch=$($r cat $tmp/arch)
1424         echo "Upgrading from $(basename $tarball), created with:"
1425         echo "  Commit: $img_commit"
1426         echo "  Kernel: $img_kernel"
1427         echo "    Arch: $img_arch"
1428
1429         $r $LCTL set_param debug="$PTLDEBUG"
1430
1431         $r $TUNEFS --dryrun $tmp/mdt || {
1432                 error_noexit "tunefs.lustre before mounting the MDT"
1433                 return 1
1434         }
1435         if [ "$writeconf" ]; then
1436                 mopts=loop,writeconf
1437         else
1438                 mopts=loop,exclude=$fsname-OST0000
1439         fi
1440
1441         t32_wait_til_devices_gone $node
1442
1443         $r mount -t lustre -o $mopts $tmp/mdt $tmp/mnt/mdt || {
1444                 error_noexit "Mounting the MDT"
1445                 return 1
1446         }
1447         shall_cleanup_mdt=true
1448
1449         if [ "$dne_upgrade" != "no" ]; then
1450                 echo "mkfs new MDT...."
1451                 add mds2 $(mkfs_opts mds2 $(mdsdevname 2) $fsname) --reformat \
1452                         $(mdsdevname 2) $(mdsvdevname 2) > /dev/null || {
1453                         error_noexit "Mkfs new MDT failed"
1454                         return 1
1455                 }
1456
1457                 $r2 $TUNEFS --dryrun $(mdsdevname 2) || {
1458                         error_noexit "tunefs.lustre before mounting the MDT"
1459                         return 1
1460                 }
1461
1462                 echo "mount new MDT...."
1463                 $r2 mkdir -p $tmp/mnt/mdt1
1464                 $r2 mount -t lustre -o $mopts $(mdsdevname 2) $tmp/mnt/mdt1 || {
1465                         error_noexit "mount mdt1 failed"
1466                         return 1
1467                 }
1468                 shall_cleanup_mdt1=true
1469         fi
1470
1471         uuid=$($r $LCTL get_param -n mdt.$fsname-MDT0000.uuid) || {
1472                 error_noexit "Getting MDT UUID"
1473                 return 1
1474         }
1475         if [ "$uuid" != $fsname-MDT0000_UUID ]; then
1476                 error_noexit "Unexpected MDT UUID: \"$uuid\""
1477                 return 1
1478         fi
1479
1480         $r $TUNEFS --dryrun $tmp/ost || {
1481                 error_noexit "tunefs.lustre before mounting the OST"
1482                 return 1
1483         }
1484         if [ "$writeconf" ]; then
1485                 mopts=loop,mgsnode=$nid,$writeconf
1486         else
1487                 mopts=loop,mgsnode=$nid
1488         fi
1489         $r mount -t lustre -o $mopts $tmp/ost $tmp/mnt/ost || {
1490                 error_noexit "Mounting the OST"
1491                 return 1
1492         }
1493         shall_cleanup_ost=true
1494
1495         uuid=$($r $LCTL get_param -n obdfilter.$fsname-OST0000.uuid) || {
1496                 error_noexit "Getting OST UUID"
1497                 return 1
1498         }
1499         if [ "$uuid" != $fsname-OST0000_UUID ]; then
1500                 error_noexit "Unexpected OST UUID: \"$uuid\""
1501                 return 1
1502         fi
1503
1504         $r $LCTL conf_param $fsname-OST0000.osc.max_dirty_mb=15 || {
1505                 error_noexit "Setting \"max_dirty_mb\""
1506                 return 1
1507         }
1508         $r $LCTL conf_param $fsname-OST0000.failover.node=$nid || {
1509                 error_noexit "Setting OST \"failover.node\""
1510                 return 1
1511         }
1512         $r $LCTL conf_param $fsname-MDT0000.mdc.max_rpcs_in_flight=9 || {
1513                 error_noexit "Setting \"max_rpcs_in_flight\""
1514                 return 1
1515         }
1516         $r $LCTL conf_param $fsname-MDT0000.failover.node=$nid || {
1517                 error_noexit "Setting MDT \"failover.node\""
1518                 return 1
1519         }
1520         $r $LCTL pool_new $fsname.interop || {
1521                 error_noexit "Setting \"interop\""
1522                 return 1
1523         }
1524         $r $LCTL conf_param $fsname-MDT0000.lov.stripesize=4M || {
1525                 error_noexit "Setting \"lov.stripesize\""
1526                 return 1
1527         }
1528
1529         if [ "$dne_upgrade" != "no" ]; then
1530                 $r2 $LCTL conf_param \
1531                                 $fsname-MDT0001.mdc.max_rpcs_in_flight=9 || {
1532                         error_noexit "Setting MDT1 \"max_rpcs_in_flight\""
1533                         return 1
1534                 }
1535                 $r2 $LCTL conf_param $fsname-MDT0001.failover.node=$nid || {
1536                         error_noexit "Setting MDT1 \"failover.node\""
1537                         return 1
1538                 }
1539                 $r2 $LCTL conf_param $fsname-MDT0001.lov.stripesize=4M || {
1540                         error_noexit "Setting MDT1 \"lov.stripesize\""
1541                         return 1
1542                 }
1543
1544         fi
1545
1546         if [ "$writeconf" ]; then
1547                 mount -t lustre $nid:/$fsname $tmp/mnt/lustre || {
1548                         error_noexit "Mounting the client"
1549                         return 1
1550                 }
1551                 shall_cleanup_lustre=true
1552                 $LCTL set_param debug="$PTLDEBUG"
1553                 if [ "$dne_upgrade" != "no" ]; then
1554                         $LFS mkdir -i 1 $tmp/mnt/lustre/remote_dir || {
1555                                 error_noexit "set remote dir failed"
1556                                 return 1
1557                         }
1558
1559                         pushd $tmp/mnt/lustre
1560                         tar -cf - . --exclude=./remote_dir |
1561                                 tar -xvf - -C remote_dir 1>/dev/null || {
1562                                 error_noexit "cp to remote dir failed"
1563                                 return 1
1564                         }
1565                         popd
1566                 fi
1567
1568                 if $r test -f $tmp/sha1sums; then
1569                         # LU-2393 - do both sorts on same node to ensure locale
1570                         # is identical
1571                         $r cat $tmp/sha1sums | sort -k 2 >$tmp/sha1sums.orig
1572                         if [ "$dne_upgrade" != "no" ]; then
1573                                 pushd $tmp/mnt/lustre/remote_dir
1574                         else
1575                                 pushd $tmp/mnt/lustre
1576                         fi
1577
1578                         find ! -name .lustre -type f -exec sha1sum {} \; |
1579                                 sort -k 2 >$tmp/sha1sums || {
1580                                 error_noexit "sha1sum"
1581                                 return 1
1582                         }
1583                         popd
1584                         if ! diff -ub $tmp/sha1sums.orig $tmp/sha1sums; then
1585                                 error_noexit "sha1sum verification failed"
1586                                 return 1
1587                         fi
1588                 else
1589                         echo "sha1sum verification skipped"
1590                 fi
1591
1592                 if [ "$dne_upgrade" != "no" ]; then
1593                         rm -rf $tmp/mnt/lustre/remote_dir || {
1594                                 error_noexit "remove remote dir failed"
1595                                 return 1
1596                         }
1597                 fi
1598
1599                 if $r test -f $tmp/list; then
1600                         #
1601                         # There is not a Test Framework API to copy files to or
1602                         # from a remote node.
1603                         #
1604                         # LU-2393 - do both sorts on same node to ensure locale
1605                         # is identical
1606                         $r cat $tmp/list | sort -k 6 >$tmp/list.orig
1607                         pushd $tmp/mnt/lustre
1608                         ls -Rni --time-style=+%s | sort -k 6 >$tmp/list || {
1609                                 error_noexit "ls"
1610                                 return 1
1611                         }
1612                         popd
1613                         #
1614                         # 32-bit and 64-bit clients use different algorithms to
1615                         # convert FIDs into inode numbers.  Hence, remove the inode
1616                         # numbers from the lists, if the original list was created
1617                         # on an architecture with different number of bits per
1618                         # "long".
1619                         #
1620                         if [ $(t32_bits_per_long $(uname -m)) !=                                                \
1621                                  $(t32_bits_per_long $img_arch) ]; then
1622                                 echo "Different number of bits per \"long\" from the disk image"
1623                                 for list in list.orig list; do
1624                                         sed -i -e 's/^[0-9]\+[ \t]\+//' $tmp/$list
1625                                 done
1626                         fi
1627                         if ! diff -ub $tmp/list.orig $tmp/list; then
1628                                 error_noexit "list verification failed"
1629                                 return 1
1630                         fi
1631                 else
1632                         echo "list verification skipped"
1633                 fi
1634
1635                 #
1636                 # When adding new data verification tests, please check for
1637                 # the presence of the required reference files first, like
1638                 # the "sha1sums" and "list" tests above, to avoid the need to
1639                 # regenerate every image for each test addition.
1640                 #
1641
1642                 nrpcs_orig=$($LCTL get_param \
1643                                 -n mdc.*MDT0000*.max_rpcs_in_flight) || {
1644                         error_noexit "Getting \"max_rpcs_in_flight\""
1645                         return 1
1646                 }
1647                 nrpcs=$((nrpcs_orig + 5))
1648                 $r $LCTL conf_param $fsname-MDT0000.mdc.max_rpcs_in_flight=$nrpcs || {
1649                         error_noexit "Changing \"max_rpcs_in_flight\""
1650                         return 1
1651                 }
1652                 wait_update $HOSTNAME "$LCTL get_param \
1653                         -n mdc.*MDT0000*.max_rpcs_in_flight" $nrpcs || {
1654                         error_noexit "Verifying \"max_rpcs_in_flight\""
1655                         return 1
1656                 }
1657
1658                 umount $tmp/mnt/lustre || {
1659                         error_noexit "Unmounting the client"
1660                         return 1
1661                 }
1662                 shall_cleanup_lustre=false
1663         else
1664                 $r umount -d $tmp/mnt/mdt || {
1665                         error_noexit "Unmounting the MDT"
1666                         return 1
1667                 }
1668                 shall_cleanup_mdt=false
1669                 $r umount -d $tmp/mnt/ost || {
1670                         error_noexit "Unmounting the OST"
1671                         return 1
1672                 }
1673                 shall_cleanup_ost=false
1674
1675                 t32_reload_modules $node || {
1676                         error_noexit "Reloading modules"
1677                         return 1
1678                 }
1679
1680                 # mount a second time to make sure we didnt leave upgrade flag on
1681                 $r $TUNEFS --dryrun $tmp/mdt || {
1682                         error_noexit "tunefs.lustre before remounting the MDT"
1683                         return 1
1684                 }
1685                 $r mount -t lustre -o loop,exclude=$fsname-OST0000 $tmp/mdt                     \
1686                                  $tmp/mnt/mdt || {
1687                         error_noexit "Remounting the MDT"
1688                         return 1
1689                 }
1690                 shall_cleanup_mdt=true
1691         fi
1692 }
1693
1694 test_32a() {
1695         local tarballs
1696         local tarball
1697         local rc=0
1698
1699         t32_check
1700         for tarball in $tarballs; do
1701                 t32_test $tarball || rc=$?
1702         done
1703         return $rc
1704 }
1705 run_test 32a "Upgrade (not live)"
1706
1707 test_32b() {
1708         local tarballs
1709         local tarball
1710         local rc=0
1711
1712         t32_check
1713         for tarball in $tarballs; do
1714                 t32_test $tarball writeconf || rc=$?
1715         done
1716         return $rc
1717 }
1718 run_test 32b "Upgrade with writeconf"
1719
1720 test_32c() {
1721         local tarballs
1722         local tarball
1723         local rc=0
1724
1725         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1726         t32_check
1727         for tarball in $tarballs; do
1728                 dne_upgrade=yes t32_test $tarball writeconf || rc=$?
1729         done
1730         return $rc
1731 }
1732 run_test 32c "dne upgrade test"
1733
1734 test_33a() { # bug 12333, was test_33
1735         local rc=0
1736         local FSNAME2=test-123
1737         local MDSDEV=$(mdsdevname ${SINGLEMDS//mds/})
1738         local mkfsoptions
1739
1740         [ -n "$ost1_HOST" ] && fs2ost_HOST=$ost1_HOST
1741
1742         if [ -z "$fs2ost_DEV" -o -z "$fs2mds_DEV" ]; then
1743                 local dev=${SINGLEMDS}_dev
1744                 local MDSDEV=${!dev}
1745                 is_blkdev $SINGLEMDS $MDSDEV && \
1746                 skip_env "mixed loopback and real device not working" && return
1747         fi
1748
1749         local fs2mdsdev=$(mdsdevname 1_2)
1750         local fs2ostdev=$(ostdevname 1_2)
1751         local fs2mdsvdev=$(mdsvdevname 1_2)
1752         local fs2ostvdev=$(ostvdevname 1_2)
1753
1754         if [ $(facet_fstype mds1) == ldiskfs ]; then
1755                 mkfsoptions="--mkfsoptions=\\\"-J size=8\\\"" # See bug 17931.
1756         fi
1757
1758         add fs2mds $(mkfs_opts mds1 ${fs2mdsdev}) --mgs --fsname=${FSNAME2} \
1759                 --reformat $mkfsoptions $fs2mdsdev $fs2mdsvdev || exit 10
1760         add fs2ost $(mkfs_opts ost1 ${fs2ostdev}) --mgsnode=$MGSNID \
1761                 --fsname=${FSNAME2} --index=8191 --reformat $fs2ostdev \
1762                 $fs2ostvdev || exit 10
1763
1764         start fs2mds $fs2mdsdev $MDS_MOUNT_OPTS && trap cleanup_24a EXIT INT
1765         start fs2ost $fs2ostdev $OST_MOUNT_OPTS
1766         do_facet $SINGLEMDS "$LCTL conf_param $FSNAME2.sys.timeout=200" || rc=1
1767         mkdir -p $MOUNT2
1768         mount -t lustre $MGSNID:/${FSNAME2} $MOUNT2 || rc=2
1769         echo "ok."
1770
1771         cp /etc/hosts $MOUNT2/ || rc=3
1772         $LFS getstripe $MOUNT2/hosts
1773
1774         umount -d $MOUNT2
1775         stop fs2ost -f
1776         stop fs2mds -f
1777         cleanup_nocli || rc=6
1778         return $rc
1779 }
1780 run_test 33a "Mount ost with a large index number"
1781
1782 test_33b() {    # was test_34
1783         setup
1784
1785         do_facet client dd if=/dev/zero of=$MOUNT/24 bs=1024k count=1
1786         # Drop lock cancelation reply during umount
1787         #define OBD_FAIL_LDLM_CANCEL_NET                        0x304
1788         do_facet client lctl set_param fail_loc=0x80000304
1789         #lctl set_param debug=-1
1790         umount_client $MOUNT
1791         cleanup
1792 }
1793 run_test 33b "Drop cancel during umount"
1794
1795 test_34a() {
1796         setup
1797         do_facet client "sh runmultiop_bg_pause $DIR/file O_c"
1798         manual_umount_client
1799         rc=$?
1800         do_facet client killall -USR1 multiop
1801         if [ $rc -eq 0 ]; then
1802                 error "umount not fail!"
1803         fi
1804         sleep 1
1805         cleanup
1806 }
1807 run_test 34a "umount with opened file should be fail"
1808
1809
1810 test_34b() {
1811         setup
1812         touch $DIR/$tfile || return 1
1813         stop_mds --force || return 2
1814
1815         manual_umount_client --force
1816         rc=$?
1817         if [ $rc -ne 0 ]; then
1818                 error "mtab after failed umount - rc $rc"
1819         fi
1820
1821         cleanup
1822         return 0
1823 }
1824 run_test 34b "force umount with failed mds should be normal"
1825
1826 test_34c() {
1827         setup
1828         touch $DIR/$tfile || return 1
1829         stop_ost --force || return 2
1830
1831         manual_umount_client --force
1832         rc=$?
1833         if [ $rc -ne 0 ]; then
1834                 error "mtab after failed umount - rc $rc"
1835         fi
1836
1837         cleanup
1838         return 0
1839 }
1840 run_test 34c "force umount with failed ost should be normal"
1841
1842 test_35a() { # bug 12459
1843         setup
1844
1845         DBG_SAVE="`lctl get_param -n debug`"
1846         lctl set_param debug="ha"
1847
1848         log "Set up a fake failnode for the MDS"
1849         FAKENID="127.0.0.2"
1850         local device=$(do_facet $SINGLEMDS "lctl get_param -n devices" | awk '($3 ~ "mdt" && $4 ~ "MDT") { print $4 }' | head -1)
1851         do_facet mgs "$LCTL conf_param ${device}.failover.node=" \
1852                 "$(h2$NETTYPE $FAKENID)" || return 4
1853
1854         log "Wait for RECONNECT_INTERVAL seconds (10s)"
1855         sleep 10
1856
1857         MSG="conf-sanity.sh test_35a `date +%F%kh%Mm%Ss`"
1858         $LCTL clear
1859         log "$MSG"
1860         log "Stopping the MDT: $device"
1861         stop_mdt 1 || return 5
1862
1863         df $MOUNT > /dev/null 2>&1 &
1864         DFPID=$!
1865         log "Restarting the MDT: $device"
1866         start_mdt 1 || return 6
1867         log "Wait for df ($DFPID) ... "
1868         wait $DFPID
1869         log "done"
1870         lctl set_param debug="$DBG_SAVE"
1871
1872         # retrieve from the log the first server that the client tried to
1873         # contact after the connection loss
1874         $LCTL dk $TMP/lustre-log-$TESTNAME.log
1875         NEXTCONN=`awk "/${MSG}/ {start = 1;}
1876                        /import_select_connection.*$device-mdc.* using connection/ {
1877                                 if (start) {
1878                                         if (\\\$NF ~ /$FAKENID/)
1879                                                 print \\\$NF;
1880                                         else
1881                                                 print 0;
1882                                         exit;
1883                                 }
1884                        }" $TMP/lustre-log-$TESTNAME.log`
1885         [ "$NEXTCONN" != "0" ] && log "The client didn't try to reconnect to the last active server (tried ${NEXTCONN} instead)" && return 7
1886         cleanup
1887         # remove nid settings
1888         writeconf_or_reformat
1889 }
1890 run_test 35a "Reconnect to the last active server first"
1891
1892 test_35b() { # bug 18674
1893         remote_mds || { skip "local MDS" && return 0; }
1894         setup
1895
1896         debugsave
1897         $LCTL set_param debug="ha"
1898         $LCTL clear
1899         MSG="conf-sanity.sh test_35b `date +%F%kh%Mm%Ss`"
1900         log "$MSG"
1901
1902         log "Set up a fake failnode for the MDS"
1903         FAKENID="127.0.0.2"
1904         local device=$(do_facet $SINGLEMDS "$LCTL get_param -n devices" | \
1905                         awk '($3 ~ "mdt" && $4 ~ "MDT") { print $4 }' | head -1)
1906         do_facet mgs "$LCTL conf_param ${device}.failover.node=" \
1907                 "$(h2$NETTYPE $FAKENID)" || return 1
1908
1909         local at_max_saved=0
1910         # adaptive timeouts may prevent seeing the issue
1911         if at_is_enabled; then
1912                 at_max_saved=$(at_max_get mds)
1913                 at_max_set 0 mds client
1914         fi
1915
1916         mkdir -p $MOUNT/$tdir
1917
1918         log "Injecting EBUSY on MDS"
1919         # Setting OBD_FAIL_MDS_RESEND=0x136
1920         do_facet $SINGLEMDS "$LCTL set_param fail_loc=0x80000136" || return 2
1921
1922         $LCTL set_param mdc.${FSNAME}*.stats=clear
1923
1924         log "Creating a test file and stat it"
1925         touch $MOUNT/$tdir/$tfile
1926         stat $MOUNT/$tdir/$tfile
1927
1928         log "Stop injecting EBUSY on MDS"
1929         do_facet $SINGLEMDS "$LCTL set_param fail_loc=0" || return 3
1930         rm -f $MOUNT/$tdir/$tfile
1931
1932         log "done"
1933         # restore adaptive timeout
1934         [ $at_max_saved -ne 0 ] && at_max_set $at_max_saved mds client
1935
1936         $LCTL dk $TMP/lustre-log-$TESTNAME.log
1937
1938         CONNCNT=`$LCTL get_param mdc.${FSNAME}*.stats | awk '/mds_connect/{print $2}'`
1939
1940         # retrieve from the log if the client has ever tried to
1941         # contact the fake server after the loss of connection
1942         FAILCONN=`awk "BEGIN {ret = 0;}
1943                        /import_select_connection.*${FSNAME}-MDT0000-mdc.* using connection/ {
1944                                 ret = 1;
1945                                 if (\\\$NF ~ /$FAKENID/) {
1946                                         ret = 2;
1947                                         exit;
1948                                 }
1949                        }
1950                        END {print ret}" $TMP/lustre-log-$TESTNAME.log`
1951
1952         [ "$FAILCONN" == "0" ] && \
1953                 log "ERROR: The client reconnection has not been triggered" && \
1954                 return 4
1955         [ "$FAILCONN" == "2" ] && \
1956                 log "ERROR: The client tried to reconnect to the failover server while the primary was busy" && \
1957                 return 5
1958
1959         # LU-290
1960         # When OBD_FAIL_MDS_RESEND is hit, we sleep for 2 * obd_timeout
1961         # Reconnects are supposed to be rate limited to one every 5s
1962         [ $CONNCNT -gt $((2 * $TIMEOUT / 5 + 1)) ] && \
1963                 log "ERROR: Too many reconnects $CONNCNT" && \
1964                 return 6
1965
1966         cleanup
1967         # remove nid settings
1968         writeconf_or_reformat
1969 }
1970 run_test 35b "Continue reconnection retries, if the active server is busy"
1971
1972 test_36() { # 12743
1973         [ $OSTCOUNT -lt 2 ] && skip_env "skipping test for single OST" && return
1974
1975         [ "$ost_HOST" = "`hostname`" -o "$ost1_HOST" = "`hostname`" ] || \
1976                 { skip "remote OST" && return 0; }
1977
1978         local rc=0
1979         local FSNAME2=test1234
1980         local fs3ost_HOST=$ost_HOST
1981         local MDSDEV=$(mdsdevname ${SINGLEMDS//mds/})
1982
1983         [ -n "$ost1_HOST" ] && fs2ost_HOST=$ost1_HOST && fs3ost_HOST=$ost1_HOST
1984
1985         if [ -z "$fs2ost_DEV" -o -z "$fs2mds_DEV" -o -z "$fs3ost_DEV" ]; then
1986                 is_blkdev $SINGLEMDS $MDSDEV && \
1987                 skip_env "mixed loopback and real device not working" && return
1988         fi
1989
1990         local fs2mdsdev=$(mdsdevname 1_2)
1991         local fs2ostdev=$(ostdevname 1_2)
1992         local fs3ostdev=$(ostdevname 2_2)
1993         local fs2mdsvdev=$(mdsvdevname 1_2)
1994         local fs2ostvdev=$(ostvdevname 1_2)
1995         local fs3ostvdev=$(ostvdevname 2_2)
1996
1997         add fs2mds $(mkfs_opts mds1 ${fs2mdsdev}) --mgs --fsname=${FSNAME2} \
1998                 --reformat $fs2mdsdev $fs2mdsvdev || exit 10
1999         # XXX after we support non 4K disk blocksize in ldiskfs, specify a
2000         #     different one than the default value here.
2001         add fs2ost $(mkfs_opts ost1 ${fs2ostdev}) --mgsnode=$MGSNID \
2002                 --fsname=${FSNAME2} --reformat $fs2ostdev $fs2ostvdev || exit 10
2003         add fs3ost $(mkfs_opts ost1 ${fs3ostdev}) --mgsnode=$MGSNID \
2004                 --fsname=${FSNAME2} --reformat $fs3ostdev $fs3ostvdev || exit 10
2005
2006         start fs2mds $fs2mdsdev $MDS_MOUNT_OPTS
2007         start fs2ost $fs2ostdev $OST_MOUNT_OPTS
2008         start fs3ost $fs3ostdev $OST_MOUNT_OPTS
2009         mkdir -p $MOUNT2
2010         mount -t lustre $MGSNID:/${FSNAME2} $MOUNT2 || return 1
2011
2012         sleep 5 # until 11778 fixed
2013
2014         dd if=/dev/zero of=$MOUNT2/$tfile bs=1M count=7 || return 2
2015
2016         BKTOTAL=`lctl get_param -n obdfilter.*.kbytestotal | awk 'BEGIN{total=0}; {total+=$1}; END{print total}'`
2017         BKFREE=`lctl get_param -n obdfilter.*.kbytesfree | awk 'BEGIN{free=0}; {free+=$1}; END{print free}'`
2018         BKAVAIL=`lctl get_param -n obdfilter.*.kbytesavail | awk 'BEGIN{avail=0}; {avail+=$1}; END{print avail}'`
2019         STRING=`df -P $MOUNT2 | tail -n 1 | awk '{print $2","$3","$4}'`
2020         DFTOTAL=`echo $STRING | cut -d, -f1`
2021         DFUSED=`echo $STRING  | cut -d, -f2`
2022         DFAVAIL=`echo $STRING | cut -d, -f3`
2023         DFFREE=$(($DFTOTAL - $DFUSED))
2024
2025         ALLOWANCE=$((64 * $OSTCOUNT))
2026
2027         if [ $DFTOTAL -lt $(($BKTOTAL - $ALLOWANCE)) ] ||
2028            [ $DFTOTAL -gt $(($BKTOTAL + $ALLOWANCE)) ] ; then
2029                 echo "**** FAIL: df total($DFTOTAL) mismatch OST total($BKTOTAL)"
2030                 rc=1
2031         fi
2032         if [ $DFFREE -lt $(($BKFREE - $ALLOWANCE)) ] ||
2033            [ $DFFREE -gt $(($BKFREE + $ALLOWANCE)) ] ; then
2034                 echo "**** FAIL: df free($DFFREE) mismatch OST free($BKFREE)"
2035                 rc=2
2036         fi
2037         if [ $DFAVAIL -lt $(($BKAVAIL - $ALLOWANCE)) ] ||
2038            [ $DFAVAIL -gt $(($BKAVAIL + $ALLOWANCE)) ] ; then
2039                 echo "**** FAIL: df avail($DFAVAIL) mismatch OST avail($BKAVAIL)"
2040                 rc=3
2041        fi
2042
2043         umount -d $MOUNT2
2044         stop fs3ost -f || return 200
2045         stop fs2ost -f || return 201
2046         stop fs2mds -f || return 202
2047         unload_modules_conf || return 203
2048         return $rc
2049 }
2050 run_test 36 "df report consistency on OSTs with different block size"
2051
2052 test_37() {
2053         local mntpt=$(facet_mntpt $SINGLEMDS)
2054         local mdsdev=$(mdsdevname ${SINGLEMDS//mds/})
2055         local mdsdev_sym="$TMP/sym_mdt.img"
2056         local opts=$MDS_MOUNT_OPTS
2057         local rc=0
2058
2059         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
2060                 skip "Currently only applicable to ldiskfs-based MDTs"
2061                 return
2062         fi
2063
2064         echo "MDS :     $mdsdev"
2065         echo "SYMLINK : $mdsdev_sym"
2066         do_facet $SINGLEMDS rm -f $mdsdev_sym
2067
2068         do_facet $SINGLEMDS ln -s $mdsdev $mdsdev_sym
2069
2070         echo "mount symlink device - $mdsdev_sym"
2071
2072         if ! do_facet $SINGLEMDS test -b $mdsdev; then
2073                 opts=$(csa_add "$opts" -o loop)
2074         fi
2075         mount_op=$(do_facet $SINGLEMDS mount -v -t lustre $opts \
2076                 $mdsdev_sym $mntpt 2>&1)
2077         rc=${PIPESTATUS[0]}
2078
2079         echo mount_op=$mount_op
2080
2081         do_facet $SINGLEMDS "umount -d $mntpt && rm -f $mdsdev_sym"
2082
2083         if $(echo $mount_op | grep -q "unable to set tunable"); then
2084                 error "set tunables failed for symlink device"
2085         fi
2086
2087         [ $rc -eq 0 ] || error "mount symlink $mdsdev_sym failed! rc=$rc"
2088
2089         return 0
2090 }
2091 run_test 37 "verify set tunables works for symlink device"
2092
2093 test_38() { # bug 14222
2094         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
2095                 skip "Only applicable to ldiskfs-based MDTs"
2096                 return
2097         fi
2098
2099         setup
2100         # like runtests
2101         COUNT=10
2102         SRC="/etc /bin"
2103         FILES=`find $SRC -type f -mtime +1 | head -n $COUNT`
2104         log "copying $(echo $FILES | wc -w) files to $DIR/$tdir"
2105         mkdir -p $DIR/$tdir
2106         tar cf - $FILES | tar xf - -C $DIR/$tdir || \
2107                 error "copying $SRC to $DIR/$tdir"
2108         sync
2109         umount_client $MOUNT
2110         stop_mds
2111         log "rename lov_objid file on MDS"
2112         rm -f $TMP/lov_objid.orig
2113
2114         local MDSDEV=$(mdsdevname ${SINGLEMDS//mds/})
2115         do_facet $SINGLEMDS "$DEBUGFS -c -R \\\"dump lov_objid $TMP/lov_objid.orig\\\" $MDSDEV"
2116         do_facet $SINGLEMDS "$DEBUGFS -w -R \\\"rm lov_objid\\\" $MDSDEV"
2117
2118         do_facet $SINGLEMDS "od -Ax -td8 $TMP/lov_objid.orig"
2119         # check create in mds_lov_connect
2120         start_mds
2121         mount_client $MOUNT
2122         for f in $FILES; do
2123                 [ $V ] && log "verifying $DIR/$tdir/$f"
2124                 diff -q $f $DIR/$tdir/$f || ERROR=y
2125         done
2126         do_facet $SINGLEMDS "$DEBUGFS -c -R \\\"dump lov_objid $TMP/lov_objid.new\\\"  $MDSDEV"
2127         do_facet $SINGLEMDS "od -Ax -td8 $TMP/lov_objid.new"
2128         [ "$ERROR" = "y" ] && error "old and new files are different after connect" || true
2129
2130         # check it's updates in sync
2131         umount_client $MOUNT
2132         stop_mds
2133
2134         do_facet $SINGLEMDS dd if=/dev/zero of=$TMP/lov_objid.clear bs=4096 count=1
2135         do_facet $SINGLEMDS "$DEBUGFS -w -R \\\"rm lov_objid\\\" $MDSDEV"
2136         do_facet $SINGLEMDS "$DEBUGFS -w -R \\\"write $TMP/lov_objid.clear lov_objid\\\" $MDSDEV "
2137
2138         start_mds
2139         mount_client $MOUNT
2140         for f in $FILES; do
2141                 [ $V ] && log "verifying $DIR/$tdir/$f"
2142                 diff -q $f $DIR/$tdir/$f || ERROR=y
2143         done
2144         do_facet $SINGLEMDS "$DEBUGFS -c -R \\\"dump lov_objid $TMP/lov_objid.new1\\\" $MDSDEV"
2145         do_facet $SINGLEMDS "od -Ax -td8 $TMP/lov_objid.new1"
2146         umount_client $MOUNT
2147         stop_mds
2148         [ "$ERROR" = "y" ] && error "old and new files are different after sync" || true
2149
2150         log "files compared the same"
2151         cleanup
2152 }
2153 run_test 38 "MDS recreates missing lov_objid file from OST data"
2154
2155 test_39() {
2156         PTLDEBUG=+malloc
2157         setup
2158         cleanup
2159         perl $SRCDIR/leak_finder.pl $TMP/debug 2>&1 | egrep '*** Leak:' &&
2160                 error "memory leak detected" || true
2161 }
2162 run_test 39 "leak_finder recognizes both LUSTRE and LNET malloc messages"
2163
2164 test_40() { # bug 15759
2165         start_ost
2166         #define OBD_FAIL_TGT_TOOMANY_THREADS     0x706
2167         do_facet $SINGLEMDS "$LCTL set_param fail_loc=0x80000706"
2168         start_mds
2169         cleanup
2170 }
2171 run_test 40 "race during service thread startup"
2172
2173 test_41a() { #bug 14134
2174         if [ $(facet_fstype $SINGLEMDS) == ldiskfs ] &&
2175            ! do_facet $SINGLEMDS test -b $(mdsdevname 1); then
2176                 skip "Loop devices does not work with nosvc option"
2177                 return
2178         fi
2179
2180         local rc
2181         local MDSDEV=$(mdsdevname ${SINGLEMDS//mds/})
2182
2183         start $SINGLEMDS $MDSDEV $MDS_MOUNT_OPTS -o nosvc -n
2184         start ost1 `ostdevname 1` $OST_MOUNT_OPTS
2185         start $SINGLEMDS $MDSDEV $MDS_MOUNT_OPTS -o nomgs,force
2186         mkdir -p $MOUNT
2187         mount_client $MOUNT || return 1
2188         sleep 5
2189
2190         echo "blah blah" > $MOUNT/$tfile
2191         cat $MOUNT/$tfile
2192
2193         umount_client $MOUNT
2194         stop ost1 -f || return 201
2195         stop_mds -f || return 202
2196         stop_mds -f || return 203
2197         unload_modules_conf || return 204
2198         return $rc
2199 }
2200 run_test 41a "mount mds with --nosvc and --nomgs"
2201
2202 test_41b() {
2203         if [ $(facet_fstype $SINGLEMDS) == ldiskfs ] &&
2204            ! do_facet $SINGLEMDS test -b $(mdsdevname 1); then
2205                 skip "Loop devices does not work with nosvc option"
2206                 return
2207         fi
2208
2209         ! combined_mgs_mds && skip "needs combined mgs device" && return 0
2210
2211         stopall
2212         reformat
2213         local MDSDEV=$(mdsdevname ${SINGLEMDS//mds/})
2214
2215         start $SINGLEMDS $MDSDEV $MDS_MOUNT_OPTS -o nosvc -n
2216         start_ost
2217         start $SINGLEMDS $MDSDEV $MDS_MOUNT_OPTS -o nomgs,force
2218         mkdir -p $MOUNT
2219         mount_client $MOUNT || return 1
2220         sleep 5
2221
2222         echo "blah blah" > $MOUNT/$tfile
2223         cat $MOUNT/$tfile || return 200
2224
2225         umount_client $MOUNT
2226         stop_ost || return 201
2227         stop_mds -f || return 202
2228         stop_mds -f || return 203
2229
2230 }
2231 run_test 41b "mount mds with --nosvc and --nomgs on first mount"
2232
2233 test_42() { #bug 14693
2234         setup
2235         check_mount || error "client was not mounted"
2236
2237         do_facet mgs $LCTL conf_param $FSNAME.llite.some_wrong_param=10
2238         umount_client $MOUNT ||
2239                 error "unmounting client failed with invalid llite param"
2240         mount_client $MOUNT ||
2241                 error "mounting client failed with invalid llite param"
2242
2243         do_facet mgs $LCTL conf_param $FSNAME.sys.some_wrong_param=20
2244         cleanup || error "stopping $FSNAME failed with invalid sys param"
2245         setup
2246         check_mount || "client was not mounted with invalid sys param"
2247         cleanup || error "stopping $FSNAME failed with invalid sys param"
2248         return 0
2249 }
2250 run_test 42 "allow client/server mount/unmount with invalid config param"
2251
2252 test_43() {
2253         [ $UID -ne 0 -o $RUNAS_ID -eq 0 ] && skip_env "run as root"
2254         setup
2255         chmod ugo+x $DIR || error "chmod 0 failed"
2256         set_conf_param_and_check mds                                    \
2257                 "lctl get_param -n mdt.$FSNAME-MDT0000.root_squash"     \
2258                 "$FSNAME.mdt.root_squash"                               \
2259                 "0:0"
2260         set_conf_param_and_check mds                                    \
2261                 "lctl get_param -n mdt.$FSNAME-MDT0000.nosquash_nids"   \
2262                 "$FSNAME.mdt.nosquash_nids"                             \
2263                 "NONE"
2264
2265     #
2266     # create set of test files
2267     #
2268     echo "111" > $DIR/$tfile-userfile || error "write 1 failed"
2269     chmod go-rw $DIR/$tfile-userfile  || error "chmod 1 failed"
2270     chown $RUNAS_ID.$RUNAS_ID $DIR/$tfile-userfile || error "chown failed"
2271
2272     echo "222" > $DIR/$tfile-rootfile || error "write 2 failed"
2273     chmod go-rw $DIR/$tfile-rootfile  || error "chmod 2 faield"
2274
2275     mkdir $DIR/$tdir-rootdir -p       || error "mkdir failed"
2276     chmod go-rwx $DIR/$tdir-rootdir   || error "chmod 3 failed"
2277     touch $DIR/$tdir-rootdir/tfile-1  || error "touch failed"
2278
2279         #
2280         # check root_squash:
2281         #   set root squash UID:GID to RUNAS_ID
2282         #   root should be able to access only files owned by RUNAS_ID
2283         #
2284         set_conf_param_and_check mds                                    \
2285                 "lctl get_param -n mdt.$FSNAME-MDT0000.root_squash"     \
2286                 "$FSNAME.mdt.root_squash"                               \
2287                 "$RUNAS_ID:$RUNAS_ID"
2288
2289     ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tfile-userfile)
2290     dd if=$DIR/$tfile-userfile 1>/dev/null 2>/dev/null || \
2291         error "$ST: root read permission is denied"
2292     echo "$ST: root read permission is granted - ok"
2293
2294     echo "444" | \
2295     dd conv=notrunc if=$DIR/$tfile-userfile 1>/dev/null 2>/dev/null || \
2296         error "$ST: root write permission is denied"
2297     echo "$ST: root write permission is granted - ok"
2298
2299     ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tfile-rootfile)
2300     dd if=$DIR/$tfile-rootfile 1>/dev/null 2>/dev/null && \
2301         error "$ST: root read permission is granted"
2302     echo "$ST: root read permission is denied - ok"
2303
2304     echo "555" | \
2305     dd conv=notrunc of=$DIR/$tfile-rootfile 1>/dev/null 2>/dev/null && \
2306         error "$ST: root write permission is granted"
2307     echo "$ST: root write permission is denied - ok"
2308
2309     ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tdir-rootdir)
2310     rm $DIR/$tdir-rootdir/tfile-1 1>/dev/null 2>/dev/null && \
2311         error "$ST: root unlink permission is granted"
2312     echo "$ST: root unlink permission is denied - ok"
2313
2314     touch $DIR/tdir-rootdir/tfile-2 1>/dev/null 2>/dev/null && \
2315         error "$ST: root create permission is granted"
2316     echo "$ST: root create permission is denied - ok"
2317
2318         #
2319         # check nosquash_nids:
2320         #   put client's NID into nosquash_nids list,
2321         #   root should be able to access root file after that
2322         #
2323         local NIDLIST=$(lctl list_nids all | tr '\n' ' ')
2324         NIDLIST="2@elan $NIDLIST 192.168.0.[2,10]@tcp"
2325         NIDLIST=$(echo $NIDLIST | tr -s ' ' ' ')
2326         set_conf_param_and_check mds                                    \
2327                 "lctl get_param -n mdt.$FSNAME-MDT0000.nosquash_nids"   \
2328                 "$FSNAME-MDTall.mdt.nosquash_nids"                      \
2329                 "$NIDLIST"
2330
2331     ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tfile-rootfile)
2332     dd if=$DIR/$tfile-rootfile 1>/dev/null 2>/dev/null || \
2333         error "$ST: root read permission is denied"
2334     echo "$ST: root read permission is granted - ok"
2335
2336     echo "666" | \
2337     dd conv=notrunc of=$DIR/$tfile-rootfile 1>/dev/null 2>/dev/null || \
2338         error "$ST: root write permission is denied"
2339     echo "$ST: root write permission is granted - ok"
2340
2341     ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tdir-rootdir)
2342     rm $DIR/$tdir-rootdir/tfile-1 || \
2343         error "$ST: root unlink permission is denied"
2344     echo "$ST: root unlink permission is granted - ok"
2345     touch $DIR/$tdir-rootdir/tfile-2 || \
2346         error "$ST: root create permission is denied"
2347     echo "$ST: root create permission is granted - ok"
2348
2349     return 0
2350 }
2351 run_test 43 "check root_squash and nosquash_nids"
2352
2353 umount_client $MOUNT
2354 cleanup_nocli
2355
2356 test_44() { # 16317
2357         setup
2358         check_mount || return 2
2359         UUID=$($LCTL get_param llite.${FSNAME}*.uuid | cut -d= -f2)
2360         STATS_FOUND=no
2361         UUIDS=$(do_facet $SINGLEMDS "$LCTL get_param mdt.${FSNAME}*.exports.*.uuid")
2362         for VAL in $UUIDS; do
2363                 NID=$(echo $VAL | cut -d= -f1)
2364                 CLUUID=$(echo $VAL | cut -d= -f2)
2365                 [ "$UUID" = "$CLUUID" ] && STATS_FOUND=yes && break
2366         done
2367         [ "$STATS_FOUND" = "no" ] && error "stats not found for client"
2368         cleanup
2369         return 0
2370 }
2371 run_test 44 "mounted client proc entry exists"
2372
2373 test_45() { #17310
2374         setup
2375         check_mount || return 2
2376         stop_mds
2377         df -h $MOUNT &
2378         log "sleep 60 sec"
2379         sleep 60
2380 #define OBD_FAIL_PTLRPC_LONG_UNLINK   0x50f
2381         do_facet client "lctl set_param fail_loc=0x50f"
2382         log "sleep 10 sec"
2383         sleep 10
2384         manual_umount_client --force || return 3
2385         do_facet client "lctl set_param fail_loc=0x0"
2386         start_mds
2387         mount_client $MOUNT || return 4
2388         cleanup
2389         return 0
2390 }
2391 run_test 45 "long unlink handling in ptlrpcd"
2392
2393 cleanup_46a() {
2394         trap 0
2395         local rc=0
2396         local count=$1
2397
2398         umount_client $MOUNT2 || rc=$?
2399         umount_client $MOUNT || rc=$?
2400         while [ $count -gt 0 ]; do
2401                 stop ost${count} -f || rc=$?
2402                 let count=count-1
2403         done    
2404         stop_mds || rc=$?
2405         cleanup_nocli || rc=$?
2406         #writeconf to remove all ost2 traces for subsequent tests
2407         writeconf_or_reformat
2408         return $rc
2409 }
2410
2411 test_46a() {
2412         echo "Testing with $OSTCOUNT OSTs"
2413         reformat_and_config
2414         start_mds || return 1
2415         #first client should see only one ost
2416         start_ost || return 2
2417         wait_osc_import_state mds ost FULL
2418         #start_client
2419         mount_client $MOUNT || return 3
2420         trap "cleanup_46a $OSTCOUNT" EXIT ERR
2421
2422         local i
2423         for (( i=2; i<=$OSTCOUNT; i++ )); do
2424             start ost$i `ostdevname $i` $OST_MOUNT_OPTS || return $((i+2))
2425         done
2426
2427         # wait until osts in sync
2428         for (( i=2; i<=$OSTCOUNT; i++ )); do
2429             wait_osc_import_state mds ost$i FULL
2430             wait_osc_import_state client ost$i FULL
2431         done
2432
2433         #second client see all ost's
2434
2435         mount_client $MOUNT2 || return 8
2436         $LFS setstripe -c -1 $MOUNT2 || return 9
2437         $LFS getstripe $MOUNT2 || return 10
2438
2439         echo "ok" > $MOUNT2/widestripe
2440         $LFS getstripe $MOUNT2/widestripe || return 11
2441         # fill acl buffer for avoid expand lsm to them
2442         awk -F : '{if (FNR < 25) { print "u:"$1":rwx" }}' /etc/passwd | while read acl; do
2443             setfacl -m $acl $MOUNT2/widestripe
2444         done
2445
2446         # will be deadlock
2447         stat $MOUNT/widestripe || return 12
2448
2449         cleanup_46a $OSTCOUNT || { echo "cleanup_46a failed!" && return 13; }
2450         return 0
2451 }
2452 run_test 46a "handle ost additional - wide striped file"
2453
2454 test_47() { #17674
2455         reformat
2456         setup_noconfig
2457         check_mount || return 2
2458         $LCTL set_param ldlm.namespaces.$FSNAME-*-*-*.lru_size=100
2459
2460         local lru_size=[]
2461         local count=0
2462         for ns in $($LCTL get_param ldlm.namespaces.$FSNAME-*-*-*.lru_size); do
2463             if echo $ns | grep "MDT[[:digit:]]*"; then
2464                 continue
2465             fi
2466             lrs=$(echo $ns | sed 's/.*lru_size=//')
2467             lru_size[count]=$lrs
2468             let count=count+1
2469         done
2470
2471         facet_failover ost1
2472         facet_failover $SINGLEMDS
2473         client_up || return 3
2474
2475         count=0
2476         for ns in $($LCTL get_param ldlm.namespaces.$FSNAME-*-*-*.lru_size); do
2477             if echo $ns | grep "MDT[[:digit:]]*"; then
2478                 continue
2479             fi
2480             lrs=$(echo $ns | sed 's/.*lru_size=//')
2481             if ! test "$lrs" -eq "${lru_size[count]}"; then
2482                 n=$(echo $ns | sed -e 's/ldlm.namespaces.//' -e 's/.lru_size=.*//')
2483                 error "$n has lost lru_size: $lrs vs. ${lru_size[count]}"
2484             fi
2485             let count=count+1
2486         done
2487
2488         cleanup
2489         return 0
2490 }
2491 run_test 47 "server restart does not make client loss lru_resize settings"
2492
2493 cleanup_48() {
2494         trap 0
2495
2496         # reformat after this test is needed - if test will failed
2497         # we will have unkillable file at FS
2498         reformat_and_config
2499 }
2500
2501 test_48() { # bug 17636
2502         reformat
2503         setup_noconfig
2504         check_mount || return 2
2505
2506         $LFS setstripe -c -1 $MOUNT || return 9
2507         $LFS getstripe $MOUNT || return 10
2508
2509         echo "ok" > $MOUNT/widestripe
2510         $LFS getstripe $MOUNT/widestripe || return 11
2511
2512         trap cleanup_48 EXIT ERR
2513
2514         # fill acl buffer for avoid expand lsm to them
2515         getent passwd | awk -F : '{ print "u:"$1":rwx" }' |  while read acl; do
2516             setfacl -m $acl $MOUNT/widestripe
2517         done
2518
2519         stat $MOUNT/widestripe || return 12
2520
2521         cleanup_48
2522         return 0
2523 }
2524 run_test 48 "too many acls on file"
2525
2526 # check PARAM_SYS_LDLM_TIMEOUT option of MKFS.LUSTRE
2527 test_49() { # bug 17710
2528         local timeout_orig=$TIMEOUT
2529         local ldlm_timeout_orig=$LDLM_TIMEOUT
2530         local LOCAL_TIMEOUT=20
2531
2532         LDLM_TIMEOUT=$LOCAL_TIMEOUT
2533         TIMEOUT=$LOCAL_TIMEOUT
2534
2535         reformat
2536         setup_noconfig
2537         check_mount || return 1
2538
2539         echo "check ldlm_timout..."
2540         LDLM_MDS="`do_facet $SINGLEMDS lctl get_param -n ldlm_timeout`"
2541         LDLM_OST1="`do_facet ost1 lctl get_param -n ldlm_timeout`"
2542         LDLM_CLIENT="`do_facet client lctl get_param -n ldlm_timeout`"
2543
2544         if [ $LDLM_MDS -ne $LDLM_OST1 ] || [ $LDLM_MDS -ne $LDLM_CLIENT ]; then
2545                 error "Different LDLM_TIMEOUT:$LDLM_MDS $LDLM_OST1 $LDLM_CLIENT"
2546         fi
2547
2548         if [ $LDLM_MDS -ne $((LOCAL_TIMEOUT / 3)) ]; then
2549                 error "LDLM_TIMEOUT($LDLM_MDS) is not correct"
2550         fi
2551
2552         umount_client $MOUNT
2553         stop_ost || return 2
2554         stop_mds || return 3
2555
2556         LDLM_TIMEOUT=$((LOCAL_TIMEOUT - 1))
2557
2558         reformat
2559         setup_noconfig
2560         check_mount || return 7
2561
2562         LDLM_MDS="`do_facet $SINGLEMDS lctl get_param -n ldlm_timeout`"
2563         LDLM_OST1="`do_facet ost1 lctl get_param -n ldlm_timeout`"
2564         LDLM_CLIENT="`do_facet client lctl get_param -n ldlm_timeout`"
2565
2566         if [ $LDLM_MDS -ne $LDLM_OST1 ] || [ $LDLM_MDS -ne $LDLM_CLIENT ]; then
2567                 error "Different LDLM_TIMEOUT:$LDLM_MDS $LDLM_OST1 $LDLM_CLIENT"
2568         fi
2569
2570         if [ $LDLM_MDS -ne $((LOCAL_TIMEOUT - 1)) ]; then
2571                 error "LDLM_TIMEOUT($LDLM_MDS) is not correct"
2572         fi
2573
2574         cleanup || return $?
2575
2576         LDLM_TIMEOUT=$ldlm_timeout_orig
2577         TIMEOUT=$timeout_orig
2578 }
2579 run_test 49 "check PARAM_SYS_LDLM_TIMEOUT option of MKFS.LUSTRE"
2580
2581 lazystatfs() {
2582         # Test both statfs and lfs df and fail if either one fails
2583         multiop_bg_pause $1 f_
2584         RC1=$?
2585         PID=$!
2586         killall -USR1 multiop
2587         [ $RC1 -ne 0 ] && log "lazystatfs multiop failed"
2588         wait $PID || { RC1=$?; log "multiop return error "; }
2589
2590         $LFS df &
2591         PID=$!
2592         sleep 5
2593         kill -s 0 $PID
2594         RC2=$?
2595         if [ $RC2 -eq 0 ]; then
2596             kill -s 9 $PID
2597             log "lazystatfs df failed"
2598         fi
2599
2600         RC=0
2601         [[ $RC1 -ne 0 || $RC2 -eq 0 ]] && RC=1
2602         return $RC
2603 }
2604
2605 test_50a() {
2606         setup
2607         lctl set_param llite.$FSNAME-*.lazystatfs=1
2608         touch $DIR/$tfile
2609
2610         lazystatfs $MOUNT || error "lazystatfs failed but no down servers"
2611
2612         cleanup || return $?
2613 }
2614 run_test 50a "lazystatfs all servers available =========================="
2615
2616 test_50b() {
2617         setup
2618         lctl set_param llite.$FSNAME-*.lazystatfs=1
2619         touch $DIR/$tfile
2620
2621         # Wait for client to detect down OST
2622         stop_ost || error "Unable to stop OST1"
2623         wait_osc_import_state mds ost DISCONN
2624
2625         lazystatfs $MOUNT || error "lazystatfs should don't have returned EIO"
2626
2627         umount_client $MOUNT || error "Unable to unmount client"
2628         stop_mds || error "Unable to stop MDS"
2629 }
2630 run_test 50b "lazystatfs all servers down =========================="
2631
2632 test_50c() {
2633         start_mds || error "Unable to start MDS"
2634         start_ost || error "Unable to start OST1"
2635         start_ost2 || error "Unable to start OST2"
2636         mount_client $MOUNT || error "Unable to mount client"
2637         lctl set_param llite.$FSNAME-*.lazystatfs=1
2638         touch $DIR/$tfile
2639
2640         # Wait for client to detect down OST
2641         stop_ost || error "Unable to stop OST1"
2642         wait_osc_import_state mds ost DISCONN
2643         lazystatfs $MOUNT || error "lazystatfs failed with one down server"
2644
2645         umount_client $MOUNT || error "Unable to unmount client"
2646         stop_ost2 || error "Unable to stop OST2"
2647         stop_mds || error "Unable to stop MDS"
2648         #writeconf to remove all ost2 traces for subsequent tests
2649         writeconf_or_reformat
2650 }
2651 run_test 50c "lazystatfs one server down =========================="
2652
2653 test_50d() {
2654         start_mds || error "Unable to start MDS"
2655         start_ost || error "Unable to start OST1"
2656         start_ost2 || error "Unable to start OST2"
2657         mount_client $MOUNT || error "Unable to mount client"
2658         lctl set_param llite.$FSNAME-*.lazystatfs=1
2659         touch $DIR/$tfile
2660
2661         # Issue the statfs during the window where the client still
2662         # belives the OST to be available but it is in fact down.
2663         # No failure just a statfs which hangs for a timeout interval.
2664         stop_ost || error "Unable to stop OST1"
2665         lazystatfs $MOUNT || error "lazystatfs failed with one down server"
2666
2667         umount_client $MOUNT || error "Unable to unmount client"
2668         stop_ost2 || error "Unable to stop OST2"
2669         stop_mds || error "Unable to stop MDS"
2670         #writeconf to remove all ost2 traces for subsequent tests
2671         writeconf_or_reformat
2672 }
2673 run_test 50d "lazystatfs client/server conn race =========================="
2674
2675 test_50e() {
2676         local RC1
2677         local pid
2678
2679         reformat_and_config
2680         start_mds || return 1
2681         #first client should see only one ost
2682         start_ost || return 2
2683         wait_osc_import_state mds ost FULL
2684
2685         # Wait for client to detect down OST
2686         stop_ost || error "Unable to stop OST1"
2687         wait_osc_import_state mds ost DISCONN
2688
2689         mount_client $MOUNT || error "Unable to mount client"
2690         lctl set_param llite.$FSNAME-*.lazystatfs=0
2691
2692         multiop_bg_pause $MOUNT _f
2693         RC1=$?
2694         pid=$!
2695
2696         if [ $RC1 -ne 0 ]; then
2697                 log "multiop failed $RC1"
2698         else
2699             kill -USR1 $pid
2700             sleep $(( $TIMEOUT+1 ))
2701             kill -0 $pid
2702             [ $? -ne 0 ] && error "process isn't sleep"
2703             start_ost || error "Unable to start OST1"
2704             wait $pid || error "statfs failed"
2705         fi
2706
2707         umount_client $MOUNT || error "Unable to unmount client"
2708         stop_ost || error "Unable to stop OST1"
2709         stop_mds || error "Unable to stop MDS"
2710 }
2711 run_test 50e "normal statfs all servers down =========================="
2712
2713 test_50f() {
2714         local RC1
2715         local pid
2716         CONN_PROC="osc.$FSNAME-OST0001-osc-[M]*.ost_server_uuid"
2717
2718         start_mds || error "Unable to start mds"
2719         #first client should see only one ost
2720         start_ost || error "Unable to start OST1"
2721         wait_osc_import_state mds ost FULL
2722
2723         start_ost2 || error "Unable to start OST2"
2724         wait_osc_import_state mds ost2 FULL
2725
2726         # Wait for client to detect down OST
2727         stop_ost2 || error "Unable to stop OST2"
2728
2729         wait_osc_import_state mds ost2 DISCONN
2730         mount_client $MOUNT || error "Unable to mount client"
2731         lctl set_param llite.$FSNAME-*.lazystatfs=0
2732
2733         multiop_bg_pause $MOUNT _f
2734         RC1=$?
2735         pid=$!
2736
2737         if [ $RC1 -ne 0 ]; then
2738                 log "lazystatfs multiop failed $RC1"
2739         else
2740             kill -USR1 $pid
2741             sleep $(( $TIMEOUT+1 ))
2742             kill -0 $pid
2743             [ $? -ne 0 ] && error "process isn't sleep"
2744             start_ost2 || error "Unable to start OST2"
2745             wait $pid || error "statfs failed"
2746             stop_ost2 || error "Unable to stop OST2"
2747         fi
2748
2749         umount_client $MOUNT || error "Unable to unmount client"
2750         stop_ost || error "Unable to stop OST1"
2751         stop_mds || error "Unable to stop MDS"
2752         #writeconf to remove all ost2 traces for subsequent tests
2753         writeconf_or_reformat
2754 }
2755 run_test 50f "normal statfs one server in down =========================="
2756
2757 test_50g() {
2758         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2, skipping" && return
2759         setup
2760         start_ost2 || error "Unable to start OST2"
2761         wait_osc_import_state mds ost2 FULL
2762         wait_osc_import_state client ost2 FULL
2763
2764         local PARAM="${FSNAME}-OST0001.osc.active"
2765
2766         $LFS setstripe -c -1 $DIR/$tfile || error "Unable to lfs setstripe"
2767         do_facet mgs $LCTL conf_param $PARAM=0 || error "Unable to deactivate OST"
2768
2769         umount_client $MOUNT || error "Unable to unmount client"
2770         mount_client $MOUNT || error "Unable to mount client"
2771         # This df should not cause a panic
2772         df -k $MOUNT
2773
2774         do_facet mgs $LCTL conf_param $PARAM=1 || error "Unable to activate OST"
2775         rm -f $DIR/$tfile
2776         umount_client $MOUNT || error "Unable to unmount client"
2777         stop_ost2 || error "Unable to stop OST2"
2778         stop_ost || error "Unable to stop OST1"
2779         stop_mds || error "Unable to stop MDS"
2780         #writeconf to remove all ost2 traces for subsequent tests
2781         writeconf_or_reformat
2782 }
2783 run_test 50g "deactivated OST should not cause panic====================="
2784
2785 test_51() {
2786         local LOCAL_TIMEOUT=20
2787
2788         reformat
2789         setup_noconfig
2790         check_mount || return 1
2791
2792         mkdir $MOUNT/d1
2793         $LFS setstripe -c -1 $MOUNT/d1
2794         #define OBD_FAIL_MDS_REINT_DELAY         0x142
2795         do_facet $SINGLEMDS "lctl set_param fail_loc=0x142"
2796         touch $MOUNT/d1/f1 &
2797         local pid=$!
2798         sleep 2
2799         start_ost2 || return 2
2800         wait $pid
2801         stop_ost2 || return 3
2802         cleanup
2803         #writeconf to remove all ost2 traces for subsequent tests
2804         writeconf_or_reformat
2805 }
2806 run_test 51 "Verify that mdt_reint handles RMF_MDT_MD correctly when an OST is added"
2807
2808 copy_files_xattrs()
2809 {
2810         local node=$1
2811         local dest=$2
2812         local xattrs=$3
2813         shift 3
2814
2815         do_node $node mkdir -p $dest
2816         [ $? -eq 0 ] || { error "Unable to create directory"; return 1; }
2817
2818         do_node $node  'tar cf - '$@' | tar xf - -C '$dest';
2819                         [ \"\${PIPESTATUS[*]}\" = \"0 0\" ] || exit 1'
2820         [ $? -eq 0 ] || { error "Unable to tar files"; return 2; }
2821
2822         do_node $node 'getfattr -d -m "[a-z]*\\." '$@' > '$xattrs
2823         [ $? -eq 0 ] || { error "Unable to read xattrs"; return 3; }
2824 }
2825
2826 diff_files_xattrs()
2827 {
2828         local node=$1
2829         local backup=$2
2830         local xattrs=$3
2831         shift 3
2832
2833         local backup2=${TMP}/backup2
2834
2835         do_node $node mkdir -p $backup2
2836         [ $? -eq 0 ] || { error "Unable to create directory"; return 1; }
2837
2838         do_node $node  'tar cf - '$@' | tar xf - -C '$backup2';
2839                         [ \"\${PIPESTATUS[*]}\" = \"0 0\" ] || exit 1'
2840         [ $? -eq 0 ] || { error "Unable to tar files to diff"; return 2; }
2841
2842         do_node $node "diff -rq $backup $backup2"
2843         [ $? -eq 0 ] || { error "contents differ"; return 3; }
2844
2845         local xattrs2=${TMP}/xattrs2
2846         do_node $node 'getfattr -d -m "[a-z]*\\." '$@' > '$xattrs2
2847         [ $? -eq 0 ] || { error "Unable to read xattrs to diff"; return 4; }
2848
2849         do_node $node "diff $xattrs $xattrs2"
2850         [ $? -eq 0 ] || { error "xattrs differ"; return 5; }
2851
2852         do_node $node "rm -rf $backup2 $xattrs2"
2853         [ $? -eq 0 ] || { error "Unable to delete temporary files"; return 6; }
2854 }
2855
2856 test_52() {
2857         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
2858                 skip "Only applicable to ldiskfs-based MDTs"
2859                 return
2860         fi
2861
2862         start_mds
2863         [ $? -eq 0 ] || { error "Unable to start MDS"; return 1; }
2864         start_ost
2865         [ $? -eq 0 ] || { error "Unable to start OST1"; return 2; }
2866         mount_client $MOUNT
2867         [ $? -eq 0 ] || { error "Unable to mount client"; return 3; }
2868
2869         local nrfiles=8
2870         local ost1mnt=$(facet_mntpt ost1)
2871         local ost1node=$(facet_active_host ost1)
2872         local ost1tmp=$TMP/conf52
2873         local loop
2874
2875         mkdir -p $DIR/$tdir
2876         [ $? -eq 0 ] || { error "Unable to create tdir"; return 4; }
2877         touch $TMP/modified_first
2878         [ $? -eq 0 ] || { error "Unable to create temporary file"; return 5; }
2879         local mtime=$(stat -c %Y $TMP/modified_first)
2880         do_node $ost1node "mkdir -p $ost1tmp && touch -m -d @$mtime $ost1tmp/modified_first"
2881
2882         [ $? -eq 0 ] || { error "Unable to create temporary file"; return 6; }
2883         sleep 1
2884
2885         $LFS setstripe -c -1 -S 1M $DIR/$tdir
2886         [ $? -eq 0 ] || { error "lfs setstripe failed"; return 7; }
2887
2888         for (( i=0; i < nrfiles; i++ )); do
2889                 multiop $DIR/$tdir/$tfile-$i Ow1048576w1048576w524288c
2890                 [ $? -eq 0 ] || { error "multiop failed"; return 8; }
2891                 echo -n .
2892         done
2893         echo
2894
2895         # backup files
2896         echo backup files to $TMP/files
2897         local files=$(find $DIR/$tdir -type f -newer $TMP/modified_first)
2898         copy_files_xattrs `hostname` $TMP/files $TMP/file_xattrs $files
2899         [ $? -eq 0 ] || { error "Unable to copy files"; return 9; }
2900
2901         umount_client $MOUNT
2902         [ $? -eq 0 ] || { error "Unable to umount client"; return 10; }
2903         stop_ost
2904         [ $? -eq 0 ] || { error "Unable to stop ost1"; return 11; }
2905
2906         echo mount ost1 as ldiskfs
2907         do_node $ost1node mkdir -p $ost1mnt
2908         [ $? -eq 0 ] || { error "Unable to create $ost1mnt"; return 23; }
2909         if ! do_node $ost1node test -b $ost1_dev; then
2910                 loop="-o loop"
2911         fi
2912         do_node $ost1node mount -t $(facet_fstype ost1) $loop $ost1_dev \
2913                 $ost1mnt
2914         [ $? -eq 0 ] || { error "Unable to mount ost1 as ldiskfs"; return 12; }
2915
2916         # backup objects
2917         echo backup objects to $ost1tmp/objects
2918         local objects=$(do_node $ost1node 'find '$ost1mnt'/O/[0-9]* -type f'\
2919                 '-size +0 -newer '$ost1tmp'/modified_first -regex ".*\/[0-9]+"')
2920         copy_files_xattrs $ost1node $ost1tmp/objects $ost1tmp/object_xattrs \
2921                         $objects
2922         [ $? -eq 0 ] || { error "Unable to copy objects"; return 13; }
2923
2924         # move objects to lost+found
2925         do_node $ost1node 'mv '$objects' '${ost1mnt}'/lost+found'
2926         [ $? -eq 0 ] || { error "Unable to move objects"; return 14; }
2927
2928         # recover objects
2929         do_node $ost1node "ll_recover_lost_found_objs -d $ost1mnt/lost+found"
2930         [ $? -eq 0 ] || { error "ll_recover_lost_found_objs failed"; return 15; }
2931
2932         # compare restored objects against saved ones
2933         diff_files_xattrs $ost1node $ost1tmp/objects $ost1tmp/object_xattrs $objects
2934         [ $? -eq 0 ] || { error "Unable to diff objects"; return 16; }
2935
2936         do_node $ost1node "umount $ost1mnt"
2937         [ $? -eq 0 ] || { error "Unable to umount ost1 as ldiskfs"; return 17; }
2938
2939         start_ost
2940         [ $? -eq 0 ] || { error "Unable to start ost1"; return 18; }
2941         mount_client $MOUNT
2942         [ $? -eq 0 ] || { error "Unable to mount client"; return 19; }
2943
2944         # compare files
2945         diff_files_xattrs `hostname` $TMP/files $TMP/file_xattrs $files
2946         [ $? -eq 0 ] || { error "Unable to diff files"; return 20; }
2947
2948         rm -rf $TMP/files $TMP/file_xattrs
2949         [ $? -eq 0 ] || { error "Unable to delete temporary files"; return 21; }
2950         do_node $ost1node "rm -rf $ost1tmp"
2951         [ $? -eq 0 ] || { error "Unable to delete temporary files"; return 22; }
2952         cleanup
2953 }
2954 run_test 52 "check recovering objects from lost+found"
2955
2956 # Checks threads_min/max/started for some service
2957 #
2958 # Arguments: service name (OST or MDT), facet (e.g., ost1, $SINGLEMDS), and a
2959 # parameter pattern prefix like 'ost.*.ost'.
2960 thread_sanity() {
2961         local modname=$1
2962         local facet=$2
2963         local parampat=$3
2964         local opts=$4
2965         local basethr=$5
2966         local tmin
2967         local tmin2
2968         local tmax
2969         local tmax2
2970         local tstarted
2971         local paramp
2972         local msg="Insane $modname thread counts"
2973         local ncpts=$(check_cpt_number $facet)
2974         local nthrs
2975         shift 4
2976
2977         check_mount || return 41
2978
2979         # We need to expand $parampat, but it may match multiple parameters, so
2980         # we'll pick the first one
2981         if ! paramp=$(do_facet $facet "lctl get_param -N ${parampat}.threads_min"|head -1); then
2982                 error "Couldn't expand ${parampat}.threads_min parameter name"
2983                 return 22
2984         fi
2985
2986         # Remove the .threads_min part
2987         paramp=${paramp%.threads_min}
2988
2989         # Check for sanity in defaults
2990         tmin=$(do_facet $facet "lctl get_param -n ${paramp}.threads_min" || echo 0)
2991         tmax=$(do_facet $facet "lctl get_param -n ${paramp}.threads_max" || echo 0)
2992         tstarted=$(do_facet $facet "lctl get_param -n ${paramp}.threads_started" || echo 0)
2993         lassert 23 "$msg (PDSH problems?)" '(($tstarted && $tmin && $tmax))' || return $?
2994         lassert 24 "$msg" '(($tstarted >= $tmin && $tstarted <= $tmax ))' || return $?
2995         nthrs=$(expr $tmax - $tmin)
2996         if [ $nthrs -lt $ncpts ]; then
2997                 nthrs=0
2998         else
2999                 nthrs=$ncpts
3000         fi
3001
3002         [ $tmin -eq $tmax -a $tmin -eq $tstarted ] &&
3003                 skip_env "module parameter forced $facet thread count" &&
3004                 tmin=3 && tmax=$((3 * tmax))
3005
3006         # Check that we can change min/max
3007         do_facet $facet "lctl set_param ${paramp}.threads_min=$((tmin + nthrs))"
3008         do_facet $facet "lctl set_param ${paramp}.threads_max=$((tmax - nthrs))"
3009         tmin2=$(do_facet $facet "lctl get_param -n ${paramp}.threads_min" || echo 0)
3010         tmax2=$(do_facet $facet "lctl get_param -n ${paramp}.threads_max" || echo 0)
3011         lassert 25 "$msg" '(($tmin2 == ($tmin + $nthrs) && $tmax2 == ($tmax - $nthrs)))' || return $?
3012
3013         # Check that we can set min/max to the same value
3014         tmin=$(do_facet $facet "lctl get_param -n ${paramp}.threads_min" || echo 0)
3015         do_facet $facet "lctl set_param ${paramp}.threads_max=$tmin"
3016         tmin2=$(do_facet $facet "lctl get_param -n ${paramp}.threads_min" || echo 0)
3017         tmax2=$(do_facet $facet "lctl get_param -n ${paramp}.threads_max" || echo 0)
3018         lassert 26 "$msg" '(($tmin2 == $tmin && $tmax2 == $tmin))' || return $?
3019
3020         # Check that we can't set max < min
3021         do_facet $facet "lctl set_param ${paramp}.threads_max=$((tmin - 1))"
3022         tmin2=$(do_facet $facet "lctl get_param -n ${paramp}.threads_min" || echo 0)
3023         tmax2=$(do_facet $facet "lctl get_param -n ${paramp}.threads_max" || echo 0)
3024         lassert 27 "$msg" '(($tmin2 <= $tmax2))' || return $?
3025
3026         # We need to ensure that we get the module options desired; to do this
3027         # we set LOAD_MODULES_REMOTE=true and we call setmodopts below.
3028         LOAD_MODULES_REMOTE=true
3029         cleanup
3030         local oldvalue
3031         local newvalue="${opts}=$(expr $basethr \* $ncpts)"
3032         setmodopts -a $modname "$newvalue" oldvalue
3033
3034         load_modules
3035         setup
3036         check_mount || return 41
3037
3038         # Restore previous setting of MODOPTS_*
3039         setmodopts $modname "$oldvalue"
3040
3041         # Check that $opts took
3042         tmin=$(do_facet $facet "lctl get_param -n ${paramp}.threads_min")
3043         tmax=$(do_facet $facet "lctl get_param -n ${paramp}.threads_max")
3044         tstarted=$(do_facet $facet "lctl get_param -n ${paramp}.threads_started")
3045         lassert 28 "$msg" '(($tstarted == $tmin && $tstarted == $tmax ))' || return $?
3046         cleanup
3047
3048         load_modules
3049         setup
3050 }
3051
3052 test_53a() {
3053         setup
3054         thread_sanity OST ost1 'ost.*.ost' 'oss_num_threads' '16'
3055         cleanup
3056 }
3057 run_test 53a "check OSS thread count params"
3058
3059 test_53b() {
3060         setup
3061         local mds=$(do_facet $SINGLEMDS "lctl get_param -N mds.*.*.threads_max \
3062                     2>/dev/null")
3063         if [ -z "$mds" ]; then
3064                 #running this on an old MDT
3065                 thread_sanity MDT $SINGLEMDS 'mdt.*.*.' 'mdt_num_threads' 16
3066         else
3067                 thread_sanity MDT $SINGLEMDS 'mds.*.*.' 'mds_num_threads' 16
3068         fi
3069         cleanup
3070 }
3071 run_test 53b "check MDS thread count params"
3072
3073 test_54a() {
3074         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
3075                 skip "Only applicable to ldiskfs-based MDTs"
3076                 return
3077         fi
3078
3079     do_rpc_nodes $(facet_host ost1) run_llverdev $(ostdevname 1) -p
3080     [ $? -eq 0 ] || error "llverdev failed!"
3081     reformat_and_config
3082 }
3083 run_test 54a "test llverdev and partial verify of device"
3084
3085 test_54b() {
3086         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
3087                 skip "Only applicable to ldiskfs-based MDTs"
3088                 return
3089         fi
3090
3091     setup
3092     run_llverfs $MOUNT -p
3093     [ $? -eq 0 ] || error "llverfs failed!"
3094     cleanup
3095 }
3096 run_test 54b "test llverfs and partial verify of filesystem"
3097
3098 lov_objid_size()
3099 {
3100         local max_ost_index=$1
3101         echo -n $(((max_ost_index + 1) * 8))
3102 }
3103
3104 test_55() {
3105         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
3106                 skip "Only applicable to ldiskfs-based MDTs"
3107                 return
3108         fi
3109
3110         local mdsdev=$(mdsdevname 1)
3111         local mdsvdev=$(mdsvdevname 1)
3112
3113         for i in 1023 2048
3114         do
3115                 add mds1 $(mkfs_opts mds1 ${mdsdev}) --reformat $mdsdev \
3116                         $mdsvdev || exit 10
3117                 add ost1 $(mkfs_opts ost1 $(ostdevname 1)) --index=$i \
3118                         --reformat $(ostdevname 1) $(ostvdevname 1)
3119                 setup_noconfig
3120                 stopall
3121                 setup_noconfig
3122                 sync
3123
3124                 echo checking size of lov_objid for ost index $i
3125                 LOV_OBJID_SIZE=$(do_facet mds1 "$DEBUGFS -R 'stat lov_objid' $mdsdev 2>/dev/null" | grep ^User | awk '{print $6}')
3126                 if [ "$LOV_OBJID_SIZE" != $(lov_objid_size $i) ]; then
3127                         error "lov_objid size has to be $(lov_objid_size $i), not $LOV_OBJID_SIZE"
3128                 else
3129                         echo ok, lov_objid size is correct: $LOV_OBJID_SIZE
3130                 fi
3131                 stopall
3132         done
3133
3134         reformat
3135 }
3136 run_test 55 "check lov_objid size"
3137
3138 test_56() {
3139         local mds_journal_size_orig=$MDSJOURNALSIZE
3140
3141         MDSJOURNALSIZE=16
3142
3143         for num in $(seq 1 $MDSCOUNT); do
3144                 add mds${num} $(mkfs_opts mds${num} $(mdsdevname $num)) \
3145                         --reformat $(mdsdevname $num) $(mdsvdevname $num)
3146         done
3147         add ost1 $(mkfs_opts ost1 $(ostdevname 1)) --index=1000 --reformat \
3148                 $(ostdevname 1) $(ostvdevname 1)
3149         add ost2 $(mkfs_opts ost2 $(ostdevname 2)) --index=10000 --reformat \
3150                 $(ostdevname 2) $(ostvdevname 2)
3151
3152         start_mgsmds
3153         start_ost
3154         start_ost2 || error "Unable to start second ost"
3155         mount_client $MOUNT || error "Unable to mount client"
3156         echo ok
3157         $LFS osts
3158         stopall
3159         MDSJOURNALSIZE=$mds_journal_size_orig
3160         reformat
3161 }
3162 run_test 56 "check big indexes"
3163
3164 test_57a() { # bug 22656
3165         local NID=$(do_facet ost1 "$LCTL get_param nis" | tail -1 | awk '{print $1}')
3166         writeconf_or_reformat
3167         do_facet ost1 "$TUNEFS --failnode=$NID `ostdevname 1`" || error "tunefs failed"
3168         start_mgsmds
3169         start_ost && error "OST registration from failnode should fail"
3170         reformat
3171 }
3172 run_test 57a "initial registration from failnode should fail (should return errs)"
3173
3174 test_57b() {
3175         local NID=$(do_facet ost1 "$LCTL get_param nis" | tail -1 | awk '{print $1}')
3176         writeconf_or_reformat
3177         do_facet ost1 "$TUNEFS --servicenode=$NID `ostdevname 1`" || error "tunefs failed"
3178         start_mgsmds
3179         start_ost || error "OST registration from servicenode should not fail"
3180         reformat
3181 }
3182 run_test 57b "initial registration from servicenode should not fail"
3183
3184 count_osts() {
3185         do_facet mgs $LCTL get_param mgs.MGS.live.$FSNAME | grep OST | wc -l
3186 }
3187
3188 test_58() { # bug 22658
3189         if [ $(facet_fstype mds) != ldiskfs ]; then
3190                 skip "Only applicable to ldiskfs-based MDTs"
3191                 return
3192         fi
3193         setup_noconfig
3194         mkdir -p $DIR/$tdir
3195         createmany -o $DIR/$tdir/$tfile-%d 100
3196         # make sure that OSTs do not cancel llog cookies before we unmount the MDS
3197 #define OBD_FAIL_OBD_LOG_CANCEL_NET      0x601
3198         do_facet mds "lctl set_param fail_loc=0x601"
3199         unlinkmany $DIR/$tdir/$tfile-%d 100
3200         stop mds
3201         local MNTDIR=$(facet_mntpt mds)
3202         # remove all files from the OBJECTS dir
3203         do_facet mds "mount -t ldiskfs $MDSDEV $MNTDIR"
3204         do_facet mds "find $MNTDIR/OBJECTS -type f -delete"
3205         do_facet mds "umount $MNTDIR"
3206         # restart MDS with missing llog files
3207         start_mds
3208         do_facet mds "lctl set_param fail_loc=0"
3209         reformat
3210 }
3211 run_test 58 "missing llog files must not prevent MDT from mounting"
3212
3213 test_59() {
3214         start_mgsmds >> /dev/null
3215         local C1=$(count_osts)
3216         if [ $C1 -eq 0 ]; then
3217                 start_ost >> /dev/null
3218                 C1=$(count_osts)
3219         fi
3220         stopall
3221         echo "original ost count: $C1 (expect > 0)"
3222         [ $C1 -gt 0 ] || error "No OSTs in $FSNAME log"
3223         start_mgsmds -o writeconf >> /dev/null || error "MDT start failed"
3224         local C2=$(count_osts)
3225         echo "after mdt writeconf count: $C2 (expect 0)"
3226         [ $C2 -gt 0 ] && error "MDT writeconf should erase OST logs"
3227         echo "OST start without writeconf should fail:"
3228         start_ost >> /dev/null && error "OST start without writeconf didn't fail"
3229         echo "OST start with writeconf should succeed:"
3230         start_ost -o writeconf >> /dev/null || error "OST1 start failed"
3231         local C3=$(count_osts)
3232         echo "after ost writeconf count: $C3 (expect 1)"
3233         [ $C3 -eq 1 ] || error "new OST writeconf should add:"
3234         start_ost2 -o writeconf >> /dev/null || error "OST2 start failed"
3235         local C4=$(count_osts)
3236         echo "after ost2 writeconf count: $C4 (expect 2)"
3237         [ $C4 -eq 2 ] || error "OST2 writeconf should add log"
3238         stop_ost2 >> /dev/null
3239         cleanup_nocli >> /dev/null
3240         #writeconf to remove all ost2 traces for subsequent tests
3241         writeconf_or_reformat
3242 }
3243 run_test 59 "writeconf mount option"
3244
3245 test_60() { # LU-471
3246         local num
3247
3248         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
3249                 skip "Only applicable to ldiskfs-based MDTs"
3250                 return
3251         fi
3252
3253         for num in $(seq $MDSCOUNT); do
3254                 add mds${num} $(mkfs_opts mds${num} $(mdsdevname $num)) \
3255                         --mkfsoptions='\" -E stride=64 -O ^uninit_bg\"' \
3256                         --reformat $(mdsdevname $num) $(mdsvdevname $num) ||
3257                         exit 10
3258         done
3259
3260         dump=$(do_facet $SINGLEMDS dumpe2fs $(mdsdevname 1))
3261         rc=${PIPESTATUS[0]}
3262         [ $rc -eq 0 ] || error "dumpe2fs $(mdsdevname 1) failed"
3263
3264         # MDT default has dirdata feature
3265         echo $dump | grep dirdata > /dev/null || error "dirdata is not set"
3266         # we disable uninit_bg feature
3267         echo $dump | grep uninit_bg > /dev/null && error "uninit_bg is set"
3268         # we set stride extended options
3269         echo $dump | grep stride > /dev/null || error "stride is not set"
3270         reformat
3271 }
3272 run_test 60 "check mkfs.lustre --mkfsoptions -E -O options setting"
3273
3274 test_61() { # LU-80
3275         local reformat=false
3276
3277         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.1.53) ] ||
3278                 { skip "Need MDS version at least 2.1.53"; return 0; }
3279
3280         if [ $(facet_fstype $SINGLEMDS) == ldiskfs ] &&
3281            ! large_xattr_enabled; then
3282                 reformat=true
3283                 LDISKFS_MKFS_OPTS+=" -O large_xattr"
3284
3285                 for num in $(seq $MDSCOUNT); do
3286                         add mds${num} $(mkfs_opts mds$num $(mdsdevname $num)) \
3287                         --reformat $(mdsdevname $num) $(mdsvdevname $num) ||
3288                         error "add mds $num failed"
3289                 done
3290         fi
3291
3292     setup_noconfig || error "setting up the filesystem failed"
3293     client_up || error "starting client failed"
3294
3295     local file=$DIR/$tfile
3296     touch $file
3297
3298     local large_value="$(generate_string $(max_xattr_size))"
3299     local small_value="bar"
3300
3301     local name="trusted.big"
3302     log "save large xattr $name on $file"
3303     setfattr -n $name -v $large_value $file ||
3304         error "saving $name on $file failed"
3305
3306     local new_value=$(get_xattr_value $name $file)
3307     [[ "$new_value" != "$large_value" ]] &&
3308         error "$name different after saving"
3309
3310     log "shrink value of $name on $file"
3311     setfattr -n $name -v $small_value $file ||
3312         error "shrinking value of $name on $file failed"
3313
3314     new_value=$(get_xattr_value $name $file)
3315     [[ "$new_value" != "$small_value" ]] &&
3316         error "$name different after shrinking"
3317
3318     log "grow value of $name on $file"
3319     setfattr -n $name -v $large_value $file ||
3320         error "growing value of $name on $file failed"
3321
3322     new_value=$(get_xattr_value $name $file)
3323     [[ "$new_value" != "$large_value" ]] &&
3324         error "$name different after growing"
3325
3326     log "check value of $name on $file after remounting MDS"
3327     fail $SINGLEMDS
3328     new_value=$(get_xattr_value $name $file)
3329     [[ "$new_value" != "$large_value" ]] &&
3330         error "$name different after remounting MDS"
3331
3332     log "remove large xattr $name from $file"
3333     setfattr -x $name $file || error "removing $name from $file failed"
3334
3335     rm -f $file
3336     stopall
3337         if $reformat; then
3338                 LDISKFS_MKFS_OPTS=${LDISKFS_MKFS_OPTS% -O large_xattr}
3339                 reformat
3340         fi
3341 }
3342 run_test 61 "large xattr"
3343
3344 test_62() {
3345         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
3346                 skip "Only applicable to ldiskfs-based MDTs"
3347                 return
3348         fi
3349
3350         # MRP-118
3351         local mdsdev=$(mdsdevname 1)
3352         local ostdev=$(ostdevname 1)
3353
3354         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
3355                 { skip "Need MDS version at least 2.2.51"; return 0; }
3356
3357         echo "disable journal for mds"
3358         do_facet mds tune2fs -O ^has_journal $mdsdev || error "tune2fs failed"
3359         start_mds && error "MDT start should fail"
3360         echo "disable journal for ost"
3361         do_facet ost1 tune2fs -O ^has_journal $ostdev || error "tune2fs failed"
3362         start_ost && error "OST start should fail"
3363         cleanup || return $?
3364         reformat_and_config
3365 }
3366 run_test 62 "start with disabled journal"
3367
3368 test_63() {
3369         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
3370                 skip "Only applicable to ldiskfs-based MDTs"
3371                 return
3372         fi
3373
3374         local inode_slab=$(do_facet $SINGLEMDS \
3375                 "awk '/ldiskfs_inode_cache/ { print \\\$5 }' /proc/slabinfo")
3376         if [ -z "$inode_slab" ]; then
3377                 skip "ldiskfs module has not been loaded"
3378                 return
3379         fi
3380
3381         echo "$inode_slab ldisk inodes per page"
3382         [ "$inode_slab" -ge "3" ] ||
3383                 error "ldisk inode size is too big, $inode_slab objs per page"
3384         return
3385 }
3386 run_test 63 "Verify each page can at least hold 3 ldisk inodes"
3387
3388 test_64() {
3389         start_mds
3390         start_ost
3391         start_ost2 || error "Unable to start second ost"
3392         mount_client $MOUNT || error "Unable to mount client"
3393         stop_ost2 || error "Unable to stop second ost"
3394         echo "$LFS df"
3395         $LFS df --lazy || error "lfs df failed"
3396         cleanup || return $?
3397         #writeconf to remove all ost2 traces for subsequent tests
3398         writeconf_or_reformat
3399 }
3400 run_test 64 "check lfs df --lazy "
3401
3402 test_65() { # LU-2237
3403         # Currently, the test is only valid for ldiskfs backend
3404         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
3405                 skip "non-ldiskfs backend" && return
3406
3407         local devname=$(mdsdevname ${SINGLEMDS//mds/})
3408         local brpt=$(facet_mntpt brpt)
3409         local opts=""
3410
3411         if ! do_facet $SINGLEMDS "test -b $devname"; then
3412                 opts="-o loop"
3413         fi
3414
3415         stop_mds
3416         local obj=$(do_facet $SINGLEMDS \
3417                     "$DEBUGFS -c -R \\\"stat last_rcvd\\\" $devname" |
3418                     grep Inode)
3419         if [ -z "$obj" ]; then
3420                 # The MDT may be just re-formatted, mount the MDT for the
3421                 # first time to guarantee the "last_rcvd" file is there.
3422                 start_mds || error "fail to mount the MDS for the first time"
3423                 stop_mds
3424         fi
3425
3426         # remove the "last_rcvd" file
3427         do_facet $SINGLEMDS "mkdir -p $brpt"
3428         do_facet $SINGLEMDS \
3429                 "mount -t $(facet_fstype $SINGLEMDS) $opts $devname $brpt"
3430         do_facet $SINGLEMDS "rm -f ${brpt}/last_rcvd"
3431         do_facet $SINGLEMDS "umount $brpt"
3432
3433         # restart MDS, the "last_rcvd" file should be recreated.
3434         start_mds || error "fail to restart the MDS"
3435         stop_mds
3436         obj=$(do_facet $SINGLEMDS \
3437               "$DEBUGFS -c -R \\\"stat last_rcvd\\\" $devname" | grep Inode)
3438         [ -n "$obj" ] || error "fail to re-create the last_rcvd"
3439 }
3440 run_test 65 "re-create the lost last_rcvd file when server mount"
3441
3442 test_66() {
3443         [[ $(lustre_version_code mgs) -ge $(version_code 2.3.59) ]] ||
3444                 { skip "Need MGS version at least 2.3.59"; return 0; }
3445
3446         setup
3447         local OST1_NID=$(do_facet ost1 $LCTL list_nids | head -1)
3448         local MDS_NID=$(do_facet $SINGLEMDS $LCTL list_nids | head -1)
3449
3450         echo "replace_nids should fail if MDS, OSTs and clients are UP"
3451         do_facet mgs $LCTL replace_nids $FSNAME-OST0000 $OST1_NID &&
3452                 error "replace_nids fail"
3453
3454         umount_client $MOUNT || error "unmounting client failed"
3455         echo "replace_nids should fail if MDS and OSTs are UP"
3456         do_facet mgs $LCTL replace_nids $FSNAME-OST0000 $OST1_NID &&
3457                 error "replace_nids fail"
3458
3459         stop_ost
3460         echo "replace_nids should fail if MDS is UP"
3461         do_facet mgs $LCTL replace_nids $FSNAME-OST0000 $OST1_NID &&
3462                 error "replace_nids fail"
3463
3464         stop_mds || error "stopping mds failed"
3465
3466         if combined_mgs_mds; then
3467                 start_mds "-o nosvc" ||
3468                         error "starting mds with nosvc option failed"
3469         fi
3470
3471         echo "command should accept two parameters"
3472         do_facet mgs $LCTL replace_nids $FSNAME-OST0000 &&
3473                 error "command should accept two params"
3474
3475         echo "correct device name should be passed"
3476         do_facet mgs $LCTL replace_nids $FSNAME-WRONG0000 $OST1_NID &&
3477                 error "wrong devname"
3478
3479         echo "wrong nids list should not destroy the system"
3480         do_facet mgs $LCTL replace_nids $FSNAME-OST0000 "wrong nids list" &&
3481                 error "wrong parse"
3482
3483         echo "replace OST nid"
3484         do_facet mgs $LCTL replace_nids $FSNAME-OST0000 $OST1_NID ||
3485                 error "replace nids failed"
3486
3487         echo "command should accept two parameters"
3488         do_facet mgs $LCTL replace_nids $FSNAME-MDT0000 &&
3489                 error "command should accept two params"
3490
3491         echo "wrong nids list should not destroy the system"
3492         do_facet mgs $LCTL replace_nids $FSNAME-MDT0000 "wrong nids list" &&
3493                 error "wrong parse"
3494
3495         echo "replace MDS nid"
3496         do_facet mgs $LCTL replace_nids $FSNAME-MDT0000 $MDS_NID ||
3497                 error "replace nids failed"
3498
3499         if ! combined_mgs_mds ; then
3500                 stop_mgs
3501         else
3502                 stop_mds
3503         fi
3504
3505         setup_noconfig
3506         check_mount || error "error after nid replace"
3507         cleanup
3508         reformat
3509 }
3510 run_test 66 "replace nids"
3511
3512 test_70a() {
3513         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
3514         local MDTIDX=1
3515
3516         start_mdt 1 || error "MDT0 start fail"
3517
3518         start_ost || error "OST0 start fail"
3519
3520         start_mdt 2 || error "MDT1 start fail"
3521
3522         mount_client $MOUNT || error "mount client fails"
3523
3524         mkdir -p $DIR/$tdir || error "create dir fail"
3525
3526         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
3527                                         error "create remote dir fail"
3528
3529         rm -rf $DIR/$tdir || error "delete dir fail"
3530         cleanup || return $?
3531 }
3532 run_test 70a "start MDT0, then OST, then MDT1"
3533
3534 test_70b() {
3535         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
3536         local MDTIDX=1
3537
3538         start_ost || error "OST0 start fail"
3539
3540         start_mdt 1 || error "MDT0 start fail"
3541         start_mdt 2 || error "MDT1 start fail"
3542
3543         mount_client $MOUNT || error "mount client fails"
3544
3545         mkdir -p $DIR/$tdir || error "create dir fail"
3546
3547         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
3548                                         error "create remote dir fail"
3549
3550         rm -rf $DIR/$tdir || error "delete dir fail"
3551
3552         cleanup || return $?
3553 }
3554 run_test 70b "start OST, MDT1, MDT0"
3555
3556 test_70c() {
3557         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
3558         local MDTIDX=1
3559
3560         start_mdt 1 || error "MDT0 start fail"
3561         start_mdt 2 || error "MDT1 start fail"
3562         start_ost || error "OST0 start fail"
3563
3564         mount_client $MOUNT || error "mount client fails"
3565         stop_mdt 1 || error "MDT1 start fail"
3566
3567         local mdc_for_mdt1=$($LCTL dl | grep MDT0000-mdc | awk '{print $4}')
3568         echo "deactivate $mdc_for_mdt1"
3569         $LCTL --device $mdc_for_mdt1 deactivate || return 1
3570
3571         mkdir -p $DIR/$tdir && error "mkdir succeed"
3572
3573         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir &&
3574                                         error "create remote dir succeed"
3575
3576         cleanup || return $?
3577 }
3578 run_test 70c "stop MDT0, mkdir fail, create remote dir fail"
3579
3580 test_70d() {
3581         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
3582         local MDTIDX=1
3583
3584         start_mdt 1 || error "MDT0 start fail"
3585         start_mdt 2 || error "MDT1 start fail"
3586         start_ost || error "OST0 start fail"
3587
3588         mount_client $MOUNT || error "mount client fails"
3589
3590         stop_mdt 2 || error "MDT1 start fail"
3591
3592         local mdc_for_mdt2=$($LCTL dl | grep MDT0001-mdc |
3593                              awk '{print $4}')
3594         echo "deactivate $mdc_for_mdt2"
3595         $LCTL --device $mdc_for_mdt2 deactivate ||
3596                         error "set $mdc_for_mdt2 deactivate failed"
3597
3598         mkdir -p $DIR/$tdir || error "mkdir fail"
3599         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir &&
3600                         error "create remote dir succeed"
3601
3602         rm -rf $DIR/$tdir || error "delete dir fail"
3603
3604         cleanup || return $?
3605 }
3606 run_test 70d "stop MDT1, mkdir succeed, create remote dir fail"
3607
3608 test_71a() {
3609         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
3610         if combined_mgs_mds; then
3611                 skip "needs separate MGS/MDT" && return
3612         fi
3613         local MDTIDX=1
3614
3615         start_mdt 1 || error "MDT0 start fail"
3616         start_ost || error "OST0 start fail"
3617         start_mdt 2 || error "MDT1 start fail"
3618         start_ost2 || error "OST1 start fail"
3619
3620         mount_client $MOUNT || error "mount client fails"
3621
3622         mkdir -p $DIR/$tdir || error "mkdir fail"
3623         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
3624                         error "create remote dir succeed"
3625
3626         mcreate $DIR/$tdir/remote_dir/$tfile || error "create file failed"
3627         rm -rf $DIR/$tdir || error "delete dir fail"
3628
3629         umount_client $MOUNT
3630         stop_mdt 1 || error "MDT0 stop fail"
3631         stop_mdt 2 || error "MDT1 stop fail"
3632         stop_ost || error "OST0 stop fail"
3633         stop_ost2 || error "OST1 stop fail"
3634 }
3635 run_test 71a "start MDT0 OST0, MDT1, OST1"
3636
3637 test_71b() {
3638         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
3639         if combined_mgs_mds; then
3640                 skip "needs separate MGS/MDT" && return
3641         fi
3642         local MDTIDX=1
3643
3644         start_mdt 2 || error "MDT1 start fail"
3645         start_ost || error "OST0 start fail"
3646         start_mdt 1 || error "MDT0 start fail"
3647         start_ost2 || error "OST1 start fail"
3648
3649         mount_client $MOUNT || error "mount client fails"
3650
3651         mkdir -p $DIR/$tdir || error "mkdir fail"
3652         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
3653                         error "create remote dir succeed"
3654
3655         mcreate $DIR/$tdir/remote_dir/$tfile || error "create file failed"
3656         rm -rf $DIR/$tdir || error "delete dir fail"
3657
3658         umount_client $MOUNT
3659         stop_mdt 1 || error "MDT0 stop fail"
3660         stop_mdt 2 || error "MDT1 stop fail"
3661         stop_ost || error "OST0 stop fail"
3662         stop_ost2 || error "OST1 stop fail"
3663 }
3664 run_test 71b "start MDT1, OST0, MDT0, OST1"
3665
3666 test_71c() {
3667         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
3668         if combined_mgs_mds; then
3669                 skip "needs separate MGS/MDT" && return
3670         fi
3671         local MDTIDX=1
3672
3673         start_ost || error "OST0 start fail"
3674         start_ost2 || error "OST1 start fail"
3675         start_mdt 2 || error "MDT1 start fail"
3676         start_mdt 1 || error "MDT0 start fail"
3677
3678         mount_client $MOUNT || error "mount client fails"
3679
3680         mkdir -p $DIR/$tdir || error "mkdir fail"
3681         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
3682                         error "create remote dir succeed"
3683
3684         mcreate $DIR/$tdir/remote_dir/$tfile || error "create file failed"
3685         rm -rf $DIR/$tdir || error "delete dir fail"
3686
3687         umount_client $MOUNT
3688         stop_mdt 1 || error "MDT0 stop fail"
3689         stop_mdt 2 || error "MDT1 stop fail"
3690         stop_ost || error "OST0 stop fail"
3691         stop_ost2 || error "OST1 stop fail"
3692
3693 }
3694 run_test 71c "start OST0, OST1, MDT1, MDT0"
3695
3696 test_71d() {
3697         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
3698         if combined_mgs_mds; then
3699                 skip "needs separate MGS/MDT" && return
3700         fi
3701         local MDTIDX=1
3702
3703         start_ost || error "OST0 start fail"
3704         start_mdt 2 || error "MDT0 start fail"
3705         start_mdt 1 || error "MDT0 start fail"
3706         start_ost2 || error "OST1 start fail"
3707
3708         mount_client $MOUNT || error "mount client fails"
3709
3710         mkdir -p $DIR/$tdir || error "mkdir fail"
3711         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
3712                         error "create remote dir succeed"
3713
3714         mcreate $DIR/$tdir/remote_dir/$tfile || error "create file failed"
3715         rm -rf $DIR/$tdir || error "delete dir fail"
3716
3717         umount_client $MOUNT
3718         stop_mdt 1 || error "MDT0 stop fail"
3719         stop_mdt 2 || error "MDT1 stop fail"
3720         stop_ost || error "OST0 stop fail"
3721         stop_ost2 || error "OST1 stop fail"
3722
3723 }
3724 run_test 71d "start OST0, MDT1, MDT0, OST1"
3725
3726 test_71e() {
3727         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
3728         if combined_mgs_mds; then
3729                 skip "needs separate MGS/MDT" && return
3730         fi
3731         local MDTIDX=1
3732
3733         start_ost || error "OST0 start fail"
3734         start_mdt 2 || error "MDT1 start fail"
3735         start_ost2 || error "OST1 start fail"
3736         start_mdt 1 || error "MDT0 start fail"
3737
3738         mount_client $MOUNT || error "mount client fails"
3739
3740         mkdir -p $DIR/$tdir || error "mkdir fail"
3741         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
3742                         error "create remote dir succeed"
3743
3744         mcreate $DIR/$tdir/remote_dir/$tfile || error "create file failed"
3745         rm -rf $DIR/$tdir || error "delete dir fail"
3746
3747         umount_client $MOUNT
3748         stop_mdt 1 || error "MDT0 stop fail"
3749         stop_mdt 2 || error "MDT1 stop fail"
3750         stop_ost || error "OST0 stop fail"
3751         stop_ost2 || error "OST1 stop fail"
3752
3753 }
3754 run_test 71e "start OST0, MDT1, OST1, MDT0"
3755
3756 if ! combined_mgs_mds ; then
3757         stop mgs
3758 fi
3759
3760 cleanup_gss
3761
3762 complete $SECONDS
3763 exit_status