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