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