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