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