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