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