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