Whamcloud - gitweb
3043cf5f719eed4d93cd3bb53796b2a7391474c5
[fs/lustre-release.git] / lustre / tests / conf-sanity.sh
1 #!/bin/bash
2
3 set -e
4
5 ONLY=${ONLY:-"$*"}
6
7 # bug number for skipped test:     LU-2828
8 ALWAYS_EXCEPT="$CONF_SANITY_EXCEPT 59 64"
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 -1)
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 devices_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 -1)
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 | head -1)
1709
1710                         mopts=nosvc
1711                         if [ $fstype == "ldiskfs" ]; then
1712                                 mopts="loop,$mopts"
1713                         fi
1714                         $r $MOUNT_CMD -o $mopts $mdt_dev $tmp/mnt/mdt
1715                         $r $LCTL replace_nids $fsname-OST0000 $ostnid
1716                         $r $LCTL replace_nids $fsname-MDT0000 $nid
1717                         $r umount -d $tmp/mnt/mdt
1718                 fi
1719
1720                 mopts=exclude=$fsname-OST0000
1721                 if [ $fstype == "ldiskfs" ]; then
1722                         mopts="loop,$mopts"
1723                 fi
1724         fi
1725
1726         t32_wait_til_devices_gone $node
1727
1728         $r $MOUNT_CMD -o $mopts $mdt_dev $tmp/mnt/mdt || {
1729                 $r losetup -a
1730                 error_noexit "Mounting the MDT"
1731                 return 1
1732         }
1733         shall_cleanup_mdt=true
1734
1735         if [ "$dne_upgrade" != "no" ]; then
1736                 local fs2mdsdev=$(mdsdevname 1_2)
1737                 local fs2mdsvdev=$(mdsvdevname 1_2)
1738
1739                 echo "mkfs new MDT on ${fs2mdsdev}...."
1740                 if [ $(facet_fstype mds1) == ldiskfs ]; then
1741                         mkfsoptions="--mkfsoptions=\\\"-J size=8\\\""
1742                 fi
1743
1744                 add fs2mds $(mkfs_opts mds2 $fs2mdsdev $fsname) --reformat \
1745                            $mkfsoptions $fs2mdsdev $fs2mdsvdev > /dev/null || {
1746                         error_noexit "Mkfs new MDT failed"
1747                         return 1
1748                 }
1749
1750                 $r $TUNEFS --dryrun $fs2mdsdev || {
1751                         error_noexit "tunefs.lustre before mounting the MDT"
1752                         return 1
1753                 }
1754
1755                 echo "mount new MDT....$fs2mdsdev"
1756                 $r mkdir -p $tmp/mnt/mdt1
1757                 $r $MOUNT_CMD -o $mopts $fs2mdsdev $tmp/mnt/mdt1 || {
1758                         error_noexit "mount mdt1 failed"
1759                         return 1
1760                 }
1761
1762                 $r $LCTL set_param -n mdt.${fsname}*.enable_remote_dir=1 ||
1763                         error_noexit "enable remote dir create failed"
1764
1765                 shall_cleanup_mdt1=true
1766         fi
1767
1768         uuid=$($r $LCTL get_param -n mdt.$fsname-MDT0000.uuid) || {
1769                 error_noexit "Getting MDT UUID"
1770                 return 1
1771         }
1772         if [ "$uuid" != $fsname-MDT0000_UUID ]; then
1773                 error_noexit "Unexpected MDT UUID: \"$uuid\""
1774                 return 1
1775         fi
1776
1777         $r $TUNEFS --dryrun $ost_dev || {
1778                 error_noexit "tunefs.lustre before mounting the OST"
1779                 return 1
1780         }
1781         if [ "$writeconf" ]; then
1782                 mopts=mgsnode=$nid,$writeconf
1783                 if [ $fstype == "ldiskfs" ]; then
1784                         mopts="loop,$mopts"
1785                         $r $TUNEFS --quota $ost_dev || {
1786                                 $r losetup -a
1787                                 error_noexit "Enable ost quota feature"
1788                                 return 1
1789                         }
1790                 fi
1791         else
1792                 mopts=mgsnode=$nid
1793                 if [ $fstype == "ldiskfs" ]; then
1794                         mopts="loop,$mopts"
1795                 fi
1796         fi
1797         $r $MOUNT_CMD -o $mopts $ost_dev $tmp/mnt/ost || {
1798                 error_noexit "Mounting the OST"
1799                 return 1
1800         }
1801         shall_cleanup_ost=true
1802
1803         uuid=$($r $LCTL get_param -n obdfilter.$fsname-OST0000.uuid) || {
1804                 error_noexit "Getting OST UUID"
1805                 return 1
1806         }
1807         if [ "$uuid" != $fsname-OST0000_UUID ]; then
1808                 error_noexit "Unexpected OST UUID: \"$uuid\""
1809                 return 1
1810         fi
1811
1812         $r $LCTL conf_param $fsname-OST0000.osc.max_dirty_mb=15 || {
1813                 error_noexit "Setting \"max_dirty_mb\""
1814                 return 1
1815         }
1816         $r $LCTL conf_param $fsname-OST0000.failover.node=$nid || {
1817                 error_noexit "Setting OST \"failover.node\""
1818                 return 1
1819         }
1820         $r $LCTL conf_param $fsname-MDT0000.mdc.max_rpcs_in_flight=9 || {
1821                 error_noexit "Setting \"max_rpcs_in_flight\""
1822                 return 1
1823         }
1824         $r $LCTL conf_param $fsname-MDT0000.failover.node=$nid || {
1825                 error_noexit "Setting MDT \"failover.node\""
1826                 return 1
1827         }
1828         $r $LCTL pool_new $fsname.interop || {
1829                 error_noexit "Setting \"interop\""
1830                 return 1
1831         }
1832         $r $LCTL conf_param $fsname-MDT0000.lov.stripesize=4M || {
1833                 error_noexit "Setting \"lov.stripesize\""
1834                 return 1
1835         }
1836         $r $LCTL conf_param $fsname-MDT0000.mdd.atime_diff=70 || {
1837                 error_noexit "Setting \"mdd.atime_diff\""
1838                 return 1
1839         }
1840
1841         if [ "$ff_convert" != "no" -a $(facet_fstype ost1) == "ldiskfs" ]; then
1842                 $r $LCTL lfsck_start -M $fsname-OST0000 || {
1843                         error_noexit "Start OI scrub on OST0"
1844                         return 1
1845                 }
1846
1847                 # The oi_scrub should be on ost1, but for test_32(),
1848                 # all on the SINGLEMDS.
1849                 wait_update_facet $SINGLEMDS "$LCTL get_param -n \
1850                         osd-ldiskfs.$fsname-OST0000.oi_scrub |
1851                         awk '/^status/ { print \\\$2 }'" "completed" 30 || {
1852                         error_noexit "Failed to get the expected 'completed'"
1853                         return 1
1854                 }
1855
1856                 local UPDATED=$($r $LCTL get_param -n \
1857                                 osd-ldiskfs.$fsname-OST0000.oi_scrub |
1858                                 awk '/^updated/ { print $2 }')
1859                 [ $UPDATED -ge 1 ] || {
1860                         error_noexit "Only $UPDATED objects have been converted"
1861                         return 1
1862                 }
1863         fi
1864
1865         if [ "$dne_upgrade" != "no" ]; then
1866                 $r $LCTL conf_param \
1867                                 $fsname-MDT0001.mdc.max_rpcs_in_flight=9 || {
1868                         error_noexit "Setting MDT1 \"max_rpcs_in_flight\""
1869                         return 1
1870                 }
1871                 $r $LCTL conf_param $fsname-MDT0001.failover.node=$nid || {
1872                         error_noexit "Setting MDT1 \"failover.node\""
1873                         return 1
1874                 }
1875                 $r $LCTL conf_param $fsname-MDT0001.lov.stripesize=4M || {
1876                         error_noexit "Setting MDT1 \"lov.stripesize\""
1877                         return 1
1878                 }
1879
1880         fi
1881
1882         if [ "$writeconf" ]; then
1883                 $MOUNT_CMD $nid:/$fsname $tmp/mnt/lustre || {
1884                         error_noexit "Mounting the client"
1885                         return 1
1886                 }
1887                 shall_cleanup_lustre=true
1888                 $LCTL set_param debug="$PTLDEBUG"
1889
1890                 t32_verify_quota $node $fsname $tmp/mnt/lustre || {
1891                         error_noexit "verify quota failed"
1892                         return 1
1893                 }
1894
1895                 if [ "$dne_upgrade" != "no" ]; then
1896                         $LFS mkdir -i 1 $tmp/mnt/lustre/remote_dir || {
1897                                 error_noexit "set remote dir failed"
1898                                 return 1
1899                         }
1900
1901                         pushd $tmp/mnt/lustre
1902                         tar -cf - . --exclude=./remote_dir |
1903                                 tar -xvf - -C remote_dir 1>/dev/null || {
1904                                 error_noexit "cp to remote dir failed"
1905                                 return 1
1906                         }
1907                         popd
1908                 fi
1909
1910                 dd if=/dev/zero of=$tmp/mnt/lustre/tmp_file bs=10k count=10 || {
1911                         error_noexit "dd failed"
1912                         return 1
1913                 }
1914                 rm -rf $tmp/mnt/lustre/tmp_file || {
1915                         error_noexit "rm failed"
1916                         return 1
1917                 }
1918
1919                 if $r test -f $tmp/sha1sums; then
1920                         # LU-2393 - do both sorts on same node to ensure locale
1921                         # is identical
1922                         $r cat $tmp/sha1sums | sort -k 2 >$tmp/sha1sums.orig
1923                         if [ "$dne_upgrade" != "no" ]; then
1924                                 pushd $tmp/mnt/lustre/remote_dir
1925                         else
1926                                 pushd $tmp/mnt/lustre
1927                         fi
1928
1929                         find ! -name .lustre -type f -exec sha1sum {} \; |
1930                                 sort -k 2 >$tmp/sha1sums || {
1931                                 error_noexit "sha1sum"
1932                                 return 1
1933                         }
1934                         popd
1935                         if ! diff -ub $tmp/sha1sums.orig $tmp/sha1sums; then
1936                                 error_noexit "sha1sum verification failed"
1937                                 return 1
1938                         fi
1939                 else
1940                         echo "sha1sum verification skipped"
1941                 fi
1942
1943                 if [ "$dne_upgrade" != "no" ]; then
1944                         rm -rf $tmp/mnt/lustre/remote_dir || {
1945                                 error_noexit "remove remote dir failed"
1946                                 return 1
1947                         }
1948                 fi
1949
1950                 if $r test -f $tmp/list; then
1951                         #
1952                         # There is not a Test Framework API to copy files to or
1953                         # from a remote node.
1954                         #
1955                         # LU-2393 - do both sorts on same node to ensure locale
1956                         # is identical
1957                         $r cat $tmp/list | sort -k 6 >$tmp/list.orig
1958                         pushd $tmp/mnt/lustre
1959                         ls -Rni --time-style=+%s | sort -k 6 >$tmp/list || {
1960                                 error_noexit "ls"
1961                                 return 1
1962                         }
1963                         popd
1964                         #
1965                         # 32-bit and 64-bit clients use different algorithms to
1966                         # convert FIDs into inode numbers.  Hence, remove the inode
1967                         # numbers from the lists, if the original list was created
1968                         # on an architecture with different number of bits per
1969                         # "long".
1970                         #
1971                         if [ $(t32_bits_per_long $(uname -m)) != \
1972                                 $(t32_bits_per_long $img_arch) ]; then
1973                                 echo "Different number of bits per \"long\" from the disk image"
1974                                 for list in list.orig list; do
1975                                         sed -i -e 's/^[0-9]\+[ \t]\+//' $tmp/$list
1976                                 done
1977                         fi
1978                         if ! diff -ub $tmp/list.orig $tmp/list; then
1979                                 error_noexit "list verification failed"
1980                                 return 1
1981                         fi
1982                 else
1983                         echo "list verification skipped"
1984                 fi
1985
1986                 #
1987                 # When adding new data verification tests, please check for
1988                 # the presence of the required reference files first, like
1989                 # the "sha1sums" and "list" tests above, to avoid the need to
1990                 # regenerate every image for each test addition.
1991                 #
1992
1993                 nrpcs_orig=$($LCTL get_param \
1994                                 -n mdc.*MDT0000*.max_rpcs_in_flight) || {
1995                         error_noexit "Getting \"max_rpcs_in_flight\""
1996                         return 1
1997                 }
1998                 nrpcs=$((nrpcs_orig + 5))
1999                 $r $LCTL conf_param $fsname-MDT0000.mdc.max_rpcs_in_flight=$nrpcs || {
2000                         error_noexit "Changing \"max_rpcs_in_flight\""
2001                         return 1
2002                 }
2003                 wait_update $HOSTNAME "$LCTL get_param \
2004                         -n mdc.*MDT0000*.max_rpcs_in_flight" $nrpcs || {
2005                         error_noexit "Verifying \"max_rpcs_in_flight\""
2006                         return 1
2007                 }
2008
2009                 umount $tmp/mnt/lustre || {
2010                         error_noexit "Unmounting the client"
2011                         return 1
2012                 }
2013                 shall_cleanup_lustre=false
2014         else
2015                 if [ "$dne_upgrade" != "no" ]; then
2016                         $r umount -d $tmp/mnt/mdt1 || {
2017                                 error_noexit "Unmounting the MDT2"
2018                                 return 1
2019                         }
2020                         shall_cleanup_mdt1=false
2021                 fi
2022
2023                 $r umount -d $tmp/mnt/mdt || {
2024                         error_noexit "Unmounting the MDT"
2025                         return 1
2026                 }
2027                 shall_cleanup_mdt=false
2028
2029                 $r umount -d $tmp/mnt/ost || {
2030                         error_noexit "Unmounting the OST"
2031                         return 1
2032                 }
2033                 shall_cleanup_ost=false
2034
2035                 t32_reload_modules $node || {
2036                         error_noexit "Reloading modules"
2037                         return 1
2038                 }
2039
2040                 # mount a second time to make sure we didnt leave upgrade flag on
2041                 $r $TUNEFS --dryrun $mdt_dev || {
2042                         $r losetup -a
2043                         error_noexit "tunefs.lustre before remounting the MDT"
2044                         return 1
2045                 }
2046
2047                 mopts=exclude=$fsname-OST0000
2048                 if [ $fstype == "ldiskfs" ]; then
2049                         mopts="loop,$mopts"
2050                 fi
2051                 $r $MOUNT_CMD -o $mopts $mdt_dev $tmp/mnt/mdt || {
2052                         error_noexit "Remounting the MDT"
2053                         return 1
2054                 }
2055                 shall_cleanup_mdt=true
2056         fi
2057 }
2058
2059 test_32a() {
2060         local tarballs
2061         local tarball
2062         local rc=0
2063
2064         t32_check
2065         for tarball in $tarballs; do
2066                 t32_test $tarball || let "rc += $?"
2067         done
2068         return $rc
2069 }
2070 run_test 32a "Upgrade (not live)"
2071
2072 test_32b() {
2073         local tarballs
2074         local tarball
2075         local rc=0
2076
2077         t32_check
2078         for tarball in $tarballs; do
2079                 t32_test $tarball writeconf || let "rc += $?"
2080         done
2081         return $rc
2082 }
2083 run_test 32b "Upgrade with writeconf"
2084
2085 test_32c() {
2086         local tarballs
2087         local tarball
2088         local rc=0
2089
2090         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2091         t32_check
2092         for tarball in $tarballs; do
2093                 dne_upgrade=yes t32_test $tarball writeconf || rc=$?
2094         done
2095         return $rc
2096 }
2097 run_test 32c "dne upgrade test"
2098
2099 test_32d() {
2100         local tarballs
2101         local tarball
2102         local rc=0
2103
2104         t32_check
2105         for tarball in $tarballs; do
2106                 ff_convert=yes t32_test $tarball || rc=$?
2107         done
2108         return $rc
2109 }
2110 run_test 32d "convert ff test"
2111
2112 test_33a() { # bug 12333, was test_33
2113         local FSNAME2=test-123
2114         local MDSDEV=$(mdsdevname ${SINGLEMDS//mds/})
2115         local mkfsoptions
2116
2117         [ -n "$ost1_HOST" ] && fs2ost_HOST=$ost1_HOST
2118
2119         if [ -z "$fs2ost_DEV" -o -z "$fs2mds_DEV" ]; then
2120                 local dev=${SINGLEMDS}_dev
2121                 local MDSDEV=${!dev}
2122                 is_blkdev $SINGLEMDS $MDSDEV &&
2123                         skip_env "mixed loopback and real device not working" &&
2124                         return
2125         fi
2126
2127         local fs2mdsdev=$(mdsdevname 1_2)
2128         local fs2ostdev=$(ostdevname 1_2)
2129         local fs2mdsvdev=$(mdsvdevname 1_2)
2130         local fs2ostvdev=$(ostvdevname 1_2)
2131
2132         if [ $(facet_fstype mds1) == ldiskfs ]; then
2133                 mkfsoptions="--mkfsoptions=\\\"-J size=8\\\"" # See bug 17931.
2134         fi
2135
2136         add fs2mds $(mkfs_opts mds1 ${fs2mdsdev}) --mgs --fsname=${FSNAME2} \
2137                 --reformat $mkfsoptions $fs2mdsdev $fs2mdsvdev || exit 10
2138         add fs2ost $(mkfs_opts ost1 ${fs2ostdev}) --mgsnode=$MGSNID \
2139                 --fsname=${FSNAME2} --index=8191 --reformat $fs2ostdev \
2140                 $fs2ostvdev || exit 10
2141
2142         start fs2mds $fs2mdsdev $MDS_MOUNT_OPTS && trap cleanup_fs2 EXIT INT
2143         start fs2ost $fs2ostdev $OST_MOUNT_OPTS
2144         do_facet $SINGLEMDS "$LCTL conf_param $FSNAME2.sys.timeout=200" ||
2145                 error "$LCTL conf_param $FSNAME2.sys.timeout=200 failed"
2146         mkdir -p $MOUNT2 || error "mkdir $MOUNT2 failed"
2147         $MOUNT_CMD $MGSNID:/${FSNAME2} $MOUNT2 || error "$MOUNT_CMD failed"
2148         echo "ok."
2149
2150         cp /etc/hosts $MOUNT2/ || error "copy /etc/hosts $MOUNT2/ failed"
2151         $GETSTRIPE $MOUNT2/hosts || error "$GETSTRIPE $MOUNT2/hosts failed"
2152
2153         umount -d $MOUNT2
2154         stop fs2ost -f
2155         stop fs2mds -f
2156         cleanup_nocli || error "cleanup_nocli failed with $?"
2157 }
2158 run_test 33a "Mount ost with a large index number"
2159
2160 test_33b() {    # was test_34
2161         setup
2162
2163         do_facet client dd if=/dev/zero of=$MOUNT/24 bs=1024k count=1
2164         # Drop lock cancelation reply during umount
2165         #define OBD_FAIL_LDLM_CANCEL_NET                        0x304
2166         do_facet client $LCTL set_param fail_loc=0x80000304
2167         #lctl set_param debug=-1
2168         umount_client $MOUNT
2169         cleanup || error "cleanup failed with $?"
2170 }
2171 run_test 33b "Drop cancel during umount"
2172
2173 test_34a() {
2174         setup
2175         do_facet client "sh runmultiop_bg_pause $DIR/file O_c"
2176         manual_umount_client
2177         rc=$?
2178         do_facet client killall -USR1 multiop
2179         if [ $rc -eq 0 ]; then
2180                 error "umount not fail!"
2181         fi
2182         sleep 1
2183         cleanup || error "cleanup failed with rc $?"
2184 }
2185 run_test 34a "umount with opened file should be fail"
2186
2187 test_34b() {
2188         setup
2189         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
2190         stop_mds || error "Unable to stop MDS"
2191
2192         manual_umount_client --force || error "mtab after failed umount with $?"
2193
2194         cleanup || error "cleanup failed with $?"
2195 }
2196 run_test 34b "force umount with failed mds should be normal"
2197
2198 test_34c() {
2199         setup
2200         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
2201         stop_ost || error "Unable to stop OST1"
2202
2203         manual_umount_client --force || error "mtab after failed umount with $?"
2204
2205         cleanup || error "cleanup failed with $?"
2206 }
2207 run_test 34c "force umount with failed ost should be normal"
2208
2209 test_35a() { # bug 12459
2210         setup
2211
2212         DBG_SAVE="`$LCTL get_param -n debug`"
2213         $LCTL set_param debug="ha"
2214
2215         log "Set up a fake failnode for the MDS"
2216         FAKENID="127.0.0.2"
2217         local device=$(do_facet $SINGLEMDS "$LCTL get_param -n devices" |
2218                 awk '($3 ~ "mdt" && $4 ~ "MDT") { print $4 }' | head -1)
2219         do_facet mgs "$LCTL conf_param \
2220                       ${device}.failover.node=$(h2$NETTYPE $FAKENID)" ||
2221                 error "Setting ${device}.failover.node=\
2222                        $(h2$NETTYPE $FAKENID) failed."
2223
2224         log "Wait for RECONNECT_INTERVAL seconds (10s)"
2225         sleep 10
2226
2227         MSG="conf-sanity.sh test_35a `date +%F%kh%Mm%Ss`"
2228         $LCTL clear
2229         log "$MSG"
2230         log "Stopping the MDT: $device"
2231         stop_mdt 1 || error "MDT0 stop fail"
2232
2233         df $MOUNT > /dev/null 2>&1 &
2234         DFPID=$!
2235         log "Restarting the MDT: $device"
2236         start_mdt 1 || error "MDT0 start fail"
2237         log "Wait for df ($DFPID) ... "
2238         wait $DFPID
2239         log "done"
2240         $LCTL set_param debug="$DBG_SAVE"
2241
2242         # retrieve from the log the first server that the client tried to
2243         # contact after the connection loss
2244         $LCTL dk $TMP/lustre-log-$TESTNAME.log
2245         NEXTCONN=`awk "/${MSG}/ {start = 1;}
2246                        /import_select_connection.*$device-mdc.* using connection/ {
2247                                 if (start) {
2248                                         if (\\\$NF ~ /$FAKENID/)
2249                                                 print \\\$NF;
2250                                         else
2251                                                 print 0;
2252                                         exit;
2253                                 }
2254                        }" $TMP/lustre-log-$TESTNAME.log`
2255         [ "$NEXTCONN" != "0" ] &&
2256                 error "Tried to connect to ${NEXTCONN} not last active server"
2257         cleanup || error "cleanup failed with $?"
2258         # remove nid settings
2259         writeconf_or_reformat
2260 }
2261 run_test 35a "Reconnect to the last active server first"
2262
2263 test_35b() { # bug 18674
2264         remote_mds || { skip "local MDS" && return 0; }
2265         setup
2266
2267         debugsave
2268         $LCTL set_param debug="ha"
2269         $LCTL clear
2270         MSG="conf-sanity.sh test_35b `date +%F%kh%Mm%Ss`"
2271         log "$MSG"
2272
2273         log "Set up a fake failnode for the MDS"
2274         FAKENID="127.0.0.2"
2275         local device=$(do_facet $SINGLEMDS "$LCTL get_param -n devices" |
2276                 awk '($3 ~ "mdt" && $4 ~ "MDT") { print $4 }' | head -1)
2277         do_facet mgs "$LCTL conf_param \
2278                       ${device}.failover.node=$(h2$NETTYPE $FAKENID)" ||
2279                 error "Set ${device}.failover.node=\
2280                        $(h2$NETTYPE $FAKENID) failed"
2281
2282         local at_max_saved=0
2283         # adaptive timeouts may prevent seeing the issue
2284         if at_is_enabled; then
2285                 at_max_saved=$(at_max_get mds)
2286                 at_max_set 0 mds client
2287         fi
2288
2289         mkdir $MOUNT/$tdir || error "mkdir $MOUNT/$tdir failed"
2290
2291         log "Injecting EBUSY on MDS"
2292         # Setting OBD_FAIL_MDS_RESEND=0x136
2293         do_facet $SINGLEMDS "$LCTL set_param fail_loc=0x80000136" ||
2294                 error "unable to set param fail_loc=0x80000136"
2295
2296         $LCTL set_param mdc.${FSNAME}*.stats=clear
2297
2298         log "Creating a test file and stat it"
2299         touch $MOUNT/$tdir/$tfile || error "touch $MOUNT/$tdir/$tfile failed"
2300         stat $MOUNT/$tdir/$tfile
2301
2302         log "Stop injecting EBUSY on MDS"
2303         do_facet $SINGLEMDS "$LCTL set_param fail_loc=0" ||
2304                 error "unable to set param fail_loc=0"
2305         rm -f $MOUNT/$tdir/$tfile || error "remove $MOUNT/$tdir/$tfile failed"
2306
2307         log "done"
2308         # restore adaptive timeout
2309         [ $at_max_saved -ne 0 ] && at_max_set $at_max_saved mds client
2310
2311         $LCTL dk $TMP/lustre-log-$TESTNAME.log
2312
2313         CONNCNT=$($LCTL get_param mdc.${FSNAME}*.stats |
2314                   awk '/mds_connect/{print $2}')
2315
2316         # retrieve from the log if the client has ever tried to
2317         # contact the fake server after the loss of connection
2318         FAILCONN=`awk "BEGIN {ret = 0;}
2319                        /import_select_connection.*${FSNAME}-MDT0000-mdc.* using connection/ {
2320                                 ret = 1;
2321                                 if (\\\$NF ~ /$FAKENID/) {
2322                                         ret = 2;
2323                                         exit;
2324                                 }
2325                        }
2326                        END {print ret}" $TMP/lustre-log-$TESTNAME.log`
2327
2328         [ "$FAILCONN" == "0" ] &&
2329                 error "The client reconnection has not been triggered"
2330         [ "$FAILCONN" == "2" ] &&
2331                 error "Primary server busy, client reconnect to failover failed"
2332
2333         # LU-290
2334         # When OBD_FAIL_MDS_RESEND is hit, we sleep for 2 * obd_timeout
2335         # Reconnects are supposed to be rate limited to one every 5s
2336         [ $CONNCNT -gt $((2 * $TIMEOUT / 5 + 1)) ] &&
2337                 error "Too many reconnects $CONNCNT"
2338
2339         cleanup || error "cleanup failed with $?"
2340         # remove nid settings
2341         writeconf_or_reformat
2342 }
2343 run_test 35b "Continue reconnection retries, if the active server is busy"
2344
2345 test_36() { # 12743
2346         [ $OSTCOUNT -lt 2 ] && skip_env "skipping test for single OST" && return
2347
2348         [ "$ost_HOST" = "`hostname`" -o "$ost1_HOST" = "`hostname`" ] ||
2349                 { skip "remote OST" && return 0; }
2350
2351         local rc=0
2352         local FSNAME2=test1234
2353         local MDSDEV=$(mdsdevname ${SINGLEMDS//mds/})
2354
2355         [ -n "$ost1_HOST" ] && fs2ost_HOST=$ost1_HOST && fs3ost_HOST=$ost1_HOST
2356
2357         if [ -z "$fs2ost_DEV" -o -z "$fs2mds_DEV" -o -z "$fs3ost_DEV" ]; then
2358                 is_blkdev $SINGLEMDS $MDSDEV &&
2359                 skip_env "mixed loopback and real device not working" && return
2360         fi
2361
2362         local fs2mdsdev=$(mdsdevname 1_2)
2363         local fs2ostdev=$(ostdevname 1_2)
2364         local fs3ostdev=$(ostdevname 2_2)
2365         local fs2mdsvdev=$(mdsvdevname 1_2)
2366         local fs2ostvdev=$(ostvdevname 1_2)
2367         local fs3ostvdev=$(ostvdevname 2_2)
2368
2369         add fs2mds $(mkfs_opts mds1 ${fs2mdsdev}) --mgs --fsname=${FSNAME2} \
2370                 --reformat $fs2mdsdev $fs2mdsvdev || exit 10
2371         # XXX after we support non 4K disk blocksize in ldiskfs, specify a
2372         #     different one than the default value here.
2373         add fs2ost $(mkfs_opts ost1 ${fs2ostdev}) --mgsnode=$MGSNID \
2374                 --fsname=${FSNAME2} --reformat $fs2ostdev $fs2ostvdev || exit 10
2375         add fs3ost $(mkfs_opts ost2 ${fs3ostdev}) --mgsnode=$MGSNID \
2376                 --fsname=${FSNAME2} --reformat $fs3ostdev $fs3ostvdev || exit 10
2377
2378         start fs2mds $fs2mdsdev $MDS_MOUNT_OPTS
2379         start fs2ost $fs2ostdev $OST_MOUNT_OPTS
2380         start fs3ost $fs3ostdev $OST_MOUNT_OPTS
2381         mkdir -p $MOUNT2 || error "mkdir $MOUNT2 failed"
2382         $MOUNT_CMD $MGSNID:/${FSNAME2} $MOUNT2 || error "$MOUNT_CMD failed"
2383
2384         sleep 5 # until 11778 fixed
2385
2386         dd if=/dev/zero of=$MOUNT2/$tfile bs=1M count=7 || error "dd failed"
2387
2388         BKTOTAL=$($LCTL get_param -n obdfilter.*.kbytestotal |
2389                   awk 'BEGIN{total=0}; {total+=$1}; END{print total}')
2390         BKFREE=$($LCTL get_param -n obdfilter.*.kbytesfree |
2391                  awk 'BEGIN{free=0}; {free+=$1}; END{print free}')
2392         BKAVAIL=$($LCTL get_param -n obdfilter.*.kbytesavail |
2393                   awk 'BEGIN{avail=0}; {avail+=$1}; END{print avail}')
2394         STRING=$(df -P $MOUNT2 | tail -n 1 | awk '{print $2","$3","$4}')
2395         DFTOTAL=$(echo $STRING | cut -d, -f1)
2396         DFUSED=$(echo $STRING  | cut -d, -f2)
2397         DFAVAIL=$(echo $STRING | cut -d, -f3)
2398         DFFREE=$(($DFTOTAL - $DFUSED))
2399
2400         ALLOWANCE=$((64 * $OSTCOUNT))
2401
2402         if [ $DFTOTAL -lt $(($BKTOTAL - $ALLOWANCE)) ] ||
2403            [ $DFTOTAL -gt $(($BKTOTAL + $ALLOWANCE)) ] ; then
2404                 echo "**** FAIL: df total($DFTOTAL) mismatch OST total($BKTOTAL)"
2405                 rc=1
2406         fi
2407         if [ $DFFREE -lt $(($BKFREE - $ALLOWANCE)) ] ||
2408            [ $DFFREE -gt $(($BKFREE + $ALLOWANCE)) ] ; then
2409                 echo "**** FAIL: df free($DFFREE) mismatch OST free($BKFREE)"
2410                 rc=2
2411         fi
2412         if [ $DFAVAIL -lt $(($BKAVAIL - $ALLOWANCE)) ] ||
2413            [ $DFAVAIL -gt $(($BKAVAIL + $ALLOWANCE)) ] ; then
2414                 echo "**** FAIL: df avail($DFAVAIL) mismatch OST avail($BKAVAIL)"
2415                 rc=3
2416        fi
2417
2418         umount -d $MOUNT2
2419         stop fs3ost -f || error "unable to stop OST3"
2420         stop fs2ost -f || error "unable to stop OST2"
2421         stop fs2mds -f || error "unable to stop second MDS"
2422         unload_modules_conf || error "unable unload modules"
2423         return $rc
2424 }
2425 run_test 36 "df report consistency on OSTs with different block size"
2426
2427 test_37() {
2428         local mntpt=$(facet_mntpt $SINGLEMDS)
2429         local mdsdev=$(mdsdevname ${SINGLEMDS//mds/})
2430         local mdsdev_sym="$TMP/sym_mdt.img"
2431         local opts=$MDS_MOUNT_OPTS
2432         local rc=0
2433
2434         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
2435                 skip "Currently only applicable to ldiskfs-based MDTs"
2436                 return
2437         fi
2438
2439         echo "MDS :     $mdsdev"
2440         echo "SYMLINK : $mdsdev_sym"
2441         do_facet $SINGLEMDS rm -f $mdsdev_sym
2442
2443         do_facet $SINGLEMDS ln -s $mdsdev $mdsdev_sym
2444
2445         echo "mount symlink device - $mdsdev_sym"
2446
2447         if ! do_facet $SINGLEMDS test -b $mdsdev; then
2448                 opts=$(csa_add "$opts" -o loop)
2449         fi
2450         mount_op=$(do_facet $SINGLEMDS mount -v -t lustre $opts \
2451                 $mdsdev_sym $mntpt 2>&1)
2452         rc=${PIPESTATUS[0]}
2453
2454         echo mount_op=$mount_op
2455
2456         do_facet $SINGLEMDS "umount -d $mntpt && rm -f $mdsdev_sym"
2457
2458         if $(echo $mount_op | grep -q "unable to set tunable"); then
2459                 error "set tunables failed for symlink device"
2460         fi
2461
2462         [ $rc -eq 0 ] || error "mount symlink $mdsdev_sym failed! rc=$rc"
2463 }
2464 run_test 37 "verify set tunables works for symlink device"
2465
2466 test_38() { # bug 14222
2467         local fstype=$(facet_fstype $SINGLEMDS)
2468         local mntpt=$(facet_mntpt $SINGLEMDS)
2469
2470         setup
2471         # like runtests
2472         local COUNT=10
2473         local SRC="/etc /bin"
2474         local FILES=$(find $SRC -type f -mtime +1 | head -n $COUNT)
2475         log "copying $(echo $FILES | wc -w) files to $DIR/$tdir"
2476         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
2477         tar cf - $FILES | tar xf - -C $DIR/$tdir ||
2478                 error "copying $SRC to $DIR/$tdir"
2479         sync
2480         umount_client $MOUNT || error "umount_client $MOUNT failed"
2481         do_facet $SINGLEMDS "$LCTL get_param osp.*.prealloc_next_id"
2482         stop_mds || error "Unable to stop MDS"
2483         log "delete lov_objid file on MDS"
2484
2485         mount_fstype $SINGLEMDS || error "mount MDS failed (1)"
2486
2487         do_facet $SINGLEMDS "od -Ax -td8 $mntpt/lov_objid; rm $mntpt/lov_objid"
2488
2489         unmount_fstype $SINGLEMDS || error "umount failed (1)"
2490
2491         # check create in mds_lov_connect
2492         start_mds || error "unable to start MDS"
2493         mount_client $MOUNT || error "mount_client $MOUNT failed"
2494         for f in $FILES; do
2495                 [ $V ] && log "verifying $DIR/$tdir/$f"
2496                 diff -q $f $DIR/$tdir/$f || ERROR=y
2497         done
2498         do_facet $SINGLEMDS "$LCTL get_param osp.*.prealloc_next_id"
2499         if [ "$ERROR" = "y" ]; then
2500                 # check it's updates in sync
2501                 umount_client $MOUNT
2502                 stop_mds
2503                 mount_fstype $SIGNLEMDS
2504                 do_facet $SINGLEMDS "od -Ax -td8 $mntpt/lov_objid"
2505                 unmount_fstype $SINGLEMDS
2506                 error "old and new files are different after connect" || true
2507         fi
2508         touch $DIR/$tdir/f2 || error "f2 file create failed"
2509
2510         # check it's updates in sync
2511         umount_client $MOUNT || error "second umount_client $MOUNT failed"
2512         stop_mds
2513
2514         mount_fstype $SINGLEMDS || error "mount MDS failed (3)"
2515
2516         do_facet $SINGLEMDS "od -Ax -td8 $mntpt/lov_objid"
2517         do_facet $SINGLEMDS dd if=/dev/zero of=$mntpt/lov_objid.clear count=8
2518
2519         unmount_fstype $SINGLEMDS || error "umount failed (3)"
2520
2521         start_mds || error "unable to start MDS"
2522         mount_client $MOUNT || error "mount_client $MOUNT failed"
2523         for f in $FILES; do
2524                 [ $V ] && log "verifying $DIR/$tdir/$f"
2525                 diff -q $f $DIR/$tdir/$f || ERROR=y
2526         done
2527         touch $DIR/$tdir/f3 || error "f3 file create failed"
2528         do_facet $SINGLEMDS "$LCTL get_param osp.*.prealloc_next_id"
2529         umount_client $MOUNT || error "third umount_client $MOUNT failed"
2530         stop_mds
2531         mount_fstype $SINGLEMDS || error "mount MDS failed (4)"
2532         do_facet $SINGLEMDS "od -Ax -td8 $mntpt/lov_objid"
2533         unmount_fstype $SINGLEMDS || error "umount failed (4)"
2534
2535         [ "$ERROR" = "y" ] &&
2536                 error "old and new files are different after sync" || true
2537
2538         log "files compared the same"
2539         cleanup || error "cleanup failed with $?"
2540 }
2541 run_test 38 "MDS recreates missing lov_objid file from OST data"
2542
2543 test_39() {
2544         PTLDEBUG=+malloc
2545         setup
2546         cleanup || error "cleanup failed with $?"
2547         perl $SRCDIR/leak_finder.pl $TMP/debug 2>&1 | egrep '*** Leak:' &&
2548                 error "memory leak detected" || true
2549 }
2550 run_test 39 "leak_finder recognizes both LUSTRE and LNET malloc messages"
2551
2552 test_40() { # bug 15759
2553         start_ost || error "Unable to start OST1"
2554         #define OBD_FAIL_TGT_TOOMANY_THREADS     0x706
2555         do_facet $SINGLEMDS "$LCTL set_param fail_loc=0x80000706"
2556         start_mds
2557         cleanup || error "cleanup failed with rc $?"
2558 }
2559 run_test 40 "race during service thread startup"
2560
2561 test_41a() { #bug 14134
2562         if [ $(facet_fstype $SINGLEMDS) == ldiskfs ] &&
2563            ! do_facet $SINGLEMDS test -b $(mdsdevname 1); then
2564                 skip "Loop devices does not work with nosvc option"
2565                 return
2566         fi
2567
2568         local MDSDEV=$(mdsdevname ${SINGLEMDS//mds/})
2569
2570         start $SINGLEMDS $MDSDEV $MDS_MOUNT_OPTS -o nosvc -n
2571         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS
2572         start $SINGLEMDS $MDSDEV $MDS_MOUNT_OPTS -o nomgs,force
2573         mount_client $MOUNT || error "mount_client $MOUNT failed"
2574         sleep 5
2575
2576         echo "blah blah" > $MOUNT/$tfile
2577         cat $MOUNT/$tfile
2578
2579         umount_client $MOUNT || error "umount_client $MOUNT failed"
2580         stop ost1 -f || error "unable to stop OST1"
2581         stop_mds || error "Unable to stop MDS"
2582         stop_mds || error "Unable to stop MDS on second try"
2583         unload_modules_conf || error "unload_modules_conf failed"
2584 }
2585 run_test 41a "mount mds with --nosvc and --nomgs"
2586
2587 test_41b() {
2588         if [ $(facet_fstype $SINGLEMDS) == ldiskfs ] &&
2589            ! do_facet $SINGLEMDS test -b $(mdsdevname 1); then
2590                 skip "Loop devices does not work with nosvc option"
2591                 return
2592         fi
2593
2594         ! combined_mgs_mds && skip "needs combined mgs device" && return 0
2595
2596         stopall
2597         reformat
2598         local MDSDEV=$(mdsdevname ${SINGLEMDS//mds/})
2599
2600         start $SINGLEMDS $MDSDEV $MDS_MOUNT_OPTS -o nosvc -n
2601         start_ost || error "Unable to start OST1"
2602         start $SINGLEMDS $MDSDEV $MDS_MOUNT_OPTS -o nomgs,force
2603         mount_client $MOUNT || error "mount_client $MOUNT failed"
2604         sleep 5
2605
2606         echo "blah blah" > $MOUNT/$tfile
2607         cat $MOUNT/$tfile || error "cat $MOUNT/$tfile failed"
2608
2609         umount_client $MOUNT || error "umount_client $MOUNT failed"
2610         stop_ost || error "Unable to stop OST1"
2611         stop_mds || error "Unable to stop MDS"
2612         stop_mds || error "Unable to stop MDS on second try"
2613 }
2614 run_test 41b "mount mds with --nosvc and --nomgs on first mount"
2615
2616 test_41c() {
2617         local server_version=$(lustre_version_code $SINGLEMDS)
2618
2619         [[ $server_version -ge $(version_code 2.6.52) ]] ||
2620         [[ $server_version -ge $(version_code 2.5.26) &&
2621            $server_version -lt $(version_code 2.5.50) ]] ||
2622         [[ $server_version -ge $(version_code 2.5.4) &&
2623            $server_version -lt $(version_code 2.5.11) ]] ||
2624                 { skip "Need MDS version 2.5.4+ or 2.5.26+ or 2.6.52+"; return; }
2625
2626         cleanup
2627         # MDT concurent start
2628         #define OBD_FAIL_TGT_DELAY_CONNECT 0x703
2629         do_facet $SINGLEMDS "$LCTL set_param fail_loc=0x703"
2630         start mds1 $(mdsdevname 1) $MDS_MOUNT_OPTS &
2631         local pid=$!
2632         sleep 2
2633         do_facet $SINGLEMDS "$LCTL set_param fail_loc=0x0"
2634         start mds1 $(mdsdevname 1) $MDS_MOUNT_OPTS &
2635         local pid2=$!
2636         wait $pid2
2637         local rc2=$?
2638         wait $pid
2639         local rc=$?
2640         if [ $rc == 0 ] && [ $rc2 == 114 ]; then
2641                 echo "1st MDT start succeed"
2642                 echo "2nd MDT start failed with EALREADY"
2643         elif [ $rc2 == 0 ] && [ $rc == 114 ]; then
2644                 echo "1st MDT start failed with EALREADY"
2645                 echo "2nd MDT start succeed"
2646         else
2647                 stop mds1 -f
2648                 error "unexpected concurent MDT mounts result, rc=$rc rc2=$rc2"
2649         fi
2650
2651         # OST concurent start
2652         #define OBD_FAIL_TGT_DELAY_CONNECT 0x703
2653         do_facet ost1 "$LCTL set_param fail_loc=0x703"
2654         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS &
2655         pid=$!
2656         sleep 2
2657         do_facet ost1 "$LCTL set_param fail_loc=0x0"
2658         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS &
2659         pid2=$!
2660         wait $pid2
2661         rc2=$?
2662         wait $pid
2663         rc=$?
2664         if [ $rc == 0 ] && [ $rc2 == 114 ]; then
2665                 echo "1st OST start succeed"
2666                 echo "2nd OST start failed with EALREADY"
2667         elif [ $rc2 == 0 ] && [ $rc == 114 ]; then
2668                 echo "1st OST start failed with EALREADY"
2669                 echo "2nd OST start succeed"
2670         else
2671                 stop mds1 -f
2672                 stop ost1 -f
2673                 error "unexpected concurent OST mounts result, rc=$rc rc2=$rc2"
2674         fi
2675         # cleanup
2676         stop mds1 -f
2677         stop ost1 -f
2678
2679         # verify everything ok
2680         start_mds
2681         if [ $? != 0 ]
2682         then
2683                 stop mds1 -f
2684                 error "MDT(s) start failed"
2685         fi
2686
2687         start_ost
2688         if [ $? != 0 ]
2689         then
2690                 stop mds1 -f
2691                 stop ost1 -f
2692                 error "OST(s) start failed"
2693         fi
2694
2695         mount_client $MOUNT
2696         if [ $? != 0 ]
2697         then
2698                 stop mds1 -f
2699                 stop ost1 -f
2700                 error "client start failed"
2701         fi
2702         check_mount
2703         if [ $? != 0 ]
2704         then
2705                 stop mds1 -f
2706                 stop ost1 -f
2707                 error "client mount failed"
2708         fi
2709         cleanup
2710 }
2711 run_test 41c "concurent mounts of MDT/OST should all fail but one"
2712
2713 test_42() { #bug 14693
2714         setup
2715         check_mount || error "client was not mounted"
2716
2717         do_facet mgs $LCTL conf_param $FSNAME.llite.some_wrong_param=10
2718         umount_client $MOUNT ||
2719                 error "unmounting client failed with invalid llite param"
2720         mount_client $MOUNT ||
2721                 error "mounting client failed with invalid llite param"
2722
2723         do_facet mgs $LCTL conf_param $FSNAME.sys.some_wrong_param=20
2724         cleanup || error "stopping $FSNAME failed with invalid sys param"
2725         load_modules
2726         setup
2727         check_mount || error "client was not mounted with invalid sys param"
2728         cleanup || error "stopping $FSNAME failed with invalid sys param"
2729 }
2730 run_test 42 "allow client/server mount/unmount with invalid config param"
2731
2732 test_43() {
2733         [[ $(lustre_version_code mgs) -ge $(version_code 2.5.58) ]] ||
2734                 { skip "Need MDS version at least 2.5.58" && return 0; }
2735         [ $UID -ne 0 -o $RUNAS_ID -eq 0 ] && skip_env "run as root"
2736
2737         ID1=${ID1:-501}
2738         USER1=$(cat /etc/passwd | grep :$ID1:$ID1: | cut -d: -f1)
2739         [ -z "$USER1" ] && skip_env "missing user with uid=$ID1 gid=$ID1" &&
2740                 return
2741
2742         setup
2743         chmod ugo+x $DIR || error "chmod 0 failed"
2744         set_conf_param_and_check mds                                    \
2745                 "$LCTL get_param -n mdt.$FSNAME-MDT0000.root_squash"    \
2746                 "$FSNAME.mdt.root_squash"                               \
2747                 "0:0"
2748         wait_update $HOSTNAME                                           \
2749                 "$LCTL get_param -n llite.${FSNAME}*.root_squash"       \
2750                 "0:0" ||
2751                 error "check llite root_squash failed!"
2752         set_conf_param_and_check mds                                    \
2753                 "$LCTL get_param -n mdt.$FSNAME-MDT0000.nosquash_nids"  \
2754                 "$FSNAME.mdt.nosquash_nids"                             \
2755                 "NONE"
2756         wait_update $HOSTNAME                                           \
2757                 "$LCTL get_param -n llite.${FSNAME}*.nosquash_nids"     \
2758                 "NONE" ||
2759                 error "check llite nosquash_nids failed!"
2760
2761     #
2762     # create set of test files
2763     #
2764     echo "111" > $DIR/$tfile-userfile || error "write 1 failed"
2765     chmod go-rw $DIR/$tfile-userfile  || error "chmod 1 failed"
2766     chown $RUNAS_ID.$RUNAS_ID $DIR/$tfile-userfile || error "chown failed"
2767
2768     echo "222" > $DIR/$tfile-rootfile || error "write 2 failed"
2769     chmod go-rw $DIR/$tfile-rootfile  || error "chmod 2 faield"
2770
2771         mkdir $DIR/$tdir-rootdir || error "mkdir failed"
2772         chmod go-rwx $DIR/$tdir-rootdir || error "chmod 3 failed"
2773         touch $DIR/$tdir-rootdir/tfile-1 || error "touch failed"
2774
2775         echo "777" > $DIR/$tfile-user1file || error "write 7 failed"
2776         chmod go-rw $DIR/$tfile-user1file || error "chmod 7 failed"
2777         chown $ID1.$ID1 $DIR/$tfile-user1file || error "chown failed"
2778
2779         #
2780         # check root_squash:
2781         #   set root squash UID:GID to RUNAS_ID
2782         #   root should be able to access only files owned by RUNAS_ID
2783         #
2784         set_conf_param_and_check mds                                    \
2785                 "$LCTL get_param -n mdt.$FSNAME-MDT0000.root_squash"    \
2786                 "$FSNAME.mdt.root_squash"                               \
2787                 "$RUNAS_ID:$RUNAS_ID"
2788         wait_update $HOSTNAME                                           \
2789                 "$LCTL get_param -n llite.${FSNAME}*.root_squash"       \
2790                 "$RUNAS_ID:$RUNAS_ID" ||
2791                 error "check llite root_squash failed!"
2792
2793         ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tfile-userfile)
2794         dd if=$DIR/$tfile-userfile 1>/dev/null 2>/dev/null ||
2795                 error "$ST: root read permission is denied"
2796         echo "$ST: root read permission is granted - ok"
2797
2798         echo "444" |
2799         dd conv=notrunc of=$DIR/$tfile-userfile 1>/dev/null 2>/dev/null ||
2800                 error "$ST: root write permission is denied"
2801         echo "$ST: root write permission is granted - ok"
2802
2803         ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tfile-rootfile)
2804         dd if=$DIR/$tfile-rootfile 1>/dev/null 2>/dev/null &&
2805                 error "$ST: root read permission is granted"
2806         echo "$ST: root read permission is denied - ok"
2807
2808         echo "555" |
2809         dd conv=notrunc of=$DIR/$tfile-rootfile 1>/dev/null 2>/dev/null &&
2810                 error "$ST: root write permission is granted"
2811         echo "$ST: root write permission is denied - ok"
2812
2813         ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tdir-rootdir)
2814                 rm $DIR/$tdir-rootdir/tfile-1 1>/dev/null 2>/dev/null &&
2815                         error "$ST: root unlink permission is granted"
2816         echo "$ST: root unlink permission is denied - ok"
2817
2818         touch $DIR/tdir-rootdir/tfile-2 1>/dev/null 2>/dev/null &&
2819                 error "$ST: root create permission is granted"
2820         echo "$ST: root create permission is denied - ok"
2821
2822         # LU-1778
2823         # check root_squash is enforced independently
2824         # of client cache content
2825         #
2826         # access file by USER1, keep access open
2827         # root should be denied access to user file
2828
2829         runas -u $ID1 tail -f $DIR/$tfile-user1file 1>/dev/null 2>&1 &
2830         pid=$!
2831         sleep 1
2832
2833         ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tfile-user1file)
2834         dd if=$DIR/$tfile-user1file 1>/dev/null 2>&1 &&
2835             { kill $pid; error "$ST: root read permission is granted"; }
2836         echo "$ST: root read permission is denied - ok"
2837
2838         echo "777" |
2839         dd conv=notrunc of=$DIR/$tfile-user1file 1>/dev/null 2>&1 &&
2840             { kill $pid; error "$ST: root write permission is granted"; }
2841         echo "$ST: root write permission is denied - ok"
2842
2843         kill $pid
2844         wait $pid
2845
2846         #
2847         # check nosquash_nids:
2848         #   put client's NID into nosquash_nids list,
2849         #   root should be able to access root file after that
2850         #
2851         local NIDLIST=$($LCTL list_nids all | tr '\n' ' ')
2852         NIDLIST="2@elan $NIDLIST 192.168.0.[2,10]@tcp"
2853         NIDLIST=$(echo $NIDLIST | tr -s ' ' ' ')
2854         set_conf_param_and_check mds                                    \
2855                 "$LCTL get_param -n mdt.$FSNAME-MDT0000.nosquash_nids"  \
2856                 "$FSNAME-MDTall.mdt.nosquash_nids"                      \
2857                 "$NIDLIST"
2858         wait_update $HOSTNAME                                           \
2859                 "$LCTL get_param -n llite.${FSNAME}*.nosquash_nids"     \
2860                 "$NIDLIST" ||
2861                 error "check llite nosquash_nids failed!"
2862
2863         ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tfile-rootfile)
2864         dd if=$DIR/$tfile-rootfile 1>/dev/null 2>/dev/null ||
2865                 error "$ST: root read permission is denied"
2866         echo "$ST: root read permission is granted - ok"
2867
2868         echo "666" |
2869         dd conv=notrunc of=$DIR/$tfile-rootfile 1>/dev/null 2>/dev/null ||
2870                 error "$ST: root write permission is denied"
2871         echo "$ST: root write permission is granted - ok"
2872
2873         ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tdir-rootdir)
2874         rm $DIR/$tdir-rootdir/tfile-1 ||
2875                 error "$ST: root unlink permission is denied"
2876         echo "$ST: root unlink permission is granted - ok"
2877         touch $DIR/$tdir-rootdir/tfile-2 ||
2878                 error "$ST: root create permission is denied"
2879         echo "$ST: root create permission is granted - ok"
2880 }
2881 run_test 43 "check root_squash and nosquash_nids"
2882
2883 umount_client $MOUNT
2884 cleanup_nocli
2885
2886 test_44() { # 16317
2887         setup
2888         check_mount || error "check_mount"
2889         UUID=$($LCTL get_param llite.${FSNAME}*.uuid | cut -d= -f2)
2890         STATS_FOUND=no
2891         UUIDS=$(do_facet $SINGLEMDS "$LCTL get_param mdt.${FSNAME}*.exports.*.uuid")
2892         for VAL in $UUIDS; do
2893                 NID=$(echo $VAL | cut -d= -f1)
2894                 CLUUID=$(echo $VAL | cut -d= -f2)
2895                 [ "$UUID" = "$CLUUID" ] && STATS_FOUND=yes && break
2896         done
2897         [ "$STATS_FOUND" = "no" ] && error "stats not found for client"
2898         cleanup || error "cleanup failed with $?"
2899 }
2900 run_test 44 "mounted client proc entry exists"
2901
2902 test_45() { #17310
2903         setup
2904         check_mount || error "check_mount"
2905         stop_mds || error "Unable to stop MDS"
2906         df -h $MOUNT &
2907         log "sleep 60 sec"
2908         sleep 60
2909         #define OBD_FAIL_PTLRPC_LONG_UNLINK   0x50f
2910         do_facet client "$LCTL set_param fail_loc=0x50f"
2911         log "sleep 10 sec"
2912         sleep 10
2913         manual_umount_client --force || error "manual_umount_client failed"
2914         do_facet client "$LCTL set_param fail_loc=0x0"
2915         start_mds || error "unable to start MDS"
2916         mount_client $MOUNT || error "mount_client $MOUNT failed"
2917         cleanup || error "cleanup failed with $?"
2918 }
2919 run_test 45 "long unlink handling in ptlrpcd"
2920
2921 cleanup_46a() {
2922         trap 0
2923         local rc=0
2924         local count=$1
2925
2926         umount_client $MOUNT2 || rc=$?
2927         umount_client $MOUNT || rc=$?
2928         while [ $count -gt 0 ]; do
2929                 stop ost${count} -f || rc=$?
2930                 let count=count-1
2931         done
2932         stop_mds || rc=$?
2933         cleanup_nocli || rc=$?
2934         #writeconf to remove all ost2 traces for subsequent tests
2935         writeconf_or_reformat
2936         return $rc
2937 }
2938
2939 test_46a() {
2940         echo "Testing with $OSTCOUNT OSTs"
2941         reformat_and_config
2942         start_mds || error "unable to start MDS"
2943         #first client should see only one ost
2944         start_ost || error "Unable to start OST1"
2945         wait_osc_import_state mds ost FULL
2946         #start_client
2947         mount_client $MOUNT || error "mount_client $MOUNT failed"
2948         trap "cleanup_46a $OSTCOUNT" EXIT ERR
2949
2950         local i
2951         for (( i=2; i<=$OSTCOUNT; i++ )); do
2952                 start ost$i $(ostdevname $i) $OST_MOUNT_OPTS ||
2953                         error "start_ost$i $(ostdevname $i) failed"
2954         done
2955
2956         # wait until osts in sync
2957         for (( i=2; i<=$OSTCOUNT; i++ )); do
2958             wait_osc_import_state mds ost$i FULL
2959             wait_osc_import_state client ost$i FULL
2960         done
2961
2962         #second client see all ost's
2963
2964         mount_client $MOUNT2 || error "mount_client failed"
2965         $SETSTRIPE -c -1 $MOUNT2 || error "$SETSTRIPE -c -1 $MOUNT2 failed"
2966         $GETSTRIPE $MOUNT2 || error "$GETSTRIPE $MOUNT2 failed"
2967
2968         echo "ok" > $MOUNT2/widestripe
2969         $GETSTRIPE $MOUNT2/widestripe ||
2970                 error "$GETSTRIPE $MOUNT2/widestripe failed"
2971         # fill acl buffer for avoid expand lsm to them
2972         awk -F : '{if (FNR < 25) { print "u:"$1":rwx" }}' /etc/passwd |
2973                 while read acl; do
2974             setfacl -m $acl $MOUNT2/widestripe
2975         done
2976
2977         # will be deadlock
2978         stat $MOUNT/widestripe || error "stat $MOUNT/widestripe failed"
2979
2980         cleanup_46a $OSTCOUNT || error "cleanup_46a failed"
2981 }
2982 run_test 46a "handle ost additional - wide striped file"
2983
2984 test_47() { #17674
2985         reformat
2986         setup_noconfig
2987         check_mount || error "check_mount failed"
2988         $LCTL set_param ldlm.namespaces.$FSNAME-*-*-*.lru_size=100
2989
2990         local lru_size=[]
2991         local count=0
2992         for ns in $($LCTL get_param ldlm.namespaces.$FSNAME-*-*-*.lru_size); do
2993             if echo $ns | grep "MDT[[:digit:]]*"; then
2994                 continue
2995             fi
2996             lrs=$(echo $ns | sed 's/.*lru_size=//')
2997             lru_size[count]=$lrs
2998             let count=count+1
2999         done
3000
3001         facet_failover ost1
3002         facet_failover $SINGLEMDS
3003         client_up || error "client_up failed"
3004
3005         count=0
3006         for ns in $($LCTL get_param ldlm.namespaces.$FSNAME-*-*-*.lru_size); do
3007             if echo $ns | grep "MDT[[:digit:]]*"; then
3008                 continue
3009             fi
3010             lrs=$(echo $ns | sed 's/.*lru_size=//')
3011             if ! test "$lrs" -eq "${lru_size[count]}"; then
3012                 n=$(echo $ns | sed -e 's/ldlm.namespaces.//' -e 's/.lru_size=.*//')
3013                 error "$n has lost lru_size: $lrs vs. ${lru_size[count]}"
3014             fi
3015             let count=count+1
3016         done
3017
3018         cleanup || error "cleanup failed with $?"
3019 }
3020 run_test 47 "server restart does not make client loss lru_resize settings"
3021
3022 cleanup_48() {
3023         trap 0
3024
3025         # reformat after this test is needed - if test will failed
3026         # we will have unkillable file at FS
3027         reformat_and_config
3028 }
3029
3030 test_48() { # bug 17636
3031         reformat
3032         setup_noconfig
3033         check_mount || error "check_mount failed"
3034
3035         $SETSTRIPE -c -1 $MOUNT || error "$SETSTRIPE -c -1 $MOUNT failed"
3036         $GETSTRIPE $MOUNT || error "$GETSTRIPE $MOUNT failed"
3037
3038         echo "ok" > $MOUNT/widestripe
3039         $GETSTRIPE $MOUNT/widestripe ||
3040                 error "$GETSTRIPE $MOUNT/widestripe failed"
3041
3042         trap cleanup_48 EXIT ERR
3043
3044         # fill acl buffer for avoid expand lsm to them
3045         getent passwd | awk -F : '{ print "u:"$1":rwx" }' |  while read acl; do
3046             setfacl -m $acl $MOUNT/widestripe
3047         done
3048
3049         stat $MOUNT/widestripe || error "stat $MOUNT/widestripe failed"
3050
3051         cleanup_48
3052 }
3053 run_test 48 "too many acls on file"
3054
3055 # check PARAM_SYS_LDLM_TIMEOUT option of MKFS.LUSTRE
3056 test_49a() { # bug 17710
3057         local timeout_orig=$TIMEOUT
3058         local ldlm_timeout_orig=$LDLM_TIMEOUT
3059         local LOCAL_TIMEOUT=20
3060
3061         LDLM_TIMEOUT=$LOCAL_TIMEOUT
3062         TIMEOUT=$LOCAL_TIMEOUT
3063
3064         reformat
3065         setup_noconfig
3066         check_mount || error "client mount failed"
3067
3068         echo "check ldlm_timout..."
3069         local LDLM_MDS="$(do_facet $SINGLEMDS $LCTL get_param -n ldlm_timeout)"
3070         local LDLM_OST1="$(do_facet ost1 $LCTL get_param -n ldlm_timeout)"
3071         local LDLM_CLIENT="$(do_facet client $LCTL get_param -n ldlm_timeout)"
3072
3073         if [ $LDLM_MDS -ne $LDLM_OST1 -o $LDLM_MDS -ne $LDLM_CLIENT ]; then
3074                 error "Different LDLM_TIMEOUT:$LDLM_MDS $LDLM_OST1 $LDLM_CLIENT"
3075         fi
3076
3077         if [ $LDLM_MDS -ne $((LOCAL_TIMEOUT / 3)) ]; then
3078                 error "LDLM_TIMEOUT($LDLM_MDS) is not $((LOCAL_TIMEOUT / 3))"
3079         fi
3080
3081         umount_client $MOUNT || error "umount_client $MOUNT failed"
3082         stop_ost || error "problem stopping OSS"
3083         stop_mds || error "problem stopping MDS"
3084
3085         LDLM_TIMEOUT=$ldlm_timeout_orig
3086         TIMEOUT=$timeout_orig
3087 }
3088 run_test 49a "check PARAM_SYS_LDLM_TIMEOUT option of mkfs.lustre"
3089
3090 test_49b() { # bug 17710
3091         local timeout_orig=$TIMEOUT
3092         local ldlm_timeout_orig=$LDLM_TIMEOUT
3093         local LOCAL_TIMEOUT=20
3094
3095         LDLM_TIMEOUT=$((LOCAL_TIMEOUT - 1))
3096         TIMEOUT=$LOCAL_TIMEOUT
3097
3098         reformat
3099         setup_noconfig
3100         check_mount || error "client mount failed"
3101
3102         local LDLM_MDS="$(do_facet $SINGLEMDS $LCTL get_param -n ldlm_timeout)"
3103         local LDLM_OST1="$(do_facet ost1 $LCTL get_param -n ldlm_timeout)"
3104         local LDLM_CLIENT="$(do_facet client $LCTL get_param -n ldlm_timeout)"
3105
3106         if [ $LDLM_MDS -ne $LDLM_OST1 -o $LDLM_MDS -ne $LDLM_CLIENT ]; then
3107                 error "Different LDLM_TIMEOUT:$LDLM_MDS $LDLM_OST1 $LDLM_CLIENT"
3108         fi
3109
3110         if [ $LDLM_MDS -ne $((LOCAL_TIMEOUT - 1)) ]; then
3111                 error "LDLM_TIMEOUT($LDLM_MDS) is not $((LOCAL_TIMEOUT - 1))"
3112         fi
3113
3114         cleanup || error "cleanup failed"
3115
3116         LDLM_TIMEOUT=$ldlm_timeout_orig
3117         TIMEOUT=$timeout_orig
3118 }
3119 run_test 49b "check PARAM_SYS_LDLM_TIMEOUT option of mkfs.lustre"
3120
3121 lazystatfs() {
3122         # Test both statfs and lfs df and fail if either one fails
3123         multiop_bg_pause $1 f_
3124         RC1=$?
3125         PID=$!
3126         killall -USR1 multiop
3127         [ $RC1 -ne 0 ] && log "lazystatfs multiop failed"
3128         wait $PID || { RC1=$?; log "multiop return error "; }
3129
3130         $LFS df &
3131         PID=$!
3132         sleep 5
3133         kill -s 0 $PID
3134         RC2=$?
3135         if [ $RC2 -eq 0 ]; then
3136             kill -s 9 $PID
3137             log "lazystatfs df failed"
3138         fi
3139
3140         RC=0
3141         [[ $RC1 -ne 0 || $RC2 -eq 0 ]] && RC=1
3142         return $RC
3143 }
3144
3145 test_50a() {
3146         setup
3147         $LCTL set_param llite.$FSNAME-*.lazystatfs=1
3148         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
3149
3150         lazystatfs $MOUNT || error "lazystatfs failed but no down servers"
3151
3152         cleanup || error "cleanup failed with rc $?"
3153 }
3154 run_test 50a "lazystatfs all servers available"
3155
3156 test_50b() {
3157         setup
3158         $LCTL set_param llite.$FSNAME-*.lazystatfs=1
3159         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
3160
3161         # Wait for client to detect down OST
3162         stop_ost || error "Unable to stop OST1"
3163         wait_osc_import_state mds ost DISCONN
3164
3165         lazystatfs $MOUNT || error "lazystatfs should not return EIO"
3166
3167         umount_client $MOUNT || error "Unable to unmount client"
3168         stop_mds || error "Unable to stop MDS"
3169 }
3170 run_test 50b "lazystatfs all servers down"
3171
3172 test_50c() {
3173         start_mds || error "Unable to start MDS"
3174         start_ost || error "Unable to start OST1"
3175         start_ost2 || error "Unable to start OST2"
3176         mount_client $MOUNT || error "Unable to mount client"
3177         $LCTL set_param llite.$FSNAME-*.lazystatfs=1
3178         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
3179
3180         # Wait for client to detect down OST
3181         stop_ost || error "Unable to stop OST1"
3182         wait_osc_import_state mds ost DISCONN
3183         lazystatfs $MOUNT || error "lazystatfs failed with one down server"
3184
3185         umount_client $MOUNT || error "Unable to unmount client"
3186         stop_ost2 || error "Unable to stop OST2"
3187         stop_mds || error "Unable to stop MDS"
3188         #writeconf to remove all ost2 traces for subsequent tests
3189         writeconf_or_reformat
3190 }
3191 run_test 50c "lazystatfs one server down"
3192
3193 test_50d() {
3194         start_mds || error "Unable to start MDS"
3195         start_ost || error "Unable to start OST1"
3196         start_ost2 || error "Unable to start OST2"
3197         mount_client $MOUNT || error "Unable to mount client"
3198         $LCTL set_param llite.$FSNAME-*.lazystatfs=1
3199         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
3200
3201         # Issue the statfs during the window where the client still
3202         # belives the OST to be available but it is in fact down.
3203         # No failure just a statfs which hangs for a timeout interval.
3204         stop_ost || error "Unable to stop OST1"
3205         lazystatfs $MOUNT || error "lazystatfs failed with one down server"
3206
3207         umount_client $MOUNT || error "Unable to unmount client"
3208         stop_ost2 || error "Unable to stop OST2"
3209         stop_mds || error "Unable to stop MDS"
3210         #writeconf to remove all ost2 traces for subsequent tests
3211         writeconf_or_reformat
3212 }
3213 run_test 50d "lazystatfs client/server conn race"
3214
3215 test_50e() {
3216         local RC1
3217         local pid
3218
3219         reformat_and_config
3220         start_mds || error "Unable to start MDS"
3221         #first client should see only one ost
3222         start_ost || error "Unable to start OST1"
3223         wait_osc_import_state mds ost FULL
3224
3225         # Wait for client to detect down OST
3226         stop_ost || error "Unable to stop OST1"
3227         wait_osc_import_state mds ost DISCONN
3228
3229         mount_client $MOUNT || error "Unable to mount client"
3230         $LCTL set_param llite.$FSNAME-*.lazystatfs=0
3231
3232         multiop_bg_pause $MOUNT _f
3233         RC1=$?
3234         pid=$!
3235
3236         if [ $RC1 -ne 0 ]; then
3237                 log "multiop failed $RC1"
3238         else
3239             kill -USR1 $pid
3240             sleep $(( $TIMEOUT+1 ))
3241             kill -0 $pid
3242             [ $? -ne 0 ] && error "process isn't sleep"
3243             start_ost || error "Unable to start OST1"
3244             wait $pid || error "statfs failed"
3245         fi
3246
3247         umount_client $MOUNT || error "Unable to unmount client"
3248         stop_ost || error "Unable to stop OST1"
3249         stop_mds || error "Unable to stop MDS"
3250 }
3251 run_test 50e "normal statfs all servers down"
3252
3253 test_50f() {
3254         local RC1
3255         local pid
3256         CONN_PROC="osc.$FSNAME-OST0001-osc-[M]*.ost_server_uuid"
3257
3258         start_mds || error "Unable to start mds"
3259         #first client should see only one ost
3260         start_ost || error "Unable to start OST1"
3261         wait_osc_import_state mds ost FULL
3262
3263         start_ost2 || error "Unable to start OST2"
3264         wait_osc_import_state mds ost2 FULL
3265
3266         # Wait for client to detect down OST
3267         stop_ost2 || error "Unable to stop OST2"
3268
3269         wait_osc_import_state mds ost2 DISCONN
3270         mount_client $MOUNT || error "Unable to mount client"
3271         $LCTL set_param llite.$FSNAME-*.lazystatfs=0
3272
3273         multiop_bg_pause $MOUNT _f
3274         RC1=$?
3275         pid=$!
3276
3277         if [ $RC1 -ne 0 ]; then
3278                 log "lazystatfs multiop failed $RC1"
3279         else
3280             kill -USR1 $pid
3281             sleep $(( $TIMEOUT+1 ))
3282             kill -0 $pid
3283             [ $? -ne 0 ] && error "process isn't sleep"
3284             start_ost2 || error "Unable to start OST2"
3285             wait $pid || error "statfs failed"
3286             stop_ost2 || error "Unable to stop OST2"
3287         fi
3288
3289         umount_client $MOUNT || error "Unable to unmount client"
3290         stop_ost || error "Unable to stop OST1"
3291         stop_mds || error "Unable to stop MDS"
3292         #writeconf to remove all ost2 traces for subsequent tests
3293         writeconf_or_reformat
3294 }
3295 run_test 50f "normal statfs one server in down"
3296
3297 test_50g() {
3298         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2, skipping" && return
3299         setup
3300         start_ost2 || error "Unable to start OST2"
3301         wait_osc_import_state mds ost2 FULL
3302         wait_osc_import_state client ost2 FULL
3303
3304         local PARAM="${FSNAME}-OST0001.osc.active"
3305
3306         $SETSTRIPE -c -1 $DIR/$tfile || error "$SETSTRIPE failed"
3307         do_facet mgs $LCTL conf_param $PARAM=0 ||
3308                 error "Unable to deactivate OST"
3309
3310         umount_client $MOUNT || error "Unable to unmount client"
3311         mount_client $MOUNT || error "Unable to mount client"
3312         # This df should not cause a panic
3313         df -k $MOUNT
3314
3315         do_facet mgs $LCTL conf_param $PARAM=1 || error "Unable to activate OST"
3316         rm -f $DIR/$tfile || error "unable to remove file $DIR/$tfile"
3317         umount_client $MOUNT || error "Unable to unmount client"
3318         stop_ost2 || error "Unable to stop OST2"
3319         stop_ost || error "Unable to stop OST1"
3320         stop_mds || error "Unable to stop MDS"
3321         #writeconf to remove all ost2 traces for subsequent tests
3322         writeconf_or_reformat
3323 }
3324 run_test 50g "deactivated OST should not cause panic"
3325
3326 # LU-642
3327 test_50h() {
3328         # prepare MDT/OST, make OSC inactive for OST1
3329         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2, skipping" && return
3330
3331         [ $(facet_fstype ost1) == zfs ] && import_zpool ost1
3332         do_facet ost1 "$TUNEFS --param osc.active=0 `ostdevname 1`" ||
3333                 error "tunefs OST1 failed"
3334         start_mds  || error "Unable to start MDT"
3335         start_ost  || error "Unable to start OST1"
3336         start_ost2 || error "Unable to start OST2"
3337         mount_client $MOUNT || error "client start failed"
3338
3339         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
3340
3341         # activatate OSC for OST1
3342         local TEST="$LCTL get_param -n osc.${FSNAME}-OST0000-osc-[!M]*.active"
3343         set_conf_param_and_check client                                 \
3344                 "$TEST" "${FSNAME}-OST0000.osc.active" 1 ||
3345                 error "Unable to activate OST1"
3346
3347         mkdir $DIR/$tdir/2 || error "mkdir $DIR/$tdir/2 failed"
3348         $SETSTRIPE -c -1 -i 0 $DIR/$tdir/2 ||
3349                 error "$SETSTRIPE $DIR/$tdir/2 failed"
3350         sleep 1 && echo "create a file after OST1 is activated"
3351         # create some file
3352         createmany -o $DIR/$tdir/2/$tfile-%d 1
3353
3354         # check OSC import is working
3355         stat $DIR/$tdir/2/* >/dev/null 2>&1 ||
3356                 error "some OSC imports are still not connected"
3357
3358         # cleanup
3359         umount_client $MOUNT || error "Unable to umount client"
3360         stop_ost2 || error "Unable to stop OST2"
3361         cleanup_nocli || error "cleanup_nocli failed with $?"
3362 }
3363 run_test 50h "LU-642: activate deactivated OST"
3364
3365 test_51() {
3366         local LOCAL_TIMEOUT=20
3367
3368         reformat
3369         setup_noconfig
3370         check_mount || error "check_mount failed"
3371
3372         mkdir $MOUNT/$tdir || error "mkdir $MOUNT/$tdir failed"
3373         $SETSTRIPE -c -1 $MOUNT/$tdir ||
3374                 error "$SETSTRIPE -c -1 $MOUNT/$tdir failed"
3375         #define OBD_FAIL_MDS_REINT_DELAY         0x142
3376         do_facet $SINGLEMDS "$LCTL set_param fail_loc=0x142"
3377         touch $MOUNT/$tdir/$tfile &
3378         local pid=$!
3379         sleep 2
3380         start_ost2 || error "Unable to start OST1"
3381         wait $pid
3382         stop_ost2 || error "Unable to stop OST1"
3383         cleanup || error "cleanup failed with $?"
3384         #writeconf to remove all ost2 traces for subsequent tests
3385         writeconf_or_reformat
3386 }
3387 run_test 51 "Verify that mdt_reint handles RMF_MDT_MD correctly when an OST is added"
3388
3389 copy_files_xattrs()
3390 {
3391         local node=$1
3392         local dest=$2
3393         local xattrs=$3
3394         shift 3
3395
3396         do_node $node mkdir -p $dest
3397         [ $? -eq 0 ] || { error "Unable to create directory"; return 1; }
3398
3399         do_node $node  'tar cf - '$@' | tar xf - -C '$dest';
3400                         [ \"\${PIPESTATUS[*]}\" = \"0 0\" ] || exit 1'
3401         [ $? -eq 0 ] || { error "Unable to tar files"; return 2; }
3402
3403         do_node $node 'getfattr -d -m "[a-z]*\\." '$@' > '$xattrs
3404         [ $? -eq 0 ] || { error "Unable to read xattrs"; return 3; }
3405 }
3406
3407 diff_files_xattrs()
3408 {
3409         local node=$1
3410         local backup=$2
3411         local xattrs=$3
3412         shift 3
3413
3414         local backup2=${TMP}/backup2
3415
3416         do_node $node mkdir -p $backup2
3417         [ $? -eq 0 ] || { error "Unable to create directory"; return 1; }
3418
3419         do_node $node  'tar cf - '$@' | tar xf - -C '$backup2';
3420                         [ \"\${PIPESTATUS[*]}\" = \"0 0\" ] || exit 1'
3421         [ $? -eq 0 ] || { error "Unable to tar files to diff"; return 2; }
3422
3423         do_node $node "diff -rq $backup $backup2"
3424         [ $? -eq 0 ] || { error "contents differ"; return 3; }
3425
3426         local xattrs2=${TMP}/xattrs2
3427         do_node $node 'getfattr -d -m "[a-z]*\\." '$@' > '$xattrs2
3428         [ $? -eq 0 ] || { error "Unable to read xattrs to diff"; return 4; }
3429
3430         do_node $node "diff $xattrs $xattrs2"
3431         [ $? -eq 0 ] || { error "xattrs differ"; return 5; }
3432
3433         do_node $node "rm -rf $backup2 $xattrs2"
3434         [ $? -eq 0 ] || { error "Unable to delete temporary files"; return 6; }
3435 }
3436
3437 test_52() {
3438         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
3439                 skip "Only applicable to ldiskfs-based MDTs"
3440                 return
3441         fi
3442
3443         start_mds || error "Unable to start MDS"
3444         start_ost || error "Unable to start OST1"
3445         mount_client $MOUNT || error "Unable to mount client"
3446
3447         local nrfiles=8
3448         local ost1mnt=$(facet_mntpt ost1)
3449         local ost1node=$(facet_active_host ost1)
3450         local ost1tmp=$TMP/conf52
3451         local loop
3452
3453         mkdir $DIR/$tdir || error "Unable to create $DIR/$tdir"
3454         touch $TMP/modified_first || error "Unable to create temporary file"
3455         local mtime=$(stat -c %Y $TMP/modified_first)
3456         do_node $ost1node "mkdir -p $ost1tmp &&
3457                            touch -m -d @$mtime $ost1tmp/modified_first" ||
3458                 error "Unable to create temporary file"
3459         sleep 1
3460
3461         $SETSTRIPE -c -1 -S 1M $DIR/$tdir || error "$SETSTRIPE failed"
3462
3463         for (( i=0; i < nrfiles; i++ )); do
3464                 multiop $DIR/$tdir/$tfile-$i Ow1048576w1048576w524288c ||
3465                         error "multiop failed"
3466                 echo -n .
3467         done
3468         echo
3469
3470         # backup files
3471         echo backup files to $TMP/files
3472         local files=$(find $DIR/$tdir -type f -newer $TMP/modified_first)
3473         copy_files_xattrs $(hostname) $TMP/files $TMP/file_xattrs $files ||
3474                 error "Unable to copy files"
3475
3476         umount_client $MOUNT || error "Unable to umount client"
3477         stop_ost || error "Unable to stop ost1"
3478
3479         echo mount ost1 as ldiskfs
3480         do_node $ost1node mkdir -p $ost1mnt || error "Unable to create $ost1mnt"
3481         if ! do_node $ost1node test -b $ost1_dev; then
3482                 loop="-o loop"
3483         fi
3484         do_node $ost1node mount -t $(facet_fstype ost1) $loop $ost1_dev \
3485                 $ost1mnt ||
3486                 error "Unable to mount ost1 as ldiskfs"
3487
3488         # backup objects
3489         echo backup objects to $ost1tmp/objects
3490         local objects=$(do_node $ost1node 'find '$ost1mnt'/O/[0-9]* -type f'\
3491                 '-size +0 -newer '$ost1tmp'/modified_first -regex ".*\/[0-9]+"')
3492         copy_files_xattrs $ost1node $ost1tmp/objects $ost1tmp/object_xattrs \
3493                         $objects ||
3494                 error "Unable to copy objects"
3495
3496         # move objects to lost+found
3497         do_node $ost1node 'mv '$objects' '${ost1mnt}'/lost+found'
3498         [ $? -eq 0 ] || { error "Unable to move objects"; return 14; }
3499
3500         # recover objects dry-run
3501         echo "ll_recover_lost_found_objs dry_run"
3502         do_node $ost1node "ll_recover_lost_found_objs -n -d $ost1mnt/O" ||
3503                 error "ll_recover_lost_found_objs failed"
3504
3505         # recover objects
3506         echo "ll_recover_lost_found_objs fix run"
3507         do_node $ost1node "ll_recover_lost_found_objs -d $ost1mnt/lost+found" ||
3508                  error "ll_recover_lost_found_objs failed"
3509
3510         # compare restored objects against saved ones
3511         diff_files_xattrs $ost1node $ost1tmp/objects $ost1tmp/object_xattrs $objects
3512         [ $? -eq 0 ] || error "Unable to diff objects"
3513
3514         do_node $ost1node "umount $ost1mnt" ||
3515                 error "Unable to umount ost1 as ldiskfs"
3516
3517         start_ost || error "Unable to start OST1"
3518         mount_client $MOUNT || error "Unable to mount client"
3519
3520         # compare files
3521         diff_files_xattrs $(hostname) $TMP/files $TMP/file_xattrs $files ||
3522                 error "Unable to diff files"
3523
3524         rm -rf $TMP/files $TMP/file_xattrs ||
3525                 error "Unable to delete temporary files"
3526         do_node $ost1node "rm -rf $ost1tmp" ||
3527                 error "Unable to delete temporary files"
3528         cleanup || error "cleanup failed with $?"
3529 }
3530 run_test 52 "check recovering objects from lost+found"
3531
3532 # Checks threads_min/max/started for some service
3533 #
3534 # Arguments: service name (OST or MDT), facet (e.g., ost1, $SINGLEMDS), and a
3535 # parameter pattern prefix like 'ost.*.ost'.
3536 thread_sanity() {
3537         local modname=$1
3538         local facet=$2
3539         local parampat=$3
3540         local opts=$4
3541         local basethr=$5
3542         local tmin
3543         local tmin2
3544         local tmax
3545         local tmax2
3546         local tstarted
3547         local paramp
3548         local msg="Insane $modname thread counts"
3549         local ncpts=$(check_cpt_number $facet)
3550         local nthrs
3551         shift 4
3552
3553         check_mount || return 41
3554
3555         # We need to expand $parampat, but it may match multiple parameters, so
3556         # we'll pick the first one
3557         if ! paramp=$(do_facet $facet "lctl get_param -N ${parampat}.threads_min"|head -1); then
3558                 error "Couldn't expand ${parampat}.threads_min parameter name"
3559                 return 22
3560         fi
3561
3562         # Remove the .threads_min part
3563         paramp=${paramp%.threads_min}
3564
3565         # Check for sanity in defaults
3566         tmin=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_min" ||
3567                echo 0)
3568         tmax=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_max" ||
3569                echo 0)
3570         tstarted=$(do_facet $facet "$LCTL get_param \
3571                                     -n ${paramp}.threads_started" || echo 0)
3572         lassert 23 "$msg (PDSH problems?)" '(($tstarted && $tmin && $tmax))' ||
3573                 return $?
3574         lassert 24 "$msg" '(($tstarted >= $tmin && $tstarted <= $tmax ))' ||
3575                 return $?
3576         nthrs=$(expr $tmax - $tmin)
3577         if [ $nthrs -lt $ncpts ]; then
3578                 nthrs=0
3579         else
3580                 nthrs=$ncpts
3581         fi
3582
3583         [ $tmin -eq $tmax -a $tmin -eq $tstarted ] &&
3584                 skip_env "module parameter forced $facet thread count" &&
3585                 tmin=3 && tmax=$((3 * tmax))
3586
3587         # Check that we can change min/max
3588         do_facet $facet "$LCTL set_param \
3589                          ${paramp}.threads_min=$((tmin + nthrs))"
3590         do_facet $facet "$LCTL set_param \
3591                          ${paramp}.threads_max=$((tmax - nthrs))"
3592         tmin2=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_min" ||
3593                 echo 0)
3594         tmax2=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_max" ||
3595                 echo 0)
3596         lassert 25 "$msg" '(($tmin2 == ($tmin + $nthrs) &&
3597                             $tmax2 == ($tmax - $nthrs)))' || return $?
3598
3599         # Check that we can set min/max to the same value
3600         tmin=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_min" ||
3601                echo 0)
3602         do_facet $facet "$LCTL set_param ${paramp}.threads_max=$tmin"
3603         tmin2=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_min" ||
3604                 echo 0)
3605         tmax2=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_max" ||
3606                 echo 0)
3607         lassert 26 "$msg" '(($tmin2 == $tmin && $tmax2 == $tmin))' || return $?
3608
3609         # Check that we can't set max < min
3610         do_facet $facet "$LCTL set_param ${paramp}.threads_max=$((tmin - 1))"
3611         tmin2=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_min" ||
3612                 echo 0)
3613         tmax2=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_max" ||
3614                 echo 0)
3615         lassert 27 "$msg" '(($tmin2 <= $tmax2))' || return $?
3616
3617         # We need to ensure that we get the module options desired; to do this
3618         # we set LOAD_MODULES_REMOTE=true and we call setmodopts below.
3619         LOAD_MODULES_REMOTE=true
3620         cleanup
3621         local oldvalue
3622         local newvalue="${opts}=$(expr $basethr \* $ncpts)"
3623         setmodopts -a $modname "$newvalue" oldvalue
3624
3625         load_modules
3626         setup
3627         check_mount || return 41
3628
3629         # Restore previous setting of MODOPTS_*
3630         setmodopts $modname "$oldvalue"
3631
3632         # Check that $opts took
3633         tmin=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_min")
3634         tmax=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_max")
3635         tstarted=$(do_facet $facet \
3636                    "$LCTL get_param -n ${paramp}.threads_started")
3637         lassert 28 "$msg" '(($tstarted >= $tmin && $tstarted <= $tmax ))' ||
3638                 return $?
3639         cleanup
3640
3641         load_modules
3642         setup
3643 }
3644
3645 test_53a() {
3646         setup
3647         thread_sanity OST ost1 'ost.*.ost' 'oss_num_threads' '16'
3648         cleanup || error "cleanup failed with rc $?"
3649 }
3650 run_test 53a "check OSS thread count params"
3651
3652 test_53b() {
3653         setup
3654         local mds=$(do_facet $SINGLEMDS "$LCTL get_param \
3655                                          -N mds.*.*.threads_max 2>/dev/null")
3656         if [ -z "$mds" ]; then
3657                 #running this on an old MDT
3658                 thread_sanity MDT $SINGLEMDS 'mdt.*.*.' 'mdt_num_threads' 16
3659         else
3660                 thread_sanity MDT $SINGLEMDS 'mds.*.*.' 'mds_num_threads' 16
3661         fi
3662         cleanup || error "cleanup failed with $?"
3663 }
3664 run_test 53b "check MDS thread count params"
3665
3666 test_54a() {
3667         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
3668                 skip "Only applicable to ldiskfs-based MDTs"
3669                 return
3670         fi
3671
3672         do_rpc_nodes $(facet_host ost1) run_llverdev $(ostdevname 1) -p ||
3673                 error "llverdev failed with rc=$?"
3674         reformat_and_config
3675 }
3676 run_test 54a "test llverdev and partial verify of device"
3677
3678 test_54b() {
3679         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
3680                 skip "Only applicable to ldiskfs-based MDTs"
3681                 return
3682         fi
3683
3684         setup
3685         run_llverfs $MOUNT -p || error "llverfs failed with rc=$?"
3686         cleanup || error "cleanup failed with rc=$?"
3687 }
3688 run_test 54b "test llverfs and partial verify of filesystem"
3689
3690 lov_objid_size()
3691 {
3692         local max_ost_index=$1
3693         echo -n $(((max_ost_index + 1) * 8))
3694 }
3695
3696 test_55() {
3697         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
3698                 skip "Only applicable to ldiskfs-based MDTs"
3699                 return
3700         fi
3701
3702         local mdsdev=$(mdsdevname 1)
3703         local mdsvdev=$(mdsvdevname 1)
3704
3705         for i in 1023 2048
3706         do
3707                 add mds1 $(mkfs_opts mds1 ${mdsdev}) --reformat $mdsdev \
3708                         $mdsvdev || exit 10
3709                 add ost1 $(mkfs_opts ost1 $(ostdevname 1)) --index=$i \
3710                         --reformat $(ostdevname 1) $(ostvdevname 1)
3711                 setup_noconfig
3712                 stopall
3713                 setup_noconfig
3714                 sync
3715
3716                 echo checking size of lov_objid for ost index $i
3717                 LOV_OBJID_SIZE=$(do_facet mds1 "$DEBUGFS -R 'stat lov_objid' $mdsdev 2>/dev/null" | grep ^User | awk '{print $6}')
3718                 if [ "$LOV_OBJID_SIZE" != $(lov_objid_size $i) ]; then
3719                         error "lov_objid size has to be $(lov_objid_size $i), not $LOV_OBJID_SIZE"
3720                 else
3721                         echo ok, lov_objid size is correct: $LOV_OBJID_SIZE
3722                 fi
3723                 stopall
3724         done
3725
3726         reformat
3727 }
3728 run_test 55 "check lov_objid size"
3729
3730 test_56() {
3731         local server_version=$(lustre_version_code $SINGLEMDS)
3732         local mds_journal_size_orig=$MDSJOURNALSIZE
3733         local n
3734
3735         MDSJOURNALSIZE=16
3736
3737         for num in $(seq 1 $MDSCOUNT); do
3738                 add mds${num} $(mkfs_opts mds${num} $(mdsdevname $num)) \
3739                         --reformat $(mdsdevname $num) $(mdsvdevname $num)
3740         done
3741         add ost1 $(mkfs_opts ost1 $(ostdevname 1)) --index=10000 --reformat \
3742                 $(ostdevname 1) $(ostvdevname 1)
3743         add ost2 $(mkfs_opts ost2 $(ostdevname 2)) --index=1000 --reformat \
3744                 $(ostdevname 2) $(ostvdevname 2)
3745
3746         start_mgsmds
3747         start_ost || error "Unable to start first ost (idx 10000)"
3748         start_ost2 || error "Unable to start second ost (idx 1000)"
3749         mount_client $MOUNT || error "Unable to mount client"
3750         echo ok
3751         $LFS osts
3752
3753         if [[ $server_version -ge $(version_code 2.6.54) ]] ||
3754            [[ $server_version -ge $(version_code 2.5.4) &&
3755               $server_version -lt $(version_code 2.5.11) ]]; then
3756                 wait_osc_import_state mds ost1 FULL
3757                 wait_osc_import_state mds ost2 FULL
3758                 $SETSTRIPE --stripe-count=-1 $DIR/$tfile ||
3759                         error "Unable to setstripe $DIR/$tfile"
3760                 n=$($LFS getstripe --stripe-count $DIR/$tfile)
3761                 [ "$n" -eq 2 ] || error "Stripe count not two: $n"
3762                 rm $DIR/$tfile
3763         fi
3764
3765         stopall
3766         MDSJOURNALSIZE=$mds_journal_size_orig
3767         reformat
3768 }
3769 run_test 56 "check big OST indexes and out-of-index-order start"
3770
3771 test_57a() { # bug 22656
3772         do_rpc_nodes $(facet_active_host ost1) load_modules_local
3773         local NID=$(do_facet ost1 "$LCTL get_param nis" |
3774                     tail -1 | awk '{print $1}')
3775         writeconf_or_reformat
3776         [ $(facet_fstype ost1) == zfs ] && import_zpool ost1
3777         do_facet ost1 "$TUNEFS --failnode=$NID `ostdevname 1`" ||
3778                 error "tunefs failed"
3779         start_mgsmds
3780         start_ost && error "OST registration from failnode should fail"
3781         reformat
3782 }
3783 run_test 57a "initial registration from failnode should fail (should return errs)"
3784
3785 test_57b() {
3786         do_rpc_nodes $(facet_active_host ost1) load_modules_local
3787         local NID=$(do_facet ost1 "$LCTL get_param nis" |
3788                     tail -1 | awk '{print $1}')
3789         writeconf_or_reformat
3790         [ $(facet_fstype ost1) == zfs ] && import_zpool ost1
3791         do_facet ost1 "$TUNEFS --servicenode=$NID `ostdevname 1`" ||
3792                 error "tunefs failed"
3793         start_mgsmds
3794         start_ost || error "OST registration from servicenode should not fail"
3795         reformat
3796 }
3797 run_test 57b "initial registration from servicenode should not fail"
3798
3799 count_osts() {
3800         do_facet mgs $LCTL get_param mgs.MGS.live.$FSNAME | grep OST | wc -l
3801 }
3802
3803 test_58() { # bug 22658
3804         setup_noconfig
3805         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
3806         createmany -o $DIR/$tdir/$tfile-%d 100
3807         # make sure that OSTs do not cancel llog cookies before we unmount the MDS
3808 #define OBD_FAIL_OBD_LOG_CANCEL_NET      0x601
3809         do_facet $SINGLEMDS "$LCTL set_param fail_loc=0x601"
3810         unlinkmany $DIR/$tdir/$tfile-%d 100
3811         stop_mds || error "Unable to stop MDS"
3812
3813         local MNTDIR=$(facet_mntpt $SINGLEMDS)
3814         local devname=$(mdsdevname ${SINGLEMDS//mds/})
3815
3816         # remove all files from the OBJECTS dir
3817         mount_fstype $SINGLEMDS
3818
3819         do_facet $SINGLEMDS "find $MNTDIR/O/1/d* -type f -delete"
3820
3821         unmount_fstype $SINGLEMDS
3822         # restart MDS with missing llog files
3823         start_mds || error "unable to start MDS"
3824         do_facet mds "$LCTL set_param fail_loc=0"
3825         reformat
3826 }
3827 run_test 58 "missing llog files must not prevent MDT from mounting"
3828
3829 test_59() {
3830         start_mgsmds >> /dev/null
3831         local C1=$(count_osts)
3832         if [ $C1 -eq 0 ]; then
3833                 start_ost >> /dev/null
3834                 C1=$(count_osts)
3835         fi
3836         stopall
3837         echo "original ost count: $C1 (expect > 0)"
3838         [ $C1 -gt 0 ] || error "No OSTs in $FSNAME log"
3839         start_mgsmds -o writeconf >> /dev/null || error "MDT start failed"
3840         local C2=$(count_osts)
3841         echo "after mdt writeconf count: $C2 (expect 0)"
3842         [ $C2 -gt 0 ] && error "MDT writeconf should erase OST logs"
3843         echo "OST start without writeconf should fail:"
3844         start_ost >> /dev/null &&
3845                 error "OST start without writeconf didn't fail"
3846         echo "OST start with writeconf should succeed:"
3847         start_ost -o writeconf >> /dev/null || error "OST1 start failed"
3848         local C3=$(count_osts)
3849         echo "after ost writeconf count: $C3 (expect 1)"
3850         [ $C3 -eq 1 ] || error "new OST writeconf should add:"
3851         start_ost2 -o writeconf >> /dev/null || error "OST2 start failed"
3852         local C4=$(count_osts)
3853         echo "after ost2 writeconf count: $C4 (expect 2)"
3854         [ $C4 -eq 2 ] || error "OST2 writeconf should add log"
3855         stop_ost2 >> /dev/null
3856         cleanup_nocli >> /dev/null
3857         #writeconf to remove all ost2 traces for subsequent tests
3858         writeconf_or_reformat
3859 }
3860 run_test 59 "writeconf mount option"
3861
3862 test_60() { # LU-471
3863         local num
3864
3865         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
3866                 skip "Only applicable to ldiskfs-based MDTs"
3867                 return
3868         fi
3869
3870         for num in $(seq $MDSCOUNT); do
3871                 add mds${num} $(mkfs_opts mds${num} $(mdsdevname $num)) \
3872                         --mkfsoptions='\" -E stride=64 -O ^uninit_bg\"' \
3873                         --reformat $(mdsdevname $num) $(mdsvdevname $num) ||
3874                         exit 10
3875         done
3876
3877         dump=$(do_facet $SINGLEMDS dumpe2fs $(mdsdevname 1))
3878         [ ${PIPESTATUS[0]} -eq 0 ] || error "dumpe2fs $(mdsdevname 1) failed"
3879
3880         # MDT default has dirdata feature
3881         echo $dump | grep dirdata > /dev/null || error "dirdata is not set"
3882         # we disable uninit_bg feature
3883         echo $dump | grep uninit_bg > /dev/null && error "uninit_bg is set"
3884         # we set stride extended options
3885         echo $dump | grep stride > /dev/null || error "stride is not set"
3886         reformat
3887 }
3888 run_test 60 "check mkfs.lustre --mkfsoptions -E -O options setting"
3889
3890 test_61() { # LU-80
3891         local reformat=false
3892
3893         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.1.53) ] ||
3894                 { skip "Need MDS version at least 2.1.53"; return 0; }
3895
3896         if [ $(facet_fstype $SINGLEMDS) == ldiskfs ] &&
3897            ! large_xattr_enabled; then
3898                 reformat=true
3899                 LDISKFS_MKFS_OPTS+=" -O large_xattr"
3900
3901                 for num in $(seq $MDSCOUNT); do
3902                         add mds${num} $(mkfs_opts mds$num $(mdsdevname $num)) \
3903                         --reformat $(mdsdevname $num) $(mdsvdevname $num) ||
3904                         error "add mds $num failed"
3905                 done
3906         fi
3907
3908         setup_noconfig || error "setting up the filesystem failed"
3909         client_up || error "starting client failed"
3910
3911         local file=$DIR/$tfile
3912         touch $file || error "touch $file failed"
3913
3914         local large_value="$(generate_string $(max_xattr_size))"
3915         local small_value="bar"
3916
3917     local name="trusted.big"
3918     log "save large xattr $name on $file"
3919     setfattr -n $name -v $large_value $file ||
3920         error "saving $name on $file failed"
3921
3922     local new_value=$(get_xattr_value $name $file)
3923     [[ "$new_value" != "$large_value" ]] &&
3924         error "$name different after saving"
3925
3926     log "shrink value of $name on $file"
3927     setfattr -n $name -v $small_value $file ||
3928         error "shrinking value of $name on $file failed"
3929
3930     new_value=$(get_xattr_value $name $file)
3931     [[ "$new_value" != "$small_value" ]] &&
3932         error "$name different after shrinking"
3933
3934     log "grow value of $name on $file"
3935     setfattr -n $name -v $large_value $file ||
3936         error "growing value of $name on $file failed"
3937
3938     new_value=$(get_xattr_value $name $file)
3939     [[ "$new_value" != "$large_value" ]] &&
3940         error "$name different after growing"
3941
3942     log "check value of $name on $file after remounting MDS"
3943     fail $SINGLEMDS
3944     new_value=$(get_xattr_value $name $file)
3945     [[ "$new_value" != "$large_value" ]] &&
3946         error "$name different after remounting MDS"
3947
3948     log "remove large xattr $name from $file"
3949     setfattr -x $name $file || error "removing $name from $file failed"
3950
3951     rm -f $file
3952     stopall
3953         if $reformat; then
3954                 LDISKFS_MKFS_OPTS=${LDISKFS_MKFS_OPTS% -O large_xattr}
3955                 reformat
3956         fi
3957 }
3958 run_test 61 "large xattr"
3959
3960 test_62() {
3961         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
3962                 skip "Only applicable to ldiskfs-based MDTs"
3963                 return
3964         fi
3965
3966         # MRP-118
3967         local mdsdev=$(mdsdevname 1)
3968         local ostdev=$(ostdevname 1)
3969
3970         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
3971                 { skip "Need MDS version at least 2.2.51"; return 0; }
3972
3973         echo "disable journal for mds"
3974         do_facet mds tune2fs -O ^has_journal $mdsdev || error "tune2fs failed"
3975         start_mds && error "MDT start should fail"
3976         echo "disable journal for ost"
3977         do_facet ost1 tune2fs -O ^has_journal $ostdev || error "tune2fs failed"
3978         start_ost && error "OST start should fail"
3979         cleanup || error "cleanup failed with rc $?"
3980         reformat_and_config
3981 }
3982 run_test 62 "start with disabled journal"
3983
3984 test_63() {
3985         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
3986                 skip "Only applicable to ldiskfs-based MDTs"
3987                 return
3988         fi
3989
3990         local inode_slab=$(do_facet $SINGLEMDS \
3991                 "awk '/ldiskfs_inode_cache/ { print \\\$5 }' /proc/slabinfo")
3992         if [ -z "$inode_slab" ]; then
3993                 skip "ldiskfs module has not been loaded"
3994                 return
3995         fi
3996
3997         echo "$inode_slab ldisk inodes per page"
3998         [ "$inode_slab" -ge "3" ] ||
3999                 error "ldisk inode size is too big, $inode_slab objs per page"
4000         return
4001 }
4002 run_test 63 "Verify each page can at least hold 3 ldisk inodes"
4003
4004 test_64() {
4005         start_mds || error "unable to start MDS"
4006         start_ost || error "Unable to start OST1"
4007         start_ost2 || error "Unable to start second ost"
4008         mount_client $MOUNT || error "Unable to mount client"
4009         stop_ost2 || error "Unable to stop second ost"
4010         echo "$LFS df"
4011         $LFS df --lazy || error "lfs df failed"
4012         cleanup || error "cleanup failed with $?"
4013         #writeconf to remove all ost2 traces for subsequent tests
4014         writeconf_or_reformat
4015 }
4016 run_test 64 "check lfs df --lazy "
4017
4018 test_65() { # LU-2237
4019         # Currently, the test is only valid for ldiskfs backend
4020         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
4021                 skip "non-ldiskfs backend" && return
4022
4023         local devname=$(mdsdevname ${SINGLEMDS//mds/})
4024         local brpt=$(facet_mntpt brpt)
4025         local opts=""
4026
4027         if ! do_facet $SINGLEMDS "test -b $devname"; then
4028                 opts="-o loop"
4029         fi
4030
4031         stop_mds || error "Unable to stop MDS"
4032         local obj=$(do_facet $SINGLEMDS \
4033                     "$DEBUGFS -c -R \\\"stat last_rcvd\\\" $devname" |
4034                     grep Inode)
4035         if [ -z "$obj" ]; then
4036                 # The MDT may be just re-formatted, mount the MDT for the
4037                 # first time to guarantee the "last_rcvd" file is there.
4038                 start_mds || error "fail to mount the MDS for the first time"
4039                 stop_mds || error "Unable to stop MDS"
4040         fi
4041
4042         # remove the "last_rcvd" file
4043         do_facet $SINGLEMDS "mkdir -p $brpt"
4044         do_facet $SINGLEMDS \
4045                 "mount -t $(facet_fstype $SINGLEMDS) $opts $devname $brpt"
4046         do_facet $SINGLEMDS "rm -f ${brpt}/last_rcvd"
4047         do_facet $SINGLEMDS "umount -d $brpt"
4048
4049         # restart MDS, the "last_rcvd" file should be recreated.
4050         start_mds || error "fail to restart the MDS"
4051         stop_mds || error "Unable to stop MDS"
4052         obj=$(do_facet $SINGLEMDS \
4053               "$DEBUGFS -c -R \\\"stat last_rcvd\\\" $devname" | grep Inode)
4054         [ -n "$obj" ] || error "fail to re-create the last_rcvd"
4055 }
4056 run_test 65 "re-create the lost last_rcvd file when server mount"
4057
4058 test_66() {
4059         [[ $(lustre_version_code mgs) -ge $(version_code 2.3.59) ]] ||
4060                 { skip "Need MGS version at least 2.3.59"; return 0; }
4061
4062         setup
4063         local OST1_NID=$(do_facet ost1 $LCTL list_nids | head -1)
4064         local MDS_NID=$(do_facet $SINGLEMDS $LCTL list_nids | head -1)
4065
4066         echo "replace_nids should fail if MDS, OSTs and clients are UP"
4067         do_facet mgs $LCTL replace_nids $FSNAME-OST0000 $OST1_NID &&
4068                 error "replace_nids fail"
4069
4070         umount_client $MOUNT || error "unmounting client failed"
4071         echo "replace_nids should fail if MDS and OSTs are UP"
4072         do_facet mgs $LCTL replace_nids $FSNAME-OST0000 $OST1_NID &&
4073                 error "replace_nids fail"
4074
4075         stop_ost || error "Unable to stop OST1"
4076         echo "replace_nids should fail if MDS is UP"
4077         do_facet mgs $LCTL replace_nids $FSNAME-OST0000 $OST1_NID &&
4078                 error "replace_nids fail"
4079
4080         stop_mds || error "stopping mds failed"
4081
4082         if combined_mgs_mds; then
4083                 start_mdt 1 "-o nosvc" ||
4084                         error "starting mds with nosvc option failed"
4085         fi
4086
4087         echo "command should accept two parameters"
4088         do_facet mgs $LCTL replace_nids $FSNAME-OST0000 &&
4089                 error "command should accept two params"
4090
4091         echo "correct device name should be passed"
4092         do_facet mgs $LCTL replace_nids $FSNAME-WRONG0000 $OST1_NID &&
4093                 error "wrong devname"
4094
4095         echo "wrong nids list should not destroy the system"
4096         do_facet mgs $LCTL replace_nids $FSNAME-OST0000 "wrong nids list" &&
4097                 error "wrong parse"
4098
4099         echo "replace OST nid"
4100         do_facet mgs $LCTL replace_nids $FSNAME-OST0000 $OST1_NID ||
4101                 error "replace nids failed"
4102
4103         echo "command should accept two parameters"
4104         do_facet mgs $LCTL replace_nids $FSNAME-MDT0000 &&
4105                 error "command should accept two params"
4106
4107         echo "wrong nids list should not destroy the system"
4108         do_facet mgs $LCTL replace_nids $FSNAME-MDT0000 "wrong nids list" &&
4109                 error "wrong parse"
4110
4111         echo "replace MDS nid"
4112         do_facet mgs $LCTL replace_nids $FSNAME-MDT0000 $MDS_NID ||
4113                 error "replace nids failed"
4114
4115         if ! combined_mgs_mds ; then
4116                 stop_mgs
4117         else
4118                 stop_mds || error "Unable to stop MDS"
4119         fi
4120
4121         setup_noconfig
4122         check_mount || error "error after nid replace"
4123         cleanup || error "cleanup failed"
4124         reformat
4125 }
4126 run_test 66 "replace nids"
4127
4128 test_67() { #LU-2950
4129         local legacy="$TMP/legacy_lnet_config"
4130         local new="$TMP/new_routes_test"
4131         local out="$TMP/config_out_file"
4132         local verify="$TMP/conv_verify"
4133         local verify_conf="$TMP/conf_verify"
4134
4135         # Create the legacy file that will be run through the
4136         # lustre_routes_conversion script
4137         cat <<- LEGACY_LNET_CONFIG > $legacy
4138                 tcp1 23 192.168.213.1@tcp:1; tcp5 34 193.30.4.3@tcp:4;
4139                 tcp2 54 10.1.3.2@tcp;
4140                 tcp3 10.3.4.3@tcp:3;
4141                 tcp4 10.3.3.4@tcp;
4142         LEGACY_LNET_CONFIG
4143
4144         # Create the verification file to verify the output of
4145         # lustre_routes_conversion script against.
4146         cat <<- VERIFY_LNET_CONFIG > $verify
4147                 tcp1: { gateway: 192.168.213.1@tcp, hop: 23, priority: 1 }
4148                 tcp5: { gateway: 193.30.4.3@tcp, hop: 34, priority: 4 }
4149                 tcp2: { gateway: 10.1.3.2@tcp, hop: 54 }
4150                 tcp3: { gateway: 10.3.4.3@tcp, priority: 3 }
4151                 tcp4: { gateway: 10.3.3.4@tcp }
4152         VERIFY_LNET_CONFIG
4153
4154         # Create the verification file to verify the output of
4155         # lustre_routes_config script against
4156         cat <<- VERIFY_LNET_CONFIG > $verify_conf
4157                 lctl --net tcp1 add_route 192.168.213.1@tcp 23 1
4158                 lctl --net tcp5 add_route 193.30.4.3@tcp 34 4
4159                 lctl --net tcp2 add_route 10.1.3.2@tcp 54 4
4160                 lctl --net tcp3 add_route 10.3.4.3@tcp 1 3
4161                 lctl --net tcp4 add_route 10.3.3.4@tcp 1 3
4162         VERIFY_LNET_CONFIG
4163
4164         lustre_routes_conversion $legacy $new > /dev/null
4165         if [ -f $new ]; then
4166                 # verify the conversion output
4167                 cmp -s $new $verify > /dev/null
4168                 if [ $? -eq 1 ]; then
4169                         error "routes conversion failed"
4170                 fi
4171
4172                 lustre_routes_config --dry-run --verbose $new > $out
4173                 # check that the script succeeded
4174                 cmp -s $out $verify_conf > /dev/null
4175                 if [ $? -eq 1 ]; then
4176                         error "routes config failed"
4177                 fi
4178         else
4179                 error "routes conversion test failed"
4180         fi
4181         # remove generated files
4182         rm -f $new $legacy $verify $verify_conf $out
4183 }
4184 run_test 67 "test routes conversion and configuration"
4185
4186 test_68() {
4187         local fid
4188         local seq
4189         local START
4190         local END
4191
4192         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.4.53) ] ||
4193                 { skip "Need MDS version at least 2.4.53"; return 0; }
4194
4195         umount_client $MOUNT || error "umount client failed"
4196
4197         start_mdt 1 || error "MDT start failed"
4198         start_ost || error "Unable to start OST1"
4199
4200         # START-END - the sequences we'll be reserving
4201         START=$(do_facet $SINGLEMDS \
4202                 $LCTL get_param -n seq.ctl*.space | awk -F'[[ ]' '{print $2}')
4203         END=$((START + (1 << 30)))
4204         do_facet $SINGLEMDS \
4205                 $LCTL set_param seq.ctl*.fldb="[$START-$END\):0:mdt"
4206
4207         # reset the sequences MDT0000 has already assigned
4208         do_facet $SINGLEMDS \
4209                 $LCTL set_param seq.srv*MDT0000.space=clear
4210
4211         # remount to let the client allocate new sequence
4212         mount_client $MOUNT || error "mount client failed"
4213
4214         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
4215         do_facet $SINGLEMDS \
4216                 $LCTL get_param seq.srv*MDT0000.space
4217         $LFS path2fid $DIR/$tfile
4218
4219         local old_ifs="$IFS"
4220         IFS='[:]'
4221         fid=($($LFS path2fid $DIR/$tfile))
4222         IFS="$old_ifs"
4223         let seq=${fid[1]}
4224
4225         if [[ $seq < $END ]]; then
4226                 error "used reserved sequence $seq?"
4227         fi
4228         cleanup || error "cleanup failed with $?"
4229 }
4230 run_test 68 "be able to reserve specific sequences in FLDB"
4231
4232 test_69() {
4233         local server_version=$(lustre_version_code $SINGLEMDS)
4234
4235         [[ $server_version -lt $(version_code 2.4.2) ]] &&
4236                 skip "Need MDS version at least 2.4.2" && return
4237
4238         [[ $server_version -ge $(version_code 2.4.50) ]] &&
4239         [[ $server_version -lt $(version_code 2.5.0) ]] &&
4240                 skip "Need MDS version at least 2.5.0" && return
4241
4242         setup
4243
4244         # use OST0000 since it probably has the most creations
4245         local OSTNAME=$(ostname_from_index 0)
4246         local mdtosc_proc1=$(get_mdtosc_proc_path mds1 $OSTNAME)
4247         local last_id=$(do_facet mds1 $LCTL get_param -n \
4248                         osc.$mdtosc_proc1.prealloc_last_id)
4249
4250         # Want to have OST LAST_ID over 1.5 * OST_MAX_PRECREATE to
4251         # verify that the LAST_ID recovery is working properly.  If
4252         # not, then the OST will refuse to allow the MDS connect
4253         # because the LAST_ID value is too different from the MDS
4254         #define OST_MAX_PRECREATE=20000
4255         local num_create=$((20000 * 5))
4256
4257         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
4258         $SETSTRIPE -i 0 $DIR/$tdir || error "$SETSTRIPE -i 0 $DIR/$tdir failed"
4259         createmany -o $DIR/$tdir/$tfile- $num_create ||
4260                 error "createmany: failed to create $num_create files: $?"
4261         # delete all of the files with objects on OST0 so the
4262         # filesystem is not inconsistent later on
4263         $LFS find $MOUNT --ost 0 | xargs rm
4264
4265         stop_ost || error "OST0 stop failure"
4266         add ost1 $(mkfs_opts ost1 $(ostdevname 1)) --reformat --replace \
4267                 $(ostdevname 1) $(ostvdevname 1) ||
4268                 error "reformat and replace $ostdev failed"
4269         start_ost || error "OST0 restart failure"
4270         wait_osc_import_state mds ost FULL
4271
4272         touch $DIR/$tdir/$tfile-last || error "create file after reformat"
4273         local idx=$($GETSTRIPE -i $DIR/$tdir/$tfile-last)
4274         [ $idx -ne 0 ] && error "$DIR/$tdir/$tfile-last on $idx not 0" || true
4275
4276         cleanup || error "cleanup failed with $?"
4277 }
4278 run_test 69 "replace an OST with the same index"
4279
4280 test_70a() {
4281         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4282         local MDTIDX=1
4283
4284         cleanup || error "cleanup failed with $?"
4285
4286         start_mdt 1 || error "MDT0 start fail"
4287
4288         start_ost || error "OST0 start fail"
4289
4290         start_mdt 2 || error "MDT1 start fail"
4291
4292         mount_client $MOUNT || error "mount client fails"
4293
4294         mkdir $DIR/$tdir || error "create $DIR/$tdir failed"
4295
4296         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
4297                 error "create remote dir fail"
4298
4299         rm -rf $DIR/$tdir || error "delete dir fail"
4300         cleanup || error "cleanup failed with $?"
4301 }
4302 run_test 70a "start MDT0, then OST, then MDT1"
4303
4304 test_70b() {
4305         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4306         local MDTIDX=1
4307
4308         start_ost || error "OST0 start fail"
4309
4310         start_mdt 1 || error "MDT0 start fail"
4311         start_mdt 2 || error "MDT1 start fail"
4312
4313         mount_client $MOUNT || error "mount client fails"
4314
4315         mkdir $DIR/$tdir || error "create $DIR/$tdir failed"
4316
4317         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
4318                 error "create remote dir fail"
4319
4320         rm -rf $DIR/$tdir || error "delete dir fail"
4321
4322         cleanup || error "cleanup failed with $?"
4323 }
4324 run_test 70b "start OST, MDT1, MDT0"
4325
4326 test_70c() {
4327         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4328         local MDTIDX=1
4329
4330         start_mdt 1 || error "MDT0 start fail"
4331         start_mdt 2 || error "MDT1 start fail"
4332         start_ost || error "OST0 start fail"
4333
4334         mount_client $MOUNT || error "mount client fails"
4335         stop_mdt 1 || error "MDT1 start fail"
4336
4337         local mdc_for_mdt1=$($LCTL dl | grep MDT0000-mdc | awk '{print $4}')
4338         echo "deactivate $mdc_for_mdt1"
4339         $LCTL --device $mdc_for_mdt1 deactivate ||
4340                 error "set $mdc_for_mdt1 deactivate failed"
4341
4342         mkdir $DIR/$tdir && error "mkdir succeed"
4343
4344         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir &&
4345                 error "create remote dir succeed"
4346
4347         cleanup || error "cleanup failed with $?"
4348 }
4349 run_test 70c "stop MDT0, mkdir fail, create remote dir fail"
4350
4351 test_70d() {
4352         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4353         local MDTIDX=1
4354
4355         start_mdt 1 || error "MDT0 start fail"
4356         start_mdt 2 || error "MDT1 start fail"
4357         start_ost || error "OST0 start fail"
4358
4359         mount_client $MOUNT || error "mount client fails"
4360
4361         stop_mdt 2 || error "MDT1 start fail"
4362
4363         local mdc_for_mdt2=$($LCTL dl | grep MDT0001-mdc |
4364                              awk '{print $4}')
4365         echo "deactivate $mdc_for_mdt2"
4366         $LCTL --device $mdc_for_mdt2 deactivate ||
4367                 error "set $mdc_for_mdt2 deactivate failed"
4368
4369         mkdir $DIR/$tdir || error "mkdir fail"
4370         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir &&
4371                 error "create remote dir succeed"
4372
4373         rm -rf $DIR/$tdir || error "delete dir fail"
4374
4375         cleanup || error "cleanup failed with $?"
4376 }
4377 run_test 70d "stop MDT1, mkdir succeed, create remote dir fail"
4378
4379 test_71a() {
4380         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4381         if combined_mgs_mds; then
4382                 skip "needs separate MGS/MDT" && return
4383         fi
4384         local MDTIDX=1
4385
4386         start_mdt 1 || error "MDT0 start fail"
4387         start_ost || error "OST0 start fail"
4388         start_mdt 2 || error "MDT1 start fail"
4389         start_ost2 || error "OST1 start fail"
4390
4391         mount_client $MOUNT || error "mount client fails"
4392
4393         mkdir $DIR/$tdir || error "mkdir fail"
4394         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
4395                 error "create remote dir succeed"
4396
4397         mcreate $DIR/$tdir/remote_dir/$tfile || error "create file failed"
4398         rm -rf $DIR/$tdir || error "delete dir fail"
4399
4400         umount_client $MOUNT || error "umount_client failed"
4401         stop_mdt 1 || error "MDT0 stop fail"
4402         stop_mdt 2 || error "MDT1 stop fail"
4403         stop_ost || error "OST0 stop fail"
4404         stop_ost2 || error "OST1 stop fail"
4405 }
4406 run_test 71a "start MDT0 OST0, MDT1, OST1"
4407
4408 test_71b() {
4409         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4410         if combined_mgs_mds; then
4411                 skip "needs separate MGS/MDT" && return
4412         fi
4413         local MDTIDX=1
4414
4415         start_mdt 2 || error "MDT1 start fail"
4416         start_ost || error "OST0 start fail"
4417         start_mdt 1 || error "MDT0 start fail"
4418         start_ost2 || error "OST1 start fail"
4419
4420         mount_client $MOUNT || error "mount client fails"
4421
4422         mkdir $DIR/$tdir || error "mkdir fail"
4423         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
4424                 error "create remote dir succeed"
4425
4426         mcreate $DIR/$tdir/remote_dir/$tfile || error "create file failed"
4427         rm -rf $DIR/$tdir || error "delete dir fail"
4428
4429         umount_client $MOUNT || error "umount_client failed"
4430         stop_mdt 1 || error "MDT0 stop fail"
4431         stop_mdt 2 || error "MDT1 stop fail"
4432         stop_ost || error "OST0 stop fail"
4433         stop_ost2 || error "OST1 stop fail"
4434 }
4435 run_test 71b "start MDT1, OST0, MDT0, OST1"
4436
4437 test_71c() {
4438         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4439         if combined_mgs_mds; then
4440                 skip "needs separate MGS/MDT" && return
4441         fi
4442         local MDTIDX=1
4443
4444         start_ost || error "OST0 start fail"
4445         start_ost2 || error "OST1 start fail"
4446         start_mdt 2 || error "MDT1 start fail"
4447         start_mdt 1 || error "MDT0 start fail"
4448
4449         mount_client $MOUNT || error "mount client fails"
4450
4451         mkdir $DIR/$tdir || error "mkdir fail"
4452         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
4453                 error "create remote dir succeed"
4454
4455         mcreate $DIR/$tdir/remote_dir/$tfile || error "create file failed"
4456         rm -rf $DIR/$tdir || error "delete dir fail"
4457
4458         umount_client $MOUNT || error "umount_client failed"
4459         stop_mdt 1 || error "MDT0 stop fail"
4460         stop_mdt 2 || error "MDT1 stop fail"
4461         stop_ost || error "OST0 stop fail"
4462         stop_ost2 || error "OST1 stop fail"
4463
4464 }
4465 run_test 71c "start OST0, OST1, MDT1, MDT0"
4466
4467 test_71d() {
4468         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4469         if combined_mgs_mds; then
4470                 skip "needs separate MGS/MDT" && return
4471         fi
4472         local MDTIDX=1
4473
4474         start_ost || error "OST0 start fail"
4475         start_mdt 2 || error "MDT0 start fail"
4476         start_mdt 1 || error "MDT0 start fail"
4477         start_ost2 || error "OST1 start fail"
4478
4479         mount_client $MOUNT || error "mount client fails"
4480
4481         mkdir $DIR/$tdir || error "mkdir fail"
4482         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
4483                         error "create remote dir succeed"
4484
4485         mcreate $DIR/$tdir/remote_dir/$tfile || error "create file failed"
4486         rm -rf $DIR/$tdir || error "delete dir fail"
4487
4488         umount_client $MOUNT || error "umount_client failed"
4489         stop_mdt 1 || error "MDT0 stop fail"
4490         stop_mdt 2 || error "MDT1 stop fail"
4491         stop_ost || error "OST0 stop fail"
4492         stop_ost2 || error "OST1 stop fail"
4493
4494 }
4495 run_test 71d "start OST0, MDT1, MDT0, OST1"
4496
4497 test_71e() {
4498         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4499         if combined_mgs_mds; then
4500                 skip "needs separate MGS/MDT" && return
4501         fi
4502         local MDTIDX=1
4503
4504         start_ost || error "OST0 start fail"
4505         start_mdt 2 || error "MDT1 start fail"
4506         start_ost2 || error "OST1 start fail"
4507         start_mdt 1 || error "MDT0 start fail"
4508
4509         mount_client $MOUNT || error "mount client fails"
4510
4511         mkdir $DIR/$tdir || error "mkdir fail"
4512         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
4513                 error "create remote dir succeed"
4514
4515         mcreate $DIR/$tdir/remote_dir/$tfile || error "create file failed"
4516         rm -rf $DIR/$tdir || error "delete dir fail"
4517
4518         umount_client $MOUNT || error "umount_client failed"
4519         stop_mdt 1 || error "MDT0 stop fail"
4520         stop_mdt 2 || error "MDT1 stop fail"
4521         stop_ost || error "OST0 stop fail"
4522         stop_ost2 || error "OST1 stop fail"
4523
4524 }
4525 run_test 71e "start OST0, MDT1, OST1, MDT0"
4526
4527 test_72() { #LU-2634
4528         local mdsdev=$(mdsdevname 1)
4529         local ostdev=$(ostdevname 1)
4530         local cmd="$E2FSCK -fnvd $mdsdev"
4531         local fn=3
4532
4533         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
4534                 skip "ldiskfs only test" && return
4535
4536         #tune MDT with "-O extents"
4537
4538         for num in $(seq $MDSCOUNT); do
4539                 add mds${num} $(mkfs_opts mds$num $(mdsdevname $num)) \
4540                 --reformat $(mdsdevname $num) $(mdsvdevname $num) ||
4541                 error "add mds $num failed"
4542                 $TUNE2FS -O extents $(mdsdevname $num)
4543         done
4544
4545         add ost1 $(mkfs_opts ost1 $ostdev) --reformat $ostdev ||
4546                 error "add $ostdev failed"
4547         start_mgsmds || error "start mds failed"
4548         start_ost || error "start ost failed"
4549         mount_client $MOUNT || error "mount client failed"
4550
4551         #create some short symlinks
4552         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
4553         createmany -o $DIR/$tdir/$tfile-%d $fn
4554         echo "create $fn short symlinks"
4555         for i in $(seq -w 1 $fn); do
4556                 ln -s $DIR/$tdir/$tfile-$i $MOUNT/$tfile-$i
4557         done
4558         ls -al $MOUNT
4559
4560         #umount
4561         umount_client $MOUNT || error "umount client failed"
4562         stop_mds || error "stop mds failed"
4563         stop_ost || error "stop ost failed"
4564
4565         #run e2fsck
4566         run_e2fsck $(facet_active_host $SINGLEMDS) $mdsdev "-n"
4567 }
4568 run_test 72 "test fast symlink with extents flag enabled"
4569
4570 test_73() { #LU-3006
4571         load_modules
4572         [ $(facet_fstype ost1) == zfs ] && import_zpool ost1
4573         do_facet ost1 "$TUNEFS --failnode=1.2.3.4@$NETTYPE $(ostdevname 1)" ||
4574                 error "1st tunefs failed"
4575         start_mgsmds || error "start mds failed"
4576         start_ost || error "start ost failed"
4577         mount_client $MOUNT || error "mount client failed"
4578         $LCTL get_param -n osc.*OST0000-osc-[^M]*.import | grep failover_nids |
4579                 grep 1.2.3.4@$NETTYPE || error "failover nids haven't changed"
4580         umount_client $MOUNT || error "umount client failed"
4581         stopall
4582         reformat
4583 }
4584 run_test 73 "failnode to update from mountdata properly"
4585
4586 test_75() { # LU-2374
4587         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
4588                         skip "Need MDS version at least 2.4.1" && return
4589
4590         local index=0
4591         local opts_mds="$(mkfs_opts mds1 $(mdsdevname 1)) \
4592                 --reformat $(mdsdevname 1) $(mdsvdevname 1)"
4593         local opts_ost="$(mkfs_opts ost1 $(ostdevname 1)) \
4594                 --reformat $(ostdevname 1) $(ostvdevname 1)"
4595
4596         #check with default parameters
4597         add mds1 $opts_mds || error "add mds1 failed for default params"
4598         add ost1 $opts_ost || error "add ost1 failed for default params"
4599
4600         opts_mds=$(echo $opts_mds | sed -e "s/--mdt//")
4601         opts_mds=$(echo $opts_mds |
4602                    sed -e "s/--index=$index/--index=$index --mdt/")
4603         opts_ost=$(echo $opts_ost | sed -e "s/--ost//")
4604         opts_ost=$(echo $opts_ost |
4605                    sed -e "s/--index=$index/--index=$index --ost/")
4606
4607         add mds1 $opts_mds || error "add mds1 failed for new params"
4608         add ost1 $opts_ost || error "add ost1 failed for new params"
4609         return 0
4610 }
4611 run_test 75 "The order of --index should be irrelevant"
4612
4613 test_76a() {
4614         [[ $(lustre_version_code mgs) -ge $(version_code 2.4.52) ]] ||
4615                 { skip "Need MDS version at least 2.4.52" && return 0; }
4616         setup
4617         local MDMB_PARAM="osc.*.max_dirty_mb"
4618         echo "Change MGS params"
4619         local MAX_DIRTY_MB=$($LCTL get_param -n $MDMB_PARAM |
4620                 head -1)
4621         echo "max_dirty_mb: $MAX_DIRTY_MB"
4622         local NEW_MAX_DIRTY_MB=$((MAX_DIRTY_MB + MAX_DIRTY_MB))
4623         echo "new_max_dirty_mb: $NEW_MAX_DIRTY_MB"
4624         do_facet mgs $LCTL set_param -P $MDMB_PARAM=$NEW_MAX_DIRTY_MB
4625         wait_update $HOSTNAME "$LCTL get_param -n $MDMB_PARAM |
4626                 head -1" $NEW_MAX_DIRTY_MB
4627         MAX_DIRTY_MB=$($LCTL get_param -n $MDMB_PARAM | head -1)
4628         echo "$MAX_DIRTY_MB"
4629         [ $MAX_DIRTY_MB = $NEW_MAX_DIRTY_MB ] ||
4630                 error "error while apply max_dirty_mb"
4631
4632         echo "Check the value is stored after remount"
4633         stopall
4634         setupall
4635         wait_update $HOSTNAME "$LCTL get_param -n $MDMB_PARAM |
4636                 head -1" $NEW_MAX_DIRTY_MB
4637         MAX_DIRTY_MB=$($LCTL get_param -n $MDMB_PARAM | head -1)
4638         [ $MAX_DIRTY_MB = $NEW_MAX_DIRTY_MB ] ||
4639                 error "max_dirty_mb is not saved after remount"
4640
4641         echo "Change OST params"
4642         CLIENT_PARAM="obdfilter.*.client_cache_count"
4643         local CLIENT_CACHE_COUNT
4644         CLIENT_CACHE_COUNT=$(do_facet ost1 $LCTL get_param -n $CLIENT_PARAM |
4645                 head -1)
4646         echo "client_cache_count: $CLIENT_CACHE_COUNT"
4647         NEW_CLIENT_CACHE_COUNT=$((CLIENT_CACHE_COUNT+CLIENT_CACHE_COUNT))
4648         echo "new_client_cache_count: $NEW_CLIENT_CACHE_COUNT"
4649         do_facet mgs $LCTL set_param -P $CLIENT_PARAM=$NEW_CLIENT_CACHE_COUNT
4650         wait_update $(facet_host ost1) "$LCTL get_param -n $CLIENT_PARAM |
4651                 head -1" $NEW_CLIENT_CACHE_COUNT
4652         CLIENT_CACHE_COUNT=$(do_facet ost1 $LCTL get_param -n $CLIENT_PARAM |
4653                 head -1)
4654         echo "$CLIENT_CACHE_COUNT"
4655         [ $CLIENT_CACHE_COUNT = $NEW_CLIENT_CACHE_COUNT ] ||
4656                 error "error while apply client_cache_count"
4657
4658         echo "Check the value is stored after remount"
4659         stopall
4660         setupall
4661         wait_update $(facet_host ost1) "$LCTL get_param -n $CLIENT_PARAM |
4662                 head -1" $NEW_CLIENT_CACHE_COUNT
4663         CLIENT_CACHE_COUNT=$(do_facet ost1 $LCTL get_param -n $CLIENT_PARAM |
4664                 head -1)
4665         echo "$CLIENT_CACHE_COUNT"
4666         [ $CLIENT_CACHE_COUNT = $NEW_CLIENT_CACHE_COUNT ] ||
4667                 error "client_cache_count is not saved after remount"
4668         stopall
4669 }
4670 run_test 76a "set permanent params set_param -P"
4671
4672 test_76b() { # LU-4783
4673         [[ $(lustre_version_code mgs) -ge $(version_code 2.5.57) ]] ||
4674                 { skip "Need MGS version at least 2.5.57" && return 0; }
4675         stopall
4676         setupall
4677         do_facet mgs $LCTL get_param mgs.MGS.live.params ||
4678                 error "start params log failed"
4679         stopall
4680 }
4681 run_test 76b "verify params log setup correctly"
4682
4683 test_77() { # LU-3445
4684         local server_version=$(lustre_version_code $SINGLEMDS)
4685
4686         [[ $server_version -ge $(version_code 2.2.60) ]] &&
4687         [[ $server_version -le $(version_code 2.4.0) ]] &&
4688                 skip "Need MDS version < 2.2.60 or > 2.4.0" && return
4689
4690         if [[ -z "$fs2ost_DEV" || -z "$fs2mds_DEV" ]]; then
4691                 is_blkdev $SINGLEMDS $(mdsdevname ${SINGLEMDS//mds/}) &&
4692                 skip_env "mixed loopback and real device not working" && return
4693         fi
4694
4695         local fs2mdsdev=$(mdsdevname 1_2)
4696         local fs2ostdev=$(ostdevname 1_2)
4697         local fs2mdsvdev=$(mdsvdevname 1_2)
4698         local fs2ostvdev=$(ostvdevname 1_2)
4699         local fsname=test1234
4700         local mgsnid
4701         local failnid="$(h2$NETTYPE 1.2.3.4),$(h2$NETTYPE 4.3.2.1)"
4702
4703         add fs2mds $(mkfs_opts mds1 $fs2mdsdev) --mgs --fsname=$fsname \
4704                 --reformat $fs2mdsdev $fs2mdsvdev || error "add fs2mds failed"
4705         start fs2mds $fs2mdsdev $MDS_MOUNT_OPTS && trap cleanup_fs2 EXIT INT ||
4706                 error "start fs2mds failed"
4707
4708         mgsnid=$(do_facet fs2mds $LCTL list_nids | xargs | tr ' ' ,)
4709         [[ $mgsnid = *,* ]] || mgsnid+=",$mgsnid"
4710
4711         add fs2ost $(mkfs_opts ost1 $fs2ostdev) --mgsnode=$mgsnid \
4712                 --failnode=$failnid --fsname=$fsname \
4713                 --reformat $fs2ostdev $fs2ostvdev ||
4714                         error "add fs2ost failed"
4715         start fs2ost $fs2ostdev $OST_MOUNT_OPTS || error "start fs2ost failed"
4716
4717         mkdir -p $MOUNT2 || error "mkdir $MOUNT2 failed"
4718         $MOUNT_CMD $mgsnid:/$fsname $MOUNT2 || error "mount $MOUNT2 failed"
4719         DIR=$MOUNT2 MOUNT=$MOUNT2 check_mount || error "check $MOUNT2 failed"
4720         cleanup_fs2
4721 }
4722 run_test 77 "comma-separated MGS NIDs and failover node NIDs"
4723
4724 test_78() {
4725         [[ $(facet_fstype $SINGLEMDS) != ldiskfs ||
4726            $(facet_fstype ost1) != ldiskfs ]] &&
4727                 skip "only applicable to ldiskfs-based MDTs and OSTs" && return
4728
4729         # reformat the Lustre filesystem with a smaller size
4730         local saved_MDSSIZE=$MDSSIZE
4731         local saved_OSTSIZE=$OSTSIZE
4732         MDSSIZE=$((MDSSIZE - 20000))
4733         OSTSIZE=$((OSTSIZE - 20000))
4734         reformat || error "(1) reformat Lustre filesystem failed"
4735         MDSSIZE=$saved_MDSSIZE
4736         OSTSIZE=$saved_OSTSIZE
4737
4738         # mount the Lustre filesystem
4739         setup_noconfig || error "(2) setup Lustre filesystem failed"
4740
4741         # create some files
4742         log "create test files"
4743         local i
4744         local file
4745         local num_files=100
4746         mkdir $MOUNT/$tdir || error "(3) mkdir $MOUNT/$tdir failed"
4747         for i in $(seq $num_files); do
4748                 file=$MOUNT/$tdir/$tfile-$i
4749                 dd if=/dev/urandom of=$file count=1 bs=1M ||
4750                         error "(4) create $file failed"
4751         done
4752
4753         # unmount the Lustre filesystem
4754         cleanup || error "(5) cleanup Lustre filesystem failed"
4755
4756         # run e2fsck on the MDT and OST devices
4757         local mds_host=$(facet_active_host $SINGLEMDS)
4758         local ost_host=$(facet_active_host ost1)
4759         local mds_dev=$(mdsdevname ${SINGLEMDS//mds/})
4760         local ost_dev=$(ostdevname 1)
4761
4762         run_e2fsck $mds_host $mds_dev "-y"
4763         run_e2fsck $ost_host $ost_dev "-y"
4764
4765         # get the original block count of the MDT and OST filesystems
4766         local mds_orig_blks=$(get_block_count $SINGLEMDS $mds_dev)
4767         local ost_orig_blks=$(get_block_count ost1 $ost_dev)
4768
4769         # expand the MDT and OST filesystems to the device size
4770         run_resize2fs $SINGLEMDS $mds_dev "" || error "expand $SINGLEMDS failed"
4771         run_resize2fs ost1 $ost_dev "" || error "expand ost1 failed"
4772
4773         # run e2fsck on the MDT and OST devices again
4774         run_e2fsck $mds_host $mds_dev "-y"
4775         run_e2fsck $ost_host $ost_dev "-y"
4776
4777         # mount the Lustre filesystem
4778         setup
4779
4780         # check the files
4781         log "check files after expanding the MDT and OST filesystems"
4782         for i in $(seq $num_files); do
4783                 file=$MOUNT/$tdir/$tfile-$i
4784                 $CHECKSTAT -t file -s 1048576 $file ||
4785                         error "(6) checkstat $file failed"
4786         done
4787
4788         # create more files
4789         log "create more files after expanding the MDT and OST filesystems"
4790         for i in $(seq $((num_files + 1)) $((num_files + 10))); do
4791                 file=$MOUNT/$tdir/$tfile-$i
4792                 dd if=/dev/urandom of=$file count=1 bs=1M ||
4793                         error "(7) create $file failed"
4794         done
4795
4796         # unmount the Lustre filesystem
4797         cleanup || error "(8) cleanup Lustre filesystem failed"
4798
4799         # run e2fsck on the MDT and OST devices
4800         run_e2fsck $mds_host $mds_dev "-y"
4801         run_e2fsck $ost_host $ost_dev "-y"
4802
4803         # get the maximum block count of the MDT and OST filesystems
4804         local mds_max_blks=$(get_block_count $SINGLEMDS $mds_dev)
4805         local ost_max_blks=$(get_block_count ost1 $ost_dev)
4806
4807         # get the minimum block count of the MDT and OST filesystems
4808         local mds_min_blks=$(run_resize2fs $SINGLEMDS $mds_dev "" "-P" 2>&1 |
4809                                 grep minimum | sed -e 's/^.*filesystem: //g')
4810         local ost_min_blks=$(run_resize2fs ost1 $ost_dev "" "-P" 2>&1 |
4811                                 grep minimum | sed -e 's/^.*filesystem: //g')
4812
4813         # shrink the MDT and OST filesystems to a smaller size
4814         local shrunk=false
4815         local new_blks
4816         local base_blks
4817         if [[ $mds_max_blks -gt $mds_min_blks &&
4818               $mds_max_blks -gt $mds_orig_blks ]]; then
4819                 [[ $mds_orig_blks -gt $mds_min_blks ]] &&
4820                         base_blks=$mds_orig_blks || base_blks=$mds_min_blks
4821                 new_blks=$(( (mds_max_blks - base_blks) / 2 + base_blks ))
4822                 run_resize2fs $SINGLEMDS $mds_dev $new_blks ||
4823                         error "shrink $SINGLEMDS to $new_blks failed"
4824                 shrunk=true
4825         fi
4826
4827         if [[ $ost_max_blks -gt $ost_min_blks &&
4828               $ost_max_blks -gt $ost_orig_blks ]]; then
4829                 [[ $ost_orig_blks -gt $ost_min_blks ]] &&
4830                         base_blks=$ost_orig_blks || base_blks=$ost_min_blks
4831                 new_blks=$(( (ost_max_blks - base_blks) / 2 + base_blks ))
4832                 run_resize2fs ost1 $ost_dev $new_blks ||
4833                         error "shrink ost1 to $new_blks failed"
4834                 shrunk=true
4835         fi
4836
4837         # check whether the MDT or OST filesystem was shrunk or not
4838         if ! $shrunk; then
4839                 combined_mgs_mds || stop_mgs || error "(9) stop mgs failed"
4840                 reformat || error "(10) reformat Lustre filesystem failed"
4841                 return 0
4842         fi
4843
4844         # run e2fsck on the MDT and OST devices again
4845         run_e2fsck $mds_host $mds_dev "-y"
4846         run_e2fsck $ost_host $ost_dev "-y"
4847
4848         # mount the Lustre filesystem again
4849         setup
4850
4851         # check the files
4852         log "check files after shrinking the MDT and OST filesystems"
4853         for i in $(seq $((num_files + 10))); do
4854                 file=$MOUNT/$tdir/$tfile-$i
4855                 $CHECKSTAT -t file -s 1048576 $file ||
4856                         error "(11) checkstat $file failed"
4857         done
4858
4859         # unmount and reformat the Lustre filesystem
4860         cleanup || error "(12) cleanup Lustre filesystem failed"
4861         combined_mgs_mds || stop_mgs || error "(13) stop mgs failed"
4862         reformat || error "(14) reformat Lustre filesystem failed"
4863 }
4864 run_test 78 "run resize2fs on MDT and OST filesystems"
4865
4866 test_79() { # LU-4227
4867         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.5.59) ]] ||
4868                 { skip "Need MDS version at least 2.5.59"; return 0; }
4869
4870         local mdsdev1=$(mdsdevname 1)
4871         local mdsvdev1=$(mdsvdevname 1)
4872         local mdsdev2=$(mdsdevname 2)
4873         local mdsvdev2=$(mdsvdevname 2)
4874         local ostdev1=$(ostdevname 1)
4875         local ostvdev1=$(ostvdevname 1)
4876         local opts_mds1="$(mkfs_opts mds1 $mdsdev1) --reformat"
4877         local opts_mds2="$(mkfs_opts mds2 $mdsdev2) --reformat"
4878         local opts_ost1="$(mkfs_opts ost1 $ostdev1) --reformat"
4879         local mgsnode_opt
4880
4881         # remove --mgs/--mgsnode from mkfs.lustre options
4882         opts_mds1=$(echo $opts_mds1 | sed -e "s/--mgs//")
4883
4884         mgsnode_opt=$(echo $opts_mds2 |
4885                 awk '{ for ( i = 1; i < NF; i++ )
4886                         if ( $i ~ "--mgsnode" ) { print $i; break } }')
4887         [ -n $mgsnode_opt ] &&
4888                 opts_mds2=$(echo $opts_mds2 | sed -e "s/$mgsnode_opt//")
4889
4890         mgsnode_opt=$(echo $opts_ost1 |
4891                 awk '{ for ( i = 1; i < NF; i++ )
4892                         if ( $i ~ "--mgsnode" ) { print $i; break } }')
4893         [ -n $mgsnode_opt ] &&
4894                 opts_ost1=$(echo $opts_ost1 | sed -e "s/$mgsnode_opt//")
4895
4896         # -MGS, format a mdt without --mgs option
4897         add mds1 $opts_mds1 $mdsdev1 $mdsvdev1 &&
4898                 error "Must specify --mgs when formatting mdt combined with mgs"
4899
4900         # +MGS, format a mdt/ost without --mgsnode option
4901         add mds1 $(mkfs_opts mds1 $mdsdev1) --reformat $mdsdev1 $mdsvdev1 \
4902                 > /dev/null || error "start mds1 failed"
4903         add mds2 $opts_mds2 $mdsdev2 $mdsvdev2 &&
4904                 error "Must specify --mgsnode when formatting a mdt"
4905         add ost1 $opts_ost1 $ostdev1 $ostvdev2 &&
4906                 error "Must specify --mgsnode when formatting an ost"
4907
4908         reformat
4909 }
4910 run_test 79 "format MDT/OST without mgs option (should return errors)"
4911
4912 test_80() {
4913         start_mds || error "Failed to start MDT"
4914         start_ost || error "Failed to start OST1"
4915         uuid=$(do_facet ost1 $LCTL get_param -n mgc.*.uuid)
4916 #define OBD_FAIL_MGS_PAUSE_TARGET_CON       0x906
4917         do_facet ost1 "$LCTL set_param fail_val=10 fail_loc=0x906"
4918         do_facet mgs "$LCTL set_param fail_val=10 fail_loc=0x906"
4919         do_facet mgs "$LCTL set_param -n mgs/MGS/evict_client $uuid"
4920         sleep 30
4921         start_ost2 || error "Failed to start OST2"
4922
4923         do_facet ost1 "$LCTL set_param fail_loc=0"
4924         stopall
4925 }
4926 run_test 80 "mgc import reconnect race"
4927
4928 # Save the original values of $OSTCOUNT and $OSTINDEX$i.
4929 save_ostindex() {
4930         local new_ostcount=$1
4931         saved_ostcount=$OSTCOUNT
4932         OSTCOUNT=$new_ostcount
4933
4934         local i
4935         local index
4936         for i in $(seq $OSTCOUNT); do
4937                 index=OSTINDEX$i
4938                 eval saved_ostindex$i=${!index}
4939                 eval OSTINDEX$i=""
4940         done
4941 }
4942
4943 # Restore the original values of $OSTCOUNT and $OSTINDEX$i.
4944 restore_ostindex() {
4945         trap 0
4946
4947         local i
4948         local index
4949         for i in $(seq $OSTCOUNT); do
4950                 index=saved_ostindex$i
4951                 eval OSTINDEX$i=${!index}
4952         done
4953         OSTCOUNT=$saved_ostcount
4954
4955         formatall
4956 }
4957
4958 # The main purpose of this test is to ensure the OST_INDEX_LIST functions as
4959 # expected. This test uses OST_INDEX_LIST to format OSTs with a randomly
4960 # assigned index and ensures we can mount such a formatted file system
4961 test_81() { # LU-4665
4962         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.54) ]] ||
4963                 { skip "Need MDS version at least 2.6.54" && return; }
4964         [[ $OSTCOUNT -ge 3 ]] || { skip_env "Need at least 3 OSTs" && return; }
4965
4966         stopall
4967
4968         # Each time RANDOM is referenced, a random integer between 0 and 32767
4969         # is generated.
4970         local i
4971         local saved_ostindex1=$OSTINDEX1
4972         for i in 65535 $((RANDOM + 65536)); do
4973                 echo -e "\nFormat ost1 with --index=$i, should fail"
4974                 OSTINDEX1=$i
4975                 if add ost1 $(mkfs_opts ost1 $(ostdevname 1)) --reformat \
4976                    $(ostdevname 1) $(ostvdevname 1); then
4977                         OSTINDEX1=$saved_ostindex1
4978                         error "format ost1 with --index=$i should fail"
4979                 fi
4980         done
4981         OSTINDEX1=$saved_ostindex1
4982
4983         save_ostindex 3
4984
4985         # Format OSTs with random sparse indices.
4986         trap "restore_ostindex" EXIT
4987         echo -e "\nFormat $OSTCOUNT OSTs with sparse indices"
4988         OST_INDEX_LIST=[0,$((RANDOM * 2 % 65533 + 1)),65534] formatall
4989
4990         # Setup and check Lustre filesystem.
4991         start_mgsmds || error "start_mgsmds failed"
4992         for i in $(seq $OSTCOUNT); do
4993                 start ost$i $(ostdevname $i) $OST_MOUNT_OPTS ||
4994                         error "start ost$i failed"
4995         done
4996
4997         mount_client $MOUNT || error "mount client $MOUNT failed"
4998         check_mount || error "check client $MOUNT failed"
4999
5000         # Check max_easize.
5001         local max_easize=$($LCTL get_param -n llite.*.max_easize)
5002         [[ $max_easize -eq 128 ]] ||
5003                 error "max_easize is $max_easize, should be 128 bytes"
5004
5005         restore_ostindex
5006 }
5007 run_test 81 "sparse OST indexing"
5008
5009 # Wait OSTs to be active on both client and MDT side.
5010 wait_osts_up() {
5011         local cmd="$LCTL get_param -n lov.$FSNAME-clilov-*.target_obd |
5012                 awk 'BEGIN {c = 0} /ACTIVE/{c += 1} END {printf \\\"%d\\\", c}'"
5013         wait_update $HOSTNAME "eval $cmd" $OSTCOUNT ||
5014                 error "wait_update OSTs up on client failed"
5015
5016         cmd="$LCTL get_param -n lod.$FSNAME-MDT*-*.target_obd | sort -u |
5017              awk 'BEGIN {c = 0} /ACTIVE/{c += 1} END {printf \\\"%d\\\", c}'"
5018         wait_update_facet $SINGLEMDS "eval $cmd" $OSTCOUNT ||
5019                 error "wait_update OSTs up on MDT failed"
5020 }
5021
5022 # Here we exercise the stripe placement functionality on a file system that
5023 # has formatted the OST with a random index. With the file system the following
5024 # functionality is tested:
5025 #
5026 # 1. Creating a new file with a specific stripe layout.
5027 #
5028 # 2. Modifiy a existing empty file with a specific stripe layout.
5029 #
5030 # 3. Ensure we fail to set the stripe layout of a file that already has one.
5031 #
5032 # 4. If ost-index is defined we need to ensure it is the first entry in the
5033 #    ost index list returned by lfs getstripe.
5034 #
5035 # 5. Lastly ensure this functionality fails with directories.
5036 test_82a() { # LU-4665
5037         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.54) ]] ||
5038                 { skip "Need MDS version at least 2.6.54" && return; }
5039         [[ $OSTCOUNT -ge 3 ]] || { skip_env "Need at least 3 OSTs" && return; }
5040
5041         stopall
5042
5043         save_ostindex 3
5044
5045         # Format OSTs with random sparse indices.
5046         local i
5047         local index
5048         local ost_indices
5049         for i in $(seq $OSTCOUNT); do
5050                 index=$((RANDOM * 2))
5051                 ost_indices+=" $index"
5052         done
5053         ost_indices=$(comma_list $ost_indices)
5054
5055         trap "restore_ostindex" EXIT
5056         echo -e "\nFormat $OSTCOUNT OSTs with sparse indices $ost_indices"
5057         OST_INDEX_LIST=[$ost_indices] formatall
5058
5059         # Setup Lustre filesystem.
5060         start_mgsmds || error "start_mgsmds failed"
5061         for i in $(seq $OSTCOUNT); do
5062                 start ost$i $(ostdevname $i) $OST_MOUNT_OPTS ||
5063                         error "start ost$i failed"
5064         done
5065
5066         mount_client $MOUNT || error "mount client $MOUNT failed"
5067         wait_osts_up
5068
5069         $LFS df $MOUNT || error "$LFS df $MOUNT failed"
5070         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
5071
5072         # 1. If the file does not exist, new file will be created
5073         #    with specified OSTs.
5074         local file=$DIR/$tdir/$tfile-1
5075         local cmd="$SETSTRIPE -o $ost_indices $file"
5076         echo -e "\n$cmd"
5077         eval $cmd || error "$cmd failed"
5078         check_stripe_count $file $OSTCOUNT
5079         check_obdidx $file $ost_indices
5080         dd if=/dev/urandom of=$file count=1 bs=1M > /dev/null 2>&1 ||
5081                 error "write $file failed"
5082
5083         # 2. If the file already exists and is an empty file, the file
5084         #    will be attached with specified layout.
5085         file=$DIR/$tdir/$tfile-2
5086         mcreate $file || error "mcreate $file failed"
5087         cmd="$SETSTRIPE -o $ost_indices $file"
5088         echo -e "\n$cmd"
5089         eval $cmd || error "$cmd failed"
5090         dd if=/dev/urandom of=$file count=1 bs=1M > /dev/null 2>&1 ||
5091                 error "write $file failed"
5092         check_stripe_count $file $OSTCOUNT
5093         check_obdidx $file $ost_indices
5094
5095         # 3. If the file already has a valid layout attached, the command
5096         #    should fail with EBUSY.
5097         echo -e "\n$cmd"
5098         eval $cmd && error "stripe is already set on $file, $cmd should fail"
5099
5100         # 4. If [--stripe-index|-i <start_ost_idx>] is used, the index must
5101         #    be in the OST indices list.
5102         local start_ost_idx=${ost_indices##*,}
5103         file=$DIR/$tdir/$tfile-3
5104         cmd="$SETSTRIPE -o $ost_indices -i $start_ost_idx $file"
5105         echo -e "\n$cmd"
5106         eval $cmd || error "$cmd failed"
5107         check_stripe_count $file $OSTCOUNT
5108         check_obdidx $file $ost_indices
5109         check_start_ost_idx $file $start_ost_idx
5110
5111         file=$DIR/$tdir/$tfile-4
5112         cmd="$SETSTRIPE"
5113         cmd+=" -o $(exclude_items_from_list $ost_indices $start_ost_idx)"
5114         cmd+=" -i $start_ost_idx $file"
5115         echo -e "\n$cmd"
5116         eval $cmd && error "index $start_ost_idx should be in $ost_indices"
5117
5118         # 5. Specifying OST indices for directory should fail with ENOSUPP.
5119         local dir=$DIR/$tdir/$tdir
5120         mkdir $dir || error "mkdir $dir failed"
5121         cmd="$SETSTRIPE -o $ost_indices $dir"
5122         echo -e "\n$cmd"
5123         eval $cmd && error "$cmd should fail, specifying OST indices" \
5124                            "for directory is not supported"
5125
5126         restore_ostindex
5127 }
5128 run_test 82a "specify OSTs for file (succeed) or directory (fail)"
5129
5130 cleanup_82b() {
5131         trap 0
5132
5133         # Remove OSTs from a pool and destroy the pool.
5134         destroy_pool $ost_pool || true
5135
5136         restore_ostindex
5137 }
5138
5139 # Test 82b is run to ensure that if the user supplies a pool with a specific
5140 # stripe layout that it behaves proprerly. It should fail in the case that
5141 # the supplied OST index list points to OSTs not contained in the user
5142 # supplied pool.
5143 test_82b() { # LU-4665
5144         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.54) ]] ||
5145                 { skip "Need MDS version at least 2.6.54" && return; }
5146         [[ $OSTCOUNT -ge 4 ]] || { skip_env "Need at least 4 OSTs" && return; }
5147
5148         stopall
5149
5150         save_ostindex 4
5151
5152         # Format OSTs with random sparse indices.
5153         local i
5154         local index
5155         local ost_indices
5156         for i in $(seq $OSTCOUNT); do
5157                 index=$((RANDOM * 2))
5158                 ost_indices+=" $index"
5159         done
5160         ost_indices=$(comma_list $ost_indices)
5161
5162         trap "restore_ostindex" EXIT
5163         echo -e "\nFormat $OSTCOUNT OSTs with sparse indices $ost_indices"
5164         OST_INDEX_LIST=[$ost_indices] formatall
5165
5166         # Setup Lustre filesystem.
5167         start_mgsmds || error "start_mgsmds failed"
5168         for i in $(seq $OSTCOUNT); do
5169                 start ost$i $(ostdevname $i) $OST_MOUNT_OPTS ||
5170                         error "start ost$i failed"
5171         done
5172
5173         mount_client $MOUNT || error "mount client $MOUNT failed"
5174         wait_osts_up
5175         $LFS df $MOUNT || error "$LFS df $MOUNT failed"
5176         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
5177
5178         # Create a new pool and add OSTs into it.
5179         local ost_pool=$FSNAME.$TESTNAME
5180         create_pool $ost_pool || error "create OST pool $ost_pool failed"
5181
5182         trap - EXIT
5183         trap "cleanup_82b" EXIT
5184
5185         local ost_idx_in_list=${ost_indices##*,}
5186         local ost_idx_in_pool=$(exclude_items_from_list $ost_indices \
5187                                 $ost_idx_in_list)
5188
5189         local ost_targets="$FSNAME-OST["
5190         for i in ${ost_idx_in_pool//,/ }; do
5191                 ost_targets=$ost_targets$(printf "%04x," $i)
5192         done
5193         ost_targets="${ost_targets%,}]"
5194
5195         local ost_targets_uuid=$(for i in ${ost_idx_in_pool//,/ }; \
5196                                  do printf "$FSNAME-OST%04x_UUID\n" $i; done |
5197                                  sort -u | tr '\n' ' ')
5198
5199         local cmd="$LCTL pool_add $ost_pool $ost_targets"
5200         do_facet mgs $cmd || error "$cmd failed"
5201         wait_update $HOSTNAME "$LCTL get_param -n lov.$FSNAME-*.pools.$TESTNAME|
5202                                sort -u | tr '\n' ' ' " "$ost_targets_uuid" ||
5203                                         error "wait_update $ost_pool failed"
5204         pool_list $ost_pool || error "list OST pool $ost_pool failed"
5205
5206         # If [--pool|-p <pool_name>] is set with [--ost-list|-o <ost_indices>],
5207         # then the OSTs must be the members of the pool.
5208         local file=$DIR/$tdir/$tfile
5209         cmd="$SETSTRIPE -p $ost_pool -o $ost_idx_in_list $file"
5210         echo -e "\n$cmd"
5211         eval $cmd && error "OST with index $ost_idx_in_list should be" \
5212                            "in OST pool $ost_pool"
5213
5214         # Only select OST $ost_idx_in_list from $ost_pool for file.
5215         ost_idx_in_list=${ost_idx_in_pool#*,}
5216         cmd="$SETSTRIPE -p $ost_pool -o $ost_idx_in_list $file"
5217         echo -e "\n$cmd"
5218         eval $cmd || error "$cmd failed"
5219         cmd="$GETSTRIPE $file"
5220         echo -e "\n$cmd"
5221         eval $cmd || error "$cmd failed"
5222         check_stripe_count $file 2
5223         check_obdidx $file $ost_idx_in_list
5224         dd if=/dev/urandom of=$file count=1 bs=1M > /dev/null 2>&1 ||
5225                 error "write $file failed"
5226
5227         cleanup_82b
5228 }
5229 run_test 82b "specify OSTs for file with --pool and --ost-list options"
5230
5231 test_83() {
5232         local dev
5233         local ostmnt
5234         local fstype
5235         local mnt_opts
5236
5237         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
5238                 skip "Only applicable to ldiskfs-based MDTs"
5239                 return
5240         fi
5241
5242         dev=$(ostdevname 1)
5243         ostmnt=$(facet_mntpt ost1)
5244         fstype=$(facet_fstype ost1)
5245
5246         # Mount the OST as an ldiskfs filesystem.
5247         log "mount the OST $dev as a $fstype filesystem"
5248         add ost1 $(mkfs_opts ost1 $dev) $FSTYPE_OPT \
5249                 --reformat $dev $dev > /dev/null ||
5250                 error "format ost1 error"
5251
5252         if ! test -b $dev; then
5253                 mnt_opts=$(csa_add "$OST_MOUNT_OPTS" -o loop)
5254         fi
5255         echo "mnt_opts $mnt_opts"
5256         do_facet ost1 mount -t $fstype $dev \
5257                 $ostmnt $mnt_opts
5258         # Run llverfs on the mounted ldiskfs filesystem.
5259         # It is needed to get ENOSPACE.
5260         log "run llverfs in partial mode on the OST $fstype $ostmnt"
5261         do_rpc_nodes $(facet_host ost1) run_llverfs $ostmnt -vpl \
5262                 "no" || error "run_llverfs error on $fstype"
5263
5264         # Unmount the OST.
5265         log "unmount the OST $dev"
5266         stop ost1
5267
5268         # Delete file IO_scrub. Later osd_scrub_setup will try to
5269         # create "IO_scrub" but will get ENOSPACE.
5270         writeconf_all
5271         echo "start ost1 service on `facet_active_host ost1`"
5272         start ost1 `ostdevname 1` $OST_MOUNT_OPTS
5273
5274         local err
5275         err=$(do_facet ost1 dmesg | grep "VFS: Busy inodes after unmount of")
5276         echo "string err $err"
5277         [ -z "$err" ] || error $err
5278         reformat
5279 }
5280 run_test 83 "ENOSPACE on OST doesn't cause message VFS: \
5281 Busy inodes after unmount ..."
5282
5283 recovery_time_min() {
5284         local CONNECTION_SWITCH_MIN=5
5285         local CONNECTION_SWITCH_INC=5
5286         local CONNECTION_SWITCH_MAX
5287         local RECONNECT_DELAY_MAX
5288         local INITIAL_CONNECT_TIMEOUT
5289         local max
5290         local TO_20
5291
5292         #CONNECTION_SWITCH_MAX=min(50, max($CONNECTION_SWITCH_MIN,$TIMEOUT)
5293         (($CONNECTION_SWITCH_MIN>$TIMEOUT)) && \
5294                 max=$CONNECTION_SWITCH_MIN || max=$TIMEOUT
5295         (($max<50)) && CONNECTION_SWITCH_MAX=$max || CONNECTION_SWITCH_MAX=50
5296
5297         #INITIAL_CONNECT_TIMEOUT = max(CONNECTION_SWITCH_MIN, \
5298         #obd_timeout/20)
5299         TO_20=$(($TIMEOUT/20))
5300         (($CONNECTION_SWITCH_MIN>$TO_20)) && \
5301                 INITIAL_CONNECT_TIMEOUT=$CONNECTION_SWITCH_MIN || \
5302                 INITIAL_CONNECT_TIMEOUT=$TO_20
5303
5304         RECONNECT_DELAY_MAX=$(($CONNECTION_SWITCH_MAX+$CONNECTION_SWITCH_INC+ \
5305                                 $INITIAL_CONNECT_TIMEOUT))
5306         echo $((2*$RECONNECT_DELAY_MAX))
5307 }
5308
5309 test_84() {
5310         local facet=$SINGLEMDS
5311         local num=$(echo $facet | tr -d "mds")
5312         local dev=$(mdsdevname $num)
5313         local time_min=$(recovery_time_min)
5314         local recovery_duration
5315         local completed_clients
5316         local wrap_up=5
5317
5318         echo "start mds service on $(facet_active_host $facet)"
5319         start $facet ${dev} $MDS_MOUNT_OPTS \
5320             "-o recovery_time_hard=$time_min,recovery_time_soft=$time_min" $@ ||
5321                 error "start MDS failed"
5322
5323         start_ost
5324         start_ost2
5325
5326         echo "recovery_time=$time_min, timeout=$TIMEOUT, wrap_up=$wrap_up"
5327
5328         mount_client $MOUNT1 || error "mount failed"
5329         mount_client $MOUNT2 || error "mount failed"
5330
5331         replay_barrier $SINGLEMDS
5332         createmany -o $DIR1/$tfile-%d 1000
5333
5334         # We need to catch the end of recovery window to extend it.
5335         # Skip 5 requests and add delay to request handling.
5336         #define OBD_FAIL_TGT_REPLAY_DELAY  0x709 | FAIL_SKIP
5337         do_facet $SINGLEMDS "lctl set_param fail_loc=0x20000709 fail_val=5"
5338
5339         facet_failover $SINGLEMDS || error "failover: $?"
5340         client_up
5341
5342         echo "recovery status"
5343         do_facet $SINGLEMDS \
5344                 "$LCTL get_param -n mdt.$FSNAME-MDT0000.recovery_status"
5345
5346         recovery_duration=$(do_facet $SINGLEMDS \
5347                 "$LCTL get_param -n mdt.$FSNAME-MDT0000.recovery_status" |
5348                 awk '/recovery_duration/ { print $2 }')
5349         (( $recovery_duration > $time_min + $wrap_up )) &&
5350                 error "recovery_duration > recovery_time_hard + wrap up"
5351         completed_clients=$(do_facet $SINGLEMDS \
5352                 "$LCTL get_param -n mdt.$FSNAME-MDT0000.recovery_status" |
5353                 awk '/completed_clients/ { print $2 }')
5354         [ "$completed_clients" = "1/2" ] ||
5355                 error "completed_clients != 1/2: $completed_clients"
5356
5357         do_facet $SINGLEMDS "lctl set_param fail_loc=0"
5358         umount_client $MOUNT1
5359         umount_client $MOUNT2
5360
5361         stop_ost
5362         stop_ost2
5363         stop_mds
5364 }
5365 run_test 84 "check recovery_hard_time"
5366
5367 if ! combined_mgs_mds ; then
5368         stop mgs
5369 fi
5370
5371 cleanup_gss
5372
5373 # restore the values of MDSSIZE and OSTSIZE
5374 MDSSIZE=$STORED_MDSSIZE
5375 OSTSIZE=$STORED_OSTSIZE
5376 reformat
5377
5378 complete $SECONDS
5379 exit_status