Whamcloud - gitweb
5fe683c215488e242af064d890a97b655e701bc7
[fs/lustre-release.git] / lustre / tests / conf-sanity.sh
1 #!/bin/bash
2
3 set -e
4
5 ONLY=${ONLY:-"$*"}
6
7 # bug number for skipped test:     LU-7428
8 ALWAYS_EXCEPT="$CONF_SANITY_EXCEPT 84"
9 # UPDATE THE COMMENT ABOVE WITH BUG NUMBERS WHEN CHANGING ALWAYS_EXCEPT!
10
11 is_sles11()                                             # LU-2181
12 {
13         if [ -r /etc/SuSE-release ]
14         then
15                 local vers=$(grep VERSION /etc/SuSE-release | awk '{print $3}')
16                 local patchlev=$(grep PATCHLEVEL /etc/SuSE-release |
17                         awk '{ print $3 }')
18                 if [ $vers -eq 11 ] && [ $patchlev -eq 2 ]
19                 then
20                         return 0
21                 fi
22         fi
23         return 1
24 }
25
26 if is_sles11; then                                      # LU-2181
27         ALWAYS_EXCEPT="$ALWAYS_EXCEPT 23a 34b"
28 fi
29
30 if [ "$FAILURE_MODE" = "HARD" ]; then
31         CONFIG_EXCEPTIONS="24a " &&
32         echo "Except the tests: $CONFIG_EXCEPTIONS for " \
33              "FAILURE_MODE=$FAILURE_MODE, b=23573" &&
34                 ALWAYS_EXCEPT="$ALWAYS_EXCEPT $CONFIG_EXCEPTIONS"
35 fi
36
37 # bug number for skipped test:
38 # a tool to create lustre filesystem images
39 ALWAYS_EXCEPT="32newtarball $ALWAYS_EXCEPT"
40
41 SRCDIR=$(dirname $0)
42 PATH=$PWD/$SRCDIR:$SRCDIR:$SRCDIR/../utils:$PATH
43
44 PTLDEBUG=${PTLDEBUG:--1}
45 SAVE_PWD=$PWD
46 LUSTRE=${LUSTRE:-$(dirname $0)/..}
47 RLUSTRE=${RLUSTRE:-$LUSTRE}
48 export MULTIOP=${MULTIOP:-multiop}
49
50 . $LUSTRE/tests/test-framework.sh
51 init_test_env $@
52 . ${CONFIG:=$LUSTRE/tests/cfg/$NAME.sh}
53
54 # use small MDS + OST size to speed formatting time
55 # do not use too small MDSSIZE/OSTSIZE, which affect the default journal size
56 # STORED_MDSSIZE is used in test_18
57 STORED_MDSSIZE=$MDSSIZE
58 STORED_OSTSIZE=$OSTSIZE
59 MDSSIZE=200000
60 OSTSIZE=200000
61
62 fs2mds_HOST=$mds_HOST
63 fs2ost_HOST=$ost_HOST
64 fs3ost_HOST=$ost_HOST
65
66 MDSDEV1_2=$fs2mds_DEV
67 OSTDEV1_2=$fs2ost_DEV
68 OSTDEV2_2=$fs3ost_DEV
69
70 if ! combined_mgs_mds; then
71     # bug number for skipped test:    23954
72     ALWAYS_EXCEPT="$ALWAYS_EXCEPT       24b"
73 fi
74
75 # pass "-E lazy_itable_init" to mke2fs to speed up the formatting time
76 if [[ "$LDISKFS_MKFS_OPTS" != *lazy_itable_init* ]]; then
77         LDISKFS_MKFS_OPTS=$(csa_add "$LDISKFS_MKFS_OPTS" -E lazy_itable_init)
78 fi
79
80 [ $(facet_fstype $SINGLEMDS) = "zfs" ] &&
81 # bug number for skipped test:        LU-4444
82         ALWAYS_EXCEPT="$ALWAYS_EXCEPT 69"
83
84 init_logging
85
86 #
87 require_dsh_mds || exit 0
88 require_dsh_ost || exit 0
89 #
90 [ "$SLOW" = "no" ] && EXCEPT_SLOW="30a 31 45 69"
91
92 assert_DIR
93
94 gen_config() {
95         # The MGS must be started before the OSTs for a new fs, so start
96         # and stop to generate the startup logs.
97         start_mds
98         start_ost
99         wait_osc_import_state mds ost FULL
100         stop_ost
101         stop_mds
102 }
103
104 reformat_and_config() {
105         reformat
106         if ! combined_mgs_mds ; then
107                 start_mgs
108         fi
109         gen_config
110 }
111
112 writeconf_or_reformat() {
113         # There are at most 2 OSTs for write_conf test
114         # who knows if/where $TUNEFS is installed?
115         # Better reformat if it fails...
116         writeconf_all $MDSCOUNT 2 ||
117                 { echo "tunefs failed, reformatting instead" &&
118                   reformat_and_config && return 0; }
119         return 0
120 }
121
122 reformat() {
123         formatall
124 }
125
126 start_mgs () {
127         echo "start mgs"
128         start mgs $(mgsdevname) $MGS_MOUNT_OPTS
129 }
130
131 start_mdt() {
132         local num=$1
133         local facet=mds$num
134         local dev=$(mdsdevname $num)
135         shift 1
136
137         echo "start mds service on `facet_active_host $facet`"
138         start $facet ${dev} $MDS_MOUNT_OPTS $@ || return 94
139 }
140
141 stop_mdt() {
142         local num=$1
143         local facet=mds$num
144         local dev=$(mdsdevname $num)
145         shift 1
146
147         echo "stop mds service on `facet_active_host $facet`"
148         # These tests all use non-failover stop
149         stop $facet -f || return 97
150 }
151
152 start_mds() {
153         local num
154
155         for num in $(seq $MDSCOUNT); do
156                 start_mdt $num $@ || return 94
157         done
158 }
159
160 start_mgsmds() {
161         if ! combined_mgs_mds ; then
162                 start_mgs
163         fi
164         start_mds $@
165 }
166
167 stop_mds() {
168         local num
169         for num in $(seq $MDSCOUNT); do
170                 stop_mdt $num || return 97
171         done
172 }
173
174 stop_mgs() {
175        echo "stop mgs service on `facet_active_host mgs`"
176        # These tests all use non-failover stop
177        stop mgs -f  || return 97
178 }
179
180 start_ost() {
181         echo "start ost1 service on `facet_active_host ost1`"
182         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS $@ || return 95
183 }
184
185 stop_ost() {
186         echo "stop ost1 service on `facet_active_host ost1`"
187         # These tests all use non-failover stop
188         stop ost1 -f || return 98
189 }
190
191 start_ost2() {
192         echo "start ost2 service on `facet_active_host ost2`"
193         start ost2 $(ostdevname 2) $OST_MOUNT_OPTS $@ || return 92
194 }
195
196 stop_ost2() {
197         echo "stop ost2 service on `facet_active_host ost2`"
198         # These tests all use non-failover stop
199         stop ost2 -f || return 93
200 }
201
202 mount_client() {
203         local MOUNTPATH=$1
204         echo "mount $FSNAME on ${MOUNTPATH}....."
205         zconf_mount $(hostname) $MOUNTPATH || return 96
206 }
207
208 remount_client() {
209         local mountopt="remount,$1"
210         local MOUNTPATH=$2
211         echo "remount '$1' lustre on ${MOUNTPATH}....."
212         zconf_mount $(hostname) $MOUNTPATH "$mountopt" || return 96
213 }
214
215 umount_client() {
216         local mountpath=$1
217         shift
218         echo "umount lustre on $mountpath....."
219         zconf_umount $HOSTNAME $mountpath $@ || return 97
220 }
221
222 manual_umount_client(){
223         local rc
224         local FORCE=$1
225         echo "manual umount lustre on ${MOUNT}...."
226         do_facet client "umount ${FORCE} $MOUNT"
227         rc=$?
228         return $rc
229 }
230
231 setup() {
232         start_mds || error "MDT start failed"
233         start_ost || error "Unable to start OST1"
234         mount_client $MOUNT || error "client start failed"
235         client_up || error "client_up failed"
236 }
237
238 setup_noconfig() {
239         start_mgsmds
240         start_ost
241         mount_client $MOUNT
242 }
243
244 unload_modules_conf () {
245         if combined_mgs_mds || ! local_mode; then
246                 unload_modules || return 1
247         fi
248 }
249
250 cleanup_nocli() {
251         stop_ost || return 202
252         stop_mds || return 201
253         unload_modules_conf || return 203
254 }
255
256 cleanup() {
257         umount_client $MOUNT || return 200
258         cleanup_nocli || return $?
259 }
260
261 cleanup_fs2() {
262         trap 0
263         echo "umount $MOUNT2 ..."
264         umount $MOUNT2 || true
265         echo "stopping fs2mds ..."
266         stop fs2mds -f || true
267         echo "stopping fs2ost ..."
268         stop fs2ost -f || true
269 }
270
271 check_mount() {
272         do_facet client "cp /etc/passwd $DIR/a" || return 71
273         do_facet client "rm $DIR/a" || return 72
274         # make sure lustre is actually mounted (touch will block,
275         # but grep won't, so do it after)
276         do_facet client "grep $MOUNT' ' /proc/mounts > /dev/null" || return 73
277         echo "setup single mount lustre success"
278 }
279
280 check_mount2() {
281         do_facet client "touch $DIR/a" || return 71
282         do_facet client "rm $DIR/a" || return 72
283         do_facet client "touch $DIR2/a" || return 73
284         do_facet client "rm $DIR2/a" || return 74
285         echo "setup double mount lustre success"
286 }
287
288 build_test_filter
289
290 if [ "$ONLY" == "setup" ]; then
291         setup
292         exit
293 fi
294
295 if [ "$ONLY" == "cleanup" ]; then
296         cleanup
297         exit
298 fi
299
300 init_gss
301
302 #create single point mountpoint
303
304 reformat_and_config
305
306 test_0() {
307         setup
308         check_mount || error "check_mount failed"
309         cleanup || error "cleanup failed with $?"
310 }
311 run_test 0 "single mount setup"
312
313 test_1() {
314         start_mds || error "MDS start failed"
315         start_ost || error "unable to start OST"
316         echo "start ost second time..."
317         start_ost && error "2nd OST start should fail"
318         mount_client $MOUNT || error "client start failed"
319         check_mount || error "check_mount failed"
320         cleanup || error "cleanup failed with $?"
321 }
322 run_test 1 "start up ost twice (should return errors)"
323
324 test_2() {
325         start_mds || error "MDT start failed"
326         echo "start mds second time.."
327         start_mds && error "2nd MDT start should fail"
328         start_ost || error "OST start failed"
329         mount_client $MOUNT || error "mount_client failed to start client"
330         check_mount || error "check_mount failed"
331         cleanup || error "cleanup failed with $?"
332 }
333 run_test 2 "start up mds twice (should return err)"
334
335 test_3() {
336         setup
337         #mount.lustre returns an error if already in mtab
338         mount_client $MOUNT && error "2nd client mount should fail"
339         check_mount || error "check_mount failed"
340         cleanup || error "cleanup failed with $?"
341 }
342 run_test 3 "mount client twice (should return err)"
343
344 test_4() {
345         setup
346         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
347         stop_ost || error "Unable to stop OST1"
348         umount_client $MOUNT -f || error “unmount $MOUNT failed”
349         cleanup_nocli
350         eno=$?
351         # ok for ost to fail shutdown
352         if [ 202 -ne $eno ] && [ 0 -ne $eno ]; then
353                 error "cleanup failed with $?"
354         fi
355 }
356 run_test 4 "force cleanup ost, then cleanup"
357
358 test_5a() {     # was test_5
359         setup
360         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
361         fuser -m -v $MOUNT && echo "$MOUNT is in use by user space process."
362
363         stop_mds || error "Unable to stop MDS"
364
365         # cleanup may return an error from the failed
366         # disconnects; for now I'll consider this successful
367         # if all the modules have unloaded.
368         $UMOUNT -f $MOUNT &
369         UMOUNT_PID=$!
370         sleep 6
371         echo "killing umount"
372         kill -TERM $UMOUNT_PID
373         echo "waiting for umount to finish"
374         wait $UMOUNT_PID
375         if grep " $MOUNT " /proc/mounts; then
376                 echo "test 5: /proc/mounts after failed umount"
377                 umount -f $MOUNT &
378                 UMOUNT_PID=$!
379                 sleep 2
380                 echo "killing umount"
381                 kill -TERM $UMOUNT_PID
382                 echo "waiting for umount to finish"
383                 wait $UMOUNT_PID
384                 grep " $MOUNT " /proc/mounts &&
385                         error "/proc/mounts after second umount"
386         fi
387
388         # manual_mount_client may fail due to umount succeeding above
389         manual_umount_client
390         # stop_mds is a no-op here, and should not fail
391         cleanup_nocli || error "cleanup_nocli failed with $?"
392         # df may have lingering entry
393         manual_umount_client
394         # mtab may have lingering entry
395         local WAIT=0
396         local MAX_WAIT=20
397         local sleep=1
398         while [ "$WAIT" -ne "$MAX_WAIT" ]; do
399                 sleep $sleep
400                 grep -q $MOUNT" " /etc/mtab || break
401                 echo "Waiting /etc/mtab updated ... "
402                 WAIT=$(( WAIT + sleep))
403         done
404         [ "$WAIT" -eq "$MAX_WAIT" ] &&
405                 error "/etc/mtab is not updated in $WAIT secs"
406         echo "/etc/mtab updated in $WAIT secs"
407 }
408 run_test 5a "force cleanup mds, then cleanup"
409
410 cleanup_5b () {
411         trap 0
412         start_mgs
413 }
414
415 test_5b() {
416         grep " $MOUNT " /etc/mtab &&
417                 error false "unexpected entry in mtab before mount" && return 10
418
419         start_ost || error "OST start failed"
420         if ! combined_mgs_mds ; then
421                 trap cleanup_5b EXIT ERR
422                 start_mds || error "MDS start failed"
423                 stop mgs
424         fi
425
426         mount_client $MOUNT && error "mount_client $MOUNT should fail"
427         grep " $MOUNT " /etc/mtab &&
428                 error "$MOUNT entry in mtab after failed mount"
429         umount_client $MOUNT
430         # stop_mds is a no-op here, and should not fail
431         cleanup_nocli || error "cleanup_nocli failed with $?"
432         if ! combined_mgs_mds ; then
433                 cleanup_5b
434         fi
435 }
436 run_test 5b "Try to start a client with no MGS (should return errs)"
437
438 test_5c() {
439         grep " $MOUNT " /etc/mtab &&
440                 error false "unexpected entry in mtab before mount" && return 10
441
442         start_mds || error "MDS start failed"
443         start_ost || error "OST start failed"
444         local oldfs="${FSNAME}"
445         FSNAME="wrong.${FSNAME}"
446         mount_client $MOUNT || :
447         FSNAME=${oldfs}
448         grep " $MOUNT " /etc/mtab &&
449                 error "$MOUNT entry in mtab after failed mount"
450         umount_client $MOUNT
451         cleanup_nocli || error "cleanup_nocli failed with $?"
452 }
453 run_test 5c "cleanup after failed mount (bug 2712) (should return errs)"
454
455 test_5d() {
456         grep " $MOUNT " /etc/mtab &&
457                 error false "unexpected entry in mtab before mount" && return 10
458
459         start_ost || error "OST start failed"
460         start_mds || error "MDS start failed"
461         stop_ost || error "Unable to stop OST1"
462         mount_client $MOUNT || error "mount_client $MOUNT failed"
463         umount_client $MOUNT -f || error "umount_client $MOUNT failed"
464         cleanup_nocli || error "cleanup_nocli failed with $?"
465         grep " $MOUNT " /etc/mtab &&
466                 error "$MOUNT entry in mtab after unmount"
467         pass
468 }
469 run_test 5d "mount with ost down"
470
471 test_5e() {
472         grep " $MOUNT " /etc/mtab &&
473                 error false "unexpected entry in mtab before mount" && return 10
474
475         start_mds || error "MDS start failed"
476         start_ost || error "OST start failed"
477
478         #define OBD_FAIL_PTLRPC_DELAY_SEND       0x506
479         do_facet client "$LCTL set_param fail_loc=0x80000506"
480         mount_client $MOUNT || echo "mount failed (not fatal)"
481         cleanup || error "cleanup failed with $?"
482         grep " $MOUNT " /etc/mtab &&
483                 error "$MOUNT entry in mtab after unmount"
484         pass
485 }
486 run_test 5e "delayed connect, don't crash (bug 10268)"
487
488 test_5f() {
489         if combined_mgs_mds ; then
490                 skip "combined mgs and mds"
491                 return 0
492         fi
493
494         grep " $MOUNT " /etc/mtab &&
495                 error false "unexpected entry in mtab before mount" && return 10
496
497         local rc=0
498         start_ost || error "OST start failed"
499         mount_client $MOUNT &
500         local pid=$!
501         echo client_mount pid is $pid
502
503         sleep 5
504
505         if ! ps -f -p $pid >/dev/null; then
506                 wait $pid
507                 rc=$?
508                 grep " $MOUNT " /etc/mtab && echo "test 5f: mtab after mount"
509                 error "mount returns $rc, expected to hang"
510                 rc=11
511                 cleanup || error "cleanup failed with $?"
512                 return $rc
513         fi
514
515         # start mds
516         start_mds || error "start MDS failed"
517
518         # mount should succeed after start mds
519         wait $pid
520         grep " $MOUNT " /etc/mtab && echo "test 5f: mtab after mount"
521         cleanup || error "final call to cleanup failed with rc $?"
522 }
523 run_test 5f "mds down, cleanup after failed mount (bug 2712)"
524
525 test_6() {
526         setup
527         manual_umount_client
528         mount_client $MOUNT || error "mount_client $MOUNT failed"
529         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
530         cleanup || error "cleanup failed with rc $?"
531 }
532 run_test 6 "manual umount, then mount again"
533
534 test_7() {
535         setup
536         manual_umount_client
537         cleanup_nocli || error "cleanup_nocli failed with $?"
538 }
539 run_test 7 "manual umount, then cleanup"
540
541 test_8() {
542         setup
543         mount_client $MOUNT2 || error "mount_client $MOUNT2 failed"
544         check_mount2 || error "check_mount2 failed"
545         umount_client $MOUNT2 || error "umount_client $MOUNT2 failed"
546         cleanup || error "cleanup failed with rc $?"
547 }
548 run_test 8 "double mount setup"
549
550 test_9() {
551         start_ost || error "OST start failed"
552
553         do_facet ost1 $LCTL set_param debug=\'inode trace\' ||
554                 error "do_facet ost1 set_param inode trace failed."
555         do_facet ost1 $LCTL set_param subsystem_debug=\'mds ost\' ||
556                 error "do_facet ost1 set_param debug mds ost failed."
557
558         CHECK_PTLDEBUG="`do_facet ost1 $LCTL get_param -n debug`"
559         if [ "$CHECK_PTLDEBUG" ] && { \
560            [ "$CHECK_PTLDEBUG" = "trace inode warning error emerg console" ] ||
561            [ "$CHECK_PTLDEBUG" = "trace inode" ]; }; then
562                 echo "lnet.debug success"
563         else
564                 error "lnet.debug: want 'trace inode', have '$CHECK_PTLDEBUG'"
565         fi
566         CHECK_SUBSYS="`do_facet ost1 $LCTL get_param -n subsystem_debug`"
567         if [ "$CHECK_SUBSYS" ] && [ "$CHECK_SUBSYS" = "mds ost" ]; then
568                 echo "lnet.subsystem_debug success"
569         else
570                 error "lnet.subsystem_debug: want 'mds ost' got '$CHECK_SUBSYS'"
571         fi
572         stop_ost || error "Unable to stop OST1"
573 }
574 run_test 9 "test ptldebug and subsystem for mkfs"
575
576 is_blkdev () {
577         local facet=$1
578         local dev=$2
579         local size=${3:-""}
580
581         local rc=0
582         do_facet $facet "test -b $dev" || rc=1
583         if [[ "$size" ]]; then
584                 local in=$(do_facet $facet "dd if=$dev of=/dev/null bs=1k \
585                            count=1 skip=$size 2>&1" |
586                         awk '($3 == "in") { print $1 }')
587                 [[ $in  = "1+0" ]] || rc=1
588         fi
589         return $rc
590 }
591
592 #
593 # Test 16 was to "verify that lustre will correct the mode of OBJECTS".
594 # But with new MDS stack we don't care about the mode of local objects
595 # anymore, so this test is removed. See bug 22944 for more details.
596 #
597
598 test_17() {
599         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
600                 skip "Only applicable to ldiskfs-based MDTs"
601                 return
602         fi
603
604         setup
605         check_mount || error "check_mount failed"
606         cleanup || error "cleanup failed with rc $?"
607
608         echo "Remove mds config log"
609         if ! combined_mgs_mds ; then
610                 stop mgs
611         fi
612
613         do_facet mgs "$DEBUGFS -w -R 'unlink CONFIGS/$FSNAME-MDT0000' \
614                       $(mgsdevname) || return \$?" ||
615                 error "do_facet mgs failed with $?"
616
617         if ! combined_mgs_mds ; then
618                 start_mgs
619         fi
620
621         start_ost || error "OST start failed"
622         start_mds && error "MDS start succeeded, but should fail"
623         reformat_and_config
624 }
625 run_test 17 "Verify failed mds_postsetup won't fail assertion (2936) (should return errs)"
626
627 test_18() {
628         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
629                 skip "Only applicable to ldiskfs-based MDTs"
630                 return
631         fi
632
633         local MDSDEV=$(mdsdevname ${SINGLEMDS//mds/})
634
635         local MIN=2000000
636
637         local OK=
638         # check if current MDSSIZE is large enough
639         [ $MDSSIZE -ge $MIN ] && OK=1 && myMDSSIZE=$MDSSIZE &&
640                 log "use MDSSIZE=$MDSSIZE"
641
642         # check if the global config has a large enough MDSSIZE
643         [ -z "$OK" -a ! -z "$STORED_MDSSIZE" ] &&
644                 [ $STORED_MDSSIZE -ge $MIN ] &&
645                 OK=1 && myMDSSIZE=$STORED_MDSSIZE &&
646                 log "use STORED_MDSSIZE=$STORED_MDSSIZE"
647
648         # check if the block device is large enough
649         is_blkdev $SINGLEMDS $MDSDEV $MIN
650         local large_enough=$?
651         if [ -n "$OK" ]; then
652                 [ $large_enough -ne 0 ] && OK=""
653         else
654                 [ $large_enough -eq 0 ] && OK=1 && myMDSSIZE=$MIN &&
655                         log "use device $MDSDEV with MIN=$MIN"
656         fi
657
658         # check if a loopback device has enough space for fs metadata (5%)
659
660         if [ -z "$OK" ]; then
661                 local SPACE=$(do_facet $SINGLEMDS "[ -f $MDSDEV -o ! \
662                               -e $MDSDEV ] && df -P \\\$(dirname $MDSDEV)" |
663                         awk '($1 != "Filesystem") { print $4 }')
664                 ! [ -z "$SPACE" ] && [ $SPACE -gt $((MIN / 20)) ] &&
665                         OK=1 && myMDSSIZE=$MIN &&
666                         log "use file $MDSDEV with MIN=$MIN"
667         fi
668
669         [ -z "$OK" ] && skip_env "$MDSDEV too small for ${MIN}kB MDS" && return
670
671         echo "mount mds with large journal..."
672
673         local OLD_MDSSIZE=$MDSSIZE
674         MDSSIZE=$myMDSSIZE
675
676         reformat_and_config
677         echo "mount lustre system..."
678         setup
679         check_mount || error "check_mount failed"
680
681         echo "check journal size..."
682         local FOUNDSIZE=$(do_facet $SINGLEMDS "$DEBUGFS -c -R 'stat <8>' $MDSDEV" | awk '/Size: / { print $NF; exit;}')
683         if [ $FOUNDSIZE -gt $((32 * 1024 * 1024)) ]; then
684                 log "Success: mkfs creates large journals. Size: $((FOUNDSIZE >> 20))M"
685         else
686                 error "expected journal size > 32M, found $((FOUNDSIZE >> 20))M"
687         fi
688
689         cleanup || error "cleanup failed with rc $?"
690
691         MDSSIZE=$OLD_MDSSIZE
692         reformat_and_config
693 }
694 run_test 18 "check mkfs creates large journals"
695
696 test_19a() {
697         start_mds || error "MDS start failed"
698         stop_mds || error "Unable to stop MDS"
699 }
700 run_test 19a "start/stop MDS without OSTs"
701
702 test_19b() {
703         start_ost || error "Unable to start OST1"
704         stop_ost || error "Unable to stop OST1"
705 }
706 run_test 19b "start/stop OSTs without MDS"
707
708 test_20() {
709         # first format the ost/mdt
710         start_mds || error "MDS start failed"
711         start_ost || error "Unable to start OST1"
712         mount_client $MOUNT || error "mount_client $MOUNT failed"
713         check_mount || error "check_mount failed"
714         rm -f $DIR/$tfile || error "remove $DIR/$tfile failed."
715         remount_client ro $MOUNT || error "remount_client with ro failed"
716         touch $DIR/$tfile && error "$DIR/$tfile created incorrectly"
717         [ -e $DIR/$tfile ] && error "$DIR/$tfile exists incorrectly"
718         remount_client rw $MOUNT || error "remount_client with rw failed"
719         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
720         MCNT=$(grep -c $MOUNT /etc/mtab)
721         [ "$MCNT" -ne 1 ] && error "$MOUNT in /etc/mtab $MCNT times"
722         umount_client $MOUNT
723         stop_mds || error "Unable to stop MDS"
724         stop_ost || error "Unable to stop OST1"
725 }
726 run_test 20 "remount ro,rw mounts work and doesn't break /etc/mtab"
727
728 test_21a() {
729         start_mds || error "MDS start failed"
730         start_ost || error "unable to start OST1"
731         wait_osc_import_state mds ost FULL
732         stop_ost || error "unable to stop OST1"
733         stop_mds || error "unable to stop MDS"
734 }
735 run_test 21a "start mds before ost, stop ost first"
736
737 test_21b() {
738         start_ost || error "unable to start OST1"
739         start_mds || error "MDS start failed"
740         wait_osc_import_state mds ost FULL
741         stop_mds || error "unable to stop MDS"
742         stop_ost || error "unable to stop OST1"
743 }
744 run_test 21b "start ost before mds, stop mds first"
745
746 test_21c() {
747         start_ost || error "Unable to start OST1"
748         start_mds || error "MDS start failed"
749         start_ost2 || error "Unable to start OST2"
750         wait_osc_import_state mds ost2 FULL
751         stop_ost || error "Unable to stop OST1"
752         stop_ost2 || error "Unable to stop OST2"
753         stop_mds || error "Unable to stop MDS"
754         #writeconf to remove all ost2 traces for subsequent tests
755         writeconf_or_reformat
756 }
757 run_test 21c "start mds between two osts, stop mds last"
758
759 test_21d() {
760         if combined_mgs_mds ; then
761                 skip "need separate mgs device" && return 0
762         fi
763         stopall
764
765         reformat
766
767         start_mgs || error "unable to start MGS"
768         start_ost || error "unable to start OST1"
769         start_ost2 || error "unable to start OST2"
770         start_mds || error "MDS start failed"
771         wait_osc_import_state mds ost2 FULL
772
773         stop_ost || error "Unable to stop OST1"
774         stop_ost2 || error "Unable to stop OST2"
775         stop_mds || error "Unable to stop MDS"
776         stop_mgs
777         #writeconf to remove all ost2 traces for subsequent tests
778         writeconf_or_reformat
779         start_mgs || error "unable to start MGS"
780 }
781 run_test 21d "start mgs then ost and then mds"
782
783 cleanup_21e() {
784         MGSNID="$saved_mgsnid"
785         cleanup_fs2
786         echo "stopping fs2mgs ..."
787         stop $fs2mgs -f || true
788 }
789
790 test_21e() { # LU-5863
791         if [[ -z "$fs3ost_DEV" || -z "$fs2ost_DEV" || -z "$fs2mds_DEV" ]]; then
792                 is_blkdev $SINGLEMDS $(mdsdevname ${SINGLEMDS//mds/}) &&
793                 skip_env "mixed loopback and real device not working" && return
794         fi
795
796         local fs2mdsdev=$(mdsdevname 1_2)
797         local fs2ostdev=$(ostdevname 1_2)
798         local fs3ostdev=$(ostdevname 2_2)
799
800         local fs2mdsvdev=$(mdsvdevname 1_2)
801         local fs2ostvdev=$(ostvdevname 1_2)
802         local fs3ostvdev=$(ostvdevname 2_2)
803
804         # temporarily use fs3ost as fs2mgs
805         local fs2mgs=fs3ost
806         local fs2mgsdev=$fs3ostdev
807         local fs2mgsvdev=$fs3ostvdev
808
809         local fsname=test1234
810
811         add $fs2mgs $(mkfs_opts mgs $fs2mgsdev) --fsname=$fsname \
812                 --reformat $fs2mgsdev $fs2mgsvdev || error "add fs2mgs failed"
813         start $fs2mgs $fs2mgsdev $MGS_MOUNT_OPTS && trap cleanup_21e EXIT INT ||
814                 error "start fs2mgs failed"
815
816         local saved_mgsnid="$MGSNID"
817         MGSNID=$(do_facet $fs2mgs $LCTL list_nids | xargs | tr ' ' ,)
818
819         add fs2mds $(mkfs_opts mds1 $fs2mdsdev $fsname) \
820                 --reformat $fs2mdsdev $fs2mdsvdev || error "add fs2mds failed"
821         add fs2ost $(mkfs_opts ost1 $fs2ostdev $fsname) \
822                 --reformat $fs2ostdev $fs2ostvdev || error "add fs2ost failed"
823
824         start fs2ost $fs2ostdev $OST_MOUNT_OPTS || error "start fs2ost failed"
825         start fs2mds $fs2mdsdev $MDS_MOUNT_OPTS || error "start fs2mds failed"
826
827         mkdir -p $MOUNT2 || error "mkdir $MOUNT2 failed"
828         $MOUNT_CMD $MGSNID:/$fsname $MOUNT2 || error "mount $MOUNT2 failed"
829         DIR=$MOUNT2 MOUNT=$MOUNT2 check_mount || error "check $MOUNT2 failed"
830
831         cleanup_21e
832 }
833 run_test 21e "separate MGS and MDS"
834
835 test_22() {
836         start_mds || error "MDS start failed"
837
838         echo "Client mount with ost in logs, but none running"
839         start_ost || error "unable to start OST1"
840         # wait until mds connected to ost and open client connection
841         wait_osc_import_state mds ost FULL
842         stop_ost || error "unable to stop OST1"
843         mount_client $MOUNT || error "mount_client $MOUNT failed"
844         # check_mount will block trying to contact ost
845         mcreate $DIR/$tfile || error "mcreate $DIR/$tfile failed"
846         rm -f $DIR/$tfile || error "remove $DIR/$tfile failed"
847         umount_client $MOUNT -f
848         pass
849
850         echo "Client mount with a running ost"
851         start_ost || error "unable to start OST1"
852         if $GSS; then
853                 # if gss enabled, wait full time to let connection from
854                 # mds to ost be established, due to the mismatch between
855                 # initial connect timeout and gss context negotiation timeout.
856                 # This perhaps could be remove after AT landed.
857                 echo "sleep $((TIMEOUT + TIMEOUT + TIMEOUT))s"
858                 sleep $((TIMEOUT + TIMEOUT + TIMEOUT))
859         fi
860         mount_client $MOUNT || error "mount_client $MOUNT failed"
861         wait_osc_import_state mds ost FULL
862         wait_osc_import_state client ost FULL
863         check_mount || error "check_mount failed"
864         pass
865
866         cleanup || error "cleanup failed with rc $?"
867 }
868 run_test 22 "start a client before osts (should return errs)"
869
870 test_23a() {    # was test_23
871         setup
872         # fail mds
873         stop $SINGLEMDS || error "failed to stop $SINGLEMDS"
874         # force down client so that recovering mds waits for reconnect
875         local running=$(grep -c $MOUNT /proc/mounts) || true
876         if [ $running -ne 0 ]; then
877                 echo "Stopping client $MOUNT (opts: -f)"
878                 umount -f $MOUNT
879         fi
880
881         # enter recovery on failed mds
882         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
883         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "MDS start failed"
884         # try to start a new client
885         mount_client $MOUNT &
886         sleep 5
887         MOUNT_PID=$(ps -ef | grep "t lustre" | grep -v grep | awk '{print $2}')
888         MOUNT_LUSTRE_PID=$(ps -ef | grep mount.lustre |
889                            grep -v grep | awk '{print $2}')
890         echo mount pid is ${MOUNT_PID}, mount.lustre pid is ${MOUNT_LUSTRE_PID}
891         ps --ppid $MOUNT_PID
892         ps --ppid $MOUNT_LUSTRE_PID
893         echo "waiting for mount to finish"
894         ps -ef | grep mount
895         # "ctrl-c" sends SIGINT but it usually (in script) does not work on child process
896         # SIGTERM works but it does not spread to offspring processses
897         kill -s TERM $MOUNT_PID
898         kill -s TERM $MOUNT_LUSTRE_PID
899         # we can not wait $MOUNT_PID because it is not a child of this shell
900         local PID1
901         local PID2
902         local WAIT=0
903         local MAX_WAIT=30
904         local sleep=1
905         while [ "$WAIT" -lt "$MAX_WAIT" ]; do
906                 sleep $sleep
907                 PID1=$(ps -ef | awk '{print $2}' | grep -w $MOUNT_PID)
908                 PID2=$(ps -ef | awk '{print $2}' | grep -w $MOUNT_LUSTRE_PID)
909                 echo PID1=$PID1
910                 echo PID2=$PID2
911                 [ -z "$PID1" -a -z "$PID2" ] && break
912                 echo "waiting for mount to finish ... "
913                 WAIT=$(( WAIT + sleep))
914         done
915         if [ "$WAIT" -eq "$MAX_WAIT" ]; then
916                 error "MOUNT_PID $MOUNT_PID and "\
917                 "MOUNT_LUSTRE_PID $MOUNT_LUSTRE_PID still not killed in $WAIT secs"
918                 ps -ef | grep mount
919         fi
920         stop_mds || error "stopping MDSes failed"
921         stop_ost || error "stopping OSSes failed"
922 }
923 run_test 23a "interrupt client during recovery mount delay"
924
925 umount_client $MOUNT
926 cleanup_nocli
927
928 test_23b() {    # was test_23
929         start_mds || error "MDS start failed"
930         start_ost || error "Unable to start OST1"
931         # Simulate -EINTR during mount OBD_FAIL_LDLM_CLOSE_THREAD
932         $LCTL set_param fail_loc=0x80000313
933         mount_client $MOUNT
934         cleanup || error "cleanup failed with rc $?"
935 }
936 run_test 23b "Simulate -EINTR during mount"
937
938 test_24a() {
939         local MDSDEV=$(mdsdevname ${SINGLEMDS//mds/})
940
941         if [ -z "$fs2ost_DEV" -o -z "$fs2mds_DEV" ]; then
942                 is_blkdev $SINGLEMDS $MDSDEV &&
943                 skip_env "mixed loopback and real device not working" && return
944         fi
945
946         [ -n "$ost1_HOST" ] && fs2ost_HOST=$ost1_HOST
947
948         local fs2mdsdev=$(mdsdevname 1_2)
949         local fs2ostdev=$(ostdevname 1_2)
950         local fs2mdsvdev=$(mdsvdevname 1_2)
951         local fs2ostvdev=$(ostvdevname 1_2)
952
953         # test 8-char fsname as well
954         local FSNAME2=test1234
955
956         add fs2mds $(mkfs_opts mds1 ${fs2mdsdev} ) --nomgs --mgsnode=$MGSNID \
957                 --fsname=${FSNAME2} --reformat $fs2mdsdev $fs2mdsvdev || exit 10
958
959         add fs2ost $(mkfs_opts ost1 ${fs2ostdev}) --fsname=${FSNAME2} \
960                 --reformat $fs2ostdev $fs2ostvdev || exit 10
961
962         setup
963         start fs2mds $fs2mdsdev $MDS_MOUNT_OPTS && trap cleanup_fs2 EXIT INT
964         start fs2ost $fs2ostdev $OST_MOUNT_OPTS
965         mkdir -p $MOUNT2 || error "mkdir $MOUNT2 failed"
966         $MOUNT_CMD $MGSNID:/${FSNAME2} $MOUNT2 || error "$MOUNT_CMD failed"
967         # 1 still works
968         check_mount || error "check_mount failed"
969         # files written on 1 should not show up on 2
970         cp /etc/passwd $DIR/$tfile
971         sleep 10
972         [ -e $MOUNT2/$tfile ] && error "File bleed"
973         # 2 should work
974         sleep 5
975         cp /etc/passwd $MOUNT2/$tfile ||
976                 error "cp /etc/passwd $MOUNT2/$tfile failed"
977         rm $MOUNT2/$tfile || error "remove $MOUNT2/$tfile failed"
978         # 2 is actually mounted
979         grep $MOUNT2' ' /proc/mounts > /dev/null || error "$MOUNT2 not mounted"
980         # failover
981         facet_failover fs2mds
982         facet_failover fs2ost
983         df
984         umount_client $MOUNT
985         # the MDS must remain up until last MDT
986         stop_mds
987         MDS=$(do_facet $SINGLEMDS "$LCTL get_param -n devices" |
988               awk '($3 ~ "mdt" && $4 ~ "MDT") { print $4 }' | head -1)
989         [ -z "$MDS" ] && error "No MDT"
990         cleanup_fs2
991         cleanup_nocli || error "cleanup_nocli failed with rc $?"
992 }
993 run_test 24a "Multiple MDTs on a single node"
994
995 test_24b() {
996         local MDSDEV=$(mdsdevname ${SINGLEMDS//mds/})
997
998         if [ -z "$fs2mds_DEV" ]; then
999                 local dev=${SINGLEMDS}_dev
1000                 local MDSDEV=${!dev}
1001                 is_blkdev $SINGLEMDS $MDSDEV &&
1002                 skip_env "mixed loopback and real device not working" && return
1003         fi
1004
1005         local fs2mdsdev=$(mdsdevname 1_2)
1006         local fs2mdsvdev=$(mdsvdevname 1_2)
1007
1008         add fs2mds $(mkfs_opts mds1 ${fs2mdsdev} ) --mgs --fsname=${FSNAME}2 \
1009                 --reformat $fs2mdsdev $fs2mdsvdev || exit 10
1010         setup
1011         start fs2mds $fs2mdsdev $MDS_MOUNT_OPTS &&
1012                 error "start MDS should fail"
1013         stop fs2mds -f
1014         cleanup || error "cleanup failed with rc $?"
1015 }
1016 run_test 24b "Multiple MGSs on a single node (should return err)"
1017
1018 test_25() {
1019         setup
1020         check_mount || error "check_mount failed"
1021         local MODULES=$($LCTL modules | awk '{ print $2 }')
1022         rmmod $MODULES 2>/dev/null || true
1023         cleanup || error "cleanup failed with $?"
1024 }
1025 run_test 25 "Verify modules are referenced"
1026
1027 test_26() {
1028         load_modules
1029         # we need modules before mount for sysctl, so make sure...
1030         do_facet $SINGLEMDS "lsmod | grep -q lustre || modprobe lustre"
1031         #define OBD_FAIL_MDS_FS_SETUP            0x135
1032         do_facet $SINGLEMDS "$LCTL set_param fail_loc=0x80000135"
1033         start_mds && error "MDS started but should not have started"
1034         $LCTL get_param -n devices
1035         DEVS=$($LCTL get_param -n devices | egrep -v MG | wc -l)
1036         [ $DEVS -gt 0 ] && error "number of devices is $DEVS, should be zero"
1037         # start mds to drop writeconf setting
1038         start_mds || error "Unable to start MDS"
1039         stop_mds || error "Unable to stop MDS"
1040         unload_modules_conf || error "unload_modules_conf failed with $?"
1041 }
1042 run_test 26 "MDT startup failure cleans LOV (should return errs)"
1043
1044 test_27a() {
1045         start_ost || error "Unable to start OST1"
1046         start_mds || error "Unable to start MDS"
1047         echo "Requeue thread should have started: "
1048         ps -e | grep ll_cfg_requeue
1049         set_conf_param_and_check ost1                                         \
1050            "$LCTL get_param -n obdfilter.$FSNAME-OST0000.client_cache_seconds" \
1051            "$FSNAME-OST0000.ost.client_cache_seconds" ||
1052                 error "set_conf_param_and_check ost1 failed"
1053         cleanup_nocli || error "cleanup_nocli failed with rc $?"
1054 }
1055 run_test 27a "Reacquire MGS lock if OST started first"
1056
1057 test_27b() {
1058         # FIXME. ~grev
1059         setup
1060         local device=$(do_facet $SINGLEMDS "$LCTL get_param -n devices" |
1061                         awk '($3 ~ "mdt" && $4 ~ "MDT0000") { print $4 }')
1062
1063         facet_failover $SINGLEMDS
1064         set_conf_param_and_check $SINGLEMDS                             \
1065                 "$LCTL get_param -n mdt.$device.identity_acquire_expire" \
1066                 "$device.mdt.identity_acquire_expire" ||
1067                 error "set_conf_param_and_check $SINGLEMDS failed"
1068         set_conf_param_and_check client                          \
1069                 "$LCTL get_param -n mdc.$device-mdc-*.max_rpcs_in_flight"\
1070                 "$device.mdc.max_rpcs_in_flight" ||
1071                 error "set_conf_param_and_check client failed"
1072         check_mount
1073         cleanup || error "cleanup failed with $?"
1074 }
1075 run_test 27b "Reacquire MGS lock after failover"
1076
1077 test_28() {
1078         setup
1079         TEST="$LCTL get_param -n llite.$FSNAME-*.max_read_ahead_whole_mb"
1080         PARAM="$FSNAME.llite.max_read_ahead_whole_mb"
1081         ORIG=$($TEST)
1082         FINAL=$(($ORIG + 1))
1083         set_conf_param_and_check client "$TEST" "$PARAM" $FINAL ||
1084                 error "first set_conf_param_and_check client failed"
1085         FINAL=$(($FINAL + 1))
1086         set_conf_param_and_check client "$TEST" "$PARAM" $FINAL ||
1087                 error "second set_conf_param_and_check client failed"
1088         umount_client $MOUNT || error "umount_client $MOUNT failed"
1089         mount_client $MOUNT || error "mount_client $MOUNT failed"
1090         RESULT=$($TEST)
1091         if [ $RESULT -ne $FINAL ]; then
1092                 error "New config not seen: wanted $FINAL got $RESULT"
1093         else
1094                 echo "New config success: got $RESULT"
1095         fi
1096         set_conf_param_and_check client "$TEST" "$PARAM" $ORIG ||
1097                 error "third set_conf_param_and_check client failed"
1098         cleanup || error "cleanup failed with rc $?"
1099 }
1100 run_test 28 "permanent parameter setting"
1101
1102 test_28a() { # LU-4221
1103         [[ $(lustre_version_code ost1) -ge $(version_code 2.5.52) ]] ||
1104                 { skip "Need OST version at least 2.5.52" && return 0; }
1105         [ "$(facet_fstype ost1)" = "zfs" ] &&
1106                 skip "LU-4221: no such proc params for ZFS OSTs" && return
1107
1108         local name
1109         local param
1110         local cmd
1111         local old
1112         local new
1113         local device="$FSNAME-OST0000"
1114
1115         setup
1116
1117         # In this test we will set three kinds of proc parameters with
1118         # lctl conf_param:
1119         # 1. the ones moved from the OFD to the OSD, and only their
1120         #    symlinks kept in obdfilter
1121         # 2. non-symlink ones in the OFD
1122         # 3. non-symlink ones in the OSD
1123
1124         # Check 1.
1125         # prepare a symlink parameter in the OFD
1126         name="writethrough_cache_enable"
1127         param="$device.ost.$name"
1128         cmd="$LCTL get_param -n obdfilter.$device.$name"
1129
1130         # conf_param the symlink parameter in the OFD
1131         old=$(do_facet ost1 $cmd)
1132         new=$(((old + 1) % 2))
1133         set_conf_param_and_check ost1 "$cmd" "$param" $new ||
1134                 error "lctl conf_param $device.ost.$param=$new failed"
1135
1136         # conf_param the target parameter in the OSD
1137         param="$device.osd.$name"
1138         cmd="$LCTL get_param -n osd-*.$device.$name"
1139         set_conf_param_and_check ost1 "$cmd" "$param" $old ||
1140                 error "lctl conf_param $device.osd.$param=$old failed"
1141
1142         # Check 2.
1143         # prepare a non-symlink parameter in the OFD
1144         name="client_cache_seconds"
1145         param="$device.ost.$name"
1146         cmd="$LCTL get_param -n obdfilter.$device.$name"
1147
1148         # conf_param the parameter in the OFD
1149         old=$(do_facet ost1 $cmd)
1150         new=$((old * 2))
1151         set_conf_param_and_check ost1 "$cmd" "$param" $new ||
1152                 error "lctl conf_param $device.ost.$param=$new failed"
1153         set_conf_param_and_check ost1 "$cmd" "$param" $old ||
1154                 error "lctl conf_param $device.ost.$param=$old failed"
1155
1156         # Check 3.
1157         # prepare a non-symlink parameter in the OSD
1158         name="auto_scrub"
1159         param="$device.osd.$name"
1160         cmd="$LCTL get_param -n osd-*.$device.$name"
1161
1162         # conf_param the parameter in the OSD
1163         old=$(do_facet ost1 $cmd)
1164         new=$(((old + 1) % 2))
1165         set_conf_param_and_check ost1 "$cmd" "$param" $new ||
1166                 error "lctl conf_param $device.osd.$param=$new failed"
1167         set_conf_param_and_check ost1 "$cmd" "$param" $old ||
1168                 error "lctl conf_param $device.osd.$param=$old failed"
1169
1170         cleanup || error "cleanup failed with $?"
1171 }
1172 run_test 28a "set symlink parameters permanently with conf_param"
1173
1174 test_29() {
1175         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2, skipping" && return
1176         setup > /dev/null 2>&1
1177         start_ost2 || error "Unable to start OST2"
1178         sleep 10
1179
1180         local PARAM="$FSNAME-OST0001.osc.active"
1181         local PROC_ACT="osc.$FSNAME-OST0001-osc-[^M]*.active"
1182         local PROC_UUID="osc.$FSNAME-OST0001-osc-[^M]*.ost_server_uuid"
1183
1184         ACTV=$($LCTL get_param -n $PROC_ACT)
1185         DEAC=$((1 - $ACTV))
1186         set_conf_param_and_check client \
1187                 "$LCTL get_param -n $PROC_ACT" "$PARAM" $DEAC ||
1188                 error "set_conf_param_and_check client failed"
1189         # also check ost_server_uuid status
1190         RESULT=$($LCTL get_param -n $PROC_UUID | grep DEACTIV)
1191         if [ -z "$RESULT" ]; then
1192                 error "Client not deactivated: $($LCTL get_param \
1193                        -n $PROC_UUID)"
1194         else
1195                 echo "Live client success: got $RESULT"
1196         fi
1197
1198         # check MDTs too
1199         for num in $(seq $MDSCOUNT); do
1200                 local mdtosc=$(get_mdtosc_proc_path mds${num} $FSNAME-OST0001)
1201                 local MPROC="osc.$mdtosc.active"
1202                 local MAX=30
1203                 local WAIT=0
1204                 while [ 1 ]; do
1205                         sleep 5
1206                         RESULT=$(do_facet mds${num} "$LCTL get_param -n $MPROC")
1207                         [ ${PIPESTATUS[0]} = 0 ] || error "Can't read $MPROC"
1208                         if [ $RESULT -eq $DEAC ]; then
1209                                 echo -n "MDT deactivated also after"
1210                                 echo "$WAIT sec (got $RESULT)"
1211                                 break
1212                         fi
1213                         WAIT=$((WAIT + 5))
1214                         if [ $WAIT -eq $MAX ]; then
1215                                 error "MDT active: wanted $DEAC got $RESULT"
1216                         fi
1217                         echo "Waiting $(($MAX - $WAIT))secs for MDT deactivated"
1218                 done
1219         done
1220         # test new client starts deactivated
1221         umount_client $MOUNT || error "umount_client $MOUNT failed"
1222         mount_client $MOUNT || error "mount_client $MOUNT failed"
1223         RESULT=$($LCTL get_param -n $PROC_UUID | grep DEACTIV | grep NEW)
1224         if [ -z "$RESULT" ]; then
1225                 error "New client start active: $(lctl get_param -n $PROC_UUID)"
1226         else
1227                 echo "New client success: got $RESULT"
1228         fi
1229
1230         # make sure it reactivates
1231         set_conf_param_and_check client \
1232                 "$LCTL get_param -n $PROC_ACT" "$PARAM" $ACTV ||
1233                 error "lctl get_param $PROC_ACT $PARAM $ACTV failed"
1234
1235         umount_client $MOUNT
1236         stop_ost2 || error "Unable to stop OST2"
1237         cleanup_nocli || error "cleanup_nocli failed with $?"
1238         #writeconf to remove all ost2 traces for subsequent tests
1239         writeconf_or_reformat
1240 }
1241 run_test 29 "permanently remove an OST"
1242
1243 test_30a() {
1244         setup
1245
1246         echo Big config llog
1247         TEST="$LCTL get_param -n llite.$FSNAME-*.max_read_ahead_whole_mb"
1248         ORIG=$($TEST)
1249         LIST=(1 2 3 4 5 4 3 2 1 2 3 4 5 4 3 2 1 2 3 4 5)
1250         for i in ${LIST[@]}; do
1251                 set_conf_param_and_check client "$TEST" \
1252                         "$FSNAME.llite.max_read_ahead_whole_mb" $i ||
1253                         error "Set $FSNAME.llite.max_read_ahead_whole_mb failed"
1254         done
1255         # make sure client restart still works
1256         umount_client $MOUNT
1257         mount_client $MOUNT || error "mount_client $MOUNT failed"
1258         [ "$($TEST)" -ne "$i" ] &&
1259                 error "Param didn't stick across restart $($TEST) != $i"
1260         pass
1261
1262         echo Erase parameter setting
1263         do_facet mgs "$LCTL conf_param \
1264                       -d $FSNAME.llite.max_read_ahead_whole_mb" ||
1265                 error "Erase param $FSNAME.llite.max_read_ahead_whole_mb failed"
1266         umount_client $MOUNT
1267         mount_client $MOUNT || error "mount_client $MOUNT failed"
1268         FINAL=$($TEST)
1269         echo "deleted (default) value=$FINAL, orig=$ORIG"
1270         # assumes this parameter started at the default value
1271         [ "$FINAL" -eq "$ORIG" ] || fail "Deleted value=$FINAL, orig=$ORIG"
1272
1273         cleanup || error "cleanup failed with rc $?"
1274 }
1275 run_test 30a "Big config llog and conf_param deletion"
1276
1277 test_30b() {
1278         setup
1279
1280         local orignids=$($LCTL get_param -n \
1281                 osc.$FSNAME-OST0000-osc-[^M]*.import | grep failover_nids)
1282
1283         local orignidcount=$(echo "$orignids" | wc -w)
1284
1285         # Make a fake nid.  Use the OST nid, and add 20 to the least significant
1286         # numerical part of it. Hopefully that's not already a failover address
1287         # for the server.
1288         local OSTNID=$(do_facet ost1 "$LCTL get_param nis" | tail -1 | \
1289                 awk '{print $1}')
1290         local ORIGVAL=$(echo $OSTNID | egrep -oi "[0-9]*@")
1291         local NEWVAL=$((($(echo $ORIGVAL | egrep -oi "[0-9]*") + 20) % 256))
1292         local NEW=$(echo $OSTNID | sed "s/$ORIGVAL/$NEWVAL@/")
1293         echo "Using fake nid $NEW"
1294
1295         local TEST="$LCTL get_param -n osc.$FSNAME-OST0000-osc-[^M]*.import |
1296                 grep failover_nids | sed -n 's/.*\($NEW\).*/\1/p'"
1297         set_conf_param_and_check client "$TEST" \
1298                 "$FSNAME-OST0000.failover.node" $NEW ||
1299                 error "didn't add failover nid $NEW"
1300         local NIDS=$($LCTL get_param -n osc.$FSNAME-OST0000-osc-[^M]*.import |
1301                 grep failover_nids)
1302         echo $NIDS
1303         local NIDCOUNT=$(echo "$NIDS" | wc -w)
1304         echo "should have $((orignidcount + 1)) entries \
1305                 in failover nids string, have $NIDCOUNT"
1306         [ $NIDCOUNT -eq $((orignidcount + 1)) ] ||
1307                 error "Failover nid not added"
1308
1309         do_facet mgs "$LCTL conf_param -d $FSNAME-OST0000.failover.node" ||
1310                 error "conf_param delete failed"
1311         umount_client $MOUNT
1312         mount_client $MOUNT || error "mount_client $MOUNT failed"
1313
1314         NIDS=$($LCTL get_param -n osc.$FSNAME-OST0000-osc-[^M]*.import |
1315                 grep failover_nids)
1316         echo $NIDS
1317         NIDCOUNT=$(echo "$NIDS" | wc -w)
1318         echo "only $orignidcount final entries should remain \
1319                 in failover nids string, have $NIDCOUNT"
1320         [ $NIDCOUNT -eq $orignidcount ] || error "Failover nids not removed"
1321
1322         cleanup || error "cleanup failed with rc $?"
1323 }
1324 run_test 30b "Remove failover nids"
1325
1326 test_31() { # bug 10734
1327         # ipaddr must not exist
1328         $MOUNT_CMD 4.3.2.1@tcp:/lustre $MOUNT || true
1329         cleanup || error "cleanup failed with rc $?"
1330 }
1331 run_test 31 "Connect to non-existent node (shouldn't crash)"
1332
1333
1334 T32_QID=60000
1335 T32_BLIMIT=40960 # Kbytes
1336 T32_ILIMIT=4
1337
1338 #
1339 # This is not really a test but a tool to create new disk
1340 # image tarballs for the upgrade tests.
1341 #
1342 # Disk image tarballs should be created on single-node
1343 # clusters by running this test with default configurations
1344 # plus a few mandatory environment settings that are verified
1345 # at the beginning of the test.
1346 #
1347 test_32newtarball() {
1348         local version
1349         local dst=.
1350         local src=/etc/rc.d
1351         local tmp=$TMP/t32_image_create
1352         local server_version=$(lustre_version_code $SINGLEMDS)
1353         local remote_dir
1354         local striped_dir
1355         local pushd_dir
1356
1357         if [ $FSNAME != t32fs -o \( -z "$MDSDEV" -a -z "$MDSDEV1" \) -o \
1358              $OSTCOUNT -ne 1 -o -z "$OSTDEV1" ]; then
1359                 error "Needs FSNAME=t32fs MDSCOUNT=2 "                  \
1360                       "MDSDEV1=<nonexistent_file>"                      \
1361                       "MDSDEV2=<nonexistent_file>"                      \
1362                       "(or MDSDEV, in the case of b1_8)"                \
1363                       "OSTCOUNT=1 OSTDEV1=<nonexistent_file>"
1364         fi
1365
1366         mkdir $tmp || {
1367                 echo "Found stale $tmp"
1368                 return 1
1369         }
1370
1371         mkdir $tmp/src || return 1
1372         tar cf - -C $src . | tar xf - -C $tmp/src
1373         dd if=/dev/zero of=$tmp/src/t32_qf_old bs=1M \
1374                 count=$(($T32_BLIMIT / 1024 / 4))
1375         chown $T32_QID.$T32_QID $tmp/src/t32_qf_old
1376
1377         # format ost with comma-separated NIDs to verify LU-4460
1378         local failnid="$(h2$NETTYPE 1.2.3.4),$(h2$NETTYPE 4.3.2.1)"
1379         MGSNID="$MGSNID,$MGSNID" OSTOPT="--failnode=$failnid" formatall
1380
1381         setupall
1382
1383         [[ $server_version -ge $(version_code 2.3.50) ]] ||
1384                 $LFS quotacheck -ug /mnt/$FSNAME
1385         $LFS setquota -u $T32_QID -b 0 -B $T32_BLIMIT -i 0 -I $T32_ILIMIT \
1386                 /mnt/$FSNAME
1387
1388         tar cf - -C $tmp/src . | tar xf - -C /mnt/$FSNAME
1389
1390         if [[ $MDSCOUNT -ge 2 ]]; then
1391                 remote_dir=/mnt/$FSNAME/remote_dir
1392                 $LFS mkdir -i 1 $remote_dir
1393                 tar cf - -C $tmp/src . | tar xf - -C $remote_dir
1394
1395                 if [[ $server_version -ge $(version_code 2.7.0) ]]; then
1396                         striped_dir=/mnt/$FSNAME/striped_dir_old
1397                         $LFS mkdir -i 1 -c 2 $striped_dir
1398                         tar cf - -C $tmp/src . | tar xf - -C $striped_dir
1399                 fi
1400         fi
1401
1402         stopall
1403
1404         mkdir $tmp/img || return 1
1405
1406         setupall
1407
1408         pushd_dir=/mnt/$FSNAME
1409         if [[ $MDSCOUNT -ge 2 ]]; then
1410                 pushd_dir=$remote_dir
1411                 if [[ $server_version -ge $(version_code 2.7.0) ]]; then
1412                         pushd $striped_dir
1413                         ls -Rni --time-style=+%s >$tmp/img/list2
1414                         popd
1415                 fi
1416         fi
1417
1418         pushd $pushd_dir
1419         ls -Rni --time-style=+%s >$tmp/img/list
1420         find ! -name .lustre -type f -exec sha1sum {} \; |
1421                 sort -k 2 >$tmp/img/sha1sums
1422         popd
1423         $LCTL get_param -n version | head -n 1 |
1424                 sed -e 's/^lustre: *//' >$tmp/img/commit
1425
1426         [[ $server_version -ge $(version_code 2.3.50) ]] ||
1427                 $LFS quotaon -ug /mnt/$FSNAME
1428         $LFS quota -u $T32_QID -v /mnt/$FSNAME
1429         $LFS quota -v -u $T32_QID /mnt/$FSNAME |
1430                 awk 'BEGIN { num='1' } { if ($1 == "'/mnt/$FSNAME'") \
1431                 { if (NF == 1) { getline } else { num++ } ; print $num;} }' \
1432                 | tr -d "*" > $tmp/img/bspace
1433         $LFS quota -v -u $T32_QID /mnt/$FSNAME |
1434                 awk 'BEGIN { num='5' } { if ($1 == "'/mnt/$FSNAME'") \
1435                 { if (NF == 1) { getline } else { num++ } ; print $num;} }' \
1436                 | tr -d "*" > $tmp/img/ispace
1437         echo $T32_BLIMIT > $tmp/img/blimit
1438         echo $T32_ILIMIT > $tmp/img/ilimit
1439
1440         stopall
1441
1442         pushd $tmp/src
1443         find -type f -exec sha1sum {} \; | sort -k 2 >$tmp/sha1sums.src
1444         popd
1445
1446         if ! diff -u $tmp/sha1sums.src $tmp/img/sha1sums; then
1447                 echo "Data verification failed"
1448         fi
1449
1450         uname -r >$tmp/img/kernel
1451         uname -m >$tmp/img/arch
1452
1453         mv ${MDSDEV1:-$MDSDEV} $tmp/img
1454         for num in $(seq 2 $MDSCOUNT); do
1455                 local devname=$(mdsdevname $num)
1456                 local facet=mds$num
1457                 [[ $(facet_fstype $facet) != zfs ]] ||
1458                         devname=$(mdsvdevname $num)
1459                 mv $devname $tmp/img
1460         done
1461         mv $OSTDEV1 $tmp/img
1462
1463         version=$(sed -e 's/\(^[0-9]\+\.[0-9]\+\)\(.*$\)/\1/' $tmp/img/commit |
1464                           sed -e 's/\./_/g')    # E.g., "1.8.7" -> "1_8"
1465         dst=$(cd $dst; pwd)
1466         pushd $tmp/img
1467         tar cjvf $dst/disk$version-$(facet_fstype $SINGLEMDS).tar.bz2 -S *
1468         popd
1469
1470         rm -r $tmp
1471 }
1472 #run_test 32newtarball "Create a new test_32 disk image tarball for this version"
1473
1474 #
1475 # The list of applicable tarballs is returned via the caller's
1476 # variable "tarballs".
1477 #
1478 t32_check() {
1479         local node=$(facet_active_host $SINGLEMDS)
1480         local r="do_node $node"
1481
1482         if [ "$CLIENTONLY" ]; then
1483                 skip "Client-only testing"
1484                 exit 0
1485         fi
1486
1487         if ! $r which $TUNEFS; then
1488                 skip_env "tunefs.lustre required on $node"
1489                 exit 0
1490         fi
1491
1492         local IMGTYPE=$(facet_fstype $SINGLEMDS)
1493
1494         tarballs=$($r find $RLUSTRE/tests -maxdepth 1 -name \'disk*-$IMGTYPE.tar.bz2\')
1495
1496         if [ -z "$tarballs" ]; then
1497                 skip "No applicable tarballs found"
1498                 exit 0
1499         fi
1500 }
1501
1502 t32_test_cleanup() {
1503         local tmp=$TMP/t32
1504         local facet=$SINGLEMDS
1505         local fstype=$(facet_fstype $facet)
1506         local rc=$?
1507
1508         if $shall_cleanup_lustre; then
1509                 umount $tmp/mnt/lustre || rc=$?
1510         fi
1511         if $shall_cleanup_mdt; then
1512                 $r $UMOUNT $tmp/mnt/mdt || rc=$?
1513         fi
1514         if $shall_cleanup_mdt1; then
1515                 $r $UMOUNT $tmp/mnt/mdt1 || rc=$?
1516         fi
1517         if $shall_cleanup_ost; then
1518                 $r $UMOUNT $tmp/mnt/ost || rc=$?
1519         fi
1520
1521         $r rm -rf $tmp
1522         rm -rf $tmp
1523         if [[ $fstype == zfs ]]; then
1524                 local poolname
1525                 local poolname_list="t32fs-mdt1 t32fs-ost1"
1526
1527                 ! $mdt2_is_available || poolname_list+=" t32fs-mdt2"
1528
1529                 for poolname in $poolname_list; do
1530                         destroy_zpool $facet $poolname
1531                 done
1532         fi
1533         return $rc
1534 }
1535
1536 t32_bits_per_long() {
1537         #
1538         # Yes, this is not meant to be perfect.
1539         #
1540         case $1 in
1541                 ppc64|x86_64)
1542                         echo -n 64;;
1543                 i*86)
1544                         echo -n 32;;
1545         esac
1546 }
1547
1548 t32_reload_modules() {
1549         local node=$1
1550         local all_removed=false
1551         local i=0
1552
1553         while ((i < 20)); do
1554                 echo "Unloading modules on $node: Attempt $i"
1555                 do_rpc_nodes $node $LUSTRE_RMMOD $(facet_fstype $SINGLEMDS) &&
1556                         all_removed=true
1557                 do_rpc_nodes $node check_mem_leak || return 1
1558                 if $all_removed; then
1559                         do_rpc_nodes $node load_modules
1560                         return 0
1561                 fi
1562                 sleep 5
1563                 i=$((i + 1))
1564         done
1565         echo "Unloading modules on $node: Given up"
1566         return 1
1567 }
1568
1569 t32_wait_til_devices_gone() {
1570         local node=$1
1571         local devices
1572         local loops
1573         local i=0
1574
1575         echo wait for devices to go
1576         while ((i < 20)); do
1577                 devices=$(do_rpc_nodes $node $LCTL device_list | wc -l)
1578                 loops=$(do_rpc_nodes $node losetup -a | grep -c t32)
1579                 ((devices == 0 && loops == 0)) && return 0
1580                 sleep 5
1581                 i=$((i + 1))
1582         done
1583         echo "waiting for dev on $node: dev $devices loop $loops given up"
1584         do_rpc_nodes $node "losetup -a"
1585         do_rpc_nodes $node "$LCTL device_list"
1586         return 1
1587 }
1588
1589 t32_verify_quota() {
1590         local node=$1
1591         local fsname=$2
1592         local mnt=$3
1593         local fstype=$(facet_fstype $SINGLEMDS)
1594         local qval
1595         local cmd
1596
1597         $LFS quota -u $T32_QID -v $mnt
1598
1599         qval=$($LFS quota -v -u $T32_QID $mnt |
1600                 awk 'BEGIN { num='1' } { if ($1 == "'$mnt'") \
1601                 { if (NF == 1) { getline } else { num++ } ; print $num;} }' \
1602                 | tr -d "*")
1603         [ $qval -eq $img_bspace ] || {
1604                 echo "bspace, act:$qval, exp:$img_bspace"
1605                 return 1
1606         }
1607
1608         qval=$($LFS quota -v -u $T32_QID $mnt |
1609                 awk 'BEGIN { num='5' } { if ($1 == "'$mnt'") \
1610                 { if (NF == 1) { getline } else { num++ } ; print $num;} }' \
1611                 | tr -d "*")
1612         [ $qval -eq $img_ispace ] || {
1613                 echo "ispace, act:$qval, exp:$img_ispace"
1614                 return 1
1615         }
1616
1617         qval=$($LFS quota -v -u $T32_QID $mnt |
1618                 awk 'BEGIN { num='3' } { if ($1 == "'$mnt'") \
1619                 { if (NF == 1) { getline } else { num++ } ; print $num;} }' \
1620                 | tr -d "*")
1621         [ $qval -eq $img_blimit ] || {
1622                 echo "blimit, act:$qval, exp:$img_blimit"
1623                 return 1
1624         }
1625
1626         qval=$($LFS quota -v -u $T32_QID $mnt |
1627                 awk 'BEGIN { num='7' } { if ($1 == "'$mnt'") \
1628                 { if (NF == 1) { getline } else { num++ } ; print $num;} }' \
1629                 | tr -d "*")
1630         [ $qval -eq $img_ilimit ] || {
1631                 echo "ilimit, act:$qval, exp:$img_ilimit"
1632                 return 1
1633         }
1634
1635         do_node $node $LCTL conf_param $fsname.quota.mdt=ug
1636         cmd="$LCTL get_param -n osd-$fstype.$fsname-MDT0000"
1637         cmd=$cmd.quota_slave.enabled
1638         wait_update $node "$cmd" "ug" || {
1639                 echo "Enable mdt quota failed"
1640                 return 1
1641         }
1642
1643         do_node $node $LCTL conf_param $fsname.quota.ost=ug
1644         cmd="$LCTL get_param -n osd-$fstype.$fsname-OST0000"
1645         cmd=$cmd.quota_slave.enabled
1646         wait_update $node "$cmd" "ug" || {
1647                 echo "Enable ost quota failed"
1648                 return 1
1649         }
1650
1651         chmod 0777 $mnt
1652         runas -u $T32_QID -g $T32_QID dd if=/dev/zero of=$mnt/t32_qf_new \
1653                 bs=1M count=$((img_blimit / 1024)) oflag=sync && {
1654                 echo "Write succeed, but expect -EDQUOT"
1655                 return 1
1656         }
1657         rm -f $mnt/t32_qf_new
1658
1659         runas -u $T32_QID -g $T32_QID createmany -m $mnt/t32_qf_ \
1660                 $img_ilimit && {
1661                 echo "Create succeed, but expect -EDQUOT"
1662                 return 1
1663         }
1664         unlinkmany $mnt/t32_qf_ $img_ilimit
1665
1666         return 0
1667 }
1668
1669 t32_test() {
1670         local tarball=$1
1671         local writeconf=$2
1672         local dne_upgrade=${dne_upgrade:-"no"}
1673         local ff_convert=${ff_convert:-"no"}
1674         local shall_cleanup_mdt=false
1675         local shall_cleanup_mdt1=false
1676         local shall_cleanup_ost=false
1677         local shall_cleanup_lustre=false
1678         local mdt2_is_available=false
1679         local node=$(facet_active_host $SINGLEMDS)
1680         local r="do_node $node"
1681         local node2=$(facet_active_host mds2)
1682         local tmp=$TMP/t32
1683         local img_commit
1684         local img_kernel
1685         local img_arch
1686         local img_bspace
1687         local img_ispace
1688         local img_blimit
1689         local img_ilimit
1690         local fsname=t32fs
1691         local nid=$($r $LCTL list_nids | head -1)
1692         local mopts
1693         local uuid
1694         local nrpcs_orig
1695         local nrpcs
1696         local list
1697         local fstype=$(facet_fstype $SINGLEMDS)
1698         local mdt_dev=$tmp/mdt
1699         local mdt2_dev=$tmp/mdt2
1700         local ost_dev=$tmp/ost
1701         local stripe_index
1702         local stripe_count
1703         local dir
1704
1705         trap 'trap - RETURN; t32_test_cleanup' RETURN
1706
1707         load_modules
1708         mkdir -p $tmp/mnt/lustre || error "mkdir $tmp/mnt/lustre failed"
1709         $r mkdir -p $tmp/mnt/{mdt,mdt1,ost}
1710         $r tar xjvf $tarball -S -C $tmp || {
1711                 error_noexit "Unpacking the disk image tarball"
1712                 return 1
1713         }
1714         img_commit=$($r cat $tmp/commit)
1715         img_kernel=$($r cat $tmp/kernel)
1716         img_arch=$($r cat $tmp/arch)
1717         img_bspace=$($r cat $tmp/bspace)
1718         img_ispace=$($r cat $tmp/ispace)
1719
1720         # older images did not have "blimit" and "ilimit" files
1721         # use old values for T32_BLIMIT and T32_ILIMIT
1722         $r test -f $tmp/blimit && img_blimit=$($r cat $tmp/blimit) ||
1723                 img_blimit=20480
1724         $r test -f $tmp/ilimit && img_ilimit=$($r cat $tmp/ilimit) ||
1725                 img_ilimit=2
1726
1727         echo "Upgrading from $(basename $tarball), created with:"
1728         echo "  Commit: $img_commit"
1729         echo "  Kernel: $img_kernel"
1730         echo "    Arch: $img_arch"
1731         echo "OST version: $(lustre_build_version ost1)"
1732
1733         # The conversion can be made only when both of the following
1734         # conditions are satisfied:
1735         # - ost device img version < 2.3.64
1736         # - ost server version >= 2.5
1737         [ $(version_code $img_commit) -ge $(version_code 2.3.64) -o \
1738                 $(lustre_version_code ost1) -lt $(version_code 2.5.0) ] &&
1739                         ff_convert="no"
1740
1741         ! $r test -f $mdt2_dev || mdt2_is_available=true
1742
1743         if [[ $fstype == zfs ]]; then
1744                 # import pool first
1745                 local poolname
1746                 local poolname_list="t32fs-mdt1 t32fs-ost1"
1747
1748                 ! $mdt2_is_available || poolname_list+=" t32fs-mdt2"
1749
1750                 for poolname in $poolname_list; do
1751                         $r "$ZPOOL list -H $poolname >/dev/null 2>&1 ||
1752                                 $ZPOOL import -f -d $tmp $poolname"
1753                 done
1754
1755                 mdt_dev=t32fs-mdt1/mdt1
1756                 ost_dev=t32fs-ost1/ost1
1757                 ! $mdt2_is_available || mdt2_dev=t32fs-mdt2/mdt2
1758                 wait_update_facet $SINGLEMDS "$ZPOOL list |
1759                         awk '/^t32fs-mdt1/ { print \\\$1 }'" "t32fs-mdt1" || {
1760                                 error_noexit "import zfs pool failed"
1761                                 return 1
1762                         }
1763         fi
1764
1765         $r $LCTL set_param debug="$PTLDEBUG"
1766
1767         $r $TUNEFS --dryrun $mdt_dev || {
1768                 $r losetup -a
1769                 error_noexit "tunefs.lustre before mounting the MDT"
1770                 return 1
1771         }
1772
1773         if $mdt2_is_available; then
1774                 $r $TUNEFS --dryrun $mdt2_dev || {
1775                         $r losetup -a
1776                         error_noexit "tunefs.lustre before mounting the MDT"
1777                         return 1
1778                 }
1779         fi
1780
1781         if [ "$writeconf" ]; then
1782                 mopts=writeconf
1783                 if [ $fstype == "ldiskfs" ]; then
1784                         mopts="loop,$mopts"
1785                         $r $TUNEFS --quota $mdt_dev || {
1786                                 $r losetup -a
1787                                 error_noexit "Enable mdt quota feature"
1788                                 return 1
1789                         }
1790                         if $mdt2_is_available; then
1791                                 $r $TUNEFS --quota $mdt2_dev || {
1792                                         $r losetup -a
1793                                         error_noexit "Enable mdt quota feature"
1794                                         return 1
1795                                 }
1796                         fi
1797                 fi
1798         else
1799                 if [ -n "$($LCTL list_nids | grep -v '\(tcp\|lo\)[[:digit:]]*$')" ]; then
1800                         [[ $(lustre_version_code mgs) -ge $(version_code 2.3.59) ]] ||
1801                         { skip "LU-2200: Cannot run over Inifiniband w/o lctl replace_nids "
1802                                 "(Need MGS version at least 2.3.59)"; return 0; }
1803
1804                         local osthost=$(facet_active_host ost1)
1805                         local ostnid=$(do_node $osthost $LCTL list_nids | head -1)
1806
1807                         mopts=nosvc
1808                         if [ $fstype == "ldiskfs" ]; then
1809                                 mopts="loop,$mopts"
1810                         fi
1811                         $r $MOUNT_CMD -o $mopts $mdt_dev $tmp/mnt/mdt
1812                         $r $LCTL replace_nids $fsname-OST0000 $ostnid
1813                         $r $LCTL replace_nids $fsname-MDT0000 $nid
1814                         $r $UMOUNT $tmp/mnt/mdt
1815                 fi
1816
1817                 mopts=exclude=$fsname-OST0000
1818                 if [ $fstype == "ldiskfs" ]; then
1819                         mopts="loop,$mopts"
1820                 fi
1821         fi
1822
1823         t32_wait_til_devices_gone $node
1824
1825         $r $MOUNT_CMD -o $mopts $mdt_dev $tmp/mnt/mdt || {
1826                 $r losetup -a
1827                 error_noexit "Mounting the MDT"
1828                 return 1
1829         }
1830         shall_cleanup_mdt=true
1831
1832         if $mdt2_is_available; then
1833                 mopts=mgsnode=$nid,$mopts
1834                 $r $MOUNT_CMD -o $mopts $mdt2_dev $tmp/mnt/mdt1 || {
1835                         $r losetup -a
1836                         error_noexit "Mounting the MDT"
1837                         return 1
1838                 }
1839
1840                 echo "mount new MDT....$mdt2_dev"
1841                 $r $LCTL set_param -n mdt.${fsname}*.enable_remote_dir=1 ||
1842                         error_noexit "enable remote dir create failed"
1843
1844                 shall_cleanup_mdt1=true
1845         elif [ "$dne_upgrade" != "no" ]; then
1846                 local fs2mdsdev=$(mdsdevname 1_2)
1847                 local fs2mdsvdev=$(mdsvdevname 1_2)
1848
1849                 echo "mkfs new MDT on ${fs2mdsdev}...."
1850                 if [ $(facet_fstype mds1) == ldiskfs ]; then
1851                         mkfsoptions="--mkfsoptions=\\\"-J size=8\\\""
1852                 fi
1853
1854                 add fs2mds $(mkfs_opts mds2 $fs2mdsdev $fsname) --reformat \
1855                            $mkfsoptions $fs2mdsdev $fs2mdsvdev > /dev/null || {
1856                         error_noexit "Mkfs new MDT failed"
1857                         return 1
1858                 }
1859
1860                 [[ $(facet_fstype mds1) != zfs ]] || import_zpool fs2mds
1861
1862                 $r $TUNEFS --dryrun $fs2mdsdev || {
1863                         error_noexit "tunefs.lustre before mounting the MDT"
1864                         return 1
1865                 }
1866
1867                 echo "mount new MDT....$fs2mdsdev"
1868                 $r $MOUNT_CMD -o $mopts $fs2mdsdev $tmp/mnt/mdt1 || {
1869                         error_noexit "mount mdt1 failed"
1870                         return 1
1871                 }
1872
1873                 $r $LCTL set_param -n mdt.${fsname}*.enable_remote_dir=1 ||
1874                         error_noexit "enable remote dir create failed"
1875
1876                 shall_cleanup_mdt1=true
1877         fi
1878
1879         uuid=$($r $LCTL get_param -n mdt.$fsname-MDT0000.uuid) || {
1880                 error_noexit "Getting MDT UUID"
1881                 return 1
1882         }
1883         if [ "$uuid" != $fsname-MDT0000_UUID ]; then
1884                 error_noexit "Unexpected MDT UUID: \"$uuid\""
1885                 return 1
1886         fi
1887
1888         $r $TUNEFS --dryrun $ost_dev || {
1889                 error_noexit "tunefs.lustre before mounting the OST"
1890                 return 1
1891         }
1892         if [ "$writeconf" ]; then
1893                 mopts=mgsnode=$nid,$writeconf
1894                 if [ $fstype == "ldiskfs" ]; then
1895                         mopts="loop,$mopts"
1896                         $r $TUNEFS --quota $ost_dev || {
1897                                 $r losetup -a
1898                                 error_noexit "Enable ost quota feature"
1899                                 return 1
1900                         }
1901                 fi
1902         else
1903                 mopts=mgsnode=$nid
1904                 if [ $fstype == "ldiskfs" ]; then
1905                         mopts="loop,$mopts"
1906                 fi
1907         fi
1908         $r $MOUNT_CMD -o $mopts $ost_dev $tmp/mnt/ost || {
1909                 error_noexit "Mounting the OST"
1910                 return 1
1911         }
1912         shall_cleanup_ost=true
1913
1914         uuid=$($r $LCTL get_param -n obdfilter.$fsname-OST0000.uuid) || {
1915                 error_noexit "Getting OST UUID"
1916                 return 1
1917         }
1918         if [ "$uuid" != $fsname-OST0000_UUID ]; then
1919                 error_noexit "Unexpected OST UUID: \"$uuid\""
1920                 return 1
1921         fi
1922
1923         $r $LCTL conf_param $fsname-OST0000.osc.max_dirty_mb=15 || {
1924                 error_noexit "Setting \"max_dirty_mb\""
1925                 return 1
1926         }
1927         $r $LCTL conf_param $fsname-OST0000.failover.node=$nid || {
1928                 error_noexit "Setting OST \"failover.node\""
1929                 return 1
1930         }
1931         $r $LCTL conf_param $fsname-MDT0000.mdc.max_rpcs_in_flight=9 || {
1932                 error_noexit "Setting \"max_rpcs_in_flight\""
1933                 return 1
1934         }
1935         $r $LCTL conf_param $fsname-MDT0000.failover.node=$nid || {
1936                 error_noexit "Setting MDT \"failover.node\""
1937                 return 1
1938         }
1939         $r $LCTL pool_new $fsname.interop || {
1940                 error_noexit "Setting \"interop\""
1941                 return 1
1942         }
1943         $r $LCTL conf_param $fsname-MDT0000.lov.stripesize=4M || {
1944                 error_noexit "Setting \"lov.stripesize\""
1945                 return 1
1946         }
1947         $r $LCTL conf_param $fsname-MDT0000.mdd.atime_diff=70 || {
1948                 error_noexit "Setting \"mdd.atime_diff\""
1949                 return 1
1950         }
1951
1952         if [ "$ff_convert" != "no" -a $(facet_fstype ost1) == "ldiskfs" ]; then
1953                 $r $LCTL lfsck_start -M $fsname-OST0000 || {
1954                         error_noexit "Start OI scrub on OST0"
1955                         return 1
1956                 }
1957
1958                 # The oi_scrub should be on ost1, but for test_32(),
1959                 # all on the SINGLEMDS.
1960                 wait_update_facet $SINGLEMDS "$LCTL get_param -n \
1961                         osd-ldiskfs.$fsname-OST0000.oi_scrub |
1962                         awk '/^status/ { print \\\$2 }'" "completed" 30 || {
1963                         error_noexit "Failed to get the expected 'completed'"
1964                         return 1
1965                 }
1966
1967                 local UPDATED=$($r $LCTL get_param -n \
1968                                 osd-ldiskfs.$fsname-OST0000.oi_scrub |
1969                                 awk '/^updated/ { print $2 }')
1970                 [ $UPDATED -ge 1 ] || {
1971                         error_noexit "Only $UPDATED objects have been converted"
1972                         return 1
1973                 }
1974         fi
1975
1976         if [ "$dne_upgrade" != "no" ]; then
1977                 $r $LCTL conf_param \
1978                                 $fsname-MDT0001.mdc.max_rpcs_in_flight=9 || {
1979                         error_noexit "Setting MDT1 \"max_rpcs_in_flight\""
1980                         return 1
1981                 }
1982                 $r $LCTL conf_param $fsname-MDT0001.failover.node=$nid || {
1983                         error_noexit "Setting MDT1 \"failover.node\""
1984                         return 1
1985                 }
1986                 $r $LCTL conf_param $fsname-MDT0001.lov.stripesize=4M || {
1987                         error_noexit "Setting MDT1 \"lov.stripesize\""
1988                         return 1
1989                 }
1990         fi
1991
1992         if [ "$writeconf" ]; then
1993                 $MOUNT_CMD $nid:/$fsname $tmp/mnt/lustre || {
1994                         error_noexit "Mounting the client"
1995                         return 1
1996                 }
1997
1998                 shall_cleanup_lustre=true
1999                 $r $LCTL set_param debug="$PTLDEBUG"
2000
2001                 t32_verify_quota $node $fsname $tmp/mnt/lustre || {
2002                         error_noexit "verify quota failed"
2003                         return 1
2004                 }
2005
2006                 if $r test -f $tmp/list; then
2007                         #
2008                         # There is not a Test Framework API to copy files to or
2009                         # from a remote node.
2010                         #
2011                         # LU-2393 - do both sorts on same node to ensure locale
2012                         # is identical
2013                         local list_file=$tmp/list
2014
2015                         if $mdt2_is_available; then
2016                                 if [[ -d $tmp/mnt/lustre/striped_dir_old ]] &&
2017                                    $r test -f $tmp/list2; then
2018                                         list_file=$tmp/list2
2019                                         pushd $tmp/mnt/lustre/striped_dir_old
2020                                 else
2021                                         pushd $tmp/mnt/lustre/remote_dir
2022                                 fi
2023                         else
2024                                 pushd $tmp/mnt/lustre
2025                         fi
2026                         $r cat $list_file | sort -k 6 >$tmp/list.orig
2027                         ls -Rni --time-style=+%s | sort -k 6 |
2028                                 sed 's/\. / /' >$tmp/list || {
2029                                 error_noexit "ls"
2030                                 return 1
2031                         }
2032                         popd
2033                         #
2034                         # 32-bit and 64-bit clients use different algorithms to
2035                         # convert FIDs into inode numbers.  Hence, remove the
2036                         # inode numbers from the lists, if the original list was
2037                         # created on an architecture with different number of
2038                         # bits per "long".
2039                         #
2040                         if [ $(t32_bits_per_long $(uname -m)) != \
2041                                 $(t32_bits_per_long $img_arch) ]; then
2042                                 echo "Different number of bits per \"long\"" \
2043                                      "from the disk image"
2044                                 for list in list.orig list; do
2045                                         sed -i -e 's/^[0-9]\+[ \t]\+//' \
2046                                                   $tmp/$list
2047                                 done
2048                         fi
2049                         if ! diff -ub $tmp/list.orig $tmp/list; then
2050                                 error_noexit "list verification failed"
2051                                 return 1
2052                         fi
2053                 else
2054                         echo "list verification skipped"
2055                 fi
2056
2057                 if [ "$dne_upgrade" != "no" ]; then
2058                         $LFS mkdir -i 1 -c2 $tmp/mnt/lustre/striped_dir || {
2059                                 error_noexit "set striped dir failed"
2060                                 return 1
2061                         }
2062
2063                         $LFS setdirstripe -D -c2 $tmp/mnt/lustre/striped_dir
2064
2065                         pushd $tmp/mnt/lustre
2066                         tar -cf - . --exclude=./striped_dir \
2067                                     --exclude=./striped_dir_old \
2068                                     --exclude=./remote_dir |
2069                                 tar -xvf - -C striped_dir 1>/dev/null || {
2070                                 error_noexit "cp to striped dir failed"
2071                                 return 1
2072                         }
2073                         popd
2074                 fi
2075
2076                 # If it is upgrade from DNE (2.5), then rename the remote dir,
2077                 # which is created in 2.5 to striped dir.
2078                 if $mdt2_is_available && [[ "$dne_upgrade" != "no" ]]; then
2079                         stripe_index=$($LFS getdirstripe -i     \
2080                                        $tmp/mnt/lustre/remote_dir)
2081
2082                         [[ $stripe_index -eq 1 ]] || {
2083                                 error_noexit "get index \"$stripe_index\"" \
2084                                              "from remote dir failed"
2085                                 return 1
2086                         }
2087                         mv $tmp/mnt/lustre/remote_dir   \
2088                                 $tmp/mnt/lustre/striped_dir/ || {
2089                                 error_noexit "mv remote dir failed"
2090                                 return 1
2091                         }
2092                 fi
2093
2094                 # If it is upgraded from DNE (2.7), then move the striped dir
2095                 # which was created in 2.7 to the new striped dir.
2096                 if $mdt2_is_available && [[ "$dne_upgrade" != "no" ]] &&
2097                         [[ -d $tmp/mnt/lustre/striped_dir_old ]]; then
2098                         stripe_count=$($LFS getdirstripe -c     \
2099                                        $tmp/mnt/lustre/striped_dir_old)
2100                         [[ $stripe_count -eq 2 ]] || {
2101                                 error_noexit "get count $stripe_count" \
2102                                              "from striped dir failed"
2103                                 return 1
2104                         }
2105                         mv $tmp/mnt/lustre/striped_dir_old      \
2106                                 $tmp/mnt/lustre/striped_dir/ || {
2107                                 error_noexit "mv striped dir failed"
2108                                 return 1
2109                         }
2110                 fi
2111
2112                 sync; sleep 5; sync
2113                 $r $LCTL set_param -n osd*.*.force_sync=1
2114                 dd if=/dev/zero of=$tmp/mnt/lustre/tmp_file bs=10k count=10 || {
2115                         error_noexit "dd failed"
2116                         return 1
2117                 }
2118                 rm -rf $tmp/mnt/lustre/tmp_file || {
2119                         error_noexit "rm failed"
2120                         return 1
2121                 }
2122
2123                 if $r test -f $tmp/sha1sums; then
2124                         # LU-2393 - do both sorts on same node to ensure locale
2125                         # is identical
2126                         $r cat $tmp/sha1sums | sort -k 2 >$tmp/sha1sums.orig
2127                         if [ "$dne_upgrade" != "no" ]; then
2128                                 pushd $tmp/mnt/lustre/striped_dir
2129                         else
2130                                 pushd $tmp/mnt/lustre
2131                         fi
2132
2133                         find ! -path "*remote_dir*" ! -path "*striped_dir*" \
2134                                 ! -name .lustre -type f -exec sha1sum {} \; |
2135                                 sort -k 2 >$tmp/sha1sums || {
2136                                 popd
2137                                 error_noexit "sha1sum"
2138                                 return 1
2139                         }
2140                         popd
2141                         if ! diff -ub $tmp/sha1sums.orig $tmp/sha1sums; then
2142                                 error_noexit "sha1sum verification failed"
2143                                 return 1
2144                         fi
2145
2146                         # if upgrade from DNE(2.5), then check remote directory
2147                         # if upgrade from DNE(2.7), then check striped directory
2148                         if $mdt2_is_available &&
2149                            [[ "$dne_upgrade" != "no" ]]; then
2150                                 local new_dir="$tmp/mnt/lustre/striped_dir"
2151                                 local striped_dir_old="$new_dir/striped_dir_old"
2152
2153                                 local dir_list="$new_dir/remote_dir"
2154                                 [[ ! -d $triped_dir_old ]] ||
2155                                         dir_list+=" $striped_dir_old"
2156
2157                                 for dir in $dir_list; do
2158                                         pushd $dir
2159                                         find ! -name .lustre -type f    \
2160                                                 -exec sha1sum {} \; |
2161                                                 sort -k 2 >$tmp/sha1sums || {
2162                                                         popd
2163                                                         error_noexit "sha1sum"
2164                                                         return 1
2165                                                 }
2166                                         popd
2167                                         if ! diff -ub $tmp/sha1sums.orig \
2168                                                 $tmp/sha1sums; then
2169                                                 error_noexit "sha1sum $dir" \
2170                                                              "failed"
2171                                                 return 1
2172                                         fi
2173                                 done
2174                         fi
2175                 else
2176                         echo "sha1sum verification skipped"
2177                 fi
2178
2179                 if [ "$dne_upgrade" != "no" ]; then
2180                         rm -rf $tmp/mnt/lustre/striped_dir || {
2181                                 error_noexit "remove remote dir failed"
2182                                 return 1
2183                         }
2184                 fi
2185
2186                 # migrate files/dirs to remote MDT, then move them back
2187                 if [ $(lustre_version_code mds1) -ge $(version_code 2.7.50) -a \
2188                      $dne_upgrade != "no" ]; then
2189                         $r $LCTL set_param -n   \
2190                                 mdt.${fsname}*.enable_remote_dir=1 2>/dev/null
2191
2192                         echo "test migration"
2193                         pushd $tmp/mnt/lustre
2194                         for dir in $(find ! -name .lustre ! -name . -type d); do
2195                                 mdt_index=$($LFS getdirstripe -i $dir)
2196                                 stripe_cnt=$($LFS getdirstripe -c $dir)
2197                                 if [ $mdt_index = 0 -a $stripe_cnt -le 1 ]; then
2198                                         $LFS mv -M 1 $dir || {
2199                                         popd
2200                                         error_noexit "migrate MDT1 failed"
2201                                         return 1
2202                                 }
2203                                 fi
2204                         done
2205
2206                         for dir in $(find ! -name . ! -name .lustre -type d); do
2207                                 mdt_index=$($LFS getdirstripe -i $dir)
2208                                 stripe_cnt=$($LFS getdirstripe -c $dir)
2209                                 if [ $mdt_index = 1 -a $stripe_cnt -le 1 ]; then
2210                                         $LFS mv -M 0 $dir || {
2211                                         popd
2212                                         error_noexit "migrate MDT0 failed"
2213                                         return 1
2214                                 }
2215                                 fi
2216                         done
2217                         popd
2218                 fi
2219
2220                 #
2221                 # When adding new data verification tests, please check for
2222                 # the presence of the required reference files first, like
2223                 # the "sha1sums" and "list" tests above, to avoid the need to
2224                 # regenerate every image for each test addition.
2225                 #
2226
2227                 nrpcs_orig=$($LCTL get_param \
2228                                 -n mdc.*MDT0000*.max_rpcs_in_flight) || {
2229                         error_noexit "Getting \"max_rpcs_in_flight\""
2230                         return 1
2231                 }
2232                 nrpcs=$((nrpcs_orig + 5))
2233                 $r $LCTL conf_param $fsname-MDT0000.mdc.max_rpcs_in_flight=$nrpcs || {
2234                         error_noexit "Changing \"max_rpcs_in_flight\""
2235                         return 1
2236                 }
2237                 wait_update $HOSTNAME "$LCTL get_param \
2238                         -n mdc.*MDT0000*.max_rpcs_in_flight" $nrpcs || {
2239                         error_noexit "Verifying \"max_rpcs_in_flight\""
2240                         return 1
2241                 }
2242
2243                 umount $tmp/mnt/lustre || {
2244                         error_noexit "Unmounting the client"
2245                         return 1
2246                 }
2247                 shall_cleanup_lustre=false
2248         else
2249                 if [[ "$dne_upgrade" != "no" ]] || $mdt2_is_available; then
2250                         $r $UMOUNT $tmp/mnt/mdt1 || {
2251                                 error_noexit "Unmounting the MDT2"
2252                                 return 1
2253                         }
2254                         shall_cleanup_mdt1=false
2255                 fi
2256
2257                 $r $UMOUNT $tmp/mnt/mdt || {
2258                         error_noexit "Unmounting the MDT"
2259                         return 1
2260                 }
2261                 shall_cleanup_mdt=false
2262
2263                 $r $UMOUNT $tmp/mnt/ost || {
2264                         error_noexit "Unmounting the OST"
2265                         return 1
2266                 }
2267                 shall_cleanup_ost=false
2268
2269                 t32_reload_modules $node || {
2270                         error_noexit "Reloading modules"
2271                         return 1
2272                 }
2273
2274                 if [[ $fstype == zfs ]]; then
2275                         local poolname=t32fs-mdt1
2276                         $r "$ZPOOL list -H $poolname >/dev/null 2>&1 ||
2277                                 $ZPOOL import -f -d $tmp $poolname"
2278                 fi
2279
2280                 # mount a second time to make sure we didnt leave upgrade flag on
2281                 $r $TUNEFS --dryrun $mdt_dev || {
2282                         $r losetup -a
2283                         error_noexit "tunefs.lustre before remounting the MDT"
2284                         return 1
2285                 }
2286
2287                 mopts=exclude=$fsname-OST0000
2288                 if [ $fstype == "ldiskfs" ]; then
2289                         mopts="loop,$mopts"
2290                 fi
2291                 $r $MOUNT_CMD -o $mopts $mdt_dev $tmp/mnt/mdt || {
2292                         error_noexit "Remounting the MDT"
2293                         return 1
2294                 }
2295                 shall_cleanup_mdt=true
2296         fi
2297 }
2298
2299 test_32a() {
2300         local tarballs
2301         local tarball
2302         local rc=0
2303
2304         t32_check
2305         for tarball in $tarballs; do
2306                 t32_test $tarball || let "rc += $?"
2307         done
2308         return $rc
2309 }
2310 run_test 32a "Upgrade (not live)"
2311
2312 test_32b() {
2313         local tarballs
2314         local tarball
2315         local rc=0
2316
2317         t32_check
2318         for tarball in $tarballs; do
2319                 t32_test $tarball writeconf || let "rc += $?"
2320         done
2321         return $rc
2322 }
2323 run_test 32b "Upgrade with writeconf"
2324
2325 test_32c() {
2326         local tarballs
2327         local tarball
2328         local rc=0
2329
2330         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2331         t32_check
2332         for tarball in $tarballs; do
2333                 # Do not support 1_8 and 2_1 direct upgrade to DNE2 anymore */
2334                 echo $tarball | grep "1_8" && continue
2335                 echo $tarball | grep "2_1" && continue
2336                 load_modules
2337                 dne_upgrade=yes t32_test $tarball writeconf || rc=$?
2338         done
2339         return $rc
2340 }
2341 run_test 32c "dne upgrade test"
2342
2343 test_32d() {
2344         local tarballs
2345         local tarball
2346         local rc=0
2347
2348         t32_check
2349         for tarball in $tarballs; do
2350                 ff_convert=yes t32_test $tarball || rc=$?
2351         done
2352         return $rc
2353 }
2354 run_test 32d "convert ff test"
2355
2356 test_33a() { # bug 12333, was test_33
2357         local FSNAME2=test-123
2358         local MDSDEV=$(mdsdevname ${SINGLEMDS//mds/})
2359         local mkfsoptions
2360
2361         [ -n "$ost1_HOST" ] && fs2ost_HOST=$ost1_HOST
2362
2363         if [ -z "$fs2ost_DEV" -o -z "$fs2mds_DEV" ]; then
2364                 local dev=${SINGLEMDS}_dev
2365                 local MDSDEV=${!dev}
2366                 is_blkdev $SINGLEMDS $MDSDEV &&
2367                         skip_env "mixed loopback and real device not working" &&
2368                         return
2369         fi
2370
2371         local fs2mdsdev=$(mdsdevname 1_2)
2372         local fs2ostdev=$(ostdevname 1_2)
2373         local fs2mdsvdev=$(mdsvdevname 1_2)
2374         local fs2ostvdev=$(ostvdevname 1_2)
2375
2376         if [ $(facet_fstype mds1) == ldiskfs ]; then
2377                 mkfsoptions="--mkfsoptions=\\\"-J size=8\\\"" # See bug 17931.
2378         fi
2379
2380         add fs2mds $(mkfs_opts mds1 ${fs2mdsdev}) --mgs --fsname=${FSNAME2} \
2381                 --reformat $mkfsoptions $fs2mdsdev $fs2mdsvdev || exit 10
2382         add fs2ost $(mkfs_opts ost1 ${fs2ostdev}) --mgsnode=$MGSNID \
2383                 --fsname=${FSNAME2} --index=8191 --reformat $fs2ostdev \
2384                 $fs2ostvdev || exit 10
2385
2386         start fs2mds $fs2mdsdev $MDS_MOUNT_OPTS && trap cleanup_fs2 EXIT INT
2387         start fs2ost $fs2ostdev $OST_MOUNT_OPTS
2388         do_facet $SINGLEMDS "$LCTL conf_param $FSNAME2.sys.timeout=200" ||
2389                 error "$LCTL conf_param $FSNAME2.sys.timeout=200 failed"
2390         mkdir -p $MOUNT2 || error "mkdir $MOUNT2 failed"
2391         $MOUNT_CMD $MGSNID:/${FSNAME2} $MOUNT2 || error "$MOUNT_CMD failed"
2392         echo "ok."
2393
2394         cp /etc/hosts $MOUNT2/ || error "copy /etc/hosts $MOUNT2/ failed"
2395         $GETSTRIPE $MOUNT2/hosts || error "$GETSTRIPE $MOUNT2/hosts failed"
2396
2397         umount $MOUNT2
2398         stop fs2ost -f
2399         stop fs2mds -f
2400         cleanup_nocli || error "cleanup_nocli failed with $?"
2401 }
2402 run_test 33a "Mount ost with a large index number"
2403
2404 test_33b() {    # was test_34
2405         setup
2406
2407         do_facet client dd if=/dev/zero of=$MOUNT/24 bs=1024k count=1
2408         # Drop lock cancelation reply during umount
2409         #define OBD_FAIL_LDLM_CANCEL_NET                        0x304
2410         do_facet client $LCTL set_param fail_loc=0x80000304
2411         #lctl set_param debug=-1
2412         umount_client $MOUNT
2413         cleanup || error "cleanup failed with $?"
2414 }
2415 run_test 33b "Drop cancel during umount"
2416
2417 test_34a() {
2418         setup
2419         do_facet client "sh runmultiop_bg_pause $DIR/file O_c"
2420         manual_umount_client
2421         rc=$?
2422         do_facet client killall -USR1 multiop
2423         if [ $rc -eq 0 ]; then
2424                 error "umount not fail!"
2425         fi
2426         sleep 1
2427         cleanup || error "cleanup failed with rc $?"
2428 }
2429 run_test 34a "umount with opened file should be fail"
2430
2431 test_34b() {
2432         setup
2433         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
2434         stop_mds || error "Unable to stop MDS"
2435
2436         manual_umount_client --force || error "mtab after failed umount with $?"
2437
2438         cleanup || error "cleanup failed with $?"
2439 }
2440 run_test 34b "force umount with failed mds should be normal"
2441
2442 test_34c() {
2443         setup
2444         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
2445         stop_ost || error "Unable to stop OST1"
2446
2447         manual_umount_client --force || error "mtab after failed umount with $?"
2448
2449         cleanup || error "cleanup failed with $?"
2450 }
2451 run_test 34c "force umount with failed ost should be normal"
2452
2453 test_35a() { # bug 12459
2454         setup
2455
2456         DBG_SAVE="`$LCTL get_param -n debug`"
2457         $LCTL set_param debug="ha"
2458
2459         log "Set up a fake failnode for the MDS"
2460         FAKENID="127.0.0.2"
2461         local device=$(do_facet $SINGLEMDS "$LCTL get_param -n devices" |
2462                 awk '($3 ~ "mdt" && $4 ~ "MDT") { print $4 }' | head -1)
2463         do_facet mgs "$LCTL conf_param \
2464                       ${device}.failover.node=$(h2$NETTYPE $FAKENID)" ||
2465                 error "Setting ${device}.failover.node=\
2466                        $(h2$NETTYPE $FAKENID) failed."
2467
2468         log "Wait for RECONNECT_INTERVAL seconds (10s)"
2469         sleep 10
2470
2471         MSG="conf-sanity.sh test_35a `date +%F%kh%Mm%Ss`"
2472         $LCTL clear
2473         log "$MSG"
2474         log "Stopping the MDT: $device"
2475         stop_mdt 1 || error "MDT0 stop fail"
2476
2477         df $MOUNT > /dev/null 2>&1 &
2478         DFPID=$!
2479         log "Restarting the MDT: $device"
2480         start_mdt 1 || error "MDT0 start fail"
2481         log "Wait for df ($DFPID) ... "
2482         wait $DFPID
2483         log "done"
2484         $LCTL set_param debug="$DBG_SAVE"
2485
2486         # retrieve from the log the first server that the client tried to
2487         # contact after the connection loss
2488         $LCTL dk $TMP/lustre-log-$TESTNAME.log
2489         NEXTCONN=`awk "/${MSG}/ {start = 1;}
2490                        /import_select_connection.*$device-mdc.* using connection/ {
2491                                 if (start) {
2492                                         if (\\\$NF ~ /$FAKENID/)
2493                                                 print \\\$NF;
2494                                         else
2495                                                 print 0;
2496                                         exit;
2497                                 }
2498                        }" $TMP/lustre-log-$TESTNAME.log`
2499         [ "$NEXTCONN" != "0" ] &&
2500                 error "Tried to connect to ${NEXTCONN} not last active server"
2501         cleanup || error "cleanup failed with $?"
2502         # remove nid settings
2503         writeconf_or_reformat
2504 }
2505 run_test 35a "Reconnect to the last active server first"
2506
2507 test_35b() { # bug 18674
2508         remote_mds || { skip "local MDS" && return 0; }
2509         setup
2510
2511         debugsave
2512         $LCTL set_param debug="ha"
2513         $LCTL clear
2514         MSG="conf-sanity.sh test_35b `date +%F%kh%Mm%Ss`"
2515         log "$MSG"
2516
2517         log "Set up a fake failnode for the MDS"
2518         FAKENID="127.0.0.2"
2519         local device=$(do_facet $SINGLEMDS "$LCTL get_param -n devices" |
2520                 awk '($3 ~ "mdt" && $4 ~ "MDT") { print $4 }' | head -1)
2521         do_facet mgs "$LCTL conf_param \
2522                       ${device}.failover.node=$(h2$NETTYPE $FAKENID)" ||
2523                 error "Set ${device}.failover.node=\
2524                        $(h2$NETTYPE $FAKENID) failed"
2525
2526         local at_max_saved=0
2527         # adaptive timeouts may prevent seeing the issue
2528         if at_is_enabled; then
2529                 at_max_saved=$(at_max_get mds)
2530                 at_max_set 0 mds client
2531         fi
2532
2533         mkdir $MOUNT/$tdir || error "mkdir $MOUNT/$tdir failed"
2534
2535         log "Injecting EBUSY on MDS"
2536         # Setting OBD_FAIL_MDS_RESEND=0x136
2537         do_facet $SINGLEMDS "$LCTL set_param fail_loc=0x80000136" ||
2538                 error "unable to set param fail_loc=0x80000136"
2539
2540         $LCTL set_param mdc.${FSNAME}*.stats=clear
2541
2542         log "Creating a test file and stat it"
2543         touch $MOUNT/$tdir/$tfile || error "touch $MOUNT/$tdir/$tfile failed"
2544         stat $MOUNT/$tdir/$tfile
2545
2546         log "Stop injecting EBUSY on MDS"
2547         do_facet $SINGLEMDS "$LCTL set_param fail_loc=0" ||
2548                 error "unable to set param fail_loc=0"
2549         rm -f $MOUNT/$tdir/$tfile || error "remove $MOUNT/$tdir/$tfile failed"
2550
2551         log "done"
2552         # restore adaptive timeout
2553         [ $at_max_saved -ne 0 ] && at_max_set $at_max_saved mds client
2554
2555         $LCTL dk $TMP/lustre-log-$TESTNAME.log
2556
2557         CONNCNT=$($LCTL get_param mdc.${FSNAME}*.stats |
2558                   awk '/mds_connect/{print $2}')
2559
2560         # retrieve from the log if the client has ever tried to
2561         # contact the fake server after the loss of connection
2562         FAILCONN=`awk "BEGIN {ret = 0;}
2563                        /import_select_connection.*${FSNAME}-MDT0000-mdc.* using connection/ {
2564                                 ret = 1;
2565                                 if (\\\$NF ~ /$FAKENID/) {
2566                                         ret = 2;
2567                                         exit;
2568                                 }
2569                        }
2570                        END {print ret}" $TMP/lustre-log-$TESTNAME.log`
2571
2572         [ "$FAILCONN" == "0" ] &&
2573                 error "The client reconnection has not been triggered"
2574         [ "$FAILCONN" == "2" ] &&
2575                 error "Primary server busy, client reconnect to failover failed"
2576
2577         # LU-290
2578         # When OBD_FAIL_MDS_RESEND is hit, we sleep for 2 * obd_timeout
2579         # Reconnects are supposed to be rate limited to one every 5s
2580         [ $CONNCNT -gt $((2 * $TIMEOUT / 5 + 1)) ] &&
2581                 error "Too many reconnects $CONNCNT"
2582
2583         cleanup || error "cleanup failed with $?"
2584         # remove nid settings
2585         writeconf_or_reformat
2586 }
2587 run_test 35b "Continue reconnection retries, if the active server is busy"
2588
2589 test_36() { # 12743
2590         [ $OSTCOUNT -lt 2 ] && skip_env "skipping test for single OST" && return
2591
2592         [ "$ost_HOST" = "`hostname`" -o "$ost1_HOST" = "`hostname`" ] ||
2593                 { skip "remote OST" && return 0; }
2594
2595         local rc=0
2596         local FSNAME2=test1234
2597         local MDSDEV=$(mdsdevname ${SINGLEMDS//mds/})
2598
2599         [ -n "$ost1_HOST" ] && fs2ost_HOST=$ost1_HOST && fs3ost_HOST=$ost1_HOST
2600
2601         if [ -z "$fs2ost_DEV" -o -z "$fs2mds_DEV" -o -z "$fs3ost_DEV" ]; then
2602                 is_blkdev $SINGLEMDS $MDSDEV &&
2603                 skip_env "mixed loopback and real device not working" && return
2604         fi
2605
2606         local fs2mdsdev=$(mdsdevname 1_2)
2607         local fs2ostdev=$(ostdevname 1_2)
2608         local fs3ostdev=$(ostdevname 2_2)
2609         local fs2mdsvdev=$(mdsvdevname 1_2)
2610         local fs2ostvdev=$(ostvdevname 1_2)
2611         local fs3ostvdev=$(ostvdevname 2_2)
2612
2613         add fs2mds $(mkfs_opts mds1 ${fs2mdsdev}) --mgs --fsname=${FSNAME2} \
2614                 --reformat $fs2mdsdev $fs2mdsvdev || exit 10
2615         # XXX after we support non 4K disk blocksize in ldiskfs, specify a
2616         #     different one than the default value here.
2617         add fs2ost $(mkfs_opts ost1 ${fs2ostdev}) --mgsnode=$MGSNID \
2618                 --fsname=${FSNAME2} --reformat $fs2ostdev $fs2ostvdev || exit 10
2619         add fs3ost $(mkfs_opts ost2 ${fs3ostdev}) --mgsnode=$MGSNID \
2620                 --fsname=${FSNAME2} --reformat $fs3ostdev $fs3ostvdev || exit 10
2621
2622         start fs2mds $fs2mdsdev $MDS_MOUNT_OPTS
2623         start fs2ost $fs2ostdev $OST_MOUNT_OPTS
2624         start fs3ost $fs3ostdev $OST_MOUNT_OPTS
2625         mkdir -p $MOUNT2 || error "mkdir $MOUNT2 failed"
2626         $MOUNT_CMD $MGSNID:/${FSNAME2} $MOUNT2 || error "$MOUNT_CMD failed"
2627
2628         sleep 5 # until 11778 fixed
2629
2630         dd if=/dev/zero of=$MOUNT2/$tfile bs=1M count=7 || error "dd failed"
2631
2632         BKTOTAL=$($LCTL get_param -n obdfilter.*.kbytestotal |
2633                   awk 'BEGIN{total=0}; {total+=$1}; END{print total}')
2634         BKFREE=$($LCTL get_param -n obdfilter.*.kbytesfree |
2635                  awk 'BEGIN{free=0}; {free+=$1}; END{print free}')
2636         BKAVAIL=$($LCTL get_param -n obdfilter.*.kbytesavail |
2637                   awk 'BEGIN{avail=0}; {avail+=$1}; END{print avail}')
2638         STRING=$(df -P $MOUNT2 | tail -n 1 | awk '{print $2","$3","$4}')
2639         DFTOTAL=$(echo $STRING | cut -d, -f1)
2640         DFUSED=$(echo $STRING  | cut -d, -f2)
2641         DFAVAIL=$(echo $STRING | cut -d, -f3)
2642         DFFREE=$(($DFTOTAL - $DFUSED))
2643
2644         ALLOWANCE=$((64 * $OSTCOUNT))
2645
2646         if [ $DFTOTAL -lt $(($BKTOTAL - $ALLOWANCE)) ] ||
2647            [ $DFTOTAL -gt $(($BKTOTAL + $ALLOWANCE)) ] ; then
2648                 echo "**** FAIL: df total($DFTOTAL) mismatch OST total($BKTOTAL)"
2649                 rc=1
2650         fi
2651         if [ $DFFREE -lt $(($BKFREE - $ALLOWANCE)) ] ||
2652            [ $DFFREE -gt $(($BKFREE + $ALLOWANCE)) ] ; then
2653                 echo "**** FAIL: df free($DFFREE) mismatch OST free($BKFREE)"
2654                 rc=2
2655         fi
2656         if [ $DFAVAIL -lt $(($BKAVAIL - $ALLOWANCE)) ] ||
2657            [ $DFAVAIL -gt $(($BKAVAIL + $ALLOWANCE)) ] ; then
2658                 echo "**** FAIL: df avail($DFAVAIL) mismatch OST avail($BKAVAIL)"
2659                 rc=3
2660        fi
2661
2662         $UMOUNT $MOUNT2
2663         stop fs3ost -f || error "unable to stop OST3"
2664         stop fs2ost -f || error "unable to stop OST2"
2665         stop fs2mds -f || error "unable to stop second MDS"
2666         unload_modules_conf || error "unable unload modules"
2667         return $rc
2668 }
2669 run_test 36 "df report consistency on OSTs with different block size"
2670
2671 test_37() {
2672         local mntpt=$(facet_mntpt $SINGLEMDS)
2673         local mdsdev=$(mdsdevname ${SINGLEMDS//mds/})
2674         local mdsdev_sym="$TMP/sym_mdt.img"
2675         local opts=$MDS_MOUNT_OPTS
2676         local rc=0
2677
2678         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
2679                 skip "Currently only applicable to ldiskfs-based MDTs"
2680                 return
2681         fi
2682
2683         echo "MDS :     $mdsdev"
2684         echo "SYMLINK : $mdsdev_sym"
2685         do_facet $SINGLEMDS rm -f $mdsdev_sym
2686
2687         do_facet $SINGLEMDS ln -s $mdsdev $mdsdev_sym
2688
2689         echo "mount symlink device - $mdsdev_sym"
2690
2691         if ! do_facet $SINGLEMDS test -b $mdsdev; then
2692                 opts=$(csa_add "$opts" -o loop)
2693         fi
2694         mount_op=$(do_facet $SINGLEMDS mount -v -t lustre $opts \
2695                 $mdsdev_sym $mntpt 2>&1)
2696         rc=${PIPESTATUS[0]}
2697
2698         echo mount_op=$mount_op
2699
2700         do_facet $SINGLEMDS "$UMOUNT $mntpt && rm -f $mdsdev_sym"
2701
2702         if $(echo $mount_op | grep -q "unable to set tunable"); then
2703                 error "set tunables failed for symlink device"
2704         fi
2705
2706         [ $rc -eq 0 ] || error "mount symlink $mdsdev_sym failed! rc=$rc"
2707 }
2708 run_test 37 "verify set tunables works for symlink device"
2709
2710 test_38() { # bug 14222
2711         local fstype=$(facet_fstype $SINGLEMDS)
2712         local mntpt=$(facet_mntpt $SINGLEMDS)
2713
2714         setup
2715         # like runtests
2716         local COUNT=10
2717         local SRC="/etc /bin"
2718         local FILES=$(find $SRC -type f -mtime +1 | head -n $COUNT)
2719         log "copying $(echo $FILES | wc -w) files to $DIR/$tdir"
2720         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
2721         tar cf - $FILES | tar xf - -C $DIR/$tdir ||
2722                 error "copying $SRC to $DIR/$tdir"
2723         sync
2724         umount_client $MOUNT || error "umount_client $MOUNT failed"
2725         do_facet $SINGLEMDS "$LCTL get_param osp.*.prealloc_next_id"
2726         stop_mds || error "Unable to stop MDS"
2727         log "delete lov_objid file on MDS"
2728
2729         mount_fstype $SINGLEMDS || error "mount MDS failed (1)"
2730
2731         do_facet $SINGLEMDS "od -Ax -td8 $mntpt/lov_objid; rm $mntpt/lov_objid"
2732
2733         unmount_fstype $SINGLEMDS || error "umount failed (1)"
2734
2735         # check create in mds_lov_connect
2736         start_mds || error "unable to start MDS"
2737         mount_client $MOUNT || error "mount_client $MOUNT failed"
2738         for f in $FILES; do
2739                 [ $V ] && log "verifying $DIR/$tdir/$f"
2740                 diff -q $f $DIR/$tdir/$f || ERROR=y
2741         done
2742         do_facet $SINGLEMDS "$LCTL get_param osp.*.prealloc_next_id"
2743         if [ "$ERROR" = "y" ]; then
2744                 # check it's updates in sync
2745                 umount_client $MOUNT
2746                 stop_mds
2747                 mount_fstype $SIGNLEMDS
2748                 do_facet $SINGLEMDS "od -Ax -td8 $mntpt/lov_objid"
2749                 unmount_fstype $SINGLEMDS
2750                 error "old and new files are different after connect" || true
2751         fi
2752         touch $DIR/$tdir/f2 || error "f2 file create failed"
2753
2754         # check it's updates in sync
2755         umount_client $MOUNT || error "second umount_client $MOUNT failed"
2756         stop_mds
2757
2758         mount_fstype $SINGLEMDS || error "mount MDS failed (3)"
2759
2760         do_facet $SINGLEMDS "od -Ax -td8 $mntpt/lov_objid"
2761         do_facet $SINGLEMDS dd if=/dev/zero of=$mntpt/lov_objid.clear count=8
2762
2763         unmount_fstype $SINGLEMDS || error "umount failed (3)"
2764
2765         start_mds || error "unable to start MDS"
2766         mount_client $MOUNT || error "mount_client $MOUNT failed"
2767         for f in $FILES; do
2768                 [ $V ] && log "verifying $DIR/$tdir/$f"
2769                 diff -q $f $DIR/$tdir/$f || ERROR=y
2770         done
2771         touch $DIR/$tdir/f3 || error "f3 file create failed"
2772         do_facet $SINGLEMDS "$LCTL get_param osp.*.prealloc_next_id"
2773         umount_client $MOUNT || error "third umount_client $MOUNT failed"
2774         stop_mds
2775         mount_fstype $SINGLEMDS || error "mount MDS failed (4)"
2776         do_facet $SINGLEMDS "od -Ax -td8 $mntpt/lov_objid"
2777         unmount_fstype $SINGLEMDS || error "umount failed (4)"
2778
2779         [ "$ERROR" = "y" ] &&
2780                 error "old and new files are different after sync" || true
2781
2782         log "files compared the same"
2783         cleanup || error "cleanup failed with $?"
2784 }
2785 run_test 38 "MDS recreates missing lov_objid file from OST data"
2786
2787 test_39() {
2788         PTLDEBUG=+malloc
2789         setup
2790         cleanup || error "cleanup failed with $?"
2791         perl $SRCDIR/leak_finder.pl $TMP/debug 2>&1 | egrep '*** Leak:' &&
2792                 error "memory leak detected" || true
2793 }
2794 run_test 39 "leak_finder recognizes both LUSTRE and LNET malloc messages"
2795
2796 test_40() { # bug 15759
2797         start_ost || error "Unable to start OST1"
2798         #define OBD_FAIL_TGT_TOOMANY_THREADS     0x706
2799         do_facet $SINGLEMDS "$LCTL set_param fail_loc=0x80000706"
2800         start_mds
2801         cleanup || error "cleanup failed with rc $?"
2802 }
2803 run_test 40 "race during service thread startup"
2804
2805 test_41a() { #bug 14134
2806         if [ $(facet_fstype $SINGLEMDS) == ldiskfs ] &&
2807            ! do_facet $SINGLEMDS test -b $(mdsdevname 1); then
2808                 skip "Loop devices does not work with nosvc option"
2809                 return
2810         fi
2811
2812         local MDSDEV=$(mdsdevname ${SINGLEMDS//mds/})
2813
2814         start_mdt 1 -o nosvc -n
2815         if [ $MDSCOUNT -ge 2 ]; then
2816                 for num in $(seq 2 $MDSCOUNT); do
2817                         start_mdt $num || return
2818                 done
2819         fi
2820         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS
2821         start_mdt 1 -o nomgs,force
2822         mount_client $MOUNT || error "mount_client $MOUNT failed"
2823         sleep 5
2824
2825         echo "blah blah" > $MOUNT/$tfile
2826         cat $MOUNT/$tfile
2827
2828         umount_client $MOUNT || error "umount_client $MOUNT failed"
2829         stop ost1 -f || error "unable to stop OST1"
2830         stop_mds || error "Unable to stop MDS"
2831         stop_mds || error "Unable to stop MDS on second try"
2832 }
2833 run_test 41a "mount mds with --nosvc and --nomgs"
2834
2835 test_41b() {
2836         if [ $(facet_fstype $SINGLEMDS) == ldiskfs ] &&
2837            ! do_facet $SINGLEMDS test -b $(mdsdevname 1); then
2838                 skip "Loop devices does not work with nosvc option"
2839                 return
2840         fi
2841
2842         ! combined_mgs_mds && skip "needs combined mgs device" && return 0
2843
2844         stopall
2845         reformat
2846         local MDSDEV=$(mdsdevname ${SINGLEMDS//mds/})
2847
2848         start_mdt 1 -o nosvc -n
2849         if [ $MDSCOUNT -ge 2 ]; then
2850                 for num in $(seq 2 $MDSCOUNT); do
2851                         start_mdt $num || return
2852                 done
2853         fi
2854         start_ost || error "Unable to start OST1"
2855         start_mdt 1 -o nomgs,force
2856         mount_client $MOUNT || error "mount_client $MOUNT failed"
2857         sleep 5
2858
2859         echo "blah blah" > $MOUNT/$tfile
2860         cat $MOUNT/$tfile || error "cat $MOUNT/$tfile failed"
2861
2862         umount_client $MOUNT || error "umount_client $MOUNT failed"
2863         stop_ost || error "Unable to stop OST1"
2864         stop_mds || error "Unable to stop MDS"
2865         stop_mds || error "Unable to stop MDS on second try"
2866 }
2867 run_test 41b "mount mds with --nosvc and --nomgs on first mount"
2868
2869 test_41c() {
2870         local server_version=$(lustre_version_code $SINGLEMDS)
2871
2872         [[ $server_version -ge $(version_code 2.6.52) ]] ||
2873         [[ $server_version -ge $(version_code 2.5.26) &&
2874            $server_version -lt $(version_code 2.5.50) ]] ||
2875         [[ $server_version -ge $(version_code 2.5.4) &&
2876            $server_version -lt $(version_code 2.5.11) ]] ||
2877                 { skip "Need MDS version 2.5.4+ or 2.5.26+ or 2.6.52+"; return; }
2878
2879         cleanup
2880         # MDT concurrent start
2881         #define OBD_FAIL_TGT_MOUNT_RACE 0x716
2882         do_facet $SINGLEMDS "$LCTL set_param fail_loc=0x716"
2883         start mds1 $(mdsdevname 1) $MDS_MOUNT_OPTS &
2884         local pid=$!
2885         start mds1 $(mdsdevname 1) $MDS_MOUNT_OPTS &
2886         do_facet $SINGLEMDS "$LCTL set_param fail_loc=0x0"
2887         local pid2=$!
2888         wait $pid2
2889         local rc2=$?
2890         wait $pid
2891         local rc=$?
2892         if [ $rc -eq 0 ] && [ $rc2 -ne 0 ]; then
2893                 echo "1st MDT start succeed"
2894                 echo "2nd MDT start failed with $rc2"
2895         elif [ $rc2 -eq 0 ] && [ $rc -ne 0 ]; then
2896                 echo "1st MDT start failed with $rc"
2897                 echo "2nd MDT start succeed"
2898         else
2899                 stop mds1 -f
2900                 error "unexpected concurrent MDT mounts result, rc=$rc rc2=$rc2"
2901         fi
2902
2903         if [ $MDSCOUNT -ge 2 ]; then
2904                 for num in $(seq 2 $MDSCOUNT); do
2905                         start_mdt $num || return
2906                 done
2907         fi
2908
2909         # OST concurrent start
2910
2911         #define OBD_FAIL_TGT_MOUNT_RACE 0x716
2912         do_facet ost1 "$LCTL set_param fail_loc=0x716"
2913         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS &
2914         pid=$!
2915         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS &
2916         do_facet ost1 "$LCTL set_param fail_loc=0x0"
2917         pid2=$!
2918         wait $pid2
2919         rc2=$?
2920         wait $pid
2921         rc=$?
2922         if [ $rc -eq 0 ] && [ $rc2 -ne 0 ]; then
2923                 echo "1st OST start succeed"
2924                 echo "2nd OST start failed with $rc2"
2925         elif [ $rc2 -eq 0 ] && [ $rc -ne 0 ]; then
2926                 echo "1st OST start failed with $rc"
2927                 echo "2nd OST start succeed"
2928         else
2929                 stop_mds -f
2930                 stop ost1 -f
2931                 error "unexpected concurrent OST mounts result, rc=$rc rc2=$rc2"
2932         fi
2933         # cleanup
2934         stop_mds
2935         stop ost1 -f
2936
2937         # verify everything ok
2938         start_mds
2939         if [ $? != 0 ]
2940         then
2941                 stop_mds
2942                 error "MDT(s) start failed"
2943         fi
2944
2945         start_ost
2946         if [ $? != 0 ]
2947         then
2948                 stop_mds
2949                 stop ost1 -f
2950                 error "OST(s) start failed"
2951         fi
2952
2953         mount_client $MOUNT
2954         if [ $? != 0 ]
2955         then
2956                 stop_mds
2957                 stop ost1 -f
2958                 error "client start failed"
2959         fi
2960         check_mount
2961         if [ $? != 0 ]
2962         then
2963                 stop_mds
2964                 stop ost1 -f
2965                 error "client mount failed"
2966         fi
2967         cleanup
2968 }
2969 run_test 41c "concurrent mounts of MDT/OST should all fail but one"
2970
2971 test_42() { #bug 14693
2972         setup
2973         check_mount || error "client was not mounted"
2974
2975         do_facet mgs $LCTL conf_param $FSNAME.llite.some_wrong_param=10
2976         umount_client $MOUNT ||
2977                 error "unmounting client failed with invalid llite param"
2978         mount_client $MOUNT ||
2979                 error "mounting client failed with invalid llite param"
2980
2981         do_facet mgs $LCTL conf_param $FSNAME.sys.some_wrong_param=20
2982         cleanup || error "stopping $FSNAME failed with invalid sys param"
2983         setup
2984         check_mount || error "client was not mounted with invalid sys param"
2985         cleanup || error "stopping $FSNAME failed with invalid sys param"
2986 }
2987 run_test 42 "allow client/server mount/unmount with invalid config param"
2988
2989 test_43a() {
2990         [[ $(lustre_version_code mgs) -ge $(version_code 2.5.58) ]] ||
2991                 { skip "Need MDS version at least 2.5.58" && return 0; }
2992         [ $UID -ne 0 -o $RUNAS_ID -eq 0 ] && skip_env "run as root"
2993
2994         ID1=${ID1:-501}
2995         USER1=$(cat /etc/passwd | grep :$ID1:$ID1: | cut -d: -f1)
2996         [ -z "$USER1" ] && skip_env "missing user with uid=$ID1 gid=$ID1" &&
2997                 return
2998
2999         setup
3000         chmod ugo+x $DIR || error "chmod 0 failed"
3001         set_conf_param_and_check mds                                    \
3002                 "$LCTL get_param -n mdt.$FSNAME-MDT0000.root_squash"    \
3003                 "$FSNAME.mdt.root_squash"                               \
3004                 "0:0"
3005         wait_update $HOSTNAME                                           \
3006                 "$LCTL get_param -n llite.${FSNAME}*.root_squash"       \
3007                 "0:0" ||
3008                 error "check llite root_squash failed!"
3009         set_conf_param_and_check mds                                    \
3010                 "$LCTL get_param -n mdt.$FSNAME-MDT0000.nosquash_nids"  \
3011                 "$FSNAME.mdt.nosquash_nids"                             \
3012                 "NONE"
3013         wait_update $HOSTNAME                                           \
3014                 "$LCTL get_param -n llite.${FSNAME}*.nosquash_nids"     \
3015                 "NONE" ||
3016                 error "check llite nosquash_nids failed!"
3017
3018     #
3019     # create set of test files
3020     #
3021     echo "111" > $DIR/$tfile-userfile || error "write 1 failed"
3022     chmod go-rw $DIR/$tfile-userfile  || error "chmod 1 failed"
3023     chown $RUNAS_ID.$RUNAS_ID $DIR/$tfile-userfile || error "chown failed"
3024
3025     echo "222" > $DIR/$tfile-rootfile || error "write 2 failed"
3026     chmod go-rw $DIR/$tfile-rootfile  || error "chmod 2 faield"
3027
3028         mkdir $DIR/$tdir-rootdir || error "mkdir failed"
3029         chmod go-rwx $DIR/$tdir-rootdir || error "chmod 3 failed"
3030         touch $DIR/$tdir-rootdir/tfile-1 || error "touch failed"
3031
3032         echo "777" > $DIR/$tfile-user1file || error "write 7 failed"
3033         chmod go-rw $DIR/$tfile-user1file || error "chmod 7 failed"
3034         chown $ID1.$ID1 $DIR/$tfile-user1file || error "chown failed"
3035
3036         #
3037         # check root_squash:
3038         #   set root squash UID:GID to RUNAS_ID
3039         #   root should be able to access only files owned by RUNAS_ID
3040         #
3041         set_conf_param_and_check mds                                    \
3042                 "$LCTL get_param -n mdt.$FSNAME-MDT0000.root_squash"    \
3043                 "$FSNAME.mdt.root_squash"                               \
3044                 "$RUNAS_ID:$RUNAS_ID"
3045         wait_update $HOSTNAME                                           \
3046                 "$LCTL get_param -n llite.${FSNAME}*.root_squash"       \
3047                 "$RUNAS_ID:$RUNAS_ID" ||
3048                 error "check llite root_squash failed!"
3049
3050         ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tfile-userfile)
3051         dd if=$DIR/$tfile-userfile 1>/dev/null 2>/dev/null ||
3052                 error "$ST: root read permission is denied"
3053         echo "$ST: root read permission is granted - ok"
3054
3055         echo "444" |
3056         dd conv=notrunc of=$DIR/$tfile-userfile 1>/dev/null 2>/dev/null ||
3057                 error "$ST: root write permission is denied"
3058         echo "$ST: root write permission is granted - ok"
3059
3060         ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tfile-rootfile)
3061         dd if=$DIR/$tfile-rootfile 1>/dev/null 2>/dev/null &&
3062                 error "$ST: root read permission is granted"
3063         echo "$ST: root read permission is denied - ok"
3064
3065         echo "555" |
3066         dd conv=notrunc of=$DIR/$tfile-rootfile 1>/dev/null 2>/dev/null &&
3067                 error "$ST: root write permission is granted"
3068         echo "$ST: root write permission is denied - ok"
3069
3070         ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tdir-rootdir)
3071                 rm $DIR/$tdir-rootdir/tfile-1 1>/dev/null 2>/dev/null &&
3072                         error "$ST: root unlink permission is granted"
3073         echo "$ST: root unlink permission is denied - ok"
3074
3075         touch $DIR/tdir-rootdir/tfile-2 1>/dev/null 2>/dev/null &&
3076                 error "$ST: root create permission is granted"
3077         echo "$ST: root create permission is denied - ok"
3078
3079         # LU-1778
3080         # check root_squash is enforced independently
3081         # of client cache content
3082         #
3083         # access file by USER1, keep access open
3084         # root should be denied access to user file
3085
3086         runas -u $ID1 tail -f $DIR/$tfile-user1file 1>/dev/null 2>&1 &
3087         pid=$!
3088         sleep 1
3089
3090         ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tfile-user1file)
3091         dd if=$DIR/$tfile-user1file 1>/dev/null 2>&1 &&
3092             { kill $pid; error "$ST: root read permission is granted"; }
3093         echo "$ST: root read permission is denied - ok"
3094
3095         echo "777" |
3096         dd conv=notrunc of=$DIR/$tfile-user1file 1>/dev/null 2>&1 &&
3097             { kill $pid; error "$ST: root write permission is granted"; }
3098         echo "$ST: root write permission is denied - ok"
3099
3100         kill $pid
3101         wait $pid
3102
3103         #
3104         # check nosquash_nids:
3105         #   put client's NID into nosquash_nids list,
3106         #   root should be able to access root file after that
3107         #
3108         local NIDLIST=$($LCTL list_nids all | tr '\n' ' ')
3109         NIDLIST="2@gni $NIDLIST 192.168.0.[2,10]@tcp"
3110         NIDLIST=$(echo $NIDLIST | tr -s ' ' ' ')
3111         set_conf_param_and_check mds                                    \
3112                 "$LCTL get_param -n mdt.$FSNAME-MDT0000.nosquash_nids"  \
3113                 "$FSNAME-MDTall.mdt.nosquash_nids"                      \
3114                 "$NIDLIST"
3115         wait_update $HOSTNAME                                           \
3116                 "$LCTL get_param -n llite.${FSNAME}*.nosquash_nids"     \
3117                 "$NIDLIST" ||
3118                 error "check llite nosquash_nids failed!"
3119
3120         ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tfile-rootfile)
3121         dd if=$DIR/$tfile-rootfile 1>/dev/null 2>/dev/null ||
3122                 error "$ST: root read permission is denied"
3123         echo "$ST: root read permission is granted - ok"
3124
3125         echo "666" |
3126         dd conv=notrunc of=$DIR/$tfile-rootfile 1>/dev/null 2>/dev/null ||
3127                 error "$ST: root write permission is denied"
3128         echo "$ST: root write permission is granted - ok"
3129
3130         ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tdir-rootdir)
3131         rm $DIR/$tdir-rootdir/tfile-1 ||
3132                 error "$ST: root unlink permission is denied"
3133         echo "$ST: root unlink permission is granted - ok"
3134         touch $DIR/$tdir-rootdir/tfile-2 ||
3135                 error "$ST: root create permission is denied"
3136         echo "$ST: root create permission is granted - ok"
3137         cleanup || error "cleanup failed with $?"
3138 }
3139 run_test 43a "check root_squash and nosquash_nids"
3140
3141 test_43b() { # LU-5690
3142         [[ $(lustre_version_code mgs) -ge $(version_code 2.7.62) ]] ||
3143                 { skip "Need MGS version 2.7.62+"; return; }
3144
3145         if [[ -z "$fs2mds_DEV" ]]; then
3146                 is_blkdev $SINGLEMDS $(mdsdevname ${SINGLEMDS//mds/}) &&
3147                 skip_env "mixed loopback and real device not working" && return
3148         fi
3149
3150         local fs2mdsdev=$(mdsdevname 1_2)
3151         local fs2mdsvdev=$(mdsvdevname 1_2)
3152
3153         # temporarily use fs2mds as fs2mgs
3154         local fs2mgs=fs2mds
3155         local fs2mgsdev=$fs2mdsdev
3156         local fs2mgsvdev=$fs2mdsvdev
3157
3158         local fsname=test1234
3159
3160         load_module llite/lustre
3161         local client_ip=$(host_nids_address $HOSTNAME $NETTYPE)
3162         local host=${client_ip//*./}
3163         local net=${client_ip/%$host/}
3164         local nosquash_nids=$(h2$NETTYPE $net[$host,$host,$host])
3165
3166         add $fs2mgs $(mkfs_opts mgs $fs2mgsdev) --fsname=$fsname \
3167                 --param mdt.root_squash=$RUNAS_ID:$RUNAS_ID \
3168                 --param mdt.nosquash_nids=$nosquash_nids \
3169                 --reformat $fs2mgsdev $fs2mgsvdev || error "add fs2mgs failed"
3170         start $fs2mgs $fs2mgsdev $MGS_MOUNT_OPTS  || error "start fs2mgs failed"
3171         stop $fs2mgs -f || error "stop fs2mgs failed"
3172 }
3173 run_test 43b "parse nosquash_nids with commas in expr_list"
3174
3175 umount_client $MOUNT
3176 cleanup_nocli
3177
3178 test_44() { # 16317
3179         setup
3180         check_mount || error "check_mount"
3181         UUID=$($LCTL get_param llite.${FSNAME}*.uuid | cut -d= -f2)
3182         STATS_FOUND=no
3183         UUIDS=$(do_facet $SINGLEMDS "$LCTL get_param mdt.${FSNAME}*.exports.*.uuid")
3184         for VAL in $UUIDS; do
3185                 NID=$(echo $VAL | cut -d= -f1)
3186                 CLUUID=$(echo $VAL | cut -d= -f2)
3187                 [ "$UUID" = "$CLUUID" ] && STATS_FOUND=yes && break
3188         done
3189         [ "$STATS_FOUND" = "no" ] && error "stats not found for client"
3190         cleanup || error "cleanup failed with $?"
3191 }
3192 run_test 44 "mounted client proc entry exists"
3193
3194 test_45() { #17310
3195         setup
3196         check_mount || error "check_mount"
3197         stop_mds || error "Unable to stop MDS"
3198         df -h $MOUNT &
3199         log "sleep 60 sec"
3200         sleep 60
3201         #define OBD_FAIL_PTLRPC_LONG_UNLINK   0x50f
3202         do_facet client "$LCTL set_param fail_loc=0x50f"
3203         log "sleep 10 sec"
3204         sleep 10
3205         manual_umount_client --force || error "manual_umount_client failed"
3206         do_facet client "$LCTL set_param fail_loc=0x0"
3207         start_mds || error "unable to start MDS"
3208         mount_client $MOUNT || error "mount_client $MOUNT failed"
3209         cleanup || error "cleanup failed with $?"
3210 }
3211 run_test 45 "long unlink handling in ptlrpcd"
3212
3213 cleanup_46a() {
3214         trap 0
3215         local rc=0
3216         local count=$1
3217
3218         umount_client $MOUNT2 || rc=$?
3219         umount_client $MOUNT || rc=$?
3220         while [ $count -gt 0 ]; do
3221                 stop ost${count} -f || rc=$?
3222                 let count=count-1
3223         done
3224         stop_mds || rc=$?
3225         cleanup_nocli || rc=$?
3226         #writeconf to remove all ost2 traces for subsequent tests
3227         writeconf_or_reformat
3228         return $rc
3229 }
3230
3231 test_46a() {
3232         echo "Testing with $OSTCOUNT OSTs"
3233         reformat_and_config
3234         start_mds || error "unable to start MDS"
3235         #first client should see only one ost
3236         start_ost || error "Unable to start OST1"
3237         wait_osc_import_state mds ost FULL
3238         #start_client
3239         mount_client $MOUNT || error "mount_client $MOUNT failed"
3240         trap "cleanup_46a $OSTCOUNT" EXIT ERR
3241
3242         local i
3243         for (( i=2; i<=$OSTCOUNT; i++ )); do
3244                 start ost$i $(ostdevname $i) $OST_MOUNT_OPTS ||
3245                         error "start_ost$i $(ostdevname $i) failed"
3246         done
3247
3248         # wait until osts in sync
3249         for (( i=2; i<=$OSTCOUNT; i++ )); do
3250             wait_osc_import_state mds ost$i FULL
3251             wait_osc_import_state client ost$i FULL
3252         done
3253
3254         #second client see all ost's
3255
3256         mount_client $MOUNT2 || error "mount_client failed"
3257         $SETSTRIPE -c -1 $MOUNT2 || error "$SETSTRIPE -c -1 $MOUNT2 failed"
3258         $GETSTRIPE $MOUNT2 || error "$GETSTRIPE $MOUNT2 failed"
3259
3260         echo "ok" > $MOUNT2/widestripe
3261         $GETSTRIPE $MOUNT2/widestripe ||
3262                 error "$GETSTRIPE $MOUNT2/widestripe failed"
3263         # fill acl buffer for avoid expand lsm to them
3264         awk -F : '{if (FNR < 25) { print "u:"$1":rwx" }}' /etc/passwd |
3265                 while read acl; do
3266             setfacl -m $acl $MOUNT2/widestripe
3267         done
3268
3269         # will be deadlock
3270         stat $MOUNT/widestripe || error "stat $MOUNT/widestripe failed"
3271
3272         cleanup_46a $OSTCOUNT || error "cleanup_46a failed"
3273 }
3274 run_test 46a "handle ost additional - wide striped file"
3275
3276 test_47() { #17674
3277         reformat
3278         setup_noconfig
3279         check_mount || error "check_mount failed"
3280         $LCTL set_param ldlm.namespaces.$FSNAME-*-*-*.lru_size=100
3281
3282         local lru_size=[]
3283         local count=0
3284         for ns in $($LCTL get_param ldlm.namespaces.$FSNAME-*-*-*.lru_size); do
3285             if echo $ns | grep "MDT[[:digit:]]*"; then
3286                 continue
3287             fi
3288             lrs=$(echo $ns | sed 's/.*lru_size=//')
3289             lru_size[count]=$lrs
3290             let count=count+1
3291         done
3292
3293         facet_failover ost1
3294         facet_failover $SINGLEMDS
3295         client_up || error "client_up failed"
3296
3297         count=0
3298         for ns in $($LCTL get_param ldlm.namespaces.$FSNAME-*-*-*.lru_size); do
3299             if echo $ns | grep "MDT[[:digit:]]*"; then
3300                 continue
3301             fi
3302             lrs=$(echo $ns | sed 's/.*lru_size=//')
3303             if ! test "$lrs" -eq "${lru_size[count]}"; then
3304                 n=$(echo $ns | sed -e 's/ldlm.namespaces.//' -e 's/.lru_size=.*//')
3305                 error "$n has lost lru_size: $lrs vs. ${lru_size[count]}"
3306             fi
3307             let count=count+1
3308         done
3309
3310         cleanup || error "cleanup failed with $?"
3311 }
3312 run_test 47 "server restart does not make client loss lru_resize settings"
3313
3314 cleanup_48() {
3315         trap 0
3316
3317         # reformat after this test is needed - if the test fails,
3318         # we will have unkillable file at FS
3319         reformat_and_config
3320 }
3321
3322 test_48() { # bug 17636
3323         reformat
3324         setup_noconfig
3325         check_mount || error "check_mount failed"
3326
3327         $SETSTRIPE -c -1 $MOUNT || error "$SETSTRIPE -c -1 $MOUNT failed"
3328         $GETSTRIPE $MOUNT || error "$GETSTRIPE $MOUNT failed"
3329
3330         echo "ok" > $MOUNT/widestripe
3331         $GETSTRIPE $MOUNT/widestripe ||
3332                 error "$GETSTRIPE $MOUNT/widestripe failed"
3333
3334         trap cleanup_48 EXIT ERR
3335
3336         # fill acl buffer for avoid expand lsm to them
3337         getent passwd | awk -F : '{ print "u:"$1":rwx" }' |  while read acl; do
3338             setfacl -m $acl $MOUNT/widestripe
3339         done
3340
3341         stat $MOUNT/widestripe || error "stat $MOUNT/widestripe failed"
3342
3343         cleanup_48
3344 }
3345 run_test 48 "too many acls on file"
3346
3347 # check PARAM_SYS_LDLM_TIMEOUT option of MKFS.LUSTRE
3348 test_49a() { # bug 17710
3349         local timeout_orig=$TIMEOUT
3350         local ldlm_timeout_orig=$LDLM_TIMEOUT
3351         local LOCAL_TIMEOUT=20
3352
3353         LDLM_TIMEOUT=$LOCAL_TIMEOUT
3354         TIMEOUT=$LOCAL_TIMEOUT
3355
3356         reformat
3357         setup_noconfig
3358         check_mount || error "client mount failed"
3359
3360         echo "check ldlm_timout..."
3361         local LDLM_MDS="$(do_facet $SINGLEMDS $LCTL get_param -n ldlm_timeout)"
3362         local LDLM_OST1="$(do_facet ost1 $LCTL get_param -n ldlm_timeout)"
3363         local LDLM_CLIENT="$(do_facet client $LCTL get_param -n ldlm_timeout)"
3364
3365         if [ $LDLM_MDS -ne $LDLM_OST1 -o $LDLM_MDS -ne $LDLM_CLIENT ]; then
3366                 error "Different LDLM_TIMEOUT:$LDLM_MDS $LDLM_OST1 $LDLM_CLIENT"
3367         fi
3368
3369         if [ $LDLM_MDS -ne $((LOCAL_TIMEOUT / 3)) ]; then
3370                 error "LDLM_TIMEOUT($LDLM_MDS) is not $((LOCAL_TIMEOUT / 3))"
3371         fi
3372
3373         umount_client $MOUNT || error "umount_client $MOUNT failed"
3374         stop_ost || error "problem stopping OSS"
3375         stop_mds || error "problem stopping MDS"
3376
3377         LDLM_TIMEOUT=$ldlm_timeout_orig
3378         TIMEOUT=$timeout_orig
3379 }
3380 run_test 49a "check PARAM_SYS_LDLM_TIMEOUT option of mkfs.lustre"
3381
3382 test_49b() { # bug 17710
3383         local timeout_orig=$TIMEOUT
3384         local ldlm_timeout_orig=$LDLM_TIMEOUT
3385         local LOCAL_TIMEOUT=20
3386
3387         LDLM_TIMEOUT=$((LOCAL_TIMEOUT - 1))
3388         TIMEOUT=$LOCAL_TIMEOUT
3389
3390         reformat
3391         setup_noconfig
3392         check_mount || error "client mount failed"
3393
3394         local LDLM_MDS="$(do_facet $SINGLEMDS $LCTL get_param -n ldlm_timeout)"
3395         local LDLM_OST1="$(do_facet ost1 $LCTL get_param -n ldlm_timeout)"
3396         local LDLM_CLIENT="$(do_facet client $LCTL get_param -n ldlm_timeout)"
3397
3398         if [ $LDLM_MDS -ne $LDLM_OST1 -o $LDLM_MDS -ne $LDLM_CLIENT ]; then
3399                 error "Different LDLM_TIMEOUT:$LDLM_MDS $LDLM_OST1 $LDLM_CLIENT"
3400         fi
3401
3402         if [ $LDLM_MDS -ne $((LOCAL_TIMEOUT - 1)) ]; then
3403                 error "LDLM_TIMEOUT($LDLM_MDS) is not $((LOCAL_TIMEOUT - 1))"
3404         fi
3405
3406         cleanup || error "cleanup failed"
3407
3408         LDLM_TIMEOUT=$ldlm_timeout_orig
3409         TIMEOUT=$timeout_orig
3410 }
3411 run_test 49b "check PARAM_SYS_LDLM_TIMEOUT option of mkfs.lustre"
3412
3413 lazystatfs() {
3414         # Test both statfs and lfs df and fail if either one fails
3415         multiop_bg_pause $1 f_
3416         RC1=$?
3417         PID=$!
3418         killall -USR1 multiop
3419         [ $RC1 -ne 0 ] && log "lazystatfs multiop failed"
3420         wait $PID || { RC1=$?; log "multiop return error "; }
3421
3422         $LFS df &
3423         PID=$!
3424         sleep 5
3425         kill -s 0 $PID
3426         RC2=$?
3427         if [ $RC2 -eq 0 ]; then
3428             kill -s 9 $PID
3429             log "lazystatfs df failed"
3430         fi
3431
3432         RC=0
3433         [[ $RC1 -ne 0 || $RC2 -eq 0 ]] && RC=1
3434         return $RC
3435 }
3436
3437 test_50a() {
3438         setup
3439         $LCTL set_param llite.$FSNAME-*.lazystatfs=1
3440         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
3441
3442         lazystatfs $MOUNT || error "lazystatfs failed but no down servers"
3443
3444         cleanup || error "cleanup failed with rc $?"
3445 }
3446 run_test 50a "lazystatfs all servers available"
3447
3448 test_50b() {
3449         setup
3450         $LCTL set_param llite.$FSNAME-*.lazystatfs=1
3451         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
3452
3453         # Wait for client to detect down OST
3454         stop_ost || error "Unable to stop OST1"
3455         wait_osc_import_state mds ost DISCONN
3456
3457         lazystatfs $MOUNT || error "lazystatfs should not return EIO"
3458
3459         umount_client $MOUNT || error "Unable to unmount client"
3460         stop_mds || error "Unable to stop MDS"
3461 }
3462 run_test 50b "lazystatfs all servers down"
3463
3464 test_50c() {
3465         start_mds || error "Unable to start MDS"
3466         start_ost || error "Unable to start OST1"
3467         start_ost2 || error "Unable to start OST2"
3468         mount_client $MOUNT || error "Unable to mount client"
3469         $LCTL set_param llite.$FSNAME-*.lazystatfs=1
3470         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
3471
3472         # Wait for client to detect down OST
3473         stop_ost || error "Unable to stop OST1"
3474         wait_osc_import_state mds ost DISCONN
3475         lazystatfs $MOUNT || error "lazystatfs failed with one down server"
3476
3477         umount_client $MOUNT || error "Unable to unmount client"
3478         stop_ost2 || error "Unable to stop OST2"
3479         stop_mds || error "Unable to stop MDS"
3480         #writeconf to remove all ost2 traces for subsequent tests
3481         writeconf_or_reformat
3482 }
3483 run_test 50c "lazystatfs one server down"
3484
3485 test_50d() {
3486         start_mds || error "Unable to start MDS"
3487         start_ost || error "Unable to start OST1"
3488         start_ost2 || error "Unable to start OST2"
3489         mount_client $MOUNT || error "Unable to mount client"
3490         $LCTL set_param llite.$FSNAME-*.lazystatfs=1
3491         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
3492
3493         # Issue the statfs during the window where the client still
3494         # belives the OST to be available but it is in fact down.
3495         # No failure just a statfs which hangs for a timeout interval.
3496         stop_ost || error "Unable to stop OST1"
3497         lazystatfs $MOUNT || error "lazystatfs failed with one down server"
3498
3499         umount_client $MOUNT || error "Unable to unmount client"
3500         stop_ost2 || error "Unable to stop OST2"
3501         stop_mds || error "Unable to stop MDS"
3502         #writeconf to remove all ost2 traces for subsequent tests
3503         writeconf_or_reformat
3504 }
3505 run_test 50d "lazystatfs client/server conn race"
3506
3507 test_50e() {
3508         local RC1
3509         local pid
3510
3511         reformat_and_config
3512         start_mds || error "Unable to start MDS"
3513         #first client should see only one ost
3514         start_ost || error "Unable to start OST1"
3515         wait_osc_import_state mds ost FULL
3516
3517         # Wait for client to detect down OST
3518         stop_ost || error "Unable to stop OST1"
3519         wait_osc_import_state mds ost DISCONN
3520
3521         mount_client $MOUNT || error "Unable to mount client"
3522         $LCTL set_param llite.$FSNAME-*.lazystatfs=0
3523
3524         multiop_bg_pause $MOUNT _f
3525         RC1=$?
3526         pid=$!
3527
3528         if [ $RC1 -ne 0 ]; then
3529                 log "multiop failed $RC1"
3530         else
3531             kill -USR1 $pid
3532             sleep $(( $TIMEOUT+1 ))
3533             kill -0 $pid
3534             [ $? -ne 0 ] && error "process isn't sleep"
3535             start_ost || error "Unable to start OST1"
3536             wait $pid || error "statfs failed"
3537         fi
3538
3539         umount_client $MOUNT || error "Unable to unmount client"
3540         stop_ost || error "Unable to stop OST1"
3541         stop_mds || error "Unable to stop MDS"
3542 }
3543 run_test 50e "normal statfs all servers down"
3544
3545 test_50f() {
3546         local RC1
3547         local pid
3548         CONN_PROC="osc.$FSNAME-OST0001-osc-[M]*.ost_server_uuid"
3549
3550         start_mds || error "Unable to start mds"
3551         #first client should see only one ost
3552         start_ost || error "Unable to start OST1"
3553         wait_osc_import_state mds ost FULL
3554
3555         start_ost2 || error "Unable to start OST2"
3556         wait_osc_import_state mds ost2 FULL
3557
3558         # Wait for client to detect down OST
3559         stop_ost2 || error "Unable to stop OST2"
3560
3561         wait_osc_import_state mds ost2 DISCONN
3562         mount_client $MOUNT || error "Unable to mount client"
3563         $LCTL set_param llite.$FSNAME-*.lazystatfs=0
3564
3565         multiop_bg_pause $MOUNT _f
3566         RC1=$?
3567         pid=$!
3568
3569         if [ $RC1 -ne 0 ]; then
3570                 log "lazystatfs multiop failed $RC1"
3571         else
3572             kill -USR1 $pid
3573             sleep $(( $TIMEOUT+1 ))
3574             kill -0 $pid
3575             [ $? -ne 0 ] && error "process isn't sleep"
3576             start_ost2 || error "Unable to start OST2"
3577             wait $pid || error "statfs failed"
3578             stop_ost2 || error "Unable to stop OST2"
3579         fi
3580
3581         umount_client $MOUNT -f || error "Unable to unmount client"
3582         stop_ost || error "Unable to stop OST1"
3583         stop_mds || error "Unable to stop MDS"
3584         #writeconf to remove all ost2 traces for subsequent tests
3585         writeconf_or_reformat
3586 }
3587 run_test 50f "normal statfs one server in down"
3588
3589 test_50g() {
3590         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2, skipping" && return
3591         setup
3592         start_ost2 || error "Unable to start OST2"
3593         wait_osc_import_state mds ost2 FULL
3594         wait_osc_import_state client ost2 FULL
3595
3596         local PARAM="${FSNAME}-OST0001.osc.active"
3597
3598         $SETSTRIPE -c -1 $DIR/$tfile || error "$SETSTRIPE failed"
3599         do_facet mgs $LCTL conf_param $PARAM=0 ||
3600                 error "Unable to deactivate OST"
3601
3602         umount_client $MOUNT || error "Unable to unmount client"
3603         mount_client $MOUNT || error "Unable to mount client"
3604         # This df should not cause a panic
3605         df -k $MOUNT
3606
3607         do_facet mgs $LCTL conf_param $PARAM=1 || error "Unable to activate OST"
3608         rm -f $DIR/$tfile || error "unable to remove file $DIR/$tfile"
3609         umount_client $MOUNT || error "Unable to unmount client"
3610         stop_ost2 || error "Unable to stop OST2"
3611         stop_ost || error "Unable to stop OST1"
3612         stop_mds || error "Unable to stop MDS"
3613         #writeconf to remove all ost2 traces for subsequent tests
3614         writeconf_or_reformat
3615 }
3616 run_test 50g "deactivated OST should not cause panic"
3617
3618 # LU-642
3619 test_50h() {
3620         # prepare MDT/OST, make OSC inactive for OST1
3621         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2, skipping" && return
3622
3623         [ $(facet_fstype ost1) == zfs ] && import_zpool ost1
3624         do_facet ost1 "$TUNEFS --param osc.active=0 `ostdevname 1`" ||
3625                 error "tunefs OST1 failed"
3626         start_mds  || error "Unable to start MDT"
3627         start_ost  || error "Unable to start OST1"
3628         start_ost2 || error "Unable to start OST2"
3629         mount_client $MOUNT || error "client start failed"
3630
3631         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
3632
3633         # activatate OSC for OST1
3634         local TEST="$LCTL get_param -n osc.${FSNAME}-OST0000-osc-[!M]*.active"
3635         set_conf_param_and_check client                                 \
3636                 "$TEST" "${FSNAME}-OST0000.osc.active" 1 ||
3637                 error "Unable to activate OST1"
3638
3639         mkdir $DIR/$tdir/2 || error "mkdir $DIR/$tdir/2 failed"
3640         $SETSTRIPE -c -1 -i 0 $DIR/$tdir/2 ||
3641                 error "$SETSTRIPE $DIR/$tdir/2 failed"
3642         sleep 1 && echo "create a file after OST1 is activated"
3643         # create some file
3644         createmany -o $DIR/$tdir/2/$tfile-%d 1
3645
3646         # check OSC import is working
3647         stat $DIR/$tdir/2/* >/dev/null 2>&1 ||
3648                 error "some OSC imports are still not connected"
3649
3650         # cleanup
3651         umount_client $MOUNT || error "Unable to umount client"
3652         stop_ost2 || error "Unable to stop OST2"
3653         cleanup_nocli || error "cleanup_nocli failed with $?"
3654 }
3655 run_test 50h "LU-642: activate deactivated OST"
3656
3657 test_50i() {
3658         # prepare MDT/OST, make OSC inactive for OST1
3659         [ "$MDSCOUNT" -lt "2" ] && skip_env "$MDSCOUNT < 2, skipping" && return
3660
3661         [ $(facet_fstype ost1) == zfs ] && import_zpool ost1
3662         do_facet mds2 "$TUNEFS --param mdc.active=0 $(mdsdevname 2)" ||
3663                 error "tunefs MDT2 failed"
3664         start_mds  || error "Unable to start MDT"
3665         start_ost  || error "Unable to start OST1"
3666         start_ost2 || error "Unable to start OST2"
3667         mount_client $MOUNT || error "client start failed"
3668
3669         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
3670
3671         $LCTL conf_param ${FSNAME}-MDT0000.mdc.active=0 &&
3672                 error "deactive MDC0 succeeds"
3673         # activate MDC for MDT2
3674         local TEST="$LCTL get_param -n mdc.${FSNAME}-MDT0001-mdc-[!M]*.active"
3675         set_conf_param_and_check client                                 \
3676                 "$TEST" "${FSNAME}-MDT0001.mdc.active" 1 ||
3677                 error "Unable to activate MDT2"
3678
3679         wait_clients_import_state ${CLIENTS:-$HOSTNAME} mds2 FULL
3680         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.7.60) ]
3681         then
3682                 wait_dne_interconnect
3683         fi
3684         $LFS mkdir -i1 $DIR/$tdir/2 || error "mkdir $DIR/$tdir/2 failed"
3685         # create some file
3686         createmany -o $DIR/$tdir/2/$tfile-%d 1 || error "create files failed"
3687
3688         rm -rf $DIR/$tdir/2 || error "unlink dir failed"
3689
3690         # deactivate MDC for MDT2
3691         local TEST="$LCTL get_param -n mdc.${FSNAME}-MDT0001-mdc-[!M]*.active"
3692         set_conf_param_and_check client                                 \
3693                 "$TEST" "${FSNAME}-MDT0001.mdc.active" 0 ||
3694                 error "Unable to deactivate MDT2"
3695
3696         $LFS mkdir -i1 $DIR/$tdir/2 &&
3697                 error "mkdir $DIR/$tdir/2 succeeds after deactive MDT"
3698
3699         # cleanup
3700         umount_client $MOUNT || error "Unable to umount client"
3701         stop_mds
3702         stop_ost
3703         stop_ost 2
3704 }
3705 run_test 50i "activate deactivated MDT"
3706
3707 test_51() {
3708         local LOCAL_TIMEOUT=20
3709
3710         reformat
3711         setup_noconfig
3712         check_mount || error "check_mount failed"
3713
3714         mkdir $MOUNT/$tdir || error "mkdir $MOUNT/$tdir failed"
3715         $SETSTRIPE -c -1 $MOUNT/$tdir ||
3716                 error "$SETSTRIPE -c -1 $MOUNT/$tdir failed"
3717         #define OBD_FAIL_MDS_REINT_DELAY         0x142
3718         do_facet $SINGLEMDS "$LCTL set_param fail_loc=0x142"
3719         touch $MOUNT/$tdir/$tfile &
3720         local pid=$!
3721         sleep 2
3722         start_ost2 || error "Unable to start OST1"
3723         wait $pid
3724         stop_ost2 || error "Unable to stop OST1"
3725         umount_client $MOUNT -f || error “unmount $MOUNT failed”
3726         cleanup_nocli || error “stop server failed”
3727         #writeconf to remove all ost2 traces for subsequent tests
3728         writeconf_or_reformat
3729 }
3730 run_test 51 "Verify that mdt_reint handles RMF_MDT_MD correctly when an OST is added"
3731
3732 copy_files_xattrs()
3733 {
3734         local node=$1
3735         local dest=$2
3736         local xattrs=$3
3737         shift 3
3738
3739         do_node $node mkdir -p $dest
3740         [ $? -eq 0 ] || { error "Unable to create directory"; return 1; }
3741
3742         do_node $node  'tar cf - '$@' | tar xf - -C '$dest';
3743                         [ \"\${PIPESTATUS[*]}\" = \"0 0\" ] || exit 1'
3744         [ $? -eq 0 ] || { error "Unable to tar files"; return 2; }
3745
3746         do_node $node 'getfattr -d -m "[a-z]*\\." '$@' > '$xattrs
3747         [ $? -eq 0 ] || { error "Unable to read xattrs"; return 3; }
3748 }
3749
3750 diff_files_xattrs()
3751 {
3752         local node=$1
3753         local backup=$2
3754         local xattrs=$3
3755         shift 3
3756
3757         local backup2=${TMP}/backup2
3758
3759         do_node $node mkdir -p $backup2
3760         [ $? -eq 0 ] || { error "Unable to create directory"; return 1; }
3761
3762         do_node $node  'tar cf - '$@' | tar xf - -C '$backup2';
3763                         [ \"\${PIPESTATUS[*]}\" = \"0 0\" ] || exit 1'
3764         [ $? -eq 0 ] || { error "Unable to tar files to diff"; return 2; }
3765
3766         do_node $node "diff -rq $backup $backup2"
3767         [ $? -eq 0 ] || { error "contents differ"; return 3; }
3768
3769         local xattrs2=${TMP}/xattrs2
3770         do_node $node 'getfattr -d -m "[a-z]*\\." '$@' > '$xattrs2
3771         [ $? -eq 0 ] || { error "Unable to read xattrs to diff"; return 4; }
3772
3773         do_node $node "diff $xattrs $xattrs2"
3774         [ $? -eq 0 ] || { error "xattrs differ"; return 5; }
3775
3776         do_node $node "rm -rf $backup2 $xattrs2"
3777         [ $? -eq 0 ] || { error "Unable to delete temporary files"; return 6; }
3778 }
3779
3780 test_52() {
3781         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
3782                 skip "Only applicable to ldiskfs-based MDTs"
3783                 return
3784         fi
3785
3786         start_mds || error "Unable to start MDS"
3787         start_ost || error "Unable to start OST1"
3788         mount_client $MOUNT || error "Unable to mount client"
3789
3790         local nrfiles=8
3791         local ost1mnt=$(facet_mntpt ost1)
3792         local ost1node=$(facet_active_host ost1)
3793         local ost1tmp=$TMP/conf52
3794         local loop
3795
3796         mkdir $DIR/$tdir || error "Unable to create $DIR/$tdir"
3797         touch $TMP/modified_first || error "Unable to create temporary file"
3798         local mtime=$(stat -c %Y $TMP/modified_first)
3799         do_node $ost1node "mkdir -p $ost1tmp &&
3800                            touch -m -d @$mtime $ost1tmp/modified_first" ||
3801                 error "Unable to create temporary file"
3802         sleep 1
3803
3804         $SETSTRIPE -c -1 -S 1M $DIR/$tdir || error "$SETSTRIPE failed"
3805
3806         for (( i=0; i < nrfiles; i++ )); do
3807                 multiop $DIR/$tdir/$tfile-$i Ow1048576w1048576w524288c ||
3808                         error "multiop failed"
3809                 echo -n .
3810         done
3811         echo
3812
3813         # backup files
3814         echo backup files to $TMP/files
3815         local files=$(find $DIR/$tdir -type f -newer $TMP/modified_first)
3816         copy_files_xattrs $(hostname) $TMP/files $TMP/file_xattrs $files ||
3817                 error "Unable to copy files"
3818
3819         umount_client $MOUNT || error "Unable to umount client"
3820         stop_ost || error "Unable to stop ost1"
3821
3822         echo mount ost1 as ldiskfs
3823         do_node $ost1node mkdir -p $ost1mnt || error "Unable to create $ost1mnt"
3824         if ! do_node $ost1node test -b $ost1_dev; then
3825                 loop="-o loop"
3826         fi
3827         do_node $ost1node mount -t $(facet_fstype ost1) $loop $ost1_dev \
3828                 $ost1mnt ||
3829                 error "Unable to mount ost1 as ldiskfs"
3830
3831         # backup objects
3832         echo backup objects to $ost1tmp/objects
3833         local objects=$(do_node $ost1node 'find '$ost1mnt'/O/[0-9]* -type f'\
3834                 '-size +0 -newer '$ost1tmp'/modified_first -regex ".*\/[0-9]+"')
3835         copy_files_xattrs $ost1node $ost1tmp/objects $ost1tmp/object_xattrs \
3836                         $objects ||
3837                 error "Unable to copy objects"
3838
3839         # move objects to lost+found
3840         do_node $ost1node 'mv '$objects' '${ost1mnt}'/lost+found'
3841         [ $? -eq 0 ] || { error "Unable to move objects"; return 14; }
3842
3843         do_node $ost1node "umount $ost1mnt" ||
3844                 error "Unable to umount ost1 as ldiskfs"
3845
3846         start_ost || error "Unable to start OST1"
3847         mount_client $MOUNT || error "Unable to mount client"
3848
3849         local REPAIRED=$(do_node $ost1node "$LCTL get_param \
3850                          -n osd-ldiskfs.$FSNAME-OST0000.oi_scrub" |
3851                          awk '/^lf_repa[ri]*ed/ { print $2 }')
3852         [ $REPAIRED -gt 0 ] ||
3853                 error "Some entry under /lost+found should be repaired"
3854
3855         # compare files
3856         diff_files_xattrs $(hostname) $TMP/files $TMP/file_xattrs $files ||
3857                 error "Unable to diff files"
3858
3859         rm -rf $TMP/files $TMP/file_xattrs ||
3860                 error "Unable to delete temporary files"
3861         do_node $ost1node "rm -rf $ost1tmp" ||
3862                 error "Unable to delete temporary files"
3863         cleanup || error "cleanup failed with $?"
3864 }
3865 run_test 52 "check recovering objects from lost+found"
3866
3867 # Checks threads_min/max/started for some service
3868 #
3869 # Arguments: service name (OST or MDT), facet (e.g., ost1, $SINGLEMDS), and a
3870 # parameter pattern prefix like 'ost.*.ost'.
3871 thread_sanity() {
3872         local modname=$1
3873         local facet=$2
3874         local parampat=$3
3875         local opts=$4
3876         local basethr=$5
3877         local tmin
3878         local tmin2
3879         local tmax
3880         local tmax2
3881         local tstarted
3882         local paramp
3883         local msg="Insane $modname thread counts"
3884         local ncpts=$(check_cpt_number $facet)
3885         local nthrs
3886         shift 4
3887
3888         check_mount || return 41
3889
3890         # We need to expand $parampat, but it may match multiple parameters, so
3891         # we'll pick the first one
3892         if ! paramp=$(do_facet $facet "lctl get_param -N ${parampat}.threads_min"|head -1); then
3893                 error "Couldn't expand ${parampat}.threads_min parameter name"
3894                 return 22
3895         fi
3896
3897         # Remove the .threads_min part
3898         paramp=${paramp%.threads_min}
3899
3900         # Check for sanity in defaults
3901         tmin=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_min" ||
3902                echo 0)
3903         tmax=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_max" ||
3904                echo 0)
3905         tstarted=$(do_facet $facet "$LCTL get_param \
3906                                     -n ${paramp}.threads_started" || echo 0)
3907         lassert 23 "$msg (PDSH problems?)" '(($tstarted && $tmin && $tmax))' ||
3908                 return $?
3909         lassert 24 "$msg" '(($tstarted >= $tmin && $tstarted <= $tmax ))' ||
3910                 return $?
3911         nthrs=$(expr $tmax - $tmin)
3912         if [ $nthrs -lt $ncpts ]; then
3913                 nthrs=0
3914         else
3915                 nthrs=$ncpts
3916         fi
3917
3918         [ $tmin -eq $tmax -a $tmin -eq $tstarted ] &&
3919                 skip_env "module parameter forced $facet thread count" &&
3920                 tmin=3 && tmax=$((3 * tmax))
3921
3922         # Check that we can change min/max
3923         do_facet $facet "$LCTL set_param \
3924                          ${paramp}.threads_min=$((tmin + nthrs))"
3925         do_facet $facet "$LCTL set_param \
3926                          ${paramp}.threads_max=$((tmax - nthrs))"
3927         tmin2=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_min" ||
3928                 echo 0)
3929         tmax2=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_max" ||
3930                 echo 0)
3931         lassert 25 "$msg" '(($tmin2 == ($tmin + $nthrs) &&
3932                             $tmax2 == ($tmax - $nthrs)))' || return $?
3933
3934         # Check that we can set min/max to the same value
3935         tmin=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_min" ||
3936                echo 0)
3937         do_facet $facet "$LCTL set_param ${paramp}.threads_max=$tmin"
3938         tmin2=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_min" ||
3939                 echo 0)
3940         tmax2=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_max" ||
3941                 echo 0)
3942         lassert 26 "$msg" '(($tmin2 == $tmin && $tmax2 == $tmin))' || return $?
3943
3944         # Check that we can't set max < min
3945         do_facet $facet "$LCTL set_param ${paramp}.threads_max=$((tmin - 1))"
3946         tmin2=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_min" ||
3947                 echo 0)
3948         tmax2=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_max" ||
3949                 echo 0)
3950         lassert 27 "$msg" '(($tmin2 <= $tmax2))' || return $?
3951
3952         # We need to ensure that we get the module options desired; to do this
3953         # we set LOAD_MODULES_REMOTE=true and we call setmodopts below.
3954         LOAD_MODULES_REMOTE=true
3955         cleanup
3956         local oldvalue
3957         local newvalue="${opts}=$(expr $basethr \* $ncpts)"
3958         setmodopts -a $modname "$newvalue" oldvalue
3959
3960         setup
3961         check_mount || return 41
3962
3963         # Restore previous setting of MODOPTS_*
3964         setmodopts $modname "$oldvalue"
3965
3966         # Check that $opts took
3967         tmin=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_min")
3968         tmax=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_max")
3969         tstarted=$(do_facet $facet \
3970                    "$LCTL get_param -n ${paramp}.threads_started")
3971         lassert 28 "$msg" '(($tstarted >= $tmin && $tstarted <= $tmax ))' ||
3972                 return $?
3973         cleanup
3974
3975         setup
3976 }
3977
3978 test_53a() {
3979         setup
3980         thread_sanity OST ost1 'ost.*.ost' 'oss_num_threads' '16'
3981         cleanup || error "cleanup failed with rc $?"
3982 }
3983 run_test 53a "check OSS thread count params"
3984
3985 test_53b() {
3986         setup
3987         local mds=$(do_facet $SINGLEMDS "$LCTL get_param \
3988                                          -N mds.*.*.threads_max 2>/dev/null")
3989         if [ -z "$mds" ]; then
3990                 #running this on an old MDT
3991                 thread_sanity MDT $SINGLEMDS 'mdt.*.*.' 'mdt_num_threads' 16
3992         else
3993                 thread_sanity MDT $SINGLEMDS 'mds.*.*.' 'mds_num_threads' 16
3994         fi
3995         cleanup || error "cleanup failed with $?"
3996 }
3997 run_test 53b "check MDS thread count params"
3998
3999 test_54a() {
4000         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
4001                 skip "Only applicable to ldiskfs-based MDTs"
4002                 return
4003         fi
4004
4005         do_rpc_nodes $(facet_host ost1) run_llverdev $(ostdevname 1) -p ||
4006                 error "llverdev failed with rc=$?"
4007         reformat_and_config
4008 }
4009 run_test 54a "test llverdev and partial verify of device"
4010
4011 test_54b() {
4012         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
4013                 skip "Only applicable to ldiskfs-based MDTs"
4014                 return
4015         fi
4016
4017         setup
4018         run_llverfs $MOUNT -p || error "llverfs failed with rc=$?"
4019         cleanup || error "cleanup failed with rc=$?"
4020 }
4021 run_test 54b "test llverfs and partial verify of filesystem"
4022
4023 lov_objid_size()
4024 {
4025         local max_ost_index=$1
4026         echo -n $(((max_ost_index + 1) * 8))
4027 }
4028
4029 test_55() {
4030         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
4031                 skip "Only applicable to ldiskfs-based MDTs"
4032                 return
4033         fi
4034
4035         local mdsdev=$(mdsdevname 1)
4036         local mdsvdev=$(mdsvdevname 1)
4037
4038         for i in 1023 2048
4039         do
4040                 add mds1 $(mkfs_opts mds1 ${mdsdev}) --reformat $mdsdev \
4041                         $mdsvdev || exit 10
4042                 add ost1 $(mkfs_opts ost1 $(ostdevname 1)) --index=$i \
4043                         --reformat $(ostdevname 1) $(ostvdevname 1)
4044                 setup_noconfig
4045                 stopall
4046                 setup_noconfig
4047                 sync
4048
4049                 echo checking size of lov_objid for ost index $i
4050                 LOV_OBJID_SIZE=$(do_facet mds1 "$DEBUGFS -R 'stat lov_objid' $mdsdev 2>/dev/null" | grep ^User | awk '{print $6}')
4051                 if [ "$LOV_OBJID_SIZE" != $(lov_objid_size $i) ]; then
4052                         error "lov_objid size has to be $(lov_objid_size $i), not $LOV_OBJID_SIZE"
4053                 else
4054                         echo ok, lov_objid size is correct: $LOV_OBJID_SIZE
4055                 fi
4056                 stopall
4057         done
4058
4059         reformat
4060 }
4061 run_test 55 "check lov_objid size"
4062
4063 test_56() {
4064         local server_version=$(lustre_version_code $SINGLEMDS)
4065         local mds_journal_size_orig=$MDSJOURNALSIZE
4066         local n
4067
4068         MDSJOURNALSIZE=16
4069
4070         for num in $(seq 1 $MDSCOUNT); do
4071                 reformat_mdt $num
4072         done
4073         add ost1 $(mkfs_opts ost1 $(ostdevname 1)) --index=10000 --reformat \
4074                 $(ostdevname 1) $(ostvdevname 1)
4075         add ost2 $(mkfs_opts ost2 $(ostdevname 2)) --index=1000 --reformat \
4076                 $(ostdevname 2) $(ostvdevname 2)
4077
4078         start_mgsmds
4079         start_ost || error "Unable to start first ost (idx 10000)"
4080         start_ost2 || error "Unable to start second ost (idx 1000)"
4081         mount_client $MOUNT || error "Unable to mount client"
4082         echo ok
4083         $LFS osts
4084
4085         if [[ $server_version -ge $(version_code 2.6.54) ]] ||
4086            [[ $server_version -ge $(version_code 2.5.4) &&
4087               $server_version -lt $(version_code 2.5.11) ]]; then
4088                 wait_osc_import_state mds ost1 FULL
4089                 wait_osc_import_state mds ost2 FULL
4090                 $SETSTRIPE --stripe-count=-1 $DIR/$tfile ||
4091                         error "Unable to setstripe $DIR/$tfile"
4092                 n=$($LFS getstripe --stripe-count $DIR/$tfile)
4093                 [ "$n" -eq 2 ] || error "Stripe count not two: $n"
4094                 rm $DIR/$tfile
4095         fi
4096
4097         stopall
4098         MDSJOURNALSIZE=$mds_journal_size_orig
4099         reformat
4100 }
4101 run_test 56 "check big OST indexes and out-of-index-order start"
4102
4103 test_57a() { # bug 22656
4104         do_rpc_nodes $(facet_active_host ost1) load_modules_local
4105         local NID=$(do_facet ost1 "$LCTL get_param nis" |
4106                     tail -1 | awk '{print $1}')
4107         writeconf_or_reformat
4108         [ $(facet_fstype ost1) == zfs ] && import_zpool ost1
4109         do_facet ost1 "$TUNEFS --failnode=$NID `ostdevname 1`" ||
4110                 error "tunefs failed"
4111         start_mgsmds
4112         start_ost && error "OST registration from failnode should fail"
4113         reformat
4114 }
4115 run_test 57a "initial registration from failnode should fail (should return errs)"
4116
4117 test_57b() {
4118         do_rpc_nodes $(facet_active_host ost1) load_modules_local
4119         local NID=$(do_facet ost1 "$LCTL get_param nis" |
4120                     tail -1 | awk '{print $1}')
4121         writeconf_or_reformat
4122         [ $(facet_fstype ost1) == zfs ] && import_zpool ost1
4123         do_facet ost1 "$TUNEFS --servicenode=$NID `ostdevname 1`" ||
4124                 error "tunefs failed"
4125         start_mgsmds
4126         start_ost || error "OST registration from servicenode should not fail"
4127         reformat
4128 }
4129 run_test 57b "initial registration from servicenode should not fail"
4130
4131 count_osts() {
4132         do_facet mgs $LCTL get_param mgs.MGS.live.$FSNAME | grep OST | wc -l
4133 }
4134
4135 test_58() { # bug 22658
4136         setup_noconfig
4137         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
4138         createmany -o $DIR/$tdir/$tfile-%d 100
4139         # make sure that OSTs do not cancel llog cookies before we unmount the MDS
4140 #define OBD_FAIL_OBD_LOG_CANCEL_NET      0x601
4141         do_facet $SINGLEMDS "$LCTL set_param fail_loc=0x601"
4142         unlinkmany $DIR/$tdir/$tfile-%d 100
4143         stop_mds || error "Unable to stop MDS"
4144
4145         local MNTDIR=$(facet_mntpt $SINGLEMDS)
4146         local devname=$(mdsdevname ${SINGLEMDS//mds/})
4147
4148         # remove all files from the OBJECTS dir
4149         mount_fstype $SINGLEMDS
4150
4151         do_facet $SINGLEMDS "find $MNTDIR/O/1/d* -type f -delete"
4152
4153         unmount_fstype $SINGLEMDS
4154         # restart MDS with missing llog files
4155         start_mds || error "unable to start MDS"
4156         do_facet mds "$LCTL set_param fail_loc=0"
4157         reformat
4158 }
4159 run_test 58 "missing llog files must not prevent MDT from mounting"
4160
4161 test_59() {
4162         start_mgsmds >> /dev/null
4163         local C1=$(count_osts)
4164         if [ $C1 -eq 0 ]; then
4165                 start_ost >> /dev/null
4166                 C1=$(count_osts)
4167         fi
4168         stopall
4169         echo "original ost count: $C1 (expect > 0)"
4170         [ $C1 -gt 0 ] || error "No OSTs in $FSNAME log"
4171         start_mgsmds -o writeconf >> /dev/null || error "MDT start failed"
4172         local C2=$(count_osts)
4173         echo "after mdt writeconf count: $C2 (expect 0)"
4174         [ $C2 -gt 0 ] && error "MDT writeconf should erase OST logs"
4175         echo "OST start without writeconf should fail:"
4176         start_ost >> /dev/null &&
4177                 error "OST start without writeconf didn't fail"
4178         echo "OST start with writeconf should succeed:"
4179         start_ost -o writeconf >> /dev/null || error "OST1 start failed"
4180         local C3=$(count_osts)
4181         echo "after ost writeconf count: $C3 (expect 1)"
4182         [ $C3 -eq 1 ] || error "new OST writeconf should add:"
4183         start_ost2 -o writeconf >> /dev/null || error "OST2 start failed"
4184         local C4=$(count_osts)
4185         echo "after ost2 writeconf count: $C4 (expect 2)"
4186         [ $C4 -eq 2 ] || error "OST2 writeconf should add log"
4187         stop_ost2 >> /dev/null
4188         cleanup_nocli >> /dev/null
4189         #writeconf to remove all ost2 traces for subsequent tests
4190         writeconf_or_reformat
4191 }
4192 run_test 59 "writeconf mount option"
4193
4194 test_60() { # LU-471
4195         local num
4196
4197         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
4198                 skip "Only applicable to ldiskfs-based MDTs"
4199                 return
4200         fi
4201
4202         for num in $(seq $MDSCOUNT); do
4203                 add mds${num} $(mkfs_opts mds${num} $(mdsdevname $num)) \
4204                         --mkfsoptions='\" -E stride=64 -O ^uninit_bg\"' \
4205                         --reformat $(mdsdevname $num) $(mdsvdevname $num) ||
4206                         exit 10
4207         done
4208
4209         dump=$(do_facet $SINGLEMDS dumpe2fs $(mdsdevname 1))
4210         [ ${PIPESTATUS[0]} -eq 0 ] || error "dumpe2fs $(mdsdevname 1) failed"
4211
4212         # MDT default has dirdata feature
4213         echo $dump | grep dirdata > /dev/null || error "dirdata is not set"
4214         # we disable uninit_bg feature
4215         echo $dump | grep uninit_bg > /dev/null && error "uninit_bg is set"
4216         # we set stride extended options
4217         echo $dump | grep stride > /dev/null || error "stride is not set"
4218         reformat
4219 }
4220 run_test 60 "check mkfs.lustre --mkfsoptions -E -O options setting"
4221
4222 test_61() { # LU-80
4223         local lxattr=false
4224
4225         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.1.53) ] ||
4226                 { skip "Need MDS version at least 2.1.53"; return 0; }
4227
4228         if [ $(facet_fstype $SINGLEMDS) == ldiskfs ] &&
4229              ! large_xattr_enabled; then
4230                 lxattr=true
4231
4232                 for num in $(seq $MDSCOUNT); do
4233                         do_facet mds${num} $TUNE2FS -O large_xattr \
4234                                 $(mdsdevname $num) ||
4235                                 error "tune2fs on mds $num failed"
4236                 done
4237         fi
4238
4239         setup_noconfig || error "setting up the filesystem failed"
4240         client_up || error "starting client failed"
4241
4242         local file=$DIR/$tfile
4243         touch $file || error "touch $file failed"
4244
4245         local large_value="$(generate_string $(max_xattr_size))"
4246         local small_value="bar"
4247
4248         local name="trusted.big"
4249         log "save large xattr $name on $file"
4250         setfattr -n $name -v $large_value $file ||
4251                 error "saving $name on $file failed"
4252
4253         local new_value=$(get_xattr_value $name $file)
4254         [[ "$new_value" != "$large_value" ]] &&
4255                 error "$name different after saving"
4256
4257         log "shrink value of $name on $file"
4258         setfattr -n $name -v $small_value $file ||
4259                 error "shrinking value of $name on $file failed"
4260
4261         new_value=$(get_xattr_value $name $file)
4262         [[ "$new_value" != "$small_value" ]] &&
4263                 error "$name different after shrinking"
4264
4265         log "grow value of $name on $file"
4266         setfattr -n $name -v $large_value $file ||
4267                 error "growing value of $name on $file failed"
4268
4269         new_value=$(get_xattr_value $name $file)
4270         [[ "$new_value" != "$large_value" ]] &&
4271                 error "$name different after growing"
4272
4273         log "check value of $name on $file after remounting MDS"
4274         fail $SINGLEMDS
4275         new_value=$(get_xattr_value $name $file)
4276         [[ "$new_value" != "$large_value" ]] &&
4277                 error "$name different after remounting MDS"
4278
4279         log "remove large xattr $name from $file"
4280         setfattr -x $name $file || error "removing $name from $file failed"
4281
4282         if $lxattr; then
4283                 stopall || error "stopping for e2fsck run"
4284                 for num in $(seq $MDSCOUNT); do
4285                         run_e2fsck $(facet_active_host mds$num) \
4286                                 $(mdsdevname $num) "-y" ||
4287                                 error "e2fsck MDT$num failed"
4288                 done
4289                 setup_noconfig || error "remounting the filesystem failed"
4290         fi
4291
4292         # need to delete this file to avoid problems in other tests
4293         rm -f $file
4294         stopall || error "stopping systems to turn off large_xattr"
4295         if $lxattr; then
4296                 for num in $(seq $MDSCOUNT); do
4297                         do_facet mds${num} $TUNE2FS -O ^large_xattr \
4298                                 $(mdsdevname $num) ||
4299                                 error "tune2fs on mds $num failed"
4300                 done
4301         fi
4302 }
4303 run_test 61 "large xattr"
4304
4305 test_62() {
4306         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
4307                 skip "Only applicable to ldiskfs-based MDTs"
4308                 return
4309         fi
4310
4311         # MRP-118
4312         local mdsdev=$(mdsdevname 1)
4313         local ostdev=$(ostdevname 1)
4314
4315         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
4316                 { skip "Need MDS version at least 2.2.51"; return 0; }
4317
4318         echo "disable journal for mds"
4319         do_facet mds $TUNE2FS -O ^has_journal $mdsdev || error "tune2fs failed"
4320         start_mds && error "MDT start should fail"
4321         echo "disable journal for ost"
4322         do_facet ost1 $TUNE2FS -O ^has_journal $ostdev || error "tune2fs failed"
4323         start_ost && error "OST start should fail"
4324         cleanup || error "cleanup failed with rc $?"
4325         reformat_and_config
4326 }
4327 run_test 62 "start with disabled journal"
4328
4329 test_63() {
4330         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
4331                 skip "Only applicable to ldiskfs-based MDTs"
4332                 return
4333         fi
4334
4335         local inode_slab=$(do_facet $SINGLEMDS \
4336                 "awk '/ldiskfs_inode_cache/ { print \\\$5 }' /proc/slabinfo")
4337         if [ -z "$inode_slab" ]; then
4338                 skip "ldiskfs module has not been loaded"
4339                 return
4340         fi
4341
4342         echo "$inode_slab ldisk inodes per page"
4343         [ "$inode_slab" -ge "3" ] ||
4344                 error "ldisk inode size is too big, $inode_slab objs per page"
4345         return
4346 }
4347 run_test 63 "Verify each page can at least hold 3 ldisk inodes"
4348
4349 test_64() {
4350         start_mds || error "unable to start MDS"
4351         start_ost || error "Unable to start OST1"
4352         start_ost2 || error "Unable to start second ost"
4353         mount_client $MOUNT || error "Unable to mount client"
4354         stop_ost2 || error "Unable to stop second ost"
4355         echo "$LFS df"
4356         $LFS df --lazy || error "lfs df failed"
4357         umount_client $MOUNT -f || error “unmount $MOUNT failed”
4358         cleanup_nocli || error "cleanup_nocli failed with $?"
4359         #writeconf to remove all ost2 traces for subsequent tests
4360         writeconf_or_reformat
4361 }
4362 run_test 64 "check lfs df --lazy "
4363
4364 test_65() { # LU-2237
4365         # Currently, the test is only valid for ldiskfs backend
4366         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
4367                 skip "non-ldiskfs backend" && return
4368
4369         local devname=$(mdsdevname ${SINGLEMDS//mds/})
4370         local brpt=$(facet_mntpt brpt)
4371         local opts=""
4372
4373         if ! do_facet $SINGLEMDS "test -b $devname"; then
4374                 opts="-o loop"
4375         fi
4376
4377         stop_mds || error "Unable to stop MDS"
4378         local obj=$(do_facet $SINGLEMDS \
4379                     "$DEBUGFS -c -R \\\"stat last_rcvd\\\" $devname" |
4380                     grep Inode)
4381         if [ -z "$obj" ]; then
4382                 # The MDT may be just re-formatted, mount the MDT for the
4383                 # first time to guarantee the "last_rcvd" file is there.
4384                 start_mds || error "fail to mount the MDS for the first time"
4385                 stop_mds || error "Unable to stop MDS"
4386         fi
4387
4388         # remove the "last_rcvd" file
4389         do_facet $SINGLEMDS "mkdir -p $brpt"
4390         do_facet $SINGLEMDS \
4391                 "mount -t $(facet_fstype $SINGLEMDS) $opts $devname $brpt"
4392         do_facet $SINGLEMDS "rm -f ${brpt}/last_rcvd"
4393         do_facet $SINGLEMDS "$UMOUNT $brpt"
4394
4395         # restart MDS, the "last_rcvd" file should be recreated.
4396         start_mds || error "fail to restart the MDS"
4397         stop_mds || error "Unable to stop MDS"
4398         obj=$(do_facet $SINGLEMDS \
4399               "$DEBUGFS -c -R \\\"stat last_rcvd\\\" $devname" | grep Inode)
4400         [ -n "$obj" ] || error "fail to re-create the last_rcvd"
4401 }
4402 run_test 65 "re-create the lost last_rcvd file when server mount"
4403
4404 test_66() {
4405         [[ $(lustre_version_code mgs) -ge $(version_code 2.3.59) ]] ||
4406                 { skip "Need MGS version at least 2.3.59"; return 0; }
4407
4408         setup
4409         local OST1_NID=$(do_facet ost1 $LCTL list_nids | head -1)
4410         local MDS_NID=$(do_facet $SINGLEMDS $LCTL list_nids | head -1)
4411
4412         echo "replace_nids should fail if MDS, OSTs and clients are UP"
4413         do_facet mgs $LCTL replace_nids $FSNAME-OST0000 $OST1_NID &&
4414                 error "replace_nids fail"
4415
4416         umount_client $MOUNT || error "unmounting client failed"
4417         echo "replace_nids should fail if MDS and OSTs are UP"
4418         do_facet mgs $LCTL replace_nids $FSNAME-OST0000 $OST1_NID &&
4419                 error "replace_nids fail"
4420
4421         stop_ost || error "Unable to stop OST1"
4422         echo "replace_nids should fail if MDS is UP"
4423         do_facet mgs $LCTL replace_nids $FSNAME-OST0000 $OST1_NID &&
4424                 error "replace_nids fail"
4425
4426         stop_mds || error "stopping mds failed"
4427
4428         if combined_mgs_mds; then
4429                 start_mdt 1 "-o nosvc" ||
4430                         error "starting mds with nosvc option failed"
4431         fi
4432
4433         echo "command should accept two parameters"
4434         do_facet mgs $LCTL replace_nids $FSNAME-OST0000 &&
4435                 error "command should accept two params"
4436
4437         echo "correct device name should be passed"
4438         do_facet mgs $LCTL replace_nids $FSNAME-WRONG0000 $OST1_NID &&
4439                 error "wrong devname"
4440
4441         echo "wrong nids list should not destroy the system"
4442         do_facet mgs $LCTL replace_nids $FSNAME-OST0000 "wrong nids list" &&
4443                 error "wrong parse"
4444
4445         echo "replace OST nid"
4446         do_facet mgs $LCTL replace_nids $FSNAME-OST0000 $OST1_NID ||
4447                 error "replace nids failed"
4448
4449         echo "command should accept two parameters"
4450         do_facet mgs $LCTL replace_nids $FSNAME-MDT0000 &&
4451                 error "command should accept two params"
4452
4453         echo "wrong nids list should not destroy the system"
4454         do_facet mgs $LCTL replace_nids $FSNAME-MDT0000 "wrong nids list" &&
4455                 error "wrong parse"
4456
4457         echo "replace MDS nid"
4458         do_facet mgs $LCTL replace_nids $FSNAME-MDT0000 $MDS_NID ||
4459                 error "replace nids failed"
4460
4461         if ! combined_mgs_mds ; then
4462                 stop_mgs
4463         else
4464                 stop_mds || error "Unable to stop MDS"
4465         fi
4466
4467         setup_noconfig
4468         check_mount || error "error after nid replace"
4469         cleanup || error "cleanup failed"
4470         reformat
4471 }
4472 run_test 66 "replace nids"
4473
4474 test_67() { #LU-2950
4475         local legacy="$TMP/legacy_lnet_config"
4476         local new="$TMP/new_routes_test"
4477         local out="$TMP/config_out_file"
4478         local verify="$TMP/conv_verify"
4479         local verify_conf="$TMP/conf_verify"
4480
4481         # Create the legacy file that will be run through the
4482         # lustre_routes_conversion script
4483         cat <<- LEGACY_LNET_CONFIG > $legacy
4484                 tcp1 23 192.168.213.1@tcp:1; tcp5 34 193.30.4.3@tcp:4;
4485                 tcp2 54 10.1.3.2@tcp;
4486                 tcp3 10.3.4.3@tcp:3;
4487                 tcp4 10.3.3.4@tcp;
4488         LEGACY_LNET_CONFIG
4489
4490         # Create the verification file to verify the output of
4491         # lustre_routes_conversion script against.
4492         cat <<- VERIFY_LNET_CONFIG > $verify
4493                 tcp1: { gateway: 192.168.213.1@tcp, hop: 23, priority: 1 }
4494                 tcp5: { gateway: 193.30.4.3@tcp, hop: 34, priority: 4 }
4495                 tcp2: { gateway: 10.1.3.2@tcp, hop: 54 }
4496                 tcp3: { gateway: 10.3.4.3@tcp, priority: 3 }
4497                 tcp4: { gateway: 10.3.3.4@tcp }
4498         VERIFY_LNET_CONFIG
4499
4500         # Create the verification file to verify the output of
4501         # lustre_routes_config script against
4502         cat <<- VERIFY_LNET_CONFIG > $verify_conf
4503                 lctl --net tcp1 add_route 192.168.213.1@tcp 23 1
4504                 lctl --net tcp5 add_route 193.30.4.3@tcp 34 4
4505                 lctl --net tcp2 add_route 10.1.3.2@tcp 54 4
4506                 lctl --net tcp3 add_route 10.3.4.3@tcp 1 3
4507                 lctl --net tcp4 add_route 10.3.3.4@tcp 1 3
4508         VERIFY_LNET_CONFIG
4509
4510         lustre_routes_conversion $legacy $new > /dev/null
4511         if [ -f $new ]; then
4512                 # verify the conversion output
4513                 cmp -s $new $verify > /dev/null
4514                 if [ $? -eq 1 ]; then
4515                         error "routes conversion failed"
4516                 fi
4517
4518                 lustre_routes_config --dry-run --verbose $new > $out
4519                 # check that the script succeeded
4520                 cmp -s $out $verify_conf > /dev/null
4521                 if [ $? -eq 1 ]; then
4522                         error "routes config failed"
4523                 fi
4524         else
4525                 error "routes conversion test failed"
4526         fi
4527         # remove generated files
4528         rm -f $new $legacy $verify $verify_conf $out
4529 }
4530 run_test 67 "test routes conversion and configuration"
4531
4532 test_68() {
4533         local fid
4534         local seq
4535         local START
4536         local END
4537
4538         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.4.53) ] ||
4539                 { skip "Need MDS version at least 2.4.53"; return 0; }
4540
4541         umount_client $MOUNT || error "umount client failed"
4542
4543         start_mdt 1 || error "MDT start failed"
4544         start_ost || error "Unable to start OST1"
4545
4546         # START-END - the sequences we'll be reserving
4547         START=$(do_facet $SINGLEMDS \
4548                 $LCTL get_param -n seq.ctl*.space | awk -F'[[ ]' '{print $2}')
4549         END=$((START + (1 << 30)))
4550         do_facet $SINGLEMDS \
4551                 $LCTL set_param seq.ctl*.fldb="[$START-$END\):0:mdt"
4552
4553         # reset the sequences MDT0000 has already assigned
4554         do_facet $SINGLEMDS \
4555                 $LCTL set_param seq.srv*MDT0000.space=clear
4556
4557         # remount to let the client allocate new sequence
4558         mount_client $MOUNT || error "mount client failed"
4559
4560         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
4561         do_facet $SINGLEMDS \
4562                 $LCTL get_param seq.srv*MDT0000.space
4563         $LFS path2fid $DIR/$tfile
4564
4565         local old_ifs="$IFS"
4566         IFS='[:]'
4567         fid=($($LFS path2fid $DIR/$tfile))
4568         IFS="$old_ifs"
4569         let seq=${fid[1]}
4570
4571         if [[ $seq < $END ]]; then
4572                 error "used reserved sequence $seq?"
4573         fi
4574         cleanup || error "cleanup failed with $?"
4575 }
4576 run_test 68 "be able to reserve specific sequences in FLDB"
4577
4578 # Test 69: is about the total number of objects ever created on an OST.
4579 # so that when it is reformatted the normal MDS->OST orphan recovery won't
4580 # just "precreate" the missing objects. In the past it might try to recreate
4581 # millions of objects after an OST was reformatted
4582 test_69() {
4583         local server_version=$(lustre_version_code $SINGLEMDS)
4584
4585         [[ $server_version -lt $(version_code 2.4.2) ]] &&
4586                 skip "Need MDS version at least 2.4.2" && return
4587
4588         [[ $server_version -ge $(version_code 2.4.50) ]] &&
4589         [[ $server_version -lt $(version_code 2.5.0) ]] &&
4590                 skip "Need MDS version at least 2.5.0" && return
4591
4592         setup
4593         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
4594
4595         # use OST0000 since it probably has the most creations
4596         local OSTNAME=$(ostname_from_index 0)
4597         local mdtosc_proc1=$(get_mdtosc_proc_path mds1 $OSTNAME)
4598         local last_id=$(do_facet mds1 $LCTL get_param -n \
4599                         osc.$mdtosc_proc1.prealloc_last_id)
4600
4601         # Want to have OST LAST_ID over 5 * OST_MAX_PRECREATE to
4602         # verify that the LAST_ID recovery is working properly. If
4603         # not, then the OST will refuse to allow the MDS connect
4604         # because the LAST_ID value is too different from the MDS
4605         #define OST_MAX_PRECREATE=20000
4606         local ost_max_pre=20000
4607         local num_create=$(( ost_max_pre * 5 + 1 - last_id))
4608
4609         # If the LAST_ID is already over 5 * OST_MAX_PRECREATE, we don't
4610         # need to create any files. So, skip this section.
4611         if [ $num_create -gt 0 ]; then
4612                 # Check the number of inodes available on OST0
4613                 local files=0
4614                 local ifree=$($LFS df -i $MOUNT | awk '/OST0000/ { print $4 }')
4615                 log "On OST0, $ifree inodes available. Want $num_create."
4616
4617                 $SETSTRIPE -i 0 $DIR/$tdir ||
4618                         error "$SETSTRIPE -i 0 $DIR/$tdir failed"
4619                 if [ $ifree -lt 10000 ]; then
4620                         files=$(( ifree - 50 ))
4621                 else
4622                         files=10000
4623                 fi
4624
4625                 local j=$((num_create / files + 1))
4626                 for i in $(seq 1 $j); do
4627                         createmany -o $DIR/$tdir/$tfile-$i- $files ||
4628                                 error "createmany fail create $files files: $?"
4629                         unlinkmany $DIR/$tdir/$tfile-$i- $files ||
4630                                 error "unlinkmany failed unlink $files files"
4631                 done
4632         fi
4633
4634         # delete all of the files with objects on OST0 so the
4635         # filesystem is not inconsistent later on
4636         $LFS find $MOUNT --ost 0 -print0 | xargs -0 rm
4637
4638         umount_client $MOUNT || error "umount client failed"
4639         stop_ost || error "OST0 stop failure"
4640         add ost1 $(mkfs_opts ost1 $(ostdevname 1)) --reformat --replace \
4641                 $(ostdevname 1) $(ostvdevname 1) ||
4642                 error "reformat and replace $ostdev failed"
4643         start_ost || error "OST0 restart failure"
4644         wait_osc_import_state mds ost FULL
4645
4646         mount_client $MOUNT || error "mount client failed"
4647         touch $DIR/$tdir/$tfile-last || error "create file after reformat"
4648         local idx=$($GETSTRIPE -i $DIR/$tdir/$tfile-last)
4649         [ $idx -ne 0 ] && error "$DIR/$tdir/$tfile-last on $idx not 0" || true
4650
4651         local iused=$($LFS df -i $MOUNT | awk '/OST0000/ { print $3 }')
4652         log "On OST0, $iused used inodes"
4653         [ $iused -ge $((ost_max_pre/2 + 1000)) ] &&
4654                 error "OST replacement created too many inodes; $iused"
4655         cleanup || error "cleanup failed with $?"
4656 }
4657 run_test 69 "replace an OST with the same index"
4658
4659 test_70a() {
4660         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4661         local MDTIDX=1
4662
4663         cleanup || error "cleanup failed with $?"
4664
4665         start_mdt 1 || error "MDT0 start fail"
4666
4667         start_ost || error "OST0 start fail"
4668         for num in $(seq 2 $MDSCOUNT); do
4669                 start_mdt $num || return
4670         done
4671
4672         mount_client $MOUNT || error "mount client fails"
4673
4674         mkdir $DIR/$tdir || error "create $DIR/$tdir failed"
4675
4676         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
4677                 error "create remote dir fail"
4678
4679         rm -rf $DIR/$tdir || error "delete dir fail"
4680         cleanup || error "cleanup failed with $?"
4681 }
4682 run_test 70a "start MDT0, then OST, then MDT1"
4683
4684 test_70b() {
4685         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4686         local MDTIDX=1
4687
4688         start_ost || error "OST0 start fail"
4689
4690         start_mds || error "MDS start fail"
4691
4692         mount_client $MOUNT || error "mount client fails"
4693
4694         mkdir $DIR/$tdir || error "create $DIR/$tdir failed"
4695
4696         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
4697                 error "create remote dir fail"
4698
4699         rm -rf $DIR/$tdir || error "delete dir fail"
4700
4701         cleanup || error "cleanup failed with $?"
4702 }
4703 run_test 70b "start OST, MDT1, MDT0"
4704
4705 test_70c() {
4706         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4707         local MDTIDX=1
4708
4709         start_mds || error "MDS start fail"
4710         start_ost || error "OST0 start fail"
4711
4712         mount_client $MOUNT || error "mount client fails"
4713         stop_mdt 1 || error "MDT1 start fail"
4714
4715         local mdc_for_mdt1=$($LCTL dl | grep MDT0000-mdc | awk '{print $4}')
4716         echo "deactivate $mdc_for_mdt1"
4717         $LCTL --device $mdc_for_mdt1 deactivate ||
4718                 error "set $mdc_for_mdt1 deactivate failed"
4719
4720         mkdir $DIR/$tdir && error "mkdir succeed"
4721
4722         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir &&
4723                 error "create remote dir succeed"
4724
4725         cleanup || error "cleanup failed with $?"
4726 }
4727 run_test 70c "stop MDT0, mkdir fail, create remote dir fail"
4728
4729 test_70d() {
4730         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4731         local MDTIDX=1
4732
4733         start_mds || error "MDS start fail"
4734         start_ost || error "OST0 start fail"
4735
4736         mount_client $MOUNT || error "mount client fails"
4737
4738         stop_mdt 2 || error "MDT1 start fail"
4739
4740         local mdc_for_mdt2=$($LCTL dl | grep MDT0001-mdc |
4741                              awk '{print $4}')
4742         echo "deactivate $mdc_for_mdt2"
4743         $LCTL --device $mdc_for_mdt2 deactivate ||
4744                 error "set $mdc_for_mdt2 deactivate failed"
4745
4746         mkdir $DIR/$tdir || error "mkdir fail"
4747         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir &&
4748                 error "create remote dir succeed"
4749
4750         rm -rf $DIR/$tdir || error "delete dir fail"
4751
4752         cleanup || error "cleanup failed with $?"
4753 }
4754 run_test 70d "stop MDT1, mkdir succeed, create remote dir fail"
4755
4756 test_71a() {
4757         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4758         if combined_mgs_mds; then
4759                 skip "needs separate MGS/MDT" && return
4760         fi
4761         local MDTIDX=1
4762
4763         start_mdt 1 || error "MDT0 start fail"
4764         start_ost || error "OST0 start fail"
4765         for num in $(seq 2 $MDSCOUNT); do
4766                 start_mdt $num || return
4767         done
4768
4769         start_ost2 || error "OST1 start fail"
4770
4771         mount_client $MOUNT || error "mount client fails"
4772
4773         mkdir $DIR/$tdir || error "mkdir fail"
4774         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
4775                 error "create remote dir succeed"
4776
4777         mcreate $DIR/$tdir/remote_dir/$tfile || error "create file failed"
4778         rm -rf $DIR/$tdir || error "delete dir fail"
4779
4780         umount_client $MOUNT || error "umount_client failed"
4781         stop_mds || error "MDS stop fail"
4782         stop_ost || error "OST0 stop fail"
4783         stop_ost2 || error "OST1 stop fail"
4784 }
4785 run_test 71a "start MDT0 OST0, MDT1, OST1"
4786
4787 test_71b() {
4788         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4789         if combined_mgs_mds; then
4790                 skip "needs separate MGS/MDT" && return
4791         fi
4792         local MDTIDX=1
4793
4794         for num in $(seq 2 $MDSCOUNT); do
4795                 start_mdt $num || return
4796         done
4797         start_ost || error "OST0 start fail"
4798         start_mdt 1 || error "MDT0 start fail"
4799         start_ost2 || error "OST1 start fail"
4800
4801         mount_client $MOUNT || error "mount client fails"
4802
4803         mkdir $DIR/$tdir || error "mkdir fail"
4804         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
4805                 error "create remote dir succeed"
4806
4807         mcreate $DIR/$tdir/remote_dir/$tfile || error "create file failed"
4808         rm -rf $DIR/$tdir || error "delete dir fail"
4809
4810         umount_client $MOUNT || error "umount_client failed"
4811         stop_mds || error "MDT0 stop fail"
4812         stop_ost || error "OST0 stop fail"
4813         stop_ost2 || error "OST1 stop fail"
4814 }
4815 run_test 71b "start MDT1, OST0, MDT0, OST1"
4816
4817 test_71c() {
4818         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4819         if combined_mgs_mds; then
4820                 skip "needs separate MGS/MDT" && return
4821         fi
4822         local MDTIDX=1
4823
4824         start_ost || error "OST0 start fail"
4825         start_ost2 || error "OST1 start fail"
4826         for num in $(seq 2 $MDSCOUNT); do
4827                 start_mdt $num || return
4828         done
4829         start_mdt 1 || error "MDT0 start fail"
4830
4831         mount_client $MOUNT || error "mount client fails"
4832
4833         mkdir $DIR/$tdir || error "mkdir fail"
4834         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
4835                 error "create remote dir succeed"
4836
4837         mcreate $DIR/$tdir/remote_dir/$tfile || error "create file failed"
4838         rm -rf $DIR/$tdir || error "delete dir fail"
4839
4840         umount_client $MOUNT || error "umount_client failed"
4841         stop_mds || error "MDS stop fail"
4842         stop_ost || error "OST0 stop fail"
4843         stop_ost2 || error "OST1 stop fail"
4844
4845 }
4846 run_test 71c "start OST0, OST1, MDT1, MDT0"
4847
4848 test_71d() {
4849         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4850         if combined_mgs_mds; then
4851                 skip "needs separate MGS/MDT" && return
4852         fi
4853         local MDTIDX=1
4854
4855         start_ost || error "OST0 start fail"
4856         for num in $(seq 2 $MDSCOUNT); do
4857                 start_mdt $num || return
4858         done
4859         start_mdt 1 || error "MDT0 start fail"
4860         start_ost2 || error "OST1 start fail"
4861
4862         mount_client $MOUNT || error "mount client fails"
4863
4864         mkdir $DIR/$tdir || error "mkdir fail"
4865         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
4866                         error "create remote dir succeed"
4867
4868         mcreate $DIR/$tdir/remote_dir/$tfile || error "create file failed"
4869         rm -rf $DIR/$tdir || error "delete dir fail"
4870
4871         umount_client $MOUNT || error "umount_client failed"
4872         stop_mds || error "MDS stop fail"
4873         stop_ost || error "OST0 stop fail"
4874         stop_ost2 || error "OST1 stop fail"
4875
4876 }
4877 run_test 71d "start OST0, MDT1, MDT0, OST1"
4878
4879 test_71e() {
4880         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4881         if combined_mgs_mds; then
4882                 skip "needs separate MGS/MDT" && return
4883         fi
4884         local MDTIDX=1
4885
4886         start_ost || error "OST0 start fail"
4887         for num in $(seq 2 $MDSCOUNT); do
4888                 start_mdt $num || return
4889         done
4890         start_ost2 || error "OST1 start fail"
4891         start_mdt 1 || error "MDT0 start fail"
4892
4893         mount_client $MOUNT || error "mount client fails"
4894
4895         mkdir $DIR/$tdir || error "mkdir fail"
4896         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
4897                 error "create remote dir succeed"
4898
4899         mcreate $DIR/$tdir/remote_dir/$tfile || error "create file failed"
4900         rm -rf $DIR/$tdir || error "delete dir fail"
4901
4902         umount_client $MOUNT || error "umount_client failed"
4903         stop_mds || error "MDS stop fail"
4904         stop_ost || error "OST0 stop fail"
4905         stop_ost2 || error "OST1 stop fail"
4906
4907 }
4908 run_test 71e "start OST0, MDT1, OST1, MDT0"
4909
4910 test_72() { #LU-2634
4911         local mdsdev=$(mdsdevname 1)
4912         local ostdev=$(ostdevname 1)
4913         local cmd="$E2FSCK -fnvd $mdsdev"
4914         local fn=3
4915
4916         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
4917                 skip "ldiskfs only test" && return
4918
4919         #tune MDT with "-O extents"
4920
4921         for num in $(seq $MDSCOUNT); do
4922                 add mds${num} $(mkfs_opts mds$num $(mdsdevname $num)) \
4923                         --reformat $(mdsdevname $num) $(mdsvdevname $num) ||
4924                         error "add mds $num failed"
4925                 do_facet mds${num} "$TUNE2FS -O extents $(mdsdevname $num)" ||
4926                         error "$TUNE2FS failed on mds${num}"
4927         done
4928
4929         add ost1 $(mkfs_opts ost1 $ostdev) --reformat $ostdev ||
4930                 error "add $ostdev failed"
4931         start_mgsmds || error "start mds failed"
4932         start_ost || error "start ost failed"
4933         mount_client $MOUNT || error "mount client failed"
4934
4935         #create some short symlinks
4936         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
4937         createmany -o $DIR/$tdir/$tfile-%d $fn
4938         echo "create $fn short symlinks"
4939         for i in $(seq -w 1 $fn); do
4940                 ln -s $DIR/$tdir/$tfile-$i $MOUNT/$tfile-$i
4941         done
4942         ls -al $MOUNT
4943
4944         #umount
4945         umount_client $MOUNT || error "umount client failed"
4946         stop_mds || error "stop mds failed"
4947         stop_ost || error "stop ost failed"
4948
4949         #run e2fsck
4950         run_e2fsck $(facet_active_host $SINGLEMDS) $mdsdev "-n"
4951 }
4952 run_test 72 "test fast symlink with extents flag enabled"
4953
4954 test_73() { #LU-3006
4955         [ $(facet_fstype ost1) == zfs ] && import_zpool ost1
4956         do_facet ost1 "$TUNEFS --failnode=1.2.3.4@$NETTYPE $(ostdevname 1)" ||
4957                 error "1st tunefs failed"
4958         start_mgsmds || error "start mds failed"
4959         start_ost || error "start ost failed"
4960         mount_client $MOUNT || error "mount client failed"
4961         $LCTL get_param -n osc.*OST0000-osc-[^M]*.import | grep failover_nids |
4962                 grep 1.2.3.4@$NETTYPE || error "failover nids haven't changed"
4963         umount_client $MOUNT || error "umount client failed"
4964         stopall
4965         reformat
4966 }
4967 run_test 73 "failnode to update from mountdata properly"
4968
4969 test_75() { # LU-2374
4970         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
4971                         skip "Need MDS version at least 2.4.1" && return
4972
4973         local index=0
4974         local opts_mds="$(mkfs_opts mds1 $(mdsdevname 1)) \
4975                 --reformat $(mdsdevname 1) $(mdsvdevname 1)"
4976         local opts_ost="$(mkfs_opts ost1 $(ostdevname 1)) \
4977                 --reformat $(ostdevname 1) $(ostvdevname 1)"
4978
4979         #check with default parameters
4980         add mds1 $opts_mds || error "add mds1 failed for default params"
4981         add ost1 $opts_ost || error "add ost1 failed for default params"
4982
4983         opts_mds=$(echo $opts_mds | sed -e "s/--mdt//")
4984         opts_mds=$(echo $opts_mds |
4985                    sed -e "s/--index=$index/--index=$index --mdt/")
4986         opts_ost=$(echo $opts_ost | sed -e "s/--ost//")
4987         opts_ost=$(echo $opts_ost |
4988                    sed -e "s/--index=$index/--index=$index --ost/")
4989
4990         add mds1 $opts_mds || error "add mds1 failed for new params"
4991         add ost1 $opts_ost || error "add ost1 failed for new params"
4992         return 0
4993 }
4994 run_test 75 "The order of --index should be irrelevant"
4995
4996 test_76a() {
4997         [[ $(lustre_version_code mgs) -ge $(version_code 2.4.52) ]] ||
4998                 { skip "Need MDS version at least 2.4.52" && return 0; }
4999         setup
5000         local MDMB_PARAM="osc.*.max_dirty_mb"
5001         echo "Change MGS params"
5002         local MAX_DIRTY_MB=$($LCTL get_param -n $MDMB_PARAM |
5003                 head -1)
5004         echo "max_dirty_mb: $MAX_DIRTY_MB"
5005         local NEW_MAX_DIRTY_MB=$((MAX_DIRTY_MB + MAX_DIRTY_MB))
5006         echo "new_max_dirty_mb: $NEW_MAX_DIRTY_MB"
5007         do_facet mgs $LCTL set_param -P $MDMB_PARAM=$NEW_MAX_DIRTY_MB
5008         wait_update $HOSTNAME "$LCTL get_param -n $MDMB_PARAM |
5009                 head -1" $NEW_MAX_DIRTY_MB
5010         MAX_DIRTY_MB=$($LCTL get_param -n $MDMB_PARAM | head -1)
5011         echo "$MAX_DIRTY_MB"
5012         [ $MAX_DIRTY_MB = $NEW_MAX_DIRTY_MB ] ||
5013                 error "error while apply max_dirty_mb"
5014
5015         echo "Check the value is stored after remount"
5016         stopall
5017         setupall
5018         wait_update $HOSTNAME "$LCTL get_param -n $MDMB_PARAM |
5019                 head -1" $NEW_MAX_DIRTY_MB
5020         MAX_DIRTY_MB=$($LCTL get_param -n $MDMB_PARAM | head -1)
5021         [ $MAX_DIRTY_MB = $NEW_MAX_DIRTY_MB ] ||
5022                 error "max_dirty_mb is not saved after remount"
5023
5024         echo "Change OST params"
5025         CLIENT_PARAM="obdfilter.*.client_cache_count"
5026         local CLIENT_CACHE_COUNT
5027         CLIENT_CACHE_COUNT=$(do_facet ost1 $LCTL get_param -n $CLIENT_PARAM |
5028                 head -1)
5029         echo "client_cache_count: $CLIENT_CACHE_COUNT"
5030         NEW_CLIENT_CACHE_COUNT=$((CLIENT_CACHE_COUNT+CLIENT_CACHE_COUNT))
5031         echo "new_client_cache_count: $NEW_CLIENT_CACHE_COUNT"
5032         do_facet mgs $LCTL set_param -P $CLIENT_PARAM=$NEW_CLIENT_CACHE_COUNT
5033         wait_update $(facet_host ost1) "$LCTL get_param -n $CLIENT_PARAM |
5034                 head -1" $NEW_CLIENT_CACHE_COUNT
5035         CLIENT_CACHE_COUNT=$(do_facet ost1 $LCTL get_param -n $CLIENT_PARAM |
5036                 head -1)
5037         echo "$CLIENT_CACHE_COUNT"
5038         [ $CLIENT_CACHE_COUNT = $NEW_CLIENT_CACHE_COUNT ] ||
5039                 error "error while apply client_cache_count"
5040
5041         echo "Check the value is stored after remount"
5042         stopall
5043         setupall
5044         wait_update $(facet_host ost1) "$LCTL get_param -n $CLIENT_PARAM |
5045                 head -1" $NEW_CLIENT_CACHE_COUNT
5046         CLIENT_CACHE_COUNT=$(do_facet ost1 $LCTL get_param -n $CLIENT_PARAM |
5047                 head -1)
5048         echo "$CLIENT_CACHE_COUNT"
5049         [ $CLIENT_CACHE_COUNT = $NEW_CLIENT_CACHE_COUNT ] ||
5050                 error "client_cache_count is not saved after remount"
5051         stopall
5052 }
5053 run_test 76a "set permanent params set_param -P"
5054
5055 test_76b() { # LU-4783
5056         [[ $(lustre_version_code mgs) -ge $(version_code 2.5.57) ]] ||
5057                 { skip "Need MGS version at least 2.5.57" && return 0; }
5058         stopall
5059         setupall
5060         do_facet mgs $LCTL get_param mgs.MGS.live.params ||
5061                 error "start params log failed"
5062         stopall
5063 }
5064 run_test 76b "verify params log setup correctly"
5065
5066 test_77() { # LU-3445
5067         local server_version=$(lustre_version_code $SINGLEMDS)
5068
5069         [[ $server_version -ge $(version_code 2.2.60) ]] &&
5070         [[ $server_version -le $(version_code 2.4.0) ]] &&
5071                 skip "Need MDS version < 2.2.60 or > 2.4.0" && return
5072
5073         if [[ -z "$fs2ost_DEV" || -z "$fs2mds_DEV" ]]; then
5074                 is_blkdev $SINGLEMDS $(mdsdevname ${SINGLEMDS//mds/}) &&
5075                 skip_env "mixed loopback and real device not working" && return
5076         fi
5077
5078         local fs2mdsdev=$(mdsdevname 1_2)
5079         local fs2ostdev=$(ostdevname 1_2)
5080         local fs2mdsvdev=$(mdsvdevname 1_2)
5081         local fs2ostvdev=$(ostvdevname 1_2)
5082         local fsname=test1234
5083         local mgsnid
5084         local failnid="$(h2$NETTYPE 1.2.3.4),$(h2$NETTYPE 4.3.2.1)"
5085
5086         add fs2mds $(mkfs_opts mds1 $fs2mdsdev) --mgs --fsname=$fsname \
5087                 --reformat $fs2mdsdev $fs2mdsvdev || error "add fs2mds failed"
5088         start fs2mds $fs2mdsdev $MDS_MOUNT_OPTS && trap cleanup_fs2 EXIT INT ||
5089                 error "start fs2mds failed"
5090
5091         mgsnid=$(do_facet fs2mds $LCTL list_nids | xargs | tr ' ' ,)
5092         [[ $mgsnid = *,* ]] || mgsnid+=",$mgsnid"
5093
5094         add fs2ost $(mkfs_opts ost1 $fs2ostdev) --mgsnode=$mgsnid \
5095                 --failnode=$failnid --fsname=$fsname \
5096                 --reformat $fs2ostdev $fs2ostvdev ||
5097                         error "add fs2ost failed"
5098         start fs2ost $fs2ostdev $OST_MOUNT_OPTS || error "start fs2ost failed"
5099
5100         mkdir -p $MOUNT2 || error "mkdir $MOUNT2 failed"
5101         $MOUNT_CMD $mgsnid:/$fsname $MOUNT2 || error "mount $MOUNT2 failed"
5102         DIR=$MOUNT2 MOUNT=$MOUNT2 check_mount || error "check $MOUNT2 failed"
5103         cleanup_fs2
5104 }
5105 run_test 77 "comma-separated MGS NIDs and failover node NIDs"
5106
5107 test_78() {
5108         [[ $(facet_fstype $SINGLEMDS) != ldiskfs ||
5109            $(facet_fstype ost1) != ldiskfs ]] &&
5110                 skip "only applicable to ldiskfs-based MDTs and OSTs" && return
5111
5112         # reformat the Lustre filesystem with a smaller size
5113         local saved_MDSSIZE=$MDSSIZE
5114         local saved_OSTSIZE=$OSTSIZE
5115         MDSSIZE=$((MDSSIZE - 20000))
5116         OSTSIZE=$((OSTSIZE - 20000))
5117         reformat || error "(1) reformat Lustre filesystem failed"
5118         MDSSIZE=$saved_MDSSIZE
5119         OSTSIZE=$saved_OSTSIZE
5120
5121         # mount the Lustre filesystem
5122         setup_noconfig || error "(2) setup Lustre filesystem failed"
5123
5124         # create some files
5125         log "create test files"
5126         local i
5127         local file
5128         local num_files=100
5129         mkdir $MOUNT/$tdir || error "(3) mkdir $MOUNT/$tdir failed"
5130         for i in $(seq $num_files); do
5131                 file=$MOUNT/$tdir/$tfile-$i
5132                 dd if=/dev/urandom of=$file count=1 bs=1M ||
5133                         error "(4) create $file failed"
5134         done
5135
5136         # unmount the Lustre filesystem
5137         cleanup || error "(5) cleanup Lustre filesystem failed"
5138
5139         # run e2fsck on the MDT and OST devices
5140         local mds_host=$(facet_active_host $SINGLEMDS)
5141         local ost_host=$(facet_active_host ost1)
5142         local mds_dev=$(mdsdevname ${SINGLEMDS//mds/})
5143         local ost_dev=$(ostdevname 1)
5144
5145         run_e2fsck $mds_host $mds_dev "-y"
5146         run_e2fsck $ost_host $ost_dev "-y"
5147
5148         # get the original block count of the MDT and OST filesystems
5149         local mds_orig_blks=$(get_block_count $SINGLEMDS $mds_dev)
5150         local ost_orig_blks=$(get_block_count ost1 $ost_dev)
5151
5152         # expand the MDT and OST filesystems to the device size
5153         run_resize2fs $SINGLEMDS $mds_dev "" || error "expand $SINGLEMDS failed"
5154         run_resize2fs ost1 $ost_dev "" || error "expand ost1 failed"
5155
5156         # run e2fsck on the MDT and OST devices again
5157         run_e2fsck $mds_host $mds_dev "-y"
5158         run_e2fsck $ost_host $ost_dev "-y"
5159
5160         # mount the Lustre filesystem
5161         setup
5162
5163         # check the files
5164         log "check files after expanding the MDT and OST filesystems"
5165         for i in $(seq $num_files); do
5166                 file=$MOUNT/$tdir/$tfile-$i
5167                 $CHECKSTAT -t file -s 1048576 $file ||
5168                         error "(6) checkstat $file failed"
5169         done
5170
5171         # create more files
5172         log "create more files after expanding the MDT and OST filesystems"
5173         for i in $(seq $((num_files + 1)) $((num_files + 10))); do
5174                 file=$MOUNT/$tdir/$tfile-$i
5175                 dd if=/dev/urandom of=$file count=1 bs=1M ||
5176                         error "(7) create $file failed"
5177         done
5178
5179         # unmount the Lustre filesystem
5180         cleanup || error "(8) cleanup Lustre filesystem failed"
5181
5182         # run e2fsck on the MDT and OST devices
5183         run_e2fsck $mds_host $mds_dev "-y"
5184         run_e2fsck $ost_host $ost_dev "-y"
5185
5186         # get the maximum block count of the MDT and OST filesystems
5187         local mds_max_blks=$(get_block_count $SINGLEMDS $mds_dev)
5188         local ost_max_blks=$(get_block_count ost1 $ost_dev)
5189
5190         # get the minimum block count of the MDT and OST filesystems
5191         local mds_min_blks=$(run_resize2fs $SINGLEMDS $mds_dev "" "-P" 2>&1 |
5192                                 grep minimum | sed -e 's/^.*filesystem: //g')
5193         local ost_min_blks=$(run_resize2fs ost1 $ost_dev "" "-P" 2>&1 |
5194                                 grep minimum | sed -e 's/^.*filesystem: //g')
5195
5196         # shrink the MDT and OST filesystems to a smaller size
5197         local shrunk=false
5198         local new_blks
5199         local base_blks
5200         if [[ $mds_max_blks -gt $mds_min_blks &&
5201               $mds_max_blks -gt $mds_orig_blks ]]; then
5202                 [[ $mds_orig_blks -gt $mds_min_blks ]] &&
5203                         base_blks=$mds_orig_blks || base_blks=$mds_min_blks
5204                 new_blks=$(( (mds_max_blks - base_blks) / 2 + base_blks ))
5205                 run_resize2fs $SINGLEMDS $mds_dev $new_blks ||
5206                         error "shrink $SINGLEMDS to $new_blks failed"
5207                 shrunk=true
5208         fi
5209
5210         if [[ $ost_max_blks -gt $ost_min_blks &&
5211               $ost_max_blks -gt $ost_orig_blks ]]; then
5212                 [[ $ost_orig_blks -gt $ost_min_blks ]] &&
5213                         base_blks=$ost_orig_blks || base_blks=$ost_min_blks
5214                 new_blks=$(( (ost_max_blks - base_blks) / 2 + base_blks ))
5215                 run_resize2fs ost1 $ost_dev $new_blks ||
5216                         error "shrink ost1 to $new_blks failed"
5217                 shrunk=true
5218         fi
5219
5220         # check whether the MDT or OST filesystem was shrunk or not
5221         if ! $shrunk; then
5222                 combined_mgs_mds || stop_mgs || error "(9) stop mgs failed"
5223                 reformat || error "(10) reformat Lustre filesystem failed"
5224                 return 0
5225         fi
5226
5227         # run e2fsck on the MDT and OST devices again
5228         run_e2fsck $mds_host $mds_dev "-y"
5229         run_e2fsck $ost_host $ost_dev "-y"
5230
5231         # mount the Lustre filesystem again
5232         setup
5233
5234         # check the files
5235         log "check files after shrinking the MDT and OST filesystems"
5236         for i in $(seq $((num_files + 10))); do
5237                 file=$MOUNT/$tdir/$tfile-$i
5238                 $CHECKSTAT -t file -s 1048576 $file ||
5239                         error "(11) checkstat $file failed"
5240         done
5241
5242         # unmount and reformat the Lustre filesystem
5243         cleanup || error "(12) cleanup Lustre filesystem failed"
5244         combined_mgs_mds || stop_mgs || error "(13) stop mgs failed"
5245         reformat || error "(14) reformat Lustre filesystem failed"
5246 }
5247 run_test 78 "run resize2fs on MDT and OST filesystems"
5248
5249 test_79() { # LU-4227
5250         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.5.59) ]] ||
5251                 { skip "Need MDS version at least 2.5.59"; return 0; }
5252
5253         local mdsdev1=$(mdsdevname 1)
5254         local mdsvdev1=$(mdsvdevname 1)
5255         local mdsdev2=$(mdsdevname 2)
5256         local mdsvdev2=$(mdsvdevname 2)
5257         local ostdev1=$(ostdevname 1)
5258         local ostvdev1=$(ostvdevname 1)
5259         local opts_mds1="$(mkfs_opts mds1 $mdsdev1) --reformat"
5260         local opts_mds2="$(mkfs_opts mds2 $mdsdev2) --reformat"
5261         local opts_ost1="$(mkfs_opts ost1 $ostdev1) --reformat"
5262         local mgsnode_opt
5263
5264         # remove --mgs/--mgsnode from mkfs.lustre options
5265         opts_mds1=$(echo $opts_mds1 | sed -e "s/--mgs//")
5266
5267         mgsnode_opt=$(echo $opts_mds2 |
5268                 awk '{ for ( i = 1; i < NF; i++ )
5269                         if ( $i ~ "--mgsnode" ) { print $i; break } }')
5270         [ -n $mgsnode_opt ] &&
5271                 opts_mds2=$(echo $opts_mds2 | sed -e "s/$mgsnode_opt//")
5272
5273         mgsnode_opt=$(echo $opts_ost1 |
5274                 awk '{ for ( i = 1; i < NF; i++ )
5275                         if ( $i ~ "--mgsnode" ) { print $i; break } }')
5276         [ -n $mgsnode_opt ] &&
5277                 opts_ost1=$(echo $opts_ost1 | sed -e "s/$mgsnode_opt//")
5278
5279         # -MGS, format a mdt without --mgs option
5280         add mds1 $opts_mds1 $mdsdev1 $mdsvdev1 &&
5281                 error "Must specify --mgs when formatting mdt combined with mgs"
5282
5283         # +MGS, format a mdt/ost without --mgsnode option
5284         add mds1 $(mkfs_opts mds1 $mdsdev1) --reformat $mdsdev1 $mdsvdev1 \
5285                 > /dev/null || error "start mds1 failed"
5286         add mds2 $opts_mds2 $mdsdev2 $mdsvdev2 &&
5287                 error "Must specify --mgsnode when formatting a mdt"
5288         add ost1 $opts_ost1 $ostdev1 $ostvdev2 &&
5289                 error "Must specify --mgsnode when formatting an ost"
5290
5291         reformat
5292 }
5293 run_test 79 "format MDT/OST without mgs option (should return errors)"
5294
5295 test_80() {
5296         start_mds || error "Failed to start MDT"
5297         start_ost || error "Failed to start OST1"
5298         uuid=$(do_facet ost1 $LCTL get_param -n mgc.*.uuid)
5299 #define OBD_FAIL_MGS_PAUSE_TARGET_CON       0x906
5300         do_facet ost1 "$LCTL set_param fail_val=10 fail_loc=0x906"
5301         do_facet mgs "$LCTL set_param fail_val=10 fail_loc=0x906"
5302         do_facet mgs "$LCTL set_param -n mgs/MGS/evict_client $uuid"
5303         sleep 30
5304         start_ost2 || error "Failed to start OST2"
5305
5306         do_facet ost1 "$LCTL set_param fail_loc=0"
5307         stopall
5308 }
5309 run_test 80 "mgc import reconnect race"
5310
5311 #Save the original values of $OSTCOUNT and $OSTINDEX$i.
5312 save_ostindex() {
5313         local new_ostcount=$1
5314         saved_ostcount=$OSTCOUNT
5315         OSTCOUNT=$new_ostcount
5316
5317         local i
5318         local index
5319         for i in $(seq $OSTCOUNT); do
5320                 index=OSTINDEX$i
5321                 eval saved_ostindex$i=${!index}
5322                 eval OSTINDEX$i=""
5323         done
5324 }
5325
5326 # Restore the original values of $OSTCOUNT and $OSTINDEX$i.
5327 restore_ostindex() {
5328         trap 0
5329
5330         local i
5331         local index
5332         for i in $(seq $OSTCOUNT); do
5333                 index=saved_ostindex$i
5334                 eval OSTINDEX$i=${!index}
5335         done
5336         OSTCOUNT=$saved_ostcount
5337
5338         formatall
5339 }
5340
5341 # The main purpose of this test is to ensure the OST_INDEX_LIST functions as
5342 # expected. This test uses OST_INDEX_LIST to format OSTs with a randomly
5343 # assigned index and ensures we can mount such a formatted file system
5344 test_81() { # LU-4665
5345         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.54) ]] ||
5346                 { skip "Need MDS version at least 2.6.54" && return; }
5347         [[ $OSTCOUNT -ge 3 ]] || { skip_env "Need at least 3 OSTs" && return; }
5348
5349         stopall
5350
5351         # Each time RANDOM is referenced, a random integer between 0 and 32767
5352         # is generated.
5353         local i
5354         local saved_ostindex1=$OSTINDEX1
5355         for i in 65535 $((RANDOM + 65536)); do
5356                 echo -e "\nFormat ost1 with --index=$i, should fail"
5357                 OSTINDEX1=$i
5358                 if add ost1 $(mkfs_opts ost1 $(ostdevname 1)) --reformat \
5359                    $(ostdevname 1) $(ostvdevname 1); then
5360                         OSTINDEX1=$saved_ostindex1
5361                         error "format ost1 with --index=$i should fail"
5362                 fi
5363         done
5364         OSTINDEX1=$saved_ostindex1
5365
5366         save_ostindex 3
5367
5368         # Format OSTs with random sparse indices.
5369         trap "restore_ostindex" EXIT
5370         echo -e "\nFormat $OSTCOUNT OSTs with sparse indices"
5371         OST_INDEX_LIST=[0,$((RANDOM * 2 % 65533 + 1)),65534] formatall
5372
5373         # Setup and check Lustre filesystem.
5374         start_mgsmds || error "start_mgsmds failed"
5375         for i in $(seq $OSTCOUNT); do
5376                 start ost$i $(ostdevname $i) $OST_MOUNT_OPTS ||
5377                         error "start ost$i failed"
5378         done
5379
5380         mount_client $MOUNT || error "mount client $MOUNT failed"
5381         check_mount || error "check client $MOUNT failed"
5382
5383         # Check max_easize.
5384         local max_easize=$($LCTL get_param -n llite.*.max_easize)
5385         [[ $max_easize -eq 128 ]] ||
5386                 error "max_easize is $max_easize, should be 128 bytes"
5387
5388         restore_ostindex
5389 }
5390 run_test 81 "sparse OST indexing"
5391
5392 # Wait OSTs to be active on both client and MDT side.
5393 wait_osts_up() {
5394         local cmd="$LCTL get_param -n lov.$FSNAME-clilov-*.target_obd |
5395                 awk 'BEGIN {c = 0} /ACTIVE/{c += 1} END {printf \\\"%d\\\", c}'"
5396         wait_update $HOSTNAME "eval $cmd" $OSTCOUNT ||
5397                 error "wait_update OSTs up on client failed"
5398
5399         cmd="$LCTL get_param -n lod.$FSNAME-MDT*-*.target_obd | sort -u |
5400              awk 'BEGIN {c = 0} /ACTIVE/{c += 1} END {printf \\\"%d\\\", c}'"
5401         wait_update_facet $SINGLEMDS "eval $cmd" $OSTCOUNT ||
5402                 error "wait_update OSTs up on MDT failed"
5403 }
5404
5405 # Here we exercise the stripe placement functionality on a file system that
5406 # has formatted the OST with a random index. With the file system the following
5407 # functionality is tested:
5408 #
5409 # 1. Creating a new file with a specific stripe layout.
5410 #
5411 # 2. Modifiy a existing empty file with a specific stripe layout.
5412 #
5413 # 3. Ensure we fail to set the stripe layout of a file that already has one.
5414 #
5415 # 4. If ost-index is defined we need to ensure it is the first entry in the
5416 #    ost index list returned by lfs getstripe.
5417 #
5418 # 5. Lastly ensure this functionality fails with directories.
5419 test_82a() { # LU-4665
5420         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.54) ]] ||
5421                 { skip "Need MDS version at least 2.6.54" && return; }
5422         [[ $OSTCOUNT -ge 3 ]] || { skip_env "Need at least 3 OSTs" && return; }
5423
5424         stopall
5425
5426         save_ostindex 3
5427
5428         # Format OSTs with random sparse indices.
5429         local i
5430         local index
5431         local ost_indices
5432         local LOV_V1_INSANE_STRIPE_COUNT=65532
5433         for i in $(seq $OSTCOUNT); do
5434                 index=$(((RANDOM * 2) % LOV_V1_INSANE_STRIPE_COUNT))
5435                 ost_indices+=" $index"
5436         done
5437         ost_indices=$(comma_list $ost_indices)
5438
5439         trap "restore_ostindex" EXIT
5440         echo -e "\nFormat $OSTCOUNT OSTs with sparse indices $ost_indices"
5441         OST_INDEX_LIST=[$ost_indices] formatall
5442
5443         # Setup Lustre filesystem.
5444         start_mgsmds || error "start_mgsmds failed"
5445         for i in $(seq $OSTCOUNT); do
5446                 start ost$i $(ostdevname $i) $OST_MOUNT_OPTS ||
5447                         error "start ost$i failed"
5448         done
5449
5450         mount_client $MOUNT || error "mount client $MOUNT failed"
5451         wait_osts_up
5452
5453         $LFS df $MOUNT || error "$LFS df $MOUNT failed"
5454         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
5455
5456         # 1. If the file does not exist, new file will be created
5457         #    with specified OSTs.
5458         local file=$DIR/$tdir/$tfile-1
5459         local cmd="$SETSTRIPE -o $ost_indices $file"
5460         echo -e "\n$cmd"
5461         eval $cmd || error "$cmd failed"
5462         check_stripe_count $file $OSTCOUNT
5463         check_obdidx $file $ost_indices
5464         dd if=/dev/urandom of=$file count=1 bs=1M > /dev/null 2>&1 ||
5465                 error "write $file failed"
5466
5467         # 2. If the file already exists and is an empty file, the file
5468         #    will be attached with specified layout.
5469         file=$DIR/$tdir/$tfile-2
5470         mcreate $file || error "mcreate $file failed"
5471         cmd="$SETSTRIPE -o $ost_indices $file"
5472         echo -e "\n$cmd"
5473         eval $cmd || error "$cmd failed"
5474         dd if=/dev/urandom of=$file count=1 bs=1M > /dev/null 2>&1 ||
5475                 error "write $file failed"
5476         check_stripe_count $file $OSTCOUNT
5477         check_obdidx $file $ost_indices
5478
5479         # 3. If the file already has a valid layout attached, the command
5480         #    should fail with EBUSY.
5481         echo -e "\n$cmd"
5482         eval $cmd && error "stripe is already set on $file, $cmd should fail"
5483
5484         # 4. If [--stripe-index|-i <start_ost_idx>] is used, the index must
5485         #    be in the OST indices list.
5486         local start_ost_idx=${ost_indices##*,}
5487         file=$DIR/$tdir/$tfile-3
5488         cmd="$SETSTRIPE -o $ost_indices -i $start_ost_idx $file"
5489         echo -e "\n$cmd"
5490         eval $cmd || error "$cmd failed"
5491         check_stripe_count $file $OSTCOUNT
5492         check_obdidx $file $ost_indices
5493         check_start_ost_idx $file $start_ost_idx
5494
5495         file=$DIR/$tdir/$tfile-4
5496         cmd="$SETSTRIPE"
5497         cmd+=" -o $(exclude_items_from_list $ost_indices $start_ost_idx)"
5498         cmd+=" -i $start_ost_idx $file"
5499         echo -e "\n$cmd"
5500         eval $cmd && error "index $start_ost_idx should be in $ost_indices"
5501
5502         # 5. Specifying OST indices for directory should fail with ENOSUPP.
5503         local dir=$DIR/$tdir/$tdir
5504         mkdir $dir || error "mkdir $dir failed"
5505         cmd="$SETSTRIPE -o $ost_indices $dir"
5506         echo -e "\n$cmd"
5507         eval $cmd && error "$cmd should fail, specifying OST indices" \
5508                            "for directory is not supported"
5509
5510         restore_ostindex
5511 }
5512 run_test 82a "specify OSTs for file (succeed) or directory (fail)"
5513
5514 cleanup_82b() {
5515         trap 0
5516
5517         # Remove OSTs from a pool and destroy the pool.
5518         destroy_pool $ost_pool || true
5519
5520         restore_ostindex
5521 }
5522
5523 # Test 82b is run to ensure that if the user supplies a pool with a specific
5524 # stripe layout that it behaves proprerly. It should fail in the case that
5525 # the supplied OST index list points to OSTs not contained in the user
5526 # supplied pool.
5527 test_82b() { # LU-4665
5528         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.54) ]] ||
5529                 { skip "Need MDS version at least 2.6.54" && return; }
5530         [[ $OSTCOUNT -ge 4 ]] || { skip_env "Need at least 4 OSTs" && return; }
5531
5532         stopall
5533
5534         save_ostindex 4
5535
5536         # Format OSTs with random sparse indices.
5537         local i
5538         local index
5539         local ost_indices
5540         local LOV_V1_INSANE_STRIPE_COUNT=65532
5541         for i in $(seq $OSTCOUNT); do
5542                 index=$(((RANDOM * 2) % LOV_V1_INSANE_STRIPE_COUNT))
5543                 ost_indices+=" $index"
5544         done
5545         ost_indices=$(comma_list $ost_indices)
5546
5547         trap "restore_ostindex" EXIT
5548         echo -e "\nFormat $OSTCOUNT OSTs with sparse indices $ost_indices"
5549         OST_INDEX_LIST=[$ost_indices] formatall
5550
5551         # Setup Lustre filesystem.
5552         start_mgsmds || error "start_mgsmds failed"
5553         for i in $(seq $OSTCOUNT); do
5554                 start ost$i $(ostdevname $i) $OST_MOUNT_OPTS ||
5555                         error "start ost$i failed"
5556         done
5557
5558         mount_client $MOUNT || error "mount client $MOUNT failed"
5559         wait_osts_up
5560         $LFS df $MOUNT || error "$LFS df $MOUNT failed"
5561         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
5562
5563         # Create a new pool and add OSTs into it.
5564         local ost_pool=$FSNAME.$TESTNAME
5565         create_pool $ost_pool || error "create OST pool $ost_pool failed"
5566
5567         trap - EXIT
5568         trap "cleanup_82b" EXIT
5569
5570         local ost_idx_in_list=${ost_indices##*,}
5571         local ost_idx_in_pool=$(exclude_items_from_list $ost_indices \
5572                                 $ost_idx_in_list)
5573
5574         local ost_targets="$FSNAME-OST["
5575         for i in ${ost_idx_in_pool//,/ }; do
5576                 ost_targets=$ost_targets$(printf "%04x," $i)
5577         done
5578         ost_targets="${ost_targets%,}]"
5579
5580         local ost_targets_uuid=$(for i in ${ost_idx_in_pool//,/ }; \
5581                                  do printf "$FSNAME-OST%04x_UUID\n" $i; done |
5582                                  sort -u | tr '\n' ' ')
5583
5584         local cmd="$LCTL pool_add $ost_pool $ost_targets"
5585         do_facet mgs $cmd || error "$cmd failed"
5586         wait_update $HOSTNAME "$LCTL get_param -n lov.$FSNAME-*.pools.$TESTNAME|
5587                                sort -u | tr '\n' ' ' " "$ost_targets_uuid" ||
5588                                         error "wait_update $ost_pool failed"
5589         pool_list $ost_pool || error "list OST pool $ost_pool failed"
5590
5591         # If [--pool|-p <pool_name>] is set with [--ost-list|-o <ost_indices>],
5592         # then the OSTs must be the members of the pool.
5593         local file=$DIR/$tdir/$tfile
5594         cmd="$SETSTRIPE -p $ost_pool -o $ost_idx_in_list $file"
5595         echo -e "\n$cmd"
5596         eval $cmd && error "OST with index $ost_idx_in_list should be" \
5597                            "in OST pool $ost_pool"
5598
5599         # Only select OST $ost_idx_in_list from $ost_pool for file.
5600         ost_idx_in_list=${ost_idx_in_pool#*,}
5601         cmd="$SETSTRIPE -p $ost_pool -o $ost_idx_in_list $file"
5602         echo -e "\n$cmd"
5603         eval $cmd || error "$cmd failed"
5604         cmd="$GETSTRIPE $file"
5605         echo -e "\n$cmd"
5606         eval $cmd || error "$cmd failed"
5607         check_stripe_count $file 2
5608         check_obdidx $file $ost_idx_in_list
5609         dd if=/dev/urandom of=$file count=1 bs=1M > /dev/null 2>&1 ||
5610                 error "write $file failed"
5611
5612         cleanup_82b
5613 }
5614 run_test 82b "specify OSTs for file with --pool and --ost-list options"
5615
5616 test_83() {
5617         [[ $(lustre_version_code ost1) -ge $(version_code 2.6.91) ]] ||
5618                 { skip "Need OST version at least 2.6.91" && return 0; }
5619         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
5620                 skip "Only applicable to ldiskfs-based MDTs"
5621                 return
5622         fi
5623
5624         local dev
5625         local ostmnt
5626         local fstype
5627         local mnt_opts
5628
5629         dev=$(ostdevname 1)
5630         ostmnt=$(facet_mntpt ost1)
5631         fstype=$(facet_fstype ost1)
5632
5633         # Mount the OST as an ldiskfs filesystem.
5634         log "mount the OST $dev as a $fstype filesystem"
5635         add ost1 $(mkfs_opts ost1 $dev) $FSTYPE_OPT \
5636                 --reformat $dev $dev > /dev/null ||
5637                 error "format ost1 error"
5638
5639         if ! test -b $dev; then
5640                 mnt_opts=$(csa_add "$OST_MOUNT_OPTS" -o loop)
5641         fi
5642         echo "mnt_opts $mnt_opts"
5643         do_facet ost1 mount -t $fstype $dev \
5644                 $ostmnt $mnt_opts
5645         # Run llverfs on the mounted ldiskfs filesystem.
5646         # It is needed to get ENOSPACE.
5647         log "run llverfs in partial mode on the OST $fstype $ostmnt"
5648         do_rpc_nodes $(facet_host ost1) run_llverfs $ostmnt -vpl \
5649                 "no" || error "run_llverfs error on $fstype"
5650
5651         # Unmount the OST.
5652         log "unmount the OST $dev"
5653         stop ost1
5654
5655         # Delete file IO_scrub. Later osd_scrub_setup will try to
5656         # create "IO_scrub" but will get ENOSPACE.
5657         writeconf_all
5658         echo "start ost1 service on `facet_active_host ost1`"
5659         start ost1 `ostdevname 1` $OST_MOUNT_OPTS
5660
5661         local err
5662         err=$(do_facet ost1 dmesg | grep "VFS: Busy inodes after unmount of")
5663         echo "string err $err"
5664         [ -z "$err" ] || error $err
5665         reformat
5666 }
5667 run_test 83 "ENOSPACE on OST doesn't cause message VFS: \
5668 Busy inodes after unmount ..."
5669
5670 test_84() {
5671         local facet=$SINGLEMDS
5672         local num=$(echo $facet | tr -d "mds")
5673         local dev=$(mdsdevname $num)
5674         local time_min=$(recovery_time_min)
5675         local recovery_duration
5676         local completed_clients
5677         local correct_clients
5678         local wrap_up=5
5679
5680         echo "start mds service on $(facet_active_host $facet)"
5681         start_mds \
5682         "-o recovery_time_hard=$time_min,recovery_time_soft=$time_min" $@ ||
5683                 error "start MDS failed"
5684
5685         start_ost || error "start OST0000 failed"
5686         start_ost2 || error "start OST0001 failed"
5687
5688         echo "recovery_time=$time_min, timeout=$TIMEOUT, wrap_up=$wrap_up"
5689
5690         mount_client $MOUNT1 || error "mount $MOUNT1 failed"
5691         mount_client $MOUNT2 || error "mount $MOUNT2 failed"
5692         # make sure new superblock labels are sync'd before disabling writes
5693         sync_all_data
5694         sleep 5
5695
5696         replay_barrier $SINGLEMDS
5697         createmany -o $DIR1/$tfile-%d 1000
5698
5699         # We need to catch the end of recovery window to extend it.
5700         # Skip 5 requests and add delay to request handling.
5701         #define OBD_FAIL_TGT_REPLAY_DELAY  0x709 | FAIL_SKIP
5702         do_facet $SINGLEMDS "lctl set_param fail_loc=0x20000709 fail_val=5"
5703
5704         facet_failover --fsck $SINGLEMDS || error "failover: $?"
5705         client_up
5706
5707         echo "recovery status"
5708         do_facet $SINGLEMDS \
5709                 "$LCTL get_param -n mdt.$FSNAME-MDT0000.recovery_status"
5710
5711         recovery_duration=$(do_facet $SINGLEMDS \
5712                 "$LCTL get_param -n mdt.$FSNAME-MDT0000.recovery_status" |
5713                 awk '/recovery_duration/ { print $2 }')
5714         (( $recovery_duration > $time_min + $wrap_up )) &&
5715                 error "recovery_duration > recovery_time_hard + wrap up"
5716         completed_clients=$(do_facet $SINGLEMDS \
5717                 "$LCTL get_param -n mdt.$FSNAME-MDT0000.recovery_status" |
5718                 awk '/completed_clients/ { print $2 }')
5719
5720         correct_clients="$MDSCOUNT/$((MDSCOUNT+1))"
5721         [ "$completed_clients" = "${correct_clients}" ] ||
5722                 error "$completed_clients != $correct_clients"
5723
5724         do_facet $SINGLEMDS "lctl set_param fail_loc=0"
5725         umount_client $MOUNT1
5726         umount_client $MOUNT2
5727
5728         stop_ost
5729         stop_ost2
5730         stop_mds
5731 }
5732 run_test 84 "check recovery_hard_time"
5733
5734 test_85() {
5735         [[ $(lustre_version_code ost1) -ge $(version_code 2.7.55) ]] ||
5736                 { skip "Need OST version at least 2.7.55" && return 0; }
5737 ##define OBD_FAIL_OSD_OST_EA_FID_SET 0x197
5738         do_facet ost1 "lctl set_param fail_loc=0x197"
5739         start_ost
5740         stop_ost
5741 }
5742 run_test 85 "osd_ost init: fail ea_fid_set"
5743
5744 test_86() {
5745         [ "$(facet_fstype ost1)" = "zfs" ] &&
5746                 skip "LU-6442: no such mkfs params for ZFS OSTs" && return
5747
5748         local OST_OPTS="$(mkfs_opts ost1 $(ostdevname 1)) \
5749                 --reformat $(ostdevname 1) $(ostvdevname 1)"
5750
5751         local NEWSIZE=1024
5752         local OLDSIZE=$(do_facet ost1 "$DEBUGFS -c -R stats $(ostdevname 1)" |
5753                 awk '/Flex block group size: / { print $NF; exit; }')
5754
5755         local opts=OST_OPTS
5756         if [[ ${!opts} != *mkfsoptions* ]]; then
5757                 eval opts=\"${!opts} \
5758                         --mkfsoptions='\\\"-O flex_bg -G $NEWSIZE\\\"'\"
5759         else
5760                 val=${!opts//--mkfsoptions=\\\"/ \
5761                         --mkfsoptions=\\\"-O flex_bg -G $NEWSIZE }
5762                 eval opts='${val}'
5763         fi
5764
5765         echo "params: $opts"
5766
5767         add ost1 $opts || error "add ost1 failed with new params"
5768
5769         local FOUNDSIZE=$(do_facet ost1 "$DEBUGFS -c -R stats $(ostdevname 1)" |
5770                 awk '/Flex block group size: / { print $NF; exit; }')
5771
5772         [[ $FOUNDSIZE == $NEWSIZE ]] ||
5773                 error "Flex block group size: $FOUNDSIZE, expected: $NEWSIZE"
5774         return 0
5775 }
5776 run_test 86 "Replacing mkfs.lustre -G option"
5777
5778 test_87() { #LU-6544
5779         [[ $(lustre_version_code $SINGLEMDS1) -ge $(version_code 2.7.56) ]] ||
5780                 { skip "Need MDS version at least 2.7.56" && return; }
5781         [[ $(facet_fstype $SINGLEMDS) != ldiskfs ]] &&
5782                 { skip "Only applicable to ldiskfs-based MDTs" && return; }
5783         [[ $OSTCOUNT -gt 69 ]] &&
5784                 { skip "Ignore wide striping situation" && return; }
5785
5786         local mdsdev=$(mdsdevname 1)
5787         local mdsvdev=$(mdsvdevname 1)
5788         local file=$DIR/$tfile
5789         local mntpt=$(facet_mntpt $SINGLEMDS)
5790         local used_xattr_blk=0
5791         local inode_size=${1:-512}
5792         local left_size=0
5793         local xtest="trusted.test"
5794         local value
5795         local orig
5796         local i
5797
5798         #Please see LU-6544 for MDT inode size calculation
5799         if [ $OSTCOUNT -gt 26 ]; then
5800                 inode_size=2048
5801         elif [ $OSTCOUNT -gt 5 ]; then
5802                 inode_size=1024
5803         fi
5804         left_size=$(expr $inode_size - \
5805                         156 - \
5806                         32 - \
5807                         32 - $OSTCOUNT \* 24 - 16 - 3 -  \
5808                         24 - 16 - 3 - \
5809                         24 - 18 - $(expr length $tfile) - 16 - 4)
5810         if [ $left_size -le 0 ]; then
5811                 echo "No space($left_size) is expected in inode."
5812                 echo "Try 1-byte xattr instead to verify this."
5813                 left_size=1
5814         else
5815                 echo "Estimate: at most $left_size-byte space left in inode."
5816         fi
5817
5818         unload_modules
5819         reformat
5820
5821         add mds1 $(mkfs_opts mds1 ${mdsdev}) --stripe-count-hint=$OSTCOUNT \
5822                 --reformat $mdsdev $mdsvdev || error "add mds1 failed"
5823         start_mdt 1 > /dev/null || error "start mdt1 failed"
5824         for i in $(seq $OSTCOUNT); do
5825                 start ost$i $(ostdevname $i) $OST_MOUNT_OPTS > /dev/null ||
5826                         error "start ost$i failed"
5827         done
5828         mount_client $MOUNT > /dev/null || error "mount client $MOUNT failed"
5829         check_mount || error "check client $MOUNT failed"
5830
5831         #set xattr
5832         $SETSTRIPE -c -1 $file || error "$SETSTRIPE -c -1 $file failed"
5833         $GETSTRIPE $file || error "$GETSTRIPE $file failed"
5834         i=$($GETSTRIPE -c $file)
5835         if [ $i -ne $OSTCOUNT ]; then
5836                 left_size=$(expr $left_size + $(expr $OSTCOUNT - $i) \* 24)
5837                 echo -n "Since only $i out $OSTCOUNT OSTs are used, "
5838                 echo -n "the expected left space is changed to "
5839                 echo "$left_size bytes at most."
5840         fi
5841         value=$(generate_string $left_size)
5842         setfattr -n $xtest -v $value $file
5843         orig=$(get_xattr_value $xtest $file)
5844         [[ "$orig" != "$value" ]] && error "$xtest changed"
5845
5846         #Verify if inode has some expected space left
5847         umount $MOUNT > /dev/null || error "umount $MOUNT failed"
5848         stop_mdt 1 > /dev/null || error "stop mdt1 failed"
5849         mount_ldiskfs $SINGLEMDS || error "mount -t ldiskfs $SINGLEMDS failed"
5850
5851         do_facet $SINGLEMDS ls -sal $mntpt/ROOT/$tfile
5852         used_xattr_blk=$(do_facet $SINGLEMDS ls -s $mntpt/ROOT/$tfile |
5853                         awk '{ print $1 }')
5854         [[ $used_xattr_blk -eq 0 ]] &&
5855                 error "Please check MDS inode size calculation: \
5856                        more than $left_size-byte space left in inode."
5857         echo "Verified: at most $left_size-byte space left in inode."
5858
5859         stopall
5860 }
5861 run_test 87 "check if MDT inode can hold EAs with N stripes properly"
5862
5863 test_88() {
5864         [ "$(facet_fstype mds1)" == "zfs" ] &&
5865                 skip "LU-6662: no implementation for ZFS" && return
5866
5867         load_modules
5868
5869         add mds1 $(mkfs_opts mds1 $(mdsdevname 1)) \
5870                 --reformat $(mdsdevname 1) || error "add mds1 failed"
5871
5872         do_facet mds1 "$TUNEFS $(mdsdevname 1) |
5873                 grep -e \".*opts:.*errors=remount-ro.*\"" ||
5874                 error "default mount options is missing"
5875
5876         add mds1 $(mkfs_opts mds1 $(mdsdevname 1)) \
5877                 --mountfsoptions="user_xattr,errors=panic" \
5878                 --reformat $(mdsdevname 1) || error "add mds1 failed"
5879
5880         do_facet mds1 "$TUNEFS $(mdsdevname 1) |
5881                 grep -e \".*opts:.*errors=panic.*\"" ||
5882                 error "user can't override default mount options"
5883 }
5884 run_test 88 "check the default mount options can be overridden"
5885
5886 # $1 test directory
5887 # $2 (optional) value of max_mod_rpcs_in_flight to set
5888 check_max_mod_rpcs_in_flight() {
5889         local dir="$1"
5890         local mmr="$2"
5891         local idx
5892         local facet
5893         local tmp
5894         local i
5895
5896         idx=$(printf "%04x" $($LFS getdirstripe -i $dir))
5897         facet="mds$((0x$idx + 1))"
5898
5899         if [ -z "$mmr" ]; then
5900                 # get value of max_mod_rcps_in_flight
5901                 mmr=$($LCTL get_param -n \
5902                         mdc.$FSNAME-MDT$idx-mdc-*.max_mod_rpcs_in_flight) ||
5903                         error "Unable to get max_mod_rpcs_in_flight"
5904                 echo "max_mod_rcps_in_flight is $mmr"
5905         else
5906                 # set value of max_mod_rpcs_in_flight
5907                 $LCTL set_param \
5908                     mdc.$FSNAME-MDT$idx-mdc-*.max_mod_rpcs_in_flight=$mmr ||
5909                         error "Unable to set max_mod_rpcs_in_flight to $mmr"
5910                 echo "max_mod_rpcs_in_flight set to $mmr"
5911         fi
5912
5913         # create mmr+1 files
5914         echo "creating $((mmr + 1)) files ..."
5915         umask 0022
5916         for i in $(seq $((mmr + 1))); do
5917                 touch $dir/file-$i
5918         done
5919
5920         ### part 1 ###
5921
5922         # consumes mmr-1 modify RPC slots
5923         #define OBD_FAIL_MDS_REINT_MULTI_NET     0x159
5924         # drop requests on MDT so that RPC slots are consumed
5925         # during all the request resend interval
5926         do_facet $facet "$LCTL set_param fail_loc=0x159"
5927         echo "launch $((mmr - 1)) chmod in parallel ..."
5928         for i in $(seq $((mmr - 1))); do
5929                 chmod 0600 $dir/file-$i &
5930         done
5931         sleep 1
5932
5933         # send one additional modify RPC
5934         do_facet $facet "$LCTL set_param fail_loc=0"
5935         echo "launch 1 additional chmod in parallel ..."
5936         chmod 0600 $dir/file-$mmr &
5937         sleep 1
5938
5939         # check this additional modify RPC get a modify RPC slot
5940         # and succeed its operation
5941         checkstat -vp 0600 $dir/file-$mmr ||
5942                 error "Unable to send $mmr modify RPCs in parallel"
5943         wait
5944
5945         ### part 2 ###
5946
5947         # consumes mmr modify RPC slots
5948         #define OBD_FAIL_MDS_REINT_MULTI_NET     0x159
5949         # drop requests on MDT so that RPC slots are consumed
5950         # during all the request resend interval
5951         do_facet $facet "$LCTL set_param fail_loc=0x159"
5952         echo "launch $mmr chmod in parallel ..."
5953         for i in $(seq $mmr); do
5954                 chmod 0666 $dir/file-$i &
5955         done
5956         sleep 1
5957
5958         # send one additional modify RPC
5959         do_facet $facet "$LCTL set_param fail_loc=0"
5960         echo "launch 1 additional chmod in parallel ..."
5961         chmod 0666 $dir/file-$((mmr + 1)) &
5962         sleep 1
5963
5964         # check this additional modify RPC blocked getting a modify RPC slot
5965         checkstat -vp 0644 $dir/file-$((mmr + 1)) ||
5966                 error "Unexpectedly send $(($mmr + 1)) modify RPCs in parallel"
5967         wait
5968 }
5969
5970 test_90a() {
5971         reformat
5972         if ! combined_mgs_mds ; then
5973                 start_mgs
5974         fi
5975         setup
5976
5977         [[ $($LCTL get_param mdc.*.import |
5978              grep "connect_flags:.*multi_mod_rpc") ]] ||
5979                 { skip "Need MDC with 'multi_mod_rpcs' feature"; return 0; }
5980
5981         # check default value
5982         $LFS mkdir -c1 $DIR/$tdir || error "mkdir $DIR/$tdir failed"
5983         check_max_mod_rpcs_in_flight $DIR/$tdir
5984
5985         cleanup
5986 }
5987 run_test 90a "check max_mod_rpcs_in_flight is enforced"
5988
5989 test_90b() {
5990         local idx
5991         local facet
5992         local tmp
5993         local mmrpc
5994
5995         setup
5996
5997         [[ $($LCTL get_param mdc.*.import |
5998              grep "connect_flags:.*multi_mod_rpc") ]] ||
5999                 { skip "Need MDC with 'multi_mod_rpcs' feature"; return 0; }
6000
6001         ### test 1.
6002         # update max_mod_rpcs_in_flight
6003         $LFS mkdir -c1 $DIR/${tdir}1 || error "mkdir $DIR/${tdir}1 failed"
6004         check_max_mod_rpcs_in_flight $DIR/${tdir}1 1
6005
6006         ### test 2.
6007         # check client is able to send multiple modify RPCs in paralell
6008         tmp=$($LCTL get_param -n mdc.$FSNAME-MDT*-mdc-*.import |
6009                 grep -c "multi_mod_rpcs")
6010         if [ "$tmp" -ne $MDSCOUNT ]; then
6011                 echo "Client not able to send multiple modify RPCs in parallel"
6012                 cleanup
6013                 return
6014         fi
6015
6016         # update max_mod_rpcs_in_flight
6017         $LFS mkdir -c1 $DIR/${tdir}2 || error "mkdir $DIR/${tdir}2 failed"
6018         check_max_mod_rpcs_in_flight $DIR/${tdir}2 5
6019
6020         ### test 3.
6021         $LFS mkdir -c1 $DIR/${tdir}3 || error "mkdir $DIR/${tdir}3 failed"
6022         idx=$(printf "%04x" $($LFS getdirstripe -i $DIR/${tdir}3))
6023         facet="mds$((0x$idx + 1))"
6024
6025         # save MDT max_mod_rpcs_per_client
6026         mmrpc=$(do_facet $facet \
6027                     cat /sys/module/mdt/parameters/max_mod_rpcs_per_client)
6028
6029         # update max_mod_rpcs_in_flight
6030         umount_client $MOUNT
6031         do_facet $facet \
6032                 "echo 16 > /sys/module/mdt/parameters/max_mod_rpcs_per_client"
6033         mount_client $MOUNT
6034         $LCTL set_param mdc.$FSNAME-MDT$idx-mdc-*.max_rpcs_in_flight=17
6035         check_max_mod_rpcs_in_flight $DIR/${tdir}3 16
6036
6037         # restore MDT max_mod_rpcs_per_client initial value
6038         do_facet $facet \
6039                 "echo $mmrpc > /sys/module/mdt/parameters/max_mod_rpcs_per_client"
6040
6041         rm -rf $DIR/${tdir}?
6042         cleanup
6043 }
6044 run_test 90b "check max_mod_rpcs_in_flight is enforced after update"
6045
6046 test_90c() {
6047         local tmp
6048         local mrif
6049         local mmrpc
6050
6051         setup
6052
6053         [[ $($LCTL get_param mdc.*.import |
6054              grep "connect_flags:.*multi_mod_rpc") ]] ||
6055                 { skip "Need MDC with 'multi_mod_rpcs' feature"; return 0; }
6056
6057         # check client is able to send multiple modify RPCs in paralell
6058         tmp=$($LCTL get_param -n mdc.$FSNAME-MDT*-mdc-*.import |
6059                 grep -c "multi_mod_rpcs")
6060         if [ "$tmp" -ne $MDSCOUNT ]; then
6061                 skip "Client not able to send multiple modify RPCs in parallel"
6062                 cleanup
6063                 return
6064         fi
6065
6066         # get max_rpcs_in_flight value
6067         mrif=$($LCTL get_param -n mdc.$FSNAME-MDT0000-mdc-*.max_rpcs_in_flight)
6068         echo "max_rpcs_in_flight is $mrif"
6069
6070         # get MDT max_mod_rpcs_per_client
6071         mmrpc=$(do_facet mds1 \
6072                     cat /sys/module/mdt/parameters/max_mod_rpcs_per_client)
6073         echo "max_mod_rpcs_per_client is $mmrpc"
6074
6075         # testcase 1
6076         # attempt to set max_mod_rpcs_in_flight to max_rpcs_in_flight value
6077         # prerequisite: set max_mod_rpcs_per_client to max_rpcs_in_flight value
6078         umount_client $MOUNT
6079         do_facet mds1 \
6080                 "echo $mrif > /sys/module/mdt/parameters/max_mod_rpcs_per_client"
6081         mount_client $MOUNT
6082
6083         $LCTL set_param \
6084             mdc.$FSNAME-MDT0000-mdc-*.max_mod_rpcs_in_flight=$mrif &&
6085             error "set max_mod_rpcs_in_flight to $mrif should fail"
6086
6087         umount_client $MOUNT
6088         do_facet mds1 \
6089                 "echo $mmrpc > /sys/module/mdt/parameters/max_mod_rpcs_per_client"
6090         mount_client $MOUNT
6091
6092         # testcase 2
6093         # attempt to set max_mod_rpcs_in_flight to max_mod_rpcs_per_client+1
6094         # prerequisite: set max_rpcs_in_flight to max_mod_rpcs_per_client+2
6095         $LCTL set_param \
6096             mdc.$FSNAME-MDT0000-mdc-*.max_rpcs_in_flight=$((mmrpc + 2))
6097
6098         $LCTL set_param \
6099             mdc.$FSNAME-MDT0000-mdc-*.max_mod_rpcs_in_flight=$((mmrpc + 1)) &&
6100             error "set max_mod_rpcs_in_flight to $((mmrpc + 1)) should fail"
6101
6102         cleanup
6103 }
6104 run_test 90c "check max_mod_rpcs_in_flight update limits"
6105
6106 test_90d() {
6107         local idx
6108         local facet
6109         local mmr
6110         local i
6111         local pid
6112
6113         setup
6114
6115         [[ $($LCTL get_param mdc.*.import |
6116              grep "connect_flags:.*multi_mod_rpc") ]] ||
6117                 { skip "Need MDC with 'multi_mod_rpcs' feature"; return 0; }
6118
6119         $LFS mkdir -c1 $DIR/$tdir || error "mkdir $DIR/$tdir failed"
6120         idx=$(printf "%04x" $($LFS getdirstripe -i $DIR/$tdir))
6121         facet="mds$((0x$idx + 1))"
6122
6123         # check client version supports multislots
6124         tmp=$($LCTL get_param -N \
6125                 mdc.$FSNAME-MDT$idx-mdc-*.max_mod_rpcs_in_flight)
6126         if [ -z "$tmp" ]; then
6127                 skip "Client does not support multiple modify RPCs in flight"
6128                 cleanup
6129                 return
6130         fi
6131
6132         # get current value of max_mod_rcps_in_flight
6133         mmr=$($LCTL get_param -n \
6134                 mdc.$FSNAME-MDT$idx-mdc-*.max_mod_rpcs_in_flight)
6135         echo "max_mod_rcps_in_flight is $mmr"
6136
6137         # create mmr files
6138         echo "creating $mmr files ..."
6139         umask 0022
6140         for i in $(seq $mmr); do
6141                 touch $DIR/$tdir/file-$i
6142         done
6143
6144         # prepare for close RPC
6145         multiop_bg_pause $DIR/$tdir/file-close O_c
6146         pid=$!
6147
6148         # consumes mmr modify RPC slots
6149         #define OBD_FAIL_MDS_REINT_MULTI_NET     0x159
6150         # drop requests on MDT so that RPC slots are consumed
6151         # during all the request resend interval
6152         do_facet $facet "$LCTL set_param fail_loc=0x159"
6153         echo "launch $mmr chmod in parallel ..."
6154         for i in $(seq $mmr); do
6155                 chmod 0600 $DIR/$tdir/file-$i &
6156         done
6157
6158         # send one additional close RPC
6159         do_facet $facet "$LCTL set_param fail_loc=0"
6160         echo "launch 1 additional close in parallel ..."
6161         kill -USR1 $pid
6162         cancel_lru_locks mdc
6163         sleep 1
6164
6165         # check this additional close RPC get a modify RPC slot
6166         # and multiop process completed
6167         [ -d /proc/$pid ] &&
6168                 error "Unable to send the additional close RPC in parallel"
6169         wait
6170         rm -rf $DIR/$tdir
6171         cleanup
6172 }
6173 run_test 90d "check one close RPC is allowed above max_mod_rpcs_in_flight"
6174
6175 check_uuid_on_ost() {
6176         local nid=$1
6177         do_facet ost1 "$LCTL get_param obdfilter.${FSNAME}*.exports.'$nid'.uuid"
6178 }
6179
6180 check_uuid_on_mdt() {
6181         local nid=$1
6182         do_facet $SINGLEMDS "$LCTL get_param mdt.${FSNAME}*.exports.'$nid'.uuid"
6183 }
6184
6185 test_91() {
6186         local uuid
6187         local nid
6188         local found
6189
6190         [[ $(lustre_version_code ost1) -ge $(version_code 2.7.63) ]] ||
6191                 { skip "Need OST version at least 2.7.63" && return 0; }
6192         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.7.63) ]] ||
6193                 { skip "Need MDT version at least 2.7.63" && return 0; }
6194
6195         start_mds || error "MDS start failed"
6196         start_ost || error "unable to start OST"
6197         mount_client $MOUNT || error "client start failed"
6198         check_mount || error "check_mount failed"
6199
6200         if remote_mds; then
6201                 nid=$($LCTL list_nids | head -1 | sed  "s/\./\\\./g")
6202         else
6203                 nid="0@lo"
6204         fi
6205         uuid=$(get_client_uuid $MOUNT)
6206
6207         echo "list nids on mdt:"
6208         do_facet $SINGLEMDS "$LCTL list_param mdt.${FSNAME}*.exports.*"
6209         echo "uuid from $nid:"
6210         do_facet $SINGLEMDS "$LCTL get_param mdt.${FSNAME}*.exports.'$nid'.uuid"
6211
6212         found=$(check_uuid_on_mdt $nid | grep $uuid)
6213         [ -z "$found" ] && error "can't find $uuid $nid on MDT"
6214         found=$(check_uuid_on_ost $nid | grep $uuid)
6215         [ -z "$found" ] && error "can't find $uuid $nid on OST"
6216
6217         # umount the client so it won't reconnect
6218         manual_umount_client --force || error "failed to umount $?"
6219         # shouldn't disappear on MDS after forced umount
6220         found=$(check_uuid_on_mdt $nid | grep $uuid)
6221         [ -z "$found" ] && error "can't find $uuid $nid"
6222
6223         echo "evict $nid"
6224         do_facet $SINGLEMDS \
6225                 "$LCTL set_param -n mdt.${mds1_svc}.evict_client nid:$nid"
6226
6227         found=$(check_uuid_on_mdt $nid | grep $uuid)
6228         [ -n "$found" ] && error "found $uuid $nid on MDT"
6229         found=$(check_uuid_on_ost $nid | grep $uuid)
6230         [ -n "$found" ] && error "found $uuid $nid on OST"
6231
6232         # check it didn't reconnect (being umounted)
6233         sleep $((TIMEOUT+1))
6234         found=$(check_uuid_on_mdt $nid | grep $uuid)
6235         [ -n "$found" ] && error "found $uuid $nid on MDT"
6236         found=$(check_uuid_on_ost $nid | grep $uuid)
6237         [ -n "$found" ] && error "found $uuid $nid on OST"
6238
6239         cleanup
6240 }
6241 run_test 91 "evict-by-nid support"
6242
6243 if ! combined_mgs_mds ; then
6244         stop mgs
6245 fi
6246
6247 cleanup_gss
6248
6249 # restore the values of MDSSIZE and OSTSIZE
6250 MDSSIZE=$STORED_MDSSIZE
6251 OSTSIZE=$STORED_OSTSIZE
6252 reformat
6253
6254 complete $SECONDS
6255 exit_status