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