Whamcloud - gitweb
f8c5623603722d9e56a7fd3e3bbb70128e21ed34
[fs/lustre-release.git] / lustre / tests / conf-sanity.sh
1 #!/bin/bash
2
3 set -e
4
5 ONLY=${ONLY:-"$*"}
6
7 # bug number for skipped test:  LU-8972
8 ALWAYS_EXCEPT="$CONF_SANITY_EXCEPT 101"
9 # UPDATE THE COMMENT ABOVE WITH BUG NUMBERS WHEN CHANGING ALWAYS_EXCEPT!
10
11 is_sles11()                                             # LU-2181
12 {
13         if [ -r /etc/SuSE-release ]
14         then
15                 local vers=$(grep VERSION /etc/SuSE-release | awk '{print $3}')
16                 local patchlev=$(grep PATCHLEVEL /etc/SuSE-release |
17                         awk '{ print $3 }')
18                 if [ $vers -eq 11 ] && [ $patchlev -eq 2 ]
19                 then
20                         return 0
21                 fi
22         fi
23         return 1
24 }
25
26 if is_sles11; then                                      # LU-2181
27         ALWAYS_EXCEPT="$ALWAYS_EXCEPT 23a 34b"
28 fi
29
30 if [ "$FAILURE_MODE" = "HARD" ]; then
31         CONFIG_EXCEPTIONS="24a " &&
32         echo "Except the tests: $CONFIG_EXCEPTIONS for " \
33              "FAILURE_MODE=$FAILURE_MODE, b=23573" &&
34                 ALWAYS_EXCEPT="$ALWAYS_EXCEPT $CONFIG_EXCEPTIONS"
35 fi
36
37 # bug number for skipped test:
38 # a tool to create lustre filesystem images
39 ALWAYS_EXCEPT="32newtarball $ALWAYS_EXCEPT"
40
41 SRCDIR=$(dirname $0)
42 PATH=$PWD/$SRCDIR:$SRCDIR:$SRCDIR/../utils:$PATH
43
44 PTLDEBUG=${PTLDEBUG:--1}
45 SAVE_PWD=$PWD
46 LUSTRE=${LUSTRE:-$(dirname $0)/..}
47 RLUSTRE=${RLUSTRE:-$LUSTRE}
48 export MULTIOP=${MULTIOP:-multiop}
49
50 . $LUSTRE/tests/test-framework.sh
51 init_test_env $@
52 . ${CONFIG:=$LUSTRE/tests/cfg/$NAME.sh}
53
54 # use small MDS + OST size to speed formatting time
55 # do not use too small MDSSIZE/OSTSIZE, which affect the default journal size
56 # STORED_MDSSIZE is used in test_18
57 STORED_MDSSIZE=$MDSSIZE
58 STORED_OSTSIZE=$OSTSIZE
59 MDSSIZE=200000
60 OSTSIZE=200000
61
62 fs2mds_HOST=$mds_HOST
63 fs2ost_HOST=$ost_HOST
64 fs3ost_HOST=$ost_HOST
65
66 MDSDEV1_2=$fs2mds_DEV
67 OSTDEV1_2=$fs2ost_DEV
68 OSTDEV2_2=$fs3ost_DEV
69
70 if ! combined_mgs_mds; then
71         # bug number for skipped test: 23954 LU-9860 LU-9860 LU-9860 LU-9860
72         ALWAYS_EXCEPT="$ALWAYS_EXCEPT  24b   33a     43b     53b     54b"
73         # bug number for skipped test: LU-9875 LU-9879 LU-9879 LU-9879 LU-9879
74         ALWAYS_EXCEPT="$ALWAYS_EXCEPT  70e     80      84      87      100"
75         # bug number for skipped test: LU-8110 LU-9400 LU-9879 LU-9879 LU-9879
76         ALWAYS_EXCEPT="$ALWAYS_EXCEPT  102     103     104     105     107"
77 fi
78
79 # pass "-E lazy_itable_init" to mke2fs to speed up the formatting time
80 if [[ "$LDISKFS_MKFS_OPTS" != *lazy_itable_init* ]]; then
81         LDISKFS_MKFS_OPTS=$(csa_add "$LDISKFS_MKFS_OPTS" -E lazy_itable_init)
82 fi
83
84 [ $(facet_fstype $SINGLEMDS) = "zfs" ] &&
85 # bug number for skipped test:
86         ALWAYS_EXCEPT="$ALWAYS_EXCEPT"
87 # UPDATE THE COMMENT ABOVE WITH BUG NUMBERS WHEN CHANGING ALWAYS_EXCEPT!
88
89 init_logging
90
91 #
92 require_dsh_mds || exit 0
93 require_dsh_ost || exit 0
94
95 #                                  8  22   (min)"
96 [ "$SLOW" = "no" ] && EXCEPT_SLOW="45 69"
97
98 assert_DIR
99
100 gen_config() {
101         # The MGS must be started before the OSTs for a new fs, so start
102         # and stop to generate the startup logs.
103         start_mds
104         start_ost
105         wait_osc_import_state mds ost FULL
106         stop_ost
107         stop_mds
108 }
109
110 reformat_and_config() {
111         reformat
112         if ! combined_mgs_mds ; then
113                 start_mgs
114         fi
115         gen_config
116 }
117
118 writeconf_or_reformat() {
119         # There are at most 2 OSTs for write_conf test
120         # who knows if/where $TUNEFS is installed?
121         # Better reformat if it fails...
122         writeconf_all $MDSCOUNT 2 ||
123                 { echo "tunefs failed, reformatting instead" &&
124                   reformat_and_config && return 0; }
125         return 0
126 }
127
128 reformat() {
129         formatall
130 }
131
132 start_mgs () {
133         echo "start mgs"
134         start mgs $(mgsdevname) $MGS_MOUNT_OPTS
135 }
136
137 start_mdt() {
138         local num=$1
139         local facet=mds$num
140         local dev=$(mdsdevname $num)
141         shift 1
142
143         echo "start mds service on `facet_active_host $facet`"
144         start $facet ${dev} $MDS_MOUNT_OPTS $@ || return 94
145 }
146
147 stop_mdt() {
148         local num=$1
149         local facet=mds$num
150         local dev=$(mdsdevname $num)
151         shift 1
152
153         echo "stop mds service on `facet_active_host $facet`"
154         # These tests all use non-failover stop
155         stop $facet -f || return 97
156 }
157
158 start_mds() {
159         local num
160
161         for num in $(seq $MDSCOUNT); do
162                 start_mdt $num $@ || return 94
163         done
164 }
165
166 start_mgsmds() {
167         if ! combined_mgs_mds ; then
168                 start_mgs
169         fi
170         start_mds $@
171 }
172
173 stop_mds() {
174         local num
175         for num in $(seq $MDSCOUNT); do
176                 stop_mdt $num || return 97
177         done
178 }
179
180 stop_mgs() {
181        echo "stop mgs service on `facet_active_host mgs`"
182        # These tests all use non-failover stop
183        stop mgs -f  || return 97
184 }
185
186 start_ost() {
187         echo "start ost1 service on `facet_active_host ost1`"
188         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS $@ || return 95
189 }
190
191 stop_ost() {
192         echo "stop ost1 service on `facet_active_host ost1`"
193         # These tests all use non-failover stop
194         stop ost1 -f || return 98
195 }
196
197 start_ost2() {
198         echo "start ost2 service on `facet_active_host ost2`"
199         start ost2 $(ostdevname 2) $OST_MOUNT_OPTS $@ || return 92
200 }
201
202 stop_ost2() {
203         echo "stop ost2 service on `facet_active_host ost2`"
204         # These tests all use non-failover stop
205         stop ost2 -f || return 93
206 }
207
208 mount_client() {
209         local MOUNTPATH=$1
210         echo "mount $FSNAME on ${MOUNTPATH}....."
211         zconf_mount $(hostname) $MOUNTPATH || return 96
212 }
213
214 remount_client() {
215         local mountopt="remount,$1"
216         local MOUNTPATH=$2
217         echo "remount '$1' lustre on ${MOUNTPATH}....."
218         zconf_mount $(hostname) $MOUNTPATH "$mountopt" || return 96
219 }
220
221 umount_client() {
222         local mountpath=$1
223         shift
224         echo "umount lustre on $mountpath....."
225         zconf_umount $HOSTNAME $mountpath $@ || return 97
226 }
227
228 manual_umount_client(){
229         local rc
230         local FORCE=$1
231         echo "manual umount lustre on ${MOUNT}...."
232         do_facet client "umount ${FORCE} $MOUNT"
233         rc=$?
234         return $rc
235 }
236
237 setup() {
238         start_mds || error "MDT start failed"
239         start_ost || error "Unable to start OST1"
240         mount_client $MOUNT || error "client start failed"
241         client_up || error "client_up failed"
242 }
243
244 setup_noconfig() {
245         start_mgsmds
246         start_ost
247         mount_client $MOUNT
248 }
249
250 unload_modules_conf () {
251         if combined_mgs_mds || ! local_mode; then
252                 unload_modules || return 1
253         fi
254 }
255
256 cleanup_nocli() {
257         stop_ost || return 202
258         stop_mds || return 201
259         unload_modules_conf || return 203
260 }
261
262 cleanup() {
263         local force=""
264         [ "x$1" != "x" ] && force='-f'
265         umount_client $MOUNT $force|| return 200
266         cleanup_nocli || return $?
267 }
268
269 cleanup_fs2() {
270         trap 0
271         echo "umount $MOUNT2 ..."
272         umount $MOUNT2 || true
273         echo "stopping fs2mds ..."
274         stop fs2mds -f || true
275         echo "stopping fs2ost ..."
276         stop fs2ost -f || true
277 }
278
279 check_mount() {
280         do_facet client "cp /etc/passwd $DIR/a" || return 71
281         do_facet client "rm $DIR/a" || return 72
282         # make sure lustre is actually mounted (touch will block,
283         # but grep won't, so do it after)
284         do_facet client "grep $MOUNT' ' /proc/mounts > /dev/null" || return 73
285         echo "setup single mount lustre success"
286 }
287
288 check_mount2() {
289         do_facet client "touch $DIR/a" || return 71
290         do_facet client "rm $DIR/a" || return 72
291         do_facet client "touch $DIR2/a" || return 73
292         do_facet client "rm $DIR2/a" || return 74
293         echo "setup double mount lustre success"
294 }
295
296 build_test_filter
297
298 if [ "$ONLY" == "setup" ]; then
299         setup
300         exit
301 fi
302
303 if [ "$ONLY" == "cleanup" ]; then
304         cleanup
305         exit
306 fi
307
308 init_gss
309
310 #create single point mountpoint
311
312 reformat_and_config
313
314 test_0() {
315         setup
316         check_mount || error "check_mount failed"
317         cleanup || error "cleanup failed with $?"
318 }
319 run_test 0 "single mount setup"
320
321 test_1() {
322         start_mds || error "MDS start failed"
323         start_ost || error "unable to start OST"
324         echo "start ost second time..."
325         start_ost && error "2nd OST start should fail"
326         mount_client $MOUNT || error "client start failed"
327         check_mount || error "check_mount failed"
328         cleanup || error "cleanup failed with $?"
329 }
330 run_test 1 "start up ost twice (should return errors)"
331
332 test_2() {
333         start_mds || error "MDT start failed"
334         echo "start mds second time.."
335         start_mds && error "2nd MDT start should fail"
336         start_ost || error "OST start failed"
337         mount_client $MOUNT || error "mount_client failed to start client"
338         check_mount || error "check_mount failed"
339         cleanup || error "cleanup failed with $?"
340 }
341 run_test 2 "start up mds twice (should return err)"
342
343 test_3() {
344         setup
345         #mount.lustre returns an error if already in mtab
346         mount_client $MOUNT && error "2nd client mount should fail"
347         check_mount || error "check_mount failed"
348         cleanup || error "cleanup failed with $?"
349 }
350 run_test 3 "mount client twice (should return err)"
351
352 test_4() {
353         setup
354         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
355         stop_ost || error "Unable to stop OST1"
356         umount_client $MOUNT -f || error “unmount $MOUNT failed”
357         cleanup_nocli
358         eno=$?
359         # ok for ost to fail shutdown
360         if [ 202 -ne $eno ] && [ 0 -ne $eno ]; then
361                 error "cleanup failed with $?"
362         fi
363 }
364 run_test 4 "force cleanup ost, then cleanup"
365
366 test_5a() {     # was test_5
367         setup
368         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
369         fuser -m -v $MOUNT && echo "$MOUNT is in use by user space process."
370
371         stop_mds || error "Unable to stop MDS"
372
373         # cleanup may return an error from the failed
374         # disconnects; for now I'll consider this successful
375         # if all the modules have unloaded.
376         $UMOUNT -f $MOUNT &
377         UMOUNT_PID=$!
378         sleep 6
379         echo "killing umount"
380         kill -TERM $UMOUNT_PID
381         echo "waiting for umount to finish"
382         wait $UMOUNT_PID
383         if grep " $MOUNT " /proc/mounts; then
384                 echo "test 5: /proc/mounts after failed umount"
385                 umount -f $MOUNT &
386                 UMOUNT_PID=$!
387                 sleep 2
388                 echo "killing umount"
389                 kill -TERM $UMOUNT_PID
390                 echo "waiting for umount to finish"
391                 wait $UMOUNT_PID
392                 grep " $MOUNT " /proc/mounts &&
393                         error "/proc/mounts after second umount"
394         fi
395
396         # manual_mount_client may fail due to umount succeeding above
397         manual_umount_client
398         # stop_mds is a no-op here, and should not fail
399         cleanup_nocli || error "cleanup_nocli failed with $?"
400         # df may have lingering entry
401         manual_umount_client
402         # mtab may have lingering entry
403         local WAIT=0
404         local MAX_WAIT=20
405         local sleep=1
406         while [ "$WAIT" -ne "$MAX_WAIT" ]; do
407                 sleep $sleep
408                 grep -q $MOUNT" " /etc/mtab || break
409                 echo "Waiting /etc/mtab updated ... "
410                 WAIT=$(( WAIT + sleep))
411         done
412         [ "$WAIT" -eq "$MAX_WAIT" ] &&
413                 error "/etc/mtab is not updated in $WAIT secs"
414         echo "/etc/mtab updated in $WAIT secs"
415 }
416 run_test 5a "force cleanup mds, then cleanup"
417
418 cleanup_5b () {
419         trap 0
420         start_mgs
421 }
422
423 test_5b() {
424         grep " $MOUNT " /etc/mtab &&
425                 error false "unexpected entry in mtab before mount" && return 10
426
427         start_ost || error "OST start failed"
428         if ! combined_mgs_mds ; then
429                 trap cleanup_5b EXIT ERR
430                 start_mds || error "MDS start failed"
431                 stop mgs
432         fi
433
434         mount_client $MOUNT && error "mount_client $MOUNT should fail"
435         grep " $MOUNT " /etc/mtab &&
436                 error "$MOUNT entry in mtab after failed mount"
437         umount_client $MOUNT
438         # stop_mds is a no-op here, and should not fail
439         cleanup_nocli || error "cleanup_nocli failed with $?"
440         if ! combined_mgs_mds ; then
441                 cleanup_5b
442         fi
443 }
444 run_test 5b "Try to start a client with no MGS (should return errs)"
445
446 test_5c() {
447         grep " $MOUNT " /etc/mtab &&
448                 error false "unexpected entry in mtab before mount" && return 10
449
450         start_mds || error "MDS start failed"
451         start_ost || error "OST start failed"
452         local oldfs="${FSNAME}"
453         FSNAME="wrong.${FSNAME}"
454         mount_client $MOUNT || :
455         FSNAME=${oldfs}
456         grep " $MOUNT " /etc/mtab &&
457                 error "$MOUNT entry in mtab after failed mount"
458         umount_client $MOUNT
459         cleanup_nocli || error "cleanup_nocli failed with $?"
460 }
461 run_test 5c "cleanup after failed mount (bug 2712) (should return errs)"
462
463 test_5d() {
464         grep " $MOUNT " /etc/mtab &&
465                 error "unexpected entry in mtab before mount"
466
467         start_ost || error "OST start failed"
468         start_mds || error "MDS start failed"
469         stop_ost -f || error "Unable to stop OST1"
470         mount_client $MOUNT || error "mount_client $MOUNT failed"
471         umount_client $MOUNT -f || error "umount_client $MOUNT failed"
472         cleanup_nocli || error "cleanup_nocli failed with $?"
473         ! grep " $MOUNT " /etc/mtab ||
474                 error "$MOUNT entry in mtab after unmount"
475 }
476 run_test 5d "mount with ost down"
477
478 test_5e() {
479         grep " $MOUNT " /etc/mtab &&
480                 error false "unexpected entry in mtab before mount" && return 10
481
482         start_mds || error "MDS start failed"
483         start_ost || error "OST start failed"
484
485         #define OBD_FAIL_PTLRPC_DELAY_SEND       0x506
486         do_facet client "$LCTL set_param fail_loc=0x80000506"
487         mount_client $MOUNT || echo "mount failed (not fatal)"
488         cleanup || error "cleanup failed with $?"
489         grep " $MOUNT " /etc/mtab &&
490                 error "$MOUNT entry in mtab after unmount"
491         pass
492 }
493 run_test 5e "delayed connect, don't crash (bug 10268)"
494
495 test_5f() {
496         if combined_mgs_mds ; then
497                 skip "needs separate mgs and mds"
498                 return 0
499         fi
500
501         grep " $MOUNT " /etc/mtab &&
502                 error false "unexpected entry in mtab before mount" && return 10
503
504         local rc=0
505         start_ost || error "OST start failed"
506         mount_client $MOUNT &
507         local pid=$!
508         echo client_mount pid is $pid
509
510         sleep 5
511
512         if ! ps -f -p $pid >/dev/null; then
513                 wait $pid
514                 rc=$?
515                 grep " $MOUNT " /etc/mtab && echo "test 5f: mtab after mount"
516                 error "mount returns $rc, expected to hang"
517                 rc=11
518                 cleanup || error "cleanup failed with $?"
519                 return $rc
520         fi
521
522         # start mds
523         start_mds || error "start MDS failed"
524
525         # mount should succeed after start mds
526         wait $pid
527         grep " $MOUNT " /etc/mtab && echo "test 5f: mtab after mount"
528         cleanup || error "final call to cleanup failed with rc $?"
529 }
530 run_test 5f "mds down, cleanup after failed mount (bug 2712)"
531
532 test_5g() {
533         modprobe lustre
534         [ $(lustre_version_code client) -lt $(version_code 2.9.53) ] &&
535                 { skip "automount of debugfs missing before 2.9.53" && return 0; }
536         umount /sys/kernel/debug
537         $LCTL get_param -n devices | egrep -v "error" && \
538                 error "lctl can't access debugfs data"
539         grep " debugfs " /etc/mtab || error "debugfs failed to remount"
540 }
541 run_test 5g "handle missing debugfs"
542
543 test_6() {
544         setup
545         manual_umount_client
546         mount_client $MOUNT || error "mount_client $MOUNT failed"
547         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
548         cleanup || error "cleanup failed with rc $?"
549 }
550 run_test 6 "manual umount, then mount again"
551
552 test_7() {
553         setup
554         manual_umount_client
555         cleanup_nocli || error "cleanup_nocli failed with $?"
556 }
557 run_test 7 "manual umount, then cleanup"
558
559 test_8() {
560         setup
561         mount_client $MOUNT2 || error "mount_client $MOUNT2 failed"
562         check_mount2 || error "check_mount2 failed"
563         umount_client $MOUNT2 || error "umount_client $MOUNT2 failed"
564         cleanup || error "cleanup failed with rc $?"
565 }
566 run_test 8 "double mount setup"
567
568 test_9() {
569         start_ost || error "OST start failed"
570
571         do_facet ost1 $LCTL set_param debug=\'inode trace\' ||
572                 error "do_facet ost1 set_param inode trace failed."
573         do_facet ost1 $LCTL set_param subsystem_debug=\'mds ost\' ||
574                 error "do_facet ost1 set_param debug mds ost failed."
575
576         CHECK_PTLDEBUG="`do_facet ost1 $LCTL get_param -n debug`"
577         if [ "$CHECK_PTLDEBUG" ] && { \
578            [ "$CHECK_PTLDEBUG" = "trace inode warning error emerg console" ] ||
579            [ "$CHECK_PTLDEBUG" = "trace inode" ]; }; then
580                 echo "lnet.debug success"
581         else
582                 error "lnet.debug: want 'trace inode', have '$CHECK_PTLDEBUG'"
583         fi
584         CHECK_SUBSYS="`do_facet ost1 $LCTL get_param -n subsystem_debug`"
585         if [ "$CHECK_SUBSYS" ] && [ "$CHECK_SUBSYS" = "mds ost" ]; then
586                 echo "lnet.subsystem_debug success"
587         else
588                 error "lnet.subsystem_debug: want 'mds ost' got '$CHECK_SUBSYS'"
589         fi
590         stop_ost || error "Unable to stop OST1"
591 }
592 run_test 9 "test ptldebug and subsystem for mkfs"
593
594 is_blkdev () {
595         local facet=$1
596         local dev=$2
597         local size=${3:-""}
598
599         local rc=0
600         do_facet $facet "test -b $dev" || rc=1
601         if [[ "$size" ]]; then
602                 local in=$(do_facet $facet "dd if=$dev of=/dev/null bs=1k \
603                            count=1 skip=$size 2>&1" |
604                         awk '($3 == "in") { print $1 }')
605                 [[ $in  = "1+0" ]] || rc=1
606         fi
607         return $rc
608 }
609
610 #
611 # Test 16 was to "verify that lustre will correct the mode of OBJECTS".
612 # But with new MDS stack we don't care about the mode of local objects
613 # anymore, so this test is removed. See bug 22944 for more details.
614 #
615
616 test_17() {
617         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
618                 skip "ldiskfs only test"
619                 return
620         fi
621
622         setup
623         check_mount || error "check_mount failed"
624         cleanup || error "cleanup failed with rc $?"
625
626         echo "Remove mds config log"
627         if ! combined_mgs_mds ; then
628                 stop mgs
629         fi
630
631         do_facet mgs "$DEBUGFS -w -R 'unlink CONFIGS/$FSNAME-MDT0000' \
632                       $(mgsdevname) || return \$?" ||
633                 error "do_facet mgs failed with $?"
634
635         if ! combined_mgs_mds ; then
636                 start_mgs
637         fi
638
639         start_ost || error "OST start failed"
640         start_mds && error "MDS start succeeded, but should fail"
641         reformat_and_config
642 }
643 run_test 17 "Verify failed mds_postsetup won't fail assertion (2936) (should return errs)"
644
645 test_18() {
646         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
647                 skip "ldiskfs only test"
648                 return
649         fi
650
651         local MDSDEV=$(mdsdevname ${SINGLEMDS//mds/})
652
653         local MIN=2000000
654
655         local OK=
656         # check if current MDSSIZE is large enough
657         [ $MDSSIZE -ge $MIN ] && OK=1 && myMDSSIZE=$MDSSIZE &&
658                 log "use MDSSIZE=$MDSSIZE"
659
660         # check if the global config has a large enough MDSSIZE
661         [ -z "$OK" -a ! -z "$STORED_MDSSIZE" ] &&
662                 [ $STORED_MDSSIZE -ge $MIN ] &&
663                 OK=1 && myMDSSIZE=$STORED_MDSSIZE &&
664                 log "use STORED_MDSSIZE=$STORED_MDSSIZE"
665
666         # check if the block device is large enough
667         is_blkdev $SINGLEMDS $MDSDEV $MIN
668         local large_enough=$?
669         if [ -n "$OK" ]; then
670                 [ $large_enough -ne 0 ] && OK=""
671         else
672                 [ $large_enough -eq 0 ] && OK=1 && myMDSSIZE=$MIN &&
673                         log "use device $MDSDEV with MIN=$MIN"
674         fi
675
676         # check if a loopback device has enough space for fs metadata (5%)
677
678         if [ -z "$OK" ]; then
679                 local SPACE=$(do_facet $SINGLEMDS "[ -f $MDSDEV -o ! \
680                               -e $MDSDEV ] && df -P \\\$(dirname $MDSDEV)" |
681                         awk '($1 != "Filesystem") { print $4 }')
682                 ! [ -z "$SPACE" ] && [ $SPACE -gt $((MIN / 20)) ] &&
683                         OK=1 && myMDSSIZE=$MIN &&
684                         log "use file $MDSDEV with MIN=$MIN"
685         fi
686
687         [ -z "$OK" ] && skip_env "$MDSDEV too small for ${MIN}kB MDS" && return
688
689         echo "mount mds with large journal..."
690
691         local OLD_MDSSIZE=$MDSSIZE
692         MDSSIZE=$myMDSSIZE
693
694         reformat_and_config
695         echo "mount lustre system..."
696         setup
697         check_mount || error "check_mount failed"
698
699         echo "check journal size..."
700         local FOUNDSIZE=$(do_facet $SINGLEMDS "$DEBUGFS -c -R 'stat <8>' $MDSDEV" | awk '/Size: / { print $NF; exit;}')
701         if [ $FOUNDSIZE -gt $((32 * 1024 * 1024)) ]; then
702                 log "Success: mkfs creates large journals. Size: $((FOUNDSIZE >> 20))M"
703         else
704                 error "expected journal size > 32M, found $((FOUNDSIZE >> 20))M"
705         fi
706
707         cleanup || error "cleanup failed with rc $?"
708
709         MDSSIZE=$OLD_MDSSIZE
710         reformat_and_config
711 }
712 run_test 18 "check mkfs creates large journals"
713
714 test_19a() {
715         start_mds || error "MDS start failed"
716         stop_mds || error "Unable to stop MDS"
717 }
718 run_test 19a "start/stop MDS without OSTs"
719
720 test_19b() {
721         start_ost || error "Unable to start OST1"
722         stop_ost -f || error "Unable to stop OST1"
723 }
724 run_test 19b "start/stop OSTs without MDS"
725
726 test_20() {
727         # first format the ost/mdt
728         start_mds || error "MDS start failed"
729         start_ost || error "Unable to start OST1"
730         mount_client $MOUNT || error "mount_client $MOUNT failed"
731         check_mount || error "check_mount failed"
732         rm -f $DIR/$tfile || error "remove $DIR/$tfile failed."
733         remount_client ro $MOUNT || error "remount_client with ro failed"
734         touch $DIR/$tfile && error "$DIR/$tfile created incorrectly"
735         [ -e $DIR/$tfile ] && error "$DIR/$tfile exists incorrectly"
736         remount_client rw $MOUNT || error "remount_client with rw failed"
737         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
738         MCNT=$(grep -c $MOUNT /etc/mtab)
739         [ "$MCNT" -ne 1 ] && error "$MOUNT in /etc/mtab $MCNT times"
740         umount_client $MOUNT
741         stop_mds || error "Unable to stop MDS"
742         stop_ost || error "Unable to stop OST1"
743 }
744 run_test 20 "remount ro,rw mounts work and doesn't break /etc/mtab"
745
746 test_21a() {
747         start_mds || error "MDS start failed"
748         start_ost || error "unable to start OST1"
749         wait_osc_import_state mds ost FULL
750         stop_ost || error "unable to stop OST1"
751         stop_mds || error "unable to stop MDS"
752 }
753 run_test 21a "start mds before ost, stop ost first"
754
755 test_21b() {
756         start_ost || error "unable to start OST1"
757         start_mds || error "MDS start failed"
758         wait_osc_import_state mds ost FULL
759         stop_mds || error "unable to stop MDS"
760         stop_ost || error "unable to stop OST1"
761 }
762 run_test 21b "start ost before mds, stop mds first"
763
764 test_21c() {
765         start_ost || error "Unable to start OST1"
766         start_mds || error "MDS start failed"
767         start_ost2 || error "Unable to start OST2"
768         wait_osc_import_state mds ost2 FULL
769         stop_ost || error "Unable to stop OST1"
770         stop_ost2 || error "Unable to stop OST2"
771         stop_mds || error "Unable to stop MDS"
772         #writeconf to remove all ost2 traces for subsequent tests
773         writeconf_or_reformat
774 }
775 run_test 21c "start mds between two osts, stop mds last"
776
777 test_21d() {
778         if combined_mgs_mds ; then
779                 skip "need separate mgs device" && return 0
780         fi
781         stopall
782
783         reformat
784
785         start_mgs || error "unable to start MGS"
786         start_ost || error "unable to start OST1"
787         start_ost2 || error "unable to start OST2"
788         start_mds || error "MDS start failed"
789         wait_osc_import_state mds ost2 FULL
790
791         stop_ost || error "Unable to stop OST1"
792         stop_ost2 || error "Unable to stop OST2"
793         stop_mds || error "Unable to stop MDS"
794         stop_mgs
795         #writeconf to remove all ost2 traces for subsequent tests
796         writeconf_or_reformat
797         start_mgs || error "unable to start MGS"
798 }
799 run_test 21d "start mgs then ost and then mds"
800
801 cleanup_21e() {
802         MGSNID="$saved_mgsnid"
803         cleanup_fs2
804         echo "stopping fs2mgs ..."
805         stop $fs2mgs -f || true
806 }
807
808 test_21e() { # LU-5863
809         if [[ -z "$fs3ost_DEV" || -z "$fs2ost_DEV" || -z "$fs2mds_DEV" ]]; then
810                 is_blkdev $SINGLEMDS $(mdsdevname ${SINGLEMDS//mds/}) &&
811                 skip_env "mixed loopback and real device not working" && return
812         fi
813
814         local fs2mdsdev=$(mdsdevname 1_2)
815         local fs2ostdev=$(ostdevname 1_2)
816         local fs3ostdev=$(ostdevname 2_2)
817
818         local fs2mdsvdev=$(mdsvdevname 1_2)
819         local fs2ostvdev=$(ostvdevname 1_2)
820         local fs3ostvdev=$(ostvdevname 2_2)
821
822         # temporarily use fs3ost as fs2mgs
823         local fs2mgs=fs3ost
824         local fs2mgsdev=$fs3ostdev
825         local fs2mgsvdev=$fs3ostvdev
826
827         local fsname=test1234
828
829         add $fs2mgs $(mkfs_opts mgs $fs2mgsdev) --fsname=$fsname \
830                 --reformat $fs2mgsdev $fs2mgsvdev || error "add fs2mgs failed"
831         start $fs2mgs $fs2mgsdev $MGS_MOUNT_OPTS && trap cleanup_21e EXIT INT ||
832                 error "start fs2mgs failed"
833
834         local saved_mgsnid="$MGSNID"
835         MGSNID=$(do_facet $fs2mgs $LCTL list_nids | xargs | tr ' ' ,)
836
837         add fs2mds $(mkfs_opts mds1 $fs2mdsdev $fsname) \
838                 --reformat $fs2mdsdev $fs2mdsvdev || error "add fs2mds failed"
839         add fs2ost $(mkfs_opts ost1 $fs2ostdev $fsname) \
840                 --reformat $fs2ostdev $fs2ostvdev || error "add fs2ost failed"
841
842         start fs2ost $fs2ostdev $OST_MOUNT_OPTS || error "start fs2ost failed"
843         start fs2mds $fs2mdsdev $MDS_MOUNT_OPTS || error "start fs2mds failed"
844
845         mkdir -p $MOUNT2 || error "mkdir $MOUNT2 failed"
846         $MOUNT_CMD $MGSNID:/$fsname $MOUNT2 || error "mount $MOUNT2 failed"
847         DIR=$MOUNT2 MOUNT=$MOUNT2 check_mount || error "check $MOUNT2 failed"
848
849         cleanup_21e
850 }
851 run_test 21e "separate MGS and MDS"
852
853 test_22() {
854         start_mds || error "MDS start failed"
855
856         echo "Client mount with ost in logs, but none running"
857         start_ost || error "unable to start OST1"
858         # wait until mds connected to ost and open client connection
859         wait_osc_import_state mds ost FULL
860         stop_ost || error "unable to stop OST1"
861         mount_client $MOUNT || error "mount_client $MOUNT failed"
862         # check_mount will block trying to contact ost
863         mcreate $DIR/$tfile || error "mcreate $DIR/$tfile failed"
864         rm -f $DIR/$tfile || error "remove $DIR/$tfile failed"
865         umount_client $MOUNT -f
866         pass
867
868         echo "Client mount with a running ost"
869         start_ost || error "unable to start OST1"
870         if $GSS; then
871                 # if gss enabled, wait full time to let connection from
872                 # mds to ost be established, due to the mismatch between
873                 # initial connect timeout and gss context negotiation timeout.
874                 # This perhaps could be remove after AT landed.
875                 echo "sleep $((TIMEOUT + TIMEOUT + TIMEOUT))s"
876                 sleep $((TIMEOUT + TIMEOUT + TIMEOUT))
877         fi
878         mount_client $MOUNT || error "mount_client $MOUNT failed"
879         wait_osc_import_state mds ost FULL
880         wait_osc_import_state client ost FULL
881         check_mount || error "check_mount failed"
882         pass
883
884         cleanup || error "cleanup failed with rc $?"
885 }
886 run_test 22 "start a client before osts (should return errs)"
887
888 test_23a() {    # was test_23
889         setup
890         # fail mds
891         stop $SINGLEMDS || error "failed to stop $SINGLEMDS"
892         # force down client so that recovering mds waits for reconnect
893         local running=$(grep -c $MOUNT /proc/mounts) || true
894         if [ $running -ne 0 ]; then
895                 echo "Stopping client $MOUNT (opts: -f)"
896                 umount -f $MOUNT
897         fi
898
899         # enter recovery on failed mds
900         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
901         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "MDS start failed"
902         # try to start a new client
903         mount_client $MOUNT &
904         sleep 5
905         MOUNT_PID=$(ps -ef | grep "t lustre" | grep -v grep | awk '{print $2}')
906         MOUNT_LUSTRE_PID=$(ps -ef | grep mount.lustre |
907                            grep -v grep | awk '{print $2}')
908         echo mount pid is ${MOUNT_PID}, mount.lustre pid is ${MOUNT_LUSTRE_PID}
909         ps --ppid $MOUNT_PID
910         ps --ppid $MOUNT_LUSTRE_PID
911         echo "waiting for mount to finish"
912         ps -ef | grep mount
913         # "ctrl-c" sends SIGINT but it usually (in script) does not work on child process
914         # SIGTERM works but it does not spread to offspring processses
915         kill -s TERM $MOUNT_PID
916         kill -s TERM $MOUNT_LUSTRE_PID
917         # we can not wait $MOUNT_PID because it is not a child of this shell
918         local PID1
919         local PID2
920         local WAIT=0
921         local MAX_WAIT=30
922         local sleep=1
923         while [ "$WAIT" -lt "$MAX_WAIT" ]; do
924                 sleep $sleep
925                 PID1=$(ps -ef | awk '{print $2}' | grep -w $MOUNT_PID)
926                 PID2=$(ps -ef | awk '{print $2}' | grep -w $MOUNT_LUSTRE_PID)
927                 echo PID1=$PID1
928                 echo PID2=$PID2
929                 [ -z "$PID1" -a -z "$PID2" ] && break
930                 echo "waiting for mount to finish ... "
931                 WAIT=$(( WAIT + sleep))
932         done
933         if [ "$WAIT" -eq "$MAX_WAIT" ]; then
934                 error "MOUNT_PID $MOUNT_PID and "\
935                 "MOUNT_LUSTRE_PID $MOUNT_LUSTRE_PID still not killed in $WAIT secs"
936                 ps -ef | grep mount
937         fi
938         stop_mds || error "stopping MDSes failed"
939         stop_ost || error "stopping OSSes failed"
940 }
941 run_test 23a "interrupt client during recovery mount delay"
942
943 umount_client $MOUNT
944 cleanup_nocli
945
946 test_23b() {    # was test_23
947         start_mds || error "MDS start failed"
948         start_ost || error "Unable to start OST1"
949         # Simulate -EINTR during mount OBD_FAIL_LDLM_CLOSE_THREAD
950         $LCTL set_param fail_loc=0x80000313
951         mount_client $MOUNT
952         cleanup || error "cleanup failed with rc $?"
953 }
954 run_test 23b "Simulate -EINTR during mount"
955
956 test_24a() {
957         local MDSDEV=$(mdsdevname ${SINGLEMDS//mds/})
958
959         if [ -z "$fs2ost_DEV" -o -z "$fs2mds_DEV" ]; then
960                 is_blkdev $SINGLEMDS $MDSDEV &&
961                 skip_env "mixed loopback and real device not working" && return
962         fi
963
964         [ -n "$ost1_HOST" ] && fs2ost_HOST=$ost1_HOST
965
966         local fs2mdsdev=$(mdsdevname 1_2)
967         local fs2ostdev=$(ostdevname 1_2)
968         local fs2mdsvdev=$(mdsvdevname 1_2)
969         local fs2ostvdev=$(ostvdevname 1_2)
970         local cl_user
971
972         # LU-9733 test fsname started with numbers as well
973         local FSNAME2=969362ae
974
975         add fs2mds $(mkfs_opts mds1 ${fs2mdsdev} ) --nomgs --mgsnode=$MGSNID \
976                 --fsname=${FSNAME2} --reformat $fs2mdsdev $fs2mdsvdev || exit 10
977
978         add fs2ost $(mkfs_opts ost1 ${fs2ostdev}) --fsname=${FSNAME2} \
979                 --reformat $fs2ostdev $fs2ostvdev || exit 10
980
981         setup
982         start fs2mds $fs2mdsdev $MDS_MOUNT_OPTS && trap cleanup_fs2 EXIT INT
983         start fs2ost $fs2ostdev $OST_MOUNT_OPTS
984         mkdir -p $MOUNT2 || error "mkdir $MOUNT2 failed"
985         $MOUNT_CMD $MGSNID:/${FSNAME2} $MOUNT2 || error "$MOUNT_CMD failed"
986
987         # LU-9733 test fsname started with numbers
988         cl_user=$(do_facet $SINGLEMDS lctl --device $FSNAME2-MDT0000 \
989                         changelog_register -n) ||
990                                 error "register changelog failed"
991
992         do_facet $SINGLEMDS lctl --device $FSNAME2-MDT0000 \
993                         changelog_deregister $cl_user ||
994                                 error "deregister changelog failed"
995         # 1 still works
996         check_mount || error "check_mount failed"
997         # files written on 1 should not show up on 2
998         cp /etc/passwd $DIR/$tfile
999         sleep 10
1000         [ -e $MOUNT2/$tfile ] && error "File bleed"
1001         # 2 should work
1002         sleep 5
1003         cp /etc/passwd $MOUNT2/$tfile ||
1004                 error "cp /etc/passwd $MOUNT2/$tfile failed"
1005         rm $MOUNT2/$tfile || error "remove $MOUNT2/$tfile failed"
1006         # 2 is actually mounted
1007         grep $MOUNT2' ' /proc/mounts > /dev/null || error "$MOUNT2 not mounted"
1008         # failover
1009         facet_failover fs2mds
1010         facet_failover fs2ost
1011         df
1012         umount_client $MOUNT
1013         # the MDS must remain up until last MDT
1014         stop_mds
1015         MDS=$(do_facet $SINGLEMDS "$LCTL get_param -n devices" |
1016               awk '($3 ~ "mdt" && $4 ~ "MDT") { print $4 }' | head -1)
1017         [ -z "$MDS" ] && error "No MDT"
1018         cleanup_fs2
1019         cleanup_nocli || error "cleanup_nocli failed with rc $?"
1020 }
1021 run_test 24a "Multiple MDTs on a single node"
1022
1023 test_24b() {
1024         local MDSDEV=$(mdsdevname ${SINGLEMDS//mds/})
1025
1026         if [ -z "$fs2mds_DEV" ]; then
1027                 local dev=${SINGLEMDS}_dev
1028                 local MDSDEV=${!dev}
1029                 is_blkdev $SINGLEMDS $MDSDEV &&
1030                 skip_env "mixed loopback and real device not working" && return
1031         fi
1032
1033         local fs2mdsdev=$(mdsdevname 1_2)
1034         local fs2mdsvdev=$(mdsvdevname 1_2)
1035
1036         add fs2mds $(mkfs_opts mds1 ${fs2mdsdev} ) --mgs --fsname=${FSNAME}2 \
1037                 --reformat $fs2mdsdev $fs2mdsvdev || exit 10
1038         setup
1039         start fs2mds $fs2mdsdev $MDS_MOUNT_OPTS &&
1040                 error "start MDS should fail"
1041         stop fs2mds -f
1042         cleanup || error "cleanup failed with rc $?"
1043 }
1044 run_test 24b "Multiple MGSs on a single node (should return err)"
1045
1046 test_25() {
1047         setup
1048         check_mount || error "check_mount failed"
1049         local MODULES=$($LCTL modules | awk '{ print $2 }')
1050         rmmod $MODULES 2>/dev/null || true
1051         cleanup || error "cleanup failed with $?"
1052 }
1053 run_test 25 "Verify modules are referenced"
1054
1055 test_26() {
1056         load_modules
1057         # we need modules before mount for sysctl, so make sure...
1058         do_facet $SINGLEMDS "lsmod | grep -q lustre || modprobe lustre"
1059         #define OBD_FAIL_MDS_FS_SETUP            0x135
1060         do_facet $SINGLEMDS "$LCTL set_param fail_loc=0x80000135"
1061         start_mds && error "MDS started but should not have started"
1062         $LCTL get_param -n devices
1063         DEVS=$($LCTL get_param -n devices | egrep -v MG | wc -l)
1064         [ $DEVS -gt 0 ] && error "number of devices is $DEVS, should be zero"
1065         # start mds to drop writeconf setting
1066         start_mds || error "Unable to start MDS"
1067         stop_mds || error "Unable to stop MDS"
1068         unload_modules_conf || error "unload_modules_conf failed with $?"
1069 }
1070 run_test 26 "MDT startup failure cleans LOV (should return errs)"
1071
1072 test_27a() {
1073         start_ost || error "Unable to start OST1"
1074         start_mds || error "Unable to start MDS"
1075         echo "Requeue thread should have started: "
1076         ps -e | grep ll_cfg_requeue
1077         set_conf_param_and_check ost1                                         \
1078            "$LCTL get_param -n obdfilter.$FSNAME-OST0000.client_cache_seconds" \
1079            "$FSNAME-OST0000.ost.client_cache_seconds" ||
1080                 error "set_conf_param_and_check ost1 failed"
1081         cleanup_nocli || error "cleanup_nocli failed with rc $?"
1082 }
1083 run_test 27a "Reacquire MGS lock if OST started first"
1084
1085 test_27b() {
1086         # FIXME. ~grev
1087         setup
1088         local device=$(do_facet $SINGLEMDS "$LCTL get_param -n devices" |
1089                         awk '($3 ~ "mdt" && $4 ~ "MDT0000") { print $4 }')
1090
1091         facet_failover $SINGLEMDS
1092         set_conf_param_and_check $SINGLEMDS                             \
1093                 "$LCTL get_param -n mdt.$device.identity_acquire_expire" \
1094                 "$device.mdt.identity_acquire_expire" ||
1095                 error "set_conf_param_and_check $SINGLEMDS failed"
1096         set_conf_param_and_check client                          \
1097                 "$LCTL get_param -n mdc.$device-mdc-*.max_rpcs_in_flight"\
1098                 "$device.mdc.max_rpcs_in_flight" ||
1099                 error "set_conf_param_and_check client failed"
1100         check_mount
1101         cleanup || error "cleanup failed with $?"
1102 }
1103 run_test 27b "Reacquire MGS lock after failover"
1104
1105 test_28() {
1106         setup
1107         TEST="$LCTL get_param -n llite.$FSNAME-*.max_read_ahead_whole_mb"
1108         PARAM="$FSNAME.llite.max_read_ahead_whole_mb"
1109         ORIG=$($TEST)
1110         FINAL=$(($ORIG + 1))
1111         set_conf_param_and_check client "$TEST" "$PARAM" $FINAL ||
1112                 error "first set_conf_param_and_check client failed"
1113         FINAL=$(($FINAL + 1))
1114         set_conf_param_and_check client "$TEST" "$PARAM" $FINAL ||
1115                 error "second set_conf_param_and_check client failed"
1116         umount_client $MOUNT || error "umount_client $MOUNT failed"
1117         mount_client $MOUNT || error "mount_client $MOUNT failed"
1118         RESULT=$($TEST)
1119         if [ $RESULT -ne $FINAL ]; then
1120                 error "New config not seen: wanted $FINAL got $RESULT"
1121         else
1122                 echo "New config success: got $RESULT"
1123         fi
1124         set_conf_param_and_check client "$TEST" "$PARAM" $ORIG ||
1125                 error "third set_conf_param_and_check client failed"
1126         cleanup || error "cleanup failed with rc $?"
1127 }
1128 run_test 28 "permanent parameter setting"
1129
1130 test_28a() { # LU-4221
1131         [[ $(lustre_version_code ost1) -ge $(version_code 2.5.52) ]] ||
1132                 { skip "Need OST version at least 2.5.52" && return 0; }
1133         [ "$(facet_fstype ost1)" = "zfs" ] &&
1134                 skip "LU-4221: no such proc params for ZFS OSTs" && return
1135
1136         local name
1137         local param
1138         local cmd
1139         local old
1140         local new
1141         local device="$FSNAME-OST0000"
1142
1143         setup
1144
1145         # In this test we will set three kinds of proc parameters with
1146         # lctl conf_param:
1147         # 1. the ones moved from the OFD to the OSD, and only their
1148         #    symlinks kept in obdfilter
1149         # 2. non-symlink ones in the OFD
1150         # 3. non-symlink ones in the OSD
1151
1152         # Check 1.
1153         # prepare a symlink parameter in the OFD
1154         name="writethrough_cache_enable"
1155         param="$device.ost.$name"
1156         cmd="$LCTL get_param -n obdfilter.$device.$name"
1157
1158         # conf_param the symlink parameter in the OFD
1159         old=$(do_facet ost1 $cmd)
1160         new=$(((old + 1) % 2))
1161         set_conf_param_and_check ost1 "$cmd" "$param" $new ||
1162                 error "lctl conf_param $device.ost.$param=$new failed"
1163
1164         # conf_param the target parameter in the OSD
1165         param="$device.osd.$name"
1166         cmd="$LCTL get_param -n osd-*.$device.$name"
1167         set_conf_param_and_check ost1 "$cmd" "$param" $old ||
1168                 error "lctl conf_param $device.osd.$param=$old failed"
1169
1170         # Check 2.
1171         # prepare a non-symlink parameter in the OFD
1172         name="client_cache_seconds"
1173         param="$device.ost.$name"
1174         cmd="$LCTL get_param -n obdfilter.$device.$name"
1175
1176         # conf_param the parameter in the OFD
1177         old=$(do_facet ost1 $cmd)
1178         new=$((old * 2))
1179         set_conf_param_and_check ost1 "$cmd" "$param" $new ||
1180                 error "lctl conf_param $device.ost.$param=$new failed"
1181         set_conf_param_and_check ost1 "$cmd" "$param" $old ||
1182                 error "lctl conf_param $device.ost.$param=$old failed"
1183
1184         # Check 3.
1185         # prepare a non-symlink parameter in the OSD
1186         name="auto_scrub"
1187         param="$device.osd.$name"
1188         cmd="$LCTL get_param -n osd-*.$device.$name"
1189
1190         # conf_param the parameter in the OSD
1191         old=$(do_facet ost1 $cmd)
1192         new=$(((old + 1) % 2))
1193         set_conf_param_and_check ost1 "$cmd" "$param" $new ||
1194                 error "lctl conf_param $device.osd.$param=$new failed"
1195         set_conf_param_and_check ost1 "$cmd" "$param" $old ||
1196                 error "lctl conf_param $device.osd.$param=$old failed"
1197
1198         cleanup || error "cleanup failed with $?"
1199 }
1200 run_test 28a "set symlink parameters permanently with conf_param"
1201
1202 test_29() {
1203         [ "$OSTCOUNT" -lt "2" ] && skip_env "needs >= 2 OSTs" && return
1204         setup > /dev/null 2>&1
1205         start_ost2 || error "Unable to start OST2"
1206         sleep 10
1207
1208         local PARAM="$FSNAME-OST0001.osc.active"
1209         local PROC_ACT="osc.$FSNAME-OST0001-osc-[^M]*.active"
1210         local PROC_UUID="osc.$FSNAME-OST0001-osc-[^M]*.ost_server_uuid"
1211
1212         ACTV=$($LCTL get_param -n $PROC_ACT)
1213         DEAC=$((1 - $ACTV))
1214         set_conf_param_and_check client \
1215                 "$LCTL get_param -n $PROC_ACT" "$PARAM" $DEAC ||
1216                 error "set_conf_param_and_check client failed"
1217         # also check ost_server_uuid status
1218         RESULT=$($LCTL get_param -n $PROC_UUID | grep DEACTIV)
1219         if [ -z "$RESULT" ]; then
1220                 error "Client not deactivated: $($LCTL get_param \
1221                        -n $PROC_UUID)"
1222         else
1223                 echo "Live client success: got $RESULT"
1224         fi
1225
1226         # check MDTs too
1227         wait_osp_active ost ${FSNAME}-OST0001 1 0
1228
1229         # test new client starts deactivated
1230         umount_client $MOUNT || error "umount_client $MOUNT failed"
1231         mount_client $MOUNT || error "mount_client $MOUNT failed"
1232         RESULT=$($LCTL get_param -n $PROC_UUID | grep DEACTIV | grep NEW)
1233         if [ -z "$RESULT" ]; then
1234                 error "New client start active: $(lctl get_param -n $PROC_UUID)"
1235         else
1236                 echo "New client success: got $RESULT"
1237         fi
1238
1239         # make sure it reactivates
1240         set_conf_param_and_check client \
1241                 "$LCTL get_param -n $PROC_ACT" "$PARAM" $ACTV ||
1242                 error "lctl get_param $PROC_ACT $PARAM $ACTV failed"
1243
1244         umount_client $MOUNT
1245         stop_ost2 || error "Unable to stop OST2"
1246         cleanup_nocli || error "cleanup_nocli failed with $?"
1247         #writeconf to remove all ost2 traces for subsequent tests
1248         writeconf_or_reformat
1249 }
1250 run_test 29 "permanently remove an OST"
1251
1252 test_30a() {
1253         setup
1254
1255         echo Big config llog
1256         TEST="$LCTL get_param -n llite.$FSNAME-*.max_read_ahead_whole_mb"
1257         ORIG=$($TEST)
1258         LIST=(1 2 3 4 5 4 3 2 1 2 3 4 5 4 3 2 1 2 3 4 5)
1259         for i in ${LIST[@]}; do
1260                 set_conf_param_and_check client "$TEST" \
1261                         "$FSNAME.llite.max_read_ahead_whole_mb" $i ||
1262                         error "Set $FSNAME.llite.max_read_ahead_whole_mb failed"
1263         done
1264         # make sure client restart still works
1265         umount_client $MOUNT
1266         mount_client $MOUNT || error "mount_client $MOUNT failed"
1267         [ "$($TEST)" -ne "$i" ] &&
1268                 error "Param didn't stick across restart $($TEST) != $i"
1269         pass
1270
1271         echo Erase parameter setting
1272         do_facet mgs "$LCTL conf_param \
1273                       -d $FSNAME.llite.max_read_ahead_whole_mb" ||
1274                 error "Erase param $FSNAME.llite.max_read_ahead_whole_mb failed"
1275         umount_client $MOUNT
1276         mount_client $MOUNT || error "mount_client $MOUNT failed"
1277         FINAL=$($TEST)
1278         echo "deleted (default) value=$FINAL, orig=$ORIG"
1279         # assumes this parameter started at the default value
1280         [ "$FINAL" -eq "$ORIG" ] || fail "Deleted value=$FINAL, orig=$ORIG"
1281
1282         cleanup || error "cleanup failed with rc $?"
1283 }
1284 run_test 30a "Big config llog and conf_param deletion"
1285
1286 test_30b() {
1287         setup
1288
1289         local orignids=$($LCTL get_param -n \
1290                 osc.$FSNAME-OST0000-osc-[^M]*.import | grep failover_nids)
1291
1292         local orignidcount=$(echo "$orignids" | wc -w)
1293
1294         # Make a fake nid.  Use the OST nid, and add 20 to the least significant
1295         # numerical part of it. Hopefully that's not already a failover address
1296         # for the server.
1297         local OSTNID=$(do_facet ost1 "$LCTL get_param nis" | tail -1 | \
1298                 awk '{print $1}')
1299         local ORIGVAL=$(echo $OSTNID | egrep -oi "[0-9]*@")
1300         local NEWVAL=$((($(echo $ORIGVAL | egrep -oi "[0-9]*") + 20) % 256))
1301         local NEW=$(echo $OSTNID | sed "s/$ORIGVAL/$NEWVAL@/")
1302         echo "Using fake nid $NEW"
1303
1304         local TEST="$LCTL get_param -n osc.$FSNAME-OST0000-osc-[^M]*.import |
1305                 grep failover_nids | sed -n 's/.*\($NEW\).*/\1/p'"
1306         set_conf_param_and_check client "$TEST" \
1307                 "$FSNAME-OST0000.failover.node" $NEW ||
1308                 error "didn't add failover nid $NEW"
1309         local NIDS=$($LCTL get_param -n osc.$FSNAME-OST0000-osc-[^M]*.import |
1310                 grep failover_nids)
1311         echo $NIDS
1312         local NIDCOUNT=$(echo "$NIDS" | wc -w)
1313         echo "should have $((orignidcount + 1)) entries \
1314                 in failover nids string, have $NIDCOUNT"
1315         [ $NIDCOUNT -eq $((orignidcount + 1)) ] ||
1316                 error "Failover nid not added"
1317
1318         do_facet mgs "$LCTL conf_param -d $FSNAME-OST0000.failover.node" ||
1319                 error "conf_param delete failed"
1320         umount_client $MOUNT
1321         mount_client $MOUNT || error "mount_client $MOUNT failed"
1322
1323         NIDS=$($LCTL get_param -n osc.$FSNAME-OST0000-osc-[^M]*.import |
1324                 grep failover_nids)
1325         echo $NIDS
1326         NIDCOUNT=$(echo "$NIDS" | wc -w)
1327         echo "only $orignidcount final entries should remain \
1328                 in failover nids string, have $NIDCOUNT"
1329         [ $NIDCOUNT -eq $orignidcount ] || error "Failover nids not removed"
1330
1331         cleanup || error "cleanup failed with rc $?"
1332 }
1333 run_test 30b "Remove failover nids"
1334
1335 test_31() { # bug 10734
1336         # ipaddr must not exist
1337         $MOUNT_CMD 4.3.2.1@tcp:/lustre $MOUNT || true
1338         cleanup || error "cleanup failed with rc $?"
1339 }
1340 run_test 31 "Connect to non-existent node (shouldn't crash)"
1341
1342
1343 T32_QID=60000
1344 T32_BLIMIT=40960 # Kbytes
1345 T32_ILIMIT=4
1346
1347 #
1348 # This is not really a test but a tool to create new disk
1349 # image tarballs for the upgrade tests.
1350 #
1351 # Disk image tarballs should be created on single-node
1352 # clusters by running this test with default configurations
1353 # plus a few mandatory environment settings that are verified
1354 # at the beginning of the test.
1355 #
1356 test_32newtarball() {
1357         local version
1358         local dst=.
1359         local src=/etc/rc.d
1360         local tmp=$TMP/t32_image_create
1361         local server_version=$(lustre_version_code $SINGLEMDS)
1362         local remote_dir
1363         local striped_dir
1364         local pushd_dir
1365
1366         if [ $FSNAME != t32fs -o \( -z "$MDSDEV" -a -z "$MDSDEV1" \) -o \
1367              $OSTCOUNT -ne 1 -o -z "$OSTDEV1" ]; then
1368                 error "Needs FSNAME=t32fs MDSCOUNT=2 "                  \
1369                       "MDSDEV1=<nonexistent_file>"                      \
1370                       "MDSDEV2=<nonexistent_file>"                      \
1371                       "(or MDSDEV, in the case of b1_8)"                \
1372                       "OSTCOUNT=1 OSTDEV1=<nonexistent_file>"
1373         fi
1374
1375         mkdir $tmp || {
1376                 echo "Found stale $tmp"
1377                 return 1
1378         }
1379
1380         mkdir $tmp/src || return 1
1381         tar cf - -C $src . | tar xf - -C $tmp/src
1382         dd if=/dev/zero of=$tmp/src/t32_qf_old bs=1M \
1383                 count=$(($T32_BLIMIT / 1024 / 4))
1384         chown $T32_QID.$T32_QID $tmp/src/t32_qf_old
1385
1386         # format ost with comma-separated NIDs to verify LU-4460
1387         local failnid="$(h2nettype 1.2.3.4),$(h2nettype 4.3.2.1)"
1388         MGSNID="$MGSNID,$MGSNID" OSTOPT="--failnode=$failnid" formatall
1389
1390         setupall
1391
1392         [[ $server_version -ge $(version_code 2.3.50) ]] ||
1393                 $LFS quotacheck -ug /mnt/$FSNAME
1394         $LFS setquota -u $T32_QID -b 0 -B $T32_BLIMIT -i 0 -I $T32_ILIMIT \
1395                 /mnt/$FSNAME
1396
1397         tar cf - -C $tmp/src . | tar xf - -C /mnt/$FSNAME
1398
1399         if [[ $MDSCOUNT -ge 2 ]]; then
1400                 remote_dir=/mnt/$FSNAME/remote_dir
1401                 $LFS mkdir -i 1 $remote_dir
1402                 tar cf - -C $tmp/src . | tar xf - -C $remote_dir
1403
1404                 if [[ $server_version -ge $(version_code 2.7.0) ]]; then
1405                         striped_dir=/mnt/$FSNAME/striped_dir_old
1406                         $LFS mkdir -i 1 -c 2 $striped_dir
1407                         tar cf - -C $tmp/src . | tar xf - -C $striped_dir
1408                 fi
1409         fi
1410
1411         stopall
1412
1413         mkdir $tmp/img || return 1
1414
1415         setupall
1416
1417         pushd_dir=/mnt/$FSNAME
1418         if [[ $MDSCOUNT -ge 2 ]]; then
1419                 pushd_dir=$remote_dir
1420                 if [[ $server_version -ge $(version_code 2.7.0) ]]; then
1421                         pushd $striped_dir
1422                         ls -Rni --time-style=+%s >$tmp/img/list2
1423                         popd
1424                 fi
1425         fi
1426
1427         pushd $pushd_dir
1428         ls -Rni --time-style=+%s >$tmp/img/list
1429         find ! -name .lustre -type f -exec sha1sum {} \; |
1430                 sort -k 2 >$tmp/img/sha1sums
1431         popd
1432         $LCTL get_param -n version | head -n 1 |
1433                 sed -e 's/^lustre: *//' >$tmp/img/commit
1434
1435         [[ $server_version -ge $(version_code 2.3.50) ]] ||
1436                 $LFS quotaon -ug /mnt/$FSNAME
1437         $LFS quota -u $T32_QID -v /mnt/$FSNAME
1438         $LFS quota -v -u $T32_QID /mnt/$FSNAME |
1439                 awk 'BEGIN { num='1' } { if ($1 == "'/mnt/$FSNAME'") \
1440                 { if (NF == 1) { getline } else { num++ } ; print $num;} }' \
1441                 | tr -d "*" > $tmp/img/bspace
1442         $LFS quota -v -u $T32_QID /mnt/$FSNAME |
1443                 awk 'BEGIN { num='5' } { if ($1 == "'/mnt/$FSNAME'") \
1444                 { if (NF == 1) { getline } else { num++ } ; print $num;} }' \
1445                 | tr -d "*" > $tmp/img/ispace
1446         echo $T32_BLIMIT > $tmp/img/blimit
1447         echo $T32_ILIMIT > $tmp/img/ilimit
1448
1449         stopall
1450
1451         pushd $tmp/src
1452         find -type f -exec sha1sum {} \; | sort -k 2 >$tmp/sha1sums.src
1453         popd
1454
1455         if ! diff -u $tmp/sha1sums.src $tmp/img/sha1sums; then
1456                 echo "Data verification failed"
1457         fi
1458
1459         uname -r >$tmp/img/kernel
1460         uname -m >$tmp/img/arch
1461
1462         mv ${MDSDEV1:-$MDSDEV} $tmp/img
1463         for num in $(seq 2 $MDSCOUNT); do
1464                 local devname=$(mdsdevname $num)
1465                 local facet=mds$num
1466                 [[ $(facet_fstype $facet) != zfs ]] ||
1467                         devname=$(mdsvdevname $num)
1468                 mv $devname $tmp/img
1469         done
1470         mv $OSTDEV1 $tmp/img
1471
1472         version=$(sed -e 's/\(^[0-9]\+\.[0-9]\+\)\(.*$\)/\1/' $tmp/img/commit |
1473                           sed -e 's/\./_/g')    # E.g., "1.8.7" -> "1_8"
1474         dst=$(cd $dst; pwd)
1475         pushd $tmp/img
1476         tar cjvf $dst/disk$version-$(facet_fstype $SINGLEMDS).tar.bz2 -S *
1477         popd
1478
1479         rm -r $tmp
1480 }
1481 #run_test 32newtarball "Create a new test_32 disk image tarball for this version"
1482
1483 #
1484 # The list of applicable tarballs is returned via the caller's
1485 # variable "tarballs".
1486 #
1487 t32_check() {
1488         local node=$(facet_active_host $SINGLEMDS)
1489         local r="do_node $node"
1490
1491         if [ "$CLIENTONLY" ]; then
1492                 skip "Client-only testing"
1493                 exit 0
1494         fi
1495
1496         if ! $r which $TUNEFS; then
1497                 skip_env "tunefs.lustre required on $node"
1498                 exit 0
1499         fi
1500
1501         local IMGTYPE=$(facet_fstype $SINGLEMDS)
1502
1503         tarballs=$($r find $RLUSTRE/tests -maxdepth 1 \
1504                    -name \'disk*-$IMGTYPE.tar.bz2\')
1505
1506         if [ -z "$tarballs" ]; then
1507                 skip "No applicable tarballs found"
1508                 exit 0
1509         fi
1510 }
1511
1512 t32_test_cleanup() {
1513         local tmp=$TMP/t32
1514         local facet=$SINGLEMDS
1515         local fstype=$(facet_fstype $facet)
1516         local rc=$?
1517
1518         if $shall_cleanup_lustre; then
1519                 umount $tmp/mnt/lustre || rc=$?
1520         fi
1521         if $shall_cleanup_mdt; then
1522                 $r $UMOUNT $tmp/mnt/mdt || rc=$?
1523         fi
1524         if $shall_cleanup_mdt1; then
1525                 $r $UMOUNT $tmp/mnt/mdt1 || rc=$?
1526         fi
1527         if $shall_cleanup_ost; then
1528                 $r $UMOUNT $tmp/mnt/ost || rc=$?
1529         fi
1530
1531         $r rm -rf $tmp
1532         rm -rf $tmp
1533         if [[ $fstype == zfs ]]; then
1534                 local poolname
1535                 local poolname_list="t32fs-mdt1 t32fs-ost1"
1536
1537                 ! $mdt2_is_available || poolname_list+=" t32fs-mdt2"
1538
1539                 for poolname in $poolname_list; do
1540                         destroy_zpool $facet $poolname
1541                 done
1542         fi
1543         combined_mgs_mds || start_mgs || rc=$?
1544         return $rc
1545 }
1546
1547 t32_bits_per_long() {
1548         #
1549         # Yes, this is not meant to be perfect.
1550         #
1551         case $1 in
1552                 ppc64|x86_64)
1553                         echo -n 64;;
1554                 i*86)
1555                         echo -n 32;;
1556         esac
1557 }
1558
1559 t32_reload_modules() {
1560         local node=$1
1561         local all_removed=false
1562         local i=0
1563         local fstype=$(facet_fstype $SINGLEMDS)
1564
1565         [ $fstype == "zfs" ] && do_rpc_nodes $node "service zed stop"
1566
1567         while ((i < 20)); do
1568                 echo "Unloading modules on $node: Attempt $i"
1569                 do_rpc_nodes $node $LUSTRE_RMMOD $fstype &&
1570                         all_removed=true
1571                 do_rpc_nodes $node check_mem_leak || return 1
1572                 if $all_removed; then
1573                         do_rpc_nodes $node load_modules
1574                         return 0
1575                 fi
1576                 if [ $fstype == "zfs" ]; then
1577                         do_rpc_nodes $node "$ZPOOL status -v"
1578                 fi
1579                 sleep 5
1580                 i=$((i + 1))
1581         done
1582         echo "Unloading modules on $node: Given up"
1583         return 1
1584 }
1585
1586 t32_wait_til_devices_gone() {
1587         local node=$1
1588         local devices
1589         local loops
1590         local i=0
1591
1592         echo wait for devices to go
1593         while ((i < 20)); do
1594                 devices=$(do_rpc_nodes $node $LCTL device_list | wc -l)
1595                 loops=$(do_rpc_nodes $node losetup -a | grep -c t32)
1596                 ((devices == 0 && loops == 0)) && return 0
1597                 sleep 5
1598                 i=$((i + 1))
1599         done
1600         echo "waiting for dev on $node: dev $devices loop $loops given up"
1601         do_rpc_nodes $node "losetup -a"
1602         do_rpc_nodes $node "$LCTL device_list"
1603         return 1
1604 }
1605
1606 t32_verify_quota() {
1607         local node=$1
1608         local fsname=$2
1609         local mnt=$3
1610         local fstype=$(facet_fstype $SINGLEMDS)
1611         local qval
1612         local cmd
1613
1614         # LU-2435: if the underlying zfs doesn't support userobj_accounting,
1615         # lustre will estimate the object count usage. This fails quota
1616         # verification in 32b. The object quota usage should be accurate after
1617         # zfs-0.7.0 is released.
1618         [ $fstype == "zfs" ] && {
1619                 local zfs_version=$(do_node $node cat /sys/module/zfs/version)
1620
1621                 [ $(version_code $zfs_version) -lt $(version_code 0.7.0) ] && {
1622                         echo "Skip quota verify for zfs: $zfs_version"
1623                         return 0
1624                 }
1625         }
1626
1627         $LFS quota -u $T32_QID -v $mnt
1628
1629         qval=$($LFS quota -v -u $T32_QID $mnt |
1630                 awk 'BEGIN { num='1' } { if ($1 == "'$mnt'") \
1631                 { if (NF == 1) { getline } else { num++ } ; print $num;} }' \
1632                 | tr -d "*")
1633         [ $qval -eq $img_bspace ] || {
1634                 echo "bspace, act:$qval, exp:$img_bspace"
1635                 return 1
1636         }
1637
1638         qval=$($LFS quota -v -u $T32_QID $mnt |
1639                 awk 'BEGIN { num='5' } { if ($1 == "'$mnt'") \
1640                 { if (NF == 1) { getline } else { num++ } ; print $num;} }' \
1641                 | tr -d "*")
1642         [ $qval -eq $img_ispace ] || {
1643                 echo "ispace, act:$qval, exp:$img_ispace"
1644                 return 1
1645         }
1646
1647         qval=$($LFS quota -v -u $T32_QID $mnt |
1648                 awk 'BEGIN { num='3' } { if ($1 == "'$mnt'") \
1649                 { if (NF == 1) { getline } else { num++ } ; print $num;} }' \
1650                 | tr -d "*")
1651         [ $qval -eq $img_blimit ] || {
1652                 echo "blimit, act:$qval, exp:$img_blimit"
1653                 return 1
1654         }
1655
1656         qval=$($LFS quota -v -u $T32_QID $mnt |
1657                 awk 'BEGIN { num='7' } { if ($1 == "'$mnt'") \
1658                 { if (NF == 1) { getline } else { num++ } ; print $num;} }' \
1659                 | tr -d "*")
1660         [ $qval -eq $img_ilimit ] || {
1661                 echo "ilimit, act:$qval, exp:$img_ilimit"
1662                 return 1
1663         }
1664
1665         do_node $node $LCTL conf_param $fsname.quota.mdt=ug
1666         cmd="$LCTL get_param -n osd-$fstype.$fsname-MDT0000"
1667         cmd=$cmd.quota_slave.enabled
1668         wait_update $node "$cmd" "ug" || {
1669                 echo "Enable mdt quota failed"
1670                 return 1
1671         }
1672
1673         do_node $node $LCTL conf_param $fsname.quota.ost=ug
1674         cmd="$LCTL get_param -n osd-$fstype.$fsname-OST0000"
1675         cmd=$cmd.quota_slave.enabled
1676         wait_update $node "$cmd" "ug" || {
1677                 echo "Enable ost quota failed"
1678                 return 1
1679         }
1680
1681         chmod 0777 $mnt
1682         runas -u $T32_QID -g $T32_QID dd if=/dev/zero of=$mnt/t32_qf_new \
1683                 bs=1M count=$((img_blimit / 1024)) oflag=sync && {
1684                 echo "Write succeed, but expect -EDQUOT"
1685                 return 1
1686         }
1687         rm -f $mnt/t32_qf_new
1688
1689         runas -u $T32_QID -g $T32_QID createmany -m $mnt/t32_qf_ \
1690                 $img_ilimit && {
1691                 echo "Create succeed, but expect -EDQUOT"
1692                 return 1
1693         }
1694         unlinkmany $mnt/t32_qf_ $img_ilimit
1695
1696         return 0
1697 }
1698
1699 t32_test() {
1700         local tarball=$1
1701         local writeconf=$2
1702         local dne_upgrade=${dne_upgrade:-"no"}
1703         local ff_convert=${ff_convert:-"no"}
1704         local shall_cleanup_mdt=false
1705         local shall_cleanup_mdt1=false
1706         local shall_cleanup_ost=false
1707         local shall_cleanup_lustre=false
1708         local mdt2_is_available=false
1709         local node=$(facet_active_host $SINGLEMDS)
1710         local r="do_node $node"
1711         local tmp=$TMP/t32
1712         local img_commit
1713         local img_kernel
1714         local img_arch
1715         local img_bspace
1716         local img_ispace
1717         local img_blimit
1718         local img_ilimit
1719         local fsname=t32fs
1720         local nid
1721         local mopts
1722         local uuid
1723         local nrpcs_orig
1724         local nrpcs
1725         local list
1726         local fstype=$(facet_fstype $SINGLEMDS)
1727         local mdt_dev=$tmp/mdt
1728         local mdt2_dev=$tmp/mdt2
1729         local ost_dev=$tmp/ost
1730         local stripe_index
1731         local stripe_count
1732         local dir
1733
1734         combined_mgs_mds || stop_mgs || error "Unable to stop MGS"
1735         trap 'trap - RETURN; t32_test_cleanup' RETURN
1736
1737         load_modules
1738         nid=$($r $LCTL list_nids | head -1)
1739
1740         mkdir -p $tmp/mnt/lustre || error "mkdir $tmp/mnt/lustre failed"
1741         $r mkdir -p $tmp/mnt/{mdt,mdt1,ost}
1742         $r tar xjvf $tarball -S -C $tmp || {
1743                 error_noexit "Unpacking the disk image tarball"
1744                 return 1
1745         }
1746         img_commit=$($r cat $tmp/commit)
1747         img_kernel=$($r cat $tmp/kernel)
1748         img_arch=$($r cat $tmp/arch)
1749         img_bspace=$($r cat $tmp/bspace)
1750         img_ispace=$($r cat $tmp/ispace)
1751
1752         # older images did not have "blimit" and "ilimit" files
1753         # use old values for T32_BLIMIT and T32_ILIMIT
1754         $r test -f $tmp/blimit && img_blimit=$($r cat $tmp/blimit) ||
1755                 img_blimit=20480
1756         $r test -f $tmp/ilimit && img_ilimit=$($r cat $tmp/ilimit) ||
1757                 img_ilimit=2
1758
1759         echo "Upgrading from $(basename $tarball), created with:"
1760         echo "  Commit: $img_commit"
1761         echo "  Kernel: $img_kernel"
1762         echo "    Arch: $img_arch"
1763         echo "OST version: $(lustre_build_version ost1)"
1764
1765         # The conversion can be made only when both of the following
1766         # conditions are satisfied:
1767         # - ost device img version < 2.3.64
1768         # - ost server version >= 2.5
1769         [ $(version_code $img_commit) -ge $(version_code 2.3.64) -o \
1770                 $(lustre_version_code ost1) -lt $(version_code 2.5.0) ] &&
1771                         ff_convert="no"
1772
1773         ! $r test -f $mdt2_dev || mdt2_is_available=true
1774
1775         if [[ $fstype == zfs ]]; then
1776                 # import pool first
1777                 local poolname
1778                 local poolname_list="t32fs-mdt1 t32fs-ost1"
1779
1780                 ! $mdt2_is_available || poolname_list+=" t32fs-mdt2"
1781
1782                 for poolname in $poolname_list; do
1783                         $r "modprobe zfs;
1784                                 $ZPOOL list -H $poolname >/dev/null 2>&1 ||
1785                                 $ZPOOL import -f -d $tmp $poolname"
1786                 done
1787
1788                 # upgrade zpool to latest supported features, including
1789                 # dnode quota accounting in 0.7.0
1790                 $r "$ZPOOL upgrade -a"
1791
1792                 mdt_dev=t32fs-mdt1/mdt1
1793                 ost_dev=t32fs-ost1/ost1
1794                 ! $mdt2_is_available || mdt2_dev=t32fs-mdt2/mdt2
1795                 wait_update_facet $SINGLEMDS "$ZPOOL list |
1796                         awk '/^t32fs-mdt1/ { print \\\$1 }'" "t32fs-mdt1" || {
1797                                 error_noexit "import zfs pool failed"
1798                                 return 1
1799                         }
1800         fi
1801
1802         $r $LCTL set_param debug="$PTLDEBUG"
1803
1804         $r $TUNEFS --dryrun $mdt_dev || {
1805                 $r losetup -a
1806                 error_noexit "tunefs.lustre before mounting the MDT"
1807                 return 1
1808         }
1809
1810         if $mdt2_is_available; then
1811                 $r $TUNEFS --dryrun $mdt2_dev || {
1812                         $r losetup -a
1813                         error_noexit "tunefs.lustre before mounting the MDT"
1814                         return 1
1815                 }
1816         fi
1817
1818         if [ "$writeconf" ]; then
1819                 mopts=writeconf
1820                 if [ $fstype == "ldiskfs" ]; then
1821                         mopts="loop,$mopts"
1822                         $r $TUNEFS --quota $mdt_dev || {
1823                                 $r losetup -a
1824                                 error_noexit "Enable mdt quota feature"
1825                                 return 1
1826                         }
1827                         if $mdt2_is_available; then
1828                                 $r $TUNEFS --quota $mdt2_dev || {
1829                                         $r losetup -a
1830                                         error_noexit "Enable mdt quota feature"
1831                                         return 1
1832                                 }
1833                         fi
1834                 fi
1835         else
1836                 if [ -n "$($LCTL list_nids | grep -v '\(tcp\|lo\)[[:digit:]]*$')" ]; then
1837                         [[ $(lustre_version_code mgs) -ge $(version_code 2.3.59) ]] ||
1838                         { skip "LU-2200: Cannot run over Inifiniband w/o lctl replace_nids "
1839                                 "(Need MGS version at least 2.3.59)"; return 0; }
1840
1841                         local osthost=$(facet_active_host ost1)
1842                         local ostnid=$(do_node $osthost $LCTL list_nids | head -1)
1843
1844                         mopts=nosvc
1845                         if [ $fstype == "ldiskfs" ]; then
1846                                 mopts="loop,$mopts"
1847                         fi
1848                         $r $MOUNT_CMD -o $mopts $mdt_dev $tmp/mnt/mdt
1849                         $r $LCTL replace_nids $fsname-OST0000 $ostnid
1850                         $r $LCTL replace_nids $fsname-MDT0000 $nid
1851                         $r $UMOUNT $tmp/mnt/mdt
1852                 fi
1853
1854                 mopts=exclude=$fsname-OST0000
1855                 if [ $fstype == "ldiskfs" ]; then
1856                         mopts="loop,$mopts"
1857                 fi
1858         fi
1859
1860         t32_wait_til_devices_gone $node
1861
1862         $r $MOUNT_CMD -o $mopts $mdt_dev $tmp/mnt/mdt || {
1863                 $r losetup -a
1864                 error_noexit "Mounting the MDT"
1865                 return 1
1866         }
1867         shall_cleanup_mdt=true
1868
1869         if $mdt2_is_available; then
1870                 mopts=mgsnode=$nid,$mopts
1871                 $r $MOUNT_CMD -o $mopts $mdt2_dev $tmp/mnt/mdt1 || {
1872                         $r losetup -a
1873                         error_noexit "Mounting the MDT"
1874                         return 1
1875                 }
1876
1877                 echo "mount new MDT....$mdt2_dev"
1878                 $r $LCTL set_param -n mdt.${fsname}*.enable_remote_dir=1 ||
1879                         error_noexit "enable remote dir create failed"
1880
1881                 shall_cleanup_mdt1=true
1882         elif [ "$dne_upgrade" != "no" ]; then
1883                 local fs2mdsdev=$(mdsdevname 1_2)
1884                 local fs2mdsvdev=$(mdsvdevname 1_2)
1885
1886                 echo "mkfs new MDT on ${fs2mdsdev}...."
1887                 if [ $(facet_fstype mds1) == ldiskfs ]; then
1888                         mkfsoptions="--mkfsoptions=\\\"-J size=8\\\""
1889                 fi
1890
1891                 add $SINGLEMDS $(mkfs_opts mds2 $fs2mdsdev $fsname) --reformat \
1892                            $mkfsoptions $fs2mdsdev $fs2mdsvdev > /dev/null || {
1893                         error_noexit "Mkfs new MDT failed"
1894                         return 1
1895                 }
1896
1897                 [[ $(facet_fstype mds1) != zfs ]] || import_zpool mds1
1898
1899                 $r $TUNEFS --dryrun $fs2mdsdev || {
1900                         error_noexit "tunefs.lustre before mounting the MDT"
1901                         return 1
1902                 }
1903
1904                 echo "mount new MDT....$fs2mdsdev"
1905                 $r $MOUNT_CMD -o $mopts $fs2mdsdev $tmp/mnt/mdt1 || {
1906                         error_noexit "mount mdt1 failed"
1907                         return 1
1908                 }
1909
1910                 $r $LCTL set_param -n mdt.${fsname}*.enable_remote_dir=1 ||
1911                         error_noexit "enable remote dir create failed"
1912
1913                 shall_cleanup_mdt1=true
1914         fi
1915
1916         uuid=$($r $LCTL get_param -n mdt.$fsname-MDT0000.uuid) || {
1917                 error_noexit "Getting MDT UUID"
1918                 return 1
1919         }
1920         if [ "$uuid" != $fsname-MDT0000_UUID ]; then
1921                 error_noexit "Unexpected MDT UUID: \"$uuid\""
1922                 return 1
1923         fi
1924
1925         $r $TUNEFS --dryrun $ost_dev || {
1926                 error_noexit "tunefs.lustre before mounting the OST"
1927                 return 1
1928         }
1929         if [ "$writeconf" ]; then
1930                 mopts=mgsnode=$nid,$writeconf
1931                 if [ $fstype == "ldiskfs" ]; then
1932                         mopts="loop,$mopts"
1933                         $r $TUNEFS --quota $ost_dev || {
1934                                 $r losetup -a
1935                                 error_noexit "Enable ost quota feature"
1936                                 return 1
1937                         }
1938                 fi
1939         else
1940                 mopts=mgsnode=$nid
1941                 if [ $fstype == "ldiskfs" ]; then
1942                         mopts="loop,$mopts"
1943                 fi
1944         fi
1945
1946         $r $MOUNT_CMD -onomgs -o$mopts $ost_dev $tmp/mnt/ost || {
1947                 error_noexit "Mounting the OST"
1948                 return 1
1949         }
1950         shall_cleanup_ost=true
1951
1952         uuid=$($r $LCTL get_param -n obdfilter.$fsname-OST0000.uuid) || {
1953                 error_noexit "Getting OST UUID"
1954                 return 1
1955         }
1956         if [ "$uuid" != $fsname-OST0000_UUID ]; then
1957                 error_noexit "Unexpected OST UUID: \"$uuid\""
1958                 return 1
1959         fi
1960
1961         $r $LCTL conf_param $fsname-OST0000.osc.max_dirty_mb=15 || {
1962                 error_noexit "Setting \"max_dirty_mb\""
1963                 return 1
1964         }
1965         $r $LCTL conf_param $fsname-OST0000.failover.node=$nid || {
1966                 error_noexit "Setting OST \"failover.node\""
1967                 return 1
1968         }
1969         $r $LCTL conf_param $fsname-MDT0000.mdc.max_rpcs_in_flight=9 || {
1970                 error_noexit "Setting \"max_rpcs_in_flight\""
1971                 return 1
1972         }
1973         $r $LCTL conf_param $fsname-MDT0000.failover.node=$nid || {
1974                 error_noexit "Setting MDT \"failover.node\""
1975                 return 1
1976         }
1977         $r $LCTL pool_new $fsname.interop || {
1978                 error_noexit "Setting \"interop\""
1979                 return 1
1980         }
1981         $r $LCTL conf_param $fsname-MDT0000.lov.stripesize=4M || {
1982                 error_noexit "Setting \"lov.stripesize\""
1983                 return 1
1984         }
1985         $r $LCTL conf_param $fsname-MDT0000.mdd.atime_diff=70 || {
1986                 error_noexit "Setting \"mdd.atime_diff\""
1987                 return 1
1988         }
1989
1990         if [ "$ff_convert" != "no" -a $(facet_fstype ost1) == "ldiskfs" ]; then
1991                 $r $LCTL lfsck_start -M $fsname-OST0000 || {
1992                         error_noexit "Start OI scrub on OST0"
1993                         return 1
1994                 }
1995
1996                 # The oi_scrub should be on ost1, but for test_32(),
1997                 # all on the SINGLEMDS.
1998                 wait_update_facet $SINGLEMDS "$LCTL get_param -n \
1999                         osd-ldiskfs.$fsname-OST0000.oi_scrub |
2000                         awk '/^status/ { print \\\$2 }'" "completed" 30 || {
2001                         error_noexit "Failed to get the expected 'completed'"
2002                         return 1
2003                 }
2004
2005                 local UPDATED=$($r $LCTL get_param -n \
2006                                 osd-ldiskfs.$fsname-OST0000.oi_scrub |
2007                                 awk '/^updated/ { print $2 }')
2008                 [ $UPDATED -ge 1 ] || {
2009                         error_noexit "Only $UPDATED objects have been converted"
2010                         return 1
2011                 }
2012         fi
2013
2014         if [ "$dne_upgrade" != "no" ]; then
2015                 $r $LCTL conf_param \
2016                                 $fsname-MDT0001.mdc.max_rpcs_in_flight=9 || {
2017                         error_noexit "Setting MDT1 \"max_rpcs_in_flight\""
2018                         return 1
2019                 }
2020                 $r $LCTL conf_param $fsname-MDT0001.failover.node=$nid || {
2021                         error_noexit "Setting MDT1 \"failover.node\""
2022                         return 1
2023                 }
2024                 $r $LCTL conf_param $fsname-MDT0001.lov.stripesize=4M || {
2025                         error_noexit "Setting MDT1 \"lov.stripesize\""
2026                         return 1
2027                 }
2028         fi
2029
2030         if [ "$writeconf" ]; then
2031                 $MOUNT_CMD $nid:/$fsname $tmp/mnt/lustre || {
2032                         error_noexit "Mounting the client"
2033                         return 1
2034                 }
2035
2036                 shall_cleanup_lustre=true
2037                 $r $LCTL set_param debug="$PTLDEBUG"
2038
2039                 t32_verify_quota $node $fsname $tmp/mnt/lustre || {
2040                         error_noexit "verify quota failed"
2041                         return 1
2042                 }
2043
2044                 if $r test -f $tmp/list; then
2045                         #
2046                         # There is not a Test Framework API to copy files to or
2047                         # from a remote node.
2048                         #
2049                         # LU-2393 - do both sorts on same node to ensure locale
2050                         # is identical
2051                         local list_file=$tmp/list
2052
2053                         if $mdt2_is_available; then
2054                                 if [[ -d $tmp/mnt/lustre/striped_dir_old ]] &&
2055                                    $r test -f $tmp/list2; then
2056                                         list_file=$tmp/list2
2057                                         pushd $tmp/mnt/lustre/striped_dir_old
2058                                 else
2059                                         pushd $tmp/mnt/lustre/remote_dir
2060                                 fi
2061                         else
2062                                 pushd $tmp/mnt/lustre
2063                         fi
2064                         $r cat $list_file | sort -k 6 >$tmp/list.orig
2065                         ls -Rni --time-style=+%s | sort -k 6 |
2066                                 sed 's/\. / /' >$tmp/list || {
2067                                 error_noexit "ls"
2068                                 return 1
2069                         }
2070                         popd
2071                         #
2072                         # 32-bit and 64-bit clients use different algorithms to
2073                         # convert FIDs into inode numbers.  Hence, remove the
2074                         # inode numbers from the lists, if the original list was
2075                         # created on an architecture with different number of
2076                         # bits per "long".
2077                         #
2078                         if [ $(t32_bits_per_long $(uname -m)) != \
2079                                 $(t32_bits_per_long $img_arch) ]; then
2080                                 echo "Different number of bits per \"long\"" \
2081                                      "from the disk image"
2082                                 for list in list.orig list; do
2083                                         sed -i -e 's/^[0-9]\+[ \t]\+//' \
2084                                                   $tmp/$list
2085                                 done
2086                         fi
2087                         if ! diff -ub $tmp/list.orig $tmp/list; then
2088                                 error_noexit "list verification failed"
2089                                 return 1
2090                         fi
2091                 else
2092                         echo "list verification skipped"
2093                 fi
2094
2095                 if [ "$dne_upgrade" != "no" ]; then
2096                         $LFS mkdir -i 1 -c2 $tmp/mnt/lustre/striped_dir || {
2097                                 error_noexit "set striped dir failed"
2098                                 return 1
2099                         }
2100
2101                         $LFS setdirstripe -D -c2 $tmp/mnt/lustre/striped_dir
2102
2103                         pushd $tmp/mnt/lustre
2104                         tar -cf - . --exclude=./striped_dir \
2105                                     --exclude=./striped_dir_old \
2106                                     --exclude=./remote_dir |
2107                                 tar -xvf - -C striped_dir 1>/dev/null || {
2108                                 error_noexit "cp to striped dir failed"
2109                                 return 1
2110                         }
2111                         popd
2112                 fi
2113
2114                 # If it is upgrade from DNE (2.5), then rename the remote dir,
2115                 # which is created in 2.5 to striped dir.
2116                 if $mdt2_is_available && [[ "$dne_upgrade" != "no" ]]; then
2117                         stripe_index=$($LFS getdirstripe -i     \
2118                                        $tmp/mnt/lustre/remote_dir)
2119
2120                         [[ $stripe_index -eq 1 ]] || {
2121                                 error_noexit "get index \"$stripe_index\"" \
2122                                              "from remote dir failed"
2123                                 return 1
2124                         }
2125                         mv $tmp/mnt/lustre/remote_dir   \
2126                                 $tmp/mnt/lustre/striped_dir/ || {
2127                                 error_noexit "mv remote dir failed"
2128                                 return 1
2129                         }
2130                 fi
2131
2132                 # If it is upgraded from DNE (2.7), then move the striped dir
2133                 # which was created in 2.7 to the new striped dir.
2134                 if $mdt2_is_available && [[ "$dne_upgrade" != "no" ]] &&
2135                         [[ -d $tmp/mnt/lustre/striped_dir_old ]]; then
2136                         stripe_count=$($LFS getdirstripe -c     \
2137                                        $tmp/mnt/lustre/striped_dir_old)
2138                         [[ $stripe_count -eq 2 ]] || {
2139                                 error_noexit "get count $stripe_count" \
2140                                              "from striped dir failed"
2141                                 return 1
2142                         }
2143                         mv $tmp/mnt/lustre/striped_dir_old      \
2144                                 $tmp/mnt/lustre/striped_dir/ || {
2145                                 error_noexit "mv striped dir failed"
2146                                 return 1
2147                         }
2148                 fi
2149
2150                 sync; sleep 5; sync
2151                 $r $LCTL set_param -n osd*.*.force_sync=1
2152                 dd if=/dev/zero of=$tmp/mnt/lustre/tmp_file bs=10k count=10 || {
2153                         error_noexit "dd failed"
2154                         return 1
2155                 }
2156                 rm -rf $tmp/mnt/lustre/tmp_file || {
2157                         error_noexit "rm failed"
2158                         return 1
2159                 }
2160
2161                 if $r test -f $tmp/sha1sums; then
2162                         # LU-2393 - do both sorts on same node to ensure locale
2163                         # is identical
2164                         $r cat $tmp/sha1sums | sort -k 2 >$tmp/sha1sums.orig
2165                         if [ "$dne_upgrade" != "no" ]; then
2166                                 pushd $tmp/mnt/lustre/striped_dir
2167                         else
2168                                 pushd $tmp/mnt/lustre
2169                         fi
2170
2171                         find ! -path "*remote_dir*" ! -path "*striped_dir*" \
2172                                 ! -name .lustre -type f -exec sha1sum {} \; |
2173                                 sort -k 2 >$tmp/sha1sums || {
2174                                 popd
2175                                 error_noexit "sha1sum"
2176                                 return 1
2177                         }
2178                         popd
2179                         if ! diff -ub $tmp/sha1sums.orig $tmp/sha1sums; then
2180                                 error_noexit "sha1sum verification failed"
2181                                 return 1
2182                         fi
2183
2184                         # if upgrade from DNE(2.5), then check remote directory
2185                         # if upgrade from DNE(2.7), then check striped directory
2186                         if $mdt2_is_available &&
2187                            [[ "$dne_upgrade" != "no" ]]; then
2188                                 local new_dir="$tmp/mnt/lustre/striped_dir"
2189                                 local striped_dir_old="$new_dir/striped_dir_old"
2190
2191                                 local dir_list="$new_dir/remote_dir"
2192                                 [[ ! -d $triped_dir_old ]] ||
2193                                         dir_list+=" $striped_dir_old"
2194
2195                                 for dir in $dir_list; do
2196                                         pushd $dir
2197                                         find ! -name .lustre -type f    \
2198                                                 -exec sha1sum {} \; |
2199                                                 sort -k 2 >$tmp/sha1sums || {
2200                                                         popd
2201                                                         error_noexit "sha1sum"
2202                                                         return 1
2203                                                 }
2204                                         popd
2205                                         if ! diff -ub $tmp/sha1sums.orig \
2206                                                 $tmp/sha1sums; then
2207                                                 error_noexit "sha1sum $dir" \
2208                                                              "failed"
2209                                                 return 1
2210                                         fi
2211                                 done
2212                         fi
2213                 else
2214                         echo "sha1sum verification skipped"
2215                 fi
2216
2217                 if [ "$dne_upgrade" != "no" ]; then
2218                         rm -rf $tmp/mnt/lustre/striped_dir || {
2219                                 error_noexit "remove remote dir failed"
2220                                 return 1
2221                         }
2222                 fi
2223
2224                 # migrate files/dirs to remote MDT, then move them back
2225                 if [ $(lustre_version_code mds1) -ge $(version_code 2.7.50) -a \
2226                      $dne_upgrade != "no" ]; then
2227                         $r $LCTL set_param -n   \
2228                                 mdt.${fsname}*.enable_remote_dir=1 2>/dev/null
2229
2230                         echo "test migration"
2231                         pushd $tmp/mnt/lustre
2232                         for dir in $(find ! -name .lustre ! -name . -type d); do
2233                                 mdt_index=$($LFS getdirstripe -i $dir)
2234                                 stripe_cnt=$($LFS getdirstripe -c $dir)
2235                                 if [ $mdt_index = 0 -a $stripe_cnt -le 1 ]; then
2236                                         $LFS mv -M 1 $dir || {
2237                                         popd
2238                                         error_noexit "migrate MDT1 failed"
2239                                         return 1
2240                                 }
2241                                 fi
2242                         done
2243
2244                         for dir in $(find ! -name . ! -name .lustre -type d); do
2245                                 mdt_index=$($LFS getdirstripe -i $dir)
2246                                 stripe_cnt=$($LFS getdirstripe -c $dir)
2247                                 if [ $mdt_index = 1 -a $stripe_cnt -le 1 ]; then
2248                                         $LFS mv -M 0 $dir || {
2249                                         popd
2250                                         error_noexit "migrate MDT0 failed"
2251                                         return 1
2252                                 }
2253                                 fi
2254                         done
2255                         popd
2256                 fi
2257
2258                 #
2259                 # When adding new data verification tests, please check for
2260                 # the presence of the required reference files first, like
2261                 # the "sha1sums" and "list" tests above, to avoid the need to
2262                 # regenerate every image for each test addition.
2263                 #
2264
2265                 nrpcs_orig=$($LCTL get_param \
2266                                 -n mdc.*MDT0000*.max_rpcs_in_flight) || {
2267                         error_noexit "Getting \"max_rpcs_in_flight\""
2268                         return 1
2269                 }
2270                 nrpcs=$((nrpcs_orig + 5))
2271                 $r $LCTL conf_param $fsname-MDT0000.mdc.max_rpcs_in_flight=$nrpcs || {
2272                         error_noexit "Changing \"max_rpcs_in_flight\""
2273                         return 1
2274                 }
2275                 wait_update $HOSTNAME "$LCTL get_param \
2276                         -n mdc.*MDT0000*.max_rpcs_in_flight" $nrpcs || {
2277                         error_noexit "Verifying \"max_rpcs_in_flight\""
2278                         return 1
2279                 }
2280
2281                 umount $tmp/mnt/lustre || {
2282                         error_noexit "Unmounting the client"
2283                         return 1
2284                 }
2285                 shall_cleanup_lustre=false
2286         else
2287                 if [[ "$dne_upgrade" != "no" ]] || $mdt2_is_available; then
2288                         $r $UMOUNT $tmp/mnt/mdt1 || {
2289                                 error_noexit "Unmounting the MDT2"
2290                                 return 1
2291                         }
2292                         if [[ $fstype == zfs ]]; then
2293                             $r "$ZPOOL export t32fs-mdt2"
2294                         fi
2295                         shall_cleanup_mdt1=false
2296                 fi
2297
2298                 $r $UMOUNT $tmp/mnt/mdt || {
2299                         error_noexit "Unmounting the MDT"
2300                         return 1
2301                 }
2302                 if [[ $fstype == zfs ]]; then
2303                     $r "$ZPOOL export t32fs-mdt1"
2304                 fi
2305                 shall_cleanup_mdt=false
2306
2307                 $r $UMOUNT $tmp/mnt/ost || {
2308                         error_noexit "Unmounting the OST"
2309                         return 1
2310                 }
2311                 if [[ $fstype == zfs ]]; then
2312                     $r "$ZPOOL export t32fs-ost1"
2313                 fi
2314                 shall_cleanup_ost=false
2315
2316                 t32_reload_modules $node || {
2317                         error_noexit "Reloading modules"
2318                         return 1
2319                 }
2320
2321                 if [[ $fstype == zfs ]]; then
2322                         local poolname=t32fs-mdt1
2323                         $r "modprobe zfs;
2324                             $ZPOOL list -H $poolname >/dev/null 2>&1 ||
2325                                 $ZPOOL import -f -d $tmp $poolname"
2326
2327                         # upgrade zpool to latest supported features,
2328                         # including dnode quota accounting in 0.7.0
2329                         $r "$ZPOOL upgrade $poolname"
2330                 fi
2331
2332                 # mount a second time to make sure we didnt leave upgrade flag on
2333                 $r $TUNEFS --dryrun $mdt_dev || {
2334                         $r losetup -a
2335                         error_noexit "tunefs.lustre before remounting the MDT"
2336                         return 1
2337                 }
2338
2339                 mopts=exclude=$fsname-OST0000
2340                 if [ $fstype == "ldiskfs" ]; then
2341                         mopts="loop,$mopts"
2342                 fi
2343                 $r $MOUNT_CMD -o $mopts $mdt_dev $tmp/mnt/mdt || {
2344                         error_noexit "Remounting the MDT"
2345                         return 1
2346                 }
2347                 shall_cleanup_mdt=true
2348         fi
2349 }
2350
2351 test_32a() {
2352         local tarballs
2353         local tarball
2354         local rc=0
2355
2356         t32_check
2357         for tarball in $tarballs; do
2358                 t32_test $tarball || let "rc += $?"
2359         done
2360         return $rc
2361 }
2362 run_test 32a "Upgrade (not live)"
2363
2364 test_32b() {
2365         local tarballs
2366         local tarball
2367         local rc=0
2368
2369         t32_check
2370         for tarball in $tarballs; do
2371                 t32_test $tarball writeconf || let "rc += $?"
2372         done
2373         return $rc
2374 }
2375 run_test 32b "Upgrade with writeconf"
2376
2377 test_32c() {
2378         local tarballs
2379         local tarball
2380         local rc=0
2381
2382         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2383         t32_check
2384         for tarball in $tarballs; do
2385                 # Do not support 1_8 and 2_1 direct upgrade to DNE2 anymore */
2386                 echo $tarball | grep "1_8" && continue
2387                 echo $tarball | grep "2_1" && continue
2388                 load_modules
2389                 dne_upgrade=yes t32_test $tarball writeconf || rc=$?
2390         done
2391         return $rc
2392 }
2393 run_test 32c "dne upgrade test"
2394
2395 test_32d() {
2396         local tarballs
2397         local tarball
2398         local rc=0
2399
2400         t32_check
2401         for tarball in $tarballs; do
2402                 ff_convert=yes t32_test $tarball || rc=$?
2403         done
2404         return $rc
2405 }
2406 run_test 32d "convert ff test"
2407
2408 test_33a() { # bug 12333, was test_33
2409         local FSNAME2=test-123
2410         local MDSDEV=$(mdsdevname ${SINGLEMDS//mds/})
2411         local mkfsoptions
2412
2413         [ -n "$ost1_HOST" ] && fs2ost_HOST=$ost1_HOST
2414
2415         if [ -z "$fs2ost_DEV" -o -z "$fs2mds_DEV" ]; then
2416                 local dev=${SINGLEMDS}_dev
2417                 local MDSDEV=${!dev}
2418                 is_blkdev $SINGLEMDS $MDSDEV &&
2419                         skip_env "mixed loopback and real device not working" &&
2420                         return
2421         fi
2422
2423         local fs2mdsdev=$(mdsdevname 1_2)
2424         local fs2ostdev=$(ostdevname 1_2)
2425         local fs2mdsvdev=$(mdsvdevname 1_2)
2426         local fs2ostvdev=$(ostvdevname 1_2)
2427
2428         if [ $(facet_fstype mds1) == ldiskfs ]; then
2429                 mkfsoptions="--mkfsoptions=\\\"-J size=8\\\"" # See bug 17931.
2430         fi
2431
2432         add fs2mds $(mkfs_opts mds1 ${fs2mdsdev}) --mgs --fsname=${FSNAME2} \
2433                 --reformat $mkfsoptions $fs2mdsdev $fs2mdsvdev || exit 10
2434         add fs2ost $(mkfs_opts ost1 ${fs2ostdev}) --mgsnode=$MGSNID \
2435                 --fsname=${FSNAME2} --index=8191 --reformat $fs2ostdev \
2436                 $fs2ostvdev || exit 10
2437
2438         start fs2mds $fs2mdsdev $MDS_MOUNT_OPTS && trap cleanup_fs2 EXIT INT
2439         start fs2ost $fs2ostdev $OST_MOUNT_OPTS
2440         do_facet $SINGLEMDS "$LCTL conf_param $FSNAME2.sys.timeout=200" ||
2441                 error "$LCTL conf_param $FSNAME2.sys.timeout=200 failed"
2442         mkdir -p $MOUNT2 || error "mkdir $MOUNT2 failed"
2443         $MOUNT_CMD $MGSNID:/${FSNAME2} $MOUNT2 || error "$MOUNT_CMD failed"
2444         echo "ok."
2445
2446         cp /etc/hosts $MOUNT2/ || error "copy /etc/hosts $MOUNT2/ failed"
2447         $GETSTRIPE $MOUNT2/hosts || error "$GETSTRIPE $MOUNT2/hosts failed"
2448
2449         umount $MOUNT2
2450         stop fs2ost -f
2451         stop fs2mds -f
2452         cleanup_nocli || error "cleanup_nocli failed with $?"
2453 }
2454 run_test 33a "Mount ost with a large index number"
2455
2456 test_33b() {    # was test_34
2457         setup
2458
2459         do_facet client dd if=/dev/zero of=$MOUNT/24 bs=1024k count=1
2460         # Drop lock cancelation reply during umount
2461         #define OBD_FAIL_LDLM_CANCEL_NET                        0x304
2462         do_facet client $LCTL set_param fail_loc=0x80000304
2463         #lctl set_param debug=-1
2464         umount_client $MOUNT
2465         cleanup || error "cleanup failed with $?"
2466 }
2467 run_test 33b "Drop cancel during umount"
2468
2469 test_34a() {
2470         setup
2471         do_facet client "sh runmultiop_bg_pause $DIR/file O_c"
2472         manual_umount_client
2473         rc=$?
2474         do_facet client killall -USR1 multiop
2475         if [ $rc -eq 0 ]; then
2476                 error "umount not fail!"
2477         fi
2478         sleep 1
2479         cleanup || error "cleanup failed with rc $?"
2480 }
2481 run_test 34a "umount with opened file should be fail"
2482
2483 test_34b() {
2484         setup
2485         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
2486         stop_mds || error "Unable to stop MDS"
2487
2488         manual_umount_client --force || error "mtab after failed umount with $?"
2489
2490         cleanup || error "cleanup failed with $?"
2491 }
2492 run_test 34b "force umount with failed mds should be normal"
2493
2494 test_34c() {
2495         setup
2496         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
2497         stop_ost || error "Unable to stop OST1"
2498
2499         manual_umount_client --force || error "mtab after failed umount with $?"
2500
2501         cleanup || error "cleanup failed with $?"
2502 }
2503 run_test 34c "force umount with failed ost should be normal"
2504
2505 test_35a() { # bug 12459
2506         setup
2507
2508         DBG_SAVE="`$LCTL get_param -n debug`"
2509         $LCTL set_param debug="ha"
2510
2511         log "Set up a fake failnode for the MDS"
2512         FAKENID="127.0.0.2"
2513         local device=$(do_facet $SINGLEMDS "$LCTL get_param -n devices" |
2514                 awk '($3 ~ "mdt" && $4 ~ "MDT") { print $4 }' | head -1)
2515         do_facet mgs "$LCTL conf_param \
2516                       ${device}.failover.node=$(h2nettype $FAKENID)" ||
2517                 error "Setting ${device}.failover.node=\
2518                        $(h2nettype $FAKENID) failed."
2519
2520         log "Wait for RECONNECT_INTERVAL seconds (10s)"
2521         sleep 10
2522
2523         MSG="conf-sanity.sh test_35a `date +%F%kh%Mm%Ss`"
2524         $LCTL clear
2525         log "$MSG"
2526         log "Stopping the MDT: $device"
2527         stop_mdt 1 || error "MDT0 stop fail"
2528
2529         df $MOUNT > /dev/null 2>&1 &
2530         DFPID=$!
2531         log "Restarting the MDT: $device"
2532         start_mdt 1 || error "MDT0 start fail"
2533         log "Wait for df ($DFPID) ... "
2534         wait $DFPID
2535         log "done"
2536         $LCTL set_param debug="$DBG_SAVE"
2537
2538         # retrieve from the log the first server that the client tried to
2539         # contact after the connection loss
2540         $LCTL dk $TMP/lustre-log-$TESTNAME.log
2541         NEXTCONN=`awk "/${MSG}/ {start = 1;}
2542                        /import_select_connection.*$device-mdc.* using connection/ {
2543                                 if (start) {
2544                                         if (\\\$NF ~ /$FAKENID/)
2545                                                 print \\\$NF;
2546                                         else
2547                                                 print 0;
2548                                         exit;
2549                                 }
2550                        }" $TMP/lustre-log-$TESTNAME.log`
2551         [ "$NEXTCONN" != "0" ] &&
2552                 error "Tried to connect to ${NEXTCONN} not last active server"
2553         cleanup || error "cleanup failed with $?"
2554         # remove nid settings
2555         writeconf_or_reformat
2556 }
2557 run_test 35a "Reconnect to the last active server first"
2558
2559 test_35b() { # bug 18674
2560         remote_mds || { skip "local MDS" && return 0; }
2561         setup
2562
2563         debugsave
2564         $LCTL set_param debug="ha"
2565         $LCTL clear
2566         MSG="conf-sanity.sh test_35b `date +%F%kh%Mm%Ss`"
2567         log "$MSG"
2568
2569         log "Set up a fake failnode for the MDS"
2570         FAKENID="127.0.0.2"
2571         local device=$(do_facet $SINGLEMDS "$LCTL get_param -n devices" |
2572                 awk '($3 ~ "mdt" && $4 ~ "MDT") { print $4 }' | head -1)
2573         do_facet mgs "$LCTL conf_param \
2574                       ${device}.failover.node=$(h2nettype $FAKENID)" ||
2575                 error "Set ${device}.failover.node=\
2576                        $(h2nettype $FAKENID) failed"
2577
2578         local at_max_saved=0
2579         # adaptive timeouts may prevent seeing the issue
2580         if at_is_enabled; then
2581                 at_max_saved=$(at_max_get mds)
2582                 at_max_set 0 mds client
2583         fi
2584
2585         mkdir $MOUNT/$tdir || error "mkdir $MOUNT/$tdir failed"
2586
2587         log "Injecting EBUSY on MDS"
2588         # Setting OBD_FAIL_MDS_RESEND=0x136
2589         do_facet $SINGLEMDS "$LCTL set_param fail_loc=0x80000136" ||
2590                 error "unable to set param fail_loc=0x80000136"
2591
2592         $LCTL set_param mdc.${FSNAME}*.stats=clear
2593
2594         log "Creating a test file and stat it"
2595         touch $MOUNT/$tdir/$tfile || error "touch $MOUNT/$tdir/$tfile failed"
2596         stat $MOUNT/$tdir/$tfile
2597
2598         log "Stop injecting EBUSY on MDS"
2599         do_facet $SINGLEMDS "$LCTL set_param fail_loc=0" ||
2600                 error "unable to set param fail_loc=0"
2601         rm -f $MOUNT/$tdir/$tfile || error "remove $MOUNT/$tdir/$tfile failed"
2602
2603         log "done"
2604         # restore adaptive timeout
2605         [ $at_max_saved -ne 0 ] && at_max_set $at_max_saved mds client
2606
2607         $LCTL dk $TMP/lustre-log-$TESTNAME.log
2608
2609         CONNCNT=$($LCTL get_param mdc.${FSNAME}*.stats |
2610                   awk '/mds_connect/{print $2}')
2611
2612         # retrieve from the log if the client has ever tried to
2613         # contact the fake server after the loss of connection
2614         FAILCONN=`awk "BEGIN {ret = 0;}
2615                        /import_select_connection.*${FSNAME}-MDT0000-mdc.* using connection/ {
2616                                 ret = 1;
2617                                 if (\\\$NF ~ /$FAKENID/) {
2618                                         ret = 2;
2619                                         exit;
2620                                 }
2621                        }
2622                        END {print ret}" $TMP/lustre-log-$TESTNAME.log`
2623
2624         [ "$FAILCONN" == "0" ] &&
2625                 error "The client reconnection has not been triggered"
2626         [ "$FAILCONN" == "2" ] &&
2627                 error "Primary server busy, client reconnect to failover failed"
2628
2629         # LU-290
2630         # When OBD_FAIL_MDS_RESEND is hit, we sleep for 2 * obd_timeout
2631         # Reconnects are supposed to be rate limited to one every 5s
2632         [ $CONNCNT -gt $((2 * $TIMEOUT / 5 + 1)) ] &&
2633                 error "Too many reconnects $CONNCNT"
2634
2635         cleanup || error "cleanup failed with $?"
2636         # remove nid settings
2637         writeconf_or_reformat
2638 }
2639 run_test 35b "Continue reconnection retries, if the active server is busy"
2640
2641 test_36() { # 12743
2642         [ $OSTCOUNT -lt 2 ] && skip_env "needs >= 2 OSTs" && return
2643
2644         [ "$ost_HOST" = "`hostname`" -o "$ost1_HOST" = "`hostname`" ] ||
2645                 { skip "remote OST" && return 0; }
2646
2647         local rc=0
2648         local FSNAME2=test1234
2649         local MDSDEV=$(mdsdevname ${SINGLEMDS//mds/})
2650
2651         [ -n "$ost1_HOST" ] && fs2ost_HOST=$ost1_HOST && fs3ost_HOST=$ost1_HOST
2652
2653         if [ -z "$fs2ost_DEV" -o -z "$fs2mds_DEV" -o -z "$fs3ost_DEV" ]; then
2654                 is_blkdev $SINGLEMDS $MDSDEV &&
2655                 skip_env "mixed loopback and real device not working" && return
2656         fi
2657
2658         local fs2mdsdev=$(mdsdevname 1_2)
2659         local fs2ostdev=$(ostdevname 1_2)
2660         local fs3ostdev=$(ostdevname 2_2)
2661         local fs2mdsvdev=$(mdsvdevname 1_2)
2662         local fs2ostvdev=$(ostvdevname 1_2)
2663         local fs3ostvdev=$(ostvdevname 2_2)
2664
2665         add fs2mds $(mkfs_opts mds1 ${fs2mdsdev}) --mgs --fsname=${FSNAME2} \
2666                 --reformat $fs2mdsdev $fs2mdsvdev || exit 10
2667         # XXX after we support non 4K disk blocksize in ldiskfs, specify a
2668         #     different one than the default value here.
2669         add fs2ost $(mkfs_opts ost1 ${fs2ostdev}) --mgsnode=$MGSNID \
2670                 --fsname=${FSNAME2} --reformat $fs2ostdev $fs2ostvdev || exit 10
2671         add fs3ost $(mkfs_opts ost2 ${fs3ostdev}) --mgsnode=$MGSNID \
2672                 --fsname=${FSNAME2} --reformat $fs3ostdev $fs3ostvdev || exit 10
2673
2674         start fs2mds $fs2mdsdev $MDS_MOUNT_OPTS
2675         start fs2ost $fs2ostdev $OST_MOUNT_OPTS
2676         start fs3ost $fs3ostdev $OST_MOUNT_OPTS
2677         mkdir -p $MOUNT2 || error "mkdir $MOUNT2 failed"
2678         $MOUNT_CMD $MGSNID:/${FSNAME2} $MOUNT2 || error "$MOUNT_CMD failed"
2679
2680         sleep 5 # until 11778 fixed
2681
2682         dd if=/dev/zero of=$MOUNT2/$tfile bs=1M count=7 || error "dd failed"
2683
2684         BKTOTAL=$($LCTL get_param -n obdfilter.*.kbytestotal |
2685                   awk 'BEGIN{total=0}; {total+=$1}; END{print total}')
2686         BKFREE=$($LCTL get_param -n obdfilter.*.kbytesfree |
2687                  awk 'BEGIN{free=0}; {free+=$1}; END{print free}')
2688         BKAVAIL=$($LCTL get_param -n obdfilter.*.kbytesavail |
2689                   awk 'BEGIN{avail=0}; {avail+=$1}; END{print avail}')
2690         STRING=$(df -P $MOUNT2 | tail -n 1 | awk '{print $2","$3","$4}')
2691         DFTOTAL=$(echo $STRING | cut -d, -f1)
2692         DFUSED=$(echo $STRING  | cut -d, -f2)
2693         DFAVAIL=$(echo $STRING | cut -d, -f3)
2694         DFFREE=$(($DFTOTAL - $DFUSED))
2695
2696         ALLOWANCE=$((64 * $OSTCOUNT))
2697
2698         if [ $DFTOTAL -lt $(($BKTOTAL - $ALLOWANCE)) ] ||
2699            [ $DFTOTAL -gt $(($BKTOTAL + $ALLOWANCE)) ] ; then
2700                 echo "**** FAIL: df total($DFTOTAL) mismatch OST total($BKTOTAL)"
2701                 rc=1
2702         fi
2703         if [ $DFFREE -lt $(($BKFREE - $ALLOWANCE)) ] ||
2704            [ $DFFREE -gt $(($BKFREE + $ALLOWANCE)) ] ; then
2705                 echo "**** FAIL: df free($DFFREE) mismatch OST free($BKFREE)"
2706                 rc=2
2707         fi
2708         if [ $DFAVAIL -lt $(($BKAVAIL - $ALLOWANCE)) ] ||
2709            [ $DFAVAIL -gt $(($BKAVAIL + $ALLOWANCE)) ] ; then
2710                 echo "**** FAIL: df avail($DFAVAIL) mismatch OST avail($BKAVAIL)"
2711                 rc=3
2712        fi
2713
2714         $UMOUNT $MOUNT2
2715         stop fs3ost -f || error "unable to stop OST3"
2716         stop fs2ost -f || error "unable to stop OST2"
2717         stop fs2mds -f || error "unable to stop second MDS"
2718         unload_modules_conf || error "unable unload modules"
2719         return $rc
2720 }
2721 run_test 36 "df report consistency on OSTs with different block size"
2722
2723 test_37() {
2724         local mntpt=$(facet_mntpt $SINGLEMDS)
2725         local mdsdev=$(mdsdevname ${SINGLEMDS//mds/})
2726         local mdsdev_sym="$TMP/sym_mdt.img"
2727         local opts=$MDS_MOUNT_OPTS
2728         local rc=0
2729
2730         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
2731                 skip "ldiskfs only test"
2732                 return
2733         fi
2734
2735         echo "MDS :     $mdsdev"
2736         echo "SYMLINK : $mdsdev_sym"
2737         do_facet $SINGLEMDS rm -f $mdsdev_sym
2738
2739         do_facet $SINGLEMDS ln -s $mdsdev $mdsdev_sym
2740
2741         echo "mount symlink device - $mdsdev_sym"
2742
2743         if ! do_facet $SINGLEMDS test -b $mdsdev; then
2744                 opts=$(csa_add "$opts" -o loop)
2745         fi
2746         mount_op=$(do_facet $SINGLEMDS mount -v -t lustre $opts \
2747                 $mdsdev_sym $mntpt 2>&1)
2748         rc=${PIPESTATUS[0]}
2749
2750         echo mount_op=$mount_op
2751
2752         do_facet $SINGLEMDS "$UMOUNT $mntpt && rm -f $mdsdev_sym"
2753
2754         if $(echo $mount_op | grep -q "unable to set tunable"); then
2755                 error "set tunables failed for symlink device"
2756         fi
2757
2758         [ $rc -eq 0 ] || error "mount symlink $mdsdev_sym failed! rc=$rc"
2759 }
2760 run_test 37 "verify set tunables works for symlink device"
2761
2762 test_38() { # bug 14222
2763         local fstype=$(facet_fstype $SINGLEMDS)
2764         local mntpt=$(facet_mntpt $SINGLEMDS)
2765
2766         setup
2767         # like runtests
2768         local COUNT=10
2769         local SRC="/etc /bin"
2770         local FILES=$(find $SRC -type f -mtime +1 | head -n $COUNT)
2771         log "copying $(echo $FILES | wc -w) files to $DIR/$tdir"
2772         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
2773         tar cf - $FILES | tar xf - -C $DIR/$tdir ||
2774                 error "copying $SRC to $DIR/$tdir"
2775         sync
2776         umount_client $MOUNT || error "umount_client $MOUNT failed"
2777         do_facet $SINGLEMDS "$LCTL get_param osp.*.prealloc_next_id"
2778         stop_mds || error "Unable to stop MDS"
2779         log "delete lov_objid file on MDS"
2780
2781         mount_fstype $SINGLEMDS || error "mount MDS failed (1)"
2782
2783         do_facet $SINGLEMDS "od -Ax -td8 $mntpt/lov_objid; rm $mntpt/lov_objid"
2784
2785         unmount_fstype $SINGLEMDS || error "umount failed (1)"
2786
2787         # check create in mds_lov_connect
2788         start_mds || error "unable to start MDS"
2789         mount_client $MOUNT || error "mount_client $MOUNT failed"
2790         for f in $FILES; do
2791                 [ $V ] && log "verifying $DIR/$tdir/$f"
2792                 diff -q $f $DIR/$tdir/$f || ERROR=y
2793         done
2794         do_facet $SINGLEMDS "$LCTL get_param osp.*.prealloc_next_id"
2795         if [ "$ERROR" = "y" ]; then
2796                 # check it's updates in sync
2797                 umount_client $MOUNT
2798                 stop_mds
2799                 mount_fstype $SIGNLEMDS
2800                 do_facet $SINGLEMDS "od -Ax -td8 $mntpt/lov_objid"
2801                 unmount_fstype $SINGLEMDS
2802                 error "old and new files are different after connect" || true
2803         fi
2804         touch $DIR/$tdir/f2 || error "f2 file create failed"
2805
2806         # check it's updates in sync
2807         umount_client $MOUNT || error "second umount_client $MOUNT failed"
2808         stop_mds
2809
2810         mount_fstype $SINGLEMDS || error "mount MDS failed (3)"
2811
2812         do_facet $SINGLEMDS "od -Ax -td8 $mntpt/lov_objid"
2813         do_facet $SINGLEMDS dd if=/dev/zero of=$mntpt/lov_objid.clear count=8
2814
2815         unmount_fstype $SINGLEMDS || error "umount failed (3)"
2816
2817         start_mds || error "unable to start MDS"
2818         mount_client $MOUNT || error "mount_client $MOUNT failed"
2819         for f in $FILES; do
2820                 [ $V ] && log "verifying $DIR/$tdir/$f"
2821                 diff -q $f $DIR/$tdir/$f || ERROR=y
2822         done
2823         touch $DIR/$tdir/f3 || error "f3 file create failed"
2824         do_facet $SINGLEMDS "$LCTL get_param osp.*.prealloc_next_id"
2825         umount_client $MOUNT || error "third umount_client $MOUNT failed"
2826         stop_mds
2827         mount_fstype $SINGLEMDS || error "mount MDS failed (4)"
2828         do_facet $SINGLEMDS "od -Ax -td8 $mntpt/lov_objid"
2829         unmount_fstype $SINGLEMDS || error "umount failed (4)"
2830
2831         [ "$ERROR" = "y" ] &&
2832                 error "old and new files are different after sync" || true
2833
2834         log "files compared the same"
2835         cleanup || error "cleanup failed with $?"
2836 }
2837 run_test 38 "MDS recreates missing lov_objid file from OST data"
2838
2839 test_39() {
2840         PTLDEBUG=+malloc
2841         setup
2842         cleanup || error "cleanup failed with $?"
2843         perl $SRCDIR/leak_finder.pl $TMP/debug 2>&1 | egrep '*** Leak:' &&
2844                 error "memory leak detected" || true
2845 }
2846 run_test 39 "leak_finder recognizes both LUSTRE and LNET malloc messages"
2847
2848 test_40() { # bug 15759
2849         start_ost || error "Unable to start OST1"
2850         #define OBD_FAIL_TGT_TOOMANY_THREADS     0x706
2851         do_facet $SINGLEMDS "$LCTL set_param fail_loc=0x80000706"
2852         start_mds
2853         cleanup || error "cleanup failed with rc $?"
2854 }
2855 run_test 40 "race during service thread startup"
2856
2857 test_41a() { #bug 14134
2858         if [ $(facet_fstype $SINGLEMDS) == ldiskfs ] &&
2859            ! do_facet $SINGLEMDS test -b $(mdsdevname 1); then
2860                 skip "Loop devices does not work with nosvc option"
2861                 return
2862         fi
2863
2864         combined_mgs_mds ||
2865                 { skip "needs combined MGT and MDT device" && return 0; }
2866
2867         start_mdt 1 -o nosvc -n
2868         if [ $MDSCOUNT -ge 2 ]; then
2869                 for num in $(seq 2 $MDSCOUNT); do
2870                         start_mdt $num || return
2871                 done
2872         fi
2873         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS
2874         start_mdt 1 -o nomgs,force
2875         mount_client $MOUNT || error "mount_client $MOUNT failed"
2876         sleep 5
2877
2878         echo "blah blah" > $MOUNT/$tfile
2879         cat $MOUNT/$tfile
2880
2881         umount_client $MOUNT || error "umount_client $MOUNT failed"
2882         stop ost1 -f || error "unable to stop OST1"
2883         stop_mds || error "Unable to stop MDS"
2884         stop_mds || error "Unable to stop MDS on second try"
2885 }
2886 run_test 41a "mount mds with --nosvc and --nomgs"
2887
2888 test_41b() {
2889         if [ $(facet_fstype $SINGLEMDS) == ldiskfs ] &&
2890            ! do_facet $SINGLEMDS test -b $(mdsdevname 1); then
2891                 skip "Loop devices does not work with nosvc option"
2892                 return
2893         fi
2894
2895         ! combined_mgs_mds && skip "needs combined mgs device" && return 0
2896
2897         stopall
2898         reformat
2899         local MDSDEV=$(mdsdevname ${SINGLEMDS//mds/})
2900
2901         start_mdt 1 -o nosvc -n
2902         if [ $MDSCOUNT -ge 2 ]; then
2903                 for num in $(seq 2 $MDSCOUNT); do
2904                         start_mdt $num || return
2905                 done
2906         fi
2907         start_ost || error "Unable to start OST1"
2908         start_mdt 1 -o nomgs,force
2909         mount_client $MOUNT || error "mount_client $MOUNT failed"
2910         sleep 5
2911
2912         echo "blah blah" > $MOUNT/$tfile
2913         cat $MOUNT/$tfile || error "cat $MOUNT/$tfile failed"
2914
2915         umount_client $MOUNT -f || error "umount_client $MOUNT failed"
2916         stop_ost || error "Unable to stop OST1"
2917         stop_mds || error "Unable to stop MDS"
2918         stop_mds || error "Unable to stop MDS on second try"
2919 }
2920 run_test 41b "mount mds with --nosvc and --nomgs on first mount"
2921
2922 test_41c() {
2923         local server_version=$(lustre_version_code $SINGLEMDS)
2924         local oss_list=$(comma_list $(osts_nodes))
2925
2926         [[ $server_version -ge $(version_code 2.6.52) ]] ||
2927         [[ $server_version -ge $(version_code 2.5.26) &&
2928            $server_version -lt $(version_code 2.5.50) ]] ||
2929         [[ $server_version -ge $(version_code 2.5.4) &&
2930            $server_version -lt $(version_code 2.5.11) ]] ||
2931                 { skip "Need MDS version 2.5.4+ or 2.5.26+ or 2.6.52+"; return; }
2932
2933         # ensure mds1 ost1 have been created even if running sub-test standalone
2934         cleanup
2935         setup
2936         cleanup || error "cleanup failed"
2937
2938         # using directly mount command instead of start() function to avoid
2939         # any side effect of // with others/externals tools/features
2940         # ("zpool import", ...)
2941
2942         # MDT concurrent start
2943
2944         LOAD_MODULES_REMOTE=true load_modules
2945         do_facet $SINGLEMDS "lsmod | grep -q libcfs" ||
2946                 error "MDT concurrent start: libcfs module not loaded"
2947
2948         local mds1dev=$(mdsdevname 1)
2949         local mds1mnt=$(facet_mntpt mds1)
2950         local mds1fstype=$(facet_fstype mds1)
2951         local mds1opts=$MDS_MOUNT_OPTS
2952
2953         if [ $mds1fstype == ldiskfs ] &&
2954            ! do_facet mds1 test -b $mds1dev; then
2955                 mds1opts=$(csa_add "$mds1opts" -o loop)
2956         fi
2957         if [[ $mds1fstype == zfs ]]; then
2958                 import_zpool mds1 || return ${PIPESTATUS[0]}
2959         fi
2960
2961         #define OBD_FAIL_TGT_MOUNT_RACE 0x716
2962         do_facet mds1 "$LCTL set_param fail_loc=0x80000716"
2963
2964         do_facet mds1 mount -t lustre $mds1dev $mds1mnt $mds1opts &
2965         local pid=$!
2966
2967         do_facet mds1 mount -t lustre $mds1dev $mds1mnt $mds1opts
2968         local rc2=$?
2969         wait $pid
2970         local rc=$?
2971         do_facet mds1 "$LCTL set_param fail_loc=0x0"
2972         if [ $rc -eq 0 ] && [ $rc2 -ne 0 ]; then
2973                 echo "1st MDT start succeed"
2974                 echo "2nd MDT start failed with $rc2"
2975         elif [ $rc2 -eq 0 ] && [ $rc -ne 0 ]; then
2976                 echo "1st MDT start failed with $rc"
2977                 echo "2nd MDT start succeed"
2978         else
2979                 stop mds1 -f
2980                 error "unexpected concurrent MDT mounts result, rc=$rc rc2=$rc2"
2981         fi
2982
2983         if [ $MDSCOUNT -ge 2 ]; then
2984                 for num in $(seq 2 $MDSCOUNT); do
2985                         start_mdt $num || return
2986                 done
2987         fi
2988
2989         # OST concurrent start
2990
2991         do_rpc_nodes $oss_list "lsmod | grep -q libcfs" ||
2992                 error "OST concurrent start: libcfs module not loaded"
2993
2994         local ost1dev=$(ostdevname 1)
2995         local ost1mnt=$(facet_mntpt ost1)
2996         local ost1fstype=$(facet_fstype ost1)
2997         local ost1opts=$OST_MOUNT_OPTS
2998
2999         if [ $ost1fstype == ldiskfs ] &&
3000            ! do_facet ost1 test -b $ost1dev; then
3001                 ost1opts=$(csa_add "$ost1opts" -o loop)
3002         fi
3003         if [[ $ost1fstype == zfs ]]; then
3004                 import_zpool ost1 || return ${PIPESTATUS[0]}
3005         fi
3006
3007         #define OBD_FAIL_TGT_MOUNT_RACE 0x716
3008         do_facet ost1 "$LCTL set_param fail_loc=0x80000716"
3009
3010         do_facet ost1 mount -t lustre $ost1dev $ost1mnt $ost1opts &
3011         pid=$!
3012
3013         do_facet ost1 mount -t lustre $ost1dev $ost1mnt $ost1opts
3014         rc2=$?
3015         wait $pid
3016         rc=$?
3017         do_facet ost1 "$LCTL set_param fail_loc=0x0"
3018         if [ $rc -eq 0 ] && [ $rc2 -ne 0 ]; then
3019                 echo "1st OST start succeed"
3020                 echo "2nd OST start failed with $rc2"
3021         elif [ $rc2 -eq 0 ] && [ $rc -ne 0 ]; then
3022                 echo "1st OST start failed with $rc"
3023                 echo "2nd OST start succeed"
3024         else
3025                 stop_mds -f
3026                 stop ost1 -f
3027                 error "unexpected concurrent OST mounts result, rc=$rc rc2=$rc2"
3028         fi
3029         # cleanup
3030         stop_mds
3031         stop ost1 -f
3032
3033         # verify everything ok
3034         start_mds
3035         if [ $? != 0 ]
3036         then
3037                 stop_mds
3038                 error "MDT(s) start failed"
3039         fi
3040
3041         start_ost
3042         if [ $? != 0 ]
3043         then
3044                 stop_mds
3045                 stop ost1 -f
3046                 error "OST(s) start failed"
3047         fi
3048
3049         mount_client $MOUNT
3050         if [ $? != 0 ]
3051         then
3052                 stop_mds
3053                 stop ost1 -f
3054                 error "client start failed"
3055         fi
3056         check_mount
3057         if [ $? != 0 ]
3058         then
3059                 stop_mds
3060                 stop ost1 -f
3061                 error "client mount failed"
3062         fi
3063         cleanup
3064 }
3065 run_test 41c "concurrent mounts of MDT/OST should all fail but one"
3066
3067 test_42() { #bug 14693
3068         setup
3069         check_mount || error "client was not mounted"
3070
3071         do_facet mgs $LCTL conf_param $FSNAME.llite.some_wrong_param=10
3072         umount_client $MOUNT ||
3073                 error "unmounting client failed with invalid llite param"
3074         mount_client $MOUNT ||
3075                 error "mounting client failed with invalid llite param"
3076
3077         do_facet mgs $LCTL conf_param $FSNAME.sys.some_wrong_param=20
3078         cleanup || error "stopping $FSNAME failed with invalid sys param"
3079         setup
3080         check_mount || error "client was not mounted with invalid sys param"
3081         cleanup || error "stopping $FSNAME failed with invalid sys param"
3082 }
3083 run_test 42 "allow client/server mount/unmount with invalid config param"
3084
3085 test_43a() {
3086         [[ $(lustre_version_code mgs) -ge $(version_code 2.5.58) ]] ||
3087                 { skip "Need MDS version at least 2.5.58" && return 0; }
3088         [ $UID -ne 0 -o $RUNAS_ID -eq 0 ] && skip_env "run as root"
3089
3090         ID1=${ID1:-501}
3091         USER1=$(getent passwd | grep :$ID1:$ID1: | cut -d: -f1)
3092         [ -z "$USER1" ] && skip_env "missing user with uid=$ID1 gid=$ID1" &&
3093                 return
3094
3095         setup
3096         chmod ugo+x $DIR || error "chmod 0 failed"
3097         set_conf_param_and_check mds1                                   \
3098                 "$LCTL get_param -n mdt.$FSNAME-MDT0000.root_squash"    \
3099                 "$FSNAME.mdt.root_squash"                               \
3100                 "0:0"
3101         wait_update $HOSTNAME                                           \
3102                 "$LCTL get_param -n llite.${FSNAME}*.root_squash"       \
3103                 "0:0" ||
3104                 error "check llite root_squash failed!"
3105         set_conf_param_and_check mds1                                   \
3106                 "$LCTL get_param -n mdt.$FSNAME-MDT0000.nosquash_nids"  \
3107                 "$FSNAME.mdt.nosquash_nids"                             \
3108                 "NONE"
3109         wait_update $HOSTNAME                                           \
3110                 "$LCTL get_param -n llite.${FSNAME}*.nosquash_nids"     \
3111                 "NONE" ||
3112                 error "check llite nosquash_nids failed!"
3113
3114     #
3115     # create set of test files
3116     #
3117     echo "111" > $DIR/$tfile-userfile || error "write 1 failed"
3118     chmod go-rw $DIR/$tfile-userfile  || error "chmod 1 failed"
3119     chown $RUNAS_ID.$RUNAS_ID $DIR/$tfile-userfile || error "chown failed"
3120
3121     echo "222" > $DIR/$tfile-rootfile || error "write 2 failed"
3122     chmod go-rw $DIR/$tfile-rootfile  || error "chmod 2 faield"
3123
3124         mkdir $DIR/$tdir-rootdir || error "mkdir failed"
3125         chmod go-rwx $DIR/$tdir-rootdir || error "chmod 3 failed"
3126         touch $DIR/$tdir-rootdir/tfile-1 || error "touch failed"
3127
3128         echo "777" > $DIR/$tfile-user1file || error "write 7 failed"
3129         chmod go-rw $DIR/$tfile-user1file || error "chmod 7 failed"
3130         chown $ID1.$ID1 $DIR/$tfile-user1file || error "chown failed"
3131
3132         #
3133         # check root_squash:
3134         #   set root squash UID:GID to RUNAS_ID
3135         #   root should be able to access only files owned by RUNAS_ID
3136         #
3137         set_conf_param_and_check mds1                                   \
3138                 "$LCTL get_param -n mdt.$FSNAME-MDT0000.root_squash"    \
3139                 "$FSNAME.mdt.root_squash"                               \
3140                 "$RUNAS_ID:$RUNAS_ID"
3141         wait_update $HOSTNAME                                           \
3142                 "$LCTL get_param -n llite.${FSNAME}*.root_squash"       \
3143                 "$RUNAS_ID:$RUNAS_ID" ||
3144                 error "check llite root_squash failed!"
3145
3146         ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tfile-userfile)
3147         dd if=$DIR/$tfile-userfile 1>/dev/null 2>/dev/null ||
3148                 error "$ST: root read permission is denied"
3149         echo "$ST: root read permission is granted - ok"
3150
3151         echo "444" |
3152         dd conv=notrunc of=$DIR/$tfile-userfile 1>/dev/null 2>/dev/null ||
3153                 error "$ST: root write permission is denied"
3154         echo "$ST: root write permission is granted - ok"
3155
3156         ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tfile-rootfile)
3157         dd if=$DIR/$tfile-rootfile 1>/dev/null 2>/dev/null &&
3158                 error "$ST: root read permission is granted"
3159         echo "$ST: root read permission is denied - ok"
3160
3161         echo "555" |
3162         dd conv=notrunc of=$DIR/$tfile-rootfile 1>/dev/null 2>/dev/null &&
3163                 error "$ST: root write permission is granted"
3164         echo "$ST: root write permission is denied - ok"
3165
3166         ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tdir-rootdir)
3167                 rm $DIR/$tdir-rootdir/tfile-1 1>/dev/null 2>/dev/null &&
3168                         error "$ST: root unlink permission is granted"
3169         echo "$ST: root unlink permission is denied - ok"
3170
3171         touch $DIR/tdir-rootdir/tfile-2 1>/dev/null 2>/dev/null &&
3172                 error "$ST: root create permission is granted"
3173         echo "$ST: root create permission is denied - ok"
3174
3175         # LU-1778
3176         # check root_squash is enforced independently
3177         # of client cache content
3178         #
3179         # access file by USER1, keep access open
3180         # root should be denied access to user file
3181
3182         runas -u $ID1 tail -f $DIR/$tfile-user1file 1>/dev/null 2>&1 &
3183         pid=$!
3184         sleep 1
3185
3186         ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tfile-user1file)
3187         dd if=$DIR/$tfile-user1file 1>/dev/null 2>&1 &&
3188             { kill $pid; error "$ST: root read permission is granted"; }
3189         echo "$ST: root read permission is denied - ok"
3190
3191         echo "777" |
3192         dd conv=notrunc of=$DIR/$tfile-user1file 1>/dev/null 2>&1 &&
3193             { kill $pid; error "$ST: root write permission is granted"; }
3194         echo "$ST: root write permission is denied - ok"
3195
3196         kill $pid
3197         wait $pid
3198
3199         #
3200         # check nosquash_nids:
3201         #   put client's NID into nosquash_nids list,
3202         #   root should be able to access root file after that
3203         #
3204         local NIDLIST=$($LCTL list_nids all | tr '\n' ' ')
3205         NIDLIST="2@gni $NIDLIST 192.168.0.[2,10]@tcp"
3206         NIDLIST=$(echo $NIDLIST | tr -s ' ' ' ')
3207         set_conf_param_and_check mds1                                   \
3208                 "$LCTL get_param -n mdt.$FSNAME-MDT0000.nosquash_nids"  \
3209                 "$FSNAME-MDTall.mdt.nosquash_nids"                      \
3210                 "$NIDLIST"
3211         wait_update $HOSTNAME                                           \
3212                 "$LCTL get_param -n llite.${FSNAME}*.nosquash_nids"     \
3213                 "$NIDLIST" ||
3214                 error "check llite nosquash_nids failed!"
3215
3216         ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tfile-rootfile)
3217         dd if=$DIR/$tfile-rootfile 1>/dev/null 2>/dev/null ||
3218                 error "$ST: root read permission is denied"
3219         echo "$ST: root read permission is granted - ok"
3220
3221         echo "666" |
3222         dd conv=notrunc of=$DIR/$tfile-rootfile 1>/dev/null 2>/dev/null ||
3223                 error "$ST: root write permission is denied"
3224         echo "$ST: root write permission is granted - ok"
3225
3226         ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tdir-rootdir)
3227         rm $DIR/$tdir-rootdir/tfile-1 ||
3228                 error "$ST: root unlink permission is denied"
3229         echo "$ST: root unlink permission is granted - ok"
3230         touch $DIR/$tdir-rootdir/tfile-2 ||
3231                 error "$ST: root create permission is denied"
3232         echo "$ST: root create permission is granted - ok"
3233         cleanup || error "cleanup failed with $?"
3234 }
3235 run_test 43a "check root_squash and nosquash_nids"
3236
3237 test_43b() { # LU-5690
3238         [[ $(lustre_version_code mgs) -ge $(version_code 2.7.62) ]] ||
3239                 { skip "Need MGS version 2.7.62+"; return; }
3240
3241         if [[ -z "$fs2mds_DEV" ]]; then
3242                 is_blkdev $SINGLEMDS $(mdsdevname ${SINGLEMDS//mds/}) &&
3243                 skip_env "mixed loopback and real device not working" && return
3244         fi
3245
3246         local fs2mdsdev=$(mdsdevname 1_2)
3247         local fs2mdsvdev=$(mdsvdevname 1_2)
3248
3249         # temporarily use fs2mds as fs2mgs
3250         local fs2mgs=fs2mds
3251         local fs2mgsdev=$fs2mdsdev
3252         local fs2mgsvdev=$fs2mdsvdev
3253
3254         local fsname=test1234
3255
3256         load_module llite/lustre
3257         local client_ip=$(host_nids_address $HOSTNAME $NETTYPE)
3258         local host=${client_ip//*./}
3259         local net=${client_ip/%$host/}
3260         local nosquash_nids=$(h2nettype $net[$host,$host,$host])
3261
3262         add $fs2mgs $(mkfs_opts mgs $fs2mgsdev) --fsname=$fsname \
3263                 --param mdt.root_squash=$RUNAS_ID:$RUNAS_ID \
3264                 --param mdt.nosquash_nids=$nosquash_nids \
3265                 --reformat $fs2mgsdev $fs2mgsvdev || error "add fs2mgs failed"
3266         start $fs2mgs $fs2mgsdev $MGS_MOUNT_OPTS  || error "start fs2mgs failed"
3267         stop $fs2mgs -f || error "stop fs2mgs failed"
3268 }
3269 run_test 43b "parse nosquash_nids with commas in expr_list"
3270
3271 umount_client $MOUNT
3272 cleanup_nocli
3273
3274 test_44() { # 16317
3275         setup
3276         check_mount || error "check_mount"
3277         UUID=$($LCTL get_param llite.${FSNAME}*.uuid | cut -d= -f2)
3278         STATS_FOUND=no
3279         UUIDS=$(do_facet $SINGLEMDS "$LCTL get_param mdt.${FSNAME}*.exports.*.uuid")
3280         for VAL in $UUIDS; do
3281                 NID=$(echo $VAL | cut -d= -f1)
3282                 CLUUID=$(echo $VAL | cut -d= -f2)
3283                 [ "$UUID" = "$CLUUID" ] && STATS_FOUND=yes && break
3284         done
3285         [ "$STATS_FOUND" = "no" ] && error "stats not found for client"
3286         cleanup || error "cleanup failed with $?"
3287 }
3288 run_test 44 "mounted client proc entry exists"
3289
3290 test_45() { #17310
3291         setup
3292         check_mount || error "check_mount"
3293         stop_mds || error "Unable to stop MDS"
3294         df -h $MOUNT &
3295         log "sleep 60 sec"
3296         sleep 60
3297         #define OBD_FAIL_PTLRPC_LONG_REPL_UNLINK        0x50f
3298         do_facet client "$LCTL set_param fail_loc=0x8000050f"
3299         log "sleep 10 sec"
3300         sleep 10
3301         manual_umount_client --force || error "manual_umount_client failed"
3302         do_facet client "$LCTL set_param fail_loc=0x0"
3303         start_mds || error "unable to start MDS"
3304         mount_client $MOUNT || error "mount_client $MOUNT failed"
3305         cleanup || error "cleanup failed with $?"
3306 }
3307 run_test 45 "long unlink handling in ptlrpcd"
3308
3309 cleanup_46a() {
3310         trap 0
3311         local rc=0
3312         local count=$1
3313
3314         umount_client $MOUNT2 || rc=$?
3315         umount_client $MOUNT || rc=$?
3316         while [ $count -gt 0 ]; do
3317                 stop ost${count} -f || rc=$?
3318                 let count=count-1
3319         done
3320         stop_mds || rc=$?
3321         cleanup_nocli || rc=$?
3322         #writeconf to remove all ost2 traces for subsequent tests
3323         writeconf_or_reformat
3324         return $rc
3325 }
3326
3327 test_46a() {
3328         echo "Testing with $OSTCOUNT OSTs"
3329         reformat_and_config
3330         start_mds || error "unable to start MDS"
3331         #first client should see only one ost
3332         start_ost || error "Unable to start OST1"
3333         wait_osc_import_state mds ost FULL
3334         #start_client
3335         mount_client $MOUNT || error "mount_client $MOUNT failed"
3336         trap "cleanup_46a $OSTCOUNT" EXIT ERR
3337
3338         local i
3339         for (( i=2; i<=$OSTCOUNT; i++ )); do
3340                 start ost$i $(ostdevname $i) $OST_MOUNT_OPTS ||
3341                         error "start_ost$i $(ostdevname $i) failed"
3342         done
3343
3344         # wait until osts in sync
3345         for (( i=2; i<=$OSTCOUNT; i++ )); do
3346             wait_osc_import_state mds ost$i FULL
3347             wait_osc_import_state client ost$i FULL
3348         done
3349
3350         #second client see all ost's
3351
3352         mount_client $MOUNT2 || error "mount_client failed"
3353         $SETSTRIPE -c -1 $MOUNT2 || error "$SETSTRIPE -c -1 $MOUNT2 failed"
3354         $GETSTRIPE $MOUNT2 || error "$GETSTRIPE $MOUNT2 failed"
3355
3356         echo "ok" > $MOUNT2/widestripe
3357         $GETSTRIPE $MOUNT2/widestripe ||
3358                 error "$GETSTRIPE $MOUNT2/widestripe failed"
3359         # fill acl buffer for avoid expand lsm to them
3360         awk -F : '{if (FNR < 25) { print "u:"$1":rwx" }}' /etc/passwd |
3361                 while read acl; do
3362             setfacl -m $acl $MOUNT2/widestripe
3363         done
3364
3365         # will be deadlock
3366         stat $MOUNT/widestripe || error "stat $MOUNT/widestripe failed"
3367
3368         cleanup_46a $OSTCOUNT || error "cleanup_46a failed"
3369 }
3370 run_test 46a "handle ost additional - wide striped file"
3371
3372 test_47() { #17674
3373         reformat
3374         setup_noconfig
3375         check_mount || error "check_mount failed"
3376         $LCTL set_param ldlm.namespaces.$FSNAME-*-*-*.lru_size=100
3377
3378         local lru_size=[]
3379         local count=0
3380         for ns in $($LCTL get_param ldlm.namespaces.$FSNAME-*-*-*.lru_size); do
3381             if echo $ns | grep "MDT[[:digit:]]*"; then
3382                 continue
3383             fi
3384             lrs=$(echo $ns | sed 's/.*lru_size=//')
3385             lru_size[count]=$lrs
3386             let count=count+1
3387         done
3388
3389         facet_failover ost1
3390         facet_failover $SINGLEMDS
3391         client_up || error "client_up failed"
3392
3393         count=0
3394         for ns in $($LCTL get_param ldlm.namespaces.$FSNAME-*-*-*.lru_size); do
3395             if echo $ns | grep "MDT[[:digit:]]*"; then
3396                 continue
3397             fi
3398             lrs=$(echo $ns | sed 's/.*lru_size=//')
3399             if ! test "$lrs" -eq "${lru_size[count]}"; then
3400                 n=$(echo $ns | sed -e 's/ldlm.namespaces.//' -e 's/.lru_size=.*//')
3401                 error "$n has lost lru_size: $lrs vs. ${lru_size[count]}"
3402             fi
3403             let count=count+1
3404         done
3405
3406         cleanup || error "cleanup failed with $?"
3407 }
3408 run_test 47 "server restart does not make client loss lru_resize settings"
3409
3410 cleanup_48() {
3411         trap 0
3412
3413         # reformat after this test is needed - if the test fails,
3414         # we will have unkillable file at FS
3415         reformat_and_config
3416 }
3417
3418 test_48() { # bz-17636 LU-7473
3419         local count
3420
3421         setup_noconfig
3422         check_mount || error "check_mount failed"
3423
3424         $SETSTRIPE -c -1 $MOUNT || error "$SETSTRIPE -c -1 $MOUNT failed"
3425         $GETSTRIPE $MOUNT || error "$GETSTRIPE $MOUNT failed"
3426
3427         echo "ok" > $MOUNT/widestripe
3428         $GETSTRIPE $MOUNT/widestripe ||
3429                 error "$GETSTRIPE $MOUNT/widestripe failed"
3430
3431         # In the future, we may introduce more EAs, such as selinux, enlarged
3432         # LOV EA, and so on. These EA will use some EA space that is shared by
3433         # ACL entries. So here we only check some reasonable ACL entries count,
3434         # instead of the max number that is calculated from the max_ea_size.
3435         if [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.57) ];
3436         then
3437                 count=28        # hard coded of RPC protocol
3438         elif [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
3439                 count=4000      # max_num 4091 max_ea_size = 32768
3440         elif ! large_xattr_enabled; then
3441                 count=450       # max_num 497 max_ea_size = 4012
3442         else
3443                 count=4500      # max_num 8187 max_ea_size = 1048492
3444                                 # not create too much (>5000) to save test time
3445         fi
3446
3447         echo "It is expected to hold at least $count ACL entries"
3448         trap cleanup_48 EXIT ERR
3449         for ((i = 0; i < $count; i++)) do
3450                 setfacl -m u:$((i + 100)):rw $MOUNT/widestripe ||
3451                         error "Fail to setfacl for $MOUNT/widestripe at $i"
3452         done
3453
3454         cancel_lru_locks mdc
3455         stat $MOUNT/widestripe || error "stat $MOUNT/widestripe failed"
3456         local r_count=$(getfacl $MOUNT/widestripe | grep "user:" | wc -l)
3457         count=$((count + 1)) # for the entry "user::rw-"
3458
3459         [ $count -eq $r_count ] ||
3460                 error "Expected ACL entries $count, but got $r_count"
3461
3462         cleanup_48
3463 }
3464 run_test 48 "too many acls on file"
3465
3466 # check PARAM_SYS_LDLM_TIMEOUT option of MKFS.LUSTRE
3467 test_49a() { # bug 17710
3468         local timeout_orig=$TIMEOUT
3469         local ldlm_timeout_orig=$LDLM_TIMEOUT
3470         local LOCAL_TIMEOUT=20
3471
3472         LDLM_TIMEOUT=$LOCAL_TIMEOUT
3473         TIMEOUT=$LOCAL_TIMEOUT
3474
3475         reformat
3476         setup_noconfig
3477         check_mount || error "client mount failed"
3478
3479         echo "check ldlm_timout..."
3480         local LDLM_MDS="$(do_facet $SINGLEMDS $LCTL get_param -n ldlm_timeout)"
3481         local LDLM_OST1="$(do_facet ost1 $LCTL get_param -n ldlm_timeout)"
3482         local LDLM_CLIENT="$(do_facet client $LCTL get_param -n ldlm_timeout)"
3483
3484         if [ $LDLM_MDS -ne $LDLM_OST1 -o $LDLM_MDS -ne $LDLM_CLIENT ]; then
3485                 error "Different LDLM_TIMEOUT:$LDLM_MDS $LDLM_OST1 $LDLM_CLIENT"
3486         fi
3487
3488         if [ $LDLM_MDS -ne $((LOCAL_TIMEOUT / 3)) ]; then
3489                 error "LDLM_TIMEOUT($LDLM_MDS) is not $((LOCAL_TIMEOUT / 3))"
3490         fi
3491
3492         umount_client $MOUNT || error "umount_client $MOUNT failed"
3493         stop_ost || error "problem stopping OSS"
3494         stop_mds || error "problem stopping MDS"
3495
3496         LDLM_TIMEOUT=$ldlm_timeout_orig
3497         TIMEOUT=$timeout_orig
3498 }
3499 run_test 49a "check PARAM_SYS_LDLM_TIMEOUT option of mkfs.lustre"
3500
3501 test_49b() { # bug 17710
3502         local timeout_orig=$TIMEOUT
3503         local ldlm_timeout_orig=$LDLM_TIMEOUT
3504         local LOCAL_TIMEOUT=20
3505
3506         LDLM_TIMEOUT=$((LOCAL_TIMEOUT - 1))
3507         TIMEOUT=$LOCAL_TIMEOUT
3508
3509         reformat
3510         setup_noconfig
3511         check_mount || error "client mount failed"
3512
3513         local LDLM_MDS="$(do_facet $SINGLEMDS $LCTL get_param -n ldlm_timeout)"
3514         local LDLM_OST1="$(do_facet ost1 $LCTL get_param -n ldlm_timeout)"
3515         local LDLM_CLIENT="$(do_facet client $LCTL get_param -n ldlm_timeout)"
3516
3517         if [ $LDLM_MDS -ne $LDLM_OST1 -o $LDLM_MDS -ne $LDLM_CLIENT ]; then
3518                 error "Different LDLM_TIMEOUT:$LDLM_MDS $LDLM_OST1 $LDLM_CLIENT"
3519         fi
3520
3521         if [ $LDLM_MDS -ne $((LOCAL_TIMEOUT - 1)) ]; then
3522                 error "LDLM_TIMEOUT($LDLM_MDS) is not $((LOCAL_TIMEOUT - 1))"
3523         fi
3524
3525         cleanup || error "cleanup failed"
3526
3527         LDLM_TIMEOUT=$ldlm_timeout_orig
3528         TIMEOUT=$timeout_orig
3529 }
3530 run_test 49b "check PARAM_SYS_LDLM_TIMEOUT option of mkfs.lustre"
3531
3532 lazystatfs() {
3533         # Test both statfs and lfs df and fail if either one fails
3534         multiop_bg_pause $1 f_
3535         RC1=$?
3536         PID=$!
3537         killall -USR1 multiop
3538         [ $RC1 -ne 0 ] && log "lazystatfs multiop failed"
3539         wait $PID || { RC1=$?; log "multiop return error "; }
3540
3541         $LFS df &
3542         PID=$!
3543         sleep 5
3544         kill -s 0 $PID
3545         RC2=$?
3546         if [ $RC2 -eq 0 ]; then
3547             kill -s 9 $PID
3548             log "lazystatfs df failed"
3549         fi
3550
3551         RC=0
3552         [[ $RC1 -ne 0 || $RC2 -eq 0 ]] && RC=1
3553         return $RC
3554 }
3555
3556 test_50a() {
3557         setup
3558         $LCTL set_param llite.$FSNAME-*.lazystatfs=1
3559         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
3560
3561         lazystatfs $MOUNT || error "lazystatfs failed but no down servers"
3562
3563         cleanup || error "cleanup failed with rc $?"
3564 }
3565 run_test 50a "lazystatfs all servers available"
3566
3567 test_50b() {
3568         setup
3569         $LCTL set_param llite.$FSNAME-*.lazystatfs=1
3570         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
3571
3572         # Wait for client to detect down OST
3573         stop_ost || error "Unable to stop OST1"
3574         wait_osc_import_state mds ost DISCONN
3575
3576         lazystatfs $MOUNT || error "lazystatfs should not return EIO"
3577
3578         umount_client $MOUNT || error "Unable to unmount client"
3579         stop_mds || error "Unable to stop MDS"
3580 }
3581 run_test 50b "lazystatfs all servers down"
3582
3583 test_50c() {
3584         start_mds || error "Unable to start MDS"
3585         start_ost || error "Unable to start OST1"
3586         start_ost2 || error "Unable to start OST2"
3587         mount_client $MOUNT || error "Unable to mount client"
3588         $LCTL set_param llite.$FSNAME-*.lazystatfs=1
3589         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
3590
3591         # Wait for client to detect down OST
3592         stop_ost || error "Unable to stop OST1"
3593         wait_osc_import_state mds ost DISCONN
3594         lazystatfs $MOUNT || error "lazystatfs failed with one down server"
3595
3596         umount_client $MOUNT || error "Unable to unmount client"
3597         stop_ost2 || error "Unable to stop OST2"
3598         stop_mds || error "Unable to stop MDS"
3599         #writeconf to remove all ost2 traces for subsequent tests
3600         writeconf_or_reformat
3601 }
3602 run_test 50c "lazystatfs one server down"
3603
3604 test_50d() {
3605         start_mds || error "Unable to start MDS"
3606         start_ost || error "Unable to start OST1"
3607         start_ost2 || error "Unable to start OST2"
3608         mount_client $MOUNT || error "Unable to mount client"
3609         $LCTL set_param llite.$FSNAME-*.lazystatfs=1
3610         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
3611
3612         # Issue the statfs during the window where the client still
3613         # belives the OST to be available but it is in fact down.
3614         # No failure just a statfs which hangs for a timeout interval.
3615         stop_ost || error "Unable to stop OST1"
3616         lazystatfs $MOUNT || error "lazystatfs failed with one down server"
3617
3618         umount_client $MOUNT || error "Unable to unmount client"
3619         stop_ost2 || error "Unable to stop OST2"
3620         stop_mds || error "Unable to stop MDS"
3621         #writeconf to remove all ost2 traces for subsequent tests
3622         writeconf_or_reformat
3623 }
3624 run_test 50d "lazystatfs client/server conn race"
3625
3626 test_50e() {
3627         local RC1
3628         local pid
3629
3630         reformat_and_config
3631         start_mds || error "Unable to start MDS"
3632         #first client should see only one ost
3633         start_ost || error "Unable to start OST1"
3634         wait_osc_import_state mds ost FULL
3635
3636         # Wait for client to detect down OST
3637         stop_ost || error "Unable to stop OST1"
3638         wait_osc_import_state mds ost DISCONN
3639
3640         mount_client $MOUNT || error "Unable to mount client"
3641         $LCTL set_param llite.$FSNAME-*.lazystatfs=0
3642
3643         multiop_bg_pause $MOUNT _f
3644         RC1=$?
3645         pid=$!
3646
3647         if [ $RC1 -ne 0 ]; then
3648                 log "multiop failed $RC1"
3649         else
3650             kill -USR1 $pid
3651             sleep $(( $TIMEOUT+1 ))
3652             kill -0 $pid
3653             [ $? -ne 0 ] && error "process isn't sleep"
3654             start_ost || error "Unable to start OST1"
3655             wait $pid || error "statfs failed"
3656         fi
3657
3658         umount_client $MOUNT || error "Unable to unmount client"
3659         stop_ost || error "Unable to stop OST1"
3660         stop_mds || error "Unable to stop MDS"
3661 }
3662 run_test 50e "normal statfs all servers down"
3663
3664 test_50f() {
3665         local RC1
3666         local pid
3667         CONN_PROC="osc.$FSNAME-OST0001-osc-[M]*.ost_server_uuid"
3668
3669         start_mds || error "Unable to start mds"
3670         #first client should see only one ost
3671         start_ost || error "Unable to start OST1"
3672         wait_osc_import_state mds ost FULL
3673
3674         start_ost2 || error "Unable to start OST2"
3675         wait_osc_import_state mds ost2 FULL
3676
3677         # Wait for client to detect down OST
3678         stop_ost2 || error "Unable to stop OST2"
3679
3680         wait_osc_import_state mds ost2 DISCONN
3681         mount_client $MOUNT || error "Unable to mount client"
3682         $LCTL set_param llite.$FSNAME-*.lazystatfs=0
3683
3684         multiop_bg_pause $MOUNT _f
3685         RC1=$?
3686         pid=$!
3687
3688         if [ $RC1 -ne 0 ]; then
3689                 log "lazystatfs multiop failed $RC1"
3690         else
3691             kill -USR1 $pid
3692             sleep $(( $TIMEOUT+1 ))
3693             kill -0 $pid
3694             [ $? -ne 0 ] && error "process isn't sleep"
3695             start_ost2 || error "Unable to start OST2"
3696             wait $pid || error "statfs failed"
3697             stop_ost2 || error "Unable to stop OST2"
3698         fi
3699
3700         umount_client $MOUNT -f || error "Unable to unmount client"
3701         stop_ost || error "Unable to stop OST1"
3702         stop_mds || error "Unable to stop MDS"
3703         #writeconf to remove all ost2 traces for subsequent tests
3704         writeconf_or_reformat
3705 }
3706 run_test 50f "normal statfs one server in down"
3707
3708 test_50g() {
3709         [ "$OSTCOUNT" -lt "2" ] && skip_env "needs >=2 OSTs" && return
3710         setup
3711         start_ost2 || error "Unable to start OST2"
3712         wait_osc_import_state mds ost2 FULL
3713         wait_osc_import_state client ost2 FULL
3714
3715         local PARAM="${FSNAME}-OST0001.osc.active"
3716
3717         $SETSTRIPE -c -1 $DIR/$tfile || error "$SETSTRIPE failed"
3718         do_facet mgs $LCTL conf_param $PARAM=0 ||
3719                 error "Unable to deactivate OST"
3720
3721         umount_client $MOUNT || error "Unable to unmount client"
3722         mount_client $MOUNT || error "Unable to mount client"
3723         # This df should not cause a panic
3724         df -k $MOUNT
3725
3726         do_facet mgs $LCTL conf_param $PARAM=1 || error "Unable to activate OST"
3727         rm -f $DIR/$tfile || error "unable to remove file $DIR/$tfile"
3728         umount_client $MOUNT || error "Unable to unmount client"
3729         stop_ost2 || error "Unable to stop OST2"
3730         stop_ost || error "Unable to stop OST1"
3731         stop_mds || error "Unable to stop MDS"
3732         #writeconf to remove all ost2 traces for subsequent tests
3733         writeconf_or_reformat
3734 }
3735 run_test 50g "deactivated OST should not cause panic"
3736
3737 # LU-642
3738 test_50h() {
3739         # prepare MDT/OST, make OSC inactive for OST1
3740         [ "$OSTCOUNT" -lt "2" ] && skip_env "needs >=2 OSTs" && return
3741
3742         [ $(facet_fstype ost1) == zfs ] && import_zpool ost1
3743         do_facet ost1 "$TUNEFS --param osc.active=0 `ostdevname 1`" ||
3744                 error "tunefs OST1 failed"
3745         start_mds  || error "Unable to start MDT"
3746         start_ost  || error "Unable to start OST1"
3747         start_ost2 || error "Unable to start OST2"
3748         mount_client $MOUNT || error "client start failed"
3749
3750         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
3751
3752         # activatate OSC for OST1
3753         local TEST="$LCTL get_param -n osc.${FSNAME}-OST0000-osc-[!M]*.active"
3754         set_conf_param_and_check client                                 \
3755                 "$TEST" "${FSNAME}-OST0000.osc.active" 1 ||
3756                 error "Unable to activate OST1"
3757
3758         mkdir $DIR/$tdir/2 || error "mkdir $DIR/$tdir/2 failed"
3759         $SETSTRIPE -c -1 -i 0 $DIR/$tdir/2 ||
3760                 error "$SETSTRIPE $DIR/$tdir/2 failed"
3761         sleep 1 && echo "create a file after OST1 is activated"
3762         # create some file
3763         createmany -o $DIR/$tdir/2/$tfile-%d 1
3764
3765         # check OSC import is working
3766         stat $DIR/$tdir/2/* >/dev/null 2>&1 ||
3767                 error "some OSC imports are still not connected"
3768
3769         # cleanup
3770         umount_client $MOUNT || error "Unable to umount client"
3771         stop_ost2 || error "Unable to stop OST2"
3772         cleanup_nocli || error "cleanup_nocli failed with $?"
3773 }
3774 run_test 50h "LU-642: activate deactivated OST"
3775
3776 test_50i() {
3777         # prepare MDT/OST, make OSC inactive for OST1
3778         [ "$MDSCOUNT" -lt "2" ] && skip_env "needs >= 2 MDTs" && return
3779
3780         load_modules
3781         [ $(facet_fstype mds2) == zfs ] && import_zpool mds2
3782         do_facet mds2 "$TUNEFS --param mdc.active=0 $(mdsdevname 2)" ||
3783                 error "tunefs MDT2 failed"
3784         start_mds  || error "Unable to start MDT"
3785         start_ost  || error "Unable to start OST1"
3786         start_ost2 || error "Unable to start OST2"
3787         mount_client $MOUNT || error "client start failed"
3788
3789         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
3790
3791         $LCTL conf_param ${FSNAME}-MDT0000.mdc.active=0 &&
3792                 error "deactive MDC0 succeeds"
3793         # activate MDC for MDT2
3794         local TEST="$LCTL get_param -n mdc.${FSNAME}-MDT0001-mdc-[!M]*.active"
3795         set_conf_param_and_check client                                 \
3796                 "$TEST" "${FSNAME}-MDT0001.mdc.active" 1 ||
3797                 error "Unable to activate MDT2"
3798
3799         wait_clients_import_state ${CLIENTS:-$HOSTNAME} mds2 FULL
3800         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.7.60) ]
3801         then
3802                 wait_dne_interconnect
3803         fi
3804         $LFS mkdir -i1 $DIR/$tdir/2 || error "mkdir $DIR/$tdir/2 failed"
3805         # create some file
3806         createmany -o $DIR/$tdir/2/$tfile-%d 1 || error "create files failed"
3807
3808         rm -rf $DIR/$tdir/2 || error "unlink dir failed"
3809
3810         # deactivate MDC for MDT2
3811         local TEST="$LCTL get_param -n mdc.${FSNAME}-MDT0001-mdc-[!M]*.active"
3812         set_conf_param_and_check client                                 \
3813                 "$TEST" "${FSNAME}-MDT0001.mdc.active" 0 ||
3814                 error "Unable to deactivate MDT2"
3815
3816         wait_osp_active mds ${FSNAME}-MDT0001 1 0
3817
3818         $LFS mkdir -i1 $DIR/$tdir/2 &&
3819                 error "mkdir $DIR/$tdir/2 succeeds after deactive MDT"
3820
3821         $LFS mkdir -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
3822                 error "mkdir $DIR/$tdir/striped_dir fails after deactive MDT2"
3823
3824         local stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir)
3825         [ $stripe_count -eq $((MDSCOUNT - 1)) ] ||
3826                 error "wrong $stripe_count != $((MDSCOUNT -1)) for striped_dir"
3827
3828         # cleanup
3829         umount_client $MOUNT || error "Unable to umount client"
3830         stop_mds
3831         stop_ost
3832         stop_ost 2
3833 }
3834 run_test 50i "activate deactivated MDT"
3835
3836 test_51() {
3837         local LOCAL_TIMEOUT=20
3838
3839         reformat
3840         setup_noconfig
3841         check_mount || error "check_mount failed"
3842
3843         mkdir $MOUNT/$tdir || error "mkdir $MOUNT/$tdir failed"
3844         $SETSTRIPE -c -1 $MOUNT/$tdir ||
3845                 error "$SETSTRIPE -c -1 $MOUNT/$tdir failed"
3846         #define OBD_FAIL_MDS_REINT_DELAY         0x142
3847         do_facet $SINGLEMDS "$LCTL set_param fail_loc=0x142"
3848         touch $MOUNT/$tdir/$tfile &
3849         local pid=$!
3850         sleep 2
3851         start_ost2 || error "Unable to start OST1"
3852         wait $pid
3853         stop_ost2 || error "Unable to stop OST1"
3854         umount_client $MOUNT -f || error “unmount $MOUNT failed”
3855         cleanup_nocli || error “stop server failed”
3856         #writeconf to remove all ost2 traces for subsequent tests
3857         writeconf_or_reformat
3858 }
3859 run_test 51 "Verify that mdt_reint handles RMF_MDT_MD correctly when an OST is added"
3860
3861 copy_files_xattrs()
3862 {
3863         local node=$1
3864         local dest=$2
3865         local xattrs=$3
3866         shift 3
3867
3868         do_node $node mkdir -p $dest
3869         [ $? -eq 0 ] || { error "Unable to create directory"; return 1; }
3870
3871         do_node $node  'tar cf - '$@' | tar xf - -C '$dest';
3872                         [ \"\${PIPESTATUS[*]}\" = \"0 0\" ] || exit 1'
3873         [ $? -eq 0 ] || { error "Unable to tar files"; return 2; }
3874
3875         do_node $node 'getfattr -d -m "[a-z]*\\." '$@' > '$xattrs
3876         [ $? -eq 0 ] || { error "Unable to read xattrs"; return 3; }
3877 }
3878
3879 diff_files_xattrs()
3880 {
3881         local node=$1
3882         local backup=$2
3883         local xattrs=$3
3884         shift 3
3885
3886         local backup2=${TMP}/backup2
3887
3888         do_node $node mkdir -p $backup2
3889         [ $? -eq 0 ] || { error "Unable to create directory"; return 1; }
3890
3891         do_node $node  'tar cf - '$@' | tar xf - -C '$backup2';
3892                         [ \"\${PIPESTATUS[*]}\" = \"0 0\" ] || exit 1'
3893         [ $? -eq 0 ] || { error "Unable to tar files to diff"; return 2; }
3894
3895         do_node $node "diff -rq $backup $backup2"
3896         [ $? -eq 0 ] || { error "contents differ"; return 3; }
3897
3898         local xattrs2=${TMP}/xattrs2
3899         do_node $node 'getfattr -d -m "[a-z]*\\." '$@' > '$xattrs2
3900         [ $? -eq 0 ] || { error "Unable to read xattrs to diff"; return 4; }
3901
3902         do_node $node "diff $xattrs $xattrs2"
3903         [ $? -eq 0 ] || { error "xattrs differ"; return 5; }
3904
3905         do_node $node "rm -rf $backup2 $xattrs2"
3906         [ $? -eq 0 ] || { error "Unable to delete temporary files"; return 6; }
3907 }
3908
3909 test_52() {
3910         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
3911                 skip "ldiskfs only test"
3912                 return
3913         fi
3914
3915         start_mds || error "Unable to start MDS"
3916         start_ost || error "Unable to start OST1"
3917         mount_client $MOUNT || error "Unable to mount client"
3918
3919         local nrfiles=8
3920         local ost1mnt=$(facet_mntpt ost1)
3921         local ost1node=$(facet_active_host ost1)
3922         local ost1tmp=$TMP/conf52
3923         local loop
3924
3925         mkdir $DIR/$tdir || error "Unable to create $DIR/$tdir"
3926         touch $TMP/modified_first || error "Unable to create temporary file"
3927         local mtime=$(stat -c %Y $TMP/modified_first)
3928         do_node $ost1node "mkdir -p $ost1tmp &&
3929                            touch -m -d @$mtime $ost1tmp/modified_first" ||
3930                 error "Unable to create temporary file"
3931         sleep 1
3932
3933         $SETSTRIPE -c -1 -S 1M $DIR/$tdir || error "$SETSTRIPE failed"
3934
3935         for (( i=0; i < nrfiles; i++ )); do
3936                 multiop $DIR/$tdir/$tfile-$i Ow1048576w1048576w524288c ||
3937                         error "multiop failed"
3938                 echo -n .
3939         done
3940         echo
3941
3942         # backup files
3943         echo backup files to $TMP/$tdir
3944         local files=$(find $DIR/$tdir -type f -newer $TMP/modified_first)
3945         copy_files_xattrs $(hostname) $TMP/$tdir $TMP/file_xattrs $files ||
3946                 error "Unable to copy files"
3947
3948         umount_client $MOUNT || error "Unable to umount client"
3949         stop_ost || error "Unable to stop ost1"
3950
3951         echo mount ost1 as ldiskfs
3952         do_node $ost1node mkdir -p $ost1mnt || error "Unable to create $ost1mnt"
3953         if ! do_node $ost1node test -b $ost1_dev; then
3954                 loop="-o loop"
3955         fi
3956         do_node $ost1node mount -t $(facet_fstype ost1) $loop $ost1_dev \
3957                 $ost1mnt ||
3958                 error "Unable to mount ost1 as ldiskfs"
3959
3960         # backup objects
3961         echo backup objects to $ost1tmp/objects
3962         local objects=$(do_node $ost1node 'find '$ost1mnt'/O/[0-9]* -type f'\
3963                 '-size +0 -newer '$ost1tmp'/modified_first -regex ".*\/[0-9]+"')
3964         copy_files_xattrs $ost1node $ost1tmp/objects $ost1tmp/object_xattrs \
3965                         $objects ||
3966                 error "Unable to copy objects"
3967
3968         # move objects to lost+found
3969         do_node $ost1node 'mv '$objects' '${ost1mnt}'/lost+found'
3970         [ $? -eq 0 ] || { error "Unable to move objects"; return 14; }
3971
3972         do_node $ost1node "umount $ost1mnt" ||
3973                 error "Unable to umount ost1 as ldiskfs"
3974
3975         start_ost || error "Unable to start OST1"
3976         mount_client $MOUNT || error "Unable to mount client"
3977
3978         local REPAIRED=$(do_node $ost1node "$LCTL get_param \
3979                          -n osd-ldiskfs.$FSNAME-OST0000.oi_scrub" |
3980                          awk '/^lf_repa[ri]*ed/ { print $2 }')
3981         [ $REPAIRED -gt 0 ] ||
3982                 error "Some entry under /lost+found should be repaired"
3983
3984         # compare files
3985         diff_files_xattrs $(hostname) $TMP/$tdir $TMP/file_xattrs $files ||
3986                 error "Unable to diff files"
3987
3988         rm -rf $TMP/$tdir $TMP/file_xattrs ||
3989                 error "Unable to delete temporary files"
3990         do_node $ost1node "rm -rf $ost1tmp" ||
3991                 error "Unable to delete temporary files"
3992         cleanup || error "cleanup failed with $?"
3993 }
3994 run_test 52 "check recovering objects from lost+found"
3995
3996 # Checks threads_min/max/started for some service
3997 #
3998 # Arguments: service name (OST or MDT), facet (e.g., ost1, $SINGLEMDS), and a
3999 # parameter pattern prefix like 'ost.*.ost'.
4000 thread_sanity() {
4001         local modname=$1
4002         local facet=$2
4003         local parampat=$3
4004         local opts=$4
4005         local basethr=$5
4006         local tmin
4007         local tmin2
4008         local tmax
4009         local tmax2
4010         local tstarted
4011         local paramp
4012         local msg="Insane $modname thread counts"
4013         local ncpts=$(check_cpt_number $facet)
4014         local nthrs
4015         shift 4
4016
4017         check_mount || return 41
4018
4019         # We need to expand $parampat, but it may match multiple parameters, so
4020         # we'll pick the first one
4021         if ! paramp=$(do_facet $facet "lctl get_param -N ${parampat}.threads_min"|head -1); then
4022                 error "Couldn't expand ${parampat}.threads_min parameter name"
4023                 return 22
4024         fi
4025
4026         # Remove the .threads_min part
4027         paramp=${paramp%.threads_min}
4028
4029         # Check for sanity in defaults
4030         tmin=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_min" ||
4031                echo 0)
4032         tmax=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_max" ||
4033                echo 0)
4034         tstarted=$(do_facet $facet "$LCTL get_param \
4035                                     -n ${paramp}.threads_started" || echo 0)
4036         lassert 23 "$msg (PDSH problems?)" '(($tstarted && $tmin && $tmax))' ||
4037                 return $?
4038         lassert 24 "$msg" '(($tstarted >= $tmin && $tstarted <= $tmax ))' ||
4039                 return $?
4040         nthrs=$(expr $tmax - $tmin)
4041         if [ $nthrs -lt $ncpts ]; then
4042                 nthrs=0
4043         else
4044                 nthrs=$ncpts
4045         fi
4046
4047         [ $tmin -eq $tmax -a $tmin -eq $tstarted ] &&
4048                 skip_env "module parameter forced $facet thread count" &&
4049                 tmin=3 && tmax=$((3 * tmax))
4050
4051         # Check that we can change min/max
4052         do_facet $facet "$LCTL set_param \
4053                          ${paramp}.threads_min=$((tmin + nthrs))"
4054         do_facet $facet "$LCTL set_param \
4055                          ${paramp}.threads_max=$((tmax - nthrs))"
4056         tmin2=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_min" ||
4057                 echo 0)
4058         tmax2=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_max" ||
4059                 echo 0)
4060         lassert 25 "$msg" '(($tmin2 == ($tmin + $nthrs) &&
4061                             $tmax2 == ($tmax - $nthrs)))' || return $?
4062
4063         # Check that we can set min/max to the same value
4064         tmin=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_min" ||
4065                echo 0)
4066         do_facet $facet "$LCTL set_param ${paramp}.threads_max=$tmin"
4067         tmin2=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_min" ||
4068                 echo 0)
4069         tmax2=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_max" ||
4070                 echo 0)
4071         lassert 26 "$msg" '(($tmin2 == $tmin && $tmax2 == $tmin))' || return $?
4072
4073         # Check that we can't set max < min
4074         do_facet $facet "$LCTL set_param ${paramp}.threads_max=$((tmin - 1))"
4075         tmin2=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_min" ||
4076                 echo 0)
4077         tmax2=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_max" ||
4078                 echo 0)
4079         lassert 27 "$msg" '(($tmin2 <= $tmax2))' || return $?
4080
4081         # We need to ensure that we get the module options desired; to do this
4082         # we set LOAD_MODULES_REMOTE=true and we call setmodopts below.
4083         LOAD_MODULES_REMOTE=true
4084         cleanup
4085         local oldvalue
4086         local newvalue="${opts}=$(expr $basethr \* $ncpts)"
4087         setmodopts -a $modname "$newvalue" oldvalue
4088
4089         setup
4090         check_mount || return 41
4091
4092         # Restore previous setting of MODOPTS_*
4093         setmodopts $modname "$oldvalue"
4094
4095         # Check that $opts took
4096         tmin=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_min")
4097         tmax=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_max")
4098         tstarted=$(do_facet $facet \
4099                    "$LCTL get_param -n ${paramp}.threads_started")
4100         lassert 28 "$msg" '(($tstarted >= $tmin && $tstarted <= $tmax ))' ||
4101                 return $?
4102         cleanup
4103
4104         setup
4105 }
4106
4107 test_53a() {
4108         setup
4109         thread_sanity OST ost1 'ost.*.ost' 'oss_num_threads' '16'
4110         cleanup || error "cleanup failed with rc $?"
4111 }
4112 run_test 53a "check OSS thread count params"
4113
4114 test_53b() {
4115         setup
4116         local mds=$(do_facet $SINGLEMDS "$LCTL get_param \
4117                                          -N mds.*.*.threads_max 2>/dev/null")
4118         if [ -z "$mds" ]; then
4119                 #running this on an old MDT
4120                 thread_sanity MDT $SINGLEMDS 'mdt.*.*.' 'mdt_num_threads' 16
4121         else
4122                 thread_sanity MDT $SINGLEMDS 'mds.*.*.' 'mds_num_threads' 16
4123         fi
4124         cleanup || error "cleanup failed with $?"
4125 }
4126 run_test 53b "check MDS thread count params"
4127
4128 test_54a() {
4129         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
4130                 skip "ldiskfs only test"
4131                 return
4132         fi
4133
4134         do_rpc_nodes $(facet_host ost1) run_llverdev $(ostdevname 1) -p ||
4135                 error "llverdev failed with rc=$?"
4136         reformat_and_config
4137 }
4138 run_test 54a "test llverdev and partial verify of device"
4139
4140 test_54b() {
4141         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
4142                 skip "ldiskfs only test"
4143                 return
4144         fi
4145
4146         setup
4147         run_llverfs $MOUNT -p || error "llverfs failed with rc=$?"
4148         cleanup || error "cleanup failed with rc=$?"
4149 }
4150 run_test 54b "test llverfs and partial verify of filesystem"
4151
4152 lov_objid_size()
4153 {
4154         local max_ost_index=$1
4155         echo -n $(((max_ost_index + 1) * 8))
4156 }
4157
4158 test_55() {
4159         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
4160                 skip "ldiskfs only test"
4161                 return
4162         fi
4163
4164         local mdsdev=$(mdsdevname 1)
4165         local mdsvdev=$(mdsvdevname 1)
4166
4167         for i in 1023 2048
4168         do
4169                 if ! combined_mgs_mds; then
4170                         stop_mgs || error "stopping MGS service failed"
4171                         format_mgs || error "formatting MGT failed"
4172                 fi
4173                 add mds1 $(mkfs_opts mds1 ${mdsdev}) --reformat $mdsdev \
4174                         $mdsvdev || exit 10
4175                 add ost1 $(mkfs_opts ost1 $(ostdevname 1)) --index=$i \
4176                         --reformat $(ostdevname 1) $(ostvdevname 1)
4177                 setup_noconfig
4178                 stopall
4179                 setup_noconfig
4180                 sync
4181
4182                 echo checking size of lov_objid for ost index $i
4183                 LOV_OBJID_SIZE=$(do_facet mds1 "$DEBUGFS -R 'stat lov_objid' $mdsdev 2>/dev/null" |
4184                                  grep ^User | awk -F 'Size: ' '{print $2}')
4185                 if [ "$LOV_OBJID_SIZE" != $(lov_objid_size $i) ]; then
4186                         error "lov_objid size has to be $(lov_objid_size $i), not $LOV_OBJID_SIZE"
4187                 else
4188                         echo ok, lov_objid size is correct: $LOV_OBJID_SIZE
4189                 fi
4190                 stopall
4191         done
4192
4193         reformat
4194 }
4195 run_test 55 "check lov_objid size"
4196
4197 test_56a() {
4198         local server_version=$(lustre_version_code $SINGLEMDS)
4199         local mds_journal_size_orig=$MDSJOURNALSIZE
4200         local n
4201
4202         MDSJOURNALSIZE=16
4203
4204         formatall
4205         add ost1 $(mkfs_opts ost1 $(ostdevname 1)) --index=10000 --reformat \
4206                 $(ostdevname 1) $(ostvdevname 1)
4207         add ost2 $(mkfs_opts ost2 $(ostdevname 2)) --index=1000 --reformat \
4208                 $(ostdevname 2) $(ostvdevname 2)
4209
4210         start_mgsmds
4211         start_ost || error "Unable to start first ost (idx 10000)"
4212         start_ost2 || error "Unable to start second ost (idx 1000)"
4213         mount_client $MOUNT || error "Unable to mount client"
4214         echo ok
4215         $LFS osts
4216
4217         if [[ $server_version -ge $(version_code 2.6.54) ]] ||
4218            [[ $server_version -ge $(version_code 2.5.4) &&
4219               $server_version -lt $(version_code 2.5.11) ]]; then
4220                 wait_osc_import_state mds ost1 FULL
4221                 wait_osc_import_state mds ost2 FULL
4222                 $SETSTRIPE --stripe-count=-1 $DIR/$tfile ||
4223                         error "Unable to setstripe $DIR/$tfile"
4224                 n=$($LFS getstripe --stripe-count $DIR/$tfile)
4225                 [ "$n" -eq 2 ] || error "Stripe count not two: $n"
4226                 rm $DIR/$tfile
4227         fi
4228
4229         stopall
4230         MDSJOURNALSIZE=$mds_journal_size_orig
4231         reformat
4232 }
4233 run_test 56a "check big OST indexes and out-of-index-order start"
4234
4235 cleanup_56b() {
4236         trap 0
4237
4238         umount_client $MOUNT -f || error "unmount client failed"
4239         stop mds1
4240         stop mds2
4241         stop mds3
4242         stopall
4243         reformat
4244 }
4245
4246 test_56b() {
4247         [ $MDSCOUNT -lt 3 ] && skip "needs >= 3 MDTs" && return
4248
4249         trap cleanup_56b EXIT RETURN ERR
4250         stopall
4251
4252         if ! combined_mgs_mds ; then
4253                 format_mgs
4254                 start_mgs
4255         fi
4256
4257         add mds1 $(mkfs_opts mds1 $(mdsdevname 1)) --index=0 --reformat \
4258                 $(mdsdevname 1) $(mdsvdevname 1)
4259         add mds2 $(mkfs_opts mds2 $(mdsdevname 2)) --index=1 --reformat \
4260                 $(mdsdevname 2) $(mdsvdevname 2)
4261         add mds3 $(mkfs_opts mds3 $(mdsdevname 3)) --index=1000 --reformat \
4262                 $(mdsdevname 3) $(mdsvdevname 3)
4263         format_ost 1
4264         format_ost 2
4265
4266         start_mdt 1 || error "MDT 1 (idx 0) start failed"
4267         start_mdt 2 || error "MDT 2 (idx 1) start failed"
4268         start_mdt 3 || error "MDT 3 (idx 1000) start failed"
4269         start_ost || error "Unable to start first ost"
4270         start_ost2 || error "Unable to start second ost"
4271
4272         do_nodes $(comma_list $(mdts_nodes)) \
4273                 "$LCTL set_param mdt.*.enable_remote_dir=1 \
4274                 mdt.*.enable_remote_dir_gid=-1"
4275
4276         mount_client $MOUNT || error "Unable to mount client"
4277
4278         $LFS mkdir -c3 $MOUNT/$tdir || error "failed to make testdir"
4279
4280         echo "This is test file 1!" > $MOUNT/$tdir/$tfile.1 ||
4281                 error "failed to make test file 1"
4282         echo "This is test file 2!" > $MOUNT/$tdir/$tfile.2 ||
4283                 error "failed to make test file 2"
4284         echo "This is test file 1000!" > $MOUNT/$tdir/$tfile.1000 ||
4285                 error "failed to make test file 1000"
4286
4287         rm -rf $MOUNT/$tdir || error "failed to remove testdir"
4288
4289         $LFS mkdir -i1000 $MOUNT/$tdir.1000 ||
4290                 error "create remote dir at idx 1000 failed"
4291
4292         output=$($LFS df)
4293         echo "=== START lfs df OUTPUT ==="
4294         echo -e "$output"
4295         echo "==== END lfs df OUTPUT ===="
4296
4297         mdtcnt=$(echo -e "$output" | grep $FSNAME-MDT | wc -l)
4298         ostcnt=$(echo -e "$output" | grep $FSNAME-OST | wc -l)
4299
4300         echo "lfs df returned mdt count $mdtcnt and ost count $ostcnt"
4301         [ $mdtcnt -eq 3 ] || error "lfs df returned wrong mdt count"
4302         [ $ostcnt -eq 2 ] || error "lfs df returned wrong ost count"
4303
4304         echo "This is test file 1!" > $MOUNT/$tdir.1000/$tfile.1 ||
4305                 error "failed to make test file 1"
4306         echo "This is test file 2!" > $MOUNT/$tdir.1000/$tfile.2 ||
4307                 error "failed to make test file 2"
4308         echo "This is test file 1000!" > $MOUNT/$tdir.1000/$tfile.1000 ||
4309                 error "failed to make test file 1000"
4310         rm -rf $MOUNT/$tdir.1000 || error "failed to remove remote_dir"
4311
4312         output=$($LFS mdts)
4313         echo "=== START lfs mdts OUTPUT ==="
4314         echo -e "$output"
4315         echo "==== END lfs mdts OUTPUT ===="
4316
4317         echo -e "$output" | grep -v "MDTS:" | awk '{print $1}' |
4318                 sed 's/://g' > $TMP/mdts-actual.txt
4319         sort $TMP/mdts-actual.txt -o $TMP/mdts-actual.txt
4320
4321         echo -e "0\n1\n1000" > $TMP/mdts-expected.txt
4322
4323         diff $TMP/mdts-expected.txt $TMP/mdts-actual.txt
4324         result=$?
4325
4326         rm $TMP/mdts-expected.txt $TMP/mdts-actual.txt
4327
4328         [ $result -eq 0 ] || error "target_obd proc file is incorrect!"
4329 }
4330 run_test 56b "test target_obd correctness with nonconsecutive MDTs"
4331
4332 test_57a() { # bug 22656
4333         do_rpc_nodes $(facet_active_host ost1) load_modules_local
4334         local NID=$(do_facet ost1 "$LCTL get_param nis" |
4335                     tail -1 | awk '{print $1}')
4336         writeconf_or_reformat
4337         [ $(facet_fstype ost1) == zfs ] && import_zpool ost1
4338         do_facet ost1 "$TUNEFS --failnode=$NID `ostdevname 1`" ||
4339                 error "tunefs failed"
4340         start_mgsmds
4341         start_ost && error "OST registration from failnode should fail"
4342         reformat
4343 }
4344 run_test 57a "initial registration from failnode should fail (should return errs)"
4345
4346 test_57b() {
4347         do_rpc_nodes $(facet_active_host ost1) load_modules_local
4348         local NID=$(do_facet ost1 "$LCTL get_param nis" |
4349                     tail -1 | awk '{print $1}')
4350         writeconf_or_reformat
4351         [ $(facet_fstype ost1) == zfs ] && import_zpool ost1
4352         do_facet ost1 "$TUNEFS --servicenode=$NID `ostdevname 1`" ||
4353                 error "tunefs failed"
4354         start_mgsmds
4355         start_ost || error "OST registration from servicenode should not fail"
4356         reformat
4357 }
4358 run_test 57b "initial registration from servicenode should not fail"
4359
4360 count_osts() {
4361         do_facet mgs $LCTL get_param mgs.MGS.live.$FSNAME | grep OST | wc -l
4362 }
4363
4364 test_58() { # bug 22658
4365         combined_mgs_mds || stop_mgs || error "stopping MGS service failed"
4366         setup_noconfig
4367         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
4368         createmany -o $DIR/$tdir/$tfile-%d 100
4369         # make sure that OSTs do not cancel llog cookies before we unmount the MDS
4370 #define OBD_FAIL_OBD_LOG_CANCEL_NET      0x601
4371         do_facet $SINGLEMDS "$LCTL set_param fail_loc=0x601"
4372         unlinkmany $DIR/$tdir/$tfile-%d 100
4373         stop_mds || error "Unable to stop MDS"
4374
4375         local MNTDIR=$(facet_mntpt $SINGLEMDS)
4376         local devname=$(mdsdevname ${SINGLEMDS//mds/})
4377
4378         # remove all files from the OBJECTS dir
4379         mount_fstype $SINGLEMDS
4380
4381         do_facet $SINGLEMDS "find $MNTDIR/O/1/d* -type f -delete"
4382
4383         unmount_fstype $SINGLEMDS
4384         # restart MDS with missing llog files
4385         start_mds || error "unable to start MDS"
4386         do_facet $SINGLEMDS "$LCTL set_param fail_loc=0"
4387         reformat
4388 }
4389 run_test 58 "missing llog files must not prevent MDT from mounting"
4390
4391 test_59() {
4392         start_mgsmds >> /dev/null
4393         local C1=$(count_osts)
4394         if [ $C1 -eq 0 ]; then
4395                 start_ost >> /dev/null
4396                 C1=$(count_osts)
4397         fi
4398         stopall
4399         echo "original ost count: $C1 (expect > 0)"
4400         [ $C1 -gt 0 ] || error "No OSTs in $FSNAME log"
4401         start_mgsmds -o writeconf >> /dev/null || error "MDT start failed"
4402         local C2=$(count_osts)
4403         echo "after mdt writeconf count: $C2 (expect 0)"
4404         [ $C2 -gt 0 ] && error "MDT writeconf should erase OST logs"
4405         echo "OST start without writeconf should fail:"
4406         start_ost >> /dev/null &&
4407                 error "OST start without writeconf didn't fail"
4408         echo "OST start with writeconf should succeed:"
4409         start_ost -o writeconf >> /dev/null || error "OST1 start failed"
4410         local C3=$(count_osts)
4411         echo "after ost writeconf count: $C3 (expect 1)"
4412         [ $C3 -eq 1 ] || error "new OST writeconf should add:"
4413         start_ost2 -o writeconf >> /dev/null || error "OST2 start failed"
4414         local C4=$(count_osts)
4415         echo "after ost2 writeconf count: $C4 (expect 2)"
4416         [ $C4 -eq 2 ] || error "OST2 writeconf should add log"
4417         stop_ost2 >> /dev/null
4418         cleanup_nocli >> /dev/null
4419         #writeconf to remove all ost2 traces for subsequent tests
4420         writeconf_or_reformat
4421 }
4422 run_test 59 "writeconf mount option"
4423
4424 test_60() { # LU-471
4425         local num
4426
4427         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
4428                 skip "ldiskfs only test"
4429                 return
4430         fi
4431
4432         for num in $(seq $MDSCOUNT); do
4433                 add mds${num} $(mkfs_opts mds${num} $(mdsdevname $num)) \
4434                         --mkfsoptions='\" -E stride=64 -O ^uninit_bg\"' \
4435                         --reformat $(mdsdevname $num) $(mdsvdevname $num) ||
4436                         exit 10
4437         done
4438
4439         dump=$(do_facet $SINGLEMDS dumpe2fs $(mdsdevname 1))
4440         [ ${PIPESTATUS[0]} -eq 0 ] || error "dumpe2fs $(mdsdevname 1) failed"
4441
4442         # MDT default has dirdata feature
4443         echo $dump | grep dirdata > /dev/null || error "dirdata is not set"
4444         # we disable uninit_bg feature
4445         echo $dump | grep uninit_bg > /dev/null && error "uninit_bg is set"
4446         # we set stride extended options
4447         echo $dump | grep stride > /dev/null || error "stride is not set"
4448         reformat
4449 }
4450 run_test 60 "check mkfs.lustre --mkfsoptions -E -O options setting"
4451
4452 test_61() { # LU-80
4453         local lxattr=false
4454
4455         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.1.53) ] ||
4456                 { skip "Need MDS version at least 2.1.53"; return 0; }
4457
4458         if [ $(facet_fstype $SINGLEMDS) == ldiskfs ] &&
4459              ! large_xattr_enabled; then
4460                 lxattr=true
4461
4462                 for num in $(seq $MDSCOUNT); do
4463                         do_facet mds${num} $TUNE2FS -O large_xattr \
4464                                 $(mdsdevname $num) ||
4465                                 error "tune2fs on mds $num failed"
4466                 done
4467         fi
4468
4469         combined_mgs_mds || stop_mgs || error "stopping MGS service failed"
4470         setup_noconfig || error "setting up the filesystem failed"
4471         client_up || error "starting client failed"
4472
4473         local file=$DIR/$tfile
4474         touch $file || error "touch $file failed"
4475
4476         local large_value="$(generate_string $(max_xattr_size))"
4477         local small_value="bar"
4478
4479         local name="trusted.big"
4480         log "save large xattr $name on $file"
4481         setfattr -n $name -v $large_value $file ||
4482                 error "saving $name on $file failed"
4483
4484         local new_value=$(get_xattr_value $name $file)
4485         [[ "$new_value" != "$large_value" ]] &&
4486                 error "$name different after saving"
4487
4488         log "shrink value of $name on $file"
4489         setfattr -n $name -v $small_value $file ||
4490                 error "shrinking value of $name on $file failed"
4491
4492         new_value=$(get_xattr_value $name $file)
4493         [[ "$new_value" != "$small_value" ]] &&
4494                 error "$name different after shrinking"
4495
4496         log "grow value of $name on $file"
4497         setfattr -n $name -v $large_value $file ||
4498                 error "growing value of $name on $file failed"
4499
4500         new_value=$(get_xattr_value $name $file)
4501         [[ "$new_value" != "$large_value" ]] &&
4502                 error "$name different after growing"
4503
4504         log "check value of $name on $file after remounting MDS"
4505         fail $SINGLEMDS
4506         new_value=$(get_xattr_value $name $file)
4507         [[ "$new_value" != "$large_value" ]] &&
4508                 error "$name different after remounting MDS"
4509
4510         log "remove large xattr $name from $file"
4511         setfattr -x $name $file || error "removing $name from $file failed"
4512
4513         if $lxattr; then
4514                 stopall || error "stopping for e2fsck run"
4515                 for num in $(seq $MDSCOUNT); do
4516                         run_e2fsck $(facet_active_host mds$num) \
4517                                 $(mdsdevname $num) "-y" ||
4518                                 error "e2fsck MDT$num failed"
4519                 done
4520                 setup_noconfig || error "remounting the filesystem failed"
4521         fi
4522
4523         # need to delete this file to avoid problems in other tests
4524         rm -f $file
4525         stopall || error "stopping systems to turn off large_xattr"
4526         if $lxattr; then
4527                 for num in $(seq $MDSCOUNT); do
4528                         do_facet mds${num} $TUNE2FS -O ^large_xattr \
4529                                 $(mdsdevname $num) ||
4530                                 error "tune2fs on mds $num failed"
4531                 done
4532         fi
4533 }
4534 run_test 61 "large xattr"
4535
4536 test_62() {
4537         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
4538                 skip "ldiskfs only test"
4539                 return
4540         fi
4541
4542         # MRP-118
4543         local mdsdev=$(mdsdevname 1)
4544         local ostdev=$(ostdevname 1)
4545
4546         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
4547                 { skip "Need MDS version at least 2.2.51"; return 0; }
4548
4549         echo "disable journal for mds"
4550         do_facet mds1 $TUNE2FS -O ^has_journal $mdsdev || error "tune2fs failed"
4551         start_mds && error "MDT start should fail"
4552         echo "disable journal for ost"
4553         do_facet ost1 $TUNE2FS -O ^has_journal $ostdev || error "tune2fs failed"
4554         start_ost && error "OST start should fail"
4555         cleanup || error "cleanup failed with rc $?"
4556         reformat_and_config
4557 }
4558 run_test 62 "start with disabled journal"
4559
4560 test_63() {
4561         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
4562                 skip "ldiskfs only test"
4563                 return
4564         fi
4565
4566         do_rpc_nodes $(facet_active_host $SINGLEMDS) load_module ldiskfs
4567         local inode_slab=$(do_facet $SINGLEMDS "cat /proc/slabinfo" |
4568                            awk '/ldiskfs_inode_cache/ { print $5 / $6 }')
4569         if [ -z "$inode_slab" ]; then
4570                 skip "ldiskfs module has not been loaded"
4571                 return
4572         fi
4573
4574         echo "$inode_slab ldiskfs inodes per page"
4575         [ "${inode_slab%.*}" -ge "3" ] && return 0
4576
4577         # If kmalloc-128 is also 1 per page - this is a debug kernel
4578         # and so this is not an error.
4579         local kmalloc128=$(do_facet $SINGLEMDS "cat /proc/slabinfo" |
4580                            awk '/^(kmalloc|size)-128 / { print $5 / $6 }')
4581         # 32 128-byte chunks in 4k
4582         [ "${kmalloc128%.*}" -lt "32" ] ||
4583                 error "ldiskfs inode too big, only $inode_slab objs/page, " \
4584                       "kmalloc128 = $kmalloc128 objs/page"
4585 }
4586 run_test 63 "Verify each page can at least hold 3 ldiskfs inodes"
4587
4588 test_64() {
4589         start_mds || error "unable to start MDS"
4590         start_ost || error "Unable to start OST1"
4591         start_ost2 || error "Unable to start second ost"
4592         mount_client $MOUNT || error "Unable to mount client"
4593         stop_ost2 || error "Unable to stop second ost"
4594         echo "$LFS df"
4595         $LFS df --lazy
4596         umount_client $MOUNT -f || error “unmount $MOUNT failed”
4597         cleanup_nocli || error "cleanup_nocli failed with $?"
4598         #writeconf to remove all ost2 traces for subsequent tests
4599         writeconf_or_reformat
4600 }
4601 run_test 64 "check lfs df --lazy "
4602
4603 test_65() { # LU-2237
4604         # Currently, the test is only valid for ldiskfs backend
4605         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
4606                 skip "ldiskfs only test" && return
4607
4608         local devname=$(mdsdevname ${SINGLEMDS//mds/})
4609         local brpt=$(facet_mntpt brpt)
4610         local opts=""
4611
4612         if ! do_facet $SINGLEMDS "test -b $devname"; then
4613                 opts="-o loop"
4614         fi
4615
4616         stop_mds || error "Unable to stop MDS"
4617         local obj=$(do_facet $SINGLEMDS \
4618                     "$DEBUGFS -c -R \\\"stat last_rcvd\\\" $devname" |
4619                     grep Inode)
4620         if [ -z "$obj" ]; then
4621                 # The MDT may be just re-formatted, mount the MDT for the
4622                 # first time to guarantee the "last_rcvd" file is there.
4623                 start_mds || error "fail to mount the MDS for the first time"
4624                 stop_mds || error "Unable to stop MDS"
4625         fi
4626
4627         # remove the "last_rcvd" file
4628         do_facet $SINGLEMDS "mkdir -p $brpt"
4629         do_facet $SINGLEMDS \
4630                 "mount -t $(facet_fstype $SINGLEMDS) $opts $devname $brpt"
4631         do_facet $SINGLEMDS "rm -f ${brpt}/last_rcvd"
4632         do_facet $SINGLEMDS "$UMOUNT $brpt"
4633
4634         # restart MDS, the "last_rcvd" file should be recreated.
4635         start_mds || error "fail to restart the MDS"
4636         stop_mds || error "Unable to stop MDS"
4637         obj=$(do_facet $SINGLEMDS \
4638               "$DEBUGFS -c -R \\\"stat last_rcvd\\\" $devname" | grep Inode)
4639         [ -n "$obj" ] || error "fail to re-create the last_rcvd"
4640 }
4641 run_test 65 "re-create the lost last_rcvd file when server mount"
4642
4643 test_66() {
4644         [[ $(lustre_version_code mgs) -ge $(version_code 2.3.59) ]] ||
4645                 { skip "Need MGS version at least 2.3.59"; return 0; }
4646
4647         setup
4648         local OST1_NID=$(do_facet ost1 $LCTL list_nids | head -1)
4649         local MDS_NID=$(do_facet $SINGLEMDS $LCTL list_nids | head -1)
4650
4651         echo "replace_nids should fail if MDS, OSTs and clients are UP"
4652         do_facet mgs $LCTL replace_nids $FSNAME-OST0000 $OST1_NID &&
4653                 error "replace_nids fail"
4654
4655         umount_client $MOUNT || error "unmounting client failed"
4656         echo "replace_nids should fail if MDS and OSTs are UP"
4657         do_facet mgs $LCTL replace_nids $FSNAME-OST0000 $OST1_NID &&
4658                 error "replace_nids fail"
4659
4660         stop_ost || error "Unable to stop OST1"
4661         echo "replace_nids should fail if MDS is UP"
4662         do_facet mgs $LCTL replace_nids $FSNAME-OST0000 $OST1_NID &&
4663                 error "replace_nids fail"
4664
4665         stop_mds || error "stopping mds failed"
4666
4667         if combined_mgs_mds; then
4668                 start_mdt 1 "-o nosvc" ||
4669                         error "starting mds with nosvc option failed"
4670         fi
4671
4672         echo "command should accept two parameters"
4673         do_facet mgs $LCTL replace_nids $FSNAME-OST0000 &&
4674                 error "command should accept two params"
4675
4676         echo "correct device name should be passed"
4677         do_facet mgs $LCTL replace_nids $FSNAME-WRONG0000 $OST1_NID &&
4678                 error "wrong devname"
4679
4680         echo "wrong nids list should not destroy the system"
4681         do_facet mgs $LCTL replace_nids $FSNAME-OST0000 "wrong nids list" &&
4682                 error "wrong parse"
4683
4684         echo "replace OST nid"
4685         do_facet mgs $LCTL replace_nids $FSNAME-OST0000 $OST1_NID ||
4686                 error "replace nids failed"
4687
4688         echo "command should accept two parameters"
4689         do_facet mgs $LCTL replace_nids $FSNAME-MDT0000 &&
4690                 error "command should accept two params"
4691
4692         echo "wrong nids list should not destroy the system"
4693         do_facet mgs $LCTL replace_nids $FSNAME-MDT0000 "wrong nids list" &&
4694                 error "wrong parse"
4695
4696         echo "replace MDS nid"
4697         do_facet mgs $LCTL replace_nids $FSNAME-MDT0000 $MDS_NID ||
4698                 error "replace nids failed"
4699
4700         if ! combined_mgs_mds ; then
4701                 stop_mgs
4702         else
4703                 stop_mds || error "Unable to stop MDS"
4704         fi
4705
4706         setup_noconfig
4707         check_mount || error "error after nid replace"
4708         cleanup || error "cleanup failed"
4709         reformat
4710 }
4711 run_test 66 "replace nids"
4712
4713 test_67() { #LU-2950
4714         local legacy="$TMP/legacy_lnet_config"
4715         local new="$TMP/new_routes_test"
4716         local out="$TMP/config_out_file"
4717         local verify="$TMP/conv_verify"
4718         local verify_conf="$TMP/conf_verify"
4719
4720         # Create the legacy file that will be run through the
4721         # lustre_routes_conversion script
4722         cat <<- LEGACY_LNET_CONFIG > $legacy
4723                 tcp1 23 192.168.213.1@tcp:1; tcp5 34 193.30.4.3@tcp:4;
4724                 tcp2 54 10.1.3.2@tcp;
4725                 tcp3 10.3.4.3@tcp:3;
4726                 tcp4 10.3.3.4@tcp;
4727         LEGACY_LNET_CONFIG
4728
4729         # Create the verification file to verify the output of
4730         # lustre_routes_conversion script against.
4731         cat <<- VERIFY_LNET_CONFIG > $verify
4732                 tcp1: { gateway: 192.168.213.1@tcp, hop: 23, priority: 1 }
4733                 tcp5: { gateway: 193.30.4.3@tcp, hop: 34, priority: 4 }
4734                 tcp2: { gateway: 10.1.3.2@tcp, hop: 54 }
4735                 tcp3: { gateway: 10.3.4.3@tcp, priority: 3 }
4736                 tcp4: { gateway: 10.3.3.4@tcp }
4737         VERIFY_LNET_CONFIG
4738
4739         # Create the verification file to verify the output of
4740         # lustre_routes_config script against
4741         cat <<- VERIFY_LNET_CONFIG > $verify_conf
4742                 lctl --net tcp1 add_route 192.168.213.1@tcp 23 1
4743                 lctl --net tcp5 add_route 193.30.4.3@tcp 34 4
4744                 lctl --net tcp2 add_route 10.1.3.2@tcp 54 4
4745                 lctl --net tcp3 add_route 10.3.4.3@tcp 1 3
4746                 lctl --net tcp4 add_route 10.3.3.4@tcp 1 3
4747         VERIFY_LNET_CONFIG
4748
4749         lustre_routes_conversion $legacy $new > /dev/null
4750         if [ -f $new ]; then
4751                 # verify the conversion output
4752                 cmp -s $new $verify > /dev/null
4753                 if [ $? -eq 1 ]; then
4754                         error "routes conversion failed"
4755                 fi
4756
4757                 lustre_routes_config --dry-run --verbose $new > $out
4758                 # check that the script succeeded
4759                 cmp -s $out $verify_conf > /dev/null
4760                 if [ $? -eq 1 ]; then
4761                         error "routes config failed"
4762                 fi
4763         else
4764                 error "routes conversion test failed"
4765         fi
4766         # remove generated files
4767         rm -f $new $legacy $verify $verify_conf $out
4768 }
4769 run_test 67 "test routes conversion and configuration"
4770
4771 test_68() {
4772         local fid
4773         local seq
4774         local START
4775         local END
4776
4777         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.4.53) ] ||
4778                 { skip "Need MDS version at least 2.4.53"; return 0; }
4779
4780         umount_client $MOUNT || error "umount client failed"
4781
4782         if ! combined_mgs_mds; then
4783                 start_mgs || error "start mgs failed"
4784         fi
4785
4786         start_mdt 1 || error "MDT start failed"
4787         start_ost || error "Unable to start OST1"
4788
4789         # START-END - the sequences we'll be reserving
4790         START=$(do_facet $SINGLEMDS \
4791                 $LCTL get_param -n seq.ctl*.space | awk -F'[[ ]' '{print $2}')
4792         END=$((START + (1 << 30)))
4793         do_facet $SINGLEMDS \
4794                 $LCTL set_param seq.ctl*.fldb="[$START-$END\):0:mdt"
4795
4796         # reset the sequences MDT0000 has already assigned
4797         do_facet $SINGLEMDS \
4798                 $LCTL set_param seq.srv*MDT0000.space=clear
4799
4800         # remount to let the client allocate new sequence
4801         mount_client $MOUNT || error "mount client failed"
4802
4803         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
4804         do_facet $SINGLEMDS \
4805                 $LCTL get_param seq.srv*MDT0000.space
4806         $LFS path2fid $DIR/$tfile
4807
4808         local old_ifs="$IFS"
4809         IFS='[:]'
4810         fid=($($LFS path2fid $DIR/$tfile))
4811         IFS="$old_ifs"
4812         let seq=${fid[1]}
4813
4814         if [[ $seq < $END ]]; then
4815                 error "used reserved sequence $seq?"
4816         fi
4817         cleanup || error "cleanup failed with $?"
4818 }
4819 run_test 68 "be able to reserve specific sequences in FLDB"
4820
4821 # Test 69: is about the total number of objects ever created on an OST.
4822 # so that when it is reformatted the normal MDS->OST orphan recovery won't
4823 # just "precreate" the missing objects. In the past it might try to recreate
4824 # millions of objects after an OST was reformatted
4825 test_69() {
4826         local server_version=$(lustre_version_code $SINGLEMDS)
4827
4828         [[ $server_version -lt $(version_code 2.4.2) ]] &&
4829                 skip "Need MDS version at least 2.4.2" && return
4830
4831         [[ $server_version -ge $(version_code 2.4.50) ]] &&
4832         [[ $server_version -lt $(version_code 2.5.0) ]] &&
4833                 skip "Need MDS version at least 2.5.0" && return
4834
4835         setup
4836         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
4837
4838         # use OST0000 since it probably has the most creations
4839         local OSTNAME=$(ostname_from_index 0)
4840         local mdtosc_proc1=$(get_mdtosc_proc_path mds1 $OSTNAME)
4841         local last_id=$(do_facet mds1 $LCTL get_param -n \
4842                         osc.$mdtosc_proc1.prealloc_last_id)
4843
4844         # Want to have OST LAST_ID over 5 * OST_MAX_PRECREATE to
4845         # verify that the LAST_ID recovery is working properly. If
4846         # not, then the OST will refuse to allow the MDS connect
4847         # because the LAST_ID value is too different from the MDS
4848         #define OST_MAX_PRECREATE=20000
4849         local ost_max_pre=20000
4850         local num_create=$(( ost_max_pre * 5 + 1 - last_id))
4851
4852         # If the LAST_ID is already over 5 * OST_MAX_PRECREATE, we don't
4853         # need to create any files. So, skip this section.
4854         if [ $num_create -gt 0 ]; then
4855                 # Check the number of inodes available on OST0
4856                 local files=0
4857                 local ifree=$($LFS df -i $MOUNT | awk '/OST0000/ { print $4 }')
4858                 log "On OST0, $ifree inodes available. Want $num_create."
4859
4860                 $SETSTRIPE -i 0 $DIR/$tdir ||
4861                         error "$SETSTRIPE -i 0 $DIR/$tdir failed"
4862                 if [ $ifree -lt 10000 ]; then
4863                         files=$(( ifree - 50 ))
4864                 else
4865                         files=10000
4866                 fi
4867
4868                 local j=$((num_create / files + 1))
4869                 for i in $(seq 1 $j); do
4870                         createmany -o $DIR/$tdir/$tfile-$i- $files ||
4871                                 error "createmany fail create $files files: $?"
4872                         unlinkmany $DIR/$tdir/$tfile-$i- $files ||
4873                                 error "unlinkmany failed unlink $files files"
4874                 done
4875         fi
4876
4877         # delete all of the files with objects on OST0 so the
4878         # filesystem is not inconsistent later on
4879         $LFS find $MOUNT --ost 0 -print0 | xargs -0 rm
4880
4881         umount_client $MOUNT || error "umount client failed"
4882         stop_ost || error "OST0 stop failure"
4883         add ost1 $(mkfs_opts ost1 $(ostdevname 1)) --reformat --replace \
4884                 $(ostdevname 1) $(ostvdevname 1) ||
4885                 error "reformat and replace $ostdev failed"
4886         start_ost || error "OST0 restart failure"
4887         wait_osc_import_state mds ost FULL
4888
4889         mount_client $MOUNT || error "mount client failed"
4890         touch $DIR/$tdir/$tfile-last || error "create file after reformat"
4891         local idx=$($GETSTRIPE -i $DIR/$tdir/$tfile-last)
4892         [ $idx -ne 0 ] && error "$DIR/$tdir/$tfile-last on $idx not 0" || true
4893
4894         local iused=$($LFS df -i $MOUNT | awk '/OST0000/ { print $3 }')
4895         log "On OST0, $iused used inodes"
4896         [ $iused -ge $((ost_max_pre/2 + 1000)) ] &&
4897                 error "OST replacement created too many inodes; $iused"
4898         cleanup || error "cleanup failed with $?"
4899 }
4900 run_test 69 "replace an OST with the same index"
4901
4902 test_70a() {
4903         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4904         local MDTIDX=1
4905
4906         cleanup || error "cleanup failed with $?"
4907
4908         start_mdt 1 || error "MDT0 start fail"
4909
4910         start_ost || error "OST0 start fail"
4911         for num in $(seq 2 $MDSCOUNT); do
4912                 start_mdt $num || return
4913         done
4914
4915         mount_client $MOUNT || error "mount client fails"
4916
4917         mkdir $DIR/$tdir || error "create $DIR/$tdir failed"
4918
4919         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
4920                 error "create remote dir fail"
4921
4922         rm -rf $DIR/$tdir || error "delete dir fail"
4923         cleanup || error "cleanup failed with $?"
4924 }
4925 run_test 70a "start MDT0, then OST, then MDT1"
4926
4927 test_70b() {
4928         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4929         local MDTIDX=1
4930
4931         start_ost || error "OST0 start fail"
4932
4933         start_mds || error "MDS start fail"
4934
4935         mount_client $MOUNT || error "mount client fails"
4936
4937         mkdir $DIR/$tdir || error "create $DIR/$tdir failed"
4938
4939         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
4940                 error "create remote dir fail"
4941
4942         rm -rf $DIR/$tdir || error "delete dir fail"
4943
4944         cleanup || error "cleanup failed with $?"
4945 }
4946 run_test 70b "start OST, MDT1, MDT0"
4947
4948 test_70c() {
4949         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4950         local MDTIDX=1
4951
4952         start_mds || error "MDS start fail"
4953         start_ost || error "OST0 start fail"
4954
4955         mount_client $MOUNT || error "mount client fails"
4956         stop_mdt 1 || error "MDT1 start fail"
4957
4958         local mdc_for_mdt1=$($LCTL dl | grep MDT0000-mdc | awk '{print $4}')
4959         echo "deactivate $mdc_for_mdt1"
4960         $LCTL --device $mdc_for_mdt1 deactivate ||
4961                 error "set $mdc_for_mdt1 deactivate failed"
4962
4963         mkdir $DIR/$tdir && error "mkdir succeed"
4964
4965         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir &&
4966                 error "create remote dir succeed"
4967
4968         cleanup || error "cleanup failed with $?"
4969 }
4970 run_test 70c "stop MDT0, mkdir fail, create remote dir fail"
4971
4972 test_70d() {
4973         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4974         local MDTIDX=1
4975
4976         start_mds || error "MDS start fail"
4977         start_ost || error "OST0 start fail"
4978
4979         mount_client $MOUNT || error "mount client fails"
4980
4981         stop_mdt 2 || error "MDT1 start fail"
4982
4983         local mdc_for_mdt2=$($LCTL dl | grep MDT0001-mdc |
4984                              awk '{print $4}')
4985         echo "deactivate $mdc_for_mdt2"
4986         $LCTL --device $mdc_for_mdt2 deactivate ||
4987                 error "set $mdc_for_mdt2 deactivate failed"
4988
4989         mkdir $DIR/$tdir || error "mkdir fail"
4990         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir &&
4991                 error "create remote dir succeed"
4992
4993         rm -rf $DIR/$tdir || error "delete dir fail"
4994
4995         cleanup || error "cleanup failed with $?"
4996 }
4997 run_test 70d "stop MDT1, mkdir succeed, create remote dir fail"
4998
4999 test_70e() {
5000         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
5001
5002         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.7.62) ] ||
5003                 { skip "Need MDS version at least 2.7.62"; return 0; }
5004
5005         cleanup || error "cleanup failed with $?"
5006
5007         local mdsdev=$(mdsdevname 1)
5008         local ostdev=$(ostdevname 1)
5009         local mdsvdev=$(mdsvdevname 1)
5010         local ostvdev=$(ostvdevname 1)
5011         local opts_mds="$(mkfs_opts mds1 $mdsdev) --reformat $mdsdev $mdsvdev"
5012         local opts_ost="$(mkfs_opts ost1 $ostdev) --reformat $ostdev $ostvdev"
5013
5014         add mds1 $opts_mds || error "add mds1 failed"
5015         start_mdt 1 || error "start mdt1 failed"
5016         add ost1 $opts_ost || error "add ost1 failed"
5017         start_ost || error "start ost failed"
5018         mount_client $MOUNT > /dev/null || error "mount client $MOUNT failed"
5019
5020         local soc=$(do_facet mds1 "$LCTL get_param -n \
5021                     mdt.*MDT0000.sync_lock_cancel")
5022         [ $soc == "never" ] || error "SoC enabled on single MDS"
5023
5024         for i in $(seq 2 $MDSCOUNT); do
5025                 mdsdev=$(mdsdevname $i)
5026                 mdsvdev=$(mdsvdevname $i)
5027                 opts_mds="$(mkfs_opts mds$i $mdsdev) --reformat $mdsdev \
5028                           $mdsvdev"
5029                 add mds$i $opts_mds || error "add mds$i failed"
5030                 start_mdt $i || error "start mdt$i fail"
5031         done
5032
5033         wait_dne_interconnect
5034
5035         for i in $(seq $MDSCOUNT); do
5036                 soc=$(do_facet mds$i "$LCTL get_param -n \
5037                         mdt.*MDT000$((i - 1)).sync_lock_cancel")
5038                 [ $soc == "blocking" ] || error "SoC not enabled on DNE"
5039         done
5040
5041         for i in $(seq 2 $MDSCOUNT); do
5042                 stop_mdt $i || error "stop mdt$i fail"
5043         done
5044         soc=$(do_facet mds1 "$LCTL get_param -n \
5045                 mdt.*MDT0000.sync_lock_cancel")
5046         [ $soc == "never" ] || error "SoC enabled on single MDS"
5047         umount_client $MOUNT -f > /dev/null
5048
5049         cleanup || error "cleanup failed with $?"
5050 }
5051 run_test 70e "Sync-on-Cancel will be enabled by default on DNE"
5052
5053 test_71a() {
5054         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
5055         if combined_mgs_mds; then
5056                 skip "needs separate MGS/MDT" && return
5057         fi
5058         local MDTIDX=1
5059
5060         start_mdt 1 || error "MDT0 start fail"
5061         start_ost || error "OST0 start fail"
5062         for num in $(seq 2 $MDSCOUNT); do
5063                 start_mdt $num || return
5064         done
5065
5066         start_ost2 || error "OST1 start fail"
5067
5068         mount_client $MOUNT || error "mount client fails"
5069
5070         mkdir $DIR/$tdir || error "mkdir fail"
5071         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
5072                 error "create remote dir succeed"
5073
5074         mcreate $DIR/$tdir/remote_dir/$tfile || error "create file failed"
5075         rm -rf $DIR/$tdir || error "delete dir fail"
5076
5077         umount_client $MOUNT || error "umount_client failed"
5078         stop_mds || error "MDS stop fail"
5079         stop_ost || error "OST0 stop fail"
5080         stop_ost2 || error "OST1 stop fail"
5081 }
5082 run_test 71a "start MDT0 OST0, MDT1, OST1"
5083
5084 test_71b() {
5085         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
5086         if combined_mgs_mds; then
5087                 skip "needs separate MGS/MDT" && return
5088         fi
5089         local MDTIDX=1
5090
5091         for num in $(seq 2 $MDSCOUNT); do
5092                 start_mdt $num || return
5093         done
5094         start_ost || error "OST0 start fail"
5095         start_mdt 1 || error "MDT0 start fail"
5096         start_ost2 || error "OST1 start fail"
5097
5098         mount_client $MOUNT || error "mount client fails"
5099
5100         mkdir $DIR/$tdir || error "mkdir fail"
5101         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
5102                 error "create remote dir succeed"
5103
5104         mcreate $DIR/$tdir/remote_dir/$tfile || error "create file failed"
5105         rm -rf $DIR/$tdir || error "delete dir fail"
5106
5107         umount_client $MOUNT || error "umount_client failed"
5108         stop_mds || error "MDT0 stop fail"
5109         stop_ost || error "OST0 stop fail"
5110         stop_ost2 || error "OST1 stop fail"
5111 }
5112 run_test 71b "start MDT1, OST0, MDT0, OST1"
5113
5114 test_71c() {
5115         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
5116         if combined_mgs_mds; then
5117                 skip "needs separate MGS/MDT" && return
5118         fi
5119         local MDTIDX=1
5120
5121         start_ost || error "OST0 start fail"
5122         start_ost2 || error "OST1 start fail"
5123         for num in $(seq 2 $MDSCOUNT); do
5124                 start_mdt $num || return
5125         done
5126         start_mdt 1 || error "MDT0 start fail"
5127
5128         mount_client $MOUNT || error "mount client fails"
5129
5130         mkdir $DIR/$tdir || error "mkdir fail"
5131         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
5132                 error "create remote dir succeed"
5133
5134         mcreate $DIR/$tdir/remote_dir/$tfile || error "create file failed"
5135         rm -rf $DIR/$tdir || error "delete dir fail"
5136
5137         umount_client $MOUNT || error "umount_client failed"
5138         stop_mds || error "MDS stop fail"
5139         stop_ost || error "OST0 stop fail"
5140         stop_ost2 || error "OST1 stop fail"
5141
5142 }
5143 run_test 71c "start OST0, OST1, MDT1, MDT0"
5144
5145 test_71d() {
5146         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
5147         if combined_mgs_mds; then
5148                 skip "needs separate MGS/MDT" && return
5149         fi
5150         local MDTIDX=1
5151
5152         start_ost || error "OST0 start fail"
5153         for num in $(seq 2 $MDSCOUNT); do
5154                 start_mdt $num || return
5155         done
5156         start_mdt 1 || error "MDT0 start fail"
5157         start_ost2 || error "OST1 start fail"
5158
5159         mount_client $MOUNT || error "mount client fails"
5160
5161         mkdir $DIR/$tdir || error "mkdir fail"
5162         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
5163                         error "create remote dir succeed"
5164
5165         mcreate $DIR/$tdir/remote_dir/$tfile || error "create file failed"
5166         rm -rf $DIR/$tdir || error "delete dir fail"
5167
5168         umount_client $MOUNT || error "umount_client failed"
5169         stop_mds || error "MDS stop fail"
5170         stop_ost || error "OST0 stop fail"
5171         stop_ost2 || error "OST1 stop fail"
5172
5173 }
5174 run_test 71d "start OST0, MDT1, MDT0, OST1"
5175
5176 test_71e() {
5177         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
5178         if combined_mgs_mds; then
5179                 skip "needs separate MGS/MDT" && return
5180         fi
5181         local MDTIDX=1
5182
5183         start_ost || error "OST0 start fail"
5184         for num in $(seq 2 $MDSCOUNT); do
5185                 start_mdt $num || return
5186         done
5187         start_ost2 || error "OST1 start fail"
5188         start_mdt 1 || error "MDT0 start fail"
5189
5190         mount_client $MOUNT || error "mount client fails"
5191
5192         mkdir $DIR/$tdir || error "mkdir fail"
5193         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
5194                 error "create remote dir succeed"
5195
5196         mcreate $DIR/$tdir/remote_dir/$tfile || error "create file failed"
5197         rm -rf $DIR/$tdir || error "delete dir fail"
5198
5199         umount_client $MOUNT || error "umount_client failed"
5200         stop_mds || error "MDS stop fail"
5201         stop_ost || error "OST0 stop fail"
5202         stop_ost2 || error "OST1 stop fail"
5203
5204 }
5205 run_test 71e "start OST0, MDT1, OST1, MDT0"
5206
5207 test_72() { #LU-2634
5208         local mdsdev=$(mdsdevname 1)
5209         local ostdev=$(ostdevname 1)
5210         local cmd="$E2FSCK -fnvd $mdsdev"
5211         local fn=3
5212         local add_options
5213
5214         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
5215                 skip "ldiskfs only test" && return
5216
5217         if combined_mgs_mds; then
5218                 add_options='--reformat'
5219         else
5220                 add_options='--reformat --replace'
5221         fi
5222
5223         #tune MDT with "-O extents"
5224
5225         for num in $(seq $MDSCOUNT); do
5226                 add mds${num} $(mkfs_opts mds$num $(mdsdevname $num)) \
5227                         $add_options $(mdsdevname $num) $(mdsvdevname $num) ||
5228                         error "add mds $num failed"
5229                 do_facet mds${num} "$TUNE2FS -O extents $(mdsdevname $num)" ||
5230                         error "$TUNE2FS failed on mds${num}"
5231         done
5232
5233         add ost1 $(mkfs_opts ost1 $ostdev) $add_options $ostdev ||
5234                 error "add $ostdev failed"
5235         start_mds || error "start mds failed"
5236         start_ost || error "start ost failed"
5237         mount_client $MOUNT || error "mount client failed"
5238
5239         #create some short symlinks
5240         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
5241         createmany -o $DIR/$tdir/$tfile-%d $fn
5242         echo "create $fn short symlinks"
5243         for i in $(seq -w 1 $fn); do
5244                 ln -s $DIR/$tdir/$tfile-$i $MOUNT/$tfile-$i
5245         done
5246         ls -al $MOUNT
5247
5248         #umount
5249         umount_client $MOUNT || error "umount client failed"
5250         stop_mds || error "stop mds failed"
5251         stop_ost || error "stop ost failed"
5252
5253         #run e2fsck
5254         run_e2fsck $(facet_active_host $SINGLEMDS) $mdsdev "-n"
5255 }
5256 run_test 72 "test fast symlink with extents flag enabled"
5257
5258 test_73() { #LU-3006
5259         [ $(facet_fstype ost1) == zfs ] && import_zpool ost1
5260         do_facet ost1 "$TUNEFS --failnode=1.2.3.4@$NETTYPE $(ostdevname 1)" ||
5261                 error "1st tunefs failed"
5262         start_mgsmds || error "start mds failed"
5263         start_ost || error "start ost failed"
5264         mount_client $MOUNT || error "mount client failed"
5265         $LCTL get_param -n osc.*OST0000-osc-[^M]*.import | grep failover_nids |
5266                 grep 1.2.3.4@$NETTYPE || error "failover nids haven't changed"
5267         umount_client $MOUNT || error "umount client failed"
5268         stopall
5269         reformat
5270 }
5271 run_test 73 "failnode to update from mountdata properly"
5272
5273 test_75() { # LU-2374
5274         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
5275                         skip "Need MDS version at least 2.4.1" && return
5276
5277         local index=0
5278         local opts_mds="$(mkfs_opts mds1 $(mdsdevname 1)) \
5279                 --reformat $(mdsdevname 1) $(mdsvdevname 1)"
5280         local opts_ost="$(mkfs_opts ost1 $(ostdevname 1)) \
5281                 --reformat $(ostdevname 1) $(ostvdevname 1)"
5282
5283         #check with default parameters
5284         add mds1 $opts_mds || error "add mds1 failed for default params"
5285         add ost1 $opts_ost || error "add ost1 failed for default params"
5286
5287         opts_mds=$(echo $opts_mds | sed -e "s/--mdt//")
5288         opts_mds=$(echo $opts_mds |
5289                    sed -e "s/--index=$index/--index=$index --mdt/")
5290         opts_ost=$(echo $opts_ost | sed -e "s/--ost//")
5291         opts_ost=$(echo $opts_ost |
5292                    sed -e "s/--index=$index/--index=$index --ost/")
5293
5294         add mds1 $opts_mds || error "add mds1 failed for new params"
5295         add ost1 $opts_ost || error "add ost1 failed for new params"
5296         if ! combined_mgs_mds; then
5297                 stop_mgs || error "stop mgs failed"
5298         fi
5299         reformat
5300         return 0
5301 }
5302 run_test 75 "The order of --index should be irrelevant"
5303
5304 test_76a() {
5305         [[ $(lustre_version_code mgs) -ge $(version_code 2.4.52) ]] ||
5306                 { skip "Need MDS version at least 2.4.52" && return 0; }
5307
5308         if ! combined_mgs_mds; then
5309                 start_mgs || error "start mgs failed"
5310         fi
5311         setup
5312         local MDMB_PARAM="osc.*.max_dirty_mb"
5313         echo "Change MGS params"
5314         local MAX_DIRTY_MB=$($LCTL get_param -n $MDMB_PARAM |
5315                 head -1)
5316         echo "max_dirty_mb: $MAX_DIRTY_MB"
5317         local NEW_MAX_DIRTY_MB=$((MAX_DIRTY_MB + MAX_DIRTY_MB))
5318         echo "new_max_dirty_mb: $NEW_MAX_DIRTY_MB"
5319         do_facet mgs $LCTL set_param -P $MDMB_PARAM=$NEW_MAX_DIRTY_MB
5320         wait_update $HOSTNAME "$LCTL get_param -n $MDMB_PARAM |
5321                 head -1" $NEW_MAX_DIRTY_MB
5322         MAX_DIRTY_MB=$($LCTL get_param -n $MDMB_PARAM | head -1)
5323         echo "$MAX_DIRTY_MB"
5324         [ $MAX_DIRTY_MB = $NEW_MAX_DIRTY_MB ] ||
5325                 error "error while apply max_dirty_mb"
5326
5327         echo "Check the value is stored after remount"
5328         stopall
5329         setupall
5330         wait_update $HOSTNAME "$LCTL get_param -n $MDMB_PARAM |
5331                 head -1" $NEW_MAX_DIRTY_MB
5332         MAX_DIRTY_MB=$($LCTL get_param -n $MDMB_PARAM | head -1)
5333         [ $MAX_DIRTY_MB = $NEW_MAX_DIRTY_MB ] ||
5334                 error "max_dirty_mb is not saved after remount"
5335
5336         echo "Change OST params"
5337         CLIENT_PARAM="obdfilter.*.client_cache_count"
5338         local CLIENT_CACHE_COUNT
5339         CLIENT_CACHE_COUNT=$(do_facet ost1 $LCTL get_param -n $CLIENT_PARAM |
5340                 head -1)
5341         echo "client_cache_count: $CLIENT_CACHE_COUNT"
5342         NEW_CLIENT_CACHE_COUNT=$((CLIENT_CACHE_COUNT+CLIENT_CACHE_COUNT))
5343         echo "new_client_cache_count: $NEW_CLIENT_CACHE_COUNT"
5344         do_facet mgs $LCTL set_param -P $CLIENT_PARAM=$NEW_CLIENT_CACHE_COUNT
5345         wait_update $(facet_host ost1) "$LCTL get_param -n $CLIENT_PARAM |
5346                 head -1" $NEW_CLIENT_CACHE_COUNT
5347         CLIENT_CACHE_COUNT=$(do_facet ost1 $LCTL get_param -n $CLIENT_PARAM |
5348                 head -1)
5349         echo "$CLIENT_CACHE_COUNT"
5350         [ $CLIENT_CACHE_COUNT = $NEW_CLIENT_CACHE_COUNT ] ||
5351                 error "error while apply client_cache_count"
5352
5353         echo "Check the value is stored after remount"
5354         stopall
5355         setupall
5356         wait_update $(facet_host ost1) "$LCTL get_param -n $CLIENT_PARAM |
5357                 head -1" $NEW_CLIENT_CACHE_COUNT
5358         CLIENT_CACHE_COUNT=$(do_facet ost1 $LCTL get_param -n $CLIENT_PARAM |
5359                 head -1)
5360         echo "$CLIENT_CACHE_COUNT"
5361         [ $CLIENT_CACHE_COUNT = $NEW_CLIENT_CACHE_COUNT ] ||
5362                 error "client_cache_count is not saved after remount"
5363         stopall
5364 }
5365 run_test 76a "set permanent params set_param -P"
5366
5367 test_76b() { # LU-4783
5368         [[ $(lustre_version_code mgs) -ge $(version_code 2.5.57) ]] ||
5369                 { skip "Need MGS version at least 2.5.57" && return 0; }
5370         stopall
5371         setupall
5372         do_facet mgs $LCTL get_param mgs.MGS.live.params ||
5373                 error "start params log failed"
5374         stopall
5375 }
5376 run_test 76b "verify params log setup correctly"
5377
5378 test_76c() {
5379         [[ $(lustre_version_code mgs) -ge $(version_code 2.8.54) ]] ||
5380                 { skip "Need MDS version at least 2.4.52" && return 0; }
5381         setupall
5382         local MASK_PARAM="mdd.*.changelog_mask"
5383         echo "Change changelog_mask"
5384         do_facet mgs $LCTL set_param -P $MASK_PARAM=-CLOSE ||
5385                 error "Can't change changlog_mask"
5386         wait_update $(facet_host mds) "$LCTL get_param -n $MASK_PARAM |
5387                 grep 'CLOSE'" ""
5388
5389         echo "Check the value is stored after mds remount"
5390         stop_mds || error "Failed to stop MDS"
5391         start_mds || error "Failed to start MDS"
5392         local CHANGELOG_MASK=$(do_facet mgs $LCTL get_param -n $MASK_PARAM)
5393         echo $CHANGELOG_MASK | grep CLOSE > /dev/null &&
5394                 error "changelog_mask is not changed"
5395
5396         stopall
5397 }
5398 run_test 76c "verify changelog_mask is applied with set_param -P"
5399
5400 test_76d() { #LU-9399
5401         setupall
5402
5403         local xattr_cache="llite.*.xattr_cache"
5404         local cmd="$LCTL get_param -n $xattr_cache | head -1"
5405         local new=$((($(eval $cmd) + 1) % 2))
5406
5407         echo "lctl set_param -P llite.*.xattr_cache=$new"
5408         do_facet mgs $LCTL set_param -P $xattr_cache=$new ||
5409                 error "Can't change xattr_cache"
5410         wait_update $HOSTNAME "$cmd" "$new"
5411
5412         echo "Check $xattr_cache on client $MOUNT"
5413         umount_client $MOUNT || error "umount $MOUNT failed"
5414         mount_client $MOUNT || error "mount $MOUNT failed"
5415         [ $(eval $cmd) -eq $new ] ||
5416                 error "$xattr_cache != $new on client $MOUNT"
5417
5418         echo "Check $xattr_cache on the new client $MOUNT2"
5419         mount_client $MOUNT2 || error "mount $MOUNT2 failed"
5420         [ $(eval $cmd) -eq $new ] ||
5421                 error "$xattr_cache != $new on client $MOUNT2"
5422         umount_client $MOUNT2 || error "umount $MOUNT2 failed"
5423
5424         stopall
5425 }
5426 run_test 76d "verify llite.*.xattr_cache can be set by 'set_param -P' correctly"
5427
5428 test_77() { # LU-3445
5429         local server_version=$(lustre_version_code $SINGLEMDS)
5430         [[ $server_version -ge $(version_code 2.8.55) ]] ||
5431                 { skip "Need MDS version 2.8.55+ "; return; }
5432
5433         if [[ -z "$fs2ost_DEV" || -z "$fs2mds_DEV" ]]; then
5434                 is_blkdev $SINGLEMDS $(mdsdevname ${SINGLEMDS//mds/}) &&
5435                 skip_env "mixed loopback and real device not working" && return
5436         fi
5437
5438         local fs2mdsdev=$(mdsdevname 1_2)
5439         local fs2ostdev=$(ostdevname 1_2)
5440         local fs2mdsvdev=$(mdsvdevname 1_2)
5441         local fs2ostvdev=$(ostvdevname 1_2)
5442         local fsname=test1234
5443         local mgsnid
5444         local failnid="$(h2nettype 1.2.3.4),$(h2nettype 4.3.2.1)"
5445
5446         combined_mgs_mds || stop_mgs || error "stopping MGS service failed"
5447
5448         add fs2mds $(mkfs_opts mds1 $fs2mdsdev) --mgs --fsname=$fsname \
5449                 --reformat $fs2mdsdev $fs2mdsvdev || error "add fs2mds failed"
5450         start fs2mds $fs2mdsdev $MDS_MOUNT_OPTS && trap cleanup_fs2 EXIT INT ||
5451                 error "start fs2mds failed"
5452
5453         mgsnid=$(do_facet fs2mds $LCTL list_nids | xargs | tr ' ' ,)
5454         mgsnid="0.0.0.0@tcp,$mgsnid,$mgsnid:$mgsnid"
5455
5456         add fs2ost --mgsnode=$mgsnid $(mkfs_opts ost1 $fs2ostdev) \
5457                 --failnode=$failnid --fsname=$fsname \
5458                 --reformat $fs2ostdev $fs2ostvdev ||
5459                         error "add fs2ost failed"
5460         start fs2ost $fs2ostdev $OST_MOUNT_OPTS || error "start fs2ost failed"
5461
5462         mkdir -p $MOUNT2 || error "mkdir $MOUNT2 failed"
5463         $MOUNT_CMD $mgsnid:/$fsname $MOUNT2 || error "mount $MOUNT2 failed"
5464         DIR=$MOUNT2 MOUNT=$MOUNT2 check_mount || error "check $MOUNT2 failed"
5465         cleanup_fs2
5466 }
5467 run_test 77 "comma-separated MGS NIDs and failover node NIDs"
5468
5469 test_78() {
5470         [[ $(facet_fstype $SINGLEMDS) != ldiskfs ||
5471            $(facet_fstype ost1) != ldiskfs ]] &&
5472                 skip "ldiskfs only test" && return
5473
5474         # reformat the Lustre filesystem with a smaller size
5475         local saved_MDSCOUNT=$MDSCOUNT
5476         local saved_MDSSIZE=$MDSSIZE
5477         local saved_OSTCOUNT=$OSTCOUNT
5478         local saved_OSTSIZE=$OSTSIZE
5479         MDSCOUNT=1
5480         OSTCOUNT=1
5481         MDSSIZE=$((MDSSIZE - 20000))
5482         OSTSIZE=$((OSTSIZE - 20000))
5483         reformat || error "(1) reformat Lustre filesystem failed"
5484         MDSSIZE=$saved_MDSSIZE
5485         OSTSIZE=$saved_OSTSIZE
5486
5487         # mount the Lustre filesystem
5488         setup_noconfig || error "(2) setup Lustre filesystem failed"
5489
5490         # create some files
5491         log "create test files"
5492         local i
5493         local file
5494         local num_files=100
5495
5496         mkdir $MOUNT/$tdir || error "(3) mkdir $MOUNT/$tdir failed"
5497         $LFS df; $LFS df -i
5498         for i in $(seq $num_files); do
5499                 file=$MOUNT/$tdir/$tfile-$i
5500                 dd if=/dev/urandom of=$file count=1 bs=1M || {
5501                         $LCTL get_param osc.*.cur*grant*
5502                         $LFS df; $LFS df -i;
5503                         # stop creating files if there is no more space
5504                         if [ ! -e $file ]; then
5505                                 num_files=$((i - 1))
5506                                 break
5507                         fi
5508
5509                         $LFS getstripe -v $file
5510                         local ost_idx=$(LFS getstripe -i $file)
5511                         do_facet ost$((ost_idx + 1)) \
5512                                 $LCTL get_param obdfilter.*.*grant*
5513                         error "(4) create $file failed"
5514                 }
5515         done
5516
5517         # unmount the Lustre filesystem
5518         cleanup || error "(5) cleanup Lustre filesystem failed"
5519
5520         # run e2fsck on the MDT and OST devices
5521         local mds_host=$(facet_active_host $SINGLEMDS)
5522         local ost_host=$(facet_active_host ost1)
5523         local mds_dev=$(mdsdevname ${SINGLEMDS//mds/})
5524         local ost_dev=$(ostdevname 1)
5525
5526         run_e2fsck $mds_host $mds_dev "-y"
5527         run_e2fsck $ost_host $ost_dev "-y"
5528
5529         # get the original block count of the MDT and OST filesystems
5530         local mds_orig_blks=$(get_block_count $SINGLEMDS $mds_dev)
5531         local ost_orig_blks=$(get_block_count ost1 $ost_dev)
5532
5533         # expand the MDT and OST filesystems to the device size
5534         run_resize2fs $SINGLEMDS $mds_dev "" || error "expand $SINGLEMDS failed"
5535         run_resize2fs ost1 $ost_dev "" || error "expand ost1 failed"
5536
5537         # run e2fsck on the MDT and OST devices again
5538         run_e2fsck $mds_host $mds_dev "-y"
5539         run_e2fsck $ost_host $ost_dev "-y"
5540
5541         # mount the Lustre filesystem
5542         setup
5543
5544         # check the files
5545         log "check files after expanding the MDT and OST filesystems"
5546         for i in $(seq $num_files); do
5547                 file=$MOUNT/$tdir/$tfile-$i
5548                 $CHECKSTAT -t file -s 1048576 $file ||
5549                         error "(6) checkstat $file failed"
5550         done
5551
5552         # create more files
5553         log "create more files after expanding the MDT and OST filesystems"
5554         for i in $(seq $((num_files + 1)) $((num_files + 10))); do
5555                 file=$MOUNT/$tdir/$tfile-$i
5556                 dd if=/dev/urandom of=$file count=1 bs=1M ||
5557                         error "(7) create $file failed"
5558         done
5559
5560         # unmount the Lustre filesystem
5561         cleanup || error "(8) cleanup Lustre filesystem failed"
5562
5563         # run e2fsck on the MDT and OST devices
5564         run_e2fsck $mds_host $mds_dev "-y"
5565         run_e2fsck $ost_host $ost_dev "-y"
5566
5567         # get the maximum block count of the MDT and OST filesystems
5568         local mds_max_blks=$(get_block_count $SINGLEMDS $mds_dev)
5569         local ost_max_blks=$(get_block_count ost1 $ost_dev)
5570
5571         # get the minimum block count of the MDT and OST filesystems
5572         local mds_min_blks=$(run_resize2fs $SINGLEMDS $mds_dev "" "-P" 2>&1 |
5573                                 grep minimum | sed -e 's/^.*filesystem: //g')
5574         local ost_min_blks=$(run_resize2fs ost1 $ost_dev "" "-P" 2>&1 |
5575                                 grep minimum | sed -e 's/^.*filesystem: //g')
5576
5577         # shrink the MDT and OST filesystems to a smaller size
5578         local shrunk=false
5579         local new_blks
5580         local base_blks
5581         if [[ $mds_max_blks -gt $mds_min_blks &&
5582               $mds_max_blks -gt $mds_orig_blks ]]; then
5583                 [[ $mds_orig_blks -gt $mds_min_blks ]] &&
5584                         base_blks=$mds_orig_blks || base_blks=$mds_min_blks
5585                 new_blks=$(( (mds_max_blks - base_blks) / 2 + base_blks ))
5586                 run_resize2fs $SINGLEMDS $mds_dev $new_blks ||
5587                         error "shrink $SINGLEMDS to $new_blks failed"
5588                 shrunk=true
5589         fi
5590
5591         if [[ $ost_max_blks -gt $ost_min_blks &&
5592               $ost_max_blks -gt $ost_orig_blks ]]; then
5593                 [[ $ost_orig_blks -gt $ost_min_blks ]] &&
5594                         base_blks=$ost_orig_blks || base_blks=$ost_min_blks
5595                 new_blks=$(( (ost_max_blks - base_blks) / 2 + base_blks ))
5596                 run_resize2fs ost1 $ost_dev $new_blks ||
5597                         error "shrink ost1 to $new_blks failed"
5598                 shrunk=true
5599         fi
5600
5601         # check whether the MDT or OST filesystem was shrunk or not
5602         if ! $shrunk; then
5603                 combined_mgs_mds || stop_mgs || error "(9) stop mgs failed"
5604                 reformat || error "(10) reformat Lustre filesystem failed"
5605                 return 0
5606         fi
5607
5608         # run e2fsck on the MDT and OST devices again
5609         run_e2fsck $mds_host $mds_dev "-y"
5610         run_e2fsck $ost_host $ost_dev "-y"
5611
5612         # mount the Lustre filesystem again
5613         setup
5614
5615         # check the files
5616         log "check files after shrinking the MDT and OST filesystems"
5617         for i in $(seq $((num_files + 10))); do
5618                 file=$MOUNT/$tdir/$tfile-$i
5619                 $CHECKSTAT -t file -s 1048576 $file ||
5620                         error "(11) checkstat $file failed"
5621         done
5622
5623         # unmount and reformat the Lustre filesystem
5624         cleanup || error "(12) cleanup Lustre filesystem failed"
5625         combined_mgs_mds || stop_mgs || error "(13) stop mgs failed"
5626
5627         MDSCOUNT=$saved_MDSCOUNT
5628         OSTCOUNT=$saved_OSTCOUNT
5629         reformat || error "(14) reformat Lustre filesystem failed"
5630 }
5631 run_test 78 "run resize2fs on MDT and OST filesystems"
5632
5633 test_79() { # LU-4227
5634         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.5.59) ]] ||
5635                 { skip "Need MDS version at least 2.5.59"; return 0; }
5636
5637         local mdsdev1=$(mdsdevname 1)
5638         local mdsvdev1=$(mdsvdevname 1)
5639         local mdsdev2=$(mdsdevname 2)
5640         local mdsvdev2=$(mdsvdevname 2)
5641         local ostdev1=$(ostdevname 1)
5642         local ostvdev1=$(ostvdevname 1)
5643         local opts_mds1="$(mkfs_opts mds1 $mdsdev1) --reformat"
5644         local opts_mds2="$(mkfs_opts mds2 $mdsdev2) --reformat"
5645         local opts_ost1="$(mkfs_opts ost1 $ostdev1) --reformat"
5646         local mgsnode_opt
5647
5648         # remove --mgs/--mgsnode from mkfs.lustre options
5649         opts_mds1=$(echo $opts_mds1 | sed -e "s/--mgs//")
5650
5651         mgsnode_opt=$(echo $opts_mds2 |
5652                 awk '{ for ( i = 1; i < NF; i++ )
5653                         if ( $i ~ "--mgsnode" ) { print $i; break } }')
5654         [ -n $mgsnode_opt ] &&
5655                 opts_mds2=$(echo $opts_mds2 | sed -e "s/$mgsnode_opt//")
5656
5657         mgsnode_opt=$(echo $opts_ost1 |
5658                 awk '{ for ( i = 1; i < NF; i++ )
5659                         if ( $i ~ "--mgsnode" ) { print $i; break } }')
5660         [ -n $mgsnode_opt ] &&
5661                 opts_ost1=$(echo $opts_ost1 | sed -e "s/$mgsnode_opt//")
5662
5663         # -MGS, format a mdt without --mgs option
5664         add mds1 $opts_mds1 $mdsdev1 $mdsvdev1 &&
5665                 error "Must specify --mgs when formatting mdt combined with mgs"
5666
5667         # +MGS, format a mdt/ost without --mgsnode option
5668         add mds1 $(mkfs_opts mds1 $mdsdev1) --reformat $mdsdev1 $mdsvdev1 \
5669                 > /dev/null || error "start mds1 failed"
5670         add mds2 $opts_mds2 $mdsdev2 $mdsvdev2 &&
5671                 error "Must specify --mgsnode when formatting a mdt"
5672         add ost1 $opts_ost1 $ostdev1 $ostvdev2 &&
5673                 error "Must specify --mgsnode when formatting an ost"
5674
5675         reformat
5676 }
5677 run_test 79 "format MDT/OST without mgs option (should return errors)"
5678
5679 test_80() {
5680         start_mds || error "Failed to start MDT"
5681         start_ost || error "Failed to start OST1"
5682         uuid=$(do_facet ost1 $LCTL get_param -n mgc.*.uuid)
5683 #define OBD_FAIL_MGS_PAUSE_TARGET_CON       0x906
5684         do_facet ost1 "$LCTL set_param fail_val=10 fail_loc=0x906"
5685         do_facet mgs "$LCTL set_param fail_val=10 fail_loc=0x906"
5686         do_facet mgs "$LCTL set_param -n mgs/MGS/evict_client $uuid"
5687         sleep 30
5688         start_ost2 || error "Failed to start OST2"
5689
5690         do_facet ost1 "$LCTL set_param fail_loc=0"
5691         stopall
5692 }
5693 run_test 80 "mgc import reconnect race"
5694
5695 #Save the original values of $OSTCOUNT and $OSTINDEX$i.
5696 save_ostindex() {
5697         local new_ostcount=$1
5698         saved_ostcount=$OSTCOUNT
5699         OSTCOUNT=$new_ostcount
5700
5701         local i
5702         local index
5703         for i in $(seq $OSTCOUNT); do
5704                 index=OSTINDEX$i
5705                 eval saved_ostindex$i=${!index}
5706                 eval OSTINDEX$i=""
5707         done
5708 }
5709
5710 # Restore the original values of $OSTCOUNT and $OSTINDEX$i.
5711 restore_ostindex() {
5712         trap 0
5713
5714         local i
5715         local index
5716         for i in $(seq $OSTCOUNT); do
5717                 index=saved_ostindex$i
5718                 eval OSTINDEX$i=${!index}
5719         done
5720         OSTCOUNT=$saved_ostcount
5721
5722         formatall
5723 }
5724
5725 # The main purpose of this test is to ensure the OST_INDEX_LIST functions as
5726 # expected. This test uses OST_INDEX_LIST to format OSTs with a randomly
5727 # assigned index and ensures we can mount such a formatted file system
5728 test_81() { # LU-4665
5729         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.54) ]] ||
5730                 { skip "Need MDS version at least 2.6.54" && return; }
5731         [[ $OSTCOUNT -ge 3 ]] || { skip_env "needs >= 3 OSTs" && return; }
5732
5733         stopall
5734
5735         # Each time RANDOM is referenced, a random integer between 0 and 32767
5736         # is generated.
5737         local i
5738         local saved_ostindex1=$OSTINDEX1
5739         for i in 65535 $((RANDOM + 65536)); do
5740                 echo -e "\nFormat ost1 with --index=$i, should fail"
5741                 OSTINDEX1=$i
5742                 if add ost1 $(mkfs_opts ost1 $(ostdevname 1)) --reformat \
5743                    $(ostdevname 1) $(ostvdevname 1); then
5744                         OSTINDEX1=$saved_ostindex1
5745                         error "format ost1 with --index=$i should fail"
5746                 fi
5747         done
5748         OSTINDEX1=$saved_ostindex1
5749
5750         save_ostindex 3
5751
5752         # Format OSTs with random sparse indices.
5753         trap "restore_ostindex" EXIT
5754         echo -e "\nFormat $OSTCOUNT OSTs with sparse indices"
5755         OST_INDEX_LIST=[0,$((RANDOM * 2 % 65533 + 1)),65534] formatall
5756
5757         # Setup and check Lustre filesystem.
5758         start_mgsmds || error "start_mgsmds failed"
5759         for i in $(seq $OSTCOUNT); do
5760                 start ost$i $(ostdevname $i) $OST_MOUNT_OPTS ||
5761                         error "start ost$i failed"
5762         done
5763
5764         mount_client $MOUNT || error "mount client $MOUNT failed"
5765         check_mount || error "check client $MOUNT failed"
5766
5767         # Check max_easize.
5768         local max_easize=$($LCTL get_param -n llite.*.max_easize)
5769         [[ $max_easize -eq 128 ]] ||
5770                 error "max_easize is $max_easize, should be 128 bytes"
5771
5772         restore_ostindex
5773 }
5774 run_test 81 "sparse OST indexing"
5775
5776 # Here we exercise the stripe placement functionality on a file system that
5777 # has formatted the OST with a random index. With the file system the following
5778 # functionality is tested:
5779 #
5780 # 1. Creating a new file with a specific stripe layout.
5781 #
5782 # 2. Modifiy a existing empty file with a specific stripe layout.
5783 #
5784 # 3. Ensure we fail to set the stripe layout of a file that already has one.
5785 #
5786 # 4. If ost-index is defined we need to ensure it is the first entry in the
5787 #    ost index list returned by lfs getstripe.
5788 #
5789 # 5. Lastly ensure this functionality fails with directories.
5790 test_82a() { # LU-4665
5791         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.54) ]] ||
5792                 { skip "Need MDS version at least 2.6.54" && return; }
5793         [[ $OSTCOUNT -ge 3 ]] || { skip_env "needs >= 3 OSTs" && return; }
5794
5795         stopall
5796
5797         save_ostindex 3
5798
5799         # Format OSTs with random sparse indices.
5800         local i
5801         local index
5802         local ost_indices
5803         local LOV_V1_INSANE_STRIPE_COUNT=65532
5804         for i in $(seq $OSTCOUNT); do
5805                 index=$(((RANDOM * 2) % LOV_V1_INSANE_STRIPE_COUNT))
5806                 ost_indices+=" $index"
5807         done
5808         ost_indices=$(comma_list $ost_indices)
5809
5810         trap "restore_ostindex" EXIT
5811         echo -e "\nFormat $OSTCOUNT OSTs with sparse indices $ost_indices"
5812         OST_INDEX_LIST=[$ost_indices] formatall
5813
5814         # Setup Lustre filesystem.
5815         start_mgsmds || error "start_mgsmds failed"
5816         for i in $(seq $OSTCOUNT); do
5817                 start ost$i $(ostdevname $i) $OST_MOUNT_OPTS ||
5818                         error "start ost$i failed"
5819         done
5820
5821         mount_client $MOUNT || error "mount client $MOUNT failed"
5822         wait_osts_up
5823
5824         $LFS df $MOUNT || error "$LFS df $MOUNT failed"
5825         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
5826
5827         # 1. If the file does not exist, new file will be created
5828         #    with specified OSTs.
5829         local file=$DIR/$tdir/$tfile-1
5830         local cmd="$SETSTRIPE -o $ost_indices $file"
5831         echo -e "\n$cmd"
5832         eval $cmd || error "$cmd failed"
5833         check_stripe_count $file $OSTCOUNT
5834         check_obdidx $file $ost_indices
5835         dd if=/dev/urandom of=$file count=1 bs=1M > /dev/null 2>&1 ||
5836                 error "write $file failed"
5837
5838         # 2. If the file already exists and is an empty file, the file
5839         #    will be attached with specified layout.
5840         file=$DIR/$tdir/$tfile-2
5841         mcreate $file || error "mcreate $file failed"
5842         cmd="$SETSTRIPE -o $ost_indices $file"
5843         echo -e "\n$cmd"
5844         eval $cmd || error "$cmd failed"
5845         dd if=/dev/urandom of=$file count=1 bs=1M > /dev/null 2>&1 ||
5846                 error "write $file failed"
5847         check_stripe_count $file $OSTCOUNT
5848         check_obdidx $file $ost_indices
5849
5850         # 3. If the file already has a valid layout attached, the command
5851         #    should fail with EBUSY.
5852         echo -e "\n$cmd"
5853         eval $cmd && error "stripe is already set on $file, $cmd should fail"
5854
5855         # 4. If [--stripe-index|-i <start_ost_idx>] is used, the index must
5856         #    be in the OST indices list.
5857         local start_ost_idx=${ost_indices##*,}
5858         file=$DIR/$tdir/$tfile-3
5859         cmd="$SETSTRIPE -o $ost_indices -i $start_ost_idx $file"
5860         echo -e "\n$cmd"
5861         eval $cmd || error "$cmd failed"
5862         check_stripe_count $file $OSTCOUNT
5863         check_obdidx $file $ost_indices
5864         check_start_ost_idx $file $start_ost_idx
5865
5866         file=$DIR/$tdir/$tfile-4
5867         cmd="$SETSTRIPE"
5868         cmd+=" -o $(exclude_items_from_list $ost_indices $start_ost_idx)"
5869         cmd+=" -i $start_ost_idx $file"
5870         echo -e "\n$cmd"
5871         eval $cmd && error "index $start_ost_idx should be in $ost_indices"
5872
5873         # 5. Specifying OST indices for directory should fail with ENOSUPP.
5874         local dir=$DIR/$tdir/$tdir
5875         mkdir $dir || error "mkdir $dir failed"
5876         cmd="$SETSTRIPE -o $ost_indices $dir"
5877         echo -e "\n$cmd"
5878         eval $cmd && error "$cmd should fail, specifying OST indices" \
5879                            "for directory is not supported"
5880
5881         restore_ostindex
5882 }
5883 run_test 82a "specify OSTs for file (succeed) or directory (fail)"
5884
5885 cleanup_82b() {
5886         trap 0
5887
5888         # Remove OSTs from a pool and destroy the pool.
5889         destroy_pool $ost_pool || true
5890
5891         if ! combined_mgs_mds ; then
5892                 umount_mgs_client
5893         fi
5894         restore_ostindex
5895 }
5896
5897 # Test 82b is run to ensure that if the user supplies a pool with a specific
5898 # stripe layout that it behaves proprerly. It should fail in the case that
5899 # the supplied OST index list points to OSTs not contained in the user
5900 # supplied pool.
5901 test_82b() { # LU-4665
5902         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.54) ]] ||
5903                 { skip "Need MDS version at least 2.6.54" && return; }
5904         [[ $OSTCOUNT -ge 4 ]] || { skip_env "needs >= 4 OSTs" && return; }
5905
5906         stopall
5907
5908         save_ostindex 4
5909
5910         # Format OSTs with random sparse indices.
5911         local i
5912         local index
5913         local ost_indices
5914         local LOV_V1_INSANE_STRIPE_COUNT=65532
5915         for i in $(seq $OSTCOUNT); do
5916                 index=$(((RANDOM * 2) % LOV_V1_INSANE_STRIPE_COUNT))
5917                 ost_indices+=" $index"
5918         done
5919         ost_indices=$(comma_list $ost_indices)
5920
5921         trap "restore_ostindex" EXIT
5922         echo -e "\nFormat $OSTCOUNT OSTs with sparse indices $ost_indices"
5923         OST_INDEX_LIST=[$ost_indices] formatall
5924
5925         # Setup Lustre filesystem.
5926         start_mgsmds || error "start_mgsmds failed"
5927         for i in $(seq $OSTCOUNT); do
5928                 start ost$i $(ostdevname $i) $OST_MOUNT_OPTS ||
5929                         error "start ost$i failed"
5930         done
5931
5932         mount_client $MOUNT || error "mount client $MOUNT failed"
5933         if ! combined_mgs_mds ; then
5934                 mount_mgs_client
5935         fi
5936
5937         wait_osts_up
5938         $LFS df $MOUNT || error "$LFS df $MOUNT failed"
5939         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
5940
5941         # Create a new pool and add OSTs into it.
5942         local ost_pool=$FSNAME.$TESTNAME
5943         create_pool $ost_pool || error "create OST pool $ost_pool failed"
5944
5945         trap - EXIT
5946         trap "cleanup_82b" EXIT
5947
5948         local ost_idx_in_list=${ost_indices##*,}
5949         local ost_idx_in_pool=$(exclude_items_from_list $ost_indices \
5950                                 $ost_idx_in_list)
5951
5952         local ost_targets="$FSNAME-OST["
5953         for i in ${ost_idx_in_pool//,/ }; do
5954                 ost_targets=$ost_targets$(printf "%04x," $i)
5955         done
5956         ost_targets="${ost_targets%,}]"
5957
5958         local ost_targets_uuid=$(for i in ${ost_idx_in_pool//,/ }; \
5959                                  do printf "$FSNAME-OST%04x_UUID\n" $i; done |
5960                                  sort -u | tr '\n' ' ')
5961
5962         local cmd="$LCTL pool_add $ost_pool $ost_targets"
5963         do_facet mgs $cmd || error "$cmd failed"
5964         wait_update $HOSTNAME "$LCTL get_param -n lov.$FSNAME-*.pools.$TESTNAME|
5965                                sort -u | tr '\n' ' ' " "$ost_targets_uuid" ||
5966                                         error "wait_update $ost_pool failed"
5967         wait_update_facet $SINGLEMDS "$LCTL pool_list $ost_pool | wc -l" 4 ||
5968                                 error "wait_update pool_list $ost_pool failed"
5969
5970         # If [--pool|-p <pool_name>] is set with [--ost-list|-o <ost_indices>],
5971         # then the OSTs must be the members of the pool.
5972         local file=$DIR/$tdir/$tfile
5973         cmd="$SETSTRIPE -p $ost_pool -o $ost_idx_in_list $file"
5974         echo -e "\n$cmd"
5975         eval $cmd && error "OST with index $ost_idx_in_list should be" \
5976                            "in OST pool $ost_pool"
5977
5978         # Only select OST $ost_idx_in_list from $ost_pool for file.
5979         ost_idx_in_list=${ost_idx_in_pool#*,}
5980         cmd="$SETSTRIPE -p $ost_pool -o $ost_idx_in_list $file"
5981         echo -e "\n$cmd"
5982         eval $cmd || error "$cmd failed"
5983         cmd="$GETSTRIPE $file"
5984         echo -e "\n$cmd"
5985         eval $cmd || error "$cmd failed"
5986         check_stripe_count $file 2
5987         check_obdidx $file $ost_idx_in_list
5988         dd if=/dev/urandom of=$file count=1 bs=1M > /dev/null 2>&1 ||
5989                 error "write $file failed"
5990
5991         cleanup_82b
5992 }
5993 run_test 82b "specify OSTs for file with --pool and --ost-list options"
5994
5995 test_83() {
5996         [[ $(lustre_version_code ost1) -ge $(version_code 2.6.91) ]] ||
5997                 { skip "Need OST version at least 2.6.91" && return 0; }
5998         if [ $(facet_fstype ost1) != ldiskfs ]; then
5999                 skip "ldiskfs only test"
6000                 return
6001         fi
6002
6003         local dev
6004         local ostmnt
6005         local fstype
6006         local mnt_opts
6007
6008         dev=$(ostdevname 1)
6009         ostmnt=$(facet_mntpt ost1)
6010         fstype=$(facet_fstype ost1)
6011
6012         # Mount the OST as an ldiskfs filesystem.
6013         log "mount the OST $dev as a $fstype filesystem"
6014         add ost1 $(mkfs_opts ost1 $dev) $FSTYPE_OPT \
6015                 --reformat $dev > /dev/null ||
6016                 error "format ost1 error"
6017
6018         if ! test -b $dev; then
6019                 mnt_opts=$(csa_add "$OST_MOUNT_OPTS" -o loop)
6020         fi
6021         echo "mnt_opts $mnt_opts"
6022         do_facet ost1 mount -t $fstype $dev \
6023                 $ostmnt $mnt_opts
6024         # Run llverfs on the mounted ldiskfs filesystem.
6025         # It is needed to get ENOSPACE.
6026         log "run llverfs in partial mode on the OST $fstype $ostmnt"
6027         do_rpc_nodes $(facet_host ost1) run_llverfs $ostmnt -vpl \
6028                 "no" || error "run_llverfs error on $fstype"
6029
6030         # Unmount the OST.
6031         log "unmount the OST $dev"
6032         stop ost1
6033
6034         # Delete file IO_scrub. Later osd_scrub_setup will try to
6035         # create "IO_scrub" but will get ENOSPACE.
6036         writeconf_all
6037         echo "start ost1 service on `facet_active_host ost1`"
6038         start ost1 `ostdevname 1` $OST_MOUNT_OPTS
6039
6040         local err
6041         err=$(do_facet ost1 dmesg | grep "VFS: Busy inodes after unmount of")
6042         echo "string err $err"
6043         [ -z "$err" ] || error $err
6044         reformat
6045 }
6046 run_test 83 "ENOSPACE on OST doesn't cause message VFS: \
6047 Busy inodes after unmount ..."
6048
6049 test_84() {
6050         local facet=$SINGLEMDS
6051         local num=$(echo $facet | tr -d "mds")
6052         local dev=$(mdsdevname $num)
6053         local time_min=$(recovery_time_min)
6054         local recovery_duration
6055         local completed_clients
6056         local correct_clients
6057         local wrap_up=5
6058
6059         echo "start mds service on $(facet_active_host $facet)"
6060         start_mds \
6061         "-o recovery_time_hard=$time_min,recovery_time_soft=$time_min" $@ ||
6062                 error "start MDS failed"
6063
6064         start_ost || error "start OST0000 failed"
6065         start_ost2 || error "start OST0001 failed"
6066
6067         echo "recovery_time=$time_min, timeout=$TIMEOUT, wrap_up=$wrap_up"
6068
6069         mount_client $MOUNT1 || error "mount $MOUNT1 failed"
6070         mount_client $MOUNT2 || error "mount $MOUNT2 failed"
6071         # make sure new superblock labels are sync'd before disabling writes
6072         sync_all_data
6073         sleep 5
6074
6075         replay_barrier $SINGLEMDS
6076         createmany -o $DIR1/$tfile-%d 1000
6077
6078         # We need to catch the end of recovery window to extend it.
6079         # Skip 5 requests and add delay to request handling.
6080         #define OBD_FAIL_TGT_REPLAY_DELAY  0x709 | FAIL_SKIP
6081         do_facet $SINGLEMDS "lctl set_param fail_loc=0x20000709 fail_val=5"
6082
6083         facet_failover --fsck $SINGLEMDS || error "failover: $?"
6084         client_up
6085
6086         echo "recovery status"
6087         do_facet $SINGLEMDS \
6088                 "$LCTL get_param -n mdt.$FSNAME-MDT0000.recovery_status"
6089
6090         recovery_duration=$(do_facet $SINGLEMDS \
6091                 "$LCTL get_param -n mdt.$FSNAME-MDT0000.recovery_status" |
6092                 awk '/recovery_duration/ { print $2 }')
6093         (( $recovery_duration > $time_min + $wrap_up )) &&
6094                 error "recovery_duration > recovery_time_hard + wrap up"
6095         completed_clients=$(do_facet $SINGLEMDS \
6096                 "$LCTL get_param -n mdt.$FSNAME-MDT0000.recovery_status" |
6097                 awk '/completed_clients/ { print $2 }')
6098
6099         correct_clients="$MDSCOUNT/$((MDSCOUNT+1))"
6100         [ "$completed_clients" = "${correct_clients}" ] ||
6101                 error "$completed_clients != $correct_clients"
6102
6103         do_facet $SINGLEMDS "lctl set_param fail_loc=0"
6104         umount_client $MOUNT1
6105         umount_client $MOUNT2
6106
6107         stop_ost
6108         stop_ost2
6109         stop_mds
6110 }
6111 run_test 84 "check recovery_hard_time"
6112
6113 test_85() {
6114         [[ $(lustre_version_code ost1) -ge $(version_code 2.7.55) ]] ||
6115                 { skip "Need OST version at least 2.7.55" && return 0; }
6116 ##define OBD_FAIL_OSD_OST_EA_FID_SET 0x197
6117         do_facet ost1 "lctl set_param fail_loc=0x197"
6118         start_ost
6119         stop_ost
6120 }
6121 run_test 85 "osd_ost init: fail ea_fid_set"
6122
6123 cleanup_86() {
6124         trap 0
6125
6126         # ost1 has already registered to the MGS before the reformat.
6127         # So after reformatting it with option "-G", it could not be
6128         # mounted to the MGS. Cleanup the system for subsequent tests.
6129         reformat_and_config
6130 }
6131
6132 test_86() {
6133         local server_version=$(lustre_version_code $SINGLEMDS)
6134         [ "$(facet_fstype ost1)" = "zfs" ] &&
6135                 skip "LU-6442: no such mkfs params for ZFS OSTs" && return
6136         [[ $server_version -ge $(version_code 2.7.56) ]] ||
6137                 { skip "Need server version newer than 2.7.55"; return 0; }
6138
6139         local OST_OPTS="$(mkfs_opts ost1 $(ostdevname 1)) \
6140                 --reformat $(ostdevname 1) $(ostvdevname 1)"
6141
6142         local NEWSIZE=1024
6143         local OLDSIZE=$(do_facet ost1 "$DEBUGFS -c -R stats $(ostdevname 1)" |
6144                 awk '/Flex block group size: / { print $NF; exit; }')
6145
6146         local opts=OST_OPTS
6147         if [[ ${!opts} != *mkfsoptions* ]]; then
6148                 eval opts=\"${!opts} \
6149                         --mkfsoptions='\\\"-O flex_bg -G $NEWSIZE\\\"'\"
6150         else
6151                 val=${!opts//--mkfsoptions=\\\"/ \
6152                         --mkfsoptions=\\\"-O flex_bg -G $NEWSIZE }
6153                 eval opts='${val}'
6154         fi
6155
6156         echo "params: $opts"
6157
6158         trap cleanup_86 EXIT ERR
6159
6160         stopall
6161         add ost1 $opts || error "add ost1 failed with new params"
6162
6163         local FOUNDSIZE=$(do_facet ost1 "$DEBUGFS -c -R stats $(ostdevname 1)" |
6164                 awk '/Flex block group size: / { print $NF; exit; }')
6165
6166         [[ $FOUNDSIZE == $NEWSIZE ]] ||
6167                 error "Flex block group size: $FOUNDSIZE, expected: $NEWSIZE"
6168
6169         cleanup_86
6170 }
6171 run_test 86 "Replacing mkfs.lustre -G option"
6172
6173 test_87() { #LU-6544
6174         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.9.51) ]] ||
6175                 { skip "Need MDS version at least 2.9.51" && return; }
6176         [[ $(facet_fstype $SINGLEMDS) != ldiskfs ]] &&
6177                 { skip "ldiskfs only test" && return; }
6178         [[ $OSTCOUNT -gt 59 ]] &&
6179                 { skip "Ignore wide striping situation" && return; }
6180
6181         local mdsdev=$(mdsdevname 1)
6182         local mdsvdev=$(mdsvdevname 1)
6183         local file=$DIR/$tfile
6184         local mntpt=$(facet_mntpt $SINGLEMDS)
6185         local used_xattr_blk=0
6186         local inode_size=${1:-1024}
6187         local left_size=0
6188         local xtest="trusted.test"
6189         local value
6190         local orig
6191         local i
6192         local stripe_cnt=$(($OSTCOUNT + 2))
6193
6194         #Please see ldiskfs_make_lustre() for MDT inode size calculation
6195         if [ $stripe_cnt -gt 16 ]; then
6196                 inode_size=2048
6197         fi
6198         left_size=$(expr $inode_size - \
6199                         156 - \
6200                         32 - \
6201                         32 - 40 \* 3 - 32 \* 3 - $stripe_cnt \* 24 - 16 - 3 -  \
6202                         24 - 16 - 3 - \
6203                         24 - 18 - $(expr length $tfile) - 16 - 4)
6204         if [ $left_size -le 0 ]; then
6205                 echo "No space($left_size) is expected in inode."
6206                 echo "Try 1-byte xattr instead to verify this."
6207                 left_size=1
6208         else
6209                 echo "Estimate: at most $left_size-byte space left in inode."
6210         fi
6211
6212         unload_modules
6213         reformat
6214
6215         add mds1 $(mkfs_opts mds1 ${mdsdev}) --stripe-count-hint=$stripe_cnt \
6216                 --reformat $mdsdev $mdsvdev || error "add mds1 failed"
6217         start_mdt 1 > /dev/null || error "start mdt1 failed"
6218         for i in $(seq $OSTCOUNT); do
6219                 start ost$i $(ostdevname $i) $OST_MOUNT_OPTS > /dev/null ||
6220                         error "start ost$i failed"
6221         done
6222         mount_client $MOUNT > /dev/null || error "mount client $MOUNT failed"
6223         check_mount || error "check client $MOUNT failed"
6224
6225         #set xattr
6226         $SETSTRIPE -E 1M -c 1 -E 64M -c 1 -E -1 -c -1 $file ||
6227                 error "Create file with 3 components failed"
6228         $TRUNCATE $file $((1024*1024*64+1)) || error "truncate file failed"
6229         i=$($GETSTRIPE -I3 -c $file) || error "get 3rd stripe count failed"
6230         if [ $i -ne $OSTCOUNT ]; then
6231                 left_size=$(expr $left_size + $(expr $OSTCOUNT - $i) \* 24)
6232                 echo -n "Since only $i out $OSTCOUNT OSTs are used, "
6233                 echo -n "the expected left space is changed to "
6234                 echo "$left_size bytes at most."
6235         fi
6236         value=$(generate_string $left_size)
6237         setfattr -n $xtest -v $value $file
6238         orig=$(get_xattr_value $xtest $file)
6239         [[ "$orig" != "$value" ]] && error "$xtest changed"
6240
6241         #Verify if inode has some expected space left
6242         umount $MOUNT > /dev/null || error "umount $MOUNT failed"
6243         stop_mdt 1 > /dev/null || error "stop mdt1 failed"
6244         mount_ldiskfs $SINGLEMDS || error "mount -t ldiskfs $SINGLEMDS failed"
6245
6246         do_facet $SINGLEMDS ls -sal $mntpt/ROOT/$tfile
6247         used_xattr_blk=$(do_facet $SINGLEMDS ls -s $mntpt/ROOT/$tfile |
6248                         awk '{ print $1 }')
6249         [[ $used_xattr_blk -eq 0 ]] &&
6250                 error "Please check MDS inode size calculation: \
6251                        more than $left_size-byte space left in inode."
6252         echo "Verified: at most $left_size-byte space left in inode."
6253
6254         stopall
6255 }
6256 run_test 87 "check if MDT inode can hold EAs with N stripes properly"
6257
6258 test_88() {
6259         [ "$(facet_fstype mds1)" == "zfs" ] &&
6260                 skip "LU-6662: no implementation for ZFS" && return
6261
6262         load_modules
6263
6264         add mds1 $(mkfs_opts mds1 $(mdsdevname 1)) \
6265                 --reformat $(mdsdevname 1) || error "add mds1 failed"
6266
6267         do_facet mds1 "$TUNEFS $(mdsdevname 1) |
6268                 grep -e \".*opts:.*errors=remount-ro.*\"" ||
6269                 error "default mount options is missing"
6270
6271         add mds1 $(mkfs_opts mds1 $(mdsdevname 1)) \
6272                 --mountfsoptions="user_xattr,errors=panic" \
6273                 --reformat $(mdsdevname 1) || error "add mds1 failed"
6274
6275         do_facet mds1 "$TUNEFS $(mdsdevname 1) |
6276                 grep -e \".*opts:.*errors=panic.*\"" ||
6277                 error "user can't override default mount options"
6278 }
6279 run_test 88 "check the default mount options can be overridden"
6280
6281 test_89() { # LU-7131
6282         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.9.54) ]] ||
6283                 { skip "Need MDT version at least 2.9.54" && return 0; }
6284
6285         local key=failover.node
6286         local val1=192.0.2.254@tcp0 # Reserved IPs, see RFC 5735
6287         local val2=192.0.2.255@tcp0
6288         local mdsdev=$(mdsdevname 1)
6289         local params
6290
6291         stopall
6292
6293         [ $(facet_fstype mds1) == zfs ] && import_zpool mds1
6294         # Check that parameters are added correctly
6295         echo "tunefs --param $key=$val1"
6296         do_facet mds "$TUNEFS --param $key=$val1 $mdsdev >/dev/null" ||
6297                 error "tunefs --param $key=$val1 failed"
6298         params=$(do_facet mds $TUNEFS --dryrun $mdsdev) ||
6299                 error "tunefs --dryrun failed"
6300         params=${params##*Parameters:}
6301         params=${params%%exiting*}
6302         [ $(echo $params | tr ' ' '\n' | grep -c $key=$val1) = "1" ] ||
6303                 error "on-disk parameter not added correctly via tunefs"
6304
6305         # Check that parameters replace existing instances when added
6306         echo "tunefs --param $key=$val2"
6307         do_facet mds "$TUNEFS --param $key=$val2 $mdsdev >/dev/null" ||
6308                 error "tunefs --param $key=$val2 failed"
6309         params=$(do_facet mds $TUNEFS --dryrun $mdsdev) ||
6310                 error "tunefs --dryrun failed"
6311         params=${params##*Parameters:}
6312         params=${params%%exiting*}
6313         [ $(echo $params | tr ' ' '\n' | grep -c $key=) = "1" ] ||
6314                 error "on-disk parameter not replaced via tunefs"
6315         [ $(echo $params | tr ' ' '\n' | grep -c $key=$val2) = "1" ] ||
6316                 error "on-disk parameter not replaced correctly via tunefs"
6317
6318         # Check that a parameter is erased properly
6319         echo "tunefs --erase-param $key"
6320         do_facet mds "$TUNEFS --erase-param $key $mdsdev >/dev/null" ||
6321                 error "tunefs --erase-param $key failed"
6322         params=$(do_facet mds $TUNEFS --dryrun $mdsdev) ||
6323                 error "tunefs --dryrun failed"
6324         params=${params##*Parameters:}
6325         params=${params%%exiting*}
6326         [ $(echo $params | tr ' ' '\n' | grep -c $key=) = "0" ] ||
6327                 error "on-disk parameter not erased correctly via tunefs"
6328
6329         # Check that all the parameters are erased
6330         echo "tunefs --erase-params"
6331         do_facet mds "$TUNEFS --erase-params $mdsdev >/dev/null" ||
6332                 error "tunefs --erase-params failed"
6333         params=$(do_facet mds $TUNEFS --dryrun $mdsdev) ||
6334                 error "tunefs --dryrun failed"
6335         params=${params##*Parameters:}
6336         params=${params%%exiting*}
6337         [ -z $params ] ||
6338                 error "all on-disk parameters not erased correctly via tunefs"
6339
6340         # Check the order of options --erase-params and --param
6341         echo "tunefs --param $key=$val1 --erase-params"
6342         do_facet mds \
6343                 "$TUNEFS --param $key=$val1 --erase-params $mdsdev >/dev/null"||
6344                 error "tunefs --param $key=$val1 --erase-params failed"
6345         params=$(do_facet mds $TUNEFS --dryrun $mdsdev) ||
6346                 error "tunefs --dryrun failed"
6347         params=${params##*Parameters:}
6348         params=${params%%exiting*}
6349         [ $(echo $params | tr ' ' '\n') == "$key=$val1" ] ||
6350                 error "on-disk param not added correctly with --erase-params"
6351
6352         reformat
6353 }
6354 run_test 89 "check tunefs --param and --erase-param{s} options"
6355
6356 # $1 test directory
6357 # $2 (optional) value of max_mod_rpcs_in_flight to set
6358 check_max_mod_rpcs_in_flight() {
6359         local dir="$1"
6360         local mmr="$2"
6361         local idx
6362         local facet
6363         local tmp
6364         local i
6365
6366         idx=$(printf "%04x" $($LFS getdirstripe -i $dir))
6367         facet="mds$((0x$idx + 1))"
6368
6369         if [ -z "$mmr" ]; then
6370                 # get value of max_mod_rcps_in_flight
6371                 mmr=$($LCTL get_param -n \
6372                         mdc.$FSNAME-MDT$idx-mdc-*.max_mod_rpcs_in_flight) ||
6373                         error "Unable to get max_mod_rpcs_in_flight"
6374                 echo "max_mod_rcps_in_flight is $mmr"
6375         else
6376                 # set value of max_mod_rpcs_in_flight
6377                 $LCTL set_param \
6378                     mdc.$FSNAME-MDT$idx-mdc-*.max_mod_rpcs_in_flight=$mmr ||
6379                         error "Unable to set max_mod_rpcs_in_flight to $mmr"
6380                 echo "max_mod_rpcs_in_flight set to $mmr"
6381         fi
6382
6383         # create mmr+1 files
6384         echo "creating $((mmr + 1)) files ..."
6385         umask 0022
6386         for i in $(seq $((mmr + 1))); do
6387                 touch $dir/file-$i
6388         done
6389
6390         ### part 1 ###
6391
6392         # consumes mmr-1 modify RPC slots
6393         #define OBD_FAIL_MDS_REINT_MULTI_NET     0x159
6394         # drop requests on MDT so that RPC slots are consumed
6395         # during all the request resend interval
6396         do_facet $facet "$LCTL set_param fail_loc=0x159"
6397         echo "launch $((mmr - 1)) chmod in parallel ..."
6398         for i in $(seq $((mmr - 1))); do
6399                 chmod 0600 $dir/file-$i &
6400         done
6401         sleep 1
6402
6403         # send one additional modify RPC
6404         do_facet $facet "$LCTL set_param fail_loc=0"
6405         echo "launch 1 additional chmod in parallel ..."
6406         chmod 0600 $dir/file-$mmr &
6407         sleep 1
6408
6409         # check this additional modify RPC get a modify RPC slot
6410         # and succeed its operation
6411         checkstat -vp 0600 $dir/file-$mmr ||
6412                 error "Unable to send $mmr modify RPCs in parallel"
6413         wait
6414
6415         ### part 2 ###
6416
6417         # consumes mmr modify RPC slots
6418         #define OBD_FAIL_MDS_REINT_MULTI_NET     0x159
6419         # drop requests on MDT so that RPC slots are consumed
6420         # during all the request resend interval
6421         do_facet $facet "$LCTL set_param fail_loc=0x159"
6422         echo "launch $mmr chmod in parallel ..."
6423         for i in $(seq $mmr); do
6424                 chmod 0666 $dir/file-$i &
6425         done
6426         sleep 1
6427
6428         # send one additional modify RPC
6429         do_facet $facet "$LCTL set_param fail_loc=0"
6430         echo "launch 1 additional chmod in parallel ..."
6431         chmod 0666 $dir/file-$((mmr + 1)) &
6432         sleep 1
6433
6434         # check this additional modify RPC blocked getting a modify RPC slot
6435         checkstat -vp 0644 $dir/file-$((mmr + 1)) ||
6436                 error "Unexpectedly send $(($mmr + 1)) modify RPCs in parallel"
6437         wait
6438 }
6439
6440 test_90a() {
6441         reformat
6442         if ! combined_mgs_mds ; then
6443                 start_mgs
6444         fi
6445         setup
6446
6447         [[ $($LCTL get_param mdc.*.import |
6448              grep "connect_flags:.*multi_mod_rpc") ]] ||
6449                 { skip "Need MDC with 'multi_mod_rpcs' feature"; return 0; }
6450
6451         # check default value
6452         $LFS mkdir -c1 $DIR/$tdir || error "mkdir $DIR/$tdir failed"
6453         check_max_mod_rpcs_in_flight $DIR/$tdir
6454
6455         cleanup
6456 }
6457 run_test 90a "check max_mod_rpcs_in_flight is enforced"
6458
6459 test_90b() {
6460         local idx
6461         local facet
6462         local tmp
6463         local mmrpc
6464
6465         setup
6466
6467         [[ $($LCTL get_param mdc.*.import |
6468              grep "connect_flags:.*multi_mod_rpc") ]] ||
6469                 { skip "Need MDC with 'multi_mod_rpcs' feature"; return 0; }
6470
6471         ### test 1.
6472         # update max_mod_rpcs_in_flight
6473         $LFS mkdir -c1 $DIR/${tdir}1 || error "mkdir $DIR/${tdir}1 failed"
6474         check_max_mod_rpcs_in_flight $DIR/${tdir}1 1
6475
6476         ### test 2.
6477         # check client is able to send multiple modify RPCs in paralell
6478         tmp=$($LCTL get_param -n mdc.$FSNAME-MDT*-mdc-*.import |
6479                 grep -c "multi_mod_rpcs")
6480         if [ "$tmp" -ne $MDSCOUNT ]; then
6481                 echo "Client not able to send multiple modify RPCs in parallel"
6482                 cleanup
6483                 return
6484         fi
6485
6486         # update max_mod_rpcs_in_flight
6487         $LFS mkdir -c1 $DIR/${tdir}2 || error "mkdir $DIR/${tdir}2 failed"
6488         check_max_mod_rpcs_in_flight $DIR/${tdir}2 5
6489
6490         ### test 3.
6491         $LFS mkdir -c1 $DIR/${tdir}3 || error "mkdir $DIR/${tdir}3 failed"
6492         idx=$(printf "%04x" $($LFS getdirstripe -i $DIR/${tdir}3))
6493         facet="mds$((0x$idx + 1))"
6494
6495         # save MDT max_mod_rpcs_per_client
6496         mmrpc=$(do_facet $facet \
6497                     cat /sys/module/mdt/parameters/max_mod_rpcs_per_client)
6498
6499         # update max_mod_rpcs_in_flight
6500         umount_client $MOUNT
6501         do_facet $facet \
6502                 "echo 16 > /sys/module/mdt/parameters/max_mod_rpcs_per_client"
6503         mount_client $MOUNT
6504         $LCTL set_param mdc.$FSNAME-MDT$idx-mdc-*.max_rpcs_in_flight=17
6505         check_max_mod_rpcs_in_flight $DIR/${tdir}3 16
6506
6507         # restore MDT max_mod_rpcs_per_client initial value
6508         do_facet $facet \
6509                 "echo $mmrpc > /sys/module/mdt/parameters/max_mod_rpcs_per_client"
6510
6511         rm -rf $DIR/${tdir}?
6512         cleanup
6513 }
6514 run_test 90b "check max_mod_rpcs_in_flight is enforced after update"
6515
6516 test_90c() {
6517         local tmp
6518         local mrif
6519         local mmrpc
6520
6521         setup
6522
6523         [[ $($LCTL get_param mdc.*.import |
6524              grep "connect_flags:.*multi_mod_rpc") ]] ||
6525                 { skip "Need MDC with 'multi_mod_rpcs' feature"; return 0; }
6526
6527         # check client is able to send multiple modify RPCs in paralell
6528         tmp=$($LCTL get_param -n mdc.$FSNAME-MDT*-mdc-*.import |
6529                 grep -c "multi_mod_rpcs")
6530         if [ "$tmp" -ne $MDSCOUNT ]; then
6531                 skip "Client not able to send multiple modify RPCs in parallel"
6532                 cleanup
6533                 return
6534         fi
6535
6536         # get max_rpcs_in_flight value
6537         mrif=$($LCTL get_param -n mdc.$FSNAME-MDT0000-mdc-*.max_rpcs_in_flight)
6538         echo "max_rpcs_in_flight is $mrif"
6539
6540         # get MDT max_mod_rpcs_per_client
6541         mmrpc=$(do_facet mds1 \
6542                     cat /sys/module/mdt/parameters/max_mod_rpcs_per_client)
6543         echo "max_mod_rpcs_per_client is $mmrpc"
6544
6545         # testcase 1
6546         # attempt to set max_mod_rpcs_in_flight to max_rpcs_in_flight value
6547         # prerequisite: set max_mod_rpcs_per_client to max_rpcs_in_flight value
6548         umount_client $MOUNT
6549         do_facet mds1 \
6550                 "echo $mrif > /sys/module/mdt/parameters/max_mod_rpcs_per_client"
6551         mount_client $MOUNT
6552
6553         $LCTL set_param \
6554             mdc.$FSNAME-MDT0000-mdc-*.max_mod_rpcs_in_flight=$mrif &&
6555             error "set max_mod_rpcs_in_flight to $mrif should fail"
6556
6557         umount_client $MOUNT
6558         do_facet mds1 \
6559                 "echo $mmrpc > /sys/module/mdt/parameters/max_mod_rpcs_per_client"
6560         mount_client $MOUNT
6561
6562         # testcase 2
6563         # attempt to set max_mod_rpcs_in_flight to max_mod_rpcs_per_client+1
6564         # prerequisite: set max_rpcs_in_flight to max_mod_rpcs_per_client+2
6565         $LCTL set_param \
6566             mdc.$FSNAME-MDT0000-mdc-*.max_rpcs_in_flight=$((mmrpc + 2))
6567
6568         $LCTL set_param \
6569             mdc.$FSNAME-MDT0000-mdc-*.max_mod_rpcs_in_flight=$((mmrpc + 1)) &&
6570             error "set max_mod_rpcs_in_flight to $((mmrpc + 1)) should fail"
6571
6572         cleanup
6573 }
6574 run_test 90c "check max_mod_rpcs_in_flight update limits"
6575
6576 test_90d() {
6577         local idx
6578         local facet
6579         local mmr
6580         local i
6581         local pid
6582
6583         setup
6584
6585         [[ $($LCTL get_param mdc.*.import |
6586              grep "connect_flags:.*multi_mod_rpc") ]] ||
6587                 { skip "Need MDC with 'multi_mod_rpcs' feature"; return 0; }
6588
6589         $LFS mkdir -c1 $DIR/$tdir || error "mkdir $DIR/$tdir failed"
6590         idx=$(printf "%04x" $($LFS getdirstripe -i $DIR/$tdir))
6591         facet="mds$((0x$idx + 1))"
6592
6593         # check client version supports multislots
6594         tmp=$($LCTL get_param -N \
6595                 mdc.$FSNAME-MDT$idx-mdc-*.max_mod_rpcs_in_flight)
6596         if [ -z "$tmp" ]; then
6597                 skip "Client does not support multiple modify RPCs in flight"
6598                 cleanup
6599                 return
6600         fi
6601
6602         # get current value of max_mod_rcps_in_flight
6603         mmr=$($LCTL get_param -n \
6604                 mdc.$FSNAME-MDT$idx-mdc-*.max_mod_rpcs_in_flight)
6605         echo "max_mod_rcps_in_flight is $mmr"
6606
6607         # create mmr files
6608         echo "creating $mmr files ..."
6609         umask 0022
6610         for i in $(seq $mmr); do
6611                 touch $DIR/$tdir/file-$i
6612         done
6613
6614         # prepare for close RPC
6615         multiop_bg_pause $DIR/$tdir/file-close O_c
6616         pid=$!
6617
6618         # consumes mmr modify RPC slots
6619         #define OBD_FAIL_MDS_REINT_MULTI_NET     0x159
6620         # drop requests on MDT so that RPC slots are consumed
6621         # during all the request resend interval
6622         do_facet $facet "$LCTL set_param fail_loc=0x159"
6623         echo "launch $mmr chmod in parallel ..."
6624         for i in $(seq $mmr); do
6625                 chmod 0600 $DIR/$tdir/file-$i &
6626         done
6627
6628         # send one additional close RPC
6629         do_facet $facet "$LCTL set_param fail_loc=0"
6630         echo "launch 1 additional close in parallel ..."
6631         kill -USR1 $pid
6632         cancel_lru_locks mdc
6633         sleep 1
6634
6635         # check this additional close RPC get a modify RPC slot
6636         # and multiop process completed
6637         [ -d /proc/$pid ] &&
6638                 error "Unable to send the additional close RPC in parallel"
6639         wait
6640         rm -rf $DIR/$tdir
6641         cleanup
6642 }
6643 run_test 90d "check one close RPC is allowed above max_mod_rpcs_in_flight"
6644
6645 check_uuid_on_ost() {
6646         local nid=$1
6647         do_facet ost1 "$LCTL get_param obdfilter.${FSNAME}*.exports.'$nid'.uuid"
6648 }
6649
6650 check_uuid_on_mdt() {
6651         local nid=$1
6652         do_facet $SINGLEMDS "$LCTL get_param mdt.${FSNAME}*.exports.'$nid'.uuid"
6653 }
6654
6655 test_91() {
6656         local uuid
6657         local nid
6658         local found
6659
6660         [[ $(lustre_version_code ost1) -ge $(version_code 2.7.63) ]] ||
6661                 { skip "Need OST version at least 2.7.63" && return 0; }
6662         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.7.63) ]] ||
6663                 { skip "Need MDT version at least 2.7.63" && return 0; }
6664
6665         start_mds || error "MDS start failed"
6666         start_ost || error "unable to start OST"
6667         mount_client $MOUNT || error "client start failed"
6668         check_mount || error "check_mount failed"
6669
6670         if remote_mds; then
6671                 nid=$($LCTL list_nids | head -1 | sed  "s/\./\\\./g")
6672         else
6673                 nid="0@lo"
6674         fi
6675         uuid=$(get_client_uuid $MOUNT)
6676
6677         echo "list nids on mdt:"
6678         do_facet $SINGLEMDS "$LCTL list_param mdt.${FSNAME}*.exports.*"
6679         echo "uuid from $nid:"
6680         do_facet $SINGLEMDS "$LCTL get_param mdt.${FSNAME}*.exports.'$nid'.uuid"
6681
6682         found=$(check_uuid_on_mdt $nid | grep $uuid)
6683         [ -z "$found" ] && error "can't find $uuid $nid on MDT"
6684         found=$(check_uuid_on_ost $nid | grep $uuid)
6685         [ -z "$found" ] && error "can't find $uuid $nid on OST"
6686
6687         # umount the client so it won't reconnect
6688         manual_umount_client --force || error "failed to umount $?"
6689         # shouldn't disappear on MDS after forced umount
6690         found=$(check_uuid_on_mdt $nid | grep $uuid)
6691         [ -z "$found" ] && error "can't find $uuid $nid"
6692
6693         echo "evict $nid"
6694         do_facet $SINGLEMDS \
6695                 "$LCTL set_param -n mdt.${mds1_svc}.evict_client nid:$nid"
6696
6697         found=$(check_uuid_on_mdt $nid | grep $uuid)
6698         [ -n "$found" ] && error "found $uuid $nid on MDT"
6699         found=$(check_uuid_on_ost $nid | grep $uuid)
6700         [ -n "$found" ] && error "found $uuid $nid on OST"
6701
6702         # check it didn't reconnect (being umounted)
6703         sleep $((TIMEOUT+1))
6704         found=$(check_uuid_on_mdt $nid | grep $uuid)
6705         [ -n "$found" ] && error "found $uuid $nid on MDT"
6706         found=$(check_uuid_on_ost $nid | grep $uuid)
6707         [ -n "$found" ] && error "found $uuid $nid on OST"
6708
6709         cleanup
6710 }
6711 run_test 91 "evict-by-nid support"
6712
6713 generate_ldev_conf() {
6714         # generate an ldev.conf file
6715         local ldevconfpath=$1
6716         local fstype=
6717         local fsldevformat=""
6718         touch $ldevconfpath
6719
6720         fstype=$(facet_fstype mgs)
6721         if [ "$fstype" == "zfs" ]; then
6722                 fsldevformat="$fstype:"
6723         else
6724                 fsldevformat=""
6725         fi
6726
6727         printf "%s\t-\t%s-MGS0000\t%s%s\n" \
6728                 $mgs_HOST \
6729                 $FSNAME \
6730                 $fsldevformat \
6731                 $(mgsdevname) > $ldevconfpath
6732
6733         local mdsfo_host=$mdsfailover_HOST;
6734         if [ -z "$mdsfo_host" ]; then
6735                 mdsfo_host="-"
6736         fi
6737
6738         for num in $(seq $MDSCOUNT); do
6739                 fstype=$(facet_fstype mds$num)
6740                 if [ "$fstype" == "zfs" ]; then
6741                         fsldevformat="$fstype:"
6742                 else
6743                         fsldevformat=""
6744                 fi
6745
6746                 printf "%s\t%s\t%s-MDT%04d\t%s%s\n" \
6747                         $mds_HOST \
6748                         $mdsfo_host \
6749                         $FSNAME \
6750                         $num \
6751                         $fsldevformat \
6752                         $(mdsdevname $num) >> $ldevconfpath
6753         done
6754
6755         local ostfo_host=$ostfailover_HOST;
6756         if [ -z "$ostfo_host" ]; then
6757                 ostfo_host="-"
6758         fi
6759
6760         for num in $(seq $OSTCOUNT); do
6761                 fstype=$(facet_fstype ost$num)
6762                 if [ "$fstype" == "zfs" ]; then
6763                         fsldevformat="$fstype:"
6764                 else
6765                         fsldevformat=""
6766                 fi
6767
6768                 printf "%s\t%s\t%s-OST%04d\t%s%s\n" \
6769                         $ost_HOST \
6770                         $ostfo_host \
6771                         $FSNAME \
6772                         $num \
6773                         $fsldevformat \
6774                         $(ostdevname $num) >> $ldevconfpath
6775         done
6776
6777         echo "----- $ldevconfpath -----"
6778         cat $ldevconfpath
6779         echo "--- END $ldevconfpath ---"
6780
6781 }
6782
6783 generate_nids() {
6784         # generate a nids file (mapping between hostname to nid)
6785         # looks like we only have the MGS nid available to us
6786         # so just echo that to a file
6787         local nidspath=$1
6788         echo -e "${mgs_HOST}\t${MGSNID}" > $nidspath
6789
6790         echo "----- $nidspath -----"
6791         cat $nidspath
6792         echo "--- END $nidspath ---"
6793 }
6794
6795 compare_ldev_output() {
6796         ldev_output=$1
6797         expected_output=$2
6798
6799         sort $expected_output -o $expected_output
6800         sort $ldev_output -o $ldev_output
6801
6802         echo "-- START OF LDEV OUTPUT --"
6803         cat $ldev_output
6804         echo "--- END OF LDEV OUTPUT ---"
6805
6806         echo "-- START OF EXPECTED OUTPUT --"
6807         cat $expected_output
6808         echo "--- END OF EXPECTED OUTPUT ---"
6809
6810         diff $expected_output $ldev_output
6811         return $?
6812 }
6813
6814 test_92() {
6815         if [ -z "$LDEV" ]; then
6816                 error "ldev is missing!"
6817         fi
6818
6819         local LDEVCONFPATH=$TMP/ldev.conf
6820         local NIDSPATH=$TMP/nids
6821
6822         echo "Host is $(hostname)"
6823
6824         generate_ldev_conf $LDEVCONFPATH
6825         generate_nids $NIDSPATH
6826
6827         # echo the mgs nid and compare it to environment variable MGSNID
6828         # also, ldev.conf and nids is a server side thing, use the OSS
6829         # hostname
6830         local output
6831         output=$($LDEV -c $LDEVCONFPATH -H $ost_HOST -n $NIDSPATH echo %m)
6832
6833         echo "-- START OF LDEV OUTPUT --"
6834         echo -e "$output"
6835         echo "--- END OF LDEV OUTPUT ---"
6836
6837         # ldev failed, error
6838         if [ $? -ne 0 ]; then
6839                 rm $LDEVCONFPATH $NIDSPATH
6840                 error "ldev failed to execute!"
6841         fi
6842
6843         # need to process multiple lines because of combined MGS and MDS
6844         echo -e $output | awk '{ print $2 }' | while read -r line ; do
6845                 if [ "$line" != "$MGSNID" ]; then
6846                         rm $LDEVCONFPATH $NIDSPATH
6847                         error "ldev failed mgs nid '$line', expected '$MGSNID'"
6848                 fi
6849         done
6850
6851         rm $LDEVCONFPATH $NIDSPATH
6852 }
6853 run_test 92 "ldev returns MGS NID correctly in command substitution"
6854
6855 test_93() {
6856         [ $MDSCOUNT -lt 3 ] && skip "needs >= 3 MDTs" && return
6857
6858         reformat
6859         #start mgs or mgs/mdt0
6860         if ! combined_mgs_mds ; then
6861                 start_mgs
6862                 start_mdt 1
6863         else
6864                 start_mdt 1
6865         fi
6866
6867         start_ost || error "OST0 start fail"
6868
6869         #define OBD_FAIL_MGS_WRITE_TARGET_DELAY  0x90e
6870         do_facet mgs "$LCTL set_param fail_val = 10 fail_loc=0x8000090e"
6871         for num in $(seq 2 $MDSCOUNT); do
6872                 start_mdt $num &
6873         done
6874
6875         mount_client $MOUNT || error "mount client fails"
6876         wait_osc_import_state mds ost FULL
6877         wait_osc_import_state client ost FULL
6878         check_mount || error "check_mount failed"
6879
6880         cleanup || error "cleanup failed with $?"
6881 }
6882 run_test 93 "register mulitple MDT at the same time"
6883
6884 test_94() {
6885         if [ -z "$LDEV" ]; then
6886                 error "ldev is missing!"
6887         fi
6888
6889         local LDEVCONFPATH=$TMP/ldev.conf
6890         local NIDSPATH=$TMP/nids
6891
6892         generate_ldev_conf $LDEVCONFPATH
6893         generate_nids $NIDSPATH
6894
6895         local LDEV_OUTPUT=$TMP/ldev-output.txt
6896         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -F $FSNAME > $LDEV_OUTPUT
6897
6898         # ldev failed, error
6899         if [ $? -ne 0 ]; then
6900                 rm $LDEVCONFPATH $NIDSPATH $LDEV_OUTPUT
6901                 error "ldev failed to execute!"
6902         fi
6903
6904         # expected output
6905         local EXPECTED_OUTPUT=$TMP/ldev-expected.txt
6906
6907         printf "%s-MGS0000\n" $FSNAME > $EXPECTED_OUTPUT
6908
6909         for num in $(seq $MDSCOUNT); do
6910                 printf "%s-MDT%04d\n" $FSNAME $num >> $EXPECTED_OUTPUT
6911         done
6912
6913         for num in $(seq $OSTCOUNT); do
6914                 printf "%s-OST%04d\n" $FSNAME $num >> $EXPECTED_OUTPUT
6915         done
6916
6917         compare_ldev_output $LDEV_OUTPUT $EXPECTED_OUTPUT
6918
6919         if [ $? -ne 0 ]; then
6920                 rm $LDEVCONFPATH $NIDSPATH $EXPECTED_OUTPUT $LDEV_OUTPUT
6921                 error "ldev failed to produce the correct hostlist!"
6922         fi
6923
6924         rm $LDEVCONFPATH $NIDSPATH $EXPECTED_OUTPUT $LDEV_OUTPUT
6925 }
6926 run_test 94 "ldev outputs correct labels for file system name query"
6927
6928 test_95() {
6929         if [ -z "$LDEV" ]; then
6930                 error "ldev is missing!"
6931         fi
6932
6933         local LDEVCONFPATH=$TMP/ldev.conf
6934         local NIDSPATH=$TMP/nids
6935
6936         generate_ldev_conf $LDEVCONFPATH
6937         generate_nids $NIDSPATH
6938
6939         # SUCCESS CASES
6940         # file sys filter
6941         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -F $FSNAME &>/dev/null
6942         if [ $? -ne 0 ]; then
6943                 rm $LDEVCONFPATH $NIDSPATH
6944                 error "ldev label filtering w/ -F failed!"
6945         fi
6946
6947         # local filter
6948         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -l  &>/dev/null
6949         if [ $? -ne 0 ]; then
6950                 rm $LDEVCONFPATH $NIDSPATH
6951                 error "ldev label filtering w/ -l failed!"
6952         fi
6953
6954         # foreign filter
6955         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -f &>/dev/null
6956         if [ $? -ne 0 ]; then
6957                 rm $LDEVCONFPATH $NIDSPATH
6958                 error "ldev label filtering w/ -f failed!"
6959         fi
6960
6961         # all filter
6962         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -a &>/dev/null
6963         if [ $? -ne 0 ]; then
6964                 rm $LDEVCONFPATH $NIDSPATH
6965                 error "ldev label filtering w/ -a failed!"
6966         fi
6967
6968         # FAILURE CASES
6969         # all & file sys
6970         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -a -F $FSNAME &>/dev/null
6971         if [ $? -eq 0 ]; then
6972                 rm $LDEVCONFPATH $NIDSPATH
6973                 error "ldev label filtering w/ -a and -F incorrectly succeeded"
6974         fi
6975
6976         # all & foreign
6977         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -a -f &>/dev/null
6978         if [ $? -eq 0 ]; then
6979                 rm $LDEVCONFPATH $NIDSPATH
6980                 error "ldev label filtering w/ -a and -f incorrectly succeeded"
6981         fi
6982
6983         # all & local
6984         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -a -l &>/dev/null
6985         if [ $? -eq 0 ]; then
6986                 rm $LDEVCONFPATH $NIDSPATH
6987                 error "ldev label filtering w/ -a and -l incorrectly succeeded"
6988         fi
6989
6990         # foreign & local
6991         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -f -l &>/dev/null
6992         if [ $? -eq 0 ]; then
6993                 rm $LDEVCONFPATH $NIDSPATH
6994                 error "ldev label filtering w/ -f and -l incorrectly succeeded"
6995         fi
6996
6997         # file sys & local
6998         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -F $FSNAME -l &>/dev/null
6999         if [ $? -eq 0 ]; then
7000                 rm $LDEVCONFPATH $NIDSPATH
7001                 error "ldev label filtering w/ -F and -l incorrectly succeeded"
7002         fi
7003
7004         # file sys & foreign
7005         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -F $FSNAME -f &>/dev/null
7006         if [ $? -eq 0 ]; then
7007                 rm $LDEVCONFPATH $NIDSPATH
7008                 error "ldev label filtering w/ -F and -f incorrectly succeeded"
7009         fi
7010
7011         rm $LDEVCONFPATH $NIDSPATH
7012 }
7013 run_test 95 "ldev should only allow one label filter"
7014
7015 test_96() {
7016         if [ -z "$LDEV" ]; then
7017                 error "ldev is missing!"
7018         fi
7019
7020         local LDEVCONFPATH=$TMP/ldev.conf
7021         local NIDSPATH=$TMP/nids
7022
7023         generate_ldev_conf $LDEVCONFPATH
7024         generate_nids $NIDSPATH
7025
7026         local LDEV_OUTPUT=$TMP/ldev-output.txt
7027         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -H $mgs_HOST \
7028                 echo %H-%b | \
7029                 awk '{print $2}' > $LDEV_OUTPUT
7030
7031         # ldev failed, error
7032         if [ $? -ne 0 ]; then
7033                 rm $LDEVCONFPATH $NIDSPATH $LDEV_OUTPUT
7034                 error "ldev failed to execute!"
7035         fi
7036
7037         # expected output
7038         local EXPECTED_OUTPUT=$TMP/ldev-expected-output.txt
7039
7040         echo "$mgs_HOST-$(facet_fstype mgs)" > $EXPECTED_OUTPUT
7041
7042         if [ "$mgs_HOST" == "$mds_HOST" ]; then
7043                 for num in $(seq $MDSCOUNT); do
7044                         echo "$mds_HOST-$(facet_fstype mds$num)" \
7045                         >> $EXPECTED_OUTPUT
7046                 done
7047         fi
7048
7049         if [ "$mgs_HOST" == "$ost_HOST" ]; then
7050                 for num in $(seq $OSTCOUNT); do
7051                         echo "$ost_HOST-$(facet_fstype ost$num)" \
7052                         >> $EXPECTED_OUTPUT
7053                 done
7054         fi
7055
7056         compare_ldev_output $LDEV_OUTPUT $EXPECTED_OUTPUT
7057
7058         if [ $? -ne 0 ]; then
7059                 rm $LDEVCONFPATH $NIDSPATH $EXPECTED_OUTPUT $LDEV_OUTPUT
7060                 error "ldev failed to produce the correct output!"
7061         fi
7062
7063         rm $LDEVCONFPATH $NIDSPATH $EXPECTED_OUTPUT $LDEV_OUTPUT
7064 }
7065 run_test 96 "ldev returns hostname and backend fs correctly in command sub"
7066
7067 test_97() {
7068         if [ -z "$LDEV" ]; then
7069                 error "ldev is missing!"
7070         fi
7071
7072         local LDEVCONFPATH=$TMP/ldev.conf
7073         local NIDSPATH=$TMP/nids
7074
7075         generate_ldev_conf $LDEVCONFPATH
7076         generate_nids $NIDSPATH
7077
7078         local LDEV_OUTPUT=$TMP/ldev-output.txt
7079         local EXPECTED_OUTPUT=$TMP/ldev-expected-output.txt
7080
7081         echo -e "\nMDT role"
7082         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -F $FSNAME -R mdt > $LDEV_OUTPUT
7083
7084         if [ $? -ne 0 ]; then
7085                 rm $LDEVCONFPATH $NIDSPATH $LDEV_OUTPUT
7086                 error "ldev failed to execute for mdt role!"
7087         fi
7088
7089         for num in $(seq $MDSCOUNT); do
7090                 printf "%s-MDT%04d\n" $FSNAME $num >> $EXPECTED_OUTPUT
7091         done
7092
7093         compare_ldev_output $LDEV_OUTPUT $EXPECTED_OUTPUT
7094
7095         if [ $? -ne 0 ]; then
7096                 rm $LDEVCONFPATH $NIDSPATH $EXPECTED_OUTPUT $LDEV_OUTPUT
7097                 error "ldev failed to produce the correct output for mdt role!"
7098         fi
7099
7100         echo -e "\nOST role"
7101         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -F $FSNAME -R ost > $LDEV_OUTPUT
7102
7103         if [ $? -ne 0 ]; then
7104                 rm $LDEVCONFPATH $NIDSPATH $LDEV_OUTPUT $EXPECTED_OUTPUT
7105                 error "ldev failed to execute for ost role!"
7106         fi
7107
7108         rm $EXPECTED_OUTPUT
7109         for num in $(seq $OSTCOUNT); do
7110                 printf "%s-OST%04d\n" $FSNAME $num >> $EXPECTED_OUTPUT
7111         done
7112
7113         compare_ldev_output $LDEV_OUTPUT $EXPECTED_OUTPUT
7114
7115         if [ $? -ne 0 ]; then
7116                 rm $LDEVCONFPATH $NIDSPATH $EXPECTED_OUTPUT $LDEV_OUTPUT
7117                 error "ldev failed to produce the correct output for ost role!"
7118         fi
7119
7120         echo -e "\nMGS role"
7121         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -F $FSNAME -R mgs > $LDEV_OUTPUT
7122
7123         if [ $? -ne 0 ]; then
7124                 rm $LDEVCONFPATH $NIDSPATH $LDEV_OUTPUT $EXPECTED_OUTPUT
7125                 error "ldev failed to execute for mgs role!"
7126         fi
7127
7128         printf "%s-MGS0000\n" $FSNAME > $EXPECTED_OUTPUT
7129
7130         compare_ldev_output $LDEV_OUTPUT $EXPECTED_OUTPUT
7131
7132         if [ $? -ne 0 ]; then
7133                 rm $LDEVCONFPATH $NIDSPATH $EXPECTED_OUTPUT $LDEV_OUTPUT
7134                 error "ldev failed to produce the correct output for mgs role!"
7135         fi
7136
7137         rm $LDEVCONFPATH $NIDSPATH $EXPECTED_OUTPUT $LDEV_OUTPUT
7138 }
7139 run_test 97 "ldev returns correct ouput when querying based on role"
7140
7141 test_98()
7142 {
7143         local mountopt
7144         local temp=$MDS_MOUNT_OPTS
7145
7146         setup
7147         check_mount || error "mount failed"
7148         mountopt="user_xattr"
7149         for ((x = 1; x <= 400; x++)); do
7150                 mountopt="$mountopt,user_xattr"
7151         done
7152         remount_client $mountopt $MOUNT  2>&1 | grep "too long" ||
7153                 error "Buffer overflow check failed"
7154         cleanup || error "cleanup failed"
7155 }
7156 run_test 98 "Buffer-overflow check while parsing mount_opts"
7157
7158 test_99()
7159 {
7160         [[ $(facet_fstype ost1) != ldiskfs ]] &&
7161                 { skip "ldiskfs only test" && return; }
7162         [[ $(lustre_version_code ost1) -ge $(version_code 2.8.57) ]] ||
7163                 { skip "Need OST version at least 2.8.57" && return 0; }
7164
7165         local ost_opts="$(mkfs_opts ost1 $(ostdevname 1)) \
7166                 --reformat $(ostdevname 1) $(ostvdevname 1)"
7167         do_facet ost1 $DEBUGFS -c -R stats `ostdevname 1` | grep "meta_bg" &&
7168                 skip "meta_bg already set" && return
7169
7170         local opts=ost_opts
7171         if [[ ${!opts} != *mkfsoptions* ]]; then
7172                 eval opts=\"${!opts} \
7173                 --mkfsoptions='\\\"-O ^resize_inode,meta_bg\\\"'\"
7174         else
7175                 local val=${!opts//--mkfsoptions=\\\"/ \
7176                 --mkfsoptions=\\\"-O ^resize_inode,meta_bg }
7177                 eval opts='${val}'
7178         fi
7179
7180         echo "params: $opts"
7181
7182         add ost1 $opts || error "add ost1 failed with new params"
7183
7184         do_facet ost1 $DEBUGFS -c -R stats `ostdevname 1` | grep "meta_bg" ||
7185                 error "meta_bg is not set"
7186
7187         return 0
7188 }
7189 run_test 99 "Adding meta_bg option"
7190
7191 test_100() {
7192         reformat
7193         start_mds || error "MDS start failed"
7194         start_ost || error "unable to start OST"
7195         mount_client $MOUNT || error "client start failed"
7196         check_mount || error "check_mount failed"
7197
7198         # Desired output
7199         # MGS:
7200         #     0@lo
7201         # lustre-MDT0000:
7202         #     0@lo
7203         # lustre-OST0000:
7204         #     0@lo
7205         do_facet mgs 'lshowmount -v' | awk 'BEGIN {NR == 0; rc=1} /MGS:/ {rc=0}
7206                 END {exit rc}' || error "lshowmount have no output MGS"
7207
7208         do_facet mds1 'lshowmount -v' | awk 'BEGIN {NR == 2; rc=1} /-MDT0000:/
7209                 {rc=0} END {exit rc}' || error "lshowmount have no output MDT0"
7210
7211         do_facet ost1 'lshowmount -v' | awk 'BEGIN {NR == 4; rc=1} /-OST0000:/
7212                 {rc=0} END {exit rc}' || error "lshowmount have no output OST0"
7213
7214         cleanup || error "cleanup failed with $?"
7215 }
7216 run_test 100 "check lshowmount lists MGS, MDT, OST and 0@lo"
7217
7218 test_101() {
7219         local createmany_oid
7220         local dev=$FSNAME-OST0000-osc-MDT0000
7221         setup
7222
7223         createmany -o $DIR1/$tfile-%d 50000 &
7224         createmany_oid=$!
7225         # MDT->OST reconnection causes MDT<->OST last_id synchornisation
7226         # via osp_precreate_cleanup_orphans.
7227         for ((i = 0; i < 100; i++)); do
7228                 for ((k = 0; k < 10; k++)); do
7229                         do_facet $SINGLEMDS "$LCTL --device $dev deactivate;" \
7230                                             "$LCTL --device $dev activate"
7231                 done
7232
7233                 ls -asl $MOUNT | grep '???' &&
7234                         (kill -9 $createmany_oid &>/dev/null; \
7235                          error "File hasn't object on OST")
7236
7237                 kill -s 0 $createmany_oid || break
7238         done
7239         wait $createmany_oid
7240         cleanup
7241 }
7242 run_test 101 "Race MDT->OST reconnection with create"
7243
7244 test_102() {
7245         [[ $(lustre_version_code $SINGLEMDS) -gt $(version_code 2.9.53) ]] ||
7246                 { skip "Need server version greater than 2.9.53" && return 0; }
7247         cleanup || error "cleanup failed with $?"
7248
7249         local mds1dev=$(mdsdevname 1)
7250         local mds1mnt=$(facet_mntpt mds1)
7251         local mds1fstype=$(facet_fstype mds1)
7252         local mds1opts=$MDS_MOUNT_OPTS
7253
7254         if [ $mds1fstype == ldiskfs ] &&
7255            ! do_facet mds1 test -b $mds1dev; then
7256                 mds1opts=$(csa_add "$mds1opts" -o loop)
7257         fi
7258         if [[ $mds1fstype == zfs ]]; then
7259                 import_zpool mds1 || return ${PIPESTATUS[0]}
7260         fi
7261
7262         # unload all and only load libcfs to allow fail_loc setting
7263         do_facet mds1 lustre_rmmod || error "unable to unload modules"
7264         do_facet mds1 modprobe libcfs || error "libcfs not loaded"
7265         do_facet mds1 lsmod \| grep libcfs || error "libcfs not loaded"
7266
7267         #define OBD_FAIL_OBDCLASS_MODULE_LOAD    0x60a
7268         do_facet mds1 "$LCTL set_param fail_loc=0x8000060a"
7269
7270         do_facet mds1 $MOUNT_CMD $mds1dev $mds1mnt $mds1opts &&
7271                 error "mdt start must fail"
7272         do_facet mds1 lsmod \| grep  obdclass && error "obdclass must not load"
7273
7274         do_facet mds1 "$LCTL set_param fail_loc=0x0"
7275
7276         do_facet mds1 $MOUNT_CMD $mds1dev $mds1mnt $mds1opts ||
7277                 error "mdt start must not fail"
7278
7279         cleanup || error "cleanup failed with $?"
7280 }
7281 run_test 102 "obdclass module cleanup upon error"
7282
7283 test_renamefs() {
7284         local newname=$1
7285
7286         echo "rename $FSNAME to $newname"
7287
7288         if ! combined_mgs_mds ; then
7289                 local facet=$(mgsdevname)
7290
7291                 do_facet mgs \
7292                         "$TUNEFS --fsname=$newname --rename=$FSNAME -v $facet"||
7293                         error "(7) Fail to rename MGS"
7294                 if [ "$(facet_fstype $facet)" = "zfs" ]; then
7295                         reimport_zpool mgs $newname-mgs
7296                 fi
7297         fi
7298
7299         for num in $(seq $MDSCOUNT); do
7300                 local facet=$(mdsdevname $num)
7301
7302                 do_facet mds${num} \
7303                         "$TUNEFS --fsname=$newname --rename=$FSNAME -v $facet"||
7304                         error "(8) Fail to rename MDT $num"
7305                 if [ "$(facet_fstype $facet)" = "zfs" ]; then
7306                         reimport_zpool mds${num} $newname-mdt${num}
7307                 fi
7308         done
7309
7310         for num in $(seq $OSTCOUNT); do
7311                 local facet=$(ostdevname $num)
7312
7313                 do_facet ost${num} \
7314                         "$TUNEFS --fsname=$newname --rename=$FSNAME -v $facet"||
7315                         error "(9) Fail to rename OST $num"
7316                 if [ "$(facet_fstype $facet)" = "zfs" ]; then
7317                         reimport_zpool ost${num} $newname-ost${num}
7318                 fi
7319         done
7320 }
7321
7322 test_103_set_pool() {
7323         local pname=$1
7324         local ost_x=$2
7325
7326         do_facet mgs $LCTL pool_add $FSNAME.$pname ${FSNAME}-$ost_x ||
7327                 error "Fail to add $ost_x to $FSNAME.$pname"
7328         wait_update $HOSTNAME \
7329                 "lctl get_param -n lov.$FSNAME-clilov-*.pools.$pname |
7330                  grep $ost_x" "$FSNAME-${ost_x}_UUID" ||
7331                 error "$ost_x is NOT in pool $FSNAME.$pname"
7332 }
7333
7334 test_103_check_pool() {
7335         local save_fsname=$1
7336         local errno=$2
7337
7338         stat $DIR/$tdir/test-framework.sh ||
7339                 error "($errno) Fail to stat"
7340         do_facet mgs $LCTL pool_list $FSNAME.pool1 ||
7341                 error "($errno) Fail to list $FSNAME.pool1"
7342         do_facet mgs $LCTL pool_list $FSNAME.$save_fsname ||
7343                 error "($errno) Fail to list $FSNAME.$save_fsname"
7344         do_facet mgs $LCTL pool_list $FSNAME.$save_fsname |
7345                 grep ${FSNAME}-OST0000 ||
7346                 error "($errno) List $FSNAME.$save_fsname is invalid"
7347
7348         local pname=$($LFS getstripe --pool $DIR/$tdir/d0)
7349         [ "$pname" = "$save_fsname" ] ||
7350                 error "($errno) Unexpected pool name $pname"
7351 }
7352
7353 test_103() {
7354         check_mount_and_prep
7355         rm -rf $DIR/$tdir
7356         mkdir $DIR/$tdir || error "(1) Fail to mkdir $DIR/$tdir"
7357         cp $LUSTRE/tests/test-framework.sh $DIR/$tdir ||
7358                 error "(2) Fail to copy test-framework.sh"
7359
7360         if ! combined_mgs_mds ; then
7361                 mount_mgs_client
7362         fi
7363         do_facet mgs $LCTL pool_new $FSNAME.pool1 ||
7364                 error "(3) Fail to create $FSNAME.pool1"
7365         # name the pool name as the fsname
7366         do_facet mgs $LCTL pool_new $FSNAME.$FSNAME ||
7367                 error "(4) Fail to create $FSNAME.$FSNAME"
7368
7369         test_103_set_pool $FSNAME OST0000
7370
7371         $SETSTRIPE -p $FSNAME $DIR/$tdir/d0 ||
7372                 error "(6) Fail to setstripe on $DIR/$tdir/d0"
7373
7374         if ! combined_mgs_mds ; then
7375                 umount_mgs_client
7376         fi
7377         KEEP_ZPOOL=true
7378         stopall
7379
7380         test_renamefs mylustre
7381
7382         local save_fsname=$FSNAME
7383         FSNAME="mylustre"
7384         setupall
7385
7386         if ! combined_mgs_mds ; then
7387                 mount_mgs_client
7388         fi
7389         test_103_check_pool $save_fsname 7
7390
7391         if [ $OSTCOUNT -ge 2 ]; then
7392                 test_103_set_pool $save_fsname OST0001
7393         fi
7394
7395         $SETSTRIPE -p $save_fsname $DIR/$tdir/f0 ||
7396                 error "(16) Fail to setstripe on $DIR/$tdir/f0"
7397         if ! combined_mgs_mds ; then
7398                 umount_mgs_client
7399         fi
7400
7401         stopall
7402
7403         test_renamefs tfs
7404
7405         FSNAME="tfs"
7406         setupall
7407
7408         if ! combined_mgs_mds ; then
7409                 mount_mgs_client
7410         fi
7411         test_103_check_pool $save_fsname 17
7412
7413         if ! combined_mgs_mds ; then
7414                 umount_mgs_client
7415         fi
7416         stopall
7417
7418         test_renamefs $save_fsname
7419
7420         FSNAME=$save_fsname
7421         setupall
7422         KEEP_ZPOOL=false
7423 }
7424 run_test 103 "rename filesystem name"
7425
7426 test_104() { # LU-6952
7427         local mds_mountopts=$MDS_MOUNT_OPTS
7428         local ost_mountopts=$OST_MOUNT_OPTS
7429         local mds_mountfsopts=$MDS_MOUNT_FS_OPTS
7430         local lctl_ver=$(do_facet $SINGLEMDS $LCTL --version |
7431                         awk '{ print $2 }')
7432
7433         [[ $(version_code $lctl_ver) -lt $(version_code 2.9.55) ]] &&
7434                 { skip "this test needs utils above 2.9.55" && return 0; }
7435
7436         # specify "acl" in mount options used by mkfs.lustre
7437         if [ -z "$MDS_MOUNT_FS_OPTS" ]; then
7438                 MDS_MOUNT_FS_OPTS="acl,user_xattr"
7439         else
7440
7441                 MDS_MOUNT_FS_OPTS="${MDS_MOUNT_FS_OPTS},acl,user_xattr"
7442         fi
7443
7444         echo "mountfsopt: $MDS_MOUNT_FS_OPTS"
7445
7446         #reformat/remount the MDT to apply the MDT_MOUNT_FS_OPT options
7447         formatall
7448         if [ -z "$MDS_MOUNT_OPTS" ]; then
7449                 MDS_MOUNT_OPTS="-o noacl"
7450         else
7451                 MDS_MOUNT_OPTS="${MDS_MOUNT_OPTS},noacl"
7452         fi
7453
7454         for num in $(seq $MDSCOUNT); do
7455                 start mds$num $(mdsdevname $num) $MDS_MOUNT_OPTS ||
7456                         error "Failed to start MDS"
7457         done
7458
7459         for num in $(seq $OSTCOUNT); do
7460                 start ost$num $(ostdevname $num) $OST_MOUNT_OPTS ||
7461                         error "Failed to start OST"
7462         done
7463
7464         mount_client $MOUNT
7465         setfacl -m "d:$RUNAS_ID:rwx" $MOUNT &&
7466                 error "ACL is applied when FS is mounted with noacl."
7467
7468         MDS_MOUNT_OPTS=$mds_mountopts
7469         OST_MOUNT_OPTS=$ost_mountopts
7470         MDS_MOUNT_FS_OPTS=$mds_mountfsopts
7471
7472         formatall
7473         setupall
7474 }
7475 run_test 104 "Make sure user defined options are reflected in mount"
7476
7477 error_and_umount() {
7478         umount $TMP/$tdir
7479         rmdir $TMP/$tdir
7480         error $*
7481 }
7482
7483 test_105() {
7484         cleanup -f
7485         reformat
7486         setup
7487         mkdir -p $TMP/$tdir
7488         mount --bind $DIR $TMP/$tdir || error "mount bind mnt pt failed"
7489         rm -f $TMP/$tdir/$tfile
7490         rm -f $TMP/$tdir/${tfile}1
7491
7492         # Files should not be created in ro bind mount point
7493         # remounting from rw to ro
7494         mount -o remount,ro $TMP/$tdir ||
7495                 error_and_umount "readonly remount of bind mnt pt failed"
7496         touch $TMP/$tdir/$tfile &&
7497                 error_and_umount "touch succeeds on ro bind mnt pt"
7498         [ -e $TMP/$tdir/$tfile ] &&
7499                 error_and_umount "file created on ro bind mnt pt"
7500
7501         # Files should be created in rw bind mount point
7502         # remounting from ro to rw
7503         mount -o remount,rw $TMP/$tdir ||
7504                 error_and_umount "read-write remount of bind mnt pt failed"
7505         touch $TMP/$tdir/${tfile}1 ||
7506                 error_and_umount "touch fails on rw bind mnt pt"
7507         [ -e $TMP/$tdir/${tfile}1 ] ||
7508                 error_and_umount "file not created on rw bind mnt pt"
7509         umount $TMP/$tdir || error "umount of bind mnt pt failed"
7510         rmdir $TMP/$tdir
7511         cleanup || error "cleanup failed with $?"
7512 }
7513 run_test 105 "check file creation for ro and rw bind mnt pt"
7514
7515 test_106() {
7516         local repeat=5
7517
7518         reformat
7519         setupall
7520         mkdir -p $DIR/$tdir || error "create $tdir failed"
7521         lfs setstripe -c 1 -i 0 $DIR/$tdir
7522 #define OBD_FAIL_CAT_RECORDS                        0x1312
7523         do_facet mds1 $LCTL set_param fail_loc=0x1312 fail_val=$repeat
7524
7525         for ((i = 1; i <= $repeat; i++)); do
7526
7527                 #one full plain llog
7528                 createmany -o $DIR/$tdir/f- 64768
7529
7530                 createmany -u $DIR/$tdir/f- 64768
7531         done
7532         wait_delete_completed $((TIMEOUT * 7))
7533 #ASSERTION osp_sync_thread() ( thread->t_flags != SVC_RUNNING ) failed
7534 #shows that osp code is buggy
7535         do_facet mds1 $LCTL set_param fail_loc=0 fail_val=0
7536
7537         cleanupall
7538 }
7539 run_test 106 "check osp llog processing when catalog is wrapped"
7540
7541 test_107() {
7542         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.10.50) ]] ||
7543                 { skip "Need MDS version > 2.10.50"; return; }
7544
7545         start_mgsmds || error "start_mgsmds failed"
7546         start_ost || error "unable to start OST"
7547
7548         # add unknown configuration parameter.
7549         local PARAM="$FSNAME-OST0000.ost.unknown_param=50"
7550         do_facet mgs "$LCTL conf_param $PARAM"
7551         cleanup_nocli || error "cleanup_nocli failed with $?"
7552         load_modules
7553
7554         # unknown param should be ignored while mounting.
7555         start_ost || error "unable to start OST after unknown param set"
7556
7557         cleanup || error "cleanup failed with $?"
7558 }
7559 run_test 107 "Unknown config param should not fail target mounting"
7560
7561 if ! combined_mgs_mds ; then
7562         stop mgs
7563 fi
7564
7565 cleanup_gss
7566
7567 # restore the values of MDSSIZE and OSTSIZE
7568 MDSSIZE=$STORED_MDSSIZE
7569 OSTSIZE=$STORED_OSTSIZE
7570 reformat
7571
7572 complete $SECONDS
7573 exit_status