Whamcloud - gitweb
b=13174
[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 # These tests don't apply to mountconf
15 MOUNTCONFSKIP="10 11 12 13 13b 14 15"
16 # bug number for skipped test: 13739 
17 HEAD_EXCEPT="                  32a 32b "
18
19 # bug number for skipped test:                                  14957 14731 12743 
20 ALWAYS_EXCEPT=" $CONF_SANITY_EXCEPT $MOUNTCONFSKIP $HEAD_EXCEPT 23a   33a   36    "
21 # UPDATE THE COMMENT ABOVE WITH BUG NUMBERS WHEN CHANGING ALWAYS_EXCEPT!
22
23 SRCDIR=`dirname $0`
24 PATH=$PWD/$SRCDIR:$SRCDIR:$SRCDIR/../utils:$PATH
25
26 PTLDEBUG=${PTLDEBUG:--1}
27 SAVE_PWD=$PWD
28 LUSTRE=${LUSTRE:-`dirname $0`/..}
29 RLUSTRE=${RLUSTRE:-$LUSTRE}
30 MOUNTLUSTRE=${MOUNTLUSTRE:-/sbin/mount.lustre}
31 MKFSLUSTRE=${MKFSLUSTRE:-/usr/sbin/mkfs.lustre}
32 HOSTNAME=`hostname`
33
34 . $LUSTRE/tests/test-framework.sh
35 init_test_env $@
36 # use small MDS + OST size to speed formatting time
37 MDSSIZE=40000
38 OSTSIZE=40000
39 . ${CONFIG:=$LUSTRE/tests/cfg/local.sh}
40
41 #
42 [ "$SLOW" = "no" ] && EXCEPT_SLOW="0 1 2 3 6 7 15 18 24b 25 30 31 32 33 34a "
43
44 reformat() {
45         formatall
46 }
47
48 writeconf() {
49     local facet=mds
50     shift
51     stop ${facet} -f
52     rm -f ${facet}active
53     # who knows if/where $TUNEFS is installed?  Better reformat if it fails...
54     do_facet ${facet} "$TUNEFS --writeconf $MDSDEV" || echo "tunefs failed, reformatting instead" && reformat
55 }
56
57 gen_config() {
58         reformat
59         # The MGS must be started before the OSTs for a new fs, so start
60         # and stop to generate the startup logs. 
61         start_mds
62         start_ost
63         sleep 5
64         stop_ost
65         stop_mds
66 }
67
68 start_mds() {
69         echo "start mds service on `facet_active_host mds`"
70         start mds $MDSDEV $MDS_MOUNT_OPTS || return 94
71 }
72
73 stop_mds() {
74         echo "stop mds service on `facet_active_host mds`"
75         # These tests all use non-failover stop
76         stop mds -f  || return 97
77 }
78
79 start_ost() {
80         echo "start ost1 service on `facet_active_host ost1`"
81         start ost1 `ostdevname 1` $OST_MOUNT_OPTS || return 95
82 }
83
84 stop_ost() {
85         echo "stop ost1 service on `facet_active_host ost1`"
86         # These tests all use non-failover stop
87         stop ost1 -f  || return 98
88 }
89
90 start_ost2() {
91         echo "start ost2 service on `facet_active_host ost2`"
92         start ost2 `ostdevname 2` $OST_MOUNT_OPTS || return 92
93 }
94
95 stop_ost2() {
96         echo "stop ost2 service on `facet_active_host ost2`"
97         # These tests all use non-failover stop
98         stop ost2 -f  || return 93
99 }
100
101 mount_client() {
102         local MOUNTPATH=$1
103         echo "mount $FSNAME on ${MOUNTPATH}....."
104         zconf_mount `hostname` $MOUNTPATH  || return 96
105 }
106
107 remount_client() {
108         local SAVEMOUNTOPT=$MOUNTOPT
109         MOUNTOPT="remount,$1"
110         local MOUNTPATH=$2
111         echo "remount '$1' lustre on ${MOUNTPATH}....."
112         zconf_mount `hostname`  $MOUNTPATH  || return 96
113         MOUNTOPT=$SAVEMOUNTOPT
114 }
115
116 umount_client() {
117         local MOUNTPATH=$1
118         echo "umount lustre on ${MOUNTPATH}....."
119         zconf_umount `hostname` $MOUNTPATH || return 97
120 }
121
122 manual_umount_client(){
123         echo "manual umount lustre on ${MOUNT}...."
124         do_facet client "umount -d $MOUNT"
125 }
126
127 setup() {
128         start_ost
129         start_mds
130         mount_client $MOUNT
131 }
132
133 cleanup_nocli() {
134         stop_mds || return 201
135         stop_ost || return 202
136         unload_modules || return 203
137 }
138
139 cleanup() {
140         umount_client $MOUNT || return 200
141         cleanup_nocli || return $?
142 }
143
144 check_mount() {
145         do_facet client "cp /etc/passwd $DIR/a" || return 71
146         do_facet client "rm $DIR/a" || return 72
147         # make sure lustre is actually mounted (touch will block, 
148         # but grep won't, so do it after) 
149         do_facet client "grep $MOUNT' ' /proc/mounts > /dev/null" || return 73
150         echo "setup single mount lustre success"
151 }
152
153 check_mount2() {
154         do_facet client "touch $DIR/a" || return 71     
155         do_facet client "rm $DIR/a" || return 72        
156         do_facet client "touch $DIR2/a" || return 73    
157         do_facet client "rm $DIR2/a" || return 74       
158         echo "setup double mount lustre success"
159 }
160
161 build_test_filter
162
163 if [ "$ONLY" == "setup" ]; then
164         setup
165         exit
166 fi
167
168 if [ "$ONLY" == "cleanup" ]; then
169         cleanup
170         exit
171 fi
172
173 #create single point mountpoint
174
175 gen_config
176
177 init_gss
178
179 test_0() {
180         setup
181         check_mount || return 41
182         cleanup || return $?
183 }
184 run_test 0 "single mount setup"
185
186 test_1() {
187         start_ost
188         echo "start ost second time..."
189         setup
190         check_mount || return 42
191         cleanup || return $?
192 }
193 run_test 1 "start up ost twice (should return errors)"
194
195 test_2() {
196         start_ost
197         start_mds       
198         echo "start mds second time.."
199         start_mds
200         mount_client $MOUNT
201         check_mount || return 43
202         cleanup || return $?
203 }
204 run_test 2 "start up mds twice (should return err)"
205
206 test_3() {
207         setup
208         #mount.lustre returns an error if already in mtab
209         mount_client $MOUNT && return $?
210         check_mount || return 44
211         cleanup || return $?
212 }
213 run_test 3 "mount client twice (should return err)"
214
215 test_4() {
216         setup
217         touch $DIR/$tfile || return 85
218         stop_ost -f
219         cleanup
220         eno=$?
221         # ok for ost to fail shutdown
222         if [ 202 -ne $eno ]; then
223                 return $eno;
224         fi
225         return 0
226 }
227 run_test 4 "force cleanup ost, then cleanup"
228
229 test_5a() {     # was test_5
230         setup
231         touch $DIR/$tfile || return 1
232         stop_mds -f || return 2
233
234         # cleanup may return an error from the failed
235         # disconnects; for now I'll consider this successful
236         # if all the modules have unloaded.
237         umount -d $MOUNT &
238         UMOUNT_PID=$!
239         sleep 6
240         echo "killing umount"
241         kill -TERM $UMOUNT_PID
242         echo "waiting for umount to finish"
243         wait $UMOUNT_PID
244         if grep " $MOUNT " /etc/mtab; then
245                 echo "test 5: mtab after failed umount"
246                 umount $MOUNT &
247                 UMOUNT_PID=$!
248                 sleep 2
249                 echo "killing umount"
250                 kill -TERM $UMOUNT_PID
251                 echo "waiting for umount to finish"
252                 wait $UMOUNT_PID
253                 grep " $MOUNT " /etc/mtab && echo "test 5: mtab after second umount" && return 11
254         fi
255
256         manual_umount_client
257         # stop_mds is a no-op here, and should not fail
258         cleanup_nocli || return $?
259         # df may have lingering entry
260         manual_umount_client
261         # mtab may have lingering entry
262         local WAIT=0
263         local MAX_WAIT=20
264         local sleep=1
265         while [ "$WAIT" -ne "$MAX_WAIT" ]; do
266                 sleep $sleep
267                 grep -q $MOUNT" " /etc/mtab || break
268                 echo "Waiting /etc/mtab updated ... "
269                 WAIT=$(( WAIT + sleep))
270         done
271         [ "$WAIT" -eq "$MAX_WAIT" ] && error "/etc/mtab is not updated in $WAIT secs"
272         echo "/etc/mtab updated in $WAIT secs"
273 }
274 run_test 5a "force cleanup mds, then cleanup"
275
276 test_5b() {
277         start_ost
278         [ -d $MOUNT ] || mkdir -p $MOUNT
279         grep " $MOUNT " /etc/mtab && echo "test 5b: mtab before mount" && return 10
280         mount_client $MOUNT && return 1
281         grep " $MOUNT " /etc/mtab && echo "test 5b: mtab after failed mount" && return 11
282         umount_client $MOUNT    
283         # stop_mds is a no-op here, and should not fail
284         cleanup_nocli || return $?
285         return 0
286 }
287 run_test 5b "mds down, cleanup after failed mount (bug 2712) (should return errs)"
288
289 test_5c() {
290         start_ost
291         start_mds
292         [ -d $MOUNT ] || mkdir -p $MOUNT
293         grep " $MOUNT " /etc/mtab && echo "test 5c: mtab before mount" && return 10
294         local oldfs="${FSNAME}"
295         FSNAME="wrong.${FSNAME}"
296         mount_client $MOUNT || :
297         FSNAME=${oldfs}
298         grep " $MOUNT " /etc/mtab && echo "test 5c: mtab after failed mount" && return 11
299         umount_client $MOUNT
300         cleanup_nocli  || return $?
301 }
302 run_test 5c "cleanup after failed mount (bug 2712) (should return errs)"
303
304 test_5d() {
305         start_ost
306         start_mds
307         stop_ost -f
308         grep " $MOUNT " /etc/mtab && echo "test 5d: mtab before mount" && return 10
309         mount_client $MOUNT || return 1
310         cleanup  || return $?
311         grep " $MOUNT " /etc/mtab && echo "test 5d: mtab after unmount" && return 11
312         return 0
313 }
314 run_test 5d "mount with ost down"
315
316 test_5e() {
317         start_ost
318         start_mds
319
320 #define OBD_FAIL_PTLRPC_DELAY_SEND       0x506
321         do_facet client "sysctl -w lustre.fail_loc=0x80000506"
322         grep " $MOUNT " /etc/mtab && echo "test 5e: mtab before mount" && return 10
323         mount_client $MOUNT || echo "mount failed (not fatal)"
324         cleanup  || return $?
325         grep " $MOUNT " /etc/mtab && echo "test 5e: mtab after unmount" && return 11
326         return 0
327 }
328 run_test 5e "delayed connect, don't crash (bug 10268)"
329
330 test_6() {
331         setup
332         manual_umount_client
333         mount_client ${MOUNT} || return 87
334         touch $DIR/a || return 86
335         cleanup  || return $?
336 }
337 run_test 6 "manual umount, then mount again"
338
339 test_7() {
340         setup
341         manual_umount_client
342         cleanup_nocli || return $?
343 }
344 run_test 7 "manual umount, then cleanup"
345
346 test_8() {
347         setup
348         mount_client $MOUNT2
349         check_mount2 || return 45
350         umount_client $MOUNT2
351         cleanup  || return $?
352 }
353 run_test 8 "double mount setup"
354
355 test_9() {
356         start_ost
357
358         do_facet ost1 sysctl lnet.debug=\'inode trace\' || return 1
359         do_facet ost1 sysctl lnet.subsystem_debug=\'mds ost\' || return 1
360
361         CHECK_PTLDEBUG="`do_facet ost1 sysctl -n lnet.debug`"
362         if [ "$CHECK_PTLDEBUG" ] && [ "$CHECK_PTLDEBUG" = "trace inode" ];then
363            echo "lnet.debug success"
364         else
365            echo "lnet.debug: want 'trace inode', have '$CHECK_PTLDEBUG'"
366            return 1
367         fi
368         CHECK_SUBSYS="`do_facet ost1 sysctl -n lnet.subsystem_debug`"
369         if [ "$CHECK_SUBSYS" ] && [ "$CHECK_SUBSYS" = "mds ost" ]; then
370            echo "lnet.subsystem_debug success"
371         else
372            echo "lnet.subsystem_debug: want 'mds ost', have '$CHECK_SUBSYS'"
373            return 1
374         fi
375         stop_ost || return $?
376 }
377
378 run_test 9 "test ptldebug and subsystem for mkfs"
379
380 test_10() {
381         echo "generate configuration with the same name for node and mds"
382         OLDXMLCONFIG=$XMLCONFIG
383         XMLCONFIG="broken.xml"
384         [ -f "$XMLCONFIG" ] && rm -f $XMLCONFIG
385         facet="mds"
386         rm -f ${facet}active
387         add_facet $facet
388         echo "the name for node and mds is the same"
389         do_lmc --add mds --node ${facet}_facet --mds ${facet}_facet \
390             --dev $MDSDEV --size $MDSSIZE || return $?
391         do_lmc --add lov --mds ${facet}_facet --lov lov1 --stripe_sz \
392             $STRIPE_BYTES --stripe_cnt $STRIPES_PER_OBJ \
393             --stripe_pattern 0 || return $?
394         add_ost ost --lov lov1 --dev $OSTDEV --size $OSTSIZE
395         facet="client"
396         add_facet $facet --lustre_upcall $UPCALL
397         do_lmc --add mtpt --node ${facet}_facet --mds mds_facet \
398             --lov lov1 --path $MOUNT
399
400         echo "mount lustre"
401         start_ost
402         start_mds
403         mount_client $MOUNT
404         check_mount || return 41
405         cleanup || return $?
406
407         echo "Success!"
408         XMLCONFIG=$OLDXMLCONFIG
409 }
410 run_test 10 "mount lustre with the same name for node and mds"
411
412 test_11() {
413         OLDXMLCONFIG=$XMLCONFIG
414         XMLCONFIG="conf11.xml"
415
416         [ -f "$XMLCONFIG" ] && rm -f $XMLCONFIG
417         add_mds mds --dev $MDSDEV --size $MDSSIZE
418         add_ost ost --dev $OSTDEV --size $OSTSIZE
419         add_client client mds --path $MOUNT --ost ost_svc || return $?
420         echo "Default lov config success!"
421
422         [ -f "$XMLCONFIG" ] && rm -f $XMLCONFIG
423         add_mds mds --dev $MDSDEV --size $MDSSIZE
424         add_ost ost --dev $OSTDEV --size $OSTSIZE
425         add_client client mds --path $MOUNT && return $?
426         echo "--add mtpt with neither --lov nor --ost will return error"
427
428         echo ""
429         echo "Success!"
430         XMLCONFIG=$OLDXMLCONFIG
431 }
432 run_test 11 "use default lov configuration (should return error)"
433
434 test_12() {
435         OLDXMLCONFIG=$XMLCONFIG
436         XMLCONFIG="batch.xml"
437         BATCHFILE="batchfile"
438
439         # test double quote
440         [ -f "$XMLCONFIG" ] && rm -f $XMLCONFIG
441         [ -f "$BATCHFILE" ] && rm -f $BATCHFILE
442         echo "--add net --node $HOSTNAME --nid $HOSTNAME --nettype tcp" > $BATCHFILE
443         echo "--add mds --node $HOSTNAME --mds mds1 --mkfsoptions \"-I 128\"" >> $BATCHFILE
444         # --mkfsoptions "-I 128"
445         do_lmc -m $XMLCONFIG --batch $BATCHFILE || return $?
446         if [ `sed -n '/>-I 128</p' $XMLCONFIG | wc -l` -eq 1 ]; then
447                 echo "matched double quote success"
448         else
449                 echo "matched double quote fail"
450                 return 1
451         fi
452         rm -f $XMLCONFIG
453         rm -f $BATCHFILE
454         echo "--add net --node $HOSTNAME --nid $HOSTNAME --nettype tcp" > $BATCHFILE
455         echo "--add mds --node $HOSTNAME --mds mds1 --mkfsoptions \"-I 128" >> $BATCHFILE
456         # --mkfsoptions "-I 128
457         do_lmc -m $XMLCONFIG --batch $BATCHFILE && return $?
458         echo "unmatched double quote should return error"
459
460         # test single quote
461         rm -f $BATCHFILE
462         echo "--add net --node $HOSTNAME --nid $HOSTNAME --nettype tcp" > $BATCHFILE
463         echo "--add mds --node $HOSTNAME --mds mds1 --mkfsoptions '-I 128'" >> $BATCHFILE
464         # --mkfsoptions '-I 128'
465         do_lmc -m $XMLCONFIG --batch $BATCHFILE || return $?
466         if [ `sed -n '/>-I 128</p' $XMLCONFIG | wc -l` -eq 1 ]; then
467                 echo "matched single quote success"
468         else
469                 echo "matched single quote fail"
470                 return 1
471         fi
472         rm -f $XMLCONFIG
473         rm -f $BATCHFILE
474         echo "--add net --node $HOSTNAME --nid $HOSTNAME --nettype tcp" > $BATCHFILE
475         echo "--add mds --node $HOSTNAME --mds mds1 --mkfsoptions '-I 128" >> $BATCHFILE
476         # --mkfsoptions '-I 128
477         do_lmc -m $XMLCONFIG --batch $BATCHFILE && return $?
478         echo "unmatched single quote should return error"
479
480         # test backslash
481         rm -f $BATCHFILE
482         echo "--add net --node $HOSTNAME --nid $HOSTNAME --nettype tcp" > $BATCHFILE
483         echo "--add mds --node $HOSTNAME --mds mds1 --mkfsoptions \-\I\ \128" >> $BATCHFILE
484         # --mkfsoptions \-\I\ \128
485         do_lmc -m $XMLCONFIG --batch $BATCHFILE || return $?
486         if [ `sed -n '/>-I 128</p' $XMLCONFIG | wc -l` -eq 1 ]; then
487                 echo "backslash followed by a whitespace/letter success"
488         else
489                 echo "backslash followed by a whitespace/letter fail"
490                 return 1
491         fi
492         rm -f $XMLCONFIG
493         rm -f $BATCHFILE
494         echo "--add net --node $HOSTNAME --nid $HOSTNAME --nettype tcp" > $BATCHFILE
495         echo "--add mds --node $HOSTNAME --mds mds1 --mkfsoptions -I\ 128\\" >> $BATCHFILE
496         # --mkfsoptions -I\ 128\
497         do_lmc -m $XMLCONFIG --batch $BATCHFILE && return $?
498         echo "backslash followed by nothing should return error"
499
500         rm -f $BATCHFILE
501         XMLCONFIG=$OLDXMLCONFIG
502 }
503 run_test 12 "lmc --batch, with single/double quote, backslash in batchfile"
504
505 test_13() {
506         OLDXMLCONFIG=$XMLCONFIG
507         XMLCONFIG="conf13-1.xml"
508
509         # check long uuid will be truncated properly and uniquely
510         echo "To generate XML configuration file(with long ost name): $XMLCONFIG"
511         [ -f "$XMLCONFIG" ] && rm -f $XMLCONFIG
512         do_lmc --add net --node $HOSTNAME --nid $HOSTNAME --nettype tcp
513         do_lmc --add mds --node $HOSTNAME --mds mds1_name_longer_than_31characters
514         do_lmc --add mds --node $HOSTNAME --mds mds2_name_longer_than_31characters
515         if [ ! -f "$XMLCONFIG" ]; then
516                 echo "Error:no file $XMLCONFIG created!"
517                 return 1
518         fi
519         EXPECTEDMDS1UUID="e_longer_than_31characters_UUID"
520         EXPECTEDMDS2UUID="longer_than_31characters_UUID_2"
521         FOUNDMDS1UUID=`awk -F"'" '/<mds .*uuid=/' $XMLCONFIG | sed -n '1p' \
522                        | sed "s/ /\n\r/g" | awk -F"'" '/uuid=/{print $2}'`
523         FOUNDMDS2UUID=`awk -F"'" '/<mds .*uuid=/' $XMLCONFIG | sed -n '2p' \
524                        | sed "s/ /\n\r/g" | awk -F"'" '/uuid=/{print $2}'`
525         [ -z "$FOUNDMDS1UUID" ] && echo "MDS1 UUID empty" && return 1
526         [ -z "$FOUNDMDS2UUID" ] && echo "MDS2 UUID empty" && return 1
527         if ([ $EXPECTEDMDS1UUID = $FOUNDMDS1UUID ] && [ $EXPECTEDMDS2UUID = $FOUNDMDS2UUID ]) || \
528            ([ $EXPECTEDMDS1UUID = $FOUNDMDS2UUID ] && [ $EXPECTEDMDS2UUID = $FOUNDMDS1UUID ]); then
529                 echo "Success:long uuid truncated successfully and being unique."
530         else
531                 echo "Error:expected uuid for mds1 and mds2: $EXPECTEDMDS1UUID; $EXPECTEDMDS2UUID"
532                 echo "but:     found uuid for mds1 and mds2: $FOUNDMDS1UUID; $FOUNDMDS2UUID"
533                 return 1
534         fi
535         rm -f $XMLCONFIG
536         XMLCONFIG=$OLDXMLCONFIG
537 }
538 run_test 13 "check new_uuid of lmc operating correctly"
539
540 test_13b() {
541         OLDXMLCONFIG=$XMLCONFIG
542         XMLCONFIG="conf13-1.xml"
543         SECONDXMLCONFIG="conf13-2.xml"
544         # check multiple invocations for lmc generate same XML configuration file
545         rm -f $XMLCONFIG
546         echo "Generate the first XML configuration file"
547         gen_config
548         echo "mv $XMLCONFIG to $SECONDXMLCONFIG"
549         sed -e "s/mtime[^ ]*//" $XMLCONFIG > $SECONDXMLCONFIG || return $?
550         echo "Generate the second XML configuration file"
551         gen_config
552         # don't compare .xml mtime, it will always be different
553         if [ `sed -e "s/mtime[^ ]*//" $XMLCONFIG | diff - $SECONDXMLCONFIG | wc -l` -eq 0 ]; then
554                 echo "Success:multiple invocations for lmc generate same XML file"
555         else
556                 echo "Error: multiple invocations for lmc generate different XML file"
557                 return 1
558         fi
559
560         rm -f $XMLCONFIG $SECONDXMLCONFIG
561         XMLCONFIG=$OLDXMLCONFIG
562 }
563 run_test 13b "check lmc generates consistent .xml file"
564
565 test_14() {
566         rm -f $XMLCONFIG
567
568         # create xml file with --mkfsoptions for ost
569         echo "create xml file with --mkfsoptions for ost"
570         add_mds mds --dev $MDSDEV --size $MDSSIZE
571         add_lov lov1 mds --stripe_sz $STRIPE_BYTES\
572             --stripe_cnt $STRIPES_PER_OBJ --stripe_pattern 0
573         add_ost ost --lov lov1 --dev $OSTDEV --size $OSTSIZE \
574             --mkfsoptions "-Llabel_conf_14"
575         add_client client mds --lov lov1 --path $MOUNT
576
577         FOUNDSTRING=`awk -F"<" '/<mkfsoptions>/{print $2}' $XMLCONFIG`
578         EXPECTEDSTRING="mkfsoptions>-Llabel_conf_14"
579         if [ "$EXPECTEDSTRING" != "$FOUNDSTRING" ]; then
580                 echo "Error: expected: $EXPECTEDSTRING; found: $FOUNDSTRING"
581                 return 1
582         fi
583         echo "Success:mkfsoptions for ost written to xml file correctly."
584
585         # mount lustre to test lconf mkfsoptions-parsing
586         echo "mount lustre"
587         start_ost
588         start_mds
589         mount_client $MOUNT || return $?
590         if [ -z "`do_facet ost1 dumpe2fs -h $OSTDEV | grep label_conf_14`" ]; then
591                 echo "Error: the mkoptions not applied to mke2fs of ost."
592                 return 1
593         fi
594         cleanup
595         echo "lconf mkfsoptions for ost success"
596
597         gen_config
598 }
599 run_test 14 "test mkfsoptions of ost for lmc and lconf"
600
601 cleanup_15() {
602         trap 0
603         [ -f $MOUNTLUSTRE ] && echo "remove $MOUNTLUSTRE" && rm -f $MOUNTLUSTRE
604         if [ -f $MOUNTLUSTRE.sav ]; then
605                 echo "return original $MOUNTLUSTRE.sav to $MOUNTLUSTRE"
606                 mv $MOUNTLUSTRE.sav $MOUNTLUSTRE
607         fi
608 }
609
610 # this only tests the kernel mount command, not anything about lustre.
611 test_15() {
612         MOUNTLUSTRE=${MOUNTLUSTRE:-/sbin/mount.lustre}
613         start_ost
614         start_mds
615
616         echo "mount lustre on ${MOUNT} without $MOUNTLUSTRE....."
617         if [ -f "$MOUNTLUSTRE" ]; then
618                 echo "save $MOUNTLUSTRE to $MOUNTLUSTRE.sav"
619                 mv $MOUNTLUSTRE $MOUNTLUSTRE.sav && trap cleanup_15 EXIT INT
620                 if [ -f $MOUNTLUSTRE ]; then
621                         skip "$MOUNTLUSTRE cannot be moved, skipping test"
622                         return 0
623                 fi
624         fi
625
626         mount_client $MOUNT && error "mount succeeded" && return 1
627         echo "mount lustre on $MOUNT without $MOUNTLUSTRE failed as expected"
628         cleanup_15
629         cleanup || return $?
630 }
631 run_test 15 "zconf-mount without /sbin/mount.lustre (should return error)"
632
633 # LOGS/PENDING do not exist anymore since CMD3
634 test_16() {
635         TMPMTPT="${MOUNT%/*}/conf16"
636
637         if [ ! -e "$MDSDEV" ]; then
638             log "no $MDSDEV existing, so mount Lustre to create one"
639             setup
640             check_mount || return 41
641             cleanup || return $?
642         fi
643
644         [ -f "$MDSDEV" ] && LOOPOPT="-o loop"
645
646         log "change the mode of $MDSDEV/OBJECTS to 555"
647         do_facet mds "mkdir -p $TMPMTPT &&
648                       mount $LOOPOPT -t $FSTYPE $MDSDEV $TMPMTPT &&
649                       chmod 555 $TMPMTPT/OBJECTS &&
650                       umount $TMPMTPT" || return $?
651
652         log "mount Lustre to change the mode of OBJECTS, then umount Lustre"
653         setup
654         check_mount || return 41
655         cleanup || return $?
656
657         log "read the mode of OBJECTS and check if they has been changed properly"
658         EXPECTEDOBJECTSMODE=`do_facet mds "debugfs -R 'stat OBJECTS' $MDSDEV 2> /dev/null" | grep 'Mode: ' | sed -e "s/.*Mode: *//" -e "s/ *Flags:.*//"`
659
660         if [ "$EXPECTEDOBJECTSMODE" = "0777" ]; then
661                 log "Success:Lustre change the mode of OBJECTS correctly"
662         else
663                 error "Lustre does not change mode of OBJECTS properly"
664         fi
665 }
666 run_test 16 "verify that lustre will correct the mode of OBJECTS"
667
668 test_17() {
669         if [ ! -e "$MDSDEV" ]; then
670             echo "no $MDSDEV existing, so mount Lustre to create one"
671             setup
672             check_mount || return 41
673             cleanup || return $?
674         fi
675
676         echo "Remove mds config log"
677         do_facet mds "debugfs -w -R 'unlink CONFIGS/$FSNAME-MDT0000' $MDSDEV || return \$?" || return $?
678
679         start_ost
680         start_mds && return 42
681         gen_config
682 }
683 run_test 17 "Verify failed mds_postsetup won't fail assertion (2936) (should return errs)"
684
685 test_18() {
686         [ -f $MDSDEV ] && echo "remove $MDSDEV" && rm -f $MDSDEV
687         echo "mount mds with large journal..."
688         local myMDSSIZE=2000000
689         OLD_MDS_MKFS_OPTS=$MDS_MKFS_OPTS
690
691         MDS_MKFS_OPTS="--mgs --mdt --fsname=$FSNAME --device-size=$myMDSSIZE --param sys.timeout=$TIMEOUT $MDSOPT"
692
693         gen_config
694         echo "mount lustre system..."
695         setup
696         check_mount || return 41
697
698         echo "check journal size..."
699         FOUNDSIZE=`do_facet mds "debugfs -c -R 'stat <8>' $MDSDEV" | awk '/Size: / { print $NF; exit;}'`
700         if [ $FOUNDSIZE -gt $((32 * 1024 * 1024)) ]; then
701                 log "Success: mkfs creates large journals. Size: $((FOUNDSIZE >> 20))M"
702         else
703                 error "expected journal size > 32M, found $((FOUNDSIZE >> 20))M"
704         fi
705
706         cleanup || return $?
707
708         MDS_MKFS_OPTS=$OLD_MDS_MKFS_OPTS
709         gen_config
710 }
711 run_test 18 "check mkfs creates large journals"
712
713 test_19a() {
714         start_mds || return 1
715         stop_mds -f || return 2
716 }
717 run_test 19a "start/stop MDS without OSTs"
718
719 test_19b() {
720         start_ost || return 1
721         stop_ost -f || return 2
722 }
723 run_test 19b "start/stop OSTs without MDS"
724
725 test_20() {
726         # first format the ost/mdt
727         start_ost
728         start_mds
729         mount_client $MOUNT
730         check_mount || return 43
731         rm -f $DIR/$tfile
732         remount_client ro $MOUNT || return 44
733         touch $DIR/$tfile && echo "$DIR/$tfile created incorrectly" && return 45
734         [ -e $DIR/$tfile ] && echo "$DIR/$tfile exists incorrectly" && return 46
735         remount_client rw $MOUNT || return 47
736         touch $DIR/$tfile
737         [ ! -f $DIR/$tfile ] && echo "$DIR/$tfile missing" && return 48
738         MCNT=`grep -c $MOUNT /etc/mtab`
739         [ "$MCNT" -ne 1 ] && echo "$MOUNT in /etc/mtab $MCNT times" && return 49
740         umount_client $MOUNT
741         stop_mds
742         stop_ost
743 }
744 run_test 20 "remount ro,rw mounts work and doesn't break /etc/mtab"
745
746 test_21a() {
747         start_mds
748         start_ost
749         stop_ost
750         stop_mds
751 }
752 run_test 21a "start mds before ost, stop ost first"
753
754 test_21b() {
755         start_ost
756         start_mds
757         stop_mds
758         stop_ost
759 }
760 run_test 21b "start ost before mds, stop mds first"
761
762 test_21c() {
763         start_ost
764         start_mds
765         start_ost2
766         stop_ost
767         stop_ost2
768         stop_mds
769 }
770 run_test 21c "start mds between two osts, stop mds last"
771
772 test_22() {
773         #reformat to remove all logs
774         reformat
775         start_mds
776         echo Client mount before any osts are in the logs
777         mount_client $MOUNT
778         check_mount && return 41
779         pass
780
781         echo Client mount with ost in logs, but none running
782         start_ost
783         stop_ost
784         mount_client $MOUNT
785         # check_mount will block trying to contact ost
786         umount_client $MOUNT
787         pass
788
789         echo Client mount with a running ost
790         start_ost
791         mount_client $MOUNT
792         check_mount || return 41
793         pass
794
795         cleanup
796 }
797 run_test 22 "start a client before osts (should return errs)"
798
799 test_23a() {    # was test_23
800         setup
801         # fail mds
802         stop mds   
803         # force down client so that recovering mds waits for reconnect
804         zconf_umount `hostname` $MOUNT -f
805         # enter recovery on mds
806         start_mds
807         # try to start a new client
808         mount_client $MOUNT &
809         MOUNT_PID=$!
810         sleep 5
811         MOUNT_LUSTRE_PID=`ps -ef | grep mount.lustre | grep -v grep | awk '{print $2}'`
812         echo mount pid is ${MOUNT_PID}, mount.lustre pid is ${MOUNT_LUSTRE_PID}
813         ps --ppid $MOUNT_PID
814         ps --ppid $MOUNT_LUSTRE_PID
815         # FIXME why o why can't I kill these? Manual "ctrl-c" works...
816         kill -TERM $MOUNT_PID
817         echo "waiting for mount to finish"
818         ps -ef | grep mount
819         wait $MOUNT_PID
820
821         stop_mds
822         stop_ost
823 }
824 run_test 23a "interrupt client during recovery mount delay"
825
826 fs2mds_HOST=$mds_HOST
827 fs2ost_HOST=$ost_HOST
828
829 cleanup_24a() {
830         trap 0
831         echo "umount $MOUNT2 ..."
832         umount $MOUNT2 || true
833         echo "stopping fs2mds ..."
834         stop fs2mds -f || true
835         echo "stopping fs2ost ..."
836         stop fs2ost -f || true
837 }
838
839 test_24a() {
840         #set up fs1 
841         gen_config
842         #set up fs2
843         [ -n "$ost1_HOST" ] && fs2ost_HOST=$ost1_HOST
844         if [ -z "$fs2ost_DEV" -o -z "$fs2mds_DEV" ]; then
845                 do_facet $SINGLEMDS [ -b "$MDSDEV" ] && \
846                 skip "mixed loopback and real device not working" && return
847         fi
848
849         local fs2mdsdev=${fs2mds_DEV:-${MDSDEV}_2}
850         local fs2ostdev=${fs2ost_DEV:-$(ostdevname 1)_2}
851
852         # test 8-char fsname as well
853         local FSNAME2=test1234
854         add fs2mds $MDS_MKFS_OPTS --fsname=${FSNAME2} --nomgs --mgsnode=$MGSNID --reformat $fs2mdsdev || exit 10
855
856         add fs2ost $OST_MKFS_OPTS --fsname=${FSNAME2} --reformat $fs2ostdev || exit 10
857
858         setup
859         start fs2mds $fs2mdsdev $MDS_MOUNT_OPTS && trap cleanup_24a EXIT INT
860         start fs2ost $fs2ostdev $OST_MOUNT_OPTS
861         mkdir -p $MOUNT2
862         mount -t lustre $MGSNID:/${FSNAME2} $MOUNT2 || return 1
863         # 1 still works
864         check_mount || return 2
865         # files written on 1 should not show up on 2
866         cp /etc/passwd $DIR/$tfile
867         sleep 10
868         [ -e $MOUNT2/$tfile ] && error "File bleed" && return 7
869         # 2 should work
870         sleep 5
871         cp /etc/passwd $MOUNT2/b || return 3
872         rm $MOUNT2/b || return 4
873         # 2 is actually mounted
874         grep $MOUNT2' ' /proc/mounts > /dev/null || return 5
875         # failover 
876         facet_failover fs2mds
877         facet_failover fs2ost
878         df
879         umount_client $MOUNT 
880         # the MDS must remain up until last MDT
881         stop_mds
882         MDS=$(do_facet $SINGLEMDS "cat $LPROC/devices" | awk '($3 ~ "mdt" && $4 ~ "MDT") { print $4 }')
883         [ -z "$MDS" ] && error "No MDT" && return 8
884         cleanup_24a
885         cleanup_nocli || return 6
886 }
887 run_test 24a "Multiple MDTs on a single node"
888
889 test_24b() {
890         if [ -z "$fs2mds_DEV" ]; then
891                 do_facet $SINGLEMDS [ -b "$MDSDEV" ] && \
892                 skip "mixed loopback and real device not working" && return
893         fi
894
895         local fs2mdsdev=${fs2mds_DEV:-${MDSDEV}_2}
896
897         add fs2mds $MDS_MKFS_OPTS --fsname=${FSNAME}2 --mgs --reformat $fs2mdsdev || exit 10 
898         setup
899         start fs2mds $fs2mdsdev $MDS_MOUNT_OPTS && return 2
900         cleanup || return 6
901 }
902 run_test 24b "Multiple MGSs on a single node (should return err)"
903
904 test_25() {
905         setup
906         check_mount || return 2
907         local MODULES=$($LCTL modules | awk '{ print $2 }')
908         rmmod $MODULES 2>/dev/null || true
909         cleanup || return 6
910 }
911 run_test 25 "Verify modules are referenced"
912
913 test_26() {
914     load_modules
915     # we need modules before mount for sysctl, so make sure...
916     do_facet mds "lsmod | grep -q lustre || modprobe lustre"
917 #define OBD_FAIL_MDS_FS_SETUP            0x135
918     do_facet mds "sysctl -w lustre.fail_loc=0x80000135"
919     start_mds && echo MDS started && return 1
920     cat $LPROC/devices
921     DEVS=$(cat $LPROC/devices | wc -l)
922     [ $DEVS -gt 0 ] && return 2
923     unload_modules || return 203
924 }
925 run_test 26 "MDT startup failure cleans LOV (should return errs)"
926
927 set_and_check() {
928         local myfacet=$1
929         local TEST=$2
930         local PARAM=$3
931         local ORIG=$(do_facet $myfacet "$TEST") 
932         if [ $# -gt 3 ]; then
933             local FINAL=$4
934         else
935             local -i FINAL
936             FINAL=$(($ORIG + 5))
937         fi
938         echo "Setting $PARAM from $ORIG to $FINAL"
939         do_facet mds "$LCTL conf_param $PARAM=$FINAL" || error conf_param failed
940         local RESULT
941         local MAX=90
942         local WAIT=0
943         while [ 1 ]; do
944             sleep 5
945             RESULT=$(do_facet $myfacet "$TEST") 
946             if [ $RESULT -eq $FINAL ]; then
947                 echo "Updated config after $WAIT sec (got $RESULT)"
948                 break
949             fi
950             WAIT=$((WAIT + 5))
951             if [ $WAIT -eq $MAX ]; then
952                 echo "Config update not seen: wanted $FINAL got $RESULT"
953                 return 3
954             fi
955             echo "Waiting $(($MAX - $WAIT)) secs for config update" 
956         done
957 }
958
959 test_27a() {
960         start_ost || return 1
961         start_mds || return 2
962         echo "Requeue thread should have started: " 
963         ps -e | grep ll_cfg_requeue 
964         set_and_check ost1 "cat $LPROC/obdfilter/$FSNAME-OST0000/client_cache_seconds" "$FSNAME-OST0000.ost.client_cache_seconds" || return 3 
965         cleanup_nocli
966 }
967 run_test 27a "Reacquire MGS lock if OST started first"
968
969 test_27b() {
970         setup
971         facet_failover mds
972         set_and_check mds "cat $LPROC/mdt/$FSNAME-MDT0000/identity_acquire_expire" "$FSNAME-MDT0000.mdt.identity_acquire_expire" || return 3
973         set_and_check client "cat $LPROC/mdc/$FSNAME-MDT0000-mdc-*/max_rpcs_in_flight" "$FSNAME-MDT0000.mdc.max_rpcs_in_flight" || return 4
974         cleanup
975 }
976 run_test 27b "Reacquire MGS lock after failover"
977
978 test_28() {
979         setup
980         TEST="cat $LPROC/llite/$FSNAME-*/max_read_ahead_whole_mb"
981         ORIG=$($TEST) 
982         declare -i FINAL
983         FINAL=$(($ORIG + 10))
984         set_and_check client "$TEST" "$FSNAME.llite.max_read_ahead_whole_mb" || return 3
985         set_and_check client "$TEST" "$FSNAME.llite.max_read_ahead_whole_mb" || return 3
986         umount_client $MOUNT || return 200
987         mount_client $MOUNT
988         RESULT=$($TEST)
989         if [ $RESULT -ne $FINAL ]; then
990             echo "New config not seen: wanted $FINAL got $RESULT"
991             return 4
992         else
993             echo "New config success: got $RESULT"
994         fi
995         cleanup
996 }
997 run_test 28 "permanent parameter setting"
998
999 test_29() {
1000         [ "$OSTCOUNT" -lt "2" ] && skip "$OSTCOUNT < 2, skipping" && return
1001         setup > /dev/null 2>&1
1002         start_ost2
1003         sleep 10
1004
1005         local PARAM="$FSNAME-OST0001.osc.active"
1006         local PROC_ACT="$LPROC/osc/$FSNAME-OST0001-osc-[^M]*/active"
1007         local PROC_UUID="$LPROC/osc/$FSNAME-OST0001-osc-[^M]*/ost_server_uuid"
1008         if [ ! -r $PROC_ACT ]; then
1009             echo "Can't read $PROC_ACT"
1010             ls $LPROC/osc/$FSNAME-*
1011             return 1
1012         fi
1013         ACTV=$(cat $PROC_ACT)
1014         DEAC=$((1 - $ACTV))
1015         set_and_check client "cat $PROC_ACT" "$PARAM" $DEAC || return 2
1016         # also check ost_server_uuid status
1017         RESULT=$(grep DEACTIV $PROC_UUID)
1018         if [ -z "$RESULT" ]; then
1019             echo "Live client not deactivated: $(cat $PROC_UUID)"
1020             return 3
1021         else
1022             echo "Live client success: got $RESULT"
1023         fi
1024
1025         # check MDT too 
1026         local MPROC="$LPROC/osc/$FSNAME-OST0001-osc-[M]*/active"
1027         local MAX=30
1028         local WAIT=0
1029         while [ 1 ]; do
1030             sleep 5
1031             RESULT=`do_facet mds " [ -r $MPROC ] && cat $MPROC"`
1032             [ ${PIPESTATUS[0]} = 0 ] || error "Can't read $MPROC"
1033             if [ $RESULT -eq $DEAC ]; then
1034                 echo "MDT deactivated also after $WAIT sec (got $RESULT)"
1035                 break
1036             fi
1037             WAIT=$((WAIT + 5))
1038             if [ $WAIT -eq $MAX ]; then
1039                 echo "MDT not deactivated: wanted $DEAC got $RESULT"
1040                 return 4
1041             fi
1042             echo "Waiting $(($MAX - $WAIT)) secs for MDT deactivated"
1043         done
1044
1045         # test new client starts deactivated
1046         umount_client $MOUNT || return 200
1047         mount_client $MOUNT
1048         RESULT=$(grep DEACTIV $PROC_UUID | grep NEW)
1049         if [ -z "$RESULT" ]; then
1050             echo "New client not deactivated from start: $(cat $PROC_UUID)"
1051             return 5
1052         else
1053             echo "New client success: got $RESULT"
1054         fi
1055
1056         # make sure it reactivates
1057         set_and_check client "cat $PROC_ACT" "$PARAM" $ACTV || return 6
1058
1059         umount_client $MOUNT
1060         stop_ost2
1061         cleanup_nocli
1062         #writeconf to remove all ost2 traces for subsequent tests
1063         writeconf
1064         start_mds
1065         start_ost
1066         cleanup
1067 }
1068 run_test 29 "permanently remove an OST"
1069
1070 test_30() {
1071         setup
1072
1073         TEST="cat $LPROC/llite/$FSNAME-*/max_read_ahead_whole_mb"
1074         ORIG=$($TEST) 
1075         for i in $(seq 1 20); do 
1076             set_and_check client "$TEST" "$FSNAME.llite.max_read_ahead_whole_mb" $i || return 3
1077         done
1078         # make sure client restart still works 
1079         umount_client $MOUNT
1080         mount_client $MOUNT || return 4
1081         [ "$($TEST)" -ne "$i" ] && return 5   
1082         set_and_check client "$TEST" "$FSNAME.llite.max_read_ahead_whole_mb" $ORIG || return 6
1083         cleanup
1084 }
1085 run_test 30 "Big config llog"
1086
1087 test_31() { # bug 10734
1088         # ipaddr must not exist
1089         mount -t lustre 4.3.2.1@tcp:/lustre $MOUNT || true
1090         cleanup
1091 }
1092 run_test 31 "Connect to non-existent node (shouldn't crash)"
1093
1094 test_32a() {
1095         # XXX - make this run on client-only systems with real hardware on
1096         #       the OST and MDT
1097         #       there appears to be a lot of assumption here about loopback
1098         #       devices
1099         # or maybe this test is just totally useless on a client-only system
1100         [ "$mds_HOST" = "`hostname`" ] || { skip "remote MDS" && return 0; }
1101         [ "$ost_HOST" = "`hostname`" -o "$ost1_HOST" = "`hostname`" ] || \
1102                 { skip "remote OST" && return 0; }
1103
1104         [ -z "$TUNEFS" ] && skip "No tunefs" && return
1105         local DISK1_4=$LUSTRE/tests/disk1_4.zip
1106         [ ! -r $DISK1_4 ] && skip "Cant find $DISK1_4, skipping" && return
1107         mkdir -p $TMP/$tdir
1108         unzip -o -j -d $TMP/$tdir $DISK1_4 || { skip "Cant unzip $DISK1_4, skipping" && return ; }
1109         load_modules
1110         sysctl lnet.debug=$PTLDEBUG
1111
1112         $TUNEFS $TMP/$tdir/mds || error "tunefs failed"
1113         # nids are wrong, so client wont work, but server should start
1114         start mds $TMP/$tdir/mds "-o loop,exclude=lustre-OST0000" || return 3
1115         local UUID=$(cat $LPROC/mds/lustre-MDT0000/uuid)
1116         echo MDS uuid $UUID
1117         [ "$UUID" == "mdsA_UUID" ] || error "UUID is wrong: $UUID" 
1118
1119         $TUNEFS --mgsnode=`hostname` $TMP/$tdir/ost1 || error "tunefs failed"
1120         start ost1 $TMP/$tdir/ost1 "-o loop" || return 5
1121         UUID=$(cat $LPROC/obdfilter/lustre-OST0000/uuid)
1122         echo OST uuid $UUID
1123         [ "$UUID" == "ost1_UUID" ] || error "UUID is wrong: $UUID" 
1124
1125         local NID=$($LCTL list_nids | head -1)
1126
1127         echo "OSC changes should return err:" 
1128         $LCTL conf_param lustre-OST0000.osc.max_dirty_mb=15 && return 7
1129         $LCTL conf_param lustre-OST0000.failover.node=$NID && return 8
1130         echo "ok."
1131         echo "MDC changes should succeed:" 
1132         $LCTL conf_param lustre-MDT0000.mdc.max_rpcs_in_flight=9 || return 9
1133         $LCTL conf_param lustre-MDT0000.failover.node=$NID || return 10
1134         echo "ok."
1135
1136         # With a new good MDT failover nid, we should be able to mount a client
1137         # (but it cant talk to OST)
1138         local OLDMOUNTOPT=$MOUNTOPT
1139         MOUNTOPT="exclude=lustre-OST0000"
1140         mount_client $MOUNT
1141         MOUNTOPT=$OLDMOUNTOPT
1142         set_and_check client "cat $LPROC/mdc/*/max_rpcs_in_flight" "lustre-MDT0000.mdc.max_rpcs_in_flight" || return 11
1143
1144         zconf_umount `hostname` $MOUNT -f
1145         cleanup_nocli
1146
1147         # mount a second time to make sure we didnt leave upgrade flag on
1148         $TUNEFS --dryrun $TMP/$tdir/mds || error "tunefs failed"
1149         start mds $TMP/$tdir/mds "-o loop,exclude=lustre-OST0000" || return 12
1150         cleanup_nocli
1151
1152         [ -d $TMP/$tdir ] && rm -rf $TMP/$tdir
1153 }
1154 run_test 32a "Upgrade from 1.4 (not live)"
1155
1156 test_32b() {
1157         # XXX - make this run on client-only systems with real hardware on
1158         #       the OST and MDT
1159         #       there appears to be a lot of assumption here about loopback
1160         #       devices
1161         # or maybe this test is just totally useless on a client-only system
1162         [ "$mds_HOST" = "`hostname`" ] || { skip "remote MDS" && return 0; }
1163         [ "$ost_HOST" = "`hostname`" -o "$ost1_HOST" = "`hostname`" ] || \
1164                 { skip "remote OST" && return 0; }
1165
1166         [ -z "$TUNEFS" ] && skip "No tunefs" && return
1167         local DISK1_4=$LUSTRE/tests/disk1_4.zip
1168         [ ! -r $DISK1_4 ] && skip "Cant find $DISK1_4, skipping" && return
1169         mkdir -p $TMP/$tdir
1170         unzip -o -j -d $TMP/$tdir $DISK1_4 || { skip "Cant unzip $DISK1_4, skipping" && return ; }
1171         load_modules
1172         sysctl lnet.debug=$PTLDEBUG
1173
1174         # writeconf will cause servers to register with their current nids
1175         $TUNEFS --writeconf $TMP/$tdir/mds || error "tunefs failed"
1176         start mds $TMP/$tdir/mds "-o loop" || return 3
1177         local UUID=$(cat $LPROC/mds/lustre-MDT0000/uuid)
1178         echo MDS uuid $UUID
1179         [ "$UUID" == "mdsA_UUID" ] || error "UUID is wrong: $UUID" 
1180
1181         $TUNEFS --mgsnode=`hostname` $TMP/$tdir/ost1 || error "tunefs failed"
1182         start ost1 $TMP/$tdir/ost1 "-o loop" || return 5
1183         UUID=$(cat $LPROC/obdfilter/lustre-OST0000/uuid)
1184         echo OST uuid $UUID
1185         [ "$UUID" == "ost1_UUID" ] || error "UUID is wrong: $UUID" 
1186
1187         echo "OSC changes should succeed:" 
1188         $LCTL conf_param lustre-OST0000.osc.max_dirty_mb=15 || return 7
1189         $LCTL conf_param lustre-OST0000.failover.node=$NID || return 8
1190         echo "ok."
1191         echo "MDC changes should succeed:" 
1192         $LCTL conf_param lustre-MDT0000.mdc.max_rpcs_in_flight=9 || return 9
1193         echo "ok."
1194
1195         # MDT and OST should have registered with new nids, so we should have
1196         # a fully-functioning client
1197         echo "Check client and old fs contents"
1198         mount_client $MOUNT
1199         set_and_check client "cat $LPROC/mdc/*/max_rpcs_in_flight" "${NEWNAME}-MDT0000.mdc.max_rpcs_in_flight" || return 11
1200         [ "$(cksum $MOUNT/passwd | cut -d' ' -f 1,2)" == "2479747619 779" ] || return 12  
1201         echo "ok."
1202
1203         cleanup
1204         [ -d $TMP/$tdir ] && rm -rf $TMP/$tdir
1205 }
1206 run_test 32b "Upgrade from 1.4 with writeconf"
1207
1208 test_33a() { # bug 12333, was test_33
1209         local rc=0
1210         local FSNAME2=test-123
1211         [ -n "$ost1_HOST" ] && fs2ost_HOST=$ost1_HOST
1212
1213         if [ -z "$fs2ost_DEV" -o -z "$fs2mds_DEV" ]; then
1214                 do_facet $SINGLEMDS [ -b "$MDSDEV" ] && \
1215                 skip "mixed loopback and real device not working" && return
1216         fi
1217
1218         local fs2mdsdev=${fs2mds_DEV:-${MDSDEV}_2}
1219         local fs2ostdev=${fs2ost_DEV:-$(ostdevname 1)_2}
1220         add fs2mds $MDS_MKFS_OPTS --fsname=${FSNAME2} --reformat $fs2mdsdev || exit 10
1221         add fs2ost $OST_MKFS_OPTS --fsname=${FSNAME2} --index=8191 --mgsnode=$MGSNID --reformat $fs2ostdev || exit 10
1222
1223         start fs2mds $fs2mdsdev $MDS_MOUNT_OPTS && trap cleanup_24a EXIT INT
1224         start fs2ost $fs2ostdev $OST_MOUNT_OPTS
1225         do_facet mds "$LCTL conf_param $FSNAME2.sys.timeout=200" || rc=1
1226         mkdir -p $MOUNT2
1227         mount -t lustre $MGSNID:/${FSNAME2} $MOUNT2 || rc=2
1228         echo "ok."
1229
1230         umount -d $MOUNT2
1231         stop fs2ost -f
1232         stop fs2mds -f
1233         rm -rf $MOUNT2 $fs2mdsdev $fs2ostdev
1234         cleanup_nocli || rc=6
1235         return $rc
1236 }
1237 run_test 33a "Mount ost with a large index number"
1238
1239 test_33b() {    # was test_34
1240         setup
1241
1242         do_facet client dd if=/dev/zero of=$MOUNT/24 bs=1024k count=1
1243         # Drop lock cancelation reply during umount
1244         #define OBD_FAIL_LDLM_CANCEL             0x304
1245         do_facet client sysctl -w lustre.fail_loc=0x80000304
1246         #sysctl -w lnet.debug=-1
1247         umount_client $MOUNT
1248         cleanup
1249 }
1250 run_test 33b "Drop cancel during umount"
1251
1252 test_34a() {
1253         setup
1254         do_facet client multiop $DIR/file O_c &
1255         sleep 0.500s
1256         manual_umount_client
1257         rc=$?
1258         do_facet client killall -USR1 multiop
1259         if [ $rc -eq 0 ]; then
1260                 error "umount not fail!"
1261         fi
1262         sleep 1
1263         cleanup
1264 }
1265 run_test 34a "umount with opened file should be fail"
1266
1267
1268 test_34b() {
1269         setup
1270         touch $DIR/$tfile || return 1
1271         stop_mds --force || return 2
1272
1273         manual_umount_client --force
1274         rc=$?
1275         if [ $rc -ne 0 ]; then
1276                 error "mtab after failed umount - rc $rc"
1277         fi
1278
1279         cleanup
1280         return 0        
1281 }
1282 run_test 34b "force umount with failed mds should be normal"
1283
1284 test_34c() {
1285         setup
1286         touch $DIR/$tfile || return 1
1287         stop_ost --force || return 2
1288
1289         manual_umount_client --force
1290         rc=$?
1291         if [ $rc -ne 0 ]; then
1292                 error "mtab after failed umount - rc $rc"
1293         fi
1294
1295         cleanup
1296         return 0        
1297 }
1298 run_test 34c "force umount with failed ost should be normal"
1299
1300 test_35() { # bug 12459
1301         setup
1302
1303         DBG_SAVE="`sysctl -n lnet.debug`"
1304         sysctl -w lnet.debug="ha"
1305
1306         log "Set up a fake failnode for the MDS"
1307         FAKENID="127.0.0.2"
1308         do_facet mds $LCTL conf_param ${FSNAME}-MDT0000.failover.node=$FAKENID || return 4
1309
1310         log "Wait for RECONNECT_INTERVAL seconds (10s)"
1311         sleep 10
1312
1313         MSG="conf-sanity.sh test_35 `date +%F%kh%Mm%Ss`"
1314         $LCTL clear
1315         log "$MSG"
1316         log "Stopping the MDT:"
1317         stop_mds || return 5
1318
1319         df $MOUNT > /dev/null 2>&1 &
1320         DFPID=$!
1321         log "Restarting the MDT:"
1322         start_mds || return 6
1323         log "Wait for df ($DFPID) ... "
1324         wait $DFPID
1325         log "done"
1326         sysctl -w lnet.debug="$DBG_SAVE"
1327
1328         # retrieve from the log the first server that the client tried to
1329         # contact after the connection loss
1330         $LCTL dk $TMP/lustre-log-$TESTNAME.log
1331         NEXTCONN=`awk "/${MSG}/ {start = 1;}
1332                        /import_select_connection.*${FSNAME}-MDT0000-mdc.* using connection/ {
1333                                 if (start) {
1334                                         if (\\\$NF ~ /$FAKENID/)
1335                                                 print \\\$NF;
1336                                         else
1337                                                 print 0;
1338                                         exit;
1339                                 }
1340                        }" $TMP/lustre-log-$TESTNAME.log`
1341         [ "$NEXTCONN" != "0" ] && log "The client didn't try to reconnect to the last active server (tried ${NEXTCONN} instead)" && return 7
1342         cleanup
1343 }
1344 run_test 35 "Reconnect to the last active server first"
1345
1346 test_36() { # 12743
1347         local rc
1348         local FSNAME2=test1234
1349         local fs3ost_HOST=$ost_HOST
1350
1351         [ -n "$ost1_HOST" ] && fs2ost_HOST=$ost1_HOST && fs3ost_HOST=$ost1_HOST
1352         rc=0
1353
1354         if [ -z "$fs2ost_DEV" -o -z "$fs2mds_DEV" -o -z "$fs3ost_DEV" ]; then
1355                 do_facet $SINGLEMDS [ -b "$MDSDEV" ] && \
1356                 skip "mixed loopback and real device not working" && return
1357         fi
1358         [ $OSTCOUNT -lt 2 ] && skip "skipping test for single OST" && return
1359
1360         [ $(grep -c obdfilter $LPROC/devices) -eq 0 ] &&
1361                 skip "skipping test for remote OST" && return
1362
1363         local fs2mdsdev=${fs2mds_DEV:-${MDSDEV}_2}
1364         local fs2ostdev=${fs2ost_DEV:-$(ostdevname 1)_2}
1365         local fs3ostdev=${fs3ost_DEV:-$(ostdevname 2)_2}
1366         add fs2mds $MDS_MKFS_OPTS --fsname=${FSNAME2} --reformat $fs2mdsdev || exit 10
1367         add fs2ost $OST_MKFS_OPTS --mkfsoptions='-b1024' --fsname=${FSNAME2} --mgsnode=$MGSNID --reformat $fs2ostdev || exit 10
1368         add fs3ost $OST_MKFS_OPTS --mkfsoptions='-b4096' --fsname=${FSNAME2} --mgsnode=$MGSNID --reformat $fs3ostdev || exit 10
1369
1370         start fs2mds $fs2mdsdev $MDS_MOUNT_OPTS
1371         start fs2ost $fs2ostdev $OST_MOUNT_OPTS
1372         start fs3ost $fs3ostdev $OST_MOUNT_OPTS
1373         mkdir -p $MOUNT2
1374         mount -t lustre $MGSNID:/${FSNAME2} $MOUNT2 || return 1
1375
1376         sleep 5 # until 11778 fixed
1377
1378         dd if=/dev/zero of=$MOUNT2/$tfile bs=1M count=7 || return 2
1379
1380         BKTOTAL=`awk 'BEGIN{total=0}; {total+=$1}; END{print total}' \
1381                 $LPROC/obdfilter/*/kbytestotal`
1382         BKFREE=`awk 'BEGIN{free=0}; {free+=$1}; END{print free}' \
1383                $LPROC/obdfilter/*/kbytesfree`
1384         BKAVAIL=`awk 'BEGIN{avail=0}; {avail+=$1}; END{print avail}' \
1385                 $LPROC/obdfilter/*/kbytesavail`
1386         STRING=`df -P $MOUNT2 | tail -n 1 | awk '{print $2","$3","$4}'`
1387         DFTOTAL=`echo $STRING | cut -d, -f1`
1388         DFUSED=`echo $STRING  | cut -d, -f2`
1389         DFAVAIL=`echo $STRING | cut -d, -f3`
1390         DFFREE=$(($DFTOTAL - $DFUSED))
1391
1392         ALLOWANCE=$((64 * $OSTCOUNT))
1393
1394         if [ $DFTOTAL -lt $(($BKTOTAL - $ALLOWANCE)) ] ||  
1395            [ $DFTOTAL -gt $(($BKTOTAL + $ALLOWANCE)) ] ; then
1396                 echo "**** FAIL: df total($DFTOTAL) mismatch OST total($BKTOTAL)"
1397                 rc=1
1398         fi
1399         if [ $DFFREE -lt $(($BKFREE - $ALLOWANCE)) ] || 
1400            [ $DFFREE -gt $(($BKFREE + $ALLOWANCE)) ] ; then
1401                 echo "**** FAIL: df free($DFFREE) mismatch OST free($BKFREE)"
1402                 rc=2
1403         fi
1404         if [ $DFAVAIL -lt $(($BKAVAIL - $ALLOWANCE)) ] || 
1405            [ $DFAVAIL -gt $(($BKAVAIL + $ALLOWANCE)) ] ; then
1406                 echo "**** FAIL: df avail($DFAVAIL) mismatch OST avail($BKAVAIL)"
1407                 rc=3
1408        fi
1409
1410         umount -d $MOUNT2
1411         stop fs3ost -f || return 200
1412         stop fs2ost -f || return 201
1413         stop fs2mds -f || return 202
1414         rm -rf $MOUNT2 $fs2mdsdev $fs2ostdev $fs3ostdev
1415         unload_modules || return 203
1416         return $rc
1417 }
1418 run_test 36 "df report consistency on OSTs with different block size"
1419
1420 test_37() {
1421         LOCAL_MDSDEV="$TMP/mdt.img"
1422         SYM_MDSDEV="$TMP/sym_mdt.img"
1423
1424         echo "MDS :     $LOCAL_MDSDEV"
1425         echo "SYMLINK : $SYM_MDSDEV"
1426         rm -f $LOCAL_MDSDEV
1427
1428         touch $LOCAL_MDSDEV
1429         mkfs.lustre --reformat --fsname=lustre --mdt --mgs --device-size=9000 $LOCAL_MDSDEV ||
1430                 error "mkfs.lustre $LOCAL_MDSDEV failed"
1431         ln -s $LOCAL_MDSDEV $SYM_MDSDEV
1432
1433         echo "mount symlink device - $SYM_MDSDEV"
1434
1435         mount_op=`mount -v -t lustre -o loop $SYM_MDSDEV ${MOUNT%/*}/mds 2>&1 | grep "unable to set tunable"`
1436         umount -d ${MOUNT%/*}/mds
1437         rm -f $LOCAL_MDSDEV $SYM_MDSDEV
1438
1439         if [ -n "$mount_op" ]; then
1440                 error "**** FAIL: set tunables failed for symlink device"
1441         fi
1442         return 0
1443 }
1444 run_test 37 "verify set tunables works for symlink device"
1445
1446 test_38() { # bug 14222
1447         setup
1448         # like runtests
1449         COUNT=10
1450         SRC="/etc /bin"
1451         FILES=`find $SRC -type f -mtime +1 | head -n $COUNT`
1452         log "copying $(echo $FILES | wc -w) files to $DIR/$tdir"
1453         mkdir -p $DIR/$tdir
1454         tar cf - $FILES | tar xf - -C $DIR/$tdir || \
1455                 error "copying $SRC to $DIR/$tdir"
1456         sync
1457         umount_client $MOUNT
1458         stop_mds
1459         log "rename lov_objid file on MDS"
1460         rm -f $TMP/lov_objid.orig
1461         do_facet mds "debugfs -c -R \\\"dump lov_objid $TMP/lov_objid.orig\\\" $MDSDEV"
1462         do_facet mds "debugfs -w -R \\\"rm lov_objid\\\" $MDSDEV"
1463
1464         do_facet mds "od -Ax -td8 $TMP/lov_objid.orig"
1465         # check create in mds_lov_connect
1466         start_mds
1467         mount_client $MOUNT
1468         for f in $FILES; do
1469                 [ $V ] && log "verifying $DIR/$tdir/$f"
1470                 diff -q $f $DIR/$tdir/$f || ERROR=y
1471         done
1472         do_facet mds "debugfs -c -R \\\"dump lov_objid $TMP/lov_objid.new\\\"  $MDSDEV"
1473         do_facet mds "od -Ax -td8 $TMP/lov_objid.new"
1474         [ "$ERROR" = "y" ] && error "old and new files are different after connect" || true     
1475         
1476         # check it's updates in sync
1477         umount_client $MOUNT
1478         stop_mds
1479
1480         do_facet mds dd if=/dev/zero of=$TMP/lov_objid.clear bs=4096 count=1
1481         do_facet mds "debugfs -w -R \\\"rm lov_objid\\\" $MDSDEV"
1482         do_facet mds "debugfs -w -R \\\"write $TMP/lov_objid.clear lov_objid\\\" $MDSDEV "
1483
1484         start_mds
1485         mount_client $MOUNT
1486         for f in $FILES; do
1487                 [ $V ] && log "verifying $DIR/$tdir/$f"
1488                 diff -q $f $DIR/$tdir/$f || ERROR=y
1489         done
1490         do_facet mds "debugfs -c -R \\\"dump lov_objid $TMP/lov_objid.new1\\\" $MDSDEV"
1491         do_facet mds "od -Ax -td8 $TMP/lov_objid.new1"
1492         umount_client $MOUNT
1493         stop_mds
1494         [ "$ERROR" = "y" ] && error "old and new files are different after sync" || true
1495         
1496         log "files compared the same"
1497         cleanup
1498 }
1499 run_test 38 "MDS recreates missing lov_objid file from OST data"
1500
1501 umount_client $MOUNT
1502 cleanup_nocli
1503 cleanup_gss
1504
1505 equals_msg `basename $0`: test complete
1506 [ -f "$TESTSUITELOG" ] && cat $TESTSUITELOG || true