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