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