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