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