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