Whamcloud - gitweb
092ffbdf27b0135a2b4cb48674abe5644e3c6b13
[fs/lustre-release.git] / lustre / tests / conf-sanity.sh
1 #!/bin/bash
2 # -*- mode: Bash; tab-width: 4; indent-tabs-mode: t; -*-
3 # vim:autoindent:shiftwidth=4:tabstop=4:
4
5 # FIXME - there is no reason to use all of these different
6 #   return codes, espcially when most of them are mapped to something
7 #   else anyway.  The combination of test number and return code
8 #   figure out what failed.
9
10 set -e
11
12 ONLY=${ONLY:-"$*"}
13
14 # bug number for skipped test:
15 #               15977
16 ALWAYS_EXCEPT="$CONF_SANITY_EXCEPT"
17 # UPDATE THE COMMENT ABOVE WITH BUG NUMBERS WHEN CHANGING ALWAYS_EXCEPT!
18
19 SRCDIR=`dirname $0`
20 PATH=$PWD/$SRCDIR:$SRCDIR:$SRCDIR/../utils:$PATH
21
22 PTLDEBUG=${PTLDEBUG:--1}
23 SAVE_PWD=$PWD
24 LUSTRE=${LUSTRE:-`dirname $0`/..}
25 RLUSTRE=${RLUSTRE:-$LUSTRE}
26
27 . $LUSTRE/tests/test-framework.sh
28 init_test_env $@
29
30 # use small MDS + OST size to speed formatting time
31 # do not use too small MDSSIZE/OSTSIZE, which affect the default jouranl size
32 MDSSIZE=200000
33 OSTSIZE=200000
34 . ${CONFIG:=$LUSTRE/tests/cfg/$NAME.sh}
35
36 # STORED_MDSSIZE is used in test_18
37 if [ -n "$MDSSIZE" ]; then
38     STORED_MDSSIZE=$MDSSIZE
39 fi
40
41 init_logging
42
43 #
44 require_dsh_mds || exit 0
45 require_dsh_ost || exit 0
46 #
47 [ "$SLOW" = "no" ] && EXCEPT_SLOW="30a 31 45"
48
49
50 assert_DIR
51
52 reformat() {
53         formatall
54 }
55
56 writeconf1() {
57         local facet=$1
58         local dev=$2
59
60         stop ${facet} -f
61         rm -f ${facet}active
62         # who knows if/where $TUNEFS is installed?  Better reformat if it fails...
63         do_facet ${facet} "$TUNEFS --writeconf $dev" ||
64                 { echo "tunefs failed, reformatting instead" && reformat_and_config && return 1; }
65         return 0
66 }
67
68 writeconf() {
69         # if writeconf failed, we reformatted
70         writeconf1 mds $MDSDEV || return 0
71         writeconf1 ost1 `ostdevname 1` || return 0
72         writeconf1 ost2 `ostdevname 2` || return 0
73 }
74
75 gen_config() {
76         # The MGS must be started before the OSTs for a new fs, so start
77         # and stop to generate the startup logs.
78         start_mds
79         start_ost
80         wait_osc_import_state mds ost FULL
81         stop_ost
82         stop_mds
83 }
84
85 reformat_and_config() {
86         reformat
87         if ! combined_mgs_mds ; then
88                 start_mgs
89         fi
90         gen_config
91 }
92
93 start_mgs () {
94         echo "start mgs"
95         start mgs $MGSDEV $mgs_MOUNT_OPTS
96 }
97
98 start_mds() {
99         local facet=$SINGLEMDS
100         # we can not use MDSDEV1 here because SINGLEMDS could be set not to mds1 only
101         local num=$(echo $facet | tr -d "mds")
102         local dev=$(mdsdevname $num)
103         echo "start mds service on `facet_active_host $facet`"
104         start $facet ${dev} $MDS_MOUNT_OPTS $@ || return 94
105 }
106
107 start_mgsmds() {
108         if ! combined_mgs_mds ; then
109                 start_mgs
110         fi
111         start_mds $@
112 }
113
114 stop_mds() {
115         echo "stop mds service on `facet_active_host $SINGLEMDS`"
116         # These tests all use non-failover stop
117         stop $SINGLEMDS -f  || return 97
118 }
119
120 start_ost() {
121         echo "start ost1 service on `facet_active_host ost1`"
122         start ost1 `ostdevname 1` $OST_MOUNT_OPTS $@ || return 95
123 }
124
125 stop_ost() {
126         echo "stop ost1 service on `facet_active_host ost1`"
127         # These tests all use non-failover stop
128         stop ost1 -f  || return 98
129 }
130
131 start_ost2() {
132         echo "start ost2 service on `facet_active_host ost2`"
133         start ost2 `ostdevname 2` $OST_MOUNT_OPTS $@ || return 92
134 }
135
136 stop_ost2() {
137         echo "stop ost2 service on `facet_active_host ost2`"
138         # These tests all use non-failover stop
139         stop ost2 -f  || return 93
140 }
141
142 mount_client() {
143         local MOUNTPATH=$1
144         echo "mount $FSNAME on ${MOUNTPATH}....."
145         zconf_mount `hostname` $MOUNTPATH  || return 96
146 }
147
148 remount_client() {
149         local SAVEMOUNTOPT=$MOUNTOPT
150         MOUNTOPT="remount,$1"
151         local MOUNTPATH=$2
152         echo "remount '$1' lustre on ${MOUNTPATH}....."
153         zconf_mount `hostname`  $MOUNTPATH  || return 96
154         MOUNTOPT=$SAVEMOUNTOPT
155 }
156
157 umount_client() {
158         local MOUNTPATH=$1
159         echo "umount lustre on ${MOUNTPATH}....."
160         zconf_umount `hostname` $MOUNTPATH || return 97
161 }
162
163 manual_umount_client(){
164         local rc
165         local FORCE=$1
166         echo "manual umount lustre on ${MOUNT}...."
167         do_facet client "umount -d ${FORCE} $MOUNT"
168         rc=$?
169         return $rc
170 }
171
172 setup() {
173         start_mds || error "MDT start failed"
174         start_ost || error "OST start failed"
175         mount_client $MOUNT || error "client start failed"
176 }
177
178 setup_noconfig() {
179         if ! combined_mgs_mds ; then
180                 start_mgs
181         fi
182
183         start_mds
184         start_ost
185         mount_client $MOUNT
186 }
187
188 cleanup_nocli() {
189         stop_ost || return 202
190         stop_mds || return 201
191         unload_modules || return 203
192 }
193
194 cleanup() {
195         umount_client $MOUNT || return 200
196         cleanup_nocli || return $?
197 }
198
199 check_mount() {
200         do_facet client "cp /etc/passwd $DIR/a" || return 71
201         do_facet client "rm $DIR/a" || return 72
202         # make sure lustre is actually mounted (touch will block,
203         # but grep won't, so do it after)
204         do_facet client "grep $MOUNT' ' /proc/mounts > /dev/null" || return 73
205         echo "setup single mount lustre success"
206 }
207
208 check_mount2() {
209         do_facet client "touch $DIR/a" || return 71
210         do_facet client "rm $DIR/a" || return 72
211         do_facet client "touch $DIR2/a" || return 73
212         do_facet client "rm $DIR2/a" || return 74
213         echo "setup double mount lustre success"
214 }
215
216 build_test_filter
217
218 if [ "$ONLY" == "setup" ]; then
219         setup
220         exit
221 fi
222
223 if [ "$ONLY" == "cleanup" ]; then
224         cleanup
225         exit
226 fi
227
228 init_gss
229
230 #create single point mountpoint
231
232 reformat_and_config
233
234 test_0() {
235         setup
236         check_mount || return 41
237         cleanup || return $?
238 }
239 run_test 0 "single mount setup"
240
241 test_1() {
242         start_mds || error "MDT start failed"
243         start_ost
244         echo "start ost second time..."
245         start_ost && error "2nd OST start should fail"
246         mount_client $MOUNT || error "client start failed"
247         check_mount || return 42
248         cleanup || return $?
249 }
250 run_test 1 "start up ost twice (should return errors)"
251
252 test_2() {
253         start_mds
254         echo "start mds second time.."
255         start_mds && error "2nd MDT start should fail"
256         start_ost
257         mount_client $MOUNT
258         check_mount || return 43
259         cleanup || return $?
260 }
261 run_test 2 "start up mds twice (should return err)"
262
263 test_3() {
264         setup
265         #mount.lustre returns an error if already in mtab
266         mount_client $MOUNT && error "2nd client mount should fail"
267         check_mount || return 44
268         cleanup || return $?
269 }
270 run_test 3 "mount client twice (should return err)"
271
272 test_4() {
273         setup
274         touch $DIR/$tfile || return 85
275         stop_ost -f
276         cleanup
277         eno=$?
278         # ok for ost to fail shutdown
279         if [ 202 -ne $eno ]; then
280                 return $eno;
281         fi
282         return 0
283 }
284 run_test 4 "force cleanup ost, then cleanup"
285
286 test_5a() {     # was test_5
287         setup
288         touch $DIR/$tfile || return 1
289         fuser -m -v $MOUNT && echo "$MOUNT is in use by user space process."
290
291         stop_mds -f || return 2
292
293         # cleanup may return an error from the failed
294         # disconnects; for now I'll consider this successful
295         # if all the modules have unloaded.
296         umount -d $MOUNT &
297         UMOUNT_PID=$!
298         sleep 6
299         echo "killing umount"
300         kill -TERM $UMOUNT_PID
301         echo "waiting for umount to finish"
302         wait $UMOUNT_PID
303         if grep " $MOUNT " /proc/mounts; then
304                 echo "test 5: /proc/mounts after failed umount"
305                 umount $MOUNT &
306                 UMOUNT_PID=$!
307                 sleep 2
308                 echo "killing umount"
309                 kill -TERM $UMOUNT_PID
310                 echo "waiting for umount to finish"
311                 wait $UMOUNT_PID
312                 grep " $MOUNT " /proc/mounts && echo "test 5: /proc/mounts after second umount" && return 11
313         fi
314
315         manual_umount_client
316         # stop_mds is a no-op here, and should not fail
317         cleanup_nocli || return $?
318         # df may have lingering entry
319         manual_umount_client
320         # mtab may have lingering entry
321         local WAIT=0
322         local MAX_WAIT=20
323         local sleep=1
324         while [ "$WAIT" -ne "$MAX_WAIT" ]; do
325                 sleep $sleep
326                 grep -q $MOUNT" " /etc/mtab || break
327                 echo "Waiting /etc/mtab updated ... "
328                 WAIT=$(( WAIT + sleep))
329         done
330         [ "$WAIT" -eq "$MAX_WAIT" ] && error "/etc/mtab is not updated in $WAIT secs"
331         echo "/etc/mtab updated in $WAIT secs"
332 }
333 run_test 5a "force cleanup mds, then cleanup"
334
335 test_5b() {
336         start_ost
337         [ -d $MOUNT ] || mkdir -p $MOUNT
338         grep " $MOUNT " /etc/mtab && echo "test 5b: mtab before mount" && return 10
339         mount_client $MOUNT && return 1
340         grep " $MOUNT " /etc/mtab && echo "test 5b: mtab after failed mount" && return 11
341         umount_client $MOUNT
342         # stop_mds is a no-op here, and should not fail
343         cleanup_nocli || return $?
344         return 0
345 }
346 run_test 5b "mds down, cleanup after failed mount (bug 2712) (should return errs)"
347
348 test_5c() {
349         start_mds
350         start_ost
351         [ -d $MOUNT ] || mkdir -p $MOUNT
352         grep " $MOUNT " /etc/mtab && echo "test 5c: mtab before mount" && return 10
353         local oldfs="${FSNAME}"
354         FSNAME="wrong.${FSNAME}"
355         mount_client $MOUNT || :
356         FSNAME=${oldfs}
357         grep " $MOUNT " /etc/mtab && echo "test 5c: mtab after failed mount" && return 11
358         umount_client $MOUNT
359         cleanup_nocli  || return $?
360 }
361 run_test 5c "cleanup after failed mount (bug 2712) (should return errs)"
362
363 test_5d() {
364         start_ost
365         start_mds
366         stop_ost -f
367         grep " $MOUNT " /etc/mtab && echo "test 5d: mtab before mount" && return 10
368         mount_client $MOUNT || return 1
369         cleanup  || return $?
370         grep " $MOUNT " /etc/mtab && echo "test 5d: mtab after unmount" && return 11
371         return 0
372 }
373 run_test 5d "mount with ost down"
374
375 test_5e() {
376         start_mds
377         start_ost
378
379 #define OBD_FAIL_PTLRPC_DELAY_SEND       0x506
380         do_facet client "lctl set_param fail_loc=0x80000506"
381         grep " $MOUNT " /etc/mtab && echo "test 5e: mtab before mount" && return 10
382         mount_client $MOUNT || echo "mount failed (not fatal)"
383         cleanup  || return $?
384         grep " $MOUNT " /etc/mtab && echo "test 5e: mtab after unmount" && return 11
385         return 0
386 }
387 run_test 5e "delayed connect, don't crash (bug 10268)"
388
389 test_6() {
390         setup
391         manual_umount_client
392         mount_client ${MOUNT} || return 87
393         touch $DIR/a || return 86
394         cleanup  || return $?
395 }
396 run_test 6 "manual umount, then mount again"
397
398 test_7() {
399         setup
400         manual_umount_client
401         cleanup_nocli || return $?
402 }
403 run_test 7 "manual umount, then cleanup"
404
405 test_8() {
406         setup
407         mount_client $MOUNT2
408         check_mount2 || return 45
409         umount_client $MOUNT2
410         cleanup  || return $?
411 }
412 run_test 8 "double mount setup"
413
414 test_9() {
415         start_ost
416
417         do_facet ost1 lctl set_param debug=\'inode trace\' || return 1
418         do_facet ost1 lctl set_param subsystem_debug=\'mds ost\' || return 1
419
420         CHECK_PTLDEBUG="`do_facet ost1 lctl get_param -n debug`"
421         if [ "$CHECK_PTLDEBUG" ] && { \
422            [ "$CHECK_PTLDEBUG" = "trace inode warning error emerg console" ] ||
423            [ "$CHECK_PTLDEBUG" = "trace inode" ]; }; then
424            echo "lnet.debug success"
425         else
426            echo "lnet.debug: want 'trace inode', have '$CHECK_PTLDEBUG'"
427            return 1
428         fi
429         CHECK_SUBSYS="`do_facet ost1 lctl get_param -n subsystem_debug`"
430         if [ "$CHECK_SUBSYS" ] && [ "$CHECK_SUBSYS" = "mds ost" ]; then
431            echo "lnet.subsystem_debug success"
432         else
433            echo "lnet.subsystem_debug: want 'mds ost', have '$CHECK_SUBSYS'"
434            return 1
435         fi
436         stop_ost || return $?
437 }
438 run_test 9 "test ptldebug and subsystem for mkfs"
439
440 #
441 # Test 16 was to "verify that lustre will correct the mode of OBJECTS".
442 # But with new MDS stack we don't care about the mode of local objects
443 # anymore, so this test is removed. See bug 22944 for more details.
444 #
445
446 test_17() {
447         local MDSDEV=$(mdsdevname ${SINGLEMDS//mds/})
448
449         if [ ! -e "$MDSDEV" ]; then
450             echo "no $MDSDEV existing, so mount Lustre to create one"
451             setup
452             check_mount || return 41
453             cleanup || return $?
454         fi
455
456         echo "Remove mds config log"
457         do_facet $SINGLEMDS "$DEBUGFS -w -R 'unlink CONFIGS/$FSNAME-MDT0000' $MDSDEV || return \$?" || return $?
458
459         start_ost
460         start_mds && return 42
461         reformat_and_config
462 }
463 run_test 17 "Verify failed mds_postsetup won't fail assertion (2936) (should return errs)"
464
465 test_18() {
466         [ "$FSTYPE" != "ldiskfs" ] && skip "not needed for FSTYPE=$FSTYPE" && return
467
468         local MDSDEV=$(mdsdevname ${SINGLEMDS//mds/})
469
470         local MIN=2000000
471
472         local OK=
473         # check if current MDSSIZE is large enough
474         [ $MDSSIZE -ge $MIN ] && OK=1 && myMDSSIZE=$MDSSIZE && \
475                 log "use MDSSIZE=$MDSSIZE"
476
477         # check if the global config has a large enough MDSSIZE
478         [ -z "$OK" -a ! -z "$STORED_MDSSIZE" ] && [ $STORED_MDSSIZE -ge $MIN ] && \
479                 OK=1 && myMDSSIZE=$STORED_MDSSIZE && \
480                 log "use STORED_MDSSIZE=$STORED_MDSSIZE"
481
482         # check if the block device is large enough
483         [ -z "$OK" -a -b $MDSDEV ] && \
484                 [ "$(dd if=$MDSDEV of=/dev/null bs=1k count=1 skip=$MIN 2>&1 |
485                      awk '($3 == "in") { print $1 }')" = "1+0" ] && OK=1 && \
486                 myMDSSIZE=$MIN && log "use device $MDSDEV with MIN=$MIN"
487
488         # check if a loopback device has enough space for fs metadata (5%)
489         [ -z "$OK" ] && [ -f $MDSDEV -o ! -e $MDSDEV ] &&
490                 SPACE=$(df -P $(dirname $MDSDEV) |
491                         awk '($1 != "Filesystem") {print $4}') &&
492                 [ $SPACE -gt $((MIN / 20)) ] && OK=1 && myMDSSIZE=$MIN && \
493                         log "use file $MDSDEV with MIN=$MIN"
494
495         [ -z "$OK" ] && skip_env "$MDSDEV too small for ${MIN}kB MDS" && return
496
497
498         echo "mount mds with large journal..."
499         local OLD_MDS_MKFS_OPTS=$MDS_MKFS_OPTS
500
501         MDS_MKFS_OPTS="--mgs --mdt --fsname=$FSNAME --device-size=$myMDSSIZE --param sys.timeout=$TIMEOUT $MDSOPT"
502
503         reformat_and_config
504         echo "mount lustre system..."
505         setup
506         check_mount || return 41
507
508         echo "check journal size..."
509         local FOUNDSIZE=`do_facet mds "$DEBUGFS -c -R 'stat <8>' $MDSDEV" | awk '/Size: / { print $NF; exit;}'`
510         if [ $FOUNDSIZE -gt $((32 * 1024 * 1024)) ]; then
511                 log "Success: mkfs creates large journals. Size: $((FOUNDSIZE >> 20))M"
512         else
513                 error "expected journal size > 32M, found $((FOUNDSIZE >> 20))M"
514         fi
515
516         cleanup || return $?
517
518         MDS_MKFS_OPTS=$OLD_MDS_MKFS_OPTS
519         reformat_and_config
520 }
521 run_test 18 "check mkfs creates large journals"
522
523 test_19a() {
524         start_mds || return 1
525         stop_mds -f || return 2
526 }
527 run_test 19a "start/stop MDS without OSTs"
528
529 test_19b() {
530         start_ost || return 1
531         stop_ost -f || return 2
532 }
533 run_test 19b "start/stop OSTs without MDS"
534
535 test_20() {
536         # first format the ost/mdt
537         start_mds
538         start_ost
539         mount_client $MOUNT
540         check_mount || return 43
541         rm -f $DIR/$tfile
542         remount_client ro $MOUNT || return 44
543         touch $DIR/$tfile && echo "$DIR/$tfile created incorrectly" && return 45
544         [ -e $DIR/$tfile ] && echo "$DIR/$tfile exists incorrectly" && return 46
545         remount_client rw $MOUNT || return 47
546         touch $DIR/$tfile
547         [ ! -f $DIR/$tfile ] && echo "$DIR/$tfile missing" && return 48
548         MCNT=`grep -c $MOUNT /etc/mtab`
549         [ "$MCNT" -ne 1 ] && echo "$MOUNT in /etc/mtab $MCNT times" && return 49
550         umount_client $MOUNT
551         stop_mds
552         stop_ost
553 }
554 run_test 20 "remount ro,rw mounts work and doesn't break /etc/mtab"
555
556 test_21a() {
557         start_mds
558         start_ost
559         wait_osc_import_state mds ost FULL
560         stop_ost
561         stop_mds
562 }
563 run_test 21a "start mds before ost, stop ost first"
564
565 test_21b() {
566         start_ost
567         start_mds
568         wait_osc_import_state mds ost FULL
569         stop_mds
570         stop_ost
571 }
572 run_test 21b "start ost before mds, stop mds first"
573
574 test_21c() {
575         start_ost
576         start_mds
577         start_ost2
578         wait_osc_import_state mds ost2 FULL
579         stop_ost
580         stop_ost2
581         stop_mds
582         #writeconf to remove all ost2 traces for subsequent tests
583         writeconf
584 }
585 run_test 21c "start mds between two osts, stop mds last"
586
587 test_22() {
588         start_mds
589
590         echo Client mount with ost in logs, but none running
591         start_ost
592         # wait until mds connected to ost and open client connection
593         wait_osc_import_state mds ost FULL
594         stop_ost
595         mount_client $MOUNT
596         # check_mount will block trying to contact ost
597         mcreate $DIR/$tfile || return 40
598         rm -f $DIR/$tfile || return 42
599         umount_client $MOUNT
600         pass
601
602         echo Client mount with a running ost
603         start_ost
604         if $GSS; then
605                 # if gss enabled, wait full time to let connection from
606                 # mds to ost be established, due to the mismatch between
607                 # initial connect timeout and gss context negotiation timeout.
608                 # This perhaps could be remove after AT landed.
609                 echo "sleep $((TIMEOUT + TIMEOUT + TIMEOUT))s"
610                 sleep $((TIMEOUT + TIMEOUT + TIMEOUT))
611         fi
612         mount_client $MOUNT
613         check_mount || return 41
614         pass
615
616         cleanup
617 }
618 run_test 22 "start a client before osts (should return errs)"
619
620 test_23a() {    # was test_23
621         setup
622         # fail mds
623         stop $SINGLEMDS
624         # force down client so that recovering mds waits for reconnect
625         local running=$(grep -c $MOUNT /proc/mounts) || true
626         if [ $running -ne 0 ]; then
627                 echo "Stopping client $MOUNT (opts: -f)"
628                 umount -f $MOUNT
629         fi
630
631         # enter recovery on mds
632         start_mds
633         # try to start a new client
634         mount_client $MOUNT &
635         sleep 5
636         MOUNT_PID=$(ps -ef | grep "t lustre" | grep -v grep | awk '{print $2}')
637         MOUNT_LUSTRE_PID=`ps -ef | grep mount.lustre | grep -v grep | awk '{print $2}'`
638         echo mount pid is ${MOUNT_PID}, mount.lustre pid is ${MOUNT_LUSTRE_PID}
639         ps --ppid $MOUNT_PID
640         ps --ppid $MOUNT_LUSTRE_PID
641         # FIXME why o why can't I kill these? Manual "ctrl-c" works...
642         kill -TERM $MOUNT_LUSTRE_PID
643         echo "waiting for mount to finish"
644         ps -ef | grep mount
645         # we can not wait $MOUNT_PID because it is not a child of this shell
646         local PID1
647         local PID2
648         local WAIT=0
649         local MAX_WAIT=30
650         local sleep=1
651         while [ "$WAIT" -lt "$MAX_WAIT" ]; do
652                 sleep $sleep
653                 PID1=$(ps -ef | awk '{print $2}' | grep -w $MOUNT_PID)
654                 PID2=$(ps -ef | awk '{print $2}' | grep -w $MOUNT_LUSTRE_PID)
655                 echo PID1=$PID1
656                 echo PID2=$PID2
657                 [ -z "$PID1" -a -z "$PID2" ] && break
658                 echo "waiting for mount to finish ... "
659                 WAIT=$(( WAIT + sleep))
660         done
661         if [ "$WAIT" -eq "$MAX_WAIT" ]; then
662                 error "MOUNT_PID $MOUNT_PID and "\
663                 "MOUNT_LUSTRE_PID $MOUNT_LUSTRE_PID still not killed in $WAIT secs"
664                 ps -ef | grep mount
665         fi
666         stop_mds || error
667         stop_ost || error
668 }
669 run_test 23a "interrupt client during recovery mount delay"
670
671 umount_client $MOUNT
672 cleanup_nocli
673
674 test_23b() {    # was test_23
675         start_mds
676         start_ost
677         # Simulate -EINTR during mount OBD_FAIL_LDLM_CLOSE_THREAD
678         lctl set_param fail_loc=0x80000313
679         mount_client $MOUNT
680         cleanup
681 }
682 run_test 23b "Simulate -EINTR during mount"
683
684 fs2mds_HOST=$mds_HOST
685 fs2ost_HOST=$ost_HOST
686
687 cleanup_24a() {
688         trap 0
689         echo "umount $MOUNT2 ..."
690         umount $MOUNT2 || true
691         echo "stopping fs2mds ..."
692         stop fs2mds -f || true
693         echo "stopping fs2ost ..."
694         stop fs2ost -f || true
695 }
696
697 test_24a() {
698         #set up fs1
699         gen_config
700
701         #set up fs2
702         local MDSDEV=$(mdsdevname ${SINGLEMDS//mds/})
703
704         [ -n "$ost1_HOST" ] && fs2ost_HOST=$ost1_HOST
705         if [ -z "$fs2ost_DEV" -o -z "$fs2mds_DEV" ]; then
706                 do_facet $SINGLEMDS [ -b "$MDSDEV" ] && \
707                 skip_env "mixed loopback and real device not working" && return
708         fi
709
710         local fs2mdsdev=${fs2mds_DEV:-${MDSDEV}_2}
711         local fs2ostdev=${fs2ost_DEV:-$(ostdevname 1)_2}
712
713         # test 8-char fsname as well
714         local FSNAME2=test1234
715         add fs2mds $MDS_MKFS_OPTS --fsname=${FSNAME2} --nomgs --mgsnode=$MGSNID --reformat $fs2mdsdev || exit 10
716
717         add fs2ost $OST_MKFS_OPTS --fsname=${FSNAME2} --reformat $fs2ostdev || exit 10
718
719         setup
720         start fs2mds $fs2mdsdev $MDS_MOUNT_OPTS && trap cleanup_24a EXIT INT
721         start fs2ost $fs2ostdev $OST_MOUNT_OPTS
722         mkdir -p $MOUNT2
723         mount -t lustre $MGSNID:/${FSNAME2} $MOUNT2 || return 1
724         # 1 still works
725         check_mount || return 2
726         # files written on 1 should not show up on 2
727         cp /etc/passwd $DIR/$tfile
728         sleep 10
729         [ -e $MOUNT2/$tfile ] && error "File bleed" && return 7
730         # 2 should work
731         sleep 5
732         cp /etc/passwd $MOUNT2/b || return 3
733         rm $MOUNT2/b || return 4
734         # 2 is actually mounted
735         grep $MOUNT2' ' /proc/mounts > /dev/null || return 5
736         # failover
737         facet_failover fs2mds
738         facet_failover fs2ost
739         df
740         umount_client $MOUNT
741         # the MDS must remain up until last MDT
742         stop_mds
743         MDS=$(do_facet $SINGLEMDS "lctl get_param -n devices" | awk '($3 ~ "mdt" && $4 ~ "MDT") { print $4 }' | head -1)
744         [ -z "$MDS" ] && error "No MDT" && return 8
745         cleanup_24a
746         cleanup_nocli || return 6
747 }
748 run_test 24a "Multiple MDTs on a single node"
749
750 test_24b() {
751         local MDSDEV=$(mdsdevname ${SINGLEMDS//mds/})
752
753         if [ -z "$fs2mds_DEV" ]; then
754                 do_facet $SINGLEMDS [ -b "$MDSDEV" ] && \
755                 skip_env "mixed loopback and real device not working" && return
756         fi
757
758         local fs2mdsdev=${fs2mds_DEV:-${MDSDEV}_2}
759
760         add fs2mds $MDS_MKFS_OPTS --fsname=${FSNAME}2 --mgs --reformat $fs2mdsdev || exit 10
761         setup
762         start fs2mds $fs2mdsdev $MDS_MOUNT_OPTS && return 2
763         cleanup || return 6
764 }
765 run_test 24b "Multiple MGSs on a single node (should return err)"
766
767 test_25() {
768         setup
769         check_mount || return 2
770         local MODULES=$($LCTL modules | awk '{ print $2 }')
771         rmmod $MODULES 2>/dev/null || true
772         cleanup || return 6
773 }
774 run_test 25 "Verify modules are referenced"
775
776 test_26() {
777     load_modules
778     # we need modules before mount for sysctl, so make sure...
779     do_facet $SINGLEMDS "lsmod | grep -q lustre || modprobe lustre"
780 #define OBD_FAIL_MDS_FS_SETUP            0x135
781     do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000135"
782     start_mds && echo MDS started && return 1
783     lctl get_param -n devices
784     DEVS=$(lctl get_param -n devices | wc -l)
785     [ $DEVS -gt 0 ] && return 2
786     unload_modules || return 203
787 }
788 run_test 26 "MDT startup failure cleans LOV (should return errs)"
789
790 set_and_check() {
791         local myfacet=$1
792         local TEST=$2
793         local PARAM=$3
794         local ORIG=$(do_facet $myfacet "$TEST")
795         if [ $# -gt 3 ]; then
796             local FINAL=$4
797         else
798             local -i FINAL
799             FINAL=$(($ORIG + 5))
800         fi
801         echo "Setting $PARAM from $ORIG to $FINAL"
802         do_facet $SINGLEMDS "$LCTL conf_param $PARAM='$FINAL'" || error conf_param failed
803
804         wait_update $(facet_host $myfacet) "$TEST" "$FINAL" || error check failed!
805 }
806
807 test_27a() {
808         start_ost || return 1
809         start_mds || return 2
810         echo "Requeue thread should have started: "
811         ps -e | grep ll_cfg_requeue
812         set_and_check ost1 "lctl get_param -n obdfilter.$FSNAME-OST0000.client_cache_seconds" "$FSNAME-OST0000.ost.client_cache_seconds" || return 3
813         cleanup_nocli
814 }
815 run_test 27a "Reacquire MGS lock if OST started first"
816
817 test_27b() {
818         # FIXME. ~grev
819         setup
820         local device=$(do_facet $SINGLEMDS "lctl get_param -n devices" | awk '($3 ~ "mdt" && $4 ~ "MDT") { print $4 }')
821
822         facet_failover $SINGLEMDS
823         set_and_check $SINGLEMDS "lctl get_param -n mdt.$device.identity_acquire_expire" "$device.mdt.identity_acquire_expire" || return 3
824         set_and_check client "lctl get_param -n mdc.$device-mdc-*.max_rpcs_in_flight" "$device.mdc.max_rpcs_in_flight" || return 4
825         check_mount
826         cleanup
827 }
828 run_test 27b "Reacquire MGS lock after failover"
829
830 test_28a() {
831         setup
832         TEST="lctl get_param -n llite.$FSNAME-*.max_read_ahead_whole_mb"
833         PARAM="llite.$FSNAME.max_read_ahead_whole_mb"
834         ORIG=$($TEST)
835         FINAL=$(($ORIG + 1))
836         set_and_check client "$TEST" "$PARAM" $FINAL || return 3
837         FINAL=$(($FINAL + 1))
838         set_and_check client "$TEST" "$PARAM" $FINAL || return 4
839         umount_client $MOUNT || return 200
840         mount_client $MOUNT
841         RESULT=$($TEST)
842         if [ $RESULT -ne $FINAL ]; then
843             echo "New config not seen: wanted $FINAL got $RESULT"
844             return 4
845         else
846             echo "New config success: got $RESULT"
847         fi
848         set_and_check client "$TEST" "$PARAM" $ORIG || return 5
849         cleanup
850 }
851 run_test 28a "permanent parameter setting"
852
853 check_28b() {
854         local NODE=$1
855         shift
856         set_and_check $NODE "$LCTL get_param -n $1*.$2 | head -1" "$1.$2" "$3" || \
857                 error "conf_param $1.$2 failed"
858 }
859
860 test_28b() {
861         setup > /dev/null
862         # should error
863         do_facet mgs "$LCTL conf_param foo=1 2>/dev/null" && \
864                 error "Bad format should fail"
865         do_facet mgs "$LCTL conf_param osc.notanfs-OST0000.active=0 2>/dev/null" && \
866                 error "Setting on unknown fs should fail"
867         do_facet mgs "$LCTL conf_param osc.$FSNAME-OST00000.active=0 2>/dev/null" && \
868                 error "Bad target name should fail"
869         # should succeed
870         check_28b mds mdt.$FSNAME-MDT0000 capa_timeout 1500
871         check_28b mds mdt.$FSNAME-MDT* identity_expire 150
872         check_28b mds mdd.$FSNAME-MDT0000 atime_diff 15
873         check_28b mds mdd.$FSNAME-MDT* sync_permission 0
874         check_28b ost1 obdfilter.$FSNAME-OST0000 client_cache_seconds 15
875         check_28b ost1 obdfilter.$FSNAME-OST* client_cache_count 15
876         check_28b mds lov.$FSNAME-MDT0000 qos_maxage "15 Sec"
877         check_28b mds lov.$FSNAME-MDT0000 qos_prio_free "15%"
878         check_28b client mdc.$FSNAME-MDT0000 max_rpcs_in_flight 15
879         check_28b client osc.$FSNAME-OST0000 active 0
880         check_28b client osc.$FSNAME-OST0000 active 1
881         check_28b client osc.$FSNAME-OST0000 max_dirty_mb 15
882         check_28b client llite.$FSNAME max_read_ahead_mb 15
883         set_and_check client "$LCTL get_param -n at_max" "sys.$FSNAME.at_max" 1500 || \
884                 error "conf_param sys.fsname.at_max failed"
885         cleanup > /dev/null
886 }
887 run_test 28b "permanent parameter setting, set_param syntax"
888
889 test_29() {
890         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2, skipping" && return
891         setup > /dev/null 2>&1
892         start_ost2
893         sleep 10
894
895         local PARAM="osc.$FSNAME-OST0001.active"
896         local PROC_ACT="osc.$FSNAME-OST0001-osc-[^M]*.active"
897         local PROC_UUID="osc.$FSNAME-OST0001-osc-[^M]*.ost_server_uuid"
898
899         ACTV=$(lctl get_param -n $PROC_ACT)
900         DEAC=$((1 - $ACTV))
901         set_and_check client "lctl get_param -n $PROC_ACT" "$PARAM" $DEAC || return 2
902         # also check ost_server_uuid status
903         RESULT=$(lctl get_param -n $PROC_UUID | grep DEACTIV)
904         if [ -z "$RESULT" ]; then
905             echo "Live client not deactivated: $(lctl get_param -n $PROC_UUID)"
906             return 3
907         else
908             echo "Live client success: got $RESULT"
909         fi
910
911         # check MDT too
912         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS $FSNAME-OST0001)
913         mdtosc=${mdtosc/-MDT*/-MDT\*}
914         local MPROC="osc.$mdtosc.active"
915         local MAX=30
916         local WAIT=0
917         while [ 1 ]; do
918             sleep 5
919             RESULT=`do_facet $SINGLEMDS " lctl get_param -n $MPROC"`
920             [ ${PIPESTATUS[0]} = 0 ] || error "Can't read $MPROC"
921             if [ $RESULT -eq $DEAC ]; then
922                 echo "MDT deactivated also after $WAIT sec (got $RESULT)"
923                 break
924             fi
925             WAIT=$((WAIT + 5))
926             if [ $WAIT -eq $MAX ]; then
927                 echo "MDT not deactivated: wanted $DEAC got $RESULT"
928                 return 4
929             fi
930             echo "Waiting $(($MAX - $WAIT)) secs for MDT deactivated"
931         done
932
933         # test new client starts deactivated
934         umount_client $MOUNT || return 200
935         mount_client $MOUNT
936         RESULT=$(lctl get_param -n $PROC_UUID | grep DEACTIV | grep NEW)
937         if [ -z "$RESULT" ]; then
938             echo "New client not deactivated from start: $(lctl get_param -n $PROC_UUID)"
939             return 5
940         else
941             echo "New client success: got $RESULT"
942         fi
943
944         # make sure it reactivates
945         set_and_check client "lctl get_param -n $PROC_ACT" "$PARAM" $ACTV || return 6
946
947         umount_client $MOUNT
948         stop_ost2
949         cleanup_nocli
950         #writeconf to remove all ost2 traces for subsequent tests
951         writeconf
952 }
953 run_test 29 "permanently remove an OST"
954
955 test_30a() {
956         setup
957
958         echo Big config llog
959         TEST="lctl get_param -n llite.$FSNAME-*.max_read_ahead_whole_mb"
960         ORIG=$($TEST)
961         LIST=(1 2 3 4 5 4 3 2 1 2 3 4 5 4 3 2 1 2 3 4 5)
962         for i in ${LIST[@]}; do
963             set_and_check client "$TEST" "llite.$FSNAME.max_read_ahead_whole_mb" $i || return 3
964         done
965         # make sure client restart still works
966         umount_client $MOUNT
967         mount_client $MOUNT || return 4
968         [ "$($TEST)" -ne "$i" ] && error "Param didn't stick across restart $($TEST) != $i"
969         pass
970
971         echo Erase parameter setting
972         do_facet mgs "$LCTL conf_param -d llite.$FSNAME.max_read_ahead_whole_mb" || return 6
973         umount_client $MOUNT
974         mount_client $MOUNT || return 6
975         FINAL=$($TEST)
976         echo "deleted (default) value=$FINAL, orig=$ORIG"
977         # assumes this parameter started at the default value
978         [ "$FINAL" -eq "$ORIG" ] || fail "Deleted value=$FINAL, orig=$ORIG"
979
980         cleanup
981 }
982 run_test 30a "Big config llog and conf_param deletion"
983
984 test_30b() {
985         setup
986
987         # Make a fake nid.  Use the OST nid, and add 20 to the least significant
988         # numerical part of it. Hopefully that's not already a failover address for
989         # the server.
990         OSTNID=$(do_facet ost1 "$LCTL get_param nis" | tail -1 | awk '{print $1}')
991         ORIGVAL=$(echo $OSTNID | egrep -oi "[0-9]*@")
992         NEWVAL=$((($(echo $ORIGVAL | egrep -oi "[0-9]*") + 20) % 256))
993         NEW=$(echo $OSTNID | sed "s/$ORIGVAL/$NEWVAL@/")
994         echo "Using fake nid $NEW"
995
996         TEST="$LCTL get_param -n osc.$FSNAME-OST0000-osc-[^M]*.import | grep failover_nids | sed -n 's/.*\($NEW\).*/\1/p'"
997         set_and_check client "$TEST" "osc.$FSNAME-OST0000.failover.node" $NEW || error "didn't add failover nid $NEW"
998         NIDS=$($LCTL get_param -n osc.$FSNAME-OST0000-osc-[^M]*.import | grep failover_nids)
999         echo $NIDS
1000         NIDCOUNT=$(($(echo "$NIDS" | wc -w) - 1))
1001         echo "should have 2 failover nids: $NIDCOUNT"
1002         [ $NIDCOUNT -eq 2 ] || error "Failover nid not added"
1003         do_facet mgs "$LCTL conf_param -d osc.$FSNAME-OST0000.failover.node" || error "conf_param delete failed"
1004         umount_client $MOUNT
1005         mount_client $MOUNT || return 3
1006
1007         NIDS=$($LCTL get_param -n osc.$FSNAME-OST0000-osc-[^M]*.import | grep failover_nids)
1008         echo $NIDS
1009         NIDCOUNT=$(($(echo "$NIDS" | wc -w) - 1))
1010         echo "only 1 final nid should remain: $NIDCOUNT"
1011         [ $NIDCOUNT -eq 1 ] || error "Failover nids not removed"
1012
1013         cleanup
1014 }
1015 run_test 30b "Remove failover nids"
1016
1017 test_31() { # bug 10734
1018         # ipaddr must not exist
1019         mount -t lustre 4.3.2.1@tcp:/lustre $MOUNT || true
1020         cleanup
1021 }
1022 run_test 31 "Connect to non-existent node (shouldn't crash)"
1023
1024 # Use these start32/stop32 fn instead of t-f start/stop fn,
1025 # for local devices, to skip global facet vars init
1026 stop32 () {
1027         local facet=$1
1028         shift
1029         echo "Stopping local ${MOUNT%/*}/${facet} (opts:$@)"
1030         umount -d $@ ${MOUNT%/*}/${facet}
1031         losetup -a
1032 }
1033
1034 start32 () {
1035         local facet=$1
1036         shift
1037         local device=$1
1038         shift
1039         mkdir -p ${MOUNT%/*}/${facet}
1040
1041         echo "Starting local ${facet}: $@ $device ${MOUNT%/*}/${facet}"
1042         mount -t lustre $@ ${device} ${MOUNT%/*}/${facet}
1043         local RC=$?
1044         if [ $RC -ne 0 ]; then
1045                 echo "mount -t lustre $@ ${device} ${MOUNT%/*}/${facet}"
1046                 echo "Start of ${device} of local ${facet} failed ${RC}"
1047         fi
1048         losetup -a
1049         return $RC
1050 }
1051
1052 cleanup_nocli32 () {
1053         stop32 mds1 -f
1054         stop32 ost1 -f
1055         wait_exit_ST client
1056 }
1057
1058 cleanup_32() {
1059         trap 0
1060         echo "Cleanup test_32 umount $MOUNT ..."
1061         umount -f $MOUNT || true
1062         echo "Cleanup local mds ost1 ..."
1063         cleanup_nocli32
1064         unload_modules
1065 }
1066
1067 test_32a() {
1068         client_only && skip "client only testing" && return 0
1069         [ "$NETTYPE" = "tcp" ] || { skip "NETTYPE != tcp" && return 0; }
1070         [ -z "$TUNEFS" ] && skip_env "No tunefs" && return 0
1071
1072         local DISK1_8=$LUSTRE/tests/disk1_8.tar.bz2
1073         [ ! -r $DISK1_8 ] && skip_env "Cannot find $DISK1_8" && return 0
1074         local tmpdir=$TMP/conf32a
1075         mkdir -p $tmpdir
1076         tar xjvf $DISK1_8 -C $tmpdir || \
1077                 { skip_env "Cannot untar $DISK1_8" && return 0; }
1078
1079         load_modules
1080         $LCTL set_param debug=$PTLDEBUG
1081
1082         $TUNEFS $tmpdir/mds || error "tunefs failed"
1083
1084         # nids are wrong, so client wont work, but server should start
1085         start32 mds1 $tmpdir/mds "-o loop,exclude=lustre-OST0000" && \
1086                 trap cleanup_32 EXIT INT || return 3
1087
1088         local UUID=$($LCTL get_param -n mdt.lustre-MDT0000.uuid)
1089         echo MDS uuid $UUID
1090         [ "$UUID" == "lustre-MDT0000_UUID" ] || error "UUID is wrong: $UUID"
1091
1092         $TUNEFS --mgsnode=$HOSTNAME $tmpdir/ost1 || error "tunefs failed"
1093         start32 ost1 $tmpdir/ost1 "-o loop" || return 5
1094         UUID=$($LCTL get_param -n obdfilter.lustre-OST0000.uuid)
1095         echo OST uuid $UUID
1096         [ "$UUID" == "lustre-OST0000_UUID" ] || error "UUID is wrong: $UUID"
1097
1098         local NID=$($LCTL list_nids | head -1)
1099
1100         echo "OSC changes should succeed:"
1101         $LCTL conf_param lustre-OST0000.osc.max_dirty_mb=15 || return 7
1102         $LCTL conf_param lustre-OST0000.failover.node=$NID || return 8
1103         echo "ok."
1104
1105         echo "MDC changes should succeed:"
1106         $LCTL conf_param lustre-MDT0000.mdc.max_rpcs_in_flight=9 || return 9
1107         $LCTL conf_param lustre-MDT0000.failover.node=$NID || return 10
1108         echo "ok."
1109
1110         echo "LOV changes should succeed:"
1111         $LCTL pool_new lustre.interop || return 11
1112         $LCTL conf_param lustre-MDT0000.lov.stripesize=4M || return 12
1113         echo "ok."
1114
1115         cleanup_32
1116
1117         # mount a second time to make sure we didnt leave upgrade flag on
1118         load_modules
1119         $TUNEFS --dryrun $tmpdir/mds || error "tunefs failed"
1120         start32 mds1 $tmpdir/mds "-o loop,exclude=lustre-OST0000" && \
1121                 trap cleanup_32 EXIT INT || return 12
1122
1123         cleanup_32
1124
1125         rm -rf $tmpdir || true  # true is only for TMP on NFS
1126 }
1127 run_test 32a "Upgrade from 1.8 (not live)"
1128
1129 test_32b() {
1130         client_only && skip "client only testing" && return 0
1131         [ "$NETTYPE" = "tcp" ] || { skip "NETTYPE != tcp" && return 0; }
1132         [ -z "$TUNEFS" ] && skip_env "No tunefs" && return
1133
1134         local DISK1_8=$LUSTRE/tests/disk1_8.tar.bz2
1135         [ ! -r $DISK1_8 ] && skip_env "Cannot find $DISK1_8" && return 0
1136         local tmpdir=$TMP/conf32b
1137         mkdir -p $tmpdir
1138         tar xjvf $DISK1_8 -C $tmpdir || \
1139                 { skip_env "Cannot untar $DISK1_8" && return ; }
1140
1141         load_modules
1142         $LCTL set_param debug="config"
1143         local NEWNAME=lustre
1144
1145         # writeconf will cause servers to register with their current nids
1146         $TUNEFS --writeconf --fsname=$NEWNAME $tmpdir/mds || error "tunefs failed"
1147         start32 mds1 $tmpdir/mds "-o loop" && \
1148                 trap cleanup_32 EXIT INT || return 3
1149
1150         local UUID=$($LCTL get_param -n mdt.${NEWNAME}-MDT0000.uuid)
1151         echo MDS uuid $UUID
1152         [ "$UUID" == "${NEWNAME}-MDT0000_UUID" ] || error "UUID is wrong: $UUID"
1153
1154         $TUNEFS --mgsnode=$HOSTNAME --writeconf --fsname=$NEWNAME $tmpdir/ost1 ||\
1155             error "tunefs failed"
1156         start32 ost1 $tmpdir/ost1 "-o loop" || return 5
1157         UUID=$($LCTL get_param -n obdfilter.${NEWNAME}-OST0000.uuid)
1158         echo OST uuid $UUID
1159         [ "$UUID" == "${NEWNAME}-OST0000_UUID" ] || error "UUID is wrong: $UUID"
1160
1161         local NID=$($LCTL list_nids | head -1)
1162
1163         echo "OSC changes should succeed:"
1164         $LCTL conf_param ${NEWNAME}-OST0000.osc.max_dirty_mb=15 || return 7
1165         $LCTL conf_param ${NEWNAME}-OST0000.failover.node=$NID || return 8
1166         echo "ok."
1167
1168         echo "MDC changes should succeed:"
1169         $LCTL conf_param ${NEWNAME}-MDT0000.mdc.max_rpcs_in_flight=9 || return 9
1170         $LCTL conf_param ${NEWNAME}-MDT0000.failover.node=$NID || return 10
1171         echo "ok."
1172
1173         echo "LOV changes should succeed:"
1174         $LCTL pool_new ${NEWNAME}.interop || return 11
1175         $LCTL conf_param ${NEWNAME}-MDT0000.lov.stripesize=4M || return 12
1176         echo "ok."
1177
1178         # MDT and OST should have registered with new nids, so we should have
1179         # a fully-functioning client
1180         echo "Check client and old fs contents"
1181
1182         local device=`h2$NETTYPE $HOSTNAME`:/$NEWNAME
1183         echo "Starting local client: $HOSTNAME: $device $MOUNT"
1184         mount -t lustre $device $MOUNT || return 1
1185
1186         local old=$($LCTL get_param -n mdc.*.max_rpcs_in_flight)
1187         local new=$((old + 5))
1188         $LCTL conf_param ${NEWNAME}-MDT0000.mdc.max_rpcs_in_flight=$new
1189         wait_update $HOSTNAME "$LCTL get_param -n mdc.*.max_rpcs_in_flight" $new || return 11
1190
1191         [ "$(cksum $MOUNT/passwd | cut -d' ' -f 1,2)" == "94306271 1478" ] || return 12
1192         echo "ok."
1193
1194         cleanup_32
1195
1196         rm -rf $tmpdir || true  # true is only for TMP on NFS
1197 }
1198 run_test 32b "Upgrade from 1.8 with writeconf"
1199
1200 test_33a() { # bug 12333, was test_33
1201         local rc=0
1202         local FSNAME2=test-123
1203         local MDSDEV=$(mdsdevname ${SINGLEMDS//mds/})
1204
1205         [ -n "$ost1_HOST" ] && fs2ost_HOST=$ost1_HOST
1206
1207         if [ -z "$fs2ost_DEV" -o -z "$fs2mds_DEV" ]; then
1208                 do_facet $SINGLEMDS [ -b "$MDSDEV" ] && \
1209                 skip_env "mixed loopback and real device not working" && return
1210         fi
1211
1212         local fs2mdsdev=${fs2mds_DEV:-${MDSDEV}_2}
1213         local fs2ostdev=${fs2ost_DEV:-$(ostdevname 1)_2}
1214         add fs2mds $MDS_MKFS_OPTS --mkfsoptions='\"-J size=8\"' --fsname=${FSNAME2} --reformat $fs2mdsdev || exit 10
1215         add fs2ost $OST_MKFS_OPTS --fsname=${FSNAME2} --index=8191 --mgsnode=$MGSNID --reformat $fs2ostdev || exit 10
1216
1217         start fs2mds $fs2mdsdev $MDS_MOUNT_OPTS && trap cleanup_24a EXIT INT
1218         start fs2ost $fs2ostdev $OST_MOUNT_OPTS
1219         do_facet mgs "$LCTL conf_param sys.$FSNAME2.timeout=200" || rc=1
1220         mkdir -p $MOUNT2
1221         mount -t lustre $MGSNID:/${FSNAME2} $MOUNT2 || rc=2
1222         echo "ok."
1223
1224         cp /etc/hosts $MOUNT2/ || rc=3
1225         $LFS getstripe $MOUNT2/hosts
1226
1227         umount -d $MOUNT2
1228         stop fs2ost -f
1229         stop fs2mds -f
1230         rm -rf $MOUNT2 $fs2mdsdev $fs2ostdev
1231         cleanup_nocli || rc=6
1232         return $rc
1233 }
1234 run_test 33a "Mount ost with a large index number"
1235
1236 test_33b() {    # was test_34
1237         setup
1238
1239         do_facet client dd if=/dev/zero of=$MOUNT/24 bs=1024k count=1
1240         # Drop lock cancelation reply during umount
1241         #define OBD_FAIL_LDLM_CANCEL             0x304
1242         do_facet client lctl set_param fail_loc=0x80000304
1243         #lctl set_param debug=-1
1244         umount_client $MOUNT
1245         cleanup
1246 }
1247 run_test 33b "Drop cancel during umount"
1248
1249 test_34a() {
1250         setup
1251         do_facet client "sh runmultiop_bg_pause $DIR/file O_c"
1252         manual_umount_client
1253         rc=$?
1254         do_facet client killall -USR1 multiop
1255         if [ $rc -eq 0 ]; then
1256                 error "umount not fail!"
1257         fi
1258         sleep 1
1259         cleanup
1260 }
1261 run_test 34a "umount with opened file should fail"
1262
1263
1264 test_34b() {
1265         setup
1266         touch $DIR/$tfile || return 1
1267         stop_mds --force || return 2
1268
1269         manual_umount_client --force
1270         rc=$?
1271         if [ $rc -ne 0 ]; then
1272                 error "mtab after failed umount - rc $rc"
1273         fi
1274
1275         cleanup
1276         return 0
1277 }
1278 run_test 34b "force umount with failed mds should be normal"
1279
1280 test_34c() {
1281         setup
1282         touch $DIR/$tfile || return 1
1283         stop_ost --force || return 2
1284
1285         manual_umount_client --force
1286         rc=$?
1287         if [ $rc -ne 0 ]; then
1288                 error "mtab after failed umount - rc $rc"
1289         fi
1290
1291         cleanup
1292         return 0
1293 }
1294 run_test 34c "force umount with failed ost should be normal"
1295
1296 test_35a() { # bug 12459
1297         setup
1298
1299         DBG_SAVE="`lctl get_param -n debug`"
1300         lctl set_param debug="ha"
1301
1302         log "Set up a fake failnode for the MDS"
1303         FAKENID="127.0.0.2"
1304         local device=$(do_facet $SINGLEMDS "lctl get_param -n devices" | awk '($3 ~ "mdt" && $4 ~ "MDT") { print $4 }' | head -1)
1305         do_facet $SINGLEMDS $LCTL conf_param mdc.${device}.failover.node=$FAKENID || return 4
1306
1307         log "Wait for RECONNECT_INTERVAL seconds (10s)"
1308         sleep 10
1309
1310         MSG="conf-sanity.sh test_35a `date +%F%kh%Mm%Ss`"
1311         $LCTL clear
1312         log "$MSG"
1313         log "Stopping the MDT:"
1314         stop_mds || return 5
1315
1316         df $MOUNT > /dev/null 2>&1 &
1317         DFPID=$!
1318         log "Restarting the MDT:"
1319         start_mds || return 6
1320         log "Wait for df ($DFPID) ... "
1321         wait $DFPID
1322         log "done"
1323         lctl set_param debug="$DBG_SAVE"
1324
1325         # retrieve from the log the first server that the client tried to
1326         # contact after the connection loss
1327         $LCTL dk $TMP/lustre-log-$TESTNAME.log
1328         NEXTCONN=`awk "/${MSG}/ {start = 1;}
1329                        /import_select_connection.*$device-mdc.* using connection/ {
1330                                 if (start) {
1331                                         if (\\\$NF ~ /$FAKENID/)
1332                                                 print \\\$NF;
1333                                         else
1334                                                 print 0;
1335                                         exit;
1336                                 }
1337                        }" $TMP/lustre-log-$TESTNAME.log`
1338         [ "$NEXTCONN" != "0" ] && log "The client didn't try to reconnect to the last active server (tried ${NEXTCONN} instead)" && return 7
1339         cleanup
1340         # remove nid settings
1341         writeconf
1342 }
1343 run_test 35a "Reconnect to the last active server first"
1344
1345 test_35b() { # bug 18674
1346         remote_mds || { skip "local MDS" && return 0; }
1347         setup
1348
1349         debugsave
1350         $LCTL set_param debug="ha"
1351         $LCTL clear
1352         MSG="conf-sanity.sh test_35b `date +%F%kh%Mm%Ss`"
1353         log "$MSG"
1354
1355         log "Set up a fake failnode for the MDS"
1356         FAKENID="127.0.0.2"
1357         local device=$(do_facet mds "$LCTL get_param -n devices" | \
1358                         awk '($3 ~ "mdt" && $4 ~ "MDT") { print $4 }' | head -1)
1359         do_facet mds "$LCTL conf_param mdc.${device}.failover.node=$FAKENID" || \
1360                 return 1
1361
1362         local at_max_saved=0
1363         # adaptive timeouts may prevent seeing the issue 
1364         if at_is_enabled; then
1365                 at_max_saved=$(at_max_get mds)
1366                 at_max_set 0 mds client
1367         fi
1368
1369         mkdir -p $MOUNT/testdir
1370         touch $MOUNT/testdir/test
1371
1372         log "Injecting EBUSY on MDS"
1373         # Setting OBD_FAIL_MDS_RESEND=0x136
1374         do_facet mds "$LCTL set_param fail_loc=0x80000136" || return 2
1375
1376         log "Stat on a test file"
1377         stat $MOUNT/testdir/test
1378
1379         log "Stop injecting EBUSY on MDS"
1380         do_facet mds "$LCTL set_param fail_loc=0" || return 3
1381         rm -f $MOUNT/testdir/test
1382
1383         log "done"
1384         # restore adaptive timeout
1385         [ $at_max_saved -ne 0 ] && at_max_set $at_max_saved mds client
1386
1387         $LCTL dk $TMP/lustre-log-$TESTNAME.log
1388
1389         # retrieve from the log if the client has ever tried to
1390         # contact the fake server after the loss of connection
1391         FAILCONN=`awk "BEGIN {ret = 0;}
1392                        /import_select_connection.*${FSNAME}-MDT0000-mdc.* using connection/ {
1393                                 ret = 1;
1394                                 if (\\\$NF ~ /$FAKENID/) {
1395                                         ret = 2;
1396                                         exit;
1397                                 }
1398                        }
1399                        END {print ret}" $TMP/lustre-log-$TESTNAME.log`
1400
1401         [ "$FAILCONN" == "0" ] && \
1402                 log "ERROR: The client reconnection has not been triggered" && \
1403                 return 4
1404         [ "$FAILCONN" == "2" ] && \
1405                 log "ERROR: The client tried to reconnect to the failover server while the primary was busy" && \
1406                 return 5
1407
1408         cleanup
1409         # remove nid settings
1410         writeconf
1411 }
1412 run_test 35b "Continue reconnection retries, if the active server is busy"
1413
1414 test_36() { # 12743
1415         local rc
1416         local FSNAME2=test1234
1417         local fs3ost_HOST=$ost_HOST
1418         local MDSDEV=$(mdsdevname ${SINGLEMDS//mds/})
1419
1420         [ -n "$ost1_HOST" ] && fs2ost_HOST=$ost1_HOST && fs3ost_HOST=$ost1_HOST
1421         rc=0
1422
1423         if [ -z "$fs2ost_DEV" -o -z "$fs2mds_DEV" -o -z "$fs3ost_DEV" ]; then
1424                 do_facet $SINGLEMDS [ -b "$MDSDEV" ] && \
1425                 skip_env "mixed loopback and real device not working" && return
1426         fi
1427         [ $OSTCOUNT -lt 2 ] && skip_env "skipping test for single OST" && return
1428
1429         [ "$ost_HOST" = "`hostname`" -o "$ost1_HOST" = "`hostname`" ] || \
1430                 { skip "remote OST" && return 0; }
1431
1432         local fs2mdsdev=${fs2mds_DEV:-${MDSDEV}_2}
1433         local fs2ostdev=${fs2ost_DEV:-$(ostdevname 1)_2}
1434         local fs3ostdev=${fs3ost_DEV:-$(ostdevname 2)_2}
1435         add fs2mds $MDS_MKFS_OPTS --fsname=${FSNAME2} --reformat $fs2mdsdev || exit 10
1436         # XXX after we support non 4K disk blocksize, change following --mkfsoptions with
1437         # other argument
1438         add fs2ost $OST_MKFS_OPTS --mkfsoptions='-b4096' --fsname=${FSNAME2} --mgsnode=$MGSNID --reformat $fs2ostdev || exit 10
1439         add fs3ost $OST_MKFS_OPTS --mkfsoptions='-b4096' --fsname=${FSNAME2} --mgsnode=$MGSNID --reformat $fs3ostdev || exit 10
1440
1441         start fs2mds $fs2mdsdev $MDS_MOUNT_OPTS
1442         start fs2ost $fs2ostdev $OST_MOUNT_OPTS
1443         start fs3ost $fs3ostdev $OST_MOUNT_OPTS
1444         mkdir -p $MOUNT2
1445         mount -t lustre $MGSNID:/${FSNAME2} $MOUNT2 || return 1
1446
1447         sleep 5 # until 11778 fixed
1448
1449         dd if=/dev/zero of=$MOUNT2/$tfile bs=1M count=7 || return 2
1450
1451         BKTOTAL=`lctl get_param -n obdfilter.*.kbytestotal | awk 'BEGIN{total=0}; {total+=$1}; END{print total}'`
1452         BKFREE=`lctl get_param -n obdfilter.*.kbytesfree | awk 'BEGIN{free=0}; {free+=$1}; END{print free}'`
1453         BKAVAIL=`lctl get_param -n obdfilter.*.kbytesavail | awk 'BEGIN{avail=0}; {avail+=$1}; END{print avail}'`
1454         STRING=`df -P $MOUNT2 | tail -n 1 | awk '{print $2","$3","$4}'`
1455         DFTOTAL=`echo $STRING | cut -d, -f1`
1456         DFUSED=`echo $STRING  | cut -d, -f2`
1457         DFAVAIL=`echo $STRING | cut -d, -f3`
1458         DFFREE=$(($DFTOTAL - $DFUSED))
1459
1460         ALLOWANCE=$((64 * $OSTCOUNT))
1461
1462         if [ $DFTOTAL -lt $(($BKTOTAL - $ALLOWANCE)) ] ||
1463            [ $DFTOTAL -gt $(($BKTOTAL + $ALLOWANCE)) ] ; then
1464                 echo "**** FAIL: df total($DFTOTAL) mismatch OST total($BKTOTAL)"
1465                 rc=1
1466         fi
1467         if [ $DFFREE -lt $(($BKFREE - $ALLOWANCE)) ] ||
1468            [ $DFFREE -gt $(($BKFREE + $ALLOWANCE)) ] ; then
1469                 echo "**** FAIL: df free($DFFREE) mismatch OST free($BKFREE)"
1470                 rc=2
1471         fi
1472         if [ $DFAVAIL -lt $(($BKAVAIL - $ALLOWANCE)) ] ||
1473            [ $DFAVAIL -gt $(($BKAVAIL + $ALLOWANCE)) ] ; then
1474                 echo "**** FAIL: df avail($DFAVAIL) mismatch OST avail($BKAVAIL)"
1475                 rc=3
1476        fi
1477
1478         umount -d $MOUNT2
1479         stop fs3ost -f || return 200
1480         stop fs2ost -f || return 201
1481         stop fs2mds -f || return 202
1482         rm -rf $MOUNT2 $fs2mdsdev $fs2ostdev $fs3ostdev
1483         unload_modules || return 203
1484         return $rc
1485 }
1486 run_test 36 "df report consistency on OSTs with different block size"
1487
1488 test_37() {
1489         client_only && skip "client only testing" && return 0
1490         LOCAL_MDSDEV="$TMP/mdt.img"
1491         SYM_MDSDEV="$TMP/sym_mdt.img"
1492
1493         echo "MDS :     $LOCAL_MDSDEV"
1494         echo "SYMLINK : $SYM_MDSDEV"
1495         rm -f $LOCAL_MDSDEV
1496
1497         touch $LOCAL_MDSDEV
1498         mkfs.lustre --reformat --fsname=lustre --mdt --mgs --device-size=9000 $LOCAL_MDSDEV ||
1499                 error "mkfs.lustre $LOCAL_MDSDEV failed"
1500         ln -s $LOCAL_MDSDEV $SYM_MDSDEV
1501
1502         echo "mount symlink device - $SYM_MDSDEV"
1503
1504         mount_op=`mount -v -t lustre -o loop $SYM_MDSDEV ${MOUNT%/*}/mds 2>&1 | grep "unable to set tunable"`
1505         umount -d ${MOUNT%/*}/mds
1506         rm -f $LOCAL_MDSDEV $SYM_MDSDEV
1507
1508         if [ -n "$mount_op" ]; then
1509                 error "**** FAIL: set tunables failed for symlink device"
1510         fi
1511         return 0
1512 }
1513 run_test 37 "verify set tunables works for symlink device"
1514
1515 test_38() { # bug 14222
1516         setup
1517         # like runtests
1518         COUNT=10
1519         SRC="/etc /bin"
1520         FILES=`find $SRC -type f -mtime +1 | head -n $COUNT`
1521         log "copying $(echo $FILES | wc -w) files to $DIR/$tdir"
1522         mkdir -p $DIR/$tdir
1523         tar cf - $FILES | tar xf - -C $DIR/$tdir || \
1524                 error "copying $SRC to $DIR/$tdir"
1525         sync
1526         umount_client $MOUNT
1527         stop_mds
1528         log "rename lov_objid file on MDS"
1529         rm -f $TMP/lov_objid.orig
1530
1531         local MDSDEV=$(mdsdevname ${SINGLEMDS//mds/})
1532         do_facet $SINGLEMDS "$DEBUGFS -c -R \\\"dump lov_objid $TMP/lov_objid.orig\\\" $MDSDEV"
1533         do_facet $SINGLEMDS "$DEBUGFS -w -R \\\"rm lov_objid\\\" $MDSDEV"
1534
1535         do_facet $SINGLEMDS "od -Ax -td8 $TMP/lov_objid.orig"
1536         # check create in mds_lov_connect
1537         start_mds
1538         mount_client $MOUNT
1539         for f in $FILES; do
1540                 [ $V ] && log "verifying $DIR/$tdir/$f"
1541                 diff -q $f $DIR/$tdir/$f || ERROR=y
1542         done
1543         do_facet $SINGLEMDS "$DEBUGFS -c -R \\\"dump lov_objid $TMP/lov_objid.new\\\"  $MDSDEV"
1544         do_facet $SINGLEMDS "od -Ax -td8 $TMP/lov_objid.new"
1545         [ "$ERROR" = "y" ] && error "old and new files are different after connect" || true
1546
1547         # check it's updates in sync
1548         umount_client $MOUNT
1549         stop_mds
1550
1551         do_facet $SINGLEMDS dd if=/dev/zero of=$TMP/lov_objid.clear bs=4096 count=1
1552         do_facet $SINGLEMDS "$DEBUGFS -w -R \\\"rm lov_objid\\\" $MDSDEV"
1553         do_facet $SINGLEMDS "$DEBUGFS -w -R \\\"write $TMP/lov_objid.clear lov_objid\\\" $MDSDEV "
1554
1555         start_mds
1556         mount_client $MOUNT
1557         for f in $FILES; do
1558                 [ $V ] && log "verifying $DIR/$tdir/$f"
1559                 diff -q $f $DIR/$tdir/$f || ERROR=y
1560         done
1561         do_facet $SINGLEMDS "$DEBUGFS -c -R \\\"dump lov_objid $TMP/lov_objid.new1\\\" $MDSDEV"
1562         do_facet $SINGLEMDS "od -Ax -td8 $TMP/lov_objid.new1"
1563         umount_client $MOUNT
1564         stop_mds
1565         [ "$ERROR" = "y" ] && error "old and new files are different after sync" || true
1566
1567         log "files compared the same"
1568         cleanup
1569 }
1570 run_test 38 "MDS recreates missing lov_objid file from OST data"
1571
1572 test_39() {
1573         PTLDEBUG=+malloc
1574         setup
1575         cleanup
1576         perl $SRCDIR/leak_finder.pl $TMP/debug 2>&1 | egrep '*** Leak:' &&
1577                 error "memory leak detected" || true
1578 }
1579 run_test 39 "leak_finder recognizes both LUSTRE and LNET malloc messages"
1580
1581 test_40() { # bug 15759
1582         start_ost
1583         #define OBD_FAIL_TGT_TOOMANY_THREADS     0x706
1584         do_facet $SINGLEMDS "sysctl -w lustre.fail_loc=0x80000706"
1585         start_mds
1586         cleanup
1587 }
1588 run_test 40 "race during service thread startup"
1589
1590 test_41() { #bug 14134
1591         local rc
1592         local MDSDEV=$(mdsdevname ${SINGLEMDS//mds/})
1593
1594         start $SINGLEMDS $MDSDEV $MDS_MOUNT_OPTS -o nosvc -n
1595         start ost1 `ostdevname 1` $OST_MOUNT_OPTS
1596         start $SINGLEMDS $MDSDEV $MDS_MOUNT_OPTS -o nomgs,force
1597         mkdir -p $MOUNT
1598         mount_client $MOUNT || return 1
1599         sleep 5
1600
1601         echo "blah blah" > $MOUNT/$tfile
1602         cat $MOUNT/$tfile
1603
1604         umount_client $MOUNT
1605         stop ost1 -f || return 201
1606         stop_mds -f || return 202
1607         stop_mds -f || return 203
1608         unload_modules || return 204
1609         return $rc
1610 }
1611 run_test 41 "mount mds with --nosvc and --nomgs"
1612
1613 test_42() { #bug 14693
1614         setup
1615         check_mount || return 2
1616         do_facet mgs $LCTL conf_param llite.$FSNAME.some_wrong_param=10
1617         umount_client $MOUNT
1618         mount_client $MOUNT || return 1
1619         cleanup
1620         return 0
1621 }
1622 run_test 42 "invalid config param should not prevent client from mounting"
1623
1624 test_43() {
1625     [ $UID -ne 0 -o $RUNAS_ID -eq 0 ] && skip_env "run as root"
1626     setup
1627     chmod ugo+x $DIR || error "chmod 0 failed"
1628     set_and_check mds                                        \
1629         "lctl get_param -n mdt.$FSNAME-MDT0000.root_squash"  \
1630         "mdt.$FSNAME-MDT*.root_squash"                       \
1631         "0:0"
1632     set_and_check mds                                        \
1633        "lctl get_param -n mdt.$FSNAME-MDT0000.nosquash_nids" \
1634        "mdt.$FSNAME-MDT*.nosquash_nids"                      \
1635        "NONE"
1636
1637     #
1638     # create set of test files
1639     #
1640     echo "111" > $DIR/$tfile-userfile || error "write 1 failed"
1641     chmod go-rw $DIR/$tfile-userfile  || error "chmod 1 failed"
1642     chown $RUNAS_ID.$RUNAS_ID $DIR/$tfile-userfile || error "chown failed"
1643
1644     echo "222" > $DIR/$tfile-rootfile || error "write 2 failed"
1645     chmod go-rw $DIR/$tfile-rootfile  || error "chmod 2 faield"
1646
1647     mkdir $DIR/$tdir-rootdir -p       || error "mkdir failed"
1648     chmod go-rwx $DIR/$tdir-rootdir   || error "chmod 3 failed"
1649     touch $DIR/$tdir-rootdir/tfile-1  || error "touch failed"
1650
1651     #
1652     # check root_squash:
1653     #   set root squash UID:GID to RUNAS_ID
1654     #   root should be able to access only files owned by RUNAS_ID
1655     #
1656     set_and_check mds                                        \
1657        "lctl get_param -n mdt.$FSNAME-MDT0000.root_squash"   \
1658        "mdt.$FSNAME-MDT*.root_squash"                        \
1659        "$RUNAS_ID:$RUNAS_ID"
1660
1661     ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tfile-userfile)
1662     dd if=$DIR/$tfile-userfile 1>/dev/null 2>/dev/null || \
1663         error "$ST: root read permission is denied"
1664     echo "$ST: root read permission is granted - ok"
1665
1666     echo "444" | \
1667     dd conv=notrunc if=$DIR/$tfile-userfile 1>/dev/null 2>/dev/null || \
1668         error "$ST: root write permission is denied"
1669     echo "$ST: root write permission is granted - ok"
1670
1671     ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tfile-rootfile)
1672     dd if=$DIR/$tfile-rootfile 1>/dev/null 2>/dev/null && \
1673         error "$ST: root read permission is granted"
1674     echo "$ST: root read permission is denied - ok"
1675
1676     echo "555" | \
1677     dd conv=notrunc of=$DIR/$tfile-rootfile 1>/dev/null 2>/dev/null && \
1678         error "$ST: root write permission is granted"
1679     echo "$ST: root write permission is denied - ok"
1680
1681     ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tdir-rootdir)
1682     rm $DIR/$tdir-rootdir/tfile-1 1>/dev/null 2>/dev/null && \
1683         error "$ST: root unlink permission is granted"
1684     echo "$ST: root unlink permission is denied - ok"
1685
1686     touch $DIR/tdir-rootdir/tfile-2 1>/dev/null 2>/dev/null && \
1687         error "$ST: root create permission is granted"
1688     echo "$ST: root create permission is denied - ok"
1689
1690     #
1691     # check nosquash_nids:
1692     #   put client's NID into nosquash_nids list,
1693     #   root should be able to access root file after that
1694     #
1695     local NIDLIST=$(lctl list_nids all | tr '\n' ' ')
1696     NIDLIST="2@elan $NIDLIST 192.168.0.[2,10]@tcp"
1697     NIDLIST=$(echo $NIDLIST | tr -s ' ' ' ')
1698     set_and_check mds                                        \
1699        "lctl get_param -n mdt.$FSNAME-MDT0000.nosquash_nids" \
1700        "mdt.$FSNAME-MDT*.nosquash_nids"                      \
1701        "$NIDLIST"
1702
1703     ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tfile-rootfile)
1704     dd if=$DIR/$tfile-rootfile 1>/dev/null 2>/dev/null || \
1705         error "$ST: root read permission is denied"
1706     echo "$ST: root read permission is granted - ok"
1707
1708     echo "666" | \
1709     dd conv=notrunc of=$DIR/$tfile-rootfile 1>/dev/null 2>/dev/null || \
1710         error "$ST: root write permission is denied"
1711     echo "$ST: root write permission is granted - ok"
1712
1713     ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tdir-rootdir)
1714     rm $DIR/$tdir-rootdir/tfile-1 || \
1715         error "$ST: root unlink permission is denied"
1716     echo "$ST: root unlink permission is granted - ok"
1717     touch $DIR/$tdir-rootdir/tfile-2 || \
1718         error "$ST: root create permission is denied"
1719     echo "$ST: root create permission is granted - ok"
1720
1721     return 0
1722 }
1723 run_test 43 "check root_squash and nosquash_nids"
1724
1725 umount_client $MOUNT
1726 cleanup_nocli
1727
1728 test_44() { # 16317
1729         setup
1730         check_mount || return 2
1731         UUID=$($LCTL get_param llite.${FSNAME}*.uuid | cut -d= -f2)
1732         STATS_FOUND=no
1733         UUIDS=$(do_facet mds "$LCTL get_param mdt.${FSNAME}*.exports.*.uuid")
1734         for VAL in $UUIDS; do
1735                 NID=$(echo $VAL | cut -d= -f1)
1736                 CLUUID=$(echo $VAL | cut -d= -f2)
1737                 [ "$UUID" = "$CLUUID" ] && STATS_FOUND=yes && break
1738         done
1739         [ "$STATS_FOUND" = "no" ] && error "stats not found for client"
1740         cleanup
1741         return 0
1742 }
1743 run_test 44 "mounted client proc entry exists"
1744
1745 test_45() { #17310
1746         setup
1747         check_mount || return 2
1748         stop_mds
1749         df -h $MOUNT &
1750         log "sleep 60 sec"
1751         sleep 60
1752 #define OBD_FAIL_PTLRPC_LONG_UNLINK   0x50f
1753         do_facet client "lctl set_param fail_loc=0x50f"
1754         log "sleep 10 sec"
1755         sleep 10
1756         manual_umount_client --force || return 3
1757         do_facet client "lctl set_param fail_loc=0x0"
1758         start_mds
1759         mount_client $MOUNT || return 4
1760         cleanup
1761         return 0
1762 }
1763 run_test 45 "long unlink handling in ptlrpcd"
1764
1765 cleanup_46a() {
1766         trap 0
1767         local rc=0
1768         local count=$1
1769
1770         umount_client $MOUNT2 || rc=$?
1771         umount_client $MOUNT || rc=$?
1772         while [ $count -gt 0 ]; do
1773                 stop ost${count} -f || rc=$?
1774                 let count=count-1
1775         done    
1776         stop_mds || rc=$? 
1777         cleanup_nocli || rc=$?
1778         #writeconf to remove all ost2 traces for subsequent tests
1779         writeconf
1780         return $rc
1781 }
1782
1783 test_46a() {
1784         echo "Testing with $OSTCOUNT OSTs"
1785         reformat_and_config
1786         start_mds || return 1
1787         #first client should see only one ost
1788         start_ost || return 2
1789         wait_osc_import_state mds ost FULL
1790         #start_client
1791         mount_client $MOUNT || return 3
1792         trap "cleanup_46a $OSTCOUNT" EXIT ERR
1793
1794         local i 
1795         for (( i=2; i<=$OSTCOUNT; i++ )); do
1796             start ost$i `ostdevname $i` $OST_MOUNT_OPTS || return $((i+2))
1797         done
1798
1799         # wait until osts in sync
1800         for (( i=2; i<=$OSTCOUNT; i++ )); do
1801             wait_osc_import_state mds ost$i FULL
1802         done
1803
1804
1805         #second client see all ost's
1806
1807         mount_client $MOUNT2 || return 8
1808         $LFS setstripe $MOUNT2 -c -1 || return 9
1809         $LFS getstripe $MOUNT2 || return 10
1810
1811         echo "ok" > $MOUNT2/widestripe
1812         $LFS getstripe $MOUNT2/widestripe || return 11
1813         # fill acl buffer for avoid expand lsm to them
1814         awk -F : '{if (FNR < 25) { print "u:"$1":rwx" }}' /etc/passwd | while read acl; do
1815             setfacl -m $acl $MOUNT2/widestripe
1816         done
1817
1818         # will be deadlock
1819         stat $MOUNT/widestripe || return 12
1820
1821         cleanup_46a $OSTCOUNT || { echo "cleanup_46a failed!" && return 13; }
1822         return 0
1823 }
1824 run_test 46a "handle ost additional - wide striped file"
1825
1826 test_47() { #17674
1827         reformat
1828         setup_noconfig
1829         check_mount || return 2
1830         $LCTL set_param ldlm.namespaces.$FSNAME-*-*-*.lru_size=100
1831
1832         local lru_size=[]
1833         local count=0
1834         for ns in $($LCTL get_param ldlm.namespaces.$FSNAME-*-*-*.lru_size); do
1835             if echo $ns | grep "MDT[[:digit:]]*"; then
1836                 continue
1837             fi
1838             lrs=$(echo $ns | sed 's/.*lru_size=//')
1839             lru_size[count]=$lrs
1840             let count=count+1
1841         done
1842
1843         facet_failover ost1
1844         facet_failover $SINGLEMDS
1845         client_up || return 3
1846
1847         count=0
1848         for ns in $($LCTL get_param ldlm.namespaces.$FSNAME-*-*-*.lru_size); do
1849             if echo $ns | grep "MDT[[:digit:]]*"; then
1850                 continue
1851             fi
1852             lrs=$(echo $ns | sed 's/.*lru_size=//')
1853             if ! test "$lrs" -eq "${lru_size[count]}"; then
1854                 n=$(echo $ns | sed -e 's/ldlm.namespaces.//' -e 's/.lru_size=.*//')
1855                 error "$n has lost lru_size: $lrs vs. ${lru_size[count]}"
1856             fi
1857             let count=count+1
1858         done
1859
1860         cleanup
1861         return 0
1862 }
1863 run_test 47 "server restart does not make client loss lru_resize settings"
1864
1865 cleanup_48() {
1866         trap 0
1867
1868         # reformat after this test is needed - if test will failed
1869         # we will have unkillable file at FS
1870         reformat_and_config
1871 }
1872
1873 test_48() { # bug 17636
1874         reformat
1875         setup_noconfig
1876         check_mount || return 2
1877
1878         $LFS setstripe $MOUNT -c -1 || return 9
1879         $LFS getstripe $MOUNT || return 10
1880
1881         echo "ok" > $MOUNT/widestripe
1882         $LFS getstripe $MOUNT/widestripe || return 11
1883
1884         trap cleanup_48 EXIT ERR
1885
1886         # fill acl buffer for avoid expand lsm to them
1887         getent passwd | awk -F : '{ print "u:"$1":rwx" }' |  while read acl; do
1888             setfacl -m $acl $MOUNT/widestripe
1889         done
1890
1891         stat $MOUNT/widestripe || return 12
1892
1893         cleanup_48
1894         return 0
1895 }
1896 run_test 48 "too many acls on file"
1897
1898 # check PARAM_SYS_LDLM_TIMEOUT option of MKFS.LUSTRE
1899 test_49() { # bug 17710
1900         local OLD_MDS_MKFS_OPTS=$MDS_MKFS_OPTS
1901         local OLD_OST_MKFS_OPTS=$OST_MKFS_OPTS
1902         local LOCAL_TIMEOUT=20
1903
1904
1905         OST_MKFS_OPTS="--ost --fsname=$FSNAME --device-size=$OSTSIZE --mgsnode=$MGSNID --param sys.timeout=$LOCAL_TIMEOUT --param sys.ldlm_timeout=$LOCAL_TIMEOUT $MKFSOPT $OSTOPT"
1906
1907         reformat
1908         setup_noconfig
1909         check_mount || return 1
1910
1911         echo "check ldlm_timout..."
1912         LDLM_MDS="`do_facet mds lctl get_param -n ldlm_timeout`"
1913         LDLM_OST1="`do_facet ost1 lctl get_param -n ldlm_timeout`"
1914         LDLM_CLIENT="`do_facet client lctl get_param -n ldlm_timeout`"
1915
1916         if [ $LDLM_MDS -ne $LDLM_OST1 ] || [ $LDLM_MDS -ne $LDLM_CLIENT ]; then
1917                 error "Different LDLM_TIMEOUT:$LDLM_MDS $LDLM_OST1 $LDLM_CLIENT"
1918         fi
1919
1920         if [ $LDLM_MDS -ne $((LOCAL_TIMEOUT / 3)) ]; then
1921                 error "LDLM_TIMEOUT($LDLM_MDS) is not correct"
1922         fi
1923
1924         umount_client $MOUNT
1925         stop_ost || return 2
1926         stop_mds || return 3
1927
1928         OST_MKFS_OPTS="--ost --fsname=$FSNAME --device-size=$OSTSIZE --mgsnode=$MGSNID --param sys.timeout=$LOCAL_TIMEOUT --param sys.ldlm_timeout=$((LOCAL_TIMEOUT - 1)) $MKFSOPT $OSTOPT"
1929
1930         reformat
1931         setup_noconfig
1932         check_mount || return 7
1933
1934         LDLM_MDS="`do_facet mds lctl get_param -n ldlm_timeout`"
1935         LDLM_OST1="`do_facet ost1 lctl get_param -n ldlm_timeout`"
1936         LDLM_CLIENT="`do_facet client lctl get_param -n ldlm_timeout`"
1937
1938         if [ $LDLM_MDS -ne $LDLM_OST1 ] || [ $LDLM_MDS -ne $LDLM_CLIENT ]; then
1939                 error "Different LDLM_TIMEOUT:$LDLM_MDS $LDLM_OST1 $LDLM_CLIENT"
1940         fi
1941
1942         if [ $LDLM_MDS -ne $((LOCAL_TIMEOUT - 1)) ]; then
1943                 error "LDLM_TIMEOUT($LDLM_MDS) is not correct"
1944         fi
1945
1946         cleanup || return $?
1947
1948         MDS_MKFS_OPTS=$OLD_MDS_MKFS_OPTS
1949         OST_MKFS_OPTS=$OLD_OST_MKFS_OPTS
1950 }
1951 run_test 49 "check PARAM_SYS_LDLM_TIMEOUT option of MKFS.LUSTRE"
1952
1953 lazystatfs() {
1954         # Test both statfs and lfs df and fail if either one fails
1955         multiop_bg_pause $1 f_
1956         RC1=$?
1957         PID=$!
1958         killall -USR1 multiop
1959         [ $RC1 -ne 0 ] && log "lazystatfs multiop failed"
1960         wait $PID || { RC1=$?; log "multiop return error "; }
1961
1962         $LFS df &
1963         PID=$!
1964         sleep 5
1965         kill -s 0 $PID
1966         RC2=$?
1967         if [ $RC2 -eq 0 ]; then
1968             kill -s 9 $PID
1969             log "lazystatfs df failed"
1970         fi
1971
1972         RC=0
1973         [[ $RC1 -ne 0 || $RC2 -eq 0 ]] && RC=1
1974         return $RC
1975 }
1976
1977 test_50a() {
1978         setup
1979         lctl set_param llite.$FSNAME-*.lazystatfs=1
1980         touch $DIR/$tfile
1981
1982         lazystatfs $MOUNT || error "lazystatfs failed but no down servers"
1983
1984         cleanup || return $?
1985 }
1986 run_test 50a "lazystatfs all servers available =========================="
1987
1988 test_50b() {
1989         setup
1990         lctl set_param llite.$FSNAME-*.lazystatfs=1
1991         touch $DIR/$tfile
1992
1993         # Wait for client to detect down OST
1994         stop_ost || error "Unable to stop OST1"
1995         wait_osc_import_state mds ost DISCONN
1996
1997         lazystatfs $MOUNT || error "lazystatfs should don't have returned EIO"
1998
1999         umount_client $MOUNT || error "Unable to unmount client"
2000         stop_mds || error "Unable to stop MDS"
2001 }
2002 run_test 50b "lazystatfs all servers down =========================="
2003
2004 test_50c() {
2005         start_mds || error "Unable to start MDS"
2006         start_ost || error "Unable to start OST1"
2007         start_ost2 || error "Unable to start OST2"
2008         mount_client $MOUNT || error "Unable to mount client"
2009         lctl set_param llite.$FSNAME-*.lazystatfs=1
2010         touch $DIR/$tfile
2011
2012         # Wait for client to detect down OST
2013         stop_ost || error "Unable to stop OST1"
2014         wait_osc_import_state mds ost DISCONN
2015         lazystatfs $MOUNT || error "lazystatfs failed with one down server"
2016
2017         umount_client $MOUNT || error "Unable to unmount client"
2018         stop_ost2 || error "Unable to stop OST2"
2019         stop_mds || error "Unable to stop MDS"
2020 }
2021 run_test 50c "lazystatfs one server down =========================="
2022
2023 test_50d() {
2024         start_mds || error "Unable to start MDS"
2025         start_ost || error "Unable to start OST1"
2026         start_ost2 || error "Unable to start OST2"
2027         mount_client $MOUNT || error "Unable to mount client"
2028         lctl set_param llite.$FSNAME-*.lazystatfs=1
2029         touch $DIR/$tfile
2030
2031         # Issue the statfs during the window where the client still
2032         # belives the OST to be available but it is in fact down.
2033         # No failure just a statfs which hangs for a timeout interval.
2034         stop_ost || error "Unable to stop OST1"
2035         lazystatfs $MOUNT || error "lazystatfs failed with one down server"
2036
2037         umount_client $MOUNT || error "Unable to unmount client"
2038         stop_ost2 || error "Unable to stop OST2"
2039         stop_mds || error "Unable to stop MDS"
2040 }
2041 run_test 50d "lazystatfs client/server conn race =========================="
2042
2043 test_50e() {
2044         local RC1
2045         local pid
2046
2047         reformat_and_config
2048         start_mds || return 1
2049         #first client should see only one ost
2050         start_ost || return 2
2051         wait_osc_import_state mds ost FULL
2052
2053         # Wait for client to detect down OST
2054         stop_ost || error "Unable to stop OST1"
2055         wait_osc_import_state mds ost DISCONN
2056
2057         mount_client $MOUNT || error "Unable to mount client"
2058         lctl set_param llite.$FSNAME-*.lazystatfs=0
2059
2060         multiop_bg_pause $MOUNT _f
2061         RC1=$?
2062         pid=$!
2063
2064         if [ $RC1 -ne 0 ]; then
2065                 log "multiop failed $RC1"
2066         else
2067             kill -USR1 $pid
2068             sleep $(( $TIMEOUT+1 ))
2069             kill -0 $pid
2070             [ $? -ne 0 ] && error "process isn't sleep"
2071             start_ost || error "Unable to start OST1"
2072             wait $pid || error "statfs failed"
2073         fi
2074
2075         umount_client $MOUNT || error "Unable to unmount client"
2076         stop_ost || error "Unable to stop OST1"
2077         stop_mds || error "Unable to stop MDS"
2078 }
2079 run_test 50e "normal statfs all servers down =========================="
2080
2081 test_50f() {
2082         local RC1
2083         local pid
2084         CONN_PROC="osc.$FSNAME-OST0001-osc-[M]*.ost_server_uuid"
2085
2086         start_mds || error "Unable to start mds"
2087         #first client should see only one ost
2088         start_ost || error "Unable to start OST1"
2089         wait_osc_import_state mds ost FULL
2090
2091         start_ost2 || error "Unable to start OST2"
2092         wait_osc_import_state mds ost2 FULL
2093
2094         # Wait for client to detect down OST
2095         stop_ost2 || error "Unable to stop OST2"
2096
2097         wait_osc_import_state mds ost2 DISCONN
2098         mount_client $MOUNT || error "Unable to mount client"
2099         lctl set_param llite.$FSNAME-*.lazystatfs=0
2100
2101         multiop_bg_pause $MOUNT _f
2102         RC1=$?
2103         pid=$!
2104
2105         if [ $RC1 -ne 0 ]; then
2106                 log "lazystatfs multiop failed $RC1"
2107         else
2108             kill -USR1 $pid
2109             sleep $(( $TIMEOUT+1 ))
2110             kill -0 $pid
2111             [ $? -ne 0 ] && error "process isn't sleep"
2112             start_ost2 || error "Unable to start OST2"
2113             wait $pid || error "statfs failed"
2114             stop_ost2 || error "Unable to stop OST2"
2115         fi
2116
2117         umount_client $MOUNT || error "Unable to unmount client"
2118         stop_ost || error "Unable to stop OST1"
2119         stop_mds || error "Unable to stop MDS"
2120         #writeconf to remove all ost2 traces for subsequent tests
2121         writeconf
2122 }
2123 run_test 50f "normal statfs one server in down =========================="
2124
2125 test_50g() {
2126         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2, skipping" && return
2127         setup
2128         start_ost2 || error "Unable to start OST2"
2129
2130         local PARAM="${FSNAME}-OST0001.osc.active"
2131
2132         $LFS setstripe -c -1 $DIR/$tfile || error "Unable to lfs setstripe"
2133         do_facet mgs $LCTL conf_param $PARAM=0 || error "Unable to deactivate OST"
2134
2135         umount_client $MOUNT || error "Unable to unmount client"
2136         mount_client $MOUNT || error "Unable to mount client"
2137         # This df should not cause a panic
2138         df -k $MOUNT
2139
2140         do_facet mgs $LCTL conf_param $PARAM=1 || error "Unable to activate OST"
2141         rm -f $DIR/$tfile
2142         umount_client $MOUNT || error "Unable to unmount client"
2143         stop_ost2 || error "Unable to stop OST2"
2144         stop_ost || error "Unable to stop OST1"
2145         stop_mds || error "Unable to stop MDS"
2146         #writeconf to remove all ost2 traces for subsequent tests
2147         writeconf
2148 }
2149 run_test 50g "deactivated OST should not cause panic====================="
2150
2151 test_51() {
2152         local LOCAL_TIMEOUT=20
2153
2154         reformat
2155         setup_noconfig
2156         check_mount || return 1
2157
2158         mkdir $MOUNT/d1
2159         $LFS setstripe -c -1 $MOUNT/d1
2160         #define OBD_FAIL_MDS_REINT_DELAY         0x142
2161         do_facet $SINGLEMDS "lctl set_param fail_loc=0x142"
2162         touch $MOUNT/d1/f1 &
2163         local pid=$!
2164         sleep 2
2165         start_ost2 || return 2
2166         wait $pid
2167         stop_ost2 || return 3
2168         cleanup
2169 }
2170 run_test 51 "Verify that mdt_reint handles RMF_MDT_MD correctly when an OST is added"
2171
2172 copy_files_xattrs()
2173 {
2174         local node=$1
2175         local dest=$2
2176         local xattrs=$3
2177         shift 3
2178
2179         do_node $node mkdir -p $dest
2180         [ $? -eq 0 ] || { error "Unable to create directory"; return 1; }
2181
2182         do_node $node  'tar cf - '$@' | tar xf - -C '$dest';
2183                         [ \"\${PIPESTATUS[*]}\" = \"0 0\" ] || exit 1'
2184         [ $? -eq 0 ] || { error "Unable to tar files"; return 2; }
2185
2186         do_node $node 'getfattr -d -m "[a-z]*\\." '$@' > '$xattrs
2187         [ $? -eq 0 ] || { error "Unable to read xattrs"; return 3; }
2188 }
2189
2190 diff_files_xattrs()
2191 {
2192         local node=$1
2193         local backup=$2
2194         local xattrs=$3
2195         shift 3
2196
2197         local backup2=${TMP}/backup2
2198
2199         do_node $node mkdir -p $backup2
2200         [ $? -eq 0 ] || { error "Unable to create directory"; return 1; }
2201
2202         do_node $node  'tar cf - '$@' | tar xf - -C '$backup2';
2203                         [ \"\${PIPESTATUS[*]}\" = \"0 0\" ] || exit 1'
2204         [ $? -eq 0 ] || { error "Unable to tar files to diff"; return 2; }
2205
2206         do_node $node "diff -rq $backup $backup2"
2207         [ $? -eq 0 ] || { error "contents differ"; return 3; }
2208
2209         local xattrs2=${TMP}/xattrs2
2210         do_node $node 'getfattr -d -m "[a-z]*\\." '$@' > '$xattrs2
2211         [ $? -eq 0 ] || { error "Unable to read xattrs to diff"; return 4; }
2212
2213         do_node $node "diff $xattrs $xattrs2"
2214         [ $? -eq 0 ] || { error "xattrs differ"; return 5; }
2215
2216         do_node $node "rm -rf $backup2 $xattrs2"
2217         [ $? -eq 0 ] || { error "Unable to delete temporary files"; return 6; }
2218 }
2219
2220 test_52() {
2221         start_mds
2222         [ $? -eq 0 ] || { error "Unable to start MDS"; return 1; }
2223         start_ost
2224         [ $? -eq 0 ] || { error "Unable to start OST1"; return 2; }
2225         mount_client $MOUNT
2226         [ $? -eq 0 ] || { error "Unable to mount client"; return 3; }
2227
2228         local nrfiles=8
2229         local ost1mnt=${MOUNT%/*}/ost1
2230         local ost1node=$(facet_active_host ost1)
2231         local ost1tmp=$TMP/conf52
2232
2233         mkdir -p $DIR/$tdir
2234         [ $? -eq 0 ] || { error "Unable to create tdir"; return 4; }
2235         touch $TMP/modified_first
2236         [ $? -eq 0 ] || { error "Unable to create temporary file"; return 5; }
2237         do_node $ost1node "mkdir -p $ost1tmp && touch $ost1tmp/modified_first"
2238         [ $? -eq 0 ] || { error "Unable to create temporary file"; return 6; }
2239         sleep 1
2240
2241         $LFS setstripe $DIR/$tdir -c -1 -s 1M
2242         [ $? -eq 0 ] || { error "lfs setstripe failed"; return 7; }
2243
2244         for (( i=0; i < nrfiles; i++ )); do
2245                 multiop $DIR/$tdir/$tfile-$i Ow1048576w1048576w524288c
2246                 [ $? -eq 0 ] || { error "multiop failed"; return 8; }
2247                 echo -n .
2248         done
2249         echo
2250
2251         # backup files
2252         echo backup files to $TMP/files
2253         local files=$(find $DIR/$tdir -type f -newer $TMP/modified_first)
2254         copy_files_xattrs `hostname` $TMP/files $TMP/file_xattrs $files
2255         [ $? -eq 0 ] || { error "Unable to copy files"; return 9; }
2256
2257         umount_client $MOUNT
2258         [ $? -eq 0 ] || { error "Unable to umount client"; return 10; }
2259         stop_ost
2260         [ $? -eq 0 ] || { error "Unable to stop ost1"; return 11; }
2261
2262         echo mount ost1 as ldiskfs
2263         do_node $ost1node mount -t $FSTYPE $ost1_dev $ost1mnt $OST_MOUNT_OPTS
2264         [ $? -eq 0 ] || { error "Unable to mount ost1 as ldiskfs"; return 12; }
2265
2266         # backup objects
2267         echo backup objects to $ost1tmp/objects
2268         local objects=$(do_node $ost1node 'find '$ost1mnt'/O/0 -type f -size +0'\
2269                         '-newer '$ost1tmp'/modified_first -regex ".*\/[0-9]+"')
2270         copy_files_xattrs $ost1node $ost1tmp/objects $ost1tmp/object_xattrs $objects
2271         [ $? -eq 0 ] || { error "Unable to copy objects"; return 13; }
2272
2273         # move objects to lost+found
2274         do_node $ost1node 'mv '$objects' '${ost1mnt}'/lost+found'
2275         [ $? -eq 0 ] || { error "Unable to move objects"; return 14; }
2276
2277         # recover objects
2278         do_node $ost1node "ll_recover_lost_found_objs -d $ost1mnt/lost+found"
2279         [ $? -eq 0 ] || { error "ll_recover_lost_found_objs failed"; return 15; }
2280
2281         # compare restored objects against saved ones
2282         diff_files_xattrs $ost1node $ost1tmp/objects $ost1tmp/object_xattrs $objects
2283         [ $? -eq 0 ] || { error "Unable to diff objects"; return 16; }
2284
2285         do_node $ost1node "umount $ost1_dev"
2286         [ $? -eq 0 ] || { error "Unable to umount ost1 as ldiskfs"; return 17; }
2287
2288         start_ost
2289         [ $? -eq 0 ] || { error "Unable to start ost1"; return 18; }
2290         mount_client $MOUNT
2291         [ $? -eq 0 ] || { error "Unable to mount client"; return 19; }
2292
2293         # compare files
2294         diff_files_xattrs `hostname` $TMP/files $TMP/file_xattrs $files
2295         [ $? -eq 0 ] || { error "Unable to diff files"; return 20; }
2296
2297         rm -rf $TMP/files $TMP/file_xattrs
2298         [ $? -eq 0 ] || { error "Unable to delete temporary files"; return 21; }
2299         do_node $ost1node "rm -rf $ost1tmp"
2300         [ $? -eq 0 ] || { error "Unable to delete temporary files"; return 22; }
2301         cleanup
2302 }
2303 run_test 52 "check recovering objects from lost+found"
2304
2305 # Checks threads_min/max/started for some service
2306 #
2307 # Arguments: service name (OST or MDT), facet (e.g., ost1, $SINGLEMDS), and a
2308 # parameter pattern prefix like 'ost.*.ost'.
2309 thread_sanity() {
2310         local modname=$1
2311         local facet=$2
2312         local parampat=$3
2313         local opts=$4
2314         local tmin
2315         local tmin2
2316         local tmax
2317         local tmax2
2318         local tstarted
2319         local paramp
2320         local msg="Insane $modname thread counts"
2321         shift 4
2322
2323         setup
2324         check_mount || return 41
2325
2326         # We need to expand $parampat, but it may match multiple parameters, so
2327         # we'll pick the first one
2328         paramp=$(do_facet $facet "lctl get_param -N ${parampat}.threads_min"|head -1)
2329         if [ -z "$paramp" ]; then
2330                 error "Couldn't expand ${parampat}.threads_min parameter name"
2331                 return 22
2332         fi
2333
2334         # Remove the .threads_min part
2335         paramp=${paramp%.threads_min}
2336
2337         # Check for sanity in defaults
2338         tmin=$(do_facet $facet "lctl get_param -n ${paramp}.threads_min" || echo 0)
2339         tmax=$(do_facet $facet "lctl get_param -n ${paramp}.threads_max" || echo 0)
2340         tstarted=$(do_facet $facet "lctl get_param -n ${paramp}.threads_started" || echo 0)
2341         lassert 23 "$msg (PDSH problems?)" '(($tstarted && $tmin && $tmax))' || return $?
2342         lassert 24 "$msg" '(($tstarted >= $tmin && $tstarted <= tmax ))' || return $?
2343
2344         # Check that we can lower min/max
2345         do_facet $facet "lctl set_param ${paramp}.threads_min=$((tmin - 1))"
2346         do_facet $facet "lctl set_param ${paramp}.threads_max=$((tmax - 10))"
2347         tmin2=$(do_facet $facet "lctl get_param -n ${paramp}.threads_min" || echo 0)
2348         tmax2=$(do_facet $facet "lctl get_param -n ${paramp}.threads_max" || echo 0)
2349         lassert 25 "$msg" '(($tmin2 == ($tmin - 1) && $tmax2 == ($tmax -10)))' || return $?
2350
2351         # Check that we can set min/max to the same value
2352         do_facet $facet "lctl set_param ${paramp}.threads_min=$tmin"
2353         do_facet $facet "lctl set_param ${paramp}.threads_max=$tmin"
2354         tmin2=$(do_facet $facet "lctl get_param -n ${paramp}.threads_min" || echo 0)
2355         tmax2=$(do_facet $facet "lctl get_param -n ${paramp}.threads_max" || echo 0)
2356         lassert 26 "$msg" '(($tmin2 == $tmin && $tmax2 == $tmin))' || return $?
2357
2358         # Check that we can't set max < min
2359         do_facet $facet "lctl set_param ${paramp}.threads_max=$((tmin - 1))"
2360         tmin2=$(do_facet $facet "lctl get_param -n ${paramp}.threads_min" || echo 0)
2361         tmax2=$(do_facet $facet "lctl get_param -n ${paramp}.threads_max" || echo 0)
2362         lassert 27 "$msg" '(($tmin <= $tmax2))' || return $?
2363
2364         # We need to ensure that we get the module options desired; to do this
2365         # we set LOAD_MODULES_REMOTE=true and we call setmodopts below.
2366         LOAD_MODULES_REMOTE=true
2367         cleanup
2368         local oldvalue
2369         setmodopts -a $modname "$opts" oldvalue
2370
2371         load_modules
2372         setup
2373         check_mount || return 41
2374
2375         # Restore previous setting of MODOPTS_*
2376         setmodopts $modname "$oldvalue"
2377
2378         # Check that $opts took
2379         tmin=$(do_facet $facet "lctl get_param -n ${paramp}.threads_min")
2380         tmax=$(do_facet $facet "lctl get_param -n ${paramp}.threads_max")
2381         tstarted=$(do_facet $facet "lctl get_param -n ${paramp}.threads_started")
2382         lassert 28 "$msg" '(($tstarted == $tmin && $tstarted == $tmax ))' || return $?
2383         cleanup
2384
2385         # Workaround a YALA bug where YALA expects that modules will remain
2386         # loaded on the servers
2387         LOAD_MODULES_REMOTE=false
2388         load_modules
2389         setup
2390         cleanup
2391 }
2392
2393 test_53a() {
2394         thread_sanity OST ost1 'ost.*.ost' 'oss_num_threads=64'
2395 }
2396 run_test 53a "check OSS thread count params"
2397
2398 test_53b() {
2399         thread_sanity MDT $SINGLEMDS 'mdt.*.*.' 'mdt_num_threads=64'
2400 }
2401 run_test 53b "check MDT thread count params"
2402
2403 run_llverfs()
2404 {
2405         local dir=$1
2406         local partial_arg=""
2407         local size=$(df -B G $dir | tail -1 | awk '{print $2}' | sed 's/G//') # Gb
2408
2409         # Run in partial (fast) mode if the size
2410         # of a partition > 10 GB
2411         [ $size -gt 10 ] && partial_arg="-p"
2412
2413         llverfs $partial_arg $dir
2414 }
2415
2416 test_54a() {
2417     do_rpc_nodes $(facet_host ost1) run_llverdev $(ostdevname 1)
2418     [ $? -eq 0 ] || error "llverdev failed!"
2419     reformat_and_config
2420 }
2421 run_test 54a "llverdev"
2422
2423 test_54b() {
2424     setup
2425     run_llverfs $MOUNT
2426     [ $? -eq 0 ] || error "llverfs failed!"
2427     cleanup
2428 }
2429 run_test 54b "llverfs"
2430
2431 lov_objid_size()
2432 {
2433         local max_ost_index=$1
2434         echo -n $(((max_ost_index + 1) * 8))
2435 }
2436
2437 test_55() {
2438         local mdsdev=$(mdsdevname 1)
2439         local ostdev=$(ostdevname 1)
2440         local saved_opts=$OST_MKFS_OPTS
2441
2442         for i in 0 1023 2048
2443         do
2444                 OST_MKFS_OPTS="$saved_opts --index $i"
2445                 reformat
2446
2447                 setup_noconfig
2448                 stopall
2449
2450                 setup
2451                 sync
2452                 echo checking size of lov_objid for ost index $i
2453                 LOV_OBJID_SIZE=$(do_facet mds1 "$DEBUGFS -R 'stat lov_objid' $mdsdev 2>/dev/null" | grep ^User | awk '{print $6}')
2454                 if [ "$LOV_OBJID_SIZE" != $(lov_objid_size $i) ]; then
2455                         error "lov_objid size has to be $(lov_objid_size $i), not $LOV_OBJID_SIZE"
2456                 else
2457                         echo ok, lov_objid size is correct: $LOV_OBJID_SIZE
2458                 fi
2459                 stopall
2460         done
2461
2462         OST_MKFS_OPTS=$saved_opts
2463         reformat
2464 }
2465 run_test 55 "check lov_objid size"
2466
2467 test_56() {
2468         add mds1 $MDS_MKFS_OPTS --mkfsoptions='\"-J size=16\"' --reformat $(mdsdevname 1)
2469         add ost1 $OST_MKFS_OPTS --index=1000 --reformat $(ostdevname 1)
2470         add ost2 $OST_MKFS_OPTS --index=10000 --reformat $(ostdevname 2)
2471
2472         start_mds
2473         start_ost
2474         start_ost2 || error "Unable to start second ost"
2475         mount_client $MOUNT || error "Unable to mount client"
2476         echo ok
2477         $LFS osts
2478         stopall
2479         reformat
2480 }
2481 run_test 56 "check big indexes"
2482
2483 test_57() { # bug 22656
2484         local NID=$($LCTL list_nids | head -1)
2485         writeconf
2486         do_facet ost1 "$TUNEFS --failnode=$NID `ostdevname 1`" || error "tunefs failed"
2487         if ! combined_mgs_mds ; then
2488                 start_mgs
2489         fi
2490         start_mds
2491         start_ost && error "OST registration from failnode should fail"
2492         stop_mds
2493         reformat
2494 }
2495 run_test 57 "initial registration from failnode should fail (should return errs)"
2496
2497 count_osts() {
2498         do_facet mgs $LCTL get_param mgs.MGS.live.$FSNAME | grep OST | wc -l
2499 }
2500
2501 test_59() {
2502         start_mgsmds >> /dev/null
2503         local C1=$(count_osts)
2504         if [ $C1 -eq 0 ]; then
2505                 start_ost >> /dev/null
2506                 C1=$(count_osts)
2507         fi
2508         stopall
2509         echo "original ost count: $C1 (expect > 0)"
2510         [ $C1 -gt 0 ] || error "No OSTs in $FSNAME log"
2511         start_mgsmds -o writeconf >> /dev/null || error "MDT start failed"
2512         local C2=$(count_osts)
2513         echo "after mdt writeconf count: $C2 (expect 0)"
2514         [ $C2 -gt 0 ] && error "MDT writeconf should erase OST logs"
2515         echo "OST start without writeconf should fail:"
2516         start_ost >> /dev/null && error "OST start without writeconf didn't fail"
2517         echo "OST start with writeconf should succeed:"
2518         start_ost -o writeconf >> /dev/null || error "OST1 start failed"
2519         local C3=$(count_osts)
2520         echo "after ost writeconf count: $C3 (expect 1)"
2521         [ $C3 -eq 1 ] || error "new OST writeconf should add:"
2522         start_ost2 -o writeconf >> /dev/null || error "OST2 start failed"
2523         local C4=$(count_osts)
2524         echo "after ost2 writeconf count: $C4 (expect 2)"
2525         [ $C4 -eq 2 ] || error "OST2 writeconf should add log"
2526         stop_ost2 >> /dev/null
2527         cleanup_nocli >> /dev/null
2528 }
2529 run_test 59 "writeconf mount option"
2530
2531
2532 if ! combined_mgs_mds ; then
2533         stop mgs
2534 fi
2535 cleanup_gss
2536 equals_msg `basename $0`: test complete
2537 [ -f "$TESTSUITELOG" ] && cat $TESTSUITELOG && grep -q FAIL $TESTSUITELOG && exit 1 || true