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