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