Whamcloud - gitweb
LU-8922 lod: check master stripes 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-8972
8 ALWAYS_EXCEPT="$CONF_SANITY_EXCEPT 101"
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:
82         ALWAYS_EXCEPT="$ALWAYS_EXCEPT"
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 "modprobe zfs;
1753                                 $ZPOOL list -H $poolname >/dev/null 2>&1 ||
1754                                 $ZPOOL import -f -d $tmp $poolname"
1755                 done
1756
1757                 mdt_dev=t32fs-mdt1/mdt1
1758                 ost_dev=t32fs-ost1/ost1
1759                 ! $mdt2_is_available || mdt2_dev=t32fs-mdt2/mdt2
1760                 wait_update_facet $SINGLEMDS "$ZPOOL list |
1761                         awk '/^t32fs-mdt1/ { print \\\$1 }'" "t32fs-mdt1" || {
1762                                 error_noexit "import zfs pool failed"
1763                                 return 1
1764                         }
1765         fi
1766
1767         $r $LCTL set_param debug="$PTLDEBUG"
1768
1769         $r $TUNEFS --dryrun $mdt_dev || {
1770                 $r losetup -a
1771                 error_noexit "tunefs.lustre before mounting the MDT"
1772                 return 1
1773         }
1774
1775         if $mdt2_is_available; then
1776                 $r $TUNEFS --dryrun $mdt2_dev || {
1777                         $r losetup -a
1778                         error_noexit "tunefs.lustre before mounting the MDT"
1779                         return 1
1780                 }
1781         fi
1782
1783         if [ "$writeconf" ]; then
1784                 mopts=writeconf
1785                 if [ $fstype == "ldiskfs" ]; then
1786                         mopts="loop,$mopts"
1787                         $r $TUNEFS --quota $mdt_dev || {
1788                                 $r losetup -a
1789                                 error_noexit "Enable mdt quota feature"
1790                                 return 1
1791                         }
1792                         if $mdt2_is_available; then
1793                                 $r $TUNEFS --quota $mdt2_dev || {
1794                                         $r losetup -a
1795                                         error_noexit "Enable mdt quota feature"
1796                                         return 1
1797                                 }
1798                         fi
1799                 fi
1800         else
1801                 if [ -n "$($LCTL list_nids | grep -v '\(tcp\|lo\)[[:digit:]]*$')" ]; then
1802                         [[ $(lustre_version_code mgs) -ge $(version_code 2.3.59) ]] ||
1803                         { skip "LU-2200: Cannot run over Inifiniband w/o lctl replace_nids "
1804                                 "(Need MGS version at least 2.3.59)"; return 0; }
1805
1806                         local osthost=$(facet_active_host ost1)
1807                         local ostnid=$(do_node $osthost $LCTL list_nids | head -1)
1808
1809                         mopts=nosvc
1810                         if [ $fstype == "ldiskfs" ]; then
1811                                 mopts="loop,$mopts"
1812                         fi
1813                         $r $MOUNT_CMD -o $mopts $mdt_dev $tmp/mnt/mdt
1814                         $r $LCTL replace_nids $fsname-OST0000 $ostnid
1815                         $r $LCTL replace_nids $fsname-MDT0000 $nid
1816                         $r $UMOUNT $tmp/mnt/mdt
1817                 fi
1818
1819                 mopts=exclude=$fsname-OST0000
1820                 if [ $fstype == "ldiskfs" ]; then
1821                         mopts="loop,$mopts"
1822                 fi
1823         fi
1824
1825         t32_wait_til_devices_gone $node
1826
1827         $r $MOUNT_CMD -o $mopts $mdt_dev $tmp/mnt/mdt || {
1828                 $r losetup -a
1829                 error_noexit "Mounting the MDT"
1830                 return 1
1831         }
1832         shall_cleanup_mdt=true
1833
1834         if $mdt2_is_available; then
1835                 mopts=mgsnode=$nid,$mopts
1836                 $r $MOUNT_CMD -o $mopts $mdt2_dev $tmp/mnt/mdt1 || {
1837                         $r losetup -a
1838                         error_noexit "Mounting the MDT"
1839                         return 1
1840                 }
1841
1842                 echo "mount new MDT....$mdt2_dev"
1843                 $r $LCTL set_param -n mdt.${fsname}*.enable_remote_dir=1 ||
1844                         error_noexit "enable remote dir create failed"
1845
1846                 shall_cleanup_mdt1=true
1847         elif [ "$dne_upgrade" != "no" ]; then
1848                 local fs2mdsdev=$(mdsdevname 1_2)
1849                 local fs2mdsvdev=$(mdsvdevname 1_2)
1850
1851                 echo "mkfs new MDT on ${fs2mdsdev}...."
1852                 if [ $(facet_fstype mds1) == ldiskfs ]; then
1853                         mkfsoptions="--mkfsoptions=\\\"-J size=8\\\""
1854                 fi
1855
1856                 add fs2mds $(mkfs_opts mds2 $fs2mdsdev $fsname) --reformat \
1857                            $mkfsoptions $fs2mdsdev $fs2mdsvdev > /dev/null || {
1858                         error_noexit "Mkfs new MDT failed"
1859                         return 1
1860                 }
1861
1862                 [[ $(facet_fstype mds1) != zfs ]] || import_zpool fs2mds
1863
1864                 $r $TUNEFS --dryrun $fs2mdsdev || {
1865                         error_noexit "tunefs.lustre before mounting the MDT"
1866                         return 1
1867                 }
1868
1869                 echo "mount new MDT....$fs2mdsdev"
1870                 $r $MOUNT_CMD -o $mopts $fs2mdsdev $tmp/mnt/mdt1 || {
1871                         error_noexit "mount mdt1 failed"
1872                         return 1
1873                 }
1874
1875                 $r $LCTL set_param -n mdt.${fsname}*.enable_remote_dir=1 ||
1876                         error_noexit "enable remote dir create failed"
1877
1878                 shall_cleanup_mdt1=true
1879         fi
1880
1881         uuid=$($r $LCTL get_param -n mdt.$fsname-MDT0000.uuid) || {
1882                 error_noexit "Getting MDT UUID"
1883                 return 1
1884         }
1885         if [ "$uuid" != $fsname-MDT0000_UUID ]; then
1886                 error_noexit "Unexpected MDT UUID: \"$uuid\""
1887                 return 1
1888         fi
1889
1890         $r $TUNEFS --dryrun $ost_dev || {
1891                 error_noexit "tunefs.lustre before mounting the OST"
1892                 return 1
1893         }
1894         if [ "$writeconf" ]; then
1895                 mopts=mgsnode=$nid,$writeconf
1896                 if [ $fstype == "ldiskfs" ]; then
1897                         mopts="loop,$mopts"
1898                         $r $TUNEFS --quota $ost_dev || {
1899                                 $r losetup -a
1900                                 error_noexit "Enable ost quota feature"
1901                                 return 1
1902                         }
1903                 fi
1904         else
1905                 mopts=mgsnode=$nid
1906                 if [ $fstype == "ldiskfs" ]; then
1907                         mopts="loop,$mopts"
1908                 fi
1909         fi
1910         $r $MOUNT_CMD -o $mopts $ost_dev $tmp/mnt/ost || {
1911                 error_noexit "Mounting the OST"
1912                 return 1
1913         }
1914         shall_cleanup_ost=true
1915
1916         uuid=$($r $LCTL get_param -n obdfilter.$fsname-OST0000.uuid) || {
1917                 error_noexit "Getting OST UUID"
1918                 return 1
1919         }
1920         if [ "$uuid" != $fsname-OST0000_UUID ]; then
1921                 error_noexit "Unexpected OST UUID: \"$uuid\""
1922                 return 1
1923         fi
1924
1925         $r $LCTL conf_param $fsname-OST0000.osc.max_dirty_mb=15 || {
1926                 error_noexit "Setting \"max_dirty_mb\""
1927                 return 1
1928         }
1929         $r $LCTL conf_param $fsname-OST0000.failover.node=$nid || {
1930                 error_noexit "Setting OST \"failover.node\""
1931                 return 1
1932         }
1933         $r $LCTL conf_param $fsname-MDT0000.mdc.max_rpcs_in_flight=9 || {
1934                 error_noexit "Setting \"max_rpcs_in_flight\""
1935                 return 1
1936         }
1937         $r $LCTL conf_param $fsname-MDT0000.failover.node=$nid || {
1938                 error_noexit "Setting MDT \"failover.node\""
1939                 return 1
1940         }
1941         $r $LCTL pool_new $fsname.interop || {
1942                 error_noexit "Setting \"interop\""
1943                 return 1
1944         }
1945         $r $LCTL conf_param $fsname-MDT0000.lov.stripesize=4M || {
1946                 error_noexit "Setting \"lov.stripesize\""
1947                 return 1
1948         }
1949         $r $LCTL conf_param $fsname-MDT0000.mdd.atime_diff=70 || {
1950                 error_noexit "Setting \"mdd.atime_diff\""
1951                 return 1
1952         }
1953
1954         if [ "$ff_convert" != "no" -a $(facet_fstype ost1) == "ldiskfs" ]; then
1955                 $r $LCTL lfsck_start -M $fsname-OST0000 || {
1956                         error_noexit "Start OI scrub on OST0"
1957                         return 1
1958                 }
1959
1960                 # The oi_scrub should be on ost1, but for test_32(),
1961                 # all on the SINGLEMDS.
1962                 wait_update_facet $SINGLEMDS "$LCTL get_param -n \
1963                         osd-ldiskfs.$fsname-OST0000.oi_scrub |
1964                         awk '/^status/ { print \\\$2 }'" "completed" 30 || {
1965                         error_noexit "Failed to get the expected 'completed'"
1966                         return 1
1967                 }
1968
1969                 local UPDATED=$($r $LCTL get_param -n \
1970                                 osd-ldiskfs.$fsname-OST0000.oi_scrub |
1971                                 awk '/^updated/ { print $2 }')
1972                 [ $UPDATED -ge 1 ] || {
1973                         error_noexit "Only $UPDATED objects have been converted"
1974                         return 1
1975                 }
1976         fi
1977
1978         if [ "$dne_upgrade" != "no" ]; then
1979                 $r $LCTL conf_param \
1980                                 $fsname-MDT0001.mdc.max_rpcs_in_flight=9 || {
1981                         error_noexit "Setting MDT1 \"max_rpcs_in_flight\""
1982                         return 1
1983                 }
1984                 $r $LCTL conf_param $fsname-MDT0001.failover.node=$nid || {
1985                         error_noexit "Setting MDT1 \"failover.node\""
1986                         return 1
1987                 }
1988                 $r $LCTL conf_param $fsname-MDT0001.lov.stripesize=4M || {
1989                         error_noexit "Setting MDT1 \"lov.stripesize\""
1990                         return 1
1991                 }
1992         fi
1993
1994         if [ "$writeconf" ]; then
1995                 $MOUNT_CMD $nid:/$fsname $tmp/mnt/lustre || {
1996                         error_noexit "Mounting the client"
1997                         return 1
1998                 }
1999
2000                 shall_cleanup_lustre=true
2001                 $r $LCTL set_param debug="$PTLDEBUG"
2002
2003                 t32_verify_quota $node $fsname $tmp/mnt/lustre || {
2004                         error_noexit "verify quota failed"
2005                         return 1
2006                 }
2007
2008                 if $r test -f $tmp/list; then
2009                         #
2010                         # There is not a Test Framework API to copy files to or
2011                         # from a remote node.
2012                         #
2013                         # LU-2393 - do both sorts on same node to ensure locale
2014                         # is identical
2015                         local list_file=$tmp/list
2016
2017                         if $mdt2_is_available; then
2018                                 if [[ -d $tmp/mnt/lustre/striped_dir_old ]] &&
2019                                    $r test -f $tmp/list2; then
2020                                         list_file=$tmp/list2
2021                                         pushd $tmp/mnt/lustre/striped_dir_old
2022                                 else
2023                                         pushd $tmp/mnt/lustre/remote_dir
2024                                 fi
2025                         else
2026                                 pushd $tmp/mnt/lustre
2027                         fi
2028                         $r cat $list_file | sort -k 6 >$tmp/list.orig
2029                         ls -Rni --time-style=+%s | sort -k 6 |
2030                                 sed 's/\. / /' >$tmp/list || {
2031                                 error_noexit "ls"
2032                                 return 1
2033                         }
2034                         popd
2035                         #
2036                         # 32-bit and 64-bit clients use different algorithms to
2037                         # convert FIDs into inode numbers.  Hence, remove the
2038                         # inode numbers from the lists, if the original list was
2039                         # created on an architecture with different number of
2040                         # bits per "long".
2041                         #
2042                         if [ $(t32_bits_per_long $(uname -m)) != \
2043                                 $(t32_bits_per_long $img_arch) ]; then
2044                                 echo "Different number of bits per \"long\"" \
2045                                      "from the disk image"
2046                                 for list in list.orig list; do
2047                                         sed -i -e 's/^[0-9]\+[ \t]\+//' \
2048                                                   $tmp/$list
2049                                 done
2050                         fi
2051                         if ! diff -ub $tmp/list.orig $tmp/list; then
2052                                 error_noexit "list verification failed"
2053                                 return 1
2054                         fi
2055                 else
2056                         echo "list verification skipped"
2057                 fi
2058
2059                 if [ "$dne_upgrade" != "no" ]; then
2060                         $LFS mkdir -i 1 -c2 $tmp/mnt/lustre/striped_dir || {
2061                                 error_noexit "set striped dir failed"
2062                                 return 1
2063                         }
2064
2065                         $LFS setdirstripe -D -c2 $tmp/mnt/lustre/striped_dir
2066
2067                         pushd $tmp/mnt/lustre
2068                         tar -cf - . --exclude=./striped_dir \
2069                                     --exclude=./striped_dir_old \
2070                                     --exclude=./remote_dir |
2071                                 tar -xvf - -C striped_dir 1>/dev/null || {
2072                                 error_noexit "cp to striped dir failed"
2073                                 return 1
2074                         }
2075                         popd
2076                 fi
2077
2078                 # If it is upgrade from DNE (2.5), then rename the remote dir,
2079                 # which is created in 2.5 to striped dir.
2080                 if $mdt2_is_available && [[ "$dne_upgrade" != "no" ]]; then
2081                         stripe_index=$($LFS getdirstripe -i     \
2082                                        $tmp/mnt/lustre/remote_dir)
2083
2084                         [[ $stripe_index -eq 1 ]] || {
2085                                 error_noexit "get index \"$stripe_index\"" \
2086                                              "from remote dir failed"
2087                                 return 1
2088                         }
2089                         mv $tmp/mnt/lustre/remote_dir   \
2090                                 $tmp/mnt/lustre/striped_dir/ || {
2091                                 error_noexit "mv remote dir failed"
2092                                 return 1
2093                         }
2094                 fi
2095
2096                 # If it is upgraded from DNE (2.7), then move the striped dir
2097                 # which was created in 2.7 to the new striped dir.
2098                 if $mdt2_is_available && [[ "$dne_upgrade" != "no" ]] &&
2099                         [[ -d $tmp/mnt/lustre/striped_dir_old ]]; then
2100                         stripe_count=$($LFS getdirstripe -c     \
2101                                        $tmp/mnt/lustre/striped_dir_old)
2102                         [[ $stripe_count -eq 2 ]] || {
2103                                 error_noexit "get count $stripe_count" \
2104                                              "from striped dir failed"
2105                                 return 1
2106                         }
2107                         mv $tmp/mnt/lustre/striped_dir_old      \
2108                                 $tmp/mnt/lustre/striped_dir/ || {
2109                                 error_noexit "mv striped dir failed"
2110                                 return 1
2111                         }
2112                 fi
2113
2114                 sync; sleep 5; sync
2115                 $r $LCTL set_param -n osd*.*.force_sync=1
2116                 dd if=/dev/zero of=$tmp/mnt/lustre/tmp_file bs=10k count=10 || {
2117                         error_noexit "dd failed"
2118                         return 1
2119                 }
2120                 rm -rf $tmp/mnt/lustre/tmp_file || {
2121                         error_noexit "rm failed"
2122                         return 1
2123                 }
2124
2125                 if $r test -f $tmp/sha1sums; then
2126                         # LU-2393 - do both sorts on same node to ensure locale
2127                         # is identical
2128                         $r cat $tmp/sha1sums | sort -k 2 >$tmp/sha1sums.orig
2129                         if [ "$dne_upgrade" != "no" ]; then
2130                                 pushd $tmp/mnt/lustre/striped_dir
2131                         else
2132                                 pushd $tmp/mnt/lustre
2133                         fi
2134
2135                         find ! -path "*remote_dir*" ! -path "*striped_dir*" \
2136                                 ! -name .lustre -type f -exec sha1sum {} \; |
2137                                 sort -k 2 >$tmp/sha1sums || {
2138                                 popd
2139                                 error_noexit "sha1sum"
2140                                 return 1
2141                         }
2142                         popd
2143                         if ! diff -ub $tmp/sha1sums.orig $tmp/sha1sums; then
2144                                 error_noexit "sha1sum verification failed"
2145                                 return 1
2146                         fi
2147
2148                         # if upgrade from DNE(2.5), then check remote directory
2149                         # if upgrade from DNE(2.7), then check striped directory
2150                         if $mdt2_is_available &&
2151                            [[ "$dne_upgrade" != "no" ]]; then
2152                                 local new_dir="$tmp/mnt/lustre/striped_dir"
2153                                 local striped_dir_old="$new_dir/striped_dir_old"
2154
2155                                 local dir_list="$new_dir/remote_dir"
2156                                 [[ ! -d $triped_dir_old ]] ||
2157                                         dir_list+=" $striped_dir_old"
2158
2159                                 for dir in $dir_list; do
2160                                         pushd $dir
2161                                         find ! -name .lustre -type f    \
2162                                                 -exec sha1sum {} \; |
2163                                                 sort -k 2 >$tmp/sha1sums || {
2164                                                         popd
2165                                                         error_noexit "sha1sum"
2166                                                         return 1
2167                                                 }
2168                                         popd
2169                                         if ! diff -ub $tmp/sha1sums.orig \
2170                                                 $tmp/sha1sums; then
2171                                                 error_noexit "sha1sum $dir" \
2172                                                              "failed"
2173                                                 return 1
2174                                         fi
2175                                 done
2176                         fi
2177                 else
2178                         echo "sha1sum verification skipped"
2179                 fi
2180
2181                 if [ "$dne_upgrade" != "no" ]; then
2182                         rm -rf $tmp/mnt/lustre/striped_dir || {
2183                                 error_noexit "remove remote dir failed"
2184                                 return 1
2185                         }
2186                 fi
2187
2188                 # migrate files/dirs to remote MDT, then move them back
2189                 if [ $(lustre_version_code mds1) -ge $(version_code 2.7.50) -a \
2190                      $dne_upgrade != "no" ]; then
2191                         $r $LCTL set_param -n   \
2192                                 mdt.${fsname}*.enable_remote_dir=1 2>/dev/null
2193
2194                         echo "test migration"
2195                         pushd $tmp/mnt/lustre
2196                         for dir in $(find ! -name .lustre ! -name . -type d); do
2197                                 mdt_index=$($LFS getdirstripe -i $dir)
2198                                 stripe_cnt=$($LFS getdirstripe -c $dir)
2199                                 if [ $mdt_index = 0 -a $stripe_cnt -le 1 ]; then
2200                                         $LFS mv -M 1 $dir || {
2201                                         popd
2202                                         error_noexit "migrate MDT1 failed"
2203                                         return 1
2204                                 }
2205                                 fi
2206                         done
2207
2208                         for dir in $(find ! -name . ! -name .lustre -type d); do
2209                                 mdt_index=$($LFS getdirstripe -i $dir)
2210                                 stripe_cnt=$($LFS getdirstripe -c $dir)
2211                                 if [ $mdt_index = 1 -a $stripe_cnt -le 1 ]; then
2212                                         $LFS mv -M 0 $dir || {
2213                                         popd
2214                                         error_noexit "migrate MDT0 failed"
2215                                         return 1
2216                                 }
2217                                 fi
2218                         done
2219                         popd
2220                 fi
2221
2222                 #
2223                 # When adding new data verification tests, please check for
2224                 # the presence of the required reference files first, like
2225                 # the "sha1sums" and "list" tests above, to avoid the need to
2226                 # regenerate every image for each test addition.
2227                 #
2228
2229                 nrpcs_orig=$($LCTL get_param \
2230                                 -n mdc.*MDT0000*.max_rpcs_in_flight) || {
2231                         error_noexit "Getting \"max_rpcs_in_flight\""
2232                         return 1
2233                 }
2234                 nrpcs=$((nrpcs_orig + 5))
2235                 $r $LCTL conf_param $fsname-MDT0000.mdc.max_rpcs_in_flight=$nrpcs || {
2236                         error_noexit "Changing \"max_rpcs_in_flight\""
2237                         return 1
2238                 }
2239                 wait_update $HOSTNAME "$LCTL get_param \
2240                         -n mdc.*MDT0000*.max_rpcs_in_flight" $nrpcs || {
2241                         error_noexit "Verifying \"max_rpcs_in_flight\""
2242                         return 1
2243                 }
2244
2245                 umount $tmp/mnt/lustre || {
2246                         error_noexit "Unmounting the client"
2247                         return 1
2248                 }
2249                 shall_cleanup_lustre=false
2250         else
2251                 if [[ "$dne_upgrade" != "no" ]] || $mdt2_is_available; then
2252                         $r $UMOUNT $tmp/mnt/mdt1 || {
2253                                 error_noexit "Unmounting the MDT2"
2254                                 return 1
2255                         }
2256                         shall_cleanup_mdt1=false
2257                 fi
2258
2259                 $r $UMOUNT $tmp/mnt/mdt || {
2260                         error_noexit "Unmounting the MDT"
2261                         return 1
2262                 }
2263                 shall_cleanup_mdt=false
2264
2265                 $r $UMOUNT $tmp/mnt/ost || {
2266                         error_noexit "Unmounting the OST"
2267                         return 1
2268                 }
2269                 shall_cleanup_ost=false
2270
2271                 t32_reload_modules $node || {
2272                         error_noexit "Reloading modules"
2273                         return 1
2274                 }
2275
2276                 if [[ $fstype == zfs ]]; then
2277                         local poolname=t32fs-mdt1
2278                         $r "modprobe zfs;
2279                                 $ZPOOL list -H $poolname >/dev/null 2>&1 ||
2280                                 $ZPOOL import -f -d $tmp $poolname"
2281                 fi
2282
2283                 # mount a second time to make sure we didnt leave upgrade flag on
2284                 $r $TUNEFS --dryrun $mdt_dev || {
2285                         $r losetup -a
2286                         error_noexit "tunefs.lustre before remounting the MDT"
2287                         return 1
2288                 }
2289
2290                 mopts=exclude=$fsname-OST0000
2291                 if [ $fstype == "ldiskfs" ]; then
2292                         mopts="loop,$mopts"
2293                 fi
2294                 $r $MOUNT_CMD -o $mopts $mdt_dev $tmp/mnt/mdt || {
2295                         error_noexit "Remounting the MDT"
2296                         return 1
2297                 }
2298                 shall_cleanup_mdt=true
2299         fi
2300 }
2301
2302 test_32a() {
2303         local tarballs
2304         local tarball
2305         local rc=0
2306
2307         t32_check
2308         for tarball in $tarballs; do
2309                 t32_test $tarball || let "rc += $?"
2310         done
2311         return $rc
2312 }
2313 run_test 32a "Upgrade (not live)"
2314
2315 test_32b() {
2316         local tarballs
2317         local tarball
2318         local rc=0
2319
2320         t32_check
2321         for tarball in $tarballs; do
2322                 t32_test $tarball writeconf || let "rc += $?"
2323         done
2324         return $rc
2325 }
2326 run_test 32b "Upgrade with writeconf"
2327
2328 test_32c() {
2329         local tarballs
2330         local tarball
2331         local rc=0
2332
2333         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2334         t32_check
2335         for tarball in $tarballs; do
2336                 # Do not support 1_8 and 2_1 direct upgrade to DNE2 anymore */
2337                 echo $tarball | grep "1_8" && continue
2338                 echo $tarball | grep "2_1" && continue
2339                 load_modules
2340                 dne_upgrade=yes t32_test $tarball writeconf || rc=$?
2341         done
2342         return $rc
2343 }
2344 run_test 32c "dne upgrade test"
2345
2346 test_32d() {
2347         local tarballs
2348         local tarball
2349         local rc=0
2350
2351         t32_check
2352         for tarball in $tarballs; do
2353                 ff_convert=yes t32_test $tarball || rc=$?
2354         done
2355         return $rc
2356 }
2357 run_test 32d "convert ff test"
2358
2359 test_33a() { # bug 12333, was test_33
2360         local FSNAME2=test-123
2361         local MDSDEV=$(mdsdevname ${SINGLEMDS//mds/})
2362         local mkfsoptions
2363
2364         [ -n "$ost1_HOST" ] && fs2ost_HOST=$ost1_HOST
2365
2366         if [ -z "$fs2ost_DEV" -o -z "$fs2mds_DEV" ]; then
2367                 local dev=${SINGLEMDS}_dev
2368                 local MDSDEV=${!dev}
2369                 is_blkdev $SINGLEMDS $MDSDEV &&
2370                         skip_env "mixed loopback and real device not working" &&
2371                         return
2372         fi
2373
2374         local fs2mdsdev=$(mdsdevname 1_2)
2375         local fs2ostdev=$(ostdevname 1_2)
2376         local fs2mdsvdev=$(mdsvdevname 1_2)
2377         local fs2ostvdev=$(ostvdevname 1_2)
2378
2379         if [ $(facet_fstype mds1) == ldiskfs ]; then
2380                 mkfsoptions="--mkfsoptions=\\\"-J size=8\\\"" # See bug 17931.
2381         fi
2382
2383         add fs2mds $(mkfs_opts mds1 ${fs2mdsdev}) --mgs --fsname=${FSNAME2} \
2384                 --reformat $mkfsoptions $fs2mdsdev $fs2mdsvdev || exit 10
2385         add fs2ost $(mkfs_opts ost1 ${fs2ostdev}) --mgsnode=$MGSNID \
2386                 --fsname=${FSNAME2} --index=8191 --reformat $fs2ostdev \
2387                 $fs2ostvdev || exit 10
2388
2389         start fs2mds $fs2mdsdev $MDS_MOUNT_OPTS && trap cleanup_fs2 EXIT INT
2390         start fs2ost $fs2ostdev $OST_MOUNT_OPTS
2391         do_facet $SINGLEMDS "$LCTL conf_param $FSNAME2.sys.timeout=200" ||
2392                 error "$LCTL conf_param $FSNAME2.sys.timeout=200 failed"
2393         mkdir -p $MOUNT2 || error "mkdir $MOUNT2 failed"
2394         $MOUNT_CMD $MGSNID:/${FSNAME2} $MOUNT2 || error "$MOUNT_CMD failed"
2395         echo "ok."
2396
2397         cp /etc/hosts $MOUNT2/ || error "copy /etc/hosts $MOUNT2/ failed"
2398         $GETSTRIPE $MOUNT2/hosts || error "$GETSTRIPE $MOUNT2/hosts failed"
2399
2400         umount $MOUNT2
2401         stop fs2ost -f
2402         stop fs2mds -f
2403         cleanup_nocli || error "cleanup_nocli failed with $?"
2404 }
2405 run_test 33a "Mount ost with a large index number"
2406
2407 test_33b() {    # was test_34
2408         setup
2409
2410         do_facet client dd if=/dev/zero of=$MOUNT/24 bs=1024k count=1
2411         # Drop lock cancelation reply during umount
2412         #define OBD_FAIL_LDLM_CANCEL_NET                        0x304
2413         do_facet client $LCTL set_param fail_loc=0x80000304
2414         #lctl set_param debug=-1
2415         umount_client $MOUNT
2416         cleanup || error "cleanup failed with $?"
2417 }
2418 run_test 33b "Drop cancel during umount"
2419
2420 test_34a() {
2421         setup
2422         do_facet client "sh runmultiop_bg_pause $DIR/file O_c"
2423         manual_umount_client
2424         rc=$?
2425         do_facet client killall -USR1 multiop
2426         if [ $rc -eq 0 ]; then
2427                 error "umount not fail!"
2428         fi
2429         sleep 1
2430         cleanup || error "cleanup failed with rc $?"
2431 }
2432 run_test 34a "umount with opened file should be fail"
2433
2434 test_34b() {
2435         setup
2436         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
2437         stop_mds || error "Unable to stop MDS"
2438
2439         manual_umount_client --force || error "mtab after failed umount with $?"
2440
2441         cleanup || error "cleanup failed with $?"
2442 }
2443 run_test 34b "force umount with failed mds should be normal"
2444
2445 test_34c() {
2446         setup
2447         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
2448         stop_ost || error "Unable to stop OST1"
2449
2450         manual_umount_client --force || error "mtab after failed umount with $?"
2451
2452         cleanup || error "cleanup failed with $?"
2453 }
2454 run_test 34c "force umount with failed ost should be normal"
2455
2456 test_35a() { # bug 12459
2457         setup
2458
2459         DBG_SAVE="`$LCTL get_param -n debug`"
2460         $LCTL set_param debug="ha"
2461
2462         log "Set up a fake failnode for the MDS"
2463         FAKENID="127.0.0.2"
2464         local device=$(do_facet $SINGLEMDS "$LCTL get_param -n devices" |
2465                 awk '($3 ~ "mdt" && $4 ~ "MDT") { print $4 }' | head -1)
2466         do_facet mgs "$LCTL conf_param \
2467                       ${device}.failover.node=$(h2$NETTYPE $FAKENID)" ||
2468                 error "Setting ${device}.failover.node=\
2469                        $(h2$NETTYPE $FAKENID) failed."
2470
2471         log "Wait for RECONNECT_INTERVAL seconds (10s)"
2472         sleep 10
2473
2474         MSG="conf-sanity.sh test_35a `date +%F%kh%Mm%Ss`"
2475         $LCTL clear
2476         log "$MSG"
2477         log "Stopping the MDT: $device"
2478         stop_mdt 1 || error "MDT0 stop fail"
2479
2480         df $MOUNT > /dev/null 2>&1 &
2481         DFPID=$!
2482         log "Restarting the MDT: $device"
2483         start_mdt 1 || error "MDT0 start fail"
2484         log "Wait for df ($DFPID) ... "
2485         wait $DFPID
2486         log "done"
2487         $LCTL set_param debug="$DBG_SAVE"
2488
2489         # retrieve from the log the first server that the client tried to
2490         # contact after the connection loss
2491         $LCTL dk $TMP/lustre-log-$TESTNAME.log
2492         NEXTCONN=`awk "/${MSG}/ {start = 1;}
2493                        /import_select_connection.*$device-mdc.* using connection/ {
2494                                 if (start) {
2495                                         if (\\\$NF ~ /$FAKENID/)
2496                                                 print \\\$NF;
2497                                         else
2498                                                 print 0;
2499                                         exit;
2500                                 }
2501                        }" $TMP/lustre-log-$TESTNAME.log`
2502         [ "$NEXTCONN" != "0" ] &&
2503                 error "Tried to connect to ${NEXTCONN} not last active server"
2504         cleanup || error "cleanup failed with $?"
2505         # remove nid settings
2506         writeconf_or_reformat
2507 }
2508 run_test 35a "Reconnect to the last active server first"
2509
2510 test_35b() { # bug 18674
2511         remote_mds || { skip "local MDS" && return 0; }
2512         setup
2513
2514         debugsave
2515         $LCTL set_param debug="ha"
2516         $LCTL clear
2517         MSG="conf-sanity.sh test_35b `date +%F%kh%Mm%Ss`"
2518         log "$MSG"
2519
2520         log "Set up a fake failnode for the MDS"
2521         FAKENID="127.0.0.2"
2522         local device=$(do_facet $SINGLEMDS "$LCTL get_param -n devices" |
2523                 awk '($3 ~ "mdt" && $4 ~ "MDT") { print $4 }' | head -1)
2524         do_facet mgs "$LCTL conf_param \
2525                       ${device}.failover.node=$(h2$NETTYPE $FAKENID)" ||
2526                 error "Set ${device}.failover.node=\
2527                        $(h2$NETTYPE $FAKENID) failed"
2528
2529         local at_max_saved=0
2530         # adaptive timeouts may prevent seeing the issue
2531         if at_is_enabled; then
2532                 at_max_saved=$(at_max_get mds)
2533                 at_max_set 0 mds client
2534         fi
2535
2536         mkdir $MOUNT/$tdir || error "mkdir $MOUNT/$tdir failed"
2537
2538         log "Injecting EBUSY on MDS"
2539         # Setting OBD_FAIL_MDS_RESEND=0x136
2540         do_facet $SINGLEMDS "$LCTL set_param fail_loc=0x80000136" ||
2541                 error "unable to set param fail_loc=0x80000136"
2542
2543         $LCTL set_param mdc.${FSNAME}*.stats=clear
2544
2545         log "Creating a test file and stat it"
2546         touch $MOUNT/$tdir/$tfile || error "touch $MOUNT/$tdir/$tfile failed"
2547         stat $MOUNT/$tdir/$tfile
2548
2549         log "Stop injecting EBUSY on MDS"
2550         do_facet $SINGLEMDS "$LCTL set_param fail_loc=0" ||
2551                 error "unable to set param fail_loc=0"
2552         rm -f $MOUNT/$tdir/$tfile || error "remove $MOUNT/$tdir/$tfile failed"
2553
2554         log "done"
2555         # restore adaptive timeout
2556         [ $at_max_saved -ne 0 ] && at_max_set $at_max_saved mds client
2557
2558         $LCTL dk $TMP/lustre-log-$TESTNAME.log
2559
2560         CONNCNT=$($LCTL get_param mdc.${FSNAME}*.stats |
2561                   awk '/mds_connect/{print $2}')
2562
2563         # retrieve from the log if the client has ever tried to
2564         # contact the fake server after the loss of connection
2565         FAILCONN=`awk "BEGIN {ret = 0;}
2566                        /import_select_connection.*${FSNAME}-MDT0000-mdc.* using connection/ {
2567                                 ret = 1;
2568                                 if (\\\$NF ~ /$FAKENID/) {
2569                                         ret = 2;
2570                                         exit;
2571                                 }
2572                        }
2573                        END {print ret}" $TMP/lustre-log-$TESTNAME.log`
2574
2575         [ "$FAILCONN" == "0" ] &&
2576                 error "The client reconnection has not been triggered"
2577         [ "$FAILCONN" == "2" ] &&
2578                 error "Primary server busy, client reconnect to failover failed"
2579
2580         # LU-290
2581         # When OBD_FAIL_MDS_RESEND is hit, we sleep for 2 * obd_timeout
2582         # Reconnects are supposed to be rate limited to one every 5s
2583         [ $CONNCNT -gt $((2 * $TIMEOUT / 5 + 1)) ] &&
2584                 error "Too many reconnects $CONNCNT"
2585
2586         cleanup || error "cleanup failed with $?"
2587         # remove nid settings
2588         writeconf_or_reformat
2589 }
2590 run_test 35b "Continue reconnection retries, if the active server is busy"
2591
2592 test_36() { # 12743
2593         [ $OSTCOUNT -lt 2 ] && skip_env "skipping test for single OST" && return
2594
2595         [ "$ost_HOST" = "`hostname`" -o "$ost1_HOST" = "`hostname`" ] ||
2596                 { skip "remote OST" && return 0; }
2597
2598         local rc=0
2599         local FSNAME2=test1234
2600         local MDSDEV=$(mdsdevname ${SINGLEMDS//mds/})
2601
2602         [ -n "$ost1_HOST" ] && fs2ost_HOST=$ost1_HOST && fs3ost_HOST=$ost1_HOST
2603
2604         if [ -z "$fs2ost_DEV" -o -z "$fs2mds_DEV" -o -z "$fs3ost_DEV" ]; then
2605                 is_blkdev $SINGLEMDS $MDSDEV &&
2606                 skip_env "mixed loopback and real device not working" && return
2607         fi
2608
2609         local fs2mdsdev=$(mdsdevname 1_2)
2610         local fs2ostdev=$(ostdevname 1_2)
2611         local fs3ostdev=$(ostdevname 2_2)
2612         local fs2mdsvdev=$(mdsvdevname 1_2)
2613         local fs2ostvdev=$(ostvdevname 1_2)
2614         local fs3ostvdev=$(ostvdevname 2_2)
2615
2616         add fs2mds $(mkfs_opts mds1 ${fs2mdsdev}) --mgs --fsname=${FSNAME2} \
2617                 --reformat $fs2mdsdev $fs2mdsvdev || exit 10
2618         # XXX after we support non 4K disk blocksize in ldiskfs, specify a
2619         #     different one than the default value here.
2620         add fs2ost $(mkfs_opts ost1 ${fs2ostdev}) --mgsnode=$MGSNID \
2621                 --fsname=${FSNAME2} --reformat $fs2ostdev $fs2ostvdev || exit 10
2622         add fs3ost $(mkfs_opts ost2 ${fs3ostdev}) --mgsnode=$MGSNID \
2623                 --fsname=${FSNAME2} --reformat $fs3ostdev $fs3ostvdev || exit 10
2624
2625         start fs2mds $fs2mdsdev $MDS_MOUNT_OPTS
2626         start fs2ost $fs2ostdev $OST_MOUNT_OPTS
2627         start fs3ost $fs3ostdev $OST_MOUNT_OPTS
2628         mkdir -p $MOUNT2 || error "mkdir $MOUNT2 failed"
2629         $MOUNT_CMD $MGSNID:/${FSNAME2} $MOUNT2 || error "$MOUNT_CMD failed"
2630
2631         sleep 5 # until 11778 fixed
2632
2633         dd if=/dev/zero of=$MOUNT2/$tfile bs=1M count=7 || error "dd failed"
2634
2635         BKTOTAL=$($LCTL get_param -n obdfilter.*.kbytestotal |
2636                   awk 'BEGIN{total=0}; {total+=$1}; END{print total}')
2637         BKFREE=$($LCTL get_param -n obdfilter.*.kbytesfree |
2638                  awk 'BEGIN{free=0}; {free+=$1}; END{print free}')
2639         BKAVAIL=$($LCTL get_param -n obdfilter.*.kbytesavail |
2640                   awk 'BEGIN{avail=0}; {avail+=$1}; END{print avail}')
2641         STRING=$(df -P $MOUNT2 | tail -n 1 | awk '{print $2","$3","$4}')
2642         DFTOTAL=$(echo $STRING | cut -d, -f1)
2643         DFUSED=$(echo $STRING  | cut -d, -f2)
2644         DFAVAIL=$(echo $STRING | cut -d, -f3)
2645         DFFREE=$(($DFTOTAL - $DFUSED))
2646
2647         ALLOWANCE=$((64 * $OSTCOUNT))
2648
2649         if [ $DFTOTAL -lt $(($BKTOTAL - $ALLOWANCE)) ] ||
2650            [ $DFTOTAL -gt $(($BKTOTAL + $ALLOWANCE)) ] ; then
2651                 echo "**** FAIL: df total($DFTOTAL) mismatch OST total($BKTOTAL)"
2652                 rc=1
2653         fi
2654         if [ $DFFREE -lt $(($BKFREE - $ALLOWANCE)) ] ||
2655            [ $DFFREE -gt $(($BKFREE + $ALLOWANCE)) ] ; then
2656                 echo "**** FAIL: df free($DFFREE) mismatch OST free($BKFREE)"
2657                 rc=2
2658         fi
2659         if [ $DFAVAIL -lt $(($BKAVAIL - $ALLOWANCE)) ] ||
2660            [ $DFAVAIL -gt $(($BKAVAIL + $ALLOWANCE)) ] ; then
2661                 echo "**** FAIL: df avail($DFAVAIL) mismatch OST avail($BKAVAIL)"
2662                 rc=3
2663        fi
2664
2665         $UMOUNT $MOUNT2
2666         stop fs3ost -f || error "unable to stop OST3"
2667         stop fs2ost -f || error "unable to stop OST2"
2668         stop fs2mds -f || error "unable to stop second MDS"
2669         unload_modules_conf || error "unable unload modules"
2670         return $rc
2671 }
2672 run_test 36 "df report consistency on OSTs with different block size"
2673
2674 test_37() {
2675         local mntpt=$(facet_mntpt $SINGLEMDS)
2676         local mdsdev=$(mdsdevname ${SINGLEMDS//mds/})
2677         local mdsdev_sym="$TMP/sym_mdt.img"
2678         local opts=$MDS_MOUNT_OPTS
2679         local rc=0
2680
2681         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
2682                 skip "Currently only applicable to ldiskfs-based MDTs"
2683                 return
2684         fi
2685
2686         echo "MDS :     $mdsdev"
2687         echo "SYMLINK : $mdsdev_sym"
2688         do_facet $SINGLEMDS rm -f $mdsdev_sym
2689
2690         do_facet $SINGLEMDS ln -s $mdsdev $mdsdev_sym
2691
2692         echo "mount symlink device - $mdsdev_sym"
2693
2694         if ! do_facet $SINGLEMDS test -b $mdsdev; then
2695                 opts=$(csa_add "$opts" -o loop)
2696         fi
2697         mount_op=$(do_facet $SINGLEMDS mount -v -t lustre $opts \
2698                 $mdsdev_sym $mntpt 2>&1)
2699         rc=${PIPESTATUS[0]}
2700
2701         echo mount_op=$mount_op
2702
2703         do_facet $SINGLEMDS "$UMOUNT $mntpt && rm -f $mdsdev_sym"
2704
2705         if $(echo $mount_op | grep -q "unable to set tunable"); then
2706                 error "set tunables failed for symlink device"
2707         fi
2708
2709         [ $rc -eq 0 ] || error "mount symlink $mdsdev_sym failed! rc=$rc"
2710 }
2711 run_test 37 "verify set tunables works for symlink device"
2712
2713 test_38() { # bug 14222
2714         local fstype=$(facet_fstype $SINGLEMDS)
2715         local mntpt=$(facet_mntpt $SINGLEMDS)
2716
2717         setup
2718         # like runtests
2719         local COUNT=10
2720         local SRC="/etc /bin"
2721         local FILES=$(find $SRC -type f -mtime +1 | head -n $COUNT)
2722         log "copying $(echo $FILES | wc -w) files to $DIR/$tdir"
2723         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
2724         tar cf - $FILES | tar xf - -C $DIR/$tdir ||
2725                 error "copying $SRC to $DIR/$tdir"
2726         sync
2727         umount_client $MOUNT || error "umount_client $MOUNT failed"
2728         do_facet $SINGLEMDS "$LCTL get_param osp.*.prealloc_next_id"
2729         stop_mds || error "Unable to stop MDS"
2730         log "delete lov_objid file on MDS"
2731
2732         mount_fstype $SINGLEMDS || error "mount MDS failed (1)"
2733
2734         do_facet $SINGLEMDS "od -Ax -td8 $mntpt/lov_objid; rm $mntpt/lov_objid"
2735
2736         unmount_fstype $SINGLEMDS || error "umount failed (1)"
2737
2738         # check create in mds_lov_connect
2739         start_mds || error "unable to start MDS"
2740         mount_client $MOUNT || error "mount_client $MOUNT failed"
2741         for f in $FILES; do
2742                 [ $V ] && log "verifying $DIR/$tdir/$f"
2743                 diff -q $f $DIR/$tdir/$f || ERROR=y
2744         done
2745         do_facet $SINGLEMDS "$LCTL get_param osp.*.prealloc_next_id"
2746         if [ "$ERROR" = "y" ]; then
2747                 # check it's updates in sync
2748                 umount_client $MOUNT
2749                 stop_mds
2750                 mount_fstype $SIGNLEMDS
2751                 do_facet $SINGLEMDS "od -Ax -td8 $mntpt/lov_objid"
2752                 unmount_fstype $SINGLEMDS
2753                 error "old and new files are different after connect" || true
2754         fi
2755         touch $DIR/$tdir/f2 || error "f2 file create failed"
2756
2757         # check it's updates in sync
2758         umount_client $MOUNT || error "second umount_client $MOUNT failed"
2759         stop_mds
2760
2761         mount_fstype $SINGLEMDS || error "mount MDS failed (3)"
2762
2763         do_facet $SINGLEMDS "od -Ax -td8 $mntpt/lov_objid"
2764         do_facet $SINGLEMDS dd if=/dev/zero of=$mntpt/lov_objid.clear count=8
2765
2766         unmount_fstype $SINGLEMDS || error "umount failed (3)"
2767
2768         start_mds || error "unable to start MDS"
2769         mount_client $MOUNT || error "mount_client $MOUNT failed"
2770         for f in $FILES; do
2771                 [ $V ] && log "verifying $DIR/$tdir/$f"
2772                 diff -q $f $DIR/$tdir/$f || ERROR=y
2773         done
2774         touch $DIR/$tdir/f3 || error "f3 file create failed"
2775         do_facet $SINGLEMDS "$LCTL get_param osp.*.prealloc_next_id"
2776         umount_client $MOUNT || error "third umount_client $MOUNT failed"
2777         stop_mds
2778         mount_fstype $SINGLEMDS || error "mount MDS failed (4)"
2779         do_facet $SINGLEMDS "od -Ax -td8 $mntpt/lov_objid"
2780         unmount_fstype $SINGLEMDS || error "umount failed (4)"
2781
2782         [ "$ERROR" = "y" ] &&
2783                 error "old and new files are different after sync" || true
2784
2785         log "files compared the same"
2786         cleanup || error "cleanup failed with $?"
2787 }
2788 run_test 38 "MDS recreates missing lov_objid file from OST data"
2789
2790 test_39() {
2791         PTLDEBUG=+malloc
2792         setup
2793         cleanup || error "cleanup failed with $?"
2794         perl $SRCDIR/leak_finder.pl $TMP/debug 2>&1 | egrep '*** Leak:' &&
2795                 error "memory leak detected" || true
2796 }
2797 run_test 39 "leak_finder recognizes both LUSTRE and LNET malloc messages"
2798
2799 test_40() { # bug 15759
2800         start_ost || error "Unable to start OST1"
2801         #define OBD_FAIL_TGT_TOOMANY_THREADS     0x706
2802         do_facet $SINGLEMDS "$LCTL set_param fail_loc=0x80000706"
2803         start_mds
2804         cleanup || error "cleanup failed with rc $?"
2805 }
2806 run_test 40 "race during service thread startup"
2807
2808 test_41a() { #bug 14134
2809         if [ $(facet_fstype $SINGLEMDS) == ldiskfs ] &&
2810            ! do_facet $SINGLEMDS test -b $(mdsdevname 1); then
2811                 skip "Loop devices does not work with nosvc option"
2812                 return
2813         fi
2814
2815         combined_mgs_mds ||
2816                 { skip "needs combined MGT and MDT device" && return 0; }
2817
2818         start_mdt 1 -o nosvc -n
2819         if [ $MDSCOUNT -ge 2 ]; then
2820                 for num in $(seq 2 $MDSCOUNT); do
2821                         start_mdt $num || return
2822                 done
2823         fi
2824         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS
2825         start_mdt 1 -o nomgs,force
2826         mount_client $MOUNT || error "mount_client $MOUNT failed"
2827         sleep 5
2828
2829         echo "blah blah" > $MOUNT/$tfile
2830         cat $MOUNT/$tfile
2831
2832         umount_client $MOUNT || error "umount_client $MOUNT failed"
2833         stop ost1 -f || error "unable to stop OST1"
2834         stop_mds || error "Unable to stop MDS"
2835         stop_mds || error "Unable to stop MDS on second try"
2836 }
2837 run_test 41a "mount mds with --nosvc and --nomgs"
2838
2839 test_41b() {
2840         if [ $(facet_fstype $SINGLEMDS) == ldiskfs ] &&
2841            ! do_facet $SINGLEMDS test -b $(mdsdevname 1); then
2842                 skip "Loop devices does not work with nosvc option"
2843                 return
2844         fi
2845
2846         ! combined_mgs_mds && skip "needs combined mgs device" && return 0
2847
2848         stopall
2849         reformat
2850         local MDSDEV=$(mdsdevname ${SINGLEMDS//mds/})
2851
2852         start_mdt 1 -o nosvc -n
2853         if [ $MDSCOUNT -ge 2 ]; then
2854                 for num in $(seq 2 $MDSCOUNT); do
2855                         start_mdt $num || return
2856                 done
2857         fi
2858         start_ost || error "Unable to start OST1"
2859         start_mdt 1 -o nomgs,force
2860         mount_client $MOUNT || error "mount_client $MOUNT failed"
2861         sleep 5
2862
2863         echo "blah blah" > $MOUNT/$tfile
2864         cat $MOUNT/$tfile || error "cat $MOUNT/$tfile failed"
2865
2866         umount_client $MOUNT || error "umount_client $MOUNT failed"
2867         stop_ost || error "Unable to stop OST1"
2868         stop_mds || error "Unable to stop MDS"
2869         stop_mds || error "Unable to stop MDS on second try"
2870 }
2871 run_test 41b "mount mds with --nosvc and --nomgs on first mount"
2872
2873 test_41c() {
2874         local server_version=$(lustre_version_code $SINGLEMDS)
2875         local oss_list=$(comma_list $(osts_nodes))
2876
2877         [[ $server_version -ge $(version_code 2.6.52) ]] ||
2878         [[ $server_version -ge $(version_code 2.5.26) &&
2879            $server_version -lt $(version_code 2.5.50) ]] ||
2880         [[ $server_version -ge $(version_code 2.5.4) &&
2881            $server_version -lt $(version_code 2.5.11) ]] ||
2882                 { skip "Need MDS version 2.5.4+ or 2.5.26+ or 2.6.52+"; return; }
2883
2884         # ensure mds1 ost1 have been created even if running sub-test standalone
2885         cleanup
2886         setup
2887         cleanup || error "cleanup failed"
2888
2889         # using directly mount command instead of start() function to avoid
2890         # any side effect of // with others/externals tools/features
2891         # ("zpool import", ...)
2892
2893         # MDT concurrent start
2894
2895         LOAD_MODULES_REMOTE=true load_modules
2896         do_facet $SINGLEMDS "lsmod | grep -q libcfs" ||
2897                 error "MDT concurrent start: libcfs module not loaded"
2898
2899         local mds1dev=$(mdsdevname 1)
2900         local mds1mnt=$(facet_mntpt mds1)
2901         local mds1fstype=$(facet_fstype mds1)
2902         local mds1opts=$MDS_MOUNT_OPTS
2903
2904         if [ $mds1fstype == ldiskfs ] &&
2905            ! do_facet mds1 test -b $mds1dev; then
2906                 mds1opts=$(csa_add "$mds1opts" -o loop)
2907         fi
2908         if [[ $mds1fstype == zfs ]]; then
2909                 import_zpool mds1 || return ${PIPESTATUS[0]}
2910         fi
2911
2912         #define OBD_FAIL_TGT_MOUNT_RACE 0x716
2913         do_facet mds1 "$LCTL set_param fail_loc=0x80000716"
2914
2915         do_facet mds1 mount -t lustre $mds1dev $mds1mnt $mds1opts &
2916         local pid=$!
2917
2918         do_facet mds1 mount -t lustre $mds1dev $mds1mnt $mds1opts
2919         local rc2=$?
2920         wait $pid
2921         local rc=$?
2922         do_facet mds1 "$LCTL set_param fail_loc=0x0"
2923         if [ $rc -eq 0 ] && [ $rc2 -ne 0 ]; then
2924                 echo "1st MDT start succeed"
2925                 echo "2nd MDT start failed with $rc2"
2926         elif [ $rc2 -eq 0 ] && [ $rc -ne 0 ]; then
2927                 echo "1st MDT start failed with $rc"
2928                 echo "2nd MDT start succeed"
2929         else
2930                 stop mds1 -f
2931                 error "unexpected concurrent MDT mounts result, rc=$rc rc2=$rc2"
2932         fi
2933
2934         if [ $MDSCOUNT -ge 2 ]; then
2935                 for num in $(seq 2 $MDSCOUNT); do
2936                         start_mdt $num || return
2937                 done
2938         fi
2939
2940         # OST concurrent start
2941
2942         do_rpc_nodes $oss_list "lsmod | grep -q libcfs" ||
2943                 error "OST concurrent start: libcfs module not loaded"
2944
2945         local ost1dev=$(ostdevname 1)
2946         local ost1mnt=$(facet_mntpt ost1)
2947         local ost1fstype=$(facet_fstype ost1)
2948         local ost1opts=$OST_MOUNT_OPTS
2949
2950         if [ $ost1fstype == ldiskfs ] &&
2951            ! do_facet ost1 test -b $ost1dev; then
2952                 ost1opts=$(csa_add "$ost1opts" -o loop)
2953         fi
2954         if [[ $ost1fstype == zfs ]]; then
2955                 import_zpool ost1 || return ${PIPESTATUS[0]}
2956         fi
2957
2958         #define OBD_FAIL_TGT_MOUNT_RACE 0x716
2959         do_facet ost1 "$LCTL set_param fail_loc=0x80000716"
2960
2961         do_facet ost1 mount -t lustre $ost1dev $ost1mnt $ost1opts &
2962         pid=$!
2963
2964         do_facet ost1 mount -t lustre $ost1dev $ost1mnt $ost1opts
2965         rc2=$?
2966         wait $pid
2967         rc=$?
2968         do_facet ost1 "$LCTL set_param fail_loc=0x0"
2969         if [ $rc -eq 0 ] && [ $rc2 -ne 0 ]; then
2970                 echo "1st OST start succeed"
2971                 echo "2nd OST start failed with $rc2"
2972         elif [ $rc2 -eq 0 ] && [ $rc -ne 0 ]; then
2973                 echo "1st OST start failed with $rc"
2974                 echo "2nd OST start succeed"
2975         else
2976                 stop_mds -f
2977                 stop ost1 -f
2978                 error "unexpected concurrent OST mounts result, rc=$rc rc2=$rc2"
2979         fi
2980         # cleanup
2981         stop_mds
2982         stop ost1 -f
2983
2984         # verify everything ok
2985         start_mds
2986         if [ $? != 0 ]
2987         then
2988                 stop_mds
2989                 error "MDT(s) start failed"
2990         fi
2991
2992         start_ost
2993         if [ $? != 0 ]
2994         then
2995                 stop_mds
2996                 stop ost1 -f
2997                 error "OST(s) start failed"
2998         fi
2999
3000         mount_client $MOUNT
3001         if [ $? != 0 ]
3002         then
3003                 stop_mds
3004                 stop ost1 -f
3005                 error "client start failed"
3006         fi
3007         check_mount
3008         if [ $? != 0 ]
3009         then
3010                 stop_mds
3011                 stop ost1 -f
3012                 error "client mount failed"
3013         fi
3014         cleanup
3015 }
3016 run_test 41c "concurrent mounts of MDT/OST should all fail but one"
3017
3018 test_42() { #bug 14693
3019         setup
3020         check_mount || error "client was not mounted"
3021
3022         do_facet mgs $LCTL conf_param $FSNAME.llite.some_wrong_param=10
3023         umount_client $MOUNT ||
3024                 error "unmounting client failed with invalid llite param"
3025         mount_client $MOUNT ||
3026                 error "mounting client failed with invalid llite param"
3027
3028         do_facet mgs $LCTL conf_param $FSNAME.sys.some_wrong_param=20
3029         cleanup || error "stopping $FSNAME failed with invalid sys param"
3030         setup
3031         check_mount || error "client was not mounted with invalid sys param"
3032         cleanup || error "stopping $FSNAME failed with invalid sys param"
3033 }
3034 run_test 42 "allow client/server mount/unmount with invalid config param"
3035
3036 test_43a() {
3037         [[ $(lustre_version_code mgs) -ge $(version_code 2.5.58) ]] ||
3038                 { skip "Need MDS version at least 2.5.58" && return 0; }
3039         [ $UID -ne 0 -o $RUNAS_ID -eq 0 ] && skip_env "run as root"
3040
3041         ID1=${ID1:-501}
3042         USER1=$(getent passwd | grep :$ID1:$ID1: | cut -d: -f1)
3043         [ -z "$USER1" ] && skip_env "missing user with uid=$ID1 gid=$ID1" &&
3044                 return
3045
3046         setup
3047         chmod ugo+x $DIR || error "chmod 0 failed"
3048         set_conf_param_and_check mds1                                   \
3049                 "$LCTL get_param -n mdt.$FSNAME-MDT0000.root_squash"    \
3050                 "$FSNAME.mdt.root_squash"                               \
3051                 "0:0"
3052         wait_update $HOSTNAME                                           \
3053                 "$LCTL get_param -n llite.${FSNAME}*.root_squash"       \
3054                 "0:0" ||
3055                 error "check llite root_squash failed!"
3056         set_conf_param_and_check mds1                                   \
3057                 "$LCTL get_param -n mdt.$FSNAME-MDT0000.nosquash_nids"  \
3058                 "$FSNAME.mdt.nosquash_nids"                             \
3059                 "NONE"
3060         wait_update $HOSTNAME                                           \
3061                 "$LCTL get_param -n llite.${FSNAME}*.nosquash_nids"     \
3062                 "NONE" ||
3063                 error "check llite nosquash_nids failed!"
3064
3065     #
3066     # create set of test files
3067     #
3068     echo "111" > $DIR/$tfile-userfile || error "write 1 failed"
3069     chmod go-rw $DIR/$tfile-userfile  || error "chmod 1 failed"
3070     chown $RUNAS_ID.$RUNAS_ID $DIR/$tfile-userfile || error "chown failed"
3071
3072     echo "222" > $DIR/$tfile-rootfile || error "write 2 failed"
3073     chmod go-rw $DIR/$tfile-rootfile  || error "chmod 2 faield"
3074
3075         mkdir $DIR/$tdir-rootdir || error "mkdir failed"
3076         chmod go-rwx $DIR/$tdir-rootdir || error "chmod 3 failed"
3077         touch $DIR/$tdir-rootdir/tfile-1 || error "touch failed"
3078
3079         echo "777" > $DIR/$tfile-user1file || error "write 7 failed"
3080         chmod go-rw $DIR/$tfile-user1file || error "chmod 7 failed"
3081         chown $ID1.$ID1 $DIR/$tfile-user1file || error "chown failed"
3082
3083         #
3084         # check root_squash:
3085         #   set root squash UID:GID to RUNAS_ID
3086         #   root should be able to access only files owned by RUNAS_ID
3087         #
3088         set_conf_param_and_check mds1                                   \
3089                 "$LCTL get_param -n mdt.$FSNAME-MDT0000.root_squash"    \
3090                 "$FSNAME.mdt.root_squash"                               \
3091                 "$RUNAS_ID:$RUNAS_ID"
3092         wait_update $HOSTNAME                                           \
3093                 "$LCTL get_param -n llite.${FSNAME}*.root_squash"       \
3094                 "$RUNAS_ID:$RUNAS_ID" ||
3095                 error "check llite root_squash failed!"
3096
3097         ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tfile-userfile)
3098         dd if=$DIR/$tfile-userfile 1>/dev/null 2>/dev/null ||
3099                 error "$ST: root read permission is denied"
3100         echo "$ST: root read permission is granted - ok"
3101
3102         echo "444" |
3103         dd conv=notrunc of=$DIR/$tfile-userfile 1>/dev/null 2>/dev/null ||
3104                 error "$ST: root write permission is denied"
3105         echo "$ST: root write permission is granted - ok"
3106
3107         ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tfile-rootfile)
3108         dd if=$DIR/$tfile-rootfile 1>/dev/null 2>/dev/null &&
3109                 error "$ST: root read permission is granted"
3110         echo "$ST: root read permission is denied - ok"
3111
3112         echo "555" |
3113         dd conv=notrunc of=$DIR/$tfile-rootfile 1>/dev/null 2>/dev/null &&
3114                 error "$ST: root write permission is granted"
3115         echo "$ST: root write permission is denied - ok"
3116
3117         ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tdir-rootdir)
3118                 rm $DIR/$tdir-rootdir/tfile-1 1>/dev/null 2>/dev/null &&
3119                         error "$ST: root unlink permission is granted"
3120         echo "$ST: root unlink permission is denied - ok"
3121
3122         touch $DIR/tdir-rootdir/tfile-2 1>/dev/null 2>/dev/null &&
3123                 error "$ST: root create permission is granted"
3124         echo "$ST: root create permission is denied - ok"
3125
3126         # LU-1778
3127         # check root_squash is enforced independently
3128         # of client cache content
3129         #
3130         # access file by USER1, keep access open
3131         # root should be denied access to user file
3132
3133         runas -u $ID1 tail -f $DIR/$tfile-user1file 1>/dev/null 2>&1 &
3134         pid=$!
3135         sleep 1
3136
3137         ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tfile-user1file)
3138         dd if=$DIR/$tfile-user1file 1>/dev/null 2>&1 &&
3139             { kill $pid; error "$ST: root read permission is granted"; }
3140         echo "$ST: root read permission is denied - ok"
3141
3142         echo "777" |
3143         dd conv=notrunc of=$DIR/$tfile-user1file 1>/dev/null 2>&1 &&
3144             { kill $pid; error "$ST: root write permission is granted"; }
3145         echo "$ST: root write permission is denied - ok"
3146
3147         kill $pid
3148         wait $pid
3149
3150         #
3151         # check nosquash_nids:
3152         #   put client's NID into nosquash_nids list,
3153         #   root should be able to access root file after that
3154         #
3155         local NIDLIST=$($LCTL list_nids all | tr '\n' ' ')
3156         NIDLIST="2@gni $NIDLIST 192.168.0.[2,10]@tcp"
3157         NIDLIST=$(echo $NIDLIST | tr -s ' ' ' ')
3158         set_conf_param_and_check mds1                                   \
3159                 "$LCTL get_param -n mdt.$FSNAME-MDT0000.nosquash_nids"  \
3160                 "$FSNAME-MDTall.mdt.nosquash_nids"                      \
3161                 "$NIDLIST"
3162         wait_update $HOSTNAME                                           \
3163                 "$LCTL get_param -n llite.${FSNAME}*.nosquash_nids"     \
3164                 "$NIDLIST" ||
3165                 error "check llite nosquash_nids failed!"
3166
3167         ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tfile-rootfile)
3168         dd if=$DIR/$tfile-rootfile 1>/dev/null 2>/dev/null ||
3169                 error "$ST: root read permission is denied"
3170         echo "$ST: root read permission is granted - ok"
3171
3172         echo "666" |
3173         dd conv=notrunc of=$DIR/$tfile-rootfile 1>/dev/null 2>/dev/null ||
3174                 error "$ST: root write permission is denied"
3175         echo "$ST: root write permission is granted - ok"
3176
3177         ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tdir-rootdir)
3178         rm $DIR/$tdir-rootdir/tfile-1 ||
3179                 error "$ST: root unlink permission is denied"
3180         echo "$ST: root unlink permission is granted - ok"
3181         touch $DIR/$tdir-rootdir/tfile-2 ||
3182                 error "$ST: root create permission is denied"
3183         echo "$ST: root create permission is granted - ok"
3184         cleanup || error "cleanup failed with $?"
3185 }
3186 run_test 43a "check root_squash and nosquash_nids"
3187
3188 test_43b() { # LU-5690
3189         [[ $(lustre_version_code mgs) -ge $(version_code 2.7.62) ]] ||
3190                 { skip "Need MGS version 2.7.62+"; return; }
3191
3192         if [[ -z "$fs2mds_DEV" ]]; then
3193                 is_blkdev $SINGLEMDS $(mdsdevname ${SINGLEMDS//mds/}) &&
3194                 skip_env "mixed loopback and real device not working" && return
3195         fi
3196
3197         local fs2mdsdev=$(mdsdevname 1_2)
3198         local fs2mdsvdev=$(mdsvdevname 1_2)
3199
3200         # temporarily use fs2mds as fs2mgs
3201         local fs2mgs=fs2mds
3202         local fs2mgsdev=$fs2mdsdev
3203         local fs2mgsvdev=$fs2mdsvdev
3204
3205         local fsname=test1234
3206
3207         load_module llite/lustre
3208         local client_ip=$(host_nids_address $HOSTNAME $NETTYPE)
3209         local host=${client_ip//*./}
3210         local net=${client_ip/%$host/}
3211         local nosquash_nids=$(h2$NETTYPE $net[$host,$host,$host])
3212
3213         add $fs2mgs $(mkfs_opts mgs $fs2mgsdev) --fsname=$fsname \
3214                 --param mdt.root_squash=$RUNAS_ID:$RUNAS_ID \
3215                 --param mdt.nosquash_nids=$nosquash_nids \
3216                 --reformat $fs2mgsdev $fs2mgsvdev || error "add fs2mgs failed"
3217         start $fs2mgs $fs2mgsdev $MGS_MOUNT_OPTS  || error "start fs2mgs failed"
3218         stop $fs2mgs -f || error "stop fs2mgs failed"
3219 }
3220 run_test 43b "parse nosquash_nids with commas in expr_list"
3221
3222 umount_client $MOUNT
3223 cleanup_nocli
3224
3225 test_44() { # 16317
3226         setup
3227         check_mount || error "check_mount"
3228         UUID=$($LCTL get_param llite.${FSNAME}*.uuid | cut -d= -f2)
3229         STATS_FOUND=no
3230         UUIDS=$(do_facet $SINGLEMDS "$LCTL get_param mdt.${FSNAME}*.exports.*.uuid")
3231         for VAL in $UUIDS; do
3232                 NID=$(echo $VAL | cut -d= -f1)
3233                 CLUUID=$(echo $VAL | cut -d= -f2)
3234                 [ "$UUID" = "$CLUUID" ] && STATS_FOUND=yes && break
3235         done
3236         [ "$STATS_FOUND" = "no" ] && error "stats not found for client"
3237         cleanup || error "cleanup failed with $?"
3238 }
3239 run_test 44 "mounted client proc entry exists"
3240
3241 test_45() { #17310
3242         setup
3243         check_mount || error "check_mount"
3244         stop_mds || error "Unable to stop MDS"
3245         df -h $MOUNT &
3246         log "sleep 60 sec"
3247         sleep 60
3248         #define OBD_FAIL_PTLRPC_LONG_REPL_UNLINK        0x50f
3249         do_facet client "$LCTL set_param fail_loc=0x8000050f"
3250         log "sleep 10 sec"
3251         sleep 10
3252         manual_umount_client --force || error "manual_umount_client failed"
3253         do_facet client "$LCTL set_param fail_loc=0x0"
3254         start_mds || error "unable to start MDS"
3255         mount_client $MOUNT || error "mount_client $MOUNT failed"
3256         cleanup || error "cleanup failed with $?"
3257 }
3258 run_test 45 "long unlink handling in ptlrpcd"
3259
3260 cleanup_46a() {
3261         trap 0
3262         local rc=0
3263         local count=$1
3264
3265         umount_client $MOUNT2 || rc=$?
3266         umount_client $MOUNT || rc=$?
3267         while [ $count -gt 0 ]; do
3268                 stop ost${count} -f || rc=$?
3269                 let count=count-1
3270         done
3271         stop_mds || rc=$?
3272         cleanup_nocli || rc=$?
3273         #writeconf to remove all ost2 traces for subsequent tests
3274         writeconf_or_reformat
3275         return $rc
3276 }
3277
3278 test_46a() {
3279         echo "Testing with $OSTCOUNT OSTs"
3280         reformat_and_config
3281         start_mds || error "unable to start MDS"
3282         #first client should see only one ost
3283         start_ost || error "Unable to start OST1"
3284         wait_osc_import_state mds ost FULL
3285         #start_client
3286         mount_client $MOUNT || error "mount_client $MOUNT failed"
3287         trap "cleanup_46a $OSTCOUNT" EXIT ERR
3288
3289         local i
3290         for (( i=2; i<=$OSTCOUNT; i++ )); do
3291                 start ost$i $(ostdevname $i) $OST_MOUNT_OPTS ||
3292                         error "start_ost$i $(ostdevname $i) failed"
3293         done
3294
3295         # wait until osts in sync
3296         for (( i=2; i<=$OSTCOUNT; i++ )); do
3297             wait_osc_import_state mds ost$i FULL
3298             wait_osc_import_state client ost$i FULL
3299         done
3300
3301         #second client see all ost's
3302
3303         mount_client $MOUNT2 || error "mount_client failed"
3304         $SETSTRIPE -c -1 $MOUNT2 || error "$SETSTRIPE -c -1 $MOUNT2 failed"
3305         $GETSTRIPE $MOUNT2 || error "$GETSTRIPE $MOUNT2 failed"
3306
3307         echo "ok" > $MOUNT2/widestripe
3308         $GETSTRIPE $MOUNT2/widestripe ||
3309                 error "$GETSTRIPE $MOUNT2/widestripe failed"
3310         # fill acl buffer for avoid expand lsm to them
3311         awk -F : '{if (FNR < 25) { print "u:"$1":rwx" }}' /etc/passwd |
3312                 while read acl; do
3313             setfacl -m $acl $MOUNT2/widestripe
3314         done
3315
3316         # will be deadlock
3317         stat $MOUNT/widestripe || error "stat $MOUNT/widestripe failed"
3318
3319         cleanup_46a $OSTCOUNT || error "cleanup_46a failed"
3320 }
3321 run_test 46a "handle ost additional - wide striped file"
3322
3323 test_47() { #17674
3324         reformat
3325         setup_noconfig
3326         check_mount || error "check_mount failed"
3327         $LCTL set_param ldlm.namespaces.$FSNAME-*-*-*.lru_size=100
3328
3329         local lru_size=[]
3330         local count=0
3331         for ns in $($LCTL get_param ldlm.namespaces.$FSNAME-*-*-*.lru_size); do
3332             if echo $ns | grep "MDT[[:digit:]]*"; then
3333                 continue
3334             fi
3335             lrs=$(echo $ns | sed 's/.*lru_size=//')
3336             lru_size[count]=$lrs
3337             let count=count+1
3338         done
3339
3340         facet_failover ost1
3341         facet_failover $SINGLEMDS
3342         client_up || error "client_up failed"
3343
3344         count=0
3345         for ns in $($LCTL get_param ldlm.namespaces.$FSNAME-*-*-*.lru_size); do
3346             if echo $ns | grep "MDT[[:digit:]]*"; then
3347                 continue
3348             fi
3349             lrs=$(echo $ns | sed 's/.*lru_size=//')
3350             if ! test "$lrs" -eq "${lru_size[count]}"; then
3351                 n=$(echo $ns | sed -e 's/ldlm.namespaces.//' -e 's/.lru_size=.*//')
3352                 error "$n has lost lru_size: $lrs vs. ${lru_size[count]}"
3353             fi
3354             let count=count+1
3355         done
3356
3357         cleanup || error "cleanup failed with $?"
3358 }
3359 run_test 47 "server restart does not make client loss lru_resize settings"
3360
3361 cleanup_48() {
3362         trap 0
3363
3364         # reformat after this test is needed - if the test fails,
3365         # we will have unkillable file at FS
3366         reformat_and_config
3367 }
3368
3369 test_48() { # bug 17636
3370         reformat
3371         setup_noconfig
3372         check_mount || error "check_mount failed"
3373
3374         $SETSTRIPE -c -1 $MOUNT || error "$SETSTRIPE -c -1 $MOUNT failed"
3375         $GETSTRIPE $MOUNT || error "$GETSTRIPE $MOUNT failed"
3376
3377         echo "ok" > $MOUNT/widestripe
3378         $GETSTRIPE $MOUNT/widestripe ||
3379                 error "$GETSTRIPE $MOUNT/widestripe failed"
3380
3381         trap cleanup_48 EXIT ERR
3382
3383         # fill acl buffer for avoid expand lsm to them
3384         getent passwd | awk -F : '{ print "u:"$1":rwx" }' |  while read acl; do
3385             setfacl -m $acl $MOUNT/widestripe
3386         done
3387
3388         stat $MOUNT/widestripe || error "stat $MOUNT/widestripe failed"
3389
3390         cleanup_48
3391 }
3392 run_test 48 "too many acls on file"
3393
3394 # check PARAM_SYS_LDLM_TIMEOUT option of MKFS.LUSTRE
3395 test_49a() { # bug 17710
3396         local timeout_orig=$TIMEOUT
3397         local ldlm_timeout_orig=$LDLM_TIMEOUT
3398         local LOCAL_TIMEOUT=20
3399
3400         LDLM_TIMEOUT=$LOCAL_TIMEOUT
3401         TIMEOUT=$LOCAL_TIMEOUT
3402
3403         reformat
3404         setup_noconfig
3405         check_mount || error "client mount failed"
3406
3407         echo "check ldlm_timout..."
3408         local LDLM_MDS="$(do_facet $SINGLEMDS $LCTL get_param -n ldlm_timeout)"
3409         local LDLM_OST1="$(do_facet ost1 $LCTL get_param -n ldlm_timeout)"
3410         local LDLM_CLIENT="$(do_facet client $LCTL get_param -n ldlm_timeout)"
3411
3412         if [ $LDLM_MDS -ne $LDLM_OST1 -o $LDLM_MDS -ne $LDLM_CLIENT ]; then
3413                 error "Different LDLM_TIMEOUT:$LDLM_MDS $LDLM_OST1 $LDLM_CLIENT"
3414         fi
3415
3416         if [ $LDLM_MDS -ne $((LOCAL_TIMEOUT / 3)) ]; then
3417                 error "LDLM_TIMEOUT($LDLM_MDS) is not $((LOCAL_TIMEOUT / 3))"
3418         fi
3419
3420         umount_client $MOUNT || error "umount_client $MOUNT failed"
3421         stop_ost || error "problem stopping OSS"
3422         stop_mds || error "problem stopping MDS"
3423
3424         LDLM_TIMEOUT=$ldlm_timeout_orig
3425         TIMEOUT=$timeout_orig
3426 }
3427 run_test 49a "check PARAM_SYS_LDLM_TIMEOUT option of mkfs.lustre"
3428
3429 test_49b() { # bug 17710
3430         local timeout_orig=$TIMEOUT
3431         local ldlm_timeout_orig=$LDLM_TIMEOUT
3432         local LOCAL_TIMEOUT=20
3433
3434         LDLM_TIMEOUT=$((LOCAL_TIMEOUT - 1))
3435         TIMEOUT=$LOCAL_TIMEOUT
3436
3437         reformat
3438         setup_noconfig
3439         check_mount || error "client mount failed"
3440
3441         local LDLM_MDS="$(do_facet $SINGLEMDS $LCTL get_param -n ldlm_timeout)"
3442         local LDLM_OST1="$(do_facet ost1 $LCTL get_param -n ldlm_timeout)"
3443         local LDLM_CLIENT="$(do_facet client $LCTL get_param -n ldlm_timeout)"
3444
3445         if [ $LDLM_MDS -ne $LDLM_OST1 -o $LDLM_MDS -ne $LDLM_CLIENT ]; then
3446                 error "Different LDLM_TIMEOUT:$LDLM_MDS $LDLM_OST1 $LDLM_CLIENT"
3447         fi
3448
3449         if [ $LDLM_MDS -ne $((LOCAL_TIMEOUT - 1)) ]; then
3450                 error "LDLM_TIMEOUT($LDLM_MDS) is not $((LOCAL_TIMEOUT - 1))"
3451         fi
3452
3453         cleanup || error "cleanup failed"
3454
3455         LDLM_TIMEOUT=$ldlm_timeout_orig
3456         TIMEOUT=$timeout_orig
3457 }
3458 run_test 49b "check PARAM_SYS_LDLM_TIMEOUT option of mkfs.lustre"
3459
3460 lazystatfs() {
3461         # Test both statfs and lfs df and fail if either one fails
3462         multiop_bg_pause $1 f_
3463         RC1=$?
3464         PID=$!
3465         killall -USR1 multiop
3466         [ $RC1 -ne 0 ] && log "lazystatfs multiop failed"
3467         wait $PID || { RC1=$?; log "multiop return error "; }
3468
3469         $LFS df &
3470         PID=$!
3471         sleep 5
3472         kill -s 0 $PID
3473         RC2=$?
3474         if [ $RC2 -eq 0 ]; then
3475             kill -s 9 $PID
3476             log "lazystatfs df failed"
3477         fi
3478
3479         RC=0
3480         [[ $RC1 -ne 0 || $RC2 -eq 0 ]] && RC=1
3481         return $RC
3482 }
3483
3484 test_50a() {
3485         setup
3486         $LCTL set_param llite.$FSNAME-*.lazystatfs=1
3487         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
3488
3489         lazystatfs $MOUNT || error "lazystatfs failed but no down servers"
3490
3491         cleanup || error "cleanup failed with rc $?"
3492 }
3493 run_test 50a "lazystatfs all servers available"
3494
3495 test_50b() {
3496         setup
3497         $LCTL set_param llite.$FSNAME-*.lazystatfs=1
3498         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
3499
3500         # Wait for client to detect down OST
3501         stop_ost || error "Unable to stop OST1"
3502         wait_osc_import_state mds ost DISCONN
3503
3504         lazystatfs $MOUNT || error "lazystatfs should not return EIO"
3505
3506         umount_client $MOUNT || error "Unable to unmount client"
3507         stop_mds || error "Unable to stop MDS"
3508 }
3509 run_test 50b "lazystatfs all servers down"
3510
3511 test_50c() {
3512         start_mds || error "Unable to start MDS"
3513         start_ost || error "Unable to start OST1"
3514         start_ost2 || error "Unable to start OST2"
3515         mount_client $MOUNT || error "Unable to mount client"
3516         $LCTL set_param llite.$FSNAME-*.lazystatfs=1
3517         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
3518
3519         # Wait for client to detect down OST
3520         stop_ost || error "Unable to stop OST1"
3521         wait_osc_import_state mds ost DISCONN
3522         lazystatfs $MOUNT || error "lazystatfs failed with one down server"
3523
3524         umount_client $MOUNT || error "Unable to unmount client"
3525         stop_ost2 || error "Unable to stop OST2"
3526         stop_mds || error "Unable to stop MDS"
3527         #writeconf to remove all ost2 traces for subsequent tests
3528         writeconf_or_reformat
3529 }
3530 run_test 50c "lazystatfs one server down"
3531
3532 test_50d() {
3533         start_mds || error "Unable to start MDS"
3534         start_ost || error "Unable to start OST1"
3535         start_ost2 || error "Unable to start OST2"
3536         mount_client $MOUNT || error "Unable to mount client"
3537         $LCTL set_param llite.$FSNAME-*.lazystatfs=1
3538         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
3539
3540         # Issue the statfs during the window where the client still
3541         # belives the OST to be available but it is in fact down.
3542         # No failure just a statfs which hangs for a timeout interval.
3543         stop_ost || error "Unable to stop OST1"
3544         lazystatfs $MOUNT || error "lazystatfs failed with one down server"
3545
3546         umount_client $MOUNT || error "Unable to unmount client"
3547         stop_ost2 || error "Unable to stop OST2"
3548         stop_mds || error "Unable to stop MDS"
3549         #writeconf to remove all ost2 traces for subsequent tests
3550         writeconf_or_reformat
3551 }
3552 run_test 50d "lazystatfs client/server conn race"
3553
3554 test_50e() {
3555         local RC1
3556         local pid
3557
3558         reformat_and_config
3559         start_mds || error "Unable to start MDS"
3560         #first client should see only one ost
3561         start_ost || error "Unable to start OST1"
3562         wait_osc_import_state mds ost FULL
3563
3564         # Wait for client to detect down OST
3565         stop_ost || error "Unable to stop OST1"
3566         wait_osc_import_state mds ost DISCONN
3567
3568         mount_client $MOUNT || error "Unable to mount client"
3569         $LCTL set_param llite.$FSNAME-*.lazystatfs=0
3570
3571         multiop_bg_pause $MOUNT _f
3572         RC1=$?
3573         pid=$!
3574
3575         if [ $RC1 -ne 0 ]; then
3576                 log "multiop failed $RC1"
3577         else
3578             kill -USR1 $pid
3579             sleep $(( $TIMEOUT+1 ))
3580             kill -0 $pid
3581             [ $? -ne 0 ] && error "process isn't sleep"
3582             start_ost || error "Unable to start OST1"
3583             wait $pid || error "statfs failed"
3584         fi
3585
3586         umount_client $MOUNT || error "Unable to unmount client"
3587         stop_ost || error "Unable to stop OST1"
3588         stop_mds || error "Unable to stop MDS"
3589 }
3590 run_test 50e "normal statfs all servers down"
3591
3592 test_50f() {
3593         local RC1
3594         local pid
3595         CONN_PROC="osc.$FSNAME-OST0001-osc-[M]*.ost_server_uuid"
3596
3597         start_mds || error "Unable to start mds"
3598         #first client should see only one ost
3599         start_ost || error "Unable to start OST1"
3600         wait_osc_import_state mds ost FULL
3601
3602         start_ost2 || error "Unable to start OST2"
3603         wait_osc_import_state mds ost2 FULL
3604
3605         # Wait for client to detect down OST
3606         stop_ost2 || error "Unable to stop OST2"
3607
3608         wait_osc_import_state mds ost2 DISCONN
3609         mount_client $MOUNT || error "Unable to mount client"
3610         $LCTL set_param llite.$FSNAME-*.lazystatfs=0
3611
3612         multiop_bg_pause $MOUNT _f
3613         RC1=$?
3614         pid=$!
3615
3616         if [ $RC1 -ne 0 ]; then
3617                 log "lazystatfs multiop failed $RC1"
3618         else
3619             kill -USR1 $pid
3620             sleep $(( $TIMEOUT+1 ))
3621             kill -0 $pid
3622             [ $? -ne 0 ] && error "process isn't sleep"
3623             start_ost2 || error "Unable to start OST2"
3624             wait $pid || error "statfs failed"
3625             stop_ost2 || error "Unable to stop OST2"
3626         fi
3627
3628         umount_client $MOUNT -f || error "Unable to unmount client"
3629         stop_ost || error "Unable to stop OST1"
3630         stop_mds || error "Unable to stop MDS"
3631         #writeconf to remove all ost2 traces for subsequent tests
3632         writeconf_or_reformat
3633 }
3634 run_test 50f "normal statfs one server in down"
3635
3636 test_50g() {
3637         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2, skipping" && return
3638         setup
3639         start_ost2 || error "Unable to start OST2"
3640         wait_osc_import_state mds ost2 FULL
3641         wait_osc_import_state client ost2 FULL
3642
3643         local PARAM="${FSNAME}-OST0001.osc.active"
3644
3645         $SETSTRIPE -c -1 $DIR/$tfile || error "$SETSTRIPE failed"
3646         do_facet mgs $LCTL conf_param $PARAM=0 ||
3647                 error "Unable to deactivate OST"
3648
3649         umount_client $MOUNT || error "Unable to unmount client"
3650         mount_client $MOUNT || error "Unable to mount client"
3651         # This df should not cause a panic
3652         df -k $MOUNT
3653
3654         do_facet mgs $LCTL conf_param $PARAM=1 || error "Unable to activate OST"
3655         rm -f $DIR/$tfile || error "unable to remove file $DIR/$tfile"
3656         umount_client $MOUNT || error "Unable to unmount client"
3657         stop_ost2 || error "Unable to stop OST2"
3658         stop_ost || error "Unable to stop OST1"
3659         stop_mds || error "Unable to stop MDS"
3660         #writeconf to remove all ost2 traces for subsequent tests
3661         writeconf_or_reformat
3662 }
3663 run_test 50g "deactivated OST should not cause panic"
3664
3665 # LU-642
3666 test_50h() {
3667         # prepare MDT/OST, make OSC inactive for OST1
3668         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2, skipping" && return
3669
3670         [ $(facet_fstype ost1) == zfs ] && import_zpool ost1
3671         do_facet ost1 "$TUNEFS --param osc.active=0 `ostdevname 1`" ||
3672                 error "tunefs OST1 failed"
3673         start_mds  || error "Unable to start MDT"
3674         start_ost  || error "Unable to start OST1"
3675         start_ost2 || error "Unable to start OST2"
3676         mount_client $MOUNT || error "client start failed"
3677
3678         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
3679
3680         # activatate OSC for OST1
3681         local TEST="$LCTL get_param -n osc.${FSNAME}-OST0000-osc-[!M]*.active"
3682         set_conf_param_and_check client                                 \
3683                 "$TEST" "${FSNAME}-OST0000.osc.active" 1 ||
3684                 error "Unable to activate OST1"
3685
3686         mkdir $DIR/$tdir/2 || error "mkdir $DIR/$tdir/2 failed"
3687         $SETSTRIPE -c -1 -i 0 $DIR/$tdir/2 ||
3688                 error "$SETSTRIPE $DIR/$tdir/2 failed"
3689         sleep 1 && echo "create a file after OST1 is activated"
3690         # create some file
3691         createmany -o $DIR/$tdir/2/$tfile-%d 1
3692
3693         # check OSC import is working
3694         stat $DIR/$tdir/2/* >/dev/null 2>&1 ||
3695                 error "some OSC imports are still not connected"
3696
3697         # cleanup
3698         umount_client $MOUNT || error "Unable to umount client"
3699         stop_ost2 || error "Unable to stop OST2"
3700         cleanup_nocli || error "cleanup_nocli failed with $?"
3701 }
3702 run_test 50h "LU-642: activate deactivated OST"
3703
3704 test_50i() {
3705         # prepare MDT/OST, make OSC inactive for OST1
3706         [ "$MDSCOUNT" -lt "2" ] && skip_env "$MDSCOUNT < 2, skipping" && return
3707
3708         load_modules
3709         [ $(facet_fstype mds2) == zfs ] && import_zpool mds2
3710         do_facet mds2 "$TUNEFS --param mdc.active=0 $(mdsdevname 2)" ||
3711                 error "tunefs MDT2 failed"
3712         start_mds  || error "Unable to start MDT"
3713         start_ost  || error "Unable to start OST1"
3714         start_ost2 || error "Unable to start OST2"
3715         mount_client $MOUNT || error "client start failed"
3716
3717         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
3718
3719         $LCTL conf_param ${FSNAME}-MDT0000.mdc.active=0 &&
3720                 error "deactive MDC0 succeeds"
3721         # activate MDC for MDT2
3722         local TEST="$LCTL get_param -n mdc.${FSNAME}-MDT0001-mdc-[!M]*.active"
3723         set_conf_param_and_check client                                 \
3724                 "$TEST" "${FSNAME}-MDT0001.mdc.active" 1 ||
3725                 error "Unable to activate MDT2"
3726
3727         wait_clients_import_state ${CLIENTS:-$HOSTNAME} mds2 FULL
3728         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.7.60) ]
3729         then
3730                 wait_dne_interconnect
3731         fi
3732         $LFS mkdir -i1 $DIR/$tdir/2 || error "mkdir $DIR/$tdir/2 failed"
3733         # create some file
3734         createmany -o $DIR/$tdir/2/$tfile-%d 1 || error "create files failed"
3735
3736         rm -rf $DIR/$tdir/2 || error "unlink dir failed"
3737
3738         # deactivate MDC for MDT2
3739         TEST="$LCTL get_param -n mdc.${FSNAME}-MDT0001-mdc-[!M]*.active"
3740         set_conf_param_and_check client                                 \
3741                 "$TEST" "${FSNAME}-MDT0001.mdc.active" 0 ||
3742                 error "Unable to deactivate MDT2"
3743
3744         $LFS mkdir -i1 $DIR/$tdir/2 &&
3745                 error "mkdir $DIR/$tdir/2 succeeds after deactive MDT"
3746
3747         $LFS mkdir -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
3748                 error "mkdir $DIR/$tdir/striped_dir fails after deactive MDT2"
3749
3750         local stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir)
3751         [ $stripe_count -eq $((MDSCOUNT - 1)) ] ||
3752                 error "wrong $stripe_count != $((MDSCOUNT -1)) for striped_dir"
3753
3754         # cleanup
3755         umount_client $MOUNT || error "Unable to umount client"
3756         stop_mds
3757         stop_ost
3758         stop_ost 2
3759 }
3760 run_test 50i "activate deactivated MDT"
3761
3762 test_51() {
3763         local LOCAL_TIMEOUT=20
3764
3765         reformat
3766         setup_noconfig
3767         check_mount || error "check_mount failed"
3768
3769         mkdir $MOUNT/$tdir || error "mkdir $MOUNT/$tdir failed"
3770         $SETSTRIPE -c -1 $MOUNT/$tdir ||
3771                 error "$SETSTRIPE -c -1 $MOUNT/$tdir failed"
3772         #define OBD_FAIL_MDS_REINT_DELAY         0x142
3773         do_facet $SINGLEMDS "$LCTL set_param fail_loc=0x142"
3774         touch $MOUNT/$tdir/$tfile &
3775         local pid=$!
3776         sleep 2
3777         start_ost2 || error "Unable to start OST1"
3778         wait $pid
3779         stop_ost2 || error "Unable to stop OST1"
3780         umount_client $MOUNT -f || error “unmount $MOUNT failed”
3781         cleanup_nocli || error “stop server failed”
3782         #writeconf to remove all ost2 traces for subsequent tests
3783         writeconf_or_reformat
3784 }
3785 run_test 51 "Verify that mdt_reint handles RMF_MDT_MD correctly when an OST is added"
3786
3787 copy_files_xattrs()
3788 {
3789         local node=$1
3790         local dest=$2
3791         local xattrs=$3
3792         shift 3
3793
3794         do_node $node mkdir -p $dest
3795         [ $? -eq 0 ] || { error "Unable to create directory"; return 1; }
3796
3797         do_node $node  'tar cf - '$@' | tar xf - -C '$dest';
3798                         [ \"\${PIPESTATUS[*]}\" = \"0 0\" ] || exit 1'
3799         [ $? -eq 0 ] || { error "Unable to tar files"; return 2; }
3800
3801         do_node $node 'getfattr -d -m "[a-z]*\\." '$@' > '$xattrs
3802         [ $? -eq 0 ] || { error "Unable to read xattrs"; return 3; }
3803 }
3804
3805 diff_files_xattrs()
3806 {
3807         local node=$1
3808         local backup=$2
3809         local xattrs=$3
3810         shift 3
3811
3812         local backup2=${TMP}/backup2
3813
3814         do_node $node mkdir -p $backup2
3815         [ $? -eq 0 ] || { error "Unable to create directory"; return 1; }
3816
3817         do_node $node  'tar cf - '$@' | tar xf - -C '$backup2';
3818                         [ \"\${PIPESTATUS[*]}\" = \"0 0\" ] || exit 1'
3819         [ $? -eq 0 ] || { error "Unable to tar files to diff"; return 2; }
3820
3821         do_node $node "diff -rq $backup $backup2"
3822         [ $? -eq 0 ] || { error "contents differ"; return 3; }
3823
3824         local xattrs2=${TMP}/xattrs2
3825         do_node $node 'getfattr -d -m "[a-z]*\\." '$@' > '$xattrs2
3826         [ $? -eq 0 ] || { error "Unable to read xattrs to diff"; return 4; }
3827
3828         do_node $node "diff $xattrs $xattrs2"
3829         [ $? -eq 0 ] || { error "xattrs differ"; return 5; }
3830
3831         do_node $node "rm -rf $backup2 $xattrs2"
3832         [ $? -eq 0 ] || { error "Unable to delete temporary files"; return 6; }
3833 }
3834
3835 test_52() {
3836         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
3837                 skip "Only applicable to ldiskfs-based MDTs"
3838                 return
3839         fi
3840
3841         start_mds || error "Unable to start MDS"
3842         start_ost || error "Unable to start OST1"
3843         mount_client $MOUNT || error "Unable to mount client"
3844
3845         local nrfiles=8
3846         local ost1mnt=$(facet_mntpt ost1)
3847         local ost1node=$(facet_active_host ost1)
3848         local ost1tmp=$TMP/conf52
3849         local loop
3850
3851         mkdir $DIR/$tdir || error "Unable to create $DIR/$tdir"
3852         touch $TMP/modified_first || error "Unable to create temporary file"
3853         local mtime=$(stat -c %Y $TMP/modified_first)
3854         do_node $ost1node "mkdir -p $ost1tmp &&
3855                            touch -m -d @$mtime $ost1tmp/modified_first" ||
3856                 error "Unable to create temporary file"
3857         sleep 1
3858
3859         $SETSTRIPE -c -1 -S 1M $DIR/$tdir || error "$SETSTRIPE failed"
3860
3861         for (( i=0; i < nrfiles; i++ )); do
3862                 multiop $DIR/$tdir/$tfile-$i Ow1048576w1048576w524288c ||
3863                         error "multiop failed"
3864                 echo -n .
3865         done
3866         echo
3867
3868         # backup files
3869         echo backup files to $TMP/$tdir
3870         local files=$(find $DIR/$tdir -type f -newer $TMP/modified_first)
3871         copy_files_xattrs $(hostname) $TMP/$tdir $TMP/file_xattrs $files ||
3872                 error "Unable to copy files"
3873
3874         umount_client $MOUNT || error "Unable to umount client"
3875         stop_ost || error "Unable to stop ost1"
3876
3877         echo mount ost1 as ldiskfs
3878         do_node $ost1node mkdir -p $ost1mnt || error "Unable to create $ost1mnt"
3879         if ! do_node $ost1node test -b $ost1_dev; then
3880                 loop="-o loop"
3881         fi
3882         do_node $ost1node mount -t $(facet_fstype ost1) $loop $ost1_dev \
3883                 $ost1mnt ||
3884                 error "Unable to mount ost1 as ldiskfs"
3885
3886         # backup objects
3887         echo backup objects to $ost1tmp/objects
3888         local objects=$(do_node $ost1node 'find '$ost1mnt'/O/[0-9]* -type f'\
3889                 '-size +0 -newer '$ost1tmp'/modified_first -regex ".*\/[0-9]+"')
3890         copy_files_xattrs $ost1node $ost1tmp/objects $ost1tmp/object_xattrs \
3891                         $objects ||
3892                 error "Unable to copy objects"
3893
3894         # move objects to lost+found
3895         do_node $ost1node 'mv '$objects' '${ost1mnt}'/lost+found'
3896         [ $? -eq 0 ] || { error "Unable to move objects"; return 14; }
3897
3898         do_node $ost1node "umount $ost1mnt" ||
3899                 error "Unable to umount ost1 as ldiskfs"
3900
3901         start_ost || error "Unable to start OST1"
3902         mount_client $MOUNT || error "Unable to mount client"
3903
3904         local REPAIRED=$(do_node $ost1node "$LCTL get_param \
3905                          -n osd-ldiskfs.$FSNAME-OST0000.oi_scrub" |
3906                          awk '/^lf_repa[ri]*ed/ { print $2 }')
3907         [ $REPAIRED -gt 0 ] ||
3908                 error "Some entry under /lost+found should be repaired"
3909
3910         # compare files
3911         diff_files_xattrs $(hostname) $TMP/$tdir $TMP/file_xattrs $files ||
3912                 error "Unable to diff files"
3913
3914         rm -rf $TMP/$tdir $TMP/file_xattrs ||
3915                 error "Unable to delete temporary files"
3916         do_node $ost1node "rm -rf $ost1tmp" ||
3917                 error "Unable to delete temporary files"
3918         cleanup || error "cleanup failed with $?"
3919 }
3920 run_test 52 "check recovering objects from lost+found"
3921
3922 # Checks threads_min/max/started for some service
3923 #
3924 # Arguments: service name (OST or MDT), facet (e.g., ost1, $SINGLEMDS), and a
3925 # parameter pattern prefix like 'ost.*.ost'.
3926 thread_sanity() {
3927         local modname=$1
3928         local facet=$2
3929         local parampat=$3
3930         local opts=$4
3931         local basethr=$5
3932         local tmin
3933         local tmin2
3934         local tmax
3935         local tmax2
3936         local tstarted
3937         local paramp
3938         local msg="Insane $modname thread counts"
3939         local ncpts=$(check_cpt_number $facet)
3940         local nthrs
3941         shift 4
3942
3943         check_mount || return 41
3944
3945         # We need to expand $parampat, but it may match multiple parameters, so
3946         # we'll pick the first one
3947         if ! paramp=$(do_facet $facet "lctl get_param -N ${parampat}.threads_min"|head -1); then
3948                 error "Couldn't expand ${parampat}.threads_min parameter name"
3949                 return 22
3950         fi
3951
3952         # Remove the .threads_min part
3953         paramp=${paramp%.threads_min}
3954
3955         # Check for sanity in defaults
3956         tmin=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_min" ||
3957                echo 0)
3958         tmax=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_max" ||
3959                echo 0)
3960         tstarted=$(do_facet $facet "$LCTL get_param \
3961                                     -n ${paramp}.threads_started" || echo 0)
3962         lassert 23 "$msg (PDSH problems?)" '(($tstarted && $tmin && $tmax))' ||
3963                 return $?
3964         lassert 24 "$msg" '(($tstarted >= $tmin && $tstarted <= $tmax ))' ||
3965                 return $?
3966         nthrs=$(expr $tmax - $tmin)
3967         if [ $nthrs -lt $ncpts ]; then
3968                 nthrs=0
3969         else
3970                 nthrs=$ncpts
3971         fi
3972
3973         [ $tmin -eq $tmax -a $tmin -eq $tstarted ] &&
3974                 skip_env "module parameter forced $facet thread count" &&
3975                 tmin=3 && tmax=$((3 * tmax))
3976
3977         # Check that we can change min/max
3978         do_facet $facet "$LCTL set_param \
3979                          ${paramp}.threads_min=$((tmin + nthrs))"
3980         do_facet $facet "$LCTL set_param \
3981                          ${paramp}.threads_max=$((tmax - nthrs))"
3982         tmin2=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_min" ||
3983                 echo 0)
3984         tmax2=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_max" ||
3985                 echo 0)
3986         lassert 25 "$msg" '(($tmin2 == ($tmin + $nthrs) &&
3987                             $tmax2 == ($tmax - $nthrs)))' || return $?
3988
3989         # Check that we can set min/max to the same value
3990         tmin=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_min" ||
3991                echo 0)
3992         do_facet $facet "$LCTL set_param ${paramp}.threads_max=$tmin"
3993         tmin2=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_min" ||
3994                 echo 0)
3995         tmax2=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_max" ||
3996                 echo 0)
3997         lassert 26 "$msg" '(($tmin2 == $tmin && $tmax2 == $tmin))' || return $?
3998
3999         # Check that we can't set max < min
4000         do_facet $facet "$LCTL set_param ${paramp}.threads_max=$((tmin - 1))"
4001         tmin2=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_min" ||
4002                 echo 0)
4003         tmax2=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_max" ||
4004                 echo 0)
4005         lassert 27 "$msg" '(($tmin2 <= $tmax2))' || return $?
4006
4007         # We need to ensure that we get the module options desired; to do this
4008         # we set LOAD_MODULES_REMOTE=true and we call setmodopts below.
4009         LOAD_MODULES_REMOTE=true
4010         cleanup
4011         local oldvalue
4012         local newvalue="${opts}=$(expr $basethr \* $ncpts)"
4013         setmodopts -a $modname "$newvalue" oldvalue
4014
4015         setup
4016         check_mount || return 41
4017
4018         # Restore previous setting of MODOPTS_*
4019         setmodopts $modname "$oldvalue"
4020
4021         # Check that $opts took
4022         tmin=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_min")
4023         tmax=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_max")
4024         tstarted=$(do_facet $facet \
4025                    "$LCTL get_param -n ${paramp}.threads_started")
4026         lassert 28 "$msg" '(($tstarted >= $tmin && $tstarted <= $tmax ))' ||
4027                 return $?
4028         cleanup
4029
4030         setup
4031 }
4032
4033 test_53a() {
4034         setup
4035         thread_sanity OST ost1 'ost.*.ost' 'oss_num_threads' '16'
4036         cleanup || error "cleanup failed with rc $?"
4037 }
4038 run_test 53a "check OSS thread count params"
4039
4040 test_53b() {
4041         setup
4042         local mds=$(do_facet $SINGLEMDS "$LCTL get_param \
4043                                          -N mds.*.*.threads_max 2>/dev/null")
4044         if [ -z "$mds" ]; then
4045                 #running this on an old MDT
4046                 thread_sanity MDT $SINGLEMDS 'mdt.*.*.' 'mdt_num_threads' 16
4047         else
4048                 thread_sanity MDT $SINGLEMDS 'mds.*.*.' 'mds_num_threads' 16
4049         fi
4050         cleanup || error "cleanup failed with $?"
4051 }
4052 run_test 53b "check MDS thread count params"
4053
4054 test_54a() {
4055         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
4056                 skip "Only applicable to ldiskfs-based MDTs"
4057                 return
4058         fi
4059
4060         do_rpc_nodes $(facet_host ost1) run_llverdev $(ostdevname 1) -p ||
4061                 error "llverdev failed with rc=$?"
4062         reformat_and_config
4063 }
4064 run_test 54a "test llverdev and partial verify of device"
4065
4066 test_54b() {
4067         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
4068                 skip "Only applicable to ldiskfs-based MDTs"
4069                 return
4070         fi
4071
4072         setup
4073         run_llverfs $MOUNT -p || error "llverfs failed with rc=$?"
4074         cleanup || error "cleanup failed with rc=$?"
4075 }
4076 run_test 54b "test llverfs and partial verify of filesystem"
4077
4078 lov_objid_size()
4079 {
4080         local max_ost_index=$1
4081         echo -n $(((max_ost_index + 1) * 8))
4082 }
4083
4084 test_55() {
4085         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
4086                 skip "Only applicable to ldiskfs-based MDTs"
4087                 return
4088         fi
4089
4090         local mdsdev=$(mdsdevname 1)
4091         local mdsvdev=$(mdsvdevname 1)
4092
4093         for i in 1023 2048
4094         do
4095                 if ! combined_mgs_mds; then
4096                         stop_mgs || error "stopping MGS service failed"
4097                         format_mgs || error "formatting MGT failed"
4098                 fi
4099                 add mds1 $(mkfs_opts mds1 ${mdsdev}) --reformat $mdsdev \
4100                         $mdsvdev || exit 10
4101                 add ost1 $(mkfs_opts ost1 $(ostdevname 1)) --index=$i \
4102                         --reformat $(ostdevname 1) $(ostvdevname 1)
4103                 setup_noconfig
4104                 stopall
4105                 setup_noconfig
4106                 sync
4107
4108                 echo checking size of lov_objid for ost index $i
4109                 LOV_OBJID_SIZE=$(do_facet mds1 "$DEBUGFS -R 'stat lov_objid' $mdsdev 2>/dev/null" | grep ^User | awk '{print $6}')
4110                 if [ "$LOV_OBJID_SIZE" != $(lov_objid_size $i) ]; then
4111                         error "lov_objid size has to be $(lov_objid_size $i), not $LOV_OBJID_SIZE"
4112                 else
4113                         echo ok, lov_objid size is correct: $LOV_OBJID_SIZE
4114                 fi
4115                 stopall
4116         done
4117
4118         reformat
4119 }
4120 run_test 55 "check lov_objid size"
4121
4122 test_56a() {
4123         local server_version=$(lustre_version_code $SINGLEMDS)
4124         local mds_journal_size_orig=$MDSJOURNALSIZE
4125         local n
4126
4127         MDSJOURNALSIZE=16
4128
4129         for num in $(seq 1 $MDSCOUNT); do
4130                 format_mdt $num
4131         done
4132         add ost1 $(mkfs_opts ost1 $(ostdevname 1)) --index=10000 --reformat \
4133                 $(ostdevname 1) $(ostvdevname 1)
4134         add ost2 $(mkfs_opts ost2 $(ostdevname 2)) --index=1000 --reformat \
4135                 $(ostdevname 2) $(ostvdevname 2)
4136
4137         start_mgsmds
4138         start_ost || error "Unable to start first ost (idx 10000)"
4139         start_ost2 || error "Unable to start second ost (idx 1000)"
4140         mount_client $MOUNT || error "Unable to mount client"
4141         echo ok
4142         $LFS osts
4143
4144         if [[ $server_version -ge $(version_code 2.6.54) ]] ||
4145            [[ $server_version -ge $(version_code 2.5.4) &&
4146               $server_version -lt $(version_code 2.5.11) ]]; then
4147                 wait_osc_import_state mds ost1 FULL
4148                 wait_osc_import_state mds ost2 FULL
4149                 $SETSTRIPE --stripe-count=-1 $DIR/$tfile ||
4150                         error "Unable to setstripe $DIR/$tfile"
4151                 n=$($LFS getstripe --stripe-count $DIR/$tfile)
4152                 [ "$n" -eq 2 ] || error "Stripe count not two: $n"
4153                 rm $DIR/$tfile
4154         fi
4155
4156         stopall
4157         MDSJOURNALSIZE=$mds_journal_size_orig
4158         reformat
4159 }
4160 run_test 56a "check big OST indexes and out-of-index-order start"
4161
4162 cleanup_56b() {
4163         trap 0
4164
4165         umount_client $MOUNT -f || error "unmount client failed"
4166         stop mds1
4167         stop mds2
4168         stop mds3
4169         stopall
4170         reformat
4171 }
4172
4173 test_56b() {
4174         [ $MDSCOUNT -lt 3 ] && skip "needs >= 3 MDTs" && return
4175
4176         trap cleanup_56b EXIT RETURN ERR
4177         stopall
4178
4179         if ! combined_mgs_mds ; then
4180                 format_mgs
4181                 start_mgs
4182         fi
4183
4184         add mds1 $(mkfs_opts mds1 $(mdsdevname 1)) --index=0 --reformat \
4185                 $(mdsdevname 1) $(mdsvdevname 1)
4186         add mds2 $(mkfs_opts mds2 $(mdsdevname 2)) --index=1 --reformat \
4187                 $(mdsdevname 2) $(mdsvdevname 2)
4188         add mds3 $(mkfs_opts mds3 $(mdsdevname 3)) --index=1000 --reformat \
4189                 $(mdsdevname 3) $(mdsvdevname 3)
4190         format_ost 1
4191         format_ost 2
4192
4193         start_mdt 1 || error "MDT 1 (idx 0) start failed"
4194         start_mdt 2 || error "MDT 2 (idx 1) start failed"
4195         start_mdt 3 || error "MDT 3 (idx 1000) start failed"
4196         start_ost || error "Unable to start first ost"
4197         start_ost2 || error "Unable to start second ost"
4198
4199         do_nodes $(comma_list $(mdts_nodes)) \
4200                 "$LCTL set_param mdt.*.enable_remote_dir=1 \
4201                 mdt.*.enable_remote_dir_gid=-1"
4202
4203         mount_client $MOUNT || error "Unable to mount client"
4204
4205         $LFS mkdir -c3 $MOUNT/$tdir || error "failed to make testdir"
4206
4207         echo "This is test file 1!" > $MOUNT/$tdir/$tfile.1 ||
4208                 error "failed to make test file 1"
4209         echo "This is test file 2!" > $MOUNT/$tdir/$tfile.2 ||
4210                 error "failed to make test file 2"
4211         echo "This is test file 1000!" > $MOUNT/$tdir/$tfile.1000 ||
4212                 error "failed to make test file 1000"
4213
4214         rm -rf $MOUNT/$tdir || error "failed to remove testdir"
4215
4216         $LFS mkdir -i1000 $MOUNT/$tdir.1000 ||
4217                 error "create remote dir at idx 1000 failed"
4218
4219         output=$($LFS df)
4220         echo "=== START lfs df OUTPUT ==="
4221         echo -e "$output"
4222         echo "==== END lfs df OUTPUT ===="
4223
4224         mdtcnt=$(echo -e "$output" | grep $FSNAME-MDT | wc -l)
4225         ostcnt=$(echo -e "$output" | grep $FSNAME-OST | wc -l)
4226
4227         echo "lfs df returned mdt count $mdtcnt and ost count $ostcnt"
4228         [ $mdtcnt -eq 3 ] || error "lfs df returned wrong mdt count"
4229         [ $ostcnt -eq 2 ] || error "lfs df returned wrong ost count"
4230
4231         echo "This is test file 1!" > $MOUNT/$tdir.1000/$tfile.1 ||
4232                 error "failed to make test file 1"
4233         echo "This is test file 2!" > $MOUNT/$tdir.1000/$tfile.2 ||
4234                 error "failed to make test file 2"
4235         echo "This is test file 1000!" > $MOUNT/$tdir.1000/$tfile.1000 ||
4236                 error "failed to make test file 1000"
4237         rm -rf $MOUNT/$tdir.1000 || error "failed to remove remote_dir"
4238
4239         output=$($LFS mdts)
4240         echo "=== START lfs mdts OUTPUT ==="
4241         echo -e "$output"
4242         echo "==== END lfs mdts OUTPUT ===="
4243
4244         echo -e "$output" | grep -v "MDTS:" | awk '{print $1}' |
4245                 sed 's/://g' > $TMP/mdts-actual.txt
4246         sort $TMP/mdts-actual.txt -o $TMP/mdts-actual.txt
4247
4248         echo -e "0\n1\n1000" > $TMP/mdts-expected.txt
4249
4250         diff $TMP/mdts-expected.txt $TMP/mdts-actual.txt
4251         result=$?
4252
4253         rm $TMP/mdts-expected.txt $TMP/mdts-actual.txt
4254
4255         [ $result -eq 0 ] || error "target_obd proc file is incorrect!"
4256 }
4257 run_test 56b "test target_obd correctness with nonconsecutive MDTs"
4258
4259 test_57a() { # bug 22656
4260         do_rpc_nodes $(facet_active_host ost1) load_modules_local
4261         local NID=$(do_facet ost1 "$LCTL get_param nis" |
4262                     tail -1 | awk '{print $1}')
4263         writeconf_or_reformat
4264         [ $(facet_fstype ost1) == zfs ] && import_zpool ost1
4265         do_facet ost1 "$TUNEFS --failnode=$NID `ostdevname 1`" ||
4266                 error "tunefs failed"
4267         start_mgsmds
4268         start_ost && error "OST registration from failnode should fail"
4269         reformat
4270 }
4271 run_test 57a "initial registration from failnode should fail (should return errs)"
4272
4273 test_57b() {
4274         do_rpc_nodes $(facet_active_host ost1) load_modules_local
4275         local NID=$(do_facet ost1 "$LCTL get_param nis" |
4276                     tail -1 | awk '{print $1}')
4277         writeconf_or_reformat
4278         [ $(facet_fstype ost1) == zfs ] && import_zpool ost1
4279         do_facet ost1 "$TUNEFS --servicenode=$NID `ostdevname 1`" ||
4280                 error "tunefs failed"
4281         start_mgsmds
4282         start_ost || error "OST registration from servicenode should not fail"
4283         reformat
4284 }
4285 run_test 57b "initial registration from servicenode should not fail"
4286
4287 count_osts() {
4288         do_facet mgs $LCTL get_param mgs.MGS.live.$FSNAME | grep OST | wc -l
4289 }
4290
4291 test_58() { # bug 22658
4292         combined_mgs_mds || stop_mgs || error "stopping MGS service failed"
4293         setup_noconfig
4294         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
4295         createmany -o $DIR/$tdir/$tfile-%d 100
4296         # make sure that OSTs do not cancel llog cookies before we unmount the MDS
4297 #define OBD_FAIL_OBD_LOG_CANCEL_NET      0x601
4298         do_facet $SINGLEMDS "$LCTL set_param fail_loc=0x601"
4299         unlinkmany $DIR/$tdir/$tfile-%d 100
4300         stop_mds || error "Unable to stop MDS"
4301
4302         local MNTDIR=$(facet_mntpt $SINGLEMDS)
4303         local devname=$(mdsdevname ${SINGLEMDS//mds/})
4304
4305         # remove all files from the OBJECTS dir
4306         mount_fstype $SINGLEMDS
4307
4308         do_facet $SINGLEMDS "find $MNTDIR/O/1/d* -type f -delete"
4309
4310         unmount_fstype $SINGLEMDS
4311         # restart MDS with missing llog files
4312         start_mds || error "unable to start MDS"
4313         do_facet $SINGLEMDS "$LCTL set_param fail_loc=0"
4314         reformat
4315 }
4316 run_test 58 "missing llog files must not prevent MDT from mounting"
4317
4318 test_59() {
4319         start_mgsmds >> /dev/null
4320         local C1=$(count_osts)
4321         if [ $C1 -eq 0 ]; then
4322                 start_ost >> /dev/null
4323                 C1=$(count_osts)
4324         fi
4325         stopall
4326         echo "original ost count: $C1 (expect > 0)"
4327         [ $C1 -gt 0 ] || error "No OSTs in $FSNAME log"
4328         start_mgsmds -o writeconf >> /dev/null || error "MDT start failed"
4329         local C2=$(count_osts)
4330         echo "after mdt writeconf count: $C2 (expect 0)"
4331         [ $C2 -gt 0 ] && error "MDT writeconf should erase OST logs"
4332         echo "OST start without writeconf should fail:"
4333         start_ost >> /dev/null &&
4334                 error "OST start without writeconf didn't fail"
4335         echo "OST start with writeconf should succeed:"
4336         start_ost -o writeconf >> /dev/null || error "OST1 start failed"
4337         local C3=$(count_osts)
4338         echo "after ost writeconf count: $C3 (expect 1)"
4339         [ $C3 -eq 1 ] || error "new OST writeconf should add:"
4340         start_ost2 -o writeconf >> /dev/null || error "OST2 start failed"
4341         local C4=$(count_osts)
4342         echo "after ost2 writeconf count: $C4 (expect 2)"
4343         [ $C4 -eq 2 ] || error "OST2 writeconf should add log"
4344         stop_ost2 >> /dev/null
4345         cleanup_nocli >> /dev/null
4346         #writeconf to remove all ost2 traces for subsequent tests
4347         writeconf_or_reformat
4348 }
4349 run_test 59 "writeconf mount option"
4350
4351 test_60() { # LU-471
4352         local num
4353
4354         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
4355                 skip "Only applicable to ldiskfs-based MDTs"
4356                 return
4357         fi
4358
4359         for num in $(seq $MDSCOUNT); do
4360                 add mds${num} $(mkfs_opts mds${num} $(mdsdevname $num)) \
4361                         --mkfsoptions='\" -E stride=64 -O ^uninit_bg\"' \
4362                         --reformat $(mdsdevname $num) $(mdsvdevname $num) ||
4363                         exit 10
4364         done
4365
4366         dump=$(do_facet $SINGLEMDS dumpe2fs $(mdsdevname 1))
4367         [ ${PIPESTATUS[0]} -eq 0 ] || error "dumpe2fs $(mdsdevname 1) failed"
4368
4369         # MDT default has dirdata feature
4370         echo $dump | grep dirdata > /dev/null || error "dirdata is not set"
4371         # we disable uninit_bg feature
4372         echo $dump | grep uninit_bg > /dev/null && error "uninit_bg is set"
4373         # we set stride extended options
4374         echo $dump | grep stride > /dev/null || error "stride is not set"
4375         reformat
4376 }
4377 run_test 60 "check mkfs.lustre --mkfsoptions -E -O options setting"
4378
4379 test_61() { # LU-80
4380         local lxattr=false
4381
4382         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.1.53) ] ||
4383                 { skip "Need MDS version at least 2.1.53"; return 0; }
4384
4385         if [ $(facet_fstype $SINGLEMDS) == ldiskfs ] &&
4386              ! large_xattr_enabled; then
4387                 lxattr=true
4388
4389                 for num in $(seq $MDSCOUNT); do
4390                         do_facet mds${num} $TUNE2FS -O large_xattr \
4391                                 $(mdsdevname $num) ||
4392                                 error "tune2fs on mds $num failed"
4393                 done
4394         fi
4395
4396         combined_mgs_mds || stop_mgs || error "stopping MGS service failed"
4397         setup_noconfig || error "setting up the filesystem failed"
4398         client_up || error "starting client failed"
4399
4400         local file=$DIR/$tfile
4401         touch $file || error "touch $file failed"
4402
4403         local large_value="$(generate_string $(max_xattr_size))"
4404         local small_value="bar"
4405
4406         local name="trusted.big"
4407         log "save large xattr $name on $file"
4408         setfattr -n $name -v $large_value $file ||
4409                 error "saving $name on $file failed"
4410
4411         local new_value=$(get_xattr_value $name $file)
4412         [[ "$new_value" != "$large_value" ]] &&
4413                 error "$name different after saving"
4414
4415         log "shrink value of $name on $file"
4416         setfattr -n $name -v $small_value $file ||
4417                 error "shrinking value of $name on $file failed"
4418
4419         new_value=$(get_xattr_value $name $file)
4420         [[ "$new_value" != "$small_value" ]] &&
4421                 error "$name different after shrinking"
4422
4423         log "grow value of $name on $file"
4424         setfattr -n $name -v $large_value $file ||
4425                 error "growing value of $name on $file failed"
4426
4427         new_value=$(get_xattr_value $name $file)
4428         [[ "$new_value" != "$large_value" ]] &&
4429                 error "$name different after growing"
4430
4431         log "check value of $name on $file after remounting MDS"
4432         fail $SINGLEMDS
4433         new_value=$(get_xattr_value $name $file)
4434         [[ "$new_value" != "$large_value" ]] &&
4435                 error "$name different after remounting MDS"
4436
4437         log "remove large xattr $name from $file"
4438         setfattr -x $name $file || error "removing $name from $file failed"
4439
4440         if $lxattr; then
4441                 stopall || error "stopping for e2fsck run"
4442                 for num in $(seq $MDSCOUNT); do
4443                         run_e2fsck $(facet_active_host mds$num) \
4444                                 $(mdsdevname $num) "-y" ||
4445                                 error "e2fsck MDT$num failed"
4446                 done
4447                 setup_noconfig || error "remounting the filesystem failed"
4448         fi
4449
4450         # need to delete this file to avoid problems in other tests
4451         rm -f $file
4452         stopall || error "stopping systems to turn off large_xattr"
4453         if $lxattr; then
4454                 for num in $(seq $MDSCOUNT); do
4455                         do_facet mds${num} $TUNE2FS -O ^large_xattr \
4456                                 $(mdsdevname $num) ||
4457                                 error "tune2fs on mds $num failed"
4458                 done
4459         fi
4460 }
4461 run_test 61 "large xattr"
4462
4463 test_62() {
4464         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
4465                 skip "Only applicable to ldiskfs-based MDTs"
4466                 return
4467         fi
4468
4469         # MRP-118
4470         local mdsdev=$(mdsdevname 1)
4471         local ostdev=$(ostdevname 1)
4472
4473         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
4474                 { skip "Need MDS version at least 2.2.51"; return 0; }
4475
4476         echo "disable journal for mds"
4477         do_facet mds1 $TUNE2FS -O ^has_journal $mdsdev || error "tune2fs failed"
4478         start_mds && error "MDT start should fail"
4479         echo "disable journal for ost"
4480         do_facet ost1 $TUNE2FS -O ^has_journal $ostdev || error "tune2fs failed"
4481         start_ost && error "OST start should fail"
4482         cleanup || error "cleanup failed with rc $?"
4483         reformat_and_config
4484 }
4485 run_test 62 "start with disabled journal"
4486
4487 test_63() {
4488         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
4489                 skip "Only applicable to ldiskfs-based MDTs"
4490                 return
4491         fi
4492
4493         local inode_slab=$(do_facet $SINGLEMDS \
4494                 "awk '/ldiskfs_inode_cache/ { print \\\$5 }' /proc/slabinfo")
4495         if [ -z "$inode_slab" ]; then
4496                 skip "ldiskfs module has not been loaded"
4497                 return
4498         fi
4499
4500         echo "$inode_slab ldisk inodes per page"
4501         if [ "$inode_slab" -ge "3" ] ; then
4502                 # If kmalloc-128 is also 1 per page - this is a debug kernel
4503                 # and so this is not an error.
4504                 local kmalloc128=$(do_facet $SINGLEMDS \
4505                         "awk '/^(kmalloc|size)-128 / { print \\\$5 }' /proc/slabinfo")
4506                 # 32 128-byte chunks in 4k
4507                 [ "$kmalloc128" -eq "32" ] ||
4508                         error "ldisk inode size is too big, $inode_slab objs per page"
4509         fi
4510
4511         return
4512 }
4513 run_test 63 "Verify each page can at least hold 3 ldisk inodes"
4514
4515 test_64() {
4516         start_mds || error "unable to start MDS"
4517         start_ost || error "Unable to start OST1"
4518         start_ost2 || error "Unable to start second ost"
4519         mount_client $MOUNT || error "Unable to mount client"
4520         stop_ost2 || error "Unable to stop second ost"
4521         echo "$LFS df"
4522         $LFS df --lazy
4523         umount_client $MOUNT -f || error “unmount $MOUNT failed”
4524         cleanup_nocli || error "cleanup_nocli failed with $?"
4525         #writeconf to remove all ost2 traces for subsequent tests
4526         writeconf_or_reformat
4527 }
4528 run_test 64 "check lfs df --lazy "
4529
4530 test_65() { # LU-2237
4531         # Currently, the test is only valid for ldiskfs backend
4532         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
4533                 skip "non-ldiskfs backend" && return
4534
4535         local devname=$(mdsdevname ${SINGLEMDS//mds/})
4536         local brpt=$(facet_mntpt brpt)
4537         local opts=""
4538
4539         if ! do_facet $SINGLEMDS "test -b $devname"; then
4540                 opts="-o loop"
4541         fi
4542
4543         stop_mds || error "Unable to stop MDS"
4544         local obj=$(do_facet $SINGLEMDS \
4545                     "$DEBUGFS -c -R \\\"stat last_rcvd\\\" $devname" |
4546                     grep Inode)
4547         if [ -z "$obj" ]; then
4548                 # The MDT may be just re-formatted, mount the MDT for the
4549                 # first time to guarantee the "last_rcvd" file is there.
4550                 start_mds || error "fail to mount the MDS for the first time"
4551                 stop_mds || error "Unable to stop MDS"
4552         fi
4553
4554         # remove the "last_rcvd" file
4555         do_facet $SINGLEMDS "mkdir -p $brpt"
4556         do_facet $SINGLEMDS \
4557                 "mount -t $(facet_fstype $SINGLEMDS) $opts $devname $brpt"
4558         do_facet $SINGLEMDS "rm -f ${brpt}/last_rcvd"
4559         do_facet $SINGLEMDS "$UMOUNT $brpt"
4560
4561         # restart MDS, the "last_rcvd" file should be recreated.
4562         start_mds || error "fail to restart the MDS"
4563         stop_mds || error "Unable to stop MDS"
4564         obj=$(do_facet $SINGLEMDS \
4565               "$DEBUGFS -c -R \\\"stat last_rcvd\\\" $devname" | grep Inode)
4566         [ -n "$obj" ] || error "fail to re-create the last_rcvd"
4567 }
4568 run_test 65 "re-create the lost last_rcvd file when server mount"
4569
4570 test_66() {
4571         [[ $(lustre_version_code mgs) -ge $(version_code 2.3.59) ]] ||
4572                 { skip "Need MGS version at least 2.3.59"; return 0; }
4573
4574         setup
4575         local OST1_NID=$(do_facet ost1 $LCTL list_nids | head -1)
4576         local MDS_NID=$(do_facet $SINGLEMDS $LCTL list_nids | head -1)
4577
4578         echo "replace_nids should fail if MDS, OSTs and clients are UP"
4579         do_facet mgs $LCTL replace_nids $FSNAME-OST0000 $OST1_NID &&
4580                 error "replace_nids fail"
4581
4582         umount_client $MOUNT || error "unmounting client failed"
4583         echo "replace_nids should fail if MDS and OSTs are UP"
4584         do_facet mgs $LCTL replace_nids $FSNAME-OST0000 $OST1_NID &&
4585                 error "replace_nids fail"
4586
4587         stop_ost || error "Unable to stop OST1"
4588         echo "replace_nids should fail if MDS is UP"
4589         do_facet mgs $LCTL replace_nids $FSNAME-OST0000 $OST1_NID &&
4590                 error "replace_nids fail"
4591
4592         stop_mds || error "stopping mds failed"
4593
4594         if combined_mgs_mds; then
4595                 start_mdt 1 "-o nosvc" ||
4596                         error "starting mds with nosvc option failed"
4597         fi
4598
4599         echo "command should accept two parameters"
4600         do_facet mgs $LCTL replace_nids $FSNAME-OST0000 &&
4601                 error "command should accept two params"
4602
4603         echo "correct device name should be passed"
4604         do_facet mgs $LCTL replace_nids $FSNAME-WRONG0000 $OST1_NID &&
4605                 error "wrong devname"
4606
4607         echo "wrong nids list should not destroy the system"
4608         do_facet mgs $LCTL replace_nids $FSNAME-OST0000 "wrong nids list" &&
4609                 error "wrong parse"
4610
4611         echo "replace OST nid"
4612         do_facet mgs $LCTL replace_nids $FSNAME-OST0000 $OST1_NID ||
4613                 error "replace nids failed"
4614
4615         echo "command should accept two parameters"
4616         do_facet mgs $LCTL replace_nids $FSNAME-MDT0000 &&
4617                 error "command should accept two params"
4618
4619         echo "wrong nids list should not destroy the system"
4620         do_facet mgs $LCTL replace_nids $FSNAME-MDT0000 "wrong nids list" &&
4621                 error "wrong parse"
4622
4623         echo "replace MDS nid"
4624         do_facet mgs $LCTL replace_nids $FSNAME-MDT0000 $MDS_NID ||
4625                 error "replace nids failed"
4626
4627         if ! combined_mgs_mds ; then
4628                 stop_mgs
4629         else
4630                 stop_mds || error "Unable to stop MDS"
4631         fi
4632
4633         setup_noconfig
4634         check_mount || error "error after nid replace"
4635         cleanup || error "cleanup failed"
4636         reformat
4637 }
4638 run_test 66 "replace nids"
4639
4640 test_67() { #LU-2950
4641         local legacy="$TMP/legacy_lnet_config"
4642         local new="$TMP/new_routes_test"
4643         local out="$TMP/config_out_file"
4644         local verify="$TMP/conv_verify"
4645         local verify_conf="$TMP/conf_verify"
4646
4647         # Create the legacy file that will be run through the
4648         # lustre_routes_conversion script
4649         cat <<- LEGACY_LNET_CONFIG > $legacy
4650                 tcp1 23 192.168.213.1@tcp:1; tcp5 34 193.30.4.3@tcp:4;
4651                 tcp2 54 10.1.3.2@tcp;
4652                 tcp3 10.3.4.3@tcp:3;
4653                 tcp4 10.3.3.4@tcp;
4654         LEGACY_LNET_CONFIG
4655
4656         # Create the verification file to verify the output of
4657         # lustre_routes_conversion script against.
4658         cat <<- VERIFY_LNET_CONFIG > $verify
4659                 tcp1: { gateway: 192.168.213.1@tcp, hop: 23, priority: 1 }
4660                 tcp5: { gateway: 193.30.4.3@tcp, hop: 34, priority: 4 }
4661                 tcp2: { gateway: 10.1.3.2@tcp, hop: 54 }
4662                 tcp3: { gateway: 10.3.4.3@tcp, priority: 3 }
4663                 tcp4: { gateway: 10.3.3.4@tcp }
4664         VERIFY_LNET_CONFIG
4665
4666         # Create the verification file to verify the output of
4667         # lustre_routes_config script against
4668         cat <<- VERIFY_LNET_CONFIG > $verify_conf
4669                 lctl --net tcp1 add_route 192.168.213.1@tcp 23 1
4670                 lctl --net tcp5 add_route 193.30.4.3@tcp 34 4
4671                 lctl --net tcp2 add_route 10.1.3.2@tcp 54 4
4672                 lctl --net tcp3 add_route 10.3.4.3@tcp 1 3
4673                 lctl --net tcp4 add_route 10.3.3.4@tcp 1 3
4674         VERIFY_LNET_CONFIG
4675
4676         lustre_routes_conversion $legacy $new > /dev/null
4677         if [ -f $new ]; then
4678                 # verify the conversion output
4679                 cmp -s $new $verify > /dev/null
4680                 if [ $? -eq 1 ]; then
4681                         error "routes conversion failed"
4682                 fi
4683
4684                 lustre_routes_config --dry-run --verbose $new > $out
4685                 # check that the script succeeded
4686                 cmp -s $out $verify_conf > /dev/null
4687                 if [ $? -eq 1 ]; then
4688                         error "routes config failed"
4689                 fi
4690         else
4691                 error "routes conversion test failed"
4692         fi
4693         # remove generated files
4694         rm -f $new $legacy $verify $verify_conf $out
4695 }
4696 run_test 67 "test routes conversion and configuration"
4697
4698 test_68() {
4699         local fid
4700         local seq
4701         local START
4702         local END
4703
4704         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.4.53) ] ||
4705                 { skip "Need MDS version at least 2.4.53"; return 0; }
4706
4707         umount_client $MOUNT || error "umount client failed"
4708
4709         start_mdt 1 || error "MDT start failed"
4710         start_ost || error "Unable to start OST1"
4711
4712         # START-END - the sequences we'll be reserving
4713         START=$(do_facet $SINGLEMDS \
4714                 $LCTL get_param -n seq.ctl*.space | awk -F'[[ ]' '{print $2}')
4715         END=$((START + (1 << 30)))
4716         do_facet $SINGLEMDS \
4717                 $LCTL set_param seq.ctl*.fldb="[$START-$END\):0:mdt"
4718
4719         # reset the sequences MDT0000 has already assigned
4720         do_facet $SINGLEMDS \
4721                 $LCTL set_param seq.srv*MDT0000.space=clear
4722
4723         # remount to let the client allocate new sequence
4724         mount_client $MOUNT || error "mount client failed"
4725
4726         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
4727         do_facet $SINGLEMDS \
4728                 $LCTL get_param seq.srv*MDT0000.space
4729         $LFS path2fid $DIR/$tfile
4730
4731         local old_ifs="$IFS"
4732         IFS='[:]'
4733         fid=($($LFS path2fid $DIR/$tfile))
4734         IFS="$old_ifs"
4735         let seq=${fid[1]}
4736
4737         if [[ $seq < $END ]]; then
4738                 error "used reserved sequence $seq?"
4739         fi
4740         cleanup || error "cleanup failed with $?"
4741 }
4742 run_test 68 "be able to reserve specific sequences in FLDB"
4743
4744 # Test 69: is about the total number of objects ever created on an OST.
4745 # so that when it is reformatted the normal MDS->OST orphan recovery won't
4746 # just "precreate" the missing objects. In the past it might try to recreate
4747 # millions of objects after an OST was reformatted
4748 test_69() {
4749         local server_version=$(lustre_version_code $SINGLEMDS)
4750
4751         [[ $server_version -lt $(version_code 2.4.2) ]] &&
4752                 skip "Need MDS version at least 2.4.2" && return
4753
4754         [[ $server_version -ge $(version_code 2.4.50) ]] &&
4755         [[ $server_version -lt $(version_code 2.5.0) ]] &&
4756                 skip "Need MDS version at least 2.5.0" && return
4757
4758         setup
4759         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
4760
4761         # use OST0000 since it probably has the most creations
4762         local OSTNAME=$(ostname_from_index 0)
4763         local mdtosc_proc1=$(get_mdtosc_proc_path mds1 $OSTNAME)
4764         local last_id=$(do_facet mds1 $LCTL get_param -n \
4765                         osc.$mdtosc_proc1.prealloc_last_id)
4766
4767         # Want to have OST LAST_ID over 5 * OST_MAX_PRECREATE to
4768         # verify that the LAST_ID recovery is working properly. If
4769         # not, then the OST will refuse to allow the MDS connect
4770         # because the LAST_ID value is too different from the MDS
4771         #define OST_MAX_PRECREATE=20000
4772         local ost_max_pre=20000
4773         local num_create=$(( ost_max_pre * 5 + 1 - last_id))
4774
4775         # If the LAST_ID is already over 5 * OST_MAX_PRECREATE, we don't
4776         # need to create any files. So, skip this section.
4777         if [ $num_create -gt 0 ]; then
4778                 # Check the number of inodes available on OST0
4779                 local files=0
4780                 local ifree=$($LFS df -i $MOUNT | awk '/OST0000/ { print $4 }')
4781                 log "On OST0, $ifree inodes available. Want $num_create."
4782
4783                 $SETSTRIPE -i 0 $DIR/$tdir ||
4784                         error "$SETSTRIPE -i 0 $DIR/$tdir failed"
4785                 if [ $ifree -lt 10000 ]; then
4786                         files=$(( ifree - 50 ))
4787                 else
4788                         files=10000
4789                 fi
4790
4791                 local j=$((num_create / files + 1))
4792                 for i in $(seq 1 $j); do
4793                         createmany -o $DIR/$tdir/$tfile-$i- $files ||
4794                                 error "createmany fail create $files files: $?"
4795                         unlinkmany $DIR/$tdir/$tfile-$i- $files ||
4796                                 error "unlinkmany failed unlink $files files"
4797                 done
4798         fi
4799
4800         # delete all of the files with objects on OST0 so the
4801         # filesystem is not inconsistent later on
4802         $LFS find $MOUNT --ost 0 -print0 | xargs -0 rm
4803
4804         umount_client $MOUNT || error "umount client failed"
4805         stop_ost || error "OST0 stop failure"
4806         add ost1 $(mkfs_opts ost1 $(ostdevname 1)) --reformat --replace \
4807                 $(ostdevname 1) $(ostvdevname 1) ||
4808                 error "reformat and replace $ostdev failed"
4809         start_ost || error "OST0 restart failure"
4810         wait_osc_import_state mds ost FULL
4811
4812         mount_client $MOUNT || error "mount client failed"
4813         touch $DIR/$tdir/$tfile-last || error "create file after reformat"
4814         local idx=$($GETSTRIPE -i $DIR/$tdir/$tfile-last)
4815         [ $idx -ne 0 ] && error "$DIR/$tdir/$tfile-last on $idx not 0" || true
4816
4817         local iused=$($LFS df -i $MOUNT | awk '/OST0000/ { print $3 }')
4818         log "On OST0, $iused used inodes"
4819         [ $iused -ge $((ost_max_pre/2 + 1000)) ] &&
4820                 error "OST replacement created too many inodes; $iused"
4821         cleanup || error "cleanup failed with $?"
4822 }
4823 run_test 69 "replace an OST with the same index"
4824
4825 test_70a() {
4826         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4827         local MDTIDX=1
4828
4829         cleanup || error "cleanup failed with $?"
4830
4831         start_mdt 1 || error "MDT0 start fail"
4832
4833         start_ost || error "OST0 start fail"
4834         for num in $(seq 2 $MDSCOUNT); do
4835                 start_mdt $num || return
4836         done
4837
4838         mount_client $MOUNT || error "mount client fails"
4839
4840         mkdir $DIR/$tdir || error "create $DIR/$tdir failed"
4841
4842         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
4843                 error "create remote dir fail"
4844
4845         rm -rf $DIR/$tdir || error "delete dir fail"
4846         cleanup || error "cleanup failed with $?"
4847 }
4848 run_test 70a "start MDT0, then OST, then MDT1"
4849
4850 test_70b() {
4851         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4852         local MDTIDX=1
4853
4854         start_ost || error "OST0 start fail"
4855
4856         start_mds || error "MDS start fail"
4857
4858         mount_client $MOUNT || error "mount client fails"
4859
4860         mkdir $DIR/$tdir || error "create $DIR/$tdir failed"
4861
4862         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
4863                 error "create remote dir fail"
4864
4865         rm -rf $DIR/$tdir || error "delete dir fail"
4866
4867         cleanup || error "cleanup failed with $?"
4868 }
4869 run_test 70b "start OST, MDT1, MDT0"
4870
4871 test_70c() {
4872         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4873         local MDTIDX=1
4874
4875         start_mds || error "MDS start fail"
4876         start_ost || error "OST0 start fail"
4877
4878         mount_client $MOUNT || error "mount client fails"
4879         stop_mdt 1 || error "MDT1 start fail"
4880
4881         local mdc_for_mdt1=$($LCTL dl | grep MDT0000-mdc | awk '{print $4}')
4882         echo "deactivate $mdc_for_mdt1"
4883         $LCTL --device $mdc_for_mdt1 deactivate ||
4884                 error "set $mdc_for_mdt1 deactivate failed"
4885
4886         mkdir $DIR/$tdir && error "mkdir succeed"
4887
4888         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir &&
4889                 error "create remote dir succeed"
4890
4891         cleanup || error "cleanup failed with $?"
4892 }
4893 run_test 70c "stop MDT0, mkdir fail, create remote dir fail"
4894
4895 test_70d() {
4896         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4897         local MDTIDX=1
4898
4899         start_mds || error "MDS start fail"
4900         start_ost || error "OST0 start fail"
4901
4902         mount_client $MOUNT || error "mount client fails"
4903
4904         stop_mdt 2 || error "MDT1 start fail"
4905
4906         local mdc_for_mdt2=$($LCTL dl | grep MDT0001-mdc |
4907                              awk '{print $4}')
4908         echo "deactivate $mdc_for_mdt2"
4909         $LCTL --device $mdc_for_mdt2 deactivate ||
4910                 error "set $mdc_for_mdt2 deactivate failed"
4911
4912         mkdir $DIR/$tdir || error "mkdir fail"
4913         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir &&
4914                 error "create remote dir succeed"
4915
4916         rm -rf $DIR/$tdir || error "delete dir fail"
4917
4918         cleanup || error "cleanup failed with $?"
4919 }
4920 run_test 70d "stop MDT1, mkdir succeed, create remote dir fail"
4921
4922 test_70e() {
4923         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4924
4925         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.7.62) ] ||
4926                 { skip "Need MDS version at least 2.7.62"; return 0; }
4927
4928         cleanup || error "cleanup failed with $?"
4929
4930         local mdsdev=$(mdsdevname 1)
4931         local ostdev=$(ostdevname 1)
4932         local mdsvdev=$(mdsvdevname 1)
4933         local ostvdev=$(ostvdevname 1)
4934         local opts_mds="$(mkfs_opts mds1 $mdsdev) --reformat $mdsdev $mdsvdev"
4935         local opts_ost="$(mkfs_opts ost1 $ostdev) --reformat $ostdev $ostvdev"
4936
4937         add mds1 $opts_mds || error "add mds1 failed"
4938         start_mdt 1 || error "start mdt1 failed"
4939         add ost1 $opts_ost || error "add ost1 failed"
4940         start_ost || error "start ost failed"
4941         mount_client $MOUNT > /dev/null || error "mount client $MOUNT failed"
4942
4943         local soc=$(do_facet mds1 "$LCTL get_param -n \
4944                     mdt.*MDT0000.sync_lock_cancel")
4945         [ $soc == "never" ] || error "SoC enabled on single MDS"
4946
4947         for i in $(seq 2 $MDSCOUNT); do
4948                 mdsdev=$(mdsdevname $i)
4949                 mdsvdev=$(mdsvdevname $i)
4950                 opts_mds="$(mkfs_opts mds$i $mdsdev) --reformat $mdsdev \
4951                           $mdsvdev"
4952                 add mds$i $opts_mds || error "add mds$i failed"
4953                 start_mdt $i || error "start mdt$i fail"
4954         done
4955
4956         wait_dne_interconnect
4957
4958         for i in $(seq $MDSCOUNT); do
4959                 soc=$(do_facet mds$i "$LCTL get_param -n \
4960                         mdt.*MDT000$((i - 1)).sync_lock_cancel")
4961                 [ $soc == "blocking" ] || error "SoC not enabled on DNE"
4962         done
4963
4964         for i in $(seq 2 $MDSCOUNT); do
4965                 stop_mdt $i || error "stop mdt$i fail"
4966         done
4967         soc=$(do_facet mds1 "$LCTL get_param -n \
4968                 mdt.*MDT0000.sync_lock_cancel")
4969         [ $soc == "never" ] || error "SoC enabled on single MDS"
4970
4971         cleanup || error "cleanup failed with $?"
4972 }
4973 run_test 70e "Sync-on-Cancel will be enabled by default on DNE"
4974
4975 test_71a() {
4976         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4977         if combined_mgs_mds; then
4978                 skip "needs separate MGS/MDT" && return
4979         fi
4980         local MDTIDX=1
4981
4982         start_mdt 1 || error "MDT0 start fail"
4983         start_ost || error "OST0 start fail"
4984         for num in $(seq 2 $MDSCOUNT); do
4985                 start_mdt $num || return
4986         done
4987
4988         start_ost2 || error "OST1 start fail"
4989
4990         mount_client $MOUNT || error "mount client fails"
4991
4992         mkdir $DIR/$tdir || error "mkdir fail"
4993         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
4994                 error "create remote dir succeed"
4995
4996         mcreate $DIR/$tdir/remote_dir/$tfile || error "create file failed"
4997         rm -rf $DIR/$tdir || error "delete dir fail"
4998
4999         umount_client $MOUNT || error "umount_client failed"
5000         stop_mds || error "MDS stop fail"
5001         stop_ost || error "OST0 stop fail"
5002         stop_ost2 || error "OST1 stop fail"
5003 }
5004 run_test 71a "start MDT0 OST0, MDT1, OST1"
5005
5006 test_71b() {
5007         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
5008         if combined_mgs_mds; then
5009                 skip "needs separate MGS/MDT" && return
5010         fi
5011         local MDTIDX=1
5012
5013         for num in $(seq 2 $MDSCOUNT); do
5014                 start_mdt $num || return
5015         done
5016         start_ost || error "OST0 start fail"
5017         start_mdt 1 || error "MDT0 start fail"
5018         start_ost2 || error "OST1 start fail"
5019
5020         mount_client $MOUNT || error "mount client fails"
5021
5022         mkdir $DIR/$tdir || error "mkdir fail"
5023         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
5024                 error "create remote dir succeed"
5025
5026         mcreate $DIR/$tdir/remote_dir/$tfile || error "create file failed"
5027         rm -rf $DIR/$tdir || error "delete dir fail"
5028
5029         umount_client $MOUNT || error "umount_client failed"
5030         stop_mds || error "MDT0 stop fail"
5031         stop_ost || error "OST0 stop fail"
5032         stop_ost2 || error "OST1 stop fail"
5033 }
5034 run_test 71b "start MDT1, OST0, MDT0, OST1"
5035
5036 test_71c() {
5037         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
5038         if combined_mgs_mds; then
5039                 skip "needs separate MGS/MDT" && return
5040         fi
5041         local MDTIDX=1
5042
5043         start_ost || error "OST0 start fail"
5044         start_ost2 || error "OST1 start fail"
5045         for num in $(seq 2 $MDSCOUNT); do
5046                 start_mdt $num || return
5047         done
5048         start_mdt 1 || error "MDT0 start fail"
5049
5050         mount_client $MOUNT || error "mount client fails"
5051
5052         mkdir $DIR/$tdir || error "mkdir fail"
5053         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
5054                 error "create remote dir succeed"
5055
5056         mcreate $DIR/$tdir/remote_dir/$tfile || error "create file failed"
5057         rm -rf $DIR/$tdir || error "delete dir fail"
5058
5059         umount_client $MOUNT || error "umount_client failed"
5060         stop_mds || error "MDS stop fail"
5061         stop_ost || error "OST0 stop fail"
5062         stop_ost2 || error "OST1 stop fail"
5063
5064 }
5065 run_test 71c "start OST0, OST1, MDT1, MDT0"
5066
5067 test_71d() {
5068         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
5069         if combined_mgs_mds; then
5070                 skip "needs separate MGS/MDT" && return
5071         fi
5072         local MDTIDX=1
5073
5074         start_ost || error "OST0 start fail"
5075         for num in $(seq 2 $MDSCOUNT); do
5076                 start_mdt $num || return
5077         done
5078         start_mdt 1 || error "MDT0 start fail"
5079         start_ost2 || error "OST1 start fail"
5080
5081         mount_client $MOUNT || error "mount client fails"
5082
5083         mkdir $DIR/$tdir || error "mkdir fail"
5084         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
5085                         error "create remote dir succeed"
5086
5087         mcreate $DIR/$tdir/remote_dir/$tfile || error "create file failed"
5088         rm -rf $DIR/$tdir || error "delete dir fail"
5089
5090         umount_client $MOUNT || error "umount_client failed"
5091         stop_mds || error "MDS stop fail"
5092         stop_ost || error "OST0 stop fail"
5093         stop_ost2 || error "OST1 stop fail"
5094
5095 }
5096 run_test 71d "start OST0, MDT1, MDT0, OST1"
5097
5098 test_71e() {
5099         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
5100         if combined_mgs_mds; then
5101                 skip "needs separate MGS/MDT" && return
5102         fi
5103         local MDTIDX=1
5104
5105         start_ost || error "OST0 start fail"
5106         for num in $(seq 2 $MDSCOUNT); do
5107                 start_mdt $num || return
5108         done
5109         start_ost2 || error "OST1 start fail"
5110         start_mdt 1 || error "MDT0 start fail"
5111
5112         mount_client $MOUNT || error "mount client fails"
5113
5114         mkdir $DIR/$tdir || error "mkdir fail"
5115         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
5116                 error "create remote dir succeed"
5117
5118         mcreate $DIR/$tdir/remote_dir/$tfile || error "create file failed"
5119         rm -rf $DIR/$tdir || error "delete dir fail"
5120
5121         umount_client $MOUNT || error "umount_client failed"
5122         stop_mds || error "MDS stop fail"
5123         stop_ost || error "OST0 stop fail"
5124         stop_ost2 || error "OST1 stop fail"
5125
5126 }
5127 run_test 71e "start OST0, MDT1, OST1, MDT0"
5128
5129 test_72() { #LU-2634
5130         local mdsdev=$(mdsdevname 1)
5131         local ostdev=$(ostdevname 1)
5132         local cmd="$E2FSCK -fnvd $mdsdev"
5133         local fn=3
5134
5135         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
5136                 skip "ldiskfs only test" && return
5137
5138         #tune MDT with "-O extents"
5139
5140         for num in $(seq $MDSCOUNT); do
5141                 add mds${num} $(mkfs_opts mds$num $(mdsdevname $num)) \
5142                         --reformat $(mdsdevname $num) $(mdsvdevname $num) ||
5143                         error "add mds $num failed"
5144                 do_facet mds${num} "$TUNE2FS -O extents $(mdsdevname $num)" ||
5145                         error "$TUNE2FS failed on mds${num}"
5146         done
5147
5148         add ost1 $(mkfs_opts ost1 $ostdev) --reformat $ostdev ||
5149                 error "add $ostdev failed"
5150         start_mgsmds || error "start mds failed"
5151         start_ost || error "start ost failed"
5152         mount_client $MOUNT || error "mount client failed"
5153
5154         #create some short symlinks
5155         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
5156         createmany -o $DIR/$tdir/$tfile-%d $fn
5157         echo "create $fn short symlinks"
5158         for i in $(seq -w 1 $fn); do
5159                 ln -s $DIR/$tdir/$tfile-$i $MOUNT/$tfile-$i
5160         done
5161         ls -al $MOUNT
5162
5163         #umount
5164         umount_client $MOUNT || error "umount client failed"
5165         stop_mds || error "stop mds failed"
5166         stop_ost || error "stop ost failed"
5167
5168         #run e2fsck
5169         run_e2fsck $(facet_active_host $SINGLEMDS) $mdsdev "-n"
5170 }
5171 run_test 72 "test fast symlink with extents flag enabled"
5172
5173 test_73() { #LU-3006
5174         [ $(facet_fstype ost1) == zfs ] && import_zpool ost1
5175         do_facet ost1 "$TUNEFS --failnode=1.2.3.4@$NETTYPE $(ostdevname 1)" ||
5176                 error "1st tunefs failed"
5177         start_mgsmds || error "start mds failed"
5178         start_ost || error "start ost failed"
5179         mount_client $MOUNT || error "mount client failed"
5180         $LCTL get_param -n osc.*OST0000-osc-[^M]*.import | grep failover_nids |
5181                 grep 1.2.3.4@$NETTYPE || error "failover nids haven't changed"
5182         umount_client $MOUNT || error "umount client failed"
5183         stopall
5184         reformat
5185 }
5186 run_test 73 "failnode to update from mountdata properly"
5187
5188 test_75() { # LU-2374
5189         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
5190                         skip "Need MDS version at least 2.4.1" && return
5191
5192         local index=0
5193         local opts_mds="$(mkfs_opts mds1 $(mdsdevname 1)) \
5194                 --reformat $(mdsdevname 1) $(mdsvdevname 1)"
5195         local opts_ost="$(mkfs_opts ost1 $(ostdevname 1)) \
5196                 --reformat $(ostdevname 1) $(ostvdevname 1)"
5197
5198         #check with default parameters
5199         add mds1 $opts_mds || error "add mds1 failed for default params"
5200         add ost1 $opts_ost || error "add ost1 failed for default params"
5201
5202         opts_mds=$(echo $opts_mds | sed -e "s/--mdt//")
5203         opts_mds=$(echo $opts_mds |
5204                    sed -e "s/--index=$index/--index=$index --mdt/")
5205         opts_ost=$(echo $opts_ost | sed -e "s/--ost//")
5206         opts_ost=$(echo $opts_ost |
5207                    sed -e "s/--index=$index/--index=$index --ost/")
5208
5209         add mds1 $opts_mds || error "add mds1 failed for new params"
5210         add ost1 $opts_ost || error "add ost1 failed for new params"
5211         return 0
5212 }
5213 run_test 75 "The order of --index should be irrelevant"
5214
5215 test_76a() {
5216         [[ $(lustre_version_code mgs) -ge $(version_code 2.4.52) ]] ||
5217                 { skip "Need MDS version at least 2.4.52" && return 0; }
5218         setup
5219         local MDMB_PARAM="osc.*.max_dirty_mb"
5220         echo "Change MGS params"
5221         local MAX_DIRTY_MB=$($LCTL get_param -n $MDMB_PARAM |
5222                 head -1)
5223         echo "max_dirty_mb: $MAX_DIRTY_MB"
5224         local NEW_MAX_DIRTY_MB=$((MAX_DIRTY_MB + MAX_DIRTY_MB))
5225         echo "new_max_dirty_mb: $NEW_MAX_DIRTY_MB"
5226         do_facet mgs $LCTL set_param -P $MDMB_PARAM=$NEW_MAX_DIRTY_MB
5227         wait_update $HOSTNAME "$LCTL get_param -n $MDMB_PARAM |
5228                 head -1" $NEW_MAX_DIRTY_MB
5229         MAX_DIRTY_MB=$($LCTL get_param -n $MDMB_PARAM | head -1)
5230         echo "$MAX_DIRTY_MB"
5231         [ $MAX_DIRTY_MB = $NEW_MAX_DIRTY_MB ] ||
5232                 error "error while apply max_dirty_mb"
5233
5234         echo "Check the value is stored after remount"
5235         stopall
5236         setupall
5237         wait_update $HOSTNAME "$LCTL get_param -n $MDMB_PARAM |
5238                 head -1" $NEW_MAX_DIRTY_MB
5239         MAX_DIRTY_MB=$($LCTL get_param -n $MDMB_PARAM | head -1)
5240         [ $MAX_DIRTY_MB = $NEW_MAX_DIRTY_MB ] ||
5241                 error "max_dirty_mb is not saved after remount"
5242
5243         echo "Change OST params"
5244         CLIENT_PARAM="obdfilter.*.client_cache_count"
5245         local CLIENT_CACHE_COUNT
5246         CLIENT_CACHE_COUNT=$(do_facet ost1 $LCTL get_param -n $CLIENT_PARAM |
5247                 head -1)
5248         echo "client_cache_count: $CLIENT_CACHE_COUNT"
5249         NEW_CLIENT_CACHE_COUNT=$((CLIENT_CACHE_COUNT+CLIENT_CACHE_COUNT))
5250         echo "new_client_cache_count: $NEW_CLIENT_CACHE_COUNT"
5251         do_facet mgs $LCTL set_param -P $CLIENT_PARAM=$NEW_CLIENT_CACHE_COUNT
5252         wait_update $(facet_host ost1) "$LCTL get_param -n $CLIENT_PARAM |
5253                 head -1" $NEW_CLIENT_CACHE_COUNT
5254         CLIENT_CACHE_COUNT=$(do_facet ost1 $LCTL get_param -n $CLIENT_PARAM |
5255                 head -1)
5256         echo "$CLIENT_CACHE_COUNT"
5257         [ $CLIENT_CACHE_COUNT = $NEW_CLIENT_CACHE_COUNT ] ||
5258                 error "error while apply client_cache_count"
5259
5260         echo "Check the value is stored after remount"
5261         stopall
5262         setupall
5263         wait_update $(facet_host ost1) "$LCTL get_param -n $CLIENT_PARAM |
5264                 head -1" $NEW_CLIENT_CACHE_COUNT
5265         CLIENT_CACHE_COUNT=$(do_facet ost1 $LCTL get_param -n $CLIENT_PARAM |
5266                 head -1)
5267         echo "$CLIENT_CACHE_COUNT"
5268         [ $CLIENT_CACHE_COUNT = $NEW_CLIENT_CACHE_COUNT ] ||
5269                 error "client_cache_count is not saved after remount"
5270         stopall
5271 }
5272 run_test 76a "set permanent params set_param -P"
5273
5274 test_76b() { # LU-4783
5275         [[ $(lustre_version_code mgs) -ge $(version_code 2.5.57) ]] ||
5276                 { skip "Need MGS version at least 2.5.57" && return 0; }
5277         stopall
5278         setupall
5279         do_facet mgs $LCTL get_param mgs.MGS.live.params ||
5280                 error "start params log failed"
5281         stopall
5282 }
5283 run_test 76b "verify params log setup correctly"
5284
5285 test_76c() {
5286         [[ $(lustre_version_code mgs) -ge $(version_code 2.8.54) ]] ||
5287                 { skip "Need MDS version at least 2.4.52" && return 0; }
5288         setupall
5289         local MASK_PARAM="mdd.*.changelog_mask"
5290         echo "Change changelog_mask"
5291         do_facet mgs $LCTL set_param -P $MASK_PARAM=-CLOSE ||
5292                 error "Can't change changlog_mask"
5293         wait_update $(facet_host mds) "$LCTL get_param -n $MASK_PARAM |
5294                 grep 'CLOSE'" ""
5295
5296         echo "Check the value is stored after mds remount"
5297         stop_mds || error "Failed to stop MDS"
5298         start_mds || error "Failed to start MDS"
5299         local CHANGELOG_MASK=$(do_facet mgs $LCTL get_param -n $MASK_PARAM)
5300         echo $CHANGELOG_MASK | grep CLOSE > /dev/null &&
5301                 error "changelog_mask is not changed"
5302
5303         stopall
5304 }
5305 run_test 76c "verify changelog_mask is applied with set_param -P"
5306
5307 test_77() { # LU-3445
5308         local server_version=$(lustre_version_code $SINGLEMDS)
5309         [[ $server_version -ge $(version_code 2.8.55) ]] ||
5310                 { skip "Need MDS version 2.8.55+ "; return; }
5311
5312         if [[ -z "$fs2ost_DEV" || -z "$fs2mds_DEV" ]]; then
5313                 is_blkdev $SINGLEMDS $(mdsdevname ${SINGLEMDS//mds/}) &&
5314                 skip_env "mixed loopback and real device not working" && return
5315         fi
5316
5317         local fs2mdsdev=$(mdsdevname 1_2)
5318         local fs2ostdev=$(ostdevname 1_2)
5319         local fs2mdsvdev=$(mdsvdevname 1_2)
5320         local fs2ostvdev=$(ostvdevname 1_2)
5321         local fsname=test1234
5322         local mgsnid
5323         local failnid="$(h2$NETTYPE 1.2.3.4),$(h2$NETTYPE 4.3.2.1)"
5324
5325         add fs2mds $(mkfs_opts mds1 $fs2mdsdev) --mgs --fsname=$fsname \
5326                 --reformat $fs2mdsdev $fs2mdsvdev || error "add fs2mds failed"
5327         start fs2mds $fs2mdsdev $MDS_MOUNT_OPTS && trap cleanup_fs2 EXIT INT ||
5328                 error "start fs2mds failed"
5329
5330         mgsnid=$(do_facet fs2mds $LCTL list_nids | xargs | tr ' ' ,)
5331         mgsnid="$mgsnid,$mgsnid:$mgsnid"
5332
5333         add fs2ost $(mkfs_opts ost1 $fs2ostdev) --mgsnode=$mgsnid \
5334                 --failnode=$failnid --fsname=$fsname \
5335                 --reformat $fs2ostdev $fs2ostvdev ||
5336                         error "add fs2ost failed"
5337         start fs2ost $fs2ostdev $OST_MOUNT_OPTS || error "start fs2ost failed"
5338
5339         mkdir -p $MOUNT2 || error "mkdir $MOUNT2 failed"
5340         $MOUNT_CMD $mgsnid:/$fsname $MOUNT2 || error "mount $MOUNT2 failed"
5341         DIR=$MOUNT2 MOUNT=$MOUNT2 check_mount || error "check $MOUNT2 failed"
5342         cleanup_fs2
5343 }
5344 run_test 77 "comma-separated MGS NIDs and failover node NIDs"
5345
5346 test_78() {
5347         [[ $(facet_fstype $SINGLEMDS) != ldiskfs ||
5348            $(facet_fstype ost1) != ldiskfs ]] &&
5349                 skip "only applicable to ldiskfs-based MDTs and OSTs" && return
5350
5351         # reformat the Lustre filesystem with a smaller size
5352         local saved_MDSCOUNT=$MDSCOUNT
5353         local saved_MDSSIZE=$MDSSIZE
5354         local saved_OSTCOUNT=$OSTCOUNT
5355         local saved_OSTSIZE=$OSTSIZE
5356         MDSCOUNT=1
5357         OSTCOUNT=1
5358         MDSSIZE=$((MDSSIZE - 20000))
5359         OSTSIZE=$((OSTSIZE - 20000))
5360         reformat || error "(1) reformat Lustre filesystem failed"
5361         MDSSIZE=$saved_MDSSIZE
5362         OSTSIZE=$saved_OSTSIZE
5363
5364         # mount the Lustre filesystem
5365         setup_noconfig || error "(2) setup Lustre filesystem failed"
5366
5367         # create some files
5368         log "create test files"
5369         local i
5370         local file
5371         local num_files=100
5372
5373         mkdir $MOUNT/$tdir || error "(3) mkdir $MOUNT/$tdir failed"
5374         $LFS df; $LFS df -i
5375         for i in $(seq $num_files); do
5376                 file=$MOUNT/$tdir/$tfile-$i
5377                 dd if=/dev/urandom of=$file count=1 bs=1M || {
5378                         $LCTL get_param osc.*.cur*grant*
5379                         $LFS df; $LFS df -i;
5380                         # stop creating files if there is no more space
5381                         if [ ! -e $file ]; then
5382                                 num_files=$((i - 1))
5383                                 break
5384                         fi
5385
5386                         $LFS getstripe -v $file
5387                         local ost_idx=$(LFS getstripe -i $file)
5388                         do_facet ost$((ost_idx + 1)) \
5389                                 $LCTL get_param obdfilter.*.*grant*
5390                         error "(4) create $file failed"
5391                 }
5392         done
5393
5394         # unmount the Lustre filesystem
5395         cleanup || error "(5) cleanup Lustre filesystem failed"
5396
5397         # run e2fsck on the MDT and OST devices
5398         local mds_host=$(facet_active_host $SINGLEMDS)
5399         local ost_host=$(facet_active_host ost1)
5400         local mds_dev=$(mdsdevname ${SINGLEMDS//mds/})
5401         local ost_dev=$(ostdevname 1)
5402
5403         run_e2fsck $mds_host $mds_dev "-y"
5404         run_e2fsck $ost_host $ost_dev "-y"
5405
5406         # get the original block count of the MDT and OST filesystems
5407         local mds_orig_blks=$(get_block_count $SINGLEMDS $mds_dev)
5408         local ost_orig_blks=$(get_block_count ost1 $ost_dev)
5409
5410         # expand the MDT and OST filesystems to the device size
5411         run_resize2fs $SINGLEMDS $mds_dev "" || error "expand $SINGLEMDS failed"
5412         run_resize2fs ost1 $ost_dev "" || error "expand ost1 failed"
5413
5414         # run e2fsck on the MDT and OST devices again
5415         run_e2fsck $mds_host $mds_dev "-y"
5416         run_e2fsck $ost_host $ost_dev "-y"
5417
5418         # mount the Lustre filesystem
5419         setup
5420
5421         # check the files
5422         log "check files after expanding the MDT and OST filesystems"
5423         for i in $(seq $num_files); do
5424                 file=$MOUNT/$tdir/$tfile-$i
5425                 $CHECKSTAT -t file -s 1048576 $file ||
5426                         error "(6) checkstat $file failed"
5427         done
5428
5429         # create more files
5430         log "create more files after expanding the MDT and OST filesystems"
5431         for i in $(seq $((num_files + 1)) $((num_files + 10))); do
5432                 file=$MOUNT/$tdir/$tfile-$i
5433                 dd if=/dev/urandom of=$file count=1 bs=1M ||
5434                         error "(7) create $file failed"
5435         done
5436
5437         # unmount the Lustre filesystem
5438         cleanup || error "(8) cleanup Lustre filesystem failed"
5439
5440         # run e2fsck on the MDT and OST devices
5441         run_e2fsck $mds_host $mds_dev "-y"
5442         run_e2fsck $ost_host $ost_dev "-y"
5443
5444         # get the maximum block count of the MDT and OST filesystems
5445         local mds_max_blks=$(get_block_count $SINGLEMDS $mds_dev)
5446         local ost_max_blks=$(get_block_count ost1 $ost_dev)
5447
5448         # get the minimum block count of the MDT and OST filesystems
5449         local mds_min_blks=$(run_resize2fs $SINGLEMDS $mds_dev "" "-P" 2>&1 |
5450                                 grep minimum | sed -e 's/^.*filesystem: //g')
5451         local ost_min_blks=$(run_resize2fs ost1 $ost_dev "" "-P" 2>&1 |
5452                                 grep minimum | sed -e 's/^.*filesystem: //g')
5453
5454         # shrink the MDT and OST filesystems to a smaller size
5455         local shrunk=false
5456         local new_blks
5457         local base_blks
5458         if [[ $mds_max_blks -gt $mds_min_blks &&
5459               $mds_max_blks -gt $mds_orig_blks ]]; then
5460                 [[ $mds_orig_blks -gt $mds_min_blks ]] &&
5461                         base_blks=$mds_orig_blks || base_blks=$mds_min_blks
5462                 new_blks=$(( (mds_max_blks - base_blks) / 2 + base_blks ))
5463                 run_resize2fs $SINGLEMDS $mds_dev $new_blks ||
5464                         error "shrink $SINGLEMDS to $new_blks failed"
5465                 shrunk=true
5466         fi
5467
5468         if [[ $ost_max_blks -gt $ost_min_blks &&
5469               $ost_max_blks -gt $ost_orig_blks ]]; then
5470                 [[ $ost_orig_blks -gt $ost_min_blks ]] &&
5471                         base_blks=$ost_orig_blks || base_blks=$ost_min_blks
5472                 new_blks=$(( (ost_max_blks - base_blks) / 2 + base_blks ))
5473                 run_resize2fs ost1 $ost_dev $new_blks ||
5474                         error "shrink ost1 to $new_blks failed"
5475                 shrunk=true
5476         fi
5477
5478         # check whether the MDT or OST filesystem was shrunk or not
5479         if ! $shrunk; then
5480                 combined_mgs_mds || stop_mgs || error "(9) stop mgs failed"
5481                 reformat || error "(10) reformat Lustre filesystem failed"
5482                 return 0
5483         fi
5484
5485         # run e2fsck on the MDT and OST devices again
5486         run_e2fsck $mds_host $mds_dev "-y"
5487         run_e2fsck $ost_host $ost_dev "-y"
5488
5489         # mount the Lustre filesystem again
5490         setup
5491
5492         # check the files
5493         log "check files after shrinking the MDT and OST filesystems"
5494         for i in $(seq $((num_files + 10))); do
5495                 file=$MOUNT/$tdir/$tfile-$i
5496                 $CHECKSTAT -t file -s 1048576 $file ||
5497                         error "(11) checkstat $file failed"
5498         done
5499
5500         # unmount and reformat the Lustre filesystem
5501         cleanup || error "(12) cleanup Lustre filesystem failed"
5502         combined_mgs_mds || stop_mgs || error "(13) stop mgs failed"
5503
5504         MDSCOUNT=$saved_MDSCOUNT
5505         OSTCOUNT=$saved_OSTCOUNT
5506         reformat || error "(14) reformat Lustre filesystem failed"
5507 }
5508 run_test 78 "run resize2fs on MDT and OST filesystems"
5509
5510 test_79() { # LU-4227
5511         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.5.59) ]] ||
5512                 { skip "Need MDS version at least 2.5.59"; return 0; }
5513
5514         local mdsdev1=$(mdsdevname 1)
5515         local mdsvdev1=$(mdsvdevname 1)
5516         local mdsdev2=$(mdsdevname 2)
5517         local mdsvdev2=$(mdsvdevname 2)
5518         local ostdev1=$(ostdevname 1)
5519         local ostvdev1=$(ostvdevname 1)
5520         local opts_mds1="$(mkfs_opts mds1 $mdsdev1) --reformat"
5521         local opts_mds2="$(mkfs_opts mds2 $mdsdev2) --reformat"
5522         local opts_ost1="$(mkfs_opts ost1 $ostdev1) --reformat"
5523         local mgsnode_opt
5524
5525         # remove --mgs/--mgsnode from mkfs.lustre options
5526         opts_mds1=$(echo $opts_mds1 | sed -e "s/--mgs//")
5527
5528         mgsnode_opt=$(echo $opts_mds2 |
5529                 awk '{ for ( i = 1; i < NF; i++ )
5530                         if ( $i ~ "--mgsnode" ) { print $i; break } }')
5531         [ -n $mgsnode_opt ] &&
5532                 opts_mds2=$(echo $opts_mds2 | sed -e "s/$mgsnode_opt//")
5533
5534         mgsnode_opt=$(echo $opts_ost1 |
5535                 awk '{ for ( i = 1; i < NF; i++ )
5536                         if ( $i ~ "--mgsnode" ) { print $i; break } }')
5537         [ -n $mgsnode_opt ] &&
5538                 opts_ost1=$(echo $opts_ost1 | sed -e "s/$mgsnode_opt//")
5539
5540         # -MGS, format a mdt without --mgs option
5541         add mds1 $opts_mds1 $mdsdev1 $mdsvdev1 &&
5542                 error "Must specify --mgs when formatting mdt combined with mgs"
5543
5544         # +MGS, format a mdt/ost without --mgsnode option
5545         add mds1 $(mkfs_opts mds1 $mdsdev1) --reformat $mdsdev1 $mdsvdev1 \
5546                 > /dev/null || error "start mds1 failed"
5547         add mds2 $opts_mds2 $mdsdev2 $mdsvdev2 &&
5548                 error "Must specify --mgsnode when formatting a mdt"
5549         add ost1 $opts_ost1 $ostdev1 $ostvdev2 &&
5550                 error "Must specify --mgsnode when formatting an ost"
5551
5552         reformat
5553 }
5554 run_test 79 "format MDT/OST without mgs option (should return errors)"
5555
5556 test_80() {
5557         start_mds || error "Failed to start MDT"
5558         start_ost || error "Failed to start OST1"
5559         uuid=$(do_facet ost1 $LCTL get_param -n mgc.*.uuid)
5560 #define OBD_FAIL_MGS_PAUSE_TARGET_CON       0x906
5561         do_facet ost1 "$LCTL set_param fail_val=10 fail_loc=0x906"
5562         do_facet mgs "$LCTL set_param fail_val=10 fail_loc=0x906"
5563         do_facet mgs "$LCTL set_param -n mgs/MGS/evict_client $uuid"
5564         sleep 30
5565         start_ost2 || error "Failed to start OST2"
5566
5567         do_facet ost1 "$LCTL set_param fail_loc=0"
5568         stopall
5569 }
5570 run_test 80 "mgc import reconnect race"
5571
5572 #Save the original values of $OSTCOUNT and $OSTINDEX$i.
5573 save_ostindex() {
5574         local new_ostcount=$1
5575         saved_ostcount=$OSTCOUNT
5576         OSTCOUNT=$new_ostcount
5577
5578         local i
5579         local index
5580         for i in $(seq $OSTCOUNT); do
5581                 index=OSTINDEX$i
5582                 eval saved_ostindex$i=${!index}
5583                 eval OSTINDEX$i=""
5584         done
5585 }
5586
5587 # Restore the original values of $OSTCOUNT and $OSTINDEX$i.
5588 restore_ostindex() {
5589         trap 0
5590
5591         local i
5592         local index
5593         for i in $(seq $OSTCOUNT); do
5594                 index=saved_ostindex$i
5595                 eval OSTINDEX$i=${!index}
5596         done
5597         OSTCOUNT=$saved_ostcount
5598
5599         formatall
5600 }
5601
5602 # The main purpose of this test is to ensure the OST_INDEX_LIST functions as
5603 # expected. This test uses OST_INDEX_LIST to format OSTs with a randomly
5604 # assigned index and ensures we can mount such a formatted file system
5605 test_81() { # LU-4665
5606         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.54) ]] ||
5607                 { skip "Need MDS version at least 2.6.54" && return; }
5608         [[ $OSTCOUNT -ge 3 ]] || { skip_env "Need at least 3 OSTs" && return; }
5609
5610         stopall
5611
5612         # Each time RANDOM is referenced, a random integer between 0 and 32767
5613         # is generated.
5614         local i
5615         local saved_ostindex1=$OSTINDEX1
5616         for i in 65535 $((RANDOM + 65536)); do
5617                 echo -e "\nFormat ost1 with --index=$i, should fail"
5618                 OSTINDEX1=$i
5619                 if add ost1 $(mkfs_opts ost1 $(ostdevname 1)) --reformat \
5620                    $(ostdevname 1) $(ostvdevname 1); then
5621                         OSTINDEX1=$saved_ostindex1
5622                         error "format ost1 with --index=$i should fail"
5623                 fi
5624         done
5625         OSTINDEX1=$saved_ostindex1
5626
5627         save_ostindex 3
5628
5629         # Format OSTs with random sparse indices.
5630         trap "restore_ostindex" EXIT
5631         echo -e "\nFormat $OSTCOUNT OSTs with sparse indices"
5632         OST_INDEX_LIST=[0,$((RANDOM * 2 % 65533 + 1)),65534] formatall
5633
5634         # Setup and check Lustre filesystem.
5635         start_mgsmds || error "start_mgsmds failed"
5636         for i in $(seq $OSTCOUNT); do
5637                 start ost$i $(ostdevname $i) $OST_MOUNT_OPTS ||
5638                         error "start ost$i failed"
5639         done
5640
5641         mount_client $MOUNT || error "mount client $MOUNT failed"
5642         check_mount || error "check client $MOUNT failed"
5643
5644         # Check max_easize.
5645         local max_easize=$($LCTL get_param -n llite.*.max_easize)
5646         [[ $max_easize -eq 128 ]] ||
5647                 error "max_easize is $max_easize, should be 128 bytes"
5648
5649         restore_ostindex
5650 }
5651 run_test 81 "sparse OST indexing"
5652
5653 # Wait OSTs to be active on both client and MDT side.
5654 wait_osts_up() {
5655         local cmd="$LCTL get_param -n lov.$FSNAME-clilov-*.target_obd |
5656                 awk 'BEGIN {c = 0} /ACTIVE/{c += 1} END {printf \\\"%d\\\", c}'"
5657         wait_update $HOSTNAME "eval $cmd" $OSTCOUNT ||
5658                 error "wait_update OSTs up on client failed"
5659
5660         cmd="$LCTL get_param -n lod.$FSNAME-MDT*-*.target_obd | sort -u |
5661              awk 'BEGIN {c = 0} /ACTIVE/{c += 1} END {printf \\\"%d\\\", c}'"
5662         wait_update_facet $SINGLEMDS "eval $cmd" $OSTCOUNT ||
5663                 error "wait_update OSTs up on MDT failed"
5664 }
5665
5666 # Here we exercise the stripe placement functionality on a file system that
5667 # has formatted the OST with a random index. With the file system the following
5668 # functionality is tested:
5669 #
5670 # 1. Creating a new file with a specific stripe layout.
5671 #
5672 # 2. Modifiy a existing empty file with a specific stripe layout.
5673 #
5674 # 3. Ensure we fail to set the stripe layout of a file that already has one.
5675 #
5676 # 4. If ost-index is defined we need to ensure it is the first entry in the
5677 #    ost index list returned by lfs getstripe.
5678 #
5679 # 5. Lastly ensure this functionality fails with directories.
5680 test_82a() { # LU-4665
5681         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.54) ]] ||
5682                 { skip "Need MDS version at least 2.6.54" && return; }
5683         [[ $OSTCOUNT -ge 3 ]] || { skip_env "Need at least 3 OSTs" && return; }
5684
5685         stopall
5686
5687         save_ostindex 3
5688
5689         # Format OSTs with random sparse indices.
5690         local i
5691         local index
5692         local ost_indices
5693         local LOV_V1_INSANE_STRIPE_COUNT=65532
5694         for i in $(seq $OSTCOUNT); do
5695                 index=$(((RANDOM * 2) % LOV_V1_INSANE_STRIPE_COUNT))
5696                 ost_indices+=" $index"
5697         done
5698         ost_indices=$(comma_list $ost_indices)
5699
5700         trap "restore_ostindex" EXIT
5701         echo -e "\nFormat $OSTCOUNT OSTs with sparse indices $ost_indices"
5702         OST_INDEX_LIST=[$ost_indices] formatall
5703
5704         # Setup Lustre filesystem.
5705         start_mgsmds || error "start_mgsmds failed"
5706         for i in $(seq $OSTCOUNT); do
5707                 start ost$i $(ostdevname $i) $OST_MOUNT_OPTS ||
5708                         error "start ost$i failed"
5709         done
5710
5711         mount_client $MOUNT || error "mount client $MOUNT failed"
5712         wait_osts_up
5713
5714         $LFS df $MOUNT || error "$LFS df $MOUNT failed"
5715         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
5716
5717         # 1. If the file does not exist, new file will be created
5718         #    with specified OSTs.
5719         local file=$DIR/$tdir/$tfile-1
5720         local cmd="$SETSTRIPE -o $ost_indices $file"
5721         echo -e "\n$cmd"
5722         eval $cmd || error "$cmd failed"
5723         check_stripe_count $file $OSTCOUNT
5724         check_obdidx $file $ost_indices
5725         dd if=/dev/urandom of=$file count=1 bs=1M > /dev/null 2>&1 ||
5726                 error "write $file failed"
5727
5728         # 2. If the file already exists and is an empty file, the file
5729         #    will be attached with specified layout.
5730         file=$DIR/$tdir/$tfile-2
5731         mcreate $file || error "mcreate $file failed"
5732         cmd="$SETSTRIPE -o $ost_indices $file"
5733         echo -e "\n$cmd"
5734         eval $cmd || error "$cmd failed"
5735         dd if=/dev/urandom of=$file count=1 bs=1M > /dev/null 2>&1 ||
5736                 error "write $file failed"
5737         check_stripe_count $file $OSTCOUNT
5738         check_obdidx $file $ost_indices
5739
5740         # 3. If the file already has a valid layout attached, the command
5741         #    should fail with EBUSY.
5742         echo -e "\n$cmd"
5743         eval $cmd && error "stripe is already set on $file, $cmd should fail"
5744
5745         # 4. If [--stripe-index|-i <start_ost_idx>] is used, the index must
5746         #    be in the OST indices list.
5747         local start_ost_idx=${ost_indices##*,}
5748         file=$DIR/$tdir/$tfile-3
5749         cmd="$SETSTRIPE -o $ost_indices -i $start_ost_idx $file"
5750         echo -e "\n$cmd"
5751         eval $cmd || error "$cmd failed"
5752         check_stripe_count $file $OSTCOUNT
5753         check_obdidx $file $ost_indices
5754         check_start_ost_idx $file $start_ost_idx
5755
5756         file=$DIR/$tdir/$tfile-4
5757         cmd="$SETSTRIPE"
5758         cmd+=" -o $(exclude_items_from_list $ost_indices $start_ost_idx)"
5759         cmd+=" -i $start_ost_idx $file"
5760         echo -e "\n$cmd"
5761         eval $cmd && error "index $start_ost_idx should be in $ost_indices"
5762
5763         # 5. Specifying OST indices for directory should fail with ENOSUPP.
5764         local dir=$DIR/$tdir/$tdir
5765         mkdir $dir || error "mkdir $dir failed"
5766         cmd="$SETSTRIPE -o $ost_indices $dir"
5767         echo -e "\n$cmd"
5768         eval $cmd && error "$cmd should fail, specifying OST indices" \
5769                            "for directory is not supported"
5770
5771         restore_ostindex
5772 }
5773 run_test 82a "specify OSTs for file (succeed) or directory (fail)"
5774
5775 cleanup_82b() {
5776         trap 0
5777
5778         # Remove OSTs from a pool and destroy the pool.
5779         destroy_pool $ost_pool || true
5780
5781         restore_ostindex
5782 }
5783
5784 # Test 82b is run to ensure that if the user supplies a pool with a specific
5785 # stripe layout that it behaves proprerly. It should fail in the case that
5786 # the supplied OST index list points to OSTs not contained in the user
5787 # supplied pool.
5788 test_82b() { # LU-4665
5789         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.54) ]] ||
5790                 { skip "Need MDS version at least 2.6.54" && return; }
5791         [[ $OSTCOUNT -ge 4 ]] || { skip_env "Need at least 4 OSTs" && return; }
5792
5793         stopall
5794
5795         save_ostindex 4
5796
5797         # Format OSTs with random sparse indices.
5798         local i
5799         local index
5800         local ost_indices
5801         local LOV_V1_INSANE_STRIPE_COUNT=65532
5802         for i in $(seq $OSTCOUNT); do
5803                 index=$(((RANDOM * 2) % LOV_V1_INSANE_STRIPE_COUNT))
5804                 ost_indices+=" $index"
5805         done
5806         ost_indices=$(comma_list $ost_indices)
5807
5808         trap "restore_ostindex" EXIT
5809         echo -e "\nFormat $OSTCOUNT OSTs with sparse indices $ost_indices"
5810         OST_INDEX_LIST=[$ost_indices] formatall
5811
5812         # Setup Lustre filesystem.
5813         start_mgsmds || error "start_mgsmds failed"
5814         for i in $(seq $OSTCOUNT); do
5815                 start ost$i $(ostdevname $i) $OST_MOUNT_OPTS ||
5816                         error "start ost$i failed"
5817         done
5818
5819         mount_client $MOUNT || error "mount client $MOUNT failed"
5820         wait_osts_up
5821         $LFS df $MOUNT || error "$LFS df $MOUNT failed"
5822         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
5823
5824         # Create a new pool and add OSTs into it.
5825         local ost_pool=$FSNAME.$TESTNAME
5826         create_pool $ost_pool || error "create OST pool $ost_pool failed"
5827
5828         trap - EXIT
5829         trap "cleanup_82b" EXIT
5830
5831         local ost_idx_in_list=${ost_indices##*,}
5832         local ost_idx_in_pool=$(exclude_items_from_list $ost_indices \
5833                                 $ost_idx_in_list)
5834
5835         local ost_targets="$FSNAME-OST["
5836         for i in ${ost_idx_in_pool//,/ }; do
5837                 ost_targets=$ost_targets$(printf "%04x," $i)
5838         done
5839         ost_targets="${ost_targets%,}]"
5840
5841         local ost_targets_uuid=$(for i in ${ost_idx_in_pool//,/ }; \
5842                                  do printf "$FSNAME-OST%04x_UUID\n" $i; done |
5843                                  sort -u | tr '\n' ' ')
5844
5845         local cmd="$LCTL pool_add $ost_pool $ost_targets"
5846         do_facet mgs $cmd || error "$cmd failed"
5847         wait_update $HOSTNAME "$LCTL get_param -n lov.$FSNAME-*.pools.$TESTNAME|
5848                                sort -u | tr '\n' ' ' " "$ost_targets_uuid" ||
5849                                         error "wait_update $ost_pool failed"
5850         pool_list $ost_pool || error "list OST pool $ost_pool failed"
5851
5852         # If [--pool|-p <pool_name>] is set with [--ost-list|-o <ost_indices>],
5853         # then the OSTs must be the members of the pool.
5854         local file=$DIR/$tdir/$tfile
5855         cmd="$SETSTRIPE -p $ost_pool -o $ost_idx_in_list $file"
5856         echo -e "\n$cmd"
5857         eval $cmd && error "OST with index $ost_idx_in_list should be" \
5858                            "in OST pool $ost_pool"
5859
5860         # Only select OST $ost_idx_in_list from $ost_pool for file.
5861         ost_idx_in_list=${ost_idx_in_pool#*,}
5862         cmd="$SETSTRIPE -p $ost_pool -o $ost_idx_in_list $file"
5863         echo -e "\n$cmd"
5864         eval $cmd || error "$cmd failed"
5865         cmd="$GETSTRIPE $file"
5866         echo -e "\n$cmd"
5867         eval $cmd || error "$cmd failed"
5868         check_stripe_count $file 2
5869         check_obdidx $file $ost_idx_in_list
5870         dd if=/dev/urandom of=$file count=1 bs=1M > /dev/null 2>&1 ||
5871                 error "write $file failed"
5872
5873         cleanup_82b
5874 }
5875 run_test 82b "specify OSTs for file with --pool and --ost-list options"
5876
5877 test_83() {
5878         [[ $(lustre_version_code ost1) -ge $(version_code 2.6.91) ]] ||
5879                 { skip "Need OST version at least 2.6.91" && return 0; }
5880         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
5881                 skip "Only applicable to ldiskfs-based MDTs"
5882                 return
5883         fi
5884
5885         local dev
5886         local ostmnt
5887         local fstype
5888         local mnt_opts
5889
5890         dev=$(ostdevname 1)
5891         ostmnt=$(facet_mntpt ost1)
5892         fstype=$(facet_fstype ost1)
5893
5894         # Mount the OST as an ldiskfs filesystem.
5895         log "mount the OST $dev as a $fstype filesystem"
5896         add ost1 $(mkfs_opts ost1 $dev) $FSTYPE_OPT \
5897                 --reformat $dev $dev > /dev/null ||
5898                 error "format ost1 error"
5899
5900         if ! test -b $dev; then
5901                 mnt_opts=$(csa_add "$OST_MOUNT_OPTS" -o loop)
5902         fi
5903         echo "mnt_opts $mnt_opts"
5904         do_facet ost1 mount -t $fstype $dev \
5905                 $ostmnt $mnt_opts
5906         # Run llverfs on the mounted ldiskfs filesystem.
5907         # It is needed to get ENOSPACE.
5908         log "run llverfs in partial mode on the OST $fstype $ostmnt"
5909         do_rpc_nodes $(facet_host ost1) run_llverfs $ostmnt -vpl \
5910                 "no" || error "run_llverfs error on $fstype"
5911
5912         # Unmount the OST.
5913         log "unmount the OST $dev"
5914         stop ost1
5915
5916         # Delete file IO_scrub. Later osd_scrub_setup will try to
5917         # create "IO_scrub" but will get ENOSPACE.
5918         writeconf_all
5919         echo "start ost1 service on `facet_active_host ost1`"
5920         start ost1 `ostdevname 1` $OST_MOUNT_OPTS
5921
5922         local err
5923         err=$(do_facet ost1 dmesg | grep "VFS: Busy inodes after unmount of")
5924         echo "string err $err"
5925         [ -z "$err" ] || error $err
5926         reformat
5927 }
5928 run_test 83 "ENOSPACE on OST doesn't cause message VFS: \
5929 Busy inodes after unmount ..."
5930
5931 test_84() {
5932         local facet=$SINGLEMDS
5933         local num=$(echo $facet | tr -d "mds")
5934         local dev=$(mdsdevname $num)
5935         local time_min=$(recovery_time_min)
5936         local recovery_duration
5937         local completed_clients
5938         local correct_clients
5939         local wrap_up=5
5940
5941         echo "start mds service on $(facet_active_host $facet)"
5942         start_mds \
5943         "-o recovery_time_hard=$time_min,recovery_time_soft=$time_min" $@ ||
5944                 error "start MDS failed"
5945
5946         start_ost || error "start OST0000 failed"
5947         start_ost2 || error "start OST0001 failed"
5948
5949         echo "recovery_time=$time_min, timeout=$TIMEOUT, wrap_up=$wrap_up"
5950
5951         mount_client $MOUNT1 || error "mount $MOUNT1 failed"
5952         mount_client $MOUNT2 || error "mount $MOUNT2 failed"
5953         # make sure new superblock labels are sync'd before disabling writes
5954         sync_all_data
5955         sleep 5
5956
5957         replay_barrier $SINGLEMDS
5958         createmany -o $DIR1/$tfile-%d 1000
5959
5960         # We need to catch the end of recovery window to extend it.
5961         # Skip 5 requests and add delay to request handling.
5962         #define OBD_FAIL_TGT_REPLAY_DELAY  0x709 | FAIL_SKIP
5963         do_facet $SINGLEMDS "lctl set_param fail_loc=0x20000709 fail_val=5"
5964
5965         facet_failover --fsck $SINGLEMDS || error "failover: $?"
5966         client_up
5967
5968         echo "recovery status"
5969         do_facet $SINGLEMDS \
5970                 "$LCTL get_param -n mdt.$FSNAME-MDT0000.recovery_status"
5971
5972         recovery_duration=$(do_facet $SINGLEMDS \
5973                 "$LCTL get_param -n mdt.$FSNAME-MDT0000.recovery_status" |
5974                 awk '/recovery_duration/ { print $2 }')
5975         (( $recovery_duration > $time_min + $wrap_up )) &&
5976                 error "recovery_duration > recovery_time_hard + wrap up"
5977         completed_clients=$(do_facet $SINGLEMDS \
5978                 "$LCTL get_param -n mdt.$FSNAME-MDT0000.recovery_status" |
5979                 awk '/completed_clients/ { print $2 }')
5980
5981         correct_clients="$MDSCOUNT/$((MDSCOUNT+1))"
5982         [ "$completed_clients" = "${correct_clients}" ] ||
5983                 error "$completed_clients != $correct_clients"
5984
5985         do_facet $SINGLEMDS "lctl set_param fail_loc=0"
5986         umount_client $MOUNT1
5987         umount_client $MOUNT2
5988
5989         stop_ost
5990         stop_ost2
5991         stop_mds
5992 }
5993 run_test 84 "check recovery_hard_time"
5994
5995 test_85() {
5996         [[ $(lustre_version_code ost1) -ge $(version_code 2.7.55) ]] ||
5997                 { skip "Need OST version at least 2.7.55" && return 0; }
5998 ##define OBD_FAIL_OSD_OST_EA_FID_SET 0x197
5999         do_facet ost1 "lctl set_param fail_loc=0x197"
6000         start_ost
6001         stop_ost
6002 }
6003 run_test 85 "osd_ost init: fail ea_fid_set"
6004
6005 cleanup_86() {
6006         trap 0
6007
6008         # ost1 has already registered to the MGS before the reformat.
6009         # So after reformatting it with option "-G", it could not be
6010         # mounted to the MGS. Cleanup the system for subsequent tests.
6011         reformat_and_config
6012 }
6013
6014 test_86() {
6015         local server_version=$(lustre_version_code $SINGLEMDS)
6016         [ "$(facet_fstype ost1)" = "zfs" ] &&
6017                 skip "LU-6442: no such mkfs params for ZFS OSTs" && return
6018         [[ $server_version -ge $(version_code 2.7.56) ]] ||
6019                 { skip "Need server version newer than 2.7.55"; return 0; }
6020
6021         local OST_OPTS="$(mkfs_opts ost1 $(ostdevname 1)) \
6022                 --reformat $(ostdevname 1) $(ostvdevname 1)"
6023
6024         local NEWSIZE=1024
6025         local OLDSIZE=$(do_facet ost1 "$DEBUGFS -c -R stats $(ostdevname 1)" |
6026                 awk '/Flex block group size: / { print $NF; exit; }')
6027
6028         local opts=OST_OPTS
6029         if [[ ${!opts} != *mkfsoptions* ]]; then
6030                 eval opts=\"${!opts} \
6031                         --mkfsoptions='\\\"-O flex_bg -G $NEWSIZE\\\"'\"
6032         else
6033                 val=${!opts//--mkfsoptions=\\\"/ \
6034                         --mkfsoptions=\\\"-O flex_bg -G $NEWSIZE }
6035                 eval opts='${val}'
6036         fi
6037
6038         echo "params: $opts"
6039
6040         trap cleanup_86 EXIT ERR
6041
6042         stopall
6043         add ost1 $opts || error "add ost1 failed with new params"
6044
6045         local FOUNDSIZE=$(do_facet ost1 "$DEBUGFS -c -R stats $(ostdevname 1)" |
6046                 awk '/Flex block group size: / { print $NF; exit; }')
6047
6048         [[ $FOUNDSIZE == $NEWSIZE ]] ||
6049                 error "Flex block group size: $FOUNDSIZE, expected: $NEWSIZE"
6050
6051         cleanup_86
6052 }
6053 run_test 86 "Replacing mkfs.lustre -G option"
6054
6055 test_87() { #LU-6544
6056         [[ $(lustre_version_code $SINGLEMDS1) -ge $(version_code 2.7.56) ]] ||
6057                 { skip "Need MDS version at least 2.7.56" && return; }
6058         [[ $(facet_fstype $SINGLEMDS) != ldiskfs ]] &&
6059                 { skip "Only applicable to ldiskfs-based MDTs" && return; }
6060         [[ $OSTCOUNT -gt 69 ]] &&
6061                 { skip "Ignore wide striping situation" && return; }
6062
6063         local mdsdev=$(mdsdevname 1)
6064         local mdsvdev=$(mdsvdevname 1)
6065         local file=$DIR/$tfile
6066         local mntpt=$(facet_mntpt $SINGLEMDS)
6067         local used_xattr_blk=0
6068         local inode_size=${1:-512}
6069         local left_size=0
6070         local xtest="trusted.test"
6071         local value
6072         local orig
6073         local i
6074
6075         #Please see LU-6544 for MDT inode size calculation
6076         if [ $OSTCOUNT -gt 26 ]; then
6077                 inode_size=2048
6078         elif [ $OSTCOUNT -gt 5 ]; then
6079                 inode_size=1024
6080         fi
6081         left_size=$(expr $inode_size - \
6082                         156 - \
6083                         32 - \
6084                         32 - $OSTCOUNT \* 24 - 16 - 3 -  \
6085                         24 - 16 - 3 - \
6086                         24 - 18 - $(expr length $tfile) - 16 - 4)
6087         if [ $left_size -le 0 ]; then
6088                 echo "No space($left_size) is expected in inode."
6089                 echo "Try 1-byte xattr instead to verify this."
6090                 left_size=1
6091         else
6092                 echo "Estimate: at most $left_size-byte space left in inode."
6093         fi
6094
6095         unload_modules
6096         reformat
6097
6098         add mds1 $(mkfs_opts mds1 ${mdsdev}) --stripe-count-hint=$OSTCOUNT \
6099                 --reformat $mdsdev $mdsvdev || error "add mds1 failed"
6100         start_mdt 1 > /dev/null || error "start mdt1 failed"
6101         for i in $(seq $OSTCOUNT); do
6102                 start ost$i $(ostdevname $i) $OST_MOUNT_OPTS > /dev/null ||
6103                         error "start ost$i failed"
6104         done
6105         mount_client $MOUNT > /dev/null || error "mount client $MOUNT failed"
6106         check_mount || error "check client $MOUNT failed"
6107
6108         #set xattr
6109         $SETSTRIPE -c -1 $file || error "$SETSTRIPE -c -1 $file failed"
6110         $GETSTRIPE $file || error "$GETSTRIPE $file failed"
6111         i=$($GETSTRIPE -c $file)
6112         if [ $i -ne $OSTCOUNT ]; then
6113                 left_size=$(expr $left_size + $(expr $OSTCOUNT - $i) \* 24)
6114                 echo -n "Since only $i out $OSTCOUNT OSTs are used, "
6115                 echo -n "the expected left space is changed to "
6116                 echo "$left_size bytes at most."
6117         fi
6118         value=$(generate_string $left_size)
6119         setfattr -n $xtest -v $value $file
6120         orig=$(get_xattr_value $xtest $file)
6121         [[ "$orig" != "$value" ]] && error "$xtest changed"
6122
6123         #Verify if inode has some expected space left
6124         umount $MOUNT > /dev/null || error "umount $MOUNT failed"
6125         stop_mdt 1 > /dev/null || error "stop mdt1 failed"
6126         mount_ldiskfs $SINGLEMDS || error "mount -t ldiskfs $SINGLEMDS failed"
6127
6128         do_facet $SINGLEMDS ls -sal $mntpt/ROOT/$tfile
6129         used_xattr_blk=$(do_facet $SINGLEMDS ls -s $mntpt/ROOT/$tfile |
6130                         awk '{ print $1 }')
6131         [[ $used_xattr_blk -eq 0 ]] &&
6132                 error "Please check MDS inode size calculation: \
6133                        more than $left_size-byte space left in inode."
6134         echo "Verified: at most $left_size-byte space left in inode."
6135
6136         stopall
6137 }
6138 run_test 87 "check if MDT inode can hold EAs with N stripes properly"
6139
6140 test_88() {
6141         [ "$(facet_fstype mds1)" == "zfs" ] &&
6142                 skip "LU-6662: no implementation for ZFS" && return
6143
6144         load_modules
6145
6146         add mds1 $(mkfs_opts mds1 $(mdsdevname 1)) \
6147                 --reformat $(mdsdevname 1) || error "add mds1 failed"
6148
6149         do_facet mds1 "$TUNEFS $(mdsdevname 1) |
6150                 grep -e \".*opts:.*errors=remount-ro.*\"" ||
6151                 error "default mount options is missing"
6152
6153         add mds1 $(mkfs_opts mds1 $(mdsdevname 1)) \
6154                 --mountfsoptions="user_xattr,errors=panic" \
6155                 --reformat $(mdsdevname 1) || error "add mds1 failed"
6156
6157         do_facet mds1 "$TUNEFS $(mdsdevname 1) |
6158                 grep -e \".*opts:.*errors=panic.*\"" ||
6159                 error "user can't override default mount options"
6160 }
6161 run_test 88 "check the default mount options can be overridden"
6162
6163 # $1 test directory
6164 # $2 (optional) value of max_mod_rpcs_in_flight to set
6165 check_max_mod_rpcs_in_flight() {
6166         local dir="$1"
6167         local mmr="$2"
6168         local idx
6169         local facet
6170         local tmp
6171         local i
6172
6173         idx=$(printf "%04x" $($LFS getdirstripe -i $dir))
6174         facet="mds$((0x$idx + 1))"
6175
6176         if [ -z "$mmr" ]; then
6177                 # get value of max_mod_rcps_in_flight
6178                 mmr=$($LCTL get_param -n \
6179                         mdc.$FSNAME-MDT$idx-mdc-*.max_mod_rpcs_in_flight) ||
6180                         error "Unable to get max_mod_rpcs_in_flight"
6181                 echo "max_mod_rcps_in_flight is $mmr"
6182         else
6183                 # set value of max_mod_rpcs_in_flight
6184                 $LCTL set_param \
6185                     mdc.$FSNAME-MDT$idx-mdc-*.max_mod_rpcs_in_flight=$mmr ||
6186                         error "Unable to set max_mod_rpcs_in_flight to $mmr"
6187                 echo "max_mod_rpcs_in_flight set to $mmr"
6188         fi
6189
6190         # create mmr+1 files
6191         echo "creating $((mmr + 1)) files ..."
6192         umask 0022
6193         for i in $(seq $((mmr + 1))); do
6194                 touch $dir/file-$i
6195         done
6196
6197         ### part 1 ###
6198
6199         # consumes mmr-1 modify RPC slots
6200         #define OBD_FAIL_MDS_REINT_MULTI_NET     0x159
6201         # drop requests on MDT so that RPC slots are consumed
6202         # during all the request resend interval
6203         do_facet $facet "$LCTL set_param fail_loc=0x159"
6204         echo "launch $((mmr - 1)) chmod in parallel ..."
6205         for i in $(seq $((mmr - 1))); do
6206                 chmod 0600 $dir/file-$i &
6207         done
6208         sleep 1
6209
6210         # send one additional modify RPC
6211         do_facet $facet "$LCTL set_param fail_loc=0"
6212         echo "launch 1 additional chmod in parallel ..."
6213         chmod 0600 $dir/file-$mmr &
6214         sleep 1
6215
6216         # check this additional modify RPC get a modify RPC slot
6217         # and succeed its operation
6218         checkstat -vp 0600 $dir/file-$mmr ||
6219                 error "Unable to send $mmr modify RPCs in parallel"
6220         wait
6221
6222         ### part 2 ###
6223
6224         # consumes mmr modify RPC slots
6225         #define OBD_FAIL_MDS_REINT_MULTI_NET     0x159
6226         # drop requests on MDT so that RPC slots are consumed
6227         # during all the request resend interval
6228         do_facet $facet "$LCTL set_param fail_loc=0x159"
6229         echo "launch $mmr chmod in parallel ..."
6230         for i in $(seq $mmr); do
6231                 chmod 0666 $dir/file-$i &
6232         done
6233         sleep 1
6234
6235         # send one additional modify RPC
6236         do_facet $facet "$LCTL set_param fail_loc=0"
6237         echo "launch 1 additional chmod in parallel ..."
6238         chmod 0666 $dir/file-$((mmr + 1)) &
6239         sleep 1
6240
6241         # check this additional modify RPC blocked getting a modify RPC slot
6242         checkstat -vp 0644 $dir/file-$((mmr + 1)) ||
6243                 error "Unexpectedly send $(($mmr + 1)) modify RPCs in parallel"
6244         wait
6245 }
6246
6247 test_90a() {
6248         reformat
6249         if ! combined_mgs_mds ; then
6250                 start_mgs
6251         fi
6252         setup
6253
6254         [[ $($LCTL get_param mdc.*.import |
6255              grep "connect_flags:.*multi_mod_rpc") ]] ||
6256                 { skip "Need MDC with 'multi_mod_rpcs' feature"; return 0; }
6257
6258         # check default value
6259         $LFS mkdir -c1 $DIR/$tdir || error "mkdir $DIR/$tdir failed"
6260         check_max_mod_rpcs_in_flight $DIR/$tdir
6261
6262         cleanup
6263 }
6264 run_test 90a "check max_mod_rpcs_in_flight is enforced"
6265
6266 test_90b() {
6267         local idx
6268         local facet
6269         local tmp
6270         local mmrpc
6271
6272         setup
6273
6274         [[ $($LCTL get_param mdc.*.import |
6275              grep "connect_flags:.*multi_mod_rpc") ]] ||
6276                 { skip "Need MDC with 'multi_mod_rpcs' feature"; return 0; }
6277
6278         ### test 1.
6279         # update max_mod_rpcs_in_flight
6280         $LFS mkdir -c1 $DIR/${tdir}1 || error "mkdir $DIR/${tdir}1 failed"
6281         check_max_mod_rpcs_in_flight $DIR/${tdir}1 1
6282
6283         ### test 2.
6284         # check client is able to send multiple modify RPCs in paralell
6285         tmp=$($LCTL get_param -n mdc.$FSNAME-MDT*-mdc-*.import |
6286                 grep -c "multi_mod_rpcs")
6287         if [ "$tmp" -ne $MDSCOUNT ]; then
6288                 echo "Client not able to send multiple modify RPCs in parallel"
6289                 cleanup
6290                 return
6291         fi
6292
6293         # update max_mod_rpcs_in_flight
6294         $LFS mkdir -c1 $DIR/${tdir}2 || error "mkdir $DIR/${tdir}2 failed"
6295         check_max_mod_rpcs_in_flight $DIR/${tdir}2 5
6296
6297         ### test 3.
6298         $LFS mkdir -c1 $DIR/${tdir}3 || error "mkdir $DIR/${tdir}3 failed"
6299         idx=$(printf "%04x" $($LFS getdirstripe -i $DIR/${tdir}3))
6300         facet="mds$((0x$idx + 1))"
6301
6302         # save MDT max_mod_rpcs_per_client
6303         mmrpc=$(do_facet $facet \
6304                     cat /sys/module/mdt/parameters/max_mod_rpcs_per_client)
6305
6306         # update max_mod_rpcs_in_flight
6307         umount_client $MOUNT
6308         do_facet $facet \
6309                 "echo 16 > /sys/module/mdt/parameters/max_mod_rpcs_per_client"
6310         mount_client $MOUNT
6311         $LCTL set_param mdc.$FSNAME-MDT$idx-mdc-*.max_rpcs_in_flight=17
6312         check_max_mod_rpcs_in_flight $DIR/${tdir}3 16
6313
6314         # restore MDT max_mod_rpcs_per_client initial value
6315         do_facet $facet \
6316                 "echo $mmrpc > /sys/module/mdt/parameters/max_mod_rpcs_per_client"
6317
6318         rm -rf $DIR/${tdir}?
6319         cleanup
6320 }
6321 run_test 90b "check max_mod_rpcs_in_flight is enforced after update"
6322
6323 test_90c() {
6324         local tmp
6325         local mrif
6326         local mmrpc
6327
6328         setup
6329
6330         [[ $($LCTL get_param mdc.*.import |
6331              grep "connect_flags:.*multi_mod_rpc") ]] ||
6332                 { skip "Need MDC with 'multi_mod_rpcs' feature"; return 0; }
6333
6334         # check client is able to send multiple modify RPCs in paralell
6335         tmp=$($LCTL get_param -n mdc.$FSNAME-MDT*-mdc-*.import |
6336                 grep -c "multi_mod_rpcs")
6337         if [ "$tmp" -ne $MDSCOUNT ]; then
6338                 skip "Client not able to send multiple modify RPCs in parallel"
6339                 cleanup
6340                 return
6341         fi
6342
6343         # get max_rpcs_in_flight value
6344         mrif=$($LCTL get_param -n mdc.$FSNAME-MDT0000-mdc-*.max_rpcs_in_flight)
6345         echo "max_rpcs_in_flight is $mrif"
6346
6347         # get MDT max_mod_rpcs_per_client
6348         mmrpc=$(do_facet mds1 \
6349                     cat /sys/module/mdt/parameters/max_mod_rpcs_per_client)
6350         echo "max_mod_rpcs_per_client is $mmrpc"
6351
6352         # testcase 1
6353         # attempt to set max_mod_rpcs_in_flight to max_rpcs_in_flight value
6354         # prerequisite: set max_mod_rpcs_per_client to max_rpcs_in_flight value
6355         umount_client $MOUNT
6356         do_facet mds1 \
6357                 "echo $mrif > /sys/module/mdt/parameters/max_mod_rpcs_per_client"
6358         mount_client $MOUNT
6359
6360         $LCTL set_param \
6361             mdc.$FSNAME-MDT0000-mdc-*.max_mod_rpcs_in_flight=$mrif &&
6362             error "set max_mod_rpcs_in_flight to $mrif should fail"
6363
6364         umount_client $MOUNT
6365         do_facet mds1 \
6366                 "echo $mmrpc > /sys/module/mdt/parameters/max_mod_rpcs_per_client"
6367         mount_client $MOUNT
6368
6369         # testcase 2
6370         # attempt to set max_mod_rpcs_in_flight to max_mod_rpcs_per_client+1
6371         # prerequisite: set max_rpcs_in_flight to max_mod_rpcs_per_client+2
6372         $LCTL set_param \
6373             mdc.$FSNAME-MDT0000-mdc-*.max_rpcs_in_flight=$((mmrpc + 2))
6374
6375         $LCTL set_param \
6376             mdc.$FSNAME-MDT0000-mdc-*.max_mod_rpcs_in_flight=$((mmrpc + 1)) &&
6377             error "set max_mod_rpcs_in_flight to $((mmrpc + 1)) should fail"
6378
6379         cleanup
6380 }
6381 run_test 90c "check max_mod_rpcs_in_flight update limits"
6382
6383 test_90d() {
6384         local idx
6385         local facet
6386         local mmr
6387         local i
6388         local pid
6389
6390         setup
6391
6392         [[ $($LCTL get_param mdc.*.import |
6393              grep "connect_flags:.*multi_mod_rpc") ]] ||
6394                 { skip "Need MDC with 'multi_mod_rpcs' feature"; return 0; }
6395
6396         $LFS mkdir -c1 $DIR/$tdir || error "mkdir $DIR/$tdir failed"
6397         idx=$(printf "%04x" $($LFS getdirstripe -i $DIR/$tdir))
6398         facet="mds$((0x$idx + 1))"
6399
6400         # check client version supports multislots
6401         tmp=$($LCTL get_param -N \
6402                 mdc.$FSNAME-MDT$idx-mdc-*.max_mod_rpcs_in_flight)
6403         if [ -z "$tmp" ]; then
6404                 skip "Client does not support multiple modify RPCs in flight"
6405                 cleanup
6406                 return
6407         fi
6408
6409         # get current value of max_mod_rcps_in_flight
6410         mmr=$($LCTL get_param -n \
6411                 mdc.$FSNAME-MDT$idx-mdc-*.max_mod_rpcs_in_flight)
6412         echo "max_mod_rcps_in_flight is $mmr"
6413
6414         # create mmr files
6415         echo "creating $mmr files ..."
6416         umask 0022
6417         for i in $(seq $mmr); do
6418                 touch $DIR/$tdir/file-$i
6419         done
6420
6421         # prepare for close RPC
6422         multiop_bg_pause $DIR/$tdir/file-close O_c
6423         pid=$!
6424
6425         # consumes mmr modify RPC slots
6426         #define OBD_FAIL_MDS_REINT_MULTI_NET     0x159
6427         # drop requests on MDT so that RPC slots are consumed
6428         # during all the request resend interval
6429         do_facet $facet "$LCTL set_param fail_loc=0x159"
6430         echo "launch $mmr chmod in parallel ..."
6431         for i in $(seq $mmr); do
6432                 chmod 0600 $DIR/$tdir/file-$i &
6433         done
6434
6435         # send one additional close RPC
6436         do_facet $facet "$LCTL set_param fail_loc=0"
6437         echo "launch 1 additional close in parallel ..."
6438         kill -USR1 $pid
6439         cancel_lru_locks mdc
6440         sleep 1
6441
6442         # check this additional close RPC get a modify RPC slot
6443         # and multiop process completed
6444         [ -d /proc/$pid ] &&
6445                 error "Unable to send the additional close RPC in parallel"
6446         wait
6447         rm -rf $DIR/$tdir
6448         cleanup
6449 }
6450 run_test 90d "check one close RPC is allowed above max_mod_rpcs_in_flight"
6451
6452 check_uuid_on_ost() {
6453         local nid=$1
6454         do_facet ost1 "$LCTL get_param obdfilter.${FSNAME}*.exports.'$nid'.uuid"
6455 }
6456
6457 check_uuid_on_mdt() {
6458         local nid=$1
6459         do_facet $SINGLEMDS "$LCTL get_param mdt.${FSNAME}*.exports.'$nid'.uuid"
6460 }
6461
6462 test_91() {
6463         local uuid
6464         local nid
6465         local found
6466
6467         [[ $(lustre_version_code ost1) -ge $(version_code 2.7.63) ]] ||
6468                 { skip "Need OST version at least 2.7.63" && return 0; }
6469         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.7.63) ]] ||
6470                 { skip "Need MDT version at least 2.7.63" && return 0; }
6471
6472         start_mds || error "MDS start failed"
6473         start_ost || error "unable to start OST"
6474         mount_client $MOUNT || error "client start failed"
6475         check_mount || error "check_mount failed"
6476
6477         if remote_mds; then
6478                 nid=$($LCTL list_nids | head -1 | sed  "s/\./\\\./g")
6479         else
6480                 nid="0@lo"
6481         fi
6482         uuid=$(get_client_uuid $MOUNT)
6483
6484         echo "list nids on mdt:"
6485         do_facet $SINGLEMDS "$LCTL list_param mdt.${FSNAME}*.exports.*"
6486         echo "uuid from $nid:"
6487         do_facet $SINGLEMDS "$LCTL get_param mdt.${FSNAME}*.exports.'$nid'.uuid"
6488
6489         found=$(check_uuid_on_mdt $nid | grep $uuid)
6490         [ -z "$found" ] && error "can't find $uuid $nid on MDT"
6491         found=$(check_uuid_on_ost $nid | grep $uuid)
6492         [ -z "$found" ] && error "can't find $uuid $nid on OST"
6493
6494         # umount the client so it won't reconnect
6495         manual_umount_client --force || error "failed to umount $?"
6496         # shouldn't disappear on MDS after forced umount
6497         found=$(check_uuid_on_mdt $nid | grep $uuid)
6498         [ -z "$found" ] && error "can't find $uuid $nid"
6499
6500         echo "evict $nid"
6501         do_facet $SINGLEMDS \
6502                 "$LCTL set_param -n mdt.${mds1_svc}.evict_client nid:$nid"
6503
6504         found=$(check_uuid_on_mdt $nid | grep $uuid)
6505         [ -n "$found" ] && error "found $uuid $nid on MDT"
6506         found=$(check_uuid_on_ost $nid | grep $uuid)
6507         [ -n "$found" ] && error "found $uuid $nid on OST"
6508
6509         # check it didn't reconnect (being umounted)
6510         sleep $((TIMEOUT+1))
6511         found=$(check_uuid_on_mdt $nid | grep $uuid)
6512         [ -n "$found" ] && error "found $uuid $nid on MDT"
6513         found=$(check_uuid_on_ost $nid | grep $uuid)
6514         [ -n "$found" ] && error "found $uuid $nid on OST"
6515
6516         cleanup
6517 }
6518 run_test 91 "evict-by-nid support"
6519
6520 generate_ldev_conf() {
6521         # generate an ldev.conf file
6522         local ldevconfpath=$1
6523         local fstype=
6524         local fsldevformat=""
6525         touch $ldevconfpath
6526
6527         fstype=$(facet_fstype mgs)
6528         if [ "$fstype" == "zfs" ]; then
6529                 fsldevformat="$fstype:"
6530         else
6531                 fsldevformat=""
6532         fi
6533
6534         printf "%s\t-\t%s-MGS0000\t%s%s\n" \
6535                 $mgs_HOST \
6536                 $FSNAME \
6537                 $fsldevformat \
6538                 $(mgsdevname) > $ldevconfpath
6539
6540         local mdsfo_host=$mdsfailover_HOST;
6541         if [ -z "$mdsfo_host" ]; then
6542                 mdsfo_host="-"
6543         fi
6544
6545         for num in $(seq $MDSCOUNT); do
6546                 fstype=$(facet_fstype mds$num)
6547                 if [ "$fstype" == "zfs" ]; then
6548                         fsldevformat="$fstype:"
6549                 else
6550                         fsldevformat=""
6551                 fi
6552
6553                 printf "%s\t%s\t%s-MDT%04d\t%s%s\n" \
6554                         $mds_HOST \
6555                         $mdsfo_host \
6556                         $FSNAME \
6557                         $num \
6558                         $fsldevformat \
6559                         $(mdsdevname $num) >> $ldevconfpath
6560         done
6561
6562         local ostfo_host=$ostfailover_HOST;
6563         if [ -z "$ostfo_host" ]; then
6564                 ostfo_host="-"
6565         fi
6566
6567         for num in $(seq $OSTCOUNT); do
6568                 fstype=$(facet_fstype ost$num)
6569                 if [ "$fstype" == "zfs" ]; then
6570                         fsldevformat="$fstype:"
6571                 else
6572                         fsldevformat=""
6573                 fi
6574
6575                 printf "%s\t%s\t%s-OST%04d\t%s%s\n" \
6576                         $ost_HOST \
6577                         $ostfo_host \
6578                         $FSNAME \
6579                         $num \
6580                         $fsldevformat \
6581                         $(ostdevname $num) >> $ldevconfpath
6582         done
6583
6584         echo "----- $ldevconfpath -----"
6585         cat $ldevconfpath
6586         echo "--- END $ldevconfpath ---"
6587
6588 }
6589
6590 generate_nids() {
6591         # generate a nids file (mapping between hostname to nid)
6592         # looks like we only have the MGS nid available to us
6593         # so just echo that to a file
6594         local nidspath=$1
6595         echo -e "${mgs_HOST}\t${MGSNID}" > $nidspath
6596
6597         echo "----- $nidspath -----"
6598         cat $nidspath
6599         echo "--- END $nidspath ---"
6600 }
6601
6602 compare_ldev_output() {
6603         ldev_output=$1
6604         expected_output=$2
6605
6606         sort $expected_output -o $expected_output
6607         sort $ldev_output -o $ldev_output
6608
6609         echo "-- START OF LDEV OUTPUT --"
6610         cat $ldev_output
6611         echo "--- END OF LDEV OUTPUT ---"
6612
6613         echo "-- START OF EXPECTED OUTPUT --"
6614         cat $expected_output
6615         echo "--- END OF EXPECTED OUTPUT ---"
6616
6617         diff $expected_output $ldev_output
6618         return $?
6619 }
6620
6621 test_92() {
6622         if [ -z "$LDEV" ]; then
6623                 error "ldev is missing!"
6624         fi
6625
6626         local LDEVCONFPATH=$TMP/ldev.conf
6627         local NIDSPATH=$TMP/nids
6628
6629         echo "Host is $(hostname)"
6630
6631         generate_ldev_conf $LDEVCONFPATH
6632         generate_nids $NIDSPATH
6633
6634         # echo the mgs nid and compare it to environment variable MGSNID
6635         # also, ldev.conf and nids is a server side thing, use the OSS
6636         # hostname
6637         local output
6638         output=$($LDEV -c $LDEVCONFPATH -H $ost_HOST -n $NIDSPATH echo %m)
6639
6640         echo "-- START OF LDEV OUTPUT --"
6641         echo -e "$output"
6642         echo "--- END OF LDEV OUTPUT ---"
6643
6644         # ldev failed, error
6645         if [ $? -ne 0 ]; then
6646                 rm $LDEVCONFPATH $NIDSPATH
6647                 error "ldev failed to execute!"
6648         fi
6649
6650         # need to process multiple lines because of combined MGS and MDS
6651         echo -e $output | awk '{ print $2 }' | while read -r line ; do
6652                 if [ "$line" != "$MGSNID" ]; then
6653                         rm $LDEVCONFPATH $NIDSPATH
6654                         error "ldev failed mgs nid '$line', expected '$MGSNID'"
6655                 fi
6656         done
6657
6658         rm $LDEVCONFPATH $NIDSPATH
6659 }
6660 run_test 92 "ldev returns MGS NID correctly in command substitution"
6661
6662 test_93() {
6663         [ $MDSCOUNT -lt 3 ] && skip "needs >= 3 MDTs" && return
6664
6665         reformat
6666         #start mgs or mgs/mdt0
6667         if ! combined_mgs_mds ; then
6668                 start_mgs
6669                 start_mdt 1
6670         else
6671                 start_mdt 1
6672         fi
6673
6674         start_ost || error "OST0 start fail"
6675
6676         #define OBD_FAIL_MGS_WRITE_TARGET_DELAY  0x90e
6677         do_facet mgs "$LCTL set_param fail_val = 10 fail_loc=0x8000090e"
6678         for num in $(seq 2 $MDSCOUNT); do
6679                 start_mdt $num &
6680         done
6681
6682         mount_client $MOUNT || error "mount client fails"
6683         wait_osc_import_state mds ost FULL
6684         wait_osc_import_state client ost FULL
6685         check_mount || error "check_mount failed"
6686
6687         cleanup || error "cleanup failed with $?"
6688 }
6689 run_test 93 "register mulitple MDT at the same time"
6690
6691 test_94() {
6692         if [ -z "$LDEV" ]; then
6693                 error "ldev is missing!"
6694         fi
6695
6696         local LDEVCONFPATH=$TMP/ldev.conf
6697         local NIDSPATH=$TMP/nids
6698
6699         generate_ldev_conf $LDEVCONFPATH
6700         generate_nids $NIDSPATH
6701
6702         local LDEV_OUTPUT=$TMP/ldev-output.txt
6703         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -F $FSNAME > $LDEV_OUTPUT
6704
6705         # ldev failed, error
6706         if [ $? -ne 0 ]; then
6707                 rm $LDEVCONFPATH $NIDSPATH $LDEV_OUTPUT
6708                 error "ldev failed to execute!"
6709         fi
6710
6711         # expected output
6712         local EXPECTED_OUTPUT=$TMP/ldev-expected.txt
6713
6714         printf "%s-MGS0000\n" $FSNAME > $EXPECTED_OUTPUT
6715
6716         for num in $(seq $MDSCOUNT); do
6717                 printf "%s-MDT%04d\n" $FSNAME $num >> $EXPECTED_OUTPUT
6718         done
6719
6720         for num in $(seq $OSTCOUNT); do
6721                 printf "%s-OST%04d\n" $FSNAME $num >> $EXPECTED_OUTPUT
6722         done
6723
6724         compare_ldev_output $LDEV_OUTPUT $EXPECTED_OUTPUT
6725
6726         if [ $? -ne 0 ]; then
6727                 rm $LDEVCONFPATH $NIDSPATH $EXPECTED_OUTPUT $LDEV_OUTPUT
6728                 error "ldev failed to produce the correct hostlist!"
6729         fi
6730
6731         rm $LDEVCONFPATH $NIDSPATH $EXPECTED_OUTPUT $LDEV_OUTPUT
6732 }
6733 run_test 94 "ldev outputs correct labels for file system name query"
6734
6735 test_95() {
6736         if [ -z "$LDEV" ]; then
6737                 error "ldev is missing!"
6738         fi
6739
6740         local LDEVCONFPATH=$TMP/ldev.conf
6741         local NIDSPATH=$TMP/nids
6742
6743         generate_ldev_conf $LDEVCONFPATH
6744         generate_nids $NIDSPATH
6745
6746         # SUCCESS CASES
6747         # file sys filter
6748         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -F $FSNAME &>/dev/null
6749         if [ $? -ne 0 ]; then
6750                 rm $LDEVCONFPATH $NIDSPATH
6751                 error "ldev label filtering w/ -F failed!"
6752         fi
6753
6754         # local filter
6755         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -l  &>/dev/null
6756         if [ $? -ne 0 ]; then
6757                 rm $LDEVCONFPATH $NIDSPATH
6758                 error "ldev label filtering w/ -l failed!"
6759         fi
6760
6761         # foreign filter
6762         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -f &>/dev/null
6763         if [ $? -ne 0 ]; then
6764                 rm $LDEVCONFPATH $NIDSPATH
6765                 error "ldev label filtering w/ -f failed!"
6766         fi
6767
6768         # all filter
6769         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -a &>/dev/null
6770         if [ $? -ne 0 ]; then
6771                 rm $LDEVCONFPATH $NIDSPATH
6772                 error "ldev label filtering w/ -a failed!"
6773         fi
6774
6775         # FAILURE CASES
6776         # all & file sys
6777         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -a -F $FSNAME &>/dev/null
6778         if [ $? -eq 0 ]; then
6779                 rm $LDEVCONFPATH $NIDSPATH
6780                 error "ldev label filtering w/ -a and -F incorrectly succeeded"
6781         fi
6782
6783         # all & foreign
6784         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -a -f &>/dev/null
6785         if [ $? -eq 0 ]; then
6786                 rm $LDEVCONFPATH $NIDSPATH
6787                 error "ldev label filtering w/ -a and -f incorrectly succeeded"
6788         fi
6789
6790         # all & local
6791         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -a -l &>/dev/null
6792         if [ $? -eq 0 ]; then
6793                 rm $LDEVCONFPATH $NIDSPATH
6794                 error "ldev label filtering w/ -a and -l incorrectly succeeded"
6795         fi
6796
6797         # foreign & local
6798         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -f -l &>/dev/null
6799         if [ $? -eq 0 ]; then
6800                 rm $LDEVCONFPATH $NIDSPATH
6801                 error "ldev label filtering w/ -f and -l incorrectly succeeded"
6802         fi
6803
6804         # file sys & local
6805         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -F $FSNAME -l &>/dev/null
6806         if [ $? -eq 0 ]; then
6807                 rm $LDEVCONFPATH $NIDSPATH
6808                 error "ldev label filtering w/ -F and -l incorrectly succeeded"
6809         fi
6810
6811         # file sys & foreign
6812         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -F $FSNAME -f &>/dev/null
6813         if [ $? -eq 0 ]; then
6814                 rm $LDEVCONFPATH $NIDSPATH
6815                 error "ldev label filtering w/ -F and -f incorrectly succeeded"
6816         fi
6817
6818         rm $LDEVCONFPATH $NIDSPATH
6819 }
6820 run_test 95 "ldev should only allow one label filter"
6821
6822 test_96() {
6823         if [ -z "$LDEV" ]; then
6824                 error "ldev is missing!"
6825         fi
6826
6827         local LDEVCONFPATH=$TMP/ldev.conf
6828         local NIDSPATH=$TMP/nids
6829
6830         generate_ldev_conf $LDEVCONFPATH
6831         generate_nids $NIDSPATH
6832
6833         local LDEV_OUTPUT=$TMP/ldev-output.txt
6834         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -H $mgs_HOST \
6835                 echo %H-%b | \
6836                 awk '{print $2}' > $LDEV_OUTPUT
6837
6838         # ldev failed, error
6839         if [ $? -ne 0 ]; then
6840                 rm $LDEVCONFPATH $NIDSPATH $LDEV_OUTPUT
6841                 error "ldev failed to execute!"
6842         fi
6843
6844         # expected output
6845         local EXPECTED_OUTPUT=$TMP/ldev-expected-output.txt
6846
6847         echo "$mgs_HOST-$(facet_fstype mgs)" > $EXPECTED_OUTPUT
6848
6849         if [ "$mgs_HOST" == "$mds_HOST" ]; then
6850                 for num in $(seq $MDSCOUNT); do
6851                         echo "$mds_HOST-$(facet_fstype mds$num)" \
6852                         >> $EXPECTED_OUTPUT
6853                 done
6854         fi
6855
6856         if [ "$mgs_HOST" == "$ost_HOST" ]; then
6857                 for num in $(seq $OSTCOUNT); do
6858                         echo "$ost_HOST-$(facet_fstype ost$num)" \
6859                         >> $EXPECTED_OUTPUT
6860                 done
6861         fi
6862
6863         compare_ldev_output $LDEV_OUTPUT $EXPECTED_OUTPUT
6864
6865         if [ $? -ne 0 ]; then
6866                 rm $LDEVCONFPATH $NIDSPATH $EXPECTED_OUTPUT $LDEV_OUTPUT
6867                 error "ldev failed to produce the correct output!"
6868         fi
6869
6870         rm $LDEVCONFPATH $NIDSPATH $EXPECTED_OUTPUT $LDEV_OUTPUT
6871 }
6872 run_test 96 "ldev returns hostname and backend fs correctly in command sub"
6873
6874 test_97() {
6875         if [ -z "$LDEV" ]; then
6876                 error "ldev is missing!"
6877         fi
6878
6879         local LDEVCONFPATH=$TMP/ldev.conf
6880         local NIDSPATH=$TMP/nids
6881
6882         generate_ldev_conf $LDEVCONFPATH
6883         generate_nids $NIDSPATH
6884
6885         local LDEV_OUTPUT=$TMP/ldev-output.txt
6886         local EXPECTED_OUTPUT=$TMP/ldev-expected-output.txt
6887
6888         echo -e "\nMDT role"
6889         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -F $FSNAME -R mdt > $LDEV_OUTPUT
6890
6891         if [ $? -ne 0 ]; then
6892                 rm $LDEVCONFPATH $NIDSPATH $LDEV_OUTPUT
6893                 error "ldev failed to execute for mdt role!"
6894         fi
6895
6896         for num in $(seq $MDSCOUNT); do
6897                 printf "%s-MDT%04d\n" $FSNAME $num >> $EXPECTED_OUTPUT
6898         done
6899
6900         compare_ldev_output $LDEV_OUTPUT $EXPECTED_OUTPUT
6901
6902         if [ $? -ne 0 ]; then
6903                 rm $LDEVCONFPATH $NIDSPATH $EXPECTED_OUTPUT $LDEV_OUTPUT
6904                 error "ldev failed to produce the correct output for mdt role!"
6905         fi
6906
6907         echo -e "\nOST role"
6908         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -F $FSNAME -R ost > $LDEV_OUTPUT
6909
6910         if [ $? -ne 0 ]; then
6911                 rm $LDEVCONFPATH $NIDSPATH $LDEV_OUTPUT $EXPECTED_OUTPUT
6912                 error "ldev failed to execute for ost role!"
6913         fi
6914
6915         rm $EXPECTED_OUTPUT
6916         for num in $(seq $OSTCOUNT); do
6917                 printf "%s-OST%04d\n" $FSNAME $num >> $EXPECTED_OUTPUT
6918         done
6919
6920         compare_ldev_output $LDEV_OUTPUT $EXPECTED_OUTPUT
6921
6922         if [ $? -ne 0 ]; then
6923                 rm $LDEVCONFPATH $NIDSPATH $EXPECTED_OUTPUT $LDEV_OUTPUT
6924                 error "ldev failed to produce the correct output for ost role!"
6925         fi
6926
6927         echo -e "\nMGS role"
6928         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -F $FSNAME -R mgs > $LDEV_OUTPUT
6929
6930         if [ $? -ne 0 ]; then
6931                 rm $LDEVCONFPATH $NIDSPATH $LDEV_OUTPUT $EXPECTED_OUTPUT
6932                 error "ldev failed to execute for mgs role!"
6933         fi
6934
6935         printf "%s-MGS0000\n" $FSNAME > $EXPECTED_OUTPUT
6936
6937         compare_ldev_output $LDEV_OUTPUT $EXPECTED_OUTPUT
6938
6939         if [ $? -ne 0 ]; then
6940                 rm $LDEVCONFPATH $NIDSPATH $EXPECTED_OUTPUT $LDEV_OUTPUT
6941                 error "ldev failed to produce the correct output for mgs role!"
6942         fi
6943
6944         rm $LDEVCONFPATH $NIDSPATH $EXPECTED_OUTPUT $LDEV_OUTPUT
6945 }
6946 run_test 97 "ldev returns correct ouput when querying based on role"
6947
6948 test_98()
6949 {
6950         local mountopt
6951         local temp=$MDS_MOUNT_OPTS
6952
6953         setup
6954         check_mount || error "mount failed"
6955         mountopt="user_xattr"
6956         for ((x = 1; x <= 400; x++)); do
6957                 mountopt="$mountopt,user_xattr"
6958         done
6959         remount_client $mountopt $MOUNT  2>&1 | grep "too long" ||
6960                 error "Buffer overflow check failed"
6961         cleanup || error "cleanup failed"
6962 }
6963 run_test 98 "Buffer-overflow check while parsing mount_opts"
6964
6965 test_99()
6966 {
6967         [[ $(facet_fstype ost1) != ldiskfs ]] &&
6968                 { skip "Only applicable to ldiskfs-based OSTs" && return; }
6969         [[ $(lustre_version_code ost1) -ge $(version_code 2.8.57) ]] ||
6970                 { skip "Need OST version at least 2.8.57" && return 0; }
6971
6972         local ost_opts="$(mkfs_opts ost1 $(ostdevname 1)) \
6973                 --reformat $(ostdevname 1) $(ostvdevname 1)"
6974         do_facet ost1 $DEBUGFS -c -R stats `ostdevname 1` | grep "meta_bg" &&
6975                 skip "meta_bg already set" && return
6976
6977         local opts=ost_opts
6978         if [[ ${!opts} != *mkfsoptions* ]]; then
6979                 eval opts=\"${!opts} \
6980                 --mkfsoptions='\\\"-O ^resize_inode,meta_bg\\\"'\"
6981         else
6982                 local val=${!opts//--mkfsoptions=\\\"/ \
6983                 --mkfsoptions=\\\"-O ^resize_inode,meta_bg }
6984                 eval opts='${val}'
6985         fi
6986
6987         echo "params: $opts"
6988
6989         add ost1 $opts || error "add ost1 failed with new params"
6990
6991         do_facet ost1 $DEBUGFS -c -R stats `ostdevname 1` | grep "meta_bg" ||
6992                 error "meta_bg is not set"
6993
6994         return 0
6995 }
6996 run_test 99 "Adding meta_bg option"
6997
6998 test_100() {
6999         reformat
7000         start_mds || error "MDS start failed"
7001         start_ost || error "unable to start OST"
7002         mount_client $MOUNT || error "client start failed"
7003         check_mount || error "check_mount failed"
7004
7005         # Desired output
7006         # MGS:
7007         #     0@lo
7008         # lustre-MDT0000:
7009         #     0@lo
7010         # lustre-OST0000:
7011         #     0@lo
7012         do_facet mgs 'lshowmount -v' | awk 'BEGIN {NR == 0; rc=1} /MGS:/ {rc=0}
7013                 END {exit rc}' || error "lshowmount have no output MGS"
7014
7015         do_facet mds1 'lshowmount -v' | awk 'BEGIN {NR == 2; rc=1} /-MDT0000:/
7016                 {rc=0} END {exit rc}' || error "lshowmount have no output MDT0"
7017
7018         do_facet ost1 'lshowmount -v' | awk 'BEGIN {NR == 4; rc=1} /-OST0000:/
7019                 {rc=0} END {exit rc}' || error "lshowmount have no output OST0"
7020
7021         cleanup || error "cleanup failed with $?"
7022 }
7023 run_test 100 "check lshowmount lists MGS, MDT, OST and 0@lo"
7024
7025 test_101() {
7026         local createmany_oid
7027         local dev=$FSNAME-OST0000-osc-MDT0000
7028         setup
7029
7030         createmany -o $DIR1/$tfile-%d 50000 &
7031         createmany_oid=$!
7032         # MDT->OST reconnection causes MDT<->OST last_id synchornisation
7033         # via osp_precreate_cleanup_orphans.
7034         for ((i = 0; i < 100; i++)); do
7035                 for ((k = 0; k < 10; k++)); do
7036                         do_facet $SINGLEMDS "$LCTL --device $dev deactivate;" \
7037                                             "$LCTL --device $dev activate"
7038                 done
7039
7040                 ls -asl $MOUNT | grep '???' &&
7041                         (kill -9 $createmany_oid &>/dev/null; \
7042                          error "File hasn't object on OST")
7043
7044                 kill -s 0 $createmany_oid || break
7045         done
7046         wait $createmany_oid
7047         cleanup
7048 }
7049 run_test 101 "Race MDT->OST reconnection with create"
7050
7051 if ! combined_mgs_mds ; then
7052         stop mgs
7053 fi
7054
7055 cleanup_gss
7056
7057 # restore the values of MDSSIZE and OSTSIZE
7058 MDSSIZE=$STORED_MDSSIZE
7059 OSTSIZE=$STORED_OSTSIZE
7060 reformat
7061
7062 complete $SECONDS
7063 exit_status