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