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