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