Whamcloud - gitweb
LU-10990 osc: increase default max_dirty_mb to 2G
[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         # make sure that OSTs do not cancel llog cookies before we unmount the MDS
4380 #define OBD_FAIL_OBD_LOG_CANCEL_NET      0x601
4381         do_facet $SINGLEMDS "$LCTL set_param fail_loc=0x601"
4382         unlinkmany $DIR/$tdir/$tfile-%d 100
4383         stop_mds || error "Unable to stop MDS"
4384
4385         local MNTDIR=$(facet_mntpt $SINGLEMDS)
4386         local devname=$(mdsdevname ${SINGLEMDS//mds/})
4387
4388         # remove all files from the OBJECTS dir
4389         mount_fstype $SINGLEMDS
4390
4391         do_facet $SINGLEMDS "find $MNTDIR/O/1/d* -type f -delete"
4392
4393         unmount_fstype $SINGLEMDS
4394         # restart MDS with missing llog files
4395         start_mds || error "unable to start MDS"
4396         do_facet $SINGLEMDS "$LCTL set_param fail_loc=0"
4397         reformat
4398 }
4399 run_test 58 "missing llog files must not prevent MDT from mounting"
4400
4401 test_59() {
4402         start_mgsmds >> /dev/null
4403         local C1=$(count_osts)
4404         if [ $C1 -eq 0 ]; then
4405                 start_ost >> /dev/null
4406                 C1=$(count_osts)
4407         fi
4408         stopall
4409         echo "original ost count: $C1 (expect > 0)"
4410         [ $C1 -gt 0 ] || error "No OSTs in $FSNAME log"
4411         start_mgsmds -o writeconf >> /dev/null || error "MDT start failed"
4412         local C2=$(count_osts)
4413         echo "after mdt writeconf count: $C2 (expect 0)"
4414         [ $C2 -gt 0 ] && error "MDT writeconf should erase OST logs"
4415         echo "OST start without writeconf should fail:"
4416         start_ost >> /dev/null &&
4417                 error "OST start without writeconf didn't fail"
4418         echo "OST start with writeconf should succeed:"
4419         start_ost -o writeconf >> /dev/null || error "OST1 start failed"
4420         local C3=$(count_osts)
4421         echo "after ost writeconf count: $C3 (expect 1)"
4422         [ $C3 -eq 1 ] || error "new OST writeconf should add:"
4423         start_ost2 -o writeconf >> /dev/null || error "OST2 start failed"
4424         local C4=$(count_osts)
4425         echo "after ost2 writeconf count: $C4 (expect 2)"
4426         [ $C4 -eq 2 ] || error "OST2 writeconf should add log"
4427         stop_ost2 >> /dev/null
4428         cleanup_nocli >> /dev/null
4429         #writeconf to remove all ost2 traces for subsequent tests
4430         writeconf_or_reformat
4431 }
4432 run_test 59 "writeconf mount option"
4433
4434 test_60() { # LU-471
4435         local num
4436
4437         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
4438                 skip "ldiskfs only test"
4439                 return
4440         fi
4441
4442         for num in $(seq $MDSCOUNT); do
4443                 add mds${num} $(mkfs_opts mds${num} $(mdsdevname $num)) \
4444                         --mkfsoptions='\" -E stride=64 -O ^uninit_bg\"' \
4445                         --reformat $(mdsdevname $num) $(mdsvdevname $num) ||
4446                         exit 10
4447         done
4448
4449         dump=$(do_facet $SINGLEMDS dumpe2fs $(mdsdevname 1))
4450         [ ${PIPESTATUS[0]} -eq 0 ] || error "dumpe2fs $(mdsdevname 1) failed"
4451
4452         # MDT default has dirdata feature
4453         echo $dump | grep dirdata > /dev/null || error "dirdata is not set"
4454         # we disable uninit_bg feature
4455         echo $dump | grep uninit_bg > /dev/null && error "uninit_bg is set"
4456         # we set stride extended options
4457         echo $dump | grep stride > /dev/null || error "stride is not set"
4458         reformat
4459 }
4460 run_test 60 "check mkfs.lustre --mkfsoptions -E -O options setting"
4461
4462 test_61() { # LU-80
4463         local lxattr=false
4464
4465         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.1.53) ] ||
4466                 { skip "Need MDS version at least 2.1.53"; return 0; }
4467
4468         if [ $(facet_fstype $SINGLEMDS) == ldiskfs ] &&
4469              ! large_xattr_enabled; then
4470                 lxattr=true
4471
4472                 for num in $(seq $MDSCOUNT); do
4473                         do_facet mds${num} $TUNE2FS -O large_xattr \
4474                                 $(mdsdevname $num) ||
4475                                 error "tune2fs on mds $num failed"
4476                 done
4477         fi
4478
4479         combined_mgs_mds || stop_mgs || error "stopping MGS service failed"
4480         setup_noconfig || error "setting up the filesystem failed"
4481         client_up || error "starting client failed"
4482
4483         local file=$DIR/$tfile
4484         touch $file || error "touch $file failed"
4485
4486         local large_value="$(generate_string $(max_xattr_size))"
4487         local small_value="bar"
4488
4489         local name="trusted.big"
4490         log "save large xattr $name on $file"
4491         setfattr -n $name -v $large_value $file ||
4492                 error "saving $name on $file failed"
4493
4494         local new_value=$(get_xattr_value $name $file)
4495         [[ "$new_value" != "$large_value" ]] &&
4496                 error "$name different after saving"
4497
4498         log "shrink value of $name on $file"
4499         setfattr -n $name -v $small_value $file ||
4500                 error "shrinking value of $name on $file failed"
4501
4502         new_value=$(get_xattr_value $name $file)
4503         [[ "$new_value" != "$small_value" ]] &&
4504                 error "$name different after shrinking"
4505
4506         log "grow value of $name on $file"
4507         setfattr -n $name -v $large_value $file ||
4508                 error "growing value of $name on $file failed"
4509
4510         new_value=$(get_xattr_value $name $file)
4511         [[ "$new_value" != "$large_value" ]] &&
4512                 error "$name different after growing"
4513
4514         log "check value of $name on $file after remounting MDS"
4515         fail $SINGLEMDS
4516         new_value=$(get_xattr_value $name $file)
4517         [[ "$new_value" != "$large_value" ]] &&
4518                 error "$name different after remounting MDS"
4519
4520         log "remove large xattr $name from $file"
4521         setfattr -x $name $file || error "removing $name from $file failed"
4522
4523         if $lxattr; then
4524                 stopall || error "stopping for e2fsck run"
4525                 for num in $(seq $MDSCOUNT); do
4526                         run_e2fsck $(facet_active_host mds$num) \
4527                                 $(mdsdevname $num) "-y" ||
4528                                 error "e2fsck MDT$num failed"
4529                 done
4530                 setup_noconfig || error "remounting the filesystem failed"
4531         fi
4532
4533         # need to delete this file to avoid problems in other tests
4534         rm -f $file
4535         stopall || error "stopping systems to turn off large_xattr"
4536         if $lxattr; then
4537                 for num in $(seq $MDSCOUNT); do
4538                         do_facet mds${num} $TUNE2FS -O ^large_xattr \
4539                                 $(mdsdevname $num) ||
4540                                 error "tune2fs on mds $num failed"
4541                 done
4542         fi
4543 }
4544 run_test 61 "large xattr"
4545
4546 test_62() {
4547         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
4548                 skip "ldiskfs only test"
4549                 return
4550         fi
4551
4552         # MRP-118
4553         local mdsdev=$(mdsdevname 1)
4554         local ostdev=$(ostdevname 1)
4555
4556         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
4557                 { skip "Need MDS version at least 2.2.51"; return 0; }
4558
4559         echo "disable journal for mds"
4560         do_facet mds1 $TUNE2FS -O ^has_journal $mdsdev || error "tune2fs failed"
4561         start_mds && error "MDT start should fail"
4562         echo "disable journal for ost"
4563         do_facet ost1 $TUNE2FS -O ^has_journal $ostdev || error "tune2fs failed"
4564         start_ost && error "OST start should fail"
4565         cleanup || error "cleanup failed with rc $?"
4566         reformat_and_config
4567 }
4568 run_test 62 "start with disabled journal"
4569
4570 test_63() {
4571         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
4572                 skip "ldiskfs only test"
4573                 return
4574         fi
4575
4576         do_rpc_nodes $(facet_active_host $SINGLEMDS) load_module ldiskfs
4577         local inode_slab=$(do_facet $SINGLEMDS "cat /proc/slabinfo" |
4578                            awk '/ldiskfs_inode_cache/ { print $5 / $6 }')
4579         if [ -z "$inode_slab" ]; then
4580                 skip "ldiskfs module has not been loaded"
4581                 return
4582         fi
4583
4584         echo "$inode_slab ldiskfs inodes per page"
4585         [ "${inode_slab%.*}" -ge "3" ] && return 0
4586
4587         # If kmalloc-128 is also 1 per page - this is a debug kernel
4588         # and so this is not an error.
4589         local kmalloc128=$(do_facet $SINGLEMDS "cat /proc/slabinfo" |
4590                            awk '/^(kmalloc|size)-128 / { print $5 / $6 }')
4591         # 32 128-byte chunks in 4k
4592         [ "${kmalloc128%.*}" -lt "32" ] ||
4593                 error "ldiskfs inode too big, only $inode_slab objs/page, " \
4594                       "kmalloc128 = $kmalloc128 objs/page"
4595 }
4596 run_test 63 "Verify each page can at least hold 3 ldiskfs inodes"
4597
4598 test_64() {
4599         start_mds || error "unable to start MDS"
4600         start_ost || error "Unable to start OST1"
4601         start_ost2 || error "Unable to start second ost"
4602         mount_client $MOUNT || error "Unable to mount client"
4603         stop_ost2 || error "Unable to stop second ost"
4604         echo "$LFS df"
4605         $LFS df --lazy
4606         umount_client $MOUNT -f || error “unmount $MOUNT failed”
4607         cleanup_nocli || error "cleanup_nocli failed with $?"
4608         #writeconf to remove all ost2 traces for subsequent tests
4609         writeconf_or_reformat
4610 }
4611 run_test 64 "check lfs df --lazy "
4612
4613 test_65() { # LU-2237
4614         # Currently, the test is only valid for ldiskfs backend
4615         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
4616                 skip "ldiskfs only test" && return
4617
4618         local devname=$(mdsdevname ${SINGLEMDS//mds/})
4619         local brpt=$(facet_mntpt brpt)
4620         local opts=""
4621
4622         if ! do_facet $SINGLEMDS "test -b $devname"; then
4623                 opts="-o loop"
4624         fi
4625
4626         stop_mds || error "Unable to stop MDS"
4627         local obj=$(do_facet $SINGLEMDS \
4628                     "$DEBUGFS -c -R \\\"stat last_rcvd\\\" $devname" |
4629                     grep Inode)
4630         if [ -z "$obj" ]; then
4631                 # The MDT may be just re-formatted, mount the MDT for the
4632                 # first time to guarantee the "last_rcvd" file is there.
4633                 start_mds || error "fail to mount the MDS for the first time"
4634                 stop_mds || error "Unable to stop MDS"
4635         fi
4636
4637         # remove the "last_rcvd" file
4638         do_facet $SINGLEMDS "mkdir -p $brpt"
4639         do_facet $SINGLEMDS \
4640                 "mount -t $(facet_fstype $SINGLEMDS) $opts $devname $brpt"
4641         do_facet $SINGLEMDS "rm -f ${brpt}/last_rcvd"
4642         do_facet $SINGLEMDS "$UMOUNT $brpt"
4643
4644         # restart MDS, the "last_rcvd" file should be recreated.
4645         start_mds || error "fail to restart the MDS"
4646         stop_mds || error "Unable to stop MDS"
4647         obj=$(do_facet $SINGLEMDS \
4648               "$DEBUGFS -c -R \\\"stat last_rcvd\\\" $devname" | grep Inode)
4649         [ -n "$obj" ] || error "fail to re-create the last_rcvd"
4650 }
4651 run_test 65 "re-create the lost last_rcvd file when server mount"
4652
4653 test_66() {
4654         [[ $(lustre_version_code mgs) -ge $(version_code 2.3.59) ]] ||
4655                 { skip "Need MGS version at least 2.3.59"; return 0; }
4656
4657         setup
4658         local OST1_NID=$(do_facet ost1 $LCTL list_nids | head -1)
4659         local MDS_NID=$(do_facet $SINGLEMDS $LCTL list_nids | head -1)
4660
4661         # add EXCLUDE records to config log, they are not to be
4662         # removed by lctl replace_nids
4663         set_conf_param_and_check mds                                    \
4664             "$LCTL get_param -n osc.$FSNAME-OST0000-osc-MDT0000.active" \
4665             "$FSNAME-OST0000.osc.active"                                \
4666             "0"
4667
4668         echo "replace_nids should fail if MDS, OSTs and clients are UP"
4669         do_facet mgs $LCTL replace_nids $FSNAME-OST0000 $OST1_NID &&
4670                 error "replace_nids fail"
4671
4672         umount_client $MOUNT || error "unmounting client failed"
4673         echo "replace_nids should fail if MDS and OSTs are UP"
4674         do_facet mgs $LCTL replace_nids $FSNAME-OST0000 $OST1_NID &&
4675                 error "replace_nids fail"
4676
4677         stop_ost || error "Unable to stop OST1"
4678         echo "replace_nids should fail if MDS is UP"
4679         do_facet mgs $LCTL replace_nids $FSNAME-OST0000 $OST1_NID &&
4680                 error "replace_nids fail"
4681
4682         stop_mds || error "stopping mds failed"
4683
4684         if combined_mgs_mds; then
4685                 start_mdt 1 "-o nosvc" ||
4686                         error "starting mds with nosvc option failed"
4687         fi
4688
4689         echo "command should accept two parameters"
4690         do_facet mgs $LCTL replace_nids $FSNAME-OST0000 &&
4691                 error "command should accept two params"
4692
4693         echo "correct device name should be passed"
4694         do_facet mgs $LCTL replace_nids $FSNAME-WRONG0000 $OST1_NID &&
4695                 error "wrong devname"
4696
4697         echo "wrong nids list should not destroy the system"
4698         do_facet mgs $LCTL replace_nids $FSNAME-OST0000 "wrong nids list" &&
4699                 error "wrong parse"
4700
4701         echo "replace OST nid"
4702         do_facet mgs $LCTL replace_nids $FSNAME-OST0000 $OST1_NID ||
4703                 error "replace nids failed"
4704
4705         echo "command should accept two parameters"
4706         do_facet mgs $LCTL replace_nids $FSNAME-MDT0000 &&
4707                 error "command should accept two params"
4708
4709         echo "wrong nids list should not destroy the system"
4710         do_facet mgs $LCTL replace_nids $FSNAME-MDT0000 "wrong nids list" &&
4711                 error "wrong parse"
4712
4713         echo "replace MDS nid"
4714         do_facet mgs $LCTL replace_nids $FSNAME-MDT0000 $MDS_NID ||
4715                 error "replace nids failed"
4716
4717         if ! combined_mgs_mds ; then
4718                 stop_mgs
4719         else
4720                 stop_mds || error "Unable to stop MDS"
4721         fi
4722
4723         start_mgsmds || error "start mgsmds failed"
4724         set_conf_param_and_check mds                                    \
4725             "$LCTL get_param -n osc.$FSNAME-OST0000-osc-MDT0000.active" \
4726             "$FSNAME-OST0000.osc.active"                                \
4727             "1"
4728         start_ost || error "unable to start OST"
4729         mount_client $MOUNT || error "mount client failed"
4730
4731         check_mount || error "error after nid replace"
4732         cleanup || error "cleanup failed"
4733         reformat
4734 }
4735 run_test 66 "replace nids"
4736
4737 test_67() { #LU-2950
4738         local legacy="$TMP/legacy_lnet_config"
4739         local new="$TMP/new_routes_test"
4740         local out="$TMP/config_out_file"
4741         local verify="$TMP/conv_verify"
4742         local verify_conf="$TMP/conf_verify"
4743
4744         # Create the legacy file that will be run through the
4745         # lustre_routes_conversion script
4746         cat <<- LEGACY_LNET_CONFIG > $legacy
4747                 tcp1 23 192.168.213.1@tcp:1; tcp5 34 193.30.4.3@tcp:4;
4748                 tcp2 54 10.1.3.2@tcp;
4749                 tcp3 10.3.4.3@tcp:3;
4750                 tcp4 10.3.3.4@tcp;
4751         LEGACY_LNET_CONFIG
4752
4753         # Create the verification file to verify the output of
4754         # lustre_routes_conversion script against.
4755         cat <<- VERIFY_LNET_CONFIG > $verify
4756                 tcp1: { gateway: 192.168.213.1@tcp, hop: 23, priority: 1 }
4757                 tcp5: { gateway: 193.30.4.3@tcp, hop: 34, priority: 4 }
4758                 tcp2: { gateway: 10.1.3.2@tcp, hop: 54 }
4759                 tcp3: { gateway: 10.3.4.3@tcp, priority: 3 }
4760                 tcp4: { gateway: 10.3.3.4@tcp }
4761         VERIFY_LNET_CONFIG
4762
4763         # Create the verification file to verify the output of
4764         # lustre_routes_config script against
4765         cat <<- VERIFY_LNET_CONFIG > $verify_conf
4766                 lctl --net tcp1 add_route 192.168.213.1@tcp 23 1
4767                 lctl --net tcp5 add_route 193.30.4.3@tcp 34 4
4768                 lctl --net tcp2 add_route 10.1.3.2@tcp 54 4
4769                 lctl --net tcp3 add_route 10.3.4.3@tcp 1 3
4770                 lctl --net tcp4 add_route 10.3.3.4@tcp 1 3
4771         VERIFY_LNET_CONFIG
4772
4773         $LUSTRE_ROUTES_CONVERSION $legacy $new > /dev/null
4774         if [ -f $new ]; then
4775                 # verify the conversion output
4776                 cmp -s $new $verify > /dev/null
4777                 if [ $? -eq 1 ]; then
4778                         error "routes conversion failed"
4779                 fi
4780
4781                 lustre_routes_config --dry-run --verbose $new > $out
4782                 # check that the script succeeded
4783                 cmp -s $out $verify_conf > /dev/null
4784                 if [ $? -eq 1 ]; then
4785                         error "routes config failed"
4786                 fi
4787         else
4788                 error "routes conversion test failed"
4789         fi
4790         # remove generated files
4791         rm -f $new $legacy $verify $verify_conf $out
4792 }
4793 run_test 67 "test routes conversion and configuration"
4794
4795 test_68() {
4796         local fid
4797         local seq
4798         local START
4799         local END
4800
4801         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.4.53) ] ||
4802                 { skip "Need MDS version at least 2.4.53"; return 0; }
4803
4804         umount_client $MOUNT || error "umount client failed"
4805
4806         if ! combined_mgs_mds; then
4807                 start_mgs || error "start mgs failed"
4808         fi
4809
4810         start_mdt 1 || error "MDT start failed"
4811         start_ost || error "Unable to start OST1"
4812
4813         # START-END - the sequences we'll be reserving
4814         START=$(do_facet $SINGLEMDS \
4815                 $LCTL get_param -n seq.ctl*.space | awk -F'[[ ]' '{print $2}')
4816         END=$((START + (1 << 30)))
4817         do_facet $SINGLEMDS \
4818                 $LCTL set_param seq.ctl*.fldb="[$START-$END\):0:mdt"
4819
4820         # reset the sequences MDT0000 has already assigned
4821         do_facet $SINGLEMDS \
4822                 $LCTL set_param seq.srv*MDT0000.space=clear
4823
4824         # remount to let the client allocate new sequence
4825         mount_client $MOUNT || error "mount client failed"
4826
4827         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
4828         do_facet $SINGLEMDS \
4829                 $LCTL get_param seq.srv*MDT0000.space
4830         $LFS path2fid $DIR/$tfile
4831
4832         local old_ifs="$IFS"
4833         IFS='[:]'
4834         fid=($($LFS path2fid $DIR/$tfile))
4835         IFS="$old_ifs"
4836         let seq=${fid[1]}
4837
4838         if [[ $seq < $END ]]; then
4839                 error "used reserved sequence $seq?"
4840         fi
4841         cleanup || error "cleanup failed with $?"
4842 }
4843 run_test 68 "be able to reserve specific sequences in FLDB"
4844
4845 # Test 69: is about the total number of objects ever created on an OST.
4846 # so that when it is reformatted the normal MDS->OST orphan recovery won't
4847 # just "precreate" the missing objects. In the past it might try to recreate
4848 # millions of objects after an OST was reformatted
4849 test_69() {
4850         local server_version=$(lustre_version_code $SINGLEMDS)
4851
4852         [[ $server_version -lt $(version_code 2.4.2) ]] &&
4853                 skip "Need MDS version at least 2.4.2" && return
4854
4855         [[ $server_version -ge $(version_code 2.4.50) ]] &&
4856         [[ $server_version -lt $(version_code 2.5.0) ]] &&
4857                 skip "Need MDS version at least 2.5.0" && return
4858
4859         setup
4860         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
4861
4862         # use OST0000 since it probably has the most creations
4863         local OSTNAME=$(ostname_from_index 0)
4864         local mdtosc_proc1=$(get_mdtosc_proc_path mds1 $OSTNAME)
4865         local last_id=$(do_facet mds1 $LCTL get_param -n \
4866                         osc.$mdtosc_proc1.prealloc_last_id)
4867
4868         # Want to have OST LAST_ID over 5 * OST_MAX_PRECREATE to
4869         # verify that the LAST_ID recovery is working properly. If
4870         # not, then the OST will refuse to allow the MDS connect
4871         # because the LAST_ID value is too different from the MDS
4872         #define OST_MAX_PRECREATE=20000
4873         local ost_max_pre=20000
4874         local num_create=$(( ost_max_pre * 5 + 1 - last_id))
4875
4876         # If the LAST_ID is already over 5 * OST_MAX_PRECREATE, we don't
4877         # need to create any files. So, skip this section.
4878         if [ $num_create -gt 0 ]; then
4879                 # Check the number of inodes available on OST0
4880                 local files=0
4881                 local ifree=$($LFS df -i $MOUNT | awk '/OST0000/ { print $4 }')
4882                 log "On OST0, $ifree inodes available. Want $num_create."
4883
4884                 $SETSTRIPE -i 0 $DIR/$tdir ||
4885                         error "$SETSTRIPE -i 0 $DIR/$tdir failed"
4886                 if [ $ifree -lt 10000 ]; then
4887                         files=$(( ifree - 50 ))
4888                 else
4889                         files=10000
4890                 fi
4891
4892                 local j=$((num_create / files + 1))
4893                 for i in $(seq 1 $j); do
4894                         createmany -o $DIR/$tdir/$tfile-$i- $files ||
4895                                 error "createmany fail create $files files: $?"
4896                         unlinkmany $DIR/$tdir/$tfile-$i- $files ||
4897                                 error "unlinkmany failed unlink $files files"
4898                 done
4899         fi
4900
4901         # delete all of the files with objects on OST0 so the
4902         # filesystem is not inconsistent later on
4903         $LFS find $MOUNT --ost 0 -print0 | xargs -0 rm
4904
4905         umount_client $MOUNT || error "umount client failed"
4906         stop_ost || error "OST0 stop failure"
4907         add ost1 $(mkfs_opts ost1 $(ostdevname 1)) --reformat --replace \
4908                 $(ostdevname 1) $(ostvdevname 1) ||
4909                 error "reformat and replace $ostdev failed"
4910         start_ost || error "OST0 restart failure"
4911         wait_osc_import_state mds ost FULL
4912
4913         mount_client $MOUNT || error "mount client failed"
4914         touch $DIR/$tdir/$tfile-last || error "create file after reformat"
4915         local idx=$($GETSTRIPE -i $DIR/$tdir/$tfile-last)
4916         [ $idx -ne 0 ] && error "$DIR/$tdir/$tfile-last on $idx not 0" || true
4917
4918         local iused=$($LFS df -i $MOUNT | awk '/OST0000/ { print $3 }')
4919         log "On OST0, $iused used inodes"
4920         [ $iused -ge $((ost_max_pre/2 + 1000)) ] &&
4921                 error "OST replacement created too many inodes; $iused"
4922         cleanup || error "cleanup failed with $?"
4923 }
4924 run_test 69 "replace an OST with the same index"
4925
4926 test_70a() {
4927         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4928         local MDTIDX=1
4929
4930         cleanup || error "cleanup failed with $?"
4931
4932         start_mdt 1 || error "MDT0 start fail"
4933
4934         start_ost || error "OST0 start fail"
4935         for num in $(seq 2 $MDSCOUNT); do
4936                 start_mdt $num || return
4937         done
4938
4939         mount_client $MOUNT || error "mount client fails"
4940
4941         mkdir $DIR/$tdir || error "create $DIR/$tdir failed"
4942
4943         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
4944                 error "create remote dir fail"
4945
4946         rm -rf $DIR/$tdir || error "delete dir fail"
4947         cleanup || error "cleanup failed with $?"
4948 }
4949 run_test 70a "start MDT0, then OST, then MDT1"
4950
4951 test_70b() {
4952         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4953         local MDTIDX=1
4954
4955         start_ost || error "OST0 start fail"
4956
4957         start_mds || error "MDS start fail"
4958
4959         mount_client $MOUNT || error "mount client fails"
4960
4961         mkdir $DIR/$tdir || error "create $DIR/$tdir failed"
4962
4963         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
4964                 error "create remote dir fail"
4965
4966         rm -rf $DIR/$tdir || error "delete dir fail"
4967
4968         cleanup || error "cleanup failed with $?"
4969 }
4970 run_test 70b "start OST, MDT1, MDT0"
4971
4972 test_70c() {
4973         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4974         local MDTIDX=1
4975
4976         start_mds || error "MDS start fail"
4977         start_ost || error "OST0 start fail"
4978
4979         mount_client $MOUNT || error "mount client fails"
4980         stop_mdt 1 || error "MDT1 start fail"
4981
4982         local mdc_for_mdt1=$($LCTL dl | grep MDT0000-mdc | awk '{print $4}')
4983         echo "deactivate $mdc_for_mdt1"
4984         $LCTL --device $mdc_for_mdt1 deactivate ||
4985                 error "set $mdc_for_mdt1 deactivate failed"
4986
4987         mkdir $DIR/$tdir && error "mkdir succeed"
4988
4989         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir &&
4990                 error "create remote dir succeed"
4991
4992         cleanup || error "cleanup failed with $?"
4993 }
4994 run_test 70c "stop MDT0, mkdir fail, create remote dir fail"
4995
4996 test_70d() {
4997         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4998         local MDTIDX=1
4999
5000         start_mds || error "MDS start fail"
5001         start_ost || error "OST0 start fail"
5002
5003         mount_client $MOUNT || error "mount client fails"
5004
5005         stop_mdt 2 || error "MDT1 start fail"
5006
5007         local mdc_for_mdt2=$($LCTL dl | grep MDT0001-mdc |
5008                              awk '{print $4}')
5009         echo "deactivate $mdc_for_mdt2"
5010         $LCTL --device $mdc_for_mdt2 deactivate ||
5011                 error "set $mdc_for_mdt2 deactivate failed"
5012
5013         mkdir $DIR/$tdir || error "mkdir fail"
5014         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir &&
5015                 error "create remote dir succeed"
5016
5017         rm -rf $DIR/$tdir || error "delete dir fail"
5018
5019         cleanup || error "cleanup failed with $?"
5020 }
5021 run_test 70d "stop MDT1, mkdir succeed, create remote dir fail"
5022
5023 test_70e() {
5024         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
5025
5026         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.7.62) ] ||
5027                 { skip "Need MDS version at least 2.7.62"; return 0; }
5028
5029         cleanup || error "cleanup failed with $?"
5030
5031         local mdsdev=$(mdsdevname 1)
5032         local ostdev=$(ostdevname 1)
5033         local mdsvdev=$(mdsvdevname 1)
5034         local ostvdev=$(ostvdevname 1)
5035         local opts_mds="$(mkfs_opts mds1 $mdsdev) --reformat $mdsdev $mdsvdev"
5036         local opts_ost="$(mkfs_opts ost1 $ostdev) --reformat $ostdev $ostvdev"
5037
5038         add mds1 $opts_mds || error "add mds1 failed"
5039         start_mdt 1 || error "start mdt1 failed"
5040         add ost1 $opts_ost || error "add ost1 failed"
5041         start_ost || error "start ost failed"
5042         mount_client $MOUNT > /dev/null || error "mount client $MOUNT failed"
5043
5044         local soc=$(do_facet mds1 "$LCTL get_param -n \
5045                     mdt.*MDT0000.sync_lock_cancel")
5046         [ $soc == "never" ] || error "SoC enabled on single MDS"
5047
5048         for i in $(seq 2 $MDSCOUNT); do
5049                 mdsdev=$(mdsdevname $i)
5050                 mdsvdev=$(mdsvdevname $i)
5051                 opts_mds="$(mkfs_opts mds$i $mdsdev) --reformat $mdsdev \
5052                           $mdsvdev"
5053                 add mds$i $opts_mds || error "add mds$i failed"
5054                 start_mdt $i || error "start mdt$i fail"
5055         done
5056
5057         wait_dne_interconnect
5058
5059         for i in $(seq $MDSCOUNT); do
5060                 soc=$(do_facet mds$i "$LCTL get_param -n \
5061                         mdt.*MDT000$((i - 1)).sync_lock_cancel")
5062                 [ $soc == "blocking" ] || error "SoC not enabled on DNE"
5063         done
5064
5065         for i in $(seq 2 $MDSCOUNT); do
5066                 stop_mdt $i || error "stop mdt$i fail"
5067         done
5068         soc=$(do_facet mds1 "$LCTL get_param -n \
5069                 mdt.*MDT0000.sync_lock_cancel")
5070         [ $soc == "never" ] || error "SoC enabled on single MDS"
5071         umount_client $MOUNT -f > /dev/null
5072
5073         cleanup || error "cleanup failed with $?"
5074 }
5075 run_test 70e "Sync-on-Cancel will be enabled by default on DNE"
5076
5077 test_71a() {
5078         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
5079         if combined_mgs_mds; then
5080                 skip "needs separate MGS/MDT" && return
5081         fi
5082         local MDTIDX=1
5083
5084         start_mdt 1 || error "MDT0 start fail"
5085         start_ost || error "OST0 start fail"
5086         for num in $(seq 2 $MDSCOUNT); do
5087                 start_mdt $num || return
5088         done
5089
5090         start_ost2 || error "OST1 start fail"
5091
5092         mount_client $MOUNT || error "mount client fails"
5093
5094         mkdir $DIR/$tdir || error "mkdir fail"
5095         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
5096                 error "create remote dir succeed"
5097
5098         mcreate $DIR/$tdir/remote_dir/$tfile || error "create file failed"
5099         rm -rf $DIR/$tdir || error "delete dir fail"
5100
5101         umount_client $MOUNT || error "umount_client failed"
5102         stop_mds || error "MDS stop fail"
5103         stop_ost || error "OST0 stop fail"
5104         stop_ost2 || error "OST1 stop fail"
5105 }
5106 run_test 71a "start MDT0 OST0, MDT1, OST1"
5107
5108 test_71b() {
5109         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
5110         if combined_mgs_mds; then
5111                 skip "needs separate MGS/MDT" && return
5112         fi
5113         local MDTIDX=1
5114
5115         for num in $(seq 2 $MDSCOUNT); do
5116                 start_mdt $num || return
5117         done
5118         start_ost || error "OST0 start fail"
5119         start_mdt 1 || error "MDT0 start fail"
5120         start_ost2 || error "OST1 start fail"
5121
5122         mount_client $MOUNT || error "mount client fails"
5123
5124         mkdir $DIR/$tdir || error "mkdir fail"
5125         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
5126                 error "create remote dir succeed"
5127
5128         mcreate $DIR/$tdir/remote_dir/$tfile || error "create file failed"
5129         rm -rf $DIR/$tdir || error "delete dir fail"
5130
5131         umount_client $MOUNT || error "umount_client failed"
5132         stop_mds || error "MDT0 stop fail"
5133         stop_ost || error "OST0 stop fail"
5134         stop_ost2 || error "OST1 stop fail"
5135 }
5136 run_test 71b "start MDT1, OST0, MDT0, OST1"
5137
5138 test_71c() {
5139         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
5140         if combined_mgs_mds; then
5141                 skip "needs separate MGS/MDT" && return
5142         fi
5143         local MDTIDX=1
5144
5145         start_ost || error "OST0 start fail"
5146         start_ost2 || error "OST1 start fail"
5147         for num in $(seq 2 $MDSCOUNT); do
5148                 start_mdt $num || return
5149         done
5150         start_mdt 1 || error "MDT0 start fail"
5151
5152         mount_client $MOUNT || error "mount client fails"
5153
5154         mkdir $DIR/$tdir || error "mkdir fail"
5155         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
5156                 error "create remote dir succeed"
5157
5158         mcreate $DIR/$tdir/remote_dir/$tfile || error "create file failed"
5159         rm -rf $DIR/$tdir || error "delete dir fail"
5160
5161         umount_client $MOUNT || error "umount_client failed"
5162         stop_mds || error "MDS stop fail"
5163         stop_ost || error "OST0 stop fail"
5164         stop_ost2 || error "OST1 stop fail"
5165
5166 }
5167 run_test 71c "start OST0, OST1, MDT1, MDT0"
5168
5169 test_71d() {
5170         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
5171         if combined_mgs_mds; then
5172                 skip "needs separate MGS/MDT" && return
5173         fi
5174         local MDTIDX=1
5175
5176         start_ost || error "OST0 start fail"
5177         for num in $(seq 2 $MDSCOUNT); do
5178                 start_mdt $num || return
5179         done
5180         start_mdt 1 || error "MDT0 start fail"
5181         start_ost2 || error "OST1 start fail"
5182
5183         mount_client $MOUNT || error "mount client fails"
5184
5185         mkdir $DIR/$tdir || error "mkdir fail"
5186         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
5187                         error "create remote dir succeed"
5188
5189         mcreate $DIR/$tdir/remote_dir/$tfile || error "create file failed"
5190         rm -rf $DIR/$tdir || error "delete dir fail"
5191
5192         umount_client $MOUNT || error "umount_client failed"
5193         stop_mds || error "MDS stop fail"
5194         stop_ost || error "OST0 stop fail"
5195         stop_ost2 || error "OST1 stop fail"
5196
5197 }
5198 run_test 71d "start OST0, MDT1, MDT0, OST1"
5199
5200 test_71e() {
5201         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
5202         if combined_mgs_mds; then
5203                 skip "needs separate MGS/MDT" && return
5204         fi
5205         local MDTIDX=1
5206
5207         start_ost || error "OST0 start fail"
5208         for num in $(seq 2 $MDSCOUNT); do
5209                 start_mdt $num || return
5210         done
5211         start_ost2 || error "OST1 start fail"
5212         start_mdt 1 || error "MDT0 start fail"
5213
5214         mount_client $MOUNT || error "mount client fails"
5215
5216         mkdir $DIR/$tdir || error "mkdir fail"
5217         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
5218                 error "create remote dir succeed"
5219
5220         mcreate $DIR/$tdir/remote_dir/$tfile || error "create file failed"
5221         rm -rf $DIR/$tdir || error "delete dir fail"
5222
5223         umount_client $MOUNT || error "umount_client failed"
5224         stop_mds || error "MDS stop fail"
5225         stop_ost || error "OST0 stop fail"
5226         stop_ost2 || error "OST1 stop fail"
5227
5228 }
5229 run_test 71e "start OST0, MDT1, OST1, MDT0"
5230
5231 test_72() { #LU-2634
5232         local mdsdev=$(mdsdevname 1)
5233         local ostdev=$(ostdevname 1)
5234         local cmd="$E2FSCK -fnvd $mdsdev"
5235         local fn=3
5236         local add_options
5237
5238         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
5239                 skip "ldiskfs only test" && return
5240
5241         if combined_mgs_mds; then
5242                 add_options='--reformat'
5243         else
5244                 add_options='--reformat --replace'
5245         fi
5246
5247         #tune MDT with "-O extents"
5248
5249         for num in $(seq $MDSCOUNT); do
5250                 add mds${num} $(mkfs_opts mds$num $(mdsdevname $num)) \
5251                         $add_options $(mdsdevname $num) $(mdsvdevname $num) ||
5252                         error "add mds $num failed"
5253                 do_facet mds${num} "$TUNE2FS -O extents $(mdsdevname $num)" ||
5254                         error "$TUNE2FS failed on mds${num}"
5255         done
5256
5257         add ost1 $(mkfs_opts ost1 $ostdev) $add_options $ostdev ||
5258                 error "add $ostdev failed"
5259         start_mds || error "start mds failed"
5260         start_ost || error "start ost failed"
5261         mount_client $MOUNT || error "mount client failed"
5262
5263         #create some short symlinks
5264         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
5265         createmany -o $DIR/$tdir/$tfile-%d $fn
5266         echo "create $fn short symlinks"
5267         for i in $(seq -w 1 $fn); do
5268                 ln -s $DIR/$tdir/$tfile-$i $MOUNT/$tfile-$i
5269         done
5270         ls -al $MOUNT
5271
5272         #umount
5273         umount_client $MOUNT || error "umount client failed"
5274         stop_mds || error "stop mds failed"
5275         stop_ost || error "stop ost failed"
5276
5277         #run e2fsck
5278         run_e2fsck $(facet_active_host $SINGLEMDS) $mdsdev "-n"
5279 }
5280 run_test 72 "test fast symlink with extents flag enabled"
5281
5282 test_73() { #LU-3006
5283         [ $(facet_fstype ost1) == zfs ] && import_zpool ost1
5284         do_facet ost1 "$TUNEFS --failnode=1.2.3.4@$NETTYPE $(ostdevname 1)" ||
5285                 error "1st tunefs failed"
5286         start_mgsmds || error "start mds failed"
5287         start_ost || error "start ost failed"
5288         mount_client $MOUNT || error "mount client failed"
5289         $LCTL get_param -n osc.*OST0000-osc-[^M]*.import | grep failover_nids |
5290                 grep 1.2.3.4@$NETTYPE || error "failover nids haven't changed"
5291         umount_client $MOUNT || error "umount client failed"
5292         stopall
5293         reformat
5294 }
5295 run_test 73 "failnode to update from mountdata properly"
5296
5297 test_75() { # LU-2374
5298         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
5299                         skip "Need MDS version at least 2.4.1" && return
5300
5301         local index=0
5302         local opts_mds="$(mkfs_opts mds1 $(mdsdevname 1)) \
5303                 --reformat $(mdsdevname 1) $(mdsvdevname 1)"
5304         local opts_ost="$(mkfs_opts ost1 $(ostdevname 1)) \
5305                 --reformat $(ostdevname 1) $(ostvdevname 1)"
5306
5307         #check with default parameters
5308         add mds1 $opts_mds || error "add mds1 failed for default params"
5309         add ost1 $opts_ost || error "add ost1 failed for default params"
5310
5311         opts_mds=$(echo $opts_mds | sed -e "s/--mdt//")
5312         opts_mds=$(echo $opts_mds |
5313                    sed -e "s/--index=$index/--index=$index --mdt/")
5314         opts_ost=$(echo $opts_ost | sed -e "s/--ost//")
5315         opts_ost=$(echo $opts_ost |
5316                    sed -e "s/--index=$index/--index=$index --ost/")
5317
5318         add mds1 $opts_mds || error "add mds1 failed for new params"
5319         add ost1 $opts_ost || error "add ost1 failed for new params"
5320         if ! combined_mgs_mds; then
5321                 stop_mgs || error "stop mgs failed"
5322         fi
5323         reformat
5324         return 0
5325 }
5326 run_test 75 "The order of --index should be irrelevant"
5327
5328 test_76a() {
5329         [[ $(lustre_version_code mgs) -ge $(version_code 2.4.52) ]] ||
5330                 { skip "Need MDS version at least 2.4.52" && return 0; }
5331
5332         if ! combined_mgs_mds; then
5333                 start_mgs || error "start mgs failed"
5334         fi
5335         setup
5336         local MDMB_PARAM="osc.*.max_dirty_mb"
5337         echo "Change MGS params"
5338         local MAX_DIRTY_MB=$($LCTL get_param -n $MDMB_PARAM |
5339                 head -1)
5340         echo "max_dirty_mb: $MAX_DIRTY_MB"
5341         local NEW_MAX_DIRTY_MB=$((MAX_DIRTY_MB - 10))
5342         echo "new_max_dirty_mb: $NEW_MAX_DIRTY_MB"
5343         do_facet mgs $LCTL set_param -P $MDMB_PARAM=$NEW_MAX_DIRTY_MB
5344         wait_update $HOSTNAME "$LCTL get_param -n $MDMB_PARAM |
5345                 head -1" $NEW_MAX_DIRTY_MB
5346         MAX_DIRTY_MB=$($LCTL get_param -n $MDMB_PARAM | head -1)
5347         echo "$MAX_DIRTY_MB"
5348         [ $MAX_DIRTY_MB = $NEW_MAX_DIRTY_MB ] ||
5349                 error "error while apply max_dirty_mb"
5350
5351         echo "Check the value is stored after remount"
5352         stopall
5353         setupall
5354         wait_update $HOSTNAME "$LCTL get_param -n $MDMB_PARAM |
5355                 head -1" $NEW_MAX_DIRTY_MB
5356         MAX_DIRTY_MB=$($LCTL get_param -n $MDMB_PARAM | head -1)
5357         [ $MAX_DIRTY_MB = $NEW_MAX_DIRTY_MB ] ||
5358                 error "max_dirty_mb is not saved after remount"
5359
5360         echo "Change OST params"
5361         CLIENT_PARAM="obdfilter.*.client_cache_count"
5362         local CLIENT_CACHE_COUNT
5363         CLIENT_CACHE_COUNT=$(do_facet ost1 $LCTL get_param -n $CLIENT_PARAM |
5364                 head -1)
5365         echo "client_cache_count: $CLIENT_CACHE_COUNT"
5366         NEW_CLIENT_CACHE_COUNT=$((CLIENT_CACHE_COUNT+CLIENT_CACHE_COUNT))
5367         echo "new_client_cache_count: $NEW_CLIENT_CACHE_COUNT"
5368         do_facet mgs $LCTL set_param -P $CLIENT_PARAM=$NEW_CLIENT_CACHE_COUNT
5369         wait_update $(facet_host ost1) "$LCTL get_param -n $CLIENT_PARAM |
5370                 head -1" $NEW_CLIENT_CACHE_COUNT
5371         CLIENT_CACHE_COUNT=$(do_facet ost1 $LCTL get_param -n $CLIENT_PARAM |
5372                 head -1)
5373         echo "$CLIENT_CACHE_COUNT"
5374         [ $CLIENT_CACHE_COUNT = $NEW_CLIENT_CACHE_COUNT ] ||
5375                 error "error while apply client_cache_count"
5376
5377         echo "Check the value is stored after remount"
5378         stopall
5379         setupall
5380         wait_update $(facet_host ost1) "$LCTL get_param -n $CLIENT_PARAM |
5381                 head -1" $NEW_CLIENT_CACHE_COUNT
5382         CLIENT_CACHE_COUNT=$(do_facet ost1 $LCTL get_param -n $CLIENT_PARAM |
5383                 head -1)
5384         echo "$CLIENT_CACHE_COUNT"
5385         [ $CLIENT_CACHE_COUNT = $NEW_CLIENT_CACHE_COUNT ] ||
5386                 error "client_cache_count is not saved after remount"
5387         stopall
5388 }
5389 run_test 76a "set permanent params set_param -P"
5390
5391 test_76b() { # LU-4783
5392         [[ $(lustre_version_code mgs) -ge $(version_code 2.5.57) ]] ||
5393                 { skip "Need MGS version at least 2.5.57" && return 0; }
5394         stopall
5395         setupall
5396         do_facet mgs $LCTL get_param mgs.MGS.live.params ||
5397                 error "start params log failed"
5398         stopall
5399 }
5400 run_test 76b "verify params log setup correctly"
5401
5402 test_76c() {
5403         [[ $(lustre_version_code mgs) -ge $(version_code 2.8.54) ]] ||
5404                 { skip "Need MDS version at least 2.4.52" && return 0; }
5405         setupall
5406         local MASK_PARAM="mdd.*.changelog_mask"
5407         echo "Change changelog_mask"
5408         do_facet mgs $LCTL set_param -P $MASK_PARAM=-CLOSE ||
5409                 error "Can't change changlog_mask"
5410         wait_update $(facet_host mds) "$LCTL get_param -n $MASK_PARAM |
5411                 grep 'CLOSE'" ""
5412
5413         echo "Check the value is stored after mds remount"
5414         stop_mds || error "Failed to stop MDS"
5415         start_mds || error "Failed to start MDS"
5416         local CHANGELOG_MASK=$(do_facet mgs $LCTL get_param -n $MASK_PARAM)
5417         echo $CHANGELOG_MASK | grep CLOSE > /dev/null &&
5418                 error "changelog_mask is not changed"
5419
5420         stopall
5421 }
5422 run_test 76c "verify changelog_mask is applied with set_param -P"
5423
5424 test_76d() { #LU-9399
5425         setupall
5426
5427         local xattr_cache="llite.*.xattr_cache"
5428         local cmd="$LCTL get_param -n $xattr_cache | head -1"
5429         local new=$((($(eval $cmd) + 1) % 2))
5430
5431         echo "lctl set_param -P llite.*.xattr_cache=$new"
5432         do_facet mgs $LCTL set_param -P $xattr_cache=$new ||
5433                 error "Can't change xattr_cache"
5434         wait_update $HOSTNAME "$cmd" "$new"
5435
5436         echo "Check $xattr_cache on client $MOUNT"
5437         umount_client $MOUNT || error "umount $MOUNT failed"
5438         mount_client $MOUNT || error "mount $MOUNT failed"
5439         [ $(eval $cmd) -eq $new ] ||
5440                 error "$xattr_cache != $new on client $MOUNT"
5441
5442         echo "Check $xattr_cache on the new client $MOUNT2"
5443         mount_client $MOUNT2 || error "mount $MOUNT2 failed"
5444         [ $(eval $cmd) -eq $new ] ||
5445                 error "$xattr_cache != $new on client $MOUNT2"
5446         umount_client $MOUNT2 || error "umount $MOUNT2 failed"
5447
5448         stopall
5449 }
5450 run_test 76d "verify llite.*.xattr_cache can be set by 'set_param -P' correctly"
5451
5452 test_77() { # LU-3445
5453         local server_version=$(lustre_version_code $SINGLEMDS)
5454         [[ $server_version -ge $(version_code 2.8.55) ]] ||
5455                 { skip "Need MDS version 2.8.55+ "; return; }
5456
5457         if [[ -z "$fs2ost_DEV" || -z "$fs2mds_DEV" ]]; then
5458                 is_blkdev $SINGLEMDS $(mdsdevname ${SINGLEMDS//mds/}) &&
5459                 skip_env "mixed loopback and real device not working" && return
5460         fi
5461
5462         local fs2mdsdev=$(mdsdevname 1_2)
5463         local fs2ostdev=$(ostdevname 1_2)
5464         local fs2mdsvdev=$(mdsvdevname 1_2)
5465         local fs2ostvdev=$(ostvdevname 1_2)
5466         local fsname=test1234
5467         local mgsnid
5468         local failnid="$(h2nettype 1.2.3.4),$(h2nettype 4.3.2.1)"
5469
5470         combined_mgs_mds || stop_mgs || error "stopping MGS service failed"
5471
5472         add fs2mds $(mkfs_opts mds1 $fs2mdsdev) --mgs --fsname=$fsname \
5473                 --reformat $fs2mdsdev $fs2mdsvdev || error "add fs2mds failed"
5474         start fs2mds $fs2mdsdev $MDS_MOUNT_OPTS && trap cleanup_fs2 EXIT INT ||
5475                 error "start fs2mds failed"
5476
5477         mgsnid=$(do_facet fs2mds $LCTL list_nids | xargs | tr ' ' ,)
5478         mgsnid="0.0.0.0@tcp,$mgsnid,$mgsnid:$mgsnid"
5479
5480         add fs2ost --mgsnode=$mgsnid $(mkfs_opts ost1 $fs2ostdev) \
5481                 --failnode=$failnid --fsname=$fsname \
5482                 --reformat $fs2ostdev $fs2ostvdev ||
5483                         error "add fs2ost failed"
5484         start fs2ost $fs2ostdev $OST_MOUNT_OPTS || error "start fs2ost failed"
5485
5486         mkdir -p $MOUNT2 || error "mkdir $MOUNT2 failed"
5487         $MOUNT_CMD $mgsnid:/$fsname $MOUNT2 || error "mount $MOUNT2 failed"
5488         DIR=$MOUNT2 MOUNT=$MOUNT2 check_mount || error "check $MOUNT2 failed"
5489         cleanup_fs2
5490 }
5491 run_test 77 "comma-separated MGS NIDs and failover node NIDs"
5492
5493 test_78() {
5494         [[ $(facet_fstype $SINGLEMDS) != ldiskfs ||
5495            $(facet_fstype ost1) != ldiskfs ]] &&
5496                 skip "ldiskfs only test" && return
5497
5498         # reformat the Lustre filesystem with a smaller size
5499         local saved_MDSCOUNT=$MDSCOUNT
5500         local saved_MDSSIZE=$MDSSIZE
5501         local saved_OSTCOUNT=$OSTCOUNT
5502         local saved_OSTSIZE=$OSTSIZE
5503         MDSCOUNT=1
5504         OSTCOUNT=1
5505         MDSSIZE=$((MDSSIZE - 20000))
5506         OSTSIZE=$((OSTSIZE - 20000))
5507         reformat || error "(1) reformat Lustre filesystem failed"
5508         MDSSIZE=$saved_MDSSIZE
5509         OSTSIZE=$saved_OSTSIZE
5510
5511         # mount the Lustre filesystem
5512         setup_noconfig || error "(2) setup Lustre filesystem failed"
5513
5514         # create some files
5515         log "create test files"
5516         local i
5517         local file
5518         local num_files=100
5519
5520         mkdir $MOUNT/$tdir || error "(3) mkdir $MOUNT/$tdir failed"
5521         $LFS df; $LFS df -i
5522         for i in $(seq $num_files); do
5523                 file=$MOUNT/$tdir/$tfile-$i
5524                 dd if=/dev/urandom of=$file count=1 bs=1M || {
5525                         $LCTL get_param osc.*.cur*grant*
5526                         $LFS df; $LFS df -i;
5527                         # stop creating files if there is no more space
5528                         if [ ! -e $file ]; then
5529                                 num_files=$((i - 1))
5530                                 break
5531                         fi
5532
5533                         $LFS getstripe -v $file
5534                         local ost_idx=$(LFS getstripe -i $file)
5535                         do_facet ost$((ost_idx + 1)) \
5536                                 $LCTL get_param obdfilter.*.*grant*
5537                         error "(4) create $file failed"
5538                 }
5539         done
5540
5541         # unmount the Lustre filesystem
5542         cleanup || error "(5) cleanup Lustre filesystem failed"
5543
5544         # run e2fsck on the MDT and OST devices
5545         local mds_host=$(facet_active_host $SINGLEMDS)
5546         local ost_host=$(facet_active_host ost1)
5547         local mds_dev=$(mdsdevname ${SINGLEMDS//mds/})
5548         local ost_dev=$(ostdevname 1)
5549
5550         run_e2fsck $mds_host $mds_dev "-y"
5551         run_e2fsck $ost_host $ost_dev "-y"
5552
5553         # get the original block count of the MDT and OST filesystems
5554         local mds_orig_blks=$(get_block_count $SINGLEMDS $mds_dev)
5555         local ost_orig_blks=$(get_block_count ost1 $ost_dev)
5556
5557         # expand the MDT and OST filesystems to the device size
5558         run_resize2fs $SINGLEMDS $mds_dev "" || error "expand $SINGLEMDS failed"
5559         run_resize2fs ost1 $ost_dev "" || error "expand ost1 failed"
5560
5561         # run e2fsck on the MDT and OST devices again
5562         run_e2fsck $mds_host $mds_dev "-y"
5563         run_e2fsck $ost_host $ost_dev "-y"
5564
5565         # mount the Lustre filesystem
5566         setup
5567
5568         # check the files
5569         log "check files after expanding the MDT and OST filesystems"
5570         for i in $(seq $num_files); do
5571                 file=$MOUNT/$tdir/$tfile-$i
5572                 $CHECKSTAT -t file -s 1048576 $file ||
5573                         error "(6) checkstat $file failed"
5574         done
5575
5576         # create more files
5577         log "create more files after expanding the MDT and OST filesystems"
5578         for i in $(seq $((num_files + 1)) $((num_files + 10))); do
5579                 file=$MOUNT/$tdir/$tfile-$i
5580                 dd if=/dev/urandom of=$file count=1 bs=1M ||
5581                         error "(7) create $file failed"
5582         done
5583
5584         # unmount the Lustre filesystem
5585         cleanup || error "(8) cleanup Lustre filesystem failed"
5586
5587         # run e2fsck on the MDT and OST devices
5588         run_e2fsck $mds_host $mds_dev "-y"
5589         run_e2fsck $ost_host $ost_dev "-y"
5590
5591         # get the maximum block count of the MDT and OST filesystems
5592         local mds_max_blks=$(get_block_count $SINGLEMDS $mds_dev)
5593         local ost_max_blks=$(get_block_count ost1 $ost_dev)
5594
5595         # get the minimum block count of the MDT and OST filesystems
5596         local mds_min_blks=$(run_resize2fs $SINGLEMDS $mds_dev "" "-P" 2>&1 |
5597                                 grep minimum | sed -e 's/^.*filesystem: //g')
5598         local ost_min_blks=$(run_resize2fs ost1 $ost_dev "" "-P" 2>&1 |
5599                                 grep minimum | sed -e 's/^.*filesystem: //g')
5600
5601         # shrink the MDT and OST filesystems to a smaller size
5602         local shrunk=false
5603         local new_blks
5604         local base_blks
5605         if [[ $mds_max_blks -gt $mds_min_blks &&
5606               $mds_max_blks -gt $mds_orig_blks ]]; then
5607                 [[ $mds_orig_blks -gt $mds_min_blks ]] &&
5608                         base_blks=$mds_orig_blks || base_blks=$mds_min_blks
5609                 new_blks=$(( (mds_max_blks - base_blks) / 2 + base_blks ))
5610                 run_resize2fs $SINGLEMDS $mds_dev $new_blks ||
5611                         error "shrink $SINGLEMDS to $new_blks failed"
5612                 shrunk=true
5613         fi
5614
5615         if [[ $ost_max_blks -gt $ost_min_blks &&
5616               $ost_max_blks -gt $ost_orig_blks ]]; then
5617                 [[ $ost_orig_blks -gt $ost_min_blks ]] &&
5618                         base_blks=$ost_orig_blks || base_blks=$ost_min_blks
5619                 new_blks=$(( (ost_max_blks - base_blks) / 2 + base_blks ))
5620                 run_resize2fs ost1 $ost_dev $new_blks ||
5621                         error "shrink ost1 to $new_blks failed"
5622                 shrunk=true
5623         fi
5624
5625         # check whether the MDT or OST filesystem was shrunk or not
5626         if ! $shrunk; then
5627                 combined_mgs_mds || stop_mgs || error "(9) stop mgs failed"
5628                 reformat || error "(10) reformat Lustre filesystem failed"
5629                 return 0
5630         fi
5631
5632         # run e2fsck on the MDT and OST devices again
5633         run_e2fsck $mds_host $mds_dev "-y"
5634         run_e2fsck $ost_host $ost_dev "-y"
5635
5636         # mount the Lustre filesystem again
5637         setup
5638
5639         # check the files
5640         log "check files after shrinking the MDT and OST filesystems"
5641         for i in $(seq $((num_files + 10))); do
5642                 file=$MOUNT/$tdir/$tfile-$i
5643                 $CHECKSTAT -t file -s 1048576 $file ||
5644                         error "(11) checkstat $file failed"
5645         done
5646
5647         # unmount and reformat the Lustre filesystem
5648         cleanup || error "(12) cleanup Lustre filesystem failed"
5649         combined_mgs_mds || stop_mgs || error "(13) stop mgs failed"
5650
5651         MDSCOUNT=$saved_MDSCOUNT
5652         OSTCOUNT=$saved_OSTCOUNT
5653         reformat || error "(14) reformat Lustre filesystem failed"
5654 }
5655 run_test 78 "run resize2fs on MDT and OST filesystems"
5656
5657 test_79() { # LU-4227
5658         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.5.59) ]] ||
5659                 { skip "Need MDS version at least 2.5.59"; return 0; }
5660
5661         local mdsdev1=$(mdsdevname 1)
5662         local mdsvdev1=$(mdsvdevname 1)
5663         local mdsdev2=$(mdsdevname 2)
5664         local mdsvdev2=$(mdsvdevname 2)
5665         local ostdev1=$(ostdevname 1)
5666         local ostvdev1=$(ostvdevname 1)
5667         local opts_mds1="$(mkfs_opts mds1 $mdsdev1) --reformat"
5668         local opts_mds2="$(mkfs_opts mds2 $mdsdev2) --reformat"
5669         local opts_ost1="$(mkfs_opts ost1 $ostdev1) --reformat"
5670         local mgsnode_opt
5671
5672         # remove --mgs/--mgsnode from mkfs.lustre options
5673         opts_mds1=$(echo $opts_mds1 | sed -e "s/--mgs//")
5674
5675         mgsnode_opt=$(echo $opts_mds2 |
5676                 awk '{ for ( i = 1; i < NF; i++ )
5677                         if ( $i ~ "--mgsnode" ) { print $i; break } }')
5678         [ -n $mgsnode_opt ] &&
5679                 opts_mds2=$(echo $opts_mds2 | sed -e "s/$mgsnode_opt//")
5680
5681         mgsnode_opt=$(echo $opts_ost1 |
5682                 awk '{ for ( i = 1; i < NF; i++ )
5683                         if ( $i ~ "--mgsnode" ) { print $i; break } }')
5684         [ -n $mgsnode_opt ] &&
5685                 opts_ost1=$(echo $opts_ost1 | sed -e "s/$mgsnode_opt//")
5686
5687         # -MGS, format a mdt without --mgs option
5688         add mds1 $opts_mds1 $mdsdev1 $mdsvdev1 &&
5689                 error "Must specify --mgs when formatting mdt combined with mgs"
5690
5691         # +MGS, format a mdt/ost without --mgsnode option
5692         add mds1 $(mkfs_opts mds1 $mdsdev1) --reformat $mdsdev1 $mdsvdev1 \
5693                 > /dev/null || error "start mds1 failed"
5694         add mds2 $opts_mds2 $mdsdev2 $mdsvdev2 &&
5695                 error "Must specify --mgsnode when formatting a mdt"
5696         add ost1 $opts_ost1 $ostdev1 $ostvdev2 &&
5697                 error "Must specify --mgsnode when formatting an ost"
5698
5699         reformat
5700 }
5701 run_test 79 "format MDT/OST without mgs option (should return errors)"
5702
5703 test_80() {
5704         start_mds || error "Failed to start MDT"
5705         start_ost || error "Failed to start OST1"
5706         uuid=$(do_facet ost1 $LCTL get_param -n mgc.*.uuid)
5707 #define OBD_FAIL_MGS_PAUSE_TARGET_CON       0x906
5708         do_facet ost1 "$LCTL set_param fail_val=10 fail_loc=0x906"
5709         do_facet mgs "$LCTL set_param fail_val=10 fail_loc=0x906"
5710         do_facet mgs "$LCTL set_param -n mgs/MGS/evict_client $uuid"
5711         sleep 30
5712         start_ost2 || error "Failed to start OST2"
5713
5714         do_facet ost1 "$LCTL set_param fail_loc=0"
5715         stopall
5716 }
5717 run_test 80 "mgc import reconnect race"
5718
5719 #Save the original values of $OSTCOUNT and $OSTINDEX$i.
5720 save_ostindex() {
5721         local new_ostcount=$1
5722         saved_ostcount=$OSTCOUNT
5723         OSTCOUNT=$new_ostcount
5724
5725         local i
5726         local index
5727         for i in $(seq $OSTCOUNT); do
5728                 index=OSTINDEX$i
5729                 eval saved_ostindex$i=${!index}
5730                 eval OSTINDEX$i=""
5731         done
5732 }
5733
5734 # Restore the original values of $OSTCOUNT and $OSTINDEX$i.
5735 restore_ostindex() {
5736         trap 0
5737
5738         local i
5739         local index
5740         for i in $(seq $OSTCOUNT); do
5741                 index=saved_ostindex$i
5742                 eval OSTINDEX$i=${!index}
5743         done
5744         OSTCOUNT=$saved_ostcount
5745
5746         formatall
5747 }
5748
5749 # The main purpose of this test is to ensure the OST_INDEX_LIST functions as
5750 # expected. This test uses OST_INDEX_LIST to format OSTs with a randomly
5751 # assigned index and ensures we can mount such a formatted file system
5752 test_81() { # LU-4665
5753         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.54) ]] ||
5754                 { skip "Need MDS version at least 2.6.54" && return; }
5755         [[ $OSTCOUNT -ge 3 ]] || { skip_env "needs >= 3 OSTs" && return; }
5756
5757         stopall
5758
5759         # Each time RANDOM is referenced, a random integer between 0 and 32767
5760         # is generated.
5761         local i
5762         local saved_ostindex1=$OSTINDEX1
5763         for i in 65535 $((RANDOM + 65536)); do
5764                 echo -e "\nFormat ost1 with --index=$i, should fail"
5765                 OSTINDEX1=$i
5766                 if add ost1 $(mkfs_opts ost1 $(ostdevname 1)) --reformat \
5767                    $(ostdevname 1) $(ostvdevname 1); then
5768                         OSTINDEX1=$saved_ostindex1
5769                         error "format ost1 with --index=$i should fail"
5770                 fi
5771         done
5772         OSTINDEX1=$saved_ostindex1
5773
5774         save_ostindex 3
5775
5776         # Format OSTs with random sparse indices.
5777         trap "restore_ostindex" EXIT
5778         echo -e "\nFormat $OSTCOUNT OSTs with sparse indices"
5779         OST_INDEX_LIST=[0,$((RANDOM * 2 % 65533 + 1)),65534] formatall
5780
5781         # Setup and check Lustre filesystem.
5782         start_mgsmds || error "start_mgsmds failed"
5783         for i in $(seq $OSTCOUNT); do
5784                 start ost$i $(ostdevname $i) $OST_MOUNT_OPTS ||
5785                         error "start ost$i failed"
5786         done
5787
5788         mount_client $MOUNT || error "mount client $MOUNT failed"
5789         check_mount || error "check client $MOUNT failed"
5790
5791         # Check max_easize.
5792         local max_easize=$($LCTL get_param -n llite.*.max_easize)
5793         [[ $max_easize -eq 128 ]] ||
5794                 error "max_easize is $max_easize, should be 128 bytes"
5795
5796         restore_ostindex
5797 }
5798 run_test 81 "sparse OST indexing"
5799
5800 # Here we exercise the stripe placement functionality on a file system that
5801 # has formatted the OST with a random index. With the file system the following
5802 # functionality is tested:
5803 #
5804 # 1. Creating a new file with a specific stripe layout.
5805 #
5806 # 2. Modifiy a existing empty file with a specific stripe layout.
5807 #
5808 # 3. Ensure we fail to set the stripe layout of a file that already has one.
5809 #
5810 # 4. If ost-index is defined we need to ensure it is the first entry in the
5811 #    ost index list returned by lfs getstripe.
5812 #
5813 # 5. Lastly ensure this functionality fails with directories.
5814 test_82a() { # LU-4665
5815         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.54) ]] ||
5816                 { skip "Need MDS version at least 2.6.54" && return; }
5817         [[ $OSTCOUNT -ge 3 ]] || { skip_env "needs >= 3 OSTs" && return; }
5818
5819         stopall
5820
5821         save_ostindex 3
5822
5823         # Format OSTs with random sparse indices.
5824         local i
5825         local index
5826         local ost_indices
5827         local LOV_V1_INSANE_STRIPE_COUNT=65532
5828         for i in $(seq $OSTCOUNT); do
5829                 index=$(((RANDOM * 2) % LOV_V1_INSANE_STRIPE_COUNT))
5830                 ost_indices+=" $index"
5831         done
5832         ost_indices=$(comma_list $ost_indices)
5833
5834         trap "restore_ostindex" EXIT
5835         echo -e "\nFormat $OSTCOUNT OSTs with sparse indices $ost_indices"
5836         OST_INDEX_LIST=[$ost_indices] formatall
5837
5838         # Setup Lustre filesystem.
5839         start_mgsmds || error "start_mgsmds failed"
5840         for i in $(seq $OSTCOUNT); do
5841                 start ost$i $(ostdevname $i) $OST_MOUNT_OPTS ||
5842                         error "start ost$i failed"
5843         done
5844
5845         mount_client $MOUNT || error "mount client $MOUNT failed"
5846         wait_osts_up
5847
5848         $LFS df $MOUNT || error "$LFS df $MOUNT failed"
5849         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
5850
5851         # 1. If the file does not exist, new file will be created
5852         #    with specified OSTs.
5853         local file=$DIR/$tdir/$tfile-1
5854         local cmd="$SETSTRIPE -o $ost_indices $file"
5855         echo -e "\n$cmd"
5856         eval $cmd || error "$cmd failed"
5857         check_stripe_count $file $OSTCOUNT
5858         check_obdidx $file $ost_indices
5859         dd if=/dev/urandom of=$file count=1 bs=1M > /dev/null 2>&1 ||
5860                 error "write $file failed"
5861
5862         # 2. If the file already exists and is an empty file, the file
5863         #    will be attached with specified layout.
5864         file=$DIR/$tdir/$tfile-2
5865         mcreate $file || error "mcreate $file failed"
5866         cmd="$SETSTRIPE -o $ost_indices $file"
5867         echo -e "\n$cmd"
5868         eval $cmd || error "$cmd failed"
5869         dd if=/dev/urandom of=$file count=1 bs=1M > /dev/null 2>&1 ||
5870                 error "write $file failed"
5871         check_stripe_count $file $OSTCOUNT
5872         check_obdidx $file $ost_indices
5873
5874         # 3. If the file already has a valid layout attached, the command
5875         #    should fail with EBUSY.
5876         echo -e "\n$cmd"
5877         eval $cmd && error "stripe is already set on $file, $cmd should fail"
5878
5879         # 4. If [--stripe-index|-i <start_ost_idx>] is used, the index must
5880         #    be in the OST indices list.
5881         local start_ost_idx=${ost_indices##*,}
5882         file=$DIR/$tdir/$tfile-3
5883         cmd="$SETSTRIPE -o $ost_indices -i $start_ost_idx $file"
5884         echo -e "\n$cmd"
5885         eval $cmd || error "$cmd failed"
5886         check_stripe_count $file $OSTCOUNT
5887         check_obdidx $file $ost_indices
5888         check_start_ost_idx $file $start_ost_idx
5889
5890         file=$DIR/$tdir/$tfile-4
5891         cmd="$SETSTRIPE"
5892         cmd+=" -o $(exclude_items_from_list $ost_indices $start_ost_idx)"
5893         cmd+=" -i $start_ost_idx $file"
5894         echo -e "\n$cmd"
5895         eval $cmd && error "index $start_ost_idx should be in $ost_indices"
5896
5897         # 5. Specifying OST indices for directory should fail with ENOSUPP.
5898         local dir=$DIR/$tdir/$tdir
5899         mkdir $dir || error "mkdir $dir failed"
5900         cmd="$SETSTRIPE -o $ost_indices $dir"
5901         echo -e "\n$cmd"
5902         eval $cmd && error "$cmd should fail, specifying OST indices" \
5903                            "for directory is not supported"
5904
5905         restore_ostindex
5906 }
5907 run_test 82a "specify OSTs for file (succeed) or directory (fail)"
5908
5909 cleanup_82b() {
5910         trap 0
5911
5912         # Remove OSTs from a pool and destroy the pool.
5913         destroy_pool $ost_pool || true
5914
5915         if ! combined_mgs_mds ; then
5916                 umount_mgs_client
5917         fi
5918         restore_ostindex
5919 }
5920
5921 # Test 82b is run to ensure that if the user supplies a pool with a specific
5922 # stripe layout that it behaves proprerly. It should fail in the case that
5923 # the supplied OST index list points to OSTs not contained in the user
5924 # supplied pool.
5925 test_82b() { # LU-4665
5926         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.54) ]] ||
5927                 { skip "Need MDS version at least 2.6.54" && return; }
5928         [[ $OSTCOUNT -ge 4 ]] || { skip_env "needs >= 4 OSTs" && return; }
5929
5930         stopall
5931
5932         save_ostindex 4
5933
5934         # Format OSTs with random sparse indices.
5935         local i
5936         local index
5937         local ost_indices
5938         local LOV_V1_INSANE_STRIPE_COUNT=65532
5939         for i in $(seq $OSTCOUNT); do
5940                 index=$(((RANDOM * 2) % LOV_V1_INSANE_STRIPE_COUNT))
5941                 ost_indices+=" $index"
5942         done
5943         ost_indices=$(comma_list $ost_indices)
5944
5945         trap "restore_ostindex" EXIT
5946         echo -e "\nFormat $OSTCOUNT OSTs with sparse indices $ost_indices"
5947         OST_INDEX_LIST=[$ost_indices] formatall
5948
5949         # Setup Lustre filesystem.
5950         start_mgsmds || error "start_mgsmds failed"
5951         for i in $(seq $OSTCOUNT); do
5952                 start ost$i $(ostdevname $i) $OST_MOUNT_OPTS ||
5953                         error "start ost$i failed"
5954         done
5955
5956         mount_client $MOUNT || error "mount client $MOUNT failed"
5957         if ! combined_mgs_mds ; then
5958                 mount_mgs_client
5959         fi
5960
5961         wait_osts_up
5962         $LFS df $MOUNT || error "$LFS df $MOUNT failed"
5963         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
5964
5965         # Create a new pool and add OSTs into it.
5966         local ost_pool=$FSNAME.$TESTNAME
5967         create_pool $ost_pool || error "create OST pool $ost_pool failed"
5968
5969         trap - EXIT
5970         trap "cleanup_82b" EXIT
5971
5972         local ost_idx_in_list=${ost_indices##*,}
5973         local ost_idx_in_pool=$(exclude_items_from_list $ost_indices \
5974                                 $ost_idx_in_list)
5975
5976         local ost_targets="$FSNAME-OST["
5977         for i in ${ost_idx_in_pool//,/ }; do
5978                 ost_targets=$ost_targets$(printf "%04x," $i)
5979         done
5980         ost_targets="${ost_targets%,}]"
5981
5982         local ost_targets_uuid=$(for i in ${ost_idx_in_pool//,/ }; \
5983                                  do printf "$FSNAME-OST%04x_UUID\n" $i; done |
5984                                  sort -u | tr '\n' ' ')
5985
5986         local cmd="$LCTL pool_add $ost_pool $ost_targets"
5987         do_facet mgs $cmd || error "$cmd failed"
5988         wait_update $HOSTNAME "$LCTL get_param -n lov.$FSNAME-*.pools.$TESTNAME|
5989                                sort -u | tr '\n' ' ' " "$ost_targets_uuid" ||
5990                                         error "wait_update $ost_pool failed"
5991         wait_update_facet $SINGLEMDS "$LCTL pool_list $ost_pool | wc -l" 4 ||
5992                                 error "wait_update pool_list $ost_pool failed"
5993
5994         # If [--pool|-p <pool_name>] is set with [--ost-list|-o <ost_indices>],
5995         # then the OSTs must be the members of the pool.
5996         local file=$DIR/$tdir/$tfile
5997         cmd="$SETSTRIPE -p $ost_pool -o $ost_idx_in_list $file"
5998         echo -e "\n$cmd"
5999         eval $cmd && error "OST with index $ost_idx_in_list should be" \
6000                            "in OST pool $ost_pool"
6001
6002         # Only select OST $ost_idx_in_list from $ost_pool for file.
6003         ost_idx_in_list=${ost_idx_in_pool#*,}
6004         cmd="$SETSTRIPE -p $ost_pool -o $ost_idx_in_list $file"
6005         echo -e "\n$cmd"
6006         eval $cmd || error "$cmd failed"
6007         cmd="$GETSTRIPE $file"
6008         echo -e "\n$cmd"
6009         eval $cmd || error "$cmd failed"
6010         check_stripe_count $file 2
6011         check_obdidx $file $ost_idx_in_list
6012         dd if=/dev/urandom of=$file count=1 bs=1M > /dev/null 2>&1 ||
6013                 error "write $file failed"
6014
6015         cleanup_82b
6016 }
6017 run_test 82b "specify OSTs for file with --pool and --ost-list options"
6018
6019 test_83() {
6020         [[ $(lustre_version_code ost1) -ge $(version_code 2.6.91) ]] ||
6021                 { skip "Need OST version at least 2.6.91" && return 0; }
6022         if [ $(facet_fstype ost1) != ldiskfs ]; then
6023                 skip "ldiskfs only test"
6024                 return
6025         fi
6026
6027         local dev
6028         local ostmnt
6029         local fstype
6030         local mnt_opts
6031
6032         dev=$(ostdevname 1)
6033         ostmnt=$(facet_mntpt ost1)
6034         fstype=$(facet_fstype ost1)
6035
6036         # Mount the OST as an ldiskfs filesystem.
6037         log "mount the OST $dev as a $fstype filesystem"
6038         add ost1 $(mkfs_opts ost1 $dev) $FSTYPE_OPT \
6039                 --reformat $dev > /dev/null ||
6040                 error "format ost1 error"
6041
6042         if ! test -b $dev; then
6043                 mnt_opts=$(csa_add "$OST_MOUNT_OPTS" -o loop)
6044         fi
6045         echo "mnt_opts $mnt_opts"
6046         do_facet ost1 mount -t $fstype $dev \
6047                 $ostmnt $mnt_opts
6048         # Run llverfs on the mounted ldiskfs filesystem.
6049         # It is needed to get ENOSPACE.
6050         log "run llverfs in partial mode on the OST $fstype $ostmnt"
6051         do_rpc_nodes $(facet_host ost1) run_llverfs $ostmnt -vpl \
6052                 "no" || error "run_llverfs error on $fstype"
6053
6054         # Unmount the OST.
6055         log "unmount the OST $dev"
6056         stop ost1
6057
6058         # Delete file IO_scrub. Later osd_scrub_setup will try to
6059         # create "IO_scrub" but will get ENOSPACE.
6060         writeconf_all
6061         echo "start ost1 service on `facet_active_host ost1`"
6062         start ost1 `ostdevname 1` $OST_MOUNT_OPTS
6063
6064         local err
6065         err=$(do_facet ost1 dmesg | grep "VFS: Busy inodes after unmount of")
6066         echo "string err $err"
6067         [ -z "$err" ] || error $err
6068         reformat
6069 }
6070 run_test 83 "ENOSPACE on OST doesn't cause message VFS: \
6071 Busy inodes after unmount ..."
6072
6073 test_84() {
6074         local facet=$SINGLEMDS
6075         local num=$(echo $facet | tr -d "mds")
6076         local dev=$(mdsdevname $num)
6077         local time_min=$(recovery_time_min)
6078         local recovery_duration
6079         local completed_clients
6080         local correct_clients
6081         local wrap_up=5
6082
6083         echo "start mds service on $(facet_active_host $facet)"
6084         start_mds \
6085         "-o recovery_time_hard=$time_min,recovery_time_soft=$time_min" $@ ||
6086                 error "start MDS failed"
6087
6088         start_ost || error "start OST0000 failed"
6089         start_ost2 || error "start OST0001 failed"
6090
6091         echo "recovery_time=$time_min, timeout=$TIMEOUT, wrap_up=$wrap_up"
6092
6093         mount_client $MOUNT1 || error "mount $MOUNT1 failed"
6094         mount_client $MOUNT2 || error "mount $MOUNT2 failed"
6095         # make sure new superblock labels are sync'd before disabling writes
6096         sync_all_data
6097         sleep 5
6098
6099         replay_barrier $SINGLEMDS
6100         createmany -o $DIR1/$tfile-%d 1000
6101
6102         # We need to catch the end of recovery window to extend it.
6103         # Skip 5 requests and add delay to request handling.
6104         #define OBD_FAIL_TGT_REPLAY_DELAY  0x709 | FAIL_SKIP
6105         do_facet $SINGLEMDS "lctl set_param fail_loc=0x20000709 fail_val=5"
6106
6107         facet_failover --fsck $SINGLEMDS || error "failover: $?"
6108         client_up
6109
6110         echo "recovery status"
6111         do_facet $SINGLEMDS \
6112                 "$LCTL get_param -n mdt.$FSNAME-MDT0000.recovery_status"
6113
6114         recovery_duration=$(do_facet $SINGLEMDS \
6115                 "$LCTL get_param -n mdt.$FSNAME-MDT0000.recovery_status" |
6116                 awk '/recovery_duration/ { print $2 }')
6117         (( $recovery_duration > $time_min + $wrap_up )) &&
6118                 error "recovery_duration > recovery_time_hard + wrap up"
6119         completed_clients=$(do_facet $SINGLEMDS \
6120                 "$LCTL get_param -n mdt.$FSNAME-MDT0000.recovery_status" |
6121                 awk '/completed_clients/ { print $2 }')
6122
6123         correct_clients="$MDSCOUNT/$((MDSCOUNT+1))"
6124         [ "$completed_clients" = "${correct_clients}" ] ||
6125                 error "$completed_clients != $correct_clients"
6126
6127         do_facet $SINGLEMDS "lctl set_param fail_loc=0"
6128         umount_client $MOUNT1
6129         umount_client $MOUNT2
6130
6131         stop_ost
6132         stop_ost2
6133         stop_mds
6134 }
6135 run_test 84 "check recovery_hard_time"
6136
6137 test_85() {
6138         [[ $(lustre_version_code ost1) -ge $(version_code 2.7.55) ]] ||
6139                 { skip "Need OST version at least 2.7.55" && return 0; }
6140 ##define OBD_FAIL_OSD_OST_EA_FID_SET 0x197
6141         do_facet ost1 "lctl set_param fail_loc=0x197"
6142         start_ost
6143         stop_ost
6144 }
6145 run_test 85 "osd_ost init: fail ea_fid_set"
6146
6147 cleanup_86() {
6148         trap 0
6149
6150         # ost1 has already registered to the MGS before the reformat.
6151         # So after reformatting it with option "-G", it could not be
6152         # mounted to the MGS. Cleanup the system for subsequent tests.
6153         reformat_and_config
6154 }
6155
6156 test_86() {
6157         local server_version=$(lustre_version_code $SINGLEMDS)
6158         [ "$(facet_fstype ost1)" = "zfs" ] &&
6159                 skip "LU-6442: no such mkfs params for ZFS OSTs" && return
6160         [[ $server_version -ge $(version_code 2.7.56) ]] ||
6161                 { skip "Need server version newer than 2.7.55"; return 0; }
6162
6163         local OST_OPTS="$(mkfs_opts ost1 $(ostdevname 1)) \
6164                 --reformat $(ostdevname 1) $(ostvdevname 1)"
6165
6166         local NEWSIZE=1024
6167         local OLDSIZE=$(do_facet ost1 "$DEBUGFS -c -R stats $(ostdevname 1)" |
6168                 awk '/Flex block group size: / { print $NF; exit; }')
6169
6170         local opts=OST_OPTS
6171         if [[ ${!opts} != *mkfsoptions* ]]; then
6172                 eval opts=\"${!opts} \
6173                         --mkfsoptions='\\\"-O flex_bg -G $NEWSIZE\\\"'\"
6174         else
6175                 val=${!opts//--mkfsoptions=\\\"/ \
6176                         --mkfsoptions=\\\"-O flex_bg -G $NEWSIZE }
6177                 eval opts='${val}'
6178         fi
6179
6180         echo "params: $opts"
6181
6182         trap cleanup_86 EXIT ERR
6183
6184         stopall
6185         add ost1 $opts || error "add ost1 failed with new params"
6186
6187         local FOUNDSIZE=$(do_facet ost1 "$DEBUGFS -c -R stats $(ostdevname 1)" |
6188                 awk '/Flex block group size: / { print $NF; exit; }')
6189
6190         [[ $FOUNDSIZE == $NEWSIZE ]] ||
6191                 error "Flex block group size: $FOUNDSIZE, expected: $NEWSIZE"
6192
6193         cleanup_86
6194 }
6195 run_test 86 "Replacing mkfs.lustre -G option"
6196
6197 test_87() { #LU-6544
6198         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.9.51) ]] ||
6199                 { skip "Need MDS version at least 2.9.51" && return; }
6200         [[ $(facet_fstype $SINGLEMDS) != ldiskfs ]] &&
6201                 { skip "ldiskfs only test" && return; }
6202         [[ $OSTCOUNT -gt 59 ]] &&
6203                 { skip "Ignore wide striping situation" && return; }
6204
6205         local mdsdev=$(mdsdevname 1)
6206         local mdsvdev=$(mdsvdevname 1)
6207         local file=$DIR/$tfile
6208         local mntpt=$(facet_mntpt $SINGLEMDS)
6209         local used_xattr_blk=0
6210         local inode_size=${1:-1024}
6211         local left_size=0
6212         local xtest="trusted.test"
6213         local value
6214         local orig
6215         local i
6216         local stripe_cnt=$(($OSTCOUNT + 2))
6217
6218         #Please see ldiskfs_make_lustre() for MDT inode size calculation
6219         if [ $stripe_cnt -gt 16 ]; then
6220                 inode_size=2048
6221         fi
6222         left_size=$(expr $inode_size - \
6223                         156 - \
6224                         32 - \
6225                         32 - 40 \* 3 - 32 \* 3 - $stripe_cnt \* 24 - 16 - 3 -  \
6226                         24 - 16 - 3 - \
6227                         24 - 18 - $(expr length $tfile) - 16 - 4)
6228         if [ $left_size -le 0 ]; then
6229                 echo "No space($left_size) is expected in inode."
6230                 echo "Try 1-byte xattr instead to verify this."
6231                 left_size=1
6232         else
6233                 echo "Estimate: at most $left_size-byte space left in inode."
6234         fi
6235
6236         unload_modules
6237         reformat
6238
6239         add mds1 $(mkfs_opts mds1 ${mdsdev}) --stripe-count-hint=$stripe_cnt \
6240                 --reformat $mdsdev $mdsvdev || error "add mds1 failed"
6241         start_mdt 1 > /dev/null || error "start mdt1 failed"
6242         for i in $(seq $OSTCOUNT); do
6243                 start ost$i $(ostdevname $i) $OST_MOUNT_OPTS > /dev/null ||
6244                         error "start ost$i failed"
6245         done
6246         mount_client $MOUNT > /dev/null || error "mount client $MOUNT failed"
6247         check_mount || error "check client $MOUNT failed"
6248
6249         #set xattr
6250         $SETSTRIPE -E 1M -S 1M -c 1 -E 64M -c 1 -E -1 -c -1 $file ||
6251                 error "Create file with 3 components failed"
6252         $TRUNCATE $file $((1024*1024*64+1)) || error "truncate file failed"
6253         i=$($GETSTRIPE -I3 -c $file) || error "get 3rd stripe count failed"
6254         if [ $i -ne $OSTCOUNT ]; then
6255                 left_size=$(expr $left_size + $(expr $OSTCOUNT - $i) \* 24)
6256                 echo -n "Since only $i out $OSTCOUNT OSTs are used, "
6257                 echo -n "the expected left space is changed to "
6258                 echo "$left_size bytes at most."
6259         fi
6260         value=$(generate_string $left_size)
6261         setfattr -n $xtest -v $value $file
6262         orig=$(get_xattr_value $xtest $file)
6263         [[ "$orig" != "$value" ]] && error "$xtest changed"
6264
6265         #Verify if inode has some expected space left
6266         umount $MOUNT > /dev/null || error "umount $MOUNT failed"
6267         stop_mdt 1 > /dev/null || error "stop mdt1 failed"
6268         mount_ldiskfs $SINGLEMDS || error "mount -t ldiskfs $SINGLEMDS failed"
6269
6270         do_facet $SINGLEMDS ls -sal $mntpt/ROOT/$tfile
6271         used_xattr_blk=$(do_facet $SINGLEMDS ls -s $mntpt/ROOT/$tfile |
6272                         awk '{ print $1 }')
6273         [[ $used_xattr_blk -eq 0 ]] &&
6274                 error "Please check MDS inode size calculation: \
6275                        more than $left_size-byte space left in inode."
6276         echo "Verified: at most $left_size-byte space left in inode."
6277
6278         stopall
6279 }
6280 run_test 87 "check if MDT inode can hold EAs with N stripes properly"
6281
6282 test_88() {
6283         [ "$(facet_fstype mds1)" == "zfs" ] &&
6284                 skip "LU-6662: no implementation for ZFS" && return
6285
6286         load_modules
6287
6288         add mds1 $(mkfs_opts mds1 $(mdsdevname 1)) \
6289                 --reformat $(mdsdevname 1) || error "add mds1 failed"
6290
6291         do_facet mds1 "$TUNEFS $(mdsdevname 1) |
6292                 grep -e \".*opts:.*errors=remount-ro.*\"" ||
6293                 error "default mount options is missing"
6294
6295         add mds1 $(mkfs_opts mds1 $(mdsdevname 1)) \
6296                 --mountfsoptions="user_xattr,errors=panic" \
6297                 --reformat $(mdsdevname 1) || error "add mds1 failed"
6298
6299         do_facet mds1 "$TUNEFS $(mdsdevname 1) |
6300                 grep -e \".*opts:.*errors=panic.*\"" ||
6301                 error "user can't override default mount options"
6302 }
6303 run_test 88 "check the default mount options can be overridden"
6304
6305 test_89() { # LU-7131
6306         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.9.54) ]] ||
6307                 { skip "Need MDT version at least 2.9.54" && return 0; }
6308
6309         local key=failover.node
6310         local val1=192.0.2.254@tcp0 # Reserved IPs, see RFC 5735
6311         local val2=192.0.2.255@tcp0
6312         local mdsdev=$(mdsdevname 1)
6313         local params
6314
6315         stopall
6316
6317         [ $(facet_fstype mds1) == zfs ] && import_zpool mds1
6318         # Check that parameters are added correctly
6319         echo "tunefs --param $key=$val1"
6320         do_facet mds "$TUNEFS --param $key=$val1 $mdsdev >/dev/null" ||
6321                 error "tunefs --param $key=$val1 failed"
6322         params=$(do_facet mds $TUNEFS --dryrun $mdsdev) ||
6323                 error "tunefs --dryrun failed"
6324         params=${params##*Parameters:}
6325         params=${params%%exiting*}
6326         [ $(echo $params | tr ' ' '\n' | grep -c $key=$val1) = "1" ] ||
6327                 error "on-disk parameter not added correctly via tunefs"
6328
6329         # Check that parameters replace existing instances when added
6330         echo "tunefs --param $key=$val2"
6331         do_facet mds "$TUNEFS --param $key=$val2 $mdsdev >/dev/null" ||
6332                 error "tunefs --param $key=$val2 failed"
6333         params=$(do_facet mds $TUNEFS --dryrun $mdsdev) ||
6334                 error "tunefs --dryrun failed"
6335         params=${params##*Parameters:}
6336         params=${params%%exiting*}
6337         [ $(echo $params | tr ' ' '\n' | grep -c $key=) = "1" ] ||
6338                 error "on-disk parameter not replaced via tunefs"
6339         [ $(echo $params | tr ' ' '\n' | grep -c $key=$val2) = "1" ] ||
6340                 error "on-disk parameter not replaced correctly via tunefs"
6341
6342         # Check that a parameter is erased properly
6343         echo "tunefs --erase-param $key"
6344         do_facet mds "$TUNEFS --erase-param $key $mdsdev >/dev/null" ||
6345                 error "tunefs --erase-param $key failed"
6346         params=$(do_facet mds $TUNEFS --dryrun $mdsdev) ||
6347                 error "tunefs --dryrun failed"
6348         params=${params##*Parameters:}
6349         params=${params%%exiting*}
6350         [ $(echo $params | tr ' ' '\n' | grep -c $key=) = "0" ] ||
6351                 error "on-disk parameter not erased correctly via tunefs"
6352
6353         # Check that all the parameters are erased
6354         echo "tunefs --erase-params"
6355         do_facet mds "$TUNEFS --erase-params $mdsdev >/dev/null" ||
6356                 error "tunefs --erase-params failed"
6357         params=$(do_facet mds $TUNEFS --dryrun $mdsdev) ||
6358                 error "tunefs --dryrun failed"
6359         params=${params##*Parameters:}
6360         params=${params%%exiting*}
6361         [ -z $params ] ||
6362                 error "all on-disk parameters not erased correctly via tunefs"
6363
6364         # Check the order of options --erase-params and --param
6365         echo "tunefs --param $key=$val1 --erase-params"
6366         do_facet mds \
6367                 "$TUNEFS --param $key=$val1 --erase-params $mdsdev >/dev/null"||
6368                 error "tunefs --param $key=$val1 --erase-params failed"
6369         params=$(do_facet mds $TUNEFS --dryrun $mdsdev) ||
6370                 error "tunefs --dryrun failed"
6371         params=${params##*Parameters:}
6372         params=${params%%exiting*}
6373         [ $(echo $params | tr ' ' '\n') == "$key=$val1" ] ||
6374                 error "on-disk param not added correctly with --erase-params"
6375
6376         reformat
6377 }
6378 run_test 89 "check tunefs --param and --erase-param{s} options"
6379
6380 # $1 test directory
6381 # $2 (optional) value of max_mod_rpcs_in_flight to set
6382 check_max_mod_rpcs_in_flight() {
6383         local dir="$1"
6384         local mmr="$2"
6385         local idx
6386         local facet
6387         local tmp
6388         local i
6389
6390         idx=$(printf "%04x" $($LFS getdirstripe -i $dir))
6391         facet="mds$((0x$idx + 1))"
6392
6393         if [ -z "$mmr" ]; then
6394                 # get value of max_mod_rcps_in_flight
6395                 mmr=$($LCTL get_param -n \
6396                         mdc.$FSNAME-MDT$idx-mdc-*.max_mod_rpcs_in_flight) ||
6397                         error "Unable to get max_mod_rpcs_in_flight"
6398                 echo "max_mod_rcps_in_flight is $mmr"
6399         else
6400                 # set value of max_mod_rpcs_in_flight
6401                 $LCTL set_param \
6402                     mdc.$FSNAME-MDT$idx-mdc-*.max_mod_rpcs_in_flight=$mmr ||
6403                         error "Unable to set max_mod_rpcs_in_flight to $mmr"
6404                 echo "max_mod_rpcs_in_flight set to $mmr"
6405         fi
6406
6407         # create mmr+1 files
6408         echo "creating $((mmr + 1)) files ..."
6409         umask 0022
6410         for i in $(seq $((mmr + 1))); do
6411                 touch $dir/file-$i
6412         done
6413
6414         ### part 1 ###
6415
6416         # consumes mmr-1 modify RPC slots
6417         #define OBD_FAIL_MDS_REINT_MULTI_NET     0x159
6418         # drop requests on MDT so that RPC slots are consumed
6419         # during all the request resend interval
6420         do_facet $facet "$LCTL set_param fail_loc=0x159"
6421         echo "launch $((mmr - 1)) chmod in parallel ..."
6422         for i in $(seq $((mmr - 1))); do
6423                 chmod 0600 $dir/file-$i &
6424         done
6425         sleep 1
6426
6427         # send one additional modify RPC
6428         do_facet $facet "$LCTL set_param fail_loc=0"
6429         echo "launch 1 additional chmod in parallel ..."
6430         chmod 0600 $dir/file-$mmr &
6431         sleep 1
6432
6433         # check this additional modify RPC get a modify RPC slot
6434         # and succeed its operation
6435         checkstat -vp 0600 $dir/file-$mmr ||
6436                 error "Unable to send $mmr modify RPCs in parallel"
6437         wait
6438
6439         ### part 2 ###
6440
6441         # consumes mmr modify RPC slots
6442         #define OBD_FAIL_MDS_REINT_MULTI_NET     0x159
6443         # drop requests on MDT so that RPC slots are consumed
6444         # during all the request resend interval
6445         do_facet $facet "$LCTL set_param fail_loc=0x159"
6446         echo "launch $mmr chmod in parallel ..."
6447         for i in $(seq $mmr); do
6448                 chmod 0666 $dir/file-$i &
6449         done
6450         sleep 1
6451
6452         # send one additional modify RPC
6453         do_facet $facet "$LCTL set_param fail_loc=0"
6454         echo "launch 1 additional chmod in parallel ..."
6455         chmod 0666 $dir/file-$((mmr + 1)) &
6456         sleep 1
6457
6458         # check this additional modify RPC blocked getting a modify RPC slot
6459         checkstat -vp 0644 $dir/file-$((mmr + 1)) ||
6460                 error "Unexpectedly send $(($mmr + 1)) modify RPCs in parallel"
6461         wait
6462 }
6463
6464 test_90a() {
6465         reformat
6466         if ! combined_mgs_mds ; then
6467                 start_mgs
6468         fi
6469         setup
6470
6471         [[ $($LCTL get_param mdc.*.import |
6472              grep "connect_flags:.*multi_mod_rpc") ]] ||
6473                 { skip "Need MDC with 'multi_mod_rpcs' feature"; return 0; }
6474
6475         # check default value
6476         $LFS mkdir -c1 $DIR/$tdir || error "mkdir $DIR/$tdir failed"
6477         check_max_mod_rpcs_in_flight $DIR/$tdir
6478
6479         cleanup
6480 }
6481 run_test 90a "check max_mod_rpcs_in_flight is enforced"
6482
6483 test_90b() {
6484         local idx
6485         local facet
6486         local tmp
6487         local mmrpc
6488
6489         setup
6490
6491         [[ $($LCTL get_param mdc.*.import |
6492              grep "connect_flags:.*multi_mod_rpc") ]] ||
6493                 { skip "Need MDC with 'multi_mod_rpcs' feature"; return 0; }
6494
6495         ### test 1.
6496         # update max_mod_rpcs_in_flight
6497         $LFS mkdir -c1 $DIR/${tdir}1 || error "mkdir $DIR/${tdir}1 failed"
6498         check_max_mod_rpcs_in_flight $DIR/${tdir}1 1
6499
6500         ### test 2.
6501         # check client is able to send multiple modify RPCs in paralell
6502         tmp=$($LCTL get_param -n mdc.$FSNAME-MDT*-mdc-*.import |
6503                 grep -c "multi_mod_rpcs")
6504         if [ "$tmp" -ne $MDSCOUNT ]; then
6505                 echo "Client not able to send multiple modify RPCs in parallel"
6506                 cleanup
6507                 return
6508         fi
6509
6510         # update max_mod_rpcs_in_flight
6511         $LFS mkdir -c1 $DIR/${tdir}2 || error "mkdir $DIR/${tdir}2 failed"
6512         check_max_mod_rpcs_in_flight $DIR/${tdir}2 5
6513
6514         ### test 3.
6515         $LFS mkdir -c1 $DIR/${tdir}3 || error "mkdir $DIR/${tdir}3 failed"
6516         idx=$(printf "%04x" $($LFS getdirstripe -i $DIR/${tdir}3))
6517         facet="mds$((0x$idx + 1))"
6518
6519         # save MDT max_mod_rpcs_per_client
6520         mmrpc=$(do_facet $facet \
6521                     cat /sys/module/mdt/parameters/max_mod_rpcs_per_client)
6522
6523         # update max_mod_rpcs_in_flight
6524         umount_client $MOUNT
6525         do_facet $facet \
6526                 "echo 16 > /sys/module/mdt/parameters/max_mod_rpcs_per_client"
6527         mount_client $MOUNT
6528         $LCTL set_param mdc.$FSNAME-MDT$idx-mdc-*.max_rpcs_in_flight=17
6529         check_max_mod_rpcs_in_flight $DIR/${tdir}3 16
6530
6531         # restore MDT max_mod_rpcs_per_client initial value
6532         do_facet $facet \
6533                 "echo $mmrpc > /sys/module/mdt/parameters/max_mod_rpcs_per_client"
6534
6535         rm -rf $DIR/${tdir}?
6536         cleanup
6537 }
6538 run_test 90b "check max_mod_rpcs_in_flight is enforced after update"
6539
6540 test_90c() {
6541         local tmp
6542         local mrif
6543         local mmrpc
6544
6545         setup
6546
6547         [[ $($LCTL get_param mdc.*.import |
6548              grep "connect_flags:.*multi_mod_rpc") ]] ||
6549                 { skip "Need MDC with 'multi_mod_rpcs' feature"; return 0; }
6550
6551         # check client is able to send multiple modify RPCs in paralell
6552         tmp=$($LCTL get_param -n mdc.$FSNAME-MDT*-mdc-*.import |
6553                 grep -c "multi_mod_rpcs")
6554         if [ "$tmp" -ne $MDSCOUNT ]; then
6555                 skip "Client not able to send multiple modify RPCs in parallel"
6556                 cleanup
6557                 return
6558         fi
6559
6560         # get max_rpcs_in_flight value
6561         mrif=$($LCTL get_param -n mdc.$FSNAME-MDT0000-mdc-*.max_rpcs_in_flight)
6562         echo "max_rpcs_in_flight is $mrif"
6563
6564         # get MDT max_mod_rpcs_per_client
6565         mmrpc=$(do_facet mds1 \
6566                     cat /sys/module/mdt/parameters/max_mod_rpcs_per_client)
6567         echo "max_mod_rpcs_per_client is $mmrpc"
6568
6569         # testcase 1
6570         # attempt to set max_mod_rpcs_in_flight to max_rpcs_in_flight value
6571         # prerequisite: set max_mod_rpcs_per_client to max_rpcs_in_flight value
6572         umount_client $MOUNT
6573         do_facet mds1 \
6574                 "echo $mrif > /sys/module/mdt/parameters/max_mod_rpcs_per_client"
6575         mount_client $MOUNT
6576
6577         $LCTL set_param \
6578             mdc.$FSNAME-MDT0000-mdc-*.max_mod_rpcs_in_flight=$mrif &&
6579             error "set max_mod_rpcs_in_flight to $mrif should fail"
6580
6581         umount_client $MOUNT
6582         do_facet mds1 \
6583                 "echo $mmrpc > /sys/module/mdt/parameters/max_mod_rpcs_per_client"
6584         mount_client $MOUNT
6585
6586         # testcase 2
6587         # attempt to set max_mod_rpcs_in_flight to max_mod_rpcs_per_client+1
6588         # prerequisite: set max_rpcs_in_flight to max_mod_rpcs_per_client+2
6589         $LCTL set_param \
6590             mdc.$FSNAME-MDT0000-mdc-*.max_rpcs_in_flight=$((mmrpc + 2))
6591
6592         $LCTL set_param \
6593             mdc.$FSNAME-MDT0000-mdc-*.max_mod_rpcs_in_flight=$((mmrpc + 1)) &&
6594             error "set max_mod_rpcs_in_flight to $((mmrpc + 1)) should fail"
6595
6596         cleanup
6597 }
6598 run_test 90c "check max_mod_rpcs_in_flight update limits"
6599
6600 test_90d() {
6601         local idx
6602         local facet
6603         local mmr
6604         local i
6605         local pid
6606
6607         setup
6608
6609         [[ $($LCTL get_param mdc.*.import |
6610              grep "connect_flags:.*multi_mod_rpc") ]] ||
6611                 { skip "Need MDC with 'multi_mod_rpcs' feature"; return 0; }
6612
6613         $LFS mkdir -c1 $DIR/$tdir || error "mkdir $DIR/$tdir failed"
6614         idx=$(printf "%04x" $($LFS getdirstripe -i $DIR/$tdir))
6615         facet="mds$((0x$idx + 1))"
6616
6617         # check client version supports multislots
6618         tmp=$($LCTL get_param -N \
6619                 mdc.$FSNAME-MDT$idx-mdc-*.max_mod_rpcs_in_flight)
6620         if [ -z "$tmp" ]; then
6621                 skip "Client does not support multiple modify RPCs in flight"
6622                 cleanup
6623                 return
6624         fi
6625
6626         # get current value of max_mod_rcps_in_flight
6627         mmr=$($LCTL get_param -n \
6628                 mdc.$FSNAME-MDT$idx-mdc-*.max_mod_rpcs_in_flight)
6629         echo "max_mod_rcps_in_flight is $mmr"
6630
6631         # create mmr files
6632         echo "creating $mmr files ..."
6633         umask 0022
6634         for i in $(seq $mmr); do
6635                 touch $DIR/$tdir/file-$i
6636         done
6637
6638         # prepare for close RPC
6639         multiop_bg_pause $DIR/$tdir/file-close O_c
6640         pid=$!
6641
6642         # consumes mmr modify RPC slots
6643         #define OBD_FAIL_MDS_REINT_MULTI_NET     0x159
6644         # drop requests on MDT so that RPC slots are consumed
6645         # during all the request resend interval
6646         do_facet $facet "$LCTL set_param fail_loc=0x159"
6647         echo "launch $mmr chmod in parallel ..."
6648         for i in $(seq $mmr); do
6649                 chmod 0600 $DIR/$tdir/file-$i &
6650         done
6651
6652         # send one additional close RPC
6653         do_facet $facet "$LCTL set_param fail_loc=0"
6654         echo "launch 1 additional close in parallel ..."
6655         kill -USR1 $pid
6656         cancel_lru_locks mdc
6657         sleep 1
6658
6659         # check this additional close RPC get a modify RPC slot
6660         # and multiop process completed
6661         [ -d /proc/$pid ] &&
6662                 error "Unable to send the additional close RPC in parallel"
6663         wait
6664         rm -rf $DIR/$tdir
6665         cleanup
6666 }
6667 run_test 90d "check one close RPC is allowed above max_mod_rpcs_in_flight"
6668
6669 check_uuid_on_ost() {
6670         local nid=$1
6671         do_facet ost1 "$LCTL get_param obdfilter.${FSNAME}*.exports.'$nid'.uuid"
6672 }
6673
6674 check_uuid_on_mdt() {
6675         local nid=$1
6676         do_facet $SINGLEMDS "$LCTL get_param mdt.${FSNAME}*.exports.'$nid'.uuid"
6677 }
6678
6679 test_91() {
6680         local uuid
6681         local nid
6682         local found
6683
6684         [[ $(lustre_version_code ost1) -ge $(version_code 2.7.63) ]] ||
6685                 { skip "Need OST version at least 2.7.63" && return 0; }
6686         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.7.63) ]] ||
6687                 { skip "Need MDT version at least 2.7.63" && return 0; }
6688
6689         start_mds || error "MDS start failed"
6690         start_ost || error "unable to start OST"
6691         mount_client $MOUNT || error "client start failed"
6692         check_mount || error "check_mount failed"
6693
6694         if remote_mds; then
6695                 nid=$($LCTL list_nids | head -1 | sed  "s/\./\\\./g")
6696         else
6697                 nid="0@lo"
6698         fi
6699         uuid=$(get_client_uuid $MOUNT)
6700
6701         echo "list nids on mdt:"
6702         do_facet $SINGLEMDS "$LCTL list_param mdt.${FSNAME}*.exports.*"
6703         echo "uuid from $nid:"
6704         do_facet $SINGLEMDS "$LCTL get_param mdt.${FSNAME}*.exports.'$nid'.uuid"
6705
6706         found=$(check_uuid_on_mdt $nid | grep $uuid)
6707         [ -z "$found" ] && error "can't find $uuid $nid on MDT"
6708         found=$(check_uuid_on_ost $nid | grep $uuid)
6709         [ -z "$found" ] && error "can't find $uuid $nid on OST"
6710
6711         # umount the client so it won't reconnect
6712         manual_umount_client --force || error "failed to umount $?"
6713         # shouldn't disappear on MDS after forced umount
6714         found=$(check_uuid_on_mdt $nid | grep $uuid)
6715         [ -z "$found" ] && error "can't find $uuid $nid"
6716
6717         echo "evict $nid"
6718         do_facet $SINGLEMDS \
6719                 "$LCTL set_param -n mdt.${mds1_svc}.evict_client nid:$nid"
6720
6721         found=$(check_uuid_on_mdt $nid | grep $uuid)
6722         [ -n "$found" ] && error "found $uuid $nid on MDT"
6723         found=$(check_uuid_on_ost $nid | grep $uuid)
6724         [ -n "$found" ] && error "found $uuid $nid on OST"
6725
6726         # check it didn't reconnect (being umounted)
6727         sleep $((TIMEOUT+1))
6728         found=$(check_uuid_on_mdt $nid | grep $uuid)
6729         [ -n "$found" ] && error "found $uuid $nid on MDT"
6730         found=$(check_uuid_on_ost $nid | grep $uuid)
6731         [ -n "$found" ] && error "found $uuid $nid on OST"
6732
6733         cleanup
6734 }
6735 run_test 91 "evict-by-nid support"
6736
6737 generate_ldev_conf() {
6738         # generate an ldev.conf file
6739         local ldevconfpath=$1
6740         local fstype=
6741         local fsldevformat=""
6742         touch $ldevconfpath
6743
6744         fstype=$(facet_fstype mgs)
6745         if [ "$fstype" == "zfs" ]; then
6746                 fsldevformat="$fstype:"
6747         else
6748                 fsldevformat=""
6749         fi
6750
6751         printf "%s\t-\t%s-MGS0000\t%s%s\n" \
6752                 $mgs_HOST \
6753                 $FSNAME \
6754                 $fsldevformat \
6755                 $(mgsdevname) > $ldevconfpath
6756
6757         local mdsfo_host=$mdsfailover_HOST;
6758         if [ -z "$mdsfo_host" ]; then
6759                 mdsfo_host="-"
6760         fi
6761
6762         for num in $(seq $MDSCOUNT); do
6763                 fstype=$(facet_fstype mds$num)
6764                 if [ "$fstype" == "zfs" ]; then
6765                         fsldevformat="$fstype:"
6766                 else
6767                         fsldevformat=""
6768                 fi
6769
6770                 printf "%s\t%s\t%s-MDT%04d\t%s%s\n" \
6771                         $mds_HOST \
6772                         $mdsfo_host \
6773                         $FSNAME \
6774                         $num \
6775                         $fsldevformat \
6776                         $(mdsdevname $num) >> $ldevconfpath
6777         done
6778
6779         local ostfo_host=$ostfailover_HOST;
6780         if [ -z "$ostfo_host" ]; then
6781                 ostfo_host="-"
6782         fi
6783
6784         for num in $(seq $OSTCOUNT); do
6785                 fstype=$(facet_fstype ost$num)
6786                 if [ "$fstype" == "zfs" ]; then
6787                         fsldevformat="$fstype:"
6788                 else
6789                         fsldevformat=""
6790                 fi
6791
6792                 printf "%s\t%s\t%s-OST%04d\t%s%s\n" \
6793                         $ost_HOST \
6794                         $ostfo_host \
6795                         $FSNAME \
6796                         $num \
6797                         $fsldevformat \
6798                         $(ostdevname $num) >> $ldevconfpath
6799         done
6800
6801         echo "----- $ldevconfpath -----"
6802         cat $ldevconfpath
6803         echo "--- END $ldevconfpath ---"
6804
6805 }
6806
6807 generate_nids() {
6808         # generate a nids file (mapping between hostname to nid)
6809         # looks like we only have the MGS nid available to us
6810         # so just echo that to a file
6811         local nidspath=$1
6812         echo -e "${mgs_HOST}\t${MGSNID}" > $nidspath
6813
6814         echo "----- $nidspath -----"
6815         cat $nidspath
6816         echo "--- END $nidspath ---"
6817 }
6818
6819 compare_ldev_output() {
6820         ldev_output=$1
6821         expected_output=$2
6822
6823         sort $expected_output -o $expected_output
6824         sort $ldev_output -o $ldev_output
6825
6826         echo "-- START OF LDEV OUTPUT --"
6827         cat $ldev_output
6828         echo "--- END OF LDEV OUTPUT ---"
6829
6830         echo "-- START OF EXPECTED OUTPUT --"
6831         cat $expected_output
6832         echo "--- END OF EXPECTED OUTPUT ---"
6833
6834         diff $expected_output $ldev_output
6835         return $?
6836 }
6837
6838 test_92() {
6839         if [ -z "$LDEV" ]; then
6840                 error "ldev is missing!"
6841         fi
6842
6843         local LDEVCONFPATH=$TMP/ldev.conf
6844         local NIDSPATH=$TMP/nids
6845
6846         echo "Host is $(hostname)"
6847
6848         generate_ldev_conf $LDEVCONFPATH
6849         generate_nids $NIDSPATH
6850
6851         # echo the mgs nid and compare it to environment variable MGSNID
6852         # also, ldev.conf and nids is a server side thing, use the OSS
6853         # hostname
6854         local output
6855         output=$($LDEV -c $LDEVCONFPATH -H $ost_HOST -n $NIDSPATH echo %m)
6856
6857         echo "-- START OF LDEV OUTPUT --"
6858         echo -e "$output"
6859         echo "--- END OF LDEV OUTPUT ---"
6860
6861         # ldev failed, error
6862         if [ $? -ne 0 ]; then
6863                 rm $LDEVCONFPATH $NIDSPATH
6864                 error "ldev failed to execute!"
6865         fi
6866
6867         # need to process multiple lines because of combined MGS and MDS
6868         echo -e $output | awk '{ print $2 }' | while read -r line ; do
6869                 if [ "$line" != "$MGSNID" ]; then
6870                         rm $LDEVCONFPATH $NIDSPATH
6871                         error "ldev failed mgs nid '$line', expected '$MGSNID'"
6872                 fi
6873         done
6874
6875         rm $LDEVCONFPATH $NIDSPATH
6876 }
6877 run_test 92 "ldev returns MGS NID correctly in command substitution"
6878
6879 test_93() {
6880         [ $MDSCOUNT -lt 3 ] && skip "needs >= 3 MDTs" && return
6881
6882         reformat
6883         #start mgs or mgs/mdt0
6884         if ! combined_mgs_mds ; then
6885                 start_mgs
6886                 start_mdt 1
6887         else
6888                 start_mdt 1
6889         fi
6890
6891         start_ost || error "OST0 start fail"
6892
6893         #define OBD_FAIL_MGS_WRITE_TARGET_DELAY  0x90e
6894         do_facet mgs "$LCTL set_param fail_val = 10 fail_loc=0x8000090e"
6895         for num in $(seq 2 $MDSCOUNT); do
6896                 start_mdt $num &
6897         done
6898
6899         mount_client $MOUNT || error "mount client fails"
6900         wait_osc_import_state mds ost FULL
6901         wait_osc_import_state client ost FULL
6902         check_mount || error "check_mount failed"
6903
6904         cleanup || error "cleanup failed with $?"
6905 }
6906 run_test 93 "register mulitple MDT at the same time"
6907
6908 test_94() {
6909         if [ -z "$LDEV" ]; then
6910                 error "ldev is missing!"
6911         fi
6912
6913         local LDEVCONFPATH=$TMP/ldev.conf
6914         local NIDSPATH=$TMP/nids
6915
6916         generate_ldev_conf $LDEVCONFPATH
6917         generate_nids $NIDSPATH
6918
6919         local LDEV_OUTPUT=$TMP/ldev-output.txt
6920         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -F $FSNAME > $LDEV_OUTPUT
6921
6922         # ldev failed, error
6923         if [ $? -ne 0 ]; then
6924                 rm $LDEVCONFPATH $NIDSPATH $LDEV_OUTPUT
6925                 error "ldev failed to execute!"
6926         fi
6927
6928         # expected output
6929         local EXPECTED_OUTPUT=$TMP/ldev-expected.txt
6930
6931         printf "%s-MGS0000\n" $FSNAME > $EXPECTED_OUTPUT
6932
6933         for num in $(seq $MDSCOUNT); do
6934                 printf "%s-MDT%04d\n" $FSNAME $num >> $EXPECTED_OUTPUT
6935         done
6936
6937         for num in $(seq $OSTCOUNT); do
6938                 printf "%s-OST%04d\n" $FSNAME $num >> $EXPECTED_OUTPUT
6939         done
6940
6941         compare_ldev_output $LDEV_OUTPUT $EXPECTED_OUTPUT
6942
6943         if [ $? -ne 0 ]; then
6944                 rm $LDEVCONFPATH $NIDSPATH $EXPECTED_OUTPUT $LDEV_OUTPUT
6945                 error "ldev failed to produce the correct hostlist!"
6946         fi
6947
6948         rm $LDEVCONFPATH $NIDSPATH $EXPECTED_OUTPUT $LDEV_OUTPUT
6949 }
6950 run_test 94 "ldev outputs correct labels for file system name query"
6951
6952 test_95() {
6953         if [ -z "$LDEV" ]; then
6954                 error "ldev is missing!"
6955         fi
6956
6957         local LDEVCONFPATH=$TMP/ldev.conf
6958         local NIDSPATH=$TMP/nids
6959
6960         generate_ldev_conf $LDEVCONFPATH
6961         generate_nids $NIDSPATH
6962
6963         # SUCCESS CASES
6964         # file sys filter
6965         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -F $FSNAME &>/dev/null
6966         if [ $? -ne 0 ]; then
6967                 rm $LDEVCONFPATH $NIDSPATH
6968                 error "ldev label filtering w/ -F failed!"
6969         fi
6970
6971         # local filter
6972         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -l  &>/dev/null
6973         if [ $? -ne 0 ]; then
6974                 rm $LDEVCONFPATH $NIDSPATH
6975                 error "ldev label filtering w/ -l failed!"
6976         fi
6977
6978         # foreign filter
6979         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -f &>/dev/null
6980         if [ $? -ne 0 ]; then
6981                 rm $LDEVCONFPATH $NIDSPATH
6982                 error "ldev label filtering w/ -f failed!"
6983         fi
6984
6985         # all filter
6986         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -a &>/dev/null
6987         if [ $? -ne 0 ]; then
6988                 rm $LDEVCONFPATH $NIDSPATH
6989                 error "ldev label filtering w/ -a failed!"
6990         fi
6991
6992         # FAILURE CASES
6993         # all & file sys
6994         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -a -F $FSNAME &>/dev/null
6995         if [ $? -eq 0 ]; then
6996                 rm $LDEVCONFPATH $NIDSPATH
6997                 error "ldev label filtering w/ -a and -F incorrectly succeeded"
6998         fi
6999
7000         # all & foreign
7001         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -a -f &>/dev/null
7002         if [ $? -eq 0 ]; then
7003                 rm $LDEVCONFPATH $NIDSPATH
7004                 error "ldev label filtering w/ -a and -f incorrectly succeeded"
7005         fi
7006
7007         # all & local
7008         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -a -l &>/dev/null
7009         if [ $? -eq 0 ]; then
7010                 rm $LDEVCONFPATH $NIDSPATH
7011                 error "ldev label filtering w/ -a and -l incorrectly succeeded"
7012         fi
7013
7014         # foreign & local
7015         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -f -l &>/dev/null
7016         if [ $? -eq 0 ]; then
7017                 rm $LDEVCONFPATH $NIDSPATH
7018                 error "ldev label filtering w/ -f and -l incorrectly succeeded"
7019         fi
7020
7021         # file sys & local
7022         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -F $FSNAME -l &>/dev/null
7023         if [ $? -eq 0 ]; then
7024                 rm $LDEVCONFPATH $NIDSPATH
7025                 error "ldev label filtering w/ -F and -l incorrectly succeeded"
7026         fi
7027
7028         # file sys & foreign
7029         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -F $FSNAME -f &>/dev/null
7030         if [ $? -eq 0 ]; then
7031                 rm $LDEVCONFPATH $NIDSPATH
7032                 error "ldev label filtering w/ -F and -f incorrectly succeeded"
7033         fi
7034
7035         rm $LDEVCONFPATH $NIDSPATH
7036 }
7037 run_test 95 "ldev should only allow one label filter"
7038
7039 test_96() {
7040         if [ -z "$LDEV" ]; then
7041                 error "ldev is missing!"
7042         fi
7043
7044         local LDEVCONFPATH=$TMP/ldev.conf
7045         local NIDSPATH=$TMP/nids
7046
7047         generate_ldev_conf $LDEVCONFPATH
7048         generate_nids $NIDSPATH
7049
7050         local LDEV_OUTPUT=$TMP/ldev-output.txt
7051         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -H $mgs_HOST \
7052                 echo %H-%b | \
7053                 awk '{print $2}' > $LDEV_OUTPUT
7054
7055         # ldev failed, error
7056         if [ $? -ne 0 ]; then
7057                 rm $LDEVCONFPATH $NIDSPATH $LDEV_OUTPUT
7058                 error "ldev failed to execute!"
7059         fi
7060
7061         # expected output
7062         local EXPECTED_OUTPUT=$TMP/ldev-expected-output.txt
7063
7064         echo "$mgs_HOST-$(facet_fstype mgs)" > $EXPECTED_OUTPUT
7065
7066         if [ "$mgs_HOST" == "$mds_HOST" ]; then
7067                 for num in $(seq $MDSCOUNT); do
7068                         echo "$mds_HOST-$(facet_fstype mds$num)" \
7069                         >> $EXPECTED_OUTPUT
7070                 done
7071         fi
7072
7073         if [ "$mgs_HOST" == "$ost_HOST" ]; then
7074                 for num in $(seq $OSTCOUNT); do
7075                         echo "$ost_HOST-$(facet_fstype ost$num)" \
7076                         >> $EXPECTED_OUTPUT
7077                 done
7078         fi
7079
7080         compare_ldev_output $LDEV_OUTPUT $EXPECTED_OUTPUT
7081
7082         if [ $? -ne 0 ]; then
7083                 rm $LDEVCONFPATH $NIDSPATH $EXPECTED_OUTPUT $LDEV_OUTPUT
7084                 error "ldev failed to produce the correct output!"
7085         fi
7086
7087         rm $LDEVCONFPATH $NIDSPATH $EXPECTED_OUTPUT $LDEV_OUTPUT
7088 }
7089 run_test 96 "ldev returns hostname and backend fs correctly in command sub"
7090
7091 test_97() {
7092         if [ -z "$LDEV" ]; then
7093                 error "ldev is missing!"
7094         fi
7095
7096         local LDEVCONFPATH=$TMP/ldev.conf
7097         local NIDSPATH=$TMP/nids
7098
7099         generate_ldev_conf $LDEVCONFPATH
7100         generate_nids $NIDSPATH
7101
7102         local LDEV_OUTPUT=$TMP/ldev-output.txt
7103         local EXPECTED_OUTPUT=$TMP/ldev-expected-output.txt
7104
7105         echo -e "\nMDT role"
7106         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -F $FSNAME -R mdt > $LDEV_OUTPUT
7107
7108         if [ $? -ne 0 ]; then
7109                 rm $LDEVCONFPATH $NIDSPATH $LDEV_OUTPUT
7110                 error "ldev failed to execute for mdt role!"
7111         fi
7112
7113         for num in $(seq $MDSCOUNT); do
7114                 printf "%s-MDT%04d\n" $FSNAME $num >> $EXPECTED_OUTPUT
7115         done
7116
7117         compare_ldev_output $LDEV_OUTPUT $EXPECTED_OUTPUT
7118
7119         if [ $? -ne 0 ]; then
7120                 rm $LDEVCONFPATH $NIDSPATH $EXPECTED_OUTPUT $LDEV_OUTPUT
7121                 error "ldev failed to produce the correct output for mdt role!"
7122         fi
7123
7124         echo -e "\nOST role"
7125         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -F $FSNAME -R ost > $LDEV_OUTPUT
7126
7127         if [ $? -ne 0 ]; then
7128                 rm $LDEVCONFPATH $NIDSPATH $LDEV_OUTPUT $EXPECTED_OUTPUT
7129                 error "ldev failed to execute for ost role!"
7130         fi
7131
7132         rm $EXPECTED_OUTPUT
7133         for num in $(seq $OSTCOUNT); do
7134                 printf "%s-OST%04d\n" $FSNAME $num >> $EXPECTED_OUTPUT
7135         done
7136
7137         compare_ldev_output $LDEV_OUTPUT $EXPECTED_OUTPUT
7138
7139         if [ $? -ne 0 ]; then
7140                 rm $LDEVCONFPATH $NIDSPATH $EXPECTED_OUTPUT $LDEV_OUTPUT
7141                 error "ldev failed to produce the correct output for ost role!"
7142         fi
7143
7144         echo -e "\nMGS role"
7145         $LDEV -c $LDEVCONFPATH -n $NIDSPATH -F $FSNAME -R mgs > $LDEV_OUTPUT
7146
7147         if [ $? -ne 0 ]; then
7148                 rm $LDEVCONFPATH $NIDSPATH $LDEV_OUTPUT $EXPECTED_OUTPUT
7149                 error "ldev failed to execute for mgs role!"
7150         fi
7151
7152         printf "%s-MGS0000\n" $FSNAME > $EXPECTED_OUTPUT
7153
7154         compare_ldev_output $LDEV_OUTPUT $EXPECTED_OUTPUT
7155
7156         if [ $? -ne 0 ]; then
7157                 rm $LDEVCONFPATH $NIDSPATH $EXPECTED_OUTPUT $LDEV_OUTPUT
7158                 error "ldev failed to produce the correct output for mgs role!"
7159         fi
7160
7161         rm $LDEVCONFPATH $NIDSPATH $EXPECTED_OUTPUT $LDEV_OUTPUT
7162 }
7163 run_test 97 "ldev returns correct ouput when querying based on role"
7164
7165 test_98()
7166 {
7167         local mountopt
7168         local temp=$MDS_MOUNT_OPTS
7169
7170         setup
7171         check_mount || error "mount failed"
7172         mountopt="user_xattr"
7173         for ((x = 1; x <= 400; x++)); do
7174                 mountopt="$mountopt,user_xattr"
7175         done
7176         remount_client $mountopt $MOUNT  2>&1 | grep "too long" ||
7177                 error "Buffer overflow check failed"
7178         cleanup || error "cleanup failed"
7179 }
7180 run_test 98 "Buffer-overflow check while parsing mount_opts"
7181
7182 test_99()
7183 {
7184         [[ $(facet_fstype ost1) != ldiskfs ]] &&
7185                 { skip "ldiskfs only test" && return; }
7186         [[ $(lustre_version_code ost1) -ge $(version_code 2.8.57) ]] ||
7187                 { skip "Need OST version at least 2.8.57" && return 0; }
7188
7189         local ost_opts="$(mkfs_opts ost1 $(ostdevname 1)) \
7190                 --reformat $(ostdevname 1) $(ostvdevname 1)"
7191         do_facet ost1 $DEBUGFS -c -R stats `ostdevname 1` | grep "meta_bg" &&
7192                 skip "meta_bg already set" && return
7193
7194         local opts=ost_opts
7195         if [[ ${!opts} != *mkfsoptions* ]]; then
7196                 eval opts=\"${!opts} \
7197                 --mkfsoptions='\\\"-O ^resize_inode,meta_bg\\\"'\"
7198         else
7199                 local val=${!opts//--mkfsoptions=\\\"/ \
7200                 --mkfsoptions=\\\"-O ^resize_inode,meta_bg }
7201                 eval opts='${val}'
7202         fi
7203
7204         echo "params: $opts"
7205
7206         add ost1 $opts || error "add ost1 failed with new params"
7207
7208         do_facet ost1 $DEBUGFS -c -R stats `ostdevname 1` | grep "meta_bg" ||
7209                 error "meta_bg is not set"
7210
7211         reformat
7212 }
7213 run_test 99 "Adding meta_bg option"
7214
7215 test_100() {
7216         reformat
7217         start_mds || error "MDS start failed"
7218         start_ost || error "unable to start OST"
7219         mount_client $MOUNT || error "client start failed"
7220         check_mount || error "check_mount failed"
7221
7222         # Desired output
7223         # MGS:
7224         #     0@lo
7225         # lustre-MDT0000:
7226         #     0@lo
7227         # lustre-OST0000:
7228         #     0@lo
7229         do_facet mgs 'lshowmount -v' | awk 'BEGIN {NR == 0; rc=1} /MGS:/ {rc=0}
7230                 END {exit rc}' || error "lshowmount have no output MGS"
7231
7232         do_facet mds1 'lshowmount -v' | awk 'BEGIN {NR == 2; rc=1} /-MDT0000:/
7233                 {rc=0} END {exit rc}' || error "lshowmount have no output MDT0"
7234
7235         do_facet ost1 'lshowmount -v' | awk 'BEGIN {NR == 4; rc=1} /-OST0000:/
7236                 {rc=0} END {exit rc}' || error "lshowmount have no output OST0"
7237
7238         cleanup || error "cleanup failed with $?"
7239 }
7240 run_test 100 "check lshowmount lists MGS, MDT, OST and 0@lo"
7241
7242 test_101() {
7243         local createmany_oid
7244         local dev=$FSNAME-OST0000-osc-MDT0000
7245         setup
7246
7247         createmany -o $DIR1/$tfile-%d 50000 &
7248         createmany_oid=$!
7249         # MDT->OST reconnection causes MDT<->OST last_id synchornisation
7250         # via osp_precreate_cleanup_orphans.
7251         for ((i = 0; i < 100; i++)); do
7252                 for ((k = 0; k < 10; k++)); do
7253                         do_facet $SINGLEMDS "$LCTL --device $dev deactivate;" \
7254                                             "$LCTL --device $dev activate"
7255                 done
7256
7257                 ls -asl $MOUNT | grep '???' &&
7258                         (kill -9 $createmany_oid &>/dev/null; \
7259                          error "File hasn't object on OST")
7260
7261                 kill -s 0 $createmany_oid || break
7262         done
7263         wait $createmany_oid
7264         cleanup
7265 }
7266 run_test 101 "Race MDT->OST reconnection with create"
7267
7268 test_102() {
7269         cleanup || error "cleanup failed with $?"
7270
7271         local mds1dev=$(mdsdevname 1)
7272         local mds1mnt=$(facet_mntpt mds1)
7273         local mds1fstype=$(facet_fstype mds1)
7274         local mds1opts=$MDS_MOUNT_OPTS
7275
7276         if [ $mds1fstype == ldiskfs ] &&
7277            ! do_facet mds1 test -b $mds1dev; then
7278                 mds1opts=$(csa_add "$mds1opts" -o loop)
7279         fi
7280         if [[ $mds1fstype == zfs ]]; then
7281                 import_zpool mds1 || return ${PIPESTATUS[0]}
7282         fi
7283
7284         # unload all and only load libcfs to allow fail_loc setting
7285         do_facet mds1 $LUSTRE_RMMOD || error "unable to unload modules"
7286         do_facet mds1 modprobe libcfs || error "libcfs not loaded"
7287         do_facet mds1 lsmod \| grep libcfs || error "libcfs not loaded"
7288
7289         #define OBD_FAIL_OBDCLASS_MODULE_LOAD    0x60a
7290         do_facet mds1 "$LCTL set_param fail_loc=0x8000060a"
7291
7292         do_facet mds1 $MOUNT_CMD $mds1dev $mds1mnt $mds1opts &&
7293                 error "mdt start must fail"
7294         do_facet mds1 lsmod \| grep  obdclass && error "obdclass must not load"
7295
7296         do_facet mds1 "$LCTL set_param fail_loc=0x0"
7297
7298         do_facet mds1 $MOUNT_CMD $mds1dev $mds1mnt $mds1opts ||
7299                 error "mdt start must not fail"
7300
7301         cleanup || error "cleanup failed with $?"
7302 }
7303 run_test 102 "obdclass module cleanup upon error"
7304
7305 test_renamefs() {
7306         local newname=$1
7307
7308         echo "rename $FSNAME to $newname"
7309
7310         if ! combined_mgs_mds ; then
7311                 local facet=$(mgsdevname)
7312
7313                 do_facet mgs \
7314                         "$TUNEFS --fsname=$newname --rename=$FSNAME -v $facet"||
7315                         error "(7) Fail to rename MGS"
7316                 if [ "$(facet_fstype $facet)" = "zfs" ]; then
7317                         reimport_zpool mgs $newname-mgs
7318                 fi
7319         fi
7320
7321         for num in $(seq $MDSCOUNT); do
7322                 local facet=$(mdsdevname $num)
7323
7324                 do_facet mds${num} \
7325                         "$TUNEFS --fsname=$newname --rename=$FSNAME -v $facet"||
7326                         error "(8) Fail to rename MDT $num"
7327                 if [ "$(facet_fstype $facet)" = "zfs" ]; then
7328                         reimport_zpool mds${num} $newname-mdt${num}
7329                 fi
7330         done
7331
7332         for num in $(seq $OSTCOUNT); do
7333                 local facet=$(ostdevname $num)
7334
7335                 do_facet ost${num} \
7336                         "$TUNEFS --fsname=$newname --rename=$FSNAME -v $facet"||
7337                         error "(9) Fail to rename OST $num"
7338                 if [ "$(facet_fstype $facet)" = "zfs" ]; then
7339                         reimport_zpool ost${num} $newname-ost${num}
7340                 fi
7341         done
7342 }
7343
7344 test_103_set_pool() {
7345         local pname=$1
7346         local ost_x=$2
7347
7348         do_facet mgs $LCTL pool_add $FSNAME.$pname ${FSNAME}-$ost_x ||
7349                 error "Fail to add $ost_x to $FSNAME.$pname"
7350         wait_update $HOSTNAME \
7351                 "lctl get_param -n lov.$FSNAME-clilov-*.pools.$pname |
7352                  grep $ost_x" "$FSNAME-${ost_x}_UUID" ||
7353                 error "$ost_x is NOT in pool $FSNAME.$pname"
7354 }
7355
7356 test_103_check_pool() {
7357         local save_fsname=$1
7358         local errno=$2
7359
7360         stat $DIR/$tdir/test-framework.sh ||
7361                 error "($errno) Fail to stat"
7362         do_facet mgs $LCTL pool_list $FSNAME.pool1 ||
7363                 error "($errno) Fail to list $FSNAME.pool1"
7364         do_facet mgs $LCTL pool_list $FSNAME.$save_fsname ||
7365                 error "($errno) Fail to list $FSNAME.$save_fsname"
7366         do_facet mgs $LCTL pool_list $FSNAME.$save_fsname |
7367                 grep ${FSNAME}-OST0000 ||
7368                 error "($errno) List $FSNAME.$save_fsname is invalid"
7369
7370         local pname=$($LFS getstripe --pool $DIR/$tdir/d0)
7371         [ "$pname" = "$save_fsname" ] ||
7372                 error "($errno) Unexpected pool name $pname"
7373 }
7374
7375 test_103() {
7376         check_mount_and_prep
7377         rm -rf $DIR/$tdir
7378         mkdir $DIR/$tdir || error "(1) Fail to mkdir $DIR/$tdir"
7379         cp $LUSTRE/tests/test-framework.sh $DIR/$tdir ||
7380                 error "(2) Fail to copy test-framework.sh"
7381
7382         if ! combined_mgs_mds ; then
7383                 mount_mgs_client
7384         fi
7385         do_facet mgs $LCTL pool_new $FSNAME.pool1 ||
7386                 error "(3) Fail to create $FSNAME.pool1"
7387         # name the pool name as the fsname
7388         do_facet mgs $LCTL pool_new $FSNAME.$FSNAME ||
7389                 error "(4) Fail to create $FSNAME.$FSNAME"
7390
7391         test_103_set_pool $FSNAME OST0000
7392
7393         $SETSTRIPE -p $FSNAME $DIR/$tdir/d0 ||
7394                 error "(6) Fail to setstripe on $DIR/$tdir/d0"
7395
7396         if ! combined_mgs_mds ; then
7397                 umount_mgs_client
7398         fi
7399         KEEP_ZPOOL=true
7400         stopall
7401
7402         test_renamefs mylustre
7403
7404         local save_fsname=$FSNAME
7405         FSNAME="mylustre"
7406         setupall
7407
7408         if ! combined_mgs_mds ; then
7409                 mount_mgs_client
7410         fi
7411         test_103_check_pool $save_fsname 7
7412
7413         if [ $OSTCOUNT -ge 2 ]; then
7414                 test_103_set_pool $save_fsname OST0001
7415         fi
7416
7417         $SETSTRIPE -p $save_fsname $DIR/$tdir/f0 ||
7418                 error "(16) Fail to setstripe on $DIR/$tdir/f0"
7419         if ! combined_mgs_mds ; then
7420                 umount_mgs_client
7421         fi
7422
7423         stopall
7424
7425         test_renamefs tfs
7426
7427         FSNAME="tfs"
7428         setupall
7429
7430         if ! combined_mgs_mds ; then
7431                 mount_mgs_client
7432         fi
7433         test_103_check_pool $save_fsname 17
7434
7435         if ! combined_mgs_mds ; then
7436                 umount_mgs_client
7437         fi
7438         stopall
7439
7440         test_renamefs $save_fsname
7441
7442         FSNAME=$save_fsname
7443         setupall
7444         KEEP_ZPOOL=false
7445 }
7446 run_test 103 "rename filesystem name"
7447
7448 test_104() { # LU-6952
7449         local mds_mountopts=$MDS_MOUNT_OPTS
7450         local ost_mountopts=$OST_MOUNT_OPTS
7451         local mds_mountfsopts=$MDS_MOUNT_FS_OPTS
7452         local lctl_ver=$(do_facet $SINGLEMDS $LCTL --version |
7453                         awk '{ print $2 }')
7454
7455         [[ $(version_code $lctl_ver) -lt $(version_code 2.9.55) ]] &&
7456                 { skip "this test needs utils above 2.9.55" && return 0; }
7457
7458         # specify "acl" in mount options used by mkfs.lustre
7459         if [ -z "$MDS_MOUNT_FS_OPTS" ]; then
7460                 MDS_MOUNT_FS_OPTS="acl,user_xattr"
7461         else
7462
7463                 MDS_MOUNT_FS_OPTS="${MDS_MOUNT_FS_OPTS},acl,user_xattr"
7464         fi
7465
7466         echo "mountfsopt: $MDS_MOUNT_FS_OPTS"
7467
7468         #reformat/remount the MDT to apply the MDT_MOUNT_FS_OPT options
7469         formatall
7470         if [ -z "$MDS_MOUNT_OPTS" ]; then
7471                 MDS_MOUNT_OPTS="-o noacl"
7472         else
7473                 MDS_MOUNT_OPTS="${MDS_MOUNT_OPTS},noacl"
7474         fi
7475
7476         for num in $(seq $MDSCOUNT); do
7477                 start mds$num $(mdsdevname $num) $MDS_MOUNT_OPTS ||
7478                         error "Failed to start MDS"
7479         done
7480
7481         for num in $(seq $OSTCOUNT); do
7482                 start ost$num $(ostdevname $num) $OST_MOUNT_OPTS ||
7483                         error "Failed to start OST"
7484         done
7485
7486         mount_client $MOUNT
7487         setfacl -m "d:$RUNAS_ID:rwx" $MOUNT &&
7488                 error "ACL is applied when FS is mounted with noacl."
7489
7490         MDS_MOUNT_OPTS=$mds_mountopts
7491         OST_MOUNT_OPTS=$ost_mountopts
7492         MDS_MOUNT_FS_OPTS=$mds_mountfsopts
7493
7494         formatall
7495         setupall
7496 }
7497 run_test 104 "Make sure user defined options are reflected in mount"
7498
7499 error_and_umount() {
7500         umount $TMP/$tdir
7501         rmdir $TMP/$tdir
7502         error $*
7503 }
7504
7505 test_105() {
7506         cleanup -f
7507         reformat
7508         setup
7509         mkdir -p $TMP/$tdir
7510         mount --bind $DIR $TMP/$tdir || error "mount bind mnt pt failed"
7511         rm -f $TMP/$tdir/$tfile
7512         rm -f $TMP/$tdir/${tfile}1
7513
7514         # Files should not be created in ro bind mount point
7515         # remounting from rw to ro
7516         mount -o remount,ro $TMP/$tdir ||
7517                 error_and_umount "readonly remount of bind mnt pt failed"
7518         touch $TMP/$tdir/$tfile &&
7519                 error_and_umount "touch succeeds on ro bind mnt pt"
7520         [ -e $TMP/$tdir/$tfile ] &&
7521                 error_and_umount "file created on ro bind mnt pt"
7522
7523         # Files should be created in rw bind mount point
7524         # remounting from ro to rw
7525         mount -o remount,rw $TMP/$tdir ||
7526                 error_and_umount "read-write remount of bind mnt pt failed"
7527         touch $TMP/$tdir/${tfile}1 ||
7528                 error_and_umount "touch fails on rw bind mnt pt"
7529         [ -e $TMP/$tdir/${tfile}1 ] ||
7530                 error_and_umount "file not created on rw bind mnt pt"
7531         umount $TMP/$tdir || error "umount of bind mnt pt failed"
7532         rmdir $TMP/$tdir
7533         cleanup || error "cleanup failed with $?"
7534 }
7535 run_test 105 "check file creation for ro and rw bind mnt pt"
7536
7537 test_106() {
7538         local repeat=5
7539
7540         reformat
7541         setupall
7542         mkdir -p $DIR/$tdir || error "create $tdir failed"
7543         lfs setstripe -c 1 -i 0 $DIR/$tdir
7544 #define OBD_FAIL_CAT_RECORDS                        0x1312
7545         do_facet mds1 $LCTL set_param fail_loc=0x1312 fail_val=$repeat
7546
7547         for ((i = 1; i <= $repeat; i++)); do
7548
7549                 #one full plain llog
7550                 createmany -o $DIR/$tdir/f- 64768
7551
7552                 createmany -u $DIR/$tdir/f- 64768
7553         done
7554         wait_delete_completed $((TIMEOUT * 7))
7555 #ASSERTION osp_sync_thread() ( thread->t_flags != SVC_RUNNING ) failed
7556 #shows that osp code is buggy
7557         do_facet mds1 $LCTL set_param fail_loc=0 fail_val=0
7558
7559         stopall
7560 }
7561 run_test 106 "check osp llog processing when catalog is wrapped"
7562
7563 test_107() {
7564         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.10.50) ]] ||
7565                 { skip "Need MDS version > 2.10.50"; return; }
7566
7567         start_mgsmds || error "start_mgsmds failed"
7568         start_ost || error "unable to start OST"
7569
7570         # add unknown configuration parameter.
7571         local PARAM="$FSNAME-OST0000.ost.unknown_param=50"
7572         do_facet mgs "$LCTL conf_param $PARAM"
7573         cleanup_nocli || error "cleanup_nocli failed with $?"
7574         load_modules
7575
7576         # unknown param should be ignored while mounting.
7577         start_ost || error "unable to start OST after unknown param set"
7578
7579         cleanup || error "cleanup failed with $?"
7580 }
7581 run_test 107 "Unknown config param should not fail target mounting"
7582
7583 t_108_prep() {
7584         local facet
7585
7586         $rcmd rm -rf $tmp > /dev/null 2>&1
7587         $rcmd mkdir -p $tmp/{mnt,images} || error "failed to mkdir remotely"
7588
7589         for facet in $facets; do
7590                 [ $(facet_fstype $SINGLEMDS) = "zfs" ] &&
7591                         $rcmd $ZPOOL -f export lustre-$facet > /dev/null 2>&1
7592                 $rcmd mkdir $tmp/mnt/$facet ||
7593                         error "failed to mkdir $tmp/mnt/$facet"
7594                 $rcmd dd if=/dev/zero of=$tmp/images/$facet \
7595                         seek=199 bs=1M count=1 ||
7596                         error "failed to create $tmp/images/$facet"
7597         done
7598 }
7599
7600 t_108_mkfs() {
7601         local role=$1
7602         local idx=$2
7603         local bkfs=$3
7604         local mgs=$4
7605         local facet=${role}$((idx + 1))
7606         local pool=""
7607         [ $# -eq 5 ] && pool=$5
7608
7609         do_facet $SINGLEMDS $MKFS --fsname=lustre --$mgs \
7610                 --$role --index=$idx --replace --backfstype=$bkfs \
7611                 --device-size=200000 --reformat $pool $tmp/images/$facet ||
7612                 error "failed to mkfs for $facet"
7613 }
7614
7615 t_108_check() {
7616         echo "mounting client..."
7617         mount -t lustre ${nid}:/lustre $MOUNT ||
7618                 error "failed to mount lustre"
7619
7620         echo "check list"
7621         ls -l $MOUNT/local_dir || error "failed to list"
7622
7623         echo "check truncate && write"
7624         echo "dummmmmmmmmmmmm" > $MOUNT/remote_dir/fsx.c ||
7625                 error "failed to tuncate & write"
7626
7627         echo "check create"
7628         touch $MOUNT/foooo ||
7629                 error "failed to create"
7630
7631         echo "check read && write && append"
7632         sha1sum $MOUNT/conf-sanity.sh |
7633                 awk '{ print $1 }' > $MOUNT/checksum.new ||
7634                 error "failed to read(1)"
7635         sha1sum $MOUNT/remote_dir/unlinkmany.c |
7636                 awk '{ print $1 }' >> $MOUNT/checksum.new ||
7637                 error "failed to read(2)"
7638         sha1sum $MOUNT/striped_dir/lockahead_test.o |
7639                 awk '{ print $1 }' >> $MOUNT/checksum.new ||
7640                 error "failed to read(3)"
7641
7642         echo "verify data"
7643         diff $MOUNT/checksum.new $MOUNT/checksum.src ||
7644                 error "failed to verify data"
7645
7646         echo "done."
7647 }
7648
7649 t_108_cleanup() {
7650         trap 0
7651         local facet
7652
7653         echo "cleanup..."
7654         umount -f $MOUNT || error "failed to umount client"
7655         for facet in $facets; do
7656                 $rcmd umount -f $tmp/mnt/$facet ||
7657                         error "failed to umount $facet"
7658                 if [ $(facet_fstype $SINGLEMDS) = "zfs" ]; then
7659                         $rcmd $ZPOOL export -f lustre-$facet ||
7660                                 error "failed to export lustre-$facet"
7661                 fi
7662         done
7663
7664         $rcmd rm -rf $tmp || error "failed to rm the dir $tmp"
7665 }
7666
7667 test_108a() {
7668         [ "$CLIENTONLY" ] && skip "Client-only testing" && return
7669
7670         [ $(facet_fstype $SINGLEMDS) != "zfs" ] &&
7671                 skip "zfs only test" && return
7672
7673         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.58) ] &&
7674                 skip "Need server version at least 2.10.58" && return
7675
7676         stopall
7677         load_modules
7678
7679         local tmp=$TMP/$tdir
7680         local rcmd="do_facet $SINGLEMDS"
7681         local facets="mdt1 mdt2 ost1 ost2"
7682         local nid=$($rcmd $LCTL list_nids | head -1)
7683         local facet
7684
7685         trap t_108_cleanup EXIT ERR
7686         t_108_prep
7687
7688         t_108_mkfs mdt 0 zfs mgs lustre-mdt1/mdt1
7689         t_108_mkfs mdt 1 zfs mgsnode=$nid lustre-mdt2/mdt2
7690         t_108_mkfs ost 0 zfs mgsnode=$nid lustre-ost1/ost1
7691         t_108_mkfs ost 1 zfs mgsnode=$nid lustre-ost2/ost2
7692
7693         for facet in $facets; do
7694                 $rcmd zfs set mountpoint=$tmp/mnt/$facet canmount=on \
7695                         lustre-$facet/$facet ||
7696                         error "failed to zfs set for $facet (1)"
7697                 $rcmd zfs mount lustre-$facet/$facet ||
7698                         error "failed to local mount $facet"
7699                 $rcmd tar jxf $LUSTRE/tests/ldiskfs_${facet}_2_11.tar.bz2 \
7700                         --xattrs --xattrs-include="trusted.*" \
7701                         -C $tmp/mnt/$facet/ > /dev/null 2>&1 ||
7702                         error "failed to untar image for $facet"
7703                 $rcmd "cd $tmp/mnt/$facet && rm -rf oi.* OI_* lfsck_* LFSCK" ||
7704                         error "failed to cleanup for $facet"
7705                 $rcmd zfs umount lustre-$facet/$facet ||
7706                         error "failed to local umount $facet"
7707                 $rcmd zfs set canmount=off lustre-$facet/$facet ||
7708                         error "failed to zfs set $facet (2)"
7709         done
7710
7711         echo "changing server nid..."
7712         $rcmd mount -t lustre -o nosvc lustre-mdt1/mdt1 $tmp/mnt/mdt1
7713         $rcmd lctl replace_nids lustre-MDT0000 $nid
7714         $rcmd lctl replace_nids lustre-MDT0001 $nid
7715         $rcmd lctl replace_nids lustre-OST0000 $nid
7716         $rcmd lctl replace_nids lustre-OST0001 $nid
7717         $rcmd umount $tmp/mnt/mdt1
7718
7719         for facet in $facets; do
7720                 echo "mounting $facet from backup..."
7721                 $rcmd mount -t lustre -o abort_recov lustre-$facet/$facet \
7722                         $tmp/mnt/$facet || error "failed to mount $facet"
7723         done
7724
7725         # ZFS backend can detect migration and trigger OI scrub automatically
7726         # sleep 3 seconds for scrub done
7727         sleep 3
7728
7729         t_108_check
7730         t_108_cleanup
7731 }
7732 run_test 108a "migrate from ldiskfs to ZFS"
7733
7734 test_108b() {
7735         [ "$CLIENTONLY" ] && skip "Client-only testing" && return
7736
7737         [ $(facet_fstype $SINGLEMDS) != "ldiskfs" ] &&
7738                 skip "ldiskfs only test" && return
7739
7740         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.58) ] &&
7741                 skip "Need server version at least 2.10.58" && return
7742
7743         stopall
7744         load_modules
7745
7746         local tmp=$TMP/$tdir
7747         local rcmd="do_facet $SINGLEMDS"
7748         local facets="mdt1 mdt2 ost1 ost2"
7749         local scrub_list="MDT0000 MDT0001 OST0000 OST0001"
7750         local nid=$($rcmd $LCTL list_nids | head -1)
7751         local facet
7752
7753         trap t_108_cleanup EXIT ERR
7754         t_108_prep
7755
7756         t_108_mkfs mdt 0 ldiskfs mgs
7757         t_108_mkfs mdt 1 ldiskfs mgsnode=$nid
7758         t_108_mkfs ost 0 ldiskfs mgsnode=$nid
7759         t_108_mkfs ost 1 ldiskfs mgsnode=$nid
7760
7761         for facet in $facets; do
7762                 $rcmd mount -t ldiskfs -o loop $tmp/images/$facet \
7763                         $tmp/mnt/$facet ||
7764                         error "failed to local mount $facet"
7765                 $rcmd tar jxf $LUSTRE/tests/zfs_${facet}_2_11.tar.bz2 \
7766                         --xattrs --xattrs-include="*.*" \
7767                         -C $tmp/mnt/$facet/ > /dev/null 2>&1 ||
7768                         error "failed to untar image for $facet"
7769                 $rcmd "cd $tmp/mnt/$facet && rm -rf oi.* OI_* lfsck_* LFSCK" ||
7770                         error "failed to cleanup for $facet"
7771                 $rcmd umount $tmp/mnt/$facet ||
7772                         error "failed to local umount $facet"
7773         done
7774
7775         echo "changing server nid..."
7776         $rcmd mount -t lustre -o nosvc,loop $tmp/images/mdt1 $tmp/mnt/mdt1
7777         $rcmd lctl replace_nids lustre-MDT0000 $nid
7778         $rcmd lctl replace_nids lustre-MDT0001 $nid
7779         $rcmd lctl replace_nids lustre-OST0000 $nid
7780         $rcmd lctl replace_nids lustre-OST0001 $nid
7781         $rcmd umount $tmp/mnt/mdt1
7782
7783         for facet in $facets; do
7784                 echo "mounting $facet from backup..."
7785                 $rcmd mount -t lustre -o loop,abort_recov $tmp/images/$facet \
7786                         $tmp/mnt/$facet || error "failed to mount $facet"
7787         done
7788
7789         for facet in $scrub_list; do
7790                 $rcmd $LCTL lfsck_start -M lustre-$facet -t scrub ||
7791                         error "failed to start OI scrub on $facet"
7792         done
7793
7794         # sleep 3 seconds for scrub done
7795         sleep 3
7796
7797         t_108_check
7798         t_108_cleanup
7799 }
7800 run_test 108b "migrate from ZFS to ldiskfs"
7801
7802
7803 #
7804 # set number of permanent parameters
7805 #
7806 test_109_set_params() {
7807         local fsname=$1
7808
7809         set_conf_param_and_check mds                                \
7810             "$LCTL get_param -n mdd.$fsname-MDT0000.atime_diff"     \
7811             "$fsname-MDT0000.mdd.atime_diff"                        \
7812             "62"
7813         set_conf_param_and_check mds                                \
7814             "$LCTL get_param -n mdd.$fsname-MDT0000.atime_diff"     \
7815             "$fsname-MDT0000.mdd.atime_diff"                        \
7816             "63"
7817         set_conf_param_and_check client                             \
7818             "$LCTL get_param -n llite.$fsname*.max_read_ahead_mb"   \
7819             "$fsname.llite.max_read_ahead_mb"                       \
7820             "32"
7821         set_conf_param_and_check client                             \
7822             "$LCTL get_param -n llite.$fsname*.max_read_ahead_mb"   \
7823             "$fsname.llite.max_read_ahead_mb"                       \
7824             "64"
7825         create_pool $fsname.pool1 || error "create pool failed"
7826         do_facet mgs $LCTL pool_add $fsname.pool1 OST0000 ||
7827                 error "pool_add failed"
7828         do_facet mgs $LCTL pool_remove $fsname.pool1 OST0000 ||
7829                 error "pool_remove failed"
7830         do_facet mgs $LCTL pool_add $fsname.pool1 OST0000 ||
7831                 error "pool_add failed"
7832 }
7833
7834 #
7835 # check permanent parameters
7836 #
7837 test_109_test_params() {
7838         local fsname=$1
7839
7840         local atime_diff=$(do_facet mds $LCTL \
7841                 get_param -n mdd.$fsname-MDT0000.atime_diff)
7842         [ $atime_diff == 63 ] || error "wrong mdd parameter after clear_conf"
7843         local max_read_ahead_mb=$(do_facet client $LCTL \
7844                 get_param -n llite.$fsname*.max_read_ahead_mb)
7845         [ $max_read_ahead_mb == 64 ] ||
7846                 error "wrong llite parameter after clear_conf"
7847         local ost_in_pool=$(do_facet mds $LCTL pool_list $fsname.pool1 |
7848                 grep -v "^Pool:" | sed 's/_UUID//')
7849         [ $ost_in_pool = "$fsname-OST0000" ] ||
7850                 error "wrong pool after clear_conf"
7851 }
7852
7853 #
7854 # run lctl clear_conf, store CONFIGS before and after that
7855 #
7856 test_109_clear_conf()
7857 {
7858         local clear_conf_arg=$1
7859
7860         local mgsdev
7861         if ! combined_mgs_mds ; then
7862                 mgsdev=$MGSDEV
7863                 stop_mgs || error "stop_mgs failed"
7864                 start_mgs "-o nosvc" || error "start_mgs nosvc failed"
7865         else
7866                 mgsdev=$(mdsdevname 1)
7867                 start_mdt 1 "-o nosvc" || error "start_mdt 1 nosvc failed"
7868         fi
7869
7870         do_facet mgs "rm -rf $TMP/${tdir}/conf1; mkdir -p $TMP/${tdir}/conf1;" \
7871                 "$DEBUGFS -c -R \\\"rdump CONFIGS $TMP/${tdir}/conf1\\\" \
7872                 $mgsdev"
7873
7874         #
7875         # the command being tested
7876         #
7877         do_facet mgs $LCTL clear_conf $clear_conf_arg ||
7878                 error "clear_conf failed"
7879         if ! combined_mgs_mds ; then
7880                 stop_mgs || error "stop_mgs failed"
7881         else
7882                 stop_mdt 1 || error "stop_mdt 1 failed"
7883         fi
7884
7885         do_facet mgs "rm -rf $TMP/${tdir}/conf2; mkdir -p $TMP/${tdir}/conf2;" \
7886                 "$DEBUGFS -c -R \\\"rdump CONFIGS $TMP/${tdir}/conf2\\\" \
7887                 $mgsdev"
7888 }
7889
7890 test_109_file_shortened() {
7891         local file=$1
7892         local sizes=($(do_facet mgs "stat -c %s " \
7893                 "$TMP/${tdir}/conf1/CONFIGS/$file" \
7894                 "$TMP/${tdir}/conf2/CONFIGS/$file"))
7895         [ ${sizes[1]} -lt ${sizes[0]} ] && return 0
7896         return 1
7897 }
7898
7899 test_109a()
7900 {
7901         [ "$(facet_fstype mgs)" == "zfs" ] &&
7902                 skip "LU-8727: no implementation for ZFS" && return
7903         stopall
7904         reformat
7905         setup_noconfig
7906         client_up || error "client_up failed"
7907
7908         #
7909         # set number of permanent parameters
7910         #
7911         test_109_set_params $FSNAME
7912
7913         umount_client $MOUNT || error "umount_client failed"
7914         stop_ost || error "stop_ost failed"
7915         stop_mds || error "stop_mds failed"
7916
7917         test_109_clear_conf $FSNAME
7918         #
7919         # make sure that all configs are cleared
7920         #
7921         test_109_file_shortened $FSNAME-MDT0000 ||
7922                 error "failed to clear MDT0000 config"
7923         test_109_file_shortened $FSNAME-client ||
7924                 error "failed to clear client config"
7925
7926         setup_noconfig
7927
7928         #
7929         # check that configurations are intact
7930         #
7931         test_109_test_params $FSNAME
7932
7933         #
7934         # Destroy pool.
7935         #
7936         destroy_test_pools || error "destroy test pools failed"
7937
7938         cleanup
7939 }
7940 run_test 109a "test lctl clear_conf fsname"
7941
7942 test_109b()
7943 {
7944         [ "$(facet_fstype mgs)" == "zfs" ] &&
7945                 skip "LU-8727: no implementation for ZFS" && return
7946         stopall
7947         reformat
7948         setup_noconfig
7949         client_up || error "client_up failed"
7950
7951         #
7952         # set number of permanent parameters
7953         #
7954         test_109_set_params $FSNAME
7955
7956         umount_client $MOUNT || error "umount_client failed"
7957         stop_ost || error "stop_ost failed"
7958         stop_mds || error "stop_mds failed"
7959
7960         test_109_clear_conf $FSNAME-MDT0000
7961         #
7962         # make sure that only one config is cleared
7963         #
7964         test_109_file_shortened $FSNAME-MDT0000 ||
7965                 error "failed to clear MDT0000 config"
7966         test_109_file_shortened $FSNAME-client &&
7967                 error "failed to clear client config"
7968
7969         setup_noconfig
7970
7971         #
7972         # check that configurations are intact
7973         #
7974         test_109_test_params $FSNAME
7975
7976         #
7977         # Destroy pool.
7978         #
7979         destroy_test_pools || error "destroy test pools failed"
7980
7981         cleanup
7982 }
7983 run_test 109b "test lctl clear_conf one config"
7984
7985 cleanup_115()
7986 {
7987         trap 0
7988         stopall
7989         rm -f $TMP/$tdir/lustre-mdt
7990         formatall
7991 }
7992
7993 test_115() {
7994         IMAGESIZE=$((3072 << 30)) # 3072 GiB
7995
7996         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
7997                 skip "Only applicable to ldiskfs-based MDTs"
7998                 return
7999         fi
8000
8001         stopall
8002         # We need MDT size 3072GB, because it is smallest
8003         # partition that can store 2B inodes
8004         do_facet $SINGLEMDS "mkdir -p $TMP/$tdir"
8005         local mdsimgname=$TMP/$tdir/lustre-mdt
8006         do_facet $SINGLEMDS "rm -f $mdsimgname"
8007         do_facet $SINGLEMDS "touch $mdsimgname"
8008         trap cleanup_115 RETURN EXIT
8009         do_facet $SINGLEMDS "$TRUNCATE $mdsimgname $IMAGESIZE" ||
8010                 { skip "Backend FS doesn't support sparse files"; return 0; }
8011         local mdsdev=$(do_facet $SINGLEMDS "losetup -f")
8012         do_facet $SINGLEMDS "losetup $mdsdev $mdsimgname"
8013
8014         local mds_opts="$(mkfs_opts mds1 ${mdsdev}) --device-size=$IMAGESIZE   \
8015                 --mkfsoptions='-O lazy_itable_init,large_xattr,^resize_inode,meta_bg \
8016                 -i 1024'"
8017         add mds1 $mds_opts --mgs --reformat $mdsdev ||
8018                 { skip_env "format large MDT failed"; return 0; }
8019         add ost1 $(mkfs_opts ost1 $(ostdevname 1)) --index=$i \
8020                         --reformat $(ostdevname 1) $(ostvdevname 1)
8021
8022         start $SINGLEMDS ${mdsdev} $MDS_MOUNT_OPTS || error "start MDS failed"
8023         start_ost || error "start OSS failed"
8024         mount_client $MOUNT || error "mount client failed"
8025
8026         mkdir -p $DIR/$tdir || error "mkdir $DIR/$tdir fail"
8027         for goal in $(do_facet $SINGLEMDS "ls /sys/fs/ldiskfs/*/inode_goal"); do
8028                 do_facet $SINGLEMDS "echo 2147483947 >> $goal; grep . $goal"
8029         done
8030
8031         touch $DIR/$tdir/$tfile
8032
8033         # Add > 5k bytes to xattr
8034         for i in {1..30}; do
8035                 ln $DIR/$tdir/$tfile $DIR/$tdir/$(printf "link%0250d" $i) ||
8036                         error "Can't make link"
8037         done
8038
8039         sync; sleep 5; sync
8040
8041         local inode_num=$(do_facet $SINGLEMDS \
8042                          "$DEBUGFS -c -R 'stat ROOT/$tdir/$tfile' $mdsimgname" |
8043                          awk '/link =/ { print $4 }' |
8044                          sed -e 's/>//' -e 's/<//' -e 's/\"//')
8045         echo "inode num: $inode_num"
8046         [ $inode_num -ge 2147483947 ] || error "inode $inode_num too small"
8047         do_facet $SINGLEMDS "losetup -d $mdsdev"
8048         cleanup_115
8049 }
8050 run_test 115 "Access large xattr with inodes number over 2TB"
8051
8052 test_116() {
8053         [ $(facet_fstype $SINGLEMDS) != "ldiskfs" ] &&
8054                 skip "ldiskfs only test" && return
8055
8056         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.59) ] &&
8057                 skip "Need server version at least 2.10.59" && return
8058
8059         stopall
8060         load_modules
8061
8062         local tmpmnt=/mnt/$tdir
8063         local mdtimg=$tfile-mdt0
8064
8065         do_facet $SINGLEMDS mkdir -p $tmpmnt
8066         stack_trap "do_facet $SINGLEMDS rmdir $tmpmnt" EXIT
8067
8068         do_facet $SINGLEMDS touch $TMP/$mdtimg
8069         stack_trap "do_facet $SINGLEMDS rm -f $TMP/$mdtimg" EXIT
8070         do_facet $SINGLEMDS mkfs -t xfs -d file,size=1t,name=$TMP/$mdtimg ||
8071                 error "mkfs temporary xfs image"
8072
8073         do_facet $SINGLEMDS mount $TMP/$mdtimg $tmpmnt ||
8074                 error "mount temporary xfs image"
8075         stack_trap "do_facet $SINGLEMDS umount $tmpmnt" EXIT
8076         local old_mdssize=$MDSSIZE
8077         local old_mdsisize=$MDSISIZE
8078
8079         MDSSIZE=$((17 * 1024 * 1024 * 1024)) # 17T MDT
8080         MDSISIZE=$((16 << 20))
8081         local opts17t="$(mkfs_opts $SINGLEMDS)"
8082
8083         MDSSIZE=$old_mdssize
8084         MDSISIZE=$old_mdsisize
8085         do_facet $SINGLEMDS $MKFS $opts17t $tmpmnt/$mdtimg ||
8086                 error "failed to mkfs for $tmpmnt/$mdtimg"
8087
8088         do_facet $SINGLEMDS $TUNE2FS -l $tmpmnt/$mdtimg |
8089                 grep -qw 'features.*extent' || error "extent should be enabled"
8090 }
8091 run_test 116 "big size MDT support"
8092
8093 if ! combined_mgs_mds ; then
8094         stop mgs
8095 fi
8096
8097 cleanup_gss
8098
8099 # restore the values of MDSSIZE and OSTSIZE
8100 MDSSIZE=$STORED_MDSSIZE
8101 OSTSIZE=$STORED_OSTSIZE
8102 reformat
8103
8104 complete $SECONDS
8105 check_and_cleanup_lustre
8106 exit_status