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