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