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