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