Whamcloud - gitweb
LU-2140 test: add fake nid with proper nettype
[fs/lustre-release.git] / lustre / tests / conf-sanity.sh
1 #!/bin/bash
2
3 # FIXME - there is no reason to use all of these different
4 #   return codes, espcially when most of them are mapped to something
5 #   else anyway.  The combination of test number and return code
6 #   figure out what failed.
7
8 set -e
9
10 ONLY=${ONLY:-"$*"}
11
12 # bug number for skipped test:
13 ALWAYS_EXCEPT="$CONF_SANITY_EXCEPT"
14 # UPDATE THE COMMENT ABOVE WITH BUG NUMBERS WHEN CHANGING ALWAYS_EXCEPT!
15
16 if [ "$FAILURE_MODE" = "HARD" ]; then
17         CONFIG_EXCEPTIONS="24a " && \
18         echo "Except the tests: $CONFIG_EXCEPTIONS for FAILURE_MODE=$FAILURE_MODE, bug 23573" && \
19         ALWAYS_EXCEPT="$ALWAYS_EXCEPT $CONFIG_EXCEPTIONS"
20 fi
21
22 # bug number for skipped test:
23 # a tool to create lustre filesystem images
24 ALWAYS_EXCEPT="32newtarball $ALWAYS_EXCEPT"
25
26 SRCDIR=`dirname $0`
27 PATH=$PWD/$SRCDIR:$SRCDIR:$SRCDIR/../utils:$PATH
28
29 PTLDEBUG=${PTLDEBUG:--1}
30 SAVE_PWD=$PWD
31 LUSTRE=${LUSTRE:-`dirname $0`/..}
32 RLUSTRE=${RLUSTRE:-$LUSTRE}
33 export MULTIOP=${MULTIOP:-multiop}
34
35 . $LUSTRE/tests/test-framework.sh
36 init_test_env $@
37
38 # use small MDS + OST size to speed formatting time
39 # do not use too small MDSSIZE/OSTSIZE, which affect the default jouranl size
40 MDSSIZE=200000
41 OSTSIZE=200000
42 . ${CONFIG:=$LUSTRE/tests/cfg/$NAME.sh}
43
44 if ! combined_mgs_mds; then
45     # bug number for skipped test:    23954
46     ALWAYS_EXCEPT="$ALWAYS_EXCEPT       24b"
47 fi
48
49 # STORED_MDSSIZE is used in test_18
50 if [ -n "$MDSSIZE" ]; then
51     STORED_MDSSIZE=$MDSSIZE
52 fi
53
54 # pass "-E lazy_itable_init" to mke2fs to speed up the formatting time
55 if [[ "$LDISKFS_MKFS_OPTS" != *lazy_itable_init* ]]; then
56         LDISKFS_MKFS_OPTS=$(csa_add "$LDISKFS_MKFS_OPTS" -E lazy_itable_init)
57 fi
58
59 init_logging
60
61 #
62 require_dsh_mds || exit 0
63 require_dsh_ost || exit 0
64 #
65 [ "$SLOW" = "no" ] && EXCEPT_SLOW="30a 31 45"
66
67
68 assert_DIR
69
70 reformat() {
71         formatall
72 }
73
74 writeconf1() {
75         local facet=$1
76         local dev=$2
77
78         stop ${facet} -f
79         rm -f ${facet}active
80         # who knows if/where $TUNEFS is installed?  Better reformat if it fails...
81         do_facet ${facet} "$TUNEFS --quiet --writeconf $dev" ||
82                 { echo "tunefs failed, reformatting instead" && reformat_and_config && return 1; }
83         return 0
84 }
85
86 writeconf() {
87         # we need ldiskfs
88         load_modules
89         # if writeconf fails anywhere, we reformat everything
90         writeconf1 mds `mdsdevname 1` || return 0
91         writeconf1 ost1 `ostdevname 1` || return 0
92         writeconf1 ost2 `ostdevname 2` || return 0
93 }
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 start_mgs () {
114         echo "start mgs"
115         start mgs $MGSDEV $MGS_MOUNT_OPTS
116 }
117
118 start_mds() {
119         local facet=$SINGLEMDS
120         # we can not use MDSDEV1 here because SINGLEMDS could be set not to mds1 only
121         local num=$(echo $facet | tr -d "mds")
122         local dev=$(mdsdevname $num)
123         echo "start mds service on `facet_active_host $facet`"
124         start $facet ${dev} $MDS_MOUNT_OPTS $@ || return 94
125 }
126
127 start_mgsmds() {
128         if ! combined_mgs_mds ; then
129                 start_mgs
130         fi
131         start_mds $@
132 }
133
134 stop_mds() {
135         echo "stop mds service on `facet_active_host $SINGLEMDS`"
136         # These tests all use non-failover stop
137         stop $SINGLEMDS -f  || return 97
138 }
139
140 stop_mgs() {
141        echo "stop mgs service on `facet_active_host mgs`"
142        # These tests all use non-failover stop
143        stop mgs -f  || return 97
144 }
145
146 start_ost() {
147         echo "start ost1 service on `facet_active_host ost1`"
148         start ost1 `ostdevname 1` $OST_MOUNT_OPTS $@ || return 95
149 }
150
151 stop_ost() {
152         echo "stop ost1 service on `facet_active_host ost1`"
153         # These tests all use non-failover stop
154         stop ost1 -f  || return 98
155 }
156
157 start_ost2() {
158         echo "start ost2 service on `facet_active_host ost2`"
159         start ost2 `ostdevname 2` $OST_MOUNT_OPTS $@ || return 92
160 }
161
162 stop_ost2() {
163         echo "stop ost2 service on `facet_active_host ost2`"
164         # These tests all use non-failover stop
165         stop ost2 -f  || return 93
166 }
167
168 mount_client() {
169         local MOUNTPATH=$1
170         echo "mount $FSNAME on ${MOUNTPATH}....."
171         zconf_mount `hostname` $MOUNTPATH  || return 96
172 }
173
174 remount_client() {
175         local mountopt="-o remount,$1"
176         local MOUNTPATH=$2
177         echo "remount '$1' lustre on ${MOUNTPATH}....."
178         zconf_mount `hostname`  $MOUNTPATH "$mountopt"  || return 96
179 }
180
181 umount_client() {
182         local MOUNTPATH=$1
183         echo "umount lustre on ${MOUNTPATH}....."
184         zconf_umount `hostname` $MOUNTPATH || return 97
185 }
186
187 manual_umount_client(){
188         local rc
189         local FORCE=$1
190         echo "manual umount lustre on ${MOUNT}...."
191         do_facet client "umount -d ${FORCE} $MOUNT"
192         rc=$?
193         return $rc
194 }
195
196 setup() {
197         start_mds || error "MDT start failed"
198         start_ost || error "OST start failed"
199         mount_client $MOUNT || error "client start failed"
200         client_up || error "client_up failed"
201 }
202
203 setup_noconfig() {
204         if ! combined_mgs_mds ; then
205                 start_mgs
206         fi
207
208         start_mds
209         start_ost
210         mount_client $MOUNT
211 }
212
213 unload_modules_conf () {
214         if combined_mgs_mds || ! local_mode; then
215                 unload_modules || return 1
216         fi
217 }
218
219 cleanup_nocli() {
220         stop_ost || return 202
221         stop_mds || return 201
222         unload_modules_conf || return 203
223 }
224
225 cleanup() {
226         umount_client $MOUNT || return 200
227         cleanup_nocli || return $?
228 }
229
230 check_mount() {
231         do_facet client "cp /etc/passwd $DIR/a" || return 71
232         do_facet client "rm $DIR/a" || return 72
233         # make sure lustre is actually mounted (touch will block,
234         # but grep won't, so do it after)
235         do_facet client "grep $MOUNT' ' /proc/mounts > /dev/null" || return 73
236         echo "setup single mount lustre success"
237 }
238
239 check_mount2() {
240         do_facet client "touch $DIR/a" || return 71
241         do_facet client "rm $DIR/a" || return 72
242         do_facet client "touch $DIR2/a" || return 73
243         do_facet client "rm $DIR2/a" || return 74
244         echo "setup double mount lustre success"
245 }
246
247 build_test_filter
248
249 if [ "$ONLY" == "setup" ]; then
250         setup
251         exit
252 fi
253
254 if [ "$ONLY" == "cleanup" ]; then
255         cleanup
256         exit
257 fi
258
259 init_gss
260
261 #create single point mountpoint
262
263 reformat_and_config
264
265 test_0() {
266         setup
267         check_mount || return 41
268         cleanup || return $?
269 }
270 run_test 0 "single mount setup"
271
272 test_1() {
273         start_mds || error "MDT start failed"
274         start_ost
275         echo "start ost second time..."
276         start_ost && error "2nd OST start should fail"
277         mount_client $MOUNT || error "client start failed"
278         check_mount || return 42
279         cleanup || return $?
280 }
281 run_test 1 "start up ost twice (should return errors)"
282
283 test_2() {
284         start_mds
285         echo "start mds second time.."
286         start_mds && error "2nd MDT start should fail"
287         start_ost
288         mount_client $MOUNT
289         check_mount || return 43
290         cleanup || return $?
291 }
292 run_test 2 "start up mds twice (should return err)"
293
294 test_3() {
295         setup
296         #mount.lustre returns an error if already in mtab
297         mount_client $MOUNT && error "2nd client mount should fail"
298         check_mount || return 44
299         cleanup || return $?
300 }
301 run_test 3 "mount client twice (should return err)"
302
303 test_4() {
304         setup
305         touch $DIR/$tfile || return 85
306         stop_ost -f
307         cleanup
308         eno=$?
309         # ok for ost to fail shutdown
310         if [ 202 -ne $eno ]; then
311                 return $eno;
312         fi
313         return 0
314 }
315 run_test 4 "force cleanup ost, then cleanup"
316
317 test_5a() {     # was test_5
318         setup
319         touch $DIR/$tfile || return 1
320         fuser -m -v $MOUNT && echo "$MOUNT is in use by user space process."
321
322         stop_mds -f || return 2
323
324         # cleanup may return an error from the failed
325         # disconnects; for now I'll consider this successful
326         # if all the modules have unloaded.
327         umount -d $MOUNT &
328         UMOUNT_PID=$!
329         sleep 6
330         echo "killing umount"
331         kill -TERM $UMOUNT_PID
332         echo "waiting for umount to finish"
333         wait $UMOUNT_PID
334         if grep " $MOUNT " /proc/mounts; then
335                 echo "test 5: /proc/mounts after failed umount"
336                 umount $MOUNT &
337                 UMOUNT_PID=$!
338                 sleep 2
339                 echo "killing umount"
340                 kill -TERM $UMOUNT_PID
341                 echo "waiting for umount to finish"
342                 wait $UMOUNT_PID
343                 grep " $MOUNT " /proc/mounts && echo "test 5: /proc/mounts after second umount" && return 11
344         fi
345
346         manual_umount_client
347         # stop_mds is a no-op here, and should not fail
348         cleanup_nocli || return $?
349         # df may have lingering entry
350         manual_umount_client
351         # mtab may have lingering entry
352         local WAIT=0
353         local MAX_WAIT=20
354         local sleep=1
355         while [ "$WAIT" -ne "$MAX_WAIT" ]; do
356                 sleep $sleep
357                 grep -q $MOUNT" " /etc/mtab || break
358                 echo "Waiting /etc/mtab updated ... "
359                 WAIT=$(( WAIT + sleep))
360         done
361         [ "$WAIT" -eq "$MAX_WAIT" ] && error "/etc/mtab is not updated in $WAIT secs"
362         echo "/etc/mtab updated in $WAIT secs"
363 }
364 run_test 5a "force cleanup mds, then cleanup"
365
366 cleanup_5b () {
367         trap 0
368         start_mgs
369 }
370
371 test_5b() {
372         grep " $MOUNT " /etc/mtab && \
373                 error false "unexpected entry in mtab before mount" && return 10
374
375         local rc=0
376         start_ost
377         if ! combined_mgs_mds ; then
378                 trap cleanup_5b EXIT ERR
379                 start_mds
380                 stop mgs
381         fi
382
383         [ -d $MOUNT ] || mkdir -p $MOUNT
384         mount_client $MOUNT && rc=1
385         grep " $MOUNT " /etc/mtab && \
386                 error "$MOUNT entry in mtab after failed mount" && rc=11
387         umount_client $MOUNT
388         # stop_mds is a no-op here, and should not fail
389         cleanup_nocli || rc=$?
390         if ! combined_mgs_mds ; then
391                 cleanup_5b
392         fi
393         return $rc
394 }
395 run_test 5b "Try to start a client with no MGS (should return errs)"
396
397 test_5c() {
398         grep " $MOUNT " /etc/mtab && \
399                 error false "unexpected entry in mtab before mount" && return 10
400
401         local rc=0
402         start_mds
403         start_ost
404         [ -d $MOUNT ] || mkdir -p $MOUNT
405         local oldfs="${FSNAME}"
406         FSNAME="wrong.${FSNAME}"
407         mount_client $MOUNT || :
408         FSNAME=${oldfs}
409         grep " $MOUNT " /etc/mtab && \
410                 error "$MOUNT entry in mtab after failed mount" && rc=11
411         umount_client $MOUNT
412         cleanup_nocli  || rc=$?
413         return $rc
414 }
415 run_test 5c "cleanup after failed mount (bug 2712) (should return errs)"
416
417 test_5d() {
418         grep " $MOUNT " /etc/mtab && \
419                 error false "unexpected entry in mtab before mount" && return 10
420
421         [ "$(facet_fstype ost1)" = "zfs" ] &&
422                 skip "LU-2059: no local config for ZFS OSTs" && return
423
424         local rc=0
425         start_ost
426         start_mds
427         stop_ost -f
428         mount_client $MOUNT || rc=1
429         cleanup  || rc=$?
430         grep " $MOUNT " /etc/mtab && \
431                 error "$MOUNT entry in mtab after unmount" && rc=11
432         return $rc
433 }
434 run_test 5d "mount with ost down"
435
436 test_5e() {
437         grep " $MOUNT " /etc/mtab && \
438                 error false "unexpected entry in mtab before mount" && return 10
439
440         local rc=0
441         start_mds
442         start_ost
443
444 #define OBD_FAIL_PTLRPC_DELAY_SEND       0x506
445         do_facet client "lctl set_param fail_loc=0x80000506"
446         mount_client $MOUNT || echo "mount failed (not fatal)"
447         cleanup  || rc=$?
448         grep " $MOUNT " /etc/mtab && \
449                 error "$MOUNT entry in mtab after unmount" && rc=11
450         return $rc
451 }
452 run_test 5e "delayed connect, don't crash (bug 10268)"
453
454 test_5f() {
455         if combined_mgs_mds ; then
456                 skip "combined mgs and mds"
457                 return 0
458         fi
459
460         grep " $MOUNT " /etc/mtab && \
461                 error false "unexpected entry in mtab before mount" && return 10
462
463         local rc=0
464         start_ost
465         [ -d $MOUNT ] || mkdir -p $MOUNT
466         mount_client $MOUNT &
467         local pid=$!
468         echo client_mount pid is $pid
469
470         sleep 5
471
472         if ! ps -f -p $pid >/dev/null; then
473                 wait $pid
474                 rc=$?
475                 grep " $MOUNT " /etc/mtab && echo "test 5f: mtab after mount"
476                 error "mount returns $rc, expected to hang"
477                 rc=11
478                 cleanup || rc=$?
479                 return $rc
480         fi
481
482         # start mds
483         start_mds
484
485         # mount should succeed after start mds
486         wait $pid
487         rc=$?
488         [ $rc -eq 0 ] || error "mount returned $rc"
489         grep " $MOUNT " /etc/mtab && echo "test 5f: mtab after mount"
490         cleanup || return $?
491         return $rc
492 }
493 run_test 5f "mds down, cleanup after failed mount (bug 2712)"
494
495 test_6() {
496         setup
497         manual_umount_client
498         mount_client ${MOUNT} || return 87
499         touch $DIR/a || return 86
500         cleanup  || return $?
501 }
502 run_test 6 "manual umount, then mount again"
503
504 test_7() {
505         setup
506         manual_umount_client
507         cleanup_nocli || return $?
508 }
509 run_test 7 "manual umount, then cleanup"
510
511 test_8() {
512         setup
513         mount_client $MOUNT2
514         check_mount2 || return 45
515         umount_client $MOUNT2
516         cleanup  || return $?
517 }
518 run_test 8 "double mount setup"
519
520 test_9() {
521         start_ost
522
523         do_facet ost1 lctl set_param debug=\'inode trace\' || return 1
524         do_facet ost1 lctl set_param subsystem_debug=\'mds ost\' || return 1
525
526         CHECK_PTLDEBUG="`do_facet ost1 lctl get_param -n debug`"
527         if [ "$CHECK_PTLDEBUG" ] && { \
528            [ "$CHECK_PTLDEBUG" = "trace inode warning error emerg console" ] ||
529            [ "$CHECK_PTLDEBUG" = "trace inode" ]; }; then
530            echo "lnet.debug success"
531         else
532            echo "lnet.debug: want 'trace inode', have '$CHECK_PTLDEBUG'"
533            return 1
534         fi
535         CHECK_SUBSYS="`do_facet ost1 lctl get_param -n subsystem_debug`"
536         if [ "$CHECK_SUBSYS" ] && [ "$CHECK_SUBSYS" = "mds ost" ]; then
537            echo "lnet.subsystem_debug success"
538         else
539            echo "lnet.subsystem_debug: want 'mds ost', have '$CHECK_SUBSYS'"
540            return 1
541         fi
542         stop_ost || return $?
543 }
544 run_test 9 "test ptldebug and subsystem for mkfs"
545
546 is_blkdev () {
547         local facet=$1
548         local dev=$2
549         local size=${3:-""}
550
551         local rc=0
552         do_facet $facet "test -b $dev" || rc=1
553         if [[ "$size" ]]; then
554                 local in=$(do_facet $facet "dd if=$dev of=/dev/null bs=1k count=1 skip=$size 2>&1" |\
555                         awk '($3 == "in") { print $1 }')
556                 [[ $in  = "1+0" ]] || rc=1
557         fi
558         return $rc
559 }
560
561 #
562 # Test 16 was to "verify that lustre will correct the mode of OBJECTS".
563 # But with new MDS stack we don't care about the mode of local objects
564 # anymore, so this test is removed. See bug 22944 for more details.
565 #
566
567 test_17() {
568         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
569                 skip "Only applicable to ldiskfs-based MDTs"
570                 return
571         fi
572
573         setup
574         check_mount || return 41
575         cleanup || return $?
576
577         echo "Remove mds config log"
578         if ! combined_mgs_mds ; then
579                 stop mgs
580         fi
581
582         do_facet mgs "$DEBUGFS -w -R 'unlink CONFIGS/$FSNAME-MDT0000' $MGSDEV || return \$?" || return $?
583
584         if ! combined_mgs_mds ; then
585                 start_mgs
586         fi
587
588         start_ost
589         start_mds && return 42
590         reformat_and_config
591 }
592 run_test 17 "Verify failed mds_postsetup won't fail assertion (2936) (should return errs)"
593
594 test_18() {
595         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
596                 skip "Only applicable to ldiskfs-based MDTs"
597                 return
598         fi
599
600         local MDSDEV=$(mdsdevname ${SINGLEMDS//mds/})
601
602         local MIN=2000000
603
604         local OK=
605         # check if current MDSSIZE is large enough
606         [ $MDSSIZE -ge $MIN ] && OK=1 && myMDSSIZE=$MDSSIZE && \
607                 log "use MDSSIZE=$MDSSIZE"
608
609         # check if the global config has a large enough MDSSIZE
610         [ -z "$OK" -a ! -z "$STORED_MDSSIZE" ] && [ $STORED_MDSSIZE -ge $MIN ] && \
611                 OK=1 && myMDSSIZE=$STORED_MDSSIZE && \
612                 log "use STORED_MDSSIZE=$STORED_MDSSIZE"
613
614         # check if the block device is large enough
615         [ -z "$OK" ] && $(is_blkdev $SINGLEMDS $MDSDEV $MIN) && OK=1 &&
616                 myMDSSIZE=$MIN && log "use device $MDSDEV with MIN=$MIN"
617
618         # check if a loopback device has enough space for fs metadata (5%)
619
620         if [ -z "$OK" ]; then
621                 local SPACE=$(do_facet $SINGLEMDS "[ -f $MDSDEV -o ! -e $MDSDEV ] && df -P \\\$(dirname $MDSDEV)" |
622                         awk '($1 != "Filesystem") {print $4}')
623                 ! [ -z "$SPACE" ]  &&  [ $SPACE -gt $((MIN / 20)) ] && \
624                         OK=1 && myMDSSIZE=$MIN && \
625                         log "use file $MDSDEV with MIN=$MIN"
626         fi
627
628         [ -z "$OK" ] && skip_env "$MDSDEV too small for ${MIN}kB MDS" && return
629
630
631         echo "mount mds with large journal..."
632
633         local OLD_MDSSIZE=$MDSSIZE
634         MDSSIZE=$myMDSSIZE
635
636         reformat_and_config
637         echo "mount lustre system..."
638         setup
639         check_mount || return 41
640
641         echo "check journal size..."
642         local FOUNDSIZE=$(do_facet $SINGLEMDS "$DEBUGFS -c -R 'stat <8>' $MDSDEV" | awk '/Size: / { print $NF; exit;}')
643         if [ $FOUNDSIZE -gt $((32 * 1024 * 1024)) ]; then
644                 log "Success: mkfs creates large journals. Size: $((FOUNDSIZE >> 20))M"
645         else
646                 error "expected journal size > 32M, found $((FOUNDSIZE >> 20))M"
647         fi
648
649         cleanup || return $?
650
651         MDSSIZE=$OLD_MDSSIZE
652         reformat_and_config
653 }
654 run_test 18 "check mkfs creates large journals"
655
656 test_19a() {
657         start_mds || return 1
658         stop_mds -f || return 2
659 }
660 run_test 19a "start/stop MDS without OSTs"
661
662 test_19b() {
663         [ "$(facet_fstype ost1)" = "zfs" ] &&
664                 skip "LU-2059: no local config for ZFS OSTs" && return
665
666         start_ost || return 1
667         stop_ost -f || return 2
668 }
669 run_test 19b "start/stop OSTs without MDS"
670
671 test_20() {
672         # first format the ost/mdt
673         start_mds
674         start_ost
675         mount_client $MOUNT
676         check_mount || return 43
677         rm -f $DIR/$tfile
678         remount_client ro $MOUNT || return 44
679         touch $DIR/$tfile && echo "$DIR/$tfile created incorrectly" && return 45
680         [ -e $DIR/$tfile ] && echo "$DIR/$tfile exists incorrectly" && return 46
681         remount_client rw $MOUNT || return 47
682         touch $DIR/$tfile
683         [ ! -f $DIR/$tfile ] && echo "$DIR/$tfile missing" && return 48
684         MCNT=`grep -c $MOUNT /etc/mtab`
685         [ "$MCNT" -ne 1 ] && echo "$MOUNT in /etc/mtab $MCNT times" && return 49
686         umount_client $MOUNT
687         stop_mds
688         stop_ost
689 }
690 run_test 20 "remount ro,rw mounts work and doesn't break /etc/mtab"
691
692 test_21a() {
693         start_mds
694         start_ost
695         wait_osc_import_state mds ost FULL
696         stop_ost
697         stop_mds
698 }
699 run_test 21a "start mds before ost, stop ost first"
700
701 test_21b() {
702         [ "$(facet_fstype ost1)" = "zfs" ] &&
703                 skip "LU-2059: no local config for ZFS OSTs" && return
704
705         start_ost
706         start_mds
707         wait_osc_import_state mds ost FULL
708         stop_mds
709         stop_ost
710 }
711 run_test 21b "start ost before mds, stop mds first"
712
713 test_21c() {
714         start_ost
715         start_mds
716         start_ost2
717         wait_osc_import_state mds ost2 FULL
718         stop_ost
719         stop_ost2
720         stop_mds
721         #writeconf to remove all ost2 traces for subsequent tests
722         writeconf
723 }
724 run_test 21c "start mds between two osts, stop mds last"
725
726 test_21d() {
727         if combined_mgs_mds ; then
728                 skip "need separate mgs device" && return 0
729         fi
730         stopall
731
732         reformat
733
734         start_mgs
735         start_ost
736         start_ost2
737         start_mds
738         wait_osc_import_state mds ost2 FULL
739
740         stop_ost
741         stop_ost2
742         stop_mds
743         stop_mgs
744         #writeconf to remove all ost2 traces for subsequent tests
745         writeconf
746         start_mgs
747 }
748 run_test 21d "start mgs then ost and then mds"
749
750 test_22() {
751         start_mds
752
753         echo Client mount with ost in logs, but none running
754         start_ost
755         # wait until mds connected to ost and open client connection
756         wait_osc_import_state mds ost FULL
757         stop_ost
758         mount_client $MOUNT
759         # check_mount will block trying to contact ost
760         mcreate $DIR/$tfile || return 40
761         rm -f $DIR/$tfile || return 42
762         umount_client $MOUNT
763         pass
764
765         echo Client mount with a running ost
766         start_ost
767         if $GSS; then
768                 # if gss enabled, wait full time to let connection from
769                 # mds to ost be established, due to the mismatch between
770                 # initial connect timeout and gss context negotiation timeout.
771                 # This perhaps could be remove after AT landed.
772                 echo "sleep $((TIMEOUT + TIMEOUT + TIMEOUT))s"
773                 sleep $((TIMEOUT + TIMEOUT + TIMEOUT))
774         fi
775         mount_client $MOUNT
776         wait_osc_import_state mds ost FULL
777         wait_osc_import_state client ost FULL
778         check_mount || return 41
779         pass
780
781         cleanup
782 }
783 run_test 22 "start a client before osts (should return errs)"
784
785 test_23a() {    # was test_23
786         setup
787         # fail mds
788         stop $SINGLEMDS
789         # force down client so that recovering mds waits for reconnect
790         local running=$(grep -c $MOUNT /proc/mounts) || true
791         if [ $running -ne 0 ]; then
792                 echo "Stopping client $MOUNT (opts: -f)"
793                 umount -f $MOUNT
794         fi
795
796         # enter recovery on mds
797         start_mds
798         # try to start a new client
799         mount_client $MOUNT &
800         sleep 5
801         MOUNT_PID=$(ps -ef | grep "t lustre" | grep -v grep | awk '{print $2}')
802         MOUNT_LUSTRE_PID=`ps -ef | grep mount.lustre | grep -v grep | awk '{print $2}'`
803         echo mount pid is ${MOUNT_PID}, mount.lustre pid is ${MOUNT_LUSTRE_PID}
804         ps --ppid $MOUNT_PID
805         ps --ppid $MOUNT_LUSTRE_PID
806         echo "waiting for mount to finish"
807         ps -ef | grep mount
808         # "ctrl-c" sends SIGINT but it usually (in script) does not work on child process
809         # SIGTERM works but it does not spread to offspring processses
810         kill -s TERM $MOUNT_PID
811         kill -s TERM $MOUNT_LUSTRE_PID
812         # we can not wait $MOUNT_PID because it is not a child of this shell
813         local PID1
814         local PID2
815         local WAIT=0
816         local MAX_WAIT=30
817         local sleep=1
818         while [ "$WAIT" -lt "$MAX_WAIT" ]; do
819                 sleep $sleep
820                 PID1=$(ps -ef | awk '{print $2}' | grep -w $MOUNT_PID)
821                 PID2=$(ps -ef | awk '{print $2}' | grep -w $MOUNT_LUSTRE_PID)
822                 echo PID1=$PID1
823                 echo PID2=$PID2
824                 [ -z "$PID1" -a -z "$PID2" ] && break
825                 echo "waiting for mount to finish ... "
826                 WAIT=$(( WAIT + sleep))
827         done
828         if [ "$WAIT" -eq "$MAX_WAIT" ]; then
829                 error "MOUNT_PID $MOUNT_PID and "\
830                 "MOUNT_LUSTRE_PID $MOUNT_LUSTRE_PID still not killed in $WAIT secs"
831                 ps -ef | grep mount
832         fi
833         stop_mds || error
834         stop_ost || error
835 }
836 run_test 23a "interrupt client during recovery mount delay"
837
838 umount_client $MOUNT
839 cleanup_nocli
840
841 test_23b() {    # was test_23
842         start_mds
843         start_ost
844         # Simulate -EINTR during mount OBD_FAIL_LDLM_CLOSE_THREAD
845         lctl set_param fail_loc=0x80000313
846         mount_client $MOUNT
847         cleanup
848 }
849 run_test 23b "Simulate -EINTR during mount"
850
851 fs2mds_HOST=$mds_HOST
852 fs2ost_HOST=$ost_HOST
853
854 MDSDEV1_2=$fs2mds_DEV
855 OSTDEV1_2=$fs2ost_DEV
856 OSTDEV2_2=$fs3ost_DEV
857
858 cleanup_24a() {
859         trap 0
860         echo "umount $MOUNT2 ..."
861         umount $MOUNT2 || true
862         echo "stopping fs2mds ..."
863         stop fs2mds -f || true
864         echo "stopping fs2ost ..."
865         stop fs2ost -f || true
866 }
867
868 test_24a() {
869         local MDSDEV=$(mdsdevname ${SINGLEMDS//mds/})
870
871         if [ -z "$fs2ost_DEV" -o -z "$fs2mds_DEV" ]; then
872                 is_blkdev $SINGLEMDS $MDSDEV && \
873                 skip_env "mixed loopback and real device not working" && return
874         fi
875
876         [ -n "$ost1_HOST" ] && fs2ost_HOST=$ost1_HOST
877
878         local fs2mdsdev=$(mdsdevname 1_2)
879         local fs2ostdev=$(ostdevname 1_2)
880         local fs2mdsvdev=$(mdsvdevname 1_2)
881         local fs2ostvdev=$(ostvdevname 1_2)
882
883         # test 8-char fsname as well
884         local FSNAME2=test1234
885         add fs2mds $(mkfs_opts mds1) --nomgs --mgsnode=$MGSNID \
886                 --fsname=${FSNAME2} --reformat $fs2mdsdev $fs2mdsvdev || exit 10
887
888         add fs2ost $(mkfs_opts ost1) --fsname=${FSNAME2} --reformat \
889                 $fs2ostdev $fs2ostvdev || exit 10
890
891         setup
892         start fs2mds $fs2mdsdev $MDS_MOUNT_OPTS && trap cleanup_24a EXIT INT
893         start fs2ost $fs2ostdev $OST_MOUNT_OPTS
894         mkdir -p $MOUNT2
895         mount -t lustre $MGSNID:/${FSNAME2} $MOUNT2 || return 1
896         # 1 still works
897         check_mount || return 2
898         # files written on 1 should not show up on 2
899         cp /etc/passwd $DIR/$tfile
900         sleep 10
901         [ -e $MOUNT2/$tfile ] && error "File bleed" && return 7
902         # 2 should work
903         sleep 5
904         cp /etc/passwd $MOUNT2/b || return 3
905         rm $MOUNT2/b || return 4
906         # 2 is actually mounted
907         grep $MOUNT2' ' /proc/mounts > /dev/null || return 5
908         # failover
909         facet_failover fs2mds
910         facet_failover fs2ost
911         df
912         umount_client $MOUNT
913         # the MDS must remain up until last MDT
914         stop_mds
915         MDS=$(do_facet $SINGLEMDS "lctl get_param -n devices" | awk '($3 ~ "mdt" && $4 ~ "MDT") { print $4 }' | head -1)
916         [ -z "$MDS" ] && error "No MDT" && return 8
917         cleanup_24a
918         cleanup_nocli || return 6
919 }
920 run_test 24a "Multiple MDTs on a single node"
921
922 test_24b() {
923         local MDSDEV=$(mdsdevname ${SINGLEMDS//mds/})
924
925         if [ -z "$fs2mds_DEV" ]; then
926                 local dev=${SINGLEMDS}_dev
927                 local MDSDEV=${!dev}
928                 is_blkdev $SINGLEMDS $MDSDEV && \
929                 skip_env "mixed loopback and real device not working" && return
930         fi
931
932         local fs2mdsdev=$(mdsdevname 1_2)
933         local fs2mdsvdev=$(mdsvdevname 1_2)
934
935         add fs2mds $(mkfs_opts mds1) --mgs --fsname=${FSNAME}2 --reformat \
936                 $fs2mdsdev $fs2mdsvdev || exit 10
937         setup
938         start fs2mds $fs2mdsdev $MDS_MOUNT_OPTS && return 2
939         cleanup || return 6
940 }
941 run_test 24b "Multiple MGSs on a single node (should return err)"
942
943 test_25() {
944         setup
945         check_mount || return 2
946         local MODULES=$($LCTL modules | awk '{ print $2 }')
947         rmmod $MODULES 2>/dev/null || true
948         cleanup || return 6
949 }
950 run_test 25 "Verify modules are referenced"
951
952 test_26() {
953     load_modules
954     # we need modules before mount for sysctl, so make sure...
955     do_facet $SINGLEMDS "lsmod | grep -q lustre || modprobe lustre"
956 #define OBD_FAIL_MDS_FS_SETUP            0x135
957     do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000135"
958     start_mds && echo MDS started && return 1
959     lctl get_param -n devices
960     DEVS=$(lctl get_param -n devices | egrep -v MG | wc -l)
961     [ $DEVS -gt 0 ] && return 2
962     # start mds to drop writeconf setting
963     start_mds || return 3
964     stop_mds || return 4
965     unload_modules_conf || return $?
966 }
967 run_test 26 "MDT startup failure cleans LOV (should return errs)"
968
969 test_27a() {
970         [ "$(facet_fstype ost1)" = "zfs" ] &&
971                 skip "LU-2059: no local config for ZFS OSTs" && return
972
973         start_ost || return 1
974         start_mds || return 2
975         echo "Requeue thread should have started: "
976         ps -e | grep ll_cfg_requeue
977         set_conf_param_and_check ost1                                         \
978            "lctl get_param -n obdfilter.$FSNAME-OST0000.client_cache_seconds" \
979            "$FSNAME-OST0000.ost.client_cache_seconds" || return 3
980         cleanup_nocli
981 }
982 run_test 27a "Reacquire MGS lock if OST started first"
983
984 test_27b() {
985         # FIXME. ~grev
986         setup
987         local device=$(do_facet $SINGLEMDS "lctl get_param -n devices" | awk '($3 ~ "mdt" && $4 ~ "MDT") { print $4 }')
988
989         facet_failover $SINGLEMDS
990         set_conf_param_and_check $SINGLEMDS                             \
991                 "lctl get_param -n mdt.$device.identity_acquire_expire" \
992                 "$device.mdt.identity_acquire_expire" || return 3
993         set_conf_param_and_check client                                 \
994                 "lctl get_param -n mdc.$device-mdc-*.max_rpcs_in_flight"\
995                 "$device.mdc.max_rpcs_in_flight" || return 4
996         check_mount
997         cleanup
998 }
999 run_test 27b "Reacquire MGS lock after failover"
1000
1001 test_28() {
1002         setup
1003         TEST="lctl get_param -n llite.$FSNAME-*.max_read_ahead_whole_mb"
1004         PARAM="$FSNAME.llite.max_read_ahead_whole_mb"
1005         ORIG=$($TEST)
1006         FINAL=$(($ORIG + 1))
1007         set_conf_param_and_check client "$TEST" "$PARAM" $FINAL || return 3
1008         FINAL=$(($FINAL + 1))
1009         set_conf_param_and_check client "$TEST" "$PARAM" $FINAL || return 4
1010         umount_client $MOUNT || return 200
1011         mount_client $MOUNT
1012         RESULT=$($TEST)
1013         if [ $RESULT -ne $FINAL ]; then
1014             echo "New config not seen: wanted $FINAL got $RESULT"
1015             return 4
1016         else
1017             echo "New config success: got $RESULT"
1018         fi
1019         set_conf_param_and_check client "$TEST" "$PARAM" $ORIG || return 5
1020         cleanup
1021 }
1022 run_test 28 "permanent parameter setting"
1023
1024 test_29() {
1025         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2, skipping" && return
1026         setup > /dev/null 2>&1
1027         start_ost2
1028         sleep 10
1029
1030         local PARAM="$FSNAME-OST0001.osc.active"
1031         local PROC_ACT="osc.$FSNAME-OST0001-osc-[^M]*.active"
1032         local PROC_UUID="osc.$FSNAME-OST0001-osc-[^M]*.ost_server_uuid"
1033
1034         ACTV=$(lctl get_param -n $PROC_ACT)
1035         DEAC=$((1 - $ACTV))
1036         set_conf_param_and_check client \
1037                 "lctl get_param -n $PROC_ACT" "$PARAM" $DEAC || return 2
1038         # also check ost_server_uuid status
1039         RESULT=$(lctl get_param -n $PROC_UUID | grep DEACTIV)
1040         if [ -z "$RESULT" ]; then
1041             echo "Live client not deactivated: $(lctl get_param -n $PROC_UUID)"
1042             return 3
1043         else
1044             echo "Live client success: got $RESULT"
1045         fi
1046
1047         # check MDT too
1048         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS $FSNAME-OST0001)
1049         mdtosc=${mdtosc/-MDT*/-MDT\*}
1050         local MPROC="osc.$mdtosc.active"
1051         local MAX=30
1052         local WAIT=0
1053         while [ 1 ]; do
1054             sleep 5
1055             RESULT=`do_facet $SINGLEMDS " lctl get_param -n $MPROC"`
1056             [ ${PIPESTATUS[0]} = 0 ] || error "Can't read $MPROC"
1057             if [ $RESULT -eq $DEAC ]; then
1058                 echo "MDT deactivated also after $WAIT sec (got $RESULT)"
1059                 break
1060             fi
1061             WAIT=$((WAIT + 5))
1062             if [ $WAIT -eq $MAX ]; then
1063                 echo "MDT not deactivated: wanted $DEAC got $RESULT"
1064                 return 4
1065             fi
1066             echo "Waiting $(($MAX - $WAIT)) secs for MDT deactivated"
1067         done
1068
1069         # test new client starts deactivated
1070         umount_client $MOUNT || return 200
1071         mount_client $MOUNT
1072         RESULT=$(lctl get_param -n $PROC_UUID | grep DEACTIV | grep NEW)
1073         if [ -z "$RESULT" ]; then
1074             echo "New client not deactivated from start: $(lctl get_param -n $PROC_UUID)"
1075             return 5
1076         else
1077             echo "New client success: got $RESULT"
1078         fi
1079
1080         # make sure it reactivates
1081         set_conf_param_and_check client \
1082                 "lctl get_param -n $PROC_ACT" "$PARAM" $ACTV || return 6
1083
1084         umount_client $MOUNT
1085         stop_ost2
1086         cleanup_nocli
1087         #writeconf to remove all ost2 traces for subsequent tests
1088         writeconf
1089 }
1090 run_test 29 "permanently remove an OST"
1091
1092 test_30a() {
1093         setup
1094
1095         echo Big config llog
1096         TEST="lctl get_param -n llite.$FSNAME-*.max_read_ahead_whole_mb"
1097         ORIG=$($TEST)
1098         LIST=(1 2 3 4 5 4 3 2 1 2 3 4 5 4 3 2 1 2 3 4 5)
1099         for i in ${LIST[@]}; do
1100                 set_conf_param_and_check client "$TEST" \
1101                         "$FSNAME.llite.max_read_ahead_whole_mb" $i || return 3
1102         done
1103         # make sure client restart still works
1104         umount_client $MOUNT
1105         mount_client $MOUNT || return 4
1106         [ "$($TEST)" -ne "$i" ] && error "Param didn't stick across restart $($TEST) != $i"
1107         pass
1108
1109         echo Erase parameter setting
1110         do_facet mgs "$LCTL conf_param -d $FSNAME.llite.max_read_ahead_whole_mb" || return 6
1111         umount_client $MOUNT
1112         mount_client $MOUNT || return 6
1113         FINAL=$($TEST)
1114         echo "deleted (default) value=$FINAL, orig=$ORIG"
1115         # assumes this parameter started at the default value
1116         [ "$FINAL" -eq "$ORIG" ] || fail "Deleted value=$FINAL, orig=$ORIG"
1117
1118         cleanup
1119 }
1120 run_test 30a "Big config llog and conf_param deletion"
1121
1122 test_30b() {
1123         setup
1124
1125         # Make a fake nid.  Use the OST nid, and add 20 to the least significant
1126         # numerical part of it. Hopefully that's not already a failover address for
1127         # the server.
1128         OSTNID=$(do_facet ost1 "$LCTL get_param nis" | tail -1 | awk '{print $1}')
1129         ORIGVAL=$(echo $OSTNID | egrep -oi "[0-9]*@")
1130         NEWVAL=$((($(echo $ORIGVAL | egrep -oi "[0-9]*") + 20) % 256))
1131         NEW=$(echo $OSTNID | sed "s/$ORIGVAL/$NEWVAL@/")
1132         echo "Using fake nid $NEW"
1133
1134         TEST="$LCTL get_param -n osc.$FSNAME-OST0000-osc-[^M]*.import | grep failover_nids | sed -n 's/.*\($NEW\).*/\1/p'"
1135         set_conf_param_and_check client "$TEST" \
1136                 "$FSNAME-OST0000.failover.node" $NEW ||
1137                 error "didn't add failover nid $NEW"
1138         NIDS=$($LCTL get_param -n osc.$FSNAME-OST0000-osc-[^M]*.import | grep failover_nids)
1139         echo $NIDS
1140         NIDCOUNT=$(($(echo "$NIDS" | wc -w) - 1))
1141         echo "should have 2 failover nids: $NIDCOUNT"
1142         [ $NIDCOUNT -eq 2 ] || error "Failover nid not added"
1143         do_facet mgs "$LCTL conf_param -d $FSNAME-OST0000.failover.node" || error "conf_param delete failed"
1144         umount_client $MOUNT
1145         mount_client $MOUNT || return 3
1146
1147         NIDS=$($LCTL get_param -n osc.$FSNAME-OST0000-osc-[^M]*.import | grep failover_nids)
1148         echo $NIDS
1149         NIDCOUNT=$(($(echo "$NIDS" | wc -w) - 1))
1150         echo "only 1 final nid should remain: $NIDCOUNT"
1151         [ $NIDCOUNT -eq 1 ] || error "Failover nids not removed"
1152
1153         cleanup
1154 }
1155 run_test 30b "Remove failover nids"
1156
1157 test_31() { # bug 10734
1158         # ipaddr must not exist
1159         mount -t lustre 4.3.2.1@tcp:/lustre $MOUNT || true
1160         cleanup
1161 }
1162 run_test 31 "Connect to non-existent node (shouldn't crash)"
1163
1164 #
1165 # This is not really a test but a tool to create new disk
1166 # image tarballs for the upgrade tests.
1167 #
1168 # Disk image tarballs should be created on single-node
1169 # clusters by running this test with default configurations
1170 # plus a few mandatory environment settings that are verified
1171 # at the beginning of the test.
1172 #
1173 test_32newtarball() {
1174         local version
1175         local dst=.
1176         local src=/etc/rc.d
1177         local tmp=$TMP/t32_image_create
1178
1179         if [ $FSNAME != t32fs -o $MDSCOUNT -ne 1 -o                                                             \
1180                  \( -z "$MDSDEV" -a -z "$MDSDEV1" \) -o $OSTCOUNT -ne 1 -o                      \
1181                  -z "$OSTDEV1" ]; then
1182                 error "Needs FSNAME=t32fs MDSCOUNT=1 MDSDEV1=<nonexistent_file>"        \
1183                           "(or MDSDEV, in the case of b1_8) OSTCOUNT=1"                                 \
1184                           "OSTDEV1=<nonexistent_file>"
1185         fi
1186
1187         mkdir $tmp || {
1188                 echo "Found stale $tmp"
1189                 return 1
1190         }
1191
1192         mkdir $tmp/src
1193         tar cf - -C $src . | tar xf - -C $tmp/src
1194
1195         formatall
1196
1197         setupall
1198         tar cf - -C $tmp/src . | tar xf - -C /mnt/$FSNAME
1199         stopall
1200
1201         mkdir $tmp/img
1202
1203         setupall
1204         pushd /mnt/$FSNAME
1205         ls -Rni --time-style=+%s >$tmp/img/list
1206         find . ! -name .lustre -type f -exec sha1sum {} \; |
1207                 sort -k 2 >$tmp/img/sha1sums
1208         popd
1209         $LCTL get_param -n version | head -n 1 |
1210                 sed -e 's/^lustre: *//' >$tmp/img/commit
1211         stopall
1212
1213         pushd $tmp/src
1214         find -type f -exec sha1sum {} \; | sort -k 2 >$tmp/sha1sums.src
1215         popd
1216
1217         if ! diff -u $tmp/sha1sums.src $tmp/img/sha1sums; then
1218                 echo "Data verification failed"
1219         fi
1220
1221         uname -r >$tmp/img/kernel
1222         uname -m >$tmp/img/arch
1223
1224         mv ${MDSDEV1:-$MDSDEV} $tmp/img
1225         mv $OSTDEV1 $tmp/img
1226
1227         version=$(sed -e 's/\(^[0-9]\+\.[0-9]\+\)\(.*$\)/\1/' $tmp/img/commit |
1228                           sed -e 's/\./_/g')    # E.g., "1.8.7" -> "1_8"
1229         dst=$(cd $dst; pwd)
1230         pushd $tmp/img
1231         tar cjvf $dst/disk$version-$FSTYPE.tar.bz2 -S *
1232         popd
1233
1234         rm -r $tmp
1235 }
1236 #run_test 32newtarball "Create a new test_32 disk image tarball for this version"
1237
1238 #
1239 # The list of applicable tarballs is returned via the caller's
1240 # variable "tarballs".
1241 #
1242 t32_check() {
1243         local node=$(facet_active_host $SINGLEMDS)
1244         local r="do_node $node"
1245
1246         if [ "$CLIENTONLY" ]; then
1247                 skip "Client-only testing"
1248                 exit 0
1249         fi
1250
1251         if ! $r which $TUNEFS; then
1252                 skip_env "tunefs.lustre required on $node"
1253                 exit 0
1254         fi
1255
1256         local IMGTYPE=$FSTYPE
1257
1258         [ ! -z "$MDSFSTYPE" ] && IMGTYPE=$MDSFSTYPE
1259         tarballs=$($r find $RLUSTRE/tests -maxdepth 1 -name \'disk*-$IMGTYPE.tar.bz2\')
1260
1261         if [ -z "$tarballs" ]; then
1262                 skip "No applicable tarballs found"
1263                 exit 0
1264         fi
1265 }
1266
1267 t32_test_cleanup() {
1268         local node=$(facet_active_host $SINGLEMDS)
1269         local r="do_node $node"
1270         local tmp=$TMP/t32
1271         local rc=$?
1272
1273         if $shall_cleanup_lustre; then
1274                 umount $tmp/mnt/lustre || rc=$?
1275         fi
1276         if $shall_cleanup_mdt; then
1277                 $r umount -d $tmp/mnt/mdt || rc=$?
1278         fi
1279         if $shall_cleanup_ost; then
1280                 $r umount -d $tmp/mnt/ost || rc=$?
1281         fi
1282         $r rm -rf $tmp || rc=$?
1283         rm -rf $tmp || rc=$?
1284         return $rc
1285 }
1286
1287 t32_bits_per_long() {
1288         #
1289         # Yes, this is not meant to be perfect.
1290         #
1291         case $1 in
1292                 ppc64|x86_64)
1293                         echo -n 64;;
1294                 i*86)
1295                         echo -n 32;;
1296         esac
1297 }
1298
1299 t32_reload_modules() {
1300         local node=$1
1301         local all_removed=false
1302         local i=0
1303
1304         while ((i < 20)); do
1305                 echo "Unloading modules on $node: Attempt $i"
1306                 do_rpc_nodes $node $LUSTRE_RMMOD $FSTYPE && all_removed=true
1307                 do_rpc_nodes $node check_mem_leak || return 1
1308                 if $all_removed; then
1309                         load_modules
1310                         return 0
1311                 fi
1312                 sleep 5
1313                 i=$((i + 1))
1314         done
1315         echo "Unloading modules on $node: Given up"
1316         return 1
1317 }
1318
1319 t32_wait_til_devices_gone() {
1320         local node=$1
1321         local devices
1322         local i=0
1323
1324         echo wait for devices to go
1325         while ((i < 20)); do
1326                 devices=$(do_rpc_nodes $node $LCTL device_list | wc -l)
1327                 echo $device
1328                 ((devices == 0)) && return 1
1329                 sleep 5
1330                 i=$((i + 1))
1331         done
1332         echo "waiting for devices on $node: Given up"
1333         return 1
1334 }
1335
1336 t32_test() {
1337         local tarball=$1
1338         local writeconf=$2
1339         local shall_cleanup_mdt=false
1340         local shall_cleanup_ost=false
1341         local shall_cleanup_lustre=false
1342         local node=$(facet_active_host $SINGLEMDS)
1343         local r="do_node $node"
1344         local tmp=$TMP/t32
1345         local img_commit
1346         local img_kernel
1347         local img_arch
1348         local fsname=t32fs
1349         local nid=$($r $LCTL list_nids | head -1)
1350         local mopts
1351         local uuid
1352         local nrpcs_orig
1353         local nrpcs
1354         local list
1355
1356         trap 'trap - RETURN; t32_test_cleanup' RETURN
1357
1358         mkdir -p $tmp/mnt/lustre
1359         $r mkdir -p $tmp/mnt/{mdt,ost}
1360         $r tar xjvf $tarball -S -C $tmp || {
1361                 error_noexit "Unpacking the disk image tarball"
1362                 return 1
1363         }
1364         img_commit=$($r cat $tmp/commit)
1365         img_kernel=$($r cat $tmp/kernel)
1366         img_arch=$($r cat $tmp/arch)
1367         echo "Upgrading from $(basename $tarball), created with:"
1368         echo "  Commit: $img_commit"
1369         echo "  Kernel: $img_kernel"
1370         echo "    Arch: $img_arch"
1371
1372         $r $LCTL set_param debug="$PTLDEBUG"
1373
1374         $r $TUNEFS --dryrun $tmp/mdt || {
1375                 error_noexit "tunefs.lustre before mounting the MDT"
1376                 return 1
1377         }
1378         if [ "$writeconf" ]; then
1379                 mopts=loop,writeconf
1380         else
1381                 mopts=loop,exclude=$fsname-OST0000
1382         fi
1383
1384         t32_wait_til_devices_gone $node
1385
1386         $r mount -t lustre -o $mopts $tmp/mdt $tmp/mnt/mdt || {
1387                 error_noexit "Mounting the MDT"
1388                 return 1
1389         }
1390         shall_cleanup_mdt=true
1391
1392         uuid=$($r $LCTL get_param -n mdt.$fsname-MDT0000.uuid) || {
1393                 error_noexit "Getting MDT UUID"
1394                 return 1
1395         }
1396         if [ "$uuid" != $fsname-MDT0000_UUID ]; then
1397                 error_noexit "Unexpected MDT UUID: \"$uuid\""
1398                 return 1
1399         fi
1400
1401         $r $TUNEFS --dryrun $tmp/ost || {
1402                 error_noexit "tunefs.lustre before mounting the OST"
1403                 return 1
1404         }
1405         if [ "$writeconf" ]; then
1406                 mopts=loop,mgsnode=$nid,$writeconf
1407         else
1408                 mopts=loop,mgsnode=$nid
1409         fi
1410         $r mount -t lustre -o $mopts $tmp/ost $tmp/mnt/ost || {
1411                 error_noexit "Mounting the OST"
1412                 return 1
1413         }
1414         shall_cleanup_ost=true
1415
1416         uuid=$($r $LCTL get_param -n obdfilter.$fsname-OST0000.uuid) || {
1417                 error_noexit "Getting OST UUID"
1418                 return 1
1419         }
1420         if [ "$uuid" != $fsname-OST0000_UUID ]; then
1421                 error_noexit "Unexpected OST UUID: \"$uuid\""
1422                 return 1
1423         fi
1424
1425         $r $LCTL conf_param $fsname-OST0000.osc.max_dirty_mb=15 || {
1426                 error_noexit "Setting \"max_dirty_mb\""
1427                 return 1
1428         }
1429         $r $LCTL conf_param $fsname-OST0000.failover.node=$nid || {
1430                 error_noexit "Setting OST \"failover.node\""
1431                 return 1
1432         }
1433         $r $LCTL conf_param $fsname-MDT0000.mdc.max_rpcs_in_flight=9 || {
1434                 error_noexit "Setting \"max_rpcs_in_flight\""
1435                 return 1
1436         }
1437         $r $LCTL conf_param $fsname-MDT0000.failover.node=$nid || {
1438                 error_noexit "Setting MDT \"failover.node\""
1439                 return 1
1440         }
1441         $r $LCTL pool_new $fsname.interop || {
1442                 error_noexit "Setting \"interop\""
1443                 return 1
1444         }
1445         $r $LCTL conf_param $fsname-MDT0000.lov.stripesize=4M || {
1446                 error_noexit "Setting \"lov.stripesize\""
1447                 return 1
1448         }
1449
1450         if [ "$writeconf" ]; then
1451                 mount -t lustre $nid:/$fsname $tmp/mnt/lustre || {
1452                         error_noexit "Mounting the client"
1453                         return 1
1454                 }
1455                 shall_cleanup_lustre=true
1456                 $LCTL set_param debug="$PTLDEBUG"
1457
1458                 if $r test -f $tmp/sha1sums; then
1459                         $r sort -k 2 $tmp/sha1sums >$tmp/sha1sums.orig
1460                         pushd $tmp/mnt/lustre
1461                         find ! -name .lustre -type f -exec sha1sum {} \; |
1462                                 sort -k 2 >$tmp/sha1sums || {
1463                                 error_noexit "sha1sum"
1464                                 return 1
1465                         }
1466                         popd
1467                         if ! diff -ub $tmp/sha1sums.orig $tmp/sha1sums; then
1468                                 error_noexit "sha1sum verification failed"
1469                                 return 1
1470                         fi
1471                 else
1472                         echo "sha1sum verification skipped"
1473                 fi
1474
1475                 if $r test -f $tmp/list; then
1476                         #
1477                         # There is not a Test Framework API to copy files to or
1478                         # from a remote node.
1479                         #
1480                         $r sort -k 6 $tmp/list >$tmp/list.orig
1481                         pushd $tmp/mnt/lustre
1482                         ls -Rni --time-style=+%s | sort -k 6 >$tmp/list || {
1483                                 error_noexit "ls"
1484                                 return 1
1485                         }
1486                         popd
1487                         #
1488                         # 32-bit and 64-bit clients use different algorithms to
1489                         # convert FIDs into inode numbers.  Hence, remove the inode
1490                         # numbers from the lists, if the original list was created
1491                         # on an architecture with different number of bits per
1492                         # "long".
1493                         #
1494                         if [ $(t32_bits_per_long $(uname -m)) !=                                                \
1495                                  $(t32_bits_per_long $img_arch) ]; then
1496                                 echo "Different number of bits per \"long\" from the disk image"
1497                                 for list in list.orig list; do
1498                                         sed -i -e 's/^[0-9]\+[ \t]\+//' $tmp/$list
1499                                 done
1500                         fi
1501                         if ! diff -ub $tmp/list.orig $tmp/list; then
1502                                 error_noexit "list verification failed"
1503                                 return 1
1504                         fi
1505                 else
1506                         echo "list verification skipped"
1507                 fi
1508
1509                 #
1510                 # When adding new data verification tests, please check for
1511                 # the presence of the required reference files first, like
1512                 # the "sha1sums" and "list" tests above, to avoid the need to
1513                 # regenerate every image for each test addition.
1514                 #
1515
1516                 nrpcs_orig=$($LCTL get_param -n mdc.*.max_rpcs_in_flight) || {
1517                         error_noexit "Getting \"max_rpcs_in_flight\""
1518                         return 1
1519                 }
1520                 nrpcs=$((nrpcs_orig + 5))
1521                 $r $LCTL conf_param $fsname-MDT0000.mdc.max_rpcs_in_flight=$nrpcs || {
1522                         error_noexit "Changing \"max_rpcs_in_flight\""
1523                         return 1
1524                 }
1525                 wait_update $HOSTNAME "$LCTL get_param -n mdc.*.max_rpcs_in_flight"     \
1526                             $nrpcs || {
1527                         error_noexit "Verifying \"max_rpcs_in_flight\""
1528                         return 1
1529                 }
1530
1531                 umount $tmp/mnt/lustre || {
1532                         error_noexit "Unmounting the client"
1533                         return 1
1534                 }
1535                 shall_cleanup_lustre=false
1536         else
1537                 $r umount -d $tmp/mnt/mdt || {
1538                         error_noexit "Unmounting the MDT"
1539                         return 1
1540                 }
1541                 shall_cleanup_mdt=false
1542                 $r umount -d $tmp/mnt/ost || {
1543                         error_noexit "Unmounting the OST"
1544                         return 1
1545                 }
1546                 shall_cleanup_ost=false
1547
1548                 t32_reload_modules $node || {
1549                         error_noexit "Reloading modules"
1550                         return 1
1551                 }
1552
1553                 # mount a second time to make sure we didnt leave upgrade flag on
1554                 $r $TUNEFS --dryrun $tmp/mdt || {
1555                         error_noexit "tunefs.lustre before remounting the MDT"
1556                         return 1
1557                 }
1558                 $r mount -t lustre -o loop,exclude=$fsname-OST0000 $tmp/mdt                     \
1559                                  $tmp/mnt/mdt || {
1560                         error_noexit "Remounting the MDT"
1561                         return 1
1562                 }
1563                 shall_cleanup_mdt=true
1564         fi
1565 }
1566
1567 test_32a() {
1568         local tarballs
1569         local tarball
1570         local rc=0
1571
1572         t32_check
1573         for tarball in $tarballs; do
1574                 t32_test $tarball || rc=$?
1575         done
1576         return $rc
1577 }
1578 run_test 32a "Upgrade (not live)"
1579
1580 test_32b() {
1581         local tarballs
1582         local tarball
1583         local rc=0
1584
1585         t32_check
1586         for tarball in $tarballs; do
1587                 t32_test $tarball writeconf || rc=$?
1588         done
1589         return $rc
1590 }
1591 run_test 32b "Upgrade with writeconf"
1592
1593 test_33a() { # bug 12333, was test_33
1594         local rc=0
1595         local FSNAME2=test-123
1596         local MDSDEV=$(mdsdevname ${SINGLEMDS//mds/})
1597         local mkfsoptions
1598
1599         [ -n "$ost1_HOST" ] && fs2ost_HOST=$ost1_HOST
1600
1601         if [ -z "$fs2ost_DEV" -o -z "$fs2mds_DEV" ]; then
1602                 local dev=${SINGLEMDS}_dev
1603                 local MDSDEV=${!dev}
1604                 is_blkdev $SINGLEMDS $MDSDEV && \
1605                 skip_env "mixed loopback and real device not working" && return
1606         fi
1607
1608         local fs2mdsdev=$(mdsdevname 1_2)
1609         local fs2ostdev=$(ostdevname 1_2)
1610         local fs2mdsvdev=$(mdsvdevname 1_2)
1611         local fs2ostvdev=$(ostvdevname 1_2)
1612
1613         if [ $(facet_fstype mds1) == ldiskfs ]; then
1614                 mkfsoptions="--mkfsoptions=\\\"-J size=8\\\"" # See bug 17931.
1615         fi
1616
1617         add fs2mds $(mkfs_opts mds1) --fsname=${FSNAME2} --reformat \
1618                 $mkfsoptions $fs2mdsdev $fs2mdsvdev || exit 10
1619         add fs2ost $(mkfs_opts ost1) --mgsnode=$MGSNID --fsname=${FSNAME2} \
1620                 --index=8191 --reformat $fs2ostdev $fs2ostvdev || exit 10
1621
1622         start fs2mds $fs2mdsdev $MDS_MOUNT_OPTS && trap cleanup_24a EXIT INT
1623         start fs2ost $fs2ostdev $OST_MOUNT_OPTS
1624         do_facet $SINGLEMDS "$LCTL conf_param $FSNAME2.sys.timeout=200" || rc=1
1625         mkdir -p $MOUNT2
1626         mount -t lustre $MGSNID:/${FSNAME2} $MOUNT2 || rc=2
1627         echo "ok."
1628
1629         cp /etc/hosts $MOUNT2/ || rc=3
1630         $LFS getstripe $MOUNT2/hosts
1631
1632         umount -d $MOUNT2
1633         stop fs2ost -f
1634         stop fs2mds -f
1635         cleanup_nocli || rc=6
1636         return $rc
1637 }
1638 run_test 33a "Mount ost with a large index number"
1639
1640 test_33b() {    # was test_34
1641         setup
1642
1643         do_facet client dd if=/dev/zero of=$MOUNT/24 bs=1024k count=1
1644         # Drop lock cancelation reply during umount
1645         #define OBD_FAIL_LDLM_CANCEL             0x304
1646         do_facet client lctl set_param fail_loc=0x80000304
1647         #lctl set_param debug=-1
1648         umount_client $MOUNT
1649         cleanup
1650 }
1651 run_test 33b "Drop cancel during umount"
1652
1653 test_34a() {
1654         setup
1655         do_facet client "sh runmultiop_bg_pause $DIR/file O_c"
1656         manual_umount_client
1657         rc=$?
1658         do_facet client killall -USR1 multiop
1659         if [ $rc -eq 0 ]; then
1660                 error "umount not fail!"
1661         fi
1662         sleep 1
1663         cleanup
1664 }
1665 run_test 34a "umount with opened file should be fail"
1666
1667
1668 test_34b() {
1669         setup
1670         touch $DIR/$tfile || return 1
1671         stop_mds --force || return 2
1672
1673         manual_umount_client --force
1674         rc=$?
1675         if [ $rc -ne 0 ]; then
1676                 error "mtab after failed umount - rc $rc"
1677         fi
1678
1679         cleanup
1680         return 0
1681 }
1682 run_test 34b "force umount with failed mds should be normal"
1683
1684 test_34c() {
1685         setup
1686         touch $DIR/$tfile || return 1
1687         stop_ost --force || return 2
1688
1689         manual_umount_client --force
1690         rc=$?
1691         if [ $rc -ne 0 ]; then
1692                 error "mtab after failed umount - rc $rc"
1693         fi
1694
1695         cleanup
1696         return 0
1697 }
1698 run_test 34c "force umount with failed ost should be normal"
1699
1700 test_35a() { # bug 12459
1701         setup
1702
1703         DBG_SAVE="`lctl get_param -n debug`"
1704         lctl set_param debug="ha"
1705
1706         log "Set up a fake failnode for the MDS"
1707         FAKENID="127.0.0.2"
1708         local device=$(do_facet $SINGLEMDS "lctl get_param -n devices" | awk '($3 ~ "mdt" && $4 ~ "MDT") { print $4 }' | head -1)
1709         do_facet mgs "$LCTL conf_param ${device}.failover.node=" \
1710                 "$(h2$NETTYPE $FAKENID)" || return 4
1711
1712         log "Wait for RECONNECT_INTERVAL seconds (10s)"
1713         sleep 10
1714
1715         MSG="conf-sanity.sh test_35a `date +%F%kh%Mm%Ss`"
1716         $LCTL clear
1717         log "$MSG"
1718         log "Stopping the MDT:"
1719         stop_mds || return 5
1720
1721         df $MOUNT > /dev/null 2>&1 &
1722         DFPID=$!
1723         log "Restarting the MDT:"
1724         start_mds || return 6
1725         log "Wait for df ($DFPID) ... "
1726         wait $DFPID
1727         log "done"
1728         lctl set_param debug="$DBG_SAVE"
1729
1730         # retrieve from the log the first server that the client tried to
1731         # contact after the connection loss
1732         $LCTL dk $TMP/lustre-log-$TESTNAME.log
1733         NEXTCONN=`awk "/${MSG}/ {start = 1;}
1734                        /import_select_connection.*$device-mdc.* using connection/ {
1735                                 if (start) {
1736                                         if (\\\$NF ~ /$FAKENID/)
1737                                                 print \\\$NF;
1738                                         else
1739                                                 print 0;
1740                                         exit;
1741                                 }
1742                        }" $TMP/lustre-log-$TESTNAME.log`
1743         [ "$NEXTCONN" != "0" ] && log "The client didn't try to reconnect to the last active server (tried ${NEXTCONN} instead)" && return 7
1744         cleanup
1745         # remove nid settings
1746         writeconf
1747 }
1748 run_test 35a "Reconnect to the last active server first"
1749
1750 test_35b() { # bug 18674
1751         remote_mds || { skip "local MDS" && return 0; }
1752         setup
1753
1754         debugsave
1755         $LCTL set_param debug="ha"
1756         $LCTL clear
1757         MSG="conf-sanity.sh test_35b `date +%F%kh%Mm%Ss`"
1758         log "$MSG"
1759
1760         log "Set up a fake failnode for the MDS"
1761         FAKENID="127.0.0.2"
1762         local device=$(do_facet $SINGLEMDS "$LCTL get_param -n devices" | \
1763                         awk '($3 ~ "mdt" && $4 ~ "MDT") { print $4 }' | head -1)
1764         do_facet mgs "$LCTL conf_param ${device}.failover.node=" \
1765                 "$(h2$NETTYPE $FAKENID)" || return 1
1766
1767         local at_max_saved=0
1768         # adaptive timeouts may prevent seeing the issue
1769         if at_is_enabled; then
1770                 at_max_saved=$(at_max_get mds)
1771                 at_max_set 0 mds client
1772         fi
1773
1774         mkdir -p $MOUNT/$tdir
1775
1776         log "Injecting EBUSY on MDS"
1777         # Setting OBD_FAIL_MDS_RESEND=0x136
1778         do_facet $SINGLEMDS "$LCTL set_param fail_loc=0x80000136" || return 2
1779
1780         $LCTL set_param mdc.${FSNAME}*.stats=clear
1781
1782         log "Creating a test file and stat it"
1783         touch $MOUNT/$tdir/$tfile
1784         stat $MOUNT/$tdir/$tfile
1785
1786         log "Stop injecting EBUSY on MDS"
1787         do_facet $SINGLEMDS "$LCTL set_param fail_loc=0" || return 3
1788         rm -f $MOUNT/$tdir/$tfile
1789
1790         log "done"
1791         # restore adaptive timeout
1792         [ $at_max_saved -ne 0 ] && at_max_set $at_max_saved mds client
1793
1794         $LCTL dk $TMP/lustre-log-$TESTNAME.log
1795
1796         CONNCNT=`$LCTL get_param mdc.${FSNAME}*.stats | awk '/mds_connect/{print $2}'`
1797
1798         # retrieve from the log if the client has ever tried to
1799         # contact the fake server after the loss of connection
1800         FAILCONN=`awk "BEGIN {ret = 0;}
1801                        /import_select_connection.*${FSNAME}-MDT0000-mdc.* using connection/ {
1802                                 ret = 1;
1803                                 if (\\\$NF ~ /$FAKENID/) {
1804                                         ret = 2;
1805                                         exit;
1806                                 }
1807                        }
1808                        END {print ret}" $TMP/lustre-log-$TESTNAME.log`
1809
1810         [ "$FAILCONN" == "0" ] && \
1811                 log "ERROR: The client reconnection has not been triggered" && \
1812                 return 4
1813         [ "$FAILCONN" == "2" ] && \
1814                 log "ERROR: The client tried to reconnect to the failover server while the primary was busy" && \
1815                 return 5
1816
1817         # LU-290
1818         # When OBD_FAIL_MDS_RESEND is hit, we sleep for 2 * obd_timeout
1819         # Reconnects are supposed to be rate limited to one every 5s
1820         [ $CONNCNT -gt $((2 * $TIMEOUT / 5 + 1)) ] && \
1821                 log "ERROR: Too many reconnects $CONNCNT" && \
1822                 return 6
1823
1824         cleanup
1825         # remove nid settings
1826         writeconf
1827 }
1828 run_test 35b "Continue reconnection retries, if the active server is busy"
1829
1830 test_36() { # 12743
1831         [ $OSTCOUNT -lt 2 ] && skip_env "skipping test for single OST" && return
1832
1833         [ "$ost_HOST" = "`hostname`" -o "$ost1_HOST" = "`hostname`" ] || \
1834                 { skip "remote OST" && return 0; }
1835
1836         local rc=0
1837         local FSNAME2=test1234
1838         local fs3ost_HOST=$ost_HOST
1839         local MDSDEV=$(mdsdevname ${SINGLEMDS//mds/})
1840
1841         [ -n "$ost1_HOST" ] && fs2ost_HOST=$ost1_HOST && fs3ost_HOST=$ost1_HOST
1842
1843         if [ -z "$fs2ost_DEV" -o -z "$fs2mds_DEV" -o -z "$fs3ost_DEV" ]; then
1844                 is_blkdev $SINGLEMDS $MDSDEV && \
1845                 skip_env "mixed loopback and real device not working" && return
1846         fi
1847
1848         local fs2mdsdev=$(mdsdevname 1_2)
1849         local fs2ostdev=$(ostdevname 1_2)
1850         local fs3ostdev=$(ostdevname 2_2)
1851         local fs2mdsvdev=$(mdsvdevname 1_2)
1852         local fs2ostvdev=$(ostvdevname 1_2)
1853         local fs3ostvdev=$(ostvdevname 2_2)
1854
1855         add fs2mds $(mkfs_opts mds1) --fsname=${FSNAME2} --reformat \
1856                 $fs2mdsdev $fs2mdsvdev || exit 10
1857         # XXX after we support non 4K disk blocksize in ldiskfs, specify a
1858         #     different one than the default value here.
1859         add fs2ost $(mkfs_opts ost1) --mgsnode=$MGSNID --fsname=${FSNAME2} \
1860                 --reformat $fs2ostdev $fs2ostvdev || exit 10
1861         add fs3ost $(mkfs_opts ost1) --mgsnode=$MGSNID --fsname=${FSNAME2} \
1862                 --reformat $fs3ostdev $fs3ostvdev || exit 10
1863
1864         start fs2mds $fs2mdsdev $MDS_MOUNT_OPTS
1865         start fs2ost $fs2ostdev $OST_MOUNT_OPTS
1866         start fs3ost $fs3ostdev $OST_MOUNT_OPTS
1867         mkdir -p $MOUNT2
1868         mount -t lustre $MGSNID:/${FSNAME2} $MOUNT2 || return 1
1869
1870         sleep 5 # until 11778 fixed
1871
1872         dd if=/dev/zero of=$MOUNT2/$tfile bs=1M count=7 || return 2
1873
1874         BKTOTAL=`lctl get_param -n obdfilter.*.kbytestotal | awk 'BEGIN{total=0}; {total+=$1}; END{print total}'`
1875         BKFREE=`lctl get_param -n obdfilter.*.kbytesfree | awk 'BEGIN{free=0}; {free+=$1}; END{print free}'`
1876         BKAVAIL=`lctl get_param -n obdfilter.*.kbytesavail | awk 'BEGIN{avail=0}; {avail+=$1}; END{print avail}'`
1877         STRING=`df -P $MOUNT2 | tail -n 1 | awk '{print $2","$3","$4}'`
1878         DFTOTAL=`echo $STRING | cut -d, -f1`
1879         DFUSED=`echo $STRING  | cut -d, -f2`
1880         DFAVAIL=`echo $STRING | cut -d, -f3`
1881         DFFREE=$(($DFTOTAL - $DFUSED))
1882
1883         ALLOWANCE=$((64 * $OSTCOUNT))
1884
1885         if [ $DFTOTAL -lt $(($BKTOTAL - $ALLOWANCE)) ] ||
1886            [ $DFTOTAL -gt $(($BKTOTAL + $ALLOWANCE)) ] ; then
1887                 echo "**** FAIL: df total($DFTOTAL) mismatch OST total($BKTOTAL)"
1888                 rc=1
1889         fi
1890         if [ $DFFREE -lt $(($BKFREE - $ALLOWANCE)) ] ||
1891            [ $DFFREE -gt $(($BKFREE + $ALLOWANCE)) ] ; then
1892                 echo "**** FAIL: df free($DFFREE) mismatch OST free($BKFREE)"
1893                 rc=2
1894         fi
1895         if [ $DFAVAIL -lt $(($BKAVAIL - $ALLOWANCE)) ] ||
1896            [ $DFAVAIL -gt $(($BKAVAIL + $ALLOWANCE)) ] ; then
1897                 echo "**** FAIL: df avail($DFAVAIL) mismatch OST avail($BKAVAIL)"
1898                 rc=3
1899        fi
1900
1901         umount -d $MOUNT2
1902         stop fs3ost -f || return 200
1903         stop fs2ost -f || return 201
1904         stop fs2mds -f || return 202
1905         unload_modules_conf || return 203
1906         return $rc
1907 }
1908 run_test 36 "df report consistency on OSTs with different block size"
1909
1910 test_37() {
1911         local mntpt=$(facet_mntpt $SINGLEMDS)
1912         local mdsdev=$(mdsdevname ${SINGLEMDS//mds/})
1913         local mdsdev_sym="$TMP/sym_mdt.img"
1914         local opts=$MDS_MOUNT_OPTS
1915         local rc=0
1916
1917         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
1918                 skip "Currently only applicable to ldiskfs-based MDTs"
1919                 return
1920         fi
1921
1922         echo "MDS :     $mdsdev"
1923         echo "SYMLINK : $mdsdev_sym"
1924         do_facet $SINGLEMDS rm -f $mdsdev_sym
1925
1926         do_facet $SINGLEMDS ln -s $mdsdev $mdsdev_sym
1927
1928         echo "mount symlink device - $mdsdev_sym"
1929
1930         if ! do_facet $SINGLEMDS test -b $mdsdev; then
1931                 opts=$(csa_add "$opts" -o loop)
1932         fi
1933         mount_op=$(do_facet $SINGLEMDS mount -v -t lustre $opts \
1934                 $mdsdev_sym $mntpt 2>&1)
1935         rc=${PIPESTATUS[0]}
1936
1937         echo mount_op=$mount_op
1938
1939         do_facet $SINGLEMDS "umount -d $mntpt && rm -f $mdsdev_sym"
1940
1941         if $(echo $mount_op | grep -q "unable to set tunable"); then
1942                 error "set tunables failed for symlink device"
1943         fi
1944
1945         [ $rc -eq 0 ] || error "mount symlink $mdsdev_sym failed! rc=$rc"
1946
1947         return 0
1948 }
1949 run_test 37 "verify set tunables works for symlink device"
1950
1951 test_38() { # bug 14222
1952         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
1953                 skip "Only applicable to ldiskfs-based MDTs"
1954                 return
1955         fi
1956
1957         setup
1958         # like runtests
1959         COUNT=10
1960         SRC="/etc /bin"
1961         FILES=`find $SRC -type f -mtime +1 | head -n $COUNT`
1962         log "copying $(echo $FILES | wc -w) files to $DIR/$tdir"
1963         mkdir -p $DIR/$tdir
1964         tar cf - $FILES | tar xf - -C $DIR/$tdir || \
1965                 error "copying $SRC to $DIR/$tdir"
1966         sync
1967         umount_client $MOUNT
1968         stop_mds
1969         log "rename lov_objid file on MDS"
1970         rm -f $TMP/lov_objid.orig
1971
1972         local MDSDEV=$(mdsdevname ${SINGLEMDS//mds/})
1973         do_facet $SINGLEMDS "$DEBUGFS -c -R \\\"dump lov_objid $TMP/lov_objid.orig\\\" $MDSDEV"
1974         do_facet $SINGLEMDS "$DEBUGFS -w -R \\\"rm lov_objid\\\" $MDSDEV"
1975
1976         do_facet $SINGLEMDS "od -Ax -td8 $TMP/lov_objid.orig"
1977         # check create in mds_lov_connect
1978         start_mds
1979         mount_client $MOUNT
1980         for f in $FILES; do
1981                 [ $V ] && log "verifying $DIR/$tdir/$f"
1982                 diff -q $f $DIR/$tdir/$f || ERROR=y
1983         done
1984         do_facet $SINGLEMDS "$DEBUGFS -c -R \\\"dump lov_objid $TMP/lov_objid.new\\\"  $MDSDEV"
1985         do_facet $SINGLEMDS "od -Ax -td8 $TMP/lov_objid.new"
1986         [ "$ERROR" = "y" ] && error "old and new files are different after connect" || true
1987
1988         # check it's updates in sync
1989         umount_client $MOUNT
1990         stop_mds
1991
1992         do_facet $SINGLEMDS dd if=/dev/zero of=$TMP/lov_objid.clear bs=4096 count=1
1993         do_facet $SINGLEMDS "$DEBUGFS -w -R \\\"rm lov_objid\\\" $MDSDEV"
1994         do_facet $SINGLEMDS "$DEBUGFS -w -R \\\"write $TMP/lov_objid.clear lov_objid\\\" $MDSDEV "
1995
1996         start_mds
1997         mount_client $MOUNT
1998         for f in $FILES; do
1999                 [ $V ] && log "verifying $DIR/$tdir/$f"
2000                 diff -q $f $DIR/$tdir/$f || ERROR=y
2001         done
2002         do_facet $SINGLEMDS "$DEBUGFS -c -R \\\"dump lov_objid $TMP/lov_objid.new1\\\" $MDSDEV"
2003         do_facet $SINGLEMDS "od -Ax -td8 $TMP/lov_objid.new1"
2004         umount_client $MOUNT
2005         stop_mds
2006         [ "$ERROR" = "y" ] && error "old and new files are different after sync" || true
2007
2008         log "files compared the same"
2009         cleanup
2010 }
2011 run_test 38 "MDS recreates missing lov_objid file from OST data"
2012
2013 test_39() {
2014         PTLDEBUG=+malloc
2015         setup
2016         cleanup
2017         perl $SRCDIR/leak_finder.pl $TMP/debug 2>&1 | egrep '*** Leak:' &&
2018                 error "memory leak detected" || true
2019 }
2020 run_test 39 "leak_finder recognizes both LUSTRE and LNET malloc messages"
2021
2022 test_40() { # bug 15759
2023         start_ost
2024         #define OBD_FAIL_TGT_TOOMANY_THREADS     0x706
2025         do_facet $SINGLEMDS "$LCTL set_param fail_loc=0x80000706"
2026         start_mds
2027         cleanup
2028 }
2029 run_test 40 "race during service thread startup"
2030
2031 test_41a() { #bug 14134
2032         if [ $(facet_fstype $SINGLEMDS) == ldiskfs ] &&
2033            ! do_facet $SINGLEMDS test -b $(mdsdevname 1); then
2034                 skip "Loop devices does not work with nosvc option"
2035                 return
2036         fi
2037
2038         local rc
2039         local MDSDEV=$(mdsdevname ${SINGLEMDS//mds/})
2040
2041         start $SINGLEMDS $MDSDEV $MDS_MOUNT_OPTS -o nosvc -n
2042         start ost1 `ostdevname 1` $OST_MOUNT_OPTS
2043         start $SINGLEMDS $MDSDEV $MDS_MOUNT_OPTS -o nomgs,force
2044         mkdir -p $MOUNT
2045         mount_client $MOUNT || return 1
2046         sleep 5
2047
2048         echo "blah blah" > $MOUNT/$tfile
2049         cat $MOUNT/$tfile
2050
2051         umount_client $MOUNT
2052         stop ost1 -f || return 201
2053         stop_mds -f || return 202
2054         stop_mds -f || return 203
2055         unload_modules_conf || return 204
2056         return $rc
2057 }
2058 run_test 41a "mount mds with --nosvc and --nomgs"
2059
2060 test_41b() {
2061         if [ $(facet_fstype $SINGLEMDS) == ldiskfs ] &&
2062            ! do_facet $SINGLEMDS test -b $(mdsdevname 1); then
2063                 skip "Loop devices does not work with nosvc option"
2064                 return
2065         fi
2066
2067         ! combined_mgs_mds && skip "needs combined mgs device" && return 0
2068
2069         stopall
2070         reformat
2071         local MDSDEV=$(mdsdevname ${SINGLEMDS//mds/})
2072
2073         start $SINGLEMDS $MDSDEV $MDS_MOUNT_OPTS -o nosvc -n
2074         start_ost
2075         start $SINGLEMDS $MDSDEV $MDS_MOUNT_OPTS -o nomgs,force
2076         mkdir -p $MOUNT
2077         mount_client $MOUNT || return 1
2078         sleep 5
2079
2080         echo "blah blah" > $MOUNT/$tfile
2081         cat $MOUNT/$tfile || return 200
2082
2083         umount_client $MOUNT
2084         stop_ost || return 201
2085         stop_mds -f || return 202
2086         stop_mds -f || return 203
2087
2088 }
2089 run_test 41b "mount mds with --nosvc and --nomgs on first mount"
2090
2091 test_42() { #bug 14693
2092         setup
2093         check_mount || return 2
2094         do_facet mgs $LCTL conf_param lustre.llite.some_wrong_param=10
2095         umount_client $MOUNT
2096         mount_client $MOUNT || return 1
2097         cleanup
2098         return 0
2099 }
2100 run_test 42 "invalid config param should not prevent client from mounting"
2101
2102 test_43() {
2103         [ $UID -ne 0 -o $RUNAS_ID -eq 0 ] && skip_env "run as root"
2104         setup
2105         chmod ugo+x $DIR || error "chmod 0 failed"
2106         set_conf_param_and_check mds                                    \
2107                 "lctl get_param -n mdt.$FSNAME-MDT0000.root_squash"     \
2108                 "$FSNAME.mdt.root_squash"                               \
2109                 "0:0"
2110         set_conf_param_and_check mds                                    \
2111                 "lctl get_param -n mdt.$FSNAME-MDT0000.nosquash_nids"   \
2112                 "$FSNAME.mdt.nosquash_nids"                             \
2113                 "NONE"
2114
2115     #
2116     # create set of test files
2117     #
2118     echo "111" > $DIR/$tfile-userfile || error "write 1 failed"
2119     chmod go-rw $DIR/$tfile-userfile  || error "chmod 1 failed"
2120     chown $RUNAS_ID.$RUNAS_ID $DIR/$tfile-userfile || error "chown failed"
2121
2122     echo "222" > $DIR/$tfile-rootfile || error "write 2 failed"
2123     chmod go-rw $DIR/$tfile-rootfile  || error "chmod 2 faield"
2124
2125     mkdir $DIR/$tdir-rootdir -p       || error "mkdir failed"
2126     chmod go-rwx $DIR/$tdir-rootdir   || error "chmod 3 failed"
2127     touch $DIR/$tdir-rootdir/tfile-1  || error "touch failed"
2128
2129         #
2130         # check root_squash:
2131         #   set root squash UID:GID to RUNAS_ID
2132         #   root should be able to access only files owned by RUNAS_ID
2133         #
2134         set_conf_param_and_check mds                                    \
2135                 "lctl get_param -n mdt.$FSNAME-MDT0000.root_squash"     \
2136                 "$FSNAME.mdt.root_squash"                               \
2137                 "$RUNAS_ID:$RUNAS_ID"
2138
2139     ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tfile-userfile)
2140     dd if=$DIR/$tfile-userfile 1>/dev/null 2>/dev/null || \
2141         error "$ST: root read permission is denied"
2142     echo "$ST: root read permission is granted - ok"
2143
2144     echo "444" | \
2145     dd conv=notrunc if=$DIR/$tfile-userfile 1>/dev/null 2>/dev/null || \
2146         error "$ST: root write permission is denied"
2147     echo "$ST: root write permission is granted - ok"
2148
2149     ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tfile-rootfile)
2150     dd if=$DIR/$tfile-rootfile 1>/dev/null 2>/dev/null && \
2151         error "$ST: root read permission is granted"
2152     echo "$ST: root read permission is denied - ok"
2153
2154     echo "555" | \
2155     dd conv=notrunc of=$DIR/$tfile-rootfile 1>/dev/null 2>/dev/null && \
2156         error "$ST: root write permission is granted"
2157     echo "$ST: root write permission is denied - ok"
2158
2159     ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tdir-rootdir)
2160     rm $DIR/$tdir-rootdir/tfile-1 1>/dev/null 2>/dev/null && \
2161         error "$ST: root unlink permission is granted"
2162     echo "$ST: root unlink permission is denied - ok"
2163
2164     touch $DIR/tdir-rootdir/tfile-2 1>/dev/null 2>/dev/null && \
2165         error "$ST: root create permission is granted"
2166     echo "$ST: root create permission is denied - ok"
2167
2168         #
2169         # check nosquash_nids:
2170         #   put client's NID into nosquash_nids list,
2171         #   root should be able to access root file after that
2172         #
2173         local NIDLIST=$(lctl list_nids all | tr '\n' ' ')
2174         NIDLIST="2@elan $NIDLIST 192.168.0.[2,10]@tcp"
2175         NIDLIST=$(echo $NIDLIST | tr -s ' ' ' ')
2176         set_conf_param_and_check mds                                    \
2177                 "lctl get_param -n mdt.$FSNAME-MDT0000.nosquash_nids"   \
2178                 "$FSNAME-MDTall.mdt.nosquash_nids"                      \
2179                 "$NIDLIST"
2180
2181     ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tfile-rootfile)
2182     dd if=$DIR/$tfile-rootfile 1>/dev/null 2>/dev/null || \
2183         error "$ST: root read permission is denied"
2184     echo "$ST: root read permission is granted - ok"
2185
2186     echo "666" | \
2187     dd conv=notrunc of=$DIR/$tfile-rootfile 1>/dev/null 2>/dev/null || \
2188         error "$ST: root write permission is denied"
2189     echo "$ST: root write permission is granted - ok"
2190
2191     ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tdir-rootdir)
2192     rm $DIR/$tdir-rootdir/tfile-1 || \
2193         error "$ST: root unlink permission is denied"
2194     echo "$ST: root unlink permission is granted - ok"
2195     touch $DIR/$tdir-rootdir/tfile-2 || \
2196         error "$ST: root create permission is denied"
2197     echo "$ST: root create permission is granted - ok"
2198
2199     return 0
2200 }
2201 run_test 43 "check root_squash and nosquash_nids"
2202
2203 umount_client $MOUNT
2204 cleanup_nocli
2205
2206 test_44() { # 16317
2207         setup
2208         check_mount || return 2
2209         UUID=$($LCTL get_param llite.${FSNAME}*.uuid | cut -d= -f2)
2210         STATS_FOUND=no
2211         UUIDS=$(do_facet $SINGLEMDS "$LCTL get_param mdt.${FSNAME}*.exports.*.uuid")
2212         for VAL in $UUIDS; do
2213                 NID=$(echo $VAL | cut -d= -f1)
2214                 CLUUID=$(echo $VAL | cut -d= -f2)
2215                 [ "$UUID" = "$CLUUID" ] && STATS_FOUND=yes && break
2216         done
2217         [ "$STATS_FOUND" = "no" ] && error "stats not found for client"
2218         cleanup
2219         return 0
2220 }
2221 run_test 44 "mounted client proc entry exists"
2222
2223 test_45() { #17310
2224         setup
2225         check_mount || return 2
2226         stop_mds
2227         df -h $MOUNT &
2228         log "sleep 60 sec"
2229         sleep 60
2230 #define OBD_FAIL_PTLRPC_LONG_UNLINK   0x50f
2231         do_facet client "lctl set_param fail_loc=0x50f"
2232         log "sleep 10 sec"
2233         sleep 10
2234         manual_umount_client --force || return 3
2235         do_facet client "lctl set_param fail_loc=0x0"
2236         start_mds
2237         mount_client $MOUNT || return 4
2238         cleanup
2239         return 0
2240 }
2241 run_test 45 "long unlink handling in ptlrpcd"
2242
2243 cleanup_46a() {
2244         trap 0
2245         local rc=0
2246         local count=$1
2247
2248         umount_client $MOUNT2 || rc=$?
2249         umount_client $MOUNT || rc=$?
2250         while [ $count -gt 0 ]; do
2251                 stop ost${count} -f || rc=$?
2252                 let count=count-1
2253         done    
2254         stop_mds || rc=$?
2255         cleanup_nocli || rc=$?
2256         #writeconf to remove all ost2 traces for subsequent tests
2257         writeconf
2258         return $rc
2259 }
2260
2261 test_46a() {
2262         echo "Testing with $OSTCOUNT OSTs"
2263         reformat_and_config
2264         start_mds || return 1
2265         #first client should see only one ost
2266         start_ost || return 2
2267         wait_osc_import_state mds ost FULL
2268         #start_client
2269         mount_client $MOUNT || return 3
2270         trap "cleanup_46a $OSTCOUNT" EXIT ERR
2271
2272         local i
2273         for (( i=2; i<=$OSTCOUNT; i++ )); do
2274             start ost$i `ostdevname $i` $OST_MOUNT_OPTS || return $((i+2))
2275         done
2276
2277         # wait until osts in sync
2278         for (( i=2; i<=$OSTCOUNT; i++ )); do
2279             wait_osc_import_state mds ost$i FULL
2280             wait_osc_import_state client ost$i FULL
2281         done
2282
2283         #second client see all ost's
2284
2285         mount_client $MOUNT2 || return 8
2286         $LFS setstripe -c -1 $MOUNT2 || return 9
2287         $LFS getstripe $MOUNT2 || return 10
2288
2289         echo "ok" > $MOUNT2/widestripe
2290         $LFS getstripe $MOUNT2/widestripe || return 11
2291         # fill acl buffer for avoid expand lsm to them
2292         awk -F : '{if (FNR < 25) { print "u:"$1":rwx" }}' /etc/passwd | while read acl; do
2293             setfacl -m $acl $MOUNT2/widestripe
2294         done
2295
2296         # will be deadlock
2297         stat $MOUNT/widestripe || return 12
2298
2299         cleanup_46a $OSTCOUNT || { echo "cleanup_46a failed!" && return 13; }
2300         return 0
2301 }
2302 run_test 46a "handle ost additional - wide striped file"
2303
2304 test_47() { #17674
2305         reformat
2306         setup_noconfig
2307         check_mount || return 2
2308         $LCTL set_param ldlm.namespaces.$FSNAME-*-*-*.lru_size=100
2309
2310         local lru_size=[]
2311         local count=0
2312         for ns in $($LCTL get_param ldlm.namespaces.$FSNAME-*-*-*.lru_size); do
2313             if echo $ns | grep "MDT[[:digit:]]*"; then
2314                 continue
2315             fi
2316             lrs=$(echo $ns | sed 's/.*lru_size=//')
2317             lru_size[count]=$lrs
2318             let count=count+1
2319         done
2320
2321         facet_failover ost1
2322         facet_failover $SINGLEMDS
2323         client_up || return 3
2324
2325         count=0
2326         for ns in $($LCTL get_param ldlm.namespaces.$FSNAME-*-*-*.lru_size); do
2327             if echo $ns | grep "MDT[[:digit:]]*"; then
2328                 continue
2329             fi
2330             lrs=$(echo $ns | sed 's/.*lru_size=//')
2331             if ! test "$lrs" -eq "${lru_size[count]}"; then
2332                 n=$(echo $ns | sed -e 's/ldlm.namespaces.//' -e 's/.lru_size=.*//')
2333                 error "$n has lost lru_size: $lrs vs. ${lru_size[count]}"
2334             fi
2335             let count=count+1
2336         done
2337
2338         cleanup
2339         return 0
2340 }
2341 run_test 47 "server restart does not make client loss lru_resize settings"
2342
2343 cleanup_48() {
2344         trap 0
2345
2346         # reformat after this test is needed - if test will failed
2347         # we will have unkillable file at FS
2348         reformat_and_config
2349 }
2350
2351 test_48() { # bug 17636
2352         reformat
2353         setup_noconfig
2354         check_mount || return 2
2355
2356         $LFS setstripe -c -1 $MOUNT || return 9
2357         $LFS getstripe $MOUNT || return 10
2358
2359         echo "ok" > $MOUNT/widestripe
2360         $LFS getstripe $MOUNT/widestripe || return 11
2361
2362         trap cleanup_48 EXIT ERR
2363
2364         # fill acl buffer for avoid expand lsm to them
2365         getent passwd | awk -F : '{ print "u:"$1":rwx" }' |  while read acl; do
2366             setfacl -m $acl $MOUNT/widestripe
2367         done
2368
2369         stat $MOUNT/widestripe || return 12
2370
2371         cleanup_48
2372         return 0
2373 }
2374 run_test 48 "too many acls on file"
2375
2376 # check PARAM_SYS_LDLM_TIMEOUT option of MKFS.LUSTRE
2377 test_49() { # bug 17710
2378         local timeout_orig=$TIMEOUT
2379         local ldlm_timeout_orig=$LDLM_TIMEOUT
2380         local LOCAL_TIMEOUT=20
2381
2382         LDLM_TIMEOUT=$LOCAL_TIMEOUT
2383         TIMEOUT=$LOCAL_TIMEOUT
2384
2385         reformat
2386         setup_noconfig
2387         check_mount || return 1
2388
2389         echo "check ldlm_timout..."
2390         LDLM_MDS="`do_facet $SINGLEMDS lctl get_param -n ldlm_timeout`"
2391         LDLM_OST1="`do_facet ost1 lctl get_param -n ldlm_timeout`"
2392         LDLM_CLIENT="`do_facet client lctl get_param -n ldlm_timeout`"
2393
2394         if [ $LDLM_MDS -ne $LDLM_OST1 ] || [ $LDLM_MDS -ne $LDLM_CLIENT ]; then
2395                 error "Different LDLM_TIMEOUT:$LDLM_MDS $LDLM_OST1 $LDLM_CLIENT"
2396         fi
2397
2398         if [ $LDLM_MDS -ne $((LOCAL_TIMEOUT / 3)) ]; then
2399                 error "LDLM_TIMEOUT($LDLM_MDS) is not correct"
2400         fi
2401
2402         umount_client $MOUNT
2403         stop_ost || return 2
2404         stop_mds || return 3
2405
2406         LDLM_TIMEOUT=$((LOCAL_TIMEOUT - 1))
2407
2408         reformat
2409         setup_noconfig
2410         check_mount || return 7
2411
2412         LDLM_MDS="`do_facet $SINGLEMDS lctl get_param -n ldlm_timeout`"
2413         LDLM_OST1="`do_facet ost1 lctl get_param -n ldlm_timeout`"
2414         LDLM_CLIENT="`do_facet client lctl get_param -n ldlm_timeout`"
2415
2416         if [ $LDLM_MDS -ne $LDLM_OST1 ] || [ $LDLM_MDS -ne $LDLM_CLIENT ]; then
2417                 error "Different LDLM_TIMEOUT:$LDLM_MDS $LDLM_OST1 $LDLM_CLIENT"
2418         fi
2419
2420         if [ $LDLM_MDS -ne $((LOCAL_TIMEOUT - 1)) ]; then
2421                 error "LDLM_TIMEOUT($LDLM_MDS) is not correct"
2422         fi
2423
2424         cleanup || return $?
2425
2426         LDLM_TIMEOUT=$ldlm_timeout_orig
2427         TIMEOUT=$timeout_orig
2428 }
2429 run_test 49 "check PARAM_SYS_LDLM_TIMEOUT option of MKFS.LUSTRE"
2430
2431 lazystatfs() {
2432         # Test both statfs and lfs df and fail if either one fails
2433         multiop_bg_pause $1 f_
2434         RC1=$?
2435         PID=$!
2436         killall -USR1 multiop
2437         [ $RC1 -ne 0 ] && log "lazystatfs multiop failed"
2438         wait $PID || { RC1=$?; log "multiop return error "; }
2439
2440         $LFS df &
2441         PID=$!
2442         sleep 5
2443         kill -s 0 $PID
2444         RC2=$?
2445         if [ $RC2 -eq 0 ]; then
2446             kill -s 9 $PID
2447             log "lazystatfs df failed"
2448         fi
2449
2450         RC=0
2451         [[ $RC1 -ne 0 || $RC2 -eq 0 ]] && RC=1
2452         return $RC
2453 }
2454
2455 test_50a() {
2456         setup
2457         lctl set_param llite.$FSNAME-*.lazystatfs=1
2458         touch $DIR/$tfile
2459
2460         lazystatfs $MOUNT || error "lazystatfs failed but no down servers"
2461
2462         cleanup || return $?
2463 }
2464 run_test 50a "lazystatfs all servers available =========================="
2465
2466 test_50b() {
2467         setup
2468         lctl set_param llite.$FSNAME-*.lazystatfs=1
2469         touch $DIR/$tfile
2470
2471         # Wait for client to detect down OST
2472         stop_ost || error "Unable to stop OST1"
2473         wait_osc_import_state mds ost DISCONN
2474
2475         lazystatfs $MOUNT || error "lazystatfs should don't have returned EIO"
2476
2477         umount_client $MOUNT || error "Unable to unmount client"
2478         stop_mds || error "Unable to stop MDS"
2479 }
2480 run_test 50b "lazystatfs all servers down =========================="
2481
2482 test_50c() {
2483         start_mds || error "Unable to start MDS"
2484         start_ost || error "Unable to start OST1"
2485         start_ost2 || error "Unable to start OST2"
2486         mount_client $MOUNT || error "Unable to mount client"
2487         lctl set_param llite.$FSNAME-*.lazystatfs=1
2488         touch $DIR/$tfile
2489
2490         # Wait for client to detect down OST
2491         stop_ost || error "Unable to stop OST1"
2492         wait_osc_import_state mds ost DISCONN
2493         lazystatfs $MOUNT || error "lazystatfs failed with one down server"
2494
2495         umount_client $MOUNT || error "Unable to unmount client"
2496         stop_ost2 || error "Unable to stop OST2"
2497         stop_mds || error "Unable to stop MDS"
2498         #writeconf to remove all ost2 traces for subsequent tests
2499         writeconf
2500 }
2501 run_test 50c "lazystatfs one server down =========================="
2502
2503 test_50d() {
2504         start_mds || error "Unable to start MDS"
2505         start_ost || error "Unable to start OST1"
2506         start_ost2 || error "Unable to start OST2"
2507         mount_client $MOUNT || error "Unable to mount client"
2508         lctl set_param llite.$FSNAME-*.lazystatfs=1
2509         touch $DIR/$tfile
2510
2511         # Issue the statfs during the window where the client still
2512         # belives the OST to be available but it is in fact down.
2513         # No failure just a statfs which hangs for a timeout interval.
2514         stop_ost || error "Unable to stop OST1"
2515         lazystatfs $MOUNT || error "lazystatfs failed with one down server"
2516
2517         umount_client $MOUNT || error "Unable to unmount client"
2518         stop_ost2 || error "Unable to stop OST2"
2519         stop_mds || error "Unable to stop MDS"
2520         #writeconf to remove all ost2 traces for subsequent tests
2521         writeconf
2522 }
2523 run_test 50d "lazystatfs client/server conn race =========================="
2524
2525 test_50e() {
2526         local RC1
2527         local pid
2528
2529         reformat_and_config
2530         start_mds || return 1
2531         #first client should see only one ost
2532         start_ost || return 2
2533         wait_osc_import_state mds ost FULL
2534
2535         # Wait for client to detect down OST
2536         stop_ost || error "Unable to stop OST1"
2537         wait_osc_import_state mds ost DISCONN
2538
2539         mount_client $MOUNT || error "Unable to mount client"
2540         lctl set_param llite.$FSNAME-*.lazystatfs=0
2541
2542         multiop_bg_pause $MOUNT _f
2543         RC1=$?
2544         pid=$!
2545
2546         if [ $RC1 -ne 0 ]; then
2547                 log "multiop failed $RC1"
2548         else
2549             kill -USR1 $pid
2550             sleep $(( $TIMEOUT+1 ))
2551             kill -0 $pid
2552             [ $? -ne 0 ] && error "process isn't sleep"
2553             start_ost || error "Unable to start OST1"
2554             wait $pid || error "statfs failed"
2555         fi
2556
2557         umount_client $MOUNT || error "Unable to unmount client"
2558         stop_ost || error "Unable to stop OST1"
2559         stop_mds || error "Unable to stop MDS"
2560 }
2561 run_test 50e "normal statfs all servers down =========================="
2562
2563 test_50f() {
2564         local RC1
2565         local pid
2566         CONN_PROC="osc.$FSNAME-OST0001-osc-[M]*.ost_server_uuid"
2567
2568         start_mds || error "Unable to start mds"
2569         #first client should see only one ost
2570         start_ost || error "Unable to start OST1"
2571         wait_osc_import_state mds ost FULL
2572
2573         start_ost2 || error "Unable to start OST2"
2574         wait_osc_import_state mds ost2 FULL
2575
2576         # Wait for client to detect down OST
2577         stop_ost2 || error "Unable to stop OST2"
2578
2579         wait_osc_import_state mds ost2 DISCONN
2580         mount_client $MOUNT || error "Unable to mount client"
2581         lctl set_param llite.$FSNAME-*.lazystatfs=0
2582
2583         multiop_bg_pause $MOUNT _f
2584         RC1=$?
2585         pid=$!
2586
2587         if [ $RC1 -ne 0 ]; then
2588                 log "lazystatfs multiop failed $RC1"
2589         else
2590             kill -USR1 $pid
2591             sleep $(( $TIMEOUT+1 ))
2592             kill -0 $pid
2593             [ $? -ne 0 ] && error "process isn't sleep"
2594             start_ost2 || error "Unable to start OST2"
2595             wait $pid || error "statfs failed"
2596             stop_ost2 || error "Unable to stop OST2"
2597         fi
2598
2599         umount_client $MOUNT || error "Unable to unmount client"
2600         stop_ost || error "Unable to stop OST1"
2601         stop_mds || error "Unable to stop MDS"
2602         #writeconf to remove all ost2 traces for subsequent tests
2603         writeconf
2604 }
2605 run_test 50f "normal statfs one server in down =========================="
2606
2607 test_50g() {
2608         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2, skipping" && return
2609         setup
2610         start_ost2 || error "Unable to start OST2"
2611         wait_osc_import_state mds ost2 FULL
2612         wait_osc_import_state client ost2 FULL
2613
2614         local PARAM="${FSNAME}-OST0001.osc.active"
2615
2616         $LFS setstripe -c -1 $DIR/$tfile || error "Unable to lfs setstripe"
2617         do_facet mgs $LCTL conf_param $PARAM=0 || error "Unable to deactivate OST"
2618
2619         umount_client $MOUNT || error "Unable to unmount client"
2620         mount_client $MOUNT || error "Unable to mount client"
2621         # This df should not cause a panic
2622         df -k $MOUNT
2623
2624         do_facet mgs $LCTL conf_param $PARAM=1 || error "Unable to activate OST"
2625         rm -f $DIR/$tfile
2626         umount_client $MOUNT || error "Unable to unmount client"
2627         stop_ost2 || error "Unable to stop OST2"
2628         stop_ost || error "Unable to stop OST1"
2629         stop_mds || error "Unable to stop MDS"
2630         #writeconf to remove all ost2 traces for subsequent tests
2631         writeconf
2632 }
2633 run_test 50g "deactivated OST should not cause panic====================="
2634
2635 test_51() {
2636         local LOCAL_TIMEOUT=20
2637
2638         reformat
2639         setup_noconfig
2640         check_mount || return 1
2641
2642         mkdir $MOUNT/d1
2643         $LFS setstripe -c -1 $MOUNT/d1
2644         #define OBD_FAIL_MDS_REINT_DELAY         0x142
2645         do_facet $SINGLEMDS "lctl set_param fail_loc=0x142"
2646         touch $MOUNT/d1/f1 &
2647         local pid=$!
2648         sleep 2
2649         start_ost2 || return 2
2650         wait $pid
2651         stop_ost2 || return 3
2652         cleanup
2653         #writeconf to remove all ost2 traces for subsequent tests
2654         writeconf
2655 }
2656 run_test 51 "Verify that mdt_reint handles RMF_MDT_MD correctly when an OST is added"
2657
2658 copy_files_xattrs()
2659 {
2660         local node=$1
2661         local dest=$2
2662         local xattrs=$3
2663         shift 3
2664
2665         do_node $node mkdir -p $dest
2666         [ $? -eq 0 ] || { error "Unable to create directory"; return 1; }
2667
2668         do_node $node  'tar cf - '$@' | tar xf - -C '$dest';
2669                         [ \"\${PIPESTATUS[*]}\" = \"0 0\" ] || exit 1'
2670         [ $? -eq 0 ] || { error "Unable to tar files"; return 2; }
2671
2672         do_node $node 'getfattr -d -m "[a-z]*\\." '$@' > '$xattrs
2673         [ $? -eq 0 ] || { error "Unable to read xattrs"; return 3; }
2674 }
2675
2676 diff_files_xattrs()
2677 {
2678         local node=$1
2679         local backup=$2
2680         local xattrs=$3
2681         shift 3
2682
2683         local backup2=${TMP}/backup2
2684
2685         do_node $node mkdir -p $backup2
2686         [ $? -eq 0 ] || { error "Unable to create directory"; return 1; }
2687
2688         do_node $node  'tar cf - '$@' | tar xf - -C '$backup2';
2689                         [ \"\${PIPESTATUS[*]}\" = \"0 0\" ] || exit 1'
2690         [ $? -eq 0 ] || { error "Unable to tar files to diff"; return 2; }
2691
2692         do_node $node "diff -rq $backup $backup2"
2693         [ $? -eq 0 ] || { error "contents differ"; return 3; }
2694
2695         local xattrs2=${TMP}/xattrs2
2696         do_node $node 'getfattr -d -m "[a-z]*\\." '$@' > '$xattrs2
2697         [ $? -eq 0 ] || { error "Unable to read xattrs to diff"; return 4; }
2698
2699         do_node $node "diff $xattrs $xattrs2"
2700         [ $? -eq 0 ] || { error "xattrs differ"; return 5; }
2701
2702         do_node $node "rm -rf $backup2 $xattrs2"
2703         [ $? -eq 0 ] || { error "Unable to delete temporary files"; return 6; }
2704 }
2705
2706 test_52() {
2707         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
2708                 skip "Only applicable to ldiskfs-based MDTs"
2709                 return
2710         fi
2711
2712         start_mds
2713         [ $? -eq 0 ] || { error "Unable to start MDS"; return 1; }
2714         start_ost
2715         [ $? -eq 0 ] || { error "Unable to start OST1"; return 2; }
2716         mount_client $MOUNT
2717         [ $? -eq 0 ] || { error "Unable to mount client"; return 3; }
2718
2719         local nrfiles=8
2720         local ost1mnt=$(facet_mntpt ost1)
2721         local ost1node=$(facet_active_host ost1)
2722         local ost1tmp=$TMP/conf52
2723         local loop
2724
2725         mkdir -p $DIR/$tdir
2726         [ $? -eq 0 ] || { error "Unable to create tdir"; return 4; }
2727         touch $TMP/modified_first
2728         [ $? -eq 0 ] || { error "Unable to create temporary file"; return 5; }
2729         local mtime=$(stat -c %Y $TMP/modified_first)
2730         do_node $ost1node "mkdir -p $ost1tmp && touch -m -d @$mtime $ost1tmp/modified_first"
2731
2732         [ $? -eq 0 ] || { error "Unable to create temporary file"; return 6; }
2733         sleep 1
2734
2735         $LFS setstripe -c -1 -S 1M $DIR/$tdir
2736         [ $? -eq 0 ] || { error "lfs setstripe failed"; return 7; }
2737
2738         for (( i=0; i < nrfiles; i++ )); do
2739                 multiop $DIR/$tdir/$tfile-$i Ow1048576w1048576w524288c
2740                 [ $? -eq 0 ] || { error "multiop failed"; return 8; }
2741                 echo -n .
2742         done
2743         echo
2744
2745         # backup files
2746         echo backup files to $TMP/files
2747         local files=$(find $DIR/$tdir -type f -newer $TMP/modified_first)
2748         copy_files_xattrs `hostname` $TMP/files $TMP/file_xattrs $files
2749         [ $? -eq 0 ] || { error "Unable to copy files"; return 9; }
2750
2751         umount_client $MOUNT
2752         [ $? -eq 0 ] || { error "Unable to umount client"; return 10; }
2753         stop_ost
2754         [ $? -eq 0 ] || { error "Unable to stop ost1"; return 11; }
2755
2756         echo mount ost1 as ldiskfs
2757         do_node $ost1node mkdir -p $ost1mnt
2758         [ $? -eq 0 ] || { error "Unable to create $ost1mnt"; return 23; }
2759         if ! do_node $ost1node test -b $ost1_dev; then
2760                 loop="-o loop"
2761         fi
2762         do_node $ost1node mount -t $(facet_fstype ost1) $loop $ost1_dev \
2763                 $ost1mnt
2764         [ $? -eq 0 ] || { error "Unable to mount ost1 as ldiskfs"; return 12; }
2765
2766         # backup objects
2767         echo backup objects to $ost1tmp/objects
2768         local objects=$(do_node $ost1node 'find '$ost1mnt'/O/0 -type f -size +0'\
2769                         '-newer '$ost1tmp'/modified_first -regex ".*\/[0-9]+"')
2770         copy_files_xattrs $ost1node $ost1tmp/objects $ost1tmp/object_xattrs $objects
2771         [ $? -eq 0 ] || { error "Unable to copy objects"; return 13; }
2772
2773         # move objects to lost+found
2774         do_node $ost1node 'mv '$objects' '${ost1mnt}'/lost+found'
2775         [ $? -eq 0 ] || { error "Unable to move objects"; return 14; }
2776
2777         # recover objects
2778         do_node $ost1node "ll_recover_lost_found_objs -d $ost1mnt/lost+found"
2779         [ $? -eq 0 ] || { error "ll_recover_lost_found_objs failed"; return 15; }
2780
2781         # compare restored objects against saved ones
2782         diff_files_xattrs $ost1node $ost1tmp/objects $ost1tmp/object_xattrs $objects
2783         [ $? -eq 0 ] || { error "Unable to diff objects"; return 16; }
2784
2785         do_node $ost1node "umount $ost1mnt"
2786         [ $? -eq 0 ] || { error "Unable to umount ost1 as ldiskfs"; return 17; }
2787
2788         start_ost
2789         [ $? -eq 0 ] || { error "Unable to start ost1"; return 18; }
2790         mount_client $MOUNT
2791         [ $? -eq 0 ] || { error "Unable to mount client"; return 19; }
2792
2793         # compare files
2794         diff_files_xattrs `hostname` $TMP/files $TMP/file_xattrs $files
2795         [ $? -eq 0 ] || { error "Unable to diff files"; return 20; }
2796
2797         rm -rf $TMP/files $TMP/file_xattrs
2798         [ $? -eq 0 ] || { error "Unable to delete temporary files"; return 21; }
2799         do_node $ost1node "rm -rf $ost1tmp"
2800         [ $? -eq 0 ] || { error "Unable to delete temporary files"; return 22; }
2801         cleanup
2802 }
2803 run_test 52 "check recovering objects from lost+found"
2804
2805 # Checks threads_min/max/started for some service
2806 #
2807 # Arguments: service name (OST or MDT), facet (e.g., ost1, $SINGLEMDS), and a
2808 # parameter pattern prefix like 'ost.*.ost'.
2809 thread_sanity() {
2810         local modname=$1
2811         local facet=$2
2812         local parampat=$3
2813         local opts=$4
2814         local basethr=$5
2815         local tmin
2816         local tmin2
2817         local tmax
2818         local tmax2
2819         local tstarted
2820         local paramp
2821         local msg="Insane $modname thread counts"
2822         local ncpts=$(check_cpt_number $facet)
2823         local nthrs
2824         shift 4
2825
2826         setup
2827         check_mount || return 41
2828
2829         # We need to expand $parampat, but it may match multiple parameters, so
2830         # we'll pick the first one
2831         if ! paramp=$(do_facet $facet "lctl get_param -N ${parampat}.threads_min"|head -1); then
2832                 error "Couldn't expand ${parampat}.threads_min parameter name"
2833                 return 22
2834         fi
2835
2836         # Remove the .threads_min part
2837         paramp=${paramp%.threads_min}
2838
2839         # Check for sanity in defaults
2840         tmin=$(do_facet $facet "lctl get_param -n ${paramp}.threads_min" || echo 0)
2841         tmax=$(do_facet $facet "lctl get_param -n ${paramp}.threads_max" || echo 0)
2842         tstarted=$(do_facet $facet "lctl get_param -n ${paramp}.threads_started" || echo 0)
2843         lassert 23 "$msg (PDSH problems?)" '(($tstarted && $tmin && $tmax))' || return $?
2844         lassert 24 "$msg" '(($tstarted >= $tmin && $tstarted <= $tmax ))' || return $?
2845         nthrs=$(expr $tmax - $tmin)
2846         if [ $nthrs -lt $ncpts ]; then
2847                 nthrs=0
2848         else
2849                 nthrs=$ncpts
2850         fi
2851
2852         [ $tmin -eq $tmax -a $tmin -eq $tstarted ] &&
2853                 skip_env "module parameter forced $facet thread count" &&
2854                 tmin=3 && tmax=$((3 * tmax))
2855
2856         # Check that we can change min/max
2857         do_facet $facet "lctl set_param ${paramp}.threads_min=$((tmin + nthrs))"
2858         do_facet $facet "lctl set_param ${paramp}.threads_max=$((tmax - nthrs))"
2859         tmin2=$(do_facet $facet "lctl get_param -n ${paramp}.threads_min" || echo 0)
2860         tmax2=$(do_facet $facet "lctl get_param -n ${paramp}.threads_max" || echo 0)
2861         lassert 25 "$msg" '(($tmin2 == ($tmin + $nthrs) && $tmax2 == ($tmax - $nthrs)))' || return $?
2862
2863         # Check that we can set min/max to the same value
2864         tmin=$(do_facet $facet "lctl get_param -n ${paramp}.threads_min" || echo 0)
2865         do_facet $facet "lctl set_param ${paramp}.threads_max=$tmin"
2866         tmin2=$(do_facet $facet "lctl get_param -n ${paramp}.threads_min" || echo 0)
2867         tmax2=$(do_facet $facet "lctl get_param -n ${paramp}.threads_max" || echo 0)
2868         lassert 26 "$msg" '(($tmin2 == $tmin && $tmax2 == $tmin))' || return $?
2869
2870         # Check that we can't set max < min
2871         do_facet $facet "lctl set_param ${paramp}.threads_max=$((tmin - 1))"
2872         tmin2=$(do_facet $facet "lctl get_param -n ${paramp}.threads_min" || echo 0)
2873         tmax2=$(do_facet $facet "lctl get_param -n ${paramp}.threads_max" || echo 0)
2874         lassert 27 "$msg" '(($tmin2 <= $tmax2))' || return $?
2875
2876         # We need to ensure that we get the module options desired; to do this
2877         # we set LOAD_MODULES_REMOTE=true and we call setmodopts below.
2878         LOAD_MODULES_REMOTE=true
2879         cleanup
2880         local oldvalue
2881         local newvalue="${opts}=$(expr $basethr \* $ncpts)"
2882         setmodopts -a $modname "$newvalue" oldvalue
2883
2884         load_modules
2885         setup
2886         check_mount || return 41
2887
2888         # Restore previous setting of MODOPTS_*
2889         setmodopts $modname "$oldvalue"
2890
2891         # Check that $opts took
2892         tmin=$(do_facet $facet "lctl get_param -n ${paramp}.threads_min")
2893         tmax=$(do_facet $facet "lctl get_param -n ${paramp}.threads_max")
2894         tstarted=$(do_facet $facet "lctl get_param -n ${paramp}.threads_started")
2895         lassert 28 "$msg" '(($tstarted == $tmin && $tstarted == $tmax ))' || return $?
2896         cleanup
2897
2898         load_modules
2899         setup
2900         cleanup
2901 }
2902
2903 test_53a() {
2904         thread_sanity OST ost1 'ost.*.ost' 'oss_num_threads' '16'
2905 }
2906 run_test 53a "check OSS thread count params"
2907
2908 test_53b() {
2909         thread_sanity MDT $SINGLEMDS 'mdt.*.*.' 'mdt_num_threads' '16'
2910 }
2911 run_test 53b "check MDT thread count params"
2912
2913 test_54a() {
2914         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
2915                 skip "Only applicable to ldiskfs-based MDTs"
2916                 return
2917         fi
2918
2919     do_rpc_nodes $(facet_host ost1) run_llverdev $(ostdevname 1) -p
2920     [ $? -eq 0 ] || error "llverdev failed!"
2921     reformat_and_config
2922 }
2923 run_test 54a "test llverdev and partial verify of device"
2924
2925 test_54b() {
2926         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
2927                 skip "Only applicable to ldiskfs-based MDTs"
2928                 return
2929         fi
2930
2931     setup
2932     run_llverfs $MOUNT -p
2933     [ $? -eq 0 ] || error "llverfs failed!"
2934     cleanup
2935 }
2936 run_test 54b "test llverfs and partial verify of filesystem"
2937
2938 lov_objid_size()
2939 {
2940         local max_ost_index=$1
2941         echo -n $(((max_ost_index + 1) * 8))
2942 }
2943
2944 test_55() {
2945         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
2946                 skip "Only applicable to ldiskfs-based MDTs"
2947                 return
2948         fi
2949
2950         local mdsdev=$(mdsdevname 1)
2951         local mdsvdev=$(mdsvdevname 1)
2952
2953         for i in 1023 2048
2954         do
2955                 add mds1 $(mkfs_opts mds1) --reformat $mdsdev $mdsvdev ||
2956                         exit 10
2957                 add ost1 $(mkfs_opts ost1) --index=$i --reformat \
2958                         $(ostdevname 1) $(ostvdevname 1)
2959                 setup_noconfig
2960                 stopall
2961                 setup_noconfig
2962                 sync
2963
2964                 echo checking size of lov_objid for ost index $i
2965                 LOV_OBJID_SIZE=$(do_facet mds1 "$DEBUGFS -R 'stat lov_objid' $mdsdev 2>/dev/null" | grep ^User | awk '{print $6}')
2966                 if [ "$LOV_OBJID_SIZE" != $(lov_objid_size $i) ]; then
2967                         error "lov_objid size has to be $(lov_objid_size $i), not $LOV_OBJID_SIZE"
2968                 else
2969                         echo ok, lov_objid size is correct: $LOV_OBJID_SIZE
2970                 fi
2971                 stopall
2972         done
2973
2974         reformat
2975 }
2976 run_test 55 "check lov_objid size"
2977
2978 test_56() {
2979         local mds_journal_size_orig=$MDSJOURNALSIZE
2980
2981         MDSJOURNALSIZE=16
2982         add mds1 $(mkfs_opts mds1) --reformat $(mdsdevname 1) $(mdsvdevname 1)
2983         add ost1 $(mkfs_opts ost1) --index=1000 --reformat \
2984                 $(ostdevname 1) $(ostvdevname 1)
2985         add ost2 $(mkfs_opts ost2) --index=10000 --reformat \
2986                 $(ostdevname 2) $(ostvdevname 2)
2987
2988         start_mgsmds
2989         start_ost
2990         start_ost2 || error "Unable to start second ost"
2991         mount_client $MOUNT || error "Unable to mount client"
2992         echo ok
2993         $LFS osts
2994         stopall
2995         MDSJOURNALSIZE=$mds_journal_size_orig
2996         reformat
2997 }
2998 run_test 56 "check big indexes"
2999
3000 test_57a() { # bug 22656
3001         local NID=$(do_facet ost1 "$LCTL get_param nis" | tail -1 | awk '{print $1}')
3002         writeconf
3003         do_facet ost1 "$TUNEFS --failnode=$NID `ostdevname 1`" || error "tunefs failed"
3004         start_mgsmds
3005         start_ost && error "OST registration from failnode should fail"
3006         reformat
3007 }
3008 run_test 57a "initial registration from failnode should fail (should return errs)"
3009
3010 test_57b() {
3011         local NID=$(do_facet ost1 "$LCTL get_param nis" | tail -1 | awk '{print $1}')
3012         writeconf
3013         do_facet ost1 "$TUNEFS --servicenode=$NID `ostdevname 1`" || error "tunefs failed"
3014         start_mgsmds
3015         start_ost || error "OST registration from servicenode should not fail"
3016         reformat
3017 }
3018 run_test 57b "initial registration from servicenode should not fail"
3019
3020 count_osts() {
3021         do_facet mgs $LCTL get_param mgs.MGS.live.$FSNAME | grep OST | wc -l
3022 }
3023
3024 test_58() { # bug 22658
3025         if [ $(facet_fstype mds) != ldiskfs ]; then
3026                 skip "Only applicable to ldiskfs-based MDTs"
3027                 return
3028         fi
3029         setup_noconfig
3030         mkdir -p $DIR/$tdir
3031         createmany -o $DIR/$tdir/$tfile-%d 100
3032         # make sure that OSTs do not cancel llog cookies before we unmount the MDS
3033 #define OBD_FAIL_OBD_LOG_CANCEL_NET      0x601
3034         do_facet mds "lctl set_param fail_loc=0x601"
3035         unlinkmany $DIR/$tdir/$tfile-%d 100
3036         stop mds
3037         local MNTDIR=$(facet_mntpt mds)
3038         # remove all files from the OBJECTS dir
3039         do_facet mds "mount -t ldiskfs $MDSDEV $MNTDIR"
3040         do_facet mds "find $MNTDIR/OBJECTS -type f -delete"
3041         do_facet mds "umount $MNTDIR"
3042         # restart MDS with missing llog files
3043         start_mds
3044         do_facet mds "lctl set_param fail_loc=0"
3045         reformat
3046 }
3047 run_test 58 "missing llog files must not prevent MDT from mounting"
3048
3049 test_59() {
3050         start_mgsmds >> /dev/null
3051         local C1=$(count_osts)
3052         if [ $C1 -eq 0 ]; then
3053                 start_ost >> /dev/null
3054                 C1=$(count_osts)
3055         fi
3056         stopall
3057         echo "original ost count: $C1 (expect > 0)"
3058         [ $C1 -gt 0 ] || error "No OSTs in $FSNAME log"
3059         start_mgsmds -o writeconf >> /dev/null || error "MDT start failed"
3060         local C2=$(count_osts)
3061         echo "after mdt writeconf count: $C2 (expect 0)"
3062         [ $C2 -gt 0 ] && error "MDT writeconf should erase OST logs"
3063         echo "OST start without writeconf should fail:"
3064         start_ost >> /dev/null && error "OST start without writeconf didn't fail"
3065         echo "OST start with writeconf should succeed:"
3066         start_ost -o writeconf >> /dev/null || error "OST1 start failed"
3067         local C3=$(count_osts)
3068         echo "after ost writeconf count: $C3 (expect 1)"
3069         [ $C3 -eq 1 ] || error "new OST writeconf should add:"
3070         start_ost2 -o writeconf >> /dev/null || error "OST2 start failed"
3071         local C4=$(count_osts)
3072         echo "after ost2 writeconf count: $C4 (expect 2)"
3073         [ $C4 -eq 2 ] || error "OST2 writeconf should add log"
3074         stop_ost2 >> /dev/null
3075         cleanup_nocli >> /dev/null
3076         #writeconf to remove all ost2 traces for subsequent tests
3077         writeconf
3078 }
3079 run_test 59 "writeconf mount option"
3080
3081 test_60() { # LU-471
3082         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
3083                 skip "Only applicable to ldiskfs-based MDTs"
3084                 return
3085         fi
3086
3087         add mds1 $(mkfs_opts mds1) \
3088                 --mkfsoptions='\" -E stride=64 -O ^uninit_bg\"' --reformat \
3089                 $(mdsdevname 1) $(mdsvdevname 1) || exit 10
3090
3091         dump=$(do_facet $SINGLEMDS dumpe2fs $(mdsdevname 1))
3092         rc=${PIPESTATUS[0]}
3093         [ $rc -eq 0 ] || error "dumpe2fs $(mdsdevname 1) failed"
3094
3095         # MDT default has dirdata feature
3096         echo $dump | grep dirdata > /dev/null || error "dirdata is not set"
3097         # we disable uninit_bg feature
3098         echo $dump | grep uninit_bg > /dev/null && error "uninit_bg is set"
3099         # we set stride extended options
3100         echo $dump | grep stride > /dev/null || error "stride is not set"
3101         reformat
3102 }
3103 run_test 60 "check mkfs.lustre --mkfsoptions -E -O options setting"
3104
3105 test_61() { # LU-80
3106         local reformat=false
3107
3108         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.1.53) ] ||
3109                 { skip "Need MDS version at least 2.1.53"; return 0; }
3110
3111         if [ $(facet_fstype $SINGLEMDS) == ldiskfs ] &&
3112            ! large_xattr_enabled; then
3113                 reformat=true
3114                 local mds_dev=$(mdsdevname ${SINGLEMDS//mds/})
3115                 LDISKFS_MKFS_OPTS+=" -O large_xattr"
3116                 add $SINGLEMDS $(mkfs_opts $SINGLEMDS) --reformat $mds_dev ||
3117                         error "reformatting $mds_dev failed"
3118         fi
3119
3120     setup_noconfig || error "setting up the filesystem failed"
3121     client_up || error "starting client failed"
3122
3123     local file=$DIR/$tfile
3124     touch $file
3125
3126     local large_value="$(generate_string $(max_xattr_size))"
3127     local small_value="bar"
3128
3129     local name="trusted.big"
3130     log "save large xattr $name on $file"
3131     setfattr -n $name -v $large_value $file ||
3132         error "saving $name on $file failed"
3133
3134     local new_value=$(get_xattr_value $name $file)
3135     [[ "$new_value" != "$large_value" ]] &&
3136         error "$name different after saving"
3137
3138     log "shrink value of $name on $file"
3139     setfattr -n $name -v $small_value $file ||
3140         error "shrinking value of $name on $file failed"
3141
3142     new_value=$(get_xattr_value $name $file)
3143     [[ "$new_value" != "$small_value" ]] &&
3144         error "$name different after shrinking"
3145
3146     log "grow value of $name on $file"
3147     setfattr -n $name -v $large_value $file ||
3148         error "growing value of $name on $file failed"
3149
3150     new_value=$(get_xattr_value $name $file)
3151     [[ "$new_value" != "$large_value" ]] &&
3152         error "$name different after growing"
3153
3154     log "check value of $name on $file after remounting MDS"
3155     fail $SINGLEMDS
3156     new_value=$(get_xattr_value $name $file)
3157     [[ "$new_value" != "$large_value" ]] &&
3158         error "$name different after remounting MDS"
3159
3160     log "remove large xattr $name from $file"
3161     setfattr -x $name $file || error "removing $name from $file failed"
3162
3163     rm -f $file
3164     stopall
3165         if $reformat; then
3166                 LDISKFS_MKFS_OPTS=${LDISKFS_MKFS_OPTS% -O large_xattr}
3167                 reformat
3168         fi
3169 }
3170 run_test 61 "large xattr"
3171
3172 test_62() {
3173         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
3174                 skip "Only applicable to ldiskfs-based MDTs"
3175                 return
3176         fi
3177
3178         # MRP-118
3179         local mdsdev=$(mdsdevname 1)
3180         local ostdev=$(ostdevname 1)
3181
3182         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
3183                 { skip "Need MDS version at least 2.2.51"; return 0; }
3184
3185         echo "disable journal for mds"
3186         do_facet mds tune2fs -O ^has_journal $mdsdev || error "tune2fs failed"
3187         start_mds && error "MDT start should fail"
3188         echo "disable journal for ost"
3189         do_facet ost1 tune2fs -O ^has_journal $ostdev || error "tune2fs failed"
3190         start_ost && error "OST start should fail"
3191         cleanup || return $?
3192         reformat_and_config
3193 }
3194 run_test 62 "start with disabled journal"
3195
3196 test_63() {
3197         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
3198                 skip "Only applicable to ldiskfs-based MDTs"
3199                 return
3200         fi
3201
3202         local inode_slab=$(do_facet $SINGLEMDS \
3203                 "awk '/ldiskfs_inode_cache/ { print \\\$5 }' /proc/slabinfo")
3204         if [ -z "$inode_slab" ]; then
3205                 skip "ldiskfs module has not been loaded"
3206                 return
3207         fi
3208
3209         echo "$inode_slab ldisk inodes per page"
3210         [ "$inode_slab" -ge "3" ] ||
3211                 error "ldisk inode size is too big, $inode_slab objs per page"
3212         return
3213 }
3214 run_test 63 "Verify each page can at least hold 3 ldisk inodes"
3215
3216 test_64() {
3217         start_mds
3218         start_ost
3219         start_ost2 || error "Unable to start second ost"
3220         mount_client $MOUNT || error "Unable to mount client"
3221         stop_ost2 || error "Unable to stop second ost"
3222         echo "$LFS df"
3223         $LFS df --lazy || error "lfs df failed"
3224         cleanup || return $?
3225 }
3226 run_test 64 "check lfs df --lazy "
3227
3228 if ! combined_mgs_mds ; then
3229         stop mgs
3230 fi
3231
3232 cleanup_gss
3233
3234 complete $(basename $0) $SECONDS
3235 exit_status