Whamcloud - gitweb
LU-2059 mgs: don't fail on missing params log
[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 return codes,
4 #   espcially when most of them are mapped to something else anyway.
5 #   The tests should use error() to describe the failure more clearly,
6 #   and reduce the need to look into the tests to see what failed.
7
8 set -e
9
10 ONLY=${ONLY:-"$*"}
11
12 # bug number for skipped test:     LU-2828
13 ALWAYS_EXCEPT="$CONF_SANITY_EXCEPT 59 64"
14 # UPDATE THE COMMENT ABOVE WITH BUG NUMBERS WHEN CHANGING ALWAYS_EXCEPT!
15
16 is_sles11()                                             # LU-2181
17 {
18         if [ -r /etc/SuSE-release ]
19         then
20                 local vers=`grep VERSION /etc/SuSE-release | awk '{print $3}'`
21                 local patchlev=`grep PATCHLEVEL /etc/SuSE-release \
22                         | awk '{print $3}'`
23                 if [ $vers -eq 11 ] && [ $patchlev -eq 2 ]
24                 then
25                         return 0
26                 fi
27         fi
28         return 1
29 }
30
31 if is_sles11; then                                      # LU-2181
32         ALWAYS_EXCEPT="$ALWAYS_EXCEPT 23a 34b"
33 fi
34
35 if [ "$FAILURE_MODE" = "HARD" ]; then
36         CONFIG_EXCEPTIONS="24a " && \
37         echo "Except the tests: $CONFIG_EXCEPTIONS for FAILURE_MODE=$FAILURE_MODE, bug 23573" && \
38         ALWAYS_EXCEPT="$ALWAYS_EXCEPT $CONFIG_EXCEPTIONS"
39 fi
40
41 # bug number for skipped test:
42 # a tool to create lustre filesystem images
43 ALWAYS_EXCEPT="32newtarball $ALWAYS_EXCEPT"
44
45 SRCDIR=`dirname $0`
46 PATH=$PWD/$SRCDIR:$SRCDIR:$SRCDIR/../utils:$PATH
47
48 PTLDEBUG=${PTLDEBUG:--1}
49 SAVE_PWD=$PWD
50 LUSTRE=${LUSTRE:-`dirname $0`/..}
51 RLUSTRE=${RLUSTRE:-$LUSTRE}
52 export MULTIOP=${MULTIOP:-multiop}
53
54 . $LUSTRE/tests/test-framework.sh
55 init_test_env $@
56 . ${CONFIG:=$LUSTRE/tests/cfg/$NAME.sh}
57
58 # use small MDS + OST size to speed formatting time
59 # do not use too small MDSSIZE/OSTSIZE, which affect the default jouranl size
60 # STORED_MDSSIZE is used in test_18
61 STORED_MDSSIZE=$MDSSIZE
62 STORED_OSTSIZE=$OSTSIZE
63 MDSSIZE=200000
64 OSTSIZE=200000
65
66 if ! combined_mgs_mds; then
67     # bug number for skipped test:    23954
68     ALWAYS_EXCEPT="$ALWAYS_EXCEPT       24b"
69 fi
70
71 # pass "-E lazy_itable_init" to mke2fs to speed up the formatting time
72 if [[ "$LDISKFS_MKFS_OPTS" != *lazy_itable_init* ]]; then
73         LDISKFS_MKFS_OPTS=$(csa_add "$LDISKFS_MKFS_OPTS" -E lazy_itable_init)
74 fi
75
76 [ $(facet_fstype $SINGLEMDS) = "zfs" ] &&
77 # bug number for skipped test:        LU-2778 LU-4444
78         ALWAYS_EXCEPT="$ALWAYS_EXCEPT 57b     69"
79
80 init_logging
81
82 #
83 require_dsh_mds || exit 0
84 require_dsh_ost || exit 0
85 #
86 [ "$SLOW" = "no" ] && EXCEPT_SLOW="30a 31 45 69"
87
88
89 assert_DIR
90
91 gen_config() {
92         # The MGS must be started before the OSTs for a new fs, so start
93         # and stop to generate the startup logs.
94         start_mds
95         start_ost
96         wait_osc_import_state mds ost FULL
97         stop_ost
98         stop_mds
99 }
100
101 reformat_and_config() {
102         reformat
103         if ! combined_mgs_mds ; then
104                 start_mgs
105         fi
106         gen_config
107 }
108
109 writeconf_or_reformat() {
110         # There are at most 2 OSTs for write_conf test
111         # who knows if/where $TUNEFS is installed?
112         # Better reformat if it fails...
113         writeconf_all $MDSCOUNT 2 ||
114                 { echo "tunefs failed, reformatting instead" &&
115                   reformat_and_config && return 0; }
116         return 0
117 }
118
119 reformat() {
120         formatall
121 }
122
123 start_mgs () {
124         echo "start mgs"
125         start mgs $(mgsdevname) $MGS_MOUNT_OPTS
126 }
127
128 start_mdt() {
129         local num=$1
130         local facet=mds$num
131         local dev=$(mdsdevname $num)
132         shift 1
133
134         echo "start mds service on `facet_active_host $facet`"
135         start $facet ${dev} $MDS_MOUNT_OPTS $@ || return 94
136 }
137
138 stop_mdt() {
139         local num=$1
140         local facet=mds$num
141         local dev=$(mdsdevname $num)
142         shift 1
143
144         echo "stop mds service on `facet_active_host $facet`"
145         # These tests all use non-failover stop
146         stop $facet -f  || return 97
147 }
148
149 start_mds() {
150         local num
151
152         for num in $(seq $MDSCOUNT); do
153                 start_mdt $num $@ || return 94
154         done
155 }
156
157 start_mgsmds() {
158         if ! combined_mgs_mds ; then
159                 start_mgs
160         fi
161         start_mds $@
162 }
163
164 stop_mds() {
165         local num
166         for num in $(seq $MDSCOUNT); do
167                 stop_mdt $num || return 97
168         done
169 }
170
171 stop_mgs() {
172        echo "stop mgs service on `facet_active_host mgs`"
173        # These tests all use non-failover stop
174        stop mgs -f  || return 97
175 }
176
177 start_ost() {
178         echo "start ost1 service on `facet_active_host ost1`"
179         start ost1 `ostdevname 1` $OST_MOUNT_OPTS $@ || return 95
180 }
181
182 stop_ost() {
183         echo "stop ost1 service on `facet_active_host ost1`"
184         # These tests all use non-failover stop
185         stop ost1 -f  || return 98
186 }
187
188 start_ost2() {
189         echo "start ost2 service on `facet_active_host ost2`"
190         start ost2 `ostdevname 2` $OST_MOUNT_OPTS $@ || return 92
191 }
192
193 stop_ost2() {
194         echo "stop ost2 service on `facet_active_host ost2`"
195         # These tests all use non-failover stop
196         stop ost2 -f  || return 93
197 }
198
199 mount_client() {
200         local MOUNTPATH=$1
201         echo "mount $FSNAME on ${MOUNTPATH}....."
202         zconf_mount `hostname` $MOUNTPATH  || return 96
203 }
204
205 remount_client() {
206         local mountopt="-o remount,$1"
207         local MOUNTPATH=$2
208         echo "remount '$1' lustre on ${MOUNTPATH}....."
209         zconf_mount `hostname`  $MOUNTPATH "$mountopt"  || return 96
210 }
211
212 umount_client() {
213         local MOUNTPATH=$1
214         echo "umount lustre on ${MOUNTPATH}....."
215         zconf_umount `hostname` $MOUNTPATH || return 97
216 }
217
218 manual_umount_client(){
219         local rc
220         local FORCE=$1
221         echo "manual umount lustre on ${MOUNT}...."
222         do_facet client "umount -d ${FORCE} $MOUNT"
223         rc=$?
224         return $rc
225 }
226
227 setup() {
228         start_mds || error "MDT start failed"
229         start_ost || error "OST start failed"
230         mount_client $MOUNT || error "client start failed"
231         client_up || error "client_up failed"
232 }
233
234 setup_noconfig() {
235         if ! combined_mgs_mds ; then
236                 start_mgs
237         fi
238
239         start_mds
240         start_ost
241         mount_client $MOUNT
242 }
243
244 unload_modules_conf () {
245         if combined_mgs_mds || ! local_mode; then
246                 unload_modules || return 1
247         fi
248 }
249
250 cleanup_nocli() {
251         stop_ost || return 202
252         stop_mds || return 201
253         unload_modules_conf || return 203
254 }
255
256 cleanup() {
257         umount_client $MOUNT || return 200
258         cleanup_nocli || return $?
259 }
260
261 check_mount() {
262         do_facet client "cp /etc/passwd $DIR/a" || return 71
263         do_facet client "rm $DIR/a" || return 72
264         # make sure lustre is actually mounted (touch will block,
265         # but grep won't, so do it after)
266         do_facet client "grep $MOUNT' ' /proc/mounts > /dev/null" || return 73
267         echo "setup single mount lustre success"
268 }
269
270 check_mount2() {
271         do_facet client "touch $DIR/a" || return 71
272         do_facet client "rm $DIR/a" || return 72
273         do_facet client "touch $DIR2/a" || return 73
274         do_facet client "rm $DIR2/a" || return 74
275         echo "setup double mount lustre success"
276 }
277
278 build_test_filter
279
280 if [ "$ONLY" == "setup" ]; then
281         setup
282         exit
283 fi
284
285 if [ "$ONLY" == "cleanup" ]; then
286         cleanup
287         exit
288 fi
289
290 init_gss
291
292 #create single point mountpoint
293
294 reformat_and_config
295
296 test_0() {
297         setup
298         check_mount || return 41
299         cleanup || return $?
300 }
301 run_test 0 "single mount setup"
302
303 test_1() {
304         start_mds || error "MDT start failed"
305         start_ost
306         echo "start ost second time..."
307         start_ost && error "2nd OST start should fail"
308         mount_client $MOUNT || error "client start failed"
309         check_mount || return 42
310         cleanup || return $?
311 }
312 run_test 1 "start up ost twice (should return errors)"
313
314 test_2() {
315         start_mdt 1
316         echo "start mds second time.."
317         start_mdt 1 && error "2nd MDT start should fail"
318         start_ost
319         mount_client $MOUNT
320         check_mount || return 43
321         cleanup || return $?
322 }
323 run_test 2 "start up mds twice (should return err)"
324
325 test_3() {
326         setup
327         #mount.lustre returns an error if already in mtab
328         mount_client $MOUNT && error "2nd client mount should fail"
329         check_mount || return 44
330         cleanup || return $?
331 }
332 run_test 3 "mount client twice (should return err)"
333
334 test_4() {
335         setup
336         touch $DIR/$tfile || return 85
337         stop_ost -f
338         cleanup
339         eno=$?
340         # ok for ost to fail shutdown
341         if [ 202 -ne $eno ]; then
342                 return $eno;
343         fi
344         return 0
345 }
346 run_test 4 "force cleanup ost, then cleanup"
347
348 test_5a() {     # was test_5
349         setup
350         touch $DIR/$tfile || return 1
351         fuser -m -v $MOUNT && echo "$MOUNT is in use by user space process."
352
353         stop_mds -f || return 2
354
355         # cleanup may return an error from the failed
356         # disconnects; for now I'll consider this successful
357         # if all the modules have unloaded.
358         umount -d $MOUNT &
359         UMOUNT_PID=$!
360         sleep 6
361         echo "killing umount"
362         kill -TERM $UMOUNT_PID
363         echo "waiting for umount to finish"
364         wait $UMOUNT_PID
365         if grep " $MOUNT " /proc/mounts; then
366                 echo "test 5: /proc/mounts after failed umount"
367                 umount $MOUNT &
368                 UMOUNT_PID=$!
369                 sleep 2
370                 echo "killing umount"
371                 kill -TERM $UMOUNT_PID
372                 echo "waiting for umount to finish"
373                 wait $UMOUNT_PID
374                 grep " $MOUNT " /proc/mounts && echo "test 5: /proc/mounts after second umount" && return 11
375         fi
376
377         manual_umount_client
378         # stop_mds is a no-op here, and should not fail
379         cleanup_nocli || return $?
380         # df may have lingering entry
381         manual_umount_client
382         # mtab may have lingering entry
383         local WAIT=0
384         local MAX_WAIT=20
385         local sleep=1
386         while [ "$WAIT" -ne "$MAX_WAIT" ]; do
387                 sleep $sleep
388                 grep -q $MOUNT" " /etc/mtab || break
389                 echo "Waiting /etc/mtab updated ... "
390                 WAIT=$(( WAIT + sleep))
391         done
392         [ "$WAIT" -eq "$MAX_WAIT" ] && error "/etc/mtab is not updated in $WAIT secs"
393         echo "/etc/mtab updated in $WAIT secs"
394 }
395 run_test 5a "force cleanup mds, then cleanup"
396
397 cleanup_5b () {
398         trap 0
399         start_mgs
400 }
401
402 test_5b() {
403         grep " $MOUNT " /etc/mtab && \
404                 error false "unexpected entry in mtab before mount" && return 10
405
406         local rc=0
407         start_ost
408         if ! combined_mgs_mds ; then
409                 trap cleanup_5b EXIT ERR
410                 start_mds
411                 stop mgs
412         fi
413
414         [ -d $MOUNT ] || mkdir -p $MOUNT
415         mount_client $MOUNT && rc=1
416         grep " $MOUNT " /etc/mtab && \
417                 error "$MOUNT entry in mtab after failed mount" && rc=11
418         umount_client $MOUNT
419         # stop_mds is a no-op here, and should not fail
420         cleanup_nocli || rc=$?
421         if ! combined_mgs_mds ; then
422                 cleanup_5b
423         fi
424         return $rc
425 }
426 run_test 5b "Try to start a client with no MGS (should return errs)"
427
428 test_5c() {
429         grep " $MOUNT " /etc/mtab && \
430                 error false "unexpected entry in mtab before mount" && return 10
431
432         local rc=0
433         start_mds
434         start_ost
435         [ -d $MOUNT ] || mkdir -p $MOUNT
436         local oldfs="${FSNAME}"
437         FSNAME="wrong.${FSNAME}"
438         mount_client $MOUNT || :
439         FSNAME=${oldfs}
440         grep " $MOUNT " /etc/mtab && \
441                 error "$MOUNT entry in mtab after failed mount" && rc=11
442         umount_client $MOUNT
443         cleanup_nocli  || rc=$?
444         return $rc
445 }
446 run_test 5c "cleanup after failed mount (bug 2712) (should return errs)"
447
448 test_5d() {
449         grep " $MOUNT " /etc/mtab && \
450                 error false "unexpected entry in mtab before mount" && return 10
451
452         local rc=0
453         start_ost
454         start_mds
455         stop_ost -f
456         mount_client $MOUNT || rc=1
457         cleanup  || rc=$?
458         grep " $MOUNT " /etc/mtab && \
459                 error "$MOUNT entry in mtab after unmount" && rc=11
460         return $rc
461 }
462 run_test 5d "mount with ost down"
463
464 test_5e() {
465         grep " $MOUNT " /etc/mtab && \
466                 error false "unexpected entry in mtab before mount" && return 10
467
468         local rc=0
469         start_mds
470         start_ost
471
472 #define OBD_FAIL_PTLRPC_DELAY_SEND       0x506
473         do_facet client "lctl set_param fail_loc=0x80000506"
474         mount_client $MOUNT || echo "mount failed (not fatal)"
475         cleanup  || rc=$?
476         grep " $MOUNT " /etc/mtab && \
477                 error "$MOUNT entry in mtab after unmount" && rc=11
478         return $rc
479 }
480 run_test 5e "delayed connect, don't crash (bug 10268)"
481
482 test_5f() {
483         if combined_mgs_mds ; then
484                 skip "combined mgs and mds"
485                 return 0
486         fi
487
488         grep " $MOUNT " /etc/mtab && \
489                 error false "unexpected entry in mtab before mount" && return 10
490
491         local rc=0
492         start_ost
493         [ -d $MOUNT ] || mkdir -p $MOUNT
494         mount_client $MOUNT &
495         local pid=$!
496         echo client_mount pid is $pid
497
498         sleep 5
499
500         if ! ps -f -p $pid >/dev/null; then
501                 wait $pid
502                 rc=$?
503                 grep " $MOUNT " /etc/mtab && echo "test 5f: mtab after mount"
504                 error "mount returns $rc, expected to hang"
505                 rc=11
506                 cleanup || rc=$?
507                 return $rc
508         fi
509
510         # start mds
511         start_mds
512
513         # mount should succeed after start mds
514         wait $pid
515         rc=$?
516         [ $rc -eq 0 ] || error "mount returned $rc"
517         grep " $MOUNT " /etc/mtab && echo "test 5f: mtab after mount"
518         cleanup || return $?
519         return $rc
520 }
521 run_test 5f "mds down, cleanup after failed mount (bug 2712)"
522
523 test_6() {
524         setup
525         manual_umount_client
526         mount_client ${MOUNT} || return 87
527         touch $DIR/a || return 86
528         cleanup  || return $?
529 }
530 run_test 6 "manual umount, then mount again"
531
532 test_7() {
533         setup
534         manual_umount_client
535         cleanup_nocli || return $?
536 }
537 run_test 7 "manual umount, then cleanup"
538
539 test_8() {
540         setup
541         mount_client $MOUNT2
542         check_mount2 || return 45
543         umount_client $MOUNT2
544         cleanup  || return $?
545 }
546 run_test 8 "double mount setup"
547
548 test_9() {
549         start_ost
550
551         do_facet ost1 lctl set_param debug=\'inode trace\' || return 1
552         do_facet ost1 lctl set_param subsystem_debug=\'mds ost\' || return 1
553
554         CHECK_PTLDEBUG="`do_facet ost1 lctl get_param -n debug`"
555         if [ "$CHECK_PTLDEBUG" ] && { \
556            [ "$CHECK_PTLDEBUG" = "trace inode warning error emerg console" ] ||
557            [ "$CHECK_PTLDEBUG" = "trace inode" ]; }; then
558            echo "lnet.debug success"
559         else
560            echo "lnet.debug: want 'trace inode', have '$CHECK_PTLDEBUG'"
561            return 1
562         fi
563         CHECK_SUBSYS="`do_facet ost1 lctl get_param -n subsystem_debug`"
564         if [ "$CHECK_SUBSYS" ] && [ "$CHECK_SUBSYS" = "mds ost" ]; then
565            echo "lnet.subsystem_debug success"
566         else
567            echo "lnet.subsystem_debug: want 'mds ost', have '$CHECK_SUBSYS'"
568            return 1
569         fi
570         stop_ost || return $?
571 }
572 run_test 9 "test ptldebug and subsystem for mkfs"
573
574 is_blkdev () {
575         local facet=$1
576         local dev=$2
577         local size=${3:-""}
578
579         local rc=0
580         do_facet $facet "test -b $dev" || rc=1
581         if [[ "$size" ]]; then
582                 local in=$(do_facet $facet "dd if=$dev of=/dev/null bs=1k count=1 skip=$size 2>&1" |\
583                         awk '($3 == "in") { print $1 }')
584                 [[ $in  = "1+0" ]] || rc=1
585         fi
586         return $rc
587 }
588
589 #
590 # Test 16 was to "verify that lustre will correct the mode of OBJECTS".
591 # But with new MDS stack we don't care about the mode of local objects
592 # anymore, so this test is removed. See bug 22944 for more details.
593 #
594
595 test_17() {
596         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
597                 skip "Only applicable to ldiskfs-based MDTs"
598                 return
599         fi
600
601         setup
602         check_mount || return 41
603         cleanup || return $?
604
605         echo "Remove mds config log"
606         if ! combined_mgs_mds ; then
607                 stop mgs
608         fi
609
610         do_facet mgs "$DEBUGFS -w -R 'unlink CONFIGS/$FSNAME-MDT0000' \
611                 $(mgsdevname) || return \$?" || return $?
612
613         if ! combined_mgs_mds ; then
614                 start_mgs
615         fi
616
617         start_ost
618         start_mds && return 42
619         reformat_and_config
620 }
621 run_test 17 "Verify failed mds_postsetup won't fail assertion (2936) (should return errs)"
622
623 test_18() {
624         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
625                 skip "Only applicable to ldiskfs-based MDTs"
626                 return
627         fi
628
629         local MDSDEV=$(mdsdevname ${SINGLEMDS//mds/})
630
631         local MIN=2000000
632
633         local OK=
634         # check if current MDSSIZE is large enough
635         [ $MDSSIZE -ge $MIN ] && OK=1 && myMDSSIZE=$MDSSIZE && \
636                 log "use MDSSIZE=$MDSSIZE"
637
638         # check if the global config has a large enough MDSSIZE
639         [ -z "$OK" -a ! -z "$STORED_MDSSIZE" ] && [ $STORED_MDSSIZE -ge $MIN ] && \
640                 OK=1 && myMDSSIZE=$STORED_MDSSIZE && \
641                 log "use STORED_MDSSIZE=$STORED_MDSSIZE"
642
643         # check if the block device is large enough
644         is_blkdev $SINGLEMDS $MDSDEV $MIN
645         local large_enough=$?
646         if [ -n "$OK" ]; then
647                 [ $large_enough -ne 0 ] && OK=""
648         else
649                 [ $large_enough -eq 0 ] && OK=1 && myMDSSIZE=$MIN &&
650                         log "use device $MDSDEV with MIN=$MIN"
651         fi
652
653         # check if a loopback device has enough space for fs metadata (5%)
654
655         if [ -z "$OK" ]; then
656                 local SPACE=$(do_facet $SINGLEMDS "[ -f $MDSDEV -o ! -e $MDSDEV ] && df -P \\\$(dirname $MDSDEV)" |
657                         awk '($1 != "Filesystem") {print $4}')
658                 ! [ -z "$SPACE" ]  &&  [ $SPACE -gt $((MIN / 20)) ] && \
659                         OK=1 && myMDSSIZE=$MIN && \
660                         log "use file $MDSDEV with MIN=$MIN"
661         fi
662
663         [ -z "$OK" ] && skip_env "$MDSDEV too small for ${MIN}kB MDS" && return
664
665
666         echo "mount mds with large journal..."
667
668         local OLD_MDSSIZE=$MDSSIZE
669         MDSSIZE=$myMDSSIZE
670
671         reformat_and_config
672         echo "mount lustre system..."
673         setup
674         check_mount || return 41
675
676         echo "check journal size..."
677         local FOUNDSIZE=$(do_facet $SINGLEMDS "$DEBUGFS -c -R 'stat <8>' $MDSDEV" | awk '/Size: / { print $NF; exit;}')
678         if [ $FOUNDSIZE -gt $((32 * 1024 * 1024)) ]; then
679                 log "Success: mkfs creates large journals. Size: $((FOUNDSIZE >> 20))M"
680         else
681                 error "expected journal size > 32M, found $((FOUNDSIZE >> 20))M"
682         fi
683
684         cleanup || return $?
685
686         MDSSIZE=$OLD_MDSSIZE
687         reformat_and_config
688 }
689 run_test 18 "check mkfs creates large journals"
690
691 test_19a() {
692         start_mds || return 1
693         stop_mds -f || return 2
694 }
695 run_test 19a "start/stop MDS without OSTs"
696
697 test_19b() {
698         start_ost || return 1
699         stop_ost -f || return 2
700 }
701 run_test 19b "start/stop OSTs without MDS"
702
703 test_20() {
704         # first format the ost/mdt
705         start_mds
706         start_ost
707         mount_client $MOUNT
708         check_mount || return 43
709         rm -f $DIR/$tfile
710         remount_client ro $MOUNT || return 44
711         touch $DIR/$tfile && echo "$DIR/$tfile created incorrectly" && return 45
712         [ -e $DIR/$tfile ] && echo "$DIR/$tfile exists incorrectly" && return 46
713         remount_client rw $MOUNT || return 47
714         touch $DIR/$tfile
715         [ ! -f $DIR/$tfile ] && echo "$DIR/$tfile missing" && return 48
716         MCNT=`grep -c $MOUNT /etc/mtab`
717         [ "$MCNT" -ne 1 ] && echo "$MOUNT in /etc/mtab $MCNT times" && return 49
718         umount_client $MOUNT
719         stop_mds
720         stop_ost
721 }
722 run_test 20 "remount ro,rw mounts work and doesn't break /etc/mtab"
723
724 test_21a() {
725         start_mds
726         start_ost
727         wait_osc_import_state mds ost FULL
728         stop_ost
729         stop_mds
730 }
731 run_test 21a "start mds before ost, stop ost first"
732
733 test_21b() {
734         start_ost
735         start_mds
736         wait_osc_import_state mds ost FULL
737         stop_mds
738         stop_ost
739 }
740 run_test 21b "start ost before mds, stop mds first"
741
742 test_21c() {
743         start_ost
744         start_mds
745         start_ost2
746         wait_osc_import_state mds ost2 FULL
747         stop_ost
748         stop_ost2
749         stop_mds
750         #writeconf to remove all ost2 traces for subsequent tests
751         writeconf_or_reformat
752 }
753 run_test 21c "start mds between two osts, stop mds last"
754
755 test_21d() {
756         if combined_mgs_mds ; then
757                 skip "need separate mgs device" && return 0
758         fi
759         stopall
760
761         reformat
762
763         start_mgs
764         start_ost
765         start_ost2
766         start_mds
767         wait_osc_import_state mds ost2 FULL
768
769         stop_ost
770         stop_ost2
771         stop_mds
772         stop_mgs
773         #writeconf to remove all ost2 traces for subsequent tests
774         writeconf_or_reformat
775         start_mgs
776 }
777 run_test 21d "start mgs then ost and then mds"
778
779 test_22() {
780         start_mds
781
782         echo Client mount with ost in logs, but none running
783         start_ost
784         # wait until mds connected to ost and open client connection
785         wait_osc_import_state mds ost FULL
786         stop_ost
787         mount_client $MOUNT
788         # check_mount will block trying to contact ost
789         mcreate $DIR/$tfile || return 40
790         rm -f $DIR/$tfile || return 42
791         umount_client $MOUNT
792         pass
793
794         echo Client mount with a running ost
795         start_ost
796         if $GSS; then
797                 # if gss enabled, wait full time to let connection from
798                 # mds to ost be established, due to the mismatch between
799                 # initial connect timeout and gss context negotiation timeout.
800                 # This perhaps could be remove after AT landed.
801                 echo "sleep $((TIMEOUT + TIMEOUT + TIMEOUT))s"
802                 sleep $((TIMEOUT + TIMEOUT + TIMEOUT))
803         fi
804         mount_client $MOUNT
805         wait_osc_import_state mds ost FULL
806         wait_osc_import_state client ost FULL
807         check_mount || return 41
808         pass
809
810         cleanup
811 }
812 run_test 22 "start a client before osts (should return errs)"
813
814 test_23a() {    # was test_23
815         setup
816         # fail mds
817         stop $SINGLEMDS
818         # force down client so that recovering mds waits for reconnect
819         local running=$(grep -c $MOUNT /proc/mounts) || true
820         if [ $running -ne 0 ]; then
821                 echo "Stopping client $MOUNT (opts: -f)"
822                 umount -f $MOUNT
823         fi
824
825         # enter recovery on mds
826         start_mds
827         # try to start a new client
828         mount_client $MOUNT &
829         sleep 5
830         MOUNT_PID=$(ps -ef | grep "t lustre" | grep -v grep | awk '{print $2}')
831         MOUNT_LUSTRE_PID=`ps -ef | grep mount.lustre | grep -v grep | awk '{print $2}'`
832         echo mount pid is ${MOUNT_PID}, mount.lustre pid is ${MOUNT_LUSTRE_PID}
833         ps --ppid $MOUNT_PID
834         ps --ppid $MOUNT_LUSTRE_PID
835         echo "waiting for mount to finish"
836         ps -ef | grep mount
837         # "ctrl-c" sends SIGINT but it usually (in script) does not work on child process
838         # SIGTERM works but it does not spread to offspring processses
839         kill -s TERM $MOUNT_PID
840         kill -s TERM $MOUNT_LUSTRE_PID
841         # we can not wait $MOUNT_PID because it is not a child of this shell
842         local PID1
843         local PID2
844         local WAIT=0
845         local MAX_WAIT=30
846         local sleep=1
847         while [ "$WAIT" -lt "$MAX_WAIT" ]; do
848                 sleep $sleep
849                 PID1=$(ps -ef | awk '{print $2}' | grep -w $MOUNT_PID)
850                 PID2=$(ps -ef | awk '{print $2}' | grep -w $MOUNT_LUSTRE_PID)
851                 echo PID1=$PID1
852                 echo PID2=$PID2
853                 [ -z "$PID1" -a -z "$PID2" ] && break
854                 echo "waiting for mount to finish ... "
855                 WAIT=$(( WAIT + sleep))
856         done
857         if [ "$WAIT" -eq "$MAX_WAIT" ]; then
858                 error "MOUNT_PID $MOUNT_PID and "\
859                 "MOUNT_LUSTRE_PID $MOUNT_LUSTRE_PID still not killed in $WAIT secs"
860                 ps -ef | grep mount
861         fi
862         stop_mds || error "stopping MDSes failed"
863         stop_ost || error "stopping OSSes failed"
864 }
865 run_test 23a "interrupt client during recovery mount delay"
866
867 umount_client $MOUNT
868 cleanup_nocli
869
870 test_23b() {    # was test_23
871         start_mds
872         start_ost
873         # Simulate -EINTR during mount OBD_FAIL_LDLM_CLOSE_THREAD
874         lctl set_param fail_loc=0x80000313
875         mount_client $MOUNT
876         cleanup
877 }
878 run_test 23b "Simulate -EINTR during mount"
879
880 fs2mds_HOST=$mds_HOST
881 fs2ost_HOST=$ost_HOST
882
883 MDSDEV1_2=$fs2mds_DEV
884 OSTDEV1_2=$fs2ost_DEV
885 OSTDEV2_2=$fs3ost_DEV
886
887 cleanup_fs2() {
888         trap 0
889         echo "umount $MOUNT2 ..."
890         umount $MOUNT2 || true
891         echo "stopping fs2mds ..."
892         stop fs2mds -f || true
893         echo "stopping fs2ost ..."
894         stop fs2ost -f || true
895 }
896
897 test_24a() {
898         local MDSDEV=$(mdsdevname ${SINGLEMDS//mds/})
899
900         if [ -z "$fs2ost_DEV" -o -z "$fs2mds_DEV" ]; then
901                 is_blkdev $SINGLEMDS $MDSDEV && \
902                 skip_env "mixed loopback and real device not working" && return
903         fi
904
905         [ -n "$ost1_HOST" ] && fs2ost_HOST=$ost1_HOST
906
907         local fs2mdsdev=$(mdsdevname 1_2)
908         local fs2ostdev=$(ostdevname 1_2)
909         local fs2mdsvdev=$(mdsvdevname 1_2)
910         local fs2ostvdev=$(ostvdevname 1_2)
911
912         # test 8-char fsname as well
913         local FSNAME2=test1234
914
915         add fs2mds $(mkfs_opts mds1 ${fs2mdsdev} ) --nomgs --mgsnode=$MGSNID \
916                 --fsname=${FSNAME2} --reformat $fs2mdsdev $fs2mdsvdev || exit 10
917
918         add fs2ost $(mkfs_opts ost1 ${fs2ostdev}) --fsname=${FSNAME2} \
919                 --reformat $fs2ostdev $fs2ostvdev || exit 10
920
921         setup
922         start fs2mds $fs2mdsdev $MDS_MOUNT_OPTS && trap cleanup_fs2 EXIT INT
923         start fs2ost $fs2ostdev $OST_MOUNT_OPTS
924         mkdir -p $MOUNT2
925         $MOUNT_CMD $MGSNID:/${FSNAME2} $MOUNT2 || return 1
926         # 1 still works
927         check_mount || return 2
928         # files written on 1 should not show up on 2
929         cp /etc/passwd $DIR/$tfile
930         sleep 10
931         [ -e $MOUNT2/$tfile ] && error "File bleed" && return 7
932         # 2 should work
933         sleep 5
934         cp /etc/passwd $MOUNT2/b || return 3
935         rm $MOUNT2/b || return 4
936         # 2 is actually mounted
937         grep $MOUNT2' ' /proc/mounts > /dev/null || return 5
938         # failover
939         facet_failover fs2mds
940         facet_failover fs2ost
941         df
942         umount_client $MOUNT
943         # the MDS must remain up until last MDT
944         stop_mds
945         MDS=$(do_facet $SINGLEMDS "lctl get_param -n devices" | awk '($3 ~ "mdt" && $4 ~ "MDT") { print $4 }' | head -1)
946         [ -z "$MDS" ] && error "No MDT" && return 8
947         cleanup_fs2
948         cleanup_nocli || return 6
949 }
950 run_test 24a "Multiple MDTs on a single node"
951
952 test_24b() {
953         local MDSDEV=$(mdsdevname ${SINGLEMDS//mds/})
954
955         if [ -z "$fs2mds_DEV" ]; then
956                 local dev=${SINGLEMDS}_dev
957                 local MDSDEV=${!dev}
958                 is_blkdev $SINGLEMDS $MDSDEV && \
959                 skip_env "mixed loopback and real device not working" && return
960         fi
961
962         local fs2mdsdev=$(mdsdevname 1_2)
963         local fs2mdsvdev=$(mdsvdevname 1_2)
964
965         add fs2mds $(mkfs_opts mds1 ${fs2mdsdev} ) --mgs --fsname=${FSNAME}2 \
966                 --reformat $fs2mdsdev $fs2mdsvdev || exit 10
967         setup
968         start fs2mds $fs2mdsdev $MDS_MOUNT_OPTS && return 2
969         cleanup || return 6
970 }
971 run_test 24b "Multiple MGSs on a single node (should return err)"
972
973 test_25() {
974         setup
975         check_mount || return 2
976         local MODULES=$($LCTL modules | awk '{ print $2 }')
977         rmmod $MODULES 2>/dev/null || true
978         cleanup || return 6
979 }
980 run_test 25 "Verify modules are referenced"
981
982 test_26() {
983     load_modules
984     # we need modules before mount for sysctl, so make sure...
985     do_facet $SINGLEMDS "lsmod | grep -q lustre || modprobe lustre"
986 #define OBD_FAIL_MDS_FS_SETUP            0x135
987     do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000135"
988     start_mds && echo MDS started && return 1
989     lctl get_param -n devices
990     DEVS=$(lctl get_param -n devices | egrep -v MG | wc -l)
991     [ $DEVS -gt 0 ] && return 2
992     # start mds to drop writeconf setting
993     start_mds || return 3
994     stop_mds || return 4
995     unload_modules_conf || return $?
996 }
997 run_test 26 "MDT startup failure cleans LOV (should return errs)"
998
999 test_27a() {
1000         start_ost || return 1
1001         start_mds || return 2
1002         echo "Requeue thread should have started: "
1003         ps -e | grep ll_cfg_requeue
1004         set_conf_param_and_check ost1                                         \
1005            "lctl get_param -n obdfilter.$FSNAME-OST0000.client_cache_seconds" \
1006            "$FSNAME-OST0000.ost.client_cache_seconds" || return 3
1007         cleanup_nocli
1008 }
1009 run_test 27a "Reacquire MGS lock if OST started first"
1010
1011 test_27b() {
1012         # FIXME. ~grev
1013         setup
1014         local device=$(do_facet $SINGLEMDS "lctl get_param -n devices" |
1015                         awk '($3 ~ "mdt" && $4 ~ "MDT0000") { print $4 }')
1016
1017         facet_failover $SINGLEMDS
1018         set_conf_param_and_check $SINGLEMDS                             \
1019                 "lctl get_param -n mdt.$device.identity_acquire_expire" \
1020                 "$device.mdt.identity_acquire_expire" || return 3
1021         set_conf_param_and_check client                                 \
1022                 "lctl get_param -n mdc.$device-mdc-*.max_rpcs_in_flight"\
1023                 "$device.mdc.max_rpcs_in_flight" || return 4
1024         check_mount
1025         cleanup
1026 }
1027 run_test 27b "Reacquire MGS lock after failover"
1028
1029 test_28() {
1030         setup
1031         TEST="lctl get_param -n llite.$FSNAME-*.max_read_ahead_whole_mb"
1032         PARAM="$FSNAME.llite.max_read_ahead_whole_mb"
1033         ORIG=$($TEST)
1034         FINAL=$(($ORIG + 1))
1035         set_conf_param_and_check client "$TEST" "$PARAM" $FINAL || return 3
1036         FINAL=$(($FINAL + 1))
1037         set_conf_param_and_check client "$TEST" "$PARAM" $FINAL || return 4
1038         umount_client $MOUNT || return 200
1039         mount_client $MOUNT
1040         RESULT=$($TEST)
1041         if [ $RESULT -ne $FINAL ]; then
1042             echo "New config not seen: wanted $FINAL got $RESULT"
1043             return 4
1044         else
1045             echo "New config success: got $RESULT"
1046         fi
1047         set_conf_param_and_check client "$TEST" "$PARAM" $ORIG || return 5
1048         cleanup
1049 }
1050 run_test 28 "permanent parameter setting"
1051
1052 test_28a() { # LU-4221
1053         [[ $(lustre_version_code ost1) -ge $(version_code 2.5.52) ]] ||
1054                 { skip "Need OST version at least 2.5.52" && return 0; }
1055         [ "$(facet_fstype ost1)" = "zfs" ] &&
1056                 skip "LU-4221: no such proc params for ZFS OSTs" && return
1057
1058         local name
1059         local param
1060         local cmd
1061         local old
1062         local new
1063         local device="$FSNAME-OST0000"
1064
1065         setup
1066
1067         # In this test we will set three kinds of proc parameters with
1068         # lctl conf_param:
1069         # 1. the ones moved from the OFD to the OSD, and only their
1070         #    symlinks kept in obdfilter
1071         # 2. non-symlink ones in the OFD
1072         # 3. non-symlink ones in the OSD
1073
1074         # Check 1.
1075         # prepare a symlink parameter in the OFD
1076         name="writethrough_cache_enable"
1077         param="$device.ost.$name"
1078         cmd="$LCTL get_param -n obdfilter.$device.$name"
1079
1080         # conf_param the symlink parameter in the OFD
1081         old=$(do_facet ost1 $cmd)
1082         new=$(((old + 1) % 2))
1083         set_conf_param_and_check ost1 "$cmd" "$param" $new ||
1084                 error "lctl conf_param $device.ost.$param=$new failed"
1085
1086         # conf_param the target parameter in the OSD
1087         param="$device.osd.$name"
1088         cmd="$LCTL get_param -n osd-*.$device.$name"
1089         set_conf_param_and_check ost1 "$cmd" "$param" $old ||
1090                 error "lctl conf_param $device.osd.$param=$old failed"
1091
1092         # Check 2.
1093         # prepare a non-symlink parameter in the OFD
1094         name="client_cache_seconds"
1095         param="$device.ost.$name"
1096         cmd="$LCTL get_param -n obdfilter.$device.$name"
1097
1098         # conf_param the parameter in the OFD
1099         old=$(do_facet ost1 $cmd)
1100         new=$((old * 2))
1101         set_conf_param_and_check ost1 "$cmd" "$param" $new ||
1102                 error "lctl conf_param $device.ost.$param=$new failed"
1103         set_conf_param_and_check ost1 "$cmd" "$param" $old ||
1104                 error "lctl conf_param $device.ost.$param=$old failed"
1105
1106         # Check 3.
1107         # prepare a non-symlink parameter in the OSD
1108         name="lma_self_repair"
1109         param="$device.osd.$name"
1110         cmd="$LCTL get_param -n osd-*.$device.$name"
1111
1112         # conf_param the parameter in the OSD
1113         old=$(do_facet ost1 $cmd)
1114         new=$(((old + 1) % 2))
1115         set_conf_param_and_check ost1 "$cmd" "$param" $new ||
1116                 error "lctl conf_param $device.osd.$param=$new failed"
1117         set_conf_param_and_check ost1 "$cmd" "$param" $old ||
1118                 error "lctl conf_param $device.osd.$param=$old failed"
1119
1120         cleanup
1121 }
1122 run_test 28a "set symlink parameters permanently with conf_param"
1123
1124 test_29() {
1125         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2, skipping" && return
1126         setup > /dev/null 2>&1
1127         start_ost2
1128         sleep 10
1129
1130         local PARAM="$FSNAME-OST0001.osc.active"
1131         local PROC_ACT="osc.$FSNAME-OST0001-osc-[^M]*.active"
1132         local PROC_UUID="osc.$FSNAME-OST0001-osc-[^M]*.ost_server_uuid"
1133
1134         ACTV=$(lctl get_param -n $PROC_ACT)
1135         DEAC=$((1 - $ACTV))
1136         set_conf_param_and_check client \
1137                 "lctl get_param -n $PROC_ACT" "$PARAM" $DEAC || return 2
1138         # also check ost_server_uuid status
1139         RESULT=$(lctl get_param -n $PROC_UUID | grep DEACTIV)
1140         if [ -z "$RESULT" ]; then
1141             echo "Live client not deactivated: $(lctl get_param -n $PROC_UUID)"
1142             return 3
1143         else
1144             echo "Live client success: got $RESULT"
1145         fi
1146
1147         # check MDTs too
1148         for num in $(seq $MDSCOUNT); do
1149                 local mdtosc=$(get_mdtosc_proc_path mds${num} $FSNAME-OST0001)
1150                 local MPROC="osc.$mdtosc.active"
1151                 local MAX=30
1152                 local WAIT=0
1153                 while [ 1 ]; do
1154                         sleep 5
1155                         RESULT=$(do_facet mds${num} " lctl get_param -n $MPROC")
1156                         [ ${PIPESTATUS[0]} = 0 ] || error "Can't read $MPROC"
1157                         if [ $RESULT -eq $DEAC ]; then
1158                                 echo -n "MDT deactivated also after"
1159                                 echo "$WAIT sec (got $RESULT)"
1160                                 break
1161                         fi
1162                         WAIT=$((WAIT + 5))
1163                         if [ $WAIT -eq $MAX ]; then
1164                                 echo -n "MDT not deactivated: wanted $DEAC"
1165                                 echo  "got $RESULT"
1166                                 return 4
1167                         fi
1168                         echo "Waiting $(($MAX - $WAIT))secs for MDT deactivated"
1169                 done
1170         done
1171         # test new client starts deactivated
1172         umount_client $MOUNT || return 200
1173         mount_client $MOUNT
1174         RESULT=$(lctl get_param -n $PROC_UUID | grep DEACTIV | grep NEW)
1175         if [ -z "$RESULT" ]; then
1176             echo "New client not deactivated from start: $(lctl get_param -n $PROC_UUID)"
1177             return 5
1178         else
1179             echo "New client success: got $RESULT"
1180         fi
1181
1182         # make sure it reactivates
1183         set_conf_param_and_check client \
1184                 "lctl get_param -n $PROC_ACT" "$PARAM" $ACTV || return 6
1185
1186         umount_client $MOUNT
1187         stop_ost2
1188         cleanup_nocli
1189         #writeconf to remove all ost2 traces for subsequent tests
1190         writeconf_or_reformat
1191 }
1192 run_test 29 "permanently remove an OST"
1193
1194 test_30a() {
1195         setup
1196
1197         echo Big config llog
1198         TEST="lctl get_param -n llite.$FSNAME-*.max_read_ahead_whole_mb"
1199         ORIG=$($TEST)
1200         LIST=(1 2 3 4 5 4 3 2 1 2 3 4 5 4 3 2 1 2 3 4 5)
1201         for i in ${LIST[@]}; do
1202                 set_conf_param_and_check client "$TEST" \
1203                         "$FSNAME.llite.max_read_ahead_whole_mb" $i || return 3
1204         done
1205         # make sure client restart still works
1206         umount_client $MOUNT
1207         mount_client $MOUNT || return 4
1208         [ "$($TEST)" -ne "$i" ] && error "Param didn't stick across restart $($TEST) != $i"
1209         pass
1210
1211         echo Erase parameter setting
1212         do_facet mgs "$LCTL conf_param -d $FSNAME.llite.max_read_ahead_whole_mb" || return 6
1213         umount_client $MOUNT
1214         mount_client $MOUNT || return 6
1215         FINAL=$($TEST)
1216         echo "deleted (default) value=$FINAL, orig=$ORIG"
1217         # assumes this parameter started at the default value
1218         [ "$FINAL" -eq "$ORIG" ] || fail "Deleted value=$FINAL, orig=$ORIG"
1219
1220         cleanup
1221 }
1222 run_test 30a "Big config llog and conf_param deletion"
1223
1224 test_30b() {
1225         setup
1226
1227         # Make a fake nid.  Use the OST nid, and add 20 to the least significant
1228         # numerical part of it. Hopefully that's not already a failover address for
1229         # the server.
1230         OSTNID=$(do_facet ost1 "$LCTL get_param nis" | tail -1 | awk '{print $1}')
1231         ORIGVAL=$(echo $OSTNID | egrep -oi "[0-9]*@")
1232         NEWVAL=$((($(echo $ORIGVAL | egrep -oi "[0-9]*") + 20) % 256))
1233         NEW=$(echo $OSTNID | sed "s/$ORIGVAL/$NEWVAL@/")
1234         echo "Using fake nid $NEW"
1235
1236         TEST="$LCTL get_param -n osc.$FSNAME-OST0000-osc-[^M]*.import | grep failover_nids | sed -n 's/.*\($NEW\).*/\1/p'"
1237         set_conf_param_and_check client "$TEST" \
1238                 "$FSNAME-OST0000.failover.node" $NEW ||
1239                 error "didn't add failover nid $NEW"
1240         NIDS=$($LCTL get_param -n osc.$FSNAME-OST0000-osc-[^M]*.import | grep failover_nids)
1241         echo $NIDS
1242         NIDCOUNT=$(($(echo "$NIDS" | wc -w) - 1))
1243         echo "should have 2 failover nids: $NIDCOUNT"
1244         [ $NIDCOUNT -eq 2 ] || error "Failover nid not added"
1245         do_facet mgs "$LCTL conf_param -d $FSNAME-OST0000.failover.node" || error "conf_param delete failed"
1246         umount_client $MOUNT
1247         mount_client $MOUNT || return 3
1248
1249         NIDS=$($LCTL get_param -n osc.$FSNAME-OST0000-osc-[^M]*.import | grep failover_nids)
1250         echo $NIDS
1251         NIDCOUNT=$(($(echo "$NIDS" | wc -w) - 1))
1252         echo "only 1 final nid should remain: $NIDCOUNT"
1253         [ $NIDCOUNT -eq 1 ] || error "Failover nids not removed"
1254
1255         cleanup
1256 }
1257 run_test 30b "Remove failover nids"
1258
1259 test_31() { # bug 10734
1260         # ipaddr must not exist
1261         $MOUNT_CMD 4.3.2.1@tcp:/lustre $MOUNT || true
1262         cleanup
1263 }
1264 run_test 31 "Connect to non-existent node (shouldn't crash)"
1265
1266
1267 T32_QID=60000
1268 T32_BLIMIT=20480 # Kbytes
1269 T32_ILIMIT=2
1270
1271 #
1272 # This is not really a test but a tool to create new disk
1273 # image tarballs for the upgrade tests.
1274 #
1275 # Disk image tarballs should be created on single-node
1276 # clusters by running this test with default configurations
1277 # plus a few mandatory environment settings that are verified
1278 # at the beginning of the test.
1279 #
1280 test_32newtarball() {
1281         local version
1282         local dst=.
1283         local src=/etc/rc.d
1284         local tmp=$TMP/t32_image_create
1285
1286         if [ $FSNAME != t32fs -o $MDSCOUNT -ne 1 -o                                                             \
1287                  \( -z "$MDSDEV" -a -z "$MDSDEV1" \) -o $OSTCOUNT -ne 1 -o                      \
1288                  -z "$OSTDEV1" ]; then
1289                 error "Needs FSNAME=t32fs MDSCOUNT=1 MDSDEV1=<nonexistent_file>"        \
1290                           "(or MDSDEV, in the case of b1_8) OSTCOUNT=1"                                 \
1291                           "OSTDEV1=<nonexistent_file>"
1292         fi
1293
1294         mkdir $tmp || {
1295                 echo "Found stale $tmp"
1296                 return 1
1297         }
1298
1299         mkdir $tmp/src
1300         tar cf - -C $src . | tar xf - -C $tmp/src
1301         dd if=/dev/zero of=$tmp/src/t32_qf_old bs=1M \
1302                 count=$(($T32_BLIMIT / 1024 / 2))
1303         chown $T32_QID.$T32_QID $tmp/src/t32_qf_old
1304
1305         # format ost with comma-separated NIDs to verify LU-4460
1306         local failnid="$(h2$NETTYPE 1.2.3.4),$(h2$NETTYPE 4.3.2.1)"
1307         MGSNID="$MGSNID,$MGSNID" OSTOPT="--failnode=$failnid" formatall
1308
1309         setupall
1310
1311         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.50) ] &&
1312                 $LFS quotacheck -ug /mnt/$FSNAME
1313         $LFS setquota -u $T32_QID -b 0 -B $T32_BLIMIT -i 0 -I $T32_ILIMIT \
1314                 /mnt/$FSNAME
1315
1316         tar cf - -C $tmp/src . | tar xf - -C /mnt/$FSNAME
1317         stopall
1318
1319         mkdir $tmp/img
1320
1321         setupall
1322         pushd /mnt/$FSNAME
1323         ls -Rni --time-style=+%s >$tmp/img/list
1324         find . ! -name .lustre -type f -exec sha1sum {} \; |
1325                 sort -k 2 >$tmp/img/sha1sums
1326         popd
1327         $LCTL get_param -n version | head -n 1 |
1328                 sed -e 's/^lustre: *//' >$tmp/img/commit
1329
1330         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.50) ] &&
1331                 $LFS quotaon -ug /mnt/$FSNAME
1332         $LFS quota -u $T32_QID -v /mnt/$FSNAME
1333         $LFS quota -v -u $T32_QID /mnt/$FSNAME |
1334                 awk 'BEGIN { num='1' } { if ($1 == "'/mnt/$FSNAME'") \
1335                 { if (NF == 1) { getline } else { num++ } ; print $num;} }' \
1336                 | tr -d "*" > $tmp/img/bspace
1337         $LFS quota -v -u $T32_QID /mnt/$FSNAME |
1338                 awk 'BEGIN { num='5' } { if ($1 == "'/mnt/$FSNAME'") \
1339                 { if (NF == 1) { getline } else { num++ } ; print $num;} }' \
1340                 | tr -d "*" > $tmp/img/ispace
1341
1342         stopall
1343
1344         pushd $tmp/src
1345         find -type f -exec sha1sum {} \; | sort -k 2 >$tmp/sha1sums.src
1346         popd
1347
1348         if ! diff -u $tmp/sha1sums.src $tmp/img/sha1sums; then
1349                 echo "Data verification failed"
1350         fi
1351
1352         uname -r >$tmp/img/kernel
1353         uname -m >$tmp/img/arch
1354
1355         mv ${MDSDEV1:-$MDSDEV} $tmp/img
1356         mv $OSTDEV1 $tmp/img
1357
1358         version=$(sed -e 's/\(^[0-9]\+\.[0-9]\+\)\(.*$\)/\1/' $tmp/img/commit |
1359                           sed -e 's/\./_/g')    # E.g., "1.8.7" -> "1_8"
1360         dst=$(cd $dst; pwd)
1361         pushd $tmp/img
1362         tar cjvf $dst/disk$version-$(facet_fstype $SINGLEMDS).tar.bz2 -S *
1363         popd
1364
1365         rm -r $tmp
1366 }
1367 #run_test 32newtarball "Create a new test_32 disk image tarball for this version"
1368
1369 #
1370 # The list of applicable tarballs is returned via the caller's
1371 # variable "tarballs".
1372 #
1373 t32_check() {
1374         local node=$(facet_active_host $SINGLEMDS)
1375         local r="do_node $node"
1376
1377         if [ "$CLIENTONLY" ]; then
1378                 skip "Client-only testing"
1379                 exit 0
1380         fi
1381
1382         if ! $r which $TUNEFS; then
1383                 skip_env "tunefs.lustre required on $node"
1384                 exit 0
1385         fi
1386
1387         local IMGTYPE=$(facet_fstype $SINGLEMDS)
1388
1389         tarballs=$($r find $RLUSTRE/tests -maxdepth 1 -name \'disk*-$IMGTYPE.tar.bz2\')
1390
1391         if [ -z "$tarballs" ]; then
1392                 skip "No applicable tarballs found"
1393                 exit 0
1394         fi
1395 }
1396
1397 t32_test_cleanup() {
1398         local tmp=$TMP/t32
1399         local fstype=$(facet_fstype $SINGLEMDS)
1400         local rc=$?
1401
1402         if $shall_cleanup_lustre; then
1403                 umount $tmp/mnt/lustre || rc=$?
1404         fi
1405         if $shall_cleanup_mdt; then
1406                 $r umount -d $tmp/mnt/mdt || rc=$?
1407         fi
1408         if $shall_cleanup_mdt1; then
1409                 $r umount -d $tmp/mnt/mdt1 || rc=$?
1410         fi
1411         if $shall_cleanup_ost; then
1412                 $r umount -d $tmp/mnt/ost || rc=$?
1413         fi
1414
1415         $r rm -rf $tmp
1416         rm -rf $tmp
1417         if [ $fstype == "zfs" ]; then
1418                 $r $ZPOOL destroy t32fs-mdt1 || rc=$?
1419                 $r $ZPOOL destroy t32fs-ost1 || rc=$?
1420         fi
1421         return $rc
1422 }
1423
1424 t32_bits_per_long() {
1425         #
1426         # Yes, this is not meant to be perfect.
1427         #
1428         case $1 in
1429                 ppc64|x86_64)
1430                         echo -n 64;;
1431                 i*86)
1432                         echo -n 32;;
1433         esac
1434 }
1435
1436 t32_reload_modules() {
1437         local node=$1
1438         local all_removed=false
1439         local i=0
1440
1441         while ((i < 20)); do
1442                 echo "Unloading modules on $node: Attempt $i"
1443                 do_rpc_nodes $node $LUSTRE_RMMOD $(facet_fstype $SINGLEMDS) &&
1444                         all_removed=true
1445                 do_rpc_nodes $node check_mem_leak || return 1
1446                 if $all_removed; then
1447                         do_rpc_nodes $node load_modules
1448                         return 0
1449                 fi
1450                 sleep 5
1451                 i=$((i + 1))
1452         done
1453         echo "Unloading modules on $node: Given up"
1454         return 1
1455 }
1456
1457 t32_wait_til_devices_gone() {
1458         local node=$1
1459         local devices
1460         local loops
1461         local i=0
1462
1463         echo wait for devices to go
1464         while ((i < 20)); do
1465                 devices=$(do_rpc_nodes $node $LCTL device_list | wc -l)
1466                 loops=$(do_rpc_nodes $node losetup -a | grep -c t32)
1467                 ((devices == 0 && loops == 0)) && return 0
1468                 sleep 5
1469                 i=$((i + 1))
1470         done
1471         echo "waiting for dev on $node: dev $devices loop $loops given up"
1472         do_rpc_nodes $node "losetup -a"
1473         do_rpc_nodes $node "$LCTL devices_list"
1474         return 1
1475 }
1476
1477 t32_verify_quota() {
1478         local node=$1
1479         local fsname=$2
1480         local mnt=$3
1481         local fstype=$(facet_fstype $SINGLEMDS)
1482         local qval
1483         local cmd
1484
1485         $LFS quota -u $T32_QID -v $mnt
1486
1487         qval=$($LFS quota -v -u $T32_QID $mnt |
1488                 awk 'BEGIN { num='1' } { if ($1 == "'$mnt'") \
1489                 { if (NF == 1) { getline } else { num++ } ; print $num;} }' \
1490                 | tr -d "*")
1491         [ $qval -eq $img_bspace ] || {
1492                 echo "bspace, act:$qval, exp:$img_bspace"
1493                 return 1
1494         }
1495
1496         qval=$($LFS quota -v -u $T32_QID $mnt |
1497                 awk 'BEGIN { num='5' } { if ($1 == "'$mnt'") \
1498                 { if (NF == 1) { getline } else { num++ } ; print $num;} }' \
1499                 | tr -d "*")
1500         [ $qval -eq $img_ispace ] || {
1501                 echo "ispace, act:$qval, exp:$img_ispace"
1502                 return 1
1503         }
1504
1505         qval=$($LFS quota -v -u $T32_QID $mnt |
1506                 awk 'BEGIN { num='3' } { if ($1 == "'$mnt'") \
1507                 { if (NF == 1) { getline } else { num++ } ; print $num;} }' \
1508                 | tr -d "*")
1509         [ $qval -eq $T32_BLIMIT ] || {
1510                 echo "blimit, act:$qval, exp:$T32_BLIMIT"
1511                 return 1
1512         }
1513
1514         qval=$($LFS quota -v -u $T32_QID $mnt |
1515                 awk 'BEGIN { num='7' } { if ($1 == "'$mnt'") \
1516                 { if (NF == 1) { getline } else { num++ } ; print $num;} }' \
1517                 | tr -d "*")
1518         [ $qval -eq $T32_ILIMIT ] || {
1519                 echo "ilimit, act:$qval, exp:$T32_ILIMIT"
1520                 return 1
1521         }
1522
1523         do_node $node $LCTL conf_param $fsname.quota.mdt=ug
1524         cmd="$LCTL get_param -n osd-$fstype.$fsname-MDT0000"
1525         cmd=$cmd.quota_slave.enabled
1526         wait_update $node "$cmd" "ug" || {
1527                 echo "Enable mdt quota failed"
1528                 return 1
1529         }
1530
1531         do_node $node $LCTL conf_param $fsname.quota.ost=ug
1532         cmd="$LCTL get_param -n osd-$fstype.$fsname-OST0000"
1533         cmd=$cmd.quota_slave.enabled
1534         wait_update $node "$cmd" "ug" || {
1535                 echo "Enable ost quota failed"
1536                 return 1
1537         }
1538
1539         chmod 0777 $mnt
1540         runas -u $T32_QID -g $T32_QID dd if=/dev/zero of=$mnt/t32_qf_new \
1541                 bs=1M count=$(($T32_BLIMIT / 1024)) oflag=sync && {
1542                 echo "Write succeed, but expect -EDQUOT"
1543                 return 1
1544         }
1545         rm -f $mnt/t32_qf_new
1546
1547         runas -u $T32_QID -g $T32_QID createmany -m $mnt/t32_qf_ \
1548                 $T32_ILIMIT && {
1549                 echo "Create succeed, but expect -EDQUOT"
1550                 return 1
1551         }
1552         unlinkmany $mnt/t32_qf_ $T32_ILIMIT
1553
1554         return 0
1555 }
1556
1557 t32_test() {
1558         local tarball=$1
1559         local writeconf=$2
1560         local dne_upgrade=${dne_upgrade:-"no"}
1561         local ff_convert=${ff_convert:-"no"}
1562         local shall_cleanup_mdt=false
1563         local shall_cleanup_mdt1=false
1564         local shall_cleanup_ost=false
1565         local shall_cleanup_lustre=false
1566         local node=$(facet_active_host $SINGLEMDS)
1567         local r="do_node $node"
1568         local node2=$(facet_active_host mds2)
1569         local tmp=$TMP/t32
1570         local img_commit
1571         local img_kernel
1572         local img_arch
1573         local img_bspace
1574         local img_ispace
1575         local fsname=t32fs
1576         local nid=$($r $LCTL list_nids | head -1)
1577         local mopts
1578         local uuid
1579         local nrpcs_orig
1580         local nrpcs
1581         local list
1582         local fstype=$(facet_fstype $SINGLEMDS)
1583         local mdt_dev=$tmp/mdt
1584         local ost_dev=$tmp/ost
1585
1586         trap 'trap - RETURN; t32_test_cleanup' RETURN
1587
1588         mkdir -p $tmp/mnt/lustre
1589         $r mkdir -p $tmp/mnt/{mdt,ost}
1590         $r tar xjvf $tarball -S -C $tmp || {
1591                 error_noexit "Unpacking the disk image tarball"
1592                 return 1
1593         }
1594         img_commit=$($r cat $tmp/commit)
1595         img_kernel=$($r cat $tmp/kernel)
1596         img_arch=$($r cat $tmp/arch)
1597         img_bspace=$($r cat $tmp/bspace)
1598         img_ispace=$($r cat $tmp/ispace)
1599         echo "Upgrading from $(basename $tarball), created with:"
1600         echo "  Commit: $img_commit"
1601         echo "  Kernel: $img_kernel"
1602         echo "    Arch: $img_arch"
1603
1604         local version=$(version_code $img_commit)
1605         [[ $version -ge $(version_code 2.5.0) ]] && ff_convert="no"
1606
1607         if [ $fstype == "zfs" ]; then
1608                 # import pool first
1609                 $r $ZPOOL import -f -d $tmp t32fs-mdt1
1610                 $r $ZPOOL import -f -d $tmp t32fs-ost1
1611                 mdt_dev=t32fs-mdt1/mdt1
1612                 ost_dev=t32fs-ost1/ost1
1613                 wait_update_facet $SINGLEMDS "$ZPOOL list |
1614                         awk '/^t32fs-mdt1/ { print \\\$1 }'" "t32fs-mdt1" || {
1615                                 error_noexit "import zfs pool failed"
1616                                 return 1
1617                         }
1618         fi
1619
1620         $r $LCTL set_param debug="$PTLDEBUG"
1621
1622         $r $TUNEFS --dryrun $mdt_dev || {
1623                 $r losetup -a
1624                 error_noexit "tunefs.lustre before mounting the MDT"
1625                 return 1
1626         }
1627         if [ "$writeconf" ]; then
1628                 mopts=writeconf
1629                 if [ $fstype == "ldiskfs" ]; then
1630                         mopts="loop,$mopts"
1631                         $r $TUNEFS --quota $mdt_dev || {
1632                                 $r losetup -a
1633                                 error_noexit "Enable mdt quota feature"
1634                                 return 1
1635                         }
1636                 fi
1637         else
1638                 if [ -n "$($LCTL list_nids | grep -v '\(tcp\|lo\)[[:digit:]]*$')" ]; then
1639                         [[ $(lustre_version_code mgs) -ge $(version_code 2.3.59) ]] ||
1640                         { skip "LU-2200: Cannot run over Inifiniband w/o lctl replace_nids "
1641                                 "(Need MGS version at least 2.3.59)"; return 0; }
1642
1643                         local osthost=$(facet_active_host ost1)
1644                         local ostnid=$(do_node $osthost $LCTL list_nids | head -1)
1645
1646                         mopts=nosvc
1647                         if [ $fstype == "ldiskfs" ]; then
1648                                 mopts="loop,$mopts"
1649                         fi
1650                         $r $MOUNT_CMD -o $mopts $mdt_dev $tmp/mnt/mdt
1651                         $r lctl replace_nids $fsname-OST0000 $ostnid
1652                         $r lctl replace_nids $fsname-MDT0000 $nid
1653                         $r umount -d $tmp/mnt/mdt
1654                 fi
1655
1656                 mopts=exclude=$fsname-OST0000
1657                 if [ $fstype == "ldiskfs" ]; then
1658                         mopts="loop,$mopts"
1659                 fi
1660         fi
1661
1662         t32_wait_til_devices_gone $node
1663
1664         $r $MOUNT_CMD -o $mopts $mdt_dev $tmp/mnt/mdt || {
1665                 $r losetup -a
1666                 error_noexit "Mounting the MDT"
1667                 return 1
1668         }
1669         shall_cleanup_mdt=true
1670
1671         if [ "$dne_upgrade" != "no" ]; then
1672                 local fs2mdsdev=$(mdsdevname 1_2)
1673                 local fs2mdsvdev=$(mdsvdevname 1_2)
1674
1675                 echo "mkfs new MDT on ${fs2mdsdev}...."
1676                 if [ $(facet_fstype mds1) == ldiskfs ]; then
1677                         mkfsoptions="--mkfsoptions=\\\"-J size=8\\\""
1678                 fi
1679
1680                 add fs2mds $(mkfs_opts mds2 $fs2mdsdev $fsname) --reformat \
1681                            $mkfsoptions $fs2mdsdev $fs2mdsvdev > /dev/null || {
1682                         error_noexit "Mkfs new MDT failed"
1683                         return 1
1684                 }
1685
1686                 $r $TUNEFS --dryrun $fs2mdsdev || {
1687                         error_noexit "tunefs.lustre before mounting the MDT"
1688                         return 1
1689                 }
1690
1691                 echo "mount new MDT....$fs2mdsdev"
1692                 $r mkdir -p $tmp/mnt/mdt1
1693                 $r $MOUNT_CMD -o $mopts $fs2mdsdev $tmp/mnt/mdt1 || {
1694                         error_noexit "mount mdt1 failed"
1695                         return 1
1696                 }
1697                 shall_cleanup_mdt1=true
1698         fi
1699
1700         uuid=$($r $LCTL get_param -n mdt.$fsname-MDT0000.uuid) || {
1701                 error_noexit "Getting MDT UUID"
1702                 return 1
1703         }
1704         if [ "$uuid" != $fsname-MDT0000_UUID ]; then
1705                 error_noexit "Unexpected MDT UUID: \"$uuid\""
1706                 return 1
1707         fi
1708
1709         $r $TUNEFS --dryrun $ost_dev || {
1710                 error_noexit "tunefs.lustre before mounting the OST"
1711                 return 1
1712         }
1713         if [ "$writeconf" ]; then
1714                 mopts=mgsnode=$nid,$writeconf
1715                 if [ $fstype == "ldiskfs" ]; then
1716                         mopts="loop,$mopts"
1717                         $r $TUNEFS --quota $ost_dev || {
1718                                 $r losetup -a
1719                                 error_noexit "Enable ost quota feature"
1720                                 return 1
1721                         }
1722                 fi
1723         else
1724                 mopts=mgsnode=$nid
1725                 if [ $fstype == "ldiskfs" ]; then
1726                         mopts="loop,$mopts"
1727                 fi
1728         fi
1729         $r $MOUNT_CMD -o $mopts $ost_dev $tmp/mnt/ost || {
1730                 error_noexit "Mounting the OST"
1731                 return 1
1732         }
1733         shall_cleanup_ost=true
1734
1735         uuid=$($r $LCTL get_param -n obdfilter.$fsname-OST0000.uuid) || {
1736                 error_noexit "Getting OST UUID"
1737                 return 1
1738         }
1739         if [ "$uuid" != $fsname-OST0000_UUID ]; then
1740                 error_noexit "Unexpected OST UUID: \"$uuid\""
1741                 return 1
1742         fi
1743
1744         $r $LCTL conf_param $fsname-OST0000.osc.max_dirty_mb=15 || {
1745                 error_noexit "Setting \"max_dirty_mb\""
1746                 return 1
1747         }
1748         $r $LCTL conf_param $fsname-OST0000.failover.node=$nid || {
1749                 error_noexit "Setting OST \"failover.node\""
1750                 return 1
1751         }
1752         $r $LCTL conf_param $fsname-MDT0000.mdc.max_rpcs_in_flight=9 || {
1753                 error_noexit "Setting \"max_rpcs_in_flight\""
1754                 return 1
1755         }
1756         $r $LCTL conf_param $fsname-MDT0000.failover.node=$nid || {
1757                 error_noexit "Setting MDT \"failover.node\""
1758                 return 1
1759         }
1760         $r $LCTL pool_new $fsname.interop || {
1761                 error_noexit "Setting \"interop\""
1762                 return 1
1763         }
1764         $r $LCTL conf_param $fsname-MDT0000.lov.stripesize=4M || {
1765                 error_noexit "Setting \"lov.stripesize\""
1766                 return 1
1767         }
1768
1769         if [ "$ff_convert" != "no" -a $(facet_fstype ost1) == "ldiskfs" ]; then
1770                 $r $LCTL lfsck_start -M $fsname-OST0000 || {
1771                         error_noexit "Start OI scrub on OST0"
1772                         return 1
1773                 }
1774
1775                 # The oi_scrub should be on ost1, but for test_32(),
1776                 # all on the SINGLEMDS.
1777                 wait_update_facet $SINGLEMDS "$LCTL get_param -n \
1778                         osd-ldiskfs.$fsname-OST0000.oi_scrub |
1779                         awk '/^status/ { print \\\$2 }'" "completed" 30 || {
1780                         error_noexit "Failed to get the expected 'completed'"
1781                         return 1
1782                 }
1783
1784                 local UPDATED=$($r $LCTL get_param -n \
1785                                 osd-ldiskfs.$fsname-OST0000.oi_scrub |
1786                                 awk '/^updated/ { print $2 }')
1787                 [ $UPDATED -ge 1 ] || {
1788                         error_noexit "Only $UPDATED objects have been converted"
1789                         return 1
1790                 }
1791         fi
1792
1793         if [ "$dne_upgrade" != "no" ]; then
1794                 $r $LCTL conf_param \
1795                                 $fsname-MDT0001.mdc.max_rpcs_in_flight=9 || {
1796                         error_noexit "Setting MDT1 \"max_rpcs_in_flight\""
1797                         return 1
1798                 }
1799                 $r $LCTL conf_param $fsname-MDT0001.failover.node=$nid || {
1800                         error_noexit "Setting MDT1 \"failover.node\""
1801                         return 1
1802                 }
1803                 $r $LCTL conf_param $fsname-MDT0001.lov.stripesize=4M || {
1804                         error_noexit "Setting MDT1 \"lov.stripesize\""
1805                         return 1
1806                 }
1807
1808         fi
1809
1810         if [ "$writeconf" ]; then
1811                 $MOUNT_CMD $nid:/$fsname $tmp/mnt/lustre || {
1812                         error_noexit "Mounting the client"
1813                         return 1
1814                 }
1815                 shall_cleanup_lustre=true
1816                 $LCTL set_param debug="$PTLDEBUG"
1817
1818                 t32_verify_quota $node $fsname $tmp/mnt/lustre || {
1819                         error_noexit "verify quota failed"
1820                         return 1
1821                 }
1822
1823                 if [ "$dne_upgrade" != "no" ]; then
1824                         $LFS mkdir -i 1 $tmp/mnt/lustre/remote_dir || {
1825                                 error_noexit "set remote dir failed"
1826                                 return 1
1827                         }
1828
1829                         pushd $tmp/mnt/lustre
1830                         tar -cf - . --exclude=./remote_dir |
1831                                 tar -xvf - -C remote_dir 1>/dev/null || {
1832                                 error_noexit "cp to remote dir failed"
1833                                 return 1
1834                         }
1835                         popd
1836                 fi
1837
1838                 dd if=/dev/zero of=$tmp/mnt/lustre/tmp_file bs=10k count=10 || {
1839                         error_noexit "dd failed"
1840                         return 1
1841                 }
1842                 rm -rf $tmp/mnt/lustre/tmp_file || {
1843                         error_noexit "rm failed"
1844                         return 1
1845                 }
1846
1847                 if $r test -f $tmp/sha1sums; then
1848                         # LU-2393 - do both sorts on same node to ensure locale
1849                         # is identical
1850                         $r cat $tmp/sha1sums | sort -k 2 >$tmp/sha1sums.orig
1851                         if [ "$dne_upgrade" != "no" ]; then
1852                                 pushd $tmp/mnt/lustre/remote_dir
1853                         else
1854                                 pushd $tmp/mnt/lustre
1855                         fi
1856
1857                         find ! -name .lustre -type f -exec sha1sum {} \; |
1858                                 sort -k 2 >$tmp/sha1sums || {
1859                                 error_noexit "sha1sum"
1860                                 return 1
1861                         }
1862                         popd
1863                         if ! diff -ub $tmp/sha1sums.orig $tmp/sha1sums; then
1864                                 error_noexit "sha1sum verification failed"
1865                                 return 1
1866                         fi
1867                 else
1868                         echo "sha1sum verification skipped"
1869                 fi
1870
1871                 if [ "$dne_upgrade" != "no" ]; then
1872                         rm -rf $tmp/mnt/lustre/remote_dir || {
1873                                 error_noexit "remove remote dir failed"
1874                                 return 1
1875                         }
1876                 fi
1877
1878                 if $r test -f $tmp/list; then
1879                         #
1880                         # There is not a Test Framework API to copy files to or
1881                         # from a remote node.
1882                         #
1883                         # LU-2393 - do both sorts on same node to ensure locale
1884                         # is identical
1885                         $r cat $tmp/list | sort -k 6 >$tmp/list.orig
1886                         pushd $tmp/mnt/lustre
1887                         ls -Rni --time-style=+%s | sort -k 6 >$tmp/list || {
1888                                 error_noexit "ls"
1889                                 return 1
1890                         }
1891                         popd
1892                         #
1893                         # 32-bit and 64-bit clients use different algorithms to
1894                         # convert FIDs into inode numbers.  Hence, remove the inode
1895                         # numbers from the lists, if the original list was created
1896                         # on an architecture with different number of bits per
1897                         # "long".
1898                         #
1899                         if [ $(t32_bits_per_long $(uname -m)) != \
1900                                 $(t32_bits_per_long $img_arch) ]; then
1901                                 echo "Different number of bits per \"long\" from the disk image"
1902                                 for list in list.orig list; do
1903                                         sed -i -e 's/^[0-9]\+[ \t]\+//' $tmp/$list
1904                                 done
1905                         fi
1906                         if ! diff -ub $tmp/list.orig $tmp/list; then
1907                                 error_noexit "list verification failed"
1908                                 return 1
1909                         fi
1910                 else
1911                         echo "list verification skipped"
1912                 fi
1913
1914                 #
1915                 # When adding new data verification tests, please check for
1916                 # the presence of the required reference files first, like
1917                 # the "sha1sums" and "list" tests above, to avoid the need to
1918                 # regenerate every image for each test addition.
1919                 #
1920
1921                 nrpcs_orig=$($LCTL get_param \
1922                                 -n mdc.*MDT0000*.max_rpcs_in_flight) || {
1923                         error_noexit "Getting \"max_rpcs_in_flight\""
1924                         return 1
1925                 }
1926                 nrpcs=$((nrpcs_orig + 5))
1927                 $r $LCTL conf_param $fsname-MDT0000.mdc.max_rpcs_in_flight=$nrpcs || {
1928                         error_noexit "Changing \"max_rpcs_in_flight\""
1929                         return 1
1930                 }
1931                 wait_update $HOSTNAME "$LCTL get_param \
1932                         -n mdc.*MDT0000*.max_rpcs_in_flight" $nrpcs || {
1933                         error_noexit "Verifying \"max_rpcs_in_flight\""
1934                         return 1
1935                 }
1936
1937                 umount $tmp/mnt/lustre || {
1938                         error_noexit "Unmounting the client"
1939                         return 1
1940                 }
1941                 shall_cleanup_lustre=false
1942         else
1943                 if [ "$dne_upgrade" != "no" ]; then
1944                         $r umount -d $tmp/mnt/mdt1 || {
1945                                 error_noexit "Unmounting the MDT2"
1946                                 return 1
1947                         }
1948                         shall_cleanup_mdt1=false
1949                 fi
1950
1951                 $r umount -d $tmp/mnt/mdt || {
1952                         error_noexit "Unmounting the MDT"
1953                         return 1
1954                 }
1955                 shall_cleanup_mdt=false
1956
1957                 $r umount -d $tmp/mnt/ost || {
1958                         error_noexit "Unmounting the OST"
1959                         return 1
1960                 }
1961                 shall_cleanup_ost=false
1962
1963                 t32_reload_modules $node || {
1964                         error_noexit "Reloading modules"
1965                         return 1
1966                 }
1967
1968                 # mount a second time to make sure we didnt leave upgrade flag on
1969                 $r $TUNEFS --dryrun $mdt_dev || {
1970                         $r losetup -a
1971                         error_noexit "tunefs.lustre before remounting the MDT"
1972                         return 1
1973                 }
1974
1975                 mopts=exclude=$fsname-OST0000
1976                 if [ $fstype == "ldiskfs" ]; then
1977                         mopts="loop,$mopts"
1978                 fi
1979                 $r $MOUNT_CMD -o $mopts $mdt_dev $tmp/mnt/mdt || {
1980                         error_noexit "Remounting the MDT"
1981                         return 1
1982                 }
1983                 shall_cleanup_mdt=true
1984         fi
1985 }
1986
1987 test_32a() {
1988         local tarballs
1989         local tarball
1990         local rc=0
1991
1992         t32_check
1993         for tarball in $tarballs; do
1994                 t32_test $tarball || let "rc += $?"
1995         done
1996         return $rc
1997 }
1998 run_test 32a "Upgrade (not live)"
1999
2000 test_32b() {
2001         local tarballs
2002         local tarball
2003         local rc=0
2004
2005         t32_check
2006         for tarball in $tarballs; do
2007                 t32_test $tarball writeconf || let "rc += $?"
2008         done
2009         return $rc
2010 }
2011 run_test 32b "Upgrade with writeconf"
2012
2013 test_32c() {
2014         local tarballs
2015         local tarball
2016         local rc=0
2017
2018         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2019         t32_check
2020         for tarball in $tarballs; do
2021                 dne_upgrade=yes t32_test $tarball writeconf || rc=$?
2022         done
2023         return $rc
2024 }
2025 run_test 32c "dne upgrade test"
2026
2027 test_32d() {
2028         local tarballs
2029         local tarball
2030         local rc=0
2031
2032         t32_check
2033         for tarball in $tarballs; do
2034                 ff_convert=yes t32_test $tarball || rc=$?
2035         done
2036         return $rc
2037 }
2038 run_test 32d "convert ff test"
2039
2040 test_33a() { # bug 12333, was test_33
2041         local rc=0
2042         local FSNAME2=test-123
2043         local MDSDEV=$(mdsdevname ${SINGLEMDS//mds/})
2044         local mkfsoptions
2045
2046         [ -n "$ost1_HOST" ] && fs2ost_HOST=$ost1_HOST
2047
2048         if [ -z "$fs2ost_DEV" -o -z "$fs2mds_DEV" ]; then
2049                 local dev=${SINGLEMDS}_dev
2050                 local MDSDEV=${!dev}
2051                 is_blkdev $SINGLEMDS $MDSDEV && \
2052                 skip_env "mixed loopback and real device not working" && return
2053         fi
2054
2055         local fs2mdsdev=$(mdsdevname 1_2)
2056         local fs2ostdev=$(ostdevname 1_2)
2057         local fs2mdsvdev=$(mdsvdevname 1_2)
2058         local fs2ostvdev=$(ostvdevname 1_2)
2059
2060         if [ $(facet_fstype mds1) == ldiskfs ]; then
2061                 mkfsoptions="--mkfsoptions=\\\"-J size=8\\\"" # See bug 17931.
2062         fi
2063
2064         add fs2mds $(mkfs_opts mds1 ${fs2mdsdev}) --mgs --fsname=${FSNAME2} \
2065                 --reformat $mkfsoptions $fs2mdsdev $fs2mdsvdev || exit 10
2066         add fs2ost $(mkfs_opts ost1 ${fs2ostdev}) --mgsnode=$MGSNID \
2067                 --fsname=${FSNAME2} --index=8191 --reformat $fs2ostdev \
2068                 $fs2ostvdev || exit 10
2069
2070         start fs2mds $fs2mdsdev $MDS_MOUNT_OPTS && trap cleanup_fs2 EXIT INT
2071         start fs2ost $fs2ostdev $OST_MOUNT_OPTS
2072         do_facet $SINGLEMDS "$LCTL conf_param $FSNAME2.sys.timeout=200" || rc=1
2073         mkdir -p $MOUNT2
2074         $MOUNT_CMD $MGSNID:/${FSNAME2} $MOUNT2 || rc=2
2075         echo "ok."
2076
2077         cp /etc/hosts $MOUNT2/ || rc=3
2078         $LFS getstripe $MOUNT2/hosts
2079
2080         umount -d $MOUNT2
2081         stop fs2ost -f
2082         stop fs2mds -f
2083         cleanup_nocli || rc=6
2084         return $rc
2085 }
2086 run_test 33a "Mount ost with a large index number"
2087
2088 test_33b() {    # was test_34
2089         setup
2090
2091         do_facet client dd if=/dev/zero of=$MOUNT/24 bs=1024k count=1
2092         # Drop lock cancelation reply during umount
2093         #define OBD_FAIL_LDLM_CANCEL_NET                        0x304
2094         do_facet client lctl set_param fail_loc=0x80000304
2095         #lctl set_param debug=-1
2096         umount_client $MOUNT
2097         cleanup
2098 }
2099 run_test 33b "Drop cancel during umount"
2100
2101 test_34a() {
2102         setup
2103         do_facet client "sh runmultiop_bg_pause $DIR/file O_c"
2104         manual_umount_client
2105         rc=$?
2106         do_facet client killall -USR1 multiop
2107         if [ $rc -eq 0 ]; then
2108                 error "umount not fail!"
2109         fi
2110         sleep 1
2111         cleanup
2112 }
2113 run_test 34a "umount with opened file should be fail"
2114
2115
2116 test_34b() {
2117         setup
2118         touch $DIR/$tfile || return 1
2119         stop_mds --force || return 2
2120
2121         manual_umount_client --force
2122         rc=$?
2123         if [ $rc -ne 0 ]; then
2124                 error "mtab after failed umount - rc $rc"
2125         fi
2126
2127         cleanup
2128         return 0
2129 }
2130 run_test 34b "force umount with failed mds should be normal"
2131
2132 test_34c() {
2133         setup
2134         touch $DIR/$tfile || return 1
2135         stop_ost --force || return 2
2136
2137         manual_umount_client --force
2138         rc=$?
2139         if [ $rc -ne 0 ]; then
2140                 error "mtab after failed umount - rc $rc"
2141         fi
2142
2143         cleanup
2144         return 0
2145 }
2146 run_test 34c "force umount with failed ost should be normal"
2147
2148 test_35a() { # bug 12459
2149         setup
2150
2151         DBG_SAVE="`lctl get_param -n debug`"
2152         lctl set_param debug="ha"
2153
2154         log "Set up a fake failnode for the MDS"
2155         FAKENID="127.0.0.2"
2156         local device=$(do_facet $SINGLEMDS "lctl get_param -n devices" |
2157                 awk '($3 ~ "mdt" && $4 ~ "MDT") { print $4 }' | head -1)
2158         do_facet mgs "$LCTL conf_param \
2159                 ${device}.failover.node=$(h2$NETTYPE $FAKENID)" || return 4
2160
2161         log "Wait for RECONNECT_INTERVAL seconds (10s)"
2162         sleep 10
2163
2164         MSG="conf-sanity.sh test_35a `date +%F%kh%Mm%Ss`"
2165         $LCTL clear
2166         log "$MSG"
2167         log "Stopping the MDT: $device"
2168         stop_mdt 1 || return 5
2169
2170         df $MOUNT > /dev/null 2>&1 &
2171         DFPID=$!
2172         log "Restarting the MDT: $device"
2173         start_mdt 1 || return 6
2174         log "Wait for df ($DFPID) ... "
2175         wait $DFPID
2176         log "done"
2177         lctl set_param debug="$DBG_SAVE"
2178
2179         # retrieve from the log the first server that the client tried to
2180         # contact after the connection loss
2181         $LCTL dk $TMP/lustre-log-$TESTNAME.log
2182         NEXTCONN=`awk "/${MSG}/ {start = 1;}
2183                        /import_select_connection.*$device-mdc.* using connection/ {
2184                                 if (start) {
2185                                         if (\\\$NF ~ /$FAKENID/)
2186                                                 print \\\$NF;
2187                                         else
2188                                                 print 0;
2189                                         exit;
2190                                 }
2191                        }" $TMP/lustre-log-$TESTNAME.log`
2192         [ "$NEXTCONN" != "0" ] && log "The client didn't try to reconnect to the last active server (tried ${NEXTCONN} instead)" && return 7
2193         cleanup
2194         # remove nid settings
2195         writeconf_or_reformat
2196 }
2197 run_test 35a "Reconnect to the last active server first"
2198
2199 test_35b() { # bug 18674
2200         remote_mds || { skip "local MDS" && return 0; }
2201         setup
2202
2203         debugsave
2204         $LCTL set_param debug="ha"
2205         $LCTL clear
2206         MSG="conf-sanity.sh test_35b `date +%F%kh%Mm%Ss`"
2207         log "$MSG"
2208
2209         log "Set up a fake failnode for the MDS"
2210         FAKENID="127.0.0.2"
2211         local device=$(do_facet $SINGLEMDS "$LCTL get_param -n devices" |
2212                 awk '($3 ~ "mdt" && $4 ~ "MDT") { print $4 }' | head -1)
2213         do_facet mgs "$LCTL conf_param \
2214                 ${device}.failover.node=$(h2$NETTYPE $FAKENID)" || return 1
2215
2216         local at_max_saved=0
2217         # adaptive timeouts may prevent seeing the issue
2218         if at_is_enabled; then
2219                 at_max_saved=$(at_max_get mds)
2220                 at_max_set 0 mds client
2221         fi
2222
2223         mkdir -p $MOUNT/$tdir
2224
2225         log "Injecting EBUSY on MDS"
2226         # Setting OBD_FAIL_MDS_RESEND=0x136
2227         do_facet $SINGLEMDS "$LCTL set_param fail_loc=0x80000136" || return 2
2228
2229         $LCTL set_param mdc.${FSNAME}*.stats=clear
2230
2231         log "Creating a test file and stat it"
2232         touch $MOUNT/$tdir/$tfile
2233         stat $MOUNT/$tdir/$tfile
2234
2235         log "Stop injecting EBUSY on MDS"
2236         do_facet $SINGLEMDS "$LCTL set_param fail_loc=0" || return 3
2237         rm -f $MOUNT/$tdir/$tfile
2238
2239         log "done"
2240         # restore adaptive timeout
2241         [ $at_max_saved -ne 0 ] && at_max_set $at_max_saved mds client
2242
2243         $LCTL dk $TMP/lustre-log-$TESTNAME.log
2244
2245         CONNCNT=`$LCTL get_param mdc.${FSNAME}*.stats | awk '/mds_connect/{print $2}'`
2246
2247         # retrieve from the log if the client has ever tried to
2248         # contact the fake server after the loss of connection
2249         FAILCONN=`awk "BEGIN {ret = 0;}
2250                        /import_select_connection.*${FSNAME}-MDT0000-mdc.* using connection/ {
2251                                 ret = 1;
2252                                 if (\\\$NF ~ /$FAKENID/) {
2253                                         ret = 2;
2254                                         exit;
2255                                 }
2256                        }
2257                        END {print ret}" $TMP/lustre-log-$TESTNAME.log`
2258
2259         [ "$FAILCONN" == "0" ] && \
2260                 log "ERROR: The client reconnection has not been triggered" && \
2261                 return 4
2262         [ "$FAILCONN" == "2" ] && \
2263                 log "ERROR: The client tried to reconnect to the failover server while the primary was busy" && \
2264                 return 5
2265
2266         # LU-290
2267         # When OBD_FAIL_MDS_RESEND is hit, we sleep for 2 * obd_timeout
2268         # Reconnects are supposed to be rate limited to one every 5s
2269         [ $CONNCNT -gt $((2 * $TIMEOUT / 5 + 1)) ] && \
2270                 log "ERROR: Too many reconnects $CONNCNT" && \
2271                 return 6
2272
2273         cleanup
2274         # remove nid settings
2275         writeconf_or_reformat
2276 }
2277 run_test 35b "Continue reconnection retries, if the active server is busy"
2278
2279 test_36() { # 12743
2280         [ $OSTCOUNT -lt 2 ] && skip_env "skipping test for single OST" && return
2281
2282         [ "$ost_HOST" = "`hostname`" -o "$ost1_HOST" = "`hostname`" ] || \
2283                 { skip "remote OST" && return 0; }
2284
2285         local rc=0
2286         local FSNAME2=test1234
2287         local fs3ost_HOST=$ost_HOST
2288         local MDSDEV=$(mdsdevname ${SINGLEMDS//mds/})
2289
2290         [ -n "$ost1_HOST" ] && fs2ost_HOST=$ost1_HOST && fs3ost_HOST=$ost1_HOST
2291
2292         if [ -z "$fs2ost_DEV" -o -z "$fs2mds_DEV" -o -z "$fs3ost_DEV" ]; then
2293                 is_blkdev $SINGLEMDS $MDSDEV && \
2294                 skip_env "mixed loopback and real device not working" && return
2295         fi
2296
2297         local fs2mdsdev=$(mdsdevname 1_2)
2298         local fs2ostdev=$(ostdevname 1_2)
2299         local fs3ostdev=$(ostdevname 2_2)
2300         local fs2mdsvdev=$(mdsvdevname 1_2)
2301         local fs2ostvdev=$(ostvdevname 1_2)
2302         local fs3ostvdev=$(ostvdevname 2_2)
2303
2304         add fs2mds $(mkfs_opts mds1 ${fs2mdsdev}) --mgs --fsname=${FSNAME2} \
2305                 --reformat $fs2mdsdev $fs2mdsvdev || exit 10
2306         # XXX after we support non 4K disk blocksize in ldiskfs, specify a
2307         #     different one than the default value here.
2308         add fs2ost $(mkfs_opts ost1 ${fs2ostdev}) --mgsnode=$MGSNID \
2309                 --fsname=${FSNAME2} --reformat $fs2ostdev $fs2ostvdev || exit 10
2310         add fs3ost $(mkfs_opts ost2 ${fs3ostdev}) --mgsnode=$MGSNID \
2311                 --fsname=${FSNAME2} --reformat $fs3ostdev $fs3ostvdev || exit 10
2312
2313         start fs2mds $fs2mdsdev $MDS_MOUNT_OPTS
2314         start fs2ost $fs2ostdev $OST_MOUNT_OPTS
2315         start fs3ost $fs3ostdev $OST_MOUNT_OPTS
2316         mkdir -p $MOUNT2
2317         $MOUNT_CMD $MGSNID:/${FSNAME2} $MOUNT2 || return 1
2318
2319         sleep 5 # until 11778 fixed
2320
2321         dd if=/dev/zero of=$MOUNT2/$tfile bs=1M count=7 || return 2
2322
2323         BKTOTAL=`lctl get_param -n obdfilter.*.kbytestotal | awk 'BEGIN{total=0}; {total+=$1}; END{print total}'`
2324         BKFREE=`lctl get_param -n obdfilter.*.kbytesfree | awk 'BEGIN{free=0}; {free+=$1}; END{print free}'`
2325         BKAVAIL=`lctl get_param -n obdfilter.*.kbytesavail | awk 'BEGIN{avail=0}; {avail+=$1}; END{print avail}'`
2326         STRING=`df -P $MOUNT2 | tail -n 1 | awk '{print $2","$3","$4}'`
2327         DFTOTAL=`echo $STRING | cut -d, -f1`
2328         DFUSED=`echo $STRING  | cut -d, -f2`
2329         DFAVAIL=`echo $STRING | cut -d, -f3`
2330         DFFREE=$(($DFTOTAL - $DFUSED))
2331
2332         ALLOWANCE=$((64 * $OSTCOUNT))
2333
2334         if [ $DFTOTAL -lt $(($BKTOTAL - $ALLOWANCE)) ] ||
2335            [ $DFTOTAL -gt $(($BKTOTAL + $ALLOWANCE)) ] ; then
2336                 echo "**** FAIL: df total($DFTOTAL) mismatch OST total($BKTOTAL)"
2337                 rc=1
2338         fi
2339         if [ $DFFREE -lt $(($BKFREE - $ALLOWANCE)) ] ||
2340            [ $DFFREE -gt $(($BKFREE + $ALLOWANCE)) ] ; then
2341                 echo "**** FAIL: df free($DFFREE) mismatch OST free($BKFREE)"
2342                 rc=2
2343         fi
2344         if [ $DFAVAIL -lt $(($BKAVAIL - $ALLOWANCE)) ] ||
2345            [ $DFAVAIL -gt $(($BKAVAIL + $ALLOWANCE)) ] ; then
2346                 echo "**** FAIL: df avail($DFAVAIL) mismatch OST avail($BKAVAIL)"
2347                 rc=3
2348        fi
2349
2350         umount -d $MOUNT2
2351         stop fs3ost -f || return 200
2352         stop fs2ost -f || return 201
2353         stop fs2mds -f || return 202
2354         unload_modules_conf || return 203
2355         return $rc
2356 }
2357 run_test 36 "df report consistency on OSTs with different block size"
2358
2359 test_37() {
2360         local mntpt=$(facet_mntpt $SINGLEMDS)
2361         local mdsdev=$(mdsdevname ${SINGLEMDS//mds/})
2362         local mdsdev_sym="$TMP/sym_mdt.img"
2363         local opts=$MDS_MOUNT_OPTS
2364         local rc=0
2365
2366         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
2367                 skip "Currently only applicable to ldiskfs-based MDTs"
2368                 return
2369         fi
2370
2371         echo "MDS :     $mdsdev"
2372         echo "SYMLINK : $mdsdev_sym"
2373         do_facet $SINGLEMDS rm -f $mdsdev_sym
2374
2375         do_facet $SINGLEMDS ln -s $mdsdev $mdsdev_sym
2376
2377         echo "mount symlink device - $mdsdev_sym"
2378
2379         if ! do_facet $SINGLEMDS test -b $mdsdev; then
2380                 opts=$(csa_add "$opts" -o loop)
2381         fi
2382         mount_op=$(do_facet $SINGLEMDS mount -v -t lustre $opts \
2383                 $mdsdev_sym $mntpt 2>&1)
2384         rc=${PIPESTATUS[0]}
2385
2386         echo mount_op=$mount_op
2387
2388         do_facet $SINGLEMDS "umount -d $mntpt && rm -f $mdsdev_sym"
2389
2390         if $(echo $mount_op | grep -q "unable to set tunable"); then
2391                 error "set tunables failed for symlink device"
2392         fi
2393
2394         [ $rc -eq 0 ] || error "mount symlink $mdsdev_sym failed! rc=$rc"
2395
2396         return 0
2397 }
2398 run_test 37 "verify set tunables works for symlink device"
2399
2400 test_38() { # bug 14222
2401         local fstype=$(facet_fstype $SINGLEMDS)
2402         local mntpt=$(facet_mntpt $SINGLEMDS)
2403
2404         setup
2405         # like runtests
2406         local COUNT=10
2407         local SRC="/etc /bin"
2408         local FILES=$(find $SRC -type f -mtime +1 | head -n $COUNT)
2409         log "copying $(echo $FILES | wc -w) files to $DIR/$tdir"
2410         mkdir -p $DIR/$tdir
2411         tar cf - $FILES | tar xf - -C $DIR/$tdir ||
2412                 error "copying $SRC to $DIR/$tdir"
2413         sync
2414         umount_client $MOUNT
2415         do_facet $SINGLEMDS "$LCTL get_param osp.*.prealloc_next_id"
2416         stop_mds
2417         log "delete lov_objid file on MDS"
2418
2419         mount_fstype $SINGLEMDS || error "mount MDS failed (1)"
2420
2421         do_facet $SINGLEMDS "od -Ax -td8 $mntpt/lov_objid; rm $mntpt/lov_objid"
2422
2423         unmount_fstype $SINGLEMDS || error "umount failed (1)"
2424
2425         # check create in mds_lov_connect
2426         start_mds
2427         mount_client $MOUNT
2428         for f in $FILES; do
2429                 [ $V ] && log "verifying $DIR/$tdir/$f"
2430                 diff -q $f $DIR/$tdir/$f || ERROR=y
2431         done
2432         do_facet $SINGLEMDS "$LCTL get_param osp.*.prealloc_next_id"
2433         if [ "$ERROR" = "y" ]; then
2434                 # check it's updates in sync
2435                 umount_client $MOUNT
2436                 stop_mds
2437                 mount_fstype $SIGNLEMDS
2438                 do_facet $SINGLEMDS "od -Ax -td8 $mntpt/lov_objid"
2439                 unmount_fstype $SINGLEMDS
2440                 error "old and new files are different after connect" || true
2441         fi
2442         touch $DIR/$tdir/f2 || error "f2 file create failed"
2443
2444         # check it's updates in sync
2445         umount_client $MOUNT
2446         stop_mds
2447
2448         mount_fstype $SINGLEMDS || error "mount MDS failed (3)"
2449
2450         do_facet $SINGLEMDS "od -Ax -td8 $mntpt/lov_objid"
2451         do_facet $SINGLEMDS dd if=/dev/zero of=$mntpt/lov_objid.clear count=8
2452
2453         unmount_fstype $SINGLEMDS || error "umount failed (3)"
2454
2455         start_mds
2456         mount_client $MOUNT
2457         for f in $FILES; do
2458                 [ $V ] && log "verifying $DIR/$tdir/$f"
2459                 diff -q $f $DIR/$tdir/$f || ERROR=y
2460         done
2461         touch $DIR/$tdir/f3 || error "f3 file create failed"
2462         do_facet $SINGLEMDS "$LCTL get_param osp.*.prealloc_next_id"
2463         umount_client $MOUNT
2464         stop_mds
2465         mount_fstype $SINGLEMDS || error "mount MDS failed (4)"
2466         do_facet $SINGLEMDS "od -Ax -td8 $mntpt/lov_objid"
2467         unmount_fstype $SINGLEMDS || error "umount failed (4)"
2468
2469         [ "$ERROR" = "y" ] &&
2470                 error "old and new files are different after sync" || true
2471
2472         log "files compared the same"
2473         cleanup
2474 }
2475 run_test 38 "MDS recreates missing lov_objid file from OST data"
2476
2477 test_39() {
2478         PTLDEBUG=+malloc
2479         setup
2480         cleanup
2481         perl $SRCDIR/leak_finder.pl $TMP/debug 2>&1 | egrep '*** Leak:' &&
2482                 error "memory leak detected" || true
2483 }
2484 run_test 39 "leak_finder recognizes both LUSTRE and LNET malloc messages"
2485
2486 test_40() { # bug 15759
2487         start_ost
2488         #define OBD_FAIL_TGT_TOOMANY_THREADS     0x706
2489         do_facet $SINGLEMDS "$LCTL set_param fail_loc=0x80000706"
2490         start_mds
2491         cleanup
2492 }
2493 run_test 40 "race during service thread startup"
2494
2495 test_41a() { #bug 14134
2496         if [ $(facet_fstype $SINGLEMDS) == ldiskfs ] &&
2497            ! do_facet $SINGLEMDS test -b $(mdsdevname 1); then
2498                 skip "Loop devices does not work with nosvc option"
2499                 return
2500         fi
2501
2502         local rc
2503         local MDSDEV=$(mdsdevname ${SINGLEMDS//mds/})
2504
2505         start $SINGLEMDS $MDSDEV $MDS_MOUNT_OPTS -o nosvc -n
2506         start ost1 `ostdevname 1` $OST_MOUNT_OPTS
2507         start $SINGLEMDS $MDSDEV $MDS_MOUNT_OPTS -o nomgs,force
2508         mkdir -p $MOUNT
2509         mount_client $MOUNT || return 1
2510         sleep 5
2511
2512         echo "blah blah" > $MOUNT/$tfile
2513         cat $MOUNT/$tfile
2514
2515         umount_client $MOUNT
2516         stop ost1 -f || return 201
2517         stop_mds -f || return 202
2518         stop_mds -f || return 203
2519         unload_modules_conf || return 204
2520         return $rc
2521 }
2522 run_test 41a "mount mds with --nosvc and --nomgs"
2523
2524 test_41b() {
2525         if [ $(facet_fstype $SINGLEMDS) == ldiskfs ] &&
2526            ! do_facet $SINGLEMDS test -b $(mdsdevname 1); then
2527                 skip "Loop devices does not work with nosvc option"
2528                 return
2529         fi
2530
2531         ! combined_mgs_mds && skip "needs combined mgs device" && return 0
2532
2533         stopall
2534         reformat
2535         local MDSDEV=$(mdsdevname ${SINGLEMDS//mds/})
2536
2537         start $SINGLEMDS $MDSDEV $MDS_MOUNT_OPTS -o nosvc -n
2538         start_ost
2539         start $SINGLEMDS $MDSDEV $MDS_MOUNT_OPTS -o nomgs,force
2540         mkdir -p $MOUNT
2541         mount_client $MOUNT || return 1
2542         sleep 5
2543
2544         echo "blah blah" > $MOUNT/$tfile
2545         cat $MOUNT/$tfile || return 200
2546
2547         umount_client $MOUNT
2548         stop_ost || return 201
2549         stop_mds -f || return 202
2550         stop_mds -f || return 203
2551
2552 }
2553 run_test 41b "mount mds with --nosvc and --nomgs on first mount"
2554
2555 test_42() { #bug 14693
2556         setup
2557         check_mount || error "client was not mounted"
2558
2559         do_facet mgs $LCTL conf_param $FSNAME.llite.some_wrong_param=10
2560         umount_client $MOUNT ||
2561                 error "unmounting client failed with invalid llite param"
2562         mount_client $MOUNT ||
2563                 error "mounting client failed with invalid llite param"
2564
2565         do_facet mgs $LCTL conf_param $FSNAME.sys.some_wrong_param=20
2566         cleanup || error "stopping $FSNAME failed with invalid sys param"
2567         load_modules
2568         setup
2569         check_mount || "client was not mounted with invalid sys param"
2570         cleanup || error "stopping $FSNAME failed with invalid sys param"
2571         return 0
2572 }
2573 run_test 42 "allow client/server mount/unmount with invalid config param"
2574
2575 test_43() {
2576         [ $UID -ne 0 -o $RUNAS_ID -eq 0 ] && skip_env "run as root"
2577
2578         ID1=${ID1:-501}
2579         USER1=$(cat /etc/passwd | grep :$ID1:$ID1: | cut -d: -f1)
2580         [ -z "$USER1" ] && skip_env "missing user with uid=$ID1 gid=$ID1" &&
2581                 return
2582
2583         setup
2584         chmod ugo+x $DIR || error "chmod 0 failed"
2585         set_conf_param_and_check mds                                    \
2586                 "lctl get_param -n mdt.$FSNAME-MDT0000.root_squash"     \
2587                 "$FSNAME.mdt.root_squash"                               \
2588                 "0:0"
2589         wait_update $HOSTNAME                                           \
2590                 "lctl get_param -n llite.${FSNAME}*.root_squash"        \
2591                 "0:0" ||
2592                 error "check llite root_squash failed!"
2593         set_conf_param_and_check mds                                    \
2594                 "lctl get_param -n mdt.$FSNAME-MDT0000.nosquash_nids"   \
2595                 "$FSNAME.mdt.nosquash_nids"                             \
2596                 "NONE"
2597         wait_update $HOSTNAME                                           \
2598                 "lctl get_param -n llite.${FSNAME}*.nosquash_nids"      \
2599                 "NONE" ||
2600                 error "check llite nosquash_nids failed!"
2601
2602     #
2603     # create set of test files
2604     #
2605     echo "111" > $DIR/$tfile-userfile || error "write 1 failed"
2606     chmod go-rw $DIR/$tfile-userfile  || error "chmod 1 failed"
2607     chown $RUNAS_ID.$RUNAS_ID $DIR/$tfile-userfile || error "chown failed"
2608
2609     echo "222" > $DIR/$tfile-rootfile || error "write 2 failed"
2610     chmod go-rw $DIR/$tfile-rootfile  || error "chmod 2 faield"
2611
2612     mkdir $DIR/$tdir-rootdir -p       || error "mkdir failed"
2613     chmod go-rwx $DIR/$tdir-rootdir   || error "chmod 3 failed"
2614     touch $DIR/$tdir-rootdir/tfile-1  || error "touch failed"
2615
2616         echo "777" > $DIR/$tfile-user1file || error "write 7 failed"
2617         chmod go-rw $DIR/$tfile-user1file  || error "chmod 7 failed"
2618         chown $ID1.$ID1 $DIR/$tfile-user1file || error "chown failed"
2619
2620         #
2621         # check root_squash:
2622         #   set root squash UID:GID to RUNAS_ID
2623         #   root should be able to access only files owned by RUNAS_ID
2624         #
2625         set_conf_param_and_check mds                                    \
2626                 "lctl get_param -n mdt.$FSNAME-MDT0000.root_squash"     \
2627                 "$FSNAME.mdt.root_squash"                               \
2628                 "$RUNAS_ID:$RUNAS_ID"
2629         wait_update $HOSTNAME                                           \
2630                 "lctl get_param -n llite.${FSNAME}*.root_squash"        \
2631                 "$RUNAS_ID:$RUNAS_ID" ||
2632                 error "check llite root_squash failed!"
2633
2634     ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tfile-userfile)
2635     dd if=$DIR/$tfile-userfile 1>/dev/null 2>/dev/null || \
2636         error "$ST: root read permission is denied"
2637     echo "$ST: root read permission is granted - ok"
2638
2639     echo "444" | \
2640     dd conv=notrunc of=$DIR/$tfile-userfile 1>/dev/null 2>/dev/null || \
2641         error "$ST: root write permission is denied"
2642     echo "$ST: root write permission is granted - ok"
2643
2644     ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tfile-rootfile)
2645     dd if=$DIR/$tfile-rootfile 1>/dev/null 2>/dev/null && \
2646         error "$ST: root read permission is granted"
2647     echo "$ST: root read permission is denied - ok"
2648
2649     echo "555" | \
2650     dd conv=notrunc of=$DIR/$tfile-rootfile 1>/dev/null 2>/dev/null && \
2651         error "$ST: root write permission is granted"
2652     echo "$ST: root write permission is denied - ok"
2653
2654     ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tdir-rootdir)
2655     rm $DIR/$tdir-rootdir/tfile-1 1>/dev/null 2>/dev/null && \
2656         error "$ST: root unlink permission is granted"
2657     echo "$ST: root unlink permission is denied - ok"
2658
2659     touch $DIR/tdir-rootdir/tfile-2 1>/dev/null 2>/dev/null && \
2660         error "$ST: root create permission is granted"
2661     echo "$ST: root create permission is denied - ok"
2662
2663
2664         # LU-1778
2665         # check root_squash is enforced independently
2666         # of client cache content
2667         #
2668         # access file by USER1, keep access open
2669         # root should be denied access to user file
2670
2671         runas -u $ID1 tail -f $DIR/$tfile-user1file 1>/dev/null 2>&1 &
2672         pid=$!
2673         sleep 1
2674
2675         ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tfile-user1file)
2676         dd if=$DIR/$tfile-user1file 1>/dev/null 2>&1 &&
2677             { kill $pid; error "$ST: root read permission is granted"; }
2678         echo "$ST: root read permission is denied - ok"
2679
2680         echo "777" | \
2681         dd conv=notrunc of=$DIR/$tfile-user1file 1>/dev/null 2>&1 &&
2682             { kill $pid; error "$ST: root write permission is granted"; }
2683         echo "$ST: root write permission is denied - ok"
2684
2685         kill $pid
2686         wait $pid
2687
2688         #
2689         # check nosquash_nids:
2690         #   put client's NID into nosquash_nids list,
2691         #   root should be able to access root file after that
2692         #
2693         local NIDLIST=$(lctl list_nids all | tr '\n' ' ')
2694         NIDLIST="2@elan $NIDLIST 192.168.0.[2,10]@tcp"
2695         NIDLIST=$(echo $NIDLIST | tr -s ' ' ' ')
2696         set_conf_param_and_check mds                                    \
2697                 "lctl get_param -n mdt.$FSNAME-MDT0000.nosquash_nids"   \
2698                 "$FSNAME-MDTall.mdt.nosquash_nids"                      \
2699                 "$NIDLIST"
2700         wait_update $HOSTNAME                                           \
2701                 "lctl get_param -n llite.${FSNAME}*.nosquash_nids"      \
2702                 "$NIDLIST" ||
2703                 error "check llite nosquash_nids failed!"
2704
2705     ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tfile-rootfile)
2706     dd if=$DIR/$tfile-rootfile 1>/dev/null 2>/dev/null || \
2707         error "$ST: root read permission is denied"
2708     echo "$ST: root read permission is granted - ok"
2709
2710     echo "666" | \
2711     dd conv=notrunc of=$DIR/$tfile-rootfile 1>/dev/null 2>/dev/null || \
2712         error "$ST: root write permission is denied"
2713     echo "$ST: root write permission is granted - ok"
2714
2715     ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tdir-rootdir)
2716     rm $DIR/$tdir-rootdir/tfile-1 || \
2717         error "$ST: root unlink permission is denied"
2718     echo "$ST: root unlink permission is granted - ok"
2719     touch $DIR/$tdir-rootdir/tfile-2 || \
2720         error "$ST: root create permission is denied"
2721     echo "$ST: root create permission is granted - ok"
2722
2723     return 0
2724 }
2725 run_test 43 "check root_squash and nosquash_nids"
2726
2727 umount_client $MOUNT
2728 cleanup_nocli
2729
2730 test_44() { # 16317
2731         setup
2732         check_mount || return 2
2733         UUID=$($LCTL get_param llite.${FSNAME}*.uuid | cut -d= -f2)
2734         STATS_FOUND=no
2735         UUIDS=$(do_facet $SINGLEMDS "$LCTL get_param mdt.${FSNAME}*.exports.*.uuid")
2736         for VAL in $UUIDS; do
2737                 NID=$(echo $VAL | cut -d= -f1)
2738                 CLUUID=$(echo $VAL | cut -d= -f2)
2739                 [ "$UUID" = "$CLUUID" ] && STATS_FOUND=yes && break
2740         done
2741         [ "$STATS_FOUND" = "no" ] && error "stats not found for client"
2742         cleanup
2743         return 0
2744 }
2745 run_test 44 "mounted client proc entry exists"
2746
2747 test_45() { #17310
2748         setup
2749         check_mount || return 2
2750         stop_mds
2751         df -h $MOUNT &
2752         log "sleep 60 sec"
2753         sleep 60
2754 #define OBD_FAIL_PTLRPC_LONG_UNLINK   0x50f
2755         do_facet client "lctl set_param fail_loc=0x50f"
2756         log "sleep 10 sec"
2757         sleep 10
2758         manual_umount_client --force || return 3
2759         do_facet client "lctl set_param fail_loc=0x0"
2760         start_mds
2761         mount_client $MOUNT || return 4
2762         cleanup
2763         return 0
2764 }
2765 run_test 45 "long unlink handling in ptlrpcd"
2766
2767 cleanup_46a() {
2768         trap 0
2769         local rc=0
2770         local count=$1
2771
2772         umount_client $MOUNT2 || rc=$?
2773         umount_client $MOUNT || rc=$?
2774         while [ $count -gt 0 ]; do
2775                 stop ost${count} -f || rc=$?
2776                 let count=count-1
2777         done    
2778         stop_mds || rc=$?
2779         cleanup_nocli || rc=$?
2780         #writeconf to remove all ost2 traces for subsequent tests
2781         writeconf_or_reformat
2782         return $rc
2783 }
2784
2785 test_46a() {
2786         echo "Testing with $OSTCOUNT OSTs"
2787         reformat_and_config
2788         start_mds || return 1
2789         #first client should see only one ost
2790         start_ost || return 2
2791         wait_osc_import_state mds ost FULL
2792         #start_client
2793         mount_client $MOUNT || return 3
2794         trap "cleanup_46a $OSTCOUNT" EXIT ERR
2795
2796         local i
2797         for (( i=2; i<=$OSTCOUNT; i++ )); do
2798             start ost$i `ostdevname $i` $OST_MOUNT_OPTS || return $((i+2))
2799         done
2800
2801         # wait until osts in sync
2802         for (( i=2; i<=$OSTCOUNT; i++ )); do
2803             wait_osc_import_state mds ost$i FULL
2804             wait_osc_import_state client ost$i FULL
2805         done
2806
2807         #second client see all ost's
2808
2809         mount_client $MOUNT2 || return 8
2810         $LFS setstripe -c -1 $MOUNT2 || return 9
2811         $LFS getstripe $MOUNT2 || return 10
2812
2813         echo "ok" > $MOUNT2/widestripe
2814         $LFS getstripe $MOUNT2/widestripe || return 11
2815         # fill acl buffer for avoid expand lsm to them
2816         awk -F : '{if (FNR < 25) { print "u:"$1":rwx" }}' /etc/passwd | while read acl; do
2817             setfacl -m $acl $MOUNT2/widestripe
2818         done
2819
2820         # will be deadlock
2821         stat $MOUNT/widestripe || return 12
2822
2823         cleanup_46a $OSTCOUNT || { echo "cleanup_46a failed!" && return 13; }
2824         return 0
2825 }
2826 run_test 46a "handle ost additional - wide striped file"
2827
2828 test_47() { #17674
2829         reformat
2830         setup_noconfig
2831         check_mount || return 2
2832         $LCTL set_param ldlm.namespaces.$FSNAME-*-*-*.lru_size=100
2833
2834         local lru_size=[]
2835         local count=0
2836         for ns in $($LCTL get_param ldlm.namespaces.$FSNAME-*-*-*.lru_size); do
2837             if echo $ns | grep "MDT[[:digit:]]*"; then
2838                 continue
2839             fi
2840             lrs=$(echo $ns | sed 's/.*lru_size=//')
2841             lru_size[count]=$lrs
2842             let count=count+1
2843         done
2844
2845         facet_failover ost1
2846         facet_failover $SINGLEMDS
2847         client_up || return 3
2848
2849         count=0
2850         for ns in $($LCTL get_param ldlm.namespaces.$FSNAME-*-*-*.lru_size); do
2851             if echo $ns | grep "MDT[[:digit:]]*"; then
2852                 continue
2853             fi
2854             lrs=$(echo $ns | sed 's/.*lru_size=//')
2855             if ! test "$lrs" -eq "${lru_size[count]}"; then
2856                 n=$(echo $ns | sed -e 's/ldlm.namespaces.//' -e 's/.lru_size=.*//')
2857                 error "$n has lost lru_size: $lrs vs. ${lru_size[count]}"
2858             fi
2859             let count=count+1
2860         done
2861
2862         cleanup
2863         return 0
2864 }
2865 run_test 47 "server restart does not make client loss lru_resize settings"
2866
2867 cleanup_48() {
2868         trap 0
2869
2870         # reformat after this test is needed - if test will failed
2871         # we will have unkillable file at FS
2872         reformat_and_config
2873 }
2874
2875 test_48() { # bug 17636
2876         reformat
2877         setup_noconfig
2878         check_mount || return 2
2879
2880         $LFS setstripe -c -1 $MOUNT || return 9
2881         $LFS getstripe $MOUNT || return 10
2882
2883         echo "ok" > $MOUNT/widestripe
2884         $LFS getstripe $MOUNT/widestripe || return 11
2885
2886         trap cleanup_48 EXIT ERR
2887
2888         # fill acl buffer for avoid expand lsm to them
2889         getent passwd | awk -F : '{ print "u:"$1":rwx" }' |  while read acl; do
2890             setfacl -m $acl $MOUNT/widestripe
2891         done
2892
2893         stat $MOUNT/widestripe || return 12
2894
2895         cleanup_48
2896         return 0
2897 }
2898 run_test 48 "too many acls on file"
2899
2900 # check PARAM_SYS_LDLM_TIMEOUT option of MKFS.LUSTRE
2901 test_49a() { # bug 17710
2902         local timeout_orig=$TIMEOUT
2903         local ldlm_timeout_orig=$LDLM_TIMEOUT
2904         local LOCAL_TIMEOUT=20
2905
2906         LDLM_TIMEOUT=$LOCAL_TIMEOUT
2907         TIMEOUT=$LOCAL_TIMEOUT
2908
2909         reformat
2910         setup_noconfig
2911         check_mount || error "client mount failed"
2912
2913         echo "check ldlm_timout..."
2914         local LDLM_MDS="$(do_facet $SINGLEMDS lctl get_param -n ldlm_timeout)"
2915         local LDLM_OST1="$(do_facet ost1 lctl get_param -n ldlm_timeout)"
2916         local LDLM_CLIENT="$(do_facet client lctl get_param -n ldlm_timeout)"
2917
2918         if [ $LDLM_MDS -ne $LDLM_OST1 -o $LDLM_MDS -ne $LDLM_CLIENT ]; then
2919                 error "Different LDLM_TIMEOUT:$LDLM_MDS $LDLM_OST1 $LDLM_CLIENT"
2920         fi
2921
2922         if [ $LDLM_MDS -ne $((LOCAL_TIMEOUT / 3)) ]; then
2923                 error "LDLM_TIMEOUT($LDLM_MDS) is not $((LOCAL_TIMEOUT / 3))"
2924         fi
2925
2926         umount_client $MOUNT
2927         stop_ost || error "problem stopping OSS"
2928         stop_mds || error "problem stopping MDS"
2929
2930         LDLM_TIMEOUT=$ldlm_timeout_orig
2931         TIMEOUT=$timeout_orig
2932 }
2933 run_test 49a "check PARAM_SYS_LDLM_TIMEOUT option of mkfs.lustre"
2934
2935 test_49b() { # bug 17710
2936         local timeout_orig=$TIMEOUT
2937         local ldlm_timeout_orig=$LDLM_TIMEOUT
2938         local LOCAL_TIMEOUT=20
2939
2940         LDLM_TIMEOUT=$((LOCAL_TIMEOUT - 1))
2941         TIMEOUT=$LOCAL_TIMEOUT
2942
2943         reformat
2944         setup_noconfig
2945         check_mount || error "client mount failed"
2946
2947         local LDLM_MDS="$(do_facet $SINGLEMDS lctl get_param -n ldlm_timeout)"
2948         local LDLM_OST1="$(do_facet ost1 lctl get_param -n ldlm_timeout)"
2949         local LDLM_CLIENT="$(do_facet client lctl get_param -n ldlm_timeout)"
2950
2951         if [ $LDLM_MDS -ne $LDLM_OST1 -o $LDLM_MDS -ne $LDLM_CLIENT ]; then
2952                 error "Different LDLM_TIMEOUT:$LDLM_MDS $LDLM_OST1 $LDLM_CLIENT"
2953         fi
2954
2955         if [ $LDLM_MDS -ne $((LOCAL_TIMEOUT - 1)) ]; then
2956                 error "LDLM_TIMEOUT($LDLM_MDS) is not $((LOCAL_TIMEOUT - 1))"
2957         fi
2958
2959         cleanup || error "cleanup failed"
2960
2961         LDLM_TIMEOUT=$ldlm_timeout_orig
2962         TIMEOUT=$timeout_orig
2963 }
2964 run_test 49b "check PARAM_SYS_LDLM_TIMEOUT option of mkfs.lustre"
2965
2966 lazystatfs() {
2967         # Test both statfs and lfs df and fail if either one fails
2968         multiop_bg_pause $1 f_
2969         RC1=$?
2970         PID=$!
2971         killall -USR1 multiop
2972         [ $RC1 -ne 0 ] && log "lazystatfs multiop failed"
2973         wait $PID || { RC1=$?; log "multiop return error "; }
2974
2975         $LFS df &
2976         PID=$!
2977         sleep 5
2978         kill -s 0 $PID
2979         RC2=$?
2980         if [ $RC2 -eq 0 ]; then
2981             kill -s 9 $PID
2982             log "lazystatfs df failed"
2983         fi
2984
2985         RC=0
2986         [[ $RC1 -ne 0 || $RC2 -eq 0 ]] && RC=1
2987         return $RC
2988 }
2989
2990 test_50a() {
2991         setup
2992         lctl set_param llite.$FSNAME-*.lazystatfs=1
2993         touch $DIR/$tfile
2994
2995         lazystatfs $MOUNT || error "lazystatfs failed but no down servers"
2996
2997         cleanup || return $?
2998 }
2999 run_test 50a "lazystatfs all servers available =========================="
3000
3001 test_50b() {
3002         setup
3003         lctl set_param llite.$FSNAME-*.lazystatfs=1
3004         touch $DIR/$tfile
3005
3006         # Wait for client to detect down OST
3007         stop_ost || error "Unable to stop OST1"
3008         wait_osc_import_state mds ost DISCONN
3009
3010         lazystatfs $MOUNT || error "lazystatfs should don't have returned EIO"
3011
3012         umount_client $MOUNT || error "Unable to unmount client"
3013         stop_mds || error "Unable to stop MDS"
3014 }
3015 run_test 50b "lazystatfs all servers down =========================="
3016
3017 test_50c() {
3018         start_mds || error "Unable to start MDS"
3019         start_ost || error "Unable to start OST1"
3020         start_ost2 || error "Unable to start OST2"
3021         mount_client $MOUNT || error "Unable to mount client"
3022         lctl set_param llite.$FSNAME-*.lazystatfs=1
3023         touch $DIR/$tfile
3024
3025         # Wait for client to detect down OST
3026         stop_ost || error "Unable to stop OST1"
3027         wait_osc_import_state mds ost DISCONN
3028         lazystatfs $MOUNT || error "lazystatfs failed with one down server"
3029
3030         umount_client $MOUNT || error "Unable to unmount client"
3031         stop_ost2 || error "Unable to stop OST2"
3032         stop_mds || error "Unable to stop MDS"
3033         #writeconf to remove all ost2 traces for subsequent tests
3034         writeconf_or_reformat
3035 }
3036 run_test 50c "lazystatfs one server down =========================="
3037
3038 test_50d() {
3039         start_mds || error "Unable to start MDS"
3040         start_ost || error "Unable to start OST1"
3041         start_ost2 || error "Unable to start OST2"
3042         mount_client $MOUNT || error "Unable to mount client"
3043         lctl set_param llite.$FSNAME-*.lazystatfs=1
3044         touch $DIR/$tfile
3045
3046         # Issue the statfs during the window where the client still
3047         # belives the OST to be available but it is in fact down.
3048         # No failure just a statfs which hangs for a timeout interval.
3049         stop_ost || error "Unable to stop OST1"
3050         lazystatfs $MOUNT || error "lazystatfs failed with one down server"
3051
3052         umount_client $MOUNT || error "Unable to unmount client"
3053         stop_ost2 || error "Unable to stop OST2"
3054         stop_mds || error "Unable to stop MDS"
3055         #writeconf to remove all ost2 traces for subsequent tests
3056         writeconf_or_reformat
3057 }
3058 run_test 50d "lazystatfs client/server conn race =========================="
3059
3060 test_50e() {
3061         local RC1
3062         local pid
3063
3064         reformat_and_config
3065         start_mds || return 1
3066         #first client should see only one ost
3067         start_ost || return 2
3068         wait_osc_import_state mds ost FULL
3069
3070         # Wait for client to detect down OST
3071         stop_ost || error "Unable to stop OST1"
3072         wait_osc_import_state mds ost DISCONN
3073
3074         mount_client $MOUNT || error "Unable to mount client"
3075         lctl set_param llite.$FSNAME-*.lazystatfs=0
3076
3077         multiop_bg_pause $MOUNT _f
3078         RC1=$?
3079         pid=$!
3080
3081         if [ $RC1 -ne 0 ]; then
3082                 log "multiop failed $RC1"
3083         else
3084             kill -USR1 $pid
3085             sleep $(( $TIMEOUT+1 ))
3086             kill -0 $pid
3087             [ $? -ne 0 ] && error "process isn't sleep"
3088             start_ost || error "Unable to start OST1"
3089             wait $pid || error "statfs failed"
3090         fi
3091
3092         umount_client $MOUNT || error "Unable to unmount client"
3093         stop_ost || error "Unable to stop OST1"
3094         stop_mds || error "Unable to stop MDS"
3095 }
3096 run_test 50e "normal statfs all servers down =========================="
3097
3098 test_50f() {
3099         local RC1
3100         local pid
3101         CONN_PROC="osc.$FSNAME-OST0001-osc-[M]*.ost_server_uuid"
3102
3103         start_mds || error "Unable to start mds"
3104         #first client should see only one ost
3105         start_ost || error "Unable to start OST1"
3106         wait_osc_import_state mds ost FULL
3107
3108         start_ost2 || error "Unable to start OST2"
3109         wait_osc_import_state mds ost2 FULL
3110
3111         # Wait for client to detect down OST
3112         stop_ost2 || error "Unable to stop OST2"
3113
3114         wait_osc_import_state mds ost2 DISCONN
3115         mount_client $MOUNT || error "Unable to mount client"
3116         lctl set_param llite.$FSNAME-*.lazystatfs=0
3117
3118         multiop_bg_pause $MOUNT _f
3119         RC1=$?
3120         pid=$!
3121
3122         if [ $RC1 -ne 0 ]; then
3123                 log "lazystatfs multiop failed $RC1"
3124         else
3125             kill -USR1 $pid
3126             sleep $(( $TIMEOUT+1 ))
3127             kill -0 $pid
3128             [ $? -ne 0 ] && error "process isn't sleep"
3129             start_ost2 || error "Unable to start OST2"
3130             wait $pid || error "statfs failed"
3131             stop_ost2 || error "Unable to stop OST2"
3132         fi
3133
3134         umount_client $MOUNT || error "Unable to unmount client"
3135         stop_ost || error "Unable to stop OST1"
3136         stop_mds || error "Unable to stop MDS"
3137         #writeconf to remove all ost2 traces for subsequent tests
3138         writeconf_or_reformat
3139 }
3140 run_test 50f "normal statfs one server in down =========================="
3141
3142 test_50g() {
3143         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2, skipping" && return
3144         setup
3145         start_ost2 || error "Unable to start OST2"
3146         wait_osc_import_state mds ost2 FULL
3147         wait_osc_import_state client ost2 FULL
3148
3149         local PARAM="${FSNAME}-OST0001.osc.active"
3150
3151         $LFS setstripe -c -1 $DIR/$tfile || error "Unable to lfs setstripe"
3152         do_facet mgs $LCTL conf_param $PARAM=0 || error "Unable to deactivate OST"
3153
3154         umount_client $MOUNT || error "Unable to unmount client"
3155         mount_client $MOUNT || error "Unable to mount client"
3156         # This df should not cause a panic
3157         df -k $MOUNT
3158
3159         do_facet mgs $LCTL conf_param $PARAM=1 || error "Unable to activate OST"
3160         rm -f $DIR/$tfile
3161         umount_client $MOUNT || error "Unable to unmount client"
3162         stop_ost2 || error "Unable to stop OST2"
3163         stop_ost || error "Unable to stop OST1"
3164         stop_mds || error "Unable to stop MDS"
3165         #writeconf to remove all ost2 traces for subsequent tests
3166         writeconf_or_reformat
3167 }
3168 run_test 50g "deactivated OST should not cause panic====================="
3169
3170 # LU-642
3171 test_50h() {
3172         # prepare MDT/OST, make OSC inactive for OST1
3173         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2, skipping" && return
3174
3175         [ $(facet_fstype ost1) == zfs ] && import_zpool ost1
3176         do_facet ost1 "$TUNEFS --param osc.active=0 `ostdevname 1`" ||
3177                 error "tunefs OST1 failed"
3178         start_mds  || error "Unable to start MDT"
3179         start_ost  || error "Unable to start OST1"
3180         start_ost2 || error "Unable to start OST2"
3181         mount_client $MOUNT || error "client start failed"
3182
3183         mkdir -p $DIR/$tdir
3184
3185         # activatate OSC for OST1
3186         local TEST="$LCTL get_param -n osc.${FSNAME}-OST0000-osc-[!M]*.active"
3187         set_conf_param_and_check client                                 \
3188                 "$TEST" "${FSNAME}-OST0000.osc.active" 1 ||
3189                 error "Unable to activate OST1"
3190
3191         mkdir -p $DIR/$tdir/2
3192         $LFS setstripe -c -1 -i 0 $DIR/$tdir/2
3193         sleep 1 && echo "create a file after OST1 is activated"
3194         # create some file
3195         createmany -o $DIR/$tdir/2/$tfile-%d 1
3196
3197         # check OSC import is working
3198         stat $DIR/$tdir/2/* >/dev/null 2>&1 ||
3199                 error "some OSC imports are still not connected"
3200
3201         # cleanup
3202         umount_client $MOUNT || error "Unable to umount client"
3203         stop_ost2 || error "Unable to stop OST2"
3204         cleanup_nocli
3205 }
3206 run_test 50h "LU-642: activate deactivated OST  ==="
3207
3208 test_51() {
3209         local LOCAL_TIMEOUT=20
3210
3211         reformat
3212         setup_noconfig
3213         check_mount || return 1
3214
3215         mkdir $MOUNT/d1
3216         $LFS setstripe -c -1 $MOUNT/d1
3217         #define OBD_FAIL_MDS_REINT_DELAY         0x142
3218         do_facet $SINGLEMDS "lctl set_param fail_loc=0x142"
3219         touch $MOUNT/d1/f1 &
3220         local pid=$!
3221         sleep 2
3222         start_ost2 || return 2
3223         wait $pid
3224         stop_ost2 || return 3
3225         cleanup
3226         #writeconf to remove all ost2 traces for subsequent tests
3227         writeconf_or_reformat
3228 }
3229 run_test 51 "Verify that mdt_reint handles RMF_MDT_MD correctly when an OST is added"
3230
3231 copy_files_xattrs()
3232 {
3233         local node=$1
3234         local dest=$2
3235         local xattrs=$3
3236         shift 3
3237
3238         do_node $node mkdir -p $dest
3239         [ $? -eq 0 ] || { error "Unable to create directory"; return 1; }
3240
3241         do_node $node  'tar cf - '$@' | tar xf - -C '$dest';
3242                         [ \"\${PIPESTATUS[*]}\" = \"0 0\" ] || exit 1'
3243         [ $? -eq 0 ] || { error "Unable to tar files"; return 2; }
3244
3245         do_node $node 'getfattr -d -m "[a-z]*\\." '$@' > '$xattrs
3246         [ $? -eq 0 ] || { error "Unable to read xattrs"; return 3; }
3247 }
3248
3249 diff_files_xattrs()
3250 {
3251         local node=$1
3252         local backup=$2
3253         local xattrs=$3
3254         shift 3
3255
3256         local backup2=${TMP}/backup2
3257
3258         do_node $node mkdir -p $backup2
3259         [ $? -eq 0 ] || { error "Unable to create directory"; return 1; }
3260
3261         do_node $node  'tar cf - '$@' | tar xf - -C '$backup2';
3262                         [ \"\${PIPESTATUS[*]}\" = \"0 0\" ] || exit 1'
3263         [ $? -eq 0 ] || { error "Unable to tar files to diff"; return 2; }
3264
3265         do_node $node "diff -rq $backup $backup2"
3266         [ $? -eq 0 ] || { error "contents differ"; return 3; }
3267
3268         local xattrs2=${TMP}/xattrs2
3269         do_node $node 'getfattr -d -m "[a-z]*\\." '$@' > '$xattrs2
3270         [ $? -eq 0 ] || { error "Unable to read xattrs to diff"; return 4; }
3271
3272         do_node $node "diff $xattrs $xattrs2"
3273         [ $? -eq 0 ] || { error "xattrs differ"; return 5; }
3274
3275         do_node $node "rm -rf $backup2 $xattrs2"
3276         [ $? -eq 0 ] || { error "Unable to delete temporary files"; return 6; }
3277 }
3278
3279 test_52() {
3280         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
3281                 skip "Only applicable to ldiskfs-based MDTs"
3282                 return
3283         fi
3284
3285         start_mds
3286         [ $? -eq 0 ] || { error "Unable to start MDS"; return 1; }
3287         start_ost
3288         [ $? -eq 0 ] || { error "Unable to start OST1"; return 2; }
3289         mount_client $MOUNT
3290         [ $? -eq 0 ] || { error "Unable to mount client"; return 3; }
3291
3292         local nrfiles=8
3293         local ost1mnt=$(facet_mntpt ost1)
3294         local ost1node=$(facet_active_host ost1)
3295         local ost1tmp=$TMP/conf52
3296         local loop
3297
3298         mkdir -p $DIR/$tdir
3299         [ $? -eq 0 ] || { error "Unable to create tdir"; return 4; }
3300         touch $TMP/modified_first
3301         [ $? -eq 0 ] || { error "Unable to create temporary file"; return 5; }
3302         local mtime=$(stat -c %Y $TMP/modified_first)
3303         do_node $ost1node "mkdir -p $ost1tmp && touch -m -d @$mtime $ost1tmp/modified_first"
3304
3305         [ $? -eq 0 ] || { error "Unable to create temporary file"; return 6; }
3306         sleep 1
3307
3308         $LFS setstripe -c -1 -S 1M $DIR/$tdir
3309         [ $? -eq 0 ] || { error "lfs setstripe failed"; return 7; }
3310
3311         for (( i=0; i < nrfiles; i++ )); do
3312                 multiop $DIR/$tdir/$tfile-$i Ow1048576w1048576w524288c
3313                 [ $? -eq 0 ] || { error "multiop failed"; return 8; }
3314                 echo -n .
3315         done
3316         echo
3317
3318         # backup files
3319         echo backup files to $TMP/files
3320         local files=$(find $DIR/$tdir -type f -newer $TMP/modified_first)
3321         copy_files_xattrs `hostname` $TMP/files $TMP/file_xattrs $files
3322         [ $? -eq 0 ] || { error "Unable to copy files"; return 9; }
3323
3324         umount_client $MOUNT
3325         [ $? -eq 0 ] || { error "Unable to umount client"; return 10; }
3326         stop_ost
3327         [ $? -eq 0 ] || { error "Unable to stop ost1"; return 11; }
3328
3329         echo mount ost1 as ldiskfs
3330         do_node $ost1node mkdir -p $ost1mnt
3331         [ $? -eq 0 ] || { error "Unable to create $ost1mnt"; return 23; }
3332         if ! do_node $ost1node test -b $ost1_dev; then
3333                 loop="-o loop"
3334         fi
3335         do_node $ost1node mount -t $(facet_fstype ost1) $loop $ost1_dev \
3336                 $ost1mnt
3337         [ $? -eq 0 ] || { error "Unable to mount ost1 as ldiskfs"; return 12; }
3338
3339         # backup objects
3340         echo backup objects to $ost1tmp/objects
3341         local objects=$(do_node $ost1node 'find '$ost1mnt'/O/[0-9]* -type f'\
3342                 '-size +0 -newer '$ost1tmp'/modified_first -regex ".*\/[0-9]+"')
3343         copy_files_xattrs $ost1node $ost1tmp/objects $ost1tmp/object_xattrs \
3344                         $objects
3345         [ $? -eq 0 ] || { error "Unable to copy objects"; return 13; }
3346
3347         # move objects to lost+found
3348         do_node $ost1node 'mv '$objects' '${ost1mnt}'/lost+found'
3349         [ $? -eq 0 ] || { error "Unable to move objects"; return 14; }
3350
3351         # recover objects dry-run
3352         echo "ll_recover_lost_found_objs dry_run"
3353         do_node $ost1node "ll_recover_lost_found_objs -n -d $ost1mnt/O"
3354         [ $? -eq 0 ] || { error "ll_recover_lost_found_objs failed"; return 15; }
3355
3356         # recover objects
3357         echo "ll_recover_lost_found_objs fix run"
3358         do_node $ost1node "ll_recover_lost_found_objs -d $ost1mnt/lost+found"
3359         [ $? -eq 0 ] || { error "ll_recover_lost_found_objs failed"; return 15; }
3360
3361         # compare restored objects against saved ones
3362         diff_files_xattrs $ost1node $ost1tmp/objects $ost1tmp/object_xattrs $objects
3363         [ $? -eq 0 ] || { error "Unable to diff objects"; return 16; }
3364
3365         do_node $ost1node "umount $ost1mnt"
3366         [ $? -eq 0 ] || { error "Unable to umount ost1 as ldiskfs"; return 17; }
3367
3368         start_ost
3369         [ $? -eq 0 ] || { error "Unable to start ost1"; return 18; }
3370         mount_client $MOUNT
3371         [ $? -eq 0 ] || { error "Unable to mount client"; return 19; }
3372
3373         # compare files
3374         diff_files_xattrs `hostname` $TMP/files $TMP/file_xattrs $files
3375         [ $? -eq 0 ] || { error "Unable to diff files"; return 20; }
3376
3377         rm -rf $TMP/files $TMP/file_xattrs
3378         [ $? -eq 0 ] || { error "Unable to delete temporary files"; return 21; }
3379         do_node $ost1node "rm -rf $ost1tmp"
3380         [ $? -eq 0 ] || { error "Unable to delete temporary files"; return 22; }
3381         cleanup
3382 }
3383 run_test 52 "check recovering objects from lost+found"
3384
3385 # Checks threads_min/max/started for some service
3386 #
3387 # Arguments: service name (OST or MDT), facet (e.g., ost1, $SINGLEMDS), and a
3388 # parameter pattern prefix like 'ost.*.ost'.
3389 thread_sanity() {
3390         local modname=$1
3391         local facet=$2
3392         local parampat=$3
3393         local opts=$4
3394         local basethr=$5
3395         local tmin
3396         local tmin2
3397         local tmax
3398         local tmax2
3399         local tstarted
3400         local paramp
3401         local msg="Insane $modname thread counts"
3402         local ncpts=$(check_cpt_number $facet)
3403         local nthrs
3404         shift 4
3405
3406         check_mount || return 41
3407
3408         # We need to expand $parampat, but it may match multiple parameters, so
3409         # we'll pick the first one
3410         if ! paramp=$(do_facet $facet "lctl get_param -N ${parampat}.threads_min"|head -1); then
3411                 error "Couldn't expand ${parampat}.threads_min parameter name"
3412                 return 22
3413         fi
3414
3415         # Remove the .threads_min part
3416         paramp=${paramp%.threads_min}
3417
3418         # Check for sanity in defaults
3419         tmin=$(do_facet $facet "lctl get_param -n ${paramp}.threads_min" || echo 0)
3420         tmax=$(do_facet $facet "lctl get_param -n ${paramp}.threads_max" || echo 0)
3421         tstarted=$(do_facet $facet "lctl get_param -n ${paramp}.threads_started" || echo 0)
3422         lassert 23 "$msg (PDSH problems?)" '(($tstarted && $tmin && $tmax))' || return $?
3423         lassert 24 "$msg" '(($tstarted >= $tmin && $tstarted <= $tmax ))' || return $?
3424         nthrs=$(expr $tmax - $tmin)
3425         if [ $nthrs -lt $ncpts ]; then
3426                 nthrs=0
3427         else
3428                 nthrs=$ncpts
3429         fi
3430
3431         [ $tmin -eq $tmax -a $tmin -eq $tstarted ] &&
3432                 skip_env "module parameter forced $facet thread count" &&
3433                 tmin=3 && tmax=$((3 * tmax))
3434
3435         # Check that we can change min/max
3436         do_facet $facet "lctl set_param ${paramp}.threads_min=$((tmin + nthrs))"
3437         do_facet $facet "lctl set_param ${paramp}.threads_max=$((tmax - nthrs))"
3438         tmin2=$(do_facet $facet "lctl get_param -n ${paramp}.threads_min" || echo 0)
3439         tmax2=$(do_facet $facet "lctl get_param -n ${paramp}.threads_max" || echo 0)
3440         lassert 25 "$msg" '(($tmin2 == ($tmin + $nthrs) && $tmax2 == ($tmax - $nthrs)))' || return $?
3441
3442         # Check that we can set min/max to the same value
3443         tmin=$(do_facet $facet "lctl get_param -n ${paramp}.threads_min" || echo 0)
3444         do_facet $facet "lctl set_param ${paramp}.threads_max=$tmin"
3445         tmin2=$(do_facet $facet "lctl get_param -n ${paramp}.threads_min" || echo 0)
3446         tmax2=$(do_facet $facet "lctl get_param -n ${paramp}.threads_max" || echo 0)
3447         lassert 26 "$msg" '(($tmin2 == $tmin && $tmax2 == $tmin))' || return $?
3448
3449         # Check that we can't set max < min
3450         do_facet $facet "lctl set_param ${paramp}.threads_max=$((tmin - 1))"
3451         tmin2=$(do_facet $facet "lctl get_param -n ${paramp}.threads_min" || echo 0)
3452         tmax2=$(do_facet $facet "lctl get_param -n ${paramp}.threads_max" || echo 0)
3453         lassert 27 "$msg" '(($tmin2 <= $tmax2))' || return $?
3454
3455         # We need to ensure that we get the module options desired; to do this
3456         # we set LOAD_MODULES_REMOTE=true and we call setmodopts below.
3457         LOAD_MODULES_REMOTE=true
3458         cleanup
3459         local oldvalue
3460         local newvalue="${opts}=$(expr $basethr \* $ncpts)"
3461         setmodopts -a $modname "$newvalue" oldvalue
3462
3463         load_modules
3464         setup
3465         check_mount || return 41
3466
3467         # Restore previous setting of MODOPTS_*
3468         setmodopts $modname "$oldvalue"
3469
3470         # Check that $opts took
3471         tmin=$(do_facet $facet "lctl get_param -n ${paramp}.threads_min")
3472         tmax=$(do_facet $facet "lctl get_param -n ${paramp}.threads_max")
3473         tstarted=$(do_facet $facet "lctl get_param -n ${paramp}.threads_started")
3474         lassert 28 "$msg" '(($tstarted >= $tmin && $tstarted <= $tmax ))' || return $?
3475         cleanup
3476
3477         load_modules
3478         setup
3479 }
3480
3481 test_53a() {
3482         setup
3483         thread_sanity OST ost1 'ost.*.ost' 'oss_num_threads' '16'
3484         cleanup
3485 }
3486 run_test 53a "check OSS thread count params"
3487
3488 test_53b() {
3489         setup
3490         local mds=$(do_facet $SINGLEMDS "lctl get_param -N mds.*.*.threads_max \
3491                     2>/dev/null")
3492         if [ -z "$mds" ]; then
3493                 #running this on an old MDT
3494                 thread_sanity MDT $SINGLEMDS 'mdt.*.*.' 'mdt_num_threads' 16
3495         else
3496                 thread_sanity MDT $SINGLEMDS 'mds.*.*.' 'mds_num_threads' 16
3497         fi
3498         cleanup
3499 }
3500 run_test 53b "check MDS thread count params"
3501
3502 test_54a() {
3503         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
3504                 skip "Only applicable to ldiskfs-based MDTs"
3505                 return
3506         fi
3507
3508     do_rpc_nodes $(facet_host ost1) run_llverdev $(ostdevname 1) -p
3509     [ $? -eq 0 ] || error "llverdev failed!"
3510     reformat_and_config
3511 }
3512 run_test 54a "test llverdev and partial verify of device"
3513
3514 test_54b() {
3515         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
3516                 skip "Only applicable to ldiskfs-based MDTs"
3517                 return
3518         fi
3519
3520     setup
3521     run_llverfs $MOUNT -p
3522     [ $? -eq 0 ] || error "llverfs failed!"
3523     cleanup
3524 }
3525 run_test 54b "test llverfs and partial verify of filesystem"
3526
3527 lov_objid_size()
3528 {
3529         local max_ost_index=$1
3530         echo -n $(((max_ost_index + 1) * 8))
3531 }
3532
3533 test_55() {
3534         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
3535                 skip "Only applicable to ldiskfs-based MDTs"
3536                 return
3537         fi
3538
3539         local mdsdev=$(mdsdevname 1)
3540         local mdsvdev=$(mdsvdevname 1)
3541
3542         for i in 1023 2048
3543         do
3544                 add mds1 $(mkfs_opts mds1 ${mdsdev}) --reformat $mdsdev \
3545                         $mdsvdev || exit 10
3546                 add ost1 $(mkfs_opts ost1 $(ostdevname 1)) --index=$i \
3547                         --reformat $(ostdevname 1) $(ostvdevname 1)
3548                 setup_noconfig
3549                 stopall
3550                 setup_noconfig
3551                 sync
3552
3553                 echo checking size of lov_objid for ost index $i
3554                 LOV_OBJID_SIZE=$(do_facet mds1 "$DEBUGFS -R 'stat lov_objid' $mdsdev 2>/dev/null" | grep ^User | awk '{print $6}')
3555                 if [ "$LOV_OBJID_SIZE" != $(lov_objid_size $i) ]; then
3556                         error "lov_objid size has to be $(lov_objid_size $i), not $LOV_OBJID_SIZE"
3557                 else
3558                         echo ok, lov_objid size is correct: $LOV_OBJID_SIZE
3559                 fi
3560                 stopall
3561         done
3562
3563         reformat
3564 }
3565 run_test 55 "check lov_objid size"
3566
3567 test_56() {
3568         local mds_journal_size_orig=$MDSJOURNALSIZE
3569
3570         MDSJOURNALSIZE=16
3571
3572         for num in $(seq 1 $MDSCOUNT); do
3573                 add mds${num} $(mkfs_opts mds${num} $(mdsdevname $num)) \
3574                         --reformat $(mdsdevname $num) $(mdsvdevname $num)
3575         done
3576         add ost1 $(mkfs_opts ost1 $(ostdevname 1)) --index=1000 --reformat \
3577                 $(ostdevname 1) $(ostvdevname 1)
3578         add ost2 $(mkfs_opts ost2 $(ostdevname 2)) --index=10000 --reformat \
3579                 $(ostdevname 2) $(ostvdevname 2)
3580
3581         start_mgsmds
3582         start_ost
3583         start_ost2 || error "Unable to start second ost"
3584         mount_client $MOUNT || error "Unable to mount client"
3585         echo ok
3586         $LFS osts
3587         stopall
3588         MDSJOURNALSIZE=$mds_journal_size_orig
3589         reformat
3590 }
3591 run_test 56 "check big indexes"
3592
3593 test_57a() { # bug 22656
3594         local NID=$(do_facet ost1 "$LCTL get_param nis" | tail -1 | awk '{print $1}')
3595         writeconf_or_reformat
3596         [ $(facet_fstype ost1) == zfs ] && import_zpool ost1
3597         do_facet ost1 "$TUNEFS --failnode=$NID `ostdevname 1`" || error "tunefs failed"
3598         start_mgsmds
3599         start_ost && error "OST registration from failnode should fail"
3600         reformat
3601 }
3602 run_test 57a "initial registration from failnode should fail (should return errs)"
3603
3604 test_57b() {
3605         local NID=$(do_facet ost1 "$LCTL get_param nis" | tail -1 | awk '{print $1}')
3606         writeconf_or_reformat
3607         [ $(facet_fstype ost1) == zfs ] && import_zpool ost1
3608         do_facet ost1 "$TUNEFS --servicenode=$NID `ostdevname 1`" || error "tunefs failed"
3609         start_mgsmds
3610         start_ost || error "OST registration from servicenode should not fail"
3611         reformat
3612 }
3613 run_test 57b "initial registration from servicenode should not fail"
3614
3615 count_osts() {
3616         do_facet mgs $LCTL get_param mgs.MGS.live.$FSNAME | grep OST | wc -l
3617 }
3618
3619 test_58() { # bug 22658
3620         setup_noconfig
3621         mkdir -p $DIR/$tdir
3622         createmany -o $DIR/$tdir/$tfile-%d 100
3623         # make sure that OSTs do not cancel llog cookies before we unmount the MDS
3624 #define OBD_FAIL_OBD_LOG_CANCEL_NET      0x601
3625         do_facet $SINGLEMDS "lctl set_param fail_loc=0x601"
3626         unlinkmany $DIR/$tdir/$tfile-%d 100
3627         stop_mds
3628
3629         local MNTDIR=$(facet_mntpt $SINGLEMDS)
3630         local devname=$(mdsdevname ${SINGLEMDS//mds/})
3631
3632         # remove all files from the OBJECTS dir
3633         mount_fstype $SINGLEMDS
3634
3635         do_facet $SINGLEMDS "find $MNTDIR/O/1/d* -type f -delete"
3636
3637         unmount_fstype $SINGLEMDS
3638         # restart MDS with missing llog files
3639         start_mds
3640         do_facet mds "lctl set_param fail_loc=0"
3641         reformat
3642 }
3643 run_test 58 "missing llog files must not prevent MDT from mounting"
3644
3645 test_59() {
3646         start_mgsmds >> /dev/null
3647         local C1=$(count_osts)
3648         if [ $C1 -eq 0 ]; then
3649                 start_ost >> /dev/null
3650                 C1=$(count_osts)
3651         fi
3652         stopall
3653         echo "original ost count: $C1 (expect > 0)"
3654         [ $C1 -gt 0 ] || error "No OSTs in $FSNAME log"
3655         start_mgsmds -o writeconf >> /dev/null || error "MDT start failed"
3656         local C2=$(count_osts)
3657         echo "after mdt writeconf count: $C2 (expect 0)"
3658         [ $C2 -gt 0 ] && error "MDT writeconf should erase OST logs"
3659         echo "OST start without writeconf should fail:"
3660         start_ost >> /dev/null && error "OST start without writeconf didn't fail"
3661         echo "OST start with writeconf should succeed:"
3662         start_ost -o writeconf >> /dev/null || error "OST1 start failed"
3663         local C3=$(count_osts)
3664         echo "after ost writeconf count: $C3 (expect 1)"
3665         [ $C3 -eq 1 ] || error "new OST writeconf should add:"
3666         start_ost2 -o writeconf >> /dev/null || error "OST2 start failed"
3667         local C4=$(count_osts)
3668         echo "after ost2 writeconf count: $C4 (expect 2)"
3669         [ $C4 -eq 2 ] || error "OST2 writeconf should add log"
3670         stop_ost2 >> /dev/null
3671         cleanup_nocli >> /dev/null
3672         #writeconf to remove all ost2 traces for subsequent tests
3673         writeconf_or_reformat
3674 }
3675 run_test 59 "writeconf mount option"
3676
3677 test_60() { # LU-471
3678         local num
3679
3680         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
3681                 skip "Only applicable to ldiskfs-based MDTs"
3682                 return
3683         fi
3684
3685         for num in $(seq $MDSCOUNT); do
3686                 add mds${num} $(mkfs_opts mds${num} $(mdsdevname $num)) \
3687                         --mkfsoptions='\" -E stride=64 -O ^uninit_bg\"' \
3688                         --reformat $(mdsdevname $num) $(mdsvdevname $num) ||
3689                         exit 10
3690         done
3691
3692         dump=$(do_facet $SINGLEMDS dumpe2fs $(mdsdevname 1))
3693         rc=${PIPESTATUS[0]}
3694         [ $rc -eq 0 ] || error "dumpe2fs $(mdsdevname 1) failed"
3695
3696         # MDT default has dirdata feature
3697         echo $dump | grep dirdata > /dev/null || error "dirdata is not set"
3698         # we disable uninit_bg feature
3699         echo $dump | grep uninit_bg > /dev/null && error "uninit_bg is set"
3700         # we set stride extended options
3701         echo $dump | grep stride > /dev/null || error "stride is not set"
3702         reformat
3703 }
3704 run_test 60 "check mkfs.lustre --mkfsoptions -E -O options setting"
3705
3706 test_61() { # LU-80
3707         local reformat=false
3708
3709         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.1.53) ] ||
3710                 { skip "Need MDS version at least 2.1.53"; return 0; }
3711
3712         if [ $(facet_fstype $SINGLEMDS) == ldiskfs ] &&
3713            ! large_xattr_enabled; then
3714                 reformat=true
3715                 LDISKFS_MKFS_OPTS+=" -O large_xattr"
3716
3717                 for num in $(seq $MDSCOUNT); do
3718                         add mds${num} $(mkfs_opts mds$num $(mdsdevname $num)) \
3719                         --reformat $(mdsdevname $num) $(mdsvdevname $num) ||
3720                         error "add mds $num failed"
3721                 done
3722         fi
3723
3724     setup_noconfig || error "setting up the filesystem failed"
3725     client_up || error "starting client failed"
3726
3727     local file=$DIR/$tfile
3728     touch $file
3729
3730     local large_value="$(generate_string $(max_xattr_size))"
3731     local small_value="bar"
3732
3733     local name="trusted.big"
3734     log "save large xattr $name on $file"
3735     setfattr -n $name -v $large_value $file ||
3736         error "saving $name on $file failed"
3737
3738     local new_value=$(get_xattr_value $name $file)
3739     [[ "$new_value" != "$large_value" ]] &&
3740         error "$name different after saving"
3741
3742     log "shrink value of $name on $file"
3743     setfattr -n $name -v $small_value $file ||
3744         error "shrinking value of $name on $file failed"
3745
3746     new_value=$(get_xattr_value $name $file)
3747     [[ "$new_value" != "$small_value" ]] &&
3748         error "$name different after shrinking"
3749
3750     log "grow value of $name on $file"
3751     setfattr -n $name -v $large_value $file ||
3752         error "growing value of $name on $file failed"
3753
3754     new_value=$(get_xattr_value $name $file)
3755     [[ "$new_value" != "$large_value" ]] &&
3756         error "$name different after growing"
3757
3758     log "check value of $name on $file after remounting MDS"
3759     fail $SINGLEMDS
3760     new_value=$(get_xattr_value $name $file)
3761     [[ "$new_value" != "$large_value" ]] &&
3762         error "$name different after remounting MDS"
3763
3764     log "remove large xattr $name from $file"
3765     setfattr -x $name $file || error "removing $name from $file failed"
3766
3767     rm -f $file
3768     stopall
3769         if $reformat; then
3770                 LDISKFS_MKFS_OPTS=${LDISKFS_MKFS_OPTS% -O large_xattr}
3771                 reformat
3772         fi
3773 }
3774 run_test 61 "large xattr"
3775
3776 test_62() {
3777         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
3778                 skip "Only applicable to ldiskfs-based MDTs"
3779                 return
3780         fi
3781
3782         # MRP-118
3783         local mdsdev=$(mdsdevname 1)
3784         local ostdev=$(ostdevname 1)
3785
3786         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
3787                 { skip "Need MDS version at least 2.2.51"; return 0; }
3788
3789         echo "disable journal for mds"
3790         do_facet mds tune2fs -O ^has_journal $mdsdev || error "tune2fs failed"
3791         start_mds && error "MDT start should fail"
3792         echo "disable journal for ost"
3793         do_facet ost1 tune2fs -O ^has_journal $ostdev || error "tune2fs failed"
3794         start_ost && error "OST start should fail"
3795         cleanup || return $?
3796         reformat_and_config
3797 }
3798 run_test 62 "start with disabled journal"
3799
3800 test_63() {
3801         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
3802                 skip "Only applicable to ldiskfs-based MDTs"
3803                 return
3804         fi
3805
3806         local inode_slab=$(do_facet $SINGLEMDS \
3807                 "awk '/ldiskfs_inode_cache/ { print \\\$5 }' /proc/slabinfo")
3808         if [ -z "$inode_slab" ]; then
3809                 skip "ldiskfs module has not been loaded"
3810                 return
3811         fi
3812
3813         echo "$inode_slab ldisk inodes per page"
3814         [ "$inode_slab" -ge "3" ] ||
3815                 error "ldisk inode size is too big, $inode_slab objs per page"
3816         return
3817 }
3818 run_test 63 "Verify each page can at least hold 3 ldisk inodes"
3819
3820 test_64() {
3821         start_mds
3822         start_ost
3823         start_ost2 || error "Unable to start second ost"
3824         mount_client $MOUNT || error "Unable to mount client"
3825         stop_ost2 || error "Unable to stop second ost"
3826         echo "$LFS df"
3827         $LFS df --lazy || error "lfs df failed"
3828         cleanup || return $?
3829         #writeconf to remove all ost2 traces for subsequent tests
3830         writeconf_or_reformat
3831 }
3832 run_test 64 "check lfs df --lazy "
3833
3834 test_65() { # LU-2237
3835         # Currently, the test is only valid for ldiskfs backend
3836         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
3837                 skip "non-ldiskfs backend" && return
3838
3839         local devname=$(mdsdevname ${SINGLEMDS//mds/})
3840         local brpt=$(facet_mntpt brpt)
3841         local opts=""
3842
3843         if ! do_facet $SINGLEMDS "test -b $devname"; then
3844                 opts="-o loop"
3845         fi
3846
3847         stop_mds
3848         local obj=$(do_facet $SINGLEMDS \
3849                     "$DEBUGFS -c -R \\\"stat last_rcvd\\\" $devname" |
3850                     grep Inode)
3851         if [ -z "$obj" ]; then
3852                 # The MDT may be just re-formatted, mount the MDT for the
3853                 # first time to guarantee the "last_rcvd" file is there.
3854                 start_mds || error "fail to mount the MDS for the first time"
3855                 stop_mds
3856         fi
3857
3858         # remove the "last_rcvd" file
3859         do_facet $SINGLEMDS "mkdir -p $brpt"
3860         do_facet $SINGLEMDS \
3861                 "mount -t $(facet_fstype $SINGLEMDS) $opts $devname $brpt"
3862         do_facet $SINGLEMDS "rm -f ${brpt}/last_rcvd"
3863         do_facet $SINGLEMDS "umount -d $brpt"
3864
3865         # restart MDS, the "last_rcvd" file should be recreated.
3866         start_mds || error "fail to restart the MDS"
3867         stop_mds
3868         obj=$(do_facet $SINGLEMDS \
3869               "$DEBUGFS -c -R \\\"stat last_rcvd\\\" $devname" | grep Inode)
3870         [ -n "$obj" ] || error "fail to re-create the last_rcvd"
3871 }
3872 run_test 65 "re-create the lost last_rcvd file when server mount"
3873
3874 test_66() {
3875         [[ $(lustre_version_code mgs) -ge $(version_code 2.3.59) ]] ||
3876                 { skip "Need MGS version at least 2.3.59"; return 0; }
3877
3878         setup
3879         local OST1_NID=$(do_facet ost1 $LCTL list_nids | head -1)
3880         local MDS_NID=$(do_facet $SINGLEMDS $LCTL list_nids | head -1)
3881
3882         echo "replace_nids should fail if MDS, OSTs and clients are UP"
3883         do_facet mgs $LCTL replace_nids $FSNAME-OST0000 $OST1_NID &&
3884                 error "replace_nids fail"
3885
3886         umount_client $MOUNT || error "unmounting client failed"
3887         echo "replace_nids should fail if MDS and OSTs are UP"
3888         do_facet mgs $LCTL replace_nids $FSNAME-OST0000 $OST1_NID &&
3889                 error "replace_nids fail"
3890
3891         stop_ost
3892         echo "replace_nids should fail if MDS is UP"
3893         do_facet mgs $LCTL replace_nids $FSNAME-OST0000 $OST1_NID &&
3894                 error "replace_nids fail"
3895
3896         stop_mds || error "stopping mds failed"
3897
3898         if combined_mgs_mds; then
3899                 start_mdt 1 "-o nosvc" ||
3900                         error "starting mds with nosvc option failed"
3901         fi
3902
3903         echo "command should accept two parameters"
3904         do_facet mgs $LCTL replace_nids $FSNAME-OST0000 &&
3905                 error "command should accept two params"
3906
3907         echo "correct device name should be passed"
3908         do_facet mgs $LCTL replace_nids $FSNAME-WRONG0000 $OST1_NID &&
3909                 error "wrong devname"
3910
3911         echo "wrong nids list should not destroy the system"
3912         do_facet mgs $LCTL replace_nids $FSNAME-OST0000 "wrong nids list" &&
3913                 error "wrong parse"
3914
3915         echo "replace OST nid"
3916         do_facet mgs $LCTL replace_nids $FSNAME-OST0000 $OST1_NID ||
3917                 error "replace nids failed"
3918
3919         echo "command should accept two parameters"
3920         do_facet mgs $LCTL replace_nids $FSNAME-MDT0000 &&
3921                 error "command should accept two params"
3922
3923         echo "wrong nids list should not destroy the system"
3924         do_facet mgs $LCTL replace_nids $FSNAME-MDT0000 "wrong nids list" &&
3925                 error "wrong parse"
3926
3927         echo "replace MDS nid"
3928         do_facet mgs $LCTL replace_nids $FSNAME-MDT0000 $MDS_NID ||
3929                 error "replace nids failed"
3930
3931         if ! combined_mgs_mds ; then
3932                 stop_mgs
3933         else
3934                 stop_mds
3935         fi
3936
3937         setup_noconfig
3938         check_mount || error "error after nid replace"
3939         cleanup || error "cleanup failed"
3940         reformat
3941 }
3942 run_test 66 "replace nids"
3943
3944 test_67() { #LU-2950
3945         local legacy="$TMP/legacy_lnet_config"
3946         local new="$TMP/new_routes_test"
3947         local out="$TMP/config_out_file"
3948         local verify="$TMP/conv_verify"
3949         local verify_conf="$TMP/conf_verify"
3950
3951         # Create the legacy file that will be run through the
3952         # lustre_routes_conversion script
3953         cat <<- LEGACY_LNET_CONFIG > $legacy
3954                 tcp1 23 192.168.213.1@tcp:1; tcp5 34 193.30.4.3@tcp:4;
3955                 tcp2 54 10.1.3.2@tcp;
3956                 tcp3 10.3.4.3@tcp:3;
3957                 tcp4 10.3.3.4@tcp;
3958         LEGACY_LNET_CONFIG
3959
3960         # Create the verification file to verify the output of
3961         # lustre_routes_conversion script against.
3962         cat <<- VERIFY_LNET_CONFIG > $verify
3963                 tcp1: { gateway: 192.168.213.1@tcp, hop: 23, priority: 1 }
3964                 tcp5: { gateway: 193.30.4.3@tcp, hop: 34, priority: 4 }
3965                 tcp2: { gateway: 10.1.3.2@tcp, hop: 54 }
3966                 tcp3: { gateway: 10.3.4.3@tcp, priority: 3 }
3967                 tcp4: { gateway: 10.3.3.4@tcp }
3968         VERIFY_LNET_CONFIG
3969
3970         # Create the verification file to verify the output of
3971         # lustre_routes_config script against
3972         cat <<- VERIFY_LNET_CONFIG > $verify_conf
3973                 lctl --net tcp1 add_route 192.168.213.1@tcp 23 1
3974                 lctl --net tcp5 add_route 193.30.4.3@tcp 34 4
3975                 lctl --net tcp2 add_route 10.1.3.2@tcp 54 4
3976                 lctl --net tcp3 add_route 10.3.4.3@tcp 1 3
3977                 lctl --net tcp4 add_route 10.3.3.4@tcp 1 3
3978         VERIFY_LNET_CONFIG
3979
3980         lustre_routes_conversion $legacy $new > /dev/null
3981         if [ -f $new ]; then
3982                 # verify the conversion output
3983                 cmp -s $new $verify > /dev/null
3984                 if [ $? -eq 1 ]; then
3985                         error "routes conversion failed"
3986                 fi
3987
3988                 lustre_routes_config --dry-run --verbose $new > $out
3989                 # check that the script succeeded
3990                 cmp -s $out $verify_conf > /dev/null
3991                 if [ $? -eq 1 ]; then
3992                         error "routes config failed"
3993                 fi
3994         else
3995                 error "routes conversion test failed"
3996         fi
3997         # remove generated files
3998         rm -f $new $legacy $verify $verify_conf $out
3999 }
4000 run_test 67 "test routes conversion and configuration"
4001
4002 test_68() {
4003         local fid
4004         local seq
4005         local START
4006         local END
4007
4008         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.4.53) ] ||
4009                 { skip "Need MDS version at least 2.4.53"; return 0; }
4010
4011         umount_client $MOUNT || error "umount client failed"
4012
4013         start_mdt 1 || error "MDT start failed"
4014         start_ost
4015
4016         # START-END - the sequences we'll be reserving
4017         START=$(do_facet $SINGLEMDS \
4018                 lctl get_param -n seq.ctl*.space | awk -F'[[ ]' '{print $2}')
4019         END=$((START + (1 << 30)))
4020         do_facet $SINGLEMDS \
4021                 lctl set_param seq.ctl*.fldb="[$START-$END\):0:mdt"
4022
4023         # reset the sequences MDT0000 has already assigned
4024         do_facet $SINGLEMDS \
4025                 lctl set_param seq.srv*MDT0000.space=clear
4026
4027         # remount to let the client allocate new sequence
4028         mount_client $MOUNT || error "mount client failed"
4029
4030         touch $DIR/$tfile
4031         do_facet $SINGLEMDS \
4032                 lctl get_param seq.srv*MDT0000.space
4033         $LFS path2fid $DIR/$tfile
4034
4035         local old_ifs="$IFS"
4036         IFS='[:]'
4037         fid=($($LFS path2fid $DIR/$tfile))
4038         IFS="$old_ifs"
4039         let seq=${fid[1]}
4040
4041         if [[ $seq < $END ]]; then
4042                 error "used reserved sequence $seq?"
4043         fi
4044         cleanup || return $?
4045 }
4046 run_test 68 "be able to reserve specific sequences in FLDB"
4047
4048 test_69() {
4049         local server_version=$(lustre_version_code $SINGLEMDS)
4050
4051         [[ $server_version -lt $(version_code 2.4.2) ]] &&
4052                 skip "Need MDS version at least 2.4.2" && return
4053
4054         [[ $server_version -ge $(version_code 2.4.50) ]] &&
4055         [[ $server_version -lt $(version_code 2.5.0) ]] &&
4056                 skip "Need MDS version at least 2.5.0" && return
4057
4058         setup
4059
4060         # use OST0000 since it probably has the most creations
4061         local OSTNAME=$(ostname_from_index 0)
4062         local mdtosc_proc1=$(get_mdtosc_proc_path mds1 $OSTNAME)
4063         local last_id=$(do_facet mds1 lctl get_param -n \
4064                         osc.$mdtosc_proc1.prealloc_last_id)
4065
4066         # Want to have OST LAST_ID over 1.5 * OST_MAX_PRECREATE to
4067         # verify that the LAST_ID recovery is working properly.  If
4068         # not, then the OST will refuse to allow the MDS connect
4069         # because the LAST_ID value is too different from the MDS
4070         #define OST_MAX_PRECREATE=20000
4071         local num_create=$((20000 * 5))
4072
4073         mkdir -p $DIR/$tdir
4074         $LFS setstripe -i 0 $DIR/$tdir
4075         createmany -o $DIR/$tdir/$tfile- $num_create ||
4076                 error "createmany: failed to create $num_create files: $?"
4077         # delete all of the files with objects on OST0 so the
4078         # filesystem is not inconsistent later on
4079         $LFS find $MOUNT --ost 0 | xargs rm
4080
4081         stop_ost || error "OST0 stop failure"
4082         add ost1 $(mkfs_opts ost1 $(ostdevname 1)) --reformat --replace \
4083                 $(ostdevname 1) $(ostvdevname 1) ||
4084                 error "reformat and replace $ostdev failed"
4085         start_ost || error "OST0 restart failure"
4086         wait_osc_import_state mds ost FULL
4087
4088         touch $DIR/$tdir/$tfile-last || error "create file after reformat"
4089         local idx=$($LFS getstripe -i $DIR/$tdir/$tfile-last)
4090         [ $idx -ne 0 ] && error "$DIR/$tdir/$tfile-last on $idx not 0" || true
4091
4092         cleanup
4093 }
4094 run_test 69 "replace an OST with the same index"
4095
4096 test_70a() {
4097         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4098         local MDTIDX=1
4099
4100         cleanup
4101
4102         start_mdt 1 || error "MDT0 start fail"
4103
4104         start_ost || error "OST0 start fail"
4105
4106         start_mdt 2 || error "MDT1 start fail"
4107
4108         mount_client $MOUNT || error "mount client fails"
4109
4110         mkdir -p $DIR/$tdir || error "create dir fail"
4111
4112         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
4113                                         error "create remote dir fail"
4114
4115         rm -rf $DIR/$tdir || error "delete dir fail"
4116         cleanup || return $?
4117 }
4118 run_test 70a "start MDT0, then OST, then MDT1"
4119
4120 test_70b() {
4121         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4122         local MDTIDX=1
4123
4124         start_ost || error "OST0 start fail"
4125
4126         start_mdt 1 || error "MDT0 start fail"
4127         start_mdt 2 || error "MDT1 start fail"
4128
4129         mount_client $MOUNT || error "mount client fails"
4130
4131         mkdir -p $DIR/$tdir || error "create dir fail"
4132
4133         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
4134                                         error "create remote dir fail"
4135
4136         rm -rf $DIR/$tdir || error "delete dir fail"
4137
4138         cleanup || return $?
4139 }
4140 run_test 70b "start OST, MDT1, MDT0"
4141
4142 test_70c() {
4143         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4144         local MDTIDX=1
4145
4146         start_mdt 1 || error "MDT0 start fail"
4147         start_mdt 2 || error "MDT1 start fail"
4148         start_ost || error "OST0 start fail"
4149
4150         mount_client $MOUNT || error "mount client fails"
4151         stop_mdt 1 || error "MDT1 start fail"
4152
4153         local mdc_for_mdt1=$($LCTL dl | grep MDT0000-mdc | awk '{print $4}')
4154         echo "deactivate $mdc_for_mdt1"
4155         $LCTL --device $mdc_for_mdt1 deactivate || return 1
4156
4157         mkdir -p $DIR/$tdir && error "mkdir succeed"
4158
4159         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir &&
4160                                         error "create remote dir succeed"
4161
4162         cleanup || return $?
4163 }
4164 run_test 70c "stop MDT0, mkdir fail, create remote dir fail"
4165
4166 test_70d() {
4167         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4168         local MDTIDX=1
4169
4170         start_mdt 1 || error "MDT0 start fail"
4171         start_mdt 2 || error "MDT1 start fail"
4172         start_ost || error "OST0 start fail"
4173
4174         mount_client $MOUNT || error "mount client fails"
4175
4176         stop_mdt 2 || error "MDT1 start fail"
4177
4178         local mdc_for_mdt2=$($LCTL dl | grep MDT0001-mdc |
4179                              awk '{print $4}')
4180         echo "deactivate $mdc_for_mdt2"
4181         $LCTL --device $mdc_for_mdt2 deactivate ||
4182                         error "set $mdc_for_mdt2 deactivate failed"
4183
4184         mkdir -p $DIR/$tdir || error "mkdir fail"
4185         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir &&
4186                         error "create remote dir succeed"
4187
4188         rm -rf $DIR/$tdir || error "delete dir fail"
4189
4190         cleanup || return $?
4191 }
4192 run_test 70d "stop MDT1, mkdir succeed, create remote dir fail"
4193
4194 test_71a() {
4195         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4196         if combined_mgs_mds; then
4197                 skip "needs separate MGS/MDT" && return
4198         fi
4199         local MDTIDX=1
4200
4201         start_mdt 1 || error "MDT0 start fail"
4202         start_ost || error "OST0 start fail"
4203         start_mdt 2 || error "MDT1 start fail"
4204         start_ost2 || error "OST1 start fail"
4205
4206         mount_client $MOUNT || error "mount client fails"
4207
4208         mkdir -p $DIR/$tdir || error "mkdir fail"
4209         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
4210                         error "create remote dir succeed"
4211
4212         mcreate $DIR/$tdir/remote_dir/$tfile || error "create file failed"
4213         rm -rf $DIR/$tdir || error "delete dir fail"
4214
4215         umount_client $MOUNT
4216         stop_mdt 1 || error "MDT0 stop fail"
4217         stop_mdt 2 || error "MDT1 stop fail"
4218         stop_ost || error "OST0 stop fail"
4219         stop_ost2 || error "OST1 stop fail"
4220 }
4221 run_test 71a "start MDT0 OST0, MDT1, OST1"
4222
4223 test_71b() {
4224         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4225         if combined_mgs_mds; then
4226                 skip "needs separate MGS/MDT" && return
4227         fi
4228         local MDTIDX=1
4229
4230         start_mdt 2 || error "MDT1 start fail"
4231         start_ost || error "OST0 start fail"
4232         start_mdt 1 || error "MDT0 start fail"
4233         start_ost2 || error "OST1 start fail"
4234
4235         mount_client $MOUNT || error "mount client fails"
4236
4237         mkdir -p $DIR/$tdir || error "mkdir fail"
4238         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
4239                         error "create remote dir succeed"
4240
4241         mcreate $DIR/$tdir/remote_dir/$tfile || error "create file failed"
4242         rm -rf $DIR/$tdir || error "delete dir fail"
4243
4244         umount_client $MOUNT
4245         stop_mdt 1 || error "MDT0 stop fail"
4246         stop_mdt 2 || error "MDT1 stop fail"
4247         stop_ost || error "OST0 stop fail"
4248         stop_ost2 || error "OST1 stop fail"
4249 }
4250 run_test 71b "start MDT1, OST0, MDT0, OST1"
4251
4252 test_71c() {
4253         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4254         if combined_mgs_mds; then
4255                 skip "needs separate MGS/MDT" && return
4256         fi
4257         local MDTIDX=1
4258
4259         start_ost || error "OST0 start fail"
4260         start_ost2 || error "OST1 start fail"
4261         start_mdt 2 || error "MDT1 start fail"
4262         start_mdt 1 || error "MDT0 start fail"
4263
4264         mount_client $MOUNT || error "mount client fails"
4265
4266         mkdir -p $DIR/$tdir || error "mkdir fail"
4267         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
4268                         error "create remote dir succeed"
4269
4270         mcreate $DIR/$tdir/remote_dir/$tfile || error "create file failed"
4271         rm -rf $DIR/$tdir || error "delete dir fail"
4272
4273         umount_client $MOUNT
4274         stop_mdt 1 || error "MDT0 stop fail"
4275         stop_mdt 2 || error "MDT1 stop fail"
4276         stop_ost || error "OST0 stop fail"
4277         stop_ost2 || error "OST1 stop fail"
4278
4279 }
4280 run_test 71c "start OST0, OST1, MDT1, MDT0"
4281
4282 test_71d() {
4283         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4284         if combined_mgs_mds; then
4285                 skip "needs separate MGS/MDT" && return
4286         fi
4287         local MDTIDX=1
4288
4289         start_ost || error "OST0 start fail"
4290         start_mdt 2 || error "MDT0 start fail"
4291         start_mdt 1 || error "MDT0 start fail"
4292         start_ost2 || error "OST1 start fail"
4293
4294         mount_client $MOUNT || error "mount client fails"
4295
4296         mkdir -p $DIR/$tdir || error "mkdir fail"
4297         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
4298                         error "create remote dir succeed"
4299
4300         mcreate $DIR/$tdir/remote_dir/$tfile || error "create file failed"
4301         rm -rf $DIR/$tdir || error "delete dir fail"
4302
4303         umount_client $MOUNT
4304         stop_mdt 1 || error "MDT0 stop fail"
4305         stop_mdt 2 || error "MDT1 stop fail"
4306         stop_ost || error "OST0 stop fail"
4307         stop_ost2 || error "OST1 stop fail"
4308
4309 }
4310 run_test 71d "start OST0, MDT1, MDT0, OST1"
4311
4312 test_71e() {
4313         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4314         if combined_mgs_mds; then
4315                 skip "needs separate MGS/MDT" && return
4316         fi
4317         local MDTIDX=1
4318
4319         start_ost || error "OST0 start fail"
4320         start_mdt 2 || error "MDT1 start fail"
4321         start_ost2 || error "OST1 start fail"
4322         start_mdt 1 || error "MDT0 start fail"
4323
4324         mount_client $MOUNT || error "mount client fails"
4325
4326         mkdir -p $DIR/$tdir || error "mkdir fail"
4327         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
4328                         error "create remote dir succeed"
4329
4330         mcreate $DIR/$tdir/remote_dir/$tfile || error "create file failed"
4331         rm -rf $DIR/$tdir || error "delete dir fail"
4332
4333         umount_client $MOUNT
4334         stop_mdt 1 || error "MDT0 stop fail"
4335         stop_mdt 2 || error "MDT1 stop fail"
4336         stop_ost || error "OST0 stop fail"
4337         stop_ost2 || error "OST1 stop fail"
4338
4339 }
4340 run_test 71e "start OST0, MDT1, OST1, MDT0"
4341
4342 test_72() { #LU-2634
4343         local mdsdev=$(mdsdevname 1)
4344         local ostdev=$(ostdevname 1)
4345         local cmd="$E2FSCK -fnvd $mdsdev"
4346         local fn=3
4347
4348         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
4349                 skip "ldiskfs only test" && return
4350
4351         #tune MDT with "-O extents"
4352
4353         for num in $(seq $MDSCOUNT); do
4354                 add mds${num} $(mkfs_opts mds$num $(mdsdevname $num)) \
4355                 --reformat $(mdsdevname $num) $(mdsvdevname $num) ||
4356                 error "add mds $num failed"
4357                 $TUNE2FS -O extents $(mdsdevname $num)
4358         done
4359
4360         add ost1 $(mkfs_opts ost1 $ostdev) --reformat $ostdev ||
4361                 error "add $ostdev failed"
4362         start_mgsmds || error "start mds failed"
4363         start_ost || error "start ost failed"
4364         mount_client $MOUNT || error "mount client failed"
4365
4366         #create some short symlinks
4367         mkdir -p $DIR/$tdir
4368         createmany -o $DIR/$tdir/$tfile-%d $fn
4369         echo "create $fn short symlinks"
4370         for i in $(seq -w 1 $fn); do
4371                 ln -s $DIR/$tdir/$tfile-$i $MOUNT/$tfile-$i
4372         done
4373         ls -al $MOUNT
4374
4375         #umount
4376         umount_client $MOUNT || error "umount client failed"
4377         stop_mds || error "stop mds failed"
4378         stop_ost || error "stop ost failed"
4379
4380         #run e2fsck
4381         run_e2fsck $(facet_active_host $SINGLEMDS) $mdsdev "-n"
4382 }
4383 run_test 72 "test fast symlink with extents flag enabled"
4384
4385 test_73() { #LU-3006
4386         load_modules
4387         [ $(facet_fstype ost1) == zfs ] && import_zpool ost1
4388         do_facet ost1 "$TUNEFS --failnode=1.2.3.4@$NETTYPE $(ostdevname 1)" ||
4389                 error "1st tunefs failed"
4390         start_mgsmds || error "start mds failed"
4391         start_ost || error "start ost failed"
4392         mount_client $MOUNT || error "mount client failed"
4393         lctl get_param -n osc.*OST0000-osc-[^M]*.import | grep failover_nids |
4394                 grep 1.2.3.4@$NETTYPE || error "failover nids haven't changed"
4395         umount_client $MOUNT || error "umount client failed"
4396         stopall
4397         reformat
4398 }
4399 run_test 73 "failnode to update from mountdata properly"
4400
4401 test_75() { # LU-2374
4402         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
4403                         skip "Need MDS version at least 2.4.1" && return
4404
4405         local index=0
4406         local opts_mds="$(mkfs_opts mds1 $(mdsdevname 1)) \
4407                 --reformat $(mdsdevname 1) $(mdsvdevname 1)"
4408         local opts_ost="$(mkfs_opts ost1 $(ostdevname 1)) \
4409                 --reformat $(ostdevname 1) $(ostvdevname 1)"
4410
4411         #check with default parameters
4412         add mds1 $opts_mds || error "add mds1 failed for default params"
4413         add ost1 $opts_ost || error "add ost1 failed for default params"
4414
4415         opts_mds=$(echo $opts_mds | sed -e "s/--mdt//")
4416         opts_mds=$(echo $opts_mds |
4417                    sed -e "s/--index=$index/--index=$index --mdt/")
4418         opts_ost=$(echo $opts_ost | sed -e "s/--ost//")
4419         opts_ost=$(echo $opts_ost |
4420                    sed -e "s/--index=$index/--index=$index --ost/")
4421
4422         add mds1 $opts_mds || error "add mds1 failed for new params"
4423         add ost1 $opts_ost || error "add ost1 failed for new params"
4424         return 0
4425 }
4426 run_test 75 "The order of --index should be irrelevant"
4427
4428 test_76a() {
4429         [[ $(lustre_version_code mgs) -ge $(version_code 2.4.52) ]] ||
4430                 { skip "Need MDS version at least 2.4.52" && return 0; }
4431         setup
4432         local MDMB_PARAM="osc.*.max_dirty_mb"
4433         echo "Change MGS params"
4434         local MAX_DIRTY_MB=$($LCTL get_param -n $MDMB_PARAM |
4435                 head -1)
4436         echo "max_dirty_mb: $MAX_DIRTY_MB"
4437         local NEW_MAX_DIRTY_MB=$((MAX_DIRTY_MB + MAX_DIRTY_MB))
4438         echo "new_max_dirty_mb: $NEW_MAX_DIRTY_MB"
4439         do_facet mgs $LCTL set_param -P $MDMB_PARAM=$NEW_MAX_DIRTY_MB
4440         wait_update $HOSTNAME "lctl get_param -n $MDMB_PARAM |
4441                 head -1" $NEW_MAX_DIRTY_MB
4442         MAX_DIRTY_MB=$($LCTL get_param -n $MDMB_PARAM | head -1)
4443         echo "$MAX_DIRTY_MB"
4444         [ $MAX_DIRTY_MB = $NEW_MAX_DIRTY_MB ] ||
4445                 error "error while apply max_dirty_mb"
4446
4447         echo "Check the value is stored after remount"
4448         stopall
4449         setupall
4450         wait_update $HOSTNAME "lctl get_param -n $MDMB_PARAM |
4451                 head -1" $NEW_MAX_DIRTY_MB
4452         MAX_DIRTY_MB=$($LCTL get_param -n $MDMB_PARAM | head -1)
4453         [ $MAX_DIRTY_MB = $NEW_MAX_DIRTY_MB ] ||
4454                 error "max_dirty_mb is not saved after remount"
4455
4456         echo "Change OST params"
4457         CLIENT_PARAM="obdfilter.*.client_cache_count"
4458         local CLIENT_CACHE_COUNT
4459         CLIENT_CACHE_COUNT=$(do_facet ost1 $LCTL get_param -n $CLIENT_PARAM |
4460                 head -1)
4461         echo "client_cache_count: $CLIENT_CACHE_COUNT"
4462         NEW_CLIENT_CACHE_COUNT=$((CLIENT_CACHE_COUNT+CLIENT_CACHE_COUNT))
4463         echo "new_client_cache_count: $NEW_CLIENT_CACHE_COUNT"
4464         do_facet mgs $LCTL set_param -P $CLIENT_PARAM=$NEW_CLIENT_CACHE_COUNT
4465         wait_update $(facet_host ost1) "lctl get_param -n $CLIENT_PARAM |
4466                 head -1" $NEW_CLIENT_CACHE_COUNT
4467         CLIENT_CACHE_COUNT=$(do_facet ost1 $LCTL get_param -n $CLIENT_PARAM |
4468                 head -1)
4469         echo "$CLIENT_CACHE_COUNT"
4470         [ $CLIENT_CACHE_COUNT = $NEW_CLIENT_CACHE_COUNT ] ||
4471                 error "error while apply client_cache_count"
4472
4473         echo "Check the value is stored after remount"
4474         stopall
4475         setupall
4476         wait_update $(facet_host ost1) "lctl get_param -n $CLIENT_PARAM |
4477                 head -1" $NEW_CLIENT_CACHE_COUNT
4478         CLIENT_CACHE_COUNT=$(do_facet ost1 $LCTL get_param -n $CLIENT_PARAM |
4479                 head -1)
4480         echo "$CLIENT_CACHE_COUNT"
4481         [ $CLIENT_CACHE_COUNT = $NEW_CLIENT_CACHE_COUNT ] ||
4482                 error "client_cache_count is not saved after remount"
4483         stopall
4484 }
4485 run_test 76a "set permanent params set_param -P"
4486
4487 test_76b() { # LU-4783
4488         [[ $(lustre_version_code mgs) -ge $(version_code 2.5.57) ]] ||
4489                 { skip "Need MGS version at least 2.5.57" && return 0; }
4490         stopall
4491         setupall
4492         do_facet mgs $LCTL get_param mgs.MGS.live.params ||
4493                 error "start params log failed"
4494         stopall
4495 }
4496 run_test 76b "verify params log setup correctly"
4497
4498 test_77() { # LU-3445
4499         local server_version=$(lustre_version_code $SINGLEMDS)
4500
4501         [[ $server_version -ge $(version_code 2.2.60) ]] &&
4502         [[ $server_version -le $(version_code 2.4.0) ]] &&
4503                 skip "Need MDS version < 2.2.60 or > 2.4.0" && return
4504
4505         if [[ -z "$fs2ost_DEV" || -z "$fs2mds_DEV" ]]; then
4506                 is_blkdev $SINGLEMDS $(mdsdevname ${SINGLEMDS//mds/}) &&
4507                 skip_env "mixed loopback and real device not working" && return
4508         fi
4509
4510         local fs2mdsdev=$(mdsdevname 1_2)
4511         local fs2ostdev=$(ostdevname 1_2)
4512         local fs2mdsvdev=$(mdsvdevname 1_2)
4513         local fs2ostvdev=$(ostvdevname 1_2)
4514         local fsname=test1234
4515         local mgsnid
4516         local failnid="$(h2$NETTYPE 1.2.3.4),$(h2$NETTYPE 4.3.2.1)"
4517
4518         add fs2mds $(mkfs_opts mds1 $fs2mdsdev) --mgs --fsname=$fsname \
4519                 --reformat $fs2mdsdev $fs2mdsvdev || error "add fs2mds failed"
4520         start fs2mds $fs2mdsdev $MDS_MOUNT_OPTS && trap cleanup_fs2 EXIT INT ||
4521                 error "start fs2mds failed"
4522
4523         mgsnid=$(do_facet fs2mds $LCTL list_nids | xargs | tr ' ' ,)
4524         [[ $mgsnid = *,* ]] || mgsnid+=",$mgsnid"
4525
4526         add fs2ost $(mkfs_opts ost1 $fs2ostdev) --mgsnode=$mgsnid \
4527                 --failnode=$failnid --fsname=$fsname \
4528                 --reformat $fs2ostdev $fs2ostvdev ||
4529                         error "add fs2ost failed"
4530         start fs2ost $fs2ostdev $OST_MOUNT_OPTS || error "start fs2ost failed"
4531
4532         mkdir -p $MOUNT2
4533         $MOUNT_CMD $mgsnid:/$fsname $MOUNT2 || error "mount $MOUNT2 failed"
4534         DIR=$MOUNT2 MOUNT=$MOUNT2 check_mount || error "check $MOUNT2 failed"
4535         cleanup_fs2
4536 }
4537 run_test 77 "comma-separated MGS NIDs and failover node NIDs"
4538
4539 test_78() {
4540         [[ $(facet_fstype $SINGLEMDS) != ldiskfs ||
4541            $(facet_fstype ost1) != ldiskfs ]] &&
4542                 skip "only applicable to ldiskfs-based MDTs and OSTs" && return
4543
4544         # reformat the Lustre filesystem with a smaller size
4545         local saved_MDSSIZE=$MDSSIZE
4546         local saved_OSTSIZE=$OSTSIZE
4547         MDSSIZE=$((MDSSIZE - 20000))
4548         OSTSIZE=$((OSTSIZE - 20000))
4549         reformat || error "(1) reformat Lustre filesystem failed"
4550         MDSSIZE=$saved_MDSSIZE
4551         OSTSIZE=$saved_OSTSIZE
4552
4553         # mount the Lustre filesystem
4554         setup_noconfig || error "(2) setup Lustre filesystem failed"
4555
4556         # create some files
4557         log "create test files"
4558         local i
4559         local file
4560         local num_files=100
4561         mkdir -p $MOUNT/$tdir || error "(3) mkdir $MOUNT/$tdir failed"
4562         for i in $(seq $num_files); do
4563                 file=$MOUNT/$tdir/$tfile-$i
4564                 dd if=/dev/urandom of=$file count=1 bs=1M ||
4565                         error "(4) create $file failed"
4566         done
4567
4568         # unmount the Lustre filesystem
4569         cleanup || error "(5) cleanup Lustre filesystem failed"
4570
4571         # run e2fsck on the MDT and OST devices
4572         local mds_host=$(facet_active_host $SINGLEMDS)
4573         local ost_host=$(facet_active_host ost1)
4574         local mds_dev=$(mdsdevname ${SINGLEMDS//mds/})
4575         local ost_dev=$(ostdevname 1)
4576
4577         run_e2fsck $mds_host $mds_dev "-y"
4578         run_e2fsck $ost_host $ost_dev "-y"
4579
4580         # get the original block count of the MDT and OST filesystems
4581         local mds_orig_blks=$(get_block_count $SINGLEMDS $mds_dev)
4582         local ost_orig_blks=$(get_block_count ost1 $ost_dev)
4583
4584         # expand the MDT and OST filesystems to the device size
4585         run_resize2fs $SINGLEMDS $mds_dev "" || error "expand $SINGLEMDS failed"
4586         run_resize2fs ost1 $ost_dev "" || error "expand ost1 failed"
4587
4588         # run e2fsck on the MDT and OST devices again
4589         run_e2fsck $mds_host $mds_dev "-y"
4590         run_e2fsck $ost_host $ost_dev "-y"
4591
4592         # mount the Lustre filesystem
4593         setup
4594
4595         # check the files
4596         log "check files after expanding the MDT and OST filesystems"
4597         for i in $(seq $num_files); do
4598                 file=$MOUNT/$tdir/$tfile-$i
4599                 $CHECKSTAT -t file -s 1048576 $file ||
4600                         error "(6) checkstat $file failed"
4601         done
4602
4603         # create more files
4604         log "create more files after expanding the MDT and OST filesystems"
4605         for i in $(seq $((num_files + 1)) $((num_files + 10))); do
4606                 file=$MOUNT/$tdir/$tfile-$i
4607                 dd if=/dev/urandom of=$file count=1 bs=1M ||
4608                         error "(7) create $file failed"
4609         done
4610
4611         # unmount the Lustre filesystem
4612         cleanup || error "(8) cleanup Lustre filesystem failed"
4613
4614         # run e2fsck on the MDT and OST devices
4615         run_e2fsck $mds_host $mds_dev "-y"
4616         run_e2fsck $ost_host $ost_dev "-y"
4617
4618         # get the maximum block count of the MDT and OST filesystems
4619         local mds_max_blks=$(get_block_count $SINGLEMDS $mds_dev)
4620         local ost_max_blks=$(get_block_count ost1 $ost_dev)
4621
4622         # get the minimum block count of the MDT and OST filesystems
4623         local mds_min_blks=$(run_resize2fs $SINGLEMDS $mds_dev "" "-P" 2>&1 |
4624                                 grep minimum | sed -e 's/^.*filesystem: //g')
4625         local ost_min_blks=$(run_resize2fs ost1 $ost_dev "" "-P" 2>&1 |
4626                                 grep minimum | sed -e 's/^.*filesystem: //g')
4627
4628         # shrink the MDT and OST filesystems to a smaller size
4629         local shrunk=false
4630         local new_blks
4631         local base_blks
4632         if [[ $mds_max_blks -gt $mds_min_blks &&
4633               $mds_max_blks -gt $mds_orig_blks ]]; then
4634                 [[ $mds_orig_blks -gt $mds_min_blks ]] &&
4635                         base_blks=$mds_orig_blks || base_blks=$mds_min_blks
4636                 new_blks=$(( (mds_max_blks - base_blks) / 2 + base_blks ))
4637                 run_resize2fs $SINGLEMDS $mds_dev $new_blks ||
4638                         error "shrink $SINGLEMDS to $new_blks failed"
4639                 shrunk=true
4640         fi
4641
4642         if [[ $ost_max_blks -gt $ost_min_blks &&
4643               $ost_max_blks -gt $ost_orig_blks ]]; then
4644                 [[ $ost_orig_blks -gt $ost_min_blks ]] &&
4645                         base_blks=$ost_orig_blks || base_blks=$ost_min_blks
4646                 new_blks=$(( (ost_max_blks - base_blks) / 2 + base_blks ))
4647                 run_resize2fs ost1 $ost_dev $new_blks ||
4648                         error "shrink ost1 to $new_blks failed"
4649                 shrunk=true
4650         fi
4651
4652         # check whether the MDT or OST filesystem was shrunk or not
4653         if ! $shrunk; then
4654                 combined_mgs_mds || stop_mgs || error "(9) stop mgs failed"
4655                 reformat || error "(10) reformat Lustre filesystem failed"
4656                 return 0
4657         fi
4658
4659         # run e2fsck on the MDT and OST devices again
4660         run_e2fsck $mds_host $mds_dev "-y"
4661         run_e2fsck $ost_host $ost_dev "-y"
4662
4663         # mount the Lustre filesystem again
4664         setup
4665
4666         # check the files
4667         log "check files after shrinking the MDT and OST filesystems"
4668         for i in $(seq $((num_files + 10))); do
4669                 file=$MOUNT/$tdir/$tfile-$i
4670                 $CHECKSTAT -t file -s 1048576 $file ||
4671                         error "(11) checkstat $file failed"
4672         done
4673
4674         # unmount and reformat the Lustre filesystem
4675         cleanup || error "(12) cleanup Lustre filesystem failed"
4676         combined_mgs_mds || stop_mgs || error "(13) stop mgs failed"
4677         reformat || error "(14) reformat Lustre filesystem failed"
4678 }
4679 run_test 78 "run resize2fs on MDT and OST filesystems"
4680
4681 if ! combined_mgs_mds ; then
4682         stop mgs
4683 fi
4684
4685 cleanup_gss
4686
4687 # restore the values of MDSSIZE and OSTSIZE
4688 MDSSIZE=$STORED_MDSSIZE
4689 OSTSIZE=$STORED_OSTSIZE
4690 reformat
4691
4692 complete $SECONDS
4693 exit_status