Whamcloud - gitweb
Branch HEAD
[fs/lustre-release.git] / lustre / tests / conf-sanity.sh
1 #!/bin/bash
2 # requirement:
3 #       add uml1 uml2 uml3 in your /etc/hosts
4
5 # FIXME - there is no reason to use all of these different
6 #   return codes, espcially when most of them are mapped to something
7 #   else anyway.  The combination of test number and return code
8 #   figure out what failed.
9
10 set -e
11
12 ONLY=${ONLY:-"$*"}
13
14 # bug number for skipped test:
15 ALWAYS_EXCEPT=" $CONF_SANITY_EXCEPT"
16 # UPDATE THE COMMENT ABOVE WITH BUG NUMBERS WHEN CHANGING ALWAYS_EXCEPT!
17
18 SRCDIR=`dirname $0`
19 PATH=$PWD/$SRCDIR:$SRCDIR:$SRCDIR/../utils:$PATH
20
21 PTLDEBUG=${PTLDEBUG:--1}
22 SAVE_PWD=$PWD
23 LUSTRE=${LUSTRE:-`dirname $0`/..}
24 RLUSTRE=${RLUSTRE:-$LUSTRE}
25
26 . $LUSTRE/tests/test-framework.sh
27 init_test_env $@
28 # STORED_MDSSIZE is used in test_18
29 if [ -n "$MDSSIZE" ]; then
30     STORED_MDSSIZE=$MDSSIZE
31 fi
32 # use small MDS + OST size to speed formatting time
33 MDSSIZE=40000
34 OSTSIZE=40000
35 . ${CONFIG:=$LUSTRE/tests/cfg/$NAME.sh}
36
37 remote_mds_nodsh && skip "remote MDS with nodsh" && exit 0
38 remote_ost_nodsh && skip "remote OST with nodsh" && exit 0
39
40 #
41 [ "$SLOW" = "no" ] && EXCEPT_SLOW="0 1 2 3 6 7 15 18 24b 25 30 31 32 33 34a 45"
42
43 assert_DIR
44
45 reformat() {
46         formatall
47 }
48
49 writeconf() {
50         local facet=$SINGLEMDS
51         local dev=${facet}_dev
52         shift
53         stop ${facet} -f
54         rm -f ${facet}active
55         # who knows if/where $TUNEFS is installed?  Better reformat if it fails...
56         do_facet ${facet} "$TUNEFS --writeconf ${!dev}" || echo "tunefs failed, reformatting instead" && reformat
57
58         gen_config
59 }
60
61 gen_config() {
62         # The MGS must be started before the OSTs for a new fs, so start
63         # and stop to generate the startup logs.
64         start_mds
65         start_ost
66         wait_osc_import_state mds ost FULL
67         stop_ost
68         stop_mds
69 }
70
71 reformat_and_config() {
72         reformat
73         gen_config
74 }
75
76 start_mds() {
77         local facet=$SINGLEMDS
78         # we can not use MDSDEV1 here because SINGLEMDS could be set not to mds1 only
79         local num=$(echo $facet | tr -d "mds")
80         local dev=$(mdsdevname $num)
81         echo "start mds service on `facet_active_host $facet`"
82         start $facet ${dev} $MDS_MOUNT_OPTS || return 94
83 }
84
85 stop_mds() {
86         echo "stop mds service on `facet_active_host $SINGLEMDS`"
87         # These tests all use non-failover stop
88         stop $SINGLEMDS -f  || return 97
89 }
90
91 start_ost() {
92         echo "start ost1 service on `facet_active_host ost1`"
93         start ost1 `ostdevname 1` $OST_MOUNT_OPTS || return 95
94 }
95
96 stop_ost() {
97         echo "stop ost1 service on `facet_active_host ost1`"
98         # These tests all use non-failover stop
99         stop ost1 -f  || return 98
100 }
101
102 start_ost2() {
103         echo "start ost2 service on `facet_active_host ost2`"
104         start ost2 `ostdevname 2` $OST_MOUNT_OPTS || return 92
105 }
106
107 stop_ost2() {
108         echo "stop ost2 service on `facet_active_host ost2`"
109         # These tests all use non-failover stop
110         stop ost2 -f  || return 93
111 }
112
113 mount_client() {
114         local MOUNTPATH=$1
115         echo "mount $FSNAME on ${MOUNTPATH}....."
116         zconf_mount `hostname` $MOUNTPATH  || return 96
117 }
118
119 remount_client() {
120         local SAVEMOUNTOPT=$MOUNTOPT
121         MOUNTOPT="remount,$1"
122         local MOUNTPATH=$2
123         echo "remount '$1' lustre on ${MOUNTPATH}....."
124         zconf_mount `hostname`  $MOUNTPATH  || return 96
125         MOUNTOPT=$SAVEMOUNTOPT
126 }
127
128 umount_client() {
129         local MOUNTPATH=$1
130         echo "umount lustre on ${MOUNTPATH}....."
131         zconf_umount `hostname` $MOUNTPATH || return 97
132 }
133
134 manual_umount_client(){
135         local rc
136         local FORCE=$1
137         echo "manual umount lustre on ${MOUNT}...."
138         do_facet client "umount -d ${FORCE} $MOUNT"
139         rc=$?
140         return $rc
141 }
142
143 setup() {
144         start_ost
145         start_mds
146         mount_client $MOUNT
147 }
148
149 setup_noconfig() {
150         start_mds
151         start_ost
152         mount_client $MOUNT
153 }
154
155 cleanup_nocli() {
156         stop_mds || return 201
157         stop_ost || return 202
158         unload_modules || return 203
159 }
160
161 cleanup() {
162         umount_client $MOUNT || return 200
163         cleanup_nocli || return $?
164 }
165
166 check_mount() {
167         do_facet client "cp /etc/passwd $DIR/a" || return 71
168         do_facet client "rm $DIR/a" || return 72
169         # make sure lustre is actually mounted (touch will block,
170         # but grep won't, so do it after)
171         do_facet client "grep $MOUNT' ' /proc/mounts > /dev/null" || return 73
172         echo "setup single mount lustre success"
173 }
174
175 check_mount2() {
176         do_facet client "touch $DIR/a" || return 71
177         do_facet client "rm $DIR/a" || return 72
178         do_facet client "touch $DIR2/a" || return 73
179         do_facet client "rm $DIR2/a" || return 74
180         echo "setup double mount lustre success"
181 }
182
183 build_test_filter
184
185 if [ "$ONLY" == "setup" ]; then
186         setup
187         exit
188 fi
189
190 if [ "$ONLY" == "cleanup" ]; then
191         cleanup
192         exit
193 fi
194
195 init_gss
196
197 #create single point mountpoint
198
199 reformat_and_config
200
201 test_0() {
202         setup
203         check_mount || return 41
204         cleanup || return $?
205 }
206 run_test 0 "single mount setup"
207
208 test_1() {
209         start_ost
210         echo "start ost second time..."
211         setup
212         check_mount || return 42
213         cleanup || return $?
214 }
215 run_test 1 "start up ost twice (should return errors)"
216
217 test_2() {
218         start_ost
219         start_mds
220         echo "start mds second time.."
221         start_mds
222         mount_client $MOUNT
223         check_mount || return 43
224         cleanup || return $?
225 }
226 run_test 2 "start up mds twice (should return err)"
227
228 test_3() {
229         setup
230         #mount.lustre returns an error if already in mtab
231         mount_client $MOUNT && return $?
232         check_mount || return 44
233         cleanup || return $?
234 }
235 run_test 3 "mount client twice (should return err)"
236
237 test_4() {
238         setup
239         touch $DIR/$tfile || return 85
240         stop_ost -f
241         cleanup
242         eno=$?
243         # ok for ost to fail shutdown
244         if [ 202 -ne $eno ]; then
245                 return $eno;
246         fi
247         return 0
248 }
249 run_test 4 "force cleanup ost, then cleanup"
250
251 test_5a() {     # was test_5
252         setup
253         touch $DIR/$tfile || return 1
254         fuser -m -v $MOUNT && echo "$MOUNT is in use by user space process."
255
256         stop_mds -f || return 2
257
258         # cleanup may return an error from the failed
259         # disconnects; for now I'll consider this successful
260         # if all the modules have unloaded.
261         umount -d $MOUNT &
262         UMOUNT_PID=$!
263         sleep 6
264         echo "killing umount"
265         kill -TERM $UMOUNT_PID
266         echo "waiting for umount to finish"
267         wait $UMOUNT_PID
268         if grep " $MOUNT " /proc/mounts; then
269                 echo "test 5: /proc/mounts after failed umount"
270                 umount $MOUNT &
271                 UMOUNT_PID=$!
272                 sleep 2
273                 echo "killing umount"
274                 kill -TERM $UMOUNT_PID
275                 echo "waiting for umount to finish"
276                 wait $UMOUNT_PID
277                 grep " $MOUNT " /proc/mounts && echo "test 5: /proc/mounts after second umount" && return 11
278         fi
279
280         manual_umount_client
281         # stop_mds is a no-op here, and should not fail
282         cleanup_nocli || return $?
283         # df may have lingering entry
284         manual_umount_client
285         # mtab may have lingering entry
286         local WAIT=0
287         local MAX_WAIT=20
288         local sleep=1
289         while [ "$WAIT" -ne "$MAX_WAIT" ]; do
290                 sleep $sleep
291                 grep -q $MOUNT" " /etc/mtab || break
292                 echo "Waiting /etc/mtab updated ... "
293                 WAIT=$(( WAIT + sleep))
294         done
295         [ "$WAIT" -eq "$MAX_WAIT" ] && error "/etc/mtab is not updated in $WAIT secs"
296         echo "/etc/mtab updated in $WAIT secs"
297 }
298 run_test 5a "force cleanup mds, then cleanup"
299
300 test_5b() {
301         start_ost
302         [ -d $MOUNT ] || mkdir -p $MOUNT
303         grep " $MOUNT " /etc/mtab && echo "test 5b: mtab before mount" && return 10
304         mount_client $MOUNT && return 1
305         grep " $MOUNT " /etc/mtab && echo "test 5b: mtab after failed mount" && return 11
306         umount_client $MOUNT
307         # stop_mds is a no-op here, and should not fail
308         cleanup_nocli || return $?
309         return 0
310 }
311 run_test 5b "mds down, cleanup after failed mount (bug 2712) (should return errs)"
312
313 test_5c() {
314         start_ost
315         start_mds
316         [ -d $MOUNT ] || mkdir -p $MOUNT
317         grep " $MOUNT " /etc/mtab && echo "test 5c: mtab before mount" && return 10
318         local oldfs="${FSNAME}"
319         FSNAME="wrong.${FSNAME}"
320         mount_client $MOUNT || :
321         FSNAME=${oldfs}
322         grep " $MOUNT " /etc/mtab && echo "test 5c: mtab after failed mount" && return 11
323         umount_client $MOUNT
324         cleanup_nocli  || return $?
325 }
326 run_test 5c "cleanup after failed mount (bug 2712) (should return errs)"
327
328 test_5d() {
329         start_ost
330         start_mds
331         stop_ost -f
332         grep " $MOUNT " /etc/mtab && echo "test 5d: mtab before mount" && return 10
333         mount_client $MOUNT || return 1
334         cleanup  || return $?
335         grep " $MOUNT " /etc/mtab && echo "test 5d: mtab after unmount" && return 11
336         return 0
337 }
338 run_test 5d "mount with ost down"
339
340 test_5e() {
341         start_ost
342         start_mds
343
344 #define OBD_FAIL_PTLRPC_DELAY_SEND       0x506
345         do_facet client "lctl set_param fail_loc=0x80000506"
346         grep " $MOUNT " /etc/mtab && echo "test 5e: mtab before mount" && return 10
347         mount_client $MOUNT || echo "mount failed (not fatal)"
348         cleanup  || return $?
349         grep " $MOUNT " /etc/mtab && echo "test 5e: mtab after unmount" && return 11
350         return 0
351 }
352 run_test 5e "delayed connect, don't crash (bug 10268)"
353
354 test_6() {
355         setup
356         manual_umount_client
357         mount_client ${MOUNT} || return 87
358         touch $DIR/a || return 86
359         cleanup  || return $?
360 }
361 run_test 6 "manual umount, then mount again"
362
363 test_7() {
364         setup
365         manual_umount_client
366         cleanup_nocli || return $?
367 }
368 run_test 7 "manual umount, then cleanup"
369
370 test_8() {
371         setup
372         mount_client $MOUNT2
373         check_mount2 || return 45
374         umount_client $MOUNT2
375         cleanup  || return $?
376 }
377 run_test 8 "double mount setup"
378
379 test_9() {
380         start_ost
381
382         do_facet ost1 lctl set_param debug=\'inode trace\' || return 1
383         do_facet ost1 lctl set_param subsystem_debug=\'mds ost\' || return 1
384
385         CHECK_PTLDEBUG="`do_facet ost1 lctl get_param -n debug`"
386         if [ "$CHECK_PTLDEBUG" ] && { \
387            [ "$CHECK_PTLDEBUG" = "trace inode warning error emerg console" ] ||
388            [ "$CHECK_PTLDEBUG" = "trace inode" ]; }; then
389            echo "lnet.debug success"
390         else
391            echo "lnet.debug: want 'trace inode', have '$CHECK_PTLDEBUG'"
392            return 1
393         fi
394         CHECK_SUBSYS="`do_facet ost1 lctl get_param -n subsystem_debug`"
395         if [ "$CHECK_SUBSYS" ] && [ "$CHECK_SUBSYS" = "mds ost" ]; then
396            echo "lnet.subsystem_debug success"
397         else
398            echo "lnet.subsystem_debug: want 'mds ost', have '$CHECK_SUBSYS'"
399            return 1
400         fi
401         stop_ost || return $?
402 }
403
404 run_test 9 "test ptldebug and subsystem for mkfs"
405
406 # LOGS/PENDING do not exist anymore since CMD3
407 test_16() {
408         local TMPMTPT="${TMP}/conf16"
409         local dev=${SINGLEMDS}_dev
410         local MDSDEV=${!dev}
411         if [ ! -e "$MDSDEV" ]; then
412             log "no $MDSDEV existing, so mount Lustre to create one"
413             setup
414             check_mount || return 41
415             cleanup || return $?
416         fi
417
418         [ -f "$MDSDEV" ] && LOOPOPT="-o loop"
419
420         log "change the mode of $MDSDEV/OBJECTS to 555"
421         do_facet $SINGLEMDS "mkdir -p $TMPMTPT &&
422                       mount $LOOPOPT -t $FSTYPE $MDSDEV $TMPMTPT &&
423                       chmod 555 $TMPMTPT/OBJECTS &&
424                       umount $TMPMTPT" || return $?
425
426         log "mount Lustre to change the mode of OBJECTS, then umount Lustre"
427         setup
428         check_mount || return 41
429         cleanup || return $?
430
431         log "read the mode of OBJECTS and check if they has been changed properly"
432         EXPECTEDOBJECTSMODE=`do_facet $SINGLEMDS "$DEBUGFS -R 'stat OBJECTS' $MDSDEV 2> /dev/null" | grep 'Mode: ' | sed -e "s/.*Mode: *//" -e "s/ *Flags:.*//"`
433
434         if [ "$EXPECTEDOBJECTSMODE" = "0777" ]; then
435                 log "Success:Lustre change the mode of OBJECTS correctly"
436         else
437                 error "Lustre does not change mode of OBJECTS properly"
438         fi
439 }
440 run_test 16 "verify that lustre will correct the mode of OBJECTS"
441
442 test_17() {
443         local dev=${SINGLEMDS}_dev
444         local MDSDEV=${!dev}
445
446         if [ ! -e "$MDSDEV" ]; then
447             echo "no $MDSDEV existing, so mount Lustre to create one"
448             setup
449             check_mount || return 41
450             cleanup || return $?
451         fi
452
453         echo "Remove mds config log"
454         do_facet $SINGLEMDS "$DEBUGFS -w -R 'unlink CONFIGS/$FSNAME-MDT0000' $MDSDEV || return \$?" || return $?
455
456         start_ost
457         start_mds && return 42
458         reformat_and_config
459 }
460 run_test 17 "Verify failed mds_postsetup won't fail assertion (2936) (should return errs)"
461
462 test_18() {
463         [ "$FSTYPE" != "ldiskfs" ] && skip "not needed for FSTYPE=$FSTYPE" && return
464
465         local dev=${SINGLEMDS}_dev
466         local MDSDEV=${!dev}
467
468         local MIN=2000000
469
470         local OK=
471         # check if current MDSSIZE is large enough
472         [ $MDSSIZE -ge $MIN ] && OK=1 && myMDSSIZE=$MDSSIZE && \
473                 log "use MDSSIZE=$MDSSIZE"
474
475         # check if the global config has a large enough MDSSIZE
476         [ -z "$OK" -a ! -z "$STORED_MDSSIZE" ] && [ $STORED_MDSSIZE -ge $MIN ] && \
477                 OK=1 && myMDSSIZE=$STORED_MDSSIZE && \
478                 log "use STORED_MDSSIZE=$STORED_MDSSIZE"
479
480         # check if the block device is large enough
481         [ -z "$OK" -a -b $MDSDEV ] && \
482                 [ "$(dd if=$MDSDEV of=/dev/null bs=1k count=1 skip=$MIN 2>&1 |
483                      awk '($3 == "in") { print $1 }')" = "1+0" ] && OK=1 && \
484                 myMDSSIZE=$MIN && log "use device $MDSDEV with MIN=$MIN"
485
486         # check if a loopback device has enough space for fs metadata (5%)
487         [ -z "$OK" ] && [ -f $MDSDEV -o ! -e $MDSDEV ] &&
488                 SPACE=$(df -P $(dirname $MDSDEV) |
489                         awk '($1 != "Filesystem") {print $4}') &&
490                 [ $SPACE -gt $((MIN / 20)) ] && OK=1 && myMDSSIZE=$MIN && \
491                         log "use file $MDSDEV with MIN=$MIN"
492
493         [ -z "$OK" ] && skip_env "$MDSDEV too small for ${MIN}kB MDS" && return
494
495
496         echo "mount mds with large journal..."
497         local OLD_MDS_MKFS_OPTS=$MDS_MKFS_OPTS
498
499         MDS_MKFS_OPTS="--mgs --mdt --fsname=$FSNAME --device-size=$myMDSSIZE --param sys.timeout=$TIMEOUT $MDSOPT"
500
501         reformat_and_config
502         echo "mount lustre system..."
503         setup
504         check_mount || return 41
505
506         echo "check journal size..."
507         local FOUNDSIZE=`do_facet mds "$DEBUGFS -c -R 'stat <8>' $MDSDEV" | awk '/Size: / { print $NF; exit;}'`
508         if [ $FOUNDSIZE -gt $((32 * 1024 * 1024)) ]; then
509                 log "Success: mkfs creates large journals. Size: $((FOUNDSIZE >> 20))M"
510         else
511                 error "expected journal size > 32M, found $((FOUNDSIZE >> 20))M"
512         fi
513
514         cleanup || return $?
515
516         MDS_MKFS_OPTS=$OLD_MDS_MKFS_OPTS
517         reformat_and_config
518 }
519 run_test 18 "check mkfs creates large journals"
520
521 test_19a() {
522         start_mds || return 1
523         stop_mds -f || return 2
524 }
525 run_test 19a "start/stop MDS without OSTs"
526
527 test_19b() {
528         start_ost || return 1
529         stop_ost -f || return 2
530 }
531 run_test 19b "start/stop OSTs without MDS"
532
533 test_20() {
534         # first format the ost/mdt
535         start_ost
536         start_mds
537         mount_client $MOUNT
538         check_mount || return 43
539         rm -f $DIR/$tfile
540         remount_client ro $MOUNT || return 44
541         touch $DIR/$tfile && echo "$DIR/$tfile created incorrectly" && return 45
542         [ -e $DIR/$tfile ] && echo "$DIR/$tfile exists incorrectly" && return 46
543         remount_client rw $MOUNT || return 47
544         touch $DIR/$tfile
545         [ ! -f $DIR/$tfile ] && echo "$DIR/$tfile missing" && return 48
546         MCNT=`grep -c $MOUNT /etc/mtab`
547         [ "$MCNT" -ne 1 ] && echo "$MOUNT in /etc/mtab $MCNT times" && return 49
548         umount_client $MOUNT
549         stop_mds
550         stop_ost
551 }
552 run_test 20 "remount ro,rw mounts work and doesn't break /etc/mtab"
553
554 test_21a() {
555         start_mds
556         start_ost
557         wait_osc_import_state mds ost FULL
558         stop_ost
559         stop_mds
560 }
561 run_test 21a "start mds before ost, stop ost first"
562
563 test_21b() {
564         start_ost
565         start_mds
566         wait_osc_import_state mds ost FULL
567         stop_mds
568         stop_ost
569 }
570 run_test 21b "start ost before mds, stop mds first"
571
572 test_21c() {
573         start_ost
574         start_mds
575         start_ost2
576         wait_osc_import_state mds ost2 FULL
577         stop_ost
578         stop_ost2
579         stop_mds
580         #writeconf to remove all ost2 traces for subsequent tests
581         writeconf
582 }
583 run_test 21c "start mds between two osts, stop mds last"
584
585 test_22() {
586         start_mds
587
588         echo Client mount with ost in logs, but none running
589         start_ost
590         # wait until mds connected to ost and open client connection
591         wait_osc_import_state mds ost FULL
592         stop_ost
593         mount_client $MOUNT
594         # check_mount will block trying to contact ost
595         umount_client $MOUNT
596         pass
597
598         echo Client mount with a running ost
599         start_ost
600         if $GSS; then
601                 # if gss enabled, wait full time to let connection from
602                 # mds to ost be established, due to the mismatch between
603                 # initial connect timeout and gss context negotiation timeout.
604                 # This perhaps could be remove after AT landed.
605                 echo "sleep $((TIMEOUT + TIMEOUT + TIMEOUT))s"
606                 sleep $((TIMEOUT + TIMEOUT + TIMEOUT))
607         fi
608         mount_client $MOUNT
609         check_mount || return 41
610         pass
611
612         cleanup
613 }
614 run_test 22 "start a client before osts (should return errs)"
615
616 test_23a() {    # was test_23
617         setup
618         # fail mds
619         stop $SINGLEMDS
620         # force down client so that recovering mds waits for reconnect
621         local running=$(grep -c $MOUNT /proc/mounts) || true
622         if [ $running -ne 0 ]; then
623                 echo "Stopping client $MOUNT (opts: -f)"
624                 umount -f $MOUNT
625         fi
626
627         # enter recovery on mds
628         start_mds
629         # try to start a new client
630         mount_client $MOUNT &
631         sleep 5
632         MOUNT_PID=$(ps -ef | grep "t lustre" | grep -v grep | awk '{print $2}')
633         MOUNT_LUSTRE_PID=`ps -ef | grep mount.lustre | grep -v grep | awk '{print $2}'`
634         echo mount pid is ${MOUNT_PID}, mount.lustre pid is ${MOUNT_LUSTRE_PID}
635         ps --ppid $MOUNT_PID
636         ps --ppid $MOUNT_LUSTRE_PID
637         # FIXME why o why can't I kill these? Manual "ctrl-c" works...
638         kill -TERM $MOUNT_LUSTRE_PID
639         echo "waiting for mount to finish"
640         ps -ef | grep mount
641         # we can not wait $MOUNT_PID because it is not a child of this shell
642         local PID1
643         local PID2
644         local WAIT=0
645         local MAX_WAIT=20
646         local sleep=1
647         while [ "$WAIT" -lt "$MAX_WAIT" ]; do
648                 sleep $sleep
649                 PID1=$(ps -ef | awk '{print $2}' | grep -w $MOUNT_PID)
650                 PID2=$(ps -ef | awk '{print $2}' | grep -w $MOUNT_LUSTRE_PID)
651                 echo PID1=$PID1
652                 echo PID2=$PID2
653                 [ -z "$PID1" -a -z "$PID2" ] && break
654                 echo "waiting for mount to finish ... "
655                 WAIT=$(( WAIT + sleep))
656         done
657         [ "$WAIT" -eq "$MAX_WAIT" ] && error "MOUNT_PID $MOUNT_PID and \
658                 MOUNT__LUSTRE_PID $MOUNT__LUSTRE_PID still not killed in $WAIT secs"
659         ps -ef | grep mount
660         stop_mds || error
661         stop_ost || error
662 }
663 run_test 23a "interrupt client during recovery mount delay"
664
665 umount_client $MOUNT
666 cleanup_nocli
667
668 test_23b() {    # was test_23
669         start_ost
670         start_mds
671         # Simulate -EINTR during mount OBD_FAIL_LDLM_CLOSE_THREAD
672         lctl set_param fail_loc=0x80000313
673         mount_client $MOUNT
674         cleanup
675 }
676 run_test 23b "Simulate -EINTR during mount"
677
678 fs2mds_HOST=$mds_HOST
679 fs2ost_HOST=$ost_HOST
680
681 cleanup_24a() {
682         trap 0
683         echo "umount $MOUNT2 ..."
684         umount $MOUNT2 || true
685         echo "stopping fs2mds ..."
686         stop fs2mds -f || true
687         echo "stopping fs2ost ..."
688         stop fs2ost -f || true
689 }
690
691 test_24a() {
692         #set up fs1
693         gen_config
694         #set up fs2
695         [ -n "$ost1_HOST" ] && fs2ost_HOST=$ost1_HOST
696         if [ -z "$fs2ost_DEV" -o -z "$fs2mds_DEV" ]; then
697                 do_facet $SINGLEMDS [ -b "$MDSDEV" ] && \
698                 skip_env "mixed loopback and real device not working" && return
699         fi
700
701         local fs2mdsdev=${fs2mds_DEV:-${MDSDEV}_2}
702         local fs2ostdev=${fs2ost_DEV:-$(ostdevname 1)_2}
703
704         # test 8-char fsname as well
705         local FSNAME2=test1234
706         add fs2mds $MDS_MKFS_OPTS --fsname=${FSNAME2} --nomgs --mgsnode=$MGSNID --reformat $fs2mdsdev || exit 10
707
708         add fs2ost $OST_MKFS_OPTS --fsname=${FSNAME2} --reformat $fs2ostdev || exit 10
709
710         setup
711         start fs2mds $fs2mdsdev $MDS_MOUNT_OPTS && trap cleanup_24a EXIT INT
712         start fs2ost $fs2ostdev $OST_MOUNT_OPTS
713         mkdir -p $MOUNT2
714         mount -t lustre $MGSNID:/${FSNAME2} $MOUNT2 || return 1
715         # 1 still works
716         check_mount || return 2
717         # files written on 1 should not show up on 2
718         cp /etc/passwd $DIR/$tfile
719         sleep 10
720         [ -e $MOUNT2/$tfile ] && error "File bleed" && return 7
721         # 2 should work
722         sleep 5
723         cp /etc/passwd $MOUNT2/b || return 3
724         rm $MOUNT2/b || return 4
725         # 2 is actually mounted
726         grep $MOUNT2' ' /proc/mounts > /dev/null || return 5
727         # failover
728         facet_failover fs2mds
729         facet_failover fs2ost
730         df
731         umount_client $MOUNT
732         # the MDS must remain up until last MDT
733         stop_mds
734         MDS=$(do_facet $SINGLEMDS "lctl get_param -n devices" | awk '($3 ~ "mdt" && $4 ~ "MDT") { print $4 }' | head -1)
735         [ -z "$MDS" ] && error "No MDT" && return 8
736         cleanup_24a
737         cleanup_nocli || return 6
738 }
739 run_test 24a "Multiple MDTs on a single node"
740
741 test_24b() {
742         if [ -z "$fs2mds_DEV" ]; then
743                 do_facet $SINGLEMDS [ -b "$MDSDEV" ] && \
744                 skip_env "mixed loopback and real device not working" && return
745         fi
746
747         local fs2mdsdev=${fs2mds_DEV:-${MDSDEV}_2}
748
749         add fs2mds $MDS_MKFS_OPTS --fsname=${FSNAME}2 --mgs --reformat $fs2mdsdev || exit 10
750         setup
751         start fs2mds $fs2mdsdev $MDS_MOUNT_OPTS && return 2
752         cleanup || return 6
753 }
754 run_test 24b "Multiple MGSs on a single node (should return err)"
755
756 test_25() {
757         setup
758         check_mount || return 2
759         local MODULES=$($LCTL modules | awk '{ print $2 }')
760         rmmod $MODULES 2>/dev/null || true
761         cleanup || return 6
762 }
763 run_test 25 "Verify modules are referenced"
764
765 test_26() {
766     load_modules
767     # we need modules before mount for sysctl, so make sure...
768     do_facet $SINGLEMDS "lsmod | grep -q lustre || modprobe lustre"
769 #define OBD_FAIL_MDS_FS_SETUP            0x135
770     do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000135"
771     start_mds && echo MDS started && return 1
772     lctl get_param -n devices
773     DEVS=$(lctl get_param -n devices | wc -l)
774     [ $DEVS -gt 0 ] && return 2
775     unload_modules || return 203
776 }
777 run_test 26 "MDT startup failure cleans LOV (should return errs)"
778
779 set_and_check() {
780         local myfacet=$1
781         local TEST=$2
782         local PARAM=$3
783         local ORIG=$(do_facet $myfacet "$TEST")
784         if [ $# -gt 3 ]; then
785             local FINAL=$4
786         else
787             local -i FINAL
788             FINAL=$(($ORIG + 5))
789         fi
790         echo "Setting $PARAM from $ORIG to $FINAL"
791         do_facet $SINGLEMDS "$LCTL conf_param $PARAM='$FINAL'" || error conf_param failed
792
793         wait_update $(facet_host $myfacet) "$TEST" "$FINAL" || error check failed!
794 }
795
796 test_27a() {
797         start_ost || return 1
798         start_mds || return 2
799         echo "Requeue thread should have started: "
800         ps -e | grep ll_cfg_requeue
801         set_and_check ost1 "lctl get_param -n obdfilter.$FSNAME-OST0000.client_cache_seconds" "$FSNAME-OST0000.ost.client_cache_seconds" || return 3
802         cleanup_nocli
803 }
804 run_test 27a "Reacquire MGS lock if OST started first"
805
806 test_27b() {
807         # FIXME. ~grev
808         setup
809         local device=$(do_facet $SINGLEMDS "lctl get_param -n devices" | awk '($3 ~ "mdt" && $4 ~ "MDT") { print $4 }')
810
811         facet_failover $SINGLEMDS
812         set_and_check $SINGLEMDS "lctl get_param -n mdt.$device.identity_acquire_expire" "$device.mdt.identity_acquire_expire" || return 3
813         set_and_check client "lctl get_param -n mdc.$device-mdc-*.max_rpcs_in_flight" "$device.mdc.max_rpcs_in_flight" || return 4
814         check_mount
815         cleanup
816 }
817 run_test 27b "Reacquire MGS lock after failover"
818
819 test_28() {
820         setup
821         TEST="lctl get_param -n llite.$FSNAME-*.max_read_ahead_whole_mb"
822         PARAM="$FSNAME.llite.max_read_ahead_whole_mb"
823         ORIG=$($TEST)
824         FINAL=$(($ORIG + 1))
825         set_and_check client "$TEST" "$PARAM" $FINAL || return 3
826         FINAL=$(($FINAL + 1))
827         set_and_check client "$TEST" "$PARAM" $FINAL || return 4
828         umount_client $MOUNT || return 200
829         mount_client $MOUNT
830         RESULT=$($TEST)
831         if [ $RESULT -ne $FINAL ]; then
832             echo "New config not seen: wanted $FINAL got $RESULT"
833             return 4
834         else
835             echo "New config success: got $RESULT"
836         fi
837         set_and_check client "$TEST" "$PARAM" $ORIG || return 5
838         cleanup
839 }
840 run_test 28 "permanent parameter setting"
841
842 test_29() {
843         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2, skipping" && return
844         setup > /dev/null 2>&1
845         start_ost2
846         sleep 10
847
848         local PARAM="$FSNAME-OST0001.osc.active"
849         local PROC_ACT="osc.$FSNAME-OST0001-osc-[^M]*.active"
850         local PROC_UUID="osc.$FSNAME-OST0001-osc-[^M]*.ost_server_uuid"
851
852         ACTV=$(lctl get_param -n $PROC_ACT)
853         DEAC=$((1 - $ACTV))
854         set_and_check client "lctl get_param -n $PROC_ACT" "$PARAM" $DEAC || return 2
855         # also check ost_server_uuid status
856         RESULT=$(lctl get_param -n $PROC_UUID | grep DEACTIV)
857         if [ -z "$RESULT" ]; then
858             echo "Live client not deactivated: $(lctl get_param -n $PROC_UUID)"
859             return 3
860         else
861             echo "Live client success: got $RESULT"
862         fi
863
864         # check MDT too
865         local MPROC="osc.$FSNAME-OST0001-osc-[M]*.active"
866         local MAX=30
867         local WAIT=0
868         while [ 1 ]; do
869             sleep 5
870             RESULT=`do_facet $SINGLEMDS " lctl get_param -n $MPROC"`
871             [ ${PIPESTATUS[0]} = 0 ] || error "Can't read $MPROC"
872             if [ $RESULT -eq $DEAC ]; then
873                 echo "MDT deactivated also after $WAIT sec (got $RESULT)"
874                 break
875             fi
876             WAIT=$((WAIT + 5))
877             if [ $WAIT -eq $MAX ]; then
878                 echo "MDT not deactivated: wanted $DEAC got $RESULT"
879                 return 4
880             fi
881             echo "Waiting $(($MAX - $WAIT)) secs for MDT deactivated"
882         done
883
884         # test new client starts deactivated
885         umount_client $MOUNT || return 200
886         mount_client $MOUNT
887         RESULT=$(lctl get_param -n $PROC_UUID | grep DEACTIV | grep NEW)
888         if [ -z "$RESULT" ]; then
889             echo "New client not deactivated from start: $(lctl get_param -n $PROC_UUID)"
890             return 5
891         else
892             echo "New client success: got $RESULT"
893         fi
894
895         # make sure it reactivates
896         set_and_check client "lctl get_param -n $PROC_ACT" "$PARAM" $ACTV || return 6
897
898         umount_client $MOUNT
899         stop_ost2
900         cleanup_nocli
901         #writeconf to remove all ost2 traces for subsequent tests
902         writeconf
903 }
904 run_test 29 "permanently remove an OST"
905
906 test_30() {
907         setup
908
909         TEST="lctl get_param -n llite.$FSNAME-*.max_read_ahead_whole_mb"
910         ORIG=$($TEST)
911         LIST=(1 2 3 4 5 4 3 2 1 2 3 4 5 4 3 2 1 2 3 4 5)
912         for i in ${LIST[@]}; do
913             set_and_check client "$TEST" "$FSNAME.llite.max_read_ahead_whole_mb" $i || return 3
914         done
915         # make sure client restart still works
916         umount_client $MOUNT
917         mount_client $MOUNT || return 4
918         [ "$($TEST)" -ne "$i" ] && return 5
919         set_and_check client "$TEST" "$FSNAME.llite.max_read_ahead_whole_mb" $ORIG || return 6
920         cleanup
921 }
922 run_test 30 "Big config llog"
923
924 test_31() { # bug 10734
925         # ipaddr must not exist
926         mount -t lustre 4.3.2.1@tcp:/lustre $MOUNT || true
927         cleanup
928 }
929 run_test 31 "Connect to non-existent node (shouldn't crash)"
930
931 # Use these start32/stop32 fn instead of t-f start/stop fn,
932 # for local devices, to skip global facet vars init
933 stop32 () {
934         local facet=$1
935         shift
936         echo "Stopping local ${MOUNT%/*}/${facet} (opts:$@)"
937         umount -d $@ ${MOUNT%/*}/${facet}
938         losetup -a
939 }
940
941 start32 () {
942         local facet=$1
943         shift
944         local device=$1
945         shift
946         mkdir -p ${MOUNT%/*}/${facet}
947
948         echo "Starting local ${facet}: $@ $device ${MOUNT%/*}/${facet}"
949         mount -t lustre $@ ${device} ${MOUNT%/*}/${facet}
950         local RC=$?
951         if [ $RC -ne 0 ]; then
952                 echo "mount -t lustre $@ ${device} ${MOUNT%/*}/${facet}"
953                 echo "Start of ${device} of local ${facet} failed ${RC}"
954         fi
955         losetup -a
956         return $RC
957 }
958
959 cleanup_nocli32 () {
960         stop32 mds1 -f
961         stop32 ost1 -f
962         wait_exit_ST client
963 }
964
965 cleanup_32() {
966         trap 0
967         echo "Cleanup test_32 umount $MOUNT ..."
968         umount -f $MOUNT || true
969         echo "Cleanup local mds ost1 ..."
970         cleanup_nocli32
971         unload_modules
972 }
973
974 test_32a() {
975         client_only && skip "client only testing" && return 0
976         [ "$NETTYPE" = "tcp" ] || { skip "NETTYPE != tcp" && return 0; }
977         [ -z "$TUNEFS" ] && skip_env "No tunefs" && return 0
978
979         local DISK1_8=$LUSTRE/tests/disk1_8.tar.bz2
980         [ ! -r $DISK1_8 ] && skip_env "Cannot find $DISK1_8" && return 0
981         local tmpdir=$TMP/conf32a
982         mkdir -p $tmpdir
983         tar xjvf $DISK1_8 -C $tmpdir || \
984                 { skip_env "Cannot untar $DISK1_8" && return 0; }
985
986         load_modules
987         $LCTL set_param debug=$PTLDEBUG
988
989         $TUNEFS $tmpdir/mds || error "tunefs failed"
990
991         # nids are wrong, so client wont work, but server should start
992         start32 mds1 $tmpdir/mds "-o loop,exclude=lustre-OST0000" && \
993                 trap cleanup_32 EXIT INT || return 3
994
995         local UUID=$($LCTL get_param -n mdt.lustre-MDT0000.uuid)
996         echo MDS uuid $UUID
997         [ "$UUID" == "lustre-MDT0000_UUID" ] || error "UUID is wrong: $UUID"
998
999         $TUNEFS --mgsnode=$HOSTNAME $tmpdir/ost1 || error "tunefs failed"
1000         start32 ost1 $tmpdir/ost1 "-o loop" || return 5
1001         UUID=$($LCTL get_param -n obdfilter.lustre-OST0000.uuid)
1002         echo OST uuid $UUID
1003         [ "$UUID" == "lustre-OST0000_UUID" ] || error "UUID is wrong: $UUID"
1004
1005         local NID=$($LCTL list_nids | head -1)
1006
1007         echo "OSC changes should succeed:"
1008         $LCTL conf_param lustre-OST0000.osc.max_dirty_mb=15 || return 7
1009         $LCTL conf_param lustre-OST0000.failover.node=$NID || return 8
1010         echo "ok."
1011
1012         echo "MDC changes should succeed:"
1013         $LCTL conf_param lustre-MDT0000.mdc.max_rpcs_in_flight=9 || return 9
1014         $LCTL conf_param lustre-MDT0000.failover.node=$NID || return 10
1015         echo "ok."
1016
1017         echo "LOV changes should succeed:"
1018         $LCTL pool_new lustre.interop || return 11
1019         $LCTL conf_param lustre-MDT0000.lov.stripesize=4M || return 12
1020         echo "ok."
1021
1022         cleanup_32
1023
1024         # mount a second time to make sure we didnt leave upgrade flag on
1025         load_modules
1026         $TUNEFS --dryrun $tmpdir/mds || error "tunefs failed"
1027         start32 mds1 $tmpdir/mds "-o loop,exclude=lustre-OST0000" && \
1028                 trap cleanup_32 EXIT INT || return 12
1029
1030         cleanup_32
1031
1032         rm -rf $tmpdir || true  # true is only for TMP on NFS
1033 }
1034 run_test 32a "Upgrade from 1.8 (not live)"
1035
1036 test_32b() {
1037         client_only && skip "client only testing" && return 0
1038         [ "$NETTYPE" = "tcp" ] || { skip "NETTYPE != tcp" && return 0; }
1039         [ -z "$TUNEFS" ] && skip_env "No tunefs" && return
1040
1041         local DISK1_8=$LUSTRE/tests/disk1_8.tar.bz2
1042         [ ! -r $DISK1_8 ] && skip_env "Cannot find $DISK1_8" && return 0
1043         local tmpdir=$TMP/conf32b
1044         mkdir -p $tmpdir
1045         tar xjvf $DISK1_8 -C $tmpdir || \
1046                 { skip_env "Cannot untar $DISK1_8" && return ; }
1047
1048         load_modules
1049         $LCTL set_param debug=$PTLDEBUG
1050         local NEWNAME=lustre
1051
1052         # writeconf will cause servers to register with their current nids
1053         $TUNEFS --writeconf --fsname=$NEWNAME $tmpdir/mds || error "tunefs failed"
1054         start32 mds1 $tmpdir/mds "-o loop" && \
1055                 trap cleanup_32 EXIT INT || return 3
1056
1057         local UUID=$($LCTL get_param -n mdt.${NEWNAME}-MDT0000.uuid)
1058         echo MDS uuid $UUID
1059         [ "$UUID" == "${NEWNAME}-MDT0000_UUID" ] || error "UUID is wrong: $UUID"
1060
1061         $TUNEFS --mgsnode=$HOSTNAME --writeconf --fsname=$NEWNAME $tmpdir/ost1 || error "tunefs failed"
1062         start32 ost1 $tmpdir/ost1 "-o loop" || return 5
1063         UUID=$($LCTL get_param -n obdfilter.${NEWNAME}-OST0000.uuid)
1064         echo OST uuid $UUID
1065         [ "$UUID" == "${NEWNAME}-OST0000_UUID" ] || error "UUID is wrong: $UUID"
1066
1067         local NID=$($LCTL list_nids | head -1)
1068
1069         echo "OSC changes should succeed:"
1070         $LCTL conf_param ${NEWNAME}-OST0000.osc.max_dirty_mb=15 || return 7
1071         $LCTL conf_param ${NEWNAME}-OST0000.failover.node=$NID || return 8
1072         echo "ok."
1073
1074         echo "MDC changes should succeed:"
1075         $LCTL conf_param ${NEWNAME}-MDT0000.mdc.max_rpcs_in_flight=9 || return 9
1076         $LCTL conf_param lustre-MDT0000.failover.node=$NID || return 10
1077         echo "ok."
1078
1079         echo "LOV changes should succeed:"
1080         $LCTL pool_new lustre.interop || return 11
1081         $LCTL conf_param lustre-MDT0000.lov.stripesize=4M || return 12
1082         echo "ok."
1083
1084         # MDT and OST should have registered with new nids, so we should have
1085         # a fully-functioning client
1086         echo "Check client and old fs contents"
1087
1088         local device=`h2$NETTYPE $HOSTNAME`:/$NEWNAME
1089         echo "Starting local client: $HOSTNAME: $device $MOUNT"
1090         mount -t lustre $device $MOUNT || return 1
1091
1092         local old=$($LCTL get_param -n mdc.*.max_rpcs_in_flight)
1093         local new=$((old + 5))
1094         $LCTL conf_param ${NEWNAME}-MDT0000.mdc.max_rpcs_in_flight=$new
1095         wait_update $HOSTNAME "$LCTL get_param -n mdc.*.max_rpcs_in_flight" $new || return 11
1096
1097         [ "$(cksum $MOUNT/passwd | cut -d' ' -f 1,2)" == "94306271 1478" ] || return 12
1098         echo "ok."
1099
1100         cleanup_32
1101
1102         rm -rf $tmpdir || true  # true is only for TMP on NFS
1103 }
1104 run_test 32b "Upgrade from 1.8 with writeconf"
1105
1106 test_33a() { # bug 12333, was test_33
1107         local rc=0
1108         local FSNAME2=test-123
1109         [ -n "$ost1_HOST" ] && fs2ost_HOST=$ost1_HOST
1110
1111         if [ -z "$fs2ost_DEV" -o -z "$fs2mds_DEV" ]; then
1112                 do_facet $SINGLEMDS [ -b "$MDSDEV" ] && \
1113                 skip_env "mixed loopback and real device not working" && return
1114         fi
1115
1116         local fs2mdsdev=${fs2mds_DEV:-${MDSDEV}_2}
1117         local fs2ostdev=${fs2ost_DEV:-$(ostdevname 1)_2}
1118         add fs2mds $MDS_MKFS_OPTS --mkfsoptions='\"-J size=8\"' --fsname=${FSNAME2} --reformat $fs2mdsdev || exit 10
1119         add fs2ost $OST_MKFS_OPTS --fsname=${FSNAME2} --index=8191 --mgsnode=$MGSNID --reformat $fs2ostdev || exit 10
1120
1121         start fs2mds $fs2mdsdev $MDS_MOUNT_OPTS && trap cleanup_24a EXIT INT
1122         start fs2ost $fs2ostdev $OST_MOUNT_OPTS
1123         do_facet $SINGLEMDS "$LCTL conf_param $FSNAME2.sys.timeout=200" || rc=1
1124         mkdir -p $MOUNT2
1125         mount -t lustre $MGSNID:/${FSNAME2} $MOUNT2 || rc=2
1126         echo "ok."
1127
1128         cp /etc/hosts $MOUNT2/ || rc=3
1129         $LFS getstripe $MOUNT2/hosts
1130
1131         umount -d $MOUNT2
1132         stop fs2ost -f
1133         stop fs2mds -f
1134         rm -rf $MOUNT2 $fs2mdsdev $fs2ostdev
1135         cleanup_nocli || rc=6
1136         return $rc
1137 }
1138 run_test 33a "Mount ost with a large index number"
1139
1140 test_33b() {    # was test_34
1141         setup
1142
1143         do_facet client dd if=/dev/zero of=$MOUNT/24 bs=1024k count=1
1144         # Drop lock cancelation reply during umount
1145         #define OBD_FAIL_LDLM_CANCEL             0x304
1146         do_facet client lctl set_param fail_loc=0x80000304
1147         #lctl set_param debug=-1
1148         umount_client $MOUNT
1149         cleanup
1150 }
1151 run_test 33b "Drop cancel during umount"
1152
1153 test_34a() {
1154         setup
1155         do_facet client "sh runmultiop_bg_pause $DIR/file O_c"
1156         manual_umount_client
1157         rc=$?
1158         do_facet client killall -USR1 multiop
1159         if [ $rc -eq 0 ]; then
1160                 error "umount not fail!"
1161         fi
1162         sleep 1
1163         cleanup
1164 }
1165 run_test 34a "umount with opened file should be fail"
1166
1167
1168 test_34b() {
1169         setup
1170         touch $DIR/$tfile || return 1
1171         stop_mds --force || return 2
1172
1173         manual_umount_client --force
1174         rc=$?
1175         if [ $rc -ne 0 ]; then
1176                 error "mtab after failed umount - rc $rc"
1177         fi
1178
1179         cleanup
1180         return 0
1181 }
1182 run_test 34b "force umount with failed mds should be normal"
1183
1184 test_34c() {
1185         setup
1186         touch $DIR/$tfile || return 1
1187         stop_ost --force || return 2
1188
1189         manual_umount_client --force
1190         rc=$?
1191         if [ $rc -ne 0 ]; then
1192                 error "mtab after failed umount - rc $rc"
1193         fi
1194
1195         cleanup
1196         return 0
1197 }
1198 run_test 34c "force umount with failed ost should be normal"
1199
1200 test_35a() { # bug 12459
1201         setup
1202
1203         DBG_SAVE="`lctl get_param -n debug`"
1204         lctl set_param debug="ha"
1205
1206         log "Set up a fake failnode for the MDS"
1207         FAKENID="127.0.0.2"
1208         local device=$(do_facet $SINGLEMDS "lctl get_param -n devices" | awk '($3 ~ "mdt" && $4 ~ "MDT") { print $4 }' | head -1)
1209         do_facet $SINGLEMDS $LCTL conf_param ${device}.failover.node=$FAKENID || return 4
1210
1211         log "Wait for RECONNECT_INTERVAL seconds (10s)"
1212         sleep 10
1213
1214         MSG="conf-sanity.sh test_35a `date +%F%kh%Mm%Ss`"
1215         $LCTL clear
1216         log "$MSG"
1217         log "Stopping the MDT:"
1218         stop_mds || return 5
1219
1220         df $MOUNT > /dev/null 2>&1 &
1221         DFPID=$!
1222         log "Restarting the MDT:"
1223         start_mds || return 6
1224         log "Wait for df ($DFPID) ... "
1225         wait $DFPID
1226         log "done"
1227         lctl set_param debug="$DBG_SAVE"
1228
1229         # retrieve from the log the first server that the client tried to
1230         # contact after the connection loss
1231         $LCTL dk $TMP/lustre-log-$TESTNAME.log
1232         NEXTCONN=`awk "/${MSG}/ {start = 1;}
1233                        /import_select_connection.*$device-mdc.* using connection/ {
1234                                 if (start) {
1235                                         if (\\\$NF ~ /$FAKENID/)
1236                                                 print \\\$NF;
1237                                         else
1238                                                 print 0;
1239                                         exit;
1240                                 }
1241                        }" $TMP/lustre-log-$TESTNAME.log`
1242         [ "$NEXTCONN" != "0" ] && log "The client didn't try to reconnect to the last active server (tried ${NEXTCONN} instead)" && return 7
1243         cleanup
1244 }
1245 run_test 35a "Reconnect to the last active server first"
1246
1247 test_35b() { # bug 18674
1248         remote_mds || { skip "local MDS" && return 0; }
1249         setup
1250
1251         debugsave
1252         $LCTL set_param debug="ha"
1253         $LCTL clear
1254         MSG="conf-sanity.sh test_35b `date +%F%kh%Mm%Ss`"
1255         log "$MSG"
1256
1257         log "Set up a fake failnode for the MDS"
1258         FAKENID="127.0.0.2"
1259         local device=$(do_facet mds "$LCTL get_param -n devices" | \
1260                         awk '($3 ~ "mdt" && $4 ~ "MDT") { print $4 }' | head -1)
1261         do_facet mds "$LCTL conf_param ${device}.failover.node=$FAKENID" || \
1262                 return 1
1263
1264         local at_max_saved=0
1265         # adaptive timeouts may prevent seeing the issue 
1266         if at_is_enabled; then
1267                 at_max_saved=$(at_max_get mds)
1268                 at_max_set 0 mds client
1269         fi
1270
1271         mkdir -p $MOUNT/testdir
1272         touch $MOUNT/testdir/test
1273
1274         log "Injecting EBUSY on MDS"
1275         # Setting OBD_FAIL_MDS_RESEND=0x136
1276         do_facet mds "$LCTL set_param fail_loc=0x80000136" || return 2
1277
1278         log "Stat on a test file"
1279         stat $MOUNT/testdir/test
1280
1281         log "Stop injecting EBUSY on MDS"
1282         do_facet mds "$LCTL set_param fail_loc=0" || return 3
1283         rm -f $MOUNT/testdir/test
1284
1285         log "done"
1286         # restore adaptive timeout
1287         [ $at_max_saved -ne 0 ] && at_max_set $at_max_saved mds client
1288
1289         $LCTL dk $TMP/lustre-log-$TESTNAME.log
1290
1291         # retrieve from the log if the client has ever tried to
1292         # contact the fake server after the loss of connection
1293         FAILCONN=`awk "BEGIN {ret = 0;}
1294                        /import_select_connection.*${FSNAME}-MDT0000-mdc.* using connection/ {
1295                                 ret = 1;
1296                                 if (\\\$NF ~ /$FAKENID/) {
1297                                         ret = 2;
1298                                         exit;
1299                                 }
1300                        }
1301                        END {print ret}" $TMP/lustre-log-$TESTNAME.log`
1302
1303         [ "$FAILCONN" == "0" ] && \
1304                 log "ERROR: The client reconnection has not been triggered" && \
1305                 return 4
1306         [ "$FAILCONN" == "2" ] && \
1307                 log "ERROR: The client tried to reconnect to the failover server while the primary was busy" && \
1308                 return 5
1309
1310         cleanup
1311 }
1312 run_test 35b "Continue reconnection retries, if the active server is busy"
1313
1314 test_36() { # 12743
1315         local rc
1316         local FSNAME2=test1234
1317         local fs3ost_HOST=$ost_HOST
1318
1319         [ -n "$ost1_HOST" ] && fs2ost_HOST=$ost1_HOST && fs3ost_HOST=$ost1_HOST
1320         rc=0
1321
1322         if [ -z "$fs2ost_DEV" -o -z "$fs2mds_DEV" -o -z "$fs3ost_DEV" ]; then
1323                 do_facet $SINGLEMDS [ -b "$MDSDEV" ] && \
1324                 skip_env "mixed loopback and real device not working" && return
1325         fi
1326         [ $OSTCOUNT -lt 2 ] && skip_env "skipping test for single OST" && return
1327
1328         [ "$ost_HOST" = "`hostname`" -o "$ost1_HOST" = "`hostname`" ] || \
1329                 { skip "remote OST" && return 0; }
1330
1331         local fs2mdsdev=${fs2mds_DEV:-${MDSDEV}_2}
1332         local fs2ostdev=${fs2ost_DEV:-$(ostdevname 1)_2}
1333         local fs3ostdev=${fs3ost_DEV:-$(ostdevname 2)_2}
1334         add fs2mds $MDS_MKFS_OPTS --fsname=${FSNAME2} --reformat $fs2mdsdev || exit 10
1335         # XXX after we support non 4K disk blocksize, change following --mkfsoptions with
1336         # other argument
1337         add fs2ost $OST_MKFS_OPTS --mkfsoptions='-b4096' --fsname=${FSNAME2} --mgsnode=$MGSNID --reformat $fs2ostdev || exit 10
1338         add fs3ost $OST_MKFS_OPTS --mkfsoptions='-b4096' --fsname=${FSNAME2} --mgsnode=$MGSNID --reformat $fs3ostdev || exit 10
1339
1340         start fs2mds $fs2mdsdev $MDS_MOUNT_OPTS
1341         start fs2ost $fs2ostdev $OST_MOUNT_OPTS
1342         start fs3ost $fs3ostdev $OST_MOUNT_OPTS
1343         mkdir -p $MOUNT2
1344         mount -t lustre $MGSNID:/${FSNAME2} $MOUNT2 || return 1
1345
1346         sleep 5 # until 11778 fixed
1347
1348         dd if=/dev/zero of=$MOUNT2/$tfile bs=1M count=7 || return 2
1349
1350         BKTOTAL=`lctl get_param -n obdfilter.*.kbytestotal | awk 'BEGIN{total=0}; {total+=$1}; END{print total}'`
1351         BKFREE=`lctl get_param -n obdfilter.*.kbytesfree | awk 'BEGIN{free=0}; {free+=$1}; END{print free}'`
1352         BKAVAIL=`lctl get_param -n obdfilter.*.kbytesavail | awk 'BEGIN{avail=0}; {avail+=$1}; END{print avail}'`
1353         STRING=`df -P $MOUNT2 | tail -n 1 | awk '{print $2","$3","$4}'`
1354         DFTOTAL=`echo $STRING | cut -d, -f1`
1355         DFUSED=`echo $STRING  | cut -d, -f2`
1356         DFAVAIL=`echo $STRING | cut -d, -f3`
1357         DFFREE=$(($DFTOTAL - $DFUSED))
1358
1359         ALLOWANCE=$((64 * $OSTCOUNT))
1360
1361         if [ $DFTOTAL -lt $(($BKTOTAL - $ALLOWANCE)) ] ||
1362            [ $DFTOTAL -gt $(($BKTOTAL + $ALLOWANCE)) ] ; then
1363                 echo "**** FAIL: df total($DFTOTAL) mismatch OST total($BKTOTAL)"
1364                 rc=1
1365         fi
1366         if [ $DFFREE -lt $(($BKFREE - $ALLOWANCE)) ] ||
1367            [ $DFFREE -gt $(($BKFREE + $ALLOWANCE)) ] ; then
1368                 echo "**** FAIL: df free($DFFREE) mismatch OST free($BKFREE)"
1369                 rc=2
1370         fi
1371         if [ $DFAVAIL -lt $(($BKAVAIL - $ALLOWANCE)) ] ||
1372            [ $DFAVAIL -gt $(($BKAVAIL + $ALLOWANCE)) ] ; then
1373                 echo "**** FAIL: df avail($DFAVAIL) mismatch OST avail($BKAVAIL)"
1374                 rc=3
1375        fi
1376
1377         umount -d $MOUNT2
1378         stop fs3ost -f || return 200
1379         stop fs2ost -f || return 201
1380         stop fs2mds -f || return 202
1381         rm -rf $MOUNT2 $fs2mdsdev $fs2ostdev $fs3ostdev
1382         unload_modules || return 203
1383         return $rc
1384 }
1385 run_test 36 "df report consistency on OSTs with different block size"
1386
1387 test_37() {
1388         client_only && skip "client only testing" && return 0
1389         LOCAL_MDSDEV="$TMP/mdt.img"
1390         SYM_MDSDEV="$TMP/sym_mdt.img"
1391
1392         echo "MDS :     $LOCAL_MDSDEV"
1393         echo "SYMLINK : $SYM_MDSDEV"
1394         rm -f $LOCAL_MDSDEV
1395
1396         touch $LOCAL_MDSDEV
1397         mkfs.lustre --reformat --fsname=lustre --mdt --mgs --device-size=9000 $LOCAL_MDSDEV ||
1398                 error "mkfs.lustre $LOCAL_MDSDEV failed"
1399         ln -s $LOCAL_MDSDEV $SYM_MDSDEV
1400
1401         echo "mount symlink device - $SYM_MDSDEV"
1402
1403         mount_op=`mount -v -t lustre -o loop $SYM_MDSDEV ${MOUNT%/*}/mds 2>&1 | grep "unable to set tunable"`
1404         umount -d ${MOUNT%/*}/mds
1405         rm -f $LOCAL_MDSDEV $SYM_MDSDEV
1406
1407         if [ -n "$mount_op" ]; then
1408                 error "**** FAIL: set tunables failed for symlink device"
1409         fi
1410         return 0
1411 }
1412 run_test 37 "verify set tunables works for symlink device"
1413
1414 test_38() { # bug 14222
1415         setup
1416         # like runtests
1417         COUNT=10
1418         SRC="/etc /bin"
1419         FILES=`find $SRC -type f -mtime +1 | head -n $COUNT`
1420         log "copying $(echo $FILES | wc -w) files to $DIR/$tdir"
1421         mkdir -p $DIR/$tdir
1422         tar cf - $FILES | tar xf - -C $DIR/$tdir || \
1423                 error "copying $SRC to $DIR/$tdir"
1424         sync
1425         umount_client $MOUNT
1426         stop_mds
1427         log "rename lov_objid file on MDS"
1428         rm -f $TMP/lov_objid.orig
1429
1430         local dev=${SINGLEMDS}_dev
1431         local MDSDEV=${!dev}
1432         do_facet $SINGLEMDS "$DEBUGFS -c -R \\\"dump lov_objid $TMP/lov_objid.orig\\\" $MDSDEV"
1433         do_facet $SINGLEMDS "$DEBUGFS -w -R \\\"rm lov_objid\\\" $MDSDEV"
1434
1435         do_facet $SINGLEMDS "od -Ax -td8 $TMP/lov_objid.orig"
1436         # check create in mds_lov_connect
1437         start_mds
1438         mount_client $MOUNT
1439         for f in $FILES; do
1440                 [ $V ] && log "verifying $DIR/$tdir/$f"
1441                 diff -q $f $DIR/$tdir/$f || ERROR=y
1442         done
1443         do_facet $SINGLEMDS "$DEBUGFS -c -R \\\"dump lov_objid $TMP/lov_objid.new\\\"  $MDSDEV"
1444         do_facet $SINGLEMDS "od -Ax -td8 $TMP/lov_objid.new"
1445         [ "$ERROR" = "y" ] && error "old and new files are different after connect" || true
1446
1447         # check it's updates in sync
1448         umount_client $MOUNT
1449         stop_mds
1450
1451         do_facet $SINGLEMDS dd if=/dev/zero of=$TMP/lov_objid.clear bs=4096 count=1
1452         do_facet $SINGLEMDS "$DEBUGFS -w -R \\\"rm lov_objid\\\" $MDSDEV"
1453         do_facet $SINGLEMDS "$DEBUGFS -w -R \\\"write $TMP/lov_objid.clear lov_objid\\\" $MDSDEV "
1454
1455         start_mds
1456         mount_client $MOUNT
1457         for f in $FILES; do
1458                 [ $V ] && log "verifying $DIR/$tdir/$f"
1459                 diff -q $f $DIR/$tdir/$f || ERROR=y
1460         done
1461         do_facet $SINGLEMDS "$DEBUGFS -c -R \\\"dump lov_objid $TMP/lov_objid.new1\\\" $MDSDEV"
1462         do_facet $SINGLEMDS "od -Ax -td8 $TMP/lov_objid.new1"
1463         umount_client $MOUNT
1464         stop_mds
1465         [ "$ERROR" = "y" ] && error "old and new files are different after sync" || true
1466
1467         log "files compared the same"
1468         cleanup
1469 }
1470 run_test 38 "MDS recreates missing lov_objid file from OST data"
1471
1472 test_39() {
1473         PTLDEBUG=+malloc
1474         setup
1475         cleanup
1476         perl $SRCDIR/leak_finder.pl $TMP/debug 2>&1 | egrep '*** Leak:' &&
1477                 error "memory leak detected" || true
1478 }
1479 run_test 39 "leak_finder recognizes both LUSTRE and LNET malloc messages"
1480
1481 test_40() { # bug 15759
1482         start_ost
1483         #define OBD_FAIL_TGT_TOOMANY_THREADS     0x706
1484         do_facet $SINGLEMDS "sysctl -w lustre.fail_loc=0x80000706"
1485         start_mds
1486         cleanup
1487 }
1488 run_test 40 "race during service thread startup"
1489
1490 test_41() { #bug 14134
1491         local rc
1492         local dev=${SINGLEMDS}_dev
1493         local MDSDEV=${!dev}
1494
1495         start $SINGLEMDS $MDSDEV $MDS_MOUNT_OPTS -o nosvc -n
1496         start ost1 `ostdevname 1` $OST_MOUNT_OPTS
1497         start $SINGLEMDS $MDSDEV $MDS_MOUNT_OPTS -o nomgs,force
1498         mkdir -p $MOUNT
1499         mount_client $MOUNT || return 1
1500         sleep 5
1501
1502         echo "blah blah" > $MOUNT/$tfile
1503         cat $MOUNT/$tfile
1504
1505         umount_client $MOUNT
1506         stop ost1 -f || return 201
1507         stop_mds -f || return 202
1508         stop_mds -f || return 203
1509         unload_modules || return 204
1510         return $rc
1511 }
1512 run_test 41 "mount mds with --nosvc and --nomgs"
1513
1514 test_42() { #bug 14693
1515         setup
1516         check_mount || return 2
1517         do_facet client lctl conf_param lustre.llite.some_wrong_param=10
1518         umount_client $MOUNT
1519         mount_client $MOUNT || return 1
1520         cleanup
1521         return 0
1522 }
1523 run_test 42 "invalid config param should not prevent client from mounting"
1524
1525 test_43() {
1526     [ $UID -ne 0 -o $RUNAS_ID -eq 0 ] && skip_env "run as root"
1527     setup
1528     chmod ugo+x $DIR || error "chmod 0 failed"
1529     set_and_check mds                                        \
1530         "lctl get_param -n mdt.$FSNAME-MDT0000.root_squash"  \
1531         "$FSNAME.mdt.root_squash"                            \
1532         "0:0"
1533     set_and_check mds                                        \
1534        "lctl get_param -n mdt.$FSNAME-MDT0000.nosquash_nids" \
1535        "$FSNAME.mdt.nosquash_nids"                           \
1536        "NONE"
1537
1538     #
1539     # create set of test files
1540     #
1541     echo "111" > $DIR/$tfile-userfile || error "write 1 failed"
1542     chmod go-rw $DIR/$tfile-userfile  || error "chmod 1 failed"
1543     chown $RUNAS_ID.$RUNAS_ID $DIR/$tfile-userfile || error "chown failed"
1544
1545     echo "222" > $DIR/$tfile-rootfile || error "write 2 failed"
1546     chmod go-rw $DIR/$tfile-rootfile  || error "chmod 2 faield"
1547
1548     mkdir $DIR/$tdir-rootdir -p       || error "mkdir failed"
1549     chmod go-rwx $DIR/$tdir-rootdir   || error "chmod 3 failed"
1550     touch $DIR/$tdir-rootdir/tfile-1  || error "touch failed"
1551
1552     #
1553     # check root_squash:
1554     #   set root squash UID:GID to RUNAS_ID
1555     #   root should be able to access only files owned by RUNAS_ID
1556     #
1557     set_and_check mds                                        \
1558        "lctl get_param -n mdt.$FSNAME-MDT0000.root_squash"   \
1559        "$FSNAME.mdt.root_squash"                             \
1560        "$RUNAS_ID:$RUNAS_ID"
1561
1562     ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tfile-userfile)
1563     dd if=$DIR/$tfile-userfile 1>/dev/null 2>/dev/null || \
1564         error "$ST: root read permission is denied"
1565     echo "$ST: root read permission is granted - ok"
1566
1567     echo "444" | \
1568     dd conv=notrunc if=$DIR/$tfile-userfile 1>/dev/null 2>/dev/null || \
1569         error "$ST: root write permission is denied"
1570     echo "$ST: root write permission is granted - ok"
1571
1572     ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tfile-rootfile)
1573     dd if=$DIR/$tfile-rootfile 1>/dev/null 2>/dev/null && \
1574         error "$ST: root read permission is granted"
1575     echo "$ST: root read permission is denied - ok"
1576
1577     echo "555" | \
1578     dd conv=notrunc of=$DIR/$tfile-rootfile 1>/dev/null 2>/dev/null && \
1579         error "$ST: root write permission is granted"
1580     echo "$ST: root write permission is denied - ok"
1581
1582     ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tdir-rootdir)
1583     rm $DIR/$tdir-rootdir/tfile-1 1>/dev/null 2>/dev/null && \
1584         error "$ST: root unlink permission is granted"
1585     echo "$ST: root unlink permission is denied - ok"
1586
1587     touch $DIR/tdir-rootdir/tfile-2 1>/dev/null 2>/dev/null && \
1588         error "$ST: root create permission is granted"
1589     echo "$ST: root create permission is denied - ok"
1590
1591     #
1592     # check nosquash_nids:
1593     #   put client's NID into nosquash_nids list,
1594     #   root should be able to access root file after that
1595     #
1596     local NIDLIST=$(lctl list_nids all | tr '\n' ' ')
1597     NIDLIST="2@elan $NIDLIST 192.168.0.[2,10]@tcp"
1598     NIDLIST=$(echo $NIDLIST | tr -s ' ' ' ')
1599     set_and_check mds                                        \
1600        "lctl get_param -n mdt.$FSNAME-MDT0000.nosquash_nids" \
1601        "$FSNAME-MDTall.mdt.nosquash_nids"                    \
1602        "$NIDLIST"
1603
1604     ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tfile-rootfile)
1605     dd if=$DIR/$tfile-rootfile 1>/dev/null 2>/dev/null || \
1606         error "$ST: root read permission is denied"
1607     echo "$ST: root read permission is granted - ok"
1608
1609     echo "666" | \
1610     dd conv=notrunc of=$DIR/$tfile-rootfile 1>/dev/null 2>/dev/null || \
1611         error "$ST: root write permission is denied"
1612     echo "$ST: root write permission is granted - ok"
1613
1614     ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tdir-rootdir)
1615     rm $DIR/$tdir-rootdir/tfile-1 || \
1616         error "$ST: root unlink permission is denied"
1617     echo "$ST: root unlink permission is granted - ok"
1618     touch $DIR/$tdir-rootdir/tfile-2 || \
1619         error "$ST: root create permission is denied"
1620     echo "$ST: root create permission is granted - ok"
1621
1622     return 0
1623 }
1624 run_test 43 "check root_squash and nosquash_nids"
1625
1626 umount_client $MOUNT
1627 cleanup_nocli
1628
1629 test_44() { # 16317
1630         setup
1631         check_mount || return 2
1632         UUID=$($LCTL get_param llite.${FSNAME}*.uuid | cut -d= -f2)
1633         STATS_FOUND=no
1634         UUIDS=$(do_facet mds "$LCTL get_param mdt.${FSNAME}*.exports.*.uuid")
1635         for VAL in $UUIDS; do
1636                 NID=$(echo $VAL | cut -d= -f1)
1637                 CLUUID=$(echo $VAL | cut -d= -f2)
1638                 [ "$UUID" = "$CLUUID" ] && STATS_FOUND=yes && break
1639         done
1640         [ "$STATS_FOUND" = "no" ] && error "stats not found for client"
1641         cleanup
1642         return 0
1643 }
1644 run_test 44 "mounted client proc entry exists"
1645
1646 test_45() { #17310
1647         setup
1648         check_mount || return 2
1649         stop_mds
1650         df -h $MOUNT &
1651         log "sleep 60 sec"
1652         sleep 60
1653 #define OBD_FAIL_PTLRPC_LONG_UNLINK   0x50f
1654         do_facet client "lctl set_param fail_loc=0x50f"
1655         log "sleep 10 sec"
1656         sleep 10
1657         manual_umount_client --force || return 3
1658         do_facet client "lctl set_param fail_loc=0x0"
1659         start_mds
1660         mount_client $MOUNT || return 4
1661         cleanup
1662         return 0
1663 }
1664 run_test 45 "long unlink handling in ptlrpcd"
1665
1666 cleanup_46a() {
1667         trap 0
1668         local rc=0
1669         local count=$1
1670
1671         umount_client $MOUNT2 || rc=$?
1672         umount_client $MOUNT || rc=$?
1673         while [ $count -gt 0 ]; do
1674                 stop ost${count} -f || rc=$?
1675                 let count=count-1
1676         done    
1677         stop_mds || rc=$? 
1678         # writeconf is needed after the test, otherwise,
1679         # we might end up with extra OSTs
1680         writeconf || rc=$?
1681         cleanup_nocli || rc=$?
1682         return $rc
1683 }
1684
1685 test_46a() {
1686         echo "Testing with $OSTCOUNT OSTs"
1687         reformat
1688         start_mds || return 1
1689         #first client should see only one ost
1690         start_ost || return 2
1691         wait_osc_import_state mds ost FULL
1692         #start_client
1693         mount_client $MOUNT || return 3
1694         trap "cleanup_46a $OSTCOUNT" EXIT ERR
1695
1696         local i 
1697         for (( i=2; i<=$OSTCOUNT; i++ )); do
1698             start ost$i `ostdevname $i` $OST_MOUNT_OPTS || return $((i+2))
1699         done
1700
1701         # wait until osts in sync
1702         for (( i=2; i<=$OSTCOUNT; i++ )); do
1703             wait_osc_import_state mds ost$i FULL
1704         done
1705
1706
1707         #second client see all ost's
1708
1709         mount_client $MOUNT2 || return 8
1710         $LFS setstripe $MOUNT2 -c -1 || return 9
1711         $LFS getstripe $MOUNT2 || return 10
1712
1713         echo "ok" > $MOUNT2/widestripe
1714         $LFS getstripe $MOUNT2/widestripe || return 11
1715         # fill acl buffer for avoid expand lsm to them
1716         awk -F : '{if (FNR < 25) { print "u:"$1":rwx" }}' /etc/passwd | while read acl; do
1717             setfacl -m $acl $MOUNT2/widestripe
1718         done
1719
1720         # will be deadlock
1721         stat $MOUNT/widestripe || return 12
1722
1723         cleanup_46a $OSTCOUNT || { echo "cleanup_46a failed!" && return 13; }
1724         return 0
1725 }
1726 run_test 46a "handle ost additional - wide striped file"
1727
1728 test_47() { #17674
1729         reformat
1730         setup_noconfig
1731         check_mount || return 2
1732         $LCTL set_param ldlm.namespaces.$FSNAME-*-*-*.lru_size=100
1733
1734         local lru_size=[]
1735         local count=0
1736         for ns in $($LCTL get_param ldlm.namespaces.$FSNAME-*-*-*.lru_size); do
1737             if echo $ns | grep "MDT[[:digit:]]*"; then
1738                 continue
1739             fi
1740             lrs=$(echo $ns | sed 's/.*lru_size=//')
1741             lru_size[count]=$lrs
1742             let count=count+1
1743         done
1744
1745         facet_failover ost1
1746         facet_failover $SINGLEMDS
1747         df -h $MOUNT || return 3
1748
1749         count=0
1750         for ns in $($LCTL get_param ldlm.namespaces.$FSNAME-*-*-*.lru_size); do
1751             if echo $ns | grep "MDT[[:digit:]]*"; then
1752                 continue
1753             fi
1754             lrs=$(echo $ns | sed 's/.*lru_size=//')
1755             if ! test "$lrs" -eq "${lru_size[count]}"; then
1756                 n=$(echo $ns | sed -e 's/ldlm.namespaces.//' -e 's/.lru_size=.*//')
1757                 error "$n has lost lru_size: $lrs vs. ${lru_size[count]}"
1758             fi
1759             let count=count+1
1760         done
1761
1762         cleanup
1763         return 0
1764 }
1765 run_test 47 "server restart does not make client loss lru_resize settings"
1766
1767 cleanup_48() {
1768         trap 0
1769
1770         # reformat after this test is needed - if test will failed
1771         # we will have unkillable file at FS
1772         reformat_and_config
1773 }
1774
1775 test_48() { # bug 17636
1776         reformat
1777         setup_noconfig
1778         check_mount || return 2
1779
1780         $LFS setstripe $MOUNT -c -1 || return 9
1781         $LFS getstripe $MOUNT || return 10
1782
1783         echo "ok" > $MOUNT/widestripe
1784         $LFS getstripe $MOUNT/widestripe || return 11
1785
1786         trap cleanup_48 EXIT ERR
1787
1788         # fill acl buffer for avoid expand lsm to them
1789         getent passwd | awk -F : '{ print "u:"$1":rwx" }' |  while read acl; do
1790             setfacl -m $acl $MOUNT/widestripe
1791         done
1792
1793         stat $MOUNT/widestripe || return 12
1794
1795         cleanup_48
1796         return 0
1797 }
1798 run_test 48 "too many acls on file"
1799
1800 # check PARAM_SYS_LDLM_TIMEOUT option of MKFS.LUSTRE
1801 test_49() { # bug 17710
1802         local OLD_MDS_MKFS_OPTS=$MDS_MKFS_OPTS
1803         local OLD_OST_MKFS_OPTS=$OST_MKFS_OPTS
1804         local LOCAL_TIMEOUT=20
1805
1806
1807         OST_MKFS_OPTS="--ost --fsname=$FSNAME --device-size=$OSTSIZE --mgsnode=$MGSNID --param sys.timeout=$LOCAL_TIMEOUT --param sys.ldlm_timeout=$LOCAL_TIMEOUT $MKFSOPT $OSTOPT"
1808
1809         reformat
1810         start_mds
1811         start_ost
1812         mount_client $MOUNT
1813         check_mount || return 1
1814
1815         echo "check ldlm_timout..."
1816         LDLM_MDS="`do_facet mds lctl get_param -n ldlm_timeout`"
1817         LDLM_OST1="`do_facet ost1 lctl get_param -n ldlm_timeout`"
1818         LDLM_CLIENT="`do_facet client lctl get_param -n ldlm_timeout`"
1819
1820         if [ $LDLM_MDS -ne $LDLM_OST1 ] || [ $LDLM_MDS -ne $LDLM_CLIENT ]; then
1821                 error "Different LDLM_TIMEOUT:$LDLM_MDS $LDLM_OST1 $LDLM_CLIENT"
1822         fi
1823
1824         if [ $LDLM_MDS -ne $((LOCAL_TIMEOUT / 3)) ]; then
1825                 error "LDLM_TIMEOUT($LDLM_MDS) is not correct"
1826         fi
1827
1828         umount_client $MOUNT
1829         stop_ost || return 2
1830         stop_mds || return 3
1831
1832         OST_MKFS_OPTS="--ost --fsname=$FSNAME --device-size=$OSTSIZE --mgsnode=$MGSNID --param sys.timeout=$LOCAL_TIMEOUT --param sys.ldlm_timeout=$((LOCAL_TIMEOUT - 1)) $MKFSOPT $OSTOPT"
1833
1834         reformat
1835         start_mds || return 4
1836         start_ost || return 5
1837         mount_client $MOUNT || return 6
1838         check_mount || return 7
1839
1840         LDLM_MDS="`do_facet mds lctl get_param -n ldlm_timeout`"
1841         LDLM_OST1="`do_facet ost1 lctl get_param -n ldlm_timeout`"
1842         LDLM_CLIENT="`do_facet client lctl get_param -n ldlm_timeout`"
1843
1844         if [ $LDLM_MDS -ne $LDLM_OST1 ] || [ $LDLM_MDS -ne $LDLM_CLIENT ]; then
1845                 error "Different LDLM_TIMEOUT:$LDLM_MDS $LDLM_OST1 $LDLM_CLIENT"
1846         fi
1847
1848         if [ $LDLM_MDS -ne $((LOCAL_TIMEOUT - 1)) ]; then
1849                 error "LDLM_TIMEOUT($LDLM_MDS) is not correct"
1850         fi
1851
1852         cleanup || return $?
1853
1854         MDS_MKFS_OPTS=$OLD_MDS_MKFS_OPTS
1855         OST_MKFS_OPTS=$OLD_OST_MKFS_OPTS
1856 }
1857 run_test 49 "check PARAM_SYS_LDLM_TIMEOUT option of MKFS.LUSTRE"
1858
1859 lazystatfs() {
1860         # Test both statfs and lfs df and fail if either one fails
1861         multiop_bg_pause $1 f_
1862         RC1=$?
1863         PID=$!
1864         killall -USR1 multiop
1865         [ $RC1 -ne 0 ] && log "lazystatfs multiop failed"
1866         wait $PID || { RC1=$?; log "multiop return error "; }
1867
1868         $LFS df &
1869         PID=$!
1870         sleep 5
1871         kill -s 0 $PID
1872         RC2=$?
1873         if [ $RC2 -eq 0 ]; then
1874             kill -s 9 $PID
1875             log "lazystatfs df failed"
1876         fi
1877
1878         RC=0
1879         [[ $RC1 -ne 0 || $RC2 -eq 0 ]] && RC=1
1880         return $RC
1881 }
1882
1883 test_50a() {
1884         setup
1885         lctl set_param llite.$FSNAME-*.lazystatfs=1
1886         touch $DIR/$tfile
1887
1888         lazystatfs $MOUNT || error "lazystatfs failed but no down servers"
1889
1890         cleanup || return $?
1891 }
1892 run_test 50a "lazystatfs all servers available =========================="
1893
1894 test_50b() {
1895         setup
1896         lctl set_param llite.$FSNAME-*.lazystatfs=1
1897         touch $DIR/$tfile
1898
1899         # Wait for client to detect down OST
1900         stop_ost || error "Unable to stop OST1"
1901         wait_osc_import_state mds ost DISCONN
1902
1903         lazystatfs $MOUNT || error "lazystatfs should don't have returned EIO"
1904
1905         umount_client $MOUNT || error "Unable to unmount client"
1906         stop_mds || error "Unable to stop MDS"
1907 }
1908 run_test 50b "lazystatfs all servers down =========================="
1909
1910 test_50c() {
1911         start_mds || error "Unable to start MDS"
1912         start_ost || error "Unable to start OST1"
1913         start_ost2 || error "Unable to start OST2"
1914         mount_client $MOUNT || error "Unable to mount client"
1915         lctl set_param llite.$FSNAME-*.lazystatfs=1
1916         touch $DIR/$tfile
1917
1918         # Wait for client to detect down OST
1919         stop_ost || error "Unable to stop OST1"
1920         wait_osc_import_state mds ost DISCONN
1921         lazystatfs $MOUNT || error "lazystatfs failed with one down server"
1922
1923         umount_client $MOUNT || error "Unable to unmount client"
1924         stop_ost2 || error "Unable to stop OST2"
1925         stop_mds || error "Unable to stop MDS"
1926 }
1927 run_test 50c "lazystatfs one server down =========================="
1928
1929 test_50d() {
1930         start_mds || error "Unable to start MDS"
1931         start_ost || error "Unable to start OST1"
1932         start_ost2 || error "Unable to start OST2"
1933         mount_client $MOUNT || error "Unable to mount client"
1934         lctl set_param llite.$FSNAME-*.lazystatfs=1
1935         touch $DIR/$tfile
1936
1937         # Issue the statfs during the window where the client still
1938         # belives the OST to be available but it is in fact down.
1939         # No failure just a statfs which hangs for a timeout interval.
1940         stop_ost || error "Unable to stop OST1"
1941         lazystatfs $MOUNT || error "lazystatfs failed with one down server"
1942
1943         umount_client $MOUNT || error "Unable to unmount client"
1944         stop_ost2 || error "Unable to stop OST2"
1945         stop_mds || error "Unable to stop MDS"
1946 }
1947 run_test 50d "lazystatfs client/server conn race =========================="
1948
1949 test_50e() {
1950         local RC1
1951         local pid
1952
1953         reformat_and_config
1954         start_mds || return 1
1955         #first client should see only one ost
1956         start_ost || return 2
1957         wait_osc_import_state mds ost FULL
1958
1959         # Wait for client to detect down OST
1960         stop_ost || error "Unable to stop OST1"
1961         wait_osc_import_state mds ost DISCONN
1962
1963         mount_client $MOUNT || error "Unable to mount client"
1964         lctl set_param llite.$FSNAME-*.lazystatfs=0
1965
1966         multiop_bg_pause $MOUNT _f
1967         RC1=$?
1968         pid=$!
1969
1970         if [ $RC1 -ne 0 ]; then
1971                 log "multiop failed $RC1"
1972         else
1973             kill -USR1 $pid
1974             sleep $(( $TIMEOUT+1 ))
1975             kill -0 $pid
1976             [ $? -ne 0 ] && error "process isn't sleep"
1977             start_ost || error "Unable to start OST1"
1978             wait $pid || error "statfs failed"
1979         fi
1980
1981         umount_client $MOUNT || error "Unable to unmount client"
1982         stop_ost || error "Unable to stop OST1"
1983         stop_mds || error "Unable to stop MDS"
1984 }
1985 run_test 50e "normal statfs all servers down =========================="
1986
1987 test_50f() {
1988         local RC1
1989         local pid
1990         CONN_PROC="osc.$FSNAME-OST0001-osc-[M]*.ost_server_uuid"
1991
1992         start_mds || error "Unable to start mds"
1993         #first client should see only one ost
1994         start_ost || error "Unable to start OST1"
1995         wait_osc_import_state mds ost FULL
1996
1997         start_ost2 || error "Unable to start OST2"
1998         wait_osc_import_state mds ost2 FULL
1999
2000         # Wait for client to detect down OST
2001         stop_ost2 || error "Unable to stop OST2"
2002
2003         wait_osc_import_state mds ost2 DISCONN
2004         mount_client $MOUNT || error "Unable to mount client"
2005         lctl set_param llite.$FSNAME-*.lazystatfs=0
2006
2007         multiop_bg_pause $MOUNT _f
2008         RC1=$?
2009         pid=$!
2010
2011         if [ $RC1 -ne 0 ]; then
2012                 log "lazystatfs multiop failed $RC1"
2013         else
2014             kill -USR1 $pid
2015             sleep $(( $TIMEOUT+1 ))
2016             kill -0 $pid
2017             [ $? -ne 0 ] && error "process isn't sleep"
2018             start_ost2 || error "Unable to start OST2"
2019             wait $pid || error "statfs failed"
2020             stop_ost2 || error "Unable to stop OST2"
2021         fi
2022
2023         umount_client $MOUNT || error "Unable to unmount client"
2024         stop_ost || error "Unable to stop OST1"
2025         stop_mds || error "Unable to stop MDS"
2026         writeconf
2027 }
2028 run_test 50f "normal statfs one server in down =========================="
2029
2030 test_51() {
2031         local LOCAL_TIMEOUT=20
2032
2033         reformat
2034         start_mds
2035         start_ost
2036         mount_client $MOUNT
2037         check_mount || return 1
2038
2039         mkdir $MOUNT/d1
2040         $LFS setstripe -c -1 $MOUNT/d1
2041         #define OBD_FAIL_MDS_REINT_DELAY         0x142
2042         do_facet $SINGLEMDS "lctl set_param fail_loc=0x142"
2043         touch $MOUNT/d1/f1 &
2044         local pid=$!
2045         sleep 2
2046         start_ost2 || return 2
2047         wait $pid
2048         stop_ost2 || return 3
2049         cleanup
2050 }
2051 run_test 51 "Verify that mdt_reint handles RMF_MDT_MD correctly when an OST is added"
2052
2053 copy_files_xattrs()
2054 {
2055         local node=$1
2056         local dest=$2
2057         local xattrs=$3
2058         shift 3
2059
2060         do_node $node mkdir -p $dest
2061         [ $? -eq 0 ] || { error "Unable to create directory"; return 1; }
2062
2063         do_node $node  'tar cf - '$@' | tar xf - -C '$dest';
2064                         [ \"\${PIPESTATUS[*]}\" = \"0 0\" ] || exit 1'
2065         [ $? -eq 0 ] || { error "Unable to tar files"; return 2; }
2066
2067         do_node $node 'getfattr -d -m "[a-z]*\\." '$@' > '$xattrs
2068         [ $? -eq 0 ] || { error "Unable to read xattrs"; return 3; }
2069 }
2070
2071 diff_files_xattrs()
2072 {
2073         local node=$1
2074         local backup=$2
2075         local xattrs=$3
2076         shift 3
2077
2078         local backup2=${TMP}/backup2
2079
2080         do_node $node mkdir -p $backup2
2081         [ $? -eq 0 ] || { error "Unable to create directory"; return 1; }
2082
2083         do_node $node  'tar cf - '$@' | tar xf - -C '$backup2';
2084                         [ \"\${PIPESTATUS[*]}\" = \"0 0\" ] || exit 1'
2085         [ $? -eq 0 ] || { error "Unable to tar files to diff"; return 2; }
2086
2087         do_node $node "diff -rq $backup $backup2"
2088         [ $? -eq 0 ] || { error "contents differ"; return 3; }
2089
2090         local xattrs2=${TMP}/xattrs2
2091         do_node $node 'getfattr -d -m "[a-z]*\\." '$@' > '$xattrs2
2092         [ $? -eq 0 ] || { error "Unable to read xattrs to diff"; return 4; }
2093
2094         do_node $node "diff $xattrs $xattrs2"
2095         [ $? -eq 0 ] || { error "xattrs differ"; return 5; }
2096
2097         do_node $node "rm -rf $backup2 $xattrs2"
2098         [ $? -eq 0 ] || { error "Unable to delete temporary files"; return 6; }
2099 }
2100
2101 test_52() {
2102         start_mds
2103         [ $? -eq 0 ] || { error "Unable to start MDS"; return 1; }
2104         start_ost
2105         [ $? -eq 0 ] || { error "Unable to start OST1"; return 2; }
2106         mount_client $MOUNT
2107         [ $? -eq 0 ] || { error "Unable to mount client"; return 3; }
2108
2109         local nrfiles=8
2110         local ost1mnt=${MOUNT%/*}/ost1
2111         local ost1node=$(facet_active_host ost1)
2112         local ost1tmp=$TMP/conf52
2113
2114         mkdir -p $DIR/$tdir
2115         [ $? -eq 0 ] || { error "Unable to create tdir"; return 4; }
2116         touch $TMP/modified_first
2117         [ $? -eq 0 ] || { error "Unable to create temporary file"; return 5; }
2118         do_node $ost1node "mkdir -p $ost1tmp && touch $ost1tmp/modified_first"
2119         [ $? -eq 0 ] || { error "Unable to create temporary file"; return 6; }
2120         sleep 1
2121
2122         $LFS setstripe $DIR/$tdir -c -1 -s 1M
2123         [ $? -eq 0 ] || { error "lfs setstripe failed"; return 7; }
2124
2125         for (( i=0; i < nrfiles; i++ )); do
2126                 multiop $DIR/$tdir/$tfile-$i Ow1048576w1048576w524288c
2127                 [ $? -eq 0 ] || { error "multiop failed"; return 8; }
2128                 echo -n .
2129         done
2130         echo
2131
2132         # backup files
2133         echo backup files to $TMP/files
2134         local files=$(find $DIR/$tdir -type f -newer $TMP/modified_first)
2135         copy_files_xattrs `hostname` $TMP/files $TMP/file_xattrs $files
2136         [ $? -eq 0 ] || { error "Unable to copy files"; return 9; }
2137
2138         umount_client $MOUNT
2139         [ $? -eq 0 ] || { error "Unable to umount client"; return 10; }
2140         stop_ost
2141         [ $? -eq 0 ] || { error "Unable to stop ost1"; return 11; }
2142
2143         echo mount ost1 as ldiskfs
2144         do_node $ost1node mount -t $FSTYPE $ost1_dev $ost1mnt $OST_MOUNT_OPTS
2145         [ $? -eq 0 ] || { error "Unable to mount ost1 as ldiskfs"; return 12; }
2146
2147         # backup objects
2148         echo backup objects to $ost1tmp/objects
2149         local objects=$(do_node $ost1node 'find '$ost1mnt'/O/0 -type f -size +0'\
2150                         '-newer '$ost1tmp'/modified_first -regex ".*\/[0-9]+"')
2151         copy_files_xattrs $ost1node $ost1tmp/objects $ost1tmp/object_xattrs $objects
2152         [ $? -eq 0 ] || { error "Unable to copy objects"; return 13; }
2153
2154         # move objects to lost+found
2155         do_node $ost1node 'mv '$objects' '${ost1mnt}'/lost+found'
2156         [ $? -eq 0 ] || { error "Unable to move objects"; return 14; }
2157
2158         # recover objects
2159         do_node $ost1node "ll_recover_lost_found_objs -d $ost1mnt/lost+found"
2160         [ $? -eq 0 ] || { error "ll_recover_lost_found_objs failed"; return 15; }
2161
2162         # compare restored objects against saved ones
2163         diff_files_xattrs $ost1node $ost1tmp/objects $ost1tmp/object_xattrs $objects
2164         [ $? -eq 0 ] || { error "Unable to diff objects"; return 16; }
2165
2166         do_node $ost1node "umount $ost1_dev"
2167         [ $? -eq 0 ] || { error "Unable to umount ost1 as ldiskfs"; return 17; }
2168
2169         start_ost
2170         [ $? -eq 0 ] || { error "Unable to start ost1"; return 18; }
2171         mount_client $MOUNT
2172         [ $? -eq 0 ] || { error "Unable to mount client"; return 19; }
2173
2174         # compare files
2175         diff_files_xattrs `hostname` $TMP/files $TMP/file_xattrs $files
2176         [ $? -eq 0 ] || { error "Unable to diff files"; return 20; }
2177
2178         rm -rf $TMP/files $TMP/file_xattrs
2179         [ $? -eq 0 ] || { error "Unable to delete temporary files"; return 21; }
2180         do_node $ost1node "rm -rf $ost1tmp"
2181         [ $? -eq 0 ] || { error "Unable to delete temporary files"; return 22; }
2182         cleanup
2183 }
2184 run_test 52 "check recovering objects from lost+found"
2185
2186 cleanup_gss
2187 equals_msg `basename $0`: test complete
2188 [ -f "$TESTSUITELOG" ] && cat $TESTSUITELOG && grep -q FAIL $TESTSUITELOG && exit 1 || true