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