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