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