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