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