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