Whamcloud - gitweb
e346b523f4646d2dbe6037d9bd6ef13f00eb674a
[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                 $r 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 tmp=$TMP/t32
1511         local img_commit
1512         local img_kernel
1513         local img_arch
1514         local img_bspace
1515         local img_ispace
1516         local fsname=t32fs
1517         local nid=$($r $LCTL list_nids | head -1)
1518         local mopts
1519         local uuid
1520         local nrpcs_orig
1521         local nrpcs
1522         local list
1523         local fstype=$(facet_fstype $SINGLEMDS)
1524
1525         trap 'trap - RETURN; t32_test_cleanup' RETURN
1526
1527         mkdir -p $tmp/mnt/lustre
1528         $r mkdir -p $tmp/mnt/{mdt,ost}
1529         $r tar xjvf $tarball -S -C $tmp || {
1530                 error_noexit "Unpacking the disk image tarball"
1531                 return 1
1532         }
1533         img_commit=$($r cat $tmp/commit)
1534         img_kernel=$($r cat $tmp/kernel)
1535         img_arch=$($r cat $tmp/arch)
1536         img_bspace=$($r cat $tmp/bspace)
1537         img_ispace=$($r cat $tmp/ispace)
1538         echo "Upgrading from $(basename $tarball), created with:"
1539         echo "  Commit: $img_commit"
1540         echo "  Kernel: $img_kernel"
1541         echo "    Arch: $img_arch"
1542
1543         $r $LCTL set_param debug="$PTLDEBUG"
1544
1545         $r $TUNEFS --dryrun $tmp/mdt || {
1546                 error_noexit "tunefs.lustre before mounting the MDT"
1547                 return 1
1548         }
1549         if [ "$writeconf" ]; then
1550                 mopts=loop,writeconf
1551                 if [ $fstype == "ldiskfs" ]; then
1552                         $r $TUNEFS --quota $tmp/mdt || {
1553                                 error_noexit "Enable mdt quota feature"
1554                                 return 1
1555                         }
1556                 fi
1557         else
1558                 mopts=loop,exclude=$fsname-OST0000
1559         fi
1560
1561         t32_wait_til_devices_gone $node
1562
1563         $r mount -t lustre -o $mopts $tmp/mdt $tmp/mnt/mdt || {
1564                 error_noexit "Mounting the MDT"
1565                 return 1
1566         }
1567         shall_cleanup_mdt=true
1568
1569         if [ "$dne_upgrade" != "no" ]; then
1570                 local fs2mdsdev=$(mdsdevname 1_2)
1571                 local fs2mdsvdev=$(mdsvdevname 1_2)
1572
1573                 echo "mkfs new MDT on ${fs2mdsdev}...."
1574                 if [ $(facet_fstype mds1) == ldiskfs ]; then
1575                         mkfsoptions="--mkfsoptions=\\\"-J size=8\\\""
1576                 fi
1577
1578                 add fs2mds $(mkfs_opts mds2 $fs2mdsdev $fsname) --reformat \
1579                            $mkfsoptions $fs2mdsdev $fs2mdsvdev > /dev/null || {
1580                         error_noexit "Mkfs new MDT failed"
1581                         return 1
1582                 }
1583
1584                 $r $TUNEFS --dryrun $fs2mdsdev || {
1585                         error_noexit "tunefs.lustre before mounting the MDT"
1586                         return 1
1587                 }
1588
1589                 echo "mount new MDT....$fs2mdsdev"
1590                 $r mkdir -p $tmp/mnt/mdt1
1591                 $r mount -t lustre -o $mopts $fs2mdsdev $tmp/mnt/mdt1 || {
1592                         error_noexit "mount mdt1 failed"
1593                         return 1
1594                 }
1595                 shall_cleanup_mdt1=true
1596         fi
1597
1598         uuid=$($r $LCTL get_param -n mdt.$fsname-MDT0000.uuid) || {
1599                 error_noexit "Getting MDT UUID"
1600                 return 1
1601         }
1602         if [ "$uuid" != $fsname-MDT0000_UUID ]; then
1603                 error_noexit "Unexpected MDT UUID: \"$uuid\""
1604                 return 1
1605         fi
1606
1607         $r $TUNEFS --dryrun $tmp/ost || {
1608                 error_noexit "tunefs.lustre before mounting the OST"
1609                 return 1
1610         }
1611         if [ "$writeconf" ]; then
1612                 mopts=loop,mgsnode=$nid,$writeconf
1613                 if [ $fstype == "ldiskfs" ]; then
1614                         $r $TUNEFS --quota $tmp/ost || {
1615                                 error_noexit "Enable ost quota feature"
1616                                 return 1
1617                         }
1618                 fi
1619         else
1620                 mopts=loop,mgsnode=$nid
1621         fi
1622         $r mount -t lustre -o $mopts $tmp/ost $tmp/mnt/ost || {
1623                 error_noexit "Mounting the OST"
1624                 return 1
1625         }
1626         shall_cleanup_ost=true
1627
1628         uuid=$($r $LCTL get_param -n obdfilter.$fsname-OST0000.uuid) || {
1629                 error_noexit "Getting OST UUID"
1630                 return 1
1631         }
1632         if [ "$uuid" != $fsname-OST0000_UUID ]; then
1633                 error_noexit "Unexpected OST UUID: \"$uuid\""
1634                 return 1
1635         fi
1636
1637         $r $LCTL conf_param $fsname-OST0000.osc.max_dirty_mb=15 || {
1638                 error_noexit "Setting \"max_dirty_mb\""
1639                 return 1
1640         }
1641         $r $LCTL conf_param $fsname-OST0000.failover.node=$nid || {
1642                 error_noexit "Setting OST \"failover.node\""
1643                 return 1
1644         }
1645         $r $LCTL conf_param $fsname-MDT0000.mdc.max_rpcs_in_flight=9 || {
1646                 error_noexit "Setting \"max_rpcs_in_flight\""
1647                 return 1
1648         }
1649         $r $LCTL conf_param $fsname-MDT0000.failover.node=$nid || {
1650                 error_noexit "Setting MDT \"failover.node\""
1651                 return 1
1652         }
1653         $r $LCTL pool_new $fsname.interop || {
1654                 error_noexit "Setting \"interop\""
1655                 return 1
1656         }
1657         $r $LCTL conf_param $fsname-MDT0000.lov.stripesize=4M || {
1658                 error_noexit "Setting \"lov.stripesize\""
1659                 return 1
1660         }
1661
1662         if [ "$dne_upgrade" != "no" ]; then
1663                 $r $LCTL conf_param \
1664                                 $fsname-MDT0001.mdc.max_rpcs_in_flight=9 || {
1665                         error_noexit "Setting MDT1 \"max_rpcs_in_flight\""
1666                         return 1
1667                 }
1668                 $r $LCTL conf_param $fsname-MDT0001.failover.node=$nid || {
1669                         error_noexit "Setting MDT1 \"failover.node\""
1670                         return 1
1671                 }
1672                 $r $LCTL conf_param $fsname-MDT0001.lov.stripesize=4M || {
1673                         error_noexit "Setting MDT1 \"lov.stripesize\""
1674                         return 1
1675                 }
1676
1677         fi
1678
1679         if [ "$writeconf" ]; then
1680                 mount -t lustre $nid:/$fsname $tmp/mnt/lustre || {
1681                         error_noexit "Mounting the client"
1682                         return 1
1683                 }
1684                 shall_cleanup_lustre=true
1685                 $LCTL set_param debug="$PTLDEBUG"
1686
1687                 t32_verify_quota $node $fsname $tmp/mnt/lustre || {
1688                         error_noexit "verify quota failed"
1689                         return 1
1690                 }
1691
1692                 if [ "$dne_upgrade" != "no" ]; then
1693                         $LFS mkdir -i 1 $tmp/mnt/lustre/remote_dir || {
1694                                 error_noexit "set remote dir failed"
1695                                 return 1
1696                         }
1697
1698                         pushd $tmp/mnt/lustre
1699                         tar -cf - . --exclude=./remote_dir |
1700                                 tar -xvf - -C remote_dir 1>/dev/null || {
1701                                 error_noexit "cp to remote dir failed"
1702                                 return 1
1703                         }
1704                         popd
1705                 fi
1706
1707                 dd if=/dev/zero of=$tmp/mnt/lustre/tmp_file bs=10k count=10 || {
1708                         error_noexit "dd failed"
1709                         return 1
1710                 }
1711                 rm -rf $tmp/mnt/lustre/tmp_file || {
1712                         error_noexit "rm failed"
1713                         return 1
1714                 }
1715
1716                 if $r test -f $tmp/sha1sums; then
1717                         # LU-2393 - do both sorts on same node to ensure locale
1718                         # is identical
1719                         $r cat $tmp/sha1sums | sort -k 2 >$tmp/sha1sums.orig
1720                         if [ "$dne_upgrade" != "no" ]; then
1721                                 pushd $tmp/mnt/lustre/remote_dir
1722                         else
1723                                 pushd $tmp/mnt/lustre
1724                         fi
1725
1726                         find ! -name .lustre -type f -exec sha1sum {} \; |
1727                                 sort -k 2 >$tmp/sha1sums || {
1728                                 error_noexit "sha1sum"
1729                                 return 1
1730                         }
1731                         popd
1732                         if ! diff -ub $tmp/sha1sums.orig $tmp/sha1sums; then
1733                                 error_noexit "sha1sum verification failed"
1734                                 return 1
1735                         fi
1736                 else
1737                         echo "sha1sum verification skipped"
1738                 fi
1739
1740                 if [ "$dne_upgrade" != "no" ]; then
1741                         rm -rf $tmp/mnt/lustre/remote_dir || {
1742                                 error_noexit "remove remote dir failed"
1743                                 return 1
1744                         }
1745                 fi
1746
1747                 if $r test -f $tmp/list; then
1748                         #
1749                         # There is not a Test Framework API to copy files to or
1750                         # from a remote node.
1751                         #
1752                         # LU-2393 - do both sorts on same node to ensure locale
1753                         # is identical
1754                         $r cat $tmp/list | sort -k 6 >$tmp/list.orig
1755                         pushd $tmp/mnt/lustre
1756                         ls -Rni --time-style=+%s | sort -k 6 >$tmp/list || {
1757                                 error_noexit "ls"
1758                                 return 1
1759                         }
1760                         popd
1761                         #
1762                         # 32-bit and 64-bit clients use different algorithms to
1763                         # convert FIDs into inode numbers.  Hence, remove the inode
1764                         # numbers from the lists, if the original list was created
1765                         # on an architecture with different number of bits per
1766                         # "long".
1767                         #
1768                         if [ $(t32_bits_per_long $(uname -m)) !=                                                \
1769                                  $(t32_bits_per_long $img_arch) ]; then
1770                                 echo "Different number of bits per \"long\" from the disk image"
1771                                 for list in list.orig list; do
1772                                         sed -i -e 's/^[0-9]\+[ \t]\+//' $tmp/$list
1773                                 done
1774                         fi
1775                         if ! diff -ub $tmp/list.orig $tmp/list; then
1776                                 error_noexit "list verification failed"
1777                                 return 1
1778                         fi
1779                 else
1780                         echo "list verification skipped"
1781                 fi
1782
1783                 #
1784                 # When adding new data verification tests, please check for
1785                 # the presence of the required reference files first, like
1786                 # the "sha1sums" and "list" tests above, to avoid the need to
1787                 # regenerate every image for each test addition.
1788                 #
1789
1790                 nrpcs_orig=$($LCTL get_param \
1791                                 -n mdc.*MDT0000*.max_rpcs_in_flight) || {
1792                         error_noexit "Getting \"max_rpcs_in_flight\""
1793                         return 1
1794                 }
1795                 nrpcs=$((nrpcs_orig + 5))
1796                 $r $LCTL conf_param $fsname-MDT0000.mdc.max_rpcs_in_flight=$nrpcs || {
1797                         error_noexit "Changing \"max_rpcs_in_flight\""
1798                         return 1
1799                 }
1800                 wait_update $HOSTNAME "$LCTL get_param \
1801                         -n mdc.*MDT0000*.max_rpcs_in_flight" $nrpcs || {
1802                         error_noexit "Verifying \"max_rpcs_in_flight\""
1803                         return 1
1804                 }
1805
1806                 umount $tmp/mnt/lustre || {
1807                         error_noexit "Unmounting the client"
1808                         return 1
1809                 }
1810                 shall_cleanup_lustre=false
1811         else
1812                 if [ "$dne_upgrade" != "no" ]; then
1813                         $r umount -d $tmp/mnt/mdt1 || {
1814                                 error_noexit "Unmounting the MDT2"
1815                                 return 1
1816                         }
1817                         shall_cleanup_mdt1=false
1818                 fi
1819
1820                 $r umount -d $tmp/mnt/mdt || {
1821                         error_noexit "Unmounting the MDT"
1822                         return 1
1823                 }
1824                 shall_cleanup_mdt=false
1825                 $r umount -d $tmp/mnt/ost || {
1826                         error_noexit "Unmounting the OST"
1827                         return 1
1828                 }
1829                 shall_cleanup_ost=false
1830
1831                 t32_reload_modules $node || {
1832                         error_noexit "Reloading modules"
1833                         return 1
1834                 }
1835
1836                 # mount a second time to make sure we didnt leave upgrade flag on
1837                 $r $TUNEFS --dryrun $tmp/mdt || {
1838                         error_noexit "tunefs.lustre before remounting the MDT"
1839                         return 1
1840                 }
1841                 $r mount -t lustre -o loop,exclude=$fsname-OST0000 $tmp/mdt                     \
1842                                  $tmp/mnt/mdt || {
1843                         error_noexit "Remounting the MDT"
1844                         return 1
1845                 }
1846                 shall_cleanup_mdt=true
1847         fi
1848 }
1849
1850 test_32a() {
1851         local tarballs
1852         local tarball
1853         local rc=0
1854
1855         t32_check
1856         for tarball in $tarballs; do
1857                 t32_test $tarball || rc=$?
1858         done
1859         return $rc
1860 }
1861 run_test 32a "Upgrade (not live)"
1862
1863 test_32b() {
1864         local tarballs
1865         local tarball
1866         local rc=0
1867
1868         t32_check
1869         for tarball in $tarballs; do
1870                 t32_test $tarball writeconf || rc=$?
1871         done
1872         return $rc
1873 }
1874 run_test 32b "Upgrade with writeconf"
1875
1876 test_32c() {
1877         local tarballs
1878         local tarball
1879         local rc=0
1880
1881         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1882         t32_check
1883         for tarball in $tarballs; do
1884                 dne_upgrade=yes t32_test $tarball writeconf || rc=$?
1885         done
1886         return $rc
1887 }
1888 run_test 32c "dne upgrade test"
1889
1890 test_33a() { # bug 12333, was test_33
1891         local rc=0
1892         local FSNAME2=test-123
1893         local MDSDEV=$(mdsdevname ${SINGLEMDS//mds/})
1894         local mkfsoptions
1895
1896         [ -n "$ost1_HOST" ] && fs2ost_HOST=$ost1_HOST
1897
1898         if [ -z "$fs2ost_DEV" -o -z "$fs2mds_DEV" ]; then
1899                 local dev=${SINGLEMDS}_dev
1900                 local MDSDEV=${!dev}
1901                 is_blkdev $SINGLEMDS $MDSDEV && \
1902                 skip_env "mixed loopback and real device not working" && return
1903         fi
1904
1905         local fs2mdsdev=$(mdsdevname 1_2)
1906         local fs2ostdev=$(ostdevname 1_2)
1907         local fs2mdsvdev=$(mdsvdevname 1_2)
1908         local fs2ostvdev=$(ostvdevname 1_2)
1909
1910         if [ $(facet_fstype mds1) == ldiskfs ]; then
1911                 mkfsoptions="--mkfsoptions=\\\"-J size=8\\\"" # See bug 17931.
1912         fi
1913
1914         add fs2mds $(mkfs_opts mds1 ${fs2mdsdev}) --mgs --fsname=${FSNAME2} \
1915                 --reformat $mkfsoptions $fs2mdsdev $fs2mdsvdev || exit 10
1916         add fs2ost $(mkfs_opts ost1 ${fs2ostdev}) --mgsnode=$MGSNID \
1917                 --fsname=${FSNAME2} --index=8191 --reformat $fs2ostdev \
1918                 $fs2ostvdev || exit 10
1919
1920         start fs2mds $fs2mdsdev $MDS_MOUNT_OPTS && trap cleanup_24a EXIT INT
1921         start fs2ost $fs2ostdev $OST_MOUNT_OPTS
1922         do_facet $SINGLEMDS "$LCTL conf_param $FSNAME2.sys.timeout=200" || rc=1
1923         mkdir -p $MOUNT2
1924         mount -t lustre $MGSNID:/${FSNAME2} $MOUNT2 || rc=2
1925         echo "ok."
1926
1927         cp /etc/hosts $MOUNT2/ || rc=3
1928         $LFS getstripe $MOUNT2/hosts
1929
1930         umount -d $MOUNT2
1931         stop fs2ost -f
1932         stop fs2mds -f
1933         cleanup_nocli || rc=6
1934         return $rc
1935 }
1936 run_test 33a "Mount ost with a large index number"
1937
1938 test_33b() {    # was test_34
1939         setup
1940
1941         do_facet client dd if=/dev/zero of=$MOUNT/24 bs=1024k count=1
1942         # Drop lock cancelation reply during umount
1943         #define OBD_FAIL_LDLM_CANCEL_NET                        0x304
1944         do_facet client lctl set_param fail_loc=0x80000304
1945         #lctl set_param debug=-1
1946         umount_client $MOUNT
1947         cleanup
1948 }
1949 run_test 33b "Drop cancel during umount"
1950
1951 test_34a() {
1952         setup
1953         do_facet client "sh runmultiop_bg_pause $DIR/file O_c"
1954         manual_umount_client
1955         rc=$?
1956         do_facet client killall -USR1 multiop
1957         if [ $rc -eq 0 ]; then
1958                 error "umount not fail!"
1959         fi
1960         sleep 1
1961         cleanup
1962 }
1963 run_test 34a "umount with opened file should be fail"
1964
1965
1966 test_34b() {
1967         setup
1968         touch $DIR/$tfile || return 1
1969         stop_mds --force || return 2
1970
1971         manual_umount_client --force
1972         rc=$?
1973         if [ $rc -ne 0 ]; then
1974                 error "mtab after failed umount - rc $rc"
1975         fi
1976
1977         cleanup
1978         return 0
1979 }
1980 run_test 34b "force umount with failed mds should be normal"
1981
1982 test_34c() {
1983         setup
1984         touch $DIR/$tfile || return 1
1985         stop_ost --force || return 2
1986
1987         manual_umount_client --force
1988         rc=$?
1989         if [ $rc -ne 0 ]; then
1990                 error "mtab after failed umount - rc $rc"
1991         fi
1992
1993         cleanup
1994         return 0
1995 }
1996 run_test 34c "force umount with failed ost should be normal"
1997
1998 test_35a() { # bug 12459
1999         setup
2000
2001         DBG_SAVE="`lctl get_param -n debug`"
2002         lctl set_param debug="ha"
2003
2004         log "Set up a fake failnode for the MDS"
2005         FAKENID="127.0.0.2"
2006         local device=$(do_facet $SINGLEMDS "lctl get_param -n devices" | awk '($3 ~ "mdt" && $4 ~ "MDT") { print $4 }' | head -1)
2007         do_facet mgs "$LCTL conf_param ${device}.failover.node=" \
2008                 "$(h2$NETTYPE $FAKENID)" || return 4
2009
2010         log "Wait for RECONNECT_INTERVAL seconds (10s)"
2011         sleep 10
2012
2013         MSG="conf-sanity.sh test_35a `date +%F%kh%Mm%Ss`"
2014         $LCTL clear
2015         log "$MSG"
2016         log "Stopping the MDT: $device"
2017         stop_mdt 1 || return 5
2018
2019         df $MOUNT > /dev/null 2>&1 &
2020         DFPID=$!
2021         log "Restarting the MDT: $device"
2022         start_mdt 1 || return 6
2023         log "Wait for df ($DFPID) ... "
2024         wait $DFPID
2025         log "done"
2026         lctl set_param debug="$DBG_SAVE"
2027
2028         # retrieve from the log the first server that the client tried to
2029         # contact after the connection loss
2030         $LCTL dk $TMP/lustre-log-$TESTNAME.log
2031         NEXTCONN=`awk "/${MSG}/ {start = 1;}
2032                        /import_select_connection.*$device-mdc.* using connection/ {
2033                                 if (start) {
2034                                         if (\\\$NF ~ /$FAKENID/)
2035                                                 print \\\$NF;
2036                                         else
2037                                                 print 0;
2038                                         exit;
2039                                 }
2040                        }" $TMP/lustre-log-$TESTNAME.log`
2041         [ "$NEXTCONN" != "0" ] && log "The client didn't try to reconnect to the last active server (tried ${NEXTCONN} instead)" && return 7
2042         cleanup
2043         # remove nid settings
2044         writeconf_or_reformat
2045 }
2046 run_test 35a "Reconnect to the last active server first"
2047
2048 test_35b() { # bug 18674
2049         remote_mds || { skip "local MDS" && return 0; }
2050         setup
2051
2052         debugsave
2053         $LCTL set_param debug="ha"
2054         $LCTL clear
2055         MSG="conf-sanity.sh test_35b `date +%F%kh%Mm%Ss`"
2056         log "$MSG"
2057
2058         log "Set up a fake failnode for the MDS"
2059         FAKENID="127.0.0.2"
2060         local device=$(do_facet $SINGLEMDS "$LCTL get_param -n devices" | \
2061                         awk '($3 ~ "mdt" && $4 ~ "MDT") { print $4 }' | head -1)
2062         do_facet mgs "$LCTL conf_param ${device}.failover.node=" \
2063                 "$(h2$NETTYPE $FAKENID)" || return 1
2064
2065         local at_max_saved=0
2066         # adaptive timeouts may prevent seeing the issue
2067         if at_is_enabled; then
2068                 at_max_saved=$(at_max_get mds)
2069                 at_max_set 0 mds client
2070         fi
2071
2072         mkdir -p $MOUNT/$tdir
2073
2074         log "Injecting EBUSY on MDS"
2075         # Setting OBD_FAIL_MDS_RESEND=0x136
2076         do_facet $SINGLEMDS "$LCTL set_param fail_loc=0x80000136" || return 2
2077
2078         $LCTL set_param mdc.${FSNAME}*.stats=clear
2079
2080         log "Creating a test file and stat it"
2081         touch $MOUNT/$tdir/$tfile
2082         stat $MOUNT/$tdir/$tfile
2083
2084         log "Stop injecting EBUSY on MDS"
2085         do_facet $SINGLEMDS "$LCTL set_param fail_loc=0" || return 3
2086         rm -f $MOUNT/$tdir/$tfile
2087
2088         log "done"
2089         # restore adaptive timeout
2090         [ $at_max_saved -ne 0 ] && at_max_set $at_max_saved mds client
2091
2092         $LCTL dk $TMP/lustre-log-$TESTNAME.log
2093
2094         CONNCNT=`$LCTL get_param mdc.${FSNAME}*.stats | awk '/mds_connect/{print $2}'`
2095
2096         # retrieve from the log if the client has ever tried to
2097         # contact the fake server after the loss of connection
2098         FAILCONN=`awk "BEGIN {ret = 0;}
2099                        /import_select_connection.*${FSNAME}-MDT0000-mdc.* using connection/ {
2100                                 ret = 1;
2101                                 if (\\\$NF ~ /$FAKENID/) {
2102                                         ret = 2;
2103                                         exit;
2104                                 }
2105                        }
2106                        END {print ret}" $TMP/lustre-log-$TESTNAME.log`
2107
2108         [ "$FAILCONN" == "0" ] && \
2109                 log "ERROR: The client reconnection has not been triggered" && \
2110                 return 4
2111         [ "$FAILCONN" == "2" ] && \
2112                 log "ERROR: The client tried to reconnect to the failover server while the primary was busy" && \
2113                 return 5
2114
2115         # LU-290
2116         # When OBD_FAIL_MDS_RESEND is hit, we sleep for 2 * obd_timeout
2117         # Reconnects are supposed to be rate limited to one every 5s
2118         [ $CONNCNT -gt $((2 * $TIMEOUT / 5 + 1)) ] && \
2119                 log "ERROR: Too many reconnects $CONNCNT" && \
2120                 return 6
2121
2122         cleanup
2123         # remove nid settings
2124         writeconf_or_reformat
2125 }
2126 run_test 35b "Continue reconnection retries, if the active server is busy"
2127
2128 test_36() { # 12743
2129         [ $OSTCOUNT -lt 2 ] && skip_env "skipping test for single OST" && return
2130
2131         [ "$ost_HOST" = "`hostname`" -o "$ost1_HOST" = "`hostname`" ] || \
2132                 { skip "remote OST" && return 0; }
2133
2134         local rc=0
2135         local FSNAME2=test1234
2136         local fs3ost_HOST=$ost_HOST
2137         local MDSDEV=$(mdsdevname ${SINGLEMDS//mds/})
2138
2139         [ -n "$ost1_HOST" ] && fs2ost_HOST=$ost1_HOST && fs3ost_HOST=$ost1_HOST
2140
2141         if [ -z "$fs2ost_DEV" -o -z "$fs2mds_DEV" -o -z "$fs3ost_DEV" ]; then
2142                 is_blkdev $SINGLEMDS $MDSDEV && \
2143                 skip_env "mixed loopback and real device not working" && return
2144         fi
2145
2146         local fs2mdsdev=$(mdsdevname 1_2)
2147         local fs2ostdev=$(ostdevname 1_2)
2148         local fs3ostdev=$(ostdevname 2_2)
2149         local fs2mdsvdev=$(mdsvdevname 1_2)
2150         local fs2ostvdev=$(ostvdevname 1_2)
2151         local fs3ostvdev=$(ostvdevname 2_2)
2152
2153         add fs2mds $(mkfs_opts mds1 ${fs2mdsdev}) --mgs --fsname=${FSNAME2} \
2154                 --reformat $fs2mdsdev $fs2mdsvdev || exit 10
2155         # XXX after we support non 4K disk blocksize in ldiskfs, specify a
2156         #     different one than the default value here.
2157         add fs2ost $(mkfs_opts ost1 ${fs2ostdev}) --mgsnode=$MGSNID \
2158                 --fsname=${FSNAME2} --reformat $fs2ostdev $fs2ostvdev || exit 10
2159         add fs3ost $(mkfs_opts ost1 ${fs3ostdev}) --mgsnode=$MGSNID \
2160                 --fsname=${FSNAME2} --reformat $fs3ostdev $fs3ostvdev || exit 10
2161
2162         start fs2mds $fs2mdsdev $MDS_MOUNT_OPTS
2163         start fs2ost $fs2ostdev $OST_MOUNT_OPTS
2164         start fs3ost $fs3ostdev $OST_MOUNT_OPTS
2165         mkdir -p $MOUNT2
2166         mount -t lustre $MGSNID:/${FSNAME2} $MOUNT2 || return 1
2167
2168         sleep 5 # until 11778 fixed
2169
2170         dd if=/dev/zero of=$MOUNT2/$tfile bs=1M count=7 || return 2
2171
2172         BKTOTAL=`lctl get_param -n obdfilter.*.kbytestotal | awk 'BEGIN{total=0}; {total+=$1}; END{print total}'`
2173         BKFREE=`lctl get_param -n obdfilter.*.kbytesfree | awk 'BEGIN{free=0}; {free+=$1}; END{print free}'`
2174         BKAVAIL=`lctl get_param -n obdfilter.*.kbytesavail | awk 'BEGIN{avail=0}; {avail+=$1}; END{print avail}'`
2175         STRING=`df -P $MOUNT2 | tail -n 1 | awk '{print $2","$3","$4}'`
2176         DFTOTAL=`echo $STRING | cut -d, -f1`
2177         DFUSED=`echo $STRING  | cut -d, -f2`
2178         DFAVAIL=`echo $STRING | cut -d, -f3`
2179         DFFREE=$(($DFTOTAL - $DFUSED))
2180
2181         ALLOWANCE=$((64 * $OSTCOUNT))
2182
2183         if [ $DFTOTAL -lt $(($BKTOTAL - $ALLOWANCE)) ] ||
2184            [ $DFTOTAL -gt $(($BKTOTAL + $ALLOWANCE)) ] ; then
2185                 echo "**** FAIL: df total($DFTOTAL) mismatch OST total($BKTOTAL)"
2186                 rc=1
2187         fi
2188         if [ $DFFREE -lt $(($BKFREE - $ALLOWANCE)) ] ||
2189            [ $DFFREE -gt $(($BKFREE + $ALLOWANCE)) ] ; then
2190                 echo "**** FAIL: df free($DFFREE) mismatch OST free($BKFREE)"
2191                 rc=2
2192         fi
2193         if [ $DFAVAIL -lt $(($BKAVAIL - $ALLOWANCE)) ] ||
2194            [ $DFAVAIL -gt $(($BKAVAIL + $ALLOWANCE)) ] ; then
2195                 echo "**** FAIL: df avail($DFAVAIL) mismatch OST avail($BKAVAIL)"
2196                 rc=3
2197        fi
2198
2199         umount -d $MOUNT2
2200         stop fs3ost -f || return 200
2201         stop fs2ost -f || return 201
2202         stop fs2mds -f || return 202
2203         unload_modules_conf || return 203
2204         return $rc
2205 }
2206 run_test 36 "df report consistency on OSTs with different block size"
2207
2208 test_37() {
2209         local mntpt=$(facet_mntpt $SINGLEMDS)
2210         local mdsdev=$(mdsdevname ${SINGLEMDS//mds/})
2211         local mdsdev_sym="$TMP/sym_mdt.img"
2212         local opts=$MDS_MOUNT_OPTS
2213         local rc=0
2214
2215         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
2216                 skip "Currently only applicable to ldiskfs-based MDTs"
2217                 return
2218         fi
2219
2220         echo "MDS :     $mdsdev"
2221         echo "SYMLINK : $mdsdev_sym"
2222         do_facet $SINGLEMDS rm -f $mdsdev_sym
2223
2224         do_facet $SINGLEMDS ln -s $mdsdev $mdsdev_sym
2225
2226         echo "mount symlink device - $mdsdev_sym"
2227
2228         if ! do_facet $SINGLEMDS test -b $mdsdev; then
2229                 opts=$(csa_add "$opts" -o loop)
2230         fi
2231         mount_op=$(do_facet $SINGLEMDS mount -v -t lustre $opts \
2232                 $mdsdev_sym $mntpt 2>&1)
2233         rc=${PIPESTATUS[0]}
2234
2235         echo mount_op=$mount_op
2236
2237         do_facet $SINGLEMDS "umount -d $mntpt && rm -f $mdsdev_sym"
2238
2239         if $(echo $mount_op | grep -q "unable to set tunable"); then
2240                 error "set tunables failed for symlink device"
2241         fi
2242
2243         [ $rc -eq 0 ] || error "mount symlink $mdsdev_sym failed! rc=$rc"
2244
2245         return 0
2246 }
2247 run_test 37 "verify set tunables works for symlink device"
2248
2249 test_38() { # bug 14222
2250         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
2251                 skip "Only applicable to ldiskfs-based MDTs"
2252                 return
2253         fi
2254
2255         setup
2256         # like runtests
2257         COUNT=10
2258         SRC="/etc /bin"
2259         FILES=`find $SRC -type f -mtime +1 | head -n $COUNT`
2260         log "copying $(echo $FILES | wc -w) files to $DIR/$tdir"
2261         mkdir -p $DIR/$tdir
2262         tar cf - $FILES | tar xf - -C $DIR/$tdir || \
2263                 error "copying $SRC to $DIR/$tdir"
2264         sync
2265         umount_client $MOUNT
2266         stop_mds
2267         log "rename lov_objid file on MDS"
2268         rm -f $TMP/lov_objid.orig
2269
2270         local MDSDEV=$(mdsdevname ${SINGLEMDS//mds/})
2271         do_facet $SINGLEMDS "$DEBUGFS -c -R \\\"dump lov_objid $TMP/lov_objid.orig\\\" $MDSDEV"
2272         do_facet $SINGLEMDS "$DEBUGFS -w -R \\\"rm lov_objid\\\" $MDSDEV"
2273
2274         do_facet $SINGLEMDS "od -Ax -td8 $TMP/lov_objid.orig"
2275         # check create in mds_lov_connect
2276         start_mds
2277         mount_client $MOUNT
2278         for f in $FILES; do
2279                 [ $V ] && log "verifying $DIR/$tdir/$f"
2280                 diff -q $f $DIR/$tdir/$f || ERROR=y
2281         done
2282         do_facet $SINGLEMDS "$DEBUGFS -c -R \\\"dump lov_objid $TMP/lov_objid.new\\\"  $MDSDEV"
2283         do_facet $SINGLEMDS "od -Ax -td8 $TMP/lov_objid.new"
2284         [ "$ERROR" = "y" ] && error "old and new files are different after connect" || true
2285
2286         # check it's updates in sync
2287         umount_client $MOUNT
2288         stop_mds
2289
2290         do_facet $SINGLEMDS dd if=/dev/zero of=$TMP/lov_objid.clear bs=4096 count=1
2291         do_facet $SINGLEMDS "$DEBUGFS -w -R \\\"rm lov_objid\\\" $MDSDEV"
2292         do_facet $SINGLEMDS "$DEBUGFS -w -R \\\"write $TMP/lov_objid.clear lov_objid\\\" $MDSDEV "
2293
2294         start_mds
2295         mount_client $MOUNT
2296         for f in $FILES; do
2297                 [ $V ] && log "verifying $DIR/$tdir/$f"
2298                 diff -q $f $DIR/$tdir/$f || ERROR=y
2299         done
2300         do_facet $SINGLEMDS "$DEBUGFS -c -R \\\"dump lov_objid $TMP/lov_objid.new1\\\" $MDSDEV"
2301         do_facet $SINGLEMDS "od -Ax -td8 $TMP/lov_objid.new1"
2302         umount_client $MOUNT
2303         stop_mds
2304         [ "$ERROR" = "y" ] && error "old and new files are different after sync" || true
2305
2306         log "files compared the same"
2307         cleanup
2308 }
2309 run_test 38 "MDS recreates missing lov_objid file from OST data"
2310
2311 test_39() {
2312         PTLDEBUG=+malloc
2313         setup
2314         cleanup
2315         perl $SRCDIR/leak_finder.pl $TMP/debug 2>&1 | egrep '*** Leak:' &&
2316                 error "memory leak detected" || true
2317 }
2318 run_test 39 "leak_finder recognizes both LUSTRE and LNET malloc messages"
2319
2320 test_40() { # bug 15759
2321         start_ost
2322         #define OBD_FAIL_TGT_TOOMANY_THREADS     0x706
2323         do_facet $SINGLEMDS "$LCTL set_param fail_loc=0x80000706"
2324         start_mds
2325         cleanup
2326 }
2327 run_test 40 "race during service thread startup"
2328
2329 test_41a() { #bug 14134
2330         if [ $(facet_fstype $SINGLEMDS) == ldiskfs ] &&
2331            ! do_facet $SINGLEMDS test -b $(mdsdevname 1); then
2332                 skip "Loop devices does not work with nosvc option"
2333                 return
2334         fi
2335
2336         local rc
2337         local MDSDEV=$(mdsdevname ${SINGLEMDS//mds/})
2338
2339         start $SINGLEMDS $MDSDEV $MDS_MOUNT_OPTS -o nosvc -n
2340         start ost1 `ostdevname 1` $OST_MOUNT_OPTS
2341         start $SINGLEMDS $MDSDEV $MDS_MOUNT_OPTS -o nomgs,force
2342         mkdir -p $MOUNT
2343         mount_client $MOUNT || return 1
2344         sleep 5
2345
2346         echo "blah blah" > $MOUNT/$tfile
2347         cat $MOUNT/$tfile
2348
2349         umount_client $MOUNT
2350         stop ost1 -f || return 201
2351         stop_mds -f || return 202
2352         stop_mds -f || return 203
2353         unload_modules_conf || return 204
2354         return $rc
2355 }
2356 run_test 41a "mount mds with --nosvc and --nomgs"
2357
2358 test_41b() {
2359         if [ $(facet_fstype $SINGLEMDS) == ldiskfs ] &&
2360            ! do_facet $SINGLEMDS test -b $(mdsdevname 1); then
2361                 skip "Loop devices does not work with nosvc option"
2362                 return
2363         fi
2364
2365         ! combined_mgs_mds && skip "needs combined mgs device" && return 0
2366
2367         stopall
2368         reformat
2369         local MDSDEV=$(mdsdevname ${SINGLEMDS//mds/})
2370
2371         start $SINGLEMDS $MDSDEV $MDS_MOUNT_OPTS -o nosvc -n
2372         start_ost
2373         start $SINGLEMDS $MDSDEV $MDS_MOUNT_OPTS -o nomgs,force
2374         mkdir -p $MOUNT
2375         mount_client $MOUNT || return 1
2376         sleep 5
2377
2378         echo "blah blah" > $MOUNT/$tfile
2379         cat $MOUNT/$tfile || return 200
2380
2381         umount_client $MOUNT
2382         stop_ost || return 201
2383         stop_mds -f || return 202
2384         stop_mds -f || return 203
2385
2386 }
2387 run_test 41b "mount mds with --nosvc and --nomgs on first mount"
2388
2389 test_42() { #bug 14693
2390         setup
2391         check_mount || error "client was not mounted"
2392
2393         do_facet mgs $LCTL conf_param $FSNAME.llite.some_wrong_param=10
2394         umount_client $MOUNT ||
2395                 error "unmounting client failed with invalid llite param"
2396         mount_client $MOUNT ||
2397                 error "mounting client failed with invalid llite param"
2398
2399         do_facet mgs $LCTL conf_param $FSNAME.sys.some_wrong_param=20
2400         cleanup || error "stopping $FSNAME failed with invalid sys param"
2401         load_modules
2402         setup
2403         check_mount || "client was not mounted with invalid sys param"
2404         cleanup || error "stopping $FSNAME failed with invalid sys param"
2405         return 0
2406 }
2407 run_test 42 "allow client/server mount/unmount with invalid config param"
2408
2409 test_43() {
2410         [ $UID -ne 0 -o $RUNAS_ID -eq 0 ] && skip_env "run as root"
2411         setup
2412         chmod ugo+x $DIR || error "chmod 0 failed"
2413         set_conf_param_and_check mds                                    \
2414                 "lctl get_param -n mdt.$FSNAME-MDT0000.root_squash"     \
2415                 "$FSNAME.mdt.root_squash"                               \
2416                 "0:0"
2417         set_conf_param_and_check mds                                    \
2418                 "lctl get_param -n mdt.$FSNAME-MDT0000.nosquash_nids"   \
2419                 "$FSNAME.mdt.nosquash_nids"                             \
2420                 "NONE"
2421
2422     #
2423     # create set of test files
2424     #
2425     echo "111" > $DIR/$tfile-userfile || error "write 1 failed"
2426     chmod go-rw $DIR/$tfile-userfile  || error "chmod 1 failed"
2427     chown $RUNAS_ID.$RUNAS_ID $DIR/$tfile-userfile || error "chown failed"
2428
2429     echo "222" > $DIR/$tfile-rootfile || error "write 2 failed"
2430     chmod go-rw $DIR/$tfile-rootfile  || error "chmod 2 faield"
2431
2432     mkdir $DIR/$tdir-rootdir -p       || error "mkdir failed"
2433     chmod go-rwx $DIR/$tdir-rootdir   || error "chmod 3 failed"
2434     touch $DIR/$tdir-rootdir/tfile-1  || error "touch failed"
2435
2436         #
2437         # check root_squash:
2438         #   set root squash UID:GID to RUNAS_ID
2439         #   root should be able to access only files owned by RUNAS_ID
2440         #
2441         set_conf_param_and_check mds                                    \
2442                 "lctl get_param -n mdt.$FSNAME-MDT0000.root_squash"     \
2443                 "$FSNAME.mdt.root_squash"                               \
2444                 "$RUNAS_ID:$RUNAS_ID"
2445
2446     ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tfile-userfile)
2447     dd if=$DIR/$tfile-userfile 1>/dev/null 2>/dev/null || \
2448         error "$ST: root read permission is denied"
2449     echo "$ST: root read permission is granted - ok"
2450
2451     echo "444" | \
2452     dd conv=notrunc if=$DIR/$tfile-userfile 1>/dev/null 2>/dev/null || \
2453         error "$ST: root write permission is denied"
2454     echo "$ST: root write permission is granted - ok"
2455
2456     ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tfile-rootfile)
2457     dd if=$DIR/$tfile-rootfile 1>/dev/null 2>/dev/null && \
2458         error "$ST: root read permission is granted"
2459     echo "$ST: root read permission is denied - ok"
2460
2461     echo "555" | \
2462     dd conv=notrunc of=$DIR/$tfile-rootfile 1>/dev/null 2>/dev/null && \
2463         error "$ST: root write permission is granted"
2464     echo "$ST: root write permission is denied - ok"
2465
2466     ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tdir-rootdir)
2467     rm $DIR/$tdir-rootdir/tfile-1 1>/dev/null 2>/dev/null && \
2468         error "$ST: root unlink permission is granted"
2469     echo "$ST: root unlink permission is denied - ok"
2470
2471     touch $DIR/tdir-rootdir/tfile-2 1>/dev/null 2>/dev/null && \
2472         error "$ST: root create permission is granted"
2473     echo "$ST: root create permission is denied - ok"
2474
2475         #
2476         # check nosquash_nids:
2477         #   put client's NID into nosquash_nids list,
2478         #   root should be able to access root file after that
2479         #
2480         local NIDLIST=$(lctl list_nids all | tr '\n' ' ')
2481         NIDLIST="2@elan $NIDLIST 192.168.0.[2,10]@tcp"
2482         NIDLIST=$(echo $NIDLIST | tr -s ' ' ' ')
2483         set_conf_param_and_check mds                                    \
2484                 "lctl get_param -n mdt.$FSNAME-MDT0000.nosquash_nids"   \
2485                 "$FSNAME-MDTall.mdt.nosquash_nids"                      \
2486                 "$NIDLIST"
2487
2488     ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tfile-rootfile)
2489     dd if=$DIR/$tfile-rootfile 1>/dev/null 2>/dev/null || \
2490         error "$ST: root read permission is denied"
2491     echo "$ST: root read permission is granted - ok"
2492
2493     echo "666" | \
2494     dd conv=notrunc of=$DIR/$tfile-rootfile 1>/dev/null 2>/dev/null || \
2495         error "$ST: root write permission is denied"
2496     echo "$ST: root write permission is granted - ok"
2497
2498     ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tdir-rootdir)
2499     rm $DIR/$tdir-rootdir/tfile-1 || \
2500         error "$ST: root unlink permission is denied"
2501     echo "$ST: root unlink permission is granted - ok"
2502     touch $DIR/$tdir-rootdir/tfile-2 || \
2503         error "$ST: root create permission is denied"
2504     echo "$ST: root create permission is granted - ok"
2505
2506     return 0
2507 }
2508 run_test 43 "check root_squash and nosquash_nids"
2509
2510 umount_client $MOUNT
2511 cleanup_nocli
2512
2513 test_44() { # 16317
2514         setup
2515         check_mount || return 2
2516         UUID=$($LCTL get_param llite.${FSNAME}*.uuid | cut -d= -f2)
2517         STATS_FOUND=no
2518         UUIDS=$(do_facet $SINGLEMDS "$LCTL get_param mdt.${FSNAME}*.exports.*.uuid")
2519         for VAL in $UUIDS; do
2520                 NID=$(echo $VAL | cut -d= -f1)
2521                 CLUUID=$(echo $VAL | cut -d= -f2)
2522                 [ "$UUID" = "$CLUUID" ] && STATS_FOUND=yes && break
2523         done
2524         [ "$STATS_FOUND" = "no" ] && error "stats not found for client"
2525         cleanup
2526         return 0
2527 }
2528 run_test 44 "mounted client proc entry exists"
2529
2530 test_45() { #17310
2531         setup
2532         check_mount || return 2
2533         stop_mds
2534         df -h $MOUNT &
2535         log "sleep 60 sec"
2536         sleep 60
2537 #define OBD_FAIL_PTLRPC_LONG_UNLINK   0x50f
2538         do_facet client "lctl set_param fail_loc=0x50f"
2539         log "sleep 10 sec"
2540         sleep 10
2541         manual_umount_client --force || return 3
2542         do_facet client "lctl set_param fail_loc=0x0"
2543         start_mds
2544         mount_client $MOUNT || return 4
2545         cleanup
2546         return 0
2547 }
2548 run_test 45 "long unlink handling in ptlrpcd"
2549
2550 cleanup_46a() {
2551         trap 0
2552         local rc=0
2553         local count=$1
2554
2555         umount_client $MOUNT2 || rc=$?
2556         umount_client $MOUNT || rc=$?
2557         while [ $count -gt 0 ]; do
2558                 stop ost${count} -f || rc=$?
2559                 let count=count-1
2560         done    
2561         stop_mds || rc=$?
2562         cleanup_nocli || rc=$?
2563         #writeconf to remove all ost2 traces for subsequent tests
2564         writeconf_or_reformat
2565         return $rc
2566 }
2567
2568 test_46a() {
2569         echo "Testing with $OSTCOUNT OSTs"
2570         reformat_and_config
2571         start_mds || return 1
2572         #first client should see only one ost
2573         start_ost || return 2
2574         wait_osc_import_state mds ost FULL
2575         #start_client
2576         mount_client $MOUNT || return 3
2577         trap "cleanup_46a $OSTCOUNT" EXIT ERR
2578
2579         local i
2580         for (( i=2; i<=$OSTCOUNT; i++ )); do
2581             start ost$i `ostdevname $i` $OST_MOUNT_OPTS || return $((i+2))
2582         done
2583
2584         # wait until osts in sync
2585         for (( i=2; i<=$OSTCOUNT; i++ )); do
2586             wait_osc_import_state mds ost$i FULL
2587             wait_osc_import_state client ost$i FULL
2588         done
2589
2590         #second client see all ost's
2591
2592         mount_client $MOUNT2 || return 8
2593         $LFS setstripe -c -1 $MOUNT2 || return 9
2594         $LFS getstripe $MOUNT2 || return 10
2595
2596         echo "ok" > $MOUNT2/widestripe
2597         $LFS getstripe $MOUNT2/widestripe || return 11
2598         # fill acl buffer for avoid expand lsm to them
2599         awk -F : '{if (FNR < 25) { print "u:"$1":rwx" }}' /etc/passwd | while read acl; do
2600             setfacl -m $acl $MOUNT2/widestripe
2601         done
2602
2603         # will be deadlock
2604         stat $MOUNT/widestripe || return 12
2605
2606         cleanup_46a $OSTCOUNT || { echo "cleanup_46a failed!" && return 13; }
2607         return 0
2608 }
2609 run_test 46a "handle ost additional - wide striped file"
2610
2611 test_47() { #17674
2612         reformat
2613         setup_noconfig
2614         check_mount || return 2
2615         $LCTL set_param ldlm.namespaces.$FSNAME-*-*-*.lru_size=100
2616
2617         local lru_size=[]
2618         local count=0
2619         for ns in $($LCTL get_param ldlm.namespaces.$FSNAME-*-*-*.lru_size); do
2620             if echo $ns | grep "MDT[[:digit:]]*"; then
2621                 continue
2622             fi
2623             lrs=$(echo $ns | sed 's/.*lru_size=//')
2624             lru_size[count]=$lrs
2625             let count=count+1
2626         done
2627
2628         facet_failover ost1
2629         facet_failover $SINGLEMDS
2630         client_up || return 3
2631
2632         count=0
2633         for ns in $($LCTL get_param ldlm.namespaces.$FSNAME-*-*-*.lru_size); do
2634             if echo $ns | grep "MDT[[:digit:]]*"; then
2635                 continue
2636             fi
2637             lrs=$(echo $ns | sed 's/.*lru_size=//')
2638             if ! test "$lrs" -eq "${lru_size[count]}"; then
2639                 n=$(echo $ns | sed -e 's/ldlm.namespaces.//' -e 's/.lru_size=.*//')
2640                 error "$n has lost lru_size: $lrs vs. ${lru_size[count]}"
2641             fi
2642             let count=count+1
2643         done
2644
2645         cleanup
2646         return 0
2647 }
2648 run_test 47 "server restart does not make client loss lru_resize settings"
2649
2650 cleanup_48() {
2651         trap 0
2652
2653         # reformat after this test is needed - if test will failed
2654         # we will have unkillable file at FS
2655         reformat_and_config
2656 }
2657
2658 test_48() { # bug 17636
2659         reformat
2660         setup_noconfig
2661         check_mount || return 2
2662
2663         $LFS setstripe -c -1 $MOUNT || return 9
2664         $LFS getstripe $MOUNT || return 10
2665
2666         echo "ok" > $MOUNT/widestripe
2667         $LFS getstripe $MOUNT/widestripe || return 11
2668
2669         trap cleanup_48 EXIT ERR
2670
2671         # fill acl buffer for avoid expand lsm to them
2672         getent passwd | awk -F : '{ print "u:"$1":rwx" }' |  while read acl; do
2673             setfacl -m $acl $MOUNT/widestripe
2674         done
2675
2676         stat $MOUNT/widestripe || return 12
2677
2678         cleanup_48
2679         return 0
2680 }
2681 run_test 48 "too many acls on file"
2682
2683 # check PARAM_SYS_LDLM_TIMEOUT option of MKFS.LUSTRE
2684 test_49() { # bug 17710
2685         local timeout_orig=$TIMEOUT
2686         local ldlm_timeout_orig=$LDLM_TIMEOUT
2687         local LOCAL_TIMEOUT=20
2688
2689         LDLM_TIMEOUT=$LOCAL_TIMEOUT
2690         TIMEOUT=$LOCAL_TIMEOUT
2691
2692         reformat
2693         setup_noconfig
2694         check_mount || return 1
2695
2696         echo "check ldlm_timout..."
2697         LDLM_MDS="`do_facet $SINGLEMDS lctl get_param -n ldlm_timeout`"
2698         LDLM_OST1="`do_facet ost1 lctl get_param -n ldlm_timeout`"
2699         LDLM_CLIENT="`do_facet client lctl get_param -n ldlm_timeout`"
2700
2701         if [ $LDLM_MDS -ne $LDLM_OST1 ] || [ $LDLM_MDS -ne $LDLM_CLIENT ]; then
2702                 error "Different LDLM_TIMEOUT:$LDLM_MDS $LDLM_OST1 $LDLM_CLIENT"
2703         fi
2704
2705         if [ $LDLM_MDS -ne $((LOCAL_TIMEOUT / 3)) ]; then
2706                 error "LDLM_TIMEOUT($LDLM_MDS) is not correct"
2707         fi
2708
2709         umount_client $MOUNT
2710         stop_ost || return 2
2711         stop_mds || return 3
2712
2713         LDLM_TIMEOUT=$((LOCAL_TIMEOUT - 1))
2714
2715         reformat
2716         setup_noconfig
2717         check_mount || return 7
2718
2719         LDLM_MDS="`do_facet $SINGLEMDS lctl get_param -n ldlm_timeout`"
2720         LDLM_OST1="`do_facet ost1 lctl get_param -n ldlm_timeout`"
2721         LDLM_CLIENT="`do_facet client lctl get_param -n ldlm_timeout`"
2722
2723         if [ $LDLM_MDS -ne $LDLM_OST1 ] || [ $LDLM_MDS -ne $LDLM_CLIENT ]; then
2724                 error "Different LDLM_TIMEOUT:$LDLM_MDS $LDLM_OST1 $LDLM_CLIENT"
2725         fi
2726
2727         if [ $LDLM_MDS -ne $((LOCAL_TIMEOUT - 1)) ]; then
2728                 error "LDLM_TIMEOUT($LDLM_MDS) is not correct"
2729         fi
2730
2731         cleanup || return $?
2732
2733         LDLM_TIMEOUT=$ldlm_timeout_orig
2734         TIMEOUT=$timeout_orig
2735 }
2736 run_test 49 "check PARAM_SYS_LDLM_TIMEOUT option of MKFS.LUSTRE"
2737
2738 lazystatfs() {
2739         # Test both statfs and lfs df and fail if either one fails
2740         multiop_bg_pause $1 f_
2741         RC1=$?
2742         PID=$!
2743         killall -USR1 multiop
2744         [ $RC1 -ne 0 ] && log "lazystatfs multiop failed"
2745         wait $PID || { RC1=$?; log "multiop return error "; }
2746
2747         $LFS df &
2748         PID=$!
2749         sleep 5
2750         kill -s 0 $PID
2751         RC2=$?
2752         if [ $RC2 -eq 0 ]; then
2753             kill -s 9 $PID
2754             log "lazystatfs df failed"
2755         fi
2756
2757         RC=0
2758         [[ $RC1 -ne 0 || $RC2 -eq 0 ]] && RC=1
2759         return $RC
2760 }
2761
2762 test_50a() {
2763         setup
2764         lctl set_param llite.$FSNAME-*.lazystatfs=1
2765         touch $DIR/$tfile
2766
2767         lazystatfs $MOUNT || error "lazystatfs failed but no down servers"
2768
2769         cleanup || return $?
2770 }
2771 run_test 50a "lazystatfs all servers available =========================="
2772
2773 test_50b() {
2774         setup
2775         lctl set_param llite.$FSNAME-*.lazystatfs=1
2776         touch $DIR/$tfile
2777
2778         # Wait for client to detect down OST
2779         stop_ost || error "Unable to stop OST1"
2780         wait_osc_import_state mds ost DISCONN
2781
2782         lazystatfs $MOUNT || error "lazystatfs should don't have returned EIO"
2783
2784         umount_client $MOUNT || error "Unable to unmount client"
2785         stop_mds || error "Unable to stop MDS"
2786 }
2787 run_test 50b "lazystatfs all servers down =========================="
2788
2789 test_50c() {
2790         start_mds || error "Unable to start MDS"
2791         start_ost || error "Unable to start OST1"
2792         start_ost2 || error "Unable to start OST2"
2793         mount_client $MOUNT || error "Unable to mount client"
2794         lctl set_param llite.$FSNAME-*.lazystatfs=1
2795         touch $DIR/$tfile
2796
2797         # Wait for client to detect down OST
2798         stop_ost || error "Unable to stop OST1"
2799         wait_osc_import_state mds ost DISCONN
2800         lazystatfs $MOUNT || error "lazystatfs failed with one down server"
2801
2802         umount_client $MOUNT || error "Unable to unmount client"
2803         stop_ost2 || error "Unable to stop OST2"
2804         stop_mds || error "Unable to stop MDS"
2805         #writeconf to remove all ost2 traces for subsequent tests
2806         writeconf_or_reformat
2807 }
2808 run_test 50c "lazystatfs one server down =========================="
2809
2810 test_50d() {
2811         start_mds || error "Unable to start MDS"
2812         start_ost || error "Unable to start OST1"
2813         start_ost2 || error "Unable to start OST2"
2814         mount_client $MOUNT || error "Unable to mount client"
2815         lctl set_param llite.$FSNAME-*.lazystatfs=1
2816         touch $DIR/$tfile
2817
2818         # Issue the statfs during the window where the client still
2819         # belives the OST to be available but it is in fact down.
2820         # No failure just a statfs which hangs for a timeout interval.
2821         stop_ost || error "Unable to stop OST1"
2822         lazystatfs $MOUNT || error "lazystatfs failed with one down server"
2823
2824         umount_client $MOUNT || error "Unable to unmount client"
2825         stop_ost2 || error "Unable to stop OST2"
2826         stop_mds || error "Unable to stop MDS"
2827         #writeconf to remove all ost2 traces for subsequent tests
2828         writeconf_or_reformat
2829 }
2830 run_test 50d "lazystatfs client/server conn race =========================="
2831
2832 test_50e() {
2833         local RC1
2834         local pid
2835
2836         reformat_and_config
2837         start_mds || return 1
2838         #first client should see only one ost
2839         start_ost || return 2
2840         wait_osc_import_state mds ost FULL
2841
2842         # Wait for client to detect down OST
2843         stop_ost || error "Unable to stop OST1"
2844         wait_osc_import_state mds ost DISCONN
2845
2846         mount_client $MOUNT || error "Unable to mount client"
2847         lctl set_param llite.$FSNAME-*.lazystatfs=0
2848
2849         multiop_bg_pause $MOUNT _f
2850         RC1=$?
2851         pid=$!
2852
2853         if [ $RC1 -ne 0 ]; then
2854                 log "multiop failed $RC1"
2855         else
2856             kill -USR1 $pid
2857             sleep $(( $TIMEOUT+1 ))
2858             kill -0 $pid
2859             [ $? -ne 0 ] && error "process isn't sleep"
2860             start_ost || error "Unable to start OST1"
2861             wait $pid || error "statfs failed"
2862         fi
2863
2864         umount_client $MOUNT || error "Unable to unmount client"
2865         stop_ost || error "Unable to stop OST1"
2866         stop_mds || error "Unable to stop MDS"
2867 }
2868 run_test 50e "normal statfs all servers down =========================="
2869
2870 test_50f() {
2871         local RC1
2872         local pid
2873         CONN_PROC="osc.$FSNAME-OST0001-osc-[M]*.ost_server_uuid"
2874
2875         start_mds || error "Unable to start mds"
2876         #first client should see only one ost
2877         start_ost || error "Unable to start OST1"
2878         wait_osc_import_state mds ost FULL
2879
2880         start_ost2 || error "Unable to start OST2"
2881         wait_osc_import_state mds ost2 FULL
2882
2883         # Wait for client to detect down OST
2884         stop_ost2 || error "Unable to stop OST2"
2885
2886         wait_osc_import_state mds ost2 DISCONN
2887         mount_client $MOUNT || error "Unable to mount client"
2888         lctl set_param llite.$FSNAME-*.lazystatfs=0
2889
2890         multiop_bg_pause $MOUNT _f
2891         RC1=$?
2892         pid=$!
2893
2894         if [ $RC1 -ne 0 ]; then
2895                 log "lazystatfs multiop failed $RC1"
2896         else
2897             kill -USR1 $pid
2898             sleep $(( $TIMEOUT+1 ))
2899             kill -0 $pid
2900             [ $? -ne 0 ] && error "process isn't sleep"
2901             start_ost2 || error "Unable to start OST2"
2902             wait $pid || error "statfs failed"
2903             stop_ost2 || error "Unable to stop OST2"
2904         fi
2905
2906         umount_client $MOUNT || error "Unable to unmount client"
2907         stop_ost || error "Unable to stop OST1"
2908         stop_mds || error "Unable to stop MDS"
2909         #writeconf to remove all ost2 traces for subsequent tests
2910         writeconf_or_reformat
2911 }
2912 run_test 50f "normal statfs one server in down =========================="
2913
2914 test_50g() {
2915         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2, skipping" && return
2916         setup
2917         start_ost2 || error "Unable to start OST2"
2918         wait_osc_import_state mds ost2 FULL
2919         wait_osc_import_state client ost2 FULL
2920
2921         local PARAM="${FSNAME}-OST0001.osc.active"
2922
2923         $LFS setstripe -c -1 $DIR/$tfile || error "Unable to lfs setstripe"
2924         do_facet mgs $LCTL conf_param $PARAM=0 || error "Unable to deactivate OST"
2925
2926         umount_client $MOUNT || error "Unable to unmount client"
2927         mount_client $MOUNT || error "Unable to mount client"
2928         # This df should not cause a panic
2929         df -k $MOUNT
2930
2931         do_facet mgs $LCTL conf_param $PARAM=1 || error "Unable to activate OST"
2932         rm -f $DIR/$tfile
2933         umount_client $MOUNT || error "Unable to unmount client"
2934         stop_ost2 || error "Unable to stop OST2"
2935         stop_ost || error "Unable to stop OST1"
2936         stop_mds || error "Unable to stop MDS"
2937         #writeconf to remove all ost2 traces for subsequent tests
2938         writeconf_or_reformat
2939 }
2940 run_test 50g "deactivated OST should not cause panic====================="
2941
2942 # LU-642
2943 test_50h() {
2944         # prepare MDT/OST, make OSC inactive for OST1
2945         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2, skipping" && return
2946         do_facet ost1 "$TUNEFS --param osc.active=0 `ostdevname 1`" ||
2947                 error "tunefs OST1 failed"
2948         start_mds  || error "Unable to start MDT"
2949         start_ost  || error "Unable to start OST1"
2950         start_ost2 || error "Unable to start OST2"
2951         mount_client $MOUNT || error "client start failed"
2952
2953         mkdir -p $DIR/$tdir
2954
2955         # activatate OSC for OST1
2956         local TEST="$LCTL get_param -n osc.${FSNAME}-OST0000-osc-[!M]*.active"
2957         set_conf_param_and_check client                                 \
2958                 "$TEST" "${FSNAME}-OST0000.osc.active" 1 ||
2959                 error "Unable to activate OST1"
2960
2961         mkdir -p $DIR/$tdir/2
2962         $LFS setstripe -c -1 -i 0 $DIR/$tdir/2
2963         sleep 1 && echo "create a file after OST1 is activated"
2964         # create some file
2965         createmany -o $DIR/$tdir/2/$tfile-%d 1
2966
2967         # check OSC import is working
2968         stat $DIR/$tdir/2/* >/dev/null 2>&1 ||
2969                 error "some OSC imports are still not connected"
2970
2971         # cleanup
2972         umount_client $MOUNT || error "Unable to umount client"
2973         stop_ost2 || error "Unable to stop OST2"
2974         cleanup_nocli
2975 }
2976 run_test 50h "LU-642: activate deactivated OST  ==="
2977
2978 test_51() {
2979         local LOCAL_TIMEOUT=20
2980
2981         reformat
2982         setup_noconfig
2983         check_mount || return 1
2984
2985         mkdir $MOUNT/d1
2986         $LFS setstripe -c -1 $MOUNT/d1
2987         #define OBD_FAIL_MDS_REINT_DELAY         0x142
2988         do_facet $SINGLEMDS "lctl set_param fail_loc=0x142"
2989         touch $MOUNT/d1/f1 &
2990         local pid=$!
2991         sleep 2
2992         start_ost2 || return 2
2993         wait $pid
2994         stop_ost2 || return 3
2995         cleanup
2996         #writeconf to remove all ost2 traces for subsequent tests
2997         writeconf_or_reformat
2998 }
2999 run_test 51 "Verify that mdt_reint handles RMF_MDT_MD correctly when an OST is added"
3000
3001 copy_files_xattrs()
3002 {
3003         local node=$1
3004         local dest=$2
3005         local xattrs=$3
3006         shift 3
3007
3008         do_node $node mkdir -p $dest
3009         [ $? -eq 0 ] || { error "Unable to create directory"; return 1; }
3010
3011         do_node $node  'tar cf - '$@' | tar xf - -C '$dest';
3012                         [ \"\${PIPESTATUS[*]}\" = \"0 0\" ] || exit 1'
3013         [ $? -eq 0 ] || { error "Unable to tar files"; return 2; }
3014
3015         do_node $node 'getfattr -d -m "[a-z]*\\." '$@' > '$xattrs
3016         [ $? -eq 0 ] || { error "Unable to read xattrs"; return 3; }
3017 }
3018
3019 diff_files_xattrs()
3020 {
3021         local node=$1
3022         local backup=$2
3023         local xattrs=$3
3024         shift 3
3025
3026         local backup2=${TMP}/backup2
3027
3028         do_node $node mkdir -p $backup2
3029         [ $? -eq 0 ] || { error "Unable to create directory"; return 1; }
3030
3031         do_node $node  'tar cf - '$@' | tar xf - -C '$backup2';
3032                         [ \"\${PIPESTATUS[*]}\" = \"0 0\" ] || exit 1'
3033         [ $? -eq 0 ] || { error "Unable to tar files to diff"; return 2; }
3034
3035         do_node $node "diff -rq $backup $backup2"
3036         [ $? -eq 0 ] || { error "contents differ"; return 3; }
3037
3038         local xattrs2=${TMP}/xattrs2
3039         do_node $node 'getfattr -d -m "[a-z]*\\." '$@' > '$xattrs2
3040         [ $? -eq 0 ] || { error "Unable to read xattrs to diff"; return 4; }
3041
3042         do_node $node "diff $xattrs $xattrs2"
3043         [ $? -eq 0 ] || { error "xattrs differ"; return 5; }
3044
3045         do_node $node "rm -rf $backup2 $xattrs2"
3046         [ $? -eq 0 ] || { error "Unable to delete temporary files"; return 6; }
3047 }
3048
3049 test_52() {
3050         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
3051                 skip "Only applicable to ldiskfs-based MDTs"
3052                 return
3053         fi
3054
3055         start_mds
3056         [ $? -eq 0 ] || { error "Unable to start MDS"; return 1; }
3057         start_ost
3058         [ $? -eq 0 ] || { error "Unable to start OST1"; return 2; }
3059         mount_client $MOUNT
3060         [ $? -eq 0 ] || { error "Unable to mount client"; return 3; }
3061
3062         local nrfiles=8
3063         local ost1mnt=$(facet_mntpt ost1)
3064         local ost1node=$(facet_active_host ost1)
3065         local ost1tmp=$TMP/conf52
3066         local loop
3067
3068         mkdir -p $DIR/$tdir
3069         [ $? -eq 0 ] || { error "Unable to create tdir"; return 4; }
3070         touch $TMP/modified_first
3071         [ $? -eq 0 ] || { error "Unable to create temporary file"; return 5; }
3072         local mtime=$(stat -c %Y $TMP/modified_first)
3073         do_node $ost1node "mkdir -p $ost1tmp && touch -m -d @$mtime $ost1tmp/modified_first"
3074
3075         [ $? -eq 0 ] || { error "Unable to create temporary file"; return 6; }
3076         sleep 1
3077
3078         $LFS setstripe -c -1 -S 1M $DIR/$tdir
3079         [ $? -eq 0 ] || { error "lfs setstripe failed"; return 7; }
3080
3081         for (( i=0; i < nrfiles; i++ )); do
3082                 multiop $DIR/$tdir/$tfile-$i Ow1048576w1048576w524288c
3083                 [ $? -eq 0 ] || { error "multiop failed"; return 8; }
3084                 echo -n .
3085         done
3086         echo
3087
3088         # backup files
3089         echo backup files to $TMP/files
3090         local files=$(find $DIR/$tdir -type f -newer $TMP/modified_first)
3091         copy_files_xattrs `hostname` $TMP/files $TMP/file_xattrs $files
3092         [ $? -eq 0 ] || { error "Unable to copy files"; return 9; }
3093
3094         umount_client $MOUNT
3095         [ $? -eq 0 ] || { error "Unable to umount client"; return 10; }
3096         stop_ost
3097         [ $? -eq 0 ] || { error "Unable to stop ost1"; return 11; }
3098
3099         echo mount ost1 as ldiskfs
3100         do_node $ost1node mkdir -p $ost1mnt
3101         [ $? -eq 0 ] || { error "Unable to create $ost1mnt"; return 23; }
3102         if ! do_node $ost1node test -b $ost1_dev; then
3103                 loop="-o loop"
3104         fi
3105         do_node $ost1node mount -t $(facet_fstype ost1) $loop $ost1_dev \
3106                 $ost1mnt
3107         [ $? -eq 0 ] || { error "Unable to mount ost1 as ldiskfs"; return 12; }
3108
3109         # backup objects
3110         echo backup objects to $ost1tmp/objects
3111         local objects=$(do_node $ost1node 'find '$ost1mnt'/O/[0-9]* -type f'\
3112                 '-size +0 -newer '$ost1tmp'/modified_first -regex ".*\/[0-9]+"')
3113         copy_files_xattrs $ost1node $ost1tmp/objects $ost1tmp/object_xattrs \
3114                         $objects
3115         [ $? -eq 0 ] || { error "Unable to copy objects"; return 13; }
3116
3117         # move objects to lost+found
3118         do_node $ost1node 'mv '$objects' '${ost1mnt}'/lost+found'
3119         [ $? -eq 0 ] || { error "Unable to move objects"; return 14; }
3120
3121         # recover objects
3122         do_node $ost1node "ll_recover_lost_found_objs -d $ost1mnt/lost+found"
3123         [ $? -eq 0 ] || { error "ll_recover_lost_found_objs failed"; return 15; }
3124
3125         # compare restored objects against saved ones
3126         diff_files_xattrs $ost1node $ost1tmp/objects $ost1tmp/object_xattrs $objects
3127         [ $? -eq 0 ] || { error "Unable to diff objects"; return 16; }
3128
3129         do_node $ost1node "umount $ost1mnt"
3130         [ $? -eq 0 ] || { error "Unable to umount ost1 as ldiskfs"; return 17; }
3131
3132         start_ost
3133         [ $? -eq 0 ] || { error "Unable to start ost1"; return 18; }
3134         mount_client $MOUNT
3135         [ $? -eq 0 ] || { error "Unable to mount client"; return 19; }
3136
3137         # compare files
3138         diff_files_xattrs `hostname` $TMP/files $TMP/file_xattrs $files
3139         [ $? -eq 0 ] || { error "Unable to diff files"; return 20; }
3140
3141         rm -rf $TMP/files $TMP/file_xattrs
3142         [ $? -eq 0 ] || { error "Unable to delete temporary files"; return 21; }
3143         do_node $ost1node "rm -rf $ost1tmp"
3144         [ $? -eq 0 ] || { error "Unable to delete temporary files"; return 22; }
3145         cleanup
3146 }
3147 run_test 52 "check recovering objects from lost+found"
3148
3149 # Checks threads_min/max/started for some service
3150 #
3151 # Arguments: service name (OST or MDT), facet (e.g., ost1, $SINGLEMDS), and a
3152 # parameter pattern prefix like 'ost.*.ost'.
3153 thread_sanity() {
3154         local modname=$1
3155         local facet=$2
3156         local parampat=$3
3157         local opts=$4
3158         local basethr=$5
3159         local tmin
3160         local tmin2
3161         local tmax
3162         local tmax2
3163         local tstarted
3164         local paramp
3165         local msg="Insane $modname thread counts"
3166         local ncpts=$(check_cpt_number $facet)
3167         local nthrs
3168         shift 4
3169
3170         check_mount || return 41
3171
3172         # We need to expand $parampat, but it may match multiple parameters, so
3173         # we'll pick the first one
3174         if ! paramp=$(do_facet $facet "lctl get_param -N ${parampat}.threads_min"|head -1); then
3175                 error "Couldn't expand ${parampat}.threads_min parameter name"
3176                 return 22
3177         fi
3178
3179         # Remove the .threads_min part
3180         paramp=${paramp%.threads_min}
3181
3182         # Check for sanity in defaults
3183         tmin=$(do_facet $facet "lctl get_param -n ${paramp}.threads_min" || echo 0)
3184         tmax=$(do_facet $facet "lctl get_param -n ${paramp}.threads_max" || echo 0)
3185         tstarted=$(do_facet $facet "lctl get_param -n ${paramp}.threads_started" || echo 0)
3186         lassert 23 "$msg (PDSH problems?)" '(($tstarted && $tmin && $tmax))' || return $?
3187         lassert 24 "$msg" '(($tstarted >= $tmin && $tstarted <= $tmax ))' || return $?
3188         nthrs=$(expr $tmax - $tmin)
3189         if [ $nthrs -lt $ncpts ]; then
3190                 nthrs=0
3191         else
3192                 nthrs=$ncpts
3193         fi
3194
3195         [ $tmin -eq $tmax -a $tmin -eq $tstarted ] &&
3196                 skip_env "module parameter forced $facet thread count" &&
3197                 tmin=3 && tmax=$((3 * tmax))
3198
3199         # Check that we can change min/max
3200         do_facet $facet "lctl set_param ${paramp}.threads_min=$((tmin + nthrs))"
3201         do_facet $facet "lctl set_param ${paramp}.threads_max=$((tmax - nthrs))"
3202         tmin2=$(do_facet $facet "lctl get_param -n ${paramp}.threads_min" || echo 0)
3203         tmax2=$(do_facet $facet "lctl get_param -n ${paramp}.threads_max" || echo 0)
3204         lassert 25 "$msg" '(($tmin2 == ($tmin + $nthrs) && $tmax2 == ($tmax - $nthrs)))' || return $?
3205
3206         # Check that we can set min/max to the same value
3207         tmin=$(do_facet $facet "lctl get_param -n ${paramp}.threads_min" || echo 0)
3208         do_facet $facet "lctl set_param ${paramp}.threads_max=$tmin"
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 26 "$msg" '(($tmin2 == $tmin && $tmax2 == $tmin))' || return $?
3212
3213         # Check that we can't set max < min
3214         do_facet $facet "lctl set_param ${paramp}.threads_max=$((tmin - 1))"
3215         tmin2=$(do_facet $facet "lctl get_param -n ${paramp}.threads_min" || echo 0)
3216         tmax2=$(do_facet $facet "lctl get_param -n ${paramp}.threads_max" || echo 0)
3217         lassert 27 "$msg" '(($tmin2 <= $tmax2))' || return $?
3218
3219         # We need to ensure that we get the module options desired; to do this
3220         # we set LOAD_MODULES_REMOTE=true and we call setmodopts below.
3221         LOAD_MODULES_REMOTE=true
3222         cleanup
3223         local oldvalue
3224         local newvalue="${opts}=$(expr $basethr \* $ncpts)"
3225         setmodopts -a $modname "$newvalue" oldvalue
3226
3227         load_modules
3228         setup
3229         check_mount || return 41
3230
3231         # Restore previous setting of MODOPTS_*
3232         setmodopts $modname "$oldvalue"
3233
3234         # Check that $opts took
3235         tmin=$(do_facet $facet "lctl get_param -n ${paramp}.threads_min")
3236         tmax=$(do_facet $facet "lctl get_param -n ${paramp}.threads_max")
3237         tstarted=$(do_facet $facet "lctl get_param -n ${paramp}.threads_started")
3238         lassert 28 "$msg" '(($tstarted == $tmin && $tstarted == $tmax ))' || return $?
3239         cleanup
3240
3241         load_modules
3242         setup
3243 }
3244
3245 test_53a() {
3246         setup
3247         thread_sanity OST ost1 'ost.*.ost' 'oss_num_threads' '16'
3248         cleanup
3249 }
3250 run_test 53a "check OSS thread count params"
3251
3252 test_53b() {
3253         setup
3254         local mds=$(do_facet $SINGLEMDS "lctl get_param -N mds.*.*.threads_max \
3255                     2>/dev/null")
3256         if [ -z "$mds" ]; then
3257                 #running this on an old MDT
3258                 thread_sanity MDT $SINGLEMDS 'mdt.*.*.' 'mdt_num_threads' 16
3259         else
3260                 thread_sanity MDT $SINGLEMDS 'mds.*.*.' 'mds_num_threads' 16
3261         fi
3262         cleanup
3263 }
3264 run_test 53b "check MDS thread count params"
3265
3266 test_54a() {
3267         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
3268                 skip "Only applicable to ldiskfs-based MDTs"
3269                 return
3270         fi
3271
3272     do_rpc_nodes $(facet_host ost1) run_llverdev $(ostdevname 1) -p
3273     [ $? -eq 0 ] || error "llverdev failed!"
3274     reformat_and_config
3275 }
3276 run_test 54a "test llverdev and partial verify of device"
3277
3278 test_54b() {
3279         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
3280                 skip "Only applicable to ldiskfs-based MDTs"
3281                 return
3282         fi
3283
3284     setup
3285     run_llverfs $MOUNT -p
3286     [ $? -eq 0 ] || error "llverfs failed!"
3287     cleanup
3288 }
3289 run_test 54b "test llverfs and partial verify of filesystem"
3290
3291 lov_objid_size()
3292 {
3293         local max_ost_index=$1
3294         echo -n $(((max_ost_index + 1) * 8))
3295 }
3296
3297 test_55() {
3298         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
3299                 skip "Only applicable to ldiskfs-based MDTs"
3300                 return
3301         fi
3302
3303         local mdsdev=$(mdsdevname 1)
3304         local mdsvdev=$(mdsvdevname 1)
3305
3306         for i in 1023 2048
3307         do
3308                 add mds1 $(mkfs_opts mds1 ${mdsdev}) --reformat $mdsdev \
3309                         $mdsvdev || exit 10
3310                 add ost1 $(mkfs_opts ost1 $(ostdevname 1)) --index=$i \
3311                         --reformat $(ostdevname 1) $(ostvdevname 1)
3312                 setup_noconfig
3313                 stopall
3314                 setup_noconfig
3315                 sync
3316
3317                 echo checking size of lov_objid for ost index $i
3318                 LOV_OBJID_SIZE=$(do_facet mds1 "$DEBUGFS -R 'stat lov_objid' $mdsdev 2>/dev/null" | grep ^User | awk '{print $6}')
3319                 if [ "$LOV_OBJID_SIZE" != $(lov_objid_size $i) ]; then
3320                         error "lov_objid size has to be $(lov_objid_size $i), not $LOV_OBJID_SIZE"
3321                 else
3322                         echo ok, lov_objid size is correct: $LOV_OBJID_SIZE
3323                 fi
3324                 stopall
3325         done
3326
3327         reformat
3328 }
3329 run_test 55 "check lov_objid size"
3330
3331 test_56() {
3332         local mds_journal_size_orig=$MDSJOURNALSIZE
3333
3334         MDSJOURNALSIZE=16
3335
3336         for num in $(seq 1 $MDSCOUNT); do
3337                 add mds${num} $(mkfs_opts mds${num} $(mdsdevname $num)) \
3338                         --reformat $(mdsdevname $num) $(mdsvdevname $num)
3339         done
3340         add ost1 $(mkfs_opts ost1 $(ostdevname 1)) --index=1000 --reformat \
3341                 $(ostdevname 1) $(ostvdevname 1)
3342         add ost2 $(mkfs_opts ost2 $(ostdevname 2)) --index=10000 --reformat \
3343                 $(ostdevname 2) $(ostvdevname 2)
3344
3345         start_mgsmds
3346         start_ost
3347         start_ost2 || error "Unable to start second ost"
3348         mount_client $MOUNT || error "Unable to mount client"
3349         echo ok
3350         $LFS osts
3351         stopall
3352         MDSJOURNALSIZE=$mds_journal_size_orig
3353         reformat
3354 }
3355 run_test 56 "check big indexes"
3356
3357 test_57a() { # bug 22656
3358         local NID=$(do_facet ost1 "$LCTL get_param nis" | tail -1 | awk '{print $1}')
3359         writeconf_or_reformat
3360         do_facet ost1 "$TUNEFS --failnode=$NID `ostdevname 1`" || error "tunefs failed"
3361         start_mgsmds
3362         start_ost && error "OST registration from failnode should fail"
3363         reformat
3364 }
3365 run_test 57a "initial registration from failnode should fail (should return errs)"
3366
3367 test_57b() {
3368         local NID=$(do_facet ost1 "$LCTL get_param nis" | tail -1 | awk '{print $1}')
3369         writeconf_or_reformat
3370         do_facet ost1 "$TUNEFS --servicenode=$NID `ostdevname 1`" || error "tunefs failed"
3371         start_mgsmds
3372         start_ost || error "OST registration from servicenode should not fail"
3373         reformat
3374 }
3375 run_test 57b "initial registration from servicenode should not fail"
3376
3377 count_osts() {
3378         do_facet mgs $LCTL get_param mgs.MGS.live.$FSNAME | grep OST | wc -l
3379 }
3380
3381 test_58() { # bug 22658
3382         if [ $(facet_fstype mds) != ldiskfs ]; then
3383                 skip "Only applicable to ldiskfs-based MDTs"
3384                 return
3385         fi
3386         setup_noconfig
3387         mkdir -p $DIR/$tdir
3388         createmany -o $DIR/$tdir/$tfile-%d 100
3389         # make sure that OSTs do not cancel llog cookies before we unmount the MDS
3390 #define OBD_FAIL_OBD_LOG_CANCEL_NET      0x601
3391         do_facet mds "lctl set_param fail_loc=0x601"
3392         unlinkmany $DIR/$tdir/$tfile-%d 100
3393         stop mds
3394         local MNTDIR=$(facet_mntpt mds)
3395         # remove all files from the OBJECTS dir
3396         do_facet mds "mount -t ldiskfs $MDSDEV $MNTDIR"
3397         do_facet mds "find $MNTDIR/OBJECTS -type f -delete"
3398         do_facet mds "umount $MNTDIR"
3399         # restart MDS with missing llog files
3400         start_mds
3401         do_facet mds "lctl set_param fail_loc=0"
3402         reformat
3403 }
3404 run_test 58 "missing llog files must not prevent MDT from mounting"
3405
3406 test_59() {
3407         start_mgsmds >> /dev/null
3408         local C1=$(count_osts)
3409         if [ $C1 -eq 0 ]; then
3410                 start_ost >> /dev/null
3411                 C1=$(count_osts)
3412         fi
3413         stopall
3414         echo "original ost count: $C1 (expect > 0)"
3415         [ $C1 -gt 0 ] || error "No OSTs in $FSNAME log"
3416         start_mgsmds -o writeconf >> /dev/null || error "MDT start failed"
3417         local C2=$(count_osts)
3418         echo "after mdt writeconf count: $C2 (expect 0)"
3419         [ $C2 -gt 0 ] && error "MDT writeconf should erase OST logs"
3420         echo "OST start without writeconf should fail:"
3421         start_ost >> /dev/null && error "OST start without writeconf didn't fail"
3422         echo "OST start with writeconf should succeed:"
3423         start_ost -o writeconf >> /dev/null || error "OST1 start failed"
3424         local C3=$(count_osts)
3425         echo "after ost writeconf count: $C3 (expect 1)"
3426         [ $C3 -eq 1 ] || error "new OST writeconf should add:"
3427         start_ost2 -o writeconf >> /dev/null || error "OST2 start failed"
3428         local C4=$(count_osts)
3429         echo "after ost2 writeconf count: $C4 (expect 2)"
3430         [ $C4 -eq 2 ] || error "OST2 writeconf should add log"
3431         stop_ost2 >> /dev/null
3432         cleanup_nocli >> /dev/null
3433         #writeconf to remove all ost2 traces for subsequent tests
3434         writeconf_or_reformat
3435 }
3436 run_test 59 "writeconf mount option"
3437
3438 test_60() { # LU-471
3439         local num
3440
3441         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
3442                 skip "Only applicable to ldiskfs-based MDTs"
3443                 return
3444         fi
3445
3446         for num in $(seq $MDSCOUNT); do
3447                 add mds${num} $(mkfs_opts mds${num} $(mdsdevname $num)) \
3448                         --mkfsoptions='\" -E stride=64 -O ^uninit_bg\"' \
3449                         --reformat $(mdsdevname $num) $(mdsvdevname $num) ||
3450                         exit 10
3451         done
3452
3453         dump=$(do_facet $SINGLEMDS dumpe2fs $(mdsdevname 1))
3454         rc=${PIPESTATUS[0]}
3455         [ $rc -eq 0 ] || error "dumpe2fs $(mdsdevname 1) failed"
3456
3457         # MDT default has dirdata feature
3458         echo $dump | grep dirdata > /dev/null || error "dirdata is not set"
3459         # we disable uninit_bg feature
3460         echo $dump | grep uninit_bg > /dev/null && error "uninit_bg is set"
3461         # we set stride extended options
3462         echo $dump | grep stride > /dev/null || error "stride is not set"
3463         reformat
3464 }
3465 run_test 60 "check mkfs.lustre --mkfsoptions -E -O options setting"
3466
3467 test_61() { # LU-80
3468         local reformat=false
3469
3470         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.1.53) ] ||
3471                 { skip "Need MDS version at least 2.1.53"; return 0; }
3472
3473         if [ $(facet_fstype $SINGLEMDS) == ldiskfs ] &&
3474            ! large_xattr_enabled; then
3475                 reformat=true
3476                 LDISKFS_MKFS_OPTS+=" -O large_xattr"
3477
3478                 for num in $(seq $MDSCOUNT); do
3479                         add mds${num} $(mkfs_opts mds$num $(mdsdevname $num)) \
3480                         --reformat $(mdsdevname $num) $(mdsvdevname $num) ||
3481                         error "add mds $num failed"
3482                 done
3483         fi
3484
3485     setup_noconfig || error "setting up the filesystem failed"
3486     client_up || error "starting client failed"
3487
3488     local file=$DIR/$tfile
3489     touch $file
3490
3491     local large_value="$(generate_string $(max_xattr_size))"
3492     local small_value="bar"
3493
3494     local name="trusted.big"
3495     log "save large xattr $name on $file"
3496     setfattr -n $name -v $large_value $file ||
3497         error "saving $name on $file failed"
3498
3499     local new_value=$(get_xattr_value $name $file)
3500     [[ "$new_value" != "$large_value" ]] &&
3501         error "$name different after saving"
3502
3503     log "shrink value of $name on $file"
3504     setfattr -n $name -v $small_value $file ||
3505         error "shrinking value of $name on $file failed"
3506
3507     new_value=$(get_xattr_value $name $file)
3508     [[ "$new_value" != "$small_value" ]] &&
3509         error "$name different after shrinking"
3510
3511     log "grow value of $name on $file"
3512     setfattr -n $name -v $large_value $file ||
3513         error "growing value of $name on $file failed"
3514
3515     new_value=$(get_xattr_value $name $file)
3516     [[ "$new_value" != "$large_value" ]] &&
3517         error "$name different after growing"
3518
3519     log "check value of $name on $file after remounting MDS"
3520     fail $SINGLEMDS
3521     new_value=$(get_xattr_value $name $file)
3522     [[ "$new_value" != "$large_value" ]] &&
3523         error "$name different after remounting MDS"
3524
3525     log "remove large xattr $name from $file"
3526     setfattr -x $name $file || error "removing $name from $file failed"
3527
3528     rm -f $file
3529     stopall
3530         if $reformat; then
3531                 LDISKFS_MKFS_OPTS=${LDISKFS_MKFS_OPTS% -O large_xattr}
3532                 reformat
3533         fi
3534 }
3535 run_test 61 "large xattr"
3536
3537 test_62() {
3538         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
3539                 skip "Only applicable to ldiskfs-based MDTs"
3540                 return
3541         fi
3542
3543         # MRP-118
3544         local mdsdev=$(mdsdevname 1)
3545         local ostdev=$(ostdevname 1)
3546
3547         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
3548                 { skip "Need MDS version at least 2.2.51"; return 0; }
3549
3550         echo "disable journal for mds"
3551         do_facet mds tune2fs -O ^has_journal $mdsdev || error "tune2fs failed"
3552         start_mds && error "MDT start should fail"
3553         echo "disable journal for ost"
3554         do_facet ost1 tune2fs -O ^has_journal $ostdev || error "tune2fs failed"
3555         start_ost && error "OST start should fail"
3556         cleanup || return $?
3557         reformat_and_config
3558 }
3559 run_test 62 "start with disabled journal"
3560
3561 test_63() {
3562         if [ $(facet_fstype $SINGLEMDS) != ldiskfs ]; then
3563                 skip "Only applicable to ldiskfs-based MDTs"
3564                 return
3565         fi
3566
3567         local inode_slab=$(do_facet $SINGLEMDS \
3568                 "awk '/ldiskfs_inode_cache/ { print \\\$5 }' /proc/slabinfo")
3569         if [ -z "$inode_slab" ]; then
3570                 skip "ldiskfs module has not been loaded"
3571                 return
3572         fi
3573
3574         echo "$inode_slab ldisk inodes per page"
3575         [ "$inode_slab" -ge "3" ] ||
3576                 error "ldisk inode size is too big, $inode_slab objs per page"
3577         return
3578 }
3579 run_test 63 "Verify each page can at least hold 3 ldisk inodes"
3580
3581 test_64() {
3582         start_mds
3583         start_ost
3584         start_ost2 || error "Unable to start second ost"
3585         mount_client $MOUNT || error "Unable to mount client"
3586         stop_ost2 || error "Unable to stop second ost"
3587         echo "$LFS df"
3588         $LFS df --lazy || error "lfs df failed"
3589         cleanup || return $?
3590         #writeconf to remove all ost2 traces for subsequent tests
3591         writeconf_or_reformat
3592 }
3593 run_test 64 "check lfs df --lazy "
3594
3595 test_65() { # LU-2237
3596         # Currently, the test is only valid for ldiskfs backend
3597         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
3598                 skip "non-ldiskfs backend" && return
3599
3600         local devname=$(mdsdevname ${SINGLEMDS//mds/})
3601         local brpt=$(facet_mntpt brpt)
3602         local opts=""
3603
3604         if ! do_facet $SINGLEMDS "test -b $devname"; then
3605                 opts="-o loop"
3606         fi
3607
3608         stop_mds
3609         local obj=$(do_facet $SINGLEMDS \
3610                     "$DEBUGFS -c -R \\\"stat last_rcvd\\\" $devname" |
3611                     grep Inode)
3612         if [ -z "$obj" ]; then
3613                 # The MDT may be just re-formatted, mount the MDT for the
3614                 # first time to guarantee the "last_rcvd" file is there.
3615                 start_mds || error "fail to mount the MDS for the first time"
3616                 stop_mds
3617         fi
3618
3619         # remove the "last_rcvd" file
3620         do_facet $SINGLEMDS "mkdir -p $brpt"
3621         do_facet $SINGLEMDS \
3622                 "mount -t $(facet_fstype $SINGLEMDS) $opts $devname $brpt"
3623         do_facet $SINGLEMDS "rm -f ${brpt}/last_rcvd"
3624         do_facet $SINGLEMDS "umount $brpt"
3625
3626         # restart MDS, the "last_rcvd" file should be recreated.
3627         start_mds || error "fail to restart the MDS"
3628         stop_mds
3629         obj=$(do_facet $SINGLEMDS \
3630               "$DEBUGFS -c -R \\\"stat last_rcvd\\\" $devname" | grep Inode)
3631         [ -n "$obj" ] || error "fail to re-create the last_rcvd"
3632 }
3633 run_test 65 "re-create the lost last_rcvd file when server mount"
3634
3635 test_66() {
3636         [[ $(lustre_version_code mgs) -ge $(version_code 2.3.59) ]] ||
3637                 { skip "Need MGS version at least 2.3.59"; return 0; }
3638
3639         setup
3640         local OST1_NID=$(do_facet ost1 $LCTL list_nids | head -1)
3641         local MDS_NID=$(do_facet $SINGLEMDS $LCTL list_nids | head -1)
3642
3643         echo "replace_nids should fail if MDS, OSTs and clients are UP"
3644         do_facet mgs $LCTL replace_nids $FSNAME-OST0000 $OST1_NID &&
3645                 error "replace_nids fail"
3646
3647         umount_client $MOUNT || error "unmounting client failed"
3648         echo "replace_nids should fail if MDS and OSTs are UP"
3649         do_facet mgs $LCTL replace_nids $FSNAME-OST0000 $OST1_NID &&
3650                 error "replace_nids fail"
3651
3652         stop_ost
3653         echo "replace_nids should fail if MDS is UP"
3654         do_facet mgs $LCTL replace_nids $FSNAME-OST0000 $OST1_NID &&
3655                 error "replace_nids fail"
3656
3657         stop_mds || error "stopping mds failed"
3658
3659         if combined_mgs_mds; then
3660                 start_mds "-o nosvc" ||
3661                         error "starting mds with nosvc option failed"
3662         fi
3663
3664         echo "command should accept two parameters"
3665         do_facet mgs $LCTL replace_nids $FSNAME-OST0000 &&
3666                 error "command should accept two params"
3667
3668         echo "correct device name should be passed"
3669         do_facet mgs $LCTL replace_nids $FSNAME-WRONG0000 $OST1_NID &&
3670                 error "wrong devname"
3671
3672         echo "wrong nids list should not destroy the system"
3673         do_facet mgs $LCTL replace_nids $FSNAME-OST0000 "wrong nids list" &&
3674                 error "wrong parse"
3675
3676         echo "replace OST nid"
3677         do_facet mgs $LCTL replace_nids $FSNAME-OST0000 $OST1_NID ||
3678                 error "replace nids failed"
3679
3680         echo "command should accept two parameters"
3681         do_facet mgs $LCTL replace_nids $FSNAME-MDT0000 &&
3682                 error "command should accept two params"
3683
3684         echo "wrong nids list should not destroy the system"
3685         do_facet mgs $LCTL replace_nids $FSNAME-MDT0000 "wrong nids list" &&
3686                 error "wrong parse"
3687
3688         echo "replace MDS nid"
3689         do_facet mgs $LCTL replace_nids $FSNAME-MDT0000 $MDS_NID ||
3690                 error "replace nids failed"
3691
3692         if ! combined_mgs_mds ; then
3693                 stop_mgs
3694         else
3695                 stop_mds
3696         fi
3697
3698         setup_noconfig
3699         check_mount || error "error after nid replace"
3700         cleanup || error "cleanup failed"
3701         reformat
3702 }
3703 run_test 66 "replace nids"
3704
3705 test_70a() {
3706         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
3707         local MDTIDX=1
3708
3709         start_mdt 1 || error "MDT0 start fail"
3710
3711         start_ost || error "OST0 start fail"
3712
3713         start_mdt 2 || error "MDT1 start fail"
3714
3715         mount_client $MOUNT || error "mount client fails"
3716
3717         mkdir -p $DIR/$tdir || error "create dir fail"
3718
3719         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
3720                                         error "create remote dir fail"
3721
3722         rm -rf $DIR/$tdir || error "delete dir fail"
3723         cleanup || return $?
3724 }
3725 run_test 70a "start MDT0, then OST, then MDT1"
3726
3727 test_70b() {
3728         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
3729         local MDTIDX=1
3730
3731         start_ost || error "OST0 start fail"
3732
3733         start_mdt 1 || error "MDT0 start fail"
3734         start_mdt 2 || error "MDT1 start fail"
3735
3736         mount_client $MOUNT || error "mount client fails"
3737
3738         mkdir -p $DIR/$tdir || error "create dir fail"
3739
3740         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
3741                                         error "create remote dir fail"
3742
3743         rm -rf $DIR/$tdir || error "delete dir fail"
3744
3745         cleanup || return $?
3746 }
3747 run_test 70b "start OST, MDT1, MDT0"
3748
3749 test_70c() {
3750         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
3751         local MDTIDX=1
3752
3753         start_mdt 1 || error "MDT0 start fail"
3754         start_mdt 2 || error "MDT1 start fail"
3755         start_ost || error "OST0 start fail"
3756
3757         mount_client $MOUNT || error "mount client fails"
3758         stop_mdt 1 || error "MDT1 start fail"
3759
3760         local mdc_for_mdt1=$($LCTL dl | grep MDT0000-mdc | awk '{print $4}')
3761         echo "deactivate $mdc_for_mdt1"
3762         $LCTL --device $mdc_for_mdt1 deactivate || return 1
3763
3764         mkdir -p $DIR/$tdir && error "mkdir succeed"
3765
3766         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir &&
3767                                         error "create remote dir succeed"
3768
3769         cleanup || return $?
3770 }
3771 run_test 70c "stop MDT0, mkdir fail, create remote dir fail"
3772
3773 test_70d() {
3774         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
3775         local MDTIDX=1
3776
3777         start_mdt 1 || error "MDT0 start fail"
3778         start_mdt 2 || error "MDT1 start fail"
3779         start_ost || error "OST0 start fail"
3780
3781         mount_client $MOUNT || error "mount client fails"
3782
3783         stop_mdt 2 || error "MDT1 start fail"
3784
3785         local mdc_for_mdt2=$($LCTL dl | grep MDT0001-mdc |
3786                              awk '{print $4}')
3787         echo "deactivate $mdc_for_mdt2"
3788         $LCTL --device $mdc_for_mdt2 deactivate ||
3789                         error "set $mdc_for_mdt2 deactivate failed"
3790
3791         mkdir -p $DIR/$tdir || error "mkdir fail"
3792         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir &&
3793                         error "create remote dir succeed"
3794
3795         rm -rf $DIR/$tdir || error "delete dir fail"
3796
3797         cleanup || return $?
3798 }
3799 run_test 70d "stop MDT1, mkdir succeed, create remote dir fail"
3800
3801 test_71a() {
3802         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
3803         if combined_mgs_mds; then
3804                 skip "needs separate MGS/MDT" && return
3805         fi
3806         local MDTIDX=1
3807
3808         start_mdt 1 || error "MDT0 start fail"
3809         start_ost || error "OST0 start fail"
3810         start_mdt 2 || error "MDT1 start fail"
3811         start_ost2 || error "OST1 start fail"
3812
3813         mount_client $MOUNT || error "mount client fails"
3814
3815         mkdir -p $DIR/$tdir || error "mkdir fail"
3816         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
3817                         error "create remote dir succeed"
3818
3819         mcreate $DIR/$tdir/remote_dir/$tfile || error "create file failed"
3820         rm -rf $DIR/$tdir || error "delete dir fail"
3821
3822         umount_client $MOUNT
3823         stop_mdt 1 || error "MDT0 stop fail"
3824         stop_mdt 2 || error "MDT1 stop fail"
3825         stop_ost || error "OST0 stop fail"
3826         stop_ost2 || error "OST1 stop fail"
3827 }
3828 run_test 71a "start MDT0 OST0, MDT1, OST1"
3829
3830 test_71b() {
3831         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
3832         if combined_mgs_mds; then
3833                 skip "needs separate MGS/MDT" && return
3834         fi
3835         local MDTIDX=1
3836
3837         start_mdt 2 || error "MDT1 start fail"
3838         start_ost || error "OST0 start fail"
3839         start_mdt 1 || error "MDT0 start fail"
3840         start_ost2 || error "OST1 start fail"
3841
3842         mount_client $MOUNT || error "mount client fails"
3843
3844         mkdir -p $DIR/$tdir || error "mkdir fail"
3845         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
3846                         error "create remote dir succeed"
3847
3848         mcreate $DIR/$tdir/remote_dir/$tfile || error "create file failed"
3849         rm -rf $DIR/$tdir || error "delete dir fail"
3850
3851         umount_client $MOUNT
3852         stop_mdt 1 || error "MDT0 stop fail"
3853         stop_mdt 2 || error "MDT1 stop fail"
3854         stop_ost || error "OST0 stop fail"
3855         stop_ost2 || error "OST1 stop fail"
3856 }
3857 run_test 71b "start MDT1, OST0, MDT0, OST1"
3858
3859 test_71c() {
3860         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
3861         if combined_mgs_mds; then
3862                 skip "needs separate MGS/MDT" && return
3863         fi
3864         local MDTIDX=1
3865
3866         start_ost || error "OST0 start fail"
3867         start_ost2 || error "OST1 start fail"
3868         start_mdt 2 || error "MDT1 start fail"
3869         start_mdt 1 || error "MDT0 start fail"
3870
3871         mount_client $MOUNT || error "mount client fails"
3872
3873         mkdir -p $DIR/$tdir || error "mkdir fail"
3874         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
3875                         error "create remote dir succeed"
3876
3877         mcreate $DIR/$tdir/remote_dir/$tfile || error "create file failed"
3878         rm -rf $DIR/$tdir || error "delete dir fail"
3879
3880         umount_client $MOUNT
3881         stop_mdt 1 || error "MDT0 stop fail"
3882         stop_mdt 2 || error "MDT1 stop fail"
3883         stop_ost || error "OST0 stop fail"
3884         stop_ost2 || error "OST1 stop fail"
3885
3886 }
3887 run_test 71c "start OST0, OST1, MDT1, MDT0"
3888
3889 test_71d() {
3890         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
3891         if combined_mgs_mds; then
3892                 skip "needs separate MGS/MDT" && return
3893         fi
3894         local MDTIDX=1
3895
3896         start_ost || error "OST0 start fail"
3897         start_mdt 2 || error "MDT0 start fail"
3898         start_mdt 1 || error "MDT0 start fail"
3899         start_ost2 || error "OST1 start fail"
3900
3901         mount_client $MOUNT || error "mount client fails"
3902
3903         mkdir -p $DIR/$tdir || error "mkdir fail"
3904         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
3905                         error "create remote dir succeed"
3906
3907         mcreate $DIR/$tdir/remote_dir/$tfile || error "create file failed"
3908         rm -rf $DIR/$tdir || error "delete dir fail"
3909
3910         umount_client $MOUNT
3911         stop_mdt 1 || error "MDT0 stop fail"
3912         stop_mdt 2 || error "MDT1 stop fail"
3913         stop_ost || error "OST0 stop fail"
3914         stop_ost2 || error "OST1 stop fail"
3915
3916 }
3917 run_test 71d "start OST0, MDT1, MDT0, OST1"
3918
3919 test_71e() {
3920         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
3921         if combined_mgs_mds; then
3922                 skip "needs separate MGS/MDT" && return
3923         fi
3924         local MDTIDX=1
3925
3926         start_ost || error "OST0 start fail"
3927         start_mdt 2 || error "MDT1 start fail"
3928         start_ost2 || error "OST1 start fail"
3929         start_mdt 1 || error "MDT0 start fail"
3930
3931         mount_client $MOUNT || error "mount client fails"
3932
3933         mkdir -p $DIR/$tdir || error "mkdir fail"
3934         $LFS mkdir -i $MDTIDX $DIR/$tdir/remote_dir ||
3935                         error "create remote dir succeed"
3936
3937         mcreate $DIR/$tdir/remote_dir/$tfile || error "create file failed"
3938         rm -rf $DIR/$tdir || error "delete dir fail"
3939
3940         umount_client $MOUNT
3941         stop_mdt 1 || error "MDT0 stop fail"
3942         stop_mdt 2 || error "MDT1 stop fail"
3943         stop_ost || error "OST0 stop fail"
3944         stop_ost2 || error "OST1 stop fail"
3945
3946 }
3947 run_test 71e "start OST0, MDT1, OST1, MDT0"
3948
3949 test_72() { #LU-2634
3950         local mdsdev=$(mdsdevname 1)
3951         local ostdev=$(ostdevname 1)
3952         local cmd="$E2FSCK -fnvd $mdsdev"
3953         local fn=3
3954
3955         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
3956                 skip "ldiskfs only test" && return
3957
3958         #tune MDT with "-O extents"
3959         add $SINGLEMDS \
3960                 $(mkfs_opts $SINGLEMDS ${mdsdev}) --reformat $mdsdev ||
3961                         error "add $SINGLEMDS failed"
3962         $TUNE2FS -O extents $mdsdev
3963         add ost1 $(mkfs_opts ost1 $ostdev) --reformat $ostdev ||
3964                 error "add $ostdev failed"
3965         start_mgsmds || error "start mds failed"
3966         start_ost || error "start ost failed"
3967         mount_client $MOUNT || error "mount client failed"
3968
3969         #create some short symlinks
3970         mkdir -p $DIR/$tdir
3971         createmany -o $DIR/$tdir/$tfile-%d $fn
3972         echo "create $fn short symlinks"
3973         for i in $(seq -w 1 $fn); do
3974                 ln -s $DIR/$tdir/$tfile-$i $MOUNT/$tfile-$i
3975         done
3976         ls -al $MOUNT
3977
3978         #umount
3979         umount_client $MOUNT || error "umount client failed"
3980         stop_mds || error "stop mds failed"
3981         stop_ost || error "stop ost failed"
3982
3983         #run e2fsck
3984         run_e2fsck $(facet_active_host $SINGLEMDS) $mdsdev "-n"
3985 }
3986 run_test 72 "test fast symlink with extents flag enabled"
3987
3988 if ! combined_mgs_mds ; then
3989         stop mgs
3990 fi
3991
3992 cleanup_gss
3993
3994 complete $SECONDS
3995 exit_status