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