Whamcloud - gitweb
b=13028
[fs/lustre-release.git] / lustre / tests / sanity.sh
1 #!/bin/bash
2 #
3 # Run select tests by setting ONLY, or as arguments to the script.
4 # Skip specific tests by setting EXCEPT.
5 #
6 # e.g. ONLY="22 23" or ONLY="`seq 32 39`" or EXCEPT="31"
7 set -e
8
9 ONLY=${ONLY:-"$*"}
10 # bug number for skipped test: 4900 4900 2108 9789 3637 9789 3561 13310 10764
11 ALWAYS_EXCEPT="                 27o 27q  42a  42b  42c  42d  45   74b   75 $SANITY_EXCEPT"
12 # bug number for skipped test: 2108 9789 3637 9789 3561 5188/5749 1443
13 #ALWAYS_EXCEPT=${ALWAYS_EXCEPT:-"27m 42a 42b 42c 42d 45 68 76"}
14 # UPDATE THE COMMENT ABOVE WITH BUG NUMBERS WHEN CHANGING ALWAYS_EXCEPT!
15
16 [ "$SLOW" = "no" ] && EXCEPT="$EXCEPT 24o 27m 36f 36g 51b 51c 63 64b 71 73 101 115"
17
18 # Tests that fail on uml
19 CPU=`awk '/model/ {print $4}' /proc/cpuinfo`
20 #                                    buffer i/o errs             sock spc runas
21 [ "$CPU" = "UML" ] && EXCEPT="$EXCEPT 27m 27n 27o 27p 27q 27r 31d 54a  64b 99a 99b 99c 99d 99e 99f 101"
22
23 # test76 is not valid with FIDs because inode numbers are not reused
24 ALWAYS_EXCEPT="$ALWAYS_EXCEPT 76"
25
26 case `uname -r` in
27 2.4*) FSTYPE=${FSTYPE:-ext3} ;;
28 2.6*) FSTYPE=${FSTYPE:-ldiskfs} ;;
29 *) error "unsupported kernel" ;;
30 esac
31
32 SRCDIR=`dirname $0`
33 export PATH=$PWD/$SRCDIR:$SRCDIR:$SRCDIR/../utils:$PATH:/sbin
34
35 TMP=${TMP:-/tmp}
36
37 CHECKSTAT=${CHECKSTAT:-"checkstat -v"}
38 CREATETEST=${CREATETEST:-createtest}
39 LFS=${LFS:-lfs}
40 SETSTRIPE=${SETSTRIPE:-"$LFS setstripe"}
41 GETSTRIPE=${GETSTRIPE:-"$LFS getstripe"}
42 LSTRIPE=${LSTRIPE:-"$LFS setstripe"}
43 LFIND=${LFIND:-"$LFS find"}
44 LVERIFY=${LVERIFY:-ll_dirstripe_verify}
45 LSTRIPEINFO=${LSTRIPEINFO:-ll_getstripe_info}
46 LCTL=${LCTL:-lctl}
47 MCREATE=${MCREATE:-mcreate}
48 OPENFILE=${OPENFILE:-openfile}
49 OPENUNLINK=${OPENUNLINK:-openunlink}
50 RANDOM_READS=${RANDOM_READS:-"random-reads"}
51 TOEXCL=${TOEXCL:-toexcl}
52 TRUNCATE=${TRUNCATE:-truncate}
53 MUNLINK=${MUNLINK:-munlink}
54 SOCKETSERVER=${SOCKETSERVER:-socketserver}
55 SOCKETCLIENT=${SOCKETCLIENT:-socketclient}
56 IOPENTEST1=${IOPENTEST1:-iopentest1}
57 IOPENTEST2=${IOPENTEST2:-iopentest2}
58 MEMHOG=${MEMHOG:-memhog}
59 DIRECTIO=${DIRECTIO:-directio}
60 ACCEPTOR_PORT=${ACCEPTOR_PORT:-988}
61 UMOUNT=${UMOUNT:-"umount -d"}
62 STRIPES_PER_OBJ=-1
63 CHECK_GRANT=${CHECK_GRANT:-"yes"}
64 GRANT_CHECK_LIST=${GRANT_CHECK_LIST:-""}
65
66 if [ $UID -ne 0 ]; then
67         echo "Warning: running as non-root uid $UID"
68         RUNAS_ID="$UID"
69         RUNAS=""
70 else
71         RUNAS_ID=${RUNAS_ID:-500}
72         RUNAS=${RUNAS:-"runas -u $RUNAS_ID"}
73
74         # $RUNAS_ID may get set incorrectly somewhere else
75         if [ $RUNAS_ID -eq 0 ]; then
76                 echo "Error: \$RUNAS_ID set to 0, but \$UID is also 0!"
77                 exit 1
78         fi
79 fi
80
81 export NAME=${NAME:-local}
82
83 SAVE_PWD=$PWD
84
85 CLEANUP=${CLEANUP:-:}
86 SETUP=${SETUP:-:}
87 TRACE=${TRACE:-""}
88 LUSTRE=${LUSTRE:-`dirname $0`/..}
89 . $LUSTRE/tests/test-framework.sh
90 init_test_env $@
91 . ${CONFIG:=$LUSTRE/tests/cfg/local.sh}
92
93 if $GSS_KRB5; then
94     $RUNAS krb5_login.sh || exit 1
95     $RUNAS -u $(($RUNAS_ID + 1)) krb5_login.sh || exit 1
96 fi
97
98 SANITYLOG=${TESTSUITELOG:-$TMP/$(basename $0 .sh).log}
99 FAIL_ON_ERROR=false
100
101 cleanup() {
102         echo -n "cln.."
103         cleanupall ${FORCE} $* || { echo "FAILed to clean up"; exit 20; }
104 }
105 setup() {
106         echo -n "mnt.."
107         load_modules
108         setupall || exit 10
109         echo "done"
110 }
111
112 check_kernel_version() {
113         VERSION_FILE=$LPROC/version
114         WANT_VER=$1
115         [ ! -f $VERSION_FILE ] && echo "can't find kernel version" && return 1
116         GOT_VER=$(awk '/kernel:/ {print $2}' $VERSION_FILE)
117         [ $GOT_VER == "patchless" ] && return 0
118         [ $GOT_VER -ge $WANT_VER ] && return 0
119         log "test needs at least kernel version $WANT_VER, running $GOT_VER"
120         return 1
121 }
122
123 if [ "$ONLY" == "cleanup" ]; then
124        sh llmountcleanup.sh
125        exit 0
126 fi
127
128 [ "$SANITYLOG" ] && rm -f $SANITYLOG || true
129
130 check_and_setup_lustre
131
132 DIR=${DIR:-$MOUNT}
133 [ -z "`echo $DIR | grep $MOUNT`" ] && echo "$DIR not in $MOUNT" && exit 99
134
135 LOVNAME=`cat $LPROC/llite/*/lov/common_name | tail -n 1`
136 OSTCOUNT=`cat $LPROC/lov/$LOVNAME/numobd`
137 STRIPECOUNT=`cat $LPROC/lov/$LOVNAME/stripecount`
138 STRIPESIZE=`cat $LPROC/lov/$LOVNAME/stripesize`
139 ORIGFREE=`cat $LPROC/lov/$LOVNAME/kbytesavail`
140 MAXFREE=${MAXFREE:-$((200000 * $OSTCOUNT))}
141
142 [ -f $DIR/d52a/foo ] && chattr -a $DIR/d52a/foo
143 [ -f $DIR/d52b/foo ] && chattr -i $DIR/d52b/foo
144 rm -rf $DIR/[Rdfs][1-9]*
145
146 build_test_filter
147
148 if [ "${ONLY}" = "MOUNT" ] ; then 
149         echo "Lustre is up, please go on"
150         exit
151 fi
152
153 echo "preparing for tests involving mounts"
154 EXT2_DEV=${EXT2_DEV:-$TMP/SANITY.LOOP}
155 touch $EXT2_DEV
156 mke2fs -j -F $EXT2_DEV 8000 > /dev/null
157 echo # add a newline after mke2fs.
158
159 umask 077
160
161 test_0() {
162         touch $DIR/$tfile
163         $CHECKSTAT -t file $DIR/$tfile || error
164         rm $DIR/$tfile
165         $CHECKSTAT -a $DIR/$tfile || error
166 }
167 run_test 0 "touch .../$tfile ; rm .../$tfile ====================="
168
169 test_0b() {
170         chmod 0755 $DIR || error
171         $CHECKSTAT -p 0755 $DIR || error
172 }
173 run_test 0b "chmod 0755 $DIR ============================="
174
175 test_1a() {
176         mkdir $DIR/d1
177         mkdir $DIR/d1/d2
178         mkdir $DIR/d1/d2 && error "we expect EEXIST, but not returned"
179         $CHECKSTAT -t dir $DIR/d1/d2 || error
180 }
181 run_test 1a "mkdir .../d1; mkdir .../d1/d2 ====================="
182
183 test_1b() {
184         rmdir $DIR/d1/d2
185         rmdir $DIR/d1
186         $CHECKSTAT -a $DIR/d1 || error
187 }
188 run_test 1b "rmdir .../d1/d2; rmdir .../d1 ====================="
189
190 test_2a() {
191         mkdir $DIR/d2
192         touch $DIR/d2/f
193         $CHECKSTAT -t file $DIR/d2/f || error
194 }
195 run_test 2a "mkdir .../d2; touch .../d2/f ======================"
196
197 test_2b() {
198         rm -r $DIR/d2
199         $CHECKSTAT -a $DIR/d2 || error
200 }
201 run_test 2b "rm -r .../d2; checkstat .../d2/f ======================"
202
203 test_3a() {
204         mkdir $DIR/d3
205         $CHECKSTAT -t dir $DIR/d3 || error
206 }
207 run_test 3a "mkdir .../d3 ======================================"
208
209 test_3b() {
210         if [ ! -d $DIR/d3 ]; then
211                 mkdir $DIR/d3
212         fi
213         touch $DIR/d3/f
214         $CHECKSTAT -t file $DIR/d3/f || error
215 }
216 run_test 3b "touch .../d3/f ===================================="
217
218 test_3c() {
219         rm -r $DIR/d3
220         $CHECKSTAT -a $DIR/d3 || error
221 }
222 run_test 3c "rm -r .../d3 ======================================"
223
224 test_4a() {
225         mkdir $DIR/d4
226         $CHECKSTAT -t dir $DIR/d4 || error
227 }
228 run_test 4a "mkdir .../d4 ======================================"
229
230 test_4b() {
231         if [ ! -d $DIR/d4 ]; then
232                 mkdir $DIR/d4
233         fi
234         mkdir $DIR/d4/d2
235         $CHECKSTAT -t dir $DIR/d4/d2 || error
236 }
237 run_test 4b "mkdir .../d4/d2 ==================================="
238
239 test_5() {
240         mkdir $DIR/d5
241         mkdir $DIR/d5/d2
242         chmod 0707 $DIR/d5/d2
243         $CHECKSTAT -t dir -p 0707 $DIR/d5/d2 || error
244 }
245 run_test 5 "mkdir .../d5 .../d5/d2; chmod .../d5/d2 ============"
246
247 test_6a() {
248         touch $DIR/f6a
249         chmod 0666 $DIR/f6a || error
250         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/f6a || error
251 }
252 run_test 6a "touch .../f6a; chmod .../f6a ======================"
253
254 test_6b() {
255         [ $RUNAS_ID -eq $UID ] && skip "RUNAS_ID = UID = $UID -- skipping" && return
256         if [ ! -f $DIR/f6a ]; then
257                 touch $DIR/f6a
258                 chmod 0666 $DIR/f6a
259         fi
260         $RUNAS chmod 0444 $DIR/f6a && error
261         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/f6a || error
262 }
263 run_test 6b "$RUNAS chmod .../f6a (should return error) =="
264
265 test_6c() {
266         [ $RUNAS_ID -eq $UID ] && skip "RUNAS_ID = UID = $UID -- skipping" && return
267         touch $DIR/f6c
268         chown $RUNAS_ID $DIR/f6c || error
269         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/f6c || error
270 }
271 run_test 6c "touch .../f6c; chown .../f6c ======================"
272
273 test_6d() {
274         [ $RUNAS_ID -eq $UID ] && skip "RUNAS_ID = UID = $UID -- skipping" && return
275         if [ ! -f $DIR/f6c ]; then
276                 touch $DIR/f6c
277                 chown $RUNAS_ID $DIR/f6c
278         fi
279         $RUNAS chown $UID $DIR/f6c && error
280         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/f6c || error
281 }
282 run_test 6d "$RUNAS chown .../f6c (should return error) =="
283
284 test_6e() {
285         [ $RUNAS_ID -eq $UID ] && skip "RUNAS_ID = UID = $UID -- skipping" && return
286         touch $DIR/f6e
287         chgrp $RUNAS_ID $DIR/f6e || error
288         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/f6e || error
289 }
290 run_test 6e "touch .../f6e; chgrp .../f6e ======================"
291
292 test_6f() {
293         [ $RUNAS_ID -eq $UID ] && skip "RUNAS_ID = UID = $UID -- skipping" && return
294         if [ ! -f $DIR/f6e ]; then
295                 touch $DIR/f6e
296                 chgrp $RUNAS_ID $DIR/f6e
297         fi
298         $RUNAS chgrp $UID $DIR/f6e && error
299         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/f6e || error
300 }
301 run_test 6f "$RUNAS chgrp .../f6e (should return error) =="
302
303 test_6g() {
304         [ $RUNAS_ID -eq $UID ] && skip "RUNAS_ID = UID = $UID -- skipping" && return
305         mkdir $DIR/d6g || error
306         chmod 777 $DIR/d6g || error
307         $RUNAS mkdir $DIR/d6g/d || error
308         chmod g+s $DIR/d6g/d || error
309         mkdir $DIR/d6g/d/subdir
310         $CHECKSTAT -g \#$RUNAS_ID $DIR/d6g/d/subdir || error
311 }
312 run_test 6g "Is new dir in sgid dir inheriting group?"
313
314 test_6h() { # bug 7331
315         [ $RUNAS_ID -eq $UID ] && skip "RUNAS_ID = UID = $UID -- skipping" && return
316         touch $DIR/f6h || error "touch failed"
317         chown $RUNAS_ID:$RUNAS_ID $DIR/f6h || error "initial chown failed"
318         $RUNAS -G$RUNAS_ID chown $RUNAS_ID:0 $DIR/f6h && error "chown worked"
319         $CHECKSTAT -t file -u \#$RUNAS_ID -g \#$RUNAS_ID $DIR/f6h || error
320 }
321 run_test 6h "$RUNAS chown RUNAS_ID.0 .../f6h (should return error)"
322
323 test_7a() {
324         mkdir $DIR/d7
325         $MCREATE $DIR/d7/f
326         chmod 0666 $DIR/d7/f
327         $CHECKSTAT -t file -p 0666 $DIR/d7/f || error
328 }
329 run_test 7a "mkdir .../d7; mcreate .../d7/f; chmod .../d7/f ===="
330
331 test_7b() {
332         if [ ! -d $DIR/d7 ]; then
333                 mkdir $DIR/d7
334         fi
335         $MCREATE $DIR/d7/f2
336         echo -n foo > $DIR/d7/f2
337         [ "`cat $DIR/d7/f2`" = "foo" ] || error
338         $CHECKSTAT -t file -s 3 $DIR/d7/f2 || error
339 }
340 run_test 7b "mkdir .../d7; mcreate d7/f2; echo foo > d7/f2 ====="
341
342 test_8() {
343         mkdir $DIR/d8
344         touch $DIR/d8/f
345         chmod 0666 $DIR/d8/f
346         $CHECKSTAT -t file -p 0666 $DIR/d8/f || error
347 }
348 run_test 8 "mkdir .../d8; touch .../d8/f; chmod .../d8/f ======="
349
350 test_9() {
351         mkdir $DIR/d9
352         mkdir $DIR/d9/d2
353         mkdir $DIR/d9/d2/d3
354         $CHECKSTAT -t dir $DIR/d9/d2/d3 || error
355 }
356 run_test 9 "mkdir .../d9 .../d9/d2 .../d9/d2/d3 ================"
357
358 test_10() {
359         mkdir $DIR/d10
360         mkdir $DIR/d10/d2
361         touch $DIR/d10/d2/f
362         $CHECKSTAT -t file $DIR/d10/d2/f || error
363 }
364 run_test 10 "mkdir .../d10 .../d10/d2; touch .../d10/d2/f ======"
365
366 test_11() {
367         mkdir $DIR/d11
368         mkdir $DIR/d11/d2
369         chmod 0666 $DIR/d11/d2
370         chmod 0705 $DIR/d11/d2
371         $CHECKSTAT -t dir -p 0705 $DIR/d11/d2 || error
372 }
373 run_test 11 "mkdir .../d11 d11/d2; chmod .../d11/d2 ============"
374
375 test_12() {
376         mkdir $DIR/d12
377         touch $DIR/d12/f
378         chmod 0666 $DIR/d12/f
379         chmod 0654 $DIR/d12/f
380         $CHECKSTAT -t file -p 0654 $DIR/d12/f || error
381 }
382 run_test 12 "touch .../d12/f; chmod .../d12/f .../d12/f ========"
383
384 test_13() {
385         mkdir $DIR/d13
386         dd if=/dev/zero of=$DIR/d13/f count=10
387         >  $DIR/d13/f
388         $CHECKSTAT -t file -s 0 $DIR/d13/f || error
389 }
390 run_test 13 "creat .../d13/f; dd .../d13/f; > .../d13/f ========"
391
392 test_14() {
393         mkdir $DIR/d14
394         touch $DIR/d14/f
395         rm $DIR/d14/f
396         $CHECKSTAT -a $DIR/d14/f || error
397 }
398 run_test 14 "touch .../d14/f; rm .../d14/f; rm .../d14/f ======="
399
400 test_15() {
401         mkdir $DIR/d15
402         touch $DIR/d15/f
403         mv $DIR/d15/f $DIR/d15/f2
404         $CHECKSTAT -t file $DIR/d15/f2 || error
405 }
406 run_test 15 "touch .../d15/f; mv .../d15/f .../d15/f2 =========="
407
408 test_16() {
409         mkdir $DIR/d16
410         touch $DIR/d16/f
411         rm -rf $DIR/d16/f
412         $CHECKSTAT -a $DIR/d16/f || error
413 }
414 run_test 16 "touch .../d16/f; rm -rf .../d16/f ================="
415
416 test_17a() {
417         mkdir -p $DIR/d17
418         touch $DIR/d17/f
419         ln -s $DIR/d17/f $DIR/d17/l-exist
420         ls -l $DIR/d17
421         $CHECKSTAT -l $DIR/d17/f $DIR/d17/l-exist || error
422         $CHECKSTAT -f -t f $DIR/d17/l-exist || error
423         rm -f $DIR/d17/l-exist
424         $CHECKSTAT -a $DIR/d17/l-exist || error
425 }
426 run_test 17a "symlinks: create, remove (real) =================="
427
428 test_17b() {
429         mkdir -p $DIR/d17
430         ln -s no-such-file $DIR/d17/l-dangle
431         ls -l $DIR/d17
432         $CHECKSTAT -l no-such-file $DIR/d17/l-dangle || error
433         $CHECKSTAT -fa $DIR/d17/l-dangle || error
434         rm -f $DIR/d17/l-dangle
435         $CHECKSTAT -a $DIR/d17/l-dangle || error
436 }
437 run_test 17b "symlinks: create, remove (dangling) =============="
438
439 test_17c() { # bug 3440 - don't save failed open RPC for replay
440         mkdir -p $DIR/d17
441         ln -s foo $DIR/d17/f17c
442         cat $DIR/d17/f17c && error "opened non-existent symlink" || true
443 }
444 run_test 17c "symlinks: open dangling (should return error) ===="
445
446 test_17d() {
447         mkdir -p $DIR/d17
448         ln -s foo $DIR/d17/f17d
449         touch $DIR/d17/f17d || error "creating to new symlink"
450 }
451 run_test 17d "symlinks: create dangling ========================"
452
453 test_17e() {
454         mkdir -p $DIR/$tdir
455         local foo=$DIR/$tdir/$tfile
456         ln -s $foo $foo || error "create symlink failed"
457         ls -l $foo || error "ls -l failed"
458         ls $foo && error "ls not failed" || true
459 }
460 run_test 17e "symlinks: create recursive symlink (should return error) ===="
461
462 test_17f() {
463         mkdir -p $DIR/d17f
464         ln -s 1234567890/2234567890/3234567890/4234567890 $DIR/d17f/111
465         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890 $DIR/d17f/222
466         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890 $DIR/d17f/333
467         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890 $DIR/d17f/444
468         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890/c234567890/d234567890/f234567890 $DIR/d17f/555
469         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890/c234567890/d234567890/f234567890/aaaaaaaaaa/bbbbbbbbbb/cccccccccc/dddddddddd/eeeeeeeeee/ffffffffff/ $DIR/d17f/666
470         ls -l  $DIR/d17f
471 }
472 run_test 17f "symlinks: long and very long symlink name ========================"
473
474 test_18() {
475         touch $DIR/f
476         ls $DIR || error
477 }
478 run_test 18 "touch .../f ; ls ... =============================="
479
480 test_19a() {
481         touch $DIR/f19
482         ls -l $DIR
483         rm $DIR/f19
484         $CHECKSTAT -a $DIR/f19 || error
485 }
486 run_test 19a "touch .../f19 ; ls -l ... ; rm .../f19 ==========="
487
488 test_19b() {
489         ls -l $DIR/f19 && error || true
490 }
491 run_test 19b "ls -l .../f19 (should return error) =============="
492
493 test_19c() {
494         [ $RUNAS_ID -eq $UID ] && skip "RUNAS_ID = UID = $UID -- skipping" && return
495         $RUNAS touch $DIR/f19 && error || true
496 }
497 run_test 19c "$RUNAS touch .../f19 (should return error) =="
498
499 test_19d() {
500         cat $DIR/f19 && error || true
501 }
502 run_test 19d "cat .../f19 (should return error) =============="
503
504 test_20() {
505         touch $DIR/f
506         rm $DIR/f
507         log "1 done"
508         touch $DIR/f
509         rm $DIR/f
510         log "2 done"
511         touch $DIR/f
512         rm $DIR/f
513         log "3 done"
514         $CHECKSTAT -a $DIR/f || error
515 }
516 run_test 20 "touch .../f ; ls -l ... ==========================="
517
518 test_21() {
519         mkdir $DIR/d21
520         [ -f $DIR/d21/dangle ] && rm -f $DIR/d21/dangle
521         ln -s dangle $DIR/d21/link
522         echo foo >> $DIR/d21/link
523         cat $DIR/d21/dangle
524         $CHECKSTAT -t link $DIR/d21/link || error
525         $CHECKSTAT -f -t file $DIR/d21/link || error
526 }
527 run_test 21 "write to dangling link ============================"
528
529 test_22() {
530         WDIR=$DIR/$tdir
531         mkdir $WDIR
532         chown $RUNAS_ID $WDIR
533         (cd $WDIR || error "cd $WDIR failed";
534         $RUNAS tar cf - /etc/hosts /etc/sysconfig/network | \
535         $RUNAS tar xf -)
536         ls -lR $WDIR/etc || error "ls -lR $WDIR/etc failed"
537         $CHECKSTAT -t dir $WDIR/etc || error "checkstat -t dir failed"
538         $CHECKSTAT -u \#$RUNAS_ID $WDIR/etc || error "checkstat -u failed"
539 }
540 run_test 22 "unpack tar archive as non-root user ==============="
541
542 test_23() {
543         mkdir $DIR/d23
544         $TOEXCL $DIR/d23/f23
545         $TOEXCL -e $DIR/d23/f23 || error
546 }
547 run_test 23 "O_CREAT|O_EXCL in subdir =========================="
548
549 test_24a() {
550         echo '== rename sanity =============================================='
551         echo '-- same directory rename'
552         mkdir $DIR/R1
553         touch $DIR/R1/f
554         mv $DIR/R1/f $DIR/R1/g
555         $CHECKSTAT -t file $DIR/R1/g || error
556 }
557 run_test 24a "touch .../R1/f; rename .../R1/f .../R1/g ========="
558
559 test_24b() {
560         mkdir $DIR/R2
561         touch $DIR/R2/{f,g}
562         mv $DIR/R2/f $DIR/R2/g
563         $CHECKSTAT -a $DIR/R2/f || error
564         $CHECKSTAT -t file $DIR/R2/g || error
565 }
566 run_test 24b "touch .../R2/{f,g}; rename .../R2/f .../R2/g ====="
567
568 test_24c() {
569         mkdir $DIR/R3
570         mkdir $DIR/R3/f
571         mv $DIR/R3/f $DIR/R3/g
572         $CHECKSTAT -a $DIR/R3/f || error
573         $CHECKSTAT -t dir $DIR/R3/g || error
574 }
575 run_test 24c "mkdir .../R3/f; rename .../R3/f .../R3/g ========="
576
577 test_24d() {
578         mkdir $DIR/R4
579         mkdir $DIR/R4/{f,g}
580         mrename $DIR/R4/f $DIR/R4/g
581         $CHECKSTAT -a $DIR/R4/f || error
582         $CHECKSTAT -t dir $DIR/R4/g || error
583 }
584 run_test 24d "mkdir .../R4/{f,g}; rename .../R4/f .../R4/g ====="
585
586 test_24e() {
587         echo '-- cross directory renames --' 
588         mkdir $DIR/R5{a,b}
589         touch $DIR/R5a/f
590         mv $DIR/R5a/f $DIR/R5b/g
591         $CHECKSTAT -a $DIR/R5a/f || error
592         $CHECKSTAT -t file $DIR/R5b/g || error
593 }
594 run_test 24e "touch .../R5a/f; rename .../R5a/f .../R5b/g ======"
595
596 test_24f() {
597         mkdir $DIR/R6{a,b}
598         touch $DIR/R6a/f $DIR/R6b/g
599         mv $DIR/R6a/f $DIR/R6b/g
600         $CHECKSTAT -a $DIR/R6a/f || error
601         $CHECKSTAT -t file $DIR/R6b/g || error
602 }
603 run_test 24f "touch .../R6a/f R6b/g; mv .../R6a/f .../R6b/g ===="
604
605 test_24g() {
606         mkdir $DIR/R7{a,b}
607         mkdir $DIR/R7a/d
608         mv $DIR/R7a/d $DIR/R7b/e
609         $CHECKSTAT -a $DIR/R7a/d || error
610         $CHECKSTAT -t dir $DIR/R7b/e || error
611 }
612 run_test 24g "mkdir .../R7{a,b}/d; mv .../R7a/d .../R7b/e ======"
613
614 test_24h() {
615         mkdir $DIR/R8{a,b}
616         mkdir $DIR/R8a/d $DIR/R8b/e
617         mrename $DIR/R8a/d $DIR/R8b/e
618         $CHECKSTAT -a $DIR/R8a/d || error
619         $CHECKSTAT -t dir $DIR/R8b/e || error
620 }
621 run_test 24h "mkdir .../R8{a,b}/{d,e}; rename .../R8a/d .../R8b/e"
622
623 test_24i() {
624         echo "-- rename error cases"
625         mkdir $DIR/R9
626         mkdir $DIR/R9/a
627         touch $DIR/R9/f
628         mrename $DIR/R9/f $DIR/R9/a
629         $CHECKSTAT -t file $DIR/R9/f || error
630         $CHECKSTAT -t dir  $DIR/R9/a || error
631         $CHECKSTAT -a file $DIR/R9/a/f || error
632 }
633 run_test 24i "rename file to dir error: touch f ; mkdir a ; rename f a"
634
635 test_24j() {
636         mkdir $DIR/R10
637         mrename $DIR/R10/f $DIR/R10/g
638         $CHECKSTAT -t dir $DIR/R10 || error
639         $CHECKSTAT -a $DIR/R10/f || error
640         $CHECKSTAT -a $DIR/R10/g || error
641 }
642 run_test 24j "source does not exist ============================" 
643
644 test_24k() {
645         mkdir $DIR/R11a $DIR/R11a/d
646         touch $DIR/R11a/f
647         mv $DIR/R11a/f $DIR/R11a/d
648         $CHECKSTAT -a $DIR/R11a/f || error
649         $CHECKSTAT -t file $DIR/R11a/d/f || error
650 }
651 run_test 24k "touch .../R11a/f; mv .../R11a/f .../R11a/d ======="
652
653 # bug 2429 - rename foo foo foo creates invalid file
654 test_24l() {
655         f="$DIR/f24l"
656         multiop $f OcNs || error
657 }
658 run_test 24l "Renaming a file to itself ========================"
659
660 test_24m() {
661         f="$DIR/f24m"
662         multiop $f OcLN ${f}2 ${f}2 || error "link ${f}2 ${f}2 failed"
663         # on ext3 this does not remove either the source or target files
664         # though the "expected" operation would be to remove the source
665         $CHECKSTAT -t file ${f} || error "${f} missing"
666         $CHECKSTAT -t file ${f}2 || error "${f}2 missing"
667 }
668 run_test 24m "Renaming a file to a hard link to itself ========="
669
670 test_24n() {
671     f="$DIR/f24n"
672     # this stats the old file after it was renamed, so it should fail
673     touch ${f}
674     $CHECKSTAT ${f}
675     mv ${f} ${f}.rename
676     $CHECKSTAT ${f}.rename
677     $CHECKSTAT -a ${f}
678 }
679 run_test 24n "Statting the old file after renaming (Posix rename 2)"
680
681 test_24o() {
682         check_kernel_version 37 || return 0
683         mkdir -p $DIR/d24o
684         rename_many -s random -v -n 10 $DIR/d24o
685 }
686 run_test 24o "rename of files during htree split ==============="
687
688 test_24p() {
689         mkdir $DIR/R12{a,b}
690         DIRINO=`ls -lid $DIR/R12a | awk '{ print $1 }'`
691         mrename $DIR/R12a $DIR/R12b
692         $CHECKSTAT -a $DIR/R12a || error
693         $CHECKSTAT -t dir $DIR/R12b || error
694         DIRINO2=`ls -lid $DIR/R12b | awk '{ print $1 }'`
695         [ "$DIRINO" = "$DIRINO2" ] || error "R12a $DIRINO != R12b $DIRINO2"
696 }
697 run_test 24p "mkdir .../R12{a,b}; rename .../R12a .../R12b"
698
699 test_24q() {
700         mkdir $DIR/R13{a,b}
701         DIRINO=`ls -lid $DIR/R13a | awk '{ print $1 }'`
702         multiop $DIR/R13b D_c &
703         MULTIPID=$!
704         usleep 500
705
706         mrename $DIR/R13a $DIR/R13b
707         $CHECKSTAT -a $DIR/R13a || error
708         $CHECKSTAT -t dir $DIR/R13b || error
709         DIRINO2=`ls -lid $DIR/R13b | awk '{ print $1 }'`
710         [ "$DIRINO" = "$DIRINO2" ] || error "R13a $DIRINO != R13b $DIRINO2"
711         kill -USR1 $MULTIPID
712         wait $MULTIPID || error "multiop close failed"
713 }
714 run_test 24q "mkdir .../R13{a,b}; open R13b rename R13a R13b ==="
715
716 test_24r() { #bug 3789
717         mkdir $DIR/R14a $DIR/R14a/b
718         mrename $DIR/R14a $DIR/R14a/b && error "rename to subdir worked!"
719         $CHECKSTAT -t dir $DIR/R14a || error "$DIR/R14a missing"
720         $CHECKSTAT -t dir $DIR/R14a/b || error "$DIR/R14a/b missing"
721 }
722 run_test 24r "mkdir .../R14a/b; rename .../R14a .../R14a/b ====="
723
724 test_24s() {
725         mkdir $DIR/R15a $DIR/R15a/b $DIR/R15a/b/c
726         mrename $DIR/R15a $DIR/R15a/b/c && error "rename to sub-subdir worked!"
727         $CHECKSTAT -t dir $DIR/R15a || error "$DIR/R15a missing"
728         $CHECKSTAT -t dir $DIR/R15a/b/c || error "$DIR/R15a/b/c missing"
729 }
730 run_test 24s "mkdir .../R15a/b/c; rename .../R15a .../R15a/b/c ="
731 test_24t() {
732         mkdir $DIR/R16a $DIR/R16a/b $DIR/R16a/b/c
733         mrename $DIR/R16a/b/c $DIR/R16a && error "rename to sub-subdir worked!"
734         $CHECKSTAT -t dir $DIR/R16a || error "$DIR/R16a missing"
735         $CHECKSTAT -t dir $DIR/R16a/b/c || error "$DIR/R16a/b/c missing"
736 }
737 run_test 24t "mkdir .../R16a/b/c; rename .../R16a/b/c .../R16a ="
738
739 test_24u() { # bug12192
740         multiop $DIR/$tfile C2w$((2048 * 1024))c || error
741         $CHECKSTAT -s $((2048 * 1024)) $DIR/$tfile || error "wrong file size"
742 }
743 run_test 24u "create stripe file"
744
745 test_25a() {
746         echo '== symlink sanity ============================================='
747
748         mkdir $DIR/d25
749         ln -s d25 $DIR/s25
750         touch $DIR/s25/foo || error
751 }
752 run_test 25a "create file in symlinked directory ==============="
753
754 test_25b() {
755         [ ! -d $DIR/d25 ] && test_25a
756         $CHECKSTAT -t file $DIR/s25/foo || error
757 }
758 run_test 25b "lookup file in symlinked directory ==============="
759
760 test_26a() {
761         mkdir $DIR/d26
762         mkdir $DIR/d26/d26-2
763         ln -s d26/d26-2 $DIR/s26
764         touch $DIR/s26/foo || error
765 }
766 run_test 26a "multiple component symlink ======================="
767
768 test_26b() {
769         mkdir -p $DIR/d26b/d26-2
770         ln -s d26b/d26-2/foo $DIR/s26-2
771         touch $DIR/s26-2 || error
772 }
773 run_test 26b "multiple component symlink at end of lookup ======"
774
775 test_26c() {
776         mkdir $DIR/d26.2
777         touch $DIR/d26.2/foo
778         ln -s d26.2 $DIR/s26.2-1
779         ln -s s26.2-1 $DIR/s26.2-2
780         ln -s s26.2-2 $DIR/s26.2-3
781         chmod 0666 $DIR/s26.2-3/foo
782 }
783 run_test 26c "chain of symlinks ================================"
784
785 # recursive symlinks (bug 439)
786 test_26d() {
787         ln -s d26-3/foo $DIR/d26-3
788 }
789 run_test 26d "create multiple component recursive symlink ======"
790
791 test_26e() {
792         [ ! -h $DIR/d26-3 ] && test_26d
793         rm $DIR/d26-3
794 }
795 run_test 26e "unlink multiple component recursive symlink ======"
796
797 # recursive symlinks (bug 7022)
798 test_26f() {
799         mkdir $DIR/$tfile        || error "mkdir $DIR/$tfile failed"
800         cd $DIR/$tfile           || error "cd $DIR/$tfile failed"
801         mkdir -p $tdir/bar1      || error "mkdir $tdir/bar1 failed"
802         mkdir $tfile             || error "mkdir $tfile failed"
803         cd $tfile                || error "cd $tfile failed"
804         ln -s .. dotdot          || error "ln dotdot failed"
805         ln -s dotdot/$tdir $tdir || error "ln $tdir failed"
806         cd ../..                 || error "cd ../.. failed"
807         output=`ls $tfile/$tfile/$tdir/bar1`
808         [ "$output" = bar1 ] && error "unexpected output"
809         rm -r $tfile             || error "rm $tfile failed"
810         $CHECKSTAT -a $DIR/$tfile || error "$tfile not gone"
811 }
812 run_test 26f "rm -r of a directory which has recursive symlink ="
813
814 test_27a() {
815         echo '== stripe sanity =============================================='
816         mkdir -p $DIR/d27 || error "mkdir failed"
817         $SETSTRIPE $DIR/d27/f0 65536 0 1 || error "lstripe failed"
818         $CHECKSTAT -t file $DIR/d27/f0 || error "checkstat failed"
819         pass
820         log "== test_27a: write to one stripe file ========================="
821         cp /etc/hosts $DIR/d27/f0 || error
822 }
823 run_test 27a "one stripe file =================================="
824
825 test_27c() {
826         [ "$OSTCOUNT" -lt "2" ] && skip "skipping 2-stripe test" && return
827         mkdir -p $DIR/d27
828         $SETSTRIPE $DIR/d27/f01 65536 0 2 || error "lstripe failed"
829         [ `$GETSTRIPE $DIR/d27/f01 | grep -A 10 obdidx | wc -l` -eq 4 ] ||
830                 error "two-stripe file doesn't have two stripes"
831         pass
832         log "== test_27d: write to two stripe file file f01 ================"
833         dd if=/dev/zero of=$DIR/d27/f01 bs=4k count=4 || error "dd failed"
834 }
835 run_test 27c "create two stripe file f01 ======================="
836
837 test_27d() {
838         mkdir -p $DIR/d27
839         $SETSTRIPE $DIR/d27/fdef 0 -1 0 || error "lstripe failed"
840         $CHECKSTAT -t file $DIR/d27/fdef || error "checkstat failed"
841         dd if=/dev/zero of=$DIR/d27/fdef bs=4k count=4 || error
842 }
843 run_test 27d "create file with default settings ================"
844
845 test_27e() {
846         mkdir -p $DIR/d27
847         $SETSTRIPE $DIR/d27/f12 65536 0 2 || error "lstripe failed"
848         $SETSTRIPE $DIR/d27/f12 65536 0 2 && error "lstripe succeeded twice"
849         $CHECKSTAT -t file $DIR/d27/f12 || error "checkstat failed"
850 }
851 run_test 27e "lstripe existing file (should return error) ======"
852
853 test_27f() {
854         mkdir -p $DIR/d27
855         $SETSTRIPE $DIR/d27/fbad 100 0 1 && error "lstripe failed"
856         dd if=/dev/zero of=$DIR/d27/f12 bs=4k count=4 || error "dd failed"
857         $GETSTRIPE $DIR/d27/fbad || error "lfs getstripe failed"
858 }
859 run_test 27f "lstripe with bad stripe size (should return error)"
860
861 test_27g() {
862         mkdir -p $DIR/d27
863         $MCREATE $DIR/d27/fnone || error "mcreate failed"
864         pass
865         log "== test 27h: lfs getstripe with no objects ===================="
866         $GETSTRIPE $DIR/d27/fnone 2>&1 | grep "no stripe info" || error "has object"
867         pass
868         log "== test 27i: lfs getstripe with some objects =================="
869         touch $DIR/d27/fsome || error "touch failed"
870         $GETSTRIPE $DIR/d27/fsome | grep obdidx || error "missing objects"
871 }
872 run_test 27g "test lfs getstripe ==========================================="
873
874 test_27j() {
875         mkdir -p $DIR/d27
876         $SETSTRIPE $DIR/d27/f27j 65536 $OSTCOUNT 1 && error "lstripe failed"||true
877 }
878 run_test 27j "lstripe with bad stripe offset (should return error)"
879
880 test_27k() { # bug 2844
881         mkdir -p $DIR/d27
882         FILE=$DIR/d27/f27k
883         LL_MAX_BLKSIZE=$((4 * 1024 * 1024))
884         [ ! -d $DIR/d27 ] && mkdir -p $DIR/d27
885         $SETSTRIPE $FILE 67108864 -1 0 || error "lstripe failed"
886         BLKSIZE=`stat $FILE | awk '/IO Block:/ { print $7 }'`
887         [ $BLKSIZE -le $LL_MAX_BLKSIZE ] || error "$BLKSIZE > $LL_MAX_BLKSIZE"
888         dd if=/dev/zero of=$FILE bs=4k count=1
889         BLKSIZE=`stat $FILE | awk '/IO Block:/ { print $7 }'`
890         [ $BLKSIZE -le $LL_MAX_BLKSIZE ] || error "$BLKSIZE > $LL_MAX_BLKSIZE"
891 }
892 run_test 27k "limit i_blksize for broken user apps ============="
893
894 test_27l() {
895         mkdir -p $DIR/d27
896         mcreate $DIR/f27l || error "creating file"
897         $RUNAS $SETSTRIPE $DIR/f27l 65536 -1 1 && \
898                 error "lstripe should have failed" || true
899 }
900 run_test 27l "check setstripe permissions (should return error)"
901
902 test_27m() {
903         [ "$OSTCOUNT" -lt "2" ] && skip "$OSTCOUNT < 2 OSTs -- skipping" && return
904         if [ $ORIGFREE -gt $MAXFREE ]; then
905                 skip "$ORIGFREE > $MAXFREE skipping out-of-space test on OST0"
906                 return
907         fi
908         mkdir -p $DIR/d27
909         $SETSTRIPE $DIR/d27/f27m_1 0 0 1
910         dd if=/dev/zero of=$DIR/d27/f27m_1 bs=1024 count=$MAXFREE && \
911                 error "dd should fill OST0"
912         i=2
913         while $SETSTRIPE $DIR/d27/f27m_$i 0 0 1 ; do
914                 i=`expr $i + 1`
915                 [ $i -gt 256 ] && break
916         done
917         i=`expr $i + 1`
918         touch $DIR/d27/f27m_$i
919         [ `$GETSTRIPE $DIR/d27/f27m_$i | grep -A 10 obdidx | awk '{print $1}'| grep -w "0"` ] && \
920                 error "OST0 was full but new created file still use it"
921         i=`expr $i + 1`
922         touch $DIR/d27/f27m_$i
923         [ `$GETSTRIPE $DIR/d27/f27m_$i | grep -A 10 obdidx | awk '{print $1}'| grep -w "0"` ] && \
924                 error "OST0 was full but new created file still use it"
925         rm -r $DIR/d27
926         sleep 15
927 }
928 run_test 27m "create file while OST0 was full =================="
929
930 # osc's keep a NOSPC stick flag that gets unset with rmdir
931 reset_enospc() {
932         [ "$1" ] && FAIL_LOC=$1 || FAIL_LOC=0
933         mkdir -p $DIR/d27/nospc
934         rmdir $DIR/d27/nospc
935         sysctl -w lustre.fail_loc=$FAIL_LOC
936 }
937
938 exhaust_precreations() {
939         OSTIDX=$1
940         OST=$(grep ${OSTIDX}": " $LPROC/lov/${LOVNAME}/target_obd | \
941             awk '{print $2}' | sed -e 's/_UUID$//')
942         # on the mdt's osc
943         OSC=$(ls $LPROC/osc | grep "${OST}-osc-MDT0000")
944         last_id=$(cat $LPROC/osc/${OSC}/prealloc_last_id)
945         next_id=$(cat $LPROC/osc/${OSC}/prealloc_next_id)
946
947         mkdir -p $DIR/d27/${OST}
948         $SETSTRIPE $DIR/d27/${OST} 0 $OSTIDX 1
949 #define OBD_FAIL_OST_ENOSPC              0x215
950         sysctl -w lustre.fail_loc=0x215
951         echo "Creating to objid $last_id on ost $OST..."
952         createmany -o $DIR/d27/${OST}/f $next_id $((last_id - next_id + 2))
953         grep '[0-9]' $LPROC/osc/${OSC}/prealloc*
954         reset_enospc $2
955 }
956
957 exhaust_all_precreations() {
958         local i
959         for (( i=0; i < OSTCOUNT; i++ )) ; do
960                 exhaust_precreations $i 0x215
961         done
962         reset_enospc $1
963 }
964
965 test_27n() {
966         [ "$OSTCOUNT" -lt "2" ] && skip "too few OSTs" && return
967         remote_mds && skip "remote MDS" && return
968
969         reset_enospc
970         rm -f $DIR/d27/f27n
971         exhaust_precreations 0 0x80000215
972
973         touch $DIR/d27/f27n || error
974
975         reset_enospc
976 }
977 run_test 27n "create file with some full OSTs =================="
978
979 test_27o() {
980         [ "$OSTCOUNT" -lt "2" ] && skip "too few OSTs" && return
981         remote_mds && skip "remote MDS" && return
982
983         reset_enospc
984         rm -f $DIR/d27/f27o
985         exhaust_all_precreations 0x215
986         sleep 5
987
988         touch $DIR/d27/f27o && error "able to create $DIR/d27/f27o"
989
990         reset_enospc
991         rm -rf $DIR/d27/*
992 }
993 run_test 27o "create file with all full OSTs (should error) ===="
994
995 test_27p() {
996         [ "$OSTCOUNT" -lt "2" ] && skip "too few OSTs" && return
997         remote_mds && skip "remote MDS" && return
998
999         reset_enospc
1000         rm -f $DIR/d27/f27p
1001
1002         $MCREATE $DIR/d27/f27p || error
1003         $TRUNCATE $DIR/d27/f27p 80000000 || error
1004         $CHECKSTAT -s 80000000 $DIR/d27/f27p || error
1005
1006         exhaust_precreations 0 0x80000215
1007         echo foo >> $DIR/d27/f27p || error
1008         $CHECKSTAT -s 80000004 $DIR/d27/f27p || error
1009
1010         reset_enospc
1011 }
1012 run_test 27p "append to a truncated file with some full OSTs ==="
1013
1014 test_27q() {
1015         [ "$OSTCOUNT" -lt "2" ] && skip "too few OSTs" && return
1016         remote_mds && skip "remote MDS" && return
1017
1018         reset_enospc
1019         rm -f $DIR/d27/f27q
1020
1021         $MCREATE $DIR/d27/f27q || error "mcreate $DIR/d27/f27q failed"
1022         $TRUNCATE $DIR/d27/f27q 80000000 ||error "truncate $DIR/d27/f27q failed"
1023         $CHECKSTAT -s 80000000 $DIR/d27/f27q || error "checkstat failed"
1024
1025         exhaust_all_precreations 0x215
1026
1027         echo foo >> $DIR/d27/f27q && error "append succeeded"
1028         $CHECKSTAT -s 80000000 $DIR/d27/f27q || error "checkstat 2 failed"
1029
1030         reset_enospc
1031 }
1032 run_test 27q "append to truncated file with all OSTs full (should error) ==="
1033
1034 test_27r() {
1035         [ "$OSTCOUNT" -lt "2" ] && skip "too few OSTs" && return
1036         remote_mds && skip "remote MDS" && return
1037
1038         reset_enospc
1039         rm -f $DIR/d27/f27r
1040         exhaust_precreations 0 0x80000215
1041
1042         $SETSTRIPE $DIR/d27/f27r 0 0 2 # && error
1043
1044         reset_enospc
1045 }
1046 run_test 27r "stripe file with some full OSTs (shouldn't LBUG) ="
1047
1048 test_27s() { # bug 10725
1049        mkdir -p $DIR/$tdir
1050        $LSTRIPE $DIR/$tdir $((2048 * 1024 * 1024)) -1 2 && \
1051                error "stripe width >= 2^32 succeeded" || true
1052 }
1053 run_test 27s "lsm_xfersize overflow (should error) (bug 10725)"
1054
1055 test_27t() { # bug 10864
1056         WDIR=`pwd`
1057         WLFS=`which lfs`
1058         cd $DIR
1059         touch $tfile
1060         $WLFS getstripe $tfile
1061         cd $WDIR
1062 }
1063 run_test 27t "check that utils parse path correctly"
1064
1065 test_27u() { # bug 4900
1066         [ "$OSTCOUNT" -lt "2" ] && skip "too few OSTs" && return
1067         remote_mds && skip "remote MDS" && return
1068
1069         #define OBD_FAIL_MDS_OSC_PRECREATE      0x13d
1070
1071         sysctl -w lustre.fail_loc=0x13d
1072         mkdir -p $DIR/d27u
1073         createmany -o $DIR/d27u/t- 1000
1074         sysctl -w lustre.fail_loc=0
1075
1076         $LFS getstripe $DIR/d27u > $TMP/files
1077         OBJS=`cat $TMP/files | awk -vobjs=0 '($1 == 0) { objs += 1 } END { print objs;}'`
1078         unlinkmany $DIR/d27u/t- 1000
1079         [ $OBJS -gt 0 ] && \
1080                 error "Found $OBJS objects were created on OST-0" || pass
1081 }
1082 run_test 27u "skip object creation on OSC w/o objects =========="
1083
1084 test_27v() { # bug 4900
1085         [ "$OSTCOUNT" -lt "2" ] && skip "too few OSTs" && return
1086         remote_mds && skip "remote MDS" && return
1087
1088         exhaust_all_precreations
1089
1090         mkdir -p $DIR/$tdir
1091         lfs setstripe $DIR/$tdir 0 -1 1         # 1 stripe / file
1092
1093         touch $DIR/$tdir/$tfile
1094         #define OBD_FAIL_TGT_DELAY_PRECREATE     0x705
1095         sysctl -w lustre.fail_loc=0x705
1096         START=`date +%s`
1097         for F in `seq 1 32`; do
1098                 touch $DIR/$tdir/$tfile.$F
1099         done
1100         sysctl -w lustre.fail_loc=0
1101
1102         FINISH=`date +%s`
1103         TIMEOUT=`sysctl -n lustre.timeout`
1104         [ $((FINISH - START)) -ge $((TIMEOUT / 2)) ] && \
1105                error "$FINISH - $START >= $TIMEOUT / 2"
1106
1107         reset_enospc
1108 }
1109 run_test 27v "skip object creation on slow OST ================="
1110
1111 test_27w() { # bug 10997
1112         mkdir -p $DIR/d27w || error "mkdir failed"
1113         $LSTRIPE $DIR/d27w/f0 -s 65536 || error "lstripe failed"
1114         size=`$LSTRIPEINFO $DIR/d27w/f0 | awk {'print $1'}`
1115         [ $size -ne 65536 ] && error "stripe size $size != 65536" || true
1116
1117         [ "$OSTCOUNT" -lt "2" ] && skip "skipping multiple stripe count/offset test" && return
1118         for i in `seq 1 $OSTCOUNT`; do
1119                 offset=$(($i-1))
1120                 $LSTRIPE $DIR/d27w/f$i -c $i -i $offset || error "lstripe -c $i -i $offset failed"
1121                 count=`$LSTRIPEINFO $DIR/d27w/f$i | awk {'print $2'}`
1122                 index=`$LSTRIPEINFO $DIR/d27w/f$i | awk {'print $3'}`
1123                 [ $count -ne $i ] && error "stripe count $count != $i" || true
1124                 [ $index -ne $offset ] && error "stripe offset $index != $offset" || true
1125         done
1126 }
1127 run_test 27w "check lfs setstripe -c -s -i options ============="
1128
1129 test_28() {
1130         mkdir $DIR/d28
1131         $CREATETEST $DIR/d28/ct || error
1132 }
1133 run_test 28 "create/mknod/mkdir with bad file types ============"
1134
1135 test_29() {
1136         cancel_lru_locks mdc
1137         mkdir $DIR/d29
1138         touch $DIR/d29/foo
1139         log 'first d29'
1140         ls -l $DIR/d29
1141         MDCDIR=${MDCDIR:-$LPROC/ldlm/namespaces/*-mdc-*}
1142         LOCKCOUNTORIG=`cat $MDCDIR/lock_count`
1143         LOCKUNUSEDCOUNTORIG=`cat $MDCDIR/lock_unused_count`
1144         [ -z $"LOCKCOUNTORIG" ] && echo "No mdc lock count" && return 1
1145         log 'second d29'
1146         ls -l $DIR/d29
1147         log 'done'
1148         LOCKCOUNTCURRENT=`cat $MDCDIR/lock_count`
1149         LOCKUNUSEDCOUNTCURRENT=`cat $MDCDIR/lock_unused_count`
1150         if [ "$LOCKCOUNTCURRENT" -gt "$LOCKCOUNTORIG" ]; then
1151                 echo > $LPROC/ldlm/dump_namespaces
1152                 error "CURRENT: $LOCKCOUNTCURRENT > $LOCKCOUNTORIG"
1153                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
1154                 log "dumped log to $TMP/test_29.dk (bug 5793)"
1155                 return 2
1156         fi
1157         if [ "$LOCKUNUSEDCOUNTCURRENT" -gt "$LOCKUNUSEDCOUNTORIG" ]; then
1158                 error "UNUSED: $LOCKUNUSEDCOUNTCURRENT > $LOCKUNUSEDCOUNTORIG"
1159                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
1160                 log "dumped log to $TMP/test_29.dk (bug 5793)"
1161                 return 3
1162         fi
1163 }
1164 run_test 29 "IT_GETATTR regression  ============================"
1165
1166 test_30() {
1167         cp `which ls` $DIR || cp /bin/ls $DIR
1168         $DIR/ls /
1169         rm $DIR/ls
1170 }
1171 run_test 30 "run binary from Lustre (execve) ==================="
1172
1173 test_31a() {
1174         $OPENUNLINK $DIR/f31 $DIR/f31 || error
1175         $CHECKSTAT -a $DIR/f31 || error
1176 }
1177 run_test 31a "open-unlink file =================================="
1178
1179 test_31b() {
1180         touch $DIR/f31 || error
1181         ln $DIR/f31 $DIR/f31b || error
1182         multiop $DIR/f31b Ouc || error
1183         $CHECKSTAT -t file $DIR/f31 || error
1184 }
1185 run_test 31b "unlink file with multiple links while open ======="
1186
1187 test_31c() {
1188         touch $DIR/f31 || error
1189         ln $DIR/f31 $DIR/f31c || error
1190         multiop $DIR/f31 O_uc &
1191         MULTIPID=$!
1192         multiop $DIR/f31c Ouc
1193         usleep 500
1194         kill -USR1 $MULTIPID
1195         wait $MULTIPID
1196 }
1197 run_test 31c "open-unlink file with multiple links ============="
1198
1199 test_31d() {
1200         opendirunlink $DIR/d31d $DIR/d31d || error
1201         $CHECKSTAT -a $DIR/d31d || error
1202 }
1203 run_test 31d "remove of open directory ========================="
1204
1205 test_31e() { # bug 2904
1206         check_kernel_version 34 || return 0
1207         openfilleddirunlink $DIR/d31e || error
1208 }
1209 run_test 31e "remove of open non-empty directory ==============="
1210
1211 test_31f() { # bug 4554
1212         set -vx
1213         mkdir $DIR/d31f
1214         lfs setstripe $DIR/d31f 1048576 -1 1
1215         cp /etc/hosts $DIR/d31f
1216         ls -l $DIR/d31f
1217         lfs getstripe $DIR/d31f/hosts
1218         multiop $DIR/d31f D_c &
1219         MULTIPID=$!
1220
1221         sleep 1
1222
1223         rm -rv $DIR/d31f || error "first of $DIR/d31f"
1224         mkdir $DIR/d31f
1225         lfs setstripe $DIR/d31f 1048576 -1 1
1226         cp /etc/hosts $DIR/d31f
1227         ls -l $DIR/d31f
1228         lfs getstripe $DIR/d31f/hosts
1229         multiop $DIR/d31f D_c &
1230         MULTIPID2=$!
1231
1232         sleep 6
1233
1234         kill -USR1 $MULTIPID || error "first opendir $MULTIPID not running"
1235         wait $MULTIPID || error "first opendir $MULTIPID failed"
1236
1237         sleep 6
1238
1239         kill -USR1 $MULTIPID2 || error "second opendir $MULTIPID not running"
1240         wait $MULTIPID2 || error "second opendir $MULTIPID2 failed"
1241         set +vx
1242 }
1243 run_test 31f "remove of open directory with open-unlink file ==="
1244
1245 test_31g() {
1246         echo "-- cross directory link --"
1247         mkdir $DIR/d31g{a,b}
1248         touch $DIR/d31ga/f
1249         ln $DIR/d31ga/f $DIR/d31gb/g
1250         $CHECKSTAT -t file $DIR/d31ga/f || error "source"
1251         [ `stat -c%h $DIR/d31ga/f` == '2' ] || error "source nlink"
1252         $CHECKSTAT -t file $DIR/d31gb/g || error "target"
1253         [ `stat -c%h $DIR/d31gb/g` == '2' ] || error "target nlink"
1254 }
1255 run_test 31g "cross directory link==============="
1256
1257 test_31h() {
1258         echo "-- cross directory link --"
1259         mkdir $DIR/d31h
1260         mkdir $DIR/d31h/dir
1261         touch $DIR/d31h/f
1262         ln $DIR/d31h/f $DIR/d31h/dir/g
1263         $CHECKSTAT -t file $DIR/d31h/f || error "source"
1264         [ `stat -c%h $DIR/d31h/f` == '2' ] || error "source nlink"
1265         $CHECKSTAT -t file $DIR/d31h/dir/g || error "target"
1266         [ `stat -c%h $DIR/d31h/dir/g` == '2' ] || error "target nlink"
1267 }
1268 run_test 31h "cross directory link under child==============="
1269
1270 test_31i() {
1271         echo "-- cross directory link --"
1272         mkdir $DIR/d31i
1273         mkdir $DIR/d31i/dir
1274         touch $DIR/d31i/dir/f
1275         ln $DIR/d31i/dir/f $DIR/d31i/g
1276         $CHECKSTAT -t file $DIR/d31i/dir/f || error "source"
1277         [ `stat -c%h $DIR/d31i/dir/f` == '2' ] || error "source nlink"
1278         $CHECKSTAT -t file $DIR/d31i/g || error "target"
1279         [ `stat -c%h $DIR/d31i/g` == '2' ] || error "target nlink"
1280 }
1281 run_test 31i "cross directory link under parent==============="
1282
1283
1284 test_31j() {
1285         mkdir $DIR/d31j
1286         mkdir $DIR/d31j/dir1
1287         ln $DIR/d31j/dir1 $DIR/d31j/dir2 && error "ln for dir"
1288         link $DIR/d31j/dir1 $DIR/d31j/dir3 && error "link for dir"
1289         mlink $DIR/d31j/dir1 $DIR/d31j/dir4 && error "mlink for dir"
1290         mlink $DIR/d31j/dir1 $DIR/d31j/dir1 && error "mlink to the same dir"
1291         return 0
1292 }
1293 run_test 31j "link for directory==============="
1294
1295
1296 test_31k() {
1297         mkdir $DIR/d31k
1298         touch $DIR/d31k/s
1299         touch $DIR/d31k/exist
1300         mlink $DIR/d31k/s $DIR/d31k/t || error "mlink"
1301         mlink $DIR/d31k/s $DIR/d31k/exist && error "mlink to exist file"
1302         mlink $DIR/d31k/s $DIR/d31k/s && error "mlink to the same file"
1303         mlink $DIR/d31k/s $DIR/d31k && error "mlink to parent dir"
1304         mlink $DIR/d31k $DIR/d31k/s && error "mlink parent dir to target"
1305         mlink $DIR/d31k/not-exist $DIR/d31k/foo && error "mlink non-existing to new"
1306         mlink $DIR/d31k/not-exist $DIR/d31k/s && error "mlink non-existing to exist"
1307         return 0
1308 }
1309 run_test 31k "link to file: the same, non-existing, dir==============="
1310
1311 test_31m() {
1312         mkdir $DIR/d31m
1313         touch $DIR/d31m/s
1314         mkdir $DIR/d31m2
1315         touch $DIR/d31m2/exist
1316         mlink $DIR/d31m/s $DIR/d31m2/t || error "mlink"
1317         mlink $DIR/d31m/s $DIR/d31m2/exist && error "mlink to exist file"
1318         mlink $DIR/d31m/s $DIR/d31m2 && error "mlink to parent dir"
1319         mlink $DIR/d31m2 $DIR/d31m/s && error "mlink parent dir to target"
1320         mlink $DIR/d31m/not-exist $DIR/d31m2/foo && error "mlink non-existing to new"
1321         mlink $DIR/d31m/not-exist $DIR/d31m2/s && error "mlink non-existing to exist"
1322         return 0
1323 }
1324 run_test 31m "link to file: the same, non-existing, dir==============="
1325
1326 test_32a() {
1327         echo "== more mountpoints and symlinks ================="
1328         [ -e $DIR/d32a ] && rm -fr $DIR/d32a
1329         mkdir -p $DIR/d32a/ext2-mountpoint 
1330         mount -t ext2 -o loop $EXT2_DEV $DIR/d32a/ext2-mountpoint || error
1331         $CHECKSTAT -t dir $DIR/d32a/ext2-mountpoint/.. || error  
1332         $UMOUNT $DIR/d32a/ext2-mountpoint || error
1333 }
1334 run_test 32a "stat d32a/ext2-mountpoint/.. ====================="
1335
1336 test_32b() {
1337         [ -e $DIR/d32b ] && rm -fr $DIR/d32b
1338         mkdir -p $DIR/d32b/ext2-mountpoint 
1339         mount -t ext2 -o loop $EXT2_DEV $DIR/d32b/ext2-mountpoint || error
1340         ls -al $DIR/d32b/ext2-mountpoint/.. || error
1341         $UMOUNT $DIR/d32b/ext2-mountpoint || error
1342 }
1343 run_test 32b "open d32b/ext2-mountpoint/.. ====================="
1344  
1345 test_32c() {
1346         [ -e $DIR/d32c ] && rm -fr $DIR/d32c
1347         mkdir -p $DIR/d32c/ext2-mountpoint 
1348         mount -t ext2 -o loop $EXT2_DEV $DIR/d32c/ext2-mountpoint || error
1349         mkdir -p $DIR/d32c/d2/test_dir    
1350         $CHECKSTAT -t dir $DIR/d32c/ext2-mountpoint/../d2/test_dir || error
1351         $UMOUNT $DIR/d32c/ext2-mountpoint || error
1352 }
1353 run_test 32c "stat d32c/ext2-mountpoint/../d2/test_dir ========="
1354
1355 test_32d() {
1356         [ -e $DIR/d32d ] && rm -fr $DIR/d32d
1357         mkdir -p $DIR/d32d/ext2-mountpoint 
1358         mount -t ext2 -o loop $EXT2_DEV $DIR/d32d/ext2-mountpoint || error
1359         mkdir -p $DIR/d32d/d2/test_dir    
1360         ls -al $DIR/d32d/ext2-mountpoint/../d2/test_dir || error
1361         $UMOUNT $DIR/d32d/ext2-mountpoint || error
1362 }
1363 run_test 32d "open d32d/ext2-mountpoint/../d2/test_dir ========="
1364
1365 test_32e() {
1366         [ -e $DIR/d32e ] && rm -fr $DIR/d32e
1367         mkdir -p $DIR/d32e/tmp    
1368         TMP_DIR=$DIR/d32e/tmp       
1369         ln -s $DIR/d32e $TMP_DIR/symlink11 
1370         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01 
1371         $CHECKSTAT -t link $DIR/d32e/tmp/symlink11 || error
1372         $CHECKSTAT -t link $DIR/d32e/symlink01 || error
1373 }
1374 run_test 32e "stat d32e/symlink->tmp/symlink->lustre-subdir ===="
1375
1376 test_32f() {
1377         [ -e $DIR/d32f ] && rm -fr $DIR/d32f
1378         mkdir -p $DIR/d32f/tmp    
1379         TMP_DIR=$DIR/d32f/tmp       
1380         ln -s $DIR/d32f $TMP_DIR/symlink11 
1381         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01 
1382         ls $DIR/d32f/tmp/symlink11  || error
1383         ls $DIR/d32f/symlink01 || error
1384 }
1385 run_test 32f "open d32f/symlink->tmp/symlink->lustre-subdir ===="
1386
1387 test_32g() {
1388         TMP_DIR=$DIR/$tdir/tmp       
1389         mkdir -p $TMP_DIR $DIR/${tdir}2
1390         ln -s $DIR/${tdir}2 $TMP_DIR/symlink12 
1391         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02 
1392         $CHECKSTAT -t link $TMP_DIR/symlink12 || error
1393         $CHECKSTAT -t link $DIR/$tdir/symlink02 || error
1394         $CHECKSTAT -t dir -f $TMP_DIR/symlink12 || error
1395         $CHECKSTAT -t dir -f $DIR/$tdir/symlink02 || error
1396 }
1397 run_test 32g "stat d32g/symlink->tmp/symlink->lustre-subdir/${tdir}2"
1398
1399 test_32h() {
1400         rm -fr $DIR/$tdir $DIR/${tdir}2
1401         TMP_DIR=$DIR/$tdir/tmp       
1402         mkdir -p $TMP_DIR $DIR/${tdir}2 
1403         ln -s $DIR/${tdir}2 $TMP_DIR/symlink12 
1404         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02 
1405         ls $TMP_DIR/symlink12 || error
1406         ls $DIR/$tdir/symlink02  || error
1407 }
1408 run_test 32h "open d32h/symlink->tmp/symlink->lustre-subdir/${tdir}2"
1409
1410 test_32i() {
1411         [ -e $DIR/d32i ] && rm -fr $DIR/d32i
1412         mkdir -p $DIR/d32i/ext2-mountpoint 
1413         mount -t ext2 -o loop $EXT2_DEV $DIR/d32i/ext2-mountpoint || error
1414         touch $DIR/d32i/test_file
1415         $CHECKSTAT -t file $DIR/d32i/ext2-mountpoint/../test_file || error  
1416         $UMOUNT $DIR/d32i/ext2-mountpoint || error
1417 }
1418 run_test 32i "stat d32i/ext2-mountpoint/../test_file ==========="
1419
1420 test_32j() {
1421         [ -e $DIR/d32j ] && rm -fr $DIR/d32j
1422         mkdir -p $DIR/d32j/ext2-mountpoint 
1423         mount -t ext2 -o loop $EXT2_DEV $DIR/d32j/ext2-mountpoint || error
1424         touch $DIR/d32j/test_file
1425         cat $DIR/d32j/ext2-mountpoint/../test_file || error
1426         $UMOUNT $DIR/d32j/ext2-mountpoint || error
1427 }
1428 run_test 32j "open d32j/ext2-mountpoint/../test_file ==========="
1429
1430 test_32k() {
1431         rm -fr $DIR/d32k
1432         mkdir -p $DIR/d32k/ext2-mountpoint 
1433         mount -t ext2 -o loop $EXT2_DEV $DIR/d32k/ext2-mountpoint  
1434         mkdir -p $DIR/d32k/d2
1435         touch $DIR/d32k/d2/test_file || error
1436         $CHECKSTAT -t file $DIR/d32k/ext2-mountpoint/../d2/test_file || error
1437         $UMOUNT $DIR/d32k/ext2-mountpoint || error
1438 }
1439 run_test 32k "stat d32k/ext2-mountpoint/../d2/test_file ========"
1440
1441 test_32l() {
1442         rm -fr $DIR/d32l
1443         mkdir -p $DIR/d32l/ext2-mountpoint 
1444         mount -t ext2 -o loop $EXT2_DEV $DIR/d32l/ext2-mountpoint || error
1445         mkdir -p $DIR/d32l/d2
1446         touch $DIR/d32l/d2/test_file
1447         cat  $DIR/d32l/ext2-mountpoint/../d2/test_file || error
1448         $UMOUNT $DIR/d32l/ext2-mountpoint || error
1449 }
1450 run_test 32l "open d32l/ext2-mountpoint/../d2/test_file ========"
1451
1452 test_32m() {
1453         rm -fr $DIR/d32m
1454         mkdir -p $DIR/d32m/tmp    
1455         TMP_DIR=$DIR/d32m/tmp       
1456         ln -s $DIR $TMP_DIR/symlink11 
1457         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01 
1458         $CHECKSTAT -t link $DIR/d32m/tmp/symlink11 || error
1459         $CHECKSTAT -t link $DIR/d32m/symlink01 || error
1460 }
1461 run_test 32m "stat d32m/symlink->tmp/symlink->lustre-root ======"
1462
1463 test_32n() {
1464         rm -fr $DIR/d32n
1465         mkdir -p $DIR/d32n/tmp    
1466         TMP_DIR=$DIR/d32n/tmp       
1467         ln -s $DIR $TMP_DIR/symlink11 
1468         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01 
1469         ls -l $DIR/d32n/tmp/symlink11  || error
1470         ls -l $DIR/d32n/symlink01 || error
1471 }
1472 run_test 32n "open d32n/symlink->tmp/symlink->lustre-root ======"
1473
1474 test_32o() {
1475         rm -fr $DIR/d32o $DIR/$tfile
1476         touch $DIR/$tfile 
1477         mkdir -p $DIR/d32o/tmp    
1478         TMP_DIR=$DIR/d32o/tmp       
1479         ln -s $DIR/$tfile $TMP_DIR/symlink12 
1480         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02 
1481         $CHECKSTAT -t link $DIR/d32o/tmp/symlink12 || error
1482         $CHECKSTAT -t link $DIR/d32o/symlink02 || error
1483         $CHECKSTAT -t file -f $DIR/d32o/tmp/symlink12 || error
1484         $CHECKSTAT -t file -f $DIR/d32o/symlink02 || error
1485 }
1486 run_test 32o "stat d32o/symlink->tmp/symlink->lustre-root/$tfile"
1487
1488 test_32p() {
1489     log 32p_1
1490         rm -fr $DIR/d32p
1491     log 32p_2
1492         rm -f $DIR/$tfile
1493     log 32p_3
1494         touch $DIR/$tfile 
1495     log 32p_4
1496         mkdir -p $DIR/d32p/tmp    
1497     log 32p_5
1498         TMP_DIR=$DIR/d32p/tmp       
1499     log 32p_6
1500         ln -s $DIR/$tfile $TMP_DIR/symlink12 
1501     log 32p_7
1502         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02 
1503     log 32p_8
1504         cat $DIR/d32p/tmp/symlink12 || error
1505     log 32p_9
1506         cat $DIR/d32p/symlink02 || error
1507     log 32p_10
1508 }
1509 run_test 32p "open d32p/symlink->tmp/symlink->lustre-root/$tfile"
1510
1511 test_32q() {
1512         [ -e $DIR/d32q ] && rm -fr $DIR/d32q
1513         mkdir -p $DIR/d32q
1514         touch $DIR/d32q/under_the_mount
1515         mount -t ext2 -o loop $EXT2_DEV $DIR/d32q
1516         ls $DIR/d32q/under_the_mount && error || true
1517         $UMOUNT $DIR/d32q || error
1518 }
1519 run_test 32q "stat follows mountpoints in Lustre (should return error)"
1520
1521 test_32r() {
1522         [ -e $DIR/d32r ] && rm -fr $DIR/d32r
1523         mkdir -p $DIR/d32r
1524         touch $DIR/d32r/under_the_mount
1525         mount -t ext2 -o loop $EXT2_DEV $DIR/d32r
1526         ls $DIR/d32r | grep -q under_the_mount && error || true
1527         $UMOUNT $DIR/d32r || error
1528 }
1529 run_test 32r "opendir follows mountpoints in Lustre (should return error)"
1530
1531 test_33() {
1532         rm -f $DIR/$tfile
1533         touch $DIR/$tfile
1534         chmod 444 $DIR/$tfile
1535         chown $RUNAS_ID $DIR/$tfile
1536         log 33_1
1537         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
1538         log 33_2
1539 }
1540 run_test 33 "write file with mode 444 (should return error) ===="
1541
1542 test_33a() {
1543         rm -fr $DIR/d33
1544         mkdir -p $DIR/d33
1545         chown $RUNAS_ID $DIR/d33
1546         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/d33/f33|| error "create"
1547         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/d33/f33 && \
1548                 error "open RDWR" || true
1549 }
1550 run_test 33a "test open file(mode=0444) with O_RDWR (should return error)"
1551
1552 TEST_34_SIZE=${TEST_34_SIZE:-2000000000000}
1553 test_34a() {
1554         rm -f $DIR/f34
1555         $MCREATE $DIR/f34 || error
1556         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
1557         $TRUNCATE $DIR/f34 $TEST_34_SIZE || error
1558         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
1559         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
1560 }
1561 run_test 34a "truncate file that has not been opened ==========="
1562
1563 test_34b() {
1564         [ ! -f $DIR/f34 ] && test_34a
1565         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
1566         $OPENFILE -f O_RDONLY $DIR/f34
1567         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
1568         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
1569 }
1570 run_test 34b "O_RDONLY opening file doesn't create objects ====="
1571
1572 test_34c() {
1573         [ ! -f $DIR/f34 ] && test_34a 
1574         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
1575         $OPENFILE -f O_RDWR $DIR/f34
1576         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" && error
1577         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
1578 }
1579 run_test 34c "O_RDWR opening file-with-size works =============="
1580
1581 test_34d() {
1582         [ ! -f $DIR/f34 ] && test_34a 
1583         dd if=/dev/zero of=$DIR/f34 conv=notrunc bs=4k count=1 || error
1584         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
1585         rm $DIR/f34
1586 }
1587 run_test 34d "write to sparse file ============================="
1588
1589 test_34e() {
1590         rm -f $DIR/f34e
1591         $MCREATE $DIR/f34e || error
1592         $TRUNCATE $DIR/f34e 1000 || error
1593         $CHECKSTAT -s 1000 $DIR/f34e || error
1594         $OPENFILE -f O_RDWR $DIR/f34e
1595         $CHECKSTAT -s 1000 $DIR/f34e || error
1596 }
1597 run_test 34e "create objects, some with size and some without =="
1598
1599 test_34f() { # bug 6242, 6243
1600         SIZE34F=48000
1601         rm -f $DIR/f34f
1602         $MCREATE $DIR/f34f || error
1603         $TRUNCATE $DIR/f34f $SIZE34F || error "truncating $DIR/f3f to $SIZE34F"
1604         dd if=$DIR/f34f of=$TMP/f34f
1605         $CHECKSTAT -s $SIZE34F $TMP/f34f || error "$TMP/f34f not $SIZE34F bytes"
1606         dd if=/dev/zero of=$TMP/f34fzero bs=$SIZE34F count=1
1607         cmp $DIR/f34f $TMP/f34fzero || error "$DIR/f34f not all zero"
1608         cmp $TMP/f34f $TMP/f34fzero || error "$TMP/f34f not all zero"
1609         rm $TMP/f34f $TMP/f34fzero $DIR/f34f
1610 }
1611 run_test 34f "read from a file with no objects until EOF ======="
1612
1613 test_35a() {
1614         cp /bin/sh $DIR/f35a
1615         chmod 444 $DIR/f35a
1616         chown $RUNAS_ID $DIR/f35a
1617         $RUNAS $DIR/f35a && error || true
1618         rm $DIR/f35a
1619 }
1620 run_test 35a "exec file with mode 444 (should return and not leak) ====="
1621
1622 test_36a() {
1623         rm -f $DIR/f36
1624         utime $DIR/f36 || error
1625 }
1626 run_test 36a "MDS utime check (mknod, utime) ==================="
1627
1628 test_36b() {
1629         echo "" > $DIR/f36
1630         utime $DIR/f36 || error
1631 }
1632 run_test 36b "OST utime check (open, utime) ===================="
1633
1634 test_36c() {
1635         rm -f $DIR/d36/f36
1636         mkdir $DIR/d36
1637         chown $RUNAS_ID $DIR/d36
1638         $RUNAS utime $DIR/d36/f36 || error
1639 }
1640 run_test 36c "non-root MDS utime check (mknod, utime) =========="
1641
1642 test_36d() {
1643         [ ! -d $DIR/d36 ] && test_36c
1644         echo "" > $DIR/d36/f36
1645         $RUNAS utime $DIR/d36/f36 || error
1646 }
1647 run_test 36d "non-root OST utime check (open, utime) ==========="
1648
1649 test_36e() {
1650         [ $RUNAS_ID -eq $UID ] && skip "RUNAS_ID = UID = $UID -- skipping" && return
1651         mkdir -p $DIR/$tdir
1652         touch $DIR/$tdir/$tfile
1653         $RUNAS utime $DIR/$tdir/$tfile && \
1654                 error "utime worked, expected failure" || true
1655 }
1656 run_test 36e "utime on non-owned file (should return error) ===="
1657
1658 test_36f() {
1659         export LANG=C LC_LANG=C # for date language
1660
1661         DATESTR="Dec 20  2000"
1662         mkdir -p $DIR/$tdir
1663         #define OBD_FAIL_OST_BRW_PAUSE_BULK 0x214
1664         sysctl -w lustre.fail_loc=0x80000214
1665         date; date +%s
1666         cp /etc/hosts $DIR/$tdir/$tfile
1667         sync & # write RPC generated with "current" inode timestamp, but delayed
1668         sleep 1
1669         touch --date="$DATESTR" $DIR/$tdir/$tfile # setattr timestamp in past
1670         LS_BEFORE="`ls -l $DIR/$tdir/$tfile`" # old timestamp from client cache
1671         cancel_lru_locks osc
1672         LS_AFTER="`ls -l $DIR/$tdir/$tfile`"  # timestamp from OST object
1673         date; date +%s
1674         [ "$LS_BEFORE" != "$LS_AFTER" ] && \
1675                 echo "BEFORE: $LS_BEFORE" && \
1676                 echo "AFTER : $LS_AFTER" && \
1677                 echo "WANT  : $DATESTR" && \
1678                 error "$DIR/$tdir/$tfile timestamps changed" || true
1679 }
1680 run_test 36f "utime on file racing with OST BRW write =========="
1681
1682 export FMD_MAX_AGE=`do_facet ost1 cat $LPROC/obdfilter/*/client_cache_seconds | head -n 1`
1683 test_36g() {
1684         [ -z "$FMD_MAX_AGE" ] && skip "skip test for remote OST" && return
1685         FMD_BEFORE="`awk '/ll_fmd_cache/ { print $2 }' /proc/slabinfo`"
1686         touch $DIR/d36/$tfile
1687         sleep $((FMD_MAX_AGE + 12))
1688         FMD_AFTER="`awk '/ll_fmd_cache/ { print $2 }' /proc/slabinfo`"
1689         [ "$FMD_AFTER" -gt "$FMD_BEFORE" ] && \
1690                 echo "AFTER : $FMD_AFTER > BEFORE $FMD_BEFORE" && \
1691                 error "fmd didn't expire after ping" || true
1692 }
1693 run_test 36g "filter mod data cache expiry ====================="
1694
1695 test_37() {
1696         mkdir -p $DIR/$tdir
1697         echo f > $DIR/$tdir/fbugfile
1698         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir
1699         ls $DIR/$tdir | grep "\<fbugfile\>" && error
1700         $UMOUNT $DIR/$tdir || error
1701         rm -f $DIR/$tdir/fbugfile || error
1702 }
1703 run_test 37 "ls a mounted file system to check old content ====="
1704
1705 test_38() {
1706         o_directory $DIR/$tfile
1707 }
1708 run_test 38 "open a regular file with O_DIRECTORY =============="
1709
1710 test_39() {
1711         touch $DIR/$tfile
1712         touch $DIR/${tfile}2
1713 #       ls -l  $DIR/$tfile $DIR/${tfile}2
1714 #       ls -lu  $DIR/$tfile $DIR/${tfile}2
1715 #       ls -lc  $DIR/$tfile $DIR/${tfile}2
1716         sleep 2
1717         $OPENFILE -f O_CREAT:O_TRUNC:O_WRONLY $DIR/${tfile}2
1718         if [ ! $DIR/${tfile}2 -nt $DIR/$tfile ]; then
1719                 echo "mtime"
1720                 ls -l  $DIR/$tfile $DIR/${tfile}2
1721                 echo "atime"
1722                 ls -lu  $DIR/$tfile $DIR/${tfile}2
1723                 echo "ctime"
1724                 ls -lc  $DIR/$tfile $DIR/${tfile}2
1725                 error "O_TRUNC didn't change timestamps"
1726         fi
1727 }
1728 run_test 39 "mtime changed on create ==========================="
1729
1730 test_40() {
1731         dd if=/dev/zero of=$DIR/f40 bs=4096 count=1
1732         $RUNAS $OPENFILE -f O_WRONLY:O_TRUNC $DIR/f40 && error
1733         $CHECKSTAT -t file -s 4096 $DIR/f40 || error
1734 }
1735 run_test 40 "failed open(O_TRUNC) doesn't truncate ============="
1736
1737 test_41() {
1738         # bug 1553
1739         small_write $DIR/f41 18
1740 }
1741 run_test 41 "test small file write + fstat ====================="
1742
1743 count_ost_writes() {
1744         cat $LPROC/osc/*/stats |
1745             awk -vwrites=0 '/ost_write/ { writes += $2 } END { print writes; }'
1746 }
1747
1748 # decent default
1749 WRITEBACK_SAVE=500
1750 DIRTY_RATIO_SAVE=40
1751 MAX_DIRTY_RATIO=50
1752 BG_DIRTY_RATIO_SAVE=10
1753 MAX_BG_DIRTY_RATIO=25
1754
1755 start_writeback() {
1756         trap 0
1757         # in 2.6, restore /proc/sys/vm/dirty_writeback_centisecs,
1758         # dirty_ratio, dirty_background_ratio
1759         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
1760                 echo $WRITEBACK_SAVE > /proc/sys/vm/dirty_writeback_centisecs
1761                 echo $BG_DIRTY_RATIO_SAVE > /proc/sys/vm/dirty_background_ratio
1762                 echo $DIRTY_RATIO_SAVE > /proc/sys/vm/dirty_ratio
1763         else
1764                 # if file not here, we are a 2.4 kernel
1765                 kill -CONT `pidof kupdated`
1766         fi
1767 }
1768
1769 stop_writeback() {
1770         # setup the trap first, so someone cannot exit the test at the
1771         # exact wrong time and mess up a machine
1772         trap start_writeback EXIT
1773         # in 2.6, save and 0 /proc/sys/vm/dirty_writeback_centisecs
1774         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
1775                 WRITEBACK_SAVE=`cat /proc/sys/vm/dirty_writeback_centisecs`
1776                 echo 0 > /proc/sys/vm/dirty_writeback_centisecs
1777                 echo 0 > /proc/sys/vm/dirty_writeback_centisecs
1778                 # save and increase /proc/sys/vm/dirty_ratio
1779                 DIRTY_RATIO_SAVE=`cat /proc/sys/vm/dirty_ratio`
1780                 echo $MAX_DIRTY_RATIO > /proc/sys/vm/dirty_ratio
1781                 # save and increase /proc/sys/vm/dirty_background_ratio
1782                 BG_DIRTY_RATIO_SAVE=`cat /proc/sys/vm/dirty_background_ratio`
1783                 echo $MAX_BG_DIRTY_RATIO > /proc/sys/vm/dirty_background_ratio
1784         else
1785                 # if file not here, we are a 2.4 kernel
1786                 kill -STOP `pidof kupdated`
1787         fi
1788 }
1789
1790 # ensure that all stripes have some grant before we test client-side cache
1791 setup_test42() {
1792         [ "$SETUP_TEST42" ] && return
1793         for i in `seq -f $DIR/f42-%g 1 $OSTCOUNT`; do
1794                 dd if=/dev/zero of=$i bs=4k count=1
1795                 rm $i
1796         done
1797         SETUP_TEST42=DONE
1798 }
1799
1800 # Tests 42* verify that our behaviour is correct WRT caching, file closure,
1801 # file truncation, and file removal.
1802 test_42a() {
1803         setup_test42
1804         cancel_lru_locks osc
1805         stop_writeback
1806         sync; sleep 1; sync # just to be safe
1807         BEFOREWRITES=`count_ost_writes`
1808         grep "[0-9]" $LPROC/osc/*[oO][sS][cC][_-]*/cur_grant_bytes
1809         dd if=/dev/zero of=$DIR/f42a bs=1024 count=100
1810         AFTERWRITES=`count_ost_writes`
1811         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
1812                 error "$BEFOREWRITES < $AFTERWRITES"
1813         start_writeback
1814 }
1815 run_test 42a "ensure that we don't flush on close =============="
1816
1817 test_42b() {
1818         setup_test42
1819         cancel_lru_locks osc
1820         stop_writeback
1821         sync
1822         dd if=/dev/zero of=$DIR/f42b bs=1024 count=100
1823         BEFOREWRITES=`count_ost_writes`
1824         $MUNLINK $DIR/f42b || error "$MUNLINK $DIR/f42b: $?"
1825         AFTERWRITES=`count_ost_writes`
1826         if [ $BEFOREWRITES -lt $AFTERWRITES ]; then
1827                 error "$BEFOREWRITES < $AFTERWRITES on unlink"
1828         fi
1829         BEFOREWRITES=`count_ost_writes`
1830         sync || error "sync: $?"
1831         AFTERWRITES=`count_ost_writes`
1832         if [ $BEFOREWRITES -lt $AFTERWRITES ]; then
1833                 error "$BEFOREWRITES < $AFTERWRITES on sync"
1834         fi
1835         dmesg | grep 'error from obd_brw_async' && error 'error writing back'
1836         start_writeback
1837         return 0
1838 }
1839 run_test 42b "test destroy of file with cached dirty data ======"
1840
1841 # if these tests just want to test the effect of truncation,
1842 # they have to be very careful.  consider:
1843 # - the first open gets a {0,EOF}PR lock
1844 # - the first write conflicts and gets a {0, count-1}PW
1845 # - the rest of the writes are under {count,EOF}PW
1846 # - the open for truncate tries to match a {0,EOF}PR
1847 #   for the filesize and cancels the PWs.
1848 # any number of fixes (don't get {0,EOF} on open, match
1849 # composite locks, do smarter file size management) fix
1850 # this, but for now we want these tests to verify that
1851 # the cancellation with truncate intent works, so we
1852 # start the file with a full-file pw lock to match against
1853 # until the truncate.
1854 trunc_test() {
1855         test=$1
1856         file=$DIR/$test
1857         offset=$2
1858         cancel_lru_locks osc
1859         stop_writeback
1860         # prime the file with 0,EOF PW to match
1861         touch $file
1862         $TRUNCATE $file 0
1863         sync; sync
1864         # now the real test..
1865         dd if=/dev/zero of=$file bs=1024 count=100
1866         BEFOREWRITES=`count_ost_writes`
1867         $TRUNCATE $file $offset
1868         cancel_lru_locks osc
1869         AFTERWRITES=`count_ost_writes`
1870         start_writeback
1871 }
1872
1873 test_42c() {
1874         trunc_test 42c 1024
1875         [ $BEFOREWRITES -eq $AFTERWRITES ] && \
1876             error "beforewrites $BEFOREWRITES == afterwrites $AFTERWRITES on truncate"
1877         rm $file
1878 }
1879 run_test 42c "test partial truncate of file with cached dirty data"
1880
1881 test_42d() {
1882         trunc_test 42d 0
1883         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
1884             error "beforewrites $BEFOREWRITES != afterwrites $AFTERWRITES on truncate"
1885         rm $file
1886 }
1887 run_test 42d "test complete truncate of file with cached dirty data"
1888
1889 test_43() {
1890         mkdir $DIR/$tdir
1891         cp -p /bin/ls $DIR/$tdir/$tfile
1892         exec 9>> $DIR/$tdir/$tfile
1893         $DIR/$tdir/$tfile && error || true
1894         exec 9<&-
1895 }
1896 run_test 43 "execution of file opened for write should return -ETXTBSY"
1897
1898 test_43a() {
1899         mkdir -p $DIR/d43
1900         cp -p `which multiop` $DIR/d43/multiop || cp -p multiop $DIR/d43/multiop
1901         $DIR/d43/multiop $TMP/test43.junk O_c &
1902         MULTIPID=$!
1903         sleep 1
1904         multiop $DIR/d43/multiop Oc && error "expected error, got success"
1905         kill -USR1 $MULTIPID || return 2
1906         wait $MULTIPID || return 3
1907         rm $TMP/test43.junk
1908 }
1909 run_test 43a "open(RDWR) of file being executed should return -ETXTBSY"
1910
1911 test_43b() {
1912         mkdir -p $DIR/d43
1913         cp -p `which multiop` $DIR/d43/multiop || cp -p multiop $DIR/d43/multiop
1914         $DIR/d43/multiop $TMP/test43.junk O_c &
1915         MULTIPID=$!
1916         sleep 1
1917         truncate $DIR/d43/multiop 0 && error "expected error, got success"
1918         kill -USR1 $MULTIPID || return 2
1919         wait $MULTIPID || return 3
1920         rm $TMP/test43.junk
1921 }
1922 run_test 43b "truncate of file being executed should return -ETXTBSY"
1923
1924 test_43c() {
1925         local testdir="$DIR/d43c"
1926         mkdir -p $testdir
1927         cp $SHELL $testdir/
1928         ( cd $(dirname $SHELL) && md5sum $(basename $SHELL) ) | \
1929                 ( cd $testdir && md5sum -c)
1930 }
1931 run_test 43c "md5sum of copy into lustre========================"
1932
1933 test_44() {
1934         [  "$OSTCOUNT" -lt "2" ] && skip "skipping 2-stripe test" && return
1935         dd if=/dev/zero of=$DIR/f1 bs=4k count=1 seek=1023
1936         dd if=$DIR/f1 bs=4k count=1 > /dev/null
1937 }
1938 run_test 44 "zero length read from a sparse stripe ============="
1939
1940 test_44a() {
1941     local nstripe=`$LCTL lov_getconfig $DIR | grep default_stripe_count: | \
1942                          awk '{print $2}'`
1943     [ -z "$nstripe" ] && skip "can't get stripe info" && return
1944     [ "$nstripe" -gt "$OSTCOUNT" ] && skip "Wrong default_stripe_count: $nstripe (OSTCOUNT: $OSTCOUNT)" && return
1945     local stride=`$LCTL lov_getconfig $DIR | grep default_stripe_size: | \
1946                       awk '{print $2}'`
1947     if [ $nstripe -eq 0 -o $nstripe -gt 1024 ] ; then
1948         nstripe=`$LCTL lov_getconfig $DIR | grep obd_count: | awk '{print $2}'`
1949     fi
1950
1951     OFFSETS="0 $((stride/2)) $((stride-1))"
1952     for offset in $OFFSETS ; do
1953       for i in `seq 0 $((nstripe-1))`; do
1954         local GLOBALOFFSETS=""
1955         local size=$((((i + 2 * $nstripe )*$stride + $offset)))  # Bytes
1956         local myfn=$DIR/d44a-$size
1957         echo "--------writing $myfn at $size"
1958         ll_sparseness_write $myfn $size  || error "ll_sparseness_write"
1959         GLOBALOFFSETS="$GLOBALOFFSETS $size"
1960         ll_sparseness_verify $myfn $GLOBALOFFSETS \
1961                             || error "ll_sparseness_verify $GLOBALOFFSETS"
1962
1963         for j in `seq 0 $((nstripe-1))`; do
1964             size=$((((j + $nstripe )*$stride + $offset)))  # Bytes
1965             ll_sparseness_write $myfn $size || error "ll_sparseness_write"
1966             GLOBALOFFSETS="$GLOBALOFFSETS $size"
1967         done
1968         ll_sparseness_verify $myfn $GLOBALOFFSETS \
1969                             || error "ll_sparseness_verify $GLOBALOFFSETS"
1970         rm -f $myfn
1971       done
1972     done
1973 }
1974 run_test 44a "test sparse pwrite ==============================="
1975
1976 dirty_osc_total() {
1977         tot=0
1978         for d in $LPROC/osc/*/cur_dirty_bytes; do
1979                 tot=$(($tot + `cat $d`))
1980         done
1981         echo $tot
1982 }
1983 do_dirty_record() {
1984         before=`dirty_osc_total`
1985         echo executing "\"$*\""
1986         eval $*
1987         after=`dirty_osc_total`
1988         echo before $before, after $after
1989 }
1990 test_45() {
1991         f="$DIR/f45"
1992         # Obtain grants from OST if it supports it
1993         echo blah > ${f}_grant
1994         stop_writeback
1995         sync
1996         do_dirty_record "echo blah > $f"
1997         [ $before -eq $after ] && error "write wasn't cached"
1998         do_dirty_record "> $f"
1999         [ $before -gt $after ] || error "truncate didn't lower dirty count"
2000         do_dirty_record "echo blah > $f"
2001         [ $before -eq $after ] && error "write wasn't cached"
2002         do_dirty_record "sync"
2003         [ $before -gt $after ] || error "writeback didn't lower dirty count"
2004         do_dirty_record "echo blah > $f"
2005         [ $before -eq $after ] && error "write wasn't cached"
2006         do_dirty_record "cancel_lru_locks osc"
2007         [ $before -gt $after ] || error "lock cancellation didn't lower dirty count"
2008         start_writeback
2009 }
2010 run_test 45 "osc io page accounting ============================"
2011
2012 page_size() {
2013         getconf PAGE_SIZE
2014 }
2015
2016 # in a 2 stripe file (lov.sh), page 1023 maps to page 511 in its object.  this
2017 # test tickles a bug where re-dirtying a page was failing to be mapped to the
2018 # objects offset and an assert hit when an rpc was built with 1023's mapped 
2019 # offset 511 and 511's raw 511 offset. it also found general redirtying bugs.
2020 test_46() {
2021         f="$DIR/f46"
2022         stop_writeback
2023         sync
2024         dd if=/dev/zero of=$f bs=`page_size` seek=511 count=1
2025         sync
2026         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=1023 count=1
2027         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=511 count=1
2028         sync
2029         start_writeback
2030 }
2031 run_test 46 "dirtying a previously written page ================"
2032
2033 # Check that device nodes are created and then visible correctly (#2091)
2034 test_47() {
2035         cmknod $DIR/test_47_node || error
2036 }
2037 run_test 47 "Device nodes check ================================"
2038
2039 test_48a() { # bug 2399
2040         check_kernel_version 34 || return 0
2041         mkdir -p $DIR/d48a
2042         cd $DIR/d48a
2043         mv $DIR/d48a $DIR/d48.new || error "move directory failed"
2044         mkdir $DIR/d48a || error "recreate directory failed"
2045         touch foo || error "'touch foo' failed after recreating cwd"
2046         mkdir bar || error "'mkdir foo' failed after recreating cwd"
2047         if check_kernel_version 44; then
2048                 touch .foo || error "'touch .foo' failed after recreating cwd"
2049                 mkdir .bar || error "'mkdir .foo' failed after recreating cwd"
2050         fi
2051         ls . > /dev/null || error "'ls .' failed after recreating cwd"
2052         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
2053         cd . || error "'cd .' failed after recreating cwd"
2054         mkdir . && error "'mkdir .' worked after recreating cwd"
2055         rmdir . && error "'rmdir .' worked after recreating cwd"
2056         ln -s . baz || error "'ln -s .' failed after recreating cwd"
2057         cd .. || error "'cd ..' failed after recreating cwd"
2058 }
2059 run_test 48a "Access renamed working dir (should return errors)="
2060
2061 test_48b() { # bug 2399
2062         check_kernel_version 34 || return 0
2063         mkdir -p $DIR/d48b
2064         cd $DIR/d48b
2065         rmdir $DIR/d48b || error "remove cwd $DIR/d48b failed"
2066         touch foo && error "'touch foo' worked after removing cwd"
2067         mkdir foo && error "'mkdir foo' worked after removing cwd"
2068         if check_kernel_version 44; then
2069                 touch .foo && error "'touch .foo' worked after removing cwd"
2070                 mkdir .foo && error "'mkdir .foo' worked after removing cwd"
2071         fi
2072         ls . > /dev/null && error "'ls .' worked after removing cwd"
2073         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
2074         is_patchless || ( cd . && error "'cd .' worked after removing cwd" )
2075         mkdir . && error "'mkdir .' worked after removing cwd"
2076         rmdir . && error "'rmdir .' worked after removing cwd"
2077         ln -s . foo && error "'ln -s .' worked after removing cwd"
2078         cd .. || echo "'cd ..' failed after removing cwd `pwd`"  #bug 3517
2079 }
2080 run_test 48b "Access removed working dir (should return errors)="
2081
2082 test_48c() { # bug 2350
2083         check_kernel_version 36 || return 0
2084         #sysctl -w lnet.debug=-1
2085         #set -vx
2086         mkdir -p $DIR/d48c/dir
2087         cd $DIR/d48c/dir
2088         $TRACE rmdir $DIR/d48c/dir || error "remove cwd $DIR/d48c/dir failed"
2089         $TRACE touch foo && error "'touch foo' worked after removing cwd"
2090         $TRACE mkdir foo && error "'mkdir foo' worked after removing cwd"
2091         if check_kernel_version 44; then
2092                 touch .foo && error "'touch .foo' worked after removing cwd"
2093                 mkdir .foo && error "'mkdir .foo' worked after removing cwd"
2094         fi
2095         $TRACE ls . && error "'ls .' worked after removing cwd"
2096         $TRACE ls .. || error "'ls ..' failed after removing cwd"
2097         is_patchless || ( $TRACE cd . && error "'cd .' worked after removing cwd" )
2098         $TRACE mkdir . && error "'mkdir .' worked after removing cwd"
2099         $TRACE rmdir . && error "'rmdir .' worked after removing cwd"
2100         $TRACE ln -s . foo && error "'ln -s .' worked after removing cwd"
2101         $TRACE cd .. || echo "'cd ..' failed after removing cwd `pwd`" #bug 3415
2102 }
2103 run_test 48c "Access removed working subdir (should return errors)"
2104
2105 test_48d() { # bug 2350
2106         check_kernel_version 36 || return 0
2107         #sysctl -w lnet.debug=-1
2108         #set -vx
2109         mkdir -p $DIR/d48d/dir
2110         cd $DIR/d48d/dir
2111         $TRACE rmdir $DIR/d48d/dir || error "remove cwd $DIR/d48d/dir failed"
2112         $TRACE rmdir $DIR/d48d || error "remove parent $DIR/d48d failed"
2113         $TRACE touch foo && error "'touch foo' worked after removing parent"
2114         $TRACE mkdir foo && error "'mkdir foo' worked after removing parent"
2115         if check_kernel_version 44; then
2116                 touch .foo && error "'touch .foo' worked after removing parent"
2117                 mkdir .foo && error "'mkdir .foo' worked after removing parent"
2118         fi
2119         $TRACE ls . && error "'ls .' worked after removing parent"
2120         $TRACE ls .. && error "'ls ..' worked after removing parent"
2121         is_patchless || ( $TRACE cd . && error "'cd .' worked after recreate parent" )
2122         $TRACE mkdir . && error "'mkdir .' worked after removing parent"
2123         $TRACE rmdir . && error "'rmdir .' worked after removing parent"
2124         $TRACE ln -s . foo && error "'ln -s .' worked after removing parent"
2125         is_patchless || ( $TRACE cd .. && error "'cd ..' worked after removing parent" || true )
2126 }
2127 run_test 48d "Access removed parent subdir (should return errors)"
2128
2129 test_48e() { # bug 4134
2130         check_kernel_version 41 || return 0
2131         #sysctl -w lnet.debug=-1
2132         #set -vx
2133         mkdir -p $DIR/d48e/dir
2134         cd $DIR/d48e/dir
2135         $TRACE rmdir $DIR/d48e/dir || error "remove cwd $DIR/d48e/dir failed"
2136         $TRACE rmdir $DIR/d48e || error "remove parent $DIR/d48e failed"
2137         $TRACE touch $DIR/d48e || error "'touch $DIR/d48e' failed"
2138         $TRACE chmod +x $DIR/d48e || error "'chmod +x $DIR/d48e' failed"
2139         # On a buggy kernel addition of "touch foo" after cd .. will
2140         # produce kernel oops in lookup_hash_it
2141         touch ../foo && error "'cd ..' worked after recreate parent"
2142         cd $DIR
2143         $TRACE rm $DIR/d48e || error "rm '$DIR/d48e' failed"
2144 }
2145 run_test 48e "Access to recreated parent subdir (should return errors)"
2146
2147 test_50() {
2148         # bug 1485
2149         mkdir $DIR/d50
2150         cd $DIR/d50
2151         ls /proc/$$/cwd || error
2152 }
2153 run_test 50 "special situations: /proc symlinks  ==============="
2154
2155 test_51() {
2156         # bug 1516 - create an empty entry right after ".." then split dir
2157         mkdir $DIR/d51
2158         touch $DIR/d51/foo
2159         $MCREATE $DIR/d51/bar
2160         rm $DIR/d51/foo
2161         createmany -m $DIR/d51/longfile 201
2162         FNUM=202
2163         while [ `ls -sd $DIR/d51 | awk '{ print $1 }'` -eq 4 ]; do
2164                 $MCREATE $DIR/d51/longfile$FNUM
2165                 FNUM=$(($FNUM + 1))
2166                 echo -n "+"
2167         done
2168         ls -l $DIR/d51 > /dev/null || error
2169 }
2170 run_test 51 "special situations: split htree with empty entry =="
2171
2172 #export NUMTEST=70000
2173 # FIXME: I select a relatively small number to do basic test.
2174 # large number may give panic(). debugging on this is going on.
2175 export NUMTEST=70
2176 test_51b() {
2177         NUMFREE=`df -i -P $DIR | tail -n 1 | awk '{ print $4 }'`
2178         [ $NUMFREE -lt 21000 ] && \
2179                 skip "not enough free inodes ($NUMFREE)" && \
2180                 return
2181
2182         check_kernel_version 40 || NUMTEST=31000
2183         [ $NUMFREE -lt $NUMTEST ] && NUMTEST=$(($NUMFREE - 50))
2184
2185         mkdir -p $DIR/d51b
2186         createmany -d $DIR/d51b/t- $NUMTEST
2187 }
2188 run_test 51b "mkdir .../t-0 --- .../t-$NUMTEST ===================="
2189
2190 test_51c() {
2191         [ ! -d $DIR/d51b ] && skip "$DIR/51b missing" && \
2192                 return
2193
2194         unlinkmany -d $DIR/d51b/t- $NUMTEST
2195 }
2196 run_test 51c "rmdir .../t-0 --- .../t-$NUMTEST ===================="
2197
2198 test_51d() {
2199         [  "$OSTCOUNT" -lt "3" ] && skip "skipping test with few OSTs" && return
2200         mkdir -p $DIR/d51d
2201         createmany -o $DIR/d51d/t- 1000
2202         $LFS getstripe $DIR/d51d > $TMP/files
2203         for N in `seq 0 $((OSTCOUNT - 1))`; do
2204             OBJS[$N]=`awk -vobjs=0 '($1 == '$N') { objs += 1 } END { print objs;}' $TMP/files`
2205             OBJS0[$N]=`grep -A 1 idx $TMP/files | awk -vobjs=0 '($1 == '$N') { objs += 1 } END { print objs;}'`
2206             log "OST$N has ${OBJS[$N]} objects, ${OBJS0[$N]} are index 0"
2207         done
2208         unlinkmany $DIR/d51d/t- 1000
2209
2210         NLAST=0
2211         for N in `seq 1 $((OSTCOUNT - 1))`; do
2212             [ ${OBJS[$N]} -lt $((${OBJS[$NLAST]} - 20)) ] && \
2213                 error "OST $N has less objects vs OST $NLAST (${OBJS[$N]} < ${OBJS[$NLAST]}"
2214             [ ${OBJS[$N]} -gt $((${OBJS[$NLAST]} + 20)) ] && \
2215                 error "OST $N has less objects vs OST $NLAST (${OBJS[$N]} < ${OBJS[$NLAST]}"
2216             
2217             [ ${OBJS0[$N]} -lt $((${OBJS0[$NLAST]} - 20)) ] && \
2218                 error "OST $N has less #0 objects vs OST $NLAST (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
2219             [ ${OBJS0[$N]} -gt $((${OBJS0[$NLAST]} + 20)) ] && \
2220                 error "OST $N has less #0 objects vs OST $NLAST (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
2221             NLAST=$N
2222         done
2223 }
2224 run_test 51d "check object distribution ===================="
2225
2226 test_52a() {
2227         [ -f $DIR/d52a/foo ] && chattr -a $DIR/d52a/foo
2228         mkdir -p $DIR/d52a
2229         touch $DIR/d52a/foo
2230         chattr =a $DIR/d52a/foo || error "chattr =a failed"
2231         echo bar >> $DIR/d52a/foo || error "append bar failed"
2232         cp /etc/hosts $DIR/d52a/foo && error "cp worked"
2233         rm -f $DIR/d52a/foo 2>/dev/null && error "rm worked"
2234         link $DIR/d52a/foo $DIR/d52a/foo_link 2>/dev/null && error "link worked"
2235         echo foo >> $DIR/d52a/foo || error "append foo failed"
2236         mrename $DIR/d52a/foo $DIR/d52a/foo_ren && error "rename worked"
2237         lsattr $DIR/d52a/foo | egrep -q "^-+a-+ $DIR/d52a/foo" || error "lsattr"
2238         chattr -a $DIR/d52a/foo || error "chattr -a failed"
2239
2240         rm -fr $DIR/d52a || error "cleanup rm failed"
2241 }
2242 run_test 52a "append-only flag test (should return errors) ====="
2243
2244 test_52b() {
2245         [ -f $DIR/d52b/foo ] && chattr -i $DIR/d52b/foo
2246         mkdir -p $DIR/d52b
2247         touch $DIR/d52b/foo
2248         chattr =i $DIR/d52b/foo || error
2249         cat test > $DIR/d52b/foo && error
2250         cp /etc/hosts $DIR/d52b/foo && error
2251         rm -f $DIR/d52b/foo 2>/dev/null && error
2252         link $DIR/d52b/foo $DIR/d52b/foo_link 2>/dev/null && error
2253         echo foo >> $DIR/d52b/foo && error
2254         mrename $DIR/d52b/foo $DIR/d52b/foo_ren && error
2255         [ -f $DIR/d52b/foo ] || error
2256         [ -f $DIR/d52b/foo_ren ] && error
2257         lsattr $DIR/d52b/foo | egrep -q "^-+i-+ $DIR/d52b/foo" || error
2258         chattr -i $DIR/d52b/foo || error
2259
2260         rm -fr $DIR/d52b || error
2261 }
2262 run_test 52b "immutable flag test (should return errors) ======="
2263
2264 test_53() {
2265         remote_mds && skip "remote MDS" && return
2266
2267         # only test MDT0000 
2268         for i in `ls -d $LPROC/osc/*-osc-MDT0000 2> /dev/null` ; do
2269                 ostname=`basename $i | cut -d - -f 1-2`
2270                 ost_last=`cat $LPROC/obdfilter/$ostname/last_id`
2271                 mds_last=`cat $i/prealloc_last_id`
2272                 echo "$ostname.last_id=$ost_last ; MDS.last_id=$mds_last"
2273                 if [ $ost_last != $mds_last ]; then
2274                     error "$ostname.last_id=$ost_last ; MDS.last_id=$mds_last"
2275                 fi
2276         done
2277 }
2278 run_test 53 "verify that MDS and OSTs agree on pre-creation ===="
2279
2280 test_54a() {
2281         [ ! -f "$SOCKETSERVER" ] && skip "no socketserver, skipping" && return
2282         [ ! -f "$SOCKETCLIENT" ] && skip "no socketclient, skipping" && return
2283         $SOCKETSERVER $DIR/socket
2284         $SOCKETCLIENT $DIR/socket || error
2285         $MUNLINK $DIR/socket
2286 }
2287 run_test 54a "unix domain socket test =========================="
2288
2289 test_54b() {
2290         f="$DIR/f54b"
2291         mknod $f c 1 3
2292         chmod 0666 $f
2293         dd if=/dev/zero of=$f bs=`page_size` count=1 
2294 }
2295 run_test 54b "char device works in lustre ======================"
2296
2297 find_loop_dev() {
2298         [ -b /dev/loop/0 ] && LOOPBASE=/dev/loop/
2299         [ -b /dev/loop0 ] && LOOPBASE=/dev/loop
2300         [ -z "$LOOPBASE" ] && echo "/dev/loop/0 and /dev/loop0 gone?" && return
2301
2302         for i in `seq 3 7`; do
2303                 losetup $LOOPBASE$i > /dev/null 2>&1 && continue
2304                 LOOPDEV=$LOOPBASE$i
2305                 LOOPNUM=$i
2306                 break
2307         done
2308 }
2309
2310 test_54c() {
2311         tfile="$DIR/f54c"
2312         tdir="$DIR/d54c"
2313         loopdev="$DIR/loop54c"
2314
2315         find_loop_dev 
2316         [ -z "$LOOPNUM" ] && echo "couldn't find empty loop device" && return
2317         mknod $loopdev b 7 $LOOPNUM
2318         echo "make a loop file system with $tfile on $loopdev ($LOOPNUM)..."
2319         dd if=/dev/zero of=$tfile bs=`page_size` seek=1024 count=1 > /dev/null
2320         losetup $loopdev $tfile || error "can't set up $loopdev for $tfile"
2321         mkfs.ext2 $loopdev || error "mke2fs on $loopdev"
2322         mkdir -p $tdir
2323         mount -t ext2 $loopdev $tdir || error "error mounting $loopdev on $tdir"
2324         dd if=/dev/zero of=$tdir/tmp bs=`page_size` count=30 || error "dd write"
2325         df $tdir
2326         dd if=$tdir/tmp of=/dev/zero bs=`page_size` count=30 || error "dd read"
2327         $UMOUNT $tdir
2328         losetup -d $loopdev
2329         rm $loopdev
2330 }
2331 run_test 54c "block device works in lustre ====================="
2332
2333 test_54d() {
2334         f="$DIR/f54d"
2335         string="aaaaaa"
2336         mknod $f p
2337         [ "$string" = `echo $string > $f | cat $f` ] || error
2338 }
2339 run_test 54d "fifo device works in lustre ======================"
2340
2341 test_54e() {
2342         check_kernel_version 46 || return 0
2343         f="$DIR/f54e"
2344         string="aaaaaa"
2345         mknod $f c 4 0
2346         echo $string > $f || error
2347 }
2348 run_test 54e "console/tty device works in lustre ======================"
2349
2350 check_fstype() {
2351         grep -q $FSTYPE /proc/filesystems && return 1
2352         modprobe $FSTYPE
2353         grep -q $FSTYPE /proc/filesystems && return 1
2354         insmod ../$FSTYPE/$FSTYPE.o
2355         grep -q $FSTYPE /proc/filesystems && return 1
2356         insmod ../$FSTYPE/$FSTYPE.ko
2357         grep -q $FSTYPE /proc/filesystems && return 1
2358         return 0
2359 }
2360
2361 test_55() {
2362         rm -rf $DIR/d55
2363         mkdir $DIR/d55
2364         check_fstype && skip "can't find fs $FSTYPE" && return
2365         mount -t $FSTYPE -o loop,iopen $EXT2_DEV $DIR/d55 || error "mounting"
2366         touch $DIR/d55/foo
2367         $IOPENTEST1 $DIR/d55/foo $DIR/d55 || error "running $IOPENTEST1"
2368         $IOPENTEST2 $DIR/d55 || error "running $IOPENTEST2"
2369         echo "check for $EXT2_DEV. Please wait..."
2370         rm -rf $DIR/d55/*
2371         $UMOUNT $DIR/d55 || error "unmounting"
2372 }
2373 run_test 55 "check iopen_connect_dentry() ======================"
2374
2375 test_56() {
2376         rm -rf $DIR/d56
2377         $SETSTRIPE -d $DIR
2378         mkdir $DIR/d56
2379         mkdir $DIR/d56/dir
2380         NUMFILES=3
2381         NUMFILESx2=$(($NUMFILES * 2))
2382         for i in `seq 1 $NUMFILES` ; do
2383                 touch $DIR/d56/file$i
2384                 touch $DIR/d56/dir/file$i
2385         done
2386
2387         # test lfs getstripe with --recursive
2388         FILENUM=`$GETSTRIPE --recursive $DIR/d56 | grep -c obdidx`
2389         [ $FILENUM -eq $NUMFILESx2 ] || error \
2390                 "lfs getstripe --recursive $DIR/d56 wrong: found $FILENUM, expected $NUMFILESx2"
2391         FILENUM=`$GETSTRIPE $DIR/d56 | grep -c obdidx`
2392         [ $FILENUM -eq $NUMFILES ] || error \
2393                 "lfs getstripe $DIR/d56 without --recursive wrong: found $FILENUM, expected $NUMFILES"
2394         echo "lfs getstripe --recursive passed."
2395
2396         # test lfs getstripe with file instead of dir
2397         FILENUM=`$GETSTRIPE $DIR/d56/file1 | grep -c obdidx`
2398         [ $FILENUM  -eq 1 ] || error \
2399                  "lfs getstripe $DIR/d56/file1 wrong:found $FILENUM, expected 1"
2400         echo "lfs getstripe file passed."
2401
2402         #test lfs getstripe with --verbose
2403         [ `$GETSTRIPE --verbose $DIR/d56 | grep -c lmm_magic` -eq $NUMFILES ] ||\
2404                 error "lfs getstripe --verbose $DIR/d56 wrong: should find $NUMFILES lmm_magic info"
2405         [ `$GETSTRIPE $DIR/d56 | grep -c lmm_magic` -eq 0 ] || error \
2406                 "lfs getstripe $DIR/d56 without --verbose wrong: should not show lmm_magic info"
2407         echo "lfs getstripe --verbose passed."
2408
2409         #test lfs getstripe with --obd
2410         $GETSTRIPE --obd wrong_uuid $DIR/d56 2>&1 | grep -q "unknown obduuid" || \
2411                 error "lfs getstripe --obd wrong_uuid should return error message"
2412
2413         [  "$OSTCOUNT" -lt 2 ] && \
2414                 skip "skipping other lfs getstripe --obd test" && return
2415         FILENUM=`$GETSTRIPE --recursive $DIR/d56 | sed -n '/^[   ]*1[    ]/p' | wc -l`
2416         OBDUUID=`$GETSTRIPE --recursive $DIR/d56 | sed -n '/^[   ]*1:/p' | awk '{print $2}'`
2417         FOUND=`$GETSTRIPE -r --obd $OBDUUID $DIR/d56 | wc -l`
2418         [ $FOUND -eq $FILENUM ] || \
2419                 error "lfs getstripe --obd wrong: found $FOUND, expected $FILENUM"
2420         [ `$GETSTRIPE -r -v --obd $OBDUUID $DIR/d56 | sed '/^[   ]*1[    ]/d' |\
2421                 sed -n '/^[      ]*[0-9][0-9]*[  ]/p' | wc -l` -eq 0 ] || \
2422                 error "lfs getstripe --obd wrong: should not show file on other obd"
2423         echo "lfs getstripe --obd passed."
2424 }
2425 run_test 56 "check lfs getstripe ===================================="
2426
2427 NUMFILES=3
2428 NUMDIRS=3
2429 setup_56() {
2430         LOCAL_NUMFILES=$1
2431         LOCAL_NUMDIRS=$2
2432         if [ ! -d "$DIR/${tdir}g" ] ; then
2433                 mkdir -p $DIR/${tdir}g
2434                 for i in `seq 1 $LOCAL_NUMFILES` ; do
2435                         touch $DIR/${tdir}g/file$i
2436                 done
2437                 for i in `seq 1 $LOCAL_NUMDIRS` ; do
2438                         mkdir $DIR/${tdir}g/dir$i
2439                         for j in `seq 1 $LOCAL_NUMFILES` ; do
2440                                 touch $DIR/${tdir}g/dir$i/file$j
2441                         done
2442                 done
2443         fi
2444 }
2445
2446 test_56g() {
2447         $LSTRIPE -d $DIR
2448
2449         setup_56 $NUMFILES $NUMDIRS
2450
2451         EXPECTED=$(($NUMDIRS + 2))
2452         # test lfs find with -name
2453         for i in `seq 1 $NUMFILES` ; do
2454                 NUMS=`$LFIND -name "*$i" $DIR/${tdir}g | wc -l`
2455                 [ $NUMS -eq $EXPECTED ] || error \
2456                         "lfs find -name \"*$i\" $DIR/${tdir}g wrong: found $NUMS, expected $EXPECTED"
2457         done
2458         echo "lfs find -name passed."
2459 }
2460 run_test 56g "check lfs find -name ============================="
2461
2462 test_56h() {
2463         $LSTRIPE -d $DIR
2464
2465         setup_56 $NUMFILES $NUMDIRS
2466
2467         EXPECTED=$((($NUMDIRS+1)*($NUMFILES-1)+$NUMFILES))
2468         # test lfs find with ! -name
2469         for i in `seq 1 $NUMFILES` ; do
2470                 NUMS=`$LFIND ! -name "*$i" $DIR/${tdir}g | wc -l`
2471                 [ $NUMS -eq $EXPECTED ] || error \
2472                         "lfs find ! -name \"*$i\" $DIR/${tdir}g wrong: found $NUMS, expected $EXPECTED"
2473         done
2474         echo "lfs find ! -name passed."
2475 }
2476 run_test 56h "check lfs find ! -name ============================="
2477
2478 test_56i() {
2479        tdir=${tdir}i
2480        mkdir -p $DIR/$tdir
2481        UUID=`$GETSTRIPE $DIR/$tdir | awk '/0: / { print $2 }'`
2482        OUT="`$LFIND -ost $UUID $DIR/$tdir`"
2483        [ "$OUT" ] && error "$LFIND returned directory '$OUT'" || true
2484 }
2485 run_test 56i "check 'lfs find -ost UUID' skips directories ======="
2486
2487 test_57a() {
2488         # note test will not do anything if MDS is not local
2489         remote_mds && skip "remote MDS" && return
2490
2491         for DEV in `cat $LPROC/mds/*/mntdev`; do
2492                 dumpe2fs -h $DEV > $TMP/t57a.dump || error "can't access $DEV"
2493                 DEVISIZE=`awk '/Inode size:/ { print $3 }' $TMP/t57a.dump`
2494                 [ "$DEVISIZE" -gt 128 ] || error "inode size $DEVISIZE"
2495                 rm $TMP/t57a.dump
2496         done
2497 }
2498 run_test 57a "verify MDS filesystem created with large inodes =="
2499
2500 test_57b() {
2501         FILECOUNT=100
2502         FILE1=$DIR/d57b/f1
2503         FILEN=$DIR/d57b/f$FILECOUNT
2504         rm -rf $DIR/d57b || error "removing $DIR/d57b"
2505         mkdir -p $DIR/d57b || error "creating $DIR/d57b"
2506         echo "mcreating $FILECOUNT files"
2507         createmany -m $DIR/d57b/f 1 $FILECOUNT || \
2508                 error "creating files in $DIR/d57b"
2509
2510         # verify that files do not have EAs yet
2511         $GETSTRIPE $FILE1 2>&1 | grep -q "no stripe" || error "$FILE1 has an EA"
2512         $GETSTRIPE $FILEN 2>&1 | grep -q "no stripe" || error "$FILEN has an EA"
2513
2514         MDSFREE="`cat $LPROC/mds/*/kbytesfree 2> /dev/null`"
2515         MDCFREE="`cat $LPROC/mdc/*/kbytesfree | head -n 1`"
2516         echo "opening files to create objects/EAs"
2517         for FILE in `seq -f $DIR/d57b/f%g 1 $FILECOUNT`; do
2518                 $OPENFILE -f O_RDWR $FILE > /dev/null || error "opening $FILE"
2519         done
2520
2521         # verify that files have EAs now
2522         $GETSTRIPE $FILE1 | grep -q "obdidx" || error "$FILE1 missing EA"
2523         $GETSTRIPE $FILEN | grep -q "obdidx" || error "$FILEN missing EA"
2524
2525         sleep 1 # make sure we get new statfs data
2526 #       MDSFREE2="`cat $LPROC/mds/*/kbytesfree`"
2527 #       MDCFREE2="`cat $LPROC/mdc/*/kbytesfree`"
2528 #       if [ "$MDCFREE2" -lt "$((MDCFREE - 8))" ]; then
2529 #               if [ "$MDSFREE" != "$MDSFREE2" ]; then
2530 #                       error "MDC before $MDCFREE != after $MDCFREE2"
2531 #               else
2532 #                       echo "MDC before $MDCFREE != after $MDCFREE2"
2533 #                       echo "unable to confirm if MDS has large inodes"
2534 #               fi
2535 #       fi
2536         rm -rf $DIR/d57b
2537 }
2538 run_test 57b "default LOV EAs are stored inside large inodes ==="
2539
2540 test_58() {
2541     [ -z "$(which wiretest 2>/dev/null)" ] && skip "could not find wiretest" && return
2542     wiretest
2543 }
2544 run_test 58 "verify cross-platform wire constants =============="
2545
2546 test_59() {
2547         echo "touch 130 files"
2548         createmany -o $DIR/f59- 130
2549         echo "rm 130 files"
2550         unlinkmany $DIR/f59- 130
2551         sync
2552         sleep 2
2553         # wait for commitment of removal
2554 }
2555 run_test 59 "verify cancellation of llog records async ========="
2556
2557 TEST60_HEAD="test_60 run $RANDOM"
2558 test_60a() {
2559         [ ! -f run-llog.sh ] && skip "missing subtest run-llog.sh" && return
2560         log "$TEST60_HEAD - from kernel mode"
2561 #       sh run-llog.sh
2562 }
2563 run_test 60a "llog sanity tests run from kernel module =========="
2564
2565 test_60b() { # bug 6411
2566         dmesg > $DIR/$tfile
2567         LLOG_COUNT=`dmesg | grep -A 1000 "$TEST60_HEAD" | grep -c llog_test`
2568         [ $LLOG_COUNT -gt 50 ] && error "CDEBUG_LIMIT not limiting messages"|| true
2569 }
2570 run_test 60b "limit repeated messages from CERROR/CWARN ========"
2571  
2572 test_60c() {
2573         echo "create 5000 files" 
2574         createmany -o $DIR/f60c- 5000
2575 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED  0x13c
2576         sysctl -w lustre.fail_loc=0x8000013c
2577         unlinkmany $DIR/f60c- 5000
2578         sysctl -w lustre.fail_loc=0
2579 }
2580 run_test 60c "unlink file when mds full"
2581
2582 test_61() {
2583         f="$DIR/f61"
2584         dd if=/dev/zero of=$f bs=`page_size` count=1
2585         cancel_lru_locks osc
2586         multiop $f OSMWUc || error
2587         sync
2588 }
2589 run_test 61 "mmap() writes don't make sync hang ================"
2590
2591 # bug 2330 - insufficient obd_match error checking causes LBUG
2592 test_62() {
2593         f="$DIR/f62"
2594         echo foo > $f
2595         cancel_lru_locks osc
2596         sysctl -w lustre.fail_loc=0x405
2597         cat $f && error "cat succeeded, expect -EIO"
2598         sysctl -w lustre.fail_loc=0
2599 }
2600 run_test 62 "verify obd_match failure doesn't LBUG (should -EIO)"
2601
2602 # bug 2319 - oig_wait() interrupted causes crash because of invalid waitq.
2603 test_63() {
2604         MAX_DIRTY_MB=`cat $LPROC/osc/*/max_dirty_mb | head -n 1`
2605         for i in $LPROC/osc/*/max_dirty_mb ; do
2606                 echo 0 > $i
2607         done
2608         for i in `seq 10` ; do
2609                 dd if=/dev/zero of=$DIR/f63 bs=8k &
2610                 sleep 5
2611                 kill $!
2612                 sleep 1
2613         done
2614
2615         for i in $LPROC/osc/*/max_dirty_mb ; do
2616                 echo $MAX_DIRTY_MB > $i
2617         done
2618         rm -f $DIR/f63 || true
2619 }
2620 run_test 63 "Verify oig_wait interruption does not crash ======="
2621
2622 # bug 2248 - async write errors didn't return to application on sync
2623 # bug 3677 - async write errors left page locked
2624 test_63b() {
2625         debugsave
2626         sysctl -w lnet.debug=-1
2627
2628         # ensure we have a grant to do async writes
2629         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1
2630         rm $DIR/$tfile
2631
2632         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
2633         sysctl -w lustre.fail_loc=0x80000406
2634         multiop $DIR/$tfile Owy && \
2635                 error "sync didn't return ENOMEM"
2636         sync; sleep 2; sync     # do a real sync this time to flush page
2637         grep locked $LPROC/llite/*/dump_page_cache && \
2638                 error "locked page left in cache after async error" || true
2639         debugrestore
2640 }
2641 run_test 63b "async write errors should be returned to fsync ==="
2642
2643 test_64a () {
2644         df $DIR
2645         grep "[0-9]" $LPROC/osc/*[oO][sS][cC][_-]*/cur*
2646 }
2647 run_test 64a "verify filter grant calculations (in kernel) ====="
2648
2649 test_64b () {
2650         [ ! -f oos.sh ] && skip "missing subtest oos.sh" && return
2651         sh oos.sh $MOUNT
2652 }
2653 run_test 64b "check out-of-space detection on client ==========="
2654
2655 # bug 1414 - set/get directories' stripe info
2656 test_65a() {
2657         mkdir -p $DIR/d65
2658         touch $DIR/d65/f1
2659         $LVERIFY $DIR/d65 $DIR/d65/f1 || error "lverify failed"
2660 }
2661 run_test 65a "directory with no stripe info ===================="
2662
2663 test_65b() {
2664         mkdir -p $DIR/d65
2665         $SETSTRIPE $DIR/d65 $(($STRIPESIZE * 2)) 0 1 || error "setstripe"
2666         touch $DIR/d65/f2
2667         $LVERIFY $DIR/d65 $DIR/d65/f2 || error "lverify failed"
2668 }
2669 run_test 65b "directory setstripe $(($STRIPESIZE * 2)) 0 1 ==============="
2670
2671 test_65c() {
2672         if [ $OSTCOUNT -gt 1 ]; then
2673                 mkdir -p $DIR/d65
2674                 $SETSTRIPE $DIR/d65 $(($STRIPESIZE * 4)) 1 \
2675                         $(($OSTCOUNT - 1)) || error "setstripe"
2676                 touch $DIR/d65/f3
2677                 $LVERIFY $DIR/d65 $DIR/d65/f3 || error "lverify failed"
2678         fi
2679 }
2680 run_test 65c "directory setstripe $(($STRIPESIZE * 4)) 1 $(($OSTCOUNT - 1))"
2681
2682 test_65d() {
2683         mkdir -p $DIR/d65
2684         if [ $STRIPECOUNT -le 0 ]; then
2685                 sc=1
2686         elif [ $STRIPECOUNT -gt 160 ]; then
2687 #LOV_MAX_STRIPE_COUNT is 160
2688                 [ $OSTCOUNT -gt 160 ] && sc=160 || sc=$(($OSTCOUNT - 1))
2689         else
2690                 sc=$(($STRIPECOUNT - 1))
2691         fi
2692         $SETSTRIPE $DIR/d65 $STRIPESIZE -1 $sc || error "setstripe"
2693         touch $DIR/d65/f4 $DIR/d65/f5
2694         $LVERIFY $DIR/d65 $DIR/d65/f4 $DIR/d65/f5 || error "lverify failed"
2695 }
2696 run_test 65d "directory setstripe $STRIPESIZE -1 stripe_count =============="
2697
2698 test_65e() {
2699         mkdir -p $DIR/d65
2700
2701         $SETSTRIPE $DIR/d65 0 -1 0 || error "setstripe"
2702         $GETSTRIPE -v $DIR/d65 | grep "has no stripe info" || error "no stripe info failed"
2703         touch $DIR/d65/f6
2704         $LVERIFY $DIR/d65 $DIR/d65/f6 || error "lverify failed"
2705 }
2706 run_test 65e "directory setstripe 0 -1 0 ======================="
2707
2708 test_65f() {
2709         mkdir -p $DIR/d65f
2710         $RUNAS $SETSTRIPE $DIR/d65f 0 -1 0 && error "setstripe succeeded" || true
2711 }
2712 run_test 65f "dir setstripe permission (should return error) ==="
2713
2714 test_65g() {
2715         mkdir -p $DIR/d65
2716         $SETSTRIPE $DIR/d65 $(($STRIPESIZE * 2)) 0 1 || error "setstripe"
2717         $SETSTRIPE -d $DIR/d65 || error "setstripe"
2718         $GETSTRIPE -v $DIR/d65 | grep "has no stripe info" || \
2719                 error "delete default stripe failed"
2720 }
2721 run_test 65g "directory setstripe -d ==========================="
2722
2723 test_65h() {
2724         mkdir -p $DIR/d65
2725         $SETSTRIPE $DIR/d65 $(($STRIPESIZE * 2)) 0 1 || error "setstripe"
2726         mkdir -p $DIR/d65/dd1
2727         [ "`$GETSTRIPE -v $DIR/d65 | grep "^count"`" == \
2728           "`$GETSTRIPE -v $DIR/d65/dd1 | grep "^count"`" ] || error "stripe info inherit failed"
2729 }
2730 run_test 65h "directory stripe info inherit ===================="
2731  
2732 test_65i() { # bug6367
2733         $SETSTRIPE $MOUNT 65536 -1 -1
2734 }
2735 run_test 65i "set non-default striping on root directory (bug 6367)="
2736
2737 test_65j() { # bug6367
2738         # if we aren't already remounting for each test, do so for this test
2739         if [ "$CLEANUP" = ":" -a "$I_MOUNTED" = "yes" ]; then
2740                 cleanup -f || error "failed to unmount"
2741                 setup
2742         fi
2743         $SETSTRIPE -d $MOUNT || error "setstripe failed"
2744 }
2745 run_test 65j "set default striping on root directory (bug 6367)="
2746
2747 test_65k() { # bug11679
2748         [ "$OSTCOUNT" -lt 2 ] && skip "too few OSTs" && return
2749
2750         echo "Check OST status: "
2751         MDS_OSCS=`do_facet mds lctl dl | awk '/[oO][sS][cC].*md[ts]/ { print $4 }'`
2752         for OSC in $MDS_OSCS; do
2753                 echo $OSC "is activate"
2754                 do_facet mds lctl --device %$OSC activate
2755         done
2756         do_facet client mkdir -p $DIR/$tdir
2757         for INACTIVE_OSC in $MDS_OSCS; do
2758                 echo $INACTIVE_OSC "is Deactivate:"
2759                 do_facet mds lctl --device  %$INACTIVE_OSC deactivate
2760                 for STRIPE_OSC in $MDS_OSCS; do
2761                         STRIPE_OST=`osc_to_ost $STRIPE_OSC`
2762                         STRIPE_INDEX=`do_facet mds cat $LPROC/lov/*md*/target_obd |
2763                                       grep $STRIPE_OST | awk -F: '{print $1}'`
2764                         echo "$SETSTRIPE $DIR/$tdir/${STRIPE_INDEX} 0 ${STRIPE_INDEX} 1"
2765                         do_facet client $SETSTRIPE $DIR/$tdir/${STRIPE_INDEX} 0 ${STRIPE_INDEX} 1
2766                         RC=$?
2767                         [ $RC -ne 0 ] && error "setstripe should have succeeded"
2768                 done
2769                 do_facet client rm -f $DIR/$tdir/*
2770                 echo $INACTIVE_OSC "is Activate."
2771                 do_facet mds lctl --device  %$INACTIVE_OSC activate
2772         done
2773 }
2774 run_test 65k "validate manual striping works properly with deactivated OSCs"
2775
2776 test_65l() { # bug 12836
2777         mkdir -p $DIR/$tdir/test_dir
2778         $LFS setstripe $DIR/$tdir/test_dir 65536 -1 -1
2779         $LFS find -mtime -1 $DIR/$tdir
2780 }
2781 run_test 65l "lfs find on -1 stripe dir ========================"
2782
2783 # bug 2543 - update blocks count on client
2784 test_66() {
2785         COUNT=${COUNT:-8}
2786         dd if=/dev/zero of=$DIR/f66 bs=1k count=$COUNT
2787         sync; sleep 1; sync
2788         BLOCKS=`ls -s $DIR/f66 | awk '{ print $1 }'`
2789         [ $BLOCKS -ge $COUNT ] || error "$DIR/f66 blocks $BLOCKS < $COUNT"
2790 }
2791 run_test 66 "update inode blocks count on client ==============="
2792
2793 test_67() {
2794         [ ! -f sanity-sec.sh ] && skip "missing subtest sanity-sec.sh" && return
2795         sh sanity-sec.sh
2796 }
2797 run_test 67 "security test ====================================="
2798
2799 LLOOP=
2800 cleanup_68() {
2801         trap 0
2802         if [ ! -z "$LLOOP" ]; then
2803                 swapoff $LLOOP || error "swapoff failed"
2804                 $LCTL blockdev_detach $LLOOP || error "detach failed"
2805                 rm -f $LLOOP
2806                 unset LLOOP
2807         fi
2808         rm -f $DIR/f68
2809 }
2810
2811 meminfo() {
2812         awk '($1 == "'$1':") { print $2 }' /proc/meminfo
2813 }
2814
2815 swap_used() {
2816         swapon -s | awk '($1 == "'$1'") { print $4 }'
2817 }
2818
2819
2820 # excercise swapping to lustre by adding a high priority swapfile entry
2821 # and then consuming memory until it is used.
2822 test_68() {
2823         [ "$UID" != 0 ] && skip "must run as root" && return
2824         grep -q obdfilter $LPROC/devices && \
2825                 skip "local OST" && return
2826
2827         grep -q llite_lloop /proc/modules
2828         [ $? -ne 0 ] && skip "can't find module llite_lloop" && return
2829
2830         LLOOP=$TMP/lloop.`date +%s`.`date +%N`
2831         dd if=/dev/zero of=$DIR/f68 bs=64k seek=2047 count=1
2832         mkswap $DIR/f68
2833
2834         $LCTL blockdev_attach $DIR/f68 $LLOOP || error "attach failed"
2835
2836         trap cleanup_68 EXIT
2837
2838         swapon -p 32767 $LLOOP || error "swapon $LLOOP failed"
2839
2840         echo "before: `swapon -s | grep $LLOOP`"
2841         MEMTOTAL=`meminfo MemTotal`
2842         $MEMHOG $MEMTOTAL || error "error allocating $MEMTOTAL kB"
2843         echo "after: `swapon -s | grep $LLOOP`"
2844         SWAPUSED=`swap_used $LLOOP`
2845
2846         cleanup_68
2847
2848         [ $SWAPUSED -eq 0 ] && echo "no swap used???" || true
2849 }
2850 run_test 68 "support swapping to Lustre ========================"
2851
2852 # bug5265, obdfilter oa2dentry return -ENOENT
2853 # #define OBD_FAIL_OST_ENOENT 0x217
2854 test_69() {
2855         [ $(grep -c obdfilter $LPROC/devices) -eq 0 ] && \
2856                 skip "skipping test for remote OST" && return
2857         $GSS && skip "gss with bulk security will triger oops. re-enable this after b10091 get fixed" && return
2858
2859         f="$DIR/$tfile"
2860         touch $f
2861
2862         if ! $DIRECTIO write ${f}.2 0 1; then
2863                 skip "O_DIRECT not implemented"
2864                 return 0
2865         fi
2866
2867         sysctl -w lustre.fail_loc=0x217
2868         truncate $f 1 # vmtruncate() will ignore truncate() error.
2869         $DIRECTIO write $f 0 2 && error "write succeeded, expect -ENOENT"
2870
2871         sysctl -w lustre.fail_loc=0
2872         $DIRECTIO write $f 0 2 || error "write error"
2873
2874         cancel_lru_locks osc
2875         $DIRECTIO read $f 0 1 || error "read error"
2876
2877         sysctl -w lustre.fail_loc=0x217
2878         $DIRECTIO read $f 1 1 && error "read succeeded, expect -ENOENT"
2879
2880         sysctl -w lustre.fail_loc=0
2881         rm -f $f
2882 }
2883 run_test 69 "verify oa2dentry return -ENOENT doesn't LBUG ======"
2884
2885 test_71() {
2886         which dbench > /dev/null 2>&1 || skip "dbench not installed, skip this test" && return 0
2887         DBENCH_LIB=${DBENCH_LIB:-/usr/lib/dbench}
2888         PATH=${DBENCH_LIB}:${PATH}
2889         cp `which dbench` $DIR
2890
2891         TGT=$DIR/client.txt
2892         SRC=${SRC:-$DBENCH_LIB/client.txt}
2893         [ ! -e $TGT -a -e $SRC ] && echo "copying $SRC to $TGT" && cp $SRC $TGT
2894         SRC=$DBENCH_LIB/client_plain.txt
2895         [ ! -e $TGT -a -e $SRC ] && echo "copying $SRC to $TGT" && cp $SRC $TGT
2896
2897         echo "copying necessary lib to $DIR"
2898         [ -d /lib64 ] && LIB71=/lib64 || LIB71=/lib
2899         mkdir -p $DIR$LIB71 || error "can't create $DIR$LIB71"
2900         cp $LIB71/libc* $DIR$LIB71 || error "can't copy $LIB71/libc*"
2901         cp $LIB71/ld-* $DIR$LIB71 || error "can't create $LIB71/ld-*"
2902
2903         echo "chroot $DIR /dbench -c client.txt 2"
2904         chroot $DIR /dbench -c client.txt 2
2905         RC=$?
2906
2907         rm -rf $DIR/dbench $TGT $DIR$LIB71
2908
2909         return $RC
2910 }
2911 run_test 71 "Running dbench on lustre (don't segment fault) ===="
2912
2913 test_72() { # bug 5695 - Test that on 2.6 remove_suid works properly
2914         check_kernel_version 43 || return 0
2915         [ "$RUNAS_ID" = "$UID" ] && skip "RUNAS_ID = UID = $UID -- skipping" && return
2916         # We had better clear the $DIR to get enough space for dd
2917         rm -rf $DIR/*
2918         touch $DIR/f72
2919         chmod 777 $DIR/f72
2920         chmod ug+s $DIR/f72
2921         $RUNAS -u $(($RUNAS_ID + 1)) dd if=/dev/zero of=$DIR/f72 bs=512 count=1 || error
2922         # See if we are still setuid/sgid
2923         test -u $DIR/f72 -o -g $DIR/f72 && error "S/gid is not dropped on write"
2924         # Now test that MDS is updated too
2925         cancel_lru_locks mdc
2926         test -u $DIR/f72 -o -g $DIR/f72 && error "S/gid is not dropped on MDS"
2927         true
2928 }
2929 run_test 72 "Test that remove suid works properly (bug5695) ===="
2930
2931 # bug 3462 - multiple simultaneous MDC requests
2932 test_73() {
2933         mkdir $DIR/d73-1 
2934         mkdir $DIR/d73-2
2935         multiop $DIR/d73-1/f73-1 O_c &
2936         pid1=$!
2937         #give multiop a chance to open
2938         usleep 500
2939
2940         echo 0x80000129 > /proc/sys/lustre/fail_loc
2941         multiop $DIR/d73-1/f73-2 Oc &
2942         sleep 1
2943         echo 0 > /proc/sys/lustre/fail_loc
2944
2945         multiop $DIR/d73-2/f73-3 Oc &
2946         pid3=$!
2947
2948         kill -USR1 $pid1
2949         wait $pid1 || return 1
2950
2951         sleep 25
2952
2953         $CHECKSTAT -t file $DIR/d73-1/f73-1 || return 4
2954         $CHECKSTAT -t file $DIR/d73-1/f73-2 || return 5 
2955         $CHECKSTAT -t file $DIR/d73-2/f73-3 || return 6 
2956
2957         rm -rf $DIR/d73-*
2958 }
2959 run_test 73 "multiple MDC requests (should not deadlock)"
2960
2961 test_74a() { # bug 6149, 6184
2962         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
2963         #
2964         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
2965         # will spin in a tight reconnection loop
2966         touch $DIR/f74a
2967         sysctl -w lustre.fail_loc=0x8000030e
2968         # get any lock that won't be difficult - lookup works.
2969         ls $DIR/f74a
2970         sysctl -w lustre.fail_loc=0
2971         true
2972 }
2973 run_test 74a "ldlm_enqueue freed-export error path, ls (shouldn't LBUG)"
2974
2975 test_74b() { # bug 13310
2976         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
2977         #
2978         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
2979         # will spin in a tight reconnection loop
2980         sysctl -w lustre.fail_loc=0x8000030e
2981         # get a "difficult" lock
2982         touch $DIR/f74b
2983         sysctl -w lustre.fail_loc=0
2984         true
2985 }
2986 run_test 74b "ldlm_enqueue freed-export error path, touch (shouldn't LBUG)"
2987
2988 JOIN=${JOIN:-"lfs join"}
2989 F75=$DIR/f75
2990 F128k=${F75}_128k
2991 FHEAD=${F75}_head
2992 FTAIL=${F75}_tail
2993 export T75_PREP=no
2994 test75_prep() {
2995         [ $T75_PREP = "yes" ] && return
2996         echo "using F75=$F75, F128k=$F128k, FHEAD=$FHEAD, FTAIL=$FTAIL"
2997  
2998         dd if=/dev/urandom of=${F75}_128k bs=128k count=1 || error "dd failed"
2999         log "finished dd"
3000         chmod 777 ${F128k}
3001         T75_PREP=yes
3002 }
3003  
3004 test_75a() {
3005 #       skipped temporarily: we do not have join file currently
3006 #       please remove this when ready - huanghua
3007         return
3008         test75_prep
3009  
3010         cp -p ${F128k} ${FHEAD}
3011         log "finished cp to $FHEAD"
3012         cp -p ${F128k} ${FTAIL}
3013         log "finished cp to $FTAIL"
3014         cat ${F128k} ${F128k} > ${F75}_sim_sim
3015  
3016         $JOIN ${FHEAD} ${FTAIL} || error "join ${FHEAD} ${FTAIL} error"
3017         log "finished join $FHEAD to ${F75}_sim_sim"
3018         cmp ${FHEAD} ${F75}_sim_sim || error "${FHEAD} ${F75}_sim_sim differ"
3019         log "finished cmp $FHEAD to ${F75}_sim_sim"
3020         $CHECKSTAT -a ${FTAIL} || error "tail ${FTAIL} still exist after join"
3021 }
3022 run_test 75a "TEST join file ===================================="
3023  
3024 test_75b() {
3025 #       skipped temporarily: we do not have join file currently
3026 #       please remove this when ready - huanghua
3027         return
3028         test75_prep
3029  
3030         cp -p ${F128k} ${FTAIL}
3031         cat ${F75}_sim_sim >> ${F75}_join_sim
3032         cat ${F128k} >> ${F75}_join_sim
3033         $JOIN ${FHEAD} ${FTAIL} || error "join ${FHEAD} ${FTAIL} error"
3034         cmp ${FHEAD} ${F75}_join_sim || \
3035                 error "${FHEAD} ${F75}_join_sim are different"
3036         $CHECKSTAT -a ${FTAIL} || error "tail ${FTAIL} exist after join"
3037 }
3038 run_test 75b "TEST join file 2 =================================="
3039  
3040 test_75c() {
3041 #       skipped temporarily: we do not have join file currently
3042 #       please remove this when ready - huanghua
3043         return
3044         test75_prep
3045  
3046         cp -p ${F128k} ${FTAIL}
3047         cat ${F128k} >> ${F75}_sim_join
3048         cat ${F75}_join_sim >> ${F75}_sim_join
3049         $JOIN ${FTAIL} ${FHEAD} || error "join error"
3050         cmp ${FTAIL} ${F75}_sim_join || \
3051                 error "${FTAIL} ${F75}_sim_join are different"
3052         $CHECKSTAT -a ${FHEAD} || error "tail ${FHEAD} exist after join"
3053 }
3054 run_test 75c "TEST join file 3 =================================="
3055  
3056 test_75d() {
3057 #       skipped temporarily: we do not have join file currently
3058 #       please remove this when ready - huanghua
3059         return
3060         test75_prep
3061  
3062         cp -p ${F128k} ${FHEAD}
3063         cp -p ${F128k} ${FHEAD}_tmp
3064         cat ${F75}_sim_sim >> ${F75}_join_join
3065         cat ${F75}_sim_join >> ${F75}_join_join
3066         $JOIN ${FHEAD} ${FHEAD}_tmp || error "join ${FHEAD} ${FHEAD}_tmp error"
3067         $JOIN ${FHEAD} ${FTAIL} || error "join ${FHEAD} ${FTAIL} error"
3068         cmp ${FHEAD} ${F75}_join_join ||error "${FHEAD} ${F75}_join_join differ"        $CHECKSTAT -a ${FHEAD}_tmp || error "${FHEAD}_tmp exist after join"
3069         $CHECKSTAT -a ${FTAIL} || error "tail ${FTAIL} exist after join (2)"
3070 }
3071 run_test 75d "TEST join file 4 =================================="
3072  
3073 test_75e() {
3074 #       skipped temporarily: we do not have join file currently
3075 #       please remove this when ready - huanghua
3076         return
3077         test75_prep
3078  
3079         rm -rf ${FHEAD} || "delete join file error"
3080 }
3081 run_test 75e "TEST join file 5 (remove joined file) ============="
3082  
3083 test_75f() {
3084 #       skipped temporarily: we do not have join file currently
3085 #       please remove this when ready - huanghua
3086         return
3087         test75_prep
3088  
3089         cp -p ${F128k} ${F75}_join_10_compare
3090         cp -p ${F128k} ${F75}_join_10
3091         for ((i = 0; i < 10; i++)); do
3092                 cat ${F128k} >> ${F75}_join_10_compare
3093                 cp -p ${F128k} ${FTAIL}
3094                 $JOIN ${F75}_join_10 ${FTAIL} || \
3095                         error "join ${F75}_join_10 ${FTAIL} error"
3096                 $CHECKSTAT -a ${FTAIL} || error "tail file exist after join"
3097         done
3098         cmp ${F75}_join_10 ${F75}_join_10_compare || \
3099                 error "files ${F75}_join_10 ${F75}_join_10_compare differ"
3100 }
3101 run_test 75f "TEST join file 6 (join 10 files) =================="
3102  
3103 test_75g() {
3104 #       skipped temporarily: we do not have join file currently
3105 #       please remove this when ready - huanghua
3106         return
3107         [ ! -f ${F75}_join_10 ] && echo "${F75}_join_10 missing" && return
3108         $LFS getstripe ${F75}_join_10
3109  
3110         $OPENUNLINK ${F75}_join_10 ${F75}_join_10 || error "files unlink open"
3111  
3112         ls -l $F75*
3113 }
3114 run_test 75g "TEST join file 7 (open unlink) ===================="
3115
3116 num_inodes() {
3117         awk '/lustre_inode_cache/ {print $2; exit}' /proc/slabinfo
3118 }
3119
3120 test_76() { # bug 1443
3121         DETH=$(grep deathrow /proc/kallsyms /proc/ksyms 2> /dev/null | wc -l)
3122         [ $DETH -eq 0 ] && skip "No _iget." && return 0
3123         BEFORE_INODES=`num_inodes`
3124         echo "before inodes: $BEFORE_INODES"
3125         for i in `seq 1000`; do
3126                 touch $DIR/$tfile
3127                 rm -f $DIR/$tfile
3128         done
3129         AFTER_INODES=`num_inodes`
3130         echo "after inodes: $AFTER_INODES"
3131         [ $AFTER_INODES -gt $((BEFORE_INODES + 32)) ] && \
3132                 error "inode slab grew from $BEFORE_INODES to $AFTER_INODES"
3133         true
3134 }
3135 run_test 76 "destroy duplicate inodes in client inode cache ===="
3136
3137 export ORIG_CSUM=""
3138 set_checksums()
3139 {
3140         [ "$ORIG_CSUM" ]||ORIG_CSUM=`cat $LPROC/llite/*/checksum_pages|head -n1`
3141         for f in $LPROC/llite/*/checksum_pages; do
3142                 echo $1 >> $f
3143         done
3144
3145         return 0
3146 }
3147
3148 F77_TMP=$TMP/f77-temp
3149 F77SZ=8
3150 setup_f77() {
3151         dd if=/dev/urandom of=$F77_TMP bs=1M count=$F77SZ || \
3152                 error "error writing to $F77_TMP"
3153 }
3154
3155 test_77a() { # bug 10889
3156         [ ! -f $F77_TMP ] && setup_f77
3157         set_checksums 1
3158         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ || error "dd error"
3159         set_checksums 0
3160 }
3161 run_test 77a "normal checksum read/write operation ============="
3162
3163 test_77b() { # bug 10889
3164         [ ! -f $F77_TMP ] && setup_f77
3165         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
3166         sysctl -w lustre.fail_loc=0x80000409
3167         set_checksums 1
3168         dd if=$F77_TMP of=$DIR/f77b bs=1M count=$F77SZ conv=sync || \
3169                 error "dd error: $?"
3170         sysctl -w lustre.fail_loc=0
3171         set_checksums 0
3172 }
3173 run_test 77b "checksum error on client write ===================="
3174
3175 test_77c() { # bug 10889
3176         [ ! -f $DIR/f77b ] && skip "requires 77b - skipping" && return  
3177         cancel_lru_locks osc
3178         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
3179         sysctl -w lustre.fail_loc=0x80000408
3180         set_checksums 1
3181         cmp $F77_TMP $DIR/f77b || error "file compare failed"
3182         sysctl -w lustre.fail_loc=0
3183         set_checksums 0
3184 }
3185 run_test 77c "checksum error on client read ==================="
3186
3187 test_77d() { # bug 10889
3188         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
3189         sysctl -w lustre.fail_loc=0x80000409
3190         set_checksums 1
3191         directio write $DIR/f77 0 $F77SZ $((1024 * 1024)) || \
3192                 error "direct write: rc=$?"
3193         sysctl -w lustre.fail_loc=0
3194         set_checksums 0
3195 }
3196 run_test 77d "checksum error on OST direct write ==============="
3197
3198 test_77e() { # bug 10889
3199         [ ! -f $DIR/f77 ] && skip "requires 77d - skipping" && return  
3200         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
3201         sysctl -w lustre.fail_loc=0x80000408
3202         set_checksums 1
3203         cancel_lru_locks osc
3204         directio read $DIR/f77 0 $F77SZ $((1024 * 1024)) || \
3205                 error "direct read: rc=$?"
3206         sysctl -w lustre.fail_loc=0
3207         set_checksums 0
3208 }
3209 run_test 77e "checksum error on OST direct read ================"
3210
3211 test_77f() { # bug 10889
3212         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
3213         sysctl -w lustre.fail_loc=0x409
3214         set_checksums 1
3215         directio write $DIR/f77 0 $F77SZ $((1024 * 1024)) && \
3216                 error "direct write succeeded"
3217         sysctl -w lustre.fail_loc=0
3218         set_checksums 0
3219 }
3220 run_test 77f "repeat checksum error on write (expect error) ===="
3221
3222 test_77g() { # bug 10889
3223         [ $(grep -c obdfilter $LPROC/devices) -eq 0 ] && \
3224                 skip "remote OST" && return
3225         [ ! -f $F77_TMP ] && setup_f77
3226         #define OBD_FAIL_OST_CHECKSUM_RECEIVE       0x21a
3227         sysctl -w lustre.fail_loc=0x8000021a
3228         set_checksums 1
3229         dd if=$F77_TMP of=$DIR/f77 bs=1M count=$F77SZ || \
3230                 error "write error: rc=$?"
3231         sysctl -w lustre.fail_loc=0
3232         set_checksums 0
3233 }
3234 run_test 77g "checksum error on OST write ======================"
3235
3236 test_77h() { # bug 10889
3237         [ $(grep -c obdfilter $LPROC/devices) -eq 0 ] && \
3238                 skip "remote OST" && return
3239         [ ! -f $DIR/f77 ] && skip "requires 77g - skipping" && return  
3240         cancel_lru_locks osc
3241         #define OBD_FAIL_OST_CHECKSUM_SEND          0x21b
3242         sysctl -w lustre.fail_loc=0x8000021b
3243         set_checksums 1
3244         cmp $F77_TMP $DIR/f77 || error "file compare failed"
3245         sysctl -w lustre.fail_loc=0
3246         set_checksums 0
3247 }
3248 run_test 77h "checksum error on OST read ======================="
3249
3250 [ "$ORIG_CSUM" ] && set_checksums $ORIG_CSUM || true
3251 rm -f $F77_TMP
3252 unset F77_TMP
3253
3254 test_78() { # bug 10901
3255         NSEQ=5
3256         F78SIZE=$(($(awk '/MemFree:/ { print $2 }' /proc/meminfo) / 1024))
3257         [ $F78SIZE -gt 512 ] && F78SIZE=512
3258         [ $F78SIZE -gt $((MAXFREE / 1024)) ] && F78SIZE=$((MAXFREE / 1024))
3259         SMALLESTOST=`lfs df $DIR |grep OST | awk '{print $4}' |sort -n |head -1`
3260         [ $F78SIZE -gt $((SMALLESTOST * $OSTCOUNT / 1024)) ] && \
3261                 F78SIZE=$((SMALLESTOST * $OSTCOUNT / 1024))
3262         $SETSTRIPE $DIR/$tfile 0 -1 -1 || error "setstripe failed"
3263         for i in `seq 1 $NSEQ`
3264         do
3265                 echo directIO rdwr round $i of $NSEQ
3266                 $DIRECTIO rdwr $DIR/$tfile 0 $F78SIZE 1048576 || error "rdwr failed"
3267         done
3268
3269         rm -f $DIR/$tfile
3270 }
3271 run_test 78 "handle large O_DIRECT writes correctly ============"
3272
3273 test_79() { # bug 12743
3274         [ $(grep -c obdfilter $LPROC/devices) -eq 0 ] &&
3275                 skip "skipping test for remote OST" && return
3276         BKTOTAL=`awk 'BEGIN{total=0}; {total+=$1}; END{print total}' \
3277                  $LPROC/obdfilter/*/kbytestotal`
3278         BKFREE=`awk 'BEGIN{free=0}; {free+=$1}; END{print free}' \
3279                 $LPROC/obdfilter/*/kbytesfree`
3280         BKAVAIL=`awk 'BEGIN{avail=0}; {avail+=$1}; END{print avail}' \
3281                  $LPROC/obdfilter/*/kbytesavail`
3282         STRING=`df -P $MOUNT | tail -n 1 | awk '{print $2","$3","$4}'`
3283         DFTOTAL=`echo $STRING | cut -d, -f1`
3284         DFUSED=`echo $STRING  | cut -d, -f2`
3285         DFAVAIL=`echo $STRING | cut -d, -f3`
3286         DFFREE=$(($DFTOTAL - $DFUSED))
3287
3288         ALLOWANCE=$((64 * $OSTCOUNT))
3289
3290         if [ $DFTOTAL -lt $(($BKTOTAL - $ALLOWANCE)) ] ||  
3291            [ $DFTOTAL -gt $(($BKTOTAL + $ALLOWANCE)) ] ; then
3292                 error "df total($DFTOTAL) mismatch OST total($BKTOTAL)"
3293         fi
3294         if [ $DFFREE -lt $(($BKFREE - $ALLOWANCE)) ] || 
3295            [ $DFFREE -gt $(($BKFREE + $ALLOWANCE)) ] ; then
3296                 error "df free($DFFREE) mismatch OST free($BKFREE)"
3297         fi
3298         if [ $DFAVAIL -lt $(($BKAVAIL - $ALLOWANCE)) ] || 
3299            [ $DFAVAIL -gt $(($BKAVAIL + $ALLOWANCE)) ] ; then
3300                 error "df avail($DFAVAIL) mismatch OST avail($BKAVAIL)"
3301         fi
3302 }
3303 run_test 79 "df report consistency check ======================="
3304
3305 # on the LLNL clusters, runas will still pick up root's $TMP settings,
3306 # which will not be writable for the runas user, and then you get a CVS
3307 # error message with a corrupt path string (CVS bug) and panic.
3308 # We're not using much space, so just stick it in /tmp, which is safe.
3309 OLDTMPDIR=$TMPDIR
3310 OLDTMP=$TMP
3311 TMPDIR=/tmp
3312 TMP=/tmp
3313 OLDHOME=$HOME
3314 [ $RUNAS_ID -ne $UID ] && HOME=/tmp
3315
3316 test_99a() {
3317         mkdir -p $DIR/d99cvsroot
3318         chown $RUNAS_ID $DIR/d99cvsroot
3319         $RUNAS cvs -d $DIR/d99cvsroot init || error
3320 }
3321 run_test 99a "cvs init ========================================="
3322
3323 test_99b() {
3324         [ ! -d $DIR/d99cvsroot ] && test_99a
3325         cd /etc/init.d
3326         # some versions of cvs import exit(1) when asked to import links or
3327         # files they can't read.  ignore those files.
3328         TOIGNORE=$(find . -type l -printf '-I %f\n' -o \
3329                         ! -perm +4 -printf '-I %f\n')
3330         $RUNAS cvs -d $DIR/d99cvsroot import -m "nomesg" $TOIGNORE \
3331                 d99reposname vtag rtag
3332 }
3333 run_test 99b "cvs import ======================================="
3334
3335 test_99c() {
3336         [ ! -d $DIR/d99cvsroot ] && test_99b
3337         cd $DIR
3338         mkdir -p $DIR/d99reposname
3339         chown $RUNAS_ID $DIR/d99reposname
3340         $RUNAS cvs -d $DIR/d99cvsroot co d99reposname
3341 }
3342 run_test 99c "cvs checkout ====================================="
3343
3344 test_99d() {
3345         [ ! -d $DIR/d99cvsroot ] && test_99c
3346         cd $DIR/d99reposname
3347         $RUNAS touch foo99
3348         $RUNAS cvs add -m 'addmsg' foo99
3349 }
3350 run_test 99d "cvs add =========================================="
3351
3352 test_99e() {
3353         [ ! -d $DIR/d99cvsroot ] && test_99c
3354         cd $DIR/d99reposname
3355         $RUNAS cvs update
3356 }
3357 run_test 99e "cvs update ======================================="
3358
3359 test_99f() {
3360         [ ! -d $DIR/d99cvsroot ] && test_99d
3361         cd $DIR/d99reposname
3362         $RUNAS cvs commit -m 'nomsg' foo99
3363 }
3364 run_test 99f "cvs commit ======================================="
3365
3366 test_100() {
3367         netstat -tna | while read PROT SND RCV LOCAL REMOTE STAT; do
3368                 [ "$PROT" != "tcp" ] && continue
3369                 RPORT=`echo $REMOTE | cut -d: -f2`
3370                 [ "$RPORT" != "$ACCEPTOR_PORT" ] && continue
3371                 LPORT=`echo $LOCAL | cut -d: -f2`
3372                 if [ $LPORT -ge 1024 ]; then
3373                         echo "bad: $PROT $SND $RCV $LOCAL $REMOTE $STAT"
3374                         netstat -tna
3375                         error "local: $LPORT > 1024, remote: $RPORT"
3376                 fi
3377         done
3378         true
3379 }
3380 run_test 100 "check local port using privileged port ==========="
3381
3382 function get_named_value()
3383 {
3384     local tag
3385
3386     tag=$1
3387     while read ;do
3388         line=$REPLY
3389         case $line in
3390         $tag*)
3391             echo $line | sed "s/^$tag//"
3392             break
3393             ;;
3394         esac
3395     done
3396 }
3397
3398 export CACHE_MAX=`cat $LPROC/llite/*/max_cached_mb | head -n 1`
3399 cleanup_101() {
3400         for s in $LPROC/llite/*/max_cached_mb; do
3401                 echo $CACHE_MAX > $s
3402         done
3403         trap 0
3404 }
3405
3406 test_101() {
3407         local s
3408         local discard
3409         local nreads=10000
3410         [ "$CPU" = "UML" ] && nreads=1000
3411         local cache_limit=32
3412
3413         for s in $LPROC/osc/*-osc*/rpc_stats; do
3414                 echo 0 > $s
3415         done
3416         trap cleanup_101 EXIT
3417         for s in $LPROC/llite/*; do
3418                 echo 0 > $s/read_ahead_stats
3419                 echo $cache_limit > $s/max_cached_mb
3420         done
3421
3422         #
3423         # randomly read 10000 of 64K chunks from file 3x 32MB in size
3424         #
3425         echo "nreads: $nreads file size: $((cache_limit * 3))MB"
3426         $RANDOM_READS -f $DIR/$tfile -s$((cache_limit * 3192 * 1024)) -b65536 -C -n$nreads -t 180
3427
3428         discard=0
3429         for s in $LPROC/llite/*; do
3430                 discard=$(($discard + $(cat $s/read_ahead_stats | get_named_value 'read but discarded')))
3431         done
3432         cleanup_101
3433
3434         if [ $(($discard * 10)) -gt $nreads ] ;then
3435                 for s in $LPROC/osc/*-osc*/rpc_stats; do
3436                         echo $s; cat $s
3437                 done
3438                 for s in $LPROC/llite/*/read_ahead_stats; do
3439                         echo $s; cat $s
3440                 done
3441                 error "too many ($discard) discarded pages" 
3442         fi
3443         rm -f $DIR/$tfile || true
3444 }
3445 run_test 101 "check read-ahead for random reads ================"
3446
3447 export SETUP_TEST102=no
3448 setup_test102() {
3449         [ "$SETUP_TEST102" = "yes" ] && return
3450         mkdir -p $DIR/$tdir
3451         STRIPE_SIZE=65536
3452         STRIPE_COUNT=4 
3453         STRIPE_OFFSET=2
3454
3455         trap cleanup_test102 EXIT
3456         cd $DIR
3457         $SETSTRIPE $tdir $STRIPE_SIZE  $STRIPE_OFFSET $STRIPE_COUNT
3458         cd $DIR/$tdir 
3459         for num in 1 2 3 4
3460         do
3461                 for count in 1 2 3 4
3462                 do
3463                         for offset in 0 1 2 3 
3464                         do
3465                                 local stripe_size=`expr $STRIPE_SIZE \* $num`
3466                                 local file=file"$num-$offset-$count"
3467                                 $SETSTRIPE $file $stripe_size  $offset $count
3468                         done
3469                 done
3470         done
3471
3472         cd ..
3473         star -c  f=$TMP/f102.tar $tdir 
3474         SETUP_TEST102=yes
3475 }
3476
3477 cleanup_test102() {
3478         [ "$SETUP_TEST102" = "yes" ] || return
3479         trap 0
3480         rm -f $TMP/f102.tar
3481         rm -rf $DIR/$tdir
3482         SETUP_TEST102=no
3483 }
3484
3485 test_102a() {
3486         local testfile=$DIR/xattr_testfile
3487
3488         rm -f $testfile
3489         touch $testfile
3490
3491         [ "$UID" != 0 ] && skip "must run as root" && return
3492         [ -z "`grep xattr $LPROC/mdc/*-mdc-*/connect_flags`" ] && skip "must have user_xattr" && return
3493
3494         [ -z "$(which setfattr 2>/dev/null)" ] && skip "could not find setfattr" && return
3495
3496         echo "set/get xattr..."
3497         setfattr -n trusted.name1 -v value1 $testfile || error
3498         [ "`getfattr -n trusted.name1 $testfile 2> /dev/null | \
3499         grep "trusted.name1"`" == "trusted.name1=\"value1\"" ] || error
3500  
3501         setfattr -n user.author1 -v author1 $testfile || error
3502         [ "`getfattr -n user.author1 $testfile 2> /dev/null | \
3503         grep "user.author1"`" == "user.author1=\"author1\"" ] || error
3504
3505         echo "listxattr..."
3506         setfattr -n trusted.name2 -v value2 $testfile || error
3507         setfattr -n trusted.name3 -v value3 $testfile || error
3508         [ `getfattr -d -m "^trusted" $testfile 2> /dev/null | \
3509         grep "trusted.name" | wc -l` -eq 3 ] || error
3510
3511  
3512         setfattr -n user.author2 -v author2 $testfile || error
3513         setfattr -n user.author3 -v author3 $testfile || error
3514         [ `getfattr -d -m "^user" $testfile 2> /dev/null | \
3515         grep "user" | wc -l` -eq 3 ] || error
3516
3517         echo "remove xattr..."
3518         setfattr -x trusted.name1 $testfile || error
3519         getfattr -d -m trusted $testfile 2> /dev/null | \
3520         grep "trusted.name1" && error || true
3521
3522         setfattr -x user.author1 $testfile || error
3523         getfattr -d -m user $testfile 2> /dev/null | \
3524         grep "user.author1" && error || true
3525
3526         # b10667: setting lustre special xattr be silently discarded
3527         echo "set lustre special xattr ..."
3528         setfattr -n "trusted.lov" -v "invalid value" $testfile || error
3529
3530         rm -f $testfile
3531 }
3532 run_test 102a "user xattr test =================================="
3533
3534 test_102b() {
3535         # b10930: get/set/list trusted.lov xattr
3536         echo "get/set/list trusted.lov xattr ..."
3537         [ "$OSTCOUNT" -lt "2" ] && skip "skipping 2-stripe test" && return
3538         local testfile=$DIR/$tfile
3539         $SETSTRIPE $testfile 65536 1 2
3540         getfattr -d -m "^trusted" $testfile 2> /dev/null | \
3541         grep "trusted.lov" || error "can't get trusted.lov from $testfile"
3542
3543         local testfile2=${testfile}2
3544         local value=`getfattr -n trusted.lov $testfile 2> /dev/null | \
3545                      grep "trusted.lov" |sed -e 's/[^=]\+=//'`
3546         
3547         $MCREATE $testfile2
3548         setfattr -n trusted.lov -v $value $testfile2    
3549         local tmp_file=${testfile}3
3550         $GETSTRIPE -v $testfile2 > $tmp_file
3551         local stripe_size=`grep "size"  $tmp_file| awk '{print $2}'`
3552         local stripe_count=`grep "count"  $tmp_file| awk '{print $2}'`
3553         [ "$stripe_size" -eq 65536 ] || error "stripe size $stripe_size != 65536"
3554         [ "$stripe_count" -eq 2 ] || error "stripe count $stripe_count != 2"
3555 }
3556 run_test 102b "getfattr/setfattr for trusted.lov EAs ============"
3557
3558 test_102c() {
3559         # b10930: get/set/list lustre.lov xattr
3560         echo "get/set/list lustre.lov xattr ..."
3561         [ "$OSTCOUNT" -lt "2" ] && skip "skipping 2-stripe test" && return
3562         mkdir -p $DIR/$tdir
3563         chown $RUNAS_ID $DIR/$tdir
3564         local testfile=$DIR/$tdir/$tfile
3565         $RUNAS $SETSTRIPE $testfile 65536 1 2
3566         $RUNAS getfattr -d -m "^lustre" $testfile 2> /dev/null | \
3567         grep "lustre.lov" || error "can't get lustre.lov from $testfile"
3568
3569         local testfile2=${testfile}2
3570         local value=`getfattr -n lustre.lov $testfile 2> /dev/null | \
3571                      grep "lustre.lov" |sed -e 's/[^=]\+=//'  `
3572         
3573         $RUNAS $MCREATE $testfile2
3574         $RUNAS setfattr -n lustre.lov -v $value $testfile2      
3575         local tmp_file=${testfile}3
3576         $RUNAS $GETSTRIPE -v $testfile2 > $tmp_file
3577         local stripe_size=`grep "size"  $tmp_file| awk '{print $2}'`
3578         local stripe_count=`grep "count"  $tmp_file| awk '{print $2}'`
3579         [ $stripe_size -eq 65536 ] || error "stripe size $stripe_size != 65536"
3580         [ $stripe_count -eq 2 ] || error "stripe count $stripe_count != 2"
3581 }
3582 run_test 102c "non-root getfattr/setfattr for lustre.lov EAs ==========="
3583
3584 get_stripe_info() {
3585         stripe_size=0
3586         stripe_count=0
3587         stripe_offset=0
3588         local lines=`sed -n '/obdidx/=' $1`
3589         stripe_size=`awk '{if($1~/size/) print $2}' $1`
3590         stripe_count=`awk '{if($1~/count/) print $2}' $1`
3591         lines=`expr $lines + 1`
3592         stripe_offset=`sed -n ${lines}p $1 |awk '{print $1}'`
3593 }
3594
3595 compare_stripe_info1() {
3596         for num in 1 2 3 4
3597         do
3598                 for count in 1 2 3 4
3599                 do
3600                         for offset in 0 1 2 3 
3601                         do
3602                                 local size=`expr $STRIPE_SIZE \* $num`
3603                                 local file=file"$num-$offset-$count"
3604                                 local tmp_file=out
3605                                 $GETSTRIPE -v $file > $tmp_file 
3606                                 get_stripe_info  $tmp_file
3607                                 if test $stripe_size -ne $size
3608                                 then
3609                                         error "$file: different stripe size" && return
3610                                 fi
3611                                 if test $stripe_count -ne $count
3612                                 then
3613                                         error "$file: different stripe count" && return
3614                                 fi
3615                                 if test $stripe_offset -ne 0
3616                                 then
3617                                         error "$file: different stripe offset" && return
3618                                 fi
3619                                 rm -f $tmp_file
3620                         done
3621                 done
3622         done
3623 }
3624
3625 compare_stripe_info2() {
3626         for num in 1 2 3 4
3627         do
3628                 for count in 1 2 3 4
3629                 do
3630                         for offset in 0 1 2 3 
3631                         do
3632                                 local size=`expr $STRIPE_SIZE \* $num`
3633                                 local file=file"$num-$offset-$count"
3634                                 local tmp_file=out
3635                                 $GETSTRIPE -v $file > $tmp_file
3636                                 get_stripe_info  $tmp_file
3637                                 if test $stripe_size -ne $size
3638                                 then
3639                                         error "$file: different stripe size" && return  
3640                                 fi
3641                                 if test $stripe_count -ne $count
3642                                 then
3643                                         error "$file: different stripe count" && return
3644                                 fi
3645                                 if test $stripe_offset -ne $offset
3646                                 then
3647                                         error "$file: different stripe offset" && return
3648                                 fi
3649                                 rm -f $tmp_file
3650                         done
3651                 done
3652         done
3653 }
3654
3655 test_102d() {
3656         # b10930: star test for trusted.lov xattr
3657         star --xhelp 2>&1 | grep -q nolustre  
3658         if [ $? -ne 0 ]
3659         then
3660                 skip "being skipped because a lustre-aware star is not installed." && return
3661         fi
3662         [ "$OSTCOUNT" -lt "4" ] && skip "skipping 4-stripe test" && return
3663         setup_test102
3664         mkdir -p $DIR/d102d
3665         star -x  f=$TMP/f102.tar -C $DIR/d102d
3666         cd $DIR/d102d/$tdir
3667         compare_stripe_info1
3668
3669 }
3670 run_test 102d "star restore stripe info from tarfile,not keep osts ==========="
3671
3672 test_102e() {
3673         # b10930: star test for trusted.lov xattr
3674         star --xhelp 2>&1 | grep -q nolustre  
3675         if [ $? -ne 0 ]
3676         then
3677                 skip "being skipped because a lustre-aware star is not installed." && return
3678         fi
3679         [ "$OSTCOUNT" -lt "4" ] && skip "skipping 4-stripe test" && return
3680         setup_test102
3681         mkdir -p $DIR/d102e
3682         star -x  -preserve-osts f=$TMP/f102.tar -C $DIR/d102e
3683         cd $DIR/d102e/$tdir
3684         compare_stripe_info2
3685 }
3686 run_test 102e "star restore stripe info from tarfile, keep osts ==========="
3687
3688 test_102f() {
3689         # b10930: star test for trusted.lov xattr
3690         star --xhelp 2>&1 | grep -q nolustre  
3691         if [ $? -ne 0 ]
3692         then
3693                 skip "being skipped because a lustre-aware star is not installed." && return
3694         fi
3695         [ "$OSTCOUNT" -lt "4" ] && skip "skipping 4-stripe test" && return
3696         setup_test102
3697         mkdir -p $DIR/d102f
3698         cd $DIR
3699         star -copy  $tdir $DIR/d102f
3700         cd $DIR/d102f/$tdir
3701         compare_stripe_info1
3702 }
3703 run_test 102f "star copy files, not keep osts ==========="
3704
3705 test_102g() {
3706         # b10930: star test for trusted.lov xattr
3707         star --xhelp 2>&1 | grep -q nolustre  
3708         if [ $? -ne 0 ]
3709         then
3710                 skip "being skipped because a lustre-aware star is not installed." && return
3711         fi
3712         [ "$OSTCOUNT" -lt "4" ] && skip "skipping 4-stripe test" && return
3713         setup_test102
3714         mkdir -p $DIR/d102g
3715         cd $DIR
3716         star -copy -preserve-osts $tdir $DIR/d102g
3717         cd $DIR/d102g/$tdir
3718         compare_stripe_info2
3719         cleanup_test102
3720 }
3721 run_test 102g "star copy files, keep osts ==========="
3722
3723 run_acl_subtest()
3724 {
3725     $LUSTRE/tests/acl/run $LUSTRE/tests/acl/$1.test
3726     return $?
3727 }
3728
3729 test_103 () {
3730     [ "$UID" != 0 ] && skip "must run as root" && return
3731     [ -z "$(grep acl $LPROC/mdc/*-mdc-*/connect_flags)" ] && skip "must have acl enabled" && return
3732     [ -z "$(which setfacl 2>/dev/null)" ] && skip "could not find setfacl" && return
3733     $GSS && skip "could not run under gss" && return
3734
3735     SAVE_UMASK=`umask`
3736     umask 0022
3737     cd $DIR
3738
3739     echo "performing cp ..."
3740     run_acl_subtest cp || error
3741     echo "performing getfacl-noacl..."
3742     run_acl_subtest getfacl-noacl || error
3743     echo "performing misc..."
3744     run_acl_subtest misc || error
3745 #    XXX add back permission test when we support supplementary groups.
3746 #    echo "performing permissions..."
3747 #    run_acl_subtest permissions || error
3748     echo "performing setfacl..."
3749     run_acl_subtest setfacl || error
3750
3751     # inheritance test got from HP
3752     echo "performing inheritance..."
3753     cp $LUSTRE/tests/acl/make-tree . || error
3754     chmod +x make-tree || error
3755     run_acl_subtest inheritance || error
3756     rm -f make-tree
3757
3758     cd $SAVE_PWD
3759     umask $SAVE_UMASK
3760 }
3761 run_test 103 "acl test ========================================="
3762
3763 test_104() {
3764         touch $DIR/$tfile
3765         lfs df || error "lfs df failed"
3766         lfs df -ih || error "lfs df -ih failed"
3767         lfs df -h $DIR || error "lfs df -h $DIR failed"
3768         lfs df -i $DIR || error "lfs df -i $DIR failed"
3769         lfs df $DIR/$tfile || error "lfs df $DIR/$tfile failed"
3770         lfs df -ih $DIR/$tfile || error "lfs df -ih $DIR/$tfile failed"
3771         
3772         OSC=`awk '/-osc-/ {print $4}' $LPROC/devices | head -n 1`
3773         lctl --device %$OSC deactivate
3774         lfs df || error "lfs df with deactivated OSC failed"
3775         lctl --device %$OSC recover
3776         lfs df || error "lfs df with reactivated OSC failed"
3777 }
3778 run_test 104 "lfs df [-ih] [path] test ========================="
3779
3780 test_105a() {
3781         # doesn't work on 2.4 kernels
3782         touch $DIR/$tfile
3783         if [ -n "`mount | grep \"$DIR.*flock\" | grep -v noflock`" ];
3784         then
3785                 flocks_test on -f $DIR/$tfile || error "fail flock on"
3786         else
3787                 flocks_test off -f $DIR/$tfile || error "fail flock off"
3788         fi
3789 }
3790 run_test 105a "flock when mounted without -o flock test ========"
3791
3792 test_105b() {
3793         touch $DIR/$tfile
3794         if [ -n "`mount | grep \"$DIR.*flock\" | grep -v noflock`" ];
3795         then
3796                 flocks_test on -c $DIR/$tfile || error "fail flock on"
3797         else
3798                 flocks_test off -c $DIR/$tfile || error "fail flock off"
3799         fi
3800 }
3801 run_test 105b "fcntl when mounted without -o flock test ========"
3802
3803 test_105c() {
3804         touch $DIR/$tfile
3805         if [ -n "`mount | grep \"$DIR.*flock\" | grep -v noflock`" ];
3806         then
3807                 flocks_test on -l $DIR/$tfile || error "fail flock on"
3808         else
3809                 flocks_test off -l $DIR/$tfile || error "fail flock off"
3810         fi
3811 }
3812 run_test 105c "lockf when mounted without -o flock test ========"
3813
3814 test_106() { #bug 10921
3815         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
3816         $DIR/$tdir && error "exec $DIR/$tdir succeeded"
3817         chmod 777 $DIR/$tdir || error "chmod $DIR/$tdir failed"
3818 }
3819 run_test 106 "attempt exec of dir followed by chown of that dir"
3820
3821 test_107() {
3822         CDIR=`pwd`
3823         cd $DIR
3824         ulimit -c unlimited
3825         sleep 60 &
3826         SLEEPPID=$!
3827
3828         file=`cat /proc/sys/kernel/core_pattern`
3829         core_pid=`cat /proc/sys/kernel/core_uses_pid`
3830         [ $core_pid -eq 1 ] && file=$file.$SLEEPPID
3831         rm -f $file
3832         sleep 1
3833
3834         kill -s 11 $SLEEPPID
3835         wait $SLEEPPID
3836         if [ -e $file ]; then
3837                 size=`stat -c%s $file`
3838                 [ $size -eq 0 ] && error "Fail to create core file $file"
3839         else
3840                 error "Fail to create core file $file"
3841         fi
3842         rm -f $file
3843         cd $CDIR
3844 }
3845 run_test 107 "Coredump on SIG"
3846
3847 test_110() {
3848         mkdir -p $DIR/d110
3849         mkdir $DIR/d110/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa || error "mkdir with 255 char fail"
3850         mkdir $DIR/d110/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb && error "mkdir with 256 char should fail, but not"
3851         touch $DIR/d110/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx || error "create with 255 char fail"
3852         touch $DIR/d110/yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy && error ""create with 256 char should fail, but not
3853
3854         ls -l $DIR/d110
3855 }
3856 run_test 110 "filename length checking"
3857
3858 test_115() {
3859         OSTIO_pre=$(ps -e|grep ll_ost_io|awk '{print $4}'|sort -n|tail -1|\
3860             cut -c11-20)
3861         [ -z "$OSTIO_pre" ] && skip "no OSS threads" && \
3862             return
3863         echo "Starting with $OSTIO_pre threads"
3864
3865         NUMTEST=20000
3866         NUMFREE=`df -i -P $DIR | tail -n 1 | awk '{ print $4 }'`
3867         [ $NUMFREE -lt $NUMTEST ] && NUMTEST=$(($NUMFREE - 1000))
3868         echo "$NUMTEST creates/unlinks"
3869         mkdir -p $DIR/$tdir
3870         createmany -o $DIR/$tdir/$tfile $NUMTEST
3871         unlinkmany $DIR/$tdir/$tfile $NUMTEST
3872
3873         OSTIO_post=$(ps -e|grep ll_ost_io|awk '{print $4}'|sort -n|tail -1|\
3874             cut -c11-20)
3875
3876         # don't return an error
3877         [ $OSTIO_post -eq $OSTIO_pre ] && echo \
3878             "FAIL: No addition ll_ost_io threads were created ($OSTIO_pre)" &&\
3879             echo "This may be fine, depending on what ran before this test" &&\
3880             echo "and how fast this system is." && return
3881
3882         echo "Started with $OSTIO_pre threads, ended with $OSTIO_post"
3883 }
3884 run_test 115 "verify dynamic thread creation===================="
3885
3886 free_min_max () {
3887         AVAIL=($(cat $LPROC/osc/*[oO][sS][cC]-[^M]*/kbytesavail))
3888         echo OST kbytes available: ${AVAIL[@]}
3889         MAXI=0; MAXV=${AVAIL[0]}
3890         MINI=0; MINV=${AVAIL[0]}
3891         for ((i = 0; i < ${#AVAIL[@]}; i++)); do
3892             #echo OST $i: ${AVAIL[i]}kb
3893             if [ ${AVAIL[i]} -gt $MAXV ]; then
3894                 MAXV=${AVAIL[i]}; MAXI=$i
3895             fi
3896             if [ ${AVAIL[i]} -lt $MINV ]; then
3897                 MINV=${AVAIL[i]}; MINI=$i
3898             fi
3899         done
3900         echo Min free space: OST $MINI: $MINV 
3901         echo Max free space: OST $MAXI: $MAXV 
3902 }
3903
3904 test_116() {
3905         [ "$OSTCOUNT" -lt "2" ] && skip "$OSTCOUNT < 2 OSTs" && return
3906         remote_mds && skip "remote MDS" && return
3907
3908         echo -n "Free space priority "
3909         cat $LPROC/lov/*-clilov-*/qos_prio_free
3910         DELAY=$(cat $LPROC/lov/*-clilov-*/qos_maxage | head -1 | awk '{print $1}')
3911         declare -a AVAIL
3912         free_min_max
3913         [ $MINV -gt 960000 ] && skip "too much free space in OST$MINI, skip" &&\
3914                 return
3915
3916         # generate uneven OSTs
3917         mkdir -p $DIR/$tdir/OST${MINI}
3918         declare -i FILL
3919         FILL=$(($MINV / 4))
3920         echo "Filling 25% remaining space in OST${MINI} with ${FILL}Kb"
3921         $SETSTRIPE $DIR/$tdir/OST${MINI} 0 $MINI 1
3922         i=0
3923         while [ $FILL -gt 0 ]; do
3924             i=$(($i + 1))
3925             dd if=/dev/zero of=$DIR/$tdir/OST${MINI}/$tfile-$i bs=2M count=1 2>/dev/null
3926             FILL=$(($FILL - 2048))
3927             echo -n .
3928         done
3929         FILL=$(($MINV / 4))
3930         sync
3931         sleep $DELAY
3932
3933         free_min_max
3934         DIFF=$(($MAXV - $MINV))
3935         DIFF2=$(($DIFF * 100 / $MINV))
3936         echo -n "diff=${DIFF}=${DIFF2}% must be > 20% for QOS mode..."
3937         if [ $DIFF2 -gt 20 ]; then
3938             echo "ok"
3939         else
3940             echo "failed - QOS mode won't be used"
3941             error "QOS imbalance criteria not met"
3942             return
3943         fi
3944
3945         MINI1=$MINI; MINV1=$MINV
3946         MAXI1=$MAXI; MAXV1=$MAXV
3947
3948         # now fill using QOS
3949         echo writing a bunch of files to QOS-assigned OSTs
3950         $SETSTRIPE $DIR/$tdir 0 -1 1
3951         i=0
3952         while [ $FILL -gt 0 ]; do
3953             i=$(($i + 1))
3954             dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=1024 count=200 2>/dev/null
3955             FILL=$(($FILL - 200))
3956             echo -n .
3957         done
3958         echo "wrote $i 200k files"
3959         sync
3960         sleep $DELAY
3961
3962         echo "Note: free space may not be updated, so measurements might be off"
3963         free_min_max
3964         DIFF2=$(($MAXV - $MINV))
3965         echo "free space delta: orig $DIFF final $DIFF2"
3966         [ $DIFF2 -gt $DIFF ] && echo "delta got worse!" 
3967         DIFF=$(($MINV1 - ${AVAIL[$MINI1]}))
3968         echo "Wrote $DIFF to smaller OST $MINI1"
3969         DIFF2=$(($MAXV1 - ${AVAIL[$MAXI1]}))
3970         echo "Wrote $DIFF2 to larger OST $MAXI1"
3971         [ $DIFF -gt 0 ] && echo "Wrote $(($DIFF2 * 100 / $DIFF - 100))% more data to larger OST $MAXI1"
3972
3973         # Figure out which files were written where 
3974         UUID=$(awk '/'$MINI1': / {print $2; exit}' $LPROC/lov/${FSNAME}-clilov-*/target_obd)
3975         echo $UUID
3976         MINC=$($LFS getstripe --obd $UUID $DIR/$tdir | wc -l)
3977         echo "$MINC files created on smaller OST $MINI1"
3978         UUID=$(awk '/'$MAXI1': / {print $2; exit}' $LPROC/lov/${FSNAME}-clilov-*/target_obd)
3979         echo $UUID
3980         MAXC=$($LFS getstripe --obd $UUID $DIR/$tdir | wc -l)
3981         echo "$MAXC files created on larger OST $MAXI1"
3982         [ $MINC -gt 0 ] && echo "Wrote $(($MAXC * 100 / $MINC - 100))% more files to larger OST $MAXI1"
3983         [ $MAXC -gt $MINC ] || error "stripe QOS didn't balance free space"
3984 }
3985 run_test 116 "stripe QOS: free space balance ==================="
3986
3987 test_117() # bug 10891
3988 {
3989         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1
3990         #define OBD_FAIL_OST_SETATTR_CREDITS 0x21e
3991         sysctl -w lustre.fail_loc=0x21e
3992         > $DIR/$tfile || error "truncate failed"
3993         sysctl -w lustre.fail_loc=0
3994         echo "Truncate succeeded."
3995 }
3996 run_test 117 "verify fsfilt_extend =========="
3997
3998 # Reset async IO behavior after error case
3999 reset_async() {
4000         FILE=$DIR/reset_async
4001
4002         # Ensure all OSCs are cleared
4003         $LSTRIPE $FILE 0 -1 -1
4004         dd if=/dev/zero of=$FILE bs=64k count=$OSTCOUNT
4005         sync
4006         rm $FILE
4007 }
4008
4009 test_118a() #bug 11710
4010 {
4011         reset_async
4012         
4013         multiop $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
4014         DIRTY=$(grep -c dirty $LPROC/llite/*/dump_page_cache)
4015         WRITEBACK=$(grep -c writeback $LPROC/llite/*/dump_page_cache)
4016
4017         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
4018                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
4019                 return 1;
4020         fi
4021 }
4022 run_test 118a "verify O_SYNC works =========="
4023
4024 test_118b()
4025 {
4026         reset_async
4027
4028         #define OBD_FAIL_OST_ENOENT 0x217
4029         sysctl -w lustre.fail_loc=0x217
4030         multiop $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
4031         RC=$?
4032         sysctl -w lustre.fail_loc=0
4033         DIRTY=$(grep -c dirty $LPROC/llite/*/dump_page_cache)
4034         WRITEBACK=$(grep -c writeback $LPROC/llite/*/dump_page_cache)
4035
4036         if [[ $RC -eq 0 ]]; then
4037                 error "Must return error due to dropped pages, rc=$RC"
4038                 return 1;
4039         fi
4040
4041         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
4042                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
4043                 return 1;
4044         fi
4045
4046         echo "Dirty pages not leaked on ENOENT"
4047
4048         # Due to the above error the OSC will issue all RPCs syncronously
4049         # until a subsequent RPC completes successfully without error.
4050         multiop $DIR/$tfile Ow4096yc
4051         rm -f $DIR/$tfile
4052         
4053         return 0
4054 }
4055 run_test 118b "Reclaim dirty pages on fatal error =========="
4056
4057 test_118c()
4058 {
4059         reset_async
4060
4061         #define OBD_FAIL_OST_EROFS               0x216
4062         sysctl -w lustre.fail_loc=0x216
4063
4064         # multiop should block due to fsync until pages are written
4065         multiop $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
4066         MULTIPID=$!
4067         sleep 1
4068
4069         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
4070                 error "Multiop failed to block on fsync, pid=$MULTIPID"
4071         fi
4072
4073         WRITEBACK=$(grep -c writeback $LPROC/llite/*/dump_page_cache)
4074         if [[ $WRITEBACK -eq 0 ]]; then
4075                 error "No page in writeback, writeback=$WRITEBACK"
4076         fi
4077
4078         sysctl -w lustre.fail_loc=0
4079         wait $MULTIPID
4080         RC=$?
4081         if [[ $RC -ne 0 ]]; then
4082                 error "Multiop fsync failed, rc=$RC"
4083         fi
4084
4085         DIRTY=$(grep -c dirty $LPROC/llite/*/dump_page_cache)
4086         WRITEBACK=$(grep -c writeback $LPROC/llite/*/dump_page_cache)
4087         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
4088                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
4089         fi
4090         
4091         rm -f $DIR/$tfile
4092         echo "Dirty pages flushed via fsync on EROFS"
4093         return 0
4094 }
4095 run_test 118c "Fsync blocks on EROFS until dirty pages are flushed =========="
4096
4097 test_118d()
4098 {
4099         reset_async
4100
4101         #define OBD_FAIL_OST_BRW_PAUSE_BULK
4102         sysctl -w lustre.fail_loc=0x214
4103         # multiop should block due to fsync until pages are written
4104         multiop $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &     
4105         MULTIPID=$!
4106         sleep 1
4107
4108         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
4109                 error "Multiop failed to block on fsync, pid=$MULTIPID"
4110         fi
4111
4112         WRITEBACK=$(grep -c writeback $LPROC/llite/*/dump_page_cache)
4113         if [[ $WRITEBACK -eq 0 ]]; then
4114                 error "No page in writeback, writeback=$WRITEBACK"
4115         fi
4116
4117         wait $MULTIPID || error "Multiop fsync failed, rc=$?"
4118
4119         DIRTY=$(grep -c dirty $LPROC/llite/*/dump_page_cache)
4120         WRITEBACK=$(grep -c writeback $LPROC/llite/*/dump_page_cache)   
4121         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
4122                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
4123         fi
4124
4125         rm -f $DIR/$tfile
4126         echo "Dirty pages gaurenteed flushed via fsync"
4127         return 0
4128 }
4129 run_test 118d "Fsync validation inject a delay of the bulk =========="
4130
4131 test_118f() {
4132         reset_async
4133
4134         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
4135         sysctl -w lustre.fail_loc=0x8000040a
4136
4137         # Should simulate EINVAL error which is fatal
4138         multiop $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
4139         RC=$?
4140
4141         if [[ $RC -eq 0 ]]; then
4142                 error "Must return error due to dropped pages, rc=$RC"
4143         fi
4144
4145         LOCKED=$(grep -c locked $LPROC/llite/*/dump_page_cache)
4146         DIRTY=$(grep -c dirty $LPROC/llite/*/dump_page_cache)
4147         WRITEBACK=$(grep -c writeback $LPROC/llite/*/dump_page_cache)
4148         if [[ $LOCKED -ne 0 ]]; then
4149                 error "Locked pages remain in cache, locked=$LOCKED"
4150         fi
4151
4152         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
4153                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
4154         fi
4155
4156         rm -f $DIR/$tfile
4157         echo "No pages locked after fsync"
4158
4159         reset_async
4160         return 0
4161 }
4162 run_test 118f "Simulate unrecoverable OSC side error =========="
4163
4164 test_118g() {
4165         reset_async
4166
4167         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
4168         sysctl -w lustre.fail_loc=0x406
4169
4170         # simulate local -ENOMEM
4171         multiop $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
4172         RC=$?
4173         
4174         sysctl -w lustre.fail_loc=0
4175         if [[ $RC -eq 0 ]]; then
4176                 error "Must return error due to dropped pages, rc=$RC"
4177         fi
4178
4179         LOCKED=$(grep -c locked $LPROC/llite/*/dump_page_cache)
4180         DIRTY=$(grep -c dirty $LPROC/llite/*/dump_page_cache)
4181         WRITEBACK=$(grep -c writeback $LPROC/llite/*/dump_page_cache)
4182         if [[ $LOCKED -ne 0 ]]; then
4183                 error "Locked pages remain in cache, locked=$LOCKED"
4184         fi
4185         
4186         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
4187                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
4188         fi
4189
4190         rm -f $DIR/$tfile
4191         echo "No pages locked after fsync"
4192
4193         reset_async
4194         return 0
4195 }
4196 run_test 118g "Don't stay in wait if we got local -ENOMEM  =========="
4197
4198 test_118h() {
4199         reset_async
4200
4201         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
4202         sysctl -w lustre.fail_loc=0x20e
4203         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
4204         multiop $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
4205         RC=$?
4206         
4207         sysctl -w lustre.fail_loc=0
4208         if [[ $RC -eq 0 ]]; then
4209                 error "Must return error due to dropped pages, rc=$RC"
4210         fi
4211
4212         LOCKED=$(grep -c locked $LPROC/llite/*/dump_page_cache)
4213         DIRTY=$(grep -c dirty $LPROC/llite/*/dump_page_cache)
4214         WRITEBACK=$(grep -c writeback $LPROC/llite/*/dump_page_cache)
4215         if [[ $LOCKED -ne 0 ]]; then
4216                 error "Locked pages remain in cache, locked=$LOCKED"
4217         fi
4218         
4219         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
4220                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
4221         fi
4222
4223         rm -f $DIR/$tfile
4224         echo "No pages locked after fsync"
4225
4226         return 0
4227 }
4228 run_test 118h "Verify timeout in handling recoverables errors  =========="
4229
4230 test_118i() {
4231         reset_async
4232
4233         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
4234         sysctl -w lustre.fail_loc=0x20e
4235         
4236         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
4237         multiop $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
4238         PID=$!
4239         sleep 5
4240         sysctl -w lustre.fail_loc=0
4241         
4242         wait $PID
4243         RC=$?
4244         if [[ $RC -ne 0 ]]; then
4245                 error "got error, but should be not, rc=$RC"
4246         fi
4247
4248         LOCKED=$(grep -c locked $LPROC/llite/*/dump_page_cache)
4249         DIRTY=$(grep -c dirty $LPROC/llite/*/dump_page_cache)
4250         WRITEBACK=$(grep -c writeback $LPROC/llite/*/dump_page_cache)
4251         if [[ $LOCKED -ne 0 ]]; then
4252                 error "Locked pages remain in cache, locked=$LOCKED"
4253         fi
4254         
4255         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
4256                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
4257         fi
4258
4259         rm -f $DIR/$tfile
4260         echo "No pages locked after fsync"
4261
4262         return 0
4263 }
4264 run_test 118i "Fix error before timeout in recoverable error  =========="
4265
4266 test_118j() {
4267         reset_async
4268
4269         #define OBD_FAIL_OST_BRW_WRITE_BULK2     0x220
4270         sysctl -w lustre.fail_loc=0x220
4271
4272         # return -EIO from OST
4273         multiop $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
4274         RC=$?
4275         sysctl -w lustre.fail_loc=0x0
4276         if [[ $RC -eq 0 ]]; then
4277                 error "Must return error due to dropped pages, rc=$RC"
4278         fi
4279
4280         LOCKED=$(grep -c locked $LPROC/llite/*/dump_page_cache)
4281         DIRTY=$(grep -c dirty $LPROC/llite/*/dump_page_cache)
4282         WRITEBACK=$(grep -c writeback $LPROC/llite/*/dump_page_cache)
4283         if [[ $LOCKED -ne 0 ]]; then
4284                 error "Locked pages remain in cache, locked=$LOCKED"
4285         fi
4286         
4287         # in recoverable error on OST we want resend and stay until it finished
4288         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
4289                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
4290         fi
4291
4292         rm -f $DIR/$tfile
4293         echo "No pages locked after fsync"
4294
4295         return 0
4296 }
4297 run_test 118j "Simulate unrecoverable OST side error =========="
4298
4299 test_119a() # bug 11737
4300 {
4301         BSIZE=$((512 * 1024))
4302         directio write $DIR/$tfile 0 1 $BSIZE
4303         # We ask to read two blocks, which is more than a file size.
4304         # directio will indicate an error when requested and actual
4305         # sizes aren't equeal (a normal situation in this case) and
4306         # print actual read amount.
4307         NOB=`directio read $DIR/$tfile 0 2 $BSIZE | awk '/error/ {print $6}'`
4308         if [ "$NOB" != "$BSIZE" ]; then
4309                 error "read $NOB bytes instead of $BSIZE"
4310         fi
4311         rm -f $DIR/$tfile
4312 }
4313 run_test 119a "Short directIO read must return actual read amount"
4314
4315 test_119b() # bug 11737
4316 {
4317         [ "$OSTCOUNT" -lt "2" ] && skip "skipping 2-stripe test" && return
4318
4319         lfs setstripe $DIR/$tfile 0 -1 2
4320         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1 || error "dd failed"
4321         sync
4322         multiop $DIR/$tfile oO_RDONLY:O_DIRECT:r$((2048 * 1024)) || \
4323                 error "direct read failed"
4324 }
4325 run_test 119b "Sparse directIO read must return actual read amount"
4326
4327 LDLM_POOL_CTL_RECALC=1
4328 LDLM_POOL_CTL_SHRINK=2
4329
4330 disable_pool_recalc() {
4331         for NSD in $LPROC/ldlm/namespaces/*$1*; do
4332                 if test -f $NSD/pool/control; then
4333                         CONTROL=`cat $NSD/pool/control`
4334                         CONTROL=$((CONTROL & ~LDLM_POOL_CTL_RECALC))
4335                         echo "$CONTROL" > $NSD/pool/control
4336                 fi
4337         done
4338 }
4339
4340 enable_pool_recalc() {
4341         for NSD in $LPROC/ldlm/namespaces/*$1*; do
4342                 if test -f $NSD/pool/control; then
4343                         CONTROL=`cat $NSD/pool/control`
4344                         CONTROL=$((CONTROL | LDLM_POOL_CTL_RECALC))
4345                         echo "$CONTROL" > $NSD/pool/control
4346                 fi
4347         done
4348 }
4349
4350 disable_pool_shrink() {
4351         for NSD in $LPROC/ldlm/namespaces/*$1*; do
4352                 if test -f $NSD/pool/control; then
4353                         CONTROL=`cat $NSD/pool/control`
4354                         CONTROL=$((CONTROL & ~LDLM_POOL_CTL_SHRINK))
4355                         echo "$CONTROL" > $NSD/pool/control
4356                 fi
4357         done
4358 }
4359
4360 enable_pool_shrink() {
4361         for NSD in $LPROC/ldlm/namespaces/*$1*; do
4362                 if test -f $NSD/pool/control; then
4363                         CONTROL=`cat $NSD/pool/control`
4364                         CONTROL=$((CONTROL | LDLM_POOL_CTL_SHRINK))
4365                         echo "$CONTROL" > $NSD/pool/control
4366                 fi
4367         done
4368 }
4369
4370 disable_pool() {
4371         disable_pool_shrink $1
4372         disable_pool_recalc $1
4373 }
4374
4375 enable_pool() {
4376         enable_pool_shrink $1
4377         enable_pool_recalc $1
4378 }
4379
4380 lru_resize_enable()
4381 {
4382         enable_pool osc
4383         enable_pool "filter-$FSNAME"
4384         enable_pool mdc
4385         enable_pool "mds-$FSNAME"
4386 }
4387
4388 lru_resize_disable()
4389 {
4390         disable_pool osc
4391         disable_pool "filter-$FSNAME"
4392         disable_pool mdc
4393         disable_pool "mds-$FSNAME"
4394 }
4395
4396 test_120a() {
4397         [ -z "`grep early_lock_cancel $LPROC/mdc/*/connect_flags`" ] && \
4398                skip "no early lock cancel on server" && return 0
4399         lru_resize_disable
4400         mkdir $DIR/$tdir
4401         cancel_lru_locks mdc
4402         stat $DIR/$tdir > /dev/null
4403         can1=`awk '/ldlm_cancel/ {print $2}' $LPROC/ldlm/services/ldlm_canceld/stats`
4404         blk1=`awk '/ldlm_bl_callback/ {print $2}' $LPROC/ldlm/services/ldlm_cbd/stats`
4405         mkdir $DIR/$tdir/d1
4406         can2=`awk '/ldlm_cancel/ {print $2}' $LPROC/ldlm/services/ldlm_canceld/stats`
4407         blk2=`awk '/ldlm_bl_callback/ {print $2}' $LPROC/ldlm/services/ldlm_cbd/stats`
4408         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
4409         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
4410         lru_resize_enable
4411 }
4412 run_test 120a "Early Lock Cancel: mkdir test"
4413
4414 test_120b() {
4415         [ -z "`grep early_lock_cancel $LPROC/mdc/*/connect_flags`" ] && \
4416                skip "no early lock cancel on server" && return 0
4417         lru_resize_disable
4418         mkdir $DIR/$tdir
4419         cancel_lru_locks mdc
4420         stat $DIR/$tdir > /dev/null
4421         can1=`awk '/ldlm_cancel/ {print $2}' $LPROC/ldlm/services/ldlm_canceld/stats`
4422         blk1=`awk '/ldlm_bl_callback/ {print $2}' $LPROC/ldlm/services/ldlm_cbd/stats`
4423         touch $DIR/$tdir/f1
4424         blk2=`awk '/ldlm_bl_callback/ {print $2}' $LPROC/ldlm/services/ldlm_cbd/stats`
4425         can2=`awk '/ldlm_cancel/ {print $2}' $LPROC/ldlm/services/ldlm_canceld/stats`
4426         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
4427         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
4428         lru_resize_enable
4429 }
4430 run_test 120b "Early Lock Cancel: create test"
4431
4432 test_120c() {
4433         [ -z "`grep early_lock_cancel $LPROC/mdc/*/connect_flags`" ] && \
4434                skip "no early lock cancel on server" && return 0
4435         lru_resize_disable
4436         mkdir -p $DIR/$tdir/d1 $DIR/$tdir/d2
4437         touch $DIR/$tdir/d1/f1
4438         cancel_lru_locks mdc
4439         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 > /dev/null
4440         can1=`awk '/ldlm_cancel/ {print $2}' $LPROC/ldlm/services/ldlm_canceld/stats`
4441         blk1=`awk '/ldlm_bl_callback/ {print $2}' $LPROC/ldlm/services/ldlm_cbd/stats`
4442         ln $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
4443         can2=`awk '/ldlm_cancel/ {print $2}' $LPROC/ldlm/services/ldlm_canceld/stats`
4444         blk2=`awk '/ldlm_bl_callback/ {print $2}' $LPROC/ldlm/services/ldlm_cbd/stats`
4445         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
4446         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
4447         lru_resize_enable
4448 }
4449 run_test 120c "Early Lock Cancel: link test"
4450
4451 test_120d() {
4452         [ -z "`grep early_lock_cancel $LPROC/mdc/*/connect_flags`" ] && \
4453                skip "no early lock cancel on server" && return 0
4454         lru_resize_disable
4455         touch $DIR/$tdir
4456         cancel_lru_locks mdc
4457         stat $DIR/$tdir > /dev/null
4458         can1=`awk '/ldlm_cancel/ {print $2}' $LPROC/ldlm/services/ldlm_canceld/stats`
4459         blk1=`awk '/ldlm_bl_callback/ {print $2}' $LPROC/ldlm/services/ldlm_cbd/stats`
4460         chmod a+x $DIR/$tdir
4461         can2=`awk '/ldlm_cancel/ {print $2}' $LPROC/ldlm/services/ldlm_canceld/stats`
4462         blk2=`awk '/ldlm_bl_callback/ {print $2}' $LPROC/ldlm/services/ldlm_cbd/stats`
4463         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
4464         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
4465         lru_resize_enable
4466 }
4467 run_test 120d "Early Lock Cancel: setattr test"
4468
4469 test_120e() {
4470         [ -z "`grep early_lock_cancel $LPROC/mdc/*/connect_flags`" ] && \
4471                skip "no early lock cancel on server" && return 0
4472         lru_resize_disable
4473         mkdir $DIR/$tdir
4474         dd if=/dev/zero of=$DIR/$tdir/f1 count=1
4475         cancel_lru_locks mdc
4476         cancel_lru_locks osc
4477         dd if=$DIR/$tdir/f1 of=/dev/null
4478         stat $DIR/$tdir $DIR/$tdir/f1 > /dev/null
4479         can1=`awk '/ldlm_cancel/ {print $2}' $LPROC/ldlm/services/ldlm_canceld/stats`
4480         blk1=`awk '/ldlm_bl_callback/ {print $2}' $LPROC/ldlm/services/ldlm_cbd/stats`
4481         unlink $DIR/$tdir/f1
4482         can2=`awk '/ldlm_cancel/ {print $2}' $LPROC/ldlm/services/ldlm_canceld/stats`
4483         blk2=`awk '/ldlm_bl_callback/ {print $2}' $LPROC/ldlm/services/ldlm_cbd/stats`
4484         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
4485         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
4486         lru_resize_enable
4487 }
4488 run_test 120e "Early Lock Cancel: unlink test"
4489
4490 test_120f() {
4491         [ -z "`grep early_lock_cancel $LPROC/mdc/*/connect_flags`" ] && \
4492                skip "no early lock cancel on server" && return 0
4493         lru_resize_disable
4494         mkdir -p $DIR/$tdir/d1 $DIR/$tdir/d2
4495         dd if=/dev/zero of=$DIR/$tdir/d1/f1 count=1
4496         dd if=/dev/zero of=$DIR/$tdir/d2/f2 count=1
4497         cancel_lru_locks mdc
4498         cancel_lru_locks osc
4499         dd if=$DIR/$tdir/d1/f1 of=/dev/null
4500         dd if=$DIR/$tdir/d2/f2 of=/dev/null
4501         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2 > /dev/null
4502         can1=`awk '/ldlm_cancel/ {print $2}' $LPROC/ldlm/services/ldlm_canceld/stats`
4503         blk1=`awk '/ldlm_bl_callback/ {print $2}' $LPROC/ldlm/services/ldlm_cbd/stats`
4504         mv $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
4505         can2=`awk '/ldlm_cancel/ {print $2}' $LPROC/ldlm/services/ldlm_canceld/stats`
4506         blk2=`awk '/ldlm_bl_callback/ {print $2}' $LPROC/ldlm/services/ldlm_cbd/stats`
4507         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
4508         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
4509         lru_resize_enable
4510 }
4511 run_test 120f "Early Lock Cancel: rename test"
4512
4513 test_120g() {
4514         [ -z "`grep early_lock_cancel $LPROC/mdc/*/connect_flags`" ] && \
4515                skip "no early lock cancel on server" && return 0
4516         lru_resize_disable
4517         count=10000
4518         echo create $count files
4519         mkdir -p $DIR/$tdir
4520         cancel_lru_locks mdc
4521         cancel_lru_locks osc
4522         t0=`date +%s`
4523
4524         can0=`awk '/ldlm_cancel/ {print $2}' $LPROC/ldlm/services/ldlm_canceld/stats`
4525         blk0=`awk '/ldlm_bl_callback/ {print $2}' $LPROC/ldlm/services/ldlm_cbd/stats`
4526         createmany -o $DIR/$tdir/f $count
4527         sync
4528         can1=`awk '/ldlm_cancel/ {print $2}' $LPROC/ldlm/services/ldlm_canceld/stats`
4529         blk1=`awk '/ldlm_bl_callback/ {print $2}' $LPROC/ldlm/services/ldlm_cbd/stats`
4530         t1=`date +%s`
4531         echo total: $((can1-can0)) cancels, $((blk1-blk0)) blockings
4532         echo rm $count files
4533         rm -r $DIR/$tdir
4534         sync
4535         can2=`awk '/ldlm_cancel/ {print $2}' $LPROC/ldlm/services/ldlm_canceld/stats`
4536         blk2=`awk '/ldlm_bl_callback/ {print $2}' $LPROC/ldlm/services/ldlm_cbd/stats`
4537         t2=`date +%s`
4538         echo total: $count removes in $((t2-t1))
4539         echo total: $((can2-can1)) cancels, $((blk2-blk1)) blockings
4540         sleep 2
4541         # wait for commitment of removal
4542         lru_resize_enable
4543 }
4544 run_test 120g "Early Lock Cancel: performance test"
4545
4546 test_121() { #bug #10589
4547         rm -rf $DIR/$tfile
4548         writes=`dd if=/dev/zero of=$DIR/$tfile count=1 2>&1 | awk 'BEGIN { FS="+" } /out/ {print $1}'`
4549 #define OBD_FAIL_LDLM_CANCEL_RACE        0x310
4550         sysctl -w lustre.fail_loc=0x310
4551         cancel_lru_locks osc > /dev/null
4552         reads=`dd if=$DIR/$tfile of=/dev/null 2>&1 | awk 'BEGIN { FS="+" } /in/ {print $1}'`
4553         sysctl -w lustre.fail_loc=0
4554         [ "$reads" -eq "$writes" ] || error "read" $reads "blocks, must be" $writes
4555 }
4556 run_test 121 "read cancel race ========="
4557
4558 test_124a() {
4559         [ -z "`grep lru_resize $LPROC/mdc/*/connect_flags`" ] && \
4560                skip "no lru resize on server" && return 0
4561         cancel_lru_locks mdc
4562         lru_resize_enable
4563         NSDIR=`find $LPROC/ldlm/namespaces | grep mdc | head -1`
4564
4565         # we want to test main pool functionality, that is cancel based on SLV
4566         # this is why shrinkers are disabled
4567         disable_pool_shrink "mds-$FSNAME"
4568         disable_pool_shrink mdc
4569
4570         NR=2000
4571         mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
4572
4573         LRU_SIZE=`cat $NSDIR/lru_size`
4574
4575         # use touch to produce $NR new locks
4576         log "create $NR files at $DIR/$tdir"
4577         for ((i=0;i<$NR;i++)); do touch $DIR/$tdir/f$i; done
4578
4579         LRU_SIZE_B=`cat $NSDIR/lru_size`
4580         if test $LRU_SIZE -ge $LRU_SIZE_B; then
4581                 skip "No cached locks created!"
4582                 cat $NSDIR/pool/state
4583                 return 0
4584         fi
4585         LRU_SIZE_B=$((LRU_SIZE_B-LRU_SIZE))
4586         log "created $LRU_SIZE_B lock(s)"
4587
4588         # we want to sleep 30s to not make test too long
4589         SLEEP=30
4590         SLEEP_ADD=10
4591
4592         # we know that lru resize allows one client to hold $LIMIT locks for 10h
4593         MAX_HRS=10
4594
4595         # get the pool limit
4596         LIMIT=`cat $NSDIR/pool/limit`
4597
4598         # calculate lock volume factor taking into account sleep and data set
4599         # use $LRU_SIZE_B here to take into account real number of locks created
4600         # in the case of CMD, LRU_SIZE_B != $NR in most of cases
4601         LVF=$(($LIMIT * $MAX_HRS * 60 * 60 / $LRU_SIZE_B / $SLEEP))
4602
4603         log "make client drop locks $LVF times faster so that ${SLEEP}s is enough to cancel $LRU_SIZE_B lock(s)"
4604         OLD_LVF=`cat $NSDIR/pool/lock_volume_factor`
4605         echo "$LVF" > $NSDIR/pool/lock_volume_factor
4606         log "sleep for "$((SLEEP+SLEEP_ADD))"s"
4607         sleep $((SLEEP+SLEEP_ADD))
4608         echo "$OLD_LVF" > $NSDIR/pool/lock_volume_factor
4609         LRU_SIZE_A=`cat $NSDIR/lru_size`
4610
4611         [ $LRU_SIZE_B -ge $LRU_SIZE_A ] || {
4612                 error "No locks dropped in "$((SLEEP+SLEEP_ADD))"s. LRU size: $LRU_SIZE_A"
4613                 lru_resize_enable
4614                 unlinkmany $DIR/$tdir/f $NR
4615                 return
4616         }
4617
4618         log "Dropped "$((LRU_SIZE_B-LRU_SIZE_A))" locks in "$((SLEEP+SLEEP_ADD))"s"
4619         lru_resize_enable
4620         log "unlink $NR files at $DIR/$tdir"
4621         unlinkmany $DIR/$tdir/f $NR
4622 }
4623 run_test 124a "lru resize ======================================="
4624
4625 test_124b() {
4626         [ -z "`grep lru_resize $LPROC/mdc/*/connect_flags`" ] && \
4627                skip "no lru resize on server" && return 0
4628         cleanup -f || error "failed to unmount"
4629         MOUNTOPT="$MOUNTOPT,nolruresize"
4630         setup
4631
4632         NR=3000
4633         mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
4634
4635         createmany -o $DIR/$tdir/f $NR
4636         log "doing ls -la $DIR/$tdir 3 times (lru resize disabled)"
4637         stime=`date +%s`
4638         ls -la $DIR/$tdir > /dev/null
4639         ls -la $DIR/$tdir > /dev/null
4640         ls -la $DIR/$tdir > /dev/null
4641         etime=`date +%s`
4642         nolruresize_delta=$((etime-stime))
4643         log "ls -la time: $nolruresize_delta seconds"
4644
4645         cleanup -f || error "failed to unmount"
4646         MOUNTOPT=`echo $MOUNTOPT | sed "s/nolruresize/lruresize/"`
4647         setup
4648
4649         createmany -o $DIR/$tdir/f $NR
4650         log "doing ls -la $DIR/$tdir 3 times (lru resize enabled)"
4651         stime=`date +%s`
4652         ls -la $DIR/$tdir > /dev/null
4653         ls -la $DIR/$tdir > /dev/null
4654         ls -la $DIR/$tdir > /dev/null
4655         etime=`date +%s`
4656         lruresize_delta=$((etime-stime))
4657         log "ls -la time: $lruresize_delta seconds"
4658
4659         if test $lruresize_delta -gt $nolruresize_delta; then
4660                 log "ls -la is $((lruresize_delta - $nolruresize_delta))s slower with lru resize enabled"
4661         elif test $nolruresize_delta -gt $lruresize_delta; then
4662                 log "ls -la is $((nolruresize_delta - $lruresize_delta))s faster with lru resize enabled"
4663         else
4664                 log "lru resize performs the same with no lru resize"
4665         fi
4666
4667         unlinkmany $DIR/$tdir/f $NR
4668 }
4669 run_test 124b "lru resize (performance test) ======================="
4670
4671 test_125() { # 13358
4672         mkdir -p $DIR/d125 || error "mkdir failed"
4673         $SETSTRIPE $DIR/d125 65536 -1 -1 || error "setstripe failed"
4674         setfacl -R -m u:bin:rwx $DIR/d125 || error "setfacl $DIR/d125 failed"
4675         ls -ld $DIR/d125 || error "cannot access $DIR/d125"
4676 }
4677 run_test 125 "don't return EPROTO when a dir has a non-default striping and ACLs"
4678
4679 TMPDIR=$OLDTMPDIR
4680 TMP=$OLDTMP
4681 HOME=$OLDHOME
4682
4683 log "cleanup: ======================================================"
4684 check_and_cleanup_lustre
4685 if [ "$I_MOUNTED" != "yes" ]; then
4686         sysctl -w lnet.debug="$OLDDEBUG" 2> /dev/null || true
4687 fi
4688
4689 echo '=========================== finished ==============================='
4690 [ -f "$SANITYLOG" ] && cat $SANITYLOG && grep -q FAIL $SANITYLOG && exit 1 || true
4691 echo "$0: completed"