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