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