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