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