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