Whamcloud - gitweb
4d64693e8a2be4ef84db207348150f1b9a0017b0
[fs/lustre-release.git] / lustre / tests / conf-sanity.sh
1 #!/bin/bash
2
3 set -e
4
5 ONLY=${ONLY:-"$*"}
6
7 # bug number for skipped test:     LU-7428
8 ALWAYS_EXCEPT="$CONF_SANITY_EXCEPT 84"
9 # UPDATE THE COMMENT ABOVE WITH BUG NUMBERS WHEN CHANGING ALWAYS_EXCEPT!
10
11 is_sles11()                                             # LU-2181
12 {
13         if [ -r /etc/SuSE-release ]
14         then
15                 local vers=$(grep VERSION /etc/SuSE-release | awk '{print $3}')
16                 local patchlev=$(grep PATCHLEVEL /etc/SuSE-release |
17                         awk '{ print $3 }')
18                 if [ $vers -eq 11 ] && [ $patchlev -eq 2 ]
19                 then
20                         return 0
21                 fi
22         fi
23         return 1
24 }
25
26 if is_sles11; then                                      # LU-2181
27         ALWAYS_EXCEPT="$ALWAYS_EXCEPT 23a 34b"
28 fi
29
30 if [ "$FAILURE_MODE" = "HARD" ]; then
31         CONFIG_EXCEPTIONS="24a " &&
32         echo "Except the tests: $CONFIG_EXCEPTIONS for " \
33              "FAILURE_MODE=$FAILURE_MODE, b=23573" &&
34                 ALWAYS_EXCEPT="$ALWAYS_EXCEPT $CONFIG_EXCEPTIONS"
35 fi
36
37 # bug number for skipped test:
38 # a tool to create lustre filesystem images
39 ALWAYS_EXCEPT="32newtarball $ALWAYS_EXCEPT"
40
41 SRCDIR=$(dirname $0)
42 PATH=$PWD/$SRCDIR:$SRCDIR:$SRCDIR/../utils:$PATH
43
44 PTLDEBUG=${PTLDEBUG:--1}
45 SAVE_PWD=$PWD
46 LUSTRE=${LUSTRE:-$(dirname $0)/..}
47 RLUSTRE=${RLUSTRE:-$LUSTRE}
48 export MULTIOP=${MULTIOP:-multiop}
49
50 . $LUSTRE/tests/test-framework.sh
51 init_test_env $@
52 . ${CONFIG:=$LUSTRE/tests/cfg/$NAME.sh}
53
54 # use small MDS + OST size to speed formatting time
55 # do not use too small MDSSIZE/OSTSIZE, which affect the default journal size
56 # STORED_MDSSIZE is used in test_18
57 STORED_MDSSIZE=$MDSSIZE
58 STORED_OSTSIZE=$OSTSIZE
59 MDSSIZE=200000
60 OSTSIZE=200000
61
62 fs2mds_HOST=$mds_HOST
63 fs2ost_HOST=$ost_HOST
64 fs3ost_HOST=$ost_HOST
65
66 MDSDEV1_2=$fs2mds_DEV
67 OSTDEV1_2=$fs2ost_DEV
68 OSTDEV2_2=$fs3ost_DEV
69
70 if ! combined_mgs_mds; then
71     # bug number for skipped test:    23954
72     ALWAYS_EXCEPT="$ALWAYS_EXCEPT       24b"
73 fi
74
75 # pass "-E lazy_itable_init" to mke2fs to speed up the formatting time
76 if [[ "$LDISKFS_MKFS_OPTS" != *lazy_itable_init* ]]; then
77         LDISKFS_MKFS_OPTS=$(csa_add "$LDISKFS_MKFS_OPTS" -E lazy_itable_init)
78 fi
79
80 [ $(facet_fstype $SINGLEMDS) = "zfs" ] &&
81 # bug number for skipped test:        LU-4444
82         ALWAYS_EXCEPT="$ALWAYS_EXCEPT 69"
83
84 init_logging
85
86 #
87 require_dsh_mds || exit 0
88 require_dsh_ost || exit 0
89 #
90 [ "$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_MOUNT_RACE 0x716
2767         do_facet $SINGLEMDS "$LCTL set_param fail_loc=0x716"
2768         start mds1 $(mdsdevname 1) $MDS_MOUNT_OPTS &
2769         local pid=$!
2770         start mds1 $(mdsdevname 1) $MDS_MOUNT_OPTS &
2771         do_facet $SINGLEMDS "$LCTL set_param fail_loc=0x0"
2772         local pid2=$!
2773         wait $pid2
2774         local rc2=$?
2775         wait $pid
2776         local rc=$?
2777         if [ $rc -eq 0 ] && [ $rc2 -ne 0 ]; then
2778                 echo "1st MDT start succeed"
2779                 echo "2nd MDT start failed with $rc2"
2780         elif [ $rc2 -eq 0 ] && [ $rc -ne 0 ]; then
2781                 echo "1st MDT start failed with $rc"
2782                 echo "2nd MDT start succeed"
2783         else
2784                 stop mds1 -f
2785                 error "unexpected concurrent MDT mounts result, rc=$rc rc2=$rc2"
2786         fi
2787
2788         if [ $MDSCOUNT -ge 2 ]; then
2789                 for num in $(seq 2 $MDSCOUNT); do
2790                         start_mdt $num || return
2791                 done
2792         fi
2793
2794         # OST concurrent start
2795
2796         #define OBD_FAIL_TGT_MOUNT_RACE 0x716
2797         do_facet ost1 "$LCTL set_param fail_loc=0x716"
2798         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS &
2799         pid=$!
2800         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS &
2801         do_facet ost1 "$LCTL set_param fail_loc=0x0"
2802         pid2=$!
2803         wait $pid2
2804         rc2=$?
2805         wait $pid
2806         rc=$?
2807         if [ $rc -eq 0 ] && [ $rc2 -ne 0 ]; then
2808                 echo "1st OST start succeed"
2809                 echo "2nd OST start failed with $rc2"
2810         elif [ $rc2 -eq 0 ] && [ $rc -ne 0 ]; then
2811                 echo "1st OST start failed with $rc"
2812                 echo "2nd OST start succeed"
2813         else
2814                 stop_mds -f
2815                 stop ost1 -f
2816                 error "unexpected concurrent OST mounts result, rc=$rc rc2=$rc2"
2817         fi
2818         # cleanup
2819         stop_mds
2820         stop ost1 -f
2821
2822         # verify everything ok
2823         start_mds
2824         if [ $? != 0 ]
2825         then
2826                 stop_mds
2827                 error "MDT(s) start failed"
2828         fi
2829
2830         start_ost
2831         if [ $? != 0 ]
2832         then
2833                 stop_mds
2834                 stop ost1 -f
2835                 error "OST(s) start failed"
2836         fi
2837
2838         mount_client $MOUNT
2839         if [ $? != 0 ]
2840         then
2841                 stop_mds
2842                 stop ost1 -f
2843                 error "client start failed"
2844         fi
2845         check_mount
2846         if [ $? != 0 ]
2847         then
2848                 stop_mds
2849                 stop ost1 -f
2850                 error "client mount failed"
2851         fi
2852         cleanup
2853 }
2854 run_test 41c "concurrent mounts of MDT/OST should all fail but one"
2855
2856 test_42() { #bug 14693
2857         setup
2858         check_mount || error "client was not mounted"
2859
2860         do_facet mgs $LCTL conf_param $FSNAME.llite.some_wrong_param=10
2861         umount_client $MOUNT ||
2862                 error "unmounting client failed with invalid llite param"
2863         mount_client $MOUNT ||
2864                 error "mounting client failed with invalid llite param"
2865
2866         do_facet mgs $LCTL conf_param $FSNAME.sys.some_wrong_param=20
2867         cleanup || error "stopping $FSNAME failed with invalid sys param"
2868         load_modules
2869         setup
2870         check_mount || error "client was not mounted with invalid sys param"
2871         cleanup || error "stopping $FSNAME failed with invalid sys param"
2872 }
2873 run_test 42 "allow client/server mount/unmount with invalid config param"
2874
2875 test_43a() {
2876         [[ $(lustre_version_code mgs) -ge $(version_code 2.5.58) ]] ||
2877                 { skip "Need MDS version at least 2.5.58" && return 0; }
2878         [ $UID -ne 0 -o $RUNAS_ID -eq 0 ] && skip_env "run as root"
2879
2880         ID1=${ID1:-501}
2881         USER1=$(cat /etc/passwd | grep :$ID1:$ID1: | cut -d: -f1)
2882         [ -z "$USER1" ] && skip_env "missing user with uid=$ID1 gid=$ID1" &&
2883                 return
2884
2885         setup
2886         chmod ugo+x $DIR || error "chmod 0 failed"
2887         set_conf_param_and_check mds                                    \
2888                 "$LCTL get_param -n mdt.$FSNAME-MDT0000.root_squash"    \
2889                 "$FSNAME.mdt.root_squash"                               \
2890                 "0:0"
2891         wait_update $HOSTNAME                                           \
2892                 "$LCTL get_param -n llite.${FSNAME}*.root_squash"       \
2893                 "0:0" ||
2894                 error "check llite root_squash failed!"
2895         set_conf_param_and_check mds                                    \
2896                 "$LCTL get_param -n mdt.$FSNAME-MDT0000.nosquash_nids"  \
2897                 "$FSNAME.mdt.nosquash_nids"                             \
2898                 "NONE"
2899         wait_update $HOSTNAME                                           \
2900                 "$LCTL get_param -n llite.${FSNAME}*.nosquash_nids"     \
2901                 "NONE" ||
2902                 error "check llite nosquash_nids failed!"
2903
2904     #
2905     # create set of test files
2906     #
2907     echo "111" > $DIR/$tfile-userfile || error "write 1 failed"
2908     chmod go-rw $DIR/$tfile-userfile  || error "chmod 1 failed"
2909     chown $RUNAS_ID.$RUNAS_ID $DIR/$tfile-userfile || error "chown failed"
2910
2911     echo "222" > $DIR/$tfile-rootfile || error "write 2 failed"
2912     chmod go-rw $DIR/$tfile-rootfile  || error "chmod 2 faield"
2913
2914         mkdir $DIR/$tdir-rootdir || error "mkdir failed"
2915         chmod go-rwx $DIR/$tdir-rootdir || error "chmod 3 failed"
2916         touch $DIR/$tdir-rootdir/tfile-1 || error "touch failed"
2917
2918         echo "777" > $DIR/$tfile-user1file || error "write 7 failed"
2919         chmod go-rw $DIR/$tfile-user1file || error "chmod 7 failed"
2920         chown $ID1.$ID1 $DIR/$tfile-user1file || error "chown failed"
2921
2922         #
2923         # check root_squash:
2924         #   set root squash UID:GID to RUNAS_ID
2925         #   root should be able to access only files owned by RUNAS_ID
2926         #
2927         set_conf_param_and_check mds                                    \
2928                 "$LCTL get_param -n mdt.$FSNAME-MDT0000.root_squash"    \
2929                 "$FSNAME.mdt.root_squash"                               \
2930                 "$RUNAS_ID:$RUNAS_ID"
2931         wait_update $HOSTNAME                                           \
2932                 "$LCTL get_param -n llite.${FSNAME}*.root_squash"       \
2933                 "$RUNAS_ID:$RUNAS_ID" ||
2934                 error "check llite root_squash failed!"
2935
2936         ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tfile-userfile)
2937         dd if=$DIR/$tfile-userfile 1>/dev/null 2>/dev/null ||
2938                 error "$ST: root read permission is denied"
2939         echo "$ST: root read permission is granted - ok"
2940
2941         echo "444" |
2942         dd conv=notrunc of=$DIR/$tfile-userfile 1>/dev/null 2>/dev/null ||
2943                 error "$ST: root write permission is denied"
2944         echo "$ST: root write permission is granted - ok"
2945
2946         ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tfile-rootfile)
2947         dd if=$DIR/$tfile-rootfile 1>/dev/null 2>/dev/null &&
2948                 error "$ST: root read permission is granted"
2949         echo "$ST: root read permission is denied - ok"
2950
2951         echo "555" |
2952         dd conv=notrunc of=$DIR/$tfile-rootfile 1>/dev/null 2>/dev/null &&
2953                 error "$ST: root write permission is granted"
2954         echo "$ST: root write permission is denied - ok"
2955
2956         ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tdir-rootdir)
2957                 rm $DIR/$tdir-rootdir/tfile-1 1>/dev/null 2>/dev/null &&
2958                         error "$ST: root unlink permission is granted"
2959         echo "$ST: root unlink permission is denied - ok"
2960
2961         touch $DIR/tdir-rootdir/tfile-2 1>/dev/null 2>/dev/null &&
2962                 error "$ST: root create permission is granted"
2963         echo "$ST: root create permission is denied - ok"
2964
2965         # LU-1778
2966         # check root_squash is enforced independently
2967         # of client cache content
2968         #
2969         # access file by USER1, keep access open
2970         # root should be denied access to user file
2971
2972         runas -u $ID1 tail -f $DIR/$tfile-user1file 1>/dev/null 2>&1 &
2973         pid=$!
2974         sleep 1
2975
2976         ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tfile-user1file)
2977         dd if=$DIR/$tfile-user1file 1>/dev/null 2>&1 &&
2978             { kill $pid; error "$ST: root read permission is granted"; }
2979         echo "$ST: root read permission is denied - ok"
2980
2981         echo "777" |
2982         dd conv=notrunc of=$DIR/$tfile-user1file 1>/dev/null 2>&1 &&
2983             { kill $pid; error "$ST: root write permission is granted"; }
2984         echo "$ST: root write permission is denied - ok"
2985
2986         kill $pid
2987         wait $pid
2988
2989         #
2990         # check nosquash_nids:
2991         #   put client's NID into nosquash_nids list,
2992         #   root should be able to access root file after that
2993         #
2994         local NIDLIST=$($LCTL list_nids all | tr '\n' ' ')
2995         NIDLIST="2@gni $NIDLIST 192.168.0.[2,10]@tcp"
2996         NIDLIST=$(echo $NIDLIST | tr -s ' ' ' ')
2997         set_conf_param_and_check mds                                    \
2998                 "$LCTL get_param -n mdt.$FSNAME-MDT0000.nosquash_nids"  \
2999                 "$FSNAME-MDTall.mdt.nosquash_nids"                      \
3000                 "$NIDLIST"
3001         wait_update $HOSTNAME                                           \
3002                 "$LCTL get_param -n llite.${FSNAME}*.nosquash_nids"     \
3003                 "$NIDLIST" ||
3004                 error "check llite nosquash_nids failed!"
3005
3006         ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tfile-rootfile)
3007         dd if=$DIR/$tfile-rootfile 1>/dev/null 2>/dev/null ||
3008                 error "$ST: root read permission is denied"
3009         echo "$ST: root read permission is granted - ok"
3010
3011         echo "666" |
3012         dd conv=notrunc of=$DIR/$tfile-rootfile 1>/dev/null 2>/dev/null ||
3013                 error "$ST: root write permission is denied"
3014         echo "$ST: root write permission is granted - ok"
3015
3016         ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tdir-rootdir)
3017         rm $DIR/$tdir-rootdir/tfile-1 ||
3018                 error "$ST: root unlink permission is denied"
3019         echo "$ST: root unlink permission is granted - ok"
3020         touch $DIR/$tdir-rootdir/tfile-2 ||
3021                 error "$ST: root create permission is denied"
3022         echo "$ST: root create permission is granted - ok"
3023         cleanup || error "cleanup failed with $?"
3024 }
3025 run_test 43a "check root_squash and nosquash_nids"
3026
3027 test_43b() { # LU-5690
3028         [[ $(lustre_version_code mgs) -ge $(version_code 2.7.62) ]] ||
3029                 { skip "Need MGS version 2.7.62+"; return; }
3030
3031         if [[ -z "$fs2mds_DEV" ]]; then
3032                 is_blkdev $SINGLEMDS $(mdsdevname ${SINGLEMDS//mds/}) &&
3033                 skip_env "mixed loopback and real device not working" && return
3034         fi
3035
3036         local fs2mdsdev=$(mdsdevname 1_2)
3037         local fs2mdsvdev=$(mdsvdevname 1_2)
3038
3039         # temporarily use fs2mds as fs2mgs
3040         local fs2mgs=fs2mds
3041         local fs2mgsdev=$fs2mdsdev
3042         local fs2mgsvdev=$fs2mdsvdev
3043
3044         local fsname=test1234
3045
3046         load_module llite/lustre
3047         local client_ip=$(host_nids_address $HOSTNAME $NETTYPE)
3048         local host=${client_ip//*./}
3049         local net=${client_ip/%$host/}
3050         local nosquash_nids=$(h2$NETTYPE $net[$host,$host,$host])
3051
3052         add $fs2mgs $(mkfs_opts mgs $fs2mgsdev) --fsname=$fsname \
3053                 --param mdt.root_squash=$RUNAS_ID:$RUNAS_ID \
3054                 --param mdt.nosquash_nids=$nosquash_nids \
3055                 --reformat $fs2mgsdev $fs2mgsvdev || error "add fs2mgs failed"
3056         start $fs2mgs $fs2mgsdev $MGS_MOUNT_OPTS  || error "start fs2mgs failed"
3057         stop $fs2mgs -f || error "stop fs2mgs failed"
3058 }
3059 run_test 43b "parse nosquash_nids with commas in expr_list"
3060
3061 umount_client $MOUNT
3062 cleanup_nocli
3063
3064 test_44() { # 16317
3065         setup
3066         check_mount || error "check_mount"
3067         UUID=$($LCTL get_param llite.${FSNAME}*.uuid | cut -d= -f2)
3068         STATS_FOUND=no
3069         UUIDS=$(do_facet $SINGLEMDS "$LCTL get_param mdt.${FSNAME}*.exports.*.uuid")
3070         for VAL in $UUIDS; do
3071                 NID=$(echo $VAL | cut -d= -f1)
3072                 CLUUID=$(echo $VAL | cut -d= -f2)
3073                 [ "$UUID" = "$CLUUID" ] && STATS_FOUND=yes && break
3074         done
3075         [ "$STATS_FOUND" = "no" ] && error "stats not found for client"
3076         cleanup || error "cleanup failed with $?"
3077 }
3078 run_test 44 "mounted client proc entry exists"
3079
3080 test_45() { #17310
3081         setup
3082         check_mount || error "check_mount"
3083         stop_mds || error "Unable to stop MDS"
3084         df -h $MOUNT &
3085         log "sleep 60 sec"
3086         sleep 60
3087         #define OBD_FAIL_PTLRPC_LONG_UNLINK   0x50f
3088         do_facet client "$LCTL set_param fail_loc=0x50f"
3089         log "sleep 10 sec"
3090         sleep 10
3091         manual_umount_client --force || error "manual_umount_client failed"
3092         do_facet client "$LCTL set_param fail_loc=0x0"
3093         start_mds || error "unable to start MDS"
3094         mount_client $MOUNT || error "mount_client $MOUNT failed"
3095         cleanup || error "cleanup failed with $?"
3096 }
3097 run_test 45 "long unlink handling in ptlrpcd"
3098
3099 cleanup_46a() {
3100         trap 0
3101         local rc=0
3102         local count=$1
3103
3104         umount_client $MOUNT2 || rc=$?
3105         umount_client $MOUNT || rc=$?
3106         while [ $count -gt 0 ]; do
3107                 stop ost${count} -f || rc=$?
3108                 let count=count-1
3109         done
3110         stop_mds || rc=$?
3111         cleanup_nocli || rc=$?
3112         #writeconf to remove all ost2 traces for subsequent tests
3113         writeconf_or_reformat
3114         return $rc
3115 }
3116
3117 test_46a() {
3118         echo "Testing with $OSTCOUNT OSTs"
3119         reformat_and_config
3120         start_mds || error "unable to start MDS"
3121         #first client should see only one ost
3122         start_ost || error "Unable to start OST1"
3123         wait_osc_import_state mds ost FULL
3124         #start_client
3125         mount_client $MOUNT || error "mount_client $MOUNT failed"
3126         trap "cleanup_46a $OSTCOUNT" EXIT ERR
3127
3128         local i
3129         for (( i=2; i<=$OSTCOUNT; i++ )); do
3130                 start ost$i $(ostdevname $i) $OST_MOUNT_OPTS ||
3131                         error "start_ost$i $(ostdevname $i) failed"
3132         done
3133
3134         # wait until osts in sync
3135         for (( i=2; i<=$OSTCOUNT; i++ )); do
3136             wait_osc_import_state mds ost$i FULL
3137             wait_osc_import_state client ost$i FULL
3138         done
3139
3140         #second client see all ost's
3141
3142         mount_client $MOUNT2 || error "mount_client failed"
3143         $SETSTRIPE -c -1 $MOUNT2 || error "$SETSTRIPE -c -1 $MOUNT2 failed"
3144         $GETSTRIPE $MOUNT2 || error "$GETSTRIPE $MOUNT2 failed"
3145
3146         echo "ok" > $MOUNT2/widestripe
3147         $GETSTRIPE $MOUNT2/widestripe ||
3148                 error "$GETSTRIPE $MOUNT2/widestripe failed"
3149         # fill acl buffer for avoid expand lsm to them
3150         awk -F : '{if (FNR < 25) { print "u:"$1":rwx" }}' /etc/passwd |
3151                 while read acl; do
3152             setfacl -m $acl $MOUNT2/widestripe
3153         done
3154
3155         # will be deadlock
3156         stat $MOUNT/widestripe || error "stat $MOUNT/widestripe failed"
3157
3158         cleanup_46a $OSTCOUNT || error "cleanup_46a failed"
3159 }
3160 run_test 46a "handle ost additional - wide striped file"
3161
3162 test_47() { #17674
3163         reformat
3164         setup_noconfig
3165         check_mount || error "check_mount failed"
3166         $LCTL set_param ldlm.namespaces.$FSNAME-*-*-*.lru_size=100
3167
3168         local lru_size=[]
3169         local count=0
3170         for ns in $($LCTL get_param ldlm.namespaces.$FSNAME-*-*-*.lru_size); do
3171             if echo $ns | grep "MDT[[:digit:]]*"; then
3172                 continue
3173             fi
3174             lrs=$(echo $ns | sed 's/.*lru_size=//')
3175             lru_size[count]=$lrs
3176             let count=count+1
3177         done
3178
3179         facet_failover ost1
3180         facet_failover $SINGLEMDS
3181         client_up || error "client_up failed"
3182
3183         count=0
3184         for ns in $($LCTL get_param ldlm.namespaces.$FSNAME-*-*-*.lru_size); do
3185             if echo $ns | grep "MDT[[:digit:]]*"; then
3186                 continue
3187             fi
3188             lrs=$(echo $ns | sed 's/.*lru_size=//')
3189             if ! test "$lrs" -eq "${lru_size[count]}"; then
3190                 n=$(echo $ns | sed -e 's/ldlm.namespaces.//' -e 's/.lru_size=.*//')
3191                 error "$n has lost lru_size: $lrs vs. ${lru_size[count]}"
3192             fi
3193             let count=count+1
3194         done
3195
3196         cleanup || error "cleanup failed with $?"
3197 }
3198 run_test 47 "server restart does not make client loss lru_resize settings"
3199
3200 cleanup_48() {
3201         trap 0
3202
3203         # reformat after this test is needed - if the test fails,
3204         # we will have unkillable file at FS
3205         reformat_and_config
3206 }
3207
3208 test_48() { # bug 17636
3209         reformat
3210         setup_noconfig
3211         check_mount || error "check_mount failed"
3212
3213         $SETSTRIPE -c -1 $MOUNT || error "$SETSTRIPE -c -1 $MOUNT failed"
3214         $GETSTRIPE $MOUNT || error "$GETSTRIPE $MOUNT failed"
3215
3216         echo "ok" > $MOUNT/widestripe
3217         $GETSTRIPE $MOUNT/widestripe ||
3218                 error "$GETSTRIPE $MOUNT/widestripe failed"
3219
3220         trap cleanup_48 EXIT ERR
3221
3222         # fill acl buffer for avoid expand lsm to them
3223         getent passwd | awk -F : '{ print "u:"$1":rwx" }' |  while read acl; do
3224             setfacl -m $acl $MOUNT/widestripe
3225         done
3226
3227         stat $MOUNT/widestripe || error "stat $MOUNT/widestripe failed"
3228
3229         cleanup_48
3230 }
3231 run_test 48 "too many acls on file"
3232
3233 # check PARAM_SYS_LDLM_TIMEOUT option of MKFS.LUSTRE
3234 test_49a() { # bug 17710
3235         local timeout_orig=$TIMEOUT
3236         local ldlm_timeout_orig=$LDLM_TIMEOUT
3237         local LOCAL_TIMEOUT=20
3238
3239         LDLM_TIMEOUT=$LOCAL_TIMEOUT
3240         TIMEOUT=$LOCAL_TIMEOUT
3241
3242         reformat
3243         setup_noconfig
3244         check_mount || error "client mount failed"
3245
3246         echo "check ldlm_timout..."
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 / 3)) ]; then
3256                 error "LDLM_TIMEOUT($LDLM_MDS) is not $((LOCAL_TIMEOUT / 3))"
3257         fi
3258
3259         umount_client $MOUNT || error "umount_client $MOUNT failed"
3260         stop_ost || error "problem stopping OSS"
3261         stop_mds || error "problem stopping MDS"
3262
3263         LDLM_TIMEOUT=$ldlm_timeout_orig
3264         TIMEOUT=$timeout_orig
3265 }
3266 run_test 49a "check PARAM_SYS_LDLM_TIMEOUT option of mkfs.lustre"
3267
3268 test_49b() { # bug 17710
3269         local timeout_orig=$TIMEOUT
3270         local ldlm_timeout_orig=$LDLM_TIMEOUT
3271         local LOCAL_TIMEOUT=20
3272
3273         LDLM_TIMEOUT=$((LOCAL_TIMEOUT - 1))
3274         TIMEOUT=$LOCAL_TIMEOUT
3275
3276         reformat
3277         setup_noconfig
3278         check_mount || error "client mount failed"
3279
3280         local LDLM_MDS="$(do_facet $SINGLEMDS $LCTL get_param -n ldlm_timeout)"
3281         local LDLM_OST1="$(do_facet ost1 $LCTL get_param -n ldlm_timeout)"
3282         local LDLM_CLIENT="$(do_facet client $LCTL get_param -n ldlm_timeout)"
3283
3284         if [ $LDLM_MDS -ne $LDLM_OST1 -o $LDLM_MDS -ne $LDLM_CLIENT ]; then
3285                 error "Different LDLM_TIMEOUT:$LDLM_MDS $LDLM_OST1 $LDLM_CLIENT"
3286         fi
3287
3288         if [ $LDLM_MDS -ne $((LOCAL_TIMEOUT - 1)) ]; then
3289                 error "LDLM_TIMEOUT($LDLM_MDS) is not $((LOCAL_TIMEOUT - 1))"
3290         fi
3291
3292         cleanup || error "cleanup failed"
3293
3294         LDLM_TIMEOUT=$ldlm_timeout_orig
3295         TIMEOUT=$timeout_orig
3296 }
3297 run_test 49b "check PARAM_SYS_LDLM_TIMEOUT option of mkfs.lustre"
3298
3299 lazystatfs() {
3300         # Test both statfs and lfs df and fail if either one fails
3301         multiop_bg_pause $1 f_
3302         RC1=$?
3303         PID=$!
3304         killall -USR1 multiop
3305         [ $RC1 -ne 0 ] && log "lazystatfs multiop failed"
3306         wait $PID || { RC1=$?; log "multiop return error "; }
3307
3308         $LFS df &
3309         PID=$!
3310         sleep 5
3311         kill -s 0 $PID
3312         RC2=$?
3313         if [ $RC2 -eq 0 ]; then
3314             kill -s 9 $PID
3315             log "lazystatfs df failed"
3316         fi
3317
3318         RC=0
3319         [[ $RC1 -ne 0 || $RC2 -eq 0 ]] && RC=1
3320         return $RC
3321 }
3322
3323 test_50a() {
3324         setup
3325         $LCTL set_param llite.$FSNAME-*.lazystatfs=1
3326         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
3327
3328         lazystatfs $MOUNT || error "lazystatfs failed but no down servers"
3329
3330         cleanup || error "cleanup failed with rc $?"
3331 }
3332 run_test 50a "lazystatfs all servers available"
3333
3334 test_50b() {
3335         setup
3336         $LCTL set_param llite.$FSNAME-*.lazystatfs=1
3337         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
3338
3339         # Wait for client to detect down OST
3340         stop_ost || error "Unable to stop OST1"
3341         wait_osc_import_state mds ost DISCONN
3342
3343         lazystatfs $MOUNT || error "lazystatfs should not return EIO"
3344
3345         umount_client $MOUNT || error "Unable to unmount client"
3346         stop_mds || error "Unable to stop MDS"
3347 }
3348 run_test 50b "lazystatfs all servers down"
3349
3350 test_50c() {
3351         start_mds || error "Unable to start MDS"
3352         start_ost || error "Unable to start OST1"
3353         start_ost2 || error "Unable to start OST2"
3354         mount_client $MOUNT || error "Unable to mount client"
3355         $LCTL set_param llite.$FSNAME-*.lazystatfs=1
3356         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
3357
3358         # Wait for client to detect down OST
3359         stop_ost || error "Unable to stop OST1"
3360         wait_osc_import_state mds ost DISCONN
3361         lazystatfs $MOUNT || error "lazystatfs failed with one down server"
3362
3363         umount_client $MOUNT || error "Unable to unmount client"
3364         stop_ost2 || error "Unable to stop OST2"
3365         stop_mds || error "Unable to stop MDS"
3366         #writeconf to remove all ost2 traces for subsequent tests
3367         writeconf_or_reformat
3368 }
3369 run_test 50c "lazystatfs one server down"
3370
3371 test_50d() {
3372         start_mds || error "Unable to start MDS"
3373         start_ost || error "Unable to start OST1"
3374         start_ost2 || error "Unable to start OST2"
3375         mount_client $MOUNT || error "Unable to mount client"
3376         $LCTL set_param llite.$FSNAME-*.lazystatfs=1
3377         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
3378
3379         # Issue the statfs during the window where the client still
3380         # belives the OST to be available but it is in fact down.
3381         # No failure just a statfs which hangs for a timeout interval.
3382         stop_ost || error "Unable to stop OST1"
3383         lazystatfs $MOUNT || error "lazystatfs failed with one down server"
3384
3385         umount_client $MOUNT || error "Unable to unmount client"
3386         stop_ost2 || error "Unable to stop OST2"
3387         stop_mds || error "Unable to stop MDS"
3388         #writeconf to remove all ost2 traces for subsequent tests
3389         writeconf_or_reformat
3390 }
3391 run_test 50d "lazystatfs client/server conn race"
3392
3393 test_50e() {
3394         local RC1
3395         local pid
3396
3397         reformat_and_config
3398         start_mds || error "Unable to start MDS"
3399         #first client should see only one ost
3400         start_ost || error "Unable to start OST1"
3401         wait_osc_import_state mds ost FULL
3402
3403         # Wait for client to detect down OST
3404         stop_ost || error "Unable to stop OST1"
3405         wait_osc_import_state mds ost DISCONN
3406
3407         mount_client $MOUNT || error "Unable to mount client"
3408         $LCTL set_param llite.$FSNAME-*.lazystatfs=0
3409
3410         multiop_bg_pause $MOUNT _f
3411         RC1=$?
3412         pid=$!
3413
3414         if [ $RC1 -ne 0 ]; then
3415                 log "multiop failed $RC1"
3416         else
3417             kill -USR1 $pid
3418             sleep $(( $TIMEOUT+1 ))
3419             kill -0 $pid
3420             [ $? -ne 0 ] && error "process isn't sleep"
3421             start_ost || error "Unable to start OST1"
3422             wait $pid || error "statfs failed"
3423         fi
3424
3425         umount_client $MOUNT || error "Unable to unmount client"
3426         stop_ost || error "Unable to stop OST1"
3427         stop_mds || error "Unable to stop MDS"
3428 }
3429 run_test 50e "normal statfs all servers down"
3430
3431 test_50f() {
3432         local RC1
3433         local pid
3434         CONN_PROC="osc.$FSNAME-OST0001-osc-[M]*.ost_server_uuid"
3435
3436         start_mds || error "Unable to start mds"
3437         #first client should see only one ost
3438         start_ost || error "Unable to start OST1"
3439         wait_osc_import_state mds ost FULL
3440
3441         start_ost2 || error "Unable to start OST2"
3442         wait_osc_import_state mds ost2 FULL
3443
3444         # Wait for client to detect down OST
3445         stop_ost2 || error "Unable to stop OST2"
3446
3447         wait_osc_import_state mds ost2 DISCONN
3448         mount_client $MOUNT || error "Unable to mount client"
3449         $LCTL set_param llite.$FSNAME-*.lazystatfs=0
3450
3451         multiop_bg_pause $MOUNT _f
3452         RC1=$?
3453         pid=$!
3454
3455         if [ $RC1 -ne 0 ]; then
3456                 log "lazystatfs multiop failed $RC1"
3457         else
3458             kill -USR1 $pid
3459             sleep $(( $TIMEOUT+1 ))
3460             kill -0 $pid
3461             [ $? -ne 0 ] && error "process isn't sleep"
3462             start_ost2 || error "Unable to start OST2"
3463             wait $pid || error "statfs failed"
3464             stop_ost2 || error "Unable to stop OST2"
3465         fi
3466
3467         umount_client $MOUNT -f || error "Unable to unmount client"
3468         stop_ost || error "Unable to stop OST1"
3469         stop_mds || error "Unable to stop MDS"
3470         #writeconf to remove all ost2 traces for subsequent tests
3471         writeconf_or_reformat
3472 }
3473 run_test 50f "normal statfs one server in down"
3474
3475 test_50g() {
3476         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2, skipping" && return
3477         setup
3478         start_ost2 || error "Unable to start OST2"
3479         wait_osc_import_state mds ost2 FULL
3480         wait_osc_import_state client ost2 FULL
3481
3482         local PARAM="${FSNAME}-OST0001.osc.active"
3483
3484         $SETSTRIPE -c -1 $DIR/$tfile || error "$SETSTRIPE failed"
3485         do_facet mgs $LCTL conf_param $PARAM=0 ||
3486                 error "Unable to deactivate OST"
3487
3488         umount_client $MOUNT || error "Unable to unmount client"
3489         mount_client $MOUNT || error "Unable to mount client"
3490         # This df should not cause a panic
3491         df -k $MOUNT
3492
3493         do_facet mgs $LCTL conf_param $PARAM=1 || error "Unable to activate OST"
3494         rm -f $DIR/$tfile || error "unable to remove file $DIR/$tfile"
3495         umount_client $MOUNT || error "Unable to unmount client"
3496         stop_ost2 || error "Unable to stop OST2"
3497         stop_ost || error "Unable to stop OST1"
3498         stop_mds || error "Unable to stop MDS"
3499         #writeconf to remove all ost2 traces for subsequent tests
3500         writeconf_or_reformat
3501 }
3502 run_test 50g "deactivated OST should not cause panic"
3503
3504 # LU-642
3505 test_50h() {
3506         # prepare MDT/OST, make OSC inactive for OST1
3507         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2, skipping" && return
3508
3509         [ $(facet_fstype ost1) == zfs ] && import_zpool ost1
3510         do_facet ost1 "$TUNEFS --param osc.active=0 `ostdevname 1`" ||
3511                 error "tunefs OST1 failed"
3512         start_mds  || error "Unable to start MDT"
3513         start_ost  || error "Unable to start OST1"
3514         start_ost2 || error "Unable to start OST2"
3515         mount_client $MOUNT || error "client start failed"
3516
3517         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
3518
3519         # activatate OSC for OST1
3520         local TEST="$LCTL get_param -n osc.${FSNAME}-OST0000-osc-[!M]*.active"
3521         set_conf_param_and_check client                                 \
3522                 "$TEST" "${FSNAME}-OST0000.osc.active" 1 ||
3523                 error "Unable to activate OST1"
3524
3525         mkdir $DIR/$tdir/2 || error "mkdir $DIR/$tdir/2 failed"
3526         $SETSTRIPE -c -1 -i 0 $DIR/$tdir/2 ||
3527                 error "$SETSTRIPE $DIR/$tdir/2 failed"
3528         sleep 1 && echo "create a file after OST1 is activated"
3529         # create some file
3530         createmany -o $DIR/$tdir/2/$tfile-%d 1
3531
3532         # check OSC import is working
3533         stat $DIR/$tdir/2/* >/dev/null 2>&1 ||
3534                 error "some OSC imports are still not connected"
3535
3536         # cleanup
3537         umount_client $MOUNT || error "Unable to umount client"
3538         stop_ost2 || error "Unable to stop OST2"
3539         cleanup_nocli || error "cleanup_nocli failed with $?"
3540 }
3541 run_test 50h "LU-642: activate deactivated OST"
3542
3543 test_50i() {
3544         # prepare MDT/OST, make OSC inactive for OST1
3545         [ "$MDSCOUNT" -lt "2" ] && skip_env "$MDSCOUNT < 2, skipping" && return
3546
3547         [ $(facet_fstype ost1) == zfs ] && import_zpool ost1
3548         load_modules
3549         do_facet mds2 "$TUNEFS --param mdc.active=0 $(mdsdevname 2)" ||
3550                 error "tunefs MDT2 failed"
3551         start_mds  || error "Unable to start MDT"
3552         start_ost  || error "Unable to start OST1"
3553         start_ost2 || error "Unable to start OST2"
3554         mount_client $MOUNT || error "client start failed"
3555
3556         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
3557
3558         $LCTL conf_param ${FSNAME}-MDT0000.mdc.active=0 &&
3559                 error "deactive MDC0 succeeds"
3560         # activate MDC for MDT2
3561         local TEST="$LCTL get_param -n mdc.${FSNAME}-MDT0001-mdc-[!M]*.active"
3562         set_conf_param_and_check client                                 \
3563                 "$TEST" "${FSNAME}-MDT0001.mdc.active" 1 ||
3564                 error "Unable to activate MDT2"
3565
3566         wait_clients_import_state ${CLIENTS:-$HOSTNAME} mds2 FULL
3567         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.7.60) ]
3568         then
3569                 wait_dne_interconnect
3570         fi
3571         $LFS mkdir -i1 $DIR/$tdir/2 || error "mkdir $DIR/$tdir/2 failed"
3572         # create some file
3573         createmany -o $DIR/$tdir/2/$tfile-%d 1 || error "create files failed"
3574
3575         rm -rf $DIR/$tdir/2 || error "unlink dir failed"
3576
3577         # deactivate MDC for MDT2
3578         local TEST="$LCTL get_param -n mdc.${FSNAME}-MDT0001-mdc-[!M]*.active"
3579         set_conf_param_and_check client                                 \
3580                 "$TEST" "${FSNAME}-MDT0001.mdc.active" 0 ||
3581                 error "Unable to deactivate MDT2"
3582
3583         $LFS mkdir -i1 $DIR/$tdir/2 &&
3584                 error "mkdir $DIR/$tdir/2 succeeds after deactive MDT"
3585
3586         # cleanup
3587         umount_client $MOUNT || error "Unable to umount client"
3588         stop_mds
3589         stop_ost
3590         stop_ost 2
3591 }
3592 run_test 50i "activate deactivated MDT"
3593
3594 test_51() {
3595         local LOCAL_TIMEOUT=20
3596
3597         reformat
3598         setup_noconfig
3599         check_mount || error "check_mount failed"
3600
3601         mkdir $MOUNT/$tdir || error "mkdir $MOUNT/$tdir failed"
3602         $SETSTRIPE -c -1 $MOUNT/$tdir ||
3603                 error "$SETSTRIPE -c -1 $MOUNT/$tdir failed"
3604         #define OBD_FAIL_MDS_REINT_DELAY         0x142
3605         do_facet $SINGLEMDS "$LCTL set_param fail_loc=0x142"
3606         touch $MOUNT/$tdir/$tfile &
3607         local pid=$!
3608         sleep 2
3609         start_ost2 || error "Unable to start OST1"
3610         wait $pid
3611         stop_ost2 || error "Unable to stop OST1"
3612         umount_client $MOUNT -f || error “unmount $MOUNT failed”
3613         cleanup_nocli || error “stop server failed”
3614         #writeconf to remove all ost2 traces for subsequent tests
3615         writeconf_or_reformat
3616 }
3617 run_test 51 "Verify that mdt_reint handles RMF_MDT_MD correctly when an OST is added"
3618
3619 copy_files_xattrs()
3620 {
3621         local node=$1
3622         local dest=$2
3623         local xattrs=$3
3624         shift 3
3625
3626         do_node $node mkdir -p $dest
3627         [ $? -eq 0 ] || { error "Unable to create directory"; return 1; }
3628
3629         do_node $node  'tar cf - '$@' | tar xf - -C '$dest';
3630                         [ \"\${PIPESTATUS[*]}\" = \"0 0\" ] || exit 1'
3631         [ $? -eq 0 ] || { error "Unable to tar files"; return 2; }
3632
3633         do_node $node 'getfattr -d -m "[a-z]*\\." '$@' > '$xattrs
3634         [ $? -eq 0 ] || { error "Unable to read xattrs"; return 3; }
3635 }
3636
3637 diff_files_xattrs()
3638 {
3639         local node=$1
3640         local backup=$2
3641         local xattrs=$3
3642         shift 3
3643
3644         local backup2=${TMP}/backup2
3645
3646         do_node $node mkdir -p $backup2
3647         [ $? -eq 0 ] || { error "Unable to create directory"; return 1; }
3648
3649         do_node $node  'tar cf - '$@' | tar xf - -C '$backup2';
3650                         [ \"\${PIPESTATUS[*]}\" = \"0 0\" ] || exit 1'
3651         [ $? -eq 0 ] || { error "Unable to tar files to diff"; return 2; }
3652
3653         do_node $node "diff -rq $backup $backup2"
3654         [ $? -eq 0 ] || { error "contents differ"; return 3; }
3655
3656         local xattrs2=${TMP}/xattrs2
3657         do_node $node 'getfattr -d -m "[a-z]*\\." '$@' > '$xattrs2
3658         [ $? -eq 0 ] || { error "Unable to read xattrs to diff"; return 4; }
3659
3660         do_node $node "diff $xattrs $xattrs2"
3661         [ $? -eq 0 ] || { error "xattrs differ"; return 5; }
3662
3663         do_node $node "rm -rf $backup2 $xattrs2"
3664         [ $? -eq 0 ] || { error "Unable to delete temporary files"; return 6; }
3665 }
3666
3667 test_52() {
3668         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
3669                 skip "Only applicable to ldiskfs-based MDTs"
3670                 return
3671         fi
3672
3673         start_mds || error "Unable to start MDS"
3674         start_ost || error "Unable to start OST1"
3675         mount_client $MOUNT || error "Unable to mount client"
3676
3677         local nrfiles=8
3678         local ost1mnt=$(facet_mntpt ost1)
3679         local ost1node=$(facet_active_host ost1)
3680         local ost1tmp=$TMP/conf52
3681         local loop
3682
3683         mkdir $DIR/$tdir || error "Unable to create $DIR/$tdir"
3684         touch $TMP/modified_first || error "Unable to create temporary file"
3685         local mtime=$(stat -c %Y $TMP/modified_first)
3686         do_node $ost1node "mkdir -p $ost1tmp &&
3687                            touch -m -d @$mtime $ost1tmp/modified_first" ||
3688                 error "Unable to create temporary file"
3689         sleep 1
3690
3691         $SETSTRIPE -c -1 -S 1M $DIR/$tdir || error "$SETSTRIPE failed"
3692
3693         for (( i=0; i < nrfiles; i++ )); do
3694                 multiop $DIR/$tdir/$tfile-$i Ow1048576w1048576w524288c ||
3695                         error "multiop failed"
3696                 echo -n .
3697         done
3698         echo
3699
3700         # backup files
3701         echo backup files to $TMP/files
3702         local files=$(find $DIR/$tdir -type f -newer $TMP/modified_first)
3703         copy_files_xattrs $(hostname) $TMP/files $TMP/file_xattrs $files ||
3704                 error "Unable to copy files"
3705
3706         umount_client $MOUNT || error "Unable to umount client"
3707         stop_ost || error "Unable to stop ost1"
3708
3709         echo mount ost1 as ldiskfs
3710         do_node $ost1node mkdir -p $ost1mnt || error "Unable to create $ost1mnt"
3711         if ! do_node $ost1node test -b $ost1_dev; then
3712                 loop="-o loop"
3713         fi
3714         do_node $ost1node mount -t $(facet_fstype ost1) $loop $ost1_dev \
3715                 $ost1mnt ||
3716                 error "Unable to mount ost1 as ldiskfs"
3717
3718         # backup objects
3719         echo backup objects to $ost1tmp/objects
3720         local objects=$(do_node $ost1node 'find '$ost1mnt'/O/[0-9]* -type f'\
3721                 '-size +0 -newer '$ost1tmp'/modified_first -regex ".*\/[0-9]+"')
3722         copy_files_xattrs $ost1node $ost1tmp/objects $ost1tmp/object_xattrs \
3723                         $objects ||
3724                 error "Unable to copy objects"
3725
3726         # move objects to lost+found
3727         do_node $ost1node 'mv '$objects' '${ost1mnt}'/lost+found'
3728         [ $? -eq 0 ] || { error "Unable to move objects"; return 14; }
3729
3730         do_node $ost1node "umount $ost1mnt" ||
3731                 error "Unable to umount ost1 as ldiskfs"
3732
3733         start_ost || error "Unable to start OST1"
3734         mount_client $MOUNT || error "Unable to mount client"
3735
3736         local REPAIRED=$(do_node $ost1node "$LCTL get_param \
3737                          -n osd-ldiskfs.$FSNAME-OST0000.oi_scrub" |
3738                          awk '/^lf_repa[ri]*ed/ { print $2 }')
3739         [ $REPAIRED -gt 0 ] ||
3740                 error "Some entry under /lost+found should be repaired"
3741
3742         # compare files
3743         diff_files_xattrs $(hostname) $TMP/files $TMP/file_xattrs $files ||
3744                 error "Unable to diff files"
3745
3746         rm -rf $TMP/files $TMP/file_xattrs ||
3747                 error "Unable to delete temporary files"
3748         do_node $ost1node "rm -rf $ost1tmp" ||
3749                 error "Unable to delete temporary files"
3750         cleanup || error "cleanup failed with $?"
3751 }
3752 run_test 52 "check recovering objects from lost+found"
3753
3754 # Checks threads_min/max/started for some service
3755 #
3756 # Arguments: service name (OST or MDT), facet (e.g., ost1, $SINGLEMDS), and a
3757 # parameter pattern prefix like 'ost.*.ost'.
3758 thread_sanity() {
3759         local modname=$1
3760         local facet=$2
3761         local parampat=$3
3762         local opts=$4
3763         local basethr=$5
3764         local tmin
3765         local tmin2
3766         local tmax
3767         local tmax2
3768         local tstarted
3769         local paramp
3770         local msg="Insane $modname thread counts"
3771         local ncpts=$(check_cpt_number $facet)
3772         local nthrs
3773         shift 4
3774
3775         check_mount || return 41
3776
3777         # We need to expand $parampat, but it may match multiple parameters, so
3778         # we'll pick the first one
3779         if ! paramp=$(do_facet $facet "lctl get_param -N ${parampat}.threads_min"|head -1); then
3780                 error "Couldn't expand ${parampat}.threads_min parameter name"
3781                 return 22
3782         fi
3783
3784         # Remove the .threads_min part
3785         paramp=${paramp%.threads_min}
3786
3787         # Check for sanity in defaults
3788         tmin=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_min" ||
3789                echo 0)
3790         tmax=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_max" ||
3791                echo 0)
3792         tstarted=$(do_facet $facet "$LCTL get_param \
3793                                     -n ${paramp}.threads_started" || echo 0)
3794         lassert 23 "$msg (PDSH problems?)" '(($tstarted && $tmin && $tmax))' ||
3795                 return $?
3796         lassert 24 "$msg" '(($tstarted >= $tmin && $tstarted <= $tmax ))' ||
3797                 return $?
3798         nthrs=$(expr $tmax - $tmin)
3799         if [ $nthrs -lt $ncpts ]; then
3800                 nthrs=0
3801         else
3802                 nthrs=$ncpts
3803         fi
3804
3805         [ $tmin -eq $tmax -a $tmin -eq $tstarted ] &&
3806                 skip_env "module parameter forced $facet thread count" &&
3807                 tmin=3 && tmax=$((3 * tmax))
3808
3809         # Check that we can change min/max
3810         do_facet $facet "$LCTL set_param \
3811                          ${paramp}.threads_min=$((tmin + nthrs))"
3812         do_facet $facet "$LCTL set_param \
3813                          ${paramp}.threads_max=$((tmax - nthrs))"
3814         tmin2=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_min" ||
3815                 echo 0)
3816         tmax2=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_max" ||
3817                 echo 0)
3818         lassert 25 "$msg" '(($tmin2 == ($tmin + $nthrs) &&
3819                             $tmax2 == ($tmax - $nthrs)))' || return $?
3820
3821         # Check that we can set min/max to the same value
3822         tmin=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_min" ||
3823                echo 0)
3824         do_facet $facet "$LCTL set_param ${paramp}.threads_max=$tmin"
3825         tmin2=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_min" ||
3826                 echo 0)
3827         tmax2=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_max" ||
3828                 echo 0)
3829         lassert 26 "$msg" '(($tmin2 == $tmin && $tmax2 == $tmin))' || return $?
3830
3831         # Check that we can't set max < min
3832         do_facet $facet "$LCTL set_param ${paramp}.threads_max=$((tmin - 1))"
3833         tmin2=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_min" ||
3834                 echo 0)
3835         tmax2=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_max" ||
3836                 echo 0)
3837         lassert 27 "$msg" '(($tmin2 <= $tmax2))' || return $?
3838
3839         # We need to ensure that we get the module options desired; to do this
3840         # we set LOAD_MODULES_REMOTE=true and we call setmodopts below.
3841         LOAD_MODULES_REMOTE=true
3842         cleanup
3843         local oldvalue
3844         local newvalue="${opts}=$(expr $basethr \* $ncpts)"
3845         setmodopts -a $modname "$newvalue" oldvalue
3846
3847         load_modules
3848         setup
3849         check_mount || return 41
3850
3851         # Restore previous setting of MODOPTS_*
3852         setmodopts $modname "$oldvalue"
3853
3854         # Check that $opts took
3855         tmin=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_min")
3856         tmax=$(do_facet $facet "$LCTL get_param -n ${paramp}.threads_max")
3857         tstarted=$(do_facet $facet \
3858                    "$LCTL get_param -n ${paramp}.threads_started")
3859         lassert 28 "$msg" '(($tstarted >= $tmin && $tstarted <= $tmax ))' ||
3860                 return $?
3861         cleanup
3862
3863         load_modules
3864         setup
3865 }
3866
3867 test_53a() {
3868         setup
3869         thread_sanity OST ost1 'ost.*.ost' 'oss_num_threads' '16'
3870         cleanup || error "cleanup failed with rc $?"
3871 }
3872 run_test 53a "check OSS thread count params"
3873
3874 test_53b() {
3875         setup
3876         local mds=$(do_facet $SINGLEMDS "$LCTL get_param \
3877                                          -N mds.*.*.threads_max 2>/dev/null")
3878         if [ -z "$mds" ]; then
3879                 #running this on an old MDT
3880                 thread_sanity MDT $SINGLEMDS 'mdt.*.*.' 'mdt_num_threads' 16
3881         else
3882                 thread_sanity MDT $SINGLEMDS 'mds.*.*.' 'mds_num_threads' 16
3883         fi
3884         cleanup || error "cleanup failed with $?"
3885 }
3886 run_test 53b "check MDS thread count params"
3887
3888 test_54a() {
3889         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
3890                 skip "Only applicable to ldiskfs-based MDTs"
3891                 return
3892         fi
3893
3894         do_rpc_nodes $(facet_host ost1) run_llverdev $(ostdevname 1) -p ||
3895                 error "llverdev failed with rc=$?"
3896         reformat_and_config
3897 }
3898 run_test 54a "test llverdev and partial verify of device"
3899
3900 test_54b() {
3901         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
3902                 skip "Only applicable to ldiskfs-based MDTs"
3903                 return
3904         fi
3905
3906         setup
3907         run_llverfs $MOUNT -p || error "llverfs failed with rc=$?"
3908         cleanup || error "cleanup failed with rc=$?"
3909 }
3910 run_test 54b "test llverfs and partial verify of filesystem"
3911
3912 lov_objid_size()
3913 {
3914         local max_ost_index=$1
3915         echo -n $(((max_ost_index + 1) * 8))
3916 }
3917
3918 test_55() {
3919         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
3920                 skip "Only applicable to ldiskfs-based MDTs"
3921                 return
3922         fi
3923
3924         local mdsdev=$(mdsdevname 1)
3925         local mdsvdev=$(mdsvdevname 1)
3926
3927         for i in 1023 2048
3928         do
3929                 add mds1 $(mkfs_opts mds1 ${mdsdev}) --reformat $mdsdev \
3930                         $mdsvdev || exit 10
3931                 add ost1 $(mkfs_opts ost1 $(ostdevname 1)) --index=$i \
3932                         --reformat $(ostdevname 1) $(ostvdevname 1)
3933                 setup_noconfig
3934                 stopall
3935                 setup_noconfig
3936                 sync
3937
3938                 echo checking size of lov_objid for ost index $i
3939                 LOV_OBJID_SIZE=$(do_facet mds1 "$DEBUGFS -R 'stat lov_objid' $mdsdev 2>/dev/null" | grep ^User | awk '{print $6}')
3940                 if [ "$LOV_OBJID_SIZE" != $(lov_objid_size $i) ]; then
3941                         error "lov_objid size has to be $(lov_objid_size $i), not $LOV_OBJID_SIZE"
3942                 else
3943                         echo ok, lov_objid size is correct: $LOV_OBJID_SIZE
3944                 fi
3945                 stopall
3946         done
3947
3948         reformat
3949 }
3950 run_test 55 "check lov_objid size"
3951
3952 test_56() {
3953         local server_version=$(lustre_version_code $SINGLEMDS)
3954         local mds_journal_size_orig=$MDSJOURNALSIZE
3955         local n
3956
3957         MDSJOURNALSIZE=16
3958
3959         for num in $(seq 1 $MDSCOUNT); do
3960                 reformat_mdt $num
3961         done
3962         add ost1 $(mkfs_opts ost1 $(ostdevname 1)) --index=10000 --reformat \
3963                 $(ostdevname 1) $(ostvdevname 1)
3964         add ost2 $(mkfs_opts ost2 $(ostdevname 2)) --index=1000 --reformat \
3965                 $(ostdevname 2) $(ostvdevname 2)
3966
3967         start_mgsmds
3968         start_ost || error "Unable to start first ost (idx 10000)"
3969         start_ost2 || error "Unable to start second ost (idx 1000)"
3970         mount_client $MOUNT || error "Unable to mount client"
3971         echo ok
3972         $LFS osts
3973
3974         if [[ $server_version -ge $(version_code 2.6.54) ]] ||
3975            [[ $server_version -ge $(version_code 2.5.4) &&
3976               $server_version -lt $(version_code 2.5.11) ]]; then
3977                 wait_osc_import_state mds ost1 FULL
3978                 wait_osc_import_state mds ost2 FULL
3979                 $SETSTRIPE --stripe-count=-1 $DIR/$tfile ||
3980                         error "Unable to setstripe $DIR/$tfile"
3981                 n=$($LFS getstripe --stripe-count $DIR/$tfile)
3982                 [ "$n" -eq 2 ] || error "Stripe count not two: $n"
3983                 rm $DIR/$tfile
3984         fi
3985
3986         stopall
3987         MDSJOURNALSIZE=$mds_journal_size_orig
3988         reformat
3989 }
3990 run_test 56 "check big OST indexes and out-of-index-order start"
3991
3992 test_57a() { # bug 22656
3993         do_rpc_nodes $(facet_active_host ost1) load_modules_local
3994         local NID=$(do_facet ost1 "$LCTL get_param nis" |
3995                     tail -1 | awk '{print $1}')
3996         writeconf_or_reformat
3997         [ $(facet_fstype ost1) == zfs ] && import_zpool ost1
3998         do_facet ost1 "$TUNEFS --failnode=$NID `ostdevname 1`" ||
3999                 error "tunefs failed"
4000         start_mgsmds
4001         start_ost && error "OST registration from failnode should fail"
4002         reformat
4003 }
4004 run_test 57a "initial registration from failnode should fail (should return errs)"
4005
4006 test_57b() {
4007         do_rpc_nodes $(facet_active_host ost1) load_modules_local
4008         local NID=$(do_facet ost1 "$LCTL get_param nis" |
4009                     tail -1 | awk '{print $1}')
4010         writeconf_or_reformat
4011         [ $(facet_fstype ost1) == zfs ] && import_zpool ost1
4012         do_facet ost1 "$TUNEFS --servicenode=$NID `ostdevname 1`" ||
4013                 error "tunefs failed"
4014         start_mgsmds
4015         start_ost || error "OST registration from servicenode should not fail"
4016         reformat
4017 }
4018 run_test 57b "initial registration from servicenode should not fail"
4019
4020 count_osts() {
4021         do_facet mgs $LCTL get_param mgs.MGS.live.$FSNAME | grep OST | wc -l
4022 }
4023
4024 test_58() { # bug 22658
4025         setup_noconfig
4026         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
4027         createmany -o $DIR/$tdir/$tfile-%d 100
4028         # make sure that OSTs do not cancel llog cookies before we unmount the MDS
4029 #define OBD_FAIL_OBD_LOG_CANCEL_NET      0x601
4030         do_facet $SINGLEMDS "$LCTL set_param fail_loc=0x601"
4031         unlinkmany $DIR/$tdir/$tfile-%d 100
4032         stop_mds || error "Unable to stop MDS"
4033
4034         local MNTDIR=$(facet_mntpt $SINGLEMDS)
4035         local devname=$(mdsdevname ${SINGLEMDS//mds/})
4036
4037         # remove all files from the OBJECTS dir
4038         mount_fstype $SINGLEMDS
4039
4040         do_facet $SINGLEMDS "find $MNTDIR/O/1/d* -type f -delete"
4041
4042         unmount_fstype $SINGLEMDS
4043         # restart MDS with missing llog files
4044         start_mds || error "unable to start MDS"
4045         do_facet mds "$LCTL set_param fail_loc=0"
4046         reformat
4047 }
4048 run_test 58 "missing llog files must not prevent MDT from mounting"
4049
4050 test_59() {
4051         start_mgsmds >> /dev/null
4052         local C1=$(count_osts)
4053         if [ $C1 -eq 0 ]; then
4054                 start_ost >> /dev/null
4055                 C1=$(count_osts)
4056         fi
4057         stopall
4058         echo "original ost count: $C1 (expect > 0)"
4059         [ $C1 -gt 0 ] || error "No OSTs in $FSNAME log"
4060         start_mgsmds -o writeconf >> /dev/null || error "MDT start failed"
4061         local C2=$(count_osts)
4062         echo "after mdt writeconf count: $C2 (expect 0)"
4063         [ $C2 -gt 0 ] && error "MDT writeconf should erase OST logs"
4064         echo "OST start without writeconf should fail:"
4065         start_ost >> /dev/null &&
4066                 error "OST start without writeconf didn't fail"
4067         echo "OST start with writeconf should succeed:"
4068         start_ost -o writeconf >> /dev/null || error "OST1 start failed"
4069         local C3=$(count_osts)
4070         echo "after ost writeconf count: $C3 (expect 1)"
4071         [ $C3 -eq 1 ] || error "new OST writeconf should add:"
4072         start_ost2 -o writeconf >> /dev/null || error "OST2 start failed"
4073         local C4=$(count_osts)
4074         echo "after ost2 writeconf count: $C4 (expect 2)"
4075         [ $C4 -eq 2 ] || error "OST2 writeconf should add log"
4076         stop_ost2 >> /dev/null
4077         cleanup_nocli >> /dev/null
4078         #writeconf to remove all ost2 traces for subsequent tests
4079         writeconf_or_reformat
4080 }
4081 run_test 59 "writeconf mount option"
4082
4083 test_60() { # LU-471
4084         local num
4085
4086         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
4087                 skip "Only applicable to ldiskfs-based MDTs"
4088                 return
4089         fi
4090
4091         for num in $(seq $MDSCOUNT); do
4092                 add mds${num} $(mkfs_opts mds${num} $(mdsdevname $num)) \
4093                         --mkfsoptions='\" -E stride=64 -O ^uninit_bg\"' \
4094                         --reformat $(mdsdevname $num) $(mdsvdevname $num) ||
4095                         exit 10
4096         done
4097
4098         dump=$(do_facet $SINGLEMDS dumpe2fs $(mdsdevname 1))
4099         [ ${PIPESTATUS[0]} -eq 0 ] || error "dumpe2fs $(mdsdevname 1) failed"
4100
4101         # MDT default has dirdata feature
4102         echo $dump | grep dirdata > /dev/null || error "dirdata is not set"
4103         # we disable uninit_bg feature
4104         echo $dump | grep uninit_bg > /dev/null && error "uninit_bg is set"
4105         # we set stride extended options
4106         echo $dump | grep stride > /dev/null || error "stride is not set"
4107         reformat
4108 }
4109 run_test 60 "check mkfs.lustre --mkfsoptions -E -O options setting"
4110
4111 test_61() { # LU-80
4112         local lxattr=false
4113
4114         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.1.53) ] ||
4115                 { skip "Need MDS version at least 2.1.53"; return 0; }
4116
4117         if [ $(facet_fstype $SINGLEMDS) == ldiskfs ] &&
4118              ! large_xattr_enabled; then
4119                 lxattr=true
4120
4121                 for num in $(seq $MDSCOUNT); do
4122                         do_facet mds${num} $TUNE2FS -O large_xattr \
4123                                 $(mdsdevname $num) ||
4124                                 error "tune2fs on mds $num failed"
4125                 done
4126         fi
4127
4128         setup_noconfig || error "setting up the filesystem failed"
4129         client_up || error "starting client failed"
4130
4131         local file=$DIR/$tfile
4132         touch $file || error "touch $file failed"
4133
4134         local large_value="$(generate_string $(max_xattr_size))"
4135         local small_value="bar"
4136
4137         local name="trusted.big"
4138         log "save large xattr $name on $file"
4139         setfattr -n $name -v $large_value $file ||
4140                 error "saving $name on $file failed"
4141
4142         local new_value=$(get_xattr_value $name $file)
4143         [[ "$new_value" != "$large_value" ]] &&
4144                 error "$name different after saving"
4145
4146         log "shrink value of $name on $file"
4147         setfattr -n $name -v $small_value $file ||
4148                 error "shrinking value of $name on $file failed"
4149
4150         new_value=$(get_xattr_value $name $file)
4151         [[ "$new_value" != "$small_value" ]] &&
4152                 error "$name different after shrinking"
4153
4154         log "grow value of $name on $file"
4155         setfattr -n $name -v $large_value $file ||
4156                 error "growing value of $name on $file failed"
4157
4158         new_value=$(get_xattr_value $name $file)
4159         [[ "$new_value" != "$large_value" ]] &&
4160                 error "$name different after growing"
4161
4162         log "check value of $name on $file after remounting MDS"
4163         fail $SINGLEMDS
4164         new_value=$(get_xattr_value $name $file)
4165         [[ "$new_value" != "$large_value" ]] &&
4166                 error "$name different after remounting MDS"
4167
4168         log "remove large xattr $name from $file"
4169         setfattr -x $name $file || error "removing $name from $file failed"
4170
4171         if $lxattr; then
4172                 stopall || error "stopping for e2fsck run"
4173                 for num in $(seq $MDSCOUNT); do
4174                         run_e2fsck $(facet_active_host mds$num) \
4175                                 $(mdsdevname $num) "-y" ||
4176                                 error "e2fsck MDT$num failed"
4177                 done
4178                 setup_noconfig || error "remounting the filesystem failed"
4179         fi
4180
4181         # need to delete this file to avoid problems in other tests
4182         rm -f $file
4183         stopall || error "stopping systems to turn off large_xattr"
4184         if $lxattr; then
4185                 for num in $(seq $MDSCOUNT); do
4186                         do_facet mds${num} $TUNE2FS -O ^large_xattr \
4187                                 $(mdsdevname $num) ||
4188                                 error "tune2fs on mds $num failed"
4189                 done
4190         fi
4191 }
4192 run_test 61 "large xattr"
4193
4194 test_62() {
4195         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
4196                 skip "Only applicable to ldiskfs-based MDTs"
4197                 return
4198         fi
4199
4200         # MRP-118
4201         local mdsdev=$(mdsdevname 1)
4202         local ostdev=$(ostdevname 1)
4203
4204         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
4205                 { skip "Need MDS version at least 2.2.51"; return 0; }
4206
4207         echo "disable journal for mds"
4208         do_facet mds $TUNE2FS -O ^has_journal $mdsdev || error "tune2fs failed"
4209         start_mds && error "MDT start should fail"
4210         echo "disable journal for ost"
4211         do_facet ost1 $TUNE2FS -O ^has_journal $ostdev || error "tune2fs failed"
4212         start_ost && error "OST start should fail"
4213         cleanup || error "cleanup failed with rc $?"
4214         reformat_and_config
4215 }
4216 run_test 62 "start with disabled journal"
4217
4218 test_63() {
4219         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
4220                 skip "Only applicable to ldiskfs-based MDTs"
4221                 return
4222         fi
4223
4224         local inode_slab=$(do_facet $SINGLEMDS \
4225                 "awk '/ldiskfs_inode_cache/ { print \\\$5 }' /proc/slabinfo")
4226         if [ -z "$inode_slab" ]; then
4227                 skip "ldiskfs module has not been loaded"
4228                 return
4229         fi
4230
4231         echo "$inode_slab ldisk inodes per page"
4232         [ "$inode_slab" -ge "3" ] ||
4233                 error "ldisk inode size is too big, $inode_slab objs per page"
4234         return
4235 }
4236 run_test 63 "Verify each page can at least hold 3 ldisk inodes"
4237
4238 test_64() {
4239         start_mds || error "unable to start MDS"
4240         start_ost || error "Unable to start OST1"
4241         start_ost2 || error "Unable to start second ost"
4242         mount_client $MOUNT || error "Unable to mount client"
4243         stop_ost2 || error "Unable to stop second ost"
4244         echo "$LFS df"
4245         $LFS df --lazy || error "lfs df failed"
4246         umount_client $MOUNT -f || error “unmount $MOUNT failed”
4247         cleanup_nocli || error "cleanup_nocli failed with $?"
4248         #writeconf to remove all ost2 traces for subsequent tests
4249         writeconf_or_reformat
4250 }
4251 run_test 64 "check lfs df --lazy "
4252
4253 test_65() { # LU-2237
4254         # Currently, the test is only valid for ldiskfs backend
4255         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
4256                 skip "non-ldiskfs backend" && return
4257
4258         local devname=$(mdsdevname ${SINGLEMDS//mds/})
4259         local brpt=$(facet_mntpt brpt)
4260         local opts=""
4261
4262         if ! do_facet $SINGLEMDS "test -b $devname"; then
4263                 opts="-o loop"
4264         fi
4265
4266         stop_mds || error "Unable to stop MDS"
4267         local obj=$(do_facet $SINGLEMDS \
4268                     "$DEBUGFS -c -R \\\"stat last_rcvd\\\" $devname" |
4269                     grep Inode)
4270         if [ -z "$obj" ]; then
4271                 # The MDT may be just re-formatted, mount the MDT for the
4272                 # first time to guarantee the "last_rcvd" file is there.
4273                 start_mds || error "fail to mount the MDS for the first time"
4274                 stop_mds || error "Unable to stop MDS"
4275         fi
4276
4277         # remove the "last_rcvd" file
4278         do_facet $SINGLEMDS "mkdir -p $brpt"
4279         do_facet $SINGLEMDS \
4280                 "mount -t $(facet_fstype $SINGLEMDS) $opts $devname $brpt"
4281         do_facet $SINGLEMDS "rm -f ${brpt}/last_rcvd"
4282         do_facet $SINGLEMDS "$UMOUNT $brpt"
4283
4284         # restart MDS, the "last_rcvd" file should be recreated.
4285         start_mds || error "fail to restart the MDS"
4286         stop_mds || error "Unable to stop MDS"
4287         obj=$(do_facet $SINGLEMDS \
4288               "$DEBUGFS -c -R \\\"stat last_rcvd\\\" $devname" | grep Inode)
4289         [ -n "$obj" ] || error "fail to re-create the last_rcvd"
4290 }
4291 run_test 65 "re-create the lost last_rcvd file when server mount"
4292
4293 test_66() {
4294         [[ $(lustre_version_code mgs) -ge $(version_code 2.3.59) ]] ||
4295                 { skip "Need MGS version at least 2.3.59"; return 0; }
4296
4297         setup
4298         local OST1_NID=$(do_facet ost1 $LCTL list_nids | head -1)
4299         local MDS_NID=$(do_facet $SINGLEMDS $LCTL list_nids | head -1)
4300
4301         echo "replace_nids should fail if MDS, OSTs and clients are UP"
4302         do_facet mgs $LCTL replace_nids $FSNAME-OST0000 $OST1_NID &&
4303                 error "replace_nids fail"
4304
4305         umount_client $MOUNT || error "unmounting client failed"
4306         echo "replace_nids should fail if MDS and OSTs are UP"
4307         do_facet mgs $LCTL replace_nids $FSNAME-OST0000 $OST1_NID &&
4308                 error "replace_nids fail"
4309
4310         stop_ost || error "Unable to stop OST1"
4311         echo "replace_nids should fail if MDS is UP"
4312         do_facet mgs $LCTL replace_nids $FSNAME-OST0000 $OST1_NID &&
4313                 error "replace_nids fail"
4314
4315         stop_mds || error "stopping mds failed"
4316
4317         if combined_mgs_mds; then
4318                 start_mdt 1 "-o nosvc" ||
4319                         error "starting mds with nosvc option failed"
4320         fi
4321
4322         echo "command should accept two parameters"
4323         do_facet mgs $LCTL replace_nids $FSNAME-OST0000 &&
4324                 error "command should accept two params"
4325
4326         echo "correct device name should be passed"
4327         do_facet mgs $LCTL replace_nids $FSNAME-WRONG0000 $OST1_NID &&
4328                 error "wrong devname"
4329
4330         echo "wrong nids list should not destroy the system"
4331         do_facet mgs $LCTL replace_nids $FSNAME-OST0000 "wrong nids list" &&
4332                 error "wrong parse"
4333
4334         echo "replace OST nid"
4335         do_facet mgs $LCTL replace_nids $FSNAME-OST0000 $OST1_NID ||
4336                 error "replace nids failed"
4337
4338         echo "command should accept two parameters"
4339         do_facet mgs $LCTL replace_nids $FSNAME-MDT0000 &&
4340                 error "command should accept two params"
4341
4342         echo "wrong nids list should not destroy the system"
4343         do_facet mgs $LCTL replace_nids $FSNAME-MDT0000 "wrong nids list" &&
4344                 error "wrong parse"
4345
4346         echo "replace MDS nid"
4347         do_facet mgs $LCTL replace_nids $FSNAME-MDT0000 $MDS_NID ||
4348                 error "replace nids failed"
4349
4350         if ! combined_mgs_mds ; then
4351                 stop_mgs
4352         else
4353                 stop_mds || error "Unable to stop MDS"
4354         fi
4355
4356         setup_noconfig
4357         check_mount || error "error after nid replace"
4358         cleanup || error "cleanup failed"
4359         reformat
4360 }
4361 run_test 66 "replace nids"
4362
4363 test_67() { #LU-2950
4364         local legacy="$TMP/legacy_lnet_config"
4365         local new="$TMP/new_routes_test"
4366         local out="$TMP/config_out_file"
4367         local verify="$TMP/conv_verify"
4368         local verify_conf="$TMP/conf_verify"
4369
4370         # Create the legacy file that will be run through the
4371         # lustre_routes_conversion script
4372         cat <<- LEGACY_LNET_CONFIG > $legacy
4373                 tcp1 23 192.168.213.1@tcp:1; tcp5 34 193.30.4.3@tcp:4;
4374                 tcp2 54 10.1.3.2@tcp;
4375                 tcp3 10.3.4.3@tcp:3;
4376                 tcp4 10.3.3.4@tcp;
4377         LEGACY_LNET_CONFIG
4378
4379         # Create the verification file to verify the output of
4380         # lustre_routes_conversion script against.
4381         cat <<- VERIFY_LNET_CONFIG > $verify
4382                 tcp1: { gateway: 192.168.213.1@tcp, hop: 23, priority: 1 }
4383                 tcp5: { gateway: 193.30.4.3@tcp, hop: 34, priority: 4 }
4384                 tcp2: { gateway: 10.1.3.2@tcp, hop: 54 }
4385                 tcp3: { gateway: 10.3.4.3@tcp, priority: 3 }
4386                 tcp4: { gateway: 10.3.3.4@tcp }
4387         VERIFY_LNET_CONFIG
4388
4389         # Create the verification file to verify the output of
4390         # lustre_routes_config script against
4391         cat <<- VERIFY_LNET_CONFIG > $verify_conf
4392                 lctl --net tcp1 add_route 192.168.213.1@tcp 23 1
4393                 lctl --net tcp5 add_route 193.30.4.3@tcp 34 4
4394                 lctl --net tcp2 add_route 10.1.3.2@tcp 54 4
4395                 lctl --net tcp3 add_route 10.3.4.3@tcp 1 3
4396                 lctl --net tcp4 add_route 10.3.3.4@tcp 1 3
4397         VERIFY_LNET_CONFIG
4398
4399         lustre_routes_conversion $legacy $new > /dev/null
4400         if [ -f $new ]; then
4401                 # verify the conversion output
4402                 cmp -s $new $verify > /dev/null
4403                 if [ $? -eq 1 ]; then
4404                         error "routes conversion failed"
4405                 fi
4406
4407                 lustre_routes_config --dry-run --verbose $new > $out
4408                 # check that the script succeeded
4409                 cmp -s $out $verify_conf > /dev/null
4410                 if [ $? -eq 1 ]; then
4411                         error "routes config failed"
4412                 fi
4413         else
4414                 error "routes conversion test failed"
4415         fi
4416         # remove generated files
4417         rm -f $new $legacy $verify $verify_conf $out
4418 }
4419 run_test 67 "test routes conversion and configuration"
4420
4421 test_68() {
4422         local fid
4423         local seq
4424         local START
4425         local END
4426
4427         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.4.53) ] ||
4428                 { skip "Need MDS version at least 2.4.53"; return 0; }
4429
4430         umount_client $MOUNT || error "umount client failed"
4431
4432         start_mdt 1 || error "MDT start failed"
4433         start_ost || error "Unable to start OST1"
4434
4435         # START-END - the sequences we'll be reserving
4436         START=$(do_facet $SINGLEMDS \
4437                 $LCTL get_param -n seq.ctl*.space | awk -F'[[ ]' '{print $2}')
4438         END=$((START + (1 << 30)))
4439         do_facet $SINGLEMDS \
4440                 $LCTL set_param seq.ctl*.fldb="[$START-$END\):0:mdt"
4441
4442         # reset the sequences MDT0000 has already assigned
4443         do_facet $SINGLEMDS \
4444                 $LCTL set_param seq.srv*MDT0000.space=clear
4445
4446         # remount to let the client allocate new sequence
4447         mount_client $MOUNT || error "mount client failed"
4448
4449         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
4450         do_facet $SINGLEMDS \
4451                 $LCTL get_param seq.srv*MDT0000.space
4452         $LFS path2fid $DIR/$tfile
4453
4454         local old_ifs="$IFS"
4455         IFS='[:]'
4456         fid=($($LFS path2fid $DIR/$tfile))
4457         IFS="$old_ifs"
4458         let seq=${fid[1]}
4459
4460         if [[ $seq < $END ]]; then
4461                 error "used reserved sequence $seq?"
4462         fi
4463         cleanup || error "cleanup failed with $?"
4464 }
4465 run_test 68 "be able to reserve specific sequences in FLDB"
4466
4467 # Test 69: is about the total number of objects ever created on an OST.
4468 # so that when it is reformatted the normal MDS->OST orphan recovery won't
4469 # just "precreate" the missing objects. In the past it might try to recreate
4470 # millions of objects after an OST was reformatted
4471 test_69() {
4472         local server_version=$(lustre_version_code $SINGLEMDS)
4473
4474         [[ $server_version -lt $(version_code 2.4.2) ]] &&
4475                 skip "Need MDS version at least 2.4.2" && return
4476
4477         [[ $server_version -ge $(version_code 2.4.50) ]] &&
4478         [[ $server_version -lt $(version_code 2.5.0) ]] &&
4479                 skip "Need MDS version at least 2.5.0" && return
4480
4481         setup
4482         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
4483
4484         # use OST0000 since it probably has the most creations
4485         local OSTNAME=$(ostname_from_index 0)
4486         local mdtosc_proc1=$(get_mdtosc_proc_path mds1 $OSTNAME)
4487         local last_id=$(do_facet mds1 $LCTL get_param -n \
4488                         osc.$mdtosc_proc1.prealloc_last_id)
4489
4490         # Want to have OST LAST_ID over 5 * OST_MAX_PRECREATE to
4491         # verify that the LAST_ID recovery is working properly. If
4492         # not, then the OST will refuse to allow the MDS connect
4493         # because the LAST_ID value is too different from the MDS
4494         #define OST_MAX_PRECREATE=20000
4495         local ost_max_pre=20000
4496         local num_create=$(( ost_max_pre * 5 + 1 - last_id))
4497
4498         # If the LAST_ID is already over 5 * OST_MAX_PRECREATE, we don't
4499         # need to create any files. So, skip this section.
4500         if [ $num_create -gt 0 ]; then
4501                 # Check the number of inodes available on OST0
4502                 local files=0
4503                 local ifree=$($LFS df -i $MOUNT | awk '/OST0000/ { print $4 }')
4504                 log "On OST0, $ifree inodes available. Want $num_create."
4505
4506                 $SETSTRIPE -i 0 $DIR/$tdir ||
4507                         error "$SETSTRIPE -i 0 $DIR/$tdir failed"
4508                 if [ $ifree -lt 10000 ]; then
4509                         files=$(( ifree - 50 ))
4510                 else
4511                         files=10000
4512                 fi
4513
4514                 local j=$((num_create / files + 1))
4515                 for i in $(seq 1 $j); do
4516                         createmany -o $DIR/$tdir/$tfile-$i- $files ||
4517                                 error "createmany fail create $files files: $?"
4518                         unlinkmany $DIR/$tdir/$tfile-$i- $files ||
4519                                 error "unlinkmany failed unlink $files files"
4520                 done
4521         fi
4522
4523         # delete all of the files with objects on OST0 so the
4524         # filesystem is not inconsistent later on
4525         $LFS find $MOUNT --ost 0 -print0 | xargs -0 rm
4526
4527         umount_client $MOUNT || error "umount client failed"
4528         stop_ost || error "OST0 stop failure"
4529         add ost1 $(mkfs_opts ost1 $(ostdevname 1)) --reformat --replace \
4530                 $(ostdevname 1) $(ostvdevname 1) ||
4531                 error "reformat and replace $ostdev failed"
4532         start_ost || error "OST0 restart failure"
4533         wait_osc_import_state mds ost FULL
4534
4535         mount_client $MOUNT || error "mount client failed"
4536         touch $DIR/$tdir/$tfile-last || error "create file after reformat"
4537         local idx=$($GETSTRIPE -i $DIR/$tdir/$tfile-last)
4538         [ $idx -ne 0 ] && error "$DIR/$tdir/$tfile-last on $idx not 0" || true
4539
4540         local iused=$($LFS df -i $MOUNT | awk '/OST0000/ { print $3 }')
4541         log "On OST0, $iused used inodes"
4542         [ $iused -ge $((ost_max_pre/2 + 1000)) ] &&
4543                 error "OST replacement created too many inodes; $iused"
4544         cleanup || error "cleanup failed with $?"
4545 }
4546 run_test 69 "replace an OST with the same index"
4547
4548 test_70a() {
4549         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4550         local MDTIDX=1
4551
4552         cleanup || error "cleanup failed with $?"
4553
4554         start_mdt 1 || error "MDT0 start fail"
4555
4556         start_ost || error "OST0 start fail"
4557         for num in $(seq 2 $MDSCOUNT); do
4558                 start_mdt $num || return
4559         done
4560
4561         mount_client $MOUNT || error "mount client fails"
4562
4563         mkdir $DIR/$tdir || error "create $DIR/$tdir failed"
4564
4565         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
4566                 error "create remote dir fail"
4567
4568         rm -rf $DIR/$tdir || error "delete dir fail"
4569         cleanup || error "cleanup failed with $?"
4570 }
4571 run_test 70a "start MDT0, then OST, then MDT1"
4572
4573 test_70b() {
4574         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4575         local MDTIDX=1
4576
4577         start_ost || error "OST0 start fail"
4578
4579         start_mds || error "MDS start fail"
4580
4581         mount_client $MOUNT || error "mount client fails"
4582
4583         mkdir $DIR/$tdir || error "create $DIR/$tdir failed"
4584
4585         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
4586                 error "create remote dir fail"
4587
4588         rm -rf $DIR/$tdir || error "delete dir fail"
4589
4590         cleanup || error "cleanup failed with $?"
4591 }
4592 run_test 70b "start OST, MDT1, MDT0"
4593
4594 test_70c() {
4595         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4596         local MDTIDX=1
4597
4598         start_mds || error "MDS start fail"
4599         start_ost || error "OST0 start fail"
4600
4601         mount_client $MOUNT || error "mount client fails"
4602         stop_mdt 1 || error "MDT1 start fail"
4603
4604         local mdc_for_mdt1=$($LCTL dl | grep MDT0000-mdc | awk '{print $4}')
4605         echo "deactivate $mdc_for_mdt1"
4606         $LCTL --device $mdc_for_mdt1 deactivate ||
4607                 error "set $mdc_for_mdt1 deactivate failed"
4608
4609         mkdir $DIR/$tdir && error "mkdir succeed"
4610
4611         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir &&
4612                 error "create remote dir succeed"
4613
4614         cleanup || error "cleanup failed with $?"
4615 }
4616 run_test 70c "stop MDT0, mkdir fail, create remote dir fail"
4617
4618 test_70d() {
4619         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4620         local MDTIDX=1
4621
4622         start_mds || error "MDS start fail"
4623         start_ost || error "OST0 start fail"
4624
4625         mount_client $MOUNT || error "mount client fails"
4626
4627         stop_mdt 2 || error "MDT1 start fail"
4628
4629         local mdc_for_mdt2=$($LCTL dl | grep MDT0001-mdc |
4630                              awk '{print $4}')
4631         echo "deactivate $mdc_for_mdt2"
4632         $LCTL --device $mdc_for_mdt2 deactivate ||
4633                 error "set $mdc_for_mdt2 deactivate failed"
4634
4635         mkdir $DIR/$tdir || error "mkdir fail"
4636         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir &&
4637                 error "create remote dir succeed"
4638
4639         rm -rf $DIR/$tdir || error "delete dir fail"
4640
4641         cleanup || error "cleanup failed with $?"
4642 }
4643 run_test 70d "stop MDT1, mkdir succeed, create remote dir fail"
4644
4645 test_71a() {
4646         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4647         if combined_mgs_mds; then
4648                 skip "needs separate MGS/MDT" && return
4649         fi
4650         local MDTIDX=1
4651
4652         start_mdt 1 || error "MDT0 start fail"
4653         start_ost || error "OST0 start fail"
4654         for num in $(seq 2 $MDSCOUNT); do
4655                 start_mdt $num || return
4656         done
4657
4658         start_ost2 || error "OST1 start fail"
4659
4660         mount_client $MOUNT || error "mount client fails"
4661
4662         mkdir $DIR/$tdir || error "mkdir fail"
4663         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
4664                 error "create remote dir succeed"
4665
4666         mcreate $DIR/$tdir/remote_dir/$tfile || error "create file failed"
4667         rm -rf $DIR/$tdir || error "delete dir fail"
4668
4669         umount_client $MOUNT || error "umount_client failed"
4670         stop_mds || error "MDS stop fail"
4671         stop_ost || error "OST0 stop fail"
4672         stop_ost2 || error "OST1 stop fail"
4673 }
4674 run_test 71a "start MDT0 OST0, MDT1, OST1"
4675
4676 test_71b() {
4677         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4678         if combined_mgs_mds; then
4679                 skip "needs separate MGS/MDT" && return
4680         fi
4681         local MDTIDX=1
4682
4683         for num in $(seq 2 $MDSCOUNT); do
4684                 start_mdt $num || return
4685         done
4686         start_ost || error "OST0 start fail"
4687         start_mdt 1 || error "MDT0 start fail"
4688         start_ost2 || error "OST1 start fail"
4689
4690         mount_client $MOUNT || error "mount client fails"
4691
4692         mkdir $DIR/$tdir || error "mkdir fail"
4693         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
4694                 error "create remote dir succeed"
4695
4696         mcreate $DIR/$tdir/remote_dir/$tfile || error "create file failed"
4697         rm -rf $DIR/$tdir || error "delete dir fail"
4698
4699         umount_client $MOUNT || error "umount_client failed"
4700         stop_mds || error "MDT0 stop fail"
4701         stop_ost || error "OST0 stop fail"
4702         stop_ost2 || error "OST1 stop fail"
4703 }
4704 run_test 71b "start MDT1, OST0, MDT0, OST1"
4705
4706 test_71c() {
4707         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4708         if combined_mgs_mds; then
4709                 skip "needs separate MGS/MDT" && return
4710         fi
4711         local MDTIDX=1
4712
4713         start_ost || error "OST0 start fail"
4714         start_ost2 || error "OST1 start fail"
4715         for num in $(seq 2 $MDSCOUNT); do
4716                 start_mdt $num || return
4717         done
4718         start_mdt 1 || error "MDT0 start fail"
4719
4720         mount_client $MOUNT || error "mount client fails"
4721
4722         mkdir $DIR/$tdir || error "mkdir fail"
4723         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
4724                 error "create remote dir succeed"
4725
4726         mcreate $DIR/$tdir/remote_dir/$tfile || error "create file failed"
4727         rm -rf $DIR/$tdir || error "delete dir fail"
4728
4729         umount_client $MOUNT || error "umount_client failed"
4730         stop_mds || error "MDS stop fail"
4731         stop_ost || error "OST0 stop fail"
4732         stop_ost2 || error "OST1 stop fail"
4733
4734 }
4735 run_test 71c "start OST0, OST1, MDT1, MDT0"
4736
4737 test_71d() {
4738         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4739         if combined_mgs_mds; then
4740                 skip "needs separate MGS/MDT" && return
4741         fi
4742         local MDTIDX=1
4743
4744         start_ost || error "OST0 start fail"
4745         for num in $(seq 2 $MDSCOUNT); do
4746                 start_mdt $num || return
4747         done
4748         start_mdt 1 || error "MDT0 start fail"
4749         start_ost2 || error "OST1 start fail"
4750
4751         mount_client $MOUNT || error "mount client fails"
4752
4753         mkdir $DIR/$tdir || error "mkdir fail"
4754         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
4755                         error "create remote dir succeed"
4756
4757         mcreate $DIR/$tdir/remote_dir/$tfile || error "create file failed"
4758         rm -rf $DIR/$tdir || error "delete dir fail"
4759
4760         umount_client $MOUNT || error "umount_client failed"
4761         stop_mds || error "MDS stop fail"
4762         stop_ost || error "OST0 stop fail"
4763         stop_ost2 || error "OST1 stop fail"
4764
4765 }
4766 run_test 71d "start OST0, MDT1, MDT0, OST1"
4767
4768 test_71e() {
4769         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4770         if combined_mgs_mds; then
4771                 skip "needs separate MGS/MDT" && return
4772         fi
4773         local MDTIDX=1
4774
4775         start_ost || error "OST0 start fail"
4776         for num in $(seq 2 $MDSCOUNT); do
4777                 start_mdt $num || return
4778         done
4779         start_ost2 || error "OST1 start fail"
4780         start_mdt 1 || error "MDT0 start fail"
4781
4782         mount_client $MOUNT || error "mount client fails"
4783
4784         mkdir $DIR/$tdir || error "mkdir fail"
4785         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
4786                 error "create remote dir succeed"
4787
4788         mcreate $DIR/$tdir/remote_dir/$tfile || error "create file failed"
4789         rm -rf $DIR/$tdir || error "delete dir fail"
4790
4791         umount_client $MOUNT || error "umount_client failed"
4792         stop_mds || error "MDS stop fail"
4793         stop_ost || error "OST0 stop fail"
4794         stop_ost2 || error "OST1 stop fail"
4795
4796 }
4797 run_test 71e "start OST0, MDT1, OST1, MDT0"
4798
4799 test_72() { #LU-2634
4800         local mdsdev=$(mdsdevname 1)
4801         local ostdev=$(ostdevname 1)
4802         local cmd="$E2FSCK -fnvd $mdsdev"
4803         local fn=3
4804
4805         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
4806                 skip "ldiskfs only test" && return
4807
4808         #tune MDT with "-O extents"
4809
4810         for num in $(seq $MDSCOUNT); do
4811                 add mds${num} $(mkfs_opts mds$num $(mdsdevname $num)) \
4812                 --reformat $(mdsdevname $num) $(mdsvdevname $num) ||
4813                 error "add mds $num failed"
4814                 do_facet mds${num} "$TUNE2FS -O extents $(mdsdevname $num)" ||
4815                         error "$TUNE2FS failed on mds${num}"
4816         done
4817
4818         add ost1 $(mkfs_opts ost1 $ostdev) --reformat $ostdev ||
4819                 error "add $ostdev failed"
4820         start_mgsmds || error "start mds failed"
4821         start_ost || error "start ost failed"
4822         mount_client $MOUNT || error "mount client failed"
4823
4824         #create some short symlinks
4825         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
4826         createmany -o $DIR/$tdir/$tfile-%d $fn
4827         echo "create $fn short symlinks"
4828         for i in $(seq -w 1 $fn); do
4829                 ln -s $DIR/$tdir/$tfile-$i $MOUNT/$tfile-$i
4830         done
4831         ls -al $MOUNT
4832
4833         #umount
4834         umount_client $MOUNT || error "umount client failed"
4835         stop_mds || error "stop mds failed"
4836         stop_ost || error "stop ost failed"
4837
4838         #run e2fsck
4839         run_e2fsck $(facet_active_host $SINGLEMDS) $mdsdev "-n"
4840 }
4841 run_test 72 "test fast symlink with extents flag enabled"
4842
4843 test_73() { #LU-3006
4844         load_modules
4845         [ $(facet_fstype ost1) == zfs ] && import_zpool ost1
4846         do_facet ost1 "$TUNEFS --failnode=1.2.3.4@$NETTYPE $(ostdevname 1)" ||
4847                 error "1st tunefs failed"
4848         start_mgsmds || error "start mds failed"
4849         start_ost || error "start ost failed"
4850         mount_client $MOUNT || error "mount client failed"
4851         $LCTL get_param -n osc.*OST0000-osc-[^M]*.import | grep failover_nids |
4852                 grep 1.2.3.4@$NETTYPE || error "failover nids haven't changed"
4853         umount_client $MOUNT || error "umount client failed"
4854         stopall
4855         reformat
4856 }
4857 run_test 73 "failnode to update from mountdata properly"
4858
4859 test_75() { # LU-2374
4860         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
4861                         skip "Need MDS version at least 2.4.1" && return
4862
4863         local index=0
4864         local opts_mds="$(mkfs_opts mds1 $(mdsdevname 1)) \
4865                 --reformat $(mdsdevname 1) $(mdsvdevname 1)"
4866         local opts_ost="$(mkfs_opts ost1 $(ostdevname 1)) \
4867                 --reformat $(ostdevname 1) $(ostvdevname 1)"
4868
4869         #check with default parameters
4870         add mds1 $opts_mds || error "add mds1 failed for default params"
4871         add ost1 $opts_ost || error "add ost1 failed for default params"
4872
4873         opts_mds=$(echo $opts_mds | sed -e "s/--mdt//")
4874         opts_mds=$(echo $opts_mds |
4875                    sed -e "s/--index=$index/--index=$index --mdt/")
4876         opts_ost=$(echo $opts_ost | sed -e "s/--ost//")
4877         opts_ost=$(echo $opts_ost |
4878                    sed -e "s/--index=$index/--index=$index --ost/")
4879
4880         add mds1 $opts_mds || error "add mds1 failed for new params"
4881         add ost1 $opts_ost || error "add ost1 failed for new params"
4882         return 0
4883 }
4884 run_test 75 "The order of --index should be irrelevant"
4885
4886 test_76a() {
4887         [[ $(lustre_version_code mgs) -ge $(version_code 2.4.52) ]] ||
4888                 { skip "Need MDS version at least 2.4.52" && return 0; }
4889         setup
4890         local MDMB_PARAM="osc.*.max_dirty_mb"
4891         echo "Change MGS params"
4892         local MAX_DIRTY_MB=$($LCTL get_param -n $MDMB_PARAM |
4893                 head -1)
4894         echo "max_dirty_mb: $MAX_DIRTY_MB"
4895         local NEW_MAX_DIRTY_MB=$((MAX_DIRTY_MB + MAX_DIRTY_MB))
4896         echo "new_max_dirty_mb: $NEW_MAX_DIRTY_MB"
4897         do_facet mgs $LCTL set_param -P $MDMB_PARAM=$NEW_MAX_DIRTY_MB
4898         wait_update $HOSTNAME "$LCTL get_param -n $MDMB_PARAM |
4899                 head -1" $NEW_MAX_DIRTY_MB
4900         MAX_DIRTY_MB=$($LCTL get_param -n $MDMB_PARAM | head -1)
4901         echo "$MAX_DIRTY_MB"
4902         [ $MAX_DIRTY_MB = $NEW_MAX_DIRTY_MB ] ||
4903                 error "error while apply max_dirty_mb"
4904
4905         echo "Check the value is stored after remount"
4906         stopall
4907         setupall
4908         wait_update $HOSTNAME "$LCTL get_param -n $MDMB_PARAM |
4909                 head -1" $NEW_MAX_DIRTY_MB
4910         MAX_DIRTY_MB=$($LCTL get_param -n $MDMB_PARAM | head -1)
4911         [ $MAX_DIRTY_MB = $NEW_MAX_DIRTY_MB ] ||
4912                 error "max_dirty_mb is not saved after remount"
4913
4914         echo "Change OST params"
4915         CLIENT_PARAM="obdfilter.*.client_cache_count"
4916         local CLIENT_CACHE_COUNT
4917         CLIENT_CACHE_COUNT=$(do_facet ost1 $LCTL get_param -n $CLIENT_PARAM |
4918                 head -1)
4919         echo "client_cache_count: $CLIENT_CACHE_COUNT"
4920         NEW_CLIENT_CACHE_COUNT=$((CLIENT_CACHE_COUNT+CLIENT_CACHE_COUNT))
4921         echo "new_client_cache_count: $NEW_CLIENT_CACHE_COUNT"
4922         do_facet mgs $LCTL set_param -P $CLIENT_PARAM=$NEW_CLIENT_CACHE_COUNT
4923         wait_update $(facet_host ost1) "$LCTL get_param -n $CLIENT_PARAM |
4924                 head -1" $NEW_CLIENT_CACHE_COUNT
4925         CLIENT_CACHE_COUNT=$(do_facet ost1 $LCTL get_param -n $CLIENT_PARAM |
4926                 head -1)
4927         echo "$CLIENT_CACHE_COUNT"
4928         [ $CLIENT_CACHE_COUNT = $NEW_CLIENT_CACHE_COUNT ] ||
4929                 error "error while apply client_cache_count"
4930
4931         echo "Check the value is stored after remount"
4932         stopall
4933         setupall
4934         wait_update $(facet_host ost1) "$LCTL get_param -n $CLIENT_PARAM |
4935                 head -1" $NEW_CLIENT_CACHE_COUNT
4936         CLIENT_CACHE_COUNT=$(do_facet ost1 $LCTL get_param -n $CLIENT_PARAM |
4937                 head -1)
4938         echo "$CLIENT_CACHE_COUNT"
4939         [ $CLIENT_CACHE_COUNT = $NEW_CLIENT_CACHE_COUNT ] ||
4940                 error "client_cache_count is not saved after remount"
4941         stopall
4942 }
4943 run_test 76a "set permanent params set_param -P"
4944
4945 test_76b() { # LU-4783
4946         [[ $(lustre_version_code mgs) -ge $(version_code 2.5.57) ]] ||
4947                 { skip "Need MGS version at least 2.5.57" && return 0; }
4948         stopall
4949         setupall
4950         do_facet mgs $LCTL get_param mgs.MGS.live.params ||
4951                 error "start params log failed"
4952         stopall
4953 }
4954 run_test 76b "verify params log setup correctly"
4955
4956 test_77() { # LU-3445
4957         local server_version=$(lustre_version_code $SINGLEMDS)
4958
4959         [[ $server_version -ge $(version_code 2.2.60) ]] &&
4960         [[ $server_version -le $(version_code 2.4.0) ]] &&
4961                 skip "Need MDS version < 2.2.60 or > 2.4.0" && return
4962
4963         if [[ -z "$fs2ost_DEV" || -z "$fs2mds_DEV" ]]; then
4964                 is_blkdev $SINGLEMDS $(mdsdevname ${SINGLEMDS//mds/}) &&
4965                 skip_env "mixed loopback and real device not working" && return
4966         fi
4967
4968         local fs2mdsdev=$(mdsdevname 1_2)
4969         local fs2ostdev=$(ostdevname 1_2)
4970         local fs2mdsvdev=$(mdsvdevname 1_2)
4971         local fs2ostvdev=$(ostvdevname 1_2)
4972         local fsname=test1234
4973         local mgsnid
4974         local failnid="$(h2$NETTYPE 1.2.3.4),$(h2$NETTYPE 4.3.2.1)"
4975
4976         add fs2mds $(mkfs_opts mds1 $fs2mdsdev) --mgs --fsname=$fsname \
4977                 --reformat $fs2mdsdev $fs2mdsvdev || error "add fs2mds failed"
4978         start fs2mds $fs2mdsdev $MDS_MOUNT_OPTS && trap cleanup_fs2 EXIT INT ||
4979                 error "start fs2mds failed"
4980
4981         mgsnid=$(do_facet fs2mds $LCTL list_nids | xargs | tr ' ' ,)
4982         [[ $mgsnid = *,* ]] || mgsnid+=",$mgsnid"
4983
4984         add fs2ost $(mkfs_opts ost1 $fs2ostdev) --mgsnode=$mgsnid \
4985                 --failnode=$failnid --fsname=$fsname \
4986                 --reformat $fs2ostdev $fs2ostvdev ||
4987                         error "add fs2ost failed"
4988         start fs2ost $fs2ostdev $OST_MOUNT_OPTS || error "start fs2ost failed"
4989
4990         mkdir -p $MOUNT2 || error "mkdir $MOUNT2 failed"
4991         $MOUNT_CMD $mgsnid:/$fsname $MOUNT2 || error "mount $MOUNT2 failed"
4992         DIR=$MOUNT2 MOUNT=$MOUNT2 check_mount || error "check $MOUNT2 failed"
4993         cleanup_fs2
4994 }
4995 run_test 77 "comma-separated MGS NIDs and failover node NIDs"
4996
4997 test_78() {
4998         [[ $(facet_fstype $SINGLEMDS) != ldiskfs ||
4999            $(facet_fstype ost1) != ldiskfs ]] &&
5000                 skip "only applicable to ldiskfs-based MDTs and OSTs" && return
5001
5002         # reformat the Lustre filesystem with a smaller size
5003         local saved_MDSSIZE=$MDSSIZE
5004         local saved_OSTSIZE=$OSTSIZE
5005         MDSSIZE=$((MDSSIZE - 20000))
5006         OSTSIZE=$((OSTSIZE - 20000))
5007         reformat || error "(1) reformat Lustre filesystem failed"
5008         MDSSIZE=$saved_MDSSIZE
5009         OSTSIZE=$saved_OSTSIZE
5010
5011         # mount the Lustre filesystem
5012         setup_noconfig || error "(2) setup Lustre filesystem failed"
5013
5014         # create some files
5015         log "create test files"
5016         local i
5017         local file
5018         local num_files=100
5019         mkdir $MOUNT/$tdir || error "(3) mkdir $MOUNT/$tdir failed"
5020         for i in $(seq $num_files); do
5021                 file=$MOUNT/$tdir/$tfile-$i
5022                 dd if=/dev/urandom of=$file count=1 bs=1M ||
5023                         error "(4) create $file failed"
5024         done
5025
5026         # unmount the Lustre filesystem
5027         cleanup || error "(5) cleanup Lustre filesystem failed"
5028
5029         # run e2fsck on the MDT and OST devices
5030         local mds_host=$(facet_active_host $SINGLEMDS)
5031         local ost_host=$(facet_active_host ost1)
5032         local mds_dev=$(mdsdevname ${SINGLEMDS//mds/})
5033         local ost_dev=$(ostdevname 1)
5034
5035         run_e2fsck $mds_host $mds_dev "-y"
5036         run_e2fsck $ost_host $ost_dev "-y"
5037
5038         # get the original block count of the MDT and OST filesystems
5039         local mds_orig_blks=$(get_block_count $SINGLEMDS $mds_dev)
5040         local ost_orig_blks=$(get_block_count ost1 $ost_dev)
5041
5042         # expand the MDT and OST filesystems to the device size
5043         run_resize2fs $SINGLEMDS $mds_dev "" || error "expand $SINGLEMDS failed"
5044         run_resize2fs ost1 $ost_dev "" || error "expand ost1 failed"
5045
5046         # run e2fsck on the MDT and OST devices again
5047         run_e2fsck $mds_host $mds_dev "-y"
5048         run_e2fsck $ost_host $ost_dev "-y"
5049
5050         # mount the Lustre filesystem
5051         setup
5052
5053         # check the files
5054         log "check files after expanding the MDT and OST filesystems"
5055         for i in $(seq $num_files); do
5056                 file=$MOUNT/$tdir/$tfile-$i
5057                 $CHECKSTAT -t file -s 1048576 $file ||
5058                         error "(6) checkstat $file failed"
5059         done
5060
5061         # create more files
5062         log "create more files after expanding the MDT and OST filesystems"
5063         for i in $(seq $((num_files + 1)) $((num_files + 10))); do
5064                 file=$MOUNT/$tdir/$tfile-$i
5065                 dd if=/dev/urandom of=$file count=1 bs=1M ||
5066                         error "(7) create $file failed"
5067         done
5068
5069         # unmount the Lustre filesystem
5070         cleanup || error "(8) cleanup Lustre filesystem failed"
5071
5072         # run e2fsck on the MDT and OST devices
5073         run_e2fsck $mds_host $mds_dev "-y"
5074         run_e2fsck $ost_host $ost_dev "-y"
5075
5076         # get the maximum block count of the MDT and OST filesystems
5077         local mds_max_blks=$(get_block_count $SINGLEMDS $mds_dev)
5078         local ost_max_blks=$(get_block_count ost1 $ost_dev)
5079
5080         # get the minimum block count of the MDT and OST filesystems
5081         local mds_min_blks=$(run_resize2fs $SINGLEMDS $mds_dev "" "-P" 2>&1 |
5082                                 grep minimum | sed -e 's/^.*filesystem: //g')
5083         local ost_min_blks=$(run_resize2fs ost1 $ost_dev "" "-P" 2>&1 |
5084                                 grep minimum | sed -e 's/^.*filesystem: //g')
5085
5086         # shrink the MDT and OST filesystems to a smaller size
5087         local shrunk=false
5088         local new_blks
5089         local base_blks
5090         if [[ $mds_max_blks -gt $mds_min_blks &&
5091               $mds_max_blks -gt $mds_orig_blks ]]; then
5092                 [[ $mds_orig_blks -gt $mds_min_blks ]] &&
5093                         base_blks=$mds_orig_blks || base_blks=$mds_min_blks
5094                 new_blks=$(( (mds_max_blks - base_blks) / 2 + base_blks ))
5095                 run_resize2fs $SINGLEMDS $mds_dev $new_blks ||
5096                         error "shrink $SINGLEMDS to $new_blks failed"
5097                 shrunk=true
5098         fi
5099
5100         if [[ $ost_max_blks -gt $ost_min_blks &&
5101               $ost_max_blks -gt $ost_orig_blks ]]; then
5102                 [[ $ost_orig_blks -gt $ost_min_blks ]] &&
5103                         base_blks=$ost_orig_blks || base_blks=$ost_min_blks
5104                 new_blks=$(( (ost_max_blks - base_blks) / 2 + base_blks ))
5105                 run_resize2fs ost1 $ost_dev $new_blks ||
5106                         error "shrink ost1 to $new_blks failed"
5107                 shrunk=true
5108         fi
5109
5110         # check whether the MDT or OST filesystem was shrunk or not
5111         if ! $shrunk; then
5112                 combined_mgs_mds || stop_mgs || error "(9) stop mgs failed"
5113                 reformat || error "(10) reformat Lustre filesystem failed"
5114                 return 0
5115         fi
5116
5117         # run e2fsck on the MDT and OST devices again
5118         run_e2fsck $mds_host $mds_dev "-y"
5119         run_e2fsck $ost_host $ost_dev "-y"
5120
5121         # mount the Lustre filesystem again
5122         setup
5123
5124         # check the files
5125         log "check files after shrinking the MDT and OST filesystems"
5126         for i in $(seq $((num_files + 10))); do
5127                 file=$MOUNT/$tdir/$tfile-$i
5128                 $CHECKSTAT -t file -s 1048576 $file ||
5129                         error "(11) checkstat $file failed"
5130         done
5131
5132         # unmount and reformat the Lustre filesystem
5133         cleanup || error "(12) cleanup Lustre filesystem failed"
5134         combined_mgs_mds || stop_mgs || error "(13) stop mgs failed"
5135         reformat || error "(14) reformat Lustre filesystem failed"
5136 }
5137 run_test 78 "run resize2fs on MDT and OST filesystems"
5138
5139 test_79() { # LU-4227
5140         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.5.59) ]] ||
5141                 { skip "Need MDS version at least 2.5.59"; return 0; }
5142
5143         local mdsdev1=$(mdsdevname 1)
5144         local mdsvdev1=$(mdsvdevname 1)
5145         local mdsdev2=$(mdsdevname 2)
5146         local mdsvdev2=$(mdsvdevname 2)
5147         local ostdev1=$(ostdevname 1)
5148         local ostvdev1=$(ostvdevname 1)
5149         local opts_mds1="$(mkfs_opts mds1 $mdsdev1) --reformat"
5150         local opts_mds2="$(mkfs_opts mds2 $mdsdev2) --reformat"
5151         local opts_ost1="$(mkfs_opts ost1 $ostdev1) --reformat"
5152         local mgsnode_opt
5153
5154         # remove --mgs/--mgsnode from mkfs.lustre options
5155         opts_mds1=$(echo $opts_mds1 | sed -e "s/--mgs//")
5156
5157         mgsnode_opt=$(echo $opts_mds2 |
5158                 awk '{ for ( i = 1; i < NF; i++ )
5159                         if ( $i ~ "--mgsnode" ) { print $i; break } }')
5160         [ -n $mgsnode_opt ] &&
5161                 opts_mds2=$(echo $opts_mds2 | sed -e "s/$mgsnode_opt//")
5162
5163         mgsnode_opt=$(echo $opts_ost1 |
5164                 awk '{ for ( i = 1; i < NF; i++ )
5165                         if ( $i ~ "--mgsnode" ) { print $i; break } }')
5166         [ -n $mgsnode_opt ] &&
5167                 opts_ost1=$(echo $opts_ost1 | sed -e "s/$mgsnode_opt//")
5168
5169         # -MGS, format a mdt without --mgs option
5170         add mds1 $opts_mds1 $mdsdev1 $mdsvdev1 &&
5171                 error "Must specify --mgs when formatting mdt combined with mgs"
5172
5173         # +MGS, format a mdt/ost without --mgsnode option
5174         add mds1 $(mkfs_opts mds1 $mdsdev1) --reformat $mdsdev1 $mdsvdev1 \
5175                 > /dev/null || error "start mds1 failed"
5176         add mds2 $opts_mds2 $mdsdev2 $mdsvdev2 &&
5177                 error "Must specify --mgsnode when formatting a mdt"
5178         add ost1 $opts_ost1 $ostdev1 $ostvdev2 &&
5179                 error "Must specify --mgsnode when formatting an ost"
5180
5181         reformat
5182 }
5183 run_test 79 "format MDT/OST without mgs option (should return errors)"
5184
5185 test_80() {
5186         start_mds || error "Failed to start MDT"
5187         start_ost || error "Failed to start OST1"
5188         uuid=$(do_facet ost1 $LCTL get_param -n mgc.*.uuid)
5189 #define OBD_FAIL_MGS_PAUSE_TARGET_CON       0x906
5190         do_facet ost1 "$LCTL set_param fail_val=10 fail_loc=0x906"
5191         do_facet mgs "$LCTL set_param fail_val=10 fail_loc=0x906"
5192         do_facet mgs "$LCTL set_param -n mgs/MGS/evict_client $uuid"
5193         sleep 30
5194         start_ost2 || error "Failed to start OST2"
5195
5196         do_facet ost1 "$LCTL set_param fail_loc=0"
5197         stopall
5198 }
5199 run_test 80 "mgc import reconnect race"
5200
5201 #Save the original values of $OSTCOUNT and $OSTINDEX$i.
5202 save_ostindex() {
5203         local new_ostcount=$1
5204         saved_ostcount=$OSTCOUNT
5205         OSTCOUNT=$new_ostcount
5206
5207         local i
5208         local index
5209         for i in $(seq $OSTCOUNT); do
5210                 index=OSTINDEX$i
5211                 eval saved_ostindex$i=${!index}
5212                 eval OSTINDEX$i=""
5213         done
5214 }
5215
5216 # Restore the original values of $OSTCOUNT and $OSTINDEX$i.
5217 restore_ostindex() {
5218         trap 0
5219
5220         local i
5221         local index
5222         for i in $(seq $OSTCOUNT); do
5223                 index=saved_ostindex$i
5224                 eval OSTINDEX$i=${!index}
5225         done
5226         OSTCOUNT=$saved_ostcount
5227
5228         formatall
5229 }
5230
5231 # The main purpose of this test is to ensure the OST_INDEX_LIST functions as
5232 # expected. This test uses OST_INDEX_LIST to format OSTs with a randomly
5233 # assigned index and ensures we can mount such a formatted file system
5234 test_81() { # LU-4665
5235         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.54) ]] ||
5236                 { skip "Need MDS version at least 2.6.54" && return; }
5237         [[ $OSTCOUNT -ge 3 ]] || { skip_env "Need at least 3 OSTs" && return; }
5238
5239         stopall
5240
5241         # Each time RANDOM is referenced, a random integer between 0 and 32767
5242         # is generated.
5243         local i
5244         local saved_ostindex1=$OSTINDEX1
5245         for i in 65535 $((RANDOM + 65536)); do
5246                 echo -e "\nFormat ost1 with --index=$i, should fail"
5247                 OSTINDEX1=$i
5248                 if add ost1 $(mkfs_opts ost1 $(ostdevname 1)) --reformat \
5249                    $(ostdevname 1) $(ostvdevname 1); then
5250                         OSTINDEX1=$saved_ostindex1
5251                         error "format ost1 with --index=$i should fail"
5252                 fi
5253         done
5254         OSTINDEX1=$saved_ostindex1
5255
5256         save_ostindex 3
5257
5258         # Format OSTs with random sparse indices.
5259         trap "restore_ostindex" EXIT
5260         echo -e "\nFormat $OSTCOUNT OSTs with sparse indices"
5261         OST_INDEX_LIST=[0,$((RANDOM * 2 % 65533 + 1)),65534] formatall
5262
5263         # Setup and check Lustre filesystem.
5264         start_mgsmds || error "start_mgsmds failed"
5265         for i in $(seq $OSTCOUNT); do
5266                 start ost$i $(ostdevname $i) $OST_MOUNT_OPTS ||
5267                         error "start ost$i failed"
5268         done
5269
5270         mount_client $MOUNT || error "mount client $MOUNT failed"
5271         check_mount || error "check client $MOUNT failed"
5272
5273         # Check max_easize.
5274         local max_easize=$($LCTL get_param -n llite.*.max_easize)
5275         [[ $max_easize -eq 128 ]] ||
5276                 error "max_easize is $max_easize, should be 128 bytes"
5277
5278         restore_ostindex
5279 }
5280 run_test 81 "sparse OST indexing"
5281
5282 # Wait OSTs to be active on both client and MDT side.
5283 wait_osts_up() {
5284         local cmd="$LCTL get_param -n lov.$FSNAME-clilov-*.target_obd |
5285                 awk 'BEGIN {c = 0} /ACTIVE/{c += 1} END {printf \\\"%d\\\", c}'"
5286         wait_update $HOSTNAME "eval $cmd" $OSTCOUNT ||
5287                 error "wait_update OSTs up on client failed"
5288
5289         cmd="$LCTL get_param -n lod.$FSNAME-MDT*-*.target_obd | sort -u |
5290              awk 'BEGIN {c = 0} /ACTIVE/{c += 1} END {printf \\\"%d\\\", c}'"
5291         wait_update_facet $SINGLEMDS "eval $cmd" $OSTCOUNT ||
5292                 error "wait_update OSTs up on MDT failed"
5293 }
5294
5295 # Here we exercise the stripe placement functionality on a file system that
5296 # has formatted the OST with a random index. With the file system the following
5297 # functionality is tested:
5298 #
5299 # 1. Creating a new file with a specific stripe layout.
5300 #
5301 # 2. Modifiy a existing empty file with a specific stripe layout.
5302 #
5303 # 3. Ensure we fail to set the stripe layout of a file that already has one.
5304 #
5305 # 4. If ost-index is defined we need to ensure it is the first entry in the
5306 #    ost index list returned by lfs getstripe.
5307 #
5308 # 5. Lastly ensure this functionality fails with directories.
5309 test_82a() { # LU-4665
5310         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.54) ]] ||
5311                 { skip "Need MDS version at least 2.6.54" && return; }
5312         [[ $OSTCOUNT -ge 3 ]] || { skip_env "Need at least 3 OSTs" && return; }
5313
5314         stopall
5315
5316         save_ostindex 3
5317
5318         # Format OSTs with random sparse indices.
5319         local i
5320         local index
5321         local ost_indices
5322         for i in $(seq $OSTCOUNT); do
5323                 index=$((RANDOM * 2))
5324                 ost_indices+=" $index"
5325         done
5326         ost_indices=$(comma_list $ost_indices)
5327
5328         trap "restore_ostindex" EXIT
5329         echo -e "\nFormat $OSTCOUNT OSTs with sparse indices $ost_indices"
5330         OST_INDEX_LIST=[$ost_indices] formatall
5331
5332         # Setup Lustre filesystem.
5333         start_mgsmds || error "start_mgsmds failed"
5334         for i in $(seq $OSTCOUNT); do
5335                 start ost$i $(ostdevname $i) $OST_MOUNT_OPTS ||
5336                         error "start ost$i failed"
5337         done
5338
5339         mount_client $MOUNT || error "mount client $MOUNT failed"
5340         wait_osts_up
5341
5342         $LFS df $MOUNT || error "$LFS df $MOUNT failed"
5343         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
5344
5345         # 1. If the file does not exist, new file will be created
5346         #    with specified OSTs.
5347         local file=$DIR/$tdir/$tfile-1
5348         local cmd="$SETSTRIPE -o $ost_indices $file"
5349         echo -e "\n$cmd"
5350         eval $cmd || error "$cmd failed"
5351         check_stripe_count $file $OSTCOUNT
5352         check_obdidx $file $ost_indices
5353         dd if=/dev/urandom of=$file count=1 bs=1M > /dev/null 2>&1 ||
5354                 error "write $file failed"
5355
5356         # 2. If the file already exists and is an empty file, the file
5357         #    will be attached with specified layout.
5358         file=$DIR/$tdir/$tfile-2
5359         mcreate $file || error "mcreate $file failed"
5360         cmd="$SETSTRIPE -o $ost_indices $file"
5361         echo -e "\n$cmd"
5362         eval $cmd || error "$cmd failed"
5363         dd if=/dev/urandom of=$file count=1 bs=1M > /dev/null 2>&1 ||
5364                 error "write $file failed"
5365         check_stripe_count $file $OSTCOUNT
5366         check_obdidx $file $ost_indices
5367
5368         # 3. If the file already has a valid layout attached, the command
5369         #    should fail with EBUSY.
5370         echo -e "\n$cmd"
5371         eval $cmd && error "stripe is already set on $file, $cmd should fail"
5372
5373         # 4. If [--stripe-index|-i <start_ost_idx>] is used, the index must
5374         #    be in the OST indices list.
5375         local start_ost_idx=${ost_indices##*,}
5376         file=$DIR/$tdir/$tfile-3
5377         cmd="$SETSTRIPE -o $ost_indices -i $start_ost_idx $file"
5378         echo -e "\n$cmd"
5379         eval $cmd || error "$cmd failed"
5380         check_stripe_count $file $OSTCOUNT
5381         check_obdidx $file $ost_indices
5382         check_start_ost_idx $file $start_ost_idx
5383
5384         file=$DIR/$tdir/$tfile-4
5385         cmd="$SETSTRIPE"
5386         cmd+=" -o $(exclude_items_from_list $ost_indices $start_ost_idx)"
5387         cmd+=" -i $start_ost_idx $file"
5388         echo -e "\n$cmd"
5389         eval $cmd && error "index $start_ost_idx should be in $ost_indices"
5390
5391         # 5. Specifying OST indices for directory should fail with ENOSUPP.
5392         local dir=$DIR/$tdir/$tdir
5393         mkdir $dir || error "mkdir $dir failed"
5394         cmd="$SETSTRIPE -o $ost_indices $dir"
5395         echo -e "\n$cmd"
5396         eval $cmd && error "$cmd should fail, specifying OST indices" \
5397                            "for directory is not supported"
5398
5399         restore_ostindex
5400 }
5401 run_test 82a "specify OSTs for file (succeed) or directory (fail)"
5402
5403 cleanup_82b() {
5404         trap 0
5405
5406         # Remove OSTs from a pool and destroy the pool.
5407         destroy_pool $ost_pool || true
5408
5409         restore_ostindex
5410 }
5411
5412 # Test 82b is run to ensure that if the user supplies a pool with a specific
5413 # stripe layout that it behaves proprerly. It should fail in the case that
5414 # the supplied OST index list points to OSTs not contained in the user
5415 # supplied pool.
5416 test_82b() { # LU-4665
5417         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.54) ]] ||
5418                 { skip "Need MDS version at least 2.6.54" && return; }
5419         [[ $OSTCOUNT -ge 4 ]] || { skip_env "Need at least 4 OSTs" && return; }
5420
5421         stopall
5422
5423         save_ostindex 4
5424
5425         # Format OSTs with random sparse indices.
5426         local i
5427         local index
5428         local ost_indices
5429         for i in $(seq $OSTCOUNT); do
5430                 index=$((RANDOM * 2))
5431                 ost_indices+=" $index"
5432         done
5433         ost_indices=$(comma_list $ost_indices)
5434
5435         trap "restore_ostindex" EXIT
5436         echo -e "\nFormat $OSTCOUNT OSTs with sparse indices $ost_indices"
5437         OST_INDEX_LIST=[$ost_indices] formatall
5438
5439         # Setup Lustre filesystem.
5440         start_mgsmds || error "start_mgsmds failed"
5441         for i in $(seq $OSTCOUNT); do
5442                 start ost$i $(ostdevname $i) $OST_MOUNT_OPTS ||
5443                         error "start ost$i failed"
5444         done
5445
5446         mount_client $MOUNT || error "mount client $MOUNT failed"
5447         wait_osts_up
5448         $LFS df $MOUNT || error "$LFS df $MOUNT failed"
5449         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
5450
5451         # Create a new pool and add OSTs into it.
5452         local ost_pool=$FSNAME.$TESTNAME
5453         create_pool $ost_pool || error "create OST pool $ost_pool failed"
5454
5455         trap - EXIT
5456         trap "cleanup_82b" EXIT
5457
5458         local ost_idx_in_list=${ost_indices##*,}
5459         local ost_idx_in_pool=$(exclude_items_from_list $ost_indices \
5460                                 $ost_idx_in_list)
5461
5462         local ost_targets="$FSNAME-OST["
5463         for i in ${ost_idx_in_pool//,/ }; do
5464                 ost_targets=$ost_targets$(printf "%04x," $i)
5465         done
5466         ost_targets="${ost_targets%,}]"
5467
5468         local ost_targets_uuid=$(for i in ${ost_idx_in_pool//,/ }; \
5469                                  do printf "$FSNAME-OST%04x_UUID\n" $i; done |
5470                                  sort -u | tr '\n' ' ')
5471
5472         local cmd="$LCTL pool_add $ost_pool $ost_targets"
5473         do_facet mgs $cmd || error "$cmd failed"
5474         wait_update $HOSTNAME "$LCTL get_param -n lov.$FSNAME-*.pools.$TESTNAME|
5475                                sort -u | tr '\n' ' ' " "$ost_targets_uuid" ||
5476                                         error "wait_update $ost_pool failed"
5477         pool_list $ost_pool || error "list OST pool $ost_pool failed"
5478
5479         # If [--pool|-p <pool_name>] is set with [--ost-list|-o <ost_indices>],
5480         # then the OSTs must be the members of the pool.
5481         local file=$DIR/$tdir/$tfile
5482         cmd="$SETSTRIPE -p $ost_pool -o $ost_idx_in_list $file"
5483         echo -e "\n$cmd"
5484         eval $cmd && error "OST with index $ost_idx_in_list should be" \
5485                            "in OST pool $ost_pool"
5486
5487         # Only select OST $ost_idx_in_list from $ost_pool for file.
5488         ost_idx_in_list=${ost_idx_in_pool#*,}
5489         cmd="$SETSTRIPE -p $ost_pool -o $ost_idx_in_list $file"
5490         echo -e "\n$cmd"
5491         eval $cmd || error "$cmd failed"
5492         cmd="$GETSTRIPE $file"
5493         echo -e "\n$cmd"
5494         eval $cmd || error "$cmd failed"
5495         check_stripe_count $file 2
5496         check_obdidx $file $ost_idx_in_list
5497         dd if=/dev/urandom of=$file count=1 bs=1M > /dev/null 2>&1 ||
5498                 error "write $file failed"
5499
5500         cleanup_82b
5501 }
5502 run_test 82b "specify OSTs for file with --pool and --ost-list options"
5503
5504 test_83() {
5505         [[ $(lustre_version_code ost1) -ge $(version_code 2.6.91) ]] ||
5506                 { skip "Need OST version at least 2.6.91" && return 0; }
5507         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
5508                 skip "Only applicable to ldiskfs-based MDTs"
5509                 return
5510         fi
5511
5512         local dev
5513         local ostmnt
5514         local fstype
5515         local mnt_opts
5516
5517         dev=$(ostdevname 1)
5518         ostmnt=$(facet_mntpt ost1)
5519         fstype=$(facet_fstype ost1)
5520
5521         # Mount the OST as an ldiskfs filesystem.
5522         log "mount the OST $dev as a $fstype filesystem"
5523         add ost1 $(mkfs_opts ost1 $dev) $FSTYPE_OPT \
5524                 --reformat $dev $dev > /dev/null ||
5525                 error "format ost1 error"
5526
5527         if ! test -b $dev; then
5528                 mnt_opts=$(csa_add "$OST_MOUNT_OPTS" -o loop)
5529         fi
5530         echo "mnt_opts $mnt_opts"
5531         do_facet ost1 mount -t $fstype $dev \
5532                 $ostmnt $mnt_opts
5533         # Run llverfs on the mounted ldiskfs filesystem.
5534         # It is needed to get ENOSPACE.
5535         log "run llverfs in partial mode on the OST $fstype $ostmnt"
5536         do_rpc_nodes $(facet_host ost1) run_llverfs $ostmnt -vpl \
5537                 "no" || error "run_llverfs error on $fstype"
5538
5539         # Unmount the OST.
5540         log "unmount the OST $dev"
5541         stop ost1
5542
5543         # Delete file IO_scrub. Later osd_scrub_setup will try to
5544         # create "IO_scrub" but will get ENOSPACE.
5545         writeconf_all
5546         echo "start ost1 service on `facet_active_host ost1`"
5547         start ost1 `ostdevname 1` $OST_MOUNT_OPTS
5548
5549         local err
5550         err=$(do_facet ost1 dmesg | grep "VFS: Busy inodes after unmount of")
5551         echo "string err $err"
5552         [ -z "$err" ] || error $err
5553         reformat
5554 }
5555 run_test 83 "ENOSPACE on OST doesn't cause message VFS: \
5556 Busy inodes after unmount ..."
5557
5558 recovery_time_min() {
5559         local CONNECTION_SWITCH_MIN=5
5560         local CONNECTION_SWITCH_INC=5
5561         local CONNECTION_SWITCH_MAX
5562         local RECONNECT_DELAY_MAX
5563         local INITIAL_CONNECT_TIMEOUT
5564         local max
5565         local TO_20
5566
5567         #CONNECTION_SWITCH_MAX=min(50, max($CONNECTION_SWITCH_MIN,$TIMEOUT)
5568         (($CONNECTION_SWITCH_MIN>$TIMEOUT)) && \
5569                 max=$CONNECTION_SWITCH_MIN || max=$TIMEOUT
5570         (($max<50)) && CONNECTION_SWITCH_MAX=$max || CONNECTION_SWITCH_MAX=50
5571
5572         #INITIAL_CONNECT_TIMEOUT = max(CONNECTION_SWITCH_MIN, \
5573         #obd_timeout/20)
5574         TO_20=$(($TIMEOUT/20))
5575         (($CONNECTION_SWITCH_MIN>$TO_20)) && \
5576                 INITIAL_CONNECT_TIMEOUT=$CONNECTION_SWITCH_MIN || \
5577                 INITIAL_CONNECT_TIMEOUT=$TO_20
5578
5579         RECONNECT_DELAY_MAX=$(($CONNECTION_SWITCH_MAX+$CONNECTION_SWITCH_INC+ \
5580                                 $INITIAL_CONNECT_TIMEOUT))
5581         echo $((2*$RECONNECT_DELAY_MAX))
5582 }
5583
5584 test_84() {
5585         local facet=$SINGLEMDS
5586         local num=$(echo $facet | tr -d "mds")
5587         local dev=$(mdsdevname $num)
5588         local time_min=$(recovery_time_min)
5589         local recovery_duration
5590         local completed_clients
5591         local correct_clients
5592         local wrap_up=5
5593
5594         load_modules
5595         echo "start mds service on $(facet_active_host $facet)"
5596         start_mds \
5597         "-o recovery_time_hard=$time_min,recovery_time_soft=$time_min" $@ ||
5598                 error "start MDS failed"
5599
5600         start_ost || error "start OST0000 failed"
5601         start_ost2 || error "start OST0001 failed"
5602
5603         echo "recovery_time=$time_min, timeout=$TIMEOUT, wrap_up=$wrap_up"
5604
5605         mount_client $MOUNT1 || error "mount $MOUNT1 failed"
5606         mount_client $MOUNT2 || error "mount $MOUNT2 failed"
5607         # make sure new superblock labels are sync'd before disabling writes
5608         sync_all_data
5609         sleep 5
5610
5611         replay_barrier $SINGLEMDS
5612         createmany -o $DIR1/$tfile-%d 1000
5613
5614         # We need to catch the end of recovery window to extend it.
5615         # Skip 5 requests and add delay to request handling.
5616         #define OBD_FAIL_TGT_REPLAY_DELAY  0x709 | FAIL_SKIP
5617         do_facet $SINGLEMDS "lctl set_param fail_loc=0x20000709 fail_val=5"
5618
5619         facet_failover --fsck $SINGLEMDS || error "failover: $?"
5620         client_up
5621
5622         echo "recovery status"
5623         do_facet $SINGLEMDS \
5624                 "$LCTL get_param -n mdt.$FSNAME-MDT0000.recovery_status"
5625
5626         recovery_duration=$(do_facet $SINGLEMDS \
5627                 "$LCTL get_param -n mdt.$FSNAME-MDT0000.recovery_status" |
5628                 awk '/recovery_duration/ { print $2 }')
5629         (( $recovery_duration > $time_min + $wrap_up )) &&
5630                 error "recovery_duration > recovery_time_hard + wrap up"
5631         completed_clients=$(do_facet $SINGLEMDS \
5632                 "$LCTL get_param -n mdt.$FSNAME-MDT0000.recovery_status" |
5633                 awk '/completed_clients/ { print $2 }')
5634
5635         correct_clients="$MDSCOUNT/$((MDSCOUNT+1))"
5636         [ "$completed_clients" = "${correct_clients}" ] ||
5637                 error "$completed_clients != $correct_clients"
5638
5639         do_facet $SINGLEMDS "lctl set_param fail_loc=0"
5640         umount_client $MOUNT1
5641         umount_client $MOUNT2
5642
5643         stop_ost
5644         stop_ost2
5645         stop_mds
5646 }
5647 run_test 84 "check recovery_hard_time"
5648
5649 test_85() {
5650         [[ $(lustre_version_code ost1) -ge $(version_code 2.7.55) ]] ||
5651                 { skip "Need OST version at least 2.7.55" && return 0; }
5652 ##define OBD_FAIL_OSD_OST_EA_FID_SET 0x197
5653         do_facet ost1 "lctl set_param fail_loc=0x197"
5654         start_ost
5655         stop_ost
5656 }
5657 run_test 85 "osd_ost init: fail ea_fid_set"
5658
5659 test_86() {
5660         [ "$(facet_fstype ost1)" = "zfs" ] &&
5661                 skip "LU-6442: no such mkfs params for ZFS OSTs" && return
5662
5663         local OST_OPTS="$(mkfs_opts ost1 $(ostdevname 1)) \
5664                 --reformat $(ostdevname 1) $(ostvdevname 1)"
5665
5666         local NEWSIZE=1024
5667         local OLDSIZE=$(do_facet ost1 "$DEBUGFS -c -R stats $(ostdevname 1)" |
5668                 awk '/Flex block group size: / { print $NF; exit; }')
5669
5670         local opts=OST_OPTS
5671         if [[ ${!opts} != *mkfsoptions* ]]; then
5672                 eval opts=\"${!opts} \
5673                         --mkfsoptions='\\\"-O flex_bg -G $NEWSIZE\\\"'\"
5674         else
5675                 val=${!opts//--mkfsoptions=\\\"/ \
5676                         --mkfsoptions=\\\"-O flex_bg -G $NEWSIZE }
5677                 eval opts='${val}'
5678         fi
5679
5680         echo "params: $opts"
5681
5682         add ost1 $opts || error "add ost1 failed with new params"
5683
5684         local FOUNDSIZE=$(do_facet ost1 "$DEBUGFS -c -R stats $(ostdevname 1)" |
5685                 awk '/Flex block group size: / { print $NF; exit; }')
5686
5687         [[ $FOUNDSIZE == $NEWSIZE ]] ||
5688                 error "Flex block group size: $FOUNDSIZE, expected: $NEWSIZE"
5689         return 0
5690 }
5691 run_test 86 "Replacing mkfs.lustre -G option"
5692
5693 test_87() { #LU-6544
5694         [[ $(lustre_version_code $SINGLEMDS1) -ge $(version_code 2.7.56) ]] ||
5695                 { skip "Need MDS version at least 2.7.56" && return; }
5696         [[ $(facet_fstype $SINGLEMDS) != ldiskfs ]] &&
5697                 { skip "Only applicable to ldiskfs-based MDTs" && return; }
5698         [[ $OSTCOUNT -gt 69 ]] &&
5699                 { skip "Ignore wide striping situation" && return; }
5700
5701         local mdsdev=$(mdsdevname 1)
5702         local mdsvdev=$(mdsvdevname 1)
5703         local file=$DIR/$tfile
5704         local mntpt=$(facet_mntpt $SINGLEMDS)
5705         local used_xattr_blk=0
5706         local inode_size=${1:-512}
5707         local left_size=0
5708         local xtest="trusted.test"
5709         local value
5710         local orig
5711         local i
5712
5713         #Please see LU-6544 for MDT inode size calculation
5714         if [ $OSTCOUNT -gt 26 ]; then
5715                 inode_size=2048
5716         elif [ $OSTCOUNT -gt 5 ]; then
5717                 inode_size=1024
5718         fi
5719         left_size=$(expr $inode_size - \
5720                         156 - \
5721                         32 - \
5722                         32 - $OSTCOUNT \* 24 - 16 - 3 -  \
5723                         24 - 16 - 3 - \
5724                         24 - 18 - $(expr length $tfile) - 16 - 4)
5725         if [ $left_size -le 0 ]; then
5726                 echo "No space($left_size) is expected in inode."
5727                 echo "Try 1-byte xattr instead to verify this."
5728                 left_size=1
5729         else
5730                 echo "Estimate: at most $left_size-byte space left in inode."
5731         fi
5732
5733         unload_modules
5734         reformat
5735
5736         add mds1 $(mkfs_opts mds1 ${mdsdev}) --stripe-count-hint=$OSTCOUNT \
5737                 --reformat $mdsdev $mdsvdev || error "add mds1 failed"
5738         start_mdt 1 > /dev/null || error "start mdt1 failed"
5739         for i in $(seq $OSTCOUNT); do
5740                 start ost$i $(ostdevname $i) $OST_MOUNT_OPTS > /dev/null ||
5741                         error "start ost$i failed"
5742         done
5743         mount_client $MOUNT > /dev/null || error "mount client $MOUNT failed"
5744         check_mount || error "check client $MOUNT failed"
5745
5746         #set xattr
5747         $SETSTRIPE -c -1 $file || error "$SETSTRIPE -c -1 $file failed"
5748         $GETSTRIPE $file || error "$GETSTRIPE $file failed"
5749         i=$($GETSTRIPE -c $file)
5750         if [ $i -ne $OSTCOUNT ]; then
5751                 left_size=$(expr $left_size + $(expr $OSTCOUNT - $i) \* 24)
5752                 echo -n "Since only $i out $OSTCOUNT OSTs are used, "
5753                 echo -n "the expected left space is changed to "
5754                 echo "$left_size bytes at most."
5755         fi
5756         value=$(generate_string $left_size)
5757         setfattr -n $xtest -v $value $file
5758         orig=$(get_xattr_value $xtest $file)
5759         [[ "$orig" != "$value" ]] && error "$xtest changed"
5760
5761         #Verify if inode has some expected space left
5762         umount $MOUNT > /dev/null || error "umount $MOUNT failed"
5763         stop_mdt 1 > /dev/null || error "stop mdt1 failed"
5764         mount_ldiskfs $SINGLEMDS || error "mount -t ldiskfs $SINGLEMDS failed"
5765
5766         do_facet $SINGLEMDS ls -sal $mntpt/ROOT/$tfile
5767         used_xattr_blk=$(do_facet $SINGLEMDS ls -s $mntpt/ROOT/$tfile |
5768                         awk '{ print $1 }')
5769         [[ $used_xattr_blk -eq 0 ]] &&
5770                 error "Please check MDS inode size calculation: \
5771                        more than $left_size-byte space left in inode."
5772         echo "Verified: at most $left_size-byte space left in inode."
5773
5774         stopall
5775 }
5776 run_test 87 "check if MDT inode can hold EAs with N stripes properly"
5777
5778 test_88() {
5779         [ "$(facet_fstype mds1)" == "zfs" ] &&
5780                 skip "LU-6662: no implementation for ZFS" && return
5781
5782         load_modules
5783
5784         add mds1 $(mkfs_opts mds1 $(mdsdevname 1)) \
5785                 --reformat $(mdsdevname 1) || error "add mds1 failed"
5786
5787         do_facet mds1 "$TUNEFS $(mdsdevname 1) |
5788                 grep -e \".*opts:.*errors=remount-ro.*\"" ||
5789                 error "default mount options is missing"
5790
5791         add mds1 $(mkfs_opts mds1 $(mdsdevname 1)) \
5792                 --mountfsoptions="user_xattr,errors=panic" \
5793                 --reformat $(mdsdevname 1) || error "add mds1 failed"
5794
5795         do_facet mds1 "$TUNEFS $(mdsdevname 1) |
5796                 grep -e \".*opts:.*errors=panic.*\"" ||
5797                 error "user can't override default mount options"
5798 }
5799 run_test 88 "check the default mount options can be overridden"
5800
5801 # $1 test directory
5802 # $2 (optional) value of max_mod_rpcs_in_flight to set
5803 check_max_mod_rpcs_in_flight() {
5804         local dir="$1"
5805         local mmr="$2"
5806         local idx
5807         local facet
5808         local tmp
5809         local i
5810
5811         idx=$(printf "%04x" $($LFS getdirstripe -i $dir))
5812         facet="mds$((0x$idx + 1))"
5813
5814         if [ -z "$mmr" ]; then
5815                 # get value of max_mod_rcps_in_flight
5816                 mmr=$($LCTL get_param -n \
5817                         mdc.$FSNAME-MDT$idx-mdc-*.max_mod_rpcs_in_flight) ||
5818                         error "Unable to get max_mod_rpcs_in_flight"
5819                 echo "max_mod_rcps_in_flight is $mmr"
5820         else
5821                 # set value of max_mod_rpcs_in_flight
5822                 $LCTL set_param \
5823                     mdc.$FSNAME-MDT$idx-mdc-*.max_mod_rpcs_in_flight=$mmr ||
5824                         error "Unable to set max_mod_rpcs_in_flight to $mmr"
5825                 echo "max_mod_rpcs_in_flight set to $mmr"
5826         fi
5827
5828         # create mmr+1 files
5829         echo "creating $((mmr + 1)) files ..."
5830         umask 0022
5831         for i in $(seq $((mmr + 1))); do
5832                 touch $dir/file-$i
5833         done
5834
5835         ### part 1 ###
5836
5837         # consumes mmr-1 modify RPC slots
5838         #define OBD_FAIL_MDS_REINT_MULTI_NET     0x159
5839         # drop requests on MDT so that RPC slots are consumed
5840         # during all the request resend interval
5841         do_facet $facet "$LCTL set_param fail_loc=0x159"
5842         echo "launch $((mmr - 1)) chmod in parallel ..."
5843         for i in $(seq $((mmr - 1))); do
5844                 chmod 0600 $dir/file-$i &
5845         done
5846         sleep 1
5847
5848         # send one additional modify RPC
5849         do_facet $facet "$LCTL set_param fail_loc=0"
5850         echo "launch 1 additional chmod in parallel ..."
5851         chmod 0600 $dir/file-$mmr &
5852         sleep 1
5853
5854         # check this additional modify RPC get a modify RPC slot
5855         # and succeed its operation
5856         checkstat -vp 0600 $dir/file-$mmr ||
5857                 error "Unable to send $mmr modify RPCs in parallel"
5858         wait
5859
5860         ### part 2 ###
5861
5862         # consumes mmr modify RPC slots
5863         #define OBD_FAIL_MDS_REINT_MULTI_NET     0x159
5864         # drop requests on MDT so that RPC slots are consumed
5865         # during all the request resend interval
5866         do_facet $facet "$LCTL set_param fail_loc=0x159"
5867         echo "launch $mmr chmod in parallel ..."
5868         for i in $(seq $mmr); do
5869                 chmod 0666 $dir/file-$i &
5870         done
5871         sleep 1
5872
5873         # send one additional modify RPC
5874         do_facet $facet "$LCTL set_param fail_loc=0"
5875         echo "launch 1 additional chmod in parallel ..."
5876         chmod 0666 $dir/file-$((mmr + 1)) &
5877         sleep 1
5878
5879         # check this additional modify RPC blocked getting a modify RPC slot
5880         checkstat -vp 0644 $dir/file-$((mmr + 1)) ||
5881                 error "Unexpectedly send $(($mmr + 1)) modify RPCs in parallel"
5882         wait
5883 }
5884
5885 test_90a() {
5886         reformat
5887         if ! combined_mgs_mds ; then
5888                 start_mgs
5889         fi
5890         setup
5891
5892         [[ $($LCTL get_param mdc.*.import |
5893              grep "connect_flags:.*multi_mod_rpc") ]] ||
5894                 { skip "Need MDC with 'multi_mod_rpcs' feature"; return 0; }
5895
5896         # check default value
5897         $LFS mkdir -c1 $DIR/$tdir || error "mkdir $DIR/$tdir failed"
5898         check_max_mod_rpcs_in_flight $DIR/$tdir
5899
5900         cleanup
5901 }
5902 run_test 90a "check max_mod_rpcs_in_flight is enforced"
5903
5904 test_90b() {
5905         local idx
5906         local facet
5907         local tmp
5908         local mmrpc
5909
5910         setup
5911
5912         [[ $($LCTL get_param mdc.*.import |
5913              grep "connect_flags:.*multi_mod_rpc") ]] ||
5914                 { skip "Need MDC with 'multi_mod_rpcs' feature"; return 0; }
5915
5916         ### test 1.
5917         # update max_mod_rpcs_in_flight
5918         $LFS mkdir -c1 $DIR/${tdir}1 || error "mkdir $DIR/${tdir}1 failed"
5919         check_max_mod_rpcs_in_flight $DIR/${tdir}1 1
5920
5921         ### test 2.
5922         # check client is able to send multiple modify RPCs in paralell
5923         tmp=$($LCTL get_param -n mdc.$FSNAME-MDT*-mdc-*.import |
5924                 grep -c "multi_mod_rpcs")
5925         if [ "$tmp" -ne $MDSCOUNT ]; then
5926                 echo "Client not able to send multiple modify RPCs in parallel"
5927                 cleanup
5928                 return
5929         fi
5930
5931         # update max_mod_rpcs_in_flight
5932         $LFS mkdir -c1 $DIR/${tdir}2 || error "mkdir $DIR/${tdir}2 failed"
5933         check_max_mod_rpcs_in_flight $DIR/${tdir}2 5
5934
5935         ### test 3.
5936         $LFS mkdir -c1 $DIR/${tdir}3 || error "mkdir $DIR/${tdir}3 failed"
5937         idx=$(printf "%04x" $($LFS getdirstripe -i $DIR/${tdir}3))
5938         facet="mds$((0x$idx + 1))"
5939
5940         # save MDT max_mod_rpcs_per_client
5941         mmrpc=$(do_facet $facet \
5942                     cat /sys/module/mdt/parameters/max_mod_rpcs_per_client)
5943
5944         # update max_mod_rpcs_in_flight
5945         umount_client $MOUNT
5946         do_facet $facet \
5947                 "echo 16 > /sys/module/mdt/parameters/max_mod_rpcs_per_client"
5948         mount_client $MOUNT
5949         $LCTL set_param mdc.$FSNAME-MDT$idx-mdc-*.max_rpcs_in_flight=17
5950         check_max_mod_rpcs_in_flight $DIR/${tdir}3 16
5951
5952         # restore MDT max_mod_rpcs_per_client initial value
5953         do_facet $facet \
5954                 "echo $mmrpc > /sys/module/mdt/parameters/max_mod_rpcs_per_client"
5955
5956         rm -rf $DIR/${tdir}?
5957         cleanup
5958 }
5959 run_test 90b "check max_mod_rpcs_in_flight is enforced after update"
5960
5961 test_90c() {
5962         local tmp
5963         local mrif
5964         local mmrpc
5965
5966         setup
5967
5968         [[ $($LCTL get_param mdc.*.import |
5969              grep "connect_flags:.*multi_mod_rpc") ]] ||
5970                 { skip "Need MDC with 'multi_mod_rpcs' feature"; return 0; }
5971
5972         # check client is able to send multiple modify RPCs in paralell
5973         tmp=$($LCTL get_param -n mdc.$FSNAME-MDT*-mdc-*.import |
5974                 grep -c "multi_mod_rpcs")
5975         if [ "$tmp" -ne $MDSCOUNT ]; then
5976                 skip "Client not able to send multiple modify RPCs in parallel"
5977                 cleanup
5978                 return
5979         fi
5980
5981         # get max_rpcs_in_flight value
5982         mrif=$($LCTL get_param -n mdc.$FSNAME-MDT0000-mdc-*.max_rpcs_in_flight)
5983         echo "max_rpcs_in_flight is $mrif"
5984
5985         # get MDT max_mod_rpcs_per_client
5986         mmrpc=$(do_facet mds1 \
5987                     cat /sys/module/mdt/parameters/max_mod_rpcs_per_client)
5988         echo "max_mod_rpcs_per_client is $mmrpc"
5989
5990         # testcase 1
5991         # attempt to set max_mod_rpcs_in_flight to max_rpcs_in_flight value
5992         # prerequisite: set max_mod_rpcs_per_client to max_rpcs_in_flight value
5993         umount_client $MOUNT
5994         do_facet mds1 \
5995                 "echo $mrif > /sys/module/mdt/parameters/max_mod_rpcs_per_client"
5996         mount_client $MOUNT
5997
5998         $LCTL set_param \
5999             mdc.$FSNAME-MDT0000-mdc-*.max_mod_rpcs_in_flight=$mrif &&
6000             error "set max_mod_rpcs_in_flight to $mrif should fail"
6001
6002         umount_client $MOUNT
6003         do_facet mds1 \
6004                 "echo $mmrpc > /sys/module/mdt/parameters/max_mod_rpcs_per_client"
6005         mount_client $MOUNT
6006
6007         # testcase 2
6008         # attempt to set max_mod_rpcs_in_flight to max_mod_rpcs_per_client+1
6009         # prerequisite: set max_rpcs_in_flight to max_mod_rpcs_per_client+2
6010         $LCTL set_param \
6011             mdc.$FSNAME-MDT0000-mdc-*.max_rpcs_in_flight=$((mmrpc + 2))
6012
6013         $LCTL set_param \
6014             mdc.$FSNAME-MDT0000-mdc-*.max_mod_rpcs_in_flight=$((mmrpc + 1)) &&
6015             error "set max_mod_rpcs_in_flight to $((mmrpc + 1)) should fail"
6016
6017         cleanup
6018 }
6019 run_test 90c "check max_mod_rpcs_in_flight update limits"
6020
6021 test_90d() {
6022         local idx
6023         local facet
6024         local mmr
6025         local i
6026         local pid
6027
6028         setup
6029
6030         [[ $($LCTL get_param mdc.*.import |
6031              grep "connect_flags:.*multi_mod_rpc") ]] ||
6032                 { skip "Need MDC with 'multi_mod_rpcs' feature"; return 0; }
6033
6034         $LFS mkdir -c1 $DIR/$tdir || error "mkdir $DIR/$tdir failed"
6035         idx=$(printf "%04x" $($LFS getdirstripe -i $DIR/$tdir))
6036         facet="mds$((0x$idx + 1))"
6037
6038         # check client version supports multislots
6039         tmp=$($LCTL get_param -N \
6040                 mdc.$FSNAME-MDT$idx-mdc-*.max_mod_rpcs_in_flight)
6041         if [ -z "$tmp" ]; then
6042                 skip "Client does not support multiple modify RPCs in flight"
6043                 cleanup
6044                 return
6045         fi
6046
6047         # get current value of max_mod_rcps_in_flight
6048         mmr=$($LCTL get_param -n \
6049                 mdc.$FSNAME-MDT$idx-mdc-*.max_mod_rpcs_in_flight)
6050         echo "max_mod_rcps_in_flight is $mmr"
6051
6052         # create mmr files
6053         echo "creating $mmr files ..."
6054         umask 0022
6055         for i in $(seq $mmr); do
6056                 touch $DIR/$tdir/file-$i
6057         done
6058
6059         # prepare for close RPC
6060         multiop_bg_pause $DIR/$tdir/file-close O_c
6061         pid=$!
6062
6063         # consumes mmr modify RPC slots
6064         #define OBD_FAIL_MDS_REINT_MULTI_NET     0x159
6065         # drop requests on MDT so that RPC slots are consumed
6066         # during all the request resend interval
6067         do_facet $facet "$LCTL set_param fail_loc=0x159"
6068         echo "launch $mmr chmod in parallel ..."
6069         for i in $(seq $mmr); do
6070                 chmod 0600 $DIR/$tdir/file-$i &
6071         done
6072
6073         # send one additional close RPC
6074         do_facet $facet "$LCTL set_param fail_loc=0"
6075         echo "launch 1 additional close in parallel ..."
6076         kill -USR1 $pid
6077         cancel_lru_locks mdc
6078         sleep 1
6079
6080         # check this additional close RPC get a modify RPC slot
6081         # and multiop process completed
6082         [ -d /proc/$pid ] &&
6083                 error "Unable to send the additional close RPC in parallel"
6084         wait
6085         rm -rf $DIR/$tdir
6086         cleanup
6087 }
6088 run_test 90d "check one close RPC is allowed above max_mod_rpcs_in_flight"
6089
6090 check_uuid_on_ost() {
6091         local nid=$1
6092         do_facet ost1 "$LCTL get_param obdfilter.${FSNAME}*.exports.'$nid'.uuid"
6093 }
6094
6095 check_uuid_on_mdt() {
6096         local nid=$1
6097         do_facet $SINGLEMDS "$LCTL get_param mdt.${FSNAME}*.exports.'$nid'.uuid"
6098 }
6099
6100 test_91() {
6101         local uuid
6102         local nid
6103         local found
6104
6105         load_modules
6106
6107         [[ $(lustre_version_code ost1) -ge $(version_code 2.7.63) ]] ||
6108                 { skip "Need OST version at least 2.7.63" && return 0; }
6109         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.7.63) ]] ||
6110                 { skip "Need MDT version at least 2.7.63" && return 0; }
6111
6112         start_mds || error "MDS start failed"
6113         start_ost || error "unable to start OST"
6114         mount_client $MOUNT || error "client start failed"
6115         check_mount || error "check_mount failed"
6116
6117         if remote_mds; then
6118                 nid=$($LCTL list_nids | head -1 | sed  "s/\./\\\./g")
6119         else
6120                 nid="0@lo"
6121         fi
6122         uuid=$(get_client_uuid $MOUNT)
6123
6124         echo "list nids on mdt:"
6125         do_facet $SINGLEMDS "$LCTL list_param mdt.${FSNAME}*.exports.*"
6126         echo "uuid from $nid:"
6127         do_facet $SINGLEMDS "$LCTL get_param mdt.${FSNAME}*.exports.'$nid'.uuid"
6128
6129         found=$(check_uuid_on_mdt $nid | grep $uuid)
6130         [ -z "$found" ] && error "can't find $uuid $nid on MDT"
6131         found=$(check_uuid_on_ost $nid | grep $uuid)
6132         [ -z "$found" ] && error "can't find $uuid $nid on OST"
6133
6134         # umount the client so it won't reconnect
6135         manual_umount_client --force || error "failed to umount $?"
6136         # shouldn't disappear on MDS after forced umount
6137         found=$(check_uuid_on_mdt $nid | grep $uuid)
6138         [ -z "$found" ] && error "can't find $uuid $nid"
6139
6140         echo "evict $nid"
6141         do_facet $SINGLEMDS \
6142                 "$LCTL set_param -n mdt.${mds1_svc}.evict_client nid:$nid"
6143
6144         found=$(check_uuid_on_mdt $nid | grep $uuid)
6145         [ -n "$found" ] && error "found $uuid $nid on MDT"
6146         found=$(check_uuid_on_ost $nid | grep $uuid)
6147         [ -n "$found" ] && error "found $uuid $nid on OST"
6148
6149         # check it didn't reconnect (being umounted)
6150         sleep $((TIMEOUT+1))
6151         found=$(check_uuid_on_mdt $nid | grep $uuid)
6152         [ -n "$found" ] && error "found $uuid $nid on MDT"
6153         found=$(check_uuid_on_ost $nid | grep $uuid)
6154         [ -n "$found" ] && error "found $uuid $nid on OST"
6155
6156         cleanup
6157 }
6158 run_test 91 "evict-by-nid support"
6159
6160 if ! combined_mgs_mds ; then
6161         stop mgs
6162 fi
6163
6164 cleanup_gss
6165
6166 # restore the values of MDSSIZE and OSTSIZE
6167 MDSSIZE=$STORED_MDSSIZE
6168 OSTSIZE=$STORED_OSTSIZE
6169 reformat
6170
6171 complete $SECONDS
6172 exit_status