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