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