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