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