Whamcloud - gitweb
16c7664ef89fd25f3d05db54860af276942a24a4
[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:
8 ALWAYS_EXCEPT="$CONF_SANITY_EXCEPT "
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 service on $(facet_active_host 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         # doing some io, shouldn't crash
3763         dd if=/dev/zero of=$DIR/$tdir/2/$tfile-io bs=1M count=10
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         rm -rf $DIR/$tdir
3771         umount_client $MOUNT || error "Unable to umount client"
3772         stop_ost2 || error "Unable to stop OST2"
3773         cleanup_nocli || error "cleanup_nocli failed with $?"
3774 }
3775 run_test 50h "LU-642: activate deactivated OST"
3776
3777 test_50i() {
3778         # prepare MDT/OST, make OSC inactive for OST1
3779         [ "$MDSCOUNT" -lt "2" ] && skip_env "needs >= 2 MDTs" && return
3780
3781         load_modules
3782         [ $(facet_fstype mds2) == zfs ] && import_zpool mds2
3783         do_facet mds2 "$TUNEFS --param mdc.active=0 $(mdsdevname 2)" ||
3784                 error "tunefs MDT2 failed"
3785         start_mds  || error "Unable to start MDT"
3786         start_ost  || error "Unable to start OST1"
3787         start_ost2 || error "Unable to start OST2"
3788         mount_client $MOUNT || error "client start failed"
3789
3790         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
3791
3792         $LCTL conf_param ${FSNAME}-MDT0000.mdc.active=0 &&
3793                 error "deactive MDC0 succeeds"
3794         # activate MDC for MDT2
3795         local TEST="$LCTL get_param -n mdc.${FSNAME}-MDT0001-mdc-[!M]*.active"
3796         set_conf_param_and_check client                                 \
3797                 "$TEST" "${FSNAME}-MDT0001.mdc.active" 1 ||
3798                 error "Unable to activate MDT2"
3799
3800         wait_clients_import_state ${CLIENTS:-$HOSTNAME} mds2 FULL
3801         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.7.60) ]
3802         then
3803                 wait_dne_interconnect
3804         fi
3805         $LFS mkdir -i1 $DIR/$tdir/2 || error "mkdir $DIR/$tdir/2 failed"
3806         # create some file
3807         createmany -o $DIR/$tdir/2/$tfile-%d 1 || error "create files failed"
3808
3809         rm -rf $DIR/$tdir/2 || error "unlink dir failed"
3810
3811         # deactivate MDC for MDT2
3812         local TEST="$LCTL get_param -n mdc.${FSNAME}-MDT0001-mdc-[!M]*.active"
3813         set_conf_param_and_check client                                 \
3814                 "$TEST" "${FSNAME}-MDT0001.mdc.active" 0 ||
3815                 error "Unable to deactivate MDT2"
3816
3817         wait_osp_active mds ${FSNAME}-MDT0001 1 0
3818
3819         $LFS mkdir -i1 $DIR/$tdir/2 &&
3820                 error "mkdir $DIR/$tdir/2 succeeds after deactive MDT"
3821
3822         $LFS mkdir -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
3823                 error "mkdir $DIR/$tdir/striped_dir fails after deactive MDT2"
3824
3825         local stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir)
3826         [ $stripe_count -eq $((MDSCOUNT - 1)) ] ||
3827                 error "wrong $stripe_count != $((MDSCOUNT -1)) for striped_dir"
3828
3829         # cleanup
3830         umount_client $MOUNT || error "Unable to umount client"
3831         stop_mds
3832         stop_ost
3833         stop_ost 2
3834 }
3835 run_test 50i "activate deactivated MDT"
3836
3837 test_51() {
3838         local LOCAL_TIMEOUT=20
3839
3840         reformat
3841         setup_noconfig
3842         check_mount || error "check_mount failed"
3843
3844         mkdir $MOUNT/$tdir || error "mkdir $MOUNT/$tdir failed"
3845         $SETSTRIPE -c -1 $MOUNT/$tdir ||
3846                 error "$SETSTRIPE -c -1 $MOUNT/$tdir failed"
3847         #define OBD_FAIL_MDS_REINT_DELAY         0x142
3848         do_facet $SINGLEMDS "$LCTL set_param fail_loc=0x142"
3849         touch $MOUNT/$tdir/$tfile &
3850         local pid=$!
3851         sleep 2
3852         start_ost2 || error "Unable to start OST1"
3853         wait $pid
3854         stop_ost2 || error "Unable to stop OST1"
3855         umount_client $MOUNT -f || error “unmount $MOUNT failed”
3856         cleanup_nocli || error “stop server failed”
3857         #writeconf to remove all ost2 traces for subsequent tests
3858         writeconf_or_reformat
3859 }
3860 run_test 51 "Verify that mdt_reint handles RMF_MDT_MD correctly when an OST is added"
3861
3862 copy_files_xattrs()
3863 {
3864         local node=$1
3865         local dest=$2
3866         local xattrs=$3
3867         shift 3
3868
3869         do_node $node mkdir -p $dest
3870         [ $? -eq 0 ] || { error "Unable to create directory"; return 1; }
3871
3872         do_node $node  'tar cf - '$@' | tar xf - -C '$dest';
3873                         [ \"\${PIPESTATUS[*]}\" = \"0 0\" ] || exit 1'
3874         [ $? -eq 0 ] || { error "Unable to tar files"; return 2; }
3875
3876         do_node $node 'getfattr -d -m "[a-z]*\\." '$@' > '$xattrs
3877         [ $? -eq 0 ] || { error "Unable to read xattrs"; return 3; }
3878 }
3879
3880 diff_files_xattrs()
3881 {
3882         local node=$1
3883         local backup=$2
3884         local xattrs=$3
3885         shift 3
3886
3887         local backup2=${TMP}/backup2
3888
3889         do_node $node mkdir -p $backup2
3890         [ $? -eq 0 ] || { error "Unable to create directory"; return 1; }
3891
3892         do_node $node  'tar cf - '$@' | tar xf - -C '$backup2';
3893                         [ \"\${PIPESTATUS[*]}\" = \"0 0\" ] || exit 1'
3894         [ $? -eq 0 ] || { error "Unable to tar files to diff"; return 2; }
3895
3896         do_node $node "diff -rq $backup $backup2"
3897         [ $? -eq 0 ] || { error "contents differ"; return 3; }
3898
3899         local xattrs2=${TMP}/xattrs2
3900         do_node $node 'getfattr -d -m "[a-z]*\\." '$@' > '$xattrs2
3901         [ $? -eq 0 ] || { error "Unable to read xattrs to diff"; return 4; }
3902
3903         do_node $node "diff $xattrs $xattrs2"
3904         [ $? -eq 0 ] || { error "xattrs differ"; return 5; }
3905
3906         do_node $node "rm -rf $backup2 $xattrs2"
3907         [ $? -eq 0 ] || { error "Unable to delete temporary files"; return 6; }
3908 }
3909
3910 test_52() {
3911         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
3912                 skip "ldiskfs only test"
3913                 return
3914         fi
3915
3916         start_mds || error "Unable to start MDS"
3917         start_ost || error "Unable to start OST1"
3918         mount_client $MOUNT || error "Unable to mount client"
3919
3920         local nrfiles=8
3921         local ost1mnt=$(facet_mntpt ost1)
3922         local ost1node=$(facet_active_host ost1)
3923         local ost1tmp=$TMP/conf52
3924         local loop
3925
3926         mkdir $DIR/$tdir || error "Unable to create $DIR/$tdir"
3927         touch $TMP/modified_first || error "Unable to create temporary file"
3928         local mtime=$(stat -c %Y $TMP/modified_first)
3929         do_node $ost1node "mkdir -p $ost1tmp &&
3930                            touch -m -d @$mtime $ost1tmp/modified_first" ||
3931                 error "Unable to create temporary file"
3932         sleep 1
3933
3934         $SETSTRIPE -c -1 -S 1M $DIR/$tdir || error "$SETSTRIPE failed"
3935
3936         for (( i=0; i < nrfiles; i++ )); do
3937                 multiop $DIR/$tdir/$tfile-$i Ow1048576w1048576w524288c ||
3938                         error "multiop failed"
3939                 echo -n .
3940         done
3941         echo
3942
3943         # backup files
3944         echo backup files to $TMP/$tdir
3945         local files=$(find $DIR/$tdir -type f -newer $TMP/modified_first)
3946         copy_files_xattrs $(hostname) $TMP/$tdir $TMP/file_xattrs $files ||
3947                 error "Unable to copy files"
3948
3949         umount_client $MOUNT || error "Unable to umount client"
3950         stop_ost || error "Unable to stop ost1"
3951
3952         echo mount ost1 as ldiskfs
3953         do_node $ost1node mkdir -p $ost1mnt || error "Unable to create $ost1mnt"
3954         if ! do_node $ost1node test -b $ost1_dev; then
3955                 loop="-o loop"
3956         fi
3957         do_node $ost1node mount -t $(facet_fstype ost1) $loop $ost1_dev \
3958                 $ost1mnt ||
3959                 error "Unable to mount ost1 as ldiskfs"
3960
3961         # backup objects
3962         echo backup objects to $ost1tmp/objects
3963         local objects=$(do_node $ost1node 'find '$ost1mnt'/O/[0-9]* -type f'\
3964                 '-size +0 -newer '$ost1tmp'/modified_first -regex ".*\/[0-9]+"')
3965         copy_files_xattrs $ost1node $ost1tmp/objects $ost1tmp/object_xattrs \
3966                         $objects ||
3967                 error "Unable to copy objects"
3968
3969         # move objects to lost+found
3970         do_node $ost1node 'mv '$objects' '${ost1mnt}'/lost+found'
3971         [ $? -eq 0 ] || { error "Unable to move objects"; return 14; }
3972
3973         do_node $ost1node "umount $ost1mnt" ||
3974                 error "Unable to umount ost1 as ldiskfs"
3975
3976         start_ost || error "Unable to start OST1"
3977         mount_client $MOUNT || error "Unable to mount client"
3978
3979         local REPAIRED=$(do_node $ost1node "$LCTL get_param \
3980                          -n osd-ldiskfs.$FSNAME-OST0000.oi_scrub" |
3981                          awk '/^lf_repa[ri]*ed/ { print $2 }')
3982         [ $REPAIRED -gt 0 ] ||
3983                 error "Some entry under /lost+found should be repaired"
3984
3985         # compare files
3986         diff_files_xattrs $(hostname) $TMP/$tdir $TMP/file_xattrs $files ||
3987                 error "Unable to diff files"
3988
3989         rm -rf $TMP/$tdir $TMP/file_xattrs ||
3990                 error "Unable to delete temporary files"
3991         do_node $ost1node "rm -rf $ost1tmp" ||
3992                 error "Unable to delete temporary files"
3993         cleanup || error "cleanup failed with $?"
3994 }
3995 run_test 52 "check recovering objects from lost+found"
3996
3997 # Checks threads_min/max/started for some service
3998 #
3999 # Arguments: service name (OST or MDT), facet (e.g., ost1, $SINGLEMDS), and a
4000 # parameter pattern prefix like 'ost.*.ost'.
4001 thread_sanity() {
4002         local modname=$1
4003         local facet=$2
4004         local parampat=$3
4005         local opts=$4
4006         local basethr=$5
4007         local tmin
4008         local tmin2
4009         local tmax
4010         local tmax2
4011         local tstarted
4012         local paramp
4013         local msg="Insane $modname thread counts"
4014         local ncpts=$(check_cpt_number $facet)
4015         local nthrs
4016         shift 4
4017
4018         check_mount || return 41
4019
4020         # We need to expand $parampat, but it may match multiple parameters, so
4021         # we'll pick the first one
4022         if ! paramp=$(do_facet $facet "lctl get_param -N ${parampat}.threads_min"|head -1); then
4023                 error "Couldn't expand ${parampat}.threads_min parameter name"
4024                 return 22
4025         fi
4026
4027         # Remove the .threads_min part
4028         paramp=${paramp%.threads_min}
4029
4030         # Check for sanity in defaults
4031         tmin=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_min" ||
4032                echo 0)
4033         tmax=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_max" ||
4034                echo 0)
4035         tstarted=$(do_facet $facet "$LCTL get_param \
4036                                     -n ${paramp}.threads_started" || echo 0)
4037         lassert 23 "$msg (PDSH problems?)" '(($tstarted && $tmin && $tmax))' ||
4038                 return $?
4039         lassert 24 "$msg" '(($tstarted >= $tmin && $tstarted <= $tmax ))' ||
4040                 return $?
4041         nthrs=$(expr $tmax - $tmin)
4042         if [ $nthrs -lt $ncpts ]; then
4043                 nthrs=0
4044         else
4045                 nthrs=$ncpts
4046         fi
4047
4048         [ $tmin -eq $tmax -a $tmin -eq $tstarted ] &&
4049                 skip_env "module parameter forced $facet thread count" &&
4050                 tmin=3 && tmax=$((3 * tmax))
4051
4052         # Check that we can change min/max
4053         do_facet $facet "$LCTL set_param \
4054                          ${paramp}.threads_min=$((tmin + nthrs))"
4055         do_facet $facet "$LCTL set_param \
4056                          ${paramp}.threads_max=$((tmax - nthrs))"
4057         tmin2=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_min" ||
4058                 echo 0)
4059         tmax2=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_max" ||
4060                 echo 0)
4061         lassert 25 "$msg" '(($tmin2 == ($tmin + $nthrs) &&
4062                             $tmax2 == ($tmax - $nthrs)))' || return $?
4063
4064         # Check that we can set min/max to the same value
4065         tmin=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_min" ||
4066                echo 0)
4067         do_facet $facet "$LCTL set_param ${paramp}.threads_max=$tmin"
4068         tmin2=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_min" ||
4069                 echo 0)
4070         tmax2=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_max" ||
4071                 echo 0)
4072         lassert 26 "$msg" '(($tmin2 == $tmin && $tmax2 == $tmin))' || return $?
4073
4074         # Check that we can't set max < min
4075         do_facet $facet "$LCTL set_param ${paramp}.threads_max=$((tmin - 1))"
4076         tmin2=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_min" ||
4077                 echo 0)
4078         tmax2=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_max" ||
4079                 echo 0)
4080         lassert 27 "$msg" '(($tmin2 <= $tmax2))' || return $?
4081
4082         # We need to ensure that we get the module options desired; to do this
4083         # we set LOAD_MODULES_REMOTE=true and we call setmodopts below.
4084         LOAD_MODULES_REMOTE=true
4085         cleanup
4086         local oldvalue
4087         local newvalue="${opts}=$(expr $basethr \* $ncpts)"
4088         setmodopts -a $modname "$newvalue" oldvalue
4089
4090         setup
4091         check_mount || return 41
4092
4093         # Restore previous setting of MODOPTS_*
4094         setmodopts $modname "$oldvalue"
4095
4096         # Check that $opts took
4097         tmin=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_min")
4098         tmax=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_max")
4099         tstarted=$(do_facet $facet \
4100                    "$LCTL get_param -n ${paramp}.threads_started")
4101         lassert 28 "$msg" '(($tstarted >= $tmin && $tstarted <= $tmax ))' ||
4102                 return $?
4103         cleanup
4104
4105         setup
4106 }
4107
4108 test_53a() {
4109         setup
4110         thread_sanity OST ost1 'ost.*.ost' 'oss_num_threads' '16'
4111         cleanup || error "cleanup failed with rc $?"
4112 }
4113 run_test 53a "check OSS thread count params"
4114
4115 test_53b() {
4116         setup
4117         local mds=$(do_facet $SINGLEMDS "$LCTL get_param \
4118                                          -N mds.*.*.threads_max 2>/dev/null")
4119         if [ -z "$mds" ]; then
4120                 #running this on an old MDT
4121                 thread_sanity MDT $SINGLEMDS 'mdt.*.*.' 'mdt_num_threads' 16
4122         else
4123                 thread_sanity MDT $SINGLEMDS 'mds.*.*.' 'mds_num_threads' 16
4124         fi
4125         cleanup || error "cleanup failed with $?"
4126 }
4127 run_test 53b "check MDS thread count params"
4128
4129 test_54a() {
4130         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
4131                 skip "ldiskfs only test"
4132                 return
4133         fi
4134
4135         do_rpc_nodes $(facet_host ost1) run_llverdev $(ostdevname 1) -p ||
4136                 error "llverdev failed with rc=$?"
4137         reformat_and_config
4138 }
4139 run_test 54a "test llverdev and partial verify of device"
4140
4141 test_54b() {
4142         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
4143                 skip "ldiskfs only test"
4144                 return
4145         fi
4146
4147         setup
4148         run_llverfs $MOUNT -p || error "llverfs failed with rc=$?"
4149         cleanup || error "cleanup failed with rc=$?"
4150 }
4151 run_test 54b "test llverfs and partial verify of filesystem"
4152
4153 lov_objid_size()
4154 {
4155         local max_ost_index=$1
4156         echo -n $(((max_ost_index + 1) * 8))
4157 }
4158
4159 test_55() {
4160         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
4161                 skip "ldiskfs only test"
4162                 return
4163         fi
4164
4165         local mdsdev=$(mdsdevname 1)
4166         local mdsvdev=$(mdsvdevname 1)
4167
4168         for i in 1023 2048
4169         do
4170                 if ! combined_mgs_mds; then
4171                         stop_mgs || error "stopping MGS service failed"
4172                         format_mgs || error "formatting MGT failed"
4173                 fi
4174                 add mds1 $(mkfs_opts mds1 ${mdsdev}) --reformat $mdsdev \
4175                         $mdsvdev || exit 10
4176                 add ost1 $(mkfs_opts ost1 $(ostdevname 1)) --index=$i \
4177                         --reformat $(ostdevname 1) $(ostvdevname 1)
4178                 setup_noconfig
4179                 stopall
4180                 setup_noconfig
4181                 sync
4182
4183                 echo checking size of lov_objid for ost index $i
4184                 LOV_OBJID_SIZE=$(do_facet mds1 "$DEBUGFS -R 'stat lov_objid' $mdsdev 2>/dev/null" |
4185                                  grep ^User | awk -F 'Size: ' '{print $2}')
4186                 if [ "$LOV_OBJID_SIZE" != $(lov_objid_size $i) ]; then
4187                         error "lov_objid size has to be $(lov_objid_size $i), not $LOV_OBJID_SIZE"
4188                 else
4189                         echo ok, lov_objid size is correct: $LOV_OBJID_SIZE
4190                 fi
4191                 stopall
4192         done
4193
4194         reformat
4195 }
4196 run_test 55 "check lov_objid size"
4197
4198 test_56a() {
4199         local server_version=$(lustre_version_code $SINGLEMDS)
4200         local mds_journal_size_orig=$MDSJOURNALSIZE
4201         local n
4202
4203         MDSJOURNALSIZE=16
4204
4205         formatall
4206         add ost1 $(mkfs_opts ost1 $(ostdevname 1)) --index=10000 --reformat \
4207                 $(ostdevname 1) $(ostvdevname 1)
4208         add ost2 $(mkfs_opts ost2 $(ostdevname 2)) --index=1000 --reformat \
4209                 $(ostdevname 2) $(ostvdevname 2)
4210
4211         start_mgsmds
4212         start_ost || error "Unable to start first ost (idx 10000)"
4213         start_ost2 || error "Unable to start second ost (idx 1000)"
4214         mount_client $MOUNT || error "Unable to mount client"
4215         echo ok
4216         $LFS osts
4217
4218         if [[ $server_version -ge $(version_code 2.6.54) ]] ||
4219            [[ $server_version -ge $(version_code 2.5.4) &&
4220               $server_version -lt $(version_code 2.5.11) ]]; then
4221                 wait_osc_import_state mds ost1 FULL
4222                 wait_osc_import_state mds ost2 FULL
4223                 $SETSTRIPE --stripe-count=-1 $DIR/$tfile ||
4224                         error "Unable to setstripe $DIR/$tfile"
4225                 n=$($LFS getstripe --stripe-count $DIR/$tfile)
4226                 [ "$n" -eq 2 ] || error "Stripe count not two: $n"
4227                 rm $DIR/$tfile
4228         fi
4229
4230         stopall
4231         MDSJOURNALSIZE=$mds_journal_size_orig
4232         reformat
4233 }
4234 run_test 56a "check big OST indexes and out-of-index-order start"
4235
4236 cleanup_56b() {
4237         trap 0
4238
4239         umount_client $MOUNT -f || error "unmount client failed"
4240         stop mds1
4241         stop mds2
4242         stop mds3
4243         stopall
4244         reformat
4245 }
4246
4247 test_56b() {
4248         [ $MDSCOUNT -lt 3 ] && skip "needs >= 3 MDTs" && return
4249
4250         trap cleanup_56b EXIT RETURN ERR
4251         stopall
4252
4253         if ! combined_mgs_mds ; then
4254                 format_mgs
4255                 start_mgs
4256         fi
4257
4258         add mds1 $(mkfs_opts mds1 $(mdsdevname 1)) --index=0 --reformat \
4259                 $(mdsdevname 1) $(mdsvdevname 1)
4260         add mds2 $(mkfs_opts mds2 $(mdsdevname 2)) --index=1 --reformat \
4261                 $(mdsdevname 2) $(mdsvdevname 2)
4262         add mds3 $(mkfs_opts mds3 $(mdsdevname 3)) --index=1000 --reformat \
4263                 $(mdsdevname 3) $(mdsvdevname 3)
4264         format_ost 1
4265         format_ost 2
4266
4267         start_mdt 1 || error "MDT 1 (idx 0) start failed"
4268         start_mdt 2 || error "MDT 2 (idx 1) start failed"
4269         start_mdt 3 || error "MDT 3 (idx 1000) start failed"
4270         start_ost || error "Unable to start first ost"
4271         start_ost2 || error "Unable to start second ost"
4272
4273         do_nodes $(comma_list $(mdts_nodes)) \
4274                 "$LCTL set_param mdt.*.enable_remote_dir=1 \
4275                 mdt.*.enable_remote_dir_gid=-1"
4276
4277         mount_client $MOUNT || error "Unable to mount client"
4278
4279         $LFS mkdir -c3 $MOUNT/$tdir || error "failed to make testdir"
4280
4281         echo "This is test file 1!" > $MOUNT/$tdir/$tfile.1 ||
4282                 error "failed to make test file 1"
4283         echo "This is test file 2!" > $MOUNT/$tdir/$tfile.2 ||
4284                 error "failed to make test file 2"
4285         echo "This is test file 1000!" > $MOUNT/$tdir/$tfile.1000 ||
4286                 error "failed to make test file 1000"
4287
4288         rm -rf $MOUNT/$tdir || error "failed to remove testdir"
4289
4290         $LFS mkdir -i1000 $MOUNT/$tdir.1000 ||
4291                 error "create remote dir at idx 1000 failed"
4292
4293         output=$($LFS df)
4294         echo "=== START lfs df OUTPUT ==="
4295         echo -e "$output"
4296         echo "==== END lfs df OUTPUT ===="
4297
4298         mdtcnt=$(echo -e "$output" | grep $FSNAME-MDT | wc -l)
4299         ostcnt=$(echo -e "$output" | grep $FSNAME-OST | wc -l)
4300
4301         echo "lfs df returned mdt count $mdtcnt and ost count $ostcnt"
4302         [ $mdtcnt -eq 3 ] || error "lfs df returned wrong mdt count"
4303         [ $ostcnt -eq 2 ] || error "lfs df returned wrong ost count"
4304
4305         echo "This is test file 1!" > $MOUNT/$tdir.1000/$tfile.1 ||
4306                 error "failed to make test file 1"
4307         echo "This is test file 2!" > $MOUNT/$tdir.1000/$tfile.2 ||
4308                 error "failed to make test file 2"
4309         echo "This is test file 1000!" > $MOUNT/$tdir.1000/$tfile.1000 ||
4310                 error "failed to make test file 1000"
4311         rm -rf $MOUNT/$tdir.1000 || error "failed to remove remote_dir"
4312
4313         output=$($LFS mdts)
4314         echo "=== START lfs mdts OUTPUT ==="
4315         echo -e "$output"
4316         echo "==== END lfs mdts OUTPUT ===="
4317
4318         echo -e "$output" | grep -v "MDTS:" | awk '{print $1}' |
4319                 sed 's/://g' > $TMP/mdts-actual.txt
4320         sort $TMP/mdts-actual.txt -o $TMP/mdts-actual.txt
4321
4322         echo -e "0\n1\n1000" > $TMP/mdts-expected.txt
4323
4324         diff $TMP/mdts-expected.txt $TMP/mdts-actual.txt
4325         result=$?
4326
4327         rm $TMP/mdts-expected.txt $TMP/mdts-actual.txt
4328
4329         [ $result -eq 0 ] || error "target_obd proc file is incorrect!"
4330 }
4331 run_test 56b "test target_obd correctness with nonconsecutive MDTs"
4332
4333 test_57a() { # bug 22656
4334         do_rpc_nodes $(facet_active_host ost1) load_modules_local
4335         local NID=$(do_facet ost1 "$LCTL get_param nis" |
4336                     tail -1 | awk '{print $1}')
4337         writeconf_or_reformat
4338         [ $(facet_fstype ost1) == zfs ] && import_zpool ost1
4339         do_facet ost1 "$TUNEFS --failnode=$NID `ostdevname 1`" ||
4340                 error "tunefs failed"
4341         start_mgsmds
4342         start_ost && error "OST registration from failnode should fail"
4343         reformat
4344 }
4345 run_test 57a "initial registration from failnode should fail (should return errs)"
4346
4347 test_57b() {
4348         do_rpc_nodes $(facet_active_host ost1) load_modules_local
4349         local NID=$(do_facet ost1 "$LCTL get_param nis" |
4350                     tail -1 | awk '{print $1}')
4351         writeconf_or_reformat
4352         [ $(facet_fstype ost1) == zfs ] && import_zpool ost1
4353         do_facet ost1 "$TUNEFS --servicenode=$NID `ostdevname 1`" ||
4354                 error "tunefs failed"
4355         start_mgsmds
4356         start_ost || error "OST registration from servicenode should not fail"
4357         reformat
4358 }
4359 run_test 57b "initial registration from servicenode should not fail"
4360
4361 count_osts() {
4362         do_facet mgs $LCTL get_param mgs.MGS.live.$FSNAME | grep OST | wc -l
4363 }
4364
4365 test_58() { # bug 22658
4366         combined_mgs_mds || stop_mgs || error "stopping MGS service failed"
4367         setup_noconfig
4368         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
4369         createmany -o $DIR/$tdir/$tfile-%d 100
4370         # make sure that OSTs do not cancel llog cookies before we unmount the MDS
4371 #define OBD_FAIL_OBD_LOG_CANCEL_NET      0x601
4372         do_facet $SINGLEMDS "$LCTL set_param fail_loc=0x601"
4373         unlinkmany $DIR/$tdir/$tfile-%d 100
4374         stop_mds || error "Unable to stop MDS"
4375
4376         local MNTDIR=$(facet_mntpt $SINGLEMDS)
4377         local devname=$(mdsdevname ${SINGLEMDS//mds/})
4378
4379         # remove all files from the OBJECTS dir
4380         mount_fstype $SINGLEMDS
4381
4382         do_facet $SINGLEMDS "find $MNTDIR/O/1/d* -type f -delete"
4383
4384         unmount_fstype $SINGLEMDS
4385         # restart MDS with missing llog files
4386         start_mds || error "unable to start MDS"
4387         do_facet $SINGLEMDS "$LCTL set_param fail_loc=0"
4388         reformat
4389 }
4390 run_test 58 "missing llog files must not prevent MDT from mounting"
4391
4392 test_59() {
4393         start_mgsmds >> /dev/null
4394         local C1=$(count_osts)
4395         if [ $C1 -eq 0 ]; then
4396                 start_ost >> /dev/null
4397                 C1=$(count_osts)
4398         fi
4399         stopall
4400         echo "original ost count: $C1 (expect > 0)"
4401         [ $C1 -gt 0 ] || error "No OSTs in $FSNAME log"
4402         start_mgsmds -o writeconf >> /dev/null || error "MDT start failed"
4403         local C2=$(count_osts)
4404         echo "after mdt writeconf count: $C2 (expect 0)"
4405         [ $C2 -gt 0 ] && error "MDT writeconf should erase OST logs"
4406         echo "OST start without writeconf should fail:"
4407         start_ost >> /dev/null &&
4408                 error "OST start without writeconf didn't fail"
4409         echo "OST start with writeconf should succeed:"
4410         start_ost -o writeconf >> /dev/null || error "OST1 start failed"
4411         local C3=$(count_osts)
4412         echo "after ost writeconf count: $C3 (expect 1)"
4413         [ $C3 -eq 1 ] || error "new OST writeconf should add:"
4414         start_ost2 -o writeconf >> /dev/null || error "OST2 start failed"
4415         local C4=$(count_osts)
4416         echo "after ost2 writeconf count: $C4 (expect 2)"
4417         [ $C4 -eq 2 ] || error "OST2 writeconf should add log"
4418         stop_ost2 >> /dev/null
4419         cleanup_nocli >> /dev/null
4420         #writeconf to remove all ost2 traces for subsequent tests
4421         writeconf_or_reformat
4422 }
4423 run_test 59 "writeconf mount option"
4424
4425 test_60() { # LU-471
4426         local num
4427
4428         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
4429                 skip "ldiskfs only test"
4430                 return
4431         fi
4432
4433         for num in $(seq $MDSCOUNT); do
4434                 add mds${num} $(mkfs_opts mds${num} $(mdsdevname $num)) \
4435                         --mkfsoptions='\" -E stride=64 -O ^uninit_bg\"' \
4436                         --reformat $(mdsdevname $num) $(mdsvdevname $num) ||
4437                         exit 10
4438         done
4439
4440         dump=$(do_facet $SINGLEMDS dumpe2fs $(mdsdevname 1))
4441         [ ${PIPESTATUS[0]} -eq 0 ] || error "dumpe2fs $(mdsdevname 1) failed"
4442
4443         # MDT default has dirdata feature
4444         echo $dump | grep dirdata > /dev/null || error "dirdata is not set"
4445         # we disable uninit_bg feature
4446         echo $dump | grep uninit_bg > /dev/null && error "uninit_bg is set"
4447         # we set stride extended options
4448         echo $dump | grep stride > /dev/null || error "stride is not set"
4449         reformat
4450 }
4451 run_test 60 "check mkfs.lustre --mkfsoptions -E -O options setting"
4452
4453 test_61() { # LU-80
4454         local lxattr=false
4455
4456         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.1.53) ] ||
4457                 { skip "Need MDS version at least 2.1.53"; return 0; }
4458
4459         if [ $(facet_fstype $SINGLEMDS) == ldiskfs ] &&
4460              ! large_xattr_enabled; then
4461                 lxattr=true
4462
4463                 for num in $(seq $MDSCOUNT); do
4464                         do_facet mds${num} $TUNE2FS -O ea_inode \
4465                                 $(mdsdevname $num) ||
4466                                 error "tune2fs on mds $num failed"
4467                 done
4468         fi
4469
4470         combined_mgs_mds || stop_mgs || error "stopping MGS service failed"
4471         setup_noconfig || error "setting up the filesystem failed"
4472         client_up || error "starting client failed"
4473
4474         local file=$DIR/$tfile
4475         touch $file || error "touch $file failed"
4476
4477         local large_value="$(generate_string $(max_xattr_size))"
4478         local small_value="bar"
4479
4480         local name="trusted.big"
4481         log "save large xattr $name on $file"
4482         setfattr -n $name -v $large_value $file ||
4483                 error "saving $name on $file failed"
4484
4485         local new_value=$(get_xattr_value $name $file)
4486         [[ "$new_value" != "$large_value" ]] &&
4487                 error "$name different after saving"
4488
4489         log "shrink value of $name on $file"
4490         setfattr -n $name -v $small_value $file ||
4491                 error "shrinking value of $name on $file failed"
4492
4493         new_value=$(get_xattr_value $name $file)
4494         [[ "$new_value" != "$small_value" ]] &&
4495                 error "$name different after shrinking"
4496
4497         log "grow value of $name on $file"
4498         setfattr -n $name -v $large_value $file ||
4499                 error "growing value of $name on $file failed"
4500
4501         new_value=$(get_xattr_value $name $file)
4502         [[ "$new_value" != "$large_value" ]] &&
4503                 error "$name different after growing"
4504
4505         log "check value of $name on $file after remounting MDS"
4506         fail $SINGLEMDS
4507         new_value=$(get_xattr_value $name $file)
4508         [[ "$new_value" != "$large_value" ]] &&
4509                 error "$name different after remounting MDS"
4510
4511         log "remove large xattr $name from $file"
4512         setfattr -x $name $file || error "removing $name from $file failed"
4513
4514         if $lxattr; then
4515                 stopall || error "stopping for e2fsck run"
4516                 for num in $(seq $MDSCOUNT); do
4517                         run_e2fsck $(facet_active_host mds$num) \
4518                                 $(mdsdevname $num) "-y" ||
4519                                 error "e2fsck MDT$num failed"
4520                 done
4521                 setup_noconfig || error "remounting the filesystem failed"
4522         fi
4523
4524         # need to delete this file to avoid problems in other tests
4525         rm -f $file
4526         stopall || error "stopping systems failed"
4527 }
4528 run_test 61 "large xattr"
4529
4530 test_62() {
4531         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
4532                 skip "ldiskfs only test"
4533                 return
4534         fi
4535
4536         # MRP-118
4537         local mdsdev=$(mdsdevname 1)
4538         local ostdev=$(ostdevname 1)
4539
4540         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
4541                 { skip "Need MDS version at least 2.2.51"; return 0; }
4542
4543         echo "disable journal for mds"
4544         do_facet mds1 $TUNE2FS -O ^has_journal $mdsdev || error "tune2fs failed"
4545         start_mds && error "MDT start should fail"
4546         echo "disable journal for ost"
4547         do_facet ost1 $TUNE2FS -O ^has_journal $ostdev || error "tune2fs failed"
4548         start_ost && error "OST start should fail"
4549         cleanup || error "cleanup failed with rc $?"
4550         reformat_and_config
4551 }
4552 run_test 62 "start with disabled journal"
4553
4554 test_63() {
4555         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
4556                 skip "ldiskfs only test"
4557                 return
4558         fi
4559
4560         do_rpc_nodes $(facet_active_host $SINGLEMDS) load_module ldiskfs
4561         local inode_slab=$(do_facet $SINGLEMDS "cat /proc/slabinfo" |
4562                            awk '/ldiskfs_inode_cache/ { print $5 / $6 }')
4563         if [ -z "$inode_slab" ]; then
4564                 skip "ldiskfs module has not been loaded"
4565                 return
4566         fi
4567
4568         echo "$inode_slab ldiskfs inodes per page"
4569         [ "${inode_slab%.*}" -ge "3" ] && return 0
4570
4571         # If kmalloc-128 is also 1 per page - this is a debug kernel
4572         # and so this is not an error.
4573         local kmalloc128=$(do_facet $SINGLEMDS "cat /proc/slabinfo" |
4574                            awk '/^(kmalloc|size)-128 / { print $5 / $6 }')
4575         # 32 128-byte chunks in 4k
4576         [ "${kmalloc128%.*}" -lt "32" ] ||
4577                 error "ldiskfs inode too big, only $inode_slab objs/page, " \
4578                       "kmalloc128 = $kmalloc128 objs/page"
4579 }
4580 run_test 63 "Verify each page can at least hold 3 ldiskfs inodes"
4581
4582 test_64() {
4583         start_mds || error "unable to start MDS"
4584         start_ost || error "Unable to start OST1"
4585         start_ost2 || error "Unable to start second ost"
4586         mount_client $MOUNT || error "Unable to mount client"
4587         stop_ost2 || error "Unable to stop second ost"
4588         echo "$LFS df"
4589         $LFS df --lazy
4590         umount_client $MOUNT -f || error “unmount $MOUNT failed”
4591         cleanup_nocli || error "cleanup_nocli failed with $?"
4592         #writeconf to remove all ost2 traces for subsequent tests
4593         writeconf_or_reformat
4594 }
4595 run_test 64 "check lfs df --lazy "
4596
4597 test_65() { # LU-2237
4598         # Currently, the test is only valid for ldiskfs backend
4599         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
4600                 skip "ldiskfs only test" && return
4601
4602         local devname=$(mdsdevname ${SINGLEMDS//mds/})
4603         local brpt=$(facet_mntpt brpt)
4604         local opts=""
4605
4606         if ! do_facet $SINGLEMDS "test -b $devname"; then
4607                 opts="-o loop"
4608         fi
4609
4610         stop_mds || error "Unable to stop MDS"
4611         local obj=$(do_facet $SINGLEMDS \
4612                     "$DEBUGFS -c -R \\\"stat last_rcvd\\\" $devname" |
4613                     grep Inode)
4614         if [ -z "$obj" ]; then
4615                 # The MDT may be just re-formatted, mount the MDT for the
4616                 # first time to guarantee the "last_rcvd" file is there.
4617                 start_mds || error "fail to mount the MDS for the first time"
4618                 stop_mds || error "Unable to stop MDS"
4619         fi
4620
4621         # remove the "last_rcvd" file
4622         do_facet $SINGLEMDS "mkdir -p $brpt"
4623         do_facet $SINGLEMDS \
4624                 "mount -t $(facet_fstype $SINGLEMDS) $opts $devname $brpt"
4625         do_facet $SINGLEMDS "rm -f ${brpt}/last_rcvd"
4626         do_facet $SINGLEMDS "$UMOUNT $brpt"
4627
4628         # restart MDS, the "last_rcvd" file should be recreated.
4629         start_mds || error "fail to restart the MDS"
4630         stop_mds || error "Unable to stop MDS"
4631         obj=$(do_facet $SINGLEMDS \
4632               "$DEBUGFS -c -R \\\"stat last_rcvd\\\" $devname" | grep Inode)
4633         [ -n "$obj" ] || error "fail to re-create the last_rcvd"
4634 }
4635 run_test 65 "re-create the lost last_rcvd file when server mount"
4636
4637 test_66() {
4638         [[ $(lustre_version_code mgs) -ge $(version_code 2.3.59) ]] ||
4639                 { skip "Need MGS version at least 2.3.59"; return 0; }
4640
4641         setup
4642         local OST1_NID=$(do_facet ost1 $LCTL list_nids | head -1)
4643         local MDS_NID=$(do_facet $SINGLEMDS $LCTL list_nids | head -1)
4644
4645         echo "replace_nids should fail if MDS, OSTs and clients are UP"
4646         do_facet mgs $LCTL replace_nids $FSNAME-OST0000 $OST1_NID &&
4647                 error "replace_nids fail"
4648
4649         umount_client $MOUNT || error "unmounting client failed"
4650         echo "replace_nids should fail if MDS and OSTs are UP"
4651         do_facet mgs $LCTL replace_nids $FSNAME-OST0000 $OST1_NID &&
4652                 error "replace_nids fail"
4653
4654         stop_ost || error "Unable to stop OST1"
4655         echo "replace_nids should fail if MDS is UP"
4656         do_facet mgs $LCTL replace_nids $FSNAME-OST0000 $OST1_NID &&
4657                 error "replace_nids fail"
4658
4659         stop_mds || error "stopping mds failed"
4660
4661         if combined_mgs_mds; then
4662                 start_mdt 1 "-o nosvc" ||
4663                         error "starting mds with nosvc option failed"
4664         fi
4665
4666         echo "command should accept two parameters"
4667         do_facet mgs $LCTL replace_nids $FSNAME-OST0000 &&
4668                 error "command should accept two params"
4669
4670         echo "correct device name should be passed"
4671         do_facet mgs $LCTL replace_nids $FSNAME-WRONG0000 $OST1_NID &&
4672                 error "wrong devname"
4673
4674         echo "wrong nids list should not destroy the system"
4675         do_facet mgs $LCTL replace_nids $FSNAME-OST0000 "wrong nids list" &&
4676                 error "wrong parse"
4677
4678         echo "replace OST nid"
4679         do_facet mgs $LCTL replace_nids $FSNAME-OST0000 $OST1_NID ||
4680                 error "replace nids failed"
4681
4682         echo "command should accept two parameters"
4683         do_facet mgs $LCTL replace_nids $FSNAME-MDT0000 &&
4684                 error "command should accept two params"
4685
4686         echo "wrong nids list should not destroy the system"
4687         do_facet mgs $LCTL replace_nids $FSNAME-MDT0000 "wrong nids list" &&
4688                 error "wrong parse"
4689
4690         echo "replace MDS nid"
4691         do_facet mgs $LCTL replace_nids $FSNAME-MDT0000 $MDS_NID ||
4692                 error "replace nids failed"
4693
4694         if ! combined_mgs_mds ; then
4695                 stop_mgs
4696         else
4697                 stop_mds || error "Unable to stop MDS"
4698         fi
4699
4700         setup_noconfig
4701         check_mount || error "error after nid replace"
4702         cleanup || error "cleanup failed"
4703         reformat
4704 }
4705 run_test 66 "replace nids"
4706
4707 test_67() { #LU-2950
4708         local legacy="$TMP/legacy_lnet_config"
4709         local new="$TMP/new_routes_test"
4710         local out="$TMP/config_out_file"
4711         local verify="$TMP/conv_verify"
4712         local verify_conf="$TMP/conf_verify"
4713
4714         # Create the legacy file that will be run through the
4715         # lustre_routes_conversion script
4716         cat <<- LEGACY_LNET_CONFIG > $legacy
4717                 tcp1 23 192.168.213.1@tcp:1; tcp5 34 193.30.4.3@tcp:4;
4718                 tcp2 54 10.1.3.2@tcp;
4719                 tcp3 10.3.4.3@tcp:3;
4720                 tcp4 10.3.3.4@tcp;
4721         LEGACY_LNET_CONFIG
4722
4723         # Create the verification file to verify the output of
4724         # lustre_routes_conversion script against.
4725         cat <<- VERIFY_LNET_CONFIG > $verify
4726                 tcp1: { gateway: 192.168.213.1@tcp, hop: 23, priority: 1 }
4727                 tcp5: { gateway: 193.30.4.3@tcp, hop: 34, priority: 4 }
4728                 tcp2: { gateway: 10.1.3.2@tcp, hop: 54 }
4729                 tcp3: { gateway: 10.3.4.3@tcp, priority: 3 }
4730                 tcp4: { gateway: 10.3.3.4@tcp }
4731         VERIFY_LNET_CONFIG
4732
4733         # Create the verification file to verify the output of
4734         # lustre_routes_config script against
4735         cat <<- VERIFY_LNET_CONFIG > $verify_conf
4736                 lctl --net tcp1 add_route 192.168.213.1@tcp 23 1
4737                 lctl --net tcp5 add_route 193.30.4.3@tcp 34 4
4738                 lctl --net tcp2 add_route 10.1.3.2@tcp 54 4
4739                 lctl --net tcp3 add_route 10.3.4.3@tcp 1 3
4740                 lctl --net tcp4 add_route 10.3.3.4@tcp 1 3
4741         VERIFY_LNET_CONFIG
4742
4743         lustre_routes_conversion $legacy $new > /dev/null
4744         if [ -f $new ]; then
4745                 # verify the conversion output
4746                 cmp -s $new $verify > /dev/null
4747                 if [ $? -eq 1 ]; then
4748                         error "routes conversion failed"
4749                 fi
4750
4751                 lustre_routes_config --dry-run --verbose $new > $out
4752                 # check that the script succeeded
4753                 cmp -s $out $verify_conf > /dev/null
4754                 if [ $? -eq 1 ]; then
4755                         error "routes config failed"
4756                 fi
4757         else
4758                 error "routes conversion test failed"
4759         fi
4760         # remove generated files
4761         rm -f $new $legacy $verify $verify_conf $out
4762 }
4763 run_test 67 "test routes conversion and configuration"
4764
4765 test_68() {
4766         local fid
4767         local seq
4768         local START
4769         local END
4770
4771         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.4.53) ] ||
4772                 { skip "Need MDS version at least 2.4.53"; return 0; }
4773
4774         umount_client $MOUNT || error "umount client failed"
4775
4776         if ! combined_mgs_mds; then
4777                 start_mgs || error "start mgs failed"
4778         fi
4779
4780         start_mdt 1 || error "MDT start failed"
4781         start_ost || error "Unable to start OST1"
4782
4783         # START-END - the sequences we'll be reserving
4784         START=$(do_facet $SINGLEMDS \
4785                 $LCTL get_param -n seq.ctl*.space | awk -F'[[ ]' '{print $2}')
4786         END=$((START + (1 << 30)))
4787         do_facet $SINGLEMDS \
4788                 $LCTL set_param seq.ctl*.fldb="[$START-$END\):0:mdt"
4789
4790         # reset the sequences MDT0000 has already assigned
4791         do_facet $SINGLEMDS \
4792                 $LCTL set_param seq.srv*MDT0000.space=clear
4793
4794         # remount to let the client allocate new sequence
4795         mount_client $MOUNT || error "mount client failed"
4796
4797         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
4798         do_facet $SINGLEMDS \
4799                 $LCTL get_param seq.srv*MDT0000.space
4800         $LFS path2fid $DIR/$tfile
4801
4802         local old_ifs="$IFS"
4803         IFS='[:]'
4804         fid=($($LFS path2fid $DIR/$tfile))
4805         IFS="$old_ifs"
4806         let seq=${fid[1]}
4807
4808         if [[ $seq < $END ]]; then
4809                 error "used reserved sequence $seq?"
4810         fi
4811         cleanup || error "cleanup failed with $?"
4812 }
4813 run_test 68 "be able to reserve specific sequences in FLDB"
4814
4815 # Test 69: is about the total number of objects ever created on an OST.
4816 # so that when it is reformatted the normal MDS->OST orphan recovery won't
4817 # just "precreate" the missing objects. In the past it might try to recreate
4818 # millions of objects after an OST was reformatted
4819 test_69() {
4820         local server_version=$(lustre_version_code $SINGLEMDS)
4821
4822         [[ $server_version -lt $(version_code 2.4.2) ]] &&
4823                 skip "Need MDS version at least 2.4.2" && return
4824
4825         [[ $server_version -ge $(version_code 2.4.50) ]] &&
4826         [[ $server_version -lt $(version_code 2.5.0) ]] &&
4827                 skip "Need MDS version at least 2.5.0" && return
4828
4829         setup
4830         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
4831
4832         # use OST0000 since it probably has the most creations
4833         local OSTNAME=$(ostname_from_index 0)
4834         local mdtosc_proc1=$(get_mdtosc_proc_path mds1 $OSTNAME)
4835         local last_id=$(do_facet mds1 $LCTL get_param -n \
4836                         osc.$mdtosc_proc1.prealloc_last_id)
4837
4838         # Want to have OST LAST_ID over 5 * OST_MAX_PRECREATE to
4839         # verify that the LAST_ID recovery is working properly. If
4840         # not, then the OST will refuse to allow the MDS connect
4841         # because the LAST_ID value is too different from the MDS
4842         #define OST_MAX_PRECREATE=20000
4843         local ost_max_pre=20000
4844         local num_create=$(( ost_max_pre * 5 + 1 - last_id))
4845
4846         # If the LAST_ID is already over 5 * OST_MAX_PRECREATE, we don't
4847         # need to create any files. So, skip this section.
4848         if [ $num_create -gt 0 ]; then
4849                 # Check the number of inodes available on OST0
4850                 local files=0
4851                 local ifree=$($LFS df -i $MOUNT | awk '/OST0000/ { print $4 }')
4852                 log "On OST0, $ifree inodes available. Want $num_create."
4853
4854                 $SETSTRIPE -i 0 $DIR/$tdir ||
4855                         error "$SETSTRIPE -i 0 $DIR/$tdir failed"
4856                 if [ $ifree -lt 10000 ]; then
4857                         files=$(( ifree - 50 ))
4858                 else
4859                         files=10000
4860                 fi
4861
4862                 local j=$((num_create / files + 1))
4863                 for i in $(seq 1 $j); do
4864                         createmany -o $DIR/$tdir/$tfile-$i- $files ||
4865                                 error "createmany fail create $files files: $?"
4866                         unlinkmany $DIR/$tdir/$tfile-$i- $files ||
4867                                 error "unlinkmany failed unlink $files files"
4868                 done
4869         fi
4870
4871         # delete all of the files with objects on OST0 so the
4872         # filesystem is not inconsistent later on
4873         $LFS find $MOUNT --ost 0 -print0 | xargs -0 rm
4874
4875         umount_client $MOUNT || error "umount client failed"
4876         stop_ost || error "OST0 stop failure"
4877         add ost1 $(mkfs_opts ost1 $(ostdevname 1)) --reformat --replace \
4878                 $(ostdevname 1) $(ostvdevname 1) ||
4879                 error "reformat and replace $ostdev failed"
4880         start_ost || error "OST0 restart failure"
4881         wait_osc_import_state mds ost FULL
4882
4883         mount_client $MOUNT || error "mount client failed"
4884         touch $DIR/$tdir/$tfile-last || error "create file after reformat"
4885         local idx=$($GETSTRIPE -i $DIR/$tdir/$tfile-last)
4886         [ $idx -ne 0 ] && error "$DIR/$tdir/$tfile-last on $idx not 0" || true
4887
4888         local iused=$($LFS df -i $MOUNT | awk '/OST0000/ { print $3 }')
4889         log "On OST0, $iused used inodes"
4890         [ $iused -ge $((ost_max_pre/2 + 1000)) ] &&
4891                 error "OST replacement created too many inodes; $iused"
4892         cleanup || error "cleanup failed with $?"
4893 }
4894 run_test 69 "replace an OST with the same index"
4895
4896 test_70a() {
4897         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4898         local MDTIDX=1
4899
4900         cleanup || error "cleanup failed with $?"
4901
4902         start_mdt 1 || error "MDT0 start fail"
4903
4904         start_ost || error "OST0 start fail"
4905         for num in $(seq 2 $MDSCOUNT); do
4906                 start_mdt $num || return
4907         done
4908
4909         mount_client $MOUNT || error "mount client fails"
4910
4911         mkdir $DIR/$tdir || error "create $DIR/$tdir failed"
4912
4913         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
4914                 error "create remote dir fail"
4915
4916         rm -rf $DIR/$tdir || error "delete dir fail"
4917         cleanup || error "cleanup failed with $?"
4918 }
4919 run_test 70a "start MDT0, then OST, then MDT1"
4920
4921 test_70b() {
4922         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4923         local MDTIDX=1
4924
4925         start_ost || error "OST0 start fail"
4926
4927         start_mds || error "MDS start fail"
4928
4929         mount_client $MOUNT || error "mount client fails"
4930
4931         mkdir $DIR/$tdir || error "create $DIR/$tdir failed"
4932
4933         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
4934                 error "create remote dir fail"
4935
4936         rm -rf $DIR/$tdir || error "delete dir fail"
4937
4938         cleanup || error "cleanup failed with $?"
4939 }
4940 run_test 70b "start OST, MDT1, MDT0"
4941
4942 test_70c() {
4943         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4944         local MDTIDX=1
4945
4946         start_mds || error "MDS start fail"
4947         start_ost || error "OST0 start fail"
4948
4949         mount_client $MOUNT || error "mount client fails"
4950         stop_mdt 1 || error "MDT1 start fail"
4951
4952         local mdc_for_mdt1=$($LCTL dl | grep MDT0000-mdc | awk '{print $4}')
4953         echo "deactivate $mdc_for_mdt1"
4954         $LCTL --device $mdc_for_mdt1 deactivate ||
4955                 error "set $mdc_for_mdt1 deactivate failed"
4956
4957         mkdir $DIR/$tdir && error "mkdir succeed"
4958
4959         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir &&
4960                 error "create remote dir succeed"
4961
4962         cleanup || error "cleanup failed with $?"
4963 }
4964 run_test 70c "stop MDT0, mkdir fail, create remote dir fail"
4965
4966 test_70d() {
4967         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4968         local MDTIDX=1
4969
4970         start_mds || error "MDS start fail"
4971         start_ost || error "OST0 start fail"
4972
4973         mount_client $MOUNT || error "mount client fails"
4974
4975         stop_mdt 2 || error "MDT1 start fail"
4976
4977         local mdc_for_mdt2=$($LCTL dl | grep MDT0001-mdc |
4978                              awk '{print $4}')
4979         echo "deactivate $mdc_for_mdt2"
4980         $LCTL --device $mdc_for_mdt2 deactivate ||
4981                 error "set $mdc_for_mdt2 deactivate failed"
4982
4983         mkdir $DIR/$tdir || error "mkdir fail"
4984         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir &&
4985                 error "create remote dir succeed"
4986
4987         rm -rf $DIR/$tdir || error "delete dir fail"
4988
4989         cleanup || error "cleanup failed with $?"
4990 }
4991 run_test 70d "stop MDT1, mkdir succeed, create remote dir fail"
4992
4993 test_70e() {
4994         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4995
4996         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.7.62) ] ||
4997                 { skip "Need MDS version at least 2.7.62"; return 0; }
4998
4999         cleanup || error "cleanup failed with $?"
5000
5001         local mdsdev=$(mdsdevname 1)
5002         local ostdev=$(ostdevname 1)
5003         local mdsvdev=$(mdsvdevname 1)
5004         local ostvdev=$(ostvdevname 1)
5005         local opts_mds="$(mkfs_opts mds1 $mdsdev) --reformat $mdsdev $mdsvdev"
5006         local opts_ost="$(mkfs_opts ost1 $ostdev) --reformat $ostdev $ostvdev"
5007
5008         add mds1 $opts_mds || error "add mds1 failed"
5009         start_mdt 1 || error "start mdt1 failed"
5010         add ost1 $opts_ost || error "add ost1 failed"
5011         start_ost || error "start ost failed"
5012         mount_client $MOUNT > /dev/null || error "mount client $MOUNT failed"
5013
5014         local soc=$(do_facet mds1 "$LCTL get_param -n \
5015                     mdt.*MDT0000.sync_lock_cancel")
5016         [ $soc == "never" ] || error "SoC enabled on single MDS"
5017
5018         for i in $(seq 2 $MDSCOUNT); do
5019                 mdsdev=$(mdsdevname $i)
5020                 mdsvdev=$(mdsvdevname $i)
5021                 opts_mds="$(mkfs_opts mds$i $mdsdev) --reformat $mdsdev \
5022                           $mdsvdev"
5023                 add mds$i $opts_mds || error "add mds$i failed"
5024                 start_mdt $i || error "start mdt$i fail"
5025         done
5026
5027         wait_dne_interconnect
5028
5029         for i in $(seq $MDSCOUNT); do
5030                 soc=$(do_facet mds$i "$LCTL get_param -n \
5031                         mdt.*MDT000$((i - 1)).sync_lock_cancel")
5032                 [ $soc == "blocking" ] || error "SoC not enabled on DNE"
5033         done
5034
5035         for i in $(seq 2 $MDSCOUNT); do
5036                 stop_mdt $i || error "stop mdt$i fail"
5037         done
5038         soc=$(do_facet mds1 "$LCTL get_param -n \
5039                 mdt.*MDT0000.sync_lock_cancel")
5040         [ $soc == "never" ] || error "SoC enabled on single MDS"
5041         umount_client $MOUNT -f > /dev/null
5042
5043         cleanup || error "cleanup failed with $?"
5044 }
5045 run_test 70e "Sync-on-Cancel will be enabled by default on DNE"
5046
5047 test_71a() {
5048         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
5049         if combined_mgs_mds; then
5050                 skip "needs separate MGS/MDT" && return
5051         fi
5052         local MDTIDX=1
5053
5054         start_mdt 1 || error "MDT0 start fail"
5055         start_ost || error "OST0 start fail"
5056         for num in $(seq 2 $MDSCOUNT); do
5057                 start_mdt $num || return
5058         done
5059
5060         start_ost2 || error "OST1 start fail"
5061
5062         mount_client $MOUNT || error "mount client fails"
5063
5064         mkdir $DIR/$tdir || error "mkdir fail"
5065         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
5066                 error "create remote dir succeed"
5067
5068         mcreate $DIR/$tdir/remote_dir/$tfile || error "create file failed"
5069         rm -rf $DIR/$tdir || error "delete dir fail"
5070
5071         umount_client $MOUNT || error "umount_client failed"
5072         stop_mds || error "MDS stop fail"
5073         stop_ost || error "OST0 stop fail"
5074         stop_ost2 || error "OST1 stop fail"
5075 }
5076 run_test 71a "start MDT0 OST0, MDT1, OST1"
5077
5078 test_71b() {
5079         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
5080         if combined_mgs_mds; then
5081                 skip "needs separate MGS/MDT" && return
5082         fi
5083         local MDTIDX=1
5084
5085         for num in $(seq 2 $MDSCOUNT); do
5086                 start_mdt $num || return
5087         done
5088         start_ost || error "OST0 start fail"
5089         start_mdt 1 || error "MDT0 start fail"
5090         start_ost2 || error "OST1 start fail"
5091
5092         mount_client $MOUNT || error "mount client fails"
5093
5094         mkdir $DIR/$tdir || error "mkdir fail"
5095         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
5096                 error "create remote dir succeed"
5097
5098         mcreate $DIR/$tdir/remote_dir/$tfile || error "create file failed"
5099         rm -rf $DIR/$tdir || error "delete dir fail"
5100
5101         umount_client $MOUNT || error "umount_client failed"
5102         stop_mds || error "MDT0 stop fail"
5103         stop_ost || error "OST0 stop fail"
5104         stop_ost2 || error "OST1 stop fail"
5105 }
5106 run_test 71b "start MDT1, OST0, MDT0, OST1"
5107
5108 test_71c() {
5109         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
5110         if combined_mgs_mds; then
5111                 skip "needs separate MGS/MDT" && return
5112         fi
5113         local MDTIDX=1
5114
5115         start_ost || error "OST0 start fail"
5116         start_ost2 || error "OST1 start fail"
5117         for num in $(seq 2 $MDSCOUNT); do
5118                 start_mdt $num || return
5119         done
5120         start_mdt 1 || error "MDT0 start fail"
5121
5122         mount_client $MOUNT || error "mount client fails"
5123
5124         mkdir $DIR/$tdir || error "mkdir fail"
5125         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
5126                 error "create remote dir succeed"
5127
5128         mcreate $DIR/$tdir/remote_dir/$tfile || error "create file failed"
5129         rm -rf $DIR/$tdir || error "delete dir fail"
5130
5131         umount_client $MOUNT || error "umount_client failed"
5132         stop_mds || error "MDS stop fail"
5133         stop_ost || error "OST0 stop fail"
5134         stop_ost2 || error "OST1 stop fail"
5135
5136 }
5137 run_test 71c "start OST0, OST1, MDT1, MDT0"
5138
5139 test_71d() {
5140         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
5141         if combined_mgs_mds; then
5142                 skip "needs separate MGS/MDT" && return
5143         fi
5144         local MDTIDX=1
5145
5146         start_ost || error "OST0 start fail"
5147         for num in $(seq 2 $MDSCOUNT); do
5148                 start_mdt $num || return
5149         done
5150         start_mdt 1 || error "MDT0 start fail"
5151         start_ost2 || error "OST1 start fail"
5152
5153         mount_client $MOUNT || error "mount client fails"
5154
5155         mkdir $DIR/$tdir || error "mkdir fail"
5156         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
5157                         error "create remote dir succeed"
5158
5159         mcreate $DIR/$tdir/remote_dir/$tfile || error "create file failed"
5160         rm -rf $DIR/$tdir || error "delete dir fail"
5161
5162         umount_client $MOUNT || error "umount_client failed"
5163         stop_mds || error "MDS stop fail"
5164         stop_ost || error "OST0 stop fail"
5165         stop_ost2 || error "OST1 stop fail"
5166
5167 }
5168 run_test 71d "start OST0, MDT1, MDT0, OST1"
5169
5170 test_71e() {
5171         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
5172         if combined_mgs_mds; then
5173                 skip "needs separate MGS/MDT" && return
5174         fi
5175         local MDTIDX=1
5176
5177         start_ost || error "OST0 start fail"
5178         for num in $(seq 2 $MDSCOUNT); do
5179                 start_mdt $num || return
5180         done
5181         start_ost2 || error "OST1 start fail"
5182         start_mdt 1 || error "MDT0 start fail"
5183
5184         mount_client $MOUNT || error "mount client fails"
5185
5186         mkdir $DIR/$tdir || error "mkdir fail"
5187         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
5188                 error "create remote dir succeed"
5189
5190         mcreate $DIR/$tdir/remote_dir/$tfile || error "create file failed"
5191         rm -rf $DIR/$tdir || error "delete dir fail"
5192
5193         umount_client $MOUNT || error "umount_client failed"
5194         stop_mds || error "MDS stop fail"
5195         stop_ost || error "OST0 stop fail"
5196         stop_ost2 || error "OST1 stop fail"
5197
5198 }
5199 run_test 71e "start OST0, MDT1, OST1, MDT0"
5200
5201 test_72() { #LU-2634
5202         local mdsdev=$(mdsdevname 1)
5203         local ostdev=$(ostdevname 1)
5204         local cmd="$E2FSCK -fnvd $mdsdev"
5205         local fn=3
5206         local add_options
5207
5208         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
5209                 skip "ldiskfs only test" && return
5210
5211         if combined_mgs_mds; then
5212                 add_options='--reformat'
5213         else
5214                 add_options='--reformat --replace'
5215         fi
5216
5217         #tune MDT with "-O extents"
5218
5219         for num in $(seq $MDSCOUNT); do
5220                 add mds${num} $(mkfs_opts mds$num $(mdsdevname $num)) \
5221                         $add_options $(mdsdevname $num) $(mdsvdevname $num) ||
5222                         error "add mds $num failed"
5223                 do_facet mds${num} "$TUNE2FS -O extents $(mdsdevname $num)" ||
5224                         error "$TUNE2FS failed on mds${num}"
5225         done
5226
5227         add ost1 $(mkfs_opts ost1 $ostdev) $add_options $ostdev ||
5228                 error "add $ostdev failed"
5229         start_mds || error "start mds failed"
5230         start_ost || error "start ost failed"
5231         mount_client $MOUNT || error "mount client failed"
5232
5233         #create some short symlinks
5234         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
5235         createmany -o $DIR/$tdir/$tfile-%d $fn
5236         echo "create $fn short symlinks"
5237         for i in $(seq -w 1 $fn); do
5238                 ln -s $DIR/$tdir/$tfile-$i $MOUNT/$tfile-$i
5239         done
5240         ls -al $MOUNT
5241
5242         #umount
5243         umount_client $MOUNT || error "umount client failed"
5244         stop_mds || error "stop mds failed"
5245         stop_ost || error "stop ost failed"
5246
5247         #run e2fsck
5248         run_e2fsck $(facet_active_host $SINGLEMDS) $mdsdev "-n"
5249 }
5250 run_test 72 "test fast symlink with extents flag enabled"
5251
5252 test_73() { #LU-3006
5253         [ $(facet_fstype ost1) == zfs ] && import_zpool ost1
5254         do_facet ost1 "$TUNEFS --failnode=1.2.3.4@$NETTYPE $(ostdevname 1)" ||
5255                 error "1st tunefs failed"
5256         start_mgsmds || error "start mds failed"
5257         start_ost || error "start ost failed"
5258         mount_client $MOUNT || error "mount client failed"
5259         $LCTL get_param -n osc.*OST0000-osc-[^M]*.import | grep failover_nids |
5260                 grep 1.2.3.4@$NETTYPE || error "failover nids haven't changed"
5261         umount_client $MOUNT || error "umount client failed"
5262         stopall
5263         reformat
5264 }
5265 run_test 73 "failnode to update from mountdata properly"
5266
5267 test_75() { # LU-2374
5268         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
5269                         skip "Need MDS version at least 2.4.1" && return
5270
5271         local index=0
5272         local opts_mds="$(mkfs_opts mds1 $(mdsdevname 1)) \
5273                 --reformat $(mdsdevname 1) $(mdsvdevname 1)"
5274         local opts_ost="$(mkfs_opts ost1 $(ostdevname 1)) \
5275                 --reformat $(ostdevname 1) $(ostvdevname 1)"
5276
5277         #check with default parameters
5278         add mds1 $opts_mds || error "add mds1 failed for default params"
5279         add ost1 $opts_ost || error "add ost1 failed for default params"
5280
5281         opts_mds=$(echo $opts_mds | sed -e "s/--mdt//")
5282         opts_mds=$(echo $opts_mds |
5283                    sed -e "s/--index=$index/--index=$index --mdt/")
5284         opts_ost=$(echo $opts_ost | sed -e "s/--ost//")
5285         opts_ost=$(echo $opts_ost |
5286                    sed -e "s/--index=$index/--index=$index --ost/")
5287
5288         add mds1 $opts_mds || error "add mds1 failed for new params"
5289         add ost1 $opts_ost || error "add ost1 failed for new params"
5290         if ! combined_mgs_mds; then
5291                 stop_mgs || error "stop mgs failed"
5292         fi
5293         reformat
5294         return 0
5295 }
5296 run_test 75 "The order of --index should be irrelevant"
5297
5298 test_76a() {
5299         [[ $(lustre_version_code mgs) -ge $(version_code 2.4.52) ]] ||
5300                 { skip "Need MDS version at least 2.4.52" && return 0; }
5301
5302         if ! combined_mgs_mds; then
5303                 start_mgs || error "start mgs failed"
5304         fi
5305         setup
5306         local MDMB_PARAM="osc.*.max_dirty_mb"
5307         echo "Change MGS params"
5308         local MAX_DIRTY_MB=$($LCTL get_param -n $MDMB_PARAM |
5309                 head -1)
5310         echo "max_dirty_mb: $MAX_DIRTY_MB"
5311         local NEW_MAX_DIRTY_MB=$((MAX_DIRTY_MB + MAX_DIRTY_MB))
5312         echo "new_max_dirty_mb: $NEW_MAX_DIRTY_MB"
5313         do_facet mgs $LCTL set_param -P $MDMB_PARAM=$NEW_MAX_DIRTY_MB
5314         wait_update $HOSTNAME "$LCTL get_param -n $MDMB_PARAM |
5315                 head -1" $NEW_MAX_DIRTY_MB
5316         MAX_DIRTY_MB=$($LCTL get_param -n $MDMB_PARAM | head -1)
5317         echo "$MAX_DIRTY_MB"
5318         [ $MAX_DIRTY_MB = $NEW_MAX_DIRTY_MB ] ||
5319                 error "error while apply max_dirty_mb"
5320
5321         echo "Check the value is stored after remount"
5322         stopall
5323         setupall
5324         wait_update $HOSTNAME "$LCTL get_param -n $MDMB_PARAM |
5325                 head -1" $NEW_MAX_DIRTY_MB
5326         MAX_DIRTY_MB=$($LCTL get_param -n $MDMB_PARAM | head -1)
5327         [ $MAX_DIRTY_MB = $NEW_MAX_DIRTY_MB ] ||
5328                 error "max_dirty_mb is not saved after remount"
5329
5330         echo "Change OST params"
5331         CLIENT_PARAM="obdfilter.*.client_cache_count"
5332         local CLIENT_CACHE_COUNT
5333         CLIENT_CACHE_COUNT=$(do_facet ost1 $LCTL get_param -n $CLIENT_PARAM |
5334                 head -1)
5335         echo "client_cache_count: $CLIENT_CACHE_COUNT"
5336         NEW_CLIENT_CACHE_COUNT=$((CLIENT_CACHE_COUNT+CLIENT_CACHE_COUNT))
5337         echo "new_client_cache_count: $NEW_CLIENT_CACHE_COUNT"
5338         do_facet mgs $LCTL set_param -P $CLIENT_PARAM=$NEW_CLIENT_CACHE_COUNT
5339         wait_update $(facet_host ost1) "$LCTL get_param -n $CLIENT_PARAM |
5340                 head -1" $NEW_CLIENT_CACHE_COUNT
5341         CLIENT_CACHE_COUNT=$(do_facet ost1 $LCTL get_param -n $CLIENT_PARAM |
5342                 head -1)
5343         echo "$CLIENT_CACHE_COUNT"
5344         [ $CLIENT_CACHE_COUNT = $NEW_CLIENT_CACHE_COUNT ] ||
5345                 error "error while apply client_cache_count"
5346
5347         echo "Check the value is stored after remount"
5348         stopall
5349         setupall
5350         wait_update $(facet_host ost1) "$LCTL get_param -n $CLIENT_PARAM |
5351                 head -1" $NEW_CLIENT_CACHE_COUNT
5352         CLIENT_CACHE_COUNT=$(do_facet ost1 $LCTL get_param -n $CLIENT_PARAM |
5353                 head -1)
5354         echo "$CLIENT_CACHE_COUNT"
5355         [ $CLIENT_CACHE_COUNT = $NEW_CLIENT_CACHE_COUNT ] ||
5356                 error "client_cache_count is not saved after remount"
5357         stopall
5358 }
5359 run_test 76a "set permanent params set_param -P"
5360
5361 test_76b() { # LU-4783
5362         [[ $(lustre_version_code mgs) -ge $(version_code 2.5.57) ]] ||
5363                 { skip "Need MGS version at least 2.5.57" && return 0; }
5364         stopall
5365         setupall
5366         do_facet mgs $LCTL get_param mgs.MGS.live.params ||
5367                 error "start params log failed"
5368         stopall
5369 }
5370 run_test 76b "verify params log setup correctly"
5371
5372 test_76c() {
5373         [[ $(lustre_version_code mgs) -ge $(version_code 2.8.54) ]] ||
5374                 { skip "Need MDS version at least 2.4.52" && return 0; }
5375         setupall
5376         local MASK_PARAM="mdd.*.changelog_mask"
5377         echo "Change changelog_mask"
5378         do_facet mgs $LCTL set_param -P $MASK_PARAM=-CLOSE ||
5379                 error "Can't change changlog_mask"
5380         wait_update $(facet_host mds) "$LCTL get_param -n $MASK_PARAM |
5381                 grep 'CLOSE'" ""
5382
5383         echo "Check the value is stored after mds remount"
5384         stop_mds || error "Failed to stop MDS"
5385         start_mds || error "Failed to start MDS"
5386         local CHANGELOG_MASK=$(do_facet mgs $LCTL get_param -n $MASK_PARAM)
5387         echo $CHANGELOG_MASK | grep CLOSE > /dev/null &&
5388                 error "changelog_mask is not changed"
5389
5390         stopall
5391 }
5392 run_test 76c "verify changelog_mask is applied with set_param -P"
5393
5394 test_76d() { #LU-9399
5395         setupall
5396
5397         local xattr_cache="llite.*.xattr_cache"
5398         local cmd="$LCTL get_param -n $xattr_cache | head -1"
5399         local new=$((($(eval $cmd) + 1) % 2))
5400
5401         echo "lctl set_param -P llite.*.xattr_cache=$new"
5402         do_facet mgs $LCTL set_param -P $xattr_cache=$new ||
5403                 error "Can't change xattr_cache"
5404         wait_update $HOSTNAME "$cmd" "$new"
5405
5406         echo "Check $xattr_cache on client $MOUNT"
5407         umount_client $MOUNT || error "umount $MOUNT failed"
5408         mount_client $MOUNT || error "mount $MOUNT failed"
5409         [ $(eval $cmd) -eq $new ] ||
5410                 error "$xattr_cache != $new on client $MOUNT"
5411
5412         echo "Check $xattr_cache on the new client $MOUNT2"
5413         mount_client $MOUNT2 || error "mount $MOUNT2 failed"
5414         [ $(eval $cmd) -eq $new ] ||
5415                 error "$xattr_cache != $new on client $MOUNT2"
5416         umount_client $MOUNT2 || error "umount $MOUNT2 failed"
5417
5418         stopall
5419 }
5420 run_test 76d "verify llite.*.xattr_cache can be set by 'set_param -P' correctly"
5421
5422 test_77() { # LU-3445
5423         local server_version=$(lustre_version_code $SINGLEMDS)
5424         [[ $server_version -ge $(version_code 2.8.55) ]] ||
5425                 { skip "Need MDS version 2.8.55+ "; return; }
5426
5427         if [[ -z "$fs2ost_DEV" || -z "$fs2mds_DEV" ]]; then
5428                 is_blkdev $SINGLEMDS $(mdsdevname ${SINGLEMDS//mds/}) &&
5429                 skip_env "mixed loopback and real device not working" && return
5430         fi
5431
5432         local fs2mdsdev=$(mdsdevname 1_2)
5433         local fs2ostdev=$(ostdevname 1_2)
5434         local fs2mdsvdev=$(mdsvdevname 1_2)
5435         local fs2ostvdev=$(ostvdevname 1_2)
5436         local fsname=test1234
5437         local mgsnid
5438         local failnid="$(h2nettype 1.2.3.4),$(h2nettype 4.3.2.1)"
5439
5440         combined_mgs_mds || stop_mgs || error "stopping MGS service failed"
5441
5442         add fs2mds $(mkfs_opts mds1 $fs2mdsdev) --mgs --fsname=$fsname \
5443                 --reformat $fs2mdsdev $fs2mdsvdev || error "add fs2mds failed"
5444         start fs2mds $fs2mdsdev $MDS_MOUNT_OPTS && trap cleanup_fs2 EXIT INT ||
5445                 error "start fs2mds failed"
5446
5447         mgsnid=$(do_facet fs2mds $LCTL list_nids | xargs | tr ' ' ,)
5448         mgsnid="0.0.0.0@tcp,$mgsnid,$mgsnid:$mgsnid"
5449
5450         add fs2ost --mgsnode=$mgsnid $(mkfs_opts ost1 $fs2ostdev) \
5451                 --failnode=$failnid --fsname=$fsname \
5452                 --reformat $fs2ostdev $fs2ostvdev ||
5453                         error "add fs2ost failed"
5454         start fs2ost $fs2ostdev $OST_MOUNT_OPTS || error "start fs2ost failed"
5455
5456         mkdir -p $MOUNT2 || error "mkdir $MOUNT2 failed"
5457         $MOUNT_CMD $mgsnid:/$fsname $MOUNT2 || error "mount $MOUNT2 failed"
5458         DIR=$MOUNT2 MOUNT=$MOUNT2 check_mount || error "check $MOUNT2 failed"
5459         cleanup_fs2
5460 }
5461 run_test 77 "comma-separated MGS NIDs and failover node NIDs"
5462
5463 test_78() {
5464         [[ $(facet_fstype $SINGLEMDS) != ldiskfs ||
5465            $(facet_fstype ost1) != ldiskfs ]] &&
5466                 skip "ldiskfs only test" && return
5467
5468         # reformat the Lustre filesystem with a smaller size
5469         local saved_MDSCOUNT=$MDSCOUNT
5470         local saved_MDSSIZE=$MDSSIZE
5471         local saved_OSTCOUNT=$OSTCOUNT
5472         local saved_OSTSIZE=$OSTSIZE
5473         MDSCOUNT=1
5474         OSTCOUNT=1
5475         MDSSIZE=$((MDSSIZE - 20000))
5476         OSTSIZE=$((OSTSIZE - 20000))
5477         reformat || error "(1) reformat Lustre filesystem failed"
5478         MDSSIZE=$saved_MDSSIZE
5479         OSTSIZE=$saved_OSTSIZE
5480
5481         # mount the Lustre filesystem
5482         setup_noconfig || error "(2) setup Lustre filesystem failed"
5483
5484         # create some files
5485         log "create test files"
5486         local i
5487         local file
5488         local num_files=100
5489
5490         mkdir $MOUNT/$tdir || error "(3) mkdir $MOUNT/$tdir failed"
5491         $LFS df; $LFS df -i
5492         for i in $(seq $num_files); do
5493                 file=$MOUNT/$tdir/$tfile-$i
5494                 dd if=/dev/urandom of=$file count=1 bs=1M || {
5495                         $LCTL get_param osc.*.cur*grant*
5496                         $LFS df; $LFS df -i;
5497                         # stop creating files if there is no more space
5498                         if [ ! -e $file ]; then
5499                                 num_files=$((i - 1))
5500                                 break
5501                         fi
5502
5503                         $LFS getstripe -v $file
5504                         local ost_idx=$(LFS getstripe -i $file)
5505                         do_facet ost$((ost_idx + 1)) \
5506                                 $LCTL get_param obdfilter.*.*grant*
5507                         error "(4) create $file failed"
5508                 }
5509         done
5510
5511         # unmount the Lustre filesystem
5512         cleanup || error "(5) cleanup Lustre filesystem failed"
5513
5514         # run e2fsck on the MDT and OST devices
5515         local mds_host=$(facet_active_host $SINGLEMDS)
5516         local ost_host=$(facet_active_host ost1)
5517         local mds_dev=$(mdsdevname ${SINGLEMDS//mds/})
5518         local ost_dev=$(ostdevname 1)
5519
5520         run_e2fsck $mds_host $mds_dev "-y"
5521         run_e2fsck $ost_host $ost_dev "-y"
5522
5523         # get the original block count of the MDT and OST filesystems
5524         local mds_orig_blks=$(get_block_count $SINGLEMDS $mds_dev)
5525         local ost_orig_blks=$(get_block_count ost1 $ost_dev)
5526
5527         # expand the MDT and OST filesystems to the device size
5528         run_resize2fs $SINGLEMDS $mds_dev "" || error "expand $SINGLEMDS failed"
5529         run_resize2fs ost1 $ost_dev "" || error "expand ost1 failed"
5530
5531         # run e2fsck on the MDT and OST devices again
5532         run_e2fsck $mds_host $mds_dev "-y"
5533         run_e2fsck $ost_host $ost_dev "-y"
5534
5535         # mount the Lustre filesystem
5536         setup
5537
5538         # check the files
5539         log "check files after expanding the MDT and OST filesystems"
5540         for i in $(seq $num_files); do
5541                 file=$MOUNT/$tdir/$tfile-$i
5542                 $CHECKSTAT -t file -s 1048576 $file ||
5543                         error "(6) checkstat $file failed"
5544         done
5545
5546         # create more files
5547         log "create more files after expanding the MDT and OST filesystems"
5548         for i in $(seq $((num_files + 1)) $((num_files + 10))); do
5549                 file=$MOUNT/$tdir/$tfile-$i
5550                 dd if=/dev/urandom of=$file count=1 bs=1M ||
5551                         error "(7) create $file failed"
5552         done
5553
5554         # unmount the Lustre filesystem
5555         cleanup || error "(8) cleanup Lustre filesystem failed"
5556
5557         # run e2fsck on the MDT and OST devices
5558         run_e2fsck $mds_host $mds_dev "-y"
5559         run_e2fsck $ost_host $ost_dev "-y"
5560
5561         # get the maximum block count of the MDT and OST filesystems
5562         local mds_max_blks=$(get_block_count $SINGLEMDS $mds_dev)
5563         local ost_max_blks=$(get_block_count ost1 $ost_dev)
5564
5565         # get the minimum block count of the MDT and OST filesystems
5566         local mds_min_blks=$(run_resize2fs $SINGLEMDS $mds_dev "" "-P" 2>&1 |
5567                                 grep minimum | sed -e 's/^.*filesystem: //g')
5568         local ost_min_blks=$(run_resize2fs ost1 $ost_dev "" "-P" 2>&1 |
5569                                 grep minimum | sed -e 's/^.*filesystem: //g')
5570
5571         # shrink the MDT and OST filesystems to a smaller size
5572         local shrunk=false
5573         local new_blks
5574         local base_blks
5575         if [[ $mds_max_blks -gt $mds_min_blks &&
5576               $mds_max_blks -gt $mds_orig_blks ]]; then
5577                 [[ $mds_orig_blks -gt $mds_min_blks ]] &&
5578                         base_blks=$mds_orig_blks || base_blks=$mds_min_blks
5579                 new_blks=$(( (mds_max_blks - base_blks) / 2 + base_blks ))
5580                 run_resize2fs $SINGLEMDS $mds_dev $new_blks ||
5581                         error "shrink $SINGLEMDS to $new_blks failed"
5582                 shrunk=true
5583         fi
5584
5585         if [[ $ost_max_blks -gt $ost_min_blks &&
5586               $ost_max_blks -gt $ost_orig_blks ]]; then
5587                 [[ $ost_orig_blks -gt $ost_min_blks ]] &&
5588                         base_blks=$ost_orig_blks || base_blks=$ost_min_blks
5589                 new_blks=$(( (ost_max_blks - base_blks) / 2 + base_blks ))
5590                 run_resize2fs ost1 $ost_dev $new_blks ||
5591                         error "shrink ost1 to $new_blks failed"
5592                 shrunk=true
5593         fi
5594
5595         # check whether the MDT or OST filesystem was shrunk or not
5596         if ! $shrunk; then
5597                 combined_mgs_mds || stop_mgs || error "(9) stop mgs failed"
5598                 reformat || error "(10) reformat Lustre filesystem failed"
5599                 return 0
5600         fi
5601
5602         # run e2fsck on the MDT and OST devices again
5603         run_e2fsck $mds_host $mds_dev "-y"
5604         run_e2fsck $ost_host $ost_dev "-y"
5605
5606         # mount the Lustre filesystem again
5607         setup
5608
5609         # check the files
5610         log "check files after shrinking the MDT and OST filesystems"
5611         for i in $(seq $((num_files + 10))); do
5612                 file=$MOUNT/$tdir/$tfile-$i
5613                 $CHECKSTAT -t file -s 1048576 $file ||
5614                         error "(11) checkstat $file failed"
5615         done
5616
5617         # unmount and reformat the Lustre filesystem
5618         cleanup || error "(12) cleanup Lustre filesystem failed"
5619         combined_mgs_mds || stop_mgs || error "(13) stop mgs failed"
5620
5621         MDSCOUNT=$saved_MDSCOUNT
5622         OSTCOUNT=$saved_OSTCOUNT
5623         reformat || error "(14) reformat Lustre filesystem failed"
5624 }
5625 run_test 78 "run resize2fs on MDT and OST filesystems"
5626
5627 test_79() { # LU-4227
5628         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.5.59) ]] ||
5629                 { skip "Need MDS version at least 2.5.59"; return 0; }
5630
5631         local mdsdev1=$(mdsdevname 1)
5632         local mdsvdev1=$(mdsvdevname 1)
5633         local mdsdev2=$(mdsdevname 2)
5634         local mdsvdev2=$(mdsvdevname 2)
5635         local ostdev1=$(ostdevname 1)
5636         local ostvdev1=$(ostvdevname 1)
5637         local opts_mds1="$(mkfs_opts mds1 $mdsdev1) --reformat"
5638         local opts_mds2="$(mkfs_opts mds2 $mdsdev2) --reformat"
5639         local opts_ost1="$(mkfs_opts ost1 $ostdev1) --reformat"
5640         local mgsnode_opt
5641
5642         # remove --mgs/--mgsnode from mkfs.lustre options
5643         opts_mds1=$(echo $opts_mds1 | sed -e "s/--mgs//")
5644
5645         mgsnode_opt=$(echo $opts_mds2 |
5646                 awk '{ for ( i = 1; i < NF; i++ )
5647                         if ( $i ~ "--mgsnode" ) { print $i; break } }')
5648         [ -n $mgsnode_opt ] &&
5649                 opts_mds2=$(echo $opts_mds2 | sed -e "s/$mgsnode_opt//")
5650
5651         mgsnode_opt=$(echo $opts_ost1 |
5652                 awk '{ for ( i = 1; i < NF; i++ )
5653                         if ( $i ~ "--mgsnode" ) { print $i; break } }')
5654         [ -n $mgsnode_opt ] &&
5655                 opts_ost1=$(echo $opts_ost1 | sed -e "s/$mgsnode_opt//")
5656
5657         # -MGS, format a mdt without --mgs option
5658         add mds1 $opts_mds1 $mdsdev1 $mdsvdev1 &&
5659                 error "Must specify --mgs when formatting mdt combined with mgs"
5660
5661         # +MGS, format a mdt/ost without --mgsnode option
5662         add mds1 $(mkfs_opts mds1 $mdsdev1) --reformat $mdsdev1 $mdsvdev1 \
5663                 > /dev/null || error "start mds1 failed"
5664         add mds2 $opts_mds2 $mdsdev2 $mdsvdev2 &&
5665                 error "Must specify --mgsnode when formatting a mdt"
5666         add ost1 $opts_ost1 $ostdev1 $ostvdev2 &&
5667                 error "Must specify --mgsnode when formatting an ost"
5668
5669         reformat
5670 }
5671 run_test 79 "format MDT/OST without mgs option (should return errors)"
5672
5673 test_80() {
5674         start_mds || error "Failed to start MDT"
5675         start_ost || error "Failed to start OST1"
5676         uuid=$(do_facet ost1 $LCTL get_param -n mgc.*.uuid)
5677 #define OBD_FAIL_MGS_PAUSE_TARGET_CON       0x906
5678         do_facet ost1 "$LCTL set_param fail_val=10 fail_loc=0x906"
5679         do_facet mgs "$LCTL set_param fail_val=10 fail_loc=0x906"
5680         do_facet mgs "$LCTL set_param -n mgs/MGS/evict_client $uuid"
5681         sleep 30
5682         start_ost2 || error "Failed to start OST2"
5683
5684         do_facet ost1 "$LCTL set_param fail_loc=0"
5685         stopall
5686 }
5687 run_test 80 "mgc import reconnect race"
5688
5689 #Save the original values of $OSTCOUNT and $OSTINDEX$i.
5690 save_ostindex() {
5691         local new_ostcount=$1
5692         saved_ostcount=$OSTCOUNT
5693         OSTCOUNT=$new_ostcount
5694
5695         local i
5696         local index
5697         for i in $(seq $OSTCOUNT); do
5698                 index=OSTINDEX$i
5699                 eval saved_ostindex$i=${!index}
5700                 eval OSTINDEX$i=""
5701         done
5702 }
5703
5704 # Restore the original values of $OSTCOUNT and $OSTINDEX$i.
5705 restore_ostindex() {
5706         trap 0
5707
5708         local i
5709         local index
5710         for i in $(seq $OSTCOUNT); do
5711                 index=saved_ostindex$i
5712                 eval OSTINDEX$i=${!index}
5713         done
5714         OSTCOUNT=$saved_ostcount
5715
5716         formatall
5717 }
5718
5719 # The main purpose of this test is to ensure the OST_INDEX_LIST functions as
5720 # expected. This test uses OST_INDEX_LIST to format OSTs with a randomly
5721 # assigned index and ensures we can mount such a formatted file system
5722 test_81() { # LU-4665
5723         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.54) ]] ||
5724                 { skip "Need MDS version at least 2.6.54" && return; }
5725         [[ $OSTCOUNT -ge 3 ]] || { skip_env "needs >= 3 OSTs" && return; }
5726
5727         stopall
5728
5729         # Each time RANDOM is referenced, a random integer between 0 and 32767
5730         # is generated.
5731         local i
5732         local saved_ostindex1=$OSTINDEX1
5733         for i in 65535 $((RANDOM + 65536)); do
5734                 echo -e "\nFormat ost1 with --index=$i, should fail"
5735                 OSTINDEX1=$i
5736                 if add ost1 $(mkfs_opts ost1 $(ostdevname 1)) --reformat \
5737                    $(ostdevname 1) $(ostvdevname 1); then
5738                         OSTINDEX1=$saved_ostindex1
5739                         error "format ost1 with --index=$i should fail"
5740                 fi
5741         done
5742         OSTINDEX1=$saved_ostindex1
5743
5744         save_ostindex 3
5745
5746         # Format OSTs with random sparse indices.
5747         trap "restore_ostindex" EXIT
5748         echo -e "\nFormat $OSTCOUNT OSTs with sparse indices"
5749         OST_INDEX_LIST=[0,$((RANDOM * 2 % 65533 + 1)),65534] formatall
5750
5751         # Setup and check Lustre filesystem.
5752         start_mgsmds || error "start_mgsmds failed"
5753         for i in $(seq $OSTCOUNT); do
5754                 start ost$i $(ostdevname $i) $OST_MOUNT_OPTS ||
5755                         error "start ost$i failed"
5756         done
5757
5758         mount_client $MOUNT || error "mount client $MOUNT failed"
5759         check_mount || error "check client $MOUNT failed"
5760
5761         # Check max_easize.
5762         local max_easize=$($LCTL get_param -n llite.*.max_easize)
5763         [[ $max_easize -eq 128 ]] ||
5764                 error "max_easize is $max_easize, should be 128 bytes"
5765
5766         restore_ostindex
5767 }
5768 run_test 81 "sparse OST indexing"
5769
5770 # Here we exercise the stripe placement functionality on a file system that
5771 # has formatted the OST with a random index. With the file system the following
5772 # functionality is tested:
5773 #
5774 # 1. Creating a new file with a specific stripe layout.
5775 #
5776 # 2. Modifiy a existing empty file with a specific stripe layout.
5777 #
5778 # 3. Ensure we fail to set the stripe layout of a file that already has one.
5779 #
5780 # 4. If ost-index is defined we need to ensure it is the first entry in the
5781 #    ost index list returned by lfs getstripe.
5782 #
5783 # 5. Lastly ensure this functionality fails with directories.
5784 test_82a() { # LU-4665
5785         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.54) ]] ||
5786                 { skip "Need MDS version at least 2.6.54" && return; }
5787         [[ $OSTCOUNT -ge 3 ]] || { skip_env "needs >= 3 OSTs" && return; }
5788
5789         stopall
5790
5791         save_ostindex 3
5792
5793         # Format OSTs with random sparse indices.
5794         local i
5795         local index
5796         local ost_indices
5797         local LOV_V1_INSANE_STRIPE_COUNT=65532
5798         for i in $(seq $OSTCOUNT); do
5799                 index=$(((RANDOM * 2) % LOV_V1_INSANE_STRIPE_COUNT))
5800                 ost_indices+=" $index"
5801         done
5802         ost_indices=$(comma_list $ost_indices)
5803
5804         stack_trap "restore_ostindex" EXIT
5805         echo -e "\nFormat $OSTCOUNT OSTs with sparse indices $ost_indices"
5806         OST_INDEX_LIST=[$ost_indices] formatall
5807
5808         # Setup Lustre filesystem.
5809         start_mgsmds || error "start_mgsmds failed"
5810         for i in $(seq $OSTCOUNT); do
5811                 start ost$i $(ostdevname $i) $OST_MOUNT_OPTS ||
5812                         error "start ost$i failed"
5813         done
5814
5815         # Collect debug information - start of test
5816         do_nodes $(comma_list $(mdts_nodes)) \
5817                    $LCTL get_param osc.*.prealloc_*_id
5818
5819         mount_client $MOUNT || error "mount client $MOUNT failed"
5820         wait_osts_up
5821
5822         $LFS df $MOUNT || error "$LFS df $MOUNT failed"
5823         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
5824
5825         stack_trap "do_nodes $(comma_list $(mdts_nodes)) \
5826                    $LCTL get_param osc.*.prealloc_*_id" EXIT
5827
5828         # 1. If the file does not exist, new file will be created
5829         #    with specified OSTs.
5830         local file=$DIR/$tdir/$tfile-1
5831         local cmd="$SETSTRIPE -o $ost_indices $file"
5832         echo -e "\n$cmd"
5833         eval $cmd || error "$cmd failed"
5834         check_stripe_count $file $OSTCOUNT
5835         check_obdidx $file $ost_indices
5836         dd if=/dev/urandom of=$file count=1 bs=1M > /dev/null 2>&1 ||
5837                 error "write $file failed"
5838
5839         # 2. If the file already exists and is an empty file, the file
5840         #    will be attached with specified layout.
5841         file=$DIR/$tdir/$tfile-2
5842         mcreate $file || error "mcreate $file failed"
5843         cmd="$SETSTRIPE -o $ost_indices $file"
5844         echo -e "\n$cmd"
5845         eval $cmd || error "$cmd failed"
5846         dd if=/dev/urandom of=$file count=1 bs=1M > /dev/null 2>&1 ||
5847                 error "write $file failed"
5848         check_stripe_count $file $OSTCOUNT
5849         check_obdidx $file $ost_indices
5850
5851         # 3. If the file already has a valid layout attached, the command
5852         #    should fail with EBUSY.
5853         echo -e "\n$cmd"
5854         eval $cmd && error "stripe is already set on $file, $cmd should fail"
5855
5856         # 4. If [--stripe-index|-i <start_ost_idx>] is used, the index must
5857         #    be in the OST indices list.
5858         local start_ost_idx=${ost_indices##*,}
5859         file=$DIR/$tdir/$tfile-3
5860         cmd="$SETSTRIPE -o $ost_indices -i $start_ost_idx $file"
5861         echo -e "\n$cmd"
5862         eval $cmd || error "$cmd failed"
5863         check_stripe_count $file $OSTCOUNT
5864         check_obdidx $file $ost_indices
5865         check_start_ost_idx $file $start_ost_idx
5866
5867         file=$DIR/$tdir/$tfile-4
5868         cmd="$SETSTRIPE"
5869         cmd+=" -o $(exclude_items_from_list $ost_indices $start_ost_idx)"
5870         cmd+=" -i $start_ost_idx $file"
5871         echo -e "\n$cmd"
5872         eval $cmd && error "index $start_ost_idx should be in $ost_indices"
5873
5874         # 5. Specifying OST indices for directory should fail with ENOSUPP.
5875         local dir=$DIR/$tdir/$tdir
5876         mkdir $dir || error "mkdir $dir failed"
5877         cmd="$SETSTRIPE -o $ost_indices $dir"
5878         echo -e "\n$cmd"
5879         eval $cmd && error "$cmd should fail, specifying OST indices" \
5880                            "for directory is not supported"
5881
5882         restore_ostindex
5883 }
5884 run_test 82a "specify OSTs for file (succeed) or directory (fail)"
5885
5886 cleanup_82b() {
5887         trap 0
5888
5889         # Remove OSTs from a pool and destroy the pool.
5890         destroy_pool $ost_pool || true
5891
5892         if ! combined_mgs_mds ; then
5893                 umount_mgs_client
5894         fi
5895         restore_ostindex
5896 }
5897
5898 # Test 82b is run to ensure that if the user supplies a pool with a specific
5899 # stripe layout that it behaves proprerly. It should fail in the case that
5900 # the supplied OST index list points to OSTs not contained in the user
5901 # supplied pool.
5902 test_82b() { # LU-4665
5903         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.54) ]] ||
5904                 { skip "Need MDS version at least 2.6.54" && return; }
5905         [[ $OSTCOUNT -ge 4 ]] || { skip_env "needs >= 4 OSTs" && return; }
5906
5907         stopall
5908
5909         save_ostindex 4
5910
5911         # Format OSTs with random sparse indices.
5912         local i
5913         local index
5914         local ost_indices
5915         local LOV_V1_INSANE_STRIPE_COUNT=65532
5916         for i in $(seq $OSTCOUNT); do
5917                 index=$(((RANDOM * 2) % LOV_V1_INSANE_STRIPE_COUNT))
5918                 ost_indices+=" $index"
5919         done
5920         ost_indices=$(comma_list $ost_indices)
5921
5922         trap "restore_ostindex" EXIT
5923         echo -e "\nFormat $OSTCOUNT OSTs with sparse indices $ost_indices"
5924         OST_INDEX_LIST=[$ost_indices] formatall
5925
5926         # Setup Lustre filesystem.
5927         start_mgsmds || error "start_mgsmds failed"
5928         for i in $(seq $OSTCOUNT); do
5929                 start ost$i $(ostdevname $i) $OST_MOUNT_OPTS ||
5930                         error "start ost$i failed"
5931         done
5932
5933         mount_client $MOUNT || error "mount client $MOUNT failed"
5934         if ! combined_mgs_mds ; then
5935                 mount_mgs_client
5936         fi
5937
5938         wait_osts_up
5939         $LFS df $MOUNT || error "$LFS df $MOUNT failed"
5940         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
5941
5942         # Create a new pool and add OSTs into it.
5943         local ost_pool=$FSNAME.$TESTNAME
5944         create_pool $ost_pool || error "create OST pool $ost_pool failed"
5945
5946         trap - EXIT
5947         trap "cleanup_82b" EXIT
5948
5949         local ost_idx_in_list=${ost_indices##*,}
5950         local ost_idx_in_pool=$(exclude_items_from_list $ost_indices \
5951                                 $ost_idx_in_list)
5952
5953         local ost_targets="$FSNAME-OST["
5954         for i in ${ost_idx_in_pool//,/ }; do
5955                 ost_targets=$ost_targets$(printf "%04x," $i)
5956         done
5957         ost_targets="${ost_targets%,}]"
5958
5959         local ost_targets_uuid=$(for i in ${ost_idx_in_pool//,/ }; \
5960                                  do printf "$FSNAME-OST%04x_UUID\n" $i; done |
5961                                  sort -u | tr '\n' ' ')
5962
5963         local cmd="$LCTL pool_add $ost_pool $ost_targets"
5964         do_facet mgs $cmd || error "$cmd failed"
5965         wait_update $HOSTNAME "$LCTL get_param -n lov.$FSNAME-*.pools.$TESTNAME|
5966                                sort -u | tr '\n' ' ' " "$ost_targets_uuid" ||
5967                                         error "wait_update $ost_pool failed"
5968         wait_update_facet $SINGLEMDS "$LCTL pool_list $ost_pool | wc -l" 4 ||
5969                                 error "wait_update pool_list $ost_pool failed"
5970
5971         # If [--pool|-p <pool_name>] is set with [--ost-list|-o <ost_indices>],
5972         # then the OSTs must be the members of the pool.
5973         local file=$DIR/$tdir/$tfile
5974         cmd="$SETSTRIPE -p $ost_pool -o $ost_idx_in_list $file"
5975         echo -e "\n$cmd"
5976         eval $cmd && error "OST with index $ost_idx_in_list should be" \
5977                            "in OST pool $ost_pool"
5978
5979         # Only select OST $ost_idx_in_list from $ost_pool for file.
5980         ost_idx_in_list=${ost_idx_in_pool#*,}
5981         cmd="$SETSTRIPE -p $ost_pool -o $ost_idx_in_list $file"
5982         echo -e "\n$cmd"
5983         eval $cmd || error "$cmd failed"
5984         cmd="$GETSTRIPE $file"
5985         echo -e "\n$cmd"
5986         eval $cmd || error "$cmd failed"
5987         check_stripe_count $file 2
5988         check_obdidx $file $ost_idx_in_list
5989         dd if=/dev/urandom of=$file count=1 bs=1M > /dev/null 2>&1 ||
5990                 error "write $file failed"
5991
5992         cleanup_82b
5993 }
5994 run_test 82b "specify OSTs for file with --pool and --ost-list options"
5995
5996 test_83() {
5997         [[ $(lustre_version_code ost1) -ge $(version_code 2.6.91) ]] ||
5998                 { skip "Need OST version at least 2.6.91" && return 0; }
5999         if [ $(facet_fstype ost1) != ldiskfs ]; then
6000                 skip "ldiskfs only test"
6001                 return
6002         fi
6003
6004         local dev
6005         local ostmnt
6006         local fstype
6007         local mnt_opts
6008
6009         dev=$(ostdevname 1)
6010         ostmnt=$(facet_mntpt ost1)
6011         fstype=$(facet_fstype ost1)
6012
6013         # Mount the OST as an ldiskfs filesystem.
6014         log "mount the OST $dev as a $fstype filesystem"
6015         add ost1 $(mkfs_opts ost1 $dev) $FSTYPE_OPT \
6016                 --reformat $dev > /dev/null ||
6017                 error "format ost1 error"
6018
6019         if ! test -b $dev; then
6020                 mnt_opts=$(csa_add "$OST_MOUNT_OPTS" -o loop)
6021         fi
6022         echo "mnt_opts $mnt_opts"
6023         do_facet ost1 mount -t $fstype $dev \
6024                 $ostmnt $mnt_opts
6025         # Run llverfs on the mounted ldiskfs filesystem.
6026         # It is needed to get ENOSPACE.
6027         log "run llverfs in partial mode on the OST $fstype $ostmnt"
6028         do_rpc_nodes $(facet_host ost1) run_llverfs $ostmnt -vpl \
6029                 "no" || error "run_llverfs error on $fstype"
6030
6031         # Unmount the OST.
6032         log "unmount the OST $dev"
6033         stop ost1
6034
6035         # Delete file IO_scrub. Later osd_scrub_setup will try to
6036         # create "IO_scrub" but will get ENOSPACE.
6037         writeconf_all
6038         echo "start ost1 service on `facet_active_host ost1`"
6039         start ost1 `ostdevname 1` $OST_MOUNT_OPTS
6040
6041         local err
6042         err=$(do_facet ost1 dmesg | grep "VFS: Busy inodes after unmount of")
6043         echo "string err $err"
6044         [ -z "$err" ] || error $err
6045         reformat
6046 }
6047 run_test 83 "ENOSPACE on OST doesn't cause message VFS: \
6048 Busy inodes after unmount ..."
6049
6050 test_84() {
6051         local facet=$SINGLEMDS
6052         local num=$(echo $facet | tr -d "mds")
6053         local dev=$(mdsdevname $num)
6054         local time_min=$(recovery_time_min)
6055         local recovery_duration
6056         local completed_clients
6057         local correct_clients
6058         local wrap_up=5
6059
6060         echo "start mds service on $(facet_active_host $facet)"
6061         start_mds \
6062         "-o recovery_time_hard=$time_min,recovery_time_soft=$time_min" $@ ||
6063                 error "start MDS failed"
6064
6065         start_ost || error "start OST0000 failed"
6066         start_ost2 || error "start OST0001 failed"
6067
6068         echo "recovery_time=$time_min, timeout=$TIMEOUT, wrap_up=$wrap_up"
6069
6070         mount_client $MOUNT1 || error "mount $MOUNT1 failed"
6071         mount_client $MOUNT2 || error "mount $MOUNT2 failed"
6072         # make sure new superblock labels are sync'd before disabling writes
6073         sync_all_data
6074         sleep 5
6075
6076         replay_barrier $SINGLEMDS
6077         createmany -o $DIR1/$tfile-%d 1000
6078
6079         # We need to catch the end of recovery window to extend it.
6080         # Skip 5 requests and add delay to request handling.
6081         #define OBD_FAIL_TGT_REPLAY_DELAY  0x709 | FAIL_SKIP
6082         do_facet $SINGLEMDS "lctl set_param fail_loc=0x20000709 fail_val=5"
6083
6084         facet_failover --fsck $SINGLEMDS || error "failover: $?"
6085         client_up
6086
6087         echo "recovery status"
6088         do_facet $SINGLEMDS \
6089                 "$LCTL get_param -n mdt.$FSNAME-MDT0000.recovery_status"
6090
6091         recovery_duration=$(do_facet $SINGLEMDS \
6092                 "$LCTL get_param -n mdt.$FSNAME-MDT0000.recovery_status" |
6093                 awk '/recovery_duration/ { print $2 }')
6094         (( $recovery_duration > $time_min + $wrap_up )) &&
6095                 error "recovery_duration > recovery_time_hard + wrap up"
6096         completed_clients=$(do_facet $SINGLEMDS \
6097                 "$LCTL get_param -n mdt.$FSNAME-MDT0000.recovery_status" |
6098                 awk '/completed_clients/ { print $2 }')
6099
6100         correct_clients="$MDSCOUNT/$((MDSCOUNT+1))"
6101         [ "$completed_clients" = "${correct_clients}" ] ||
6102                 error "$completed_clients != $correct_clients"
6103
6104         do_facet $SINGLEMDS "lctl set_param fail_loc=0"
6105         umount_client $MOUNT1
6106         umount_client $MOUNT2
6107
6108         stop_ost
6109         stop_ost2
6110         stop_mds
6111 }
6112 run_test 84 "check recovery_hard_time"
6113
6114 test_85() {
6115         [[ $(lustre_version_code ost1) -ge $(version_code 2.7.55) ]] ||
6116                 { skip "Need OST version at least 2.7.55" && return 0; }
6117 ##define OBD_FAIL_OSD_OST_EA_FID_SET 0x197
6118         do_facet ost1 "lctl set_param fail_loc=0x197"
6119         start_ost
6120         stop_ost
6121 }
6122 run_test 85 "osd_ost init: fail ea_fid_set"
6123
6124 cleanup_86() {
6125         trap 0
6126
6127         # ost1 has already registered to the MGS before the reformat.
6128         # So after reformatting it with option "-G", it could not be
6129         # mounted to the MGS. Cleanup the system for subsequent tests.
6130         reformat_and_config
6131 }
6132
6133 test_86() {
6134         local server_version=$(lustre_version_code $SINGLEMDS)
6135         [ "$(facet_fstype ost1)" = "zfs" ] &&
6136                 skip "LU-6442: no such mkfs params for ZFS OSTs" && return
6137         [[ $server_version -ge $(version_code 2.7.56) ]] ||
6138                 { skip "Need server version newer than 2.7.55"; return 0; }
6139
6140         local OST_OPTS="$(mkfs_opts ost1 $(ostdevname 1)) \
6141                 --reformat $(ostdevname 1) $(ostvdevname 1)"
6142
6143         local NEWSIZE=1024
6144         local OLDSIZE=$(do_facet ost1 "$DEBUGFS -c -R stats $(ostdevname 1)" |
6145                 awk '/Flex block group size: / { print $NF; exit; }')
6146
6147         local opts=OST_OPTS
6148         if [[ ${!opts} != *mkfsoptions* ]]; then
6149                 eval opts=\"${!opts} \
6150                         --mkfsoptions='\\\"-O flex_bg -G $NEWSIZE\\\"'\"
6151         else
6152                 val=${!opts//--mkfsoptions=\\\"/ \
6153                         --mkfsoptions=\\\"-O flex_bg -G $NEWSIZE }
6154                 eval opts='${val}'
6155         fi
6156
6157         echo "params: $opts"
6158
6159         trap cleanup_86 EXIT ERR
6160
6161         stopall
6162         add ost1 $opts || error "add ost1 failed with new params"
6163
6164         local FOUNDSIZE=$(do_facet ost1 "$DEBUGFS -c -R stats $(ostdevname 1)" |
6165                 awk '/Flex block group size: / { print $NF; exit; }')
6166
6167         [[ $FOUNDSIZE == $NEWSIZE ]] ||
6168                 error "Flex block group size: $FOUNDSIZE, expected: $NEWSIZE"
6169
6170         cleanup_86
6171 }
6172 run_test 86 "Replacing mkfs.lustre -G option"
6173
6174 test_87() { #LU-6544
6175         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.9.51) ]] ||
6176                 { skip "Need MDS version at least 2.9.51" && return; }
6177         [[ $(facet_fstype $SINGLEMDS) != ldiskfs ]] &&
6178                 { skip "ldiskfs only test" && return; }
6179         [[ $OSTCOUNT -gt 59 ]] &&
6180                 { skip "Ignore wide striping situation" && return; }
6181
6182         local mdsdev=$(mdsdevname 1)
6183         local mdsvdev=$(mdsvdevname 1)
6184         local file=$DIR/$tfile
6185         local mntpt=$(facet_mntpt $SINGLEMDS)
6186         local used_xattr_blk=0
6187         local inode_size=${1:-1024}
6188         local left_size=0
6189         local xtest="trusted.test"
6190         local value
6191         local orig
6192         local i
6193         local stripe_cnt=$(($OSTCOUNT + 2))
6194
6195         #Please see ldiskfs_make_lustre() for MDT inode size calculation
6196         if [ $stripe_cnt -gt 16 ]; then
6197                 inode_size=2048
6198         fi
6199         left_size=$(expr $inode_size - \
6200                         156 - \
6201                         32 - \
6202                         32 - 40 \* 3 - 32 \* 3 - $stripe_cnt \* 24 - 16 - 3 -  \
6203                         24 - 16 - 3 - \
6204                         24 - 18 - $(expr length $tfile) - 16 - 4)
6205         if [ $left_size -le 0 ]; then
6206                 echo "No space($left_size) is expected in inode."
6207                 echo "Try 1-byte xattr instead to verify this."
6208                 left_size=1
6209         else
6210                 echo "Estimate: at most $left_size-byte space left in inode."
6211         fi
6212
6213         unload_modules
6214         reformat
6215
6216         add mds1 $(mkfs_opts mds1 ${mdsdev}) --stripe-count-hint=$stripe_cnt \
6217                 --reformat $mdsdev $mdsvdev || error "add mds1 failed"
6218         start_mdt 1 > /dev/null || error "start mdt1 failed"
6219         for i in $(seq $OSTCOUNT); do
6220                 start ost$i $(ostdevname $i) $OST_MOUNT_OPTS > /dev/null ||
6221                         error "start ost$i failed"
6222         done
6223         mount_client $MOUNT > /dev/null || error "mount client $MOUNT failed"
6224         check_mount || error "check client $MOUNT failed"
6225
6226         #set xattr
6227         $SETSTRIPE -E 1M -c 1 -E 64M -c 1 -E -1 -c -1 $file ||
6228                 error "Create file with 3 components failed"
6229         $TRUNCATE $file $((1024*1024*64+1)) || error "truncate file failed"
6230         i=$($GETSTRIPE -I3 -c $file) || error "get 3rd stripe count failed"
6231         if [ $i -ne $OSTCOUNT ]; then
6232                 left_size=$(expr $left_size + $(expr $OSTCOUNT - $i) \* 24)
6233                 echo -n "Since only $i out $OSTCOUNT OSTs are used, "
6234                 echo -n "the expected left space is changed to "
6235                 echo "$left_size bytes at most."
6236         fi
6237         value=$(generate_string $left_size)
6238         setfattr -n $xtest -v $value $file
6239         orig=$(get_xattr_value $xtest $file)
6240         [[ "$orig" != "$value" ]] && error "$xtest changed"
6241
6242         #Verify if inode has some expected space left
6243         umount $MOUNT > /dev/null || error "umount $MOUNT failed"
6244         stop_mdt 1 > /dev/null || error "stop mdt1 failed"
6245         mount_ldiskfs $SINGLEMDS || error "mount -t ldiskfs $SINGLEMDS failed"
6246
6247         do_facet $SINGLEMDS ls -sal $mntpt/ROOT/$tfile
6248         used_xattr_blk=$(do_facet $SINGLEMDS ls -s $mntpt/ROOT/$tfile |
6249                         awk '{ print $1 }')
6250         [[ $used_xattr_blk -eq 0 ]] &&
6251                 error "Please check MDS inode size calculation: \
6252                        more than $left_size-byte space left in inode."
6253         echo "Verified: at most $left_size-byte space left in inode."
6254
6255         stopall
6256 }
6257 run_test 87 "check if MDT inode can hold EAs with N stripes properly"
6258
6259 test_88() {
6260         [ "$(facet_fstype mds1)" == "zfs" ] &&
6261                 skip "LU-6662: no implementation for ZFS" && return
6262
6263         load_modules
6264
6265         add mds1 $(mkfs_opts mds1 $(mdsdevname 1)) \
6266                 --reformat $(mdsdevname 1) || error "add mds1 failed"
6267
6268         do_facet mds1 "$TUNEFS $(mdsdevname 1) |
6269                 grep -e \".*opts:.*errors=remount-ro.*\"" ||
6270                 error "default mount options is missing"
6271
6272         add mds1 $(mkfs_opts mds1 $(mdsdevname 1)) \
6273                 --mountfsoptions="user_xattr,errors=panic" \
6274                 --reformat $(mdsdevname 1) || error "add mds1 failed"
6275
6276         do_facet mds1 "$TUNEFS $(mdsdevname 1) |
6277                 grep -e \".*opts:.*errors=panic.*\"" ||
6278                 error "user can't override default mount options"
6279 }
6280 run_test 88 "check the default mount options can be overridden"
6281
6282 test_89() { # LU-7131
6283         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.9.54) ]] ||
6284                 { skip "Need MDT version at least 2.9.54" && return 0; }
6285
6286         local key=failover.node
6287         local val1=192.0.2.254@tcp0 # Reserved IPs, see RFC 5735
6288         local val2=192.0.2.255@tcp0
6289         local mdsdev=$(mdsdevname 1)
6290         local params
6291
6292         stopall
6293
6294         [ $(facet_fstype mds1) == zfs ] && import_zpool mds1
6295         # Check that parameters are added correctly
6296         echo "tunefs --param $key=$val1"
6297         do_facet mds "$TUNEFS --param $key=$val1 $mdsdev >/dev/null" ||
6298                 error "tunefs --param $key=$val1 failed"
6299         params=$(do_facet mds $TUNEFS --dryrun $mdsdev) ||
6300                 error "tunefs --dryrun failed"
6301         params=${params##*Parameters:}
6302         params=${params%%exiting*}
6303         [ $(echo $params | tr ' ' '\n' | grep -c $key=$val1) = "1" ] ||
6304                 error "on-disk parameter not added correctly via tunefs"
6305
6306         # Check that parameters replace existing instances when added
6307         echo "tunefs --param $key=$val2"
6308         do_facet mds "$TUNEFS --param $key=$val2 $mdsdev >/dev/null" ||
6309                 error "tunefs --param $key=$val2 failed"
6310         params=$(do_facet mds $TUNEFS --dryrun $mdsdev) ||
6311                 error "tunefs --dryrun failed"
6312         params=${params##*Parameters:}
6313         params=${params%%exiting*}
6314         [ $(echo $params | tr ' ' '\n' | grep -c $key=) = "1" ] ||
6315                 error "on-disk parameter not replaced via tunefs"
6316         [ $(echo $params | tr ' ' '\n' | grep -c $key=$val2) = "1" ] ||
6317                 error "on-disk parameter not replaced correctly via tunefs"
6318
6319         # Check that a parameter is erased properly
6320         echo "tunefs --erase-param $key"
6321         do_facet mds "$TUNEFS --erase-param $key $mdsdev >/dev/null" ||
6322                 error "tunefs --erase-param $key failed"
6323         params=$(do_facet mds $TUNEFS --dryrun $mdsdev) ||
6324                 error "tunefs --dryrun failed"
6325         params=${params##*Parameters:}
6326         params=${params%%exiting*}
6327         [ $(echo $params | tr ' ' '\n' | grep -c $key=) = "0" ] ||
6328                 error "on-disk parameter not erased correctly via tunefs"
6329
6330         # Check that all the parameters are erased
6331         echo "tunefs --erase-params"
6332         do_facet mds "$TUNEFS --erase-params $mdsdev >/dev/null" ||
6333                 error "tunefs --erase-params failed"
6334         params=$(do_facet mds $TUNEFS --dryrun $mdsdev) ||
6335                 error "tunefs --dryrun failed"
6336         params=${params##*Parameters:}
6337         params=${params%%exiting*}
6338         [ -z $params ] ||
6339                 error "all on-disk parameters not erased correctly via tunefs"
6340
6341         # Check the order of options --erase-params and --param
6342         echo "tunefs --param $key=$val1 --erase-params"
6343         do_facet mds \
6344                 "$TUNEFS --param $key=$val1 --erase-params $mdsdev >/dev/null"||
6345                 error "tunefs --param $key=$val1 --erase-params failed"
6346         params=$(do_facet mds $TUNEFS --dryrun $mdsdev) ||
6347                 error "tunefs --dryrun failed"
6348         params=${params##*Parameters:}
6349         params=${params%%exiting*}
6350         [ $(echo $params | tr ' ' '\n') == "$key=$val1" ] ||
6351                 error "on-disk param not added correctly with --erase-params"
6352
6353         reformat
6354 }
6355 run_test 89 "check tunefs --param and --erase-param{s} options"
6356
6357 # $1 test directory
6358 # $2 (optional) value of max_mod_rpcs_in_flight to set
6359 check_max_mod_rpcs_in_flight() {
6360         local dir="$1"
6361         local mmr="$2"
6362         local idx
6363         local facet
6364         local tmp
6365         local i
6366
6367         idx=$(printf "%04x" $($LFS getdirstripe -i $dir))
6368         facet="mds$((0x$idx + 1))"
6369
6370         if [ -z "$mmr" ]; then
6371                 # get value of max_mod_rcps_in_flight
6372                 mmr=$($LCTL get_param -n \
6373                         mdc.$FSNAME-MDT$idx-mdc-*.max_mod_rpcs_in_flight) ||
6374                         error "Unable to get max_mod_rpcs_in_flight"
6375                 echo "max_mod_rcps_in_flight is $mmr"
6376         else
6377                 # set value of max_mod_rpcs_in_flight
6378                 $LCTL set_param \
6379                     mdc.$FSNAME-MDT$idx-mdc-*.max_mod_rpcs_in_flight=$mmr ||
6380                         error "Unable to set max_mod_rpcs_in_flight to $mmr"
6381                 echo "max_mod_rpcs_in_flight set to $mmr"
6382         fi
6383
6384         # create mmr+1 files
6385         echo "creating $((mmr + 1)) files ..."
6386         umask 0022
6387         for i in $(seq $((mmr + 1))); do
6388                 touch $dir/file-$i
6389         done
6390
6391         ### part 1 ###
6392
6393         # consumes mmr-1 modify RPC slots
6394         #define OBD_FAIL_MDS_REINT_MULTI_NET     0x159
6395         # drop requests on MDT so that RPC slots are consumed
6396         # during all the request resend interval
6397         do_facet $facet "$LCTL set_param fail_loc=0x159"
6398         echo "launch $((mmr - 1)) chmod in parallel ..."
6399         for i in $(seq $((mmr - 1))); do
6400                 chmod 0600 $dir/file-$i &
6401         done
6402         sleep 1
6403
6404         # send one additional modify RPC
6405         do_facet $facet "$LCTL set_param fail_loc=0"
6406         echo "launch 1 additional chmod in parallel ..."
6407         chmod 0600 $dir/file-$mmr &
6408         sleep 1
6409
6410         # check this additional modify RPC get a modify RPC slot
6411         # and succeed its operation
6412         checkstat -vp 0600 $dir/file-$mmr ||
6413                 error "Unable to send $mmr modify RPCs in parallel"
6414         wait
6415
6416         ### part 2 ###
6417
6418         # consumes mmr modify RPC slots
6419         #define OBD_FAIL_MDS_REINT_MULTI_NET     0x159
6420         # drop requests on MDT so that RPC slots are consumed
6421         # during all the request resend interval
6422         do_facet $facet "$LCTL set_param fail_loc=0x159"
6423         echo "launch $mmr chmod in parallel ..."
6424         for i in $(seq $mmr); do
6425                 chmod 0666 $dir/file-$i &
6426         done
6427         sleep 1
6428
6429         # send one additional modify RPC
6430         do_facet $facet "$LCTL set_param fail_loc=0"
6431         echo "launch 1 additional chmod in parallel ..."
6432         chmod 0666 $dir/file-$((mmr + 1)) &
6433         sleep 1
6434
6435         # check this additional modify RPC blocked getting a modify RPC slot
6436         checkstat -vp 0644 $dir/file-$((mmr + 1)) ||
6437                 error "Unexpectedly send $(($mmr + 1)) modify RPCs in parallel"
6438         wait
6439 }
6440
6441 test_90a() {
6442         reformat
6443         if ! combined_mgs_mds ; then
6444                 start_mgs
6445         fi
6446         setup
6447
6448         [[ $($LCTL get_param mdc.*.import |
6449              grep "connect_flags:.*multi_mod_rpc") ]] ||
6450                 { skip "Need MDC with 'multi_mod_rpcs' feature"; return 0; }
6451
6452         # check default value
6453         $LFS mkdir -c1 $DIR/$tdir || error "mkdir $DIR/$tdir failed"
6454         check_max_mod_rpcs_in_flight $DIR/$tdir
6455
6456         cleanup
6457 }
6458 run_test 90a "check max_mod_rpcs_in_flight is enforced"
6459
6460 test_90b() {
6461         local idx
6462         local facet
6463         local tmp
6464         local mmrpc
6465
6466         setup
6467
6468         [[ $($LCTL get_param mdc.*.import |
6469              grep "connect_flags:.*multi_mod_rpc") ]] ||
6470                 { skip "Need MDC with 'multi_mod_rpcs' feature"; return 0; }
6471
6472         ### test 1.
6473         # update max_mod_rpcs_in_flight
6474         $LFS mkdir -c1 $DIR/${tdir}1 || error "mkdir $DIR/${tdir}1 failed"
6475         check_max_mod_rpcs_in_flight $DIR/${tdir}1 1
6476
6477         ### test 2.
6478         # check client is able to send multiple modify RPCs in paralell
6479         tmp=$($LCTL get_param -n mdc.$FSNAME-MDT*-mdc-*.import |
6480                 grep -c "multi_mod_rpcs")
6481         if [ "$tmp" -ne $MDSCOUNT ]; then
6482                 echo "Client not able to send multiple modify RPCs in parallel"
6483                 cleanup
6484                 return
6485         fi
6486
6487         # update max_mod_rpcs_in_flight
6488         $LFS mkdir -c1 $DIR/${tdir}2 || error "mkdir $DIR/${tdir}2 failed"
6489         check_max_mod_rpcs_in_flight $DIR/${tdir}2 5
6490
6491         ### test 3.
6492         $LFS mkdir -c1 $DIR/${tdir}3 || error "mkdir $DIR/${tdir}3 failed"
6493         idx=$(printf "%04x" $($LFS getdirstripe -i $DIR/${tdir}3))
6494         facet="mds$((0x$idx + 1))"
6495
6496         # save MDT max_mod_rpcs_per_client
6497         mmrpc=$(do_facet $facet \
6498                     cat /sys/module/mdt/parameters/max_mod_rpcs_per_client)
6499
6500         # update max_mod_rpcs_in_flight
6501         umount_client $MOUNT
6502         do_facet $facet \
6503                 "echo 16 > /sys/module/mdt/parameters/max_mod_rpcs_per_client"
6504         mount_client $MOUNT
6505         $LCTL set_param mdc.$FSNAME-MDT$idx-mdc-*.max_rpcs_in_flight=17
6506         check_max_mod_rpcs_in_flight $DIR/${tdir}3 16
6507
6508         # restore MDT max_mod_rpcs_per_client initial value
6509         do_facet $facet \
6510                 "echo $mmrpc > /sys/module/mdt/parameters/max_mod_rpcs_per_client"
6511
6512         rm -rf $DIR/${tdir}?
6513         cleanup
6514 }
6515 run_test 90b "check max_mod_rpcs_in_flight is enforced after update"
6516
6517 test_90c() {
6518         local tmp
6519         local mrif
6520         local mmrpc
6521
6522         setup
6523
6524         [[ $($LCTL get_param mdc.*.import |
6525              grep "connect_flags:.*multi_mod_rpc") ]] ||
6526                 { skip "Need MDC with 'multi_mod_rpcs' feature"; return 0; }
6527
6528         # check client is able to send multiple modify RPCs in paralell
6529         tmp=$($LCTL get_param -n mdc.$FSNAME-MDT*-mdc-*.import |
6530                 grep -c "multi_mod_rpcs")
6531         if [ "$tmp" -ne $MDSCOUNT ]; then
6532                 skip "Client not able to send multiple modify RPCs in parallel"
6533                 cleanup
6534                 return
6535         fi
6536
6537         # get max_rpcs_in_flight value
6538         mrif=$($LCTL get_param -n mdc.$FSNAME-MDT0000-mdc-*.max_rpcs_in_flight)
6539         echo "max_rpcs_in_flight is $mrif"
6540
6541         # get MDT max_mod_rpcs_per_client
6542         mmrpc=$(do_facet mds1 \
6543                     cat /sys/module/mdt/parameters/max_mod_rpcs_per_client)
6544         echo "max_mod_rpcs_per_client is $mmrpc"
6545
6546         # testcase 1
6547         # attempt to set max_mod_rpcs_in_flight to max_rpcs_in_flight value
6548         # prerequisite: set max_mod_rpcs_per_client to max_rpcs_in_flight value
6549         umount_client $MOUNT
6550         do_facet mds1 \
6551                 "echo $mrif > /sys/module/mdt/parameters/max_mod_rpcs_per_client"
6552         mount_client $MOUNT
6553
6554         $LCTL set_param \
6555             mdc.$FSNAME-MDT0000-mdc-*.max_mod_rpcs_in_flight=$mrif &&
6556             error "set max_mod_rpcs_in_flight to $mrif should fail"
6557
6558         umount_client $MOUNT
6559         do_facet mds1 \
6560                 "echo $mmrpc > /sys/module/mdt/parameters/max_mod_rpcs_per_client"
6561         mount_client $MOUNT
6562
6563         # testcase 2
6564         # attempt to set max_mod_rpcs_in_flight to max_mod_rpcs_per_client+1
6565         # prerequisite: set max_rpcs_in_flight to max_mod_rpcs_per_client+2
6566         $LCTL set_param \
6567             mdc.$FSNAME-MDT0000-mdc-*.max_rpcs_in_flight=$((mmrpc + 2))
6568
6569         $LCTL set_param \
6570             mdc.$FSNAME-MDT0000-mdc-*.max_mod_rpcs_in_flight=$((mmrpc + 1)) &&
6571             error "set max_mod_rpcs_in_flight to $((mmrpc + 1)) should fail"
6572
6573         cleanup
6574 }
6575 run_test 90c "check max_mod_rpcs_in_flight update limits"
6576
6577 test_90d() {
6578         local idx
6579         local facet
6580         local mmr
6581         local i
6582         local pid
6583
6584         setup
6585
6586         [[ $($LCTL get_param mdc.*.import |
6587              grep "connect_flags:.*multi_mod_rpc") ]] ||
6588                 { skip "Need MDC with 'multi_mod_rpcs' feature"; return 0; }
6589
6590         $LFS mkdir -c1 $DIR/$tdir || error "mkdir $DIR/$tdir failed"
6591         idx=$(printf "%04x" $($LFS getdirstripe -i $DIR/$tdir))
6592         facet="mds$((0x$idx + 1))"
6593
6594         # check client version supports multislots
6595         tmp=$($LCTL get_param -N \
6596                 mdc.$FSNAME-MDT$idx-mdc-*.max_mod_rpcs_in_flight)
6597         if [ -z "$tmp" ]; then
6598                 skip "Client does not support multiple modify RPCs in flight"
6599                 cleanup
6600                 return
6601         fi
6602
6603         # get current value of max_mod_rcps_in_flight
6604         mmr=$($LCTL get_param -n \
6605                 mdc.$FSNAME-MDT$idx-mdc-*.max_mod_rpcs_in_flight)
6606         echo "max_mod_rcps_in_flight is $mmr"
6607
6608         # create mmr files
6609         echo "creating $mmr files ..."
6610         umask 0022
6611         for i in $(seq $mmr); do
6612                 touch $DIR/$tdir/file-$i
6613         done
6614
6615         # prepare for close RPC
6616         multiop_bg_pause $DIR/$tdir/file-close O_c
6617         pid=$!
6618
6619         # consumes mmr modify RPC slots
6620         #define OBD_FAIL_MDS_REINT_MULTI_NET     0x159
6621         # drop requests on MDT so that RPC slots are consumed
6622         # during all the request resend interval
6623         do_facet $facet "$LCTL set_param fail_loc=0x159"
6624         echo "launch $mmr chmod in parallel ..."
6625         for i in $(seq $mmr); do
6626                 chmod 0600 $DIR/$tdir/file-$i &
6627         done
6628
6629         # send one additional close RPC
6630         do_facet $facet "$LCTL set_param fail_loc=0"
6631         echo "launch 1 additional close in parallel ..."
6632         kill -USR1 $pid
6633         cancel_lru_locks mdc
6634         sleep 1
6635
6636         # check this additional close RPC get a modify RPC slot
6637         # and multiop process completed
6638         [ -d /proc/$pid ] &&
6639                 error "Unable to send the additional close RPC in parallel"
6640         wait
6641         rm -rf $DIR/$tdir
6642         cleanup
6643 }
6644 run_test 90d "check one close RPC is allowed above max_mod_rpcs_in_flight"
6645
6646 check_uuid_on_ost() {
6647         local nid=$1
6648         do_facet ost1 "$LCTL get_param obdfilter.${FSNAME}*.exports.'$nid'.uuid"
6649 }
6650
6651 check_uuid_on_mdt() {
6652         local nid=$1
6653         do_facet $SINGLEMDS "$LCTL get_param mdt.${FSNAME}*.exports.'$nid'.uuid"
6654 }
6655
6656 test_91() {
6657         local uuid
6658         local nid
6659         local found
6660
6661         [[ $(lustre_version_code ost1) -ge $(version_code 2.7.63) ]] ||
6662                 { skip "Need OST version at least 2.7.63" && return 0; }
6663         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.7.63) ]] ||
6664                 { skip "Need MDT version at least 2.7.63" && return 0; }
6665
6666         start_mds || error "MDS start failed"
6667         start_ost || error "unable to start OST"
6668         mount_client $MOUNT || error "client start failed"
6669         check_mount || error "check_mount failed"
6670
6671         if remote_mds; then
6672                 nid=$($LCTL list_nids | head -1 | sed  "s/\./\\\./g")
6673         else
6674                 nid="0@lo"
6675         fi
6676         uuid=$(get_client_uuid $MOUNT)
6677
6678         echo "list nids on mdt:"
6679         do_facet $SINGLEMDS "$LCTL list_param mdt.${FSNAME}*.exports.*"
6680         echo "uuid from $nid:"
6681         do_facet $SINGLEMDS "$LCTL get_param mdt.${FSNAME}*.exports.'$nid'.uuid"
6682
6683         found=$(check_uuid_on_mdt $nid | grep $uuid)
6684         [ -z "$found" ] && error "can't find $uuid $nid on MDT"
6685         found=$(check_uuid_on_ost $nid | grep $uuid)
6686         [ -z "$found" ] && error "can't find $uuid $nid on OST"
6687
6688         # umount the client so it won't reconnect
6689         manual_umount_client --force || error "failed to umount $?"
6690         # shouldn't disappear on MDS after forced umount
6691         found=$(check_uuid_on_mdt $nid | grep $uuid)
6692         [ -z "$found" ] && error "can't find $uuid $nid"
6693
6694         echo "evict $nid"
6695         do_facet $SINGLEMDS \
6696                 "$LCTL set_param -n mdt.${mds1_svc}.evict_client nid:$nid"
6697
6698         found=$(check_uuid_on_mdt $nid | grep $uuid)
6699         [ -n "$found" ] && error "found $uuid $nid on MDT"
6700         found=$(check_uuid_on_ost $nid | grep $uuid)
6701         [ -n "$found" ] && error "found $uuid $nid on OST"
6702
6703         # check it didn't reconnect (being umounted)
6704         sleep $((TIMEOUT+1))
6705         found=$(check_uuid_on_mdt $nid | grep $uuid)
6706         [ -n "$found" ] && error "found $uuid $nid on MDT"
6707         found=$(check_uuid_on_ost $nid | grep $uuid)
6708         [ -n "$found" ] && error "found $uuid $nid on OST"
6709
6710         cleanup
6711 }
6712 run_test 91 "evict-by-nid support"
6713
6714 generate_ldev_conf() {
6715         # generate an ldev.conf file
6716         local ldevconfpath=$1
6717         local fstype=
6718         local fsldevformat=""
6719         touch $ldevconfpath
6720
6721         fstype=$(facet_fstype mgs)
6722         if [ "$fstype" == "zfs" ]; then
6723                 fsldevformat="$fstype:"
6724         else
6725                 fsldevformat=""
6726         fi
6727
6728         printf "%s\t-\t%s-MGS0000\t%s%s\n" \
6729                 $mgs_HOST \
6730                 $FSNAME \
6731                 $fsldevformat \
6732                 $(mgsdevname) > $ldevconfpath
6733
6734         local mdsfo_host=$mdsfailover_HOST;
6735         if [ -z "$mdsfo_host" ]; then
6736                 mdsfo_host="-"
6737         fi
6738
6739         for num in $(seq $MDSCOUNT); do
6740                 fstype=$(facet_fstype mds$num)
6741                 if [ "$fstype" == "zfs" ]; then
6742                         fsldevformat="$fstype:"
6743                 else
6744                         fsldevformat=""
6745                 fi
6746
6747                 printf "%s\t%s\t%s-MDT%04d\t%s%s\n" \
6748                         $mds_HOST \
6749                         $mdsfo_host \
6750                         $FSNAME \
6751                         $num \
6752                         $fsldevformat \
6753                         $(mdsdevname $num) >> $ldevconfpath
6754         done
6755
6756         local ostfo_host=$ostfailover_HOST;
6757         if [ -z "$ostfo_host" ]; then
6758                 ostfo_host="-"
6759         fi
6760
6761         for num in $(seq $OSTCOUNT); do
6762                 fstype=$(facet_fstype ost$num)
6763                 if [ "$fstype" == "zfs" ]; then
6764                         fsldevformat="$fstype:"
6765                 else
6766                         fsldevformat=""
6767                 fi
6768
6769                 printf "%s\t%s\t%s-OST%04d\t%s%s\n" \
6770                         $ost_HOST \
6771                         $ostfo_host \
6772                         $FSNAME \
6773                         $num \
6774                         $fsldevformat \
6775                         $(ostdevname $num) >> $ldevconfpath
6776         done
6777
6778         echo "----- $ldevconfpath -----"
6779         cat $ldevconfpath
6780         echo "--- END $ldevconfpath ---"
6781
6782 }
6783
6784 generate_nids() {
6785         # generate a nids file (mapping between hostname to nid)
6786         # looks like we only have the MGS nid available to us
6787         # so just echo that to a file
6788         local nidspath=$1
6789         echo -e "${mgs_HOST}\t${MGSNID}" > $nidspath
6790
6791         echo "----- $nidspath -----"
6792         cat $nidspath
6793         echo "--- END $nidspath ---"
6794 }
6795
6796 compare_ldev_output() {
6797         ldev_output=$1
6798         expected_output=$2
6799
6800         sort $expected_output -o $expected_output
6801         sort $ldev_output -o $ldev_output
6802
6803         echo "-- START OF LDEV OUTPUT --"
6804         cat $ldev_output
6805         echo "--- END OF LDEV OUTPUT ---"
6806
6807         echo "-- START OF EXPECTED OUTPUT --"
6808         cat $expected_output
6809         echo "--- END OF EXPECTED OUTPUT ---"
6810
6811         diff $expected_output $ldev_output
6812         return $?
6813 }
6814
6815 test_92() {
6816         if [ -z "$LDEV" ]; then
6817                 error "ldev is missing!"
6818         fi
6819
6820         local LDEVCONFPATH=$TMP/ldev.conf
6821         local NIDSPATH=$TMP/nids
6822
6823         echo "Host is $(hostname)"
6824
6825         generate_ldev_conf $LDEVCONFPATH
6826         generate_nids $NIDSPATH
6827
6828         # echo the mgs nid and compare it to environment variable MGSNID
6829         # also, ldev.conf and nids is a server side thing, use the OSS
6830         # hostname
6831         local output
6832         output=$($LDEV -c $LDEVCONFPATH -H $ost_HOST -n $NIDSPATH echo %m)
6833
6834         echo "-- START OF LDEV OUTPUT --"
6835         echo -e "$output"
6836         echo "--- END OF LDEV OUTPUT ---"
6837
6838         # ldev failed, error
6839         if [ $? -ne 0 ]; then
6840                 rm $LDEVCONFPATH $NIDSPATH
6841                 error "ldev failed to execute!"
6842         fi
6843
6844         # need to process multiple lines because of combined MGS and MDS
6845         echo -e $output | awk '{ print $2 }' | while read -r line ; do
6846                 if [ "$line" != "$MGSNID" ]; then
6847                         rm $LDEVCONFPATH $NIDSPATH
6848                         error "ldev failed mgs nid '$line', expected '$MGSNID'"
6849                 fi
6850         done
6851
6852         rm $LDEVCONFPATH $NIDSPATH
6853 }
6854 run_test 92 "ldev returns MGS NID correctly in command substitution"
6855
6856 test_93() {
6857         [ $MDSCOUNT -lt 3 ] && skip "needs >= 3 MDTs" && return
6858
6859         reformat
6860         #start mgs or mgs/mdt0
6861         if ! combined_mgs_mds ; then
6862                 start_mgs
6863                 start_mdt 1
6864         else
6865                 start_mdt 1
6866         fi
6867
6868         start_ost || error "OST0 start fail"
6869
6870         #define OBD_FAIL_MGS_WRITE_TARGET_DELAY  0x90e
6871         do_facet mgs "$LCTL set_param fail_val = 10 fail_loc=0x8000090e"
6872         for num in $(seq 2 $MDSCOUNT); do
6873                 start_mdt $num &
6874         done
6875
6876         mount_client $MOUNT || error "mount client fails"
6877         wait_osc_import_state mds ost FULL
6878         wait_osc_import_state client ost FULL
6879         check_mount || error "check_mount failed"
6880
6881         cleanup || error "cleanup failed with $?"
6882 }
6883 run_test 93 "register mulitple MDT at the same time"
6884
6885 test_94() {
6886         if [ -z "$LDEV" ]; then
6887                 error "ldev is missing!"
6888         fi
6889
6890         local LDEVCONFPATH=$TMP/ldev.conf
6891         local NIDSPATH=$TMP/nids
6892
6893         generate_ldev_conf $LDEVCONFPATH
6894         generate_nids $NIDSPATH
6895
6896         local LDEV_OUTPUT=$TMP/ldev-output.txt
6897         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -F $FSNAME > $LDEV_OUTPUT
6898
6899         # ldev failed, error
6900         if [ $? -ne 0 ]; then
6901                 rm $LDEVCONFPATH $NIDSPATH $LDEV_OUTPUT
6902                 error "ldev failed to execute!"
6903         fi
6904
6905         # expected output
6906         local EXPECTED_OUTPUT=$TMP/ldev-expected.txt
6907
6908         printf "%s-MGS0000\n" $FSNAME > $EXPECTED_OUTPUT
6909
6910         for num in $(seq $MDSCOUNT); do
6911                 printf "%s-MDT%04d\n" $FSNAME $num >> $EXPECTED_OUTPUT
6912         done
6913
6914         for num in $(seq $OSTCOUNT); do
6915                 printf "%s-OST%04d\n" $FSNAME $num >> $EXPECTED_OUTPUT
6916         done
6917
6918         compare_ldev_output $LDEV_OUTPUT $EXPECTED_OUTPUT
6919
6920         if [ $? -ne 0 ]; then
6921                 rm $LDEVCONFPATH $NIDSPATH $EXPECTED_OUTPUT $LDEV_OUTPUT
6922                 error "ldev failed to produce the correct hostlist!"
6923         fi
6924
6925         rm $LDEVCONFPATH $NIDSPATH $EXPECTED_OUTPUT $LDEV_OUTPUT
6926 }
6927 run_test 94 "ldev outputs correct labels for file system name query"
6928
6929 test_95() {
6930         if [ -z "$LDEV" ]; then
6931                 error "ldev is missing!"
6932         fi
6933
6934         local LDEVCONFPATH=$TMP/ldev.conf
6935         local NIDSPATH=$TMP/nids
6936
6937         generate_ldev_conf $LDEVCONFPATH
6938         generate_nids $NIDSPATH
6939
6940         # SUCCESS CASES
6941         # file sys filter
6942         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -F $FSNAME &>/dev/null
6943         if [ $? -ne 0 ]; then
6944                 rm $LDEVCONFPATH $NIDSPATH
6945                 error "ldev label filtering w/ -F failed!"
6946         fi
6947
6948         # local filter
6949         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -l  &>/dev/null
6950         if [ $? -ne 0 ]; then
6951                 rm $LDEVCONFPATH $NIDSPATH
6952                 error "ldev label filtering w/ -l failed!"
6953         fi
6954
6955         # foreign filter
6956         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -f &>/dev/null
6957         if [ $? -ne 0 ]; then
6958                 rm $LDEVCONFPATH $NIDSPATH
6959                 error "ldev label filtering w/ -f failed!"
6960         fi
6961
6962         # all filter
6963         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -a &>/dev/null
6964         if [ $? -ne 0 ]; then
6965                 rm $LDEVCONFPATH $NIDSPATH
6966                 error "ldev label filtering w/ -a failed!"
6967         fi
6968
6969         # FAILURE CASES
6970         # all & file sys
6971         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -a -F $FSNAME &>/dev/null
6972         if [ $? -eq 0 ]; then
6973                 rm $LDEVCONFPATH $NIDSPATH
6974                 error "ldev label filtering w/ -a and -F incorrectly succeeded"
6975         fi
6976
6977         # all & foreign
6978         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -a -f &>/dev/null
6979         if [ $? -eq 0 ]; then
6980                 rm $LDEVCONFPATH $NIDSPATH
6981                 error "ldev label filtering w/ -a and -f incorrectly succeeded"
6982         fi
6983
6984         # all & local
6985         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -a -l &>/dev/null
6986         if [ $? -eq 0 ]; then
6987                 rm $LDEVCONFPATH $NIDSPATH
6988                 error "ldev label filtering w/ -a and -l incorrectly succeeded"
6989         fi
6990
6991         # foreign & local
6992         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -f -l &>/dev/null
6993         if [ $? -eq 0 ]; then
6994                 rm $LDEVCONFPATH $NIDSPATH
6995                 error "ldev label filtering w/ -f and -l incorrectly succeeded"
6996         fi
6997
6998         # file sys & local
6999         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -F $FSNAME -l &>/dev/null
7000         if [ $? -eq 0 ]; then
7001                 rm $LDEVCONFPATH $NIDSPATH
7002                 error "ldev label filtering w/ -F and -l incorrectly succeeded"
7003         fi
7004
7005         # file sys & foreign
7006         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -F $FSNAME -f &>/dev/null
7007         if [ $? -eq 0 ]; then
7008                 rm $LDEVCONFPATH $NIDSPATH
7009                 error "ldev label filtering w/ -F and -f incorrectly succeeded"
7010         fi
7011
7012         rm $LDEVCONFPATH $NIDSPATH
7013 }
7014 run_test 95 "ldev should only allow one label filter"
7015
7016 test_96() {
7017         if [ -z "$LDEV" ]; then
7018                 error "ldev is missing!"
7019         fi
7020
7021         local LDEVCONFPATH=$TMP/ldev.conf
7022         local NIDSPATH=$TMP/nids
7023
7024         generate_ldev_conf $LDEVCONFPATH
7025         generate_nids $NIDSPATH
7026
7027         local LDEV_OUTPUT=$TMP/ldev-output.txt
7028         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -H $mgs_HOST \
7029                 echo %H-%b | \
7030                 awk '{print $2}' > $LDEV_OUTPUT
7031
7032         # ldev failed, error
7033         if [ $? -ne 0 ]; then
7034                 rm $LDEVCONFPATH $NIDSPATH $LDEV_OUTPUT
7035                 error "ldev failed to execute!"
7036         fi
7037
7038         # expected output
7039         local EXPECTED_OUTPUT=$TMP/ldev-expected-output.txt
7040
7041         echo "$mgs_HOST-$(facet_fstype mgs)" > $EXPECTED_OUTPUT
7042
7043         if [ "$mgs_HOST" == "$mds_HOST" ]; then
7044                 for num in $(seq $MDSCOUNT); do
7045                         echo "$mds_HOST-$(facet_fstype mds$num)" \
7046                         >> $EXPECTED_OUTPUT
7047                 done
7048         fi
7049
7050         if [ "$mgs_HOST" == "$ost_HOST" ]; then
7051                 for num in $(seq $OSTCOUNT); do
7052                         echo "$ost_HOST-$(facet_fstype ost$num)" \
7053                         >> $EXPECTED_OUTPUT
7054                 done
7055         fi
7056
7057         compare_ldev_output $LDEV_OUTPUT $EXPECTED_OUTPUT
7058
7059         if [ $? -ne 0 ]; then
7060                 rm $LDEVCONFPATH $NIDSPATH $EXPECTED_OUTPUT $LDEV_OUTPUT
7061                 error "ldev failed to produce the correct output!"
7062         fi
7063
7064         rm $LDEVCONFPATH $NIDSPATH $EXPECTED_OUTPUT $LDEV_OUTPUT
7065 }
7066 run_test 96 "ldev returns hostname and backend fs correctly in command sub"
7067
7068 test_97() {
7069         if [ -z "$LDEV" ]; then
7070                 error "ldev is missing!"
7071         fi
7072
7073         local LDEVCONFPATH=$TMP/ldev.conf
7074         local NIDSPATH=$TMP/nids
7075
7076         generate_ldev_conf $LDEVCONFPATH
7077         generate_nids $NIDSPATH
7078
7079         local LDEV_OUTPUT=$TMP/ldev-output.txt
7080         local EXPECTED_OUTPUT=$TMP/ldev-expected-output.txt
7081
7082         echo -e "\nMDT role"
7083         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -F $FSNAME -R mdt > $LDEV_OUTPUT
7084
7085         if [ $? -ne 0 ]; then
7086                 rm $LDEVCONFPATH $NIDSPATH $LDEV_OUTPUT
7087                 error "ldev failed to execute for mdt role!"
7088         fi
7089
7090         for num in $(seq $MDSCOUNT); do
7091                 printf "%s-MDT%04d\n" $FSNAME $num >> $EXPECTED_OUTPUT
7092         done
7093
7094         compare_ldev_output $LDEV_OUTPUT $EXPECTED_OUTPUT
7095
7096         if [ $? -ne 0 ]; then
7097                 rm $LDEVCONFPATH $NIDSPATH $EXPECTED_OUTPUT $LDEV_OUTPUT
7098                 error "ldev failed to produce the correct output for mdt role!"
7099         fi
7100
7101         echo -e "\nOST role"
7102         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -F $FSNAME -R ost > $LDEV_OUTPUT
7103
7104         if [ $? -ne 0 ]; then
7105                 rm $LDEVCONFPATH $NIDSPATH $LDEV_OUTPUT $EXPECTED_OUTPUT
7106                 error "ldev failed to execute for ost role!"
7107         fi
7108
7109         rm $EXPECTED_OUTPUT
7110         for num in $(seq $OSTCOUNT); do
7111                 printf "%s-OST%04d\n" $FSNAME $num >> $EXPECTED_OUTPUT
7112         done
7113
7114         compare_ldev_output $LDEV_OUTPUT $EXPECTED_OUTPUT
7115
7116         if [ $? -ne 0 ]; then
7117                 rm $LDEVCONFPATH $NIDSPATH $EXPECTED_OUTPUT $LDEV_OUTPUT
7118                 error "ldev failed to produce the correct output for ost role!"
7119         fi
7120
7121         echo -e "\nMGS role"
7122         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -F $FSNAME -R mgs > $LDEV_OUTPUT
7123
7124         if [ $? -ne 0 ]; then
7125                 rm $LDEVCONFPATH $NIDSPATH $LDEV_OUTPUT $EXPECTED_OUTPUT
7126                 error "ldev failed to execute for mgs role!"
7127         fi
7128
7129         printf "%s-MGS0000\n" $FSNAME > $EXPECTED_OUTPUT
7130
7131         compare_ldev_output $LDEV_OUTPUT $EXPECTED_OUTPUT
7132
7133         if [ $? -ne 0 ]; then
7134                 rm $LDEVCONFPATH $NIDSPATH $EXPECTED_OUTPUT $LDEV_OUTPUT
7135                 error "ldev failed to produce the correct output for mgs role!"
7136         fi
7137
7138         rm $LDEVCONFPATH $NIDSPATH $EXPECTED_OUTPUT $LDEV_OUTPUT
7139 }
7140 run_test 97 "ldev returns correct ouput when querying based on role"
7141
7142 test_98()
7143 {
7144         local mountopt
7145         local temp=$MDS_MOUNT_OPTS
7146
7147         setup
7148         check_mount || error "mount failed"
7149         mountopt="user_xattr"
7150         for ((x = 1; x <= 400; x++)); do
7151                 mountopt="$mountopt,user_xattr"
7152         done
7153         remount_client $mountopt $MOUNT  2>&1 | grep "too long" ||
7154                 error "Buffer overflow check failed"
7155         cleanup || error "cleanup failed"
7156 }
7157 run_test 98 "Buffer-overflow check while parsing mount_opts"
7158
7159 test_99()
7160 {
7161         [[ $(facet_fstype ost1) != ldiskfs ]] &&
7162                 { skip "ldiskfs only test" && return; }
7163         [[ $(lustre_version_code ost1) -ge $(version_code 2.8.57) ]] ||
7164                 { skip "Need OST version at least 2.8.57" && return 0; }
7165
7166         local ost_opts="$(mkfs_opts ost1 $(ostdevname 1)) \
7167                 --reformat $(ostdevname 1) $(ostvdevname 1)"
7168         do_facet ost1 $DEBUGFS -c -R stats `ostdevname 1` | grep "meta_bg" &&
7169                 skip "meta_bg already set" && return
7170
7171         local opts=ost_opts
7172         if [[ ${!opts} != *mkfsoptions* ]]; then
7173                 eval opts=\"${!opts} \
7174                 --mkfsoptions='\\\"-O ^resize_inode,meta_bg\\\"'\"
7175         else
7176                 local val=${!opts//--mkfsoptions=\\\"/ \
7177                 --mkfsoptions=\\\"-O ^resize_inode,meta_bg }
7178                 eval opts='${val}'
7179         fi
7180
7181         echo "params: $opts"
7182
7183         add ost1 $opts || error "add ost1 failed with new params"
7184
7185         do_facet ost1 $DEBUGFS -c -R stats `ostdevname 1` | grep "meta_bg" ||
7186                 error "meta_bg is not set"
7187
7188         return 0
7189 }
7190 run_test 99 "Adding meta_bg option"
7191
7192 test_100() {
7193         reformat
7194         start_mds || error "MDS start failed"
7195         start_ost || error "unable to start OST"
7196         mount_client $MOUNT || error "client start failed"
7197         check_mount || error "check_mount failed"
7198
7199         # Desired output
7200         # MGS:
7201         #     0@lo
7202         # lustre-MDT0000:
7203         #     0@lo
7204         # lustre-OST0000:
7205         #     0@lo
7206         do_facet mgs 'lshowmount -v' | awk 'BEGIN {NR == 0; rc=1} /MGS:/ {rc=0}
7207                 END {exit rc}' || error "lshowmount have no output MGS"
7208
7209         do_facet mds1 'lshowmount -v' | awk 'BEGIN {NR == 2; rc=1} /-MDT0000:/
7210                 {rc=0} END {exit rc}' || error "lshowmount have no output MDT0"
7211
7212         do_facet ost1 'lshowmount -v' | awk 'BEGIN {NR == 4; rc=1} /-OST0000:/
7213                 {rc=0} END {exit rc}' || error "lshowmount have no output OST0"
7214
7215         cleanup || error "cleanup failed with $?"
7216 }
7217 run_test 100 "check lshowmount lists MGS, MDT, OST and 0@lo"
7218
7219 test_101() {
7220         local createmany_pid
7221         local dev=$FSNAME-OST0000-osc-MDT0000
7222         setup
7223
7224         mkdir $DIR1/$tdir
7225         createmany -o $DIR1/$tdir/$tfile-%d 50000 &
7226         createmany_pid=$!
7227         # MDT->OST reconnection causes MDT<->OST last_id synchornisation
7228         # via osp_precreate_cleanup_orphans.
7229         for ((i = 0; i < 100; i++)); do
7230                 for ((k = 0; k < 10; k++)); do
7231                         do_facet $SINGLEMDS "$LCTL --device $dev deactivate;" \
7232                                             "$LCTL --device $dev activate"
7233                 done
7234
7235                 ls -asl $MOUNT | grep '???' &&
7236                         { kill -9 $createmany_pid &>/dev/null;
7237                           error "File has no object on OST"; }
7238
7239                 kill -s 0 $createmany_pid || break
7240         done
7241         wait $createmany_pid
7242
7243         unlinkmany $DIR1/$tdir/$tfile-%d 50000
7244         cleanup
7245 }
7246 run_test 101 "Race MDT->OST reconnection with create"
7247
7248 test_102() {
7249         [[ $(lustre_version_code $SINGLEMDS) -gt $(version_code 2.9.53) ]] ||
7250                 { skip "Need server version greater than 2.9.53" && return 0; }
7251         cleanup || error "cleanup failed with $?"
7252
7253         local mds1dev=$(mdsdevname 1)
7254         local mds1mnt=$(facet_mntpt mds1)
7255         local mds1fstype=$(facet_fstype mds1)
7256         local mds1opts=$MDS_MOUNT_OPTS
7257
7258         if [ $mds1fstype == ldiskfs ] &&
7259            ! do_facet mds1 test -b $mds1dev; then
7260                 mds1opts=$(csa_add "$mds1opts" -o loop)
7261         fi
7262         if [[ $mds1fstype == zfs ]]; then
7263                 import_zpool mds1 || return ${PIPESTATUS[0]}
7264         fi
7265
7266         # unload all and only load libcfs to allow fail_loc setting
7267         do_facet mds1 lustre_rmmod || error "unable to unload modules"
7268         do_facet mds1 modprobe libcfs || error "libcfs not loaded"
7269         do_facet mds1 lsmod \| grep libcfs || error "libcfs not loaded"
7270
7271         #define OBD_FAIL_OBDCLASS_MODULE_LOAD    0x60a
7272         do_facet mds1 "$LCTL set_param fail_loc=0x8000060a"
7273
7274         do_facet mds1 $MOUNT_CMD $mds1dev $mds1mnt $mds1opts &&
7275                 error "mdt start must fail"
7276         do_facet mds1 lsmod \| grep  obdclass && error "obdclass must not load"
7277
7278         do_facet mds1 "$LCTL set_param fail_loc=0x0"
7279
7280         do_facet mds1 $MOUNT_CMD $mds1dev $mds1mnt $mds1opts ||
7281                 error "mdt start must not fail"
7282
7283         cleanup || error "cleanup failed with $?"
7284 }
7285 run_test 102 "obdclass module cleanup upon error"
7286
7287 test_renamefs() {
7288         local newname=$1
7289
7290         echo "rename $FSNAME to $newname"
7291
7292         if ! combined_mgs_mds ; then
7293                 local facet=$(mgsdevname)
7294
7295                 do_facet mgs \
7296                         "$TUNEFS --fsname=$newname --rename=$FSNAME -v $facet"||
7297                         error "(7) Fail to rename MGS"
7298                 if [ "$(facet_fstype $facet)" = "zfs" ]; then
7299                         reimport_zpool mgs $newname-mgs
7300                 fi
7301         fi
7302
7303         for num in $(seq $MDSCOUNT); do
7304                 local facet=$(mdsdevname $num)
7305
7306                 do_facet mds${num} \
7307                         "$TUNEFS --fsname=$newname --rename=$FSNAME -v $facet"||
7308                         error "(8) Fail to rename MDT $num"
7309                 if [ "$(facet_fstype $facet)" = "zfs" ]; then
7310                         reimport_zpool mds${num} $newname-mdt${num}
7311                 fi
7312         done
7313
7314         for num in $(seq $OSTCOUNT); do
7315                 local facet=$(ostdevname $num)
7316
7317                 do_facet ost${num} \
7318                         "$TUNEFS --fsname=$newname --rename=$FSNAME -v $facet"||
7319                         error "(9) Fail to rename OST $num"
7320                 if [ "$(facet_fstype $facet)" = "zfs" ]; then
7321                         reimport_zpool ost${num} $newname-ost${num}
7322                 fi
7323         done
7324 }
7325
7326 test_103_set_pool() {
7327         local pname=$1
7328         local ost_x=$2
7329
7330         do_facet mgs $LCTL pool_add $FSNAME.$pname ${FSNAME}-$ost_x ||
7331                 error "Fail to add $ost_x to $FSNAME.$pname"
7332         wait_update $HOSTNAME \
7333                 "lctl get_param -n lov.$FSNAME-clilov-*.pools.$pname |
7334                  grep $ost_x" "$FSNAME-${ost_x}_UUID" ||
7335                 error "$ost_x is NOT in pool $FSNAME.$pname"
7336 }
7337
7338 test_103_check_pool() {
7339         local save_fsname=$1
7340         local errno=$2
7341
7342         stat $DIR/$tdir/test-framework.sh ||
7343                 error "($errno) Fail to stat"
7344         do_facet mgs $LCTL pool_list $FSNAME.pool1 ||
7345                 error "($errno) Fail to list $FSNAME.pool1"
7346         do_facet mgs $LCTL pool_list $FSNAME.$save_fsname ||
7347                 error "($errno) Fail to list $FSNAME.$save_fsname"
7348         do_facet mgs $LCTL pool_list $FSNAME.$save_fsname |
7349                 grep ${FSNAME}-OST0000 ||
7350                 error "($errno) List $FSNAME.$save_fsname is invalid"
7351
7352         local pname=$($LFS getstripe --pool $DIR/$tdir/d0)
7353         [ "$pname" = "$save_fsname" ] ||
7354                 error "($errno) Unexpected pool name $pname"
7355 }
7356
7357 test_103() {
7358         check_mount_and_prep
7359         rm -rf $DIR/$tdir
7360         mkdir $DIR/$tdir || error "(1) Fail to mkdir $DIR/$tdir"
7361         cp $LUSTRE/tests/test-framework.sh $DIR/$tdir ||
7362                 error "(2) Fail to copy test-framework.sh"
7363
7364         if ! combined_mgs_mds ; then
7365                 mount_mgs_client
7366         fi
7367         do_facet mgs $LCTL pool_new $FSNAME.pool1 ||
7368                 error "(3) Fail to create $FSNAME.pool1"
7369         # name the pool name as the fsname
7370         do_facet mgs $LCTL pool_new $FSNAME.$FSNAME ||
7371                 error "(4) Fail to create $FSNAME.$FSNAME"
7372
7373         test_103_set_pool $FSNAME OST0000
7374
7375         $SETSTRIPE -p $FSNAME $DIR/$tdir/d0 ||
7376                 error "(6) Fail to setstripe on $DIR/$tdir/d0"
7377
7378         if ! combined_mgs_mds ; then
7379                 umount_mgs_client
7380         fi
7381         KEEP_ZPOOL=true
7382         stopall
7383
7384         test_renamefs mylustre
7385
7386         local save_fsname=$FSNAME
7387         FSNAME="mylustre"
7388         setupall
7389
7390         if ! combined_mgs_mds ; then
7391                 mount_mgs_client
7392         fi
7393         test_103_check_pool $save_fsname 7
7394
7395         if [ $OSTCOUNT -ge 2 ]; then
7396                 test_103_set_pool $save_fsname OST0001
7397         fi
7398
7399         $SETSTRIPE -p $save_fsname $DIR/$tdir/f0 ||
7400                 error "(16) Fail to setstripe on $DIR/$tdir/f0"
7401         if ! combined_mgs_mds ; then
7402                 umount_mgs_client
7403         fi
7404
7405         stopall
7406
7407         test_renamefs tfs
7408
7409         FSNAME="tfs"
7410         setupall
7411
7412         if ! combined_mgs_mds ; then
7413                 mount_mgs_client
7414         fi
7415         test_103_check_pool $save_fsname 17
7416
7417         if ! combined_mgs_mds ; then
7418                 umount_mgs_client
7419         fi
7420         stopall
7421
7422         test_renamefs $save_fsname
7423
7424         FSNAME=$save_fsname
7425         setupall
7426         KEEP_ZPOOL=false
7427 }
7428 run_test 103 "rename filesystem name"
7429
7430 test_104() { # LU-6952
7431         local mds_mountopts=$MDS_MOUNT_OPTS
7432         local ost_mountopts=$OST_MOUNT_OPTS
7433         local mds_mountfsopts=$MDS_MOUNT_FS_OPTS
7434         local lctl_ver=$(do_facet $SINGLEMDS $LCTL --version |
7435                         awk '{ print $2 }')
7436
7437         [[ $(version_code $lctl_ver) -lt $(version_code 2.9.55) ]] &&
7438                 { skip "this test needs utils above 2.9.55" && return 0; }
7439
7440         # specify "acl" in mount options used by mkfs.lustre
7441         if [ -z "$MDS_MOUNT_FS_OPTS" ]; then
7442                 MDS_MOUNT_FS_OPTS="acl,user_xattr"
7443         else
7444
7445                 MDS_MOUNT_FS_OPTS="${MDS_MOUNT_FS_OPTS},acl,user_xattr"
7446         fi
7447
7448         echo "mountfsopt: $MDS_MOUNT_FS_OPTS"
7449
7450         #reformat/remount the MDT to apply the MDT_MOUNT_FS_OPT options
7451         formatall
7452         if [ -z "$MDS_MOUNT_OPTS" ]; then
7453                 MDS_MOUNT_OPTS="-o noacl"
7454         else
7455                 MDS_MOUNT_OPTS="${MDS_MOUNT_OPTS},noacl"
7456         fi
7457
7458         for num in $(seq $MDSCOUNT); do
7459                 start mds$num $(mdsdevname $num) $MDS_MOUNT_OPTS ||
7460                         error "Failed to start MDS"
7461         done
7462
7463         for num in $(seq $OSTCOUNT); do
7464                 start ost$num $(ostdevname $num) $OST_MOUNT_OPTS ||
7465                         error "Failed to start OST"
7466         done
7467
7468         mount_client $MOUNT
7469         setfacl -m "d:$RUNAS_ID:rwx" $MOUNT &&
7470                 error "ACL is applied when FS is mounted with noacl."
7471
7472         MDS_MOUNT_OPTS=$mds_mountopts
7473         OST_MOUNT_OPTS=$ost_mountopts
7474         MDS_MOUNT_FS_OPTS=$mds_mountfsopts
7475
7476         formatall
7477         setupall
7478 }
7479 run_test 104 "Make sure user defined options are reflected in mount"
7480
7481 error_and_umount() {
7482         umount $TMP/$tdir
7483         rmdir $TMP/$tdir
7484         error $*
7485 }
7486
7487 test_105() {
7488         cleanup -f
7489         reformat
7490         setup
7491         mkdir -p $TMP/$tdir
7492         mount --bind $DIR $TMP/$tdir || error "mount bind mnt pt failed"
7493         rm -f $TMP/$tdir/$tfile
7494         rm -f $TMP/$tdir/${tfile}1
7495
7496         # Files should not be created in ro bind mount point
7497         # remounting from rw to ro
7498         mount -o remount,ro $TMP/$tdir ||
7499                 error_and_umount "readonly remount of bind mnt pt failed"
7500         touch $TMP/$tdir/$tfile &&
7501                 error_and_umount "touch succeeds on ro bind mnt pt"
7502         [ -e $TMP/$tdir/$tfile ] &&
7503                 error_and_umount "file created on ro bind mnt pt"
7504
7505         # Files should be created in rw bind mount point
7506         # remounting from ro to rw
7507         mount -o remount,rw $TMP/$tdir ||
7508                 error_and_umount "read-write remount of bind mnt pt failed"
7509         touch $TMP/$tdir/${tfile}1 ||
7510                 error_and_umount "touch fails on rw bind mnt pt"
7511         [ -e $TMP/$tdir/${tfile}1 ] ||
7512                 error_and_umount "file not created on rw bind mnt pt"
7513         umount $TMP/$tdir || error "umount of bind mnt pt failed"
7514         rmdir $TMP/$tdir
7515         cleanup || error "cleanup failed with $?"
7516 }
7517 run_test 105 "check file creation for ro and rw bind mnt pt"
7518
7519 test_106() {
7520         local repeat=5
7521
7522         reformat
7523         setupall
7524         mkdir -p $DIR/$tdir || error "create $tdir failed"
7525         lfs setstripe -c 1 -i 0 $DIR/$tdir
7526 #define OBD_FAIL_CAT_RECORDS                        0x1312
7527         do_facet mds1 $LCTL set_param fail_loc=0x1312 fail_val=$repeat
7528
7529         for ((i = 1; i <= $repeat; i++)); do
7530
7531                 #one full plain llog
7532                 createmany -o $DIR/$tdir/f- 64768
7533
7534                 createmany -u $DIR/$tdir/f- 64768
7535         done
7536         wait_delete_completed $((TIMEOUT * 7))
7537 #ASSERTION osp_sync_thread() ( thread->t_flags != SVC_RUNNING ) failed
7538 #shows that osp code is buggy
7539         do_facet mds1 $LCTL set_param fail_loc=0 fail_val=0
7540
7541         cleanupall
7542 }
7543 run_test 106 "check osp llog processing when catalog is wrapped"
7544
7545 test_107() {
7546         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.10.50) ]] ||
7547                 { skip "Need MDS version > 2.10.50"; return; }
7548
7549         start_mgsmds || error "start_mgsmds failed"
7550         start_ost || error "unable to start OST"
7551
7552         # add unknown configuration parameter.
7553         local PARAM="$FSNAME-OST0000.ost.unknown_param=50"
7554         do_facet mgs "$LCTL conf_param $PARAM"
7555         cleanup_nocli || error "cleanup_nocli failed with $?"
7556         load_modules
7557
7558         # unknown param should be ignored while mounting.
7559         start_ost || error "unable to start OST after unknown param set"
7560
7561         cleanup || error "cleanup failed with $?"
7562 }
7563 run_test 107 "Unknown config param should not fail target mounting"
7564
7565 #
7566 # set number of permanent parameters
7567 #
7568 test_109_set_params() {
7569         local fsname=$1
7570
7571         set_conf_param_and_check mds                                \
7572             "$LCTL get_param -n mdd.$fsname-MDT0000.atime_diff"     \
7573             "$fsname-MDT0000.mdd.atime_diff"                        \
7574             "62"
7575         set_conf_param_and_check mds                                \
7576             "$LCTL get_param -n mdd.$fsname-MDT0000.atime_diff"     \
7577             "$fsname-MDT0000.mdd.atime_diff"                        \
7578             "63"
7579         set_conf_param_and_check client                             \
7580             "$LCTL get_param -n llite.$fsname*.max_read_ahead_mb"   \
7581             "$fsname.llite.max_read_ahead_mb"                       \
7582             "32"
7583         set_conf_param_and_check client                             \
7584             "$LCTL get_param -n llite.$fsname*.max_read_ahead_mb"   \
7585             "$fsname.llite.max_read_ahead_mb"                       \
7586             "64"
7587         create_pool $fsname.pool1 || error "create pool failed"
7588         do_facet mgs $LCTL pool_add $fsname.pool1 OST0000 ||
7589                 error "pool_add failed"
7590         do_facet mgs $LCTL pool_remove $fsname.pool1 OST0000 ||
7591                 error "pool_remove failed"
7592         do_facet mgs $LCTL pool_add $fsname.pool1 OST0000 ||
7593                 error "pool_add failed"
7594 }
7595
7596 #
7597 # check permanent parameters
7598 #
7599 test_109_test_params() {
7600         local fsname=$1
7601
7602         local atime_diff=$(do_facet mds $LCTL \
7603                 get_param -n mdd.$fsname-MDT0000.atime_diff)
7604         [ $atime_diff == 63 ] || error "wrong mdd parameter after clear_conf"
7605         local max_read_ahead_mb=$(do_facet client $LCTL \
7606                 get_param -n llite.$fsname*.max_read_ahead_mb)
7607         [ $max_read_ahead_mb == 64 ] ||
7608                 error "wrong llite parameter after clear_conf"
7609         local ost_in_pool=$(do_facet mds $LCTL pool_list $fsname.pool1 |
7610                 grep -v "^Pool:" | sed 's/_UUID//')
7611         [ $ost_in_pool = "$fsname-OST0000" ] ||
7612                 error "wrong pool after clear_conf"
7613 }
7614
7615 #
7616 # run lctl clear_conf, store CONFIGS before and after that
7617 #
7618 test_109_clear_conf()
7619 {
7620         local clear_conf_arg=$1
7621
7622         local mgsdev
7623         if ! combined_mgs_mds ; then
7624                 mgsdev=$MGSDEV
7625                 stop_mgs || error "stop_mgs failed"
7626                 start_mgs "-o nosvc" || error "start_mgs nosvc failed"
7627         else
7628                 mgsdev=$(mdsdevname 1)
7629                 start_mdt 1 "-o nosvc" || error "start_mdt 1 nosvc failed"
7630         fi
7631
7632         do_facet mgs "rm -rf $TMP/${tdir}/conf1; mkdir -p $TMP/${tdir}/conf1;" \
7633                 "$DEBUGFS -c -R \\\"rdump CONFIGS $TMP/${tdir}/conf1\\\" \
7634                 $mgsdev"
7635
7636         #
7637         # the command being tested
7638         #
7639         do_facet mgs $LCTL clear_conf $clear_conf_arg ||
7640                 error "clear_conf failed"
7641         if ! combined_mgs_mds ; then
7642                 stop_mgs || error "stop_mgs failed"
7643         else
7644                 stop_mdt 1 || error "stop_mdt 1 failed"
7645         fi
7646
7647         do_facet mgs "rm -rf $TMP/${tdir}/conf2; mkdir -p $TMP/${tdir}/conf2;" \
7648                 "$DEBUGFS -c -R \\\"rdump CONFIGS $TMP/${tdir}/conf2\\\" \
7649                 $mgsdev"
7650 }
7651
7652 test_109_file_shortened() {
7653         local file=$1
7654         local sizes=($(do_facet mgs "stat -c %s " \
7655                 "$TMP/${tdir}/conf1/CONFIGS/$file" \
7656                 "$TMP/${tdir}/conf2/CONFIGS/$file"))
7657         [ ${sizes[1]} -lt ${sizes[0]} ] && return 0
7658         return 1
7659 }
7660
7661 test_109a()
7662 {
7663         [ "$(facet_fstype mgs)" == "zfs" ] &&
7664                 skip "LU-8727: no implementation for ZFS" && return
7665         stopall
7666         reformat
7667         setup_noconfig
7668         client_up || error "client_up failed"
7669
7670         #
7671         # set number of permanent parameters
7672         #
7673         test_109_set_params $FSNAME
7674
7675         umount_client $MOUNT || error "umount_client failed"
7676         stop_ost || error "stop_ost failed"
7677         stop_mds || error "stop_mds failed"
7678
7679         test_109_clear_conf $FSNAME
7680         #
7681         # make sure that all configs are cleared
7682         #
7683         test_109_file_shortened $FSNAME-MDT0000 ||
7684                 error "failed to clear MDT0000 config"
7685         test_109_file_shortened $FSNAME-client ||
7686                 error "failed to clear client config"
7687
7688         setup_noconfig
7689
7690         #
7691         # check that configurations are intact
7692         #
7693         test_109_test_params $FSNAME
7694
7695         #
7696         # Destroy pool.
7697         #
7698         destroy_test_pools || error "destroy test pools failed"
7699
7700         cleanup
7701 }
7702 run_test 109a "test lctl clear_conf fsname"
7703
7704 test_109b()
7705 {
7706         [ "$(facet_fstype mgs)" == "zfs" ] &&
7707                 skip "LU-8727: no implementation for ZFS" && return
7708         stopall
7709         reformat
7710         setup_noconfig
7711         client_up || error "client_up failed"
7712
7713         #
7714         # set number of permanent parameters
7715         #
7716         test_109_set_params $FSNAME
7717
7718         umount_client $MOUNT || error "umount_client failed"
7719         stop_ost || error "stop_ost failed"
7720         stop_mds || error "stop_mds failed"
7721
7722         test_109_clear_conf $FSNAME-MDT0000
7723         #
7724         # make sure that only one config is cleared
7725         #
7726         test_109_file_shortened $FSNAME-MDT0000 ||
7727                 error "failed to clear MDT0000 config"
7728         test_109_file_shortened $FSNAME-client &&
7729                 error "failed to clear client config"
7730
7731         setup_noconfig
7732
7733         #
7734         # check that configurations are intact
7735         #
7736         test_109_test_params $FSNAME
7737
7738         #
7739         # Destroy pool.
7740         #
7741         destroy_test_pools || error "destroy test pools failed"
7742
7743         cleanup
7744 }
7745 run_test 109b "test lctl clear_conf one config"
7746
7747 test_122() {
7748         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
7749         [[ $(lustre_version_code ost1) -ge $(version_code 2.10.6) ]] ||
7750                 { skip "Need OST version at least 2.10.6" && return 0; }
7751
7752
7753         reformat
7754         LOAD_MODULES_REMOTE=true load_modules
7755 #define OBD_FAIL_OFD_SET_OID 0x1e0
7756         do_facet ost1 $LCTL set_param fail_loc=0x00001e0
7757
7758         setupall
7759         $LFS mkdir -i1 -c1 $DIR/$tdir
7760         $LFS setstripe -i0 -c1 $DIR/$tdir
7761         do_facet ost1 $LCTL set_param fail_loc=0
7762         createmany -o $DIR/$tdir/file_ 1000 ||
7763                 error "Fail to create a new sequence"
7764
7765         reformat
7766 }
7767 run_test 122 "Check OST sequence update"
7768
7769 test_123aa() {
7770         remote_mgs_nodsh && skip "remote MGS with nodsh"
7771         [ -d $MOUNT/.lustre ] || setupall
7772
7773         # test old logid format until removal from llog_ioctl.c::str2logid()
7774         if [ $(lustre_version_code MGS) -lt $(version_code 3.1.53) ]; then
7775                 do_facet mgs $LCTL dl | grep MGS
7776                 do_facet mgs "$LCTL --device %MGS llog_print \
7777                               \\\\\\\$$FSNAME-client 1 10" ||
7778                         error "old llog_print failed"
7779         fi
7780
7781         # test new logid format
7782         if [ $(lustre_version_code MGS) -ge $(version_code 2.9.53) ]; then
7783                 do_facet mgs "$LCTL --device MGS llog_print $FSNAME-client" ||
7784                         error "new llog_print failed"
7785         fi
7786 }
7787 run_test 123aa "llog_print works with FIDs and simple names"
7788
7789 test_123ab() {
7790         remote_mgs_nodsh && skip "remote MGS with nodsh"
7791         [[ $(lustre_version_code MGS) -gt $(version_code 2.11.51) ]] ||
7792                 skip "Need server with working llog_print support"
7793
7794         [ -d $MOUNT/.lustre ] || setupall
7795
7796         local yaml
7797         local orig_val
7798
7799         orig_val=$(do_facet mgs $LCTL get_param jobid_name)
7800         do_facet mgs $LCTL set_param -P jobid_name="testname"
7801
7802         yaml=$(do_facet mgs $LCTL --device MGS llog_print params |
7803                grep jobid_name | tail -n 1)
7804
7805         local param=$(awk '{ print $10 }' <<< "$yaml")
7806         local val=$(awk '{ print $12 }' <<< "$yaml")
7807         #return to the default
7808         do_facet mgs $LCTL set_param -P jobid_name=$orig_val
7809         [ $val = "testname" ] || error "bad value: $val"
7810         [ $param = "jobid_name," ] || error "Bad param: $param"
7811 }
7812 run_test 123ab "llog_print params output values from set_param -P"
7813
7814 test_123ac() { # LU-11566
7815         remote_mgs_nodsh && skip "remote MGS with nodsh"
7816         do_facet mgs "$LCTL help llog_print" 2>&1 | grep -q -- --start ||
7817                 skip "Need 'lctl llog_print --start' on MGS"
7818
7819         local start=10
7820         local end=50
7821
7822         [ -d $MOUNT/.lustre ] || setupall
7823
7824         # - { index: 10, event: add_uuid, nid: 192.168.20.1@tcp(0x20000c0a81401,
7825         #     node: 192.168.20.1@tcp }
7826         do_facet mgs $LCTL --device MGS \
7827                 llog_print --start $start --end $end $FSNAME-client | tr -d , |
7828                 while read DASH BRACE INDEX idx EVENT BLAH BLAH BLAH; do
7829                 (( idx >= start )) || error "llog_print index $idx < $start"
7830                 (( idx <= end )) || error "llog_print index $idx > $end"
7831         done
7832 }
7833 run_test 123ac "llog_print with --start and --end"
7834
7835 test_123ad() { # LU-11566
7836         remote_mgs_nodsh && skip "remote MGS with nodsh"
7837         # older versions of lctl may not print all records properly
7838         do_facet mgs "$LCTL help llog_print" 2>&1 | grep -q -- --start ||
7839                 skip "Need 'lctl llog_print --start' on MGS"
7840
7841         [ -d $MOUNT/.lustre ] || setupall
7842
7843         # append a new record, to avoid issues if last record was cancelled
7844         local old=$($LCTL get_param -n osc.*-OST0000-*.max_dirty_mb | head -1)
7845         do_facet mgs $LCTL conf_param $FSNAME-OST0000.osc.max_dirty_mb=$old
7846
7847         # logid:            [0x3:0xa:0x0]:0
7848         # flags:            4 (plain)
7849         # records_count:    72
7850         # last_index:       72
7851         local num=$(do_facet mgs $LCTL --device MGS llog_info $FSNAME-client |
7852                     awk '/last_index:/ { print $2 - 1 }')
7853
7854         # - { index: 71, event: set_timeout, num: 0x14, param: sys.timeout=20 }
7855         local last=$(do_facet mgs $LCTL --device MGS llog_print $FSNAME-client |
7856                      tail -1 | awk '{ print $4 }' | tr -d , )
7857         (( last == num )) || error "llog_print only showed $last/$num records"
7858 }
7859 run_test 123ad "llog_print shows all records"
7860
7861 if ! combined_mgs_mds ; then
7862         stop mgs
7863 fi
7864
7865 cleanup_gss
7866
7867 # restore the values of MDSSIZE and OSTSIZE
7868 MDSSIZE=$STORED_MDSSIZE
7869 OSTSIZE=$STORED_OSTSIZE
7870 reformat
7871
7872 complete $SECONDS
7873 exit_status