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