Whamcloud - gitweb
4074a4f716f0349d48cde8d1c07db9b335407152
[fs/lustre-release.git] / lustre / tests / sanity.sh
1 #!/bin/bash
2 # -*- mode: Bash; tab-width: 4; indent-tabs-mode: t; -*-
3 # vim:autoindent:shiftwidth=4:tabstop=4:
4 #
5 # Run select tests by setting ONLY, or as arguments to the script.
6 # Skip specific tests by setting EXCEPT.
7 #
8 # e.g. ONLY="22 23" or ONLY="`seq 32 39`" or EXCEPT="31"
9 set -e
10
11 ONLY=${ONLY:-"$*"}
12 # bug number for skipped test: 13297 2108 9789 3637 9789 3561 12622 12653 12653 5188 16260 19742 
13 ALWAYS_EXCEPT="                27u   42a  42b  42c  42d  45   51d   65a   65e   68b  $SANITY_EXCEPT"
14 # bug number for skipped test: 2108 9789 3637 9789 3561 5188/5749 1443
15 #ALWAYS_EXCEPT=${ALWAYS_EXCEPT:-"27m 42a 42b 42c 42d 45 68 76"}
16 # UPDATE THE COMMENT ABOVE WITH BUG NUMBERS WHEN CHANGING ALWAYS_EXCEPT!
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 case `uname -r` in
24 2.4*) FSTYPE=${FSTYPE:-ext3} ;;
25 2.6*) FSTYPE=${FSTYPE:-ldiskfs} ;;
26 *) error "unsupported kernel" ;;
27 esac
28
29 SRCDIR=$(cd $(dirname $0); echo $PWD)
30 export PATH=$PATH:/sbin
31
32 TMP=${TMP:-/tmp}
33
34 CHECKSTAT=${CHECKSTAT:-"checkstat -v"}
35 CREATETEST=${CREATETEST:-createtest}
36 LFS=${LFS:-lfs}
37 SETSTRIPE=${SETSTRIPE:-"$LFS setstripe"}
38 GETSTRIPE=${GETSTRIPE:-"$LFS getstripe"}
39 LSTRIPE=${LSTRIPE:-"$LFS setstripe"}
40 LFIND=${LFIND:-"$LFS find"}
41 LVERIFY=${LVERIFY:-ll_dirstripe_verify}
42 LCTL=${LCTL:-lctl}
43 MCREATE=${MCREATE:-mcreate}
44 OPENFILE=${OPENFILE:-openfile}
45 OPENUNLINK=${OPENUNLINK:-openunlink}
46 READS=${READS:-"reads"}
47 MUNLINK=${MUNLINK:-munlink}
48 SOCKETSERVER=${SOCKETSERVER:-socketserver}
49 SOCKETCLIENT=${SOCKETCLIENT:-socketclient}
50 IOPENTEST1=${IOPENTEST1:-iopentest1}
51 IOPENTEST2=${IOPENTEST2:-iopentest2}
52 MEMHOG=${MEMHOG:-memhog}
53 DIRECTIO=${DIRECTIO:-directio}
54 ACCEPTOR_PORT=${ACCEPTOR_PORT:-988}
55 UMOUNT=${UMOUNT:-"umount -d"}
56 STRIPES_PER_OBJ=-1
57 CHECK_GRANT=${CHECK_GRANT:-"yes"}
58 GRANT_CHECK_LIST=${GRANT_CHECK_LIST:-""}
59
60 export NAME=${NAME:-local}
61
62 SAVE_PWD=$PWD
63
64 CLEANUP=${CLEANUP:-:}
65 SETUP=${SETUP:-:}
66 TRACE=${TRACE:-""}
67 LUSTRE=${LUSTRE:-$(cd $(dirname $0)/..; echo $PWD)}
68 . $LUSTRE/tests/test-framework.sh
69 init_test_env $@
70 . ${CONFIG:=$LUSTRE/tests/cfg/${NAME}.sh}
71 init_logging
72
73 [ "$SLOW" = "no" ] && EXCEPT_SLOW="24o 24v 27m 36f 36g 36h 51b 51c 60c 63 64b 68 71 73 77f 78 101 103 115 120g 124b"
74
75 SANITYLOG=${TESTSUITELOG:-$TMP/$(basename $0 .sh).log}
76 FAIL_ON_ERROR=false
77
78 cleanup() {
79         echo -n "cln.."
80         pgrep ll_sa > /dev/null && { echo "There are ll_sa thread not exit!"; exit 20; }
81         cleanupall ${FORCE} $* || { echo "FAILed to clean up"; exit 20; }
82 }
83 setup() {
84         echo -n "mnt.."
85         load_modules
86         setupall || exit 10
87         echo "done"
88 }
89
90 check_kernel_version() {
91         WANT_VER=$1
92         GOT_VER=$(lctl get_param -n version | awk '/kernel:/ {print $2}')
93         case $GOT_VER in
94         patchless|patchless_client) return 0;;
95         *) [ $GOT_VER -ge $WANT_VER ] && return 0 ;;
96         esac
97         log "test needs at least kernel version $WANT_VER, running $GOT_VER"
98         return 1
99 }
100
101 if [ "$ONLY" == "cleanup" ]; then
102        sh llmountcleanup.sh
103        exit 0
104 fi
105
106 [ "$SANITYLOG" ] && rm -f $SANITYLOG || true
107
108 check_and_setup_lustre
109
110 DIR=${DIR:-$MOUNT}
111 assert_DIR
112
113 MDT0=$($LCTL get_param -n mdc.*.mds_server_uuid | \
114     awk '{gsub(/_UUID/,""); print $1}' | head -1)
115 LOVNAME=$($LCTL get_param -n llite.*.lov.common_name | tail -n 1)
116 OSTCOUNT=$($LCTL get_param -n lov.$LOVNAME.numobd)
117 STRIPECOUNT=$($LCTL get_param -n lov.$LOVNAME.stripecount)
118 STRIPESIZE=$($LCTL get_param -n lov.$LOVNAME.stripesize)
119 ORIGFREE=$($LCTL get_param -n lov.$LOVNAME.kbytesavail)
120 MAXFREE=${MAXFREE:-$((200000 * $OSTCOUNT))}
121
122 [ -f $DIR/d52a/foo ] && chattr -a $DIR/d52a/foo
123 [ -f $DIR/d52b/foo ] && chattr -i $DIR/d52b/foo
124 rm -rf $DIR/[Rdfs][0-9]*
125
126 # $RUNAS_ID may get set incorrectly somewhere else
127 [ $UID -eq 0 -a $RUNAS_ID -eq 0 ] && error "\$RUNAS_ID set to 0, but \$UID is also 0!"
128
129 check_runas_id $RUNAS_ID $RUNAS_GID $RUNAS
130
131 build_test_filter
132
133 if [ "${ONLY}" = "MOUNT" ] ; then
134         echo "Lustre is up, please go on"
135         exit
136 fi
137
138 echo "preparing for tests involving mounts"
139 EXT2_DEV=${EXT2_DEV:-$TMP/SANITY.LOOP}
140 touch $EXT2_DEV
141 mke2fs -j -F $EXT2_DEV 8000 > /dev/null
142 echo # add a newline after mke2fs.
143
144 umask 077
145
146 OLDDEBUG="`lctl get_param -n debug 2> /dev/null`"
147 lctl set_param debug=-1 2> /dev/null || true
148 test_0() {
149         touch $DIR/$tfile
150         $CHECKSTAT -t file $DIR/$tfile || error
151         rm $DIR/$tfile
152         $CHECKSTAT -a $DIR/$tfile || error
153 }
154 run_test 0 "touch .../$tfile ; rm .../$tfile ====================="
155
156 test_0b() {
157         chmod 0755 $DIR || error
158         $CHECKSTAT -p 0755 $DIR || error
159 }
160 run_test 0b "chmod 0755 $DIR ============================="
161
162 test_0c() {
163     $LCTL get_param mdc.*.import | grep  "state: FULL" || error "import not FULL"
164     $LCTL get_param mdc.*.import | grep  "target: $FSNAME-MDT" || error "bad target"
165 }
166 run_test 0c "check import proc ============================="
167
168 test_1a() {
169         mkdir $DIR/d1
170         mkdir $DIR/d1/d2
171         mkdir $DIR/d1/d2 && error "we expect EEXIST, but not returned"
172         $CHECKSTAT -t dir $DIR/d1/d2 || error
173 }
174 run_test 1a "mkdir .../d1; mkdir .../d1/d2 ====================="
175
176 test_1b() {
177         rmdir $DIR/d1/d2
178         rmdir $DIR/d1
179         $CHECKSTAT -a $DIR/d1 || error
180 }
181 run_test 1b "rmdir .../d1/d2; rmdir .../d1 ====================="
182
183 test_2a() {
184         mkdir $DIR/d2
185         touch $DIR/d2/f
186         $CHECKSTAT -t file $DIR/d2/f || error
187 }
188 run_test 2a "mkdir .../d2; touch .../d2/f ======================"
189
190 test_2b() {
191         rm -r $DIR/d2
192         $CHECKSTAT -a $DIR/d2 || error
193 }
194 run_test 2b "rm -r .../d2; checkstat .../d2/f ======================"
195
196 test_3a() {
197         mkdir $DIR/d3
198         $CHECKSTAT -t dir $DIR/d3 || error
199 }
200 run_test 3a "mkdir .../d3 ======================================"
201
202 test_3b() {
203         if [ ! -d $DIR/d3 ]; then
204                 mkdir $DIR/d3
205         fi
206         touch $DIR/d3/f
207         $CHECKSTAT -t file $DIR/d3/f || error
208 }
209 run_test 3b "touch .../d3/f ===================================="
210
211 test_3c() {
212         rm -r $DIR/d3
213         $CHECKSTAT -a $DIR/d3 || error
214 }
215 run_test 3c "rm -r .../d3 ======================================"
216
217 test_4a() {
218         mkdir $DIR/d4
219         $CHECKSTAT -t dir $DIR/d4 || error
220 }
221 run_test 4a "mkdir .../d4 ======================================"
222
223 test_4b() {
224         if [ ! -d $DIR/d4 ]; then
225                 mkdir $DIR/d4
226         fi
227         mkdir $DIR/d4/d2
228         $CHECKSTAT -t dir $DIR/d4/d2 || error
229 }
230 run_test 4b "mkdir .../d4/d2 ==================================="
231
232 test_5() {
233         mkdir $DIR/d5
234         mkdir $DIR/d5/d2
235         chmod 0707 $DIR/d5/d2
236         $CHECKSTAT -t dir -p 0707 $DIR/d5/d2 || error
237 }
238 run_test 5 "mkdir .../d5 .../d5/d2; chmod .../d5/d2 ============"
239
240 test_6a() {
241         touch $DIR/f6a
242         chmod 0666 $DIR/f6a || error
243         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/f6a || error
244 }
245 run_test 6a "touch .../f6a; chmod .../f6a ======================"
246
247 test_6b() {
248         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
249         if [ ! -f $DIR/f6a ]; then
250                 touch $DIR/f6a
251                 chmod 0666 $DIR/f6a
252         fi
253         $RUNAS chmod 0444 $DIR/f6a && error
254         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/f6a || error
255 }
256 run_test 6b "$RUNAS chmod .../f6a (should return error) =="
257
258 test_6c() {
259         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
260         touch $DIR/f6c
261         chown $RUNAS_ID $DIR/f6c || error
262         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/f6c || error
263 }
264 run_test 6c "touch .../f6c; chown .../f6c ======================"
265
266 test_6d() {
267         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
268         if [ ! -f $DIR/f6c ]; then
269                 touch $DIR/f6c
270                 chown $RUNAS_ID $DIR/f6c
271         fi
272         $RUNAS chown $UID $DIR/f6c && error
273         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/f6c || error
274 }
275 run_test 6d "$RUNAS chown .../f6c (should return error) =="
276
277 test_6e() {
278         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
279         touch $DIR/f6e
280         chgrp $RUNAS_ID $DIR/f6e || error
281         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/f6e || error
282 }
283 run_test 6e "touch .../f6e; chgrp .../f6e ======================"
284
285 test_6f() {
286         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
287         if [ ! -f $DIR/f6e ]; then
288                 touch $DIR/f6e
289                 chgrp $RUNAS_ID $DIR/f6e
290         fi
291         $RUNAS chgrp $UID $DIR/f6e && error
292         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/f6e || error
293 }
294 run_test 6f "$RUNAS chgrp .../f6e (should return error) =="
295
296 test_6g() {
297         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
298         mkdir $DIR/d6g || error
299         chmod 777 $DIR/d6g || error
300         $RUNAS mkdir $DIR/d6g/d || error
301         chmod g+s $DIR/d6g/d || error
302         mkdir $DIR/d6g/d/subdir
303         $CHECKSTAT -g \#$RUNAS_GID $DIR/d6g/d/subdir || error
304 }
305 run_test 6g "Is new dir in sgid dir inheriting group?"
306
307 test_6h() { # bug 7331
308         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
309         touch $DIR/f6h || error "touch failed"
310         chown $RUNAS_ID:$RUNAS_GID $DIR/f6h || error "initial chown failed"
311         $RUNAS -G$RUNAS_GID chown $RUNAS_ID:0 $DIR/f6h && error "chown worked"
312         $CHECKSTAT -t file -u \#$RUNAS_ID -g \#$RUNAS_GID $DIR/f6h || error
313 }
314 run_test 6h "$RUNAS chown RUNAS_ID.0 .../f6h (should return error)"
315
316 test_7a() {
317         mkdir $DIR/d7
318         $MCREATE $DIR/d7/f
319         chmod 0666 $DIR/d7/f
320         $CHECKSTAT -t file -p 0666 $DIR/d7/f || error
321 }
322 run_test 7a "mkdir .../d7; mcreate .../d7/f; chmod .../d7/f ===="
323
324 test_7b() {
325         if [ ! -d $DIR/d7 ]; then
326                 mkdir $DIR/d7
327         fi
328         $MCREATE $DIR/d7/f2
329         echo -n foo > $DIR/d7/f2
330         [ "`cat $DIR/d7/f2`" = "foo" ] || error
331         $CHECKSTAT -t file -s 3 $DIR/d7/f2 || error
332 }
333 run_test 7b "mkdir .../d7; mcreate d7/f2; echo foo > d7/f2 ====="
334
335 test_8() {
336         mkdir $DIR/d8
337         touch $DIR/d8/f
338         chmod 0666 $DIR/d8/f
339         $CHECKSTAT -t file -p 0666 $DIR/d8/f || error
340 }
341 run_test 8 "mkdir .../d8; touch .../d8/f; chmod .../d8/f ======="
342
343 test_9() {
344         mkdir $DIR/d9
345         mkdir $DIR/d9/d2
346         mkdir $DIR/d9/d2/d3
347         $CHECKSTAT -t dir $DIR/d9/d2/d3 || error
348 }
349 run_test 9 "mkdir .../d9 .../d9/d2 .../d9/d2/d3 ================"
350
351 test_10() {
352         mkdir $DIR/d10
353         mkdir $DIR/d10/d2
354         touch $DIR/d10/d2/f
355         $CHECKSTAT -t file $DIR/d10/d2/f || error
356 }
357 run_test 10 "mkdir .../d10 .../d10/d2; touch .../d10/d2/f ======"
358
359 test_11() {
360         mkdir $DIR/d11
361         mkdir $DIR/d11/d2
362         chmod 0666 $DIR/d11/d2
363         chmod 0705 $DIR/d11/d2
364         $CHECKSTAT -t dir -p 0705 $DIR/d11/d2 || error
365 }
366 run_test 11 "mkdir .../d11 d11/d2; chmod .../d11/d2 ============"
367
368 test_12() {
369         mkdir $DIR/d12
370         touch $DIR/d12/f
371         chmod 0666 $DIR/d12/f
372         chmod 0654 $DIR/d12/f
373         $CHECKSTAT -t file -p 0654 $DIR/d12/f || error
374 }
375 run_test 12 "touch .../d12/f; chmod .../d12/f .../d12/f ========"
376
377 test_13() {
378         mkdir $DIR/d13
379         dd if=/dev/zero of=$DIR/d13/f count=10
380         >  $DIR/d13/f
381         $CHECKSTAT -t file -s 0 $DIR/d13/f || error
382 }
383 run_test 13 "creat .../d13/f; dd .../d13/f; > .../d13/f ========"
384
385 test_14() {
386         mkdir $DIR/d14
387         touch $DIR/d14/f
388         rm $DIR/d14/f
389         $CHECKSTAT -a $DIR/d14/f || error
390 }
391 run_test 14 "touch .../d14/f; rm .../d14/f; rm .../d14/f ======="
392
393 test_15() {
394         mkdir $DIR/d15
395         touch $DIR/d15/f
396         mv $DIR/d15/f $DIR/d15/f2
397         $CHECKSTAT -t file $DIR/d15/f2 || error
398 }
399 run_test 15 "touch .../d15/f; mv .../d15/f .../d15/f2 =========="
400
401 test_16() {
402         mkdir $DIR/d16
403         touch $DIR/d16/f
404         rm -rf $DIR/d16/f
405         $CHECKSTAT -a $DIR/d16/f || error
406 }
407 run_test 16 "touch .../d16/f; rm -rf .../d16/f ================="
408
409 test_17a() {
410         mkdir -p $DIR/d17
411         touch $DIR/d17/f
412         ln -s $DIR/d17/f $DIR/d17/l-exist
413         ls -l $DIR/d17
414         $CHECKSTAT -l $DIR/d17/f $DIR/d17/l-exist || error
415         $CHECKSTAT -f -t f $DIR/d17/l-exist || error
416         rm -f $DIR/d17/l-exist
417         $CHECKSTAT -a $DIR/d17/l-exist || error
418 }
419 run_test 17a "symlinks: create, remove (real) =================="
420
421 test_17b() {
422         mkdir -p $DIR/d17
423         ln -s no-such-file $DIR/d17/l-dangle
424         ls -l $DIR/d17
425         $CHECKSTAT -l no-such-file $DIR/d17/l-dangle || error
426         $CHECKSTAT -fa $DIR/d17/l-dangle || error
427         rm -f $DIR/d17/l-dangle
428         $CHECKSTAT -a $DIR/d17/l-dangle || error
429 }
430 run_test 17b "symlinks: create, remove (dangling) =============="
431
432 test_17c() { # bug 3440 - don't save failed open RPC for replay
433         mkdir -p $DIR/d17
434         ln -s foo $DIR/d17/f17c
435         cat $DIR/d17/f17c && error "opened non-existent symlink" || true
436 }
437 run_test 17c "symlinks: open dangling (should return error) ===="
438
439 test_17d() {
440         mkdir -p $DIR/d17
441         ln -s foo $DIR/d17/f17d
442         touch $DIR/d17/f17d || error "creating to new symlink"
443 }
444 run_test 17d "symlinks: create dangling ========================"
445
446 test_17e() {
447         mkdir -p $DIR/$tdir
448         local foo=$DIR/$tdir/$tfile
449         ln -s $foo $foo || error "create symlink failed"
450         ls -l $foo || error "ls -l failed"
451         ls $foo && error "ls not failed" || true
452 }
453 run_test 17e "symlinks: create recursive symlink (should return error) ===="
454
455 test_17f() {
456         mkdir -p $DIR/d17f
457         ln -s 1234567890/2234567890/3234567890/4234567890 $DIR/d17f/111
458         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890 $DIR/d17f/222
459         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890 $DIR/d17f/333
460         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890 $DIR/d17f/444
461         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890/c234567890/d234567890/f234567890 $DIR/d17f/555
462         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
463         ls -l  $DIR/d17f
464 }
465 run_test 17f "symlinks: long and very long symlink name ========================"
466
467 test_17g() {
468         mkdir -p $DIR/$tdir
469         LONGSYMLINK="$(dd if=/dev/zero bs=4095 count=1 | tr '\0' 'x')"
470         ln -s $LONGSYMLINK $DIR/$tdir/$tfile
471         ls -l $DIR/$tdir
472 }
473 run_test 17g "symlinks: really long symlink name ==============================="
474
475 test_17h() { #bug 17378
476         mkdir -p $DIR/$tdir
477         $SETSTRIPE $DIR/$tdir -c -1
478 #define OBD_FAIL_MDS_LOV_PREP_CREATE 0x141
479         do_facet $SINGLEMDS lctl set_param fail_loc=0x80000141
480         touch $DIR/$tdir/$tfile || true
481 }
482 run_test 17h "create objects: lov_free_memmd() doesn't lbug"
483
484 test_17i() { #bug 20018
485         mkdir -p $DIR/$tdir
486         local foo=$DIR/$tdir/$tfile
487         ln -s $foo $foo || error "create symlink failed"
488 #define OBD_FAIL_MDS_READLINK_EPROTO     0x143
489         do_facet $SINGLEMDS lctl set_param fail_loc=0x80000143
490         ls -l $foo && error "error not detected"
491         return 0
492 }
493 run_test 17i "don't panic on short symlink"
494
495 test_17k() { #bug 22301
496         rsync --help | grep -q xattr ||
497                 skip_env "$(rsync --version| head -1) does not support xattrs"
498         mkdir -p $DIR/{$tdir,$tdir.new}
499         touch $DIR/$tdir/$tfile
500         ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
501         rsync -av -X $DIR/$tdir/ $DIR/$tdir.new ||
502                 error "rsync failed with xattrs enabled"
503 }
504 run_test 17k "symlinks: rsync with xattrs enabled ========================="
505
506 test_18() {
507         touch $DIR/f
508         ls $DIR || error
509 }
510 run_test 18 "touch .../f ; ls ... =============================="
511
512 test_19a() {
513         touch $DIR/f19
514         ls -l $DIR
515         rm $DIR/f19
516         $CHECKSTAT -a $DIR/f19 || error
517 }
518 run_test 19a "touch .../f19 ; ls -l ... ; rm .../f19 ==========="
519
520 test_19b() {
521         ls -l $DIR/f19 && error || true
522 }
523 run_test 19b "ls -l .../f19 (should return error) =============="
524
525 test_19c() {
526         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
527         $RUNAS touch $DIR/f19 && error || true
528 }
529 run_test 19c "$RUNAS touch .../f19 (should return error) =="
530
531 test_19d() {
532         cat $DIR/f19 && error || true
533 }
534 run_test 19d "cat .../f19 (should return error) =============="
535
536 test_20() {
537         touch $DIR/f
538         rm $DIR/f
539         log "1 done"
540         touch $DIR/f
541         rm $DIR/f
542         log "2 done"
543         touch $DIR/f
544         rm $DIR/f
545         log "3 done"
546         $CHECKSTAT -a $DIR/f || error
547 }
548 run_test 20 "touch .../f ; ls -l ... ==========================="
549
550 test_21() {
551         mkdir $DIR/d21
552         [ -f $DIR/d21/dangle ] && rm -f $DIR/d21/dangle
553         ln -s dangle $DIR/d21/link
554         echo foo >> $DIR/d21/link
555         cat $DIR/d21/dangle
556         $CHECKSTAT -t link $DIR/d21/link || error
557         $CHECKSTAT -f -t file $DIR/d21/link || error
558 }
559 run_test 21 "write to dangling link ============================"
560
561 test_22() {
562         WDIR=$DIR/$tdir
563         mkdir -p $WDIR
564         chown $RUNAS_ID:$RUNAS_GID $WDIR
565         (cd $WDIR || error "cd $WDIR failed";
566         $RUNAS tar cf - /etc/hosts /etc/sysconfig/network | \
567         $RUNAS tar xf -)
568         ls -lR $WDIR/etc || error "ls -lR $WDIR/etc failed"
569         $CHECKSTAT -t dir $WDIR/etc || error "checkstat -t dir failed"
570         $CHECKSTAT -u \#$RUNAS_ID -g \#$RUNAS_GID $WDIR/etc || error "checkstat -u failed"
571 }
572 run_test 22 "unpack tar archive as non-root user ==============="
573
574 # was test_23
575 test_23a() {
576         mkdir -p $DIR/$tdir
577         local file=$DIR/$tdir/$tfile
578
579         openfile -f O_CREAT:O_EXCL $file || error "$file create failed"
580         openfile -f O_CREAT:O_EXCL $file &&
581                 error "$file recreate succeeded" || true
582 }
583 run_test 23a "O_CREAT|O_EXCL in subdir =========================="
584
585 test_23b() { # bug 18988
586         mkdir -p $DIR/$tdir
587         local file=$DIR/$tdir/$tfile
588
589         rm -f $file
590         echo foo > $file || error "write filed"
591         echo bar >> $file || error "append filed"
592         $CHECKSTAT -s 8 $file || error "wrong size"
593         rm $file
594 }
595 run_test 23b "O_APPEND check =========================="
596
597 test_24a() {
598         echo '== rename sanity =============================================='
599         echo '-- same directory rename'
600         mkdir $DIR/R1
601         touch $DIR/R1/f
602         mv $DIR/R1/f $DIR/R1/g
603         $CHECKSTAT -t file $DIR/R1/g || error
604 }
605 run_test 24a "touch .../R1/f; rename .../R1/f .../R1/g ========="
606
607 test_24b() {
608         mkdir $DIR/R2
609         touch $DIR/R2/{f,g}
610         mv $DIR/R2/f $DIR/R2/g
611         $CHECKSTAT -a $DIR/R2/f || error
612         $CHECKSTAT -t file $DIR/R2/g || error
613 }
614 run_test 24b "touch .../R2/{f,g}; rename .../R2/f .../R2/g ====="
615
616 test_24c() {
617         mkdir $DIR/R3
618         mkdir $DIR/R3/f
619         mv $DIR/R3/f $DIR/R3/g
620         $CHECKSTAT -a $DIR/R3/f || error
621         $CHECKSTAT -t dir $DIR/R3/g || error
622 }
623 run_test 24c "mkdir .../R3/f; rename .../R3/f .../R3/g ========="
624
625 test_24d() {
626         mkdir $DIR/R4
627         mkdir $DIR/R4/{f,g}
628         mrename $DIR/R4/f $DIR/R4/g
629         $CHECKSTAT -a $DIR/R4/f || error
630         $CHECKSTAT -t dir $DIR/R4/g || error
631 }
632 run_test 24d "mkdir .../R4/{f,g}; rename .../R4/f .../R4/g ====="
633
634 test_24e() {
635         echo '-- cross directory renames --'
636         mkdir $DIR/R5{a,b}
637         touch $DIR/R5a/f
638         mv $DIR/R5a/f $DIR/R5b/g
639         $CHECKSTAT -a $DIR/R5a/f || error
640         $CHECKSTAT -t file $DIR/R5b/g || error
641 }
642 run_test 24e "touch .../R5a/f; rename .../R5a/f .../R5b/g ======"
643
644 test_24f() {
645         mkdir $DIR/R6{a,b}
646         touch $DIR/R6a/f $DIR/R6b/g
647         mv $DIR/R6a/f $DIR/R6b/g
648         $CHECKSTAT -a $DIR/R6a/f || error
649         $CHECKSTAT -t file $DIR/R6b/g || error
650 }
651 run_test 24f "touch .../R6a/f R6b/g; mv .../R6a/f .../R6b/g ===="
652
653 test_24g() {
654         mkdir $DIR/R7{a,b}
655         mkdir $DIR/R7a/d
656         mv $DIR/R7a/d $DIR/R7b/e
657         $CHECKSTAT -a $DIR/R7a/d || error
658         $CHECKSTAT -t dir $DIR/R7b/e || error
659 }
660 run_test 24g "mkdir .../R7{a,b}/d; mv .../R7a/d .../R7b/e ======"
661
662 test_24h() {
663         mkdir $DIR/R8{a,b}
664         mkdir $DIR/R8a/d $DIR/R8b/e
665         mrename $DIR/R8a/d $DIR/R8b/e
666         $CHECKSTAT -a $DIR/R8a/d || error
667         $CHECKSTAT -t dir $DIR/R8b/e || error
668 }
669 run_test 24h "mkdir .../R8{a,b}/{d,e}; rename .../R8a/d .../R8b/e"
670
671 test_24i() {
672         echo "-- rename error cases"
673         mkdir $DIR/R9
674         mkdir $DIR/R9/a
675         touch $DIR/R9/f
676         mrename $DIR/R9/f $DIR/R9/a
677         $CHECKSTAT -t file $DIR/R9/f || error
678         $CHECKSTAT -t dir  $DIR/R9/a || error
679         $CHECKSTAT -a $DIR/R9/a/f || error
680 }
681 run_test 24i "rename file to dir error: touch f ; mkdir a ; rename f a"
682
683 test_24j() {
684         mkdir $DIR/R10
685         mrename $DIR/R10/f $DIR/R10/g
686         $CHECKSTAT -t dir $DIR/R10 || error
687         $CHECKSTAT -a $DIR/R10/f || error
688         $CHECKSTAT -a $DIR/R10/g || error
689 }
690 run_test 24j "source does not exist ============================"
691
692 test_24k() {
693         mkdir $DIR/R11a $DIR/R11a/d
694         touch $DIR/R11a/f
695         mv $DIR/R11a/f $DIR/R11a/d
696         $CHECKSTAT -a $DIR/R11a/f || error
697         $CHECKSTAT -t file $DIR/R11a/d/f || error
698 }
699 run_test 24k "touch .../R11a/f; mv .../R11a/f .../R11a/d ======="
700
701 # bug 2429 - rename foo foo foo creates invalid file
702 test_24l() {
703         f="$DIR/f24l"
704         multiop $f OcNs || error
705 }
706 run_test 24l "Renaming a file to itself ========================"
707
708 test_24m() {
709         f="$DIR/f24m"
710         multiop $f OcLN ${f}2 ${f}2 || error "link ${f}2 ${f}2 failed"
711         # on ext3 this does not remove either the source or target files
712         # though the "expected" operation would be to remove the source
713         $CHECKSTAT -t file ${f} || error "${f} missing"
714         $CHECKSTAT -t file ${f}2 || error "${f}2 missing"
715 }
716 run_test 24m "Renaming a file to a hard link to itself ========="
717
718 test_24n() {
719     f="$DIR/f24n"
720     # this stats the old file after it was renamed, so it should fail
721     touch ${f}
722     $CHECKSTAT ${f}
723     mv ${f} ${f}.rename
724     $CHECKSTAT ${f}.rename
725     $CHECKSTAT -a ${f}
726 }
727 run_test 24n "Statting the old file after renaming (Posix rename 2)"
728
729 test_24o() {
730         check_kernel_version 37 || return 0
731         mkdir -p $DIR/d24o
732         rename_many -s random -v -n 10 $DIR/d24o
733 }
734 run_test 24o "rename of files during htree split ==============="
735
736 test_24p() {
737         mkdir $DIR/R12{a,b}
738         DIRINO=`ls -lid $DIR/R12a | awk '{ print $1 }'`
739         mrename $DIR/R12a $DIR/R12b
740         $CHECKSTAT -a $DIR/R12a || error
741         $CHECKSTAT -t dir $DIR/R12b || error
742         DIRINO2=`ls -lid $DIR/R12b | awk '{ print $1 }'`
743         [ "$DIRINO" = "$DIRINO2" ] || error "R12a $DIRINO != R12b $DIRINO2"
744 }
745 run_test 24p "mkdir .../R12{a,b}; rename .../R12a .../R12b"
746
747 test_24q() {
748         mkdir $DIR/R13{a,b}
749         DIRINO=`ls -lid $DIR/R13a | awk '{ print $1 }'`
750         multiop_bg_pause $DIR/R13b D_c || return 1
751         MULTIPID=$!
752
753         mrename $DIR/R13a $DIR/R13b
754         $CHECKSTAT -a $DIR/R13a || error
755         $CHECKSTAT -t dir $DIR/R13b || error
756         DIRINO2=`ls -lid $DIR/R13b | awk '{ print $1 }'`
757         [ "$DIRINO" = "$DIRINO2" ] || error "R13a $DIRINO != R13b $DIRINO2"
758         kill -USR1 $MULTIPID
759         wait $MULTIPID || error "multiop close failed"
760 }
761 run_test 24q "mkdir .../R13{a,b}; open R13b rename R13a R13b ==="
762
763 test_24r() { #bug 3789
764         mkdir $DIR/R14a $DIR/R14a/b
765         mrename $DIR/R14a $DIR/R14a/b && error "rename to subdir worked!"
766         $CHECKSTAT -t dir $DIR/R14a || error "$DIR/R14a missing"
767         $CHECKSTAT -t dir $DIR/R14a/b || error "$DIR/R14a/b missing"
768 }
769 run_test 24r "mkdir .../R14a/b; rename .../R14a .../R14a/b ====="
770
771 test_24s() {
772         mkdir $DIR/R15a $DIR/R15a/b $DIR/R15a/b/c
773         mrename $DIR/R15a $DIR/R15a/b/c && error "rename to sub-subdir worked!"
774         $CHECKSTAT -t dir $DIR/R15a || error "$DIR/R15a missing"
775         $CHECKSTAT -t dir $DIR/R15a/b/c || error "$DIR/R15a/b/c missing"
776 }
777 run_test 24s "mkdir .../R15a/b/c; rename .../R15a .../R15a/b/c ="
778 test_24t() {
779         mkdir $DIR/R16a $DIR/R16a/b $DIR/R16a/b/c
780         mrename $DIR/R16a/b/c $DIR/R16a && error "rename to sub-subdir worked!"
781         $CHECKSTAT -t dir $DIR/R16a || error "$DIR/R16a missing"
782         $CHECKSTAT -t dir $DIR/R16a/b/c || error "$DIR/R16a/b/c missing"
783 }
784 run_test 24t "mkdir .../R16a/b/c; rename .../R16a/b/c .../R16a ="
785
786 test_24u() { # bug12192
787         multiop $DIR/$tfile C2w$((2048 * 1024))c || error
788         $CHECKSTAT -s $((2048 * 1024)) $DIR/$tfile || error "wrong file size"
789 }
790 run_test 24u "create stripe file"
791
792 test_24v() {
793         local NRFILES=100000
794         local FREE_INODES=`lfs df -i|grep "filesystem summary" | awk '{print $5}'`
795         [ $FREE_INODES -lt $NRFILES ] && \
796                 skip "not enough free inodes $FREE_INODES required $NRFILES" && \
797                 return
798
799         mkdir -p $DIR/d24v
800         createmany -m $DIR/d24v/$tfile $NRFILES
801         ls $DIR/d24v >/dev/null || error "error in listing large dir"
802
803         rm $DIR/d24v -rf
804 }
805 run_test 24v "list directory with large files (handle hash collision, bug: 17560)"
806
807 test_24w() { # bug21506
808         SZ1=234852
809         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=4096 || return 1
810         dd if=/dev/zero bs=$SZ1 count=1 >> $DIR/$tfile || return 2
811         dd if=$DIR/$tfile of=$DIR/${tfile}_left bs=1M skip=4097 || return 3
812         SZ2=`ls -l $DIR/${tfile}_left | awk '{print $5}'`
813         [ "$SZ1" = "$SZ2" ] || \
814                 error "Error reading at the end of the file $tfile"
815 }
816 run_test 24w "Reading a file larger than 4Gb"
817
818 test_25a() {
819         echo '== symlink sanity ============================================='
820
821         mkdir $DIR/d25
822         ln -s d25 $DIR/s25
823         touch $DIR/s25/foo || error
824 }
825 run_test 25a "create file in symlinked directory ==============="
826
827 test_25b() {
828         [ ! -d $DIR/d25 ] && test_25a
829         $CHECKSTAT -t file $DIR/s25/foo || error
830 }
831 run_test 25b "lookup file in symlinked directory ==============="
832
833 test_26a() {
834         mkdir $DIR/d26
835         mkdir $DIR/d26/d26-2
836         ln -s d26/d26-2 $DIR/s26
837         touch $DIR/s26/foo || error
838 }
839 run_test 26a "multiple component symlink ======================="
840
841 test_26b() {
842         mkdir -p $DIR/d26b/d26-2
843         ln -s d26b/d26-2/foo $DIR/s26-2
844         touch $DIR/s26-2 || error
845 }
846 run_test 26b "multiple component symlink at end of lookup ======"
847
848 test_26c() {
849         mkdir $DIR/d26.2
850         touch $DIR/d26.2/foo
851         ln -s d26.2 $DIR/s26.2-1
852         ln -s s26.2-1 $DIR/s26.2-2
853         ln -s s26.2-2 $DIR/s26.2-3
854         chmod 0666 $DIR/s26.2-3/foo
855 }
856 run_test 26c "chain of symlinks ================================"
857
858 # recursive symlinks (bug 439)
859 test_26d() {
860         ln -s d26-3/foo $DIR/d26-3
861 }
862 run_test 26d "create multiple component recursive symlink ======"
863
864 test_26e() {
865         [ ! -h $DIR/d26-3 ] && test_26d
866         rm $DIR/d26-3
867 }
868 run_test 26e "unlink multiple component recursive symlink ======"
869
870 # recursive symlinks (bug 7022)
871 test_26f() {
872         mkdir -p $DIR/$tdir
873         mkdir $DIR/$tdir/$tfile        || error "mkdir $DIR/$tdir/$tfile failed"
874         cd $DIR/$tdir/$tfile           || error "cd $DIR/$tdir/$tfile failed"
875         mkdir -p lndir/bar1      || error "mkdir lndir/bar1 failed"
876         mkdir $tfile             || error "mkdir $tfile failed"
877         cd $tfile                || error "cd $tfile failed"
878         ln -s .. dotdot          || error "ln dotdot failed"
879         ln -s dotdot/lndir lndir || error "ln lndir failed"
880         cd $DIR/$tdir                 || error "cd $DIR/$tdir failed"
881         output=`ls $tfile/$tfile/lndir/bar1`
882         [ "$output" = bar1 ] && error "unexpected output"
883         rm -r $tfile             || error "rm $tfile failed"
884         $CHECKSTAT -a $DIR/$tfile || error "$tfile not gone"
885 }
886 run_test 26f "rm -r of a directory which has recursive symlink ="
887
888 test_27a() {
889         echo '== stripe sanity =============================================='
890         mkdir -p $DIR/d27 || error "mkdir failed"
891         $GETSTRIPE $DIR/d27
892         $SETSTRIPE $DIR/d27/f0 -c 1 || error "lstripe failed"
893         $CHECKSTAT -t file $DIR/d27/f0 || error "checkstat failed"
894         pass
895         log "== test_27a: write to one stripe file ========================="
896         cp /etc/hosts $DIR/d27/f0 || error
897 }
898 run_test 27a "one stripe file =================================="
899
900 test_27c() {
901         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
902         mkdir -p $DIR/d27
903         $SETSTRIPE $DIR/d27/f01 -c 2 || error "lstripe failed"
904         [ `$GETSTRIPE $DIR/d27/f01 | grep -A 10 obdidx | wc -l` -eq 4 ] ||
905                 error "two-stripe file doesn't have two stripes"
906         pass
907         log "== test_27c: write to two stripe file file f01 ================"
908         dd if=/dev/zero of=$DIR/d27/f01 bs=4k count=4 || error "dd failed"
909 }
910 run_test 27c "create two stripe file f01 ======================="
911
912 test_27d() {
913         mkdir -p $DIR/d27
914         $SETSTRIPE -c0 -i-1 -s0 $DIR/d27/fdef || error "lstripe failed"
915         $CHECKSTAT -t file $DIR/d27/fdef || error "checkstat failed"
916         dd if=/dev/zero of=$DIR/d27/fdef bs=4k count=4 || error
917 }
918 run_test 27d "create file with default settings ================"
919
920 test_27e() {
921         mkdir -p $DIR/d27
922         $SETSTRIPE $DIR/d27/f12 -c 2 || error "lstripe failed"
923         $SETSTRIPE $DIR/d27/f12 -c 2 && error "lstripe succeeded twice"
924         $CHECKSTAT -t file $DIR/d27/f12 || error "checkstat failed"
925 }
926 run_test 27e "setstripe existing file (should return error) ======"
927
928 test_27f() {
929         mkdir -p $DIR/d27
930         $SETSTRIPE $DIR/d27/fbad -s 100 -i 0 -c 1 && error "lstripe failed"
931         dd if=/dev/zero of=$DIR/d27/f12 bs=4k count=4 || error "dd failed"
932         $GETSTRIPE $DIR/d27/fbad || error "lfs getstripe failed"
933 }
934 run_test 27f "setstripe with bad stripe size (should return error)"
935
936 test_27g() {
937         mkdir -p $DIR/d27
938         $MCREATE $DIR/d27/fnone || error "mcreate failed"
939         pass
940         log "== test 27h: lfs getstripe with no objects ===================="
941         $GETSTRIPE $DIR/d27/fnone 2>&1 | grep "no stripe info" || error "has object"
942         pass
943         log "== test 27i: lfs getstripe with some objects =================="
944         touch $DIR/d27/fsome || error "touch failed"
945         $GETSTRIPE $DIR/d27/fsome | grep obdidx || error "missing objects"
946 }
947 run_test 27g "test lfs getstripe ==========================================="
948
949 test_27j() {
950         mkdir -p $DIR/d27
951         $SETSTRIPE $DIR/d27/f27j -i $OSTCOUNT && error "lstripe failed"||true
952 }
953 run_test 27j "setstripe with bad stripe offset (should return error)"
954
955 test_27k() { # bug 2844
956         mkdir -p $DIR/d27
957         FILE=$DIR/d27/f27k
958         LL_MAX_BLKSIZE=$((4 * 1024 * 1024))
959         [ ! -d $DIR/d27 ] && mkdir -p $DIR/d27
960         $SETSTRIPE $FILE -s 67108864 || error "lstripe failed"
961         BLKSIZE=`stat $FILE | awk '/IO Block:/ { print $7 }'`
962         [ $BLKSIZE -le $LL_MAX_BLKSIZE ] || error "$BLKSIZE > $LL_MAX_BLKSIZE"
963         dd if=/dev/zero of=$FILE bs=4k count=1
964         BLKSIZE=`stat $FILE | awk '/IO Block:/ { print $7 }'`
965         [ $BLKSIZE -le $LL_MAX_BLKSIZE ] || error "$BLKSIZE > $LL_MAX_BLKSIZE"
966 }
967 run_test 27k "limit i_blksize for broken user apps ============="
968
969 test_27l() {
970         mkdir -p $DIR/d27
971         mcreate $DIR/f27l || error "creating file"
972         $RUNAS $SETSTRIPE $DIR/f27l -c 1 && \
973                 error "lstripe should have failed" || true
974 }
975 run_test 27l "check setstripe permissions (should return error)"
976
977 test_27m() {
978         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2 OSTs -- skipping" && return
979         if [ $ORIGFREE -gt $MAXFREE ]; then
980                 skip "$ORIGFREE > $MAXFREE skipping out-of-space test on OST0"
981                 return
982         fi
983         mkdir -p $DIR/d27
984         $SETSTRIPE $DIR/d27/f27m_1 -i 0 -c 1
985         dd if=/dev/zero of=$DIR/d27/f27m_1 bs=1024 count=$MAXFREE && \
986                 error "dd should fill OST0"
987         i=2
988         while $SETSTRIPE $DIR/d27/f27m_$i -i 0 -c 1 ; do
989                 i=`expr $i + 1`
990                 [ $i -gt 256 ] && break
991         done
992         i=`expr $i + 1`
993         touch $DIR/d27/f27m_$i
994         [ `$GETSTRIPE $DIR/d27/f27m_$i | grep -A 10 obdidx | awk '{print $1}'| grep -w "0"` ] && \
995                 error "OST0 was full but new created file still use it"
996         i=`expr $i + 1`
997         touch $DIR/d27/f27m_$i
998         [ `$GETSTRIPE $DIR/d27/f27m_$i | grep -A 10 obdidx | awk '{print $1}'| grep -w "0"` ] && \
999                 error "OST0 was full but new created file still use it"
1000         rm -r $DIR/d27
1001         sleep 15
1002 }
1003 run_test 27m "create file while OST0 was full =================="
1004
1005 sleep_maxage() {
1006         local DELAY=$(do_facet $SINGLEMDS lctl get_param -n lov.*.qos_maxage | head -n 1 | awk '{print $1 * 2}')
1007         sleep $DELAY
1008 }
1009
1010 # OSCs keep a NOSPC flag that will be reset after ~5s (qos_maxage)
1011 # if the OST isn't full anymore.
1012 reset_enospc() {
1013         local OSTIDX=${1:-""}
1014
1015         local list=$(comma_list $(osts_nodes))
1016         [ "$OSTIDX" ] && list=$(facet_host ost$((OSTIDX + 1)))
1017
1018         do_nodes $list lctl set_param fail_loc=0
1019         sleep_maxage
1020 }
1021
1022 exhaust_precreations() {
1023         local OSTIDX=$1
1024         local FAILLOC=$2
1025         local FAILIDX=${3:-$OSTIDX}
1026
1027         mkdir -p $DIR/$tdir
1028         local MDSIDX=$(get_mds_dir "$DIR/$tdir")
1029         echo OSTIDX=$OSTIDX MDSIDX=$MDSIDX
1030
1031         local OST=$(lfs osts | grep ${OSTIDX}": " | \
1032                 awk '{print $2}' | sed -e 's/_UUID$//')
1033         local MDT_INDEX=$(lfs df | grep "\[MDT:$((MDSIDX - 1))\]" | awk '{print $1}' | \
1034                           sed -e 's/_UUID$//;s/^.*-//')
1035
1036         # on the mdt's osc
1037         local mdtosc_proc1=$(get_mdtosc_proc_path mds${MDSIDX} $OST)
1038         local last_id=$(do_facet mds${MDSIDX} lctl get_param -n \
1039         osc.$mdtosc_proc1.prealloc_last_id)
1040         local next_id=$(do_facet mds${MDSIDX} lctl get_param -n \
1041         osc.$mdtosc_proc1.prealloc_next_id)
1042
1043         local mdtosc_proc2=$(get_mdtosc_proc_path mds${MDSIDX})
1044         do_facet mds${MDSIDX} lctl get_param osc.$mdtosc_proc2.prealloc*
1045
1046         mkdir -p $DIR/$tdir/${OST}
1047         $SETSTRIPE $DIR/$tdir/${OST} -i $OSTIDX -c 1
1048 #define OBD_FAIL_OST_ENOSPC              0x215
1049         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=$FAILIDX
1050         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0x215
1051         echo "Creating to objid $last_id on ost $OST..."
1052         createmany -o $DIR/$tdir/${OST}/f $next_id $((last_id - next_id + 2))
1053         do_facet mds${MDSIDX} lctl get_param osc.$mdtosc_proc2.prealloc*
1054         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=$FAILLOC
1055         sleep_maxage
1056 }
1057
1058 exhaust_all_precreations() {
1059         local i
1060         for (( i=0; i < OSTCOUNT; i++ )) ; do
1061                 exhaust_precreations $i $1 -1
1062         done
1063 }
1064
1065 test_27n() {
1066         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1067         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1068         remote_ost_nodsh && skip "remote OST with nodsh" && return
1069
1070         reset_enospc
1071         rm -f $DIR/$tdir/$tfile
1072         exhaust_precreations 0 0x80000215
1073         $SETSTRIPE -c -1 $DIR/$tdir
1074         touch $DIR/$tdir/$tfile || error
1075         $GETSTRIPE $DIR/$tdir/$tfile
1076         reset_enospc
1077 }
1078 run_test 27n "create file with some full OSTs =================="
1079
1080 test_27o() {
1081         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1082         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1083         remote_ost_nodsh && skip "remote OST with nodsh" && return
1084
1085         reset_enospc
1086         rm -f $DIR/$tdir/$tfile
1087         exhaust_all_precreations 0x215
1088
1089         touch $DIR/$tdir/$tfile && error "able to create $DIR/$tdir/$tfile"
1090
1091         reset_enospc
1092         rm -rf $DIR/$tdir/*
1093 }
1094 run_test 27o "create file with all full OSTs (should error) ===="
1095
1096 test_27p() {
1097         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1098         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1099         remote_ost_nodsh && skip "remote OST with nodsh" && return
1100
1101         reset_enospc
1102         rm -f $DIR/$tdir/$tfile
1103         mkdir -p $DIR/$tdir
1104
1105         $MCREATE $DIR/$tdir/$tfile || error "mcreate failed"
1106         $TRUNCATE $DIR/$tdir/$tfile 80000000 || error "truncate failed"
1107         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1108
1109         exhaust_precreations 0 0x80000215
1110         echo foo >> $DIR/$tdir/$tfile || error "append failed"
1111         $CHECKSTAT -s 80000004 $DIR/$tdir/$tfile || error "checkstat failed"
1112         $LFS getstripe $DIR/$tdir/$tfile
1113
1114         reset_enospc
1115 }
1116 run_test 27p "append to a truncated file with some full OSTs ==="
1117
1118 test_27q() {
1119         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1120         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1121         remote_ost_nodsh && skip "remote OST with nodsh" && return
1122
1123         reset_enospc
1124         rm -f $DIR/$tdir/$tfile
1125
1126         $MCREATE $DIR/$tdir/$tfile || error "mcreate $DIR/$tdir/$tfile failed"
1127         $TRUNCATE $DIR/$tdir/$tfile 80000000 ||error "truncate $DIR/$tdir/$tfile failed"
1128         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1129
1130         exhaust_all_precreations 0x215
1131
1132         echo foo >> $DIR/$tdir/$tfile && error "append succeeded"
1133         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat 2 failed"
1134
1135         reset_enospc
1136 }
1137 run_test 27q "append to truncated file with all OSTs full (should error) ==="
1138
1139 test_27r() {
1140         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1141         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1142         remote_ost_nodsh && skip "remote OST with nodsh" && return
1143
1144         reset_enospc
1145         rm -f $DIR/$tdir/$tfile
1146         exhaust_precreations 0 0x80000215
1147
1148         $SETSTRIPE $DIR/$tdir/$tfile -i 0 -c 2 # && error
1149
1150         reset_enospc
1151 }
1152 run_test 27r "stripe file with some full OSTs (shouldn't LBUG) ="
1153
1154 test_27s() { # bug 10725
1155         mkdir -p $DIR/$tdir
1156         local stripe_size=$((4096 * 1024 * 1024))       # 2^32
1157         local stripe_count=0
1158         [ $OSTCOUNT -eq 1 ] || stripe_count=2
1159         $SETSTRIPE $DIR/$tdir -s $stripe_size -c $stripe_count && \
1160                 error "stripe width >= 2^32 succeeded" || true
1161
1162 }
1163 run_test 27s "lsm_xfersize overflow (should error) (bug 10725)"
1164
1165 test_27t() { # bug 10864
1166         WDIR=`pwd`
1167         WLFS=`which lfs`
1168         cd $DIR
1169         touch $tfile
1170         $WLFS getstripe $tfile
1171         cd $WDIR
1172 }
1173 run_test 27t "check that utils parse path correctly"
1174
1175 test_27u() { # bug 4900
1176         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1177         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1178
1179 #define OBD_FAIL_MDS_OSC_PRECREATE      0x139
1180         do_facet $SINGLEMDS lctl set_param fail_loc=0x139
1181         mkdir -p $DIR/$tdir
1182         createmany -o $DIR/$tdir/t- 1000
1183         do_facet $SINGLEMDS lctl set_param fail_loc=0
1184
1185         TLOG=$DIR/$tfile.getstripe
1186         $GETSTRIPE $DIR/$tdir > $TLOG
1187         OBJS=`awk -vobj=0 '($1 == 0) { obj += 1 } END { print obj;}' $TLOG`
1188         unlinkmany $DIR/$tdir/t- 1000
1189         [ $OBJS -gt 0 ] && \
1190                 error "$OBJS objects created on OST-0.  See $TLOG" || pass
1191 }
1192 run_test 27u "skip object creation on OSC w/o objects =========="
1193
1194 test_27v() { # bug 4900
1195         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1196         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1197         remote_ost_nodsh && skip "remote OST with nodsh" && return
1198
1199         exhaust_all_precreations 0x215
1200         reset_enospc
1201
1202         mkdir -p $DIR/$tdir
1203         $SETSTRIPE $DIR/$tdir -c 1         # 1 stripe / file
1204
1205         touch $DIR/$tdir/$tfile
1206         #define OBD_FAIL_TGT_DELAY_PRECREATE     0x705
1207         # all except ost1
1208         for (( i=0; i < OSTCOUNT; i++ )) ; do
1209                 do_facet ost$i lctl set_param fail_loc=0x705
1210         done
1211         local START=`date +%s`
1212         createmany -o $DIR/$tdir/$tfile 32
1213
1214         local FINISH=`date +%s`
1215         local TIMEOUT=`lctl get_param -n timeout`
1216         [ $((FINISH - START)) -ge $((TIMEOUT / 2)) ] && \
1217                error "$FINISH - $START >= $TIMEOUT / 2"
1218
1219         reset_enospc
1220 }
1221 run_test 27v "skip object creation on slow OST ================="
1222
1223 test_27w() { # bug 10997
1224         mkdir -p $DIR/$tdir || error "mkdir failed"
1225         $LSTRIPE $DIR/$tdir/f0 -s 65536 || error "lstripe failed"
1226         size=`$GETSTRIPE $DIR/$tdir/f0 -s`
1227         [ $size -ne 65536 ] && error "stripe size $size != 65536" || true
1228         gsdir=$($LFS getstripe -d $DIR/$tdir)
1229         [ $(echo $gsdir | grep -c stripe_count) -ne 1 ] && error "$LFS getstripe -d $DIR/$tdir failed"
1230
1231         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping multiple stripe count/offset test" && return
1232         for i in `seq 1 $OSTCOUNT`; do
1233                 offset=$(($i-1))
1234                 $LSTRIPE $DIR/$tdir/f$i -c $i -i $offset || error "lstripe -c $i -i $offset failed"
1235                 count=`$GETSTRIPE -c $DIR/$tdir/f$i`
1236                 index=`$GETSTRIPE -o $DIR/$tdir/f$i`
1237                 [ $count -ne $i ] && error "stripe count $count != $i" || true
1238                 [ $index -ne $offset ] && error "stripe offset $index != $offset" || true
1239         done
1240 }
1241 run_test 27w "check lfs setstripe -c -s -i options ============="
1242
1243 test_27x() {
1244         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2 OSTs" && return
1245         OFFSET=$(($OSTCOUNT - 1))
1246         OSTIDX=0
1247         local OST=$(lfs osts | awk '/'${OSTIDX}': / { print $2 }' | sed -e 's/_UUID$//')
1248
1249         mkdir -p $DIR/$tdir
1250         $SETSTRIPE $DIR/$tdir -c 1      # 1 stripe per file
1251         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 1
1252         sleep_maxage
1253         createmany -o $DIR/$tdir/$tfile $OSTCOUNT
1254         for i in `seq 0 $OFFSET`; do
1255                 [ `$GETSTRIPE $DIR/$tdir/$tfile$i | grep -A 10 obdidx | awk '{print $1}' | grep -w "$OSTIDX"` ] &&
1256                 error "OST0 was degraded but new created file still use it"
1257         done
1258         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 0
1259 }
1260 run_test 27x "create files while OST0 is degraded"
1261
1262 test_27y() {
1263         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2 OSTs -- skipping" && return
1264         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1265
1266         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS $FSNAME-OST0000)
1267         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
1268             osc.$mdtosc.prealloc_last_id)
1269         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
1270             osc.$mdtosc.prealloc_next_id)
1271         local fcount=$((last_id - next_id))
1272         [ $fcount -eq 0 ] && skip "not enough space on OST0" && return
1273         [ $fcount -gt $OSTCOUNT ] && fcount=$OSTCOUNT
1274
1275         MDS_OSCS=`do_facet $SINGLEMDS lctl dl | awk '/[oO][sS][cC].*md[ts]/ { print $4 }'`
1276         OFFSET=$(($OSTCOUNT-1))
1277         OST=-1
1278         for OSC in $MDS_OSCS; do
1279                 if [ $OST == -1 ]; then {
1280                         OST=`osc_to_ost $OSC`
1281                 } else {
1282                         echo $OSC "is Deactivate:"
1283                         do_facet $SINGLEMDS lctl --device  %$OSC deactivate
1284                 } fi
1285         done
1286
1287         OSTIDX=$(lfs osts | grep ${OST} | awk '{print $1}' | sed -e 's/://')
1288         mkdir -p $DIR/$tdir
1289         $SETSTRIPE $DIR/$tdir -c 1      # 1 stripe / file
1290
1291         do_facet ost$OSTIDX lctl set_param -n obdfilter.$OST.degraded 1
1292         sleep_maxage
1293         createmany -o $DIR/$tdir/$tfile $fcount
1294         do_facet ost$OSTIDX lctl set_param -n obdfilter.$OST.degraded 0
1295
1296         for i in `seq 0 $OFFSET`; do
1297                 [ `$GETSTRIPE $DIR/$tdir/$tfile$i | grep -A 10 obdidx | awk '{print $1}'| grep -w "$OSTIDX"` ] || \
1298                       error "files created on deactivated OSTs instead of degraded OST"
1299         done
1300         for OSC in $MDS_OSCS; do
1301                 [ `osc_to_ost $OSC` != $OST  ] && {
1302                         echo $OSC "is activate"
1303                         do_facet $SINGLEMDS lctl --device %$OSC activate
1304                 }
1305         done
1306 }
1307 run_test 27y "create files while OST0 is degraded and the rest inactive"
1308
1309 check_seq_oid()
1310 {
1311         echo check file $1
1312         local old_ifs="$IFS"
1313         IFS=$'\t\n :'
1314         lmm=($($GETSTRIPE -v $1))
1315
1316         IFS=$'[:]'
1317         fid=($($LFS path2fid $1))
1318         IFS="$old_ifs"
1319
1320         # compare lmm_seq and lu_fid->f_seq
1321         [ ${lmm[4]} = ${fid[1]} ] || { error "SEQ mismatch"; return 1; }
1322         # compare lmm_object_id and lu_fid->oid
1323         [ ${lmm[6]} = ${fid[2]} ] || { error "OID mismatch"; return 2; }
1324
1325         echo -e "\tseq ${fid[1]}, oid ${fid[2]} ver ${fid[3]}\n\tstripe count: ${lmm[8]}"
1326
1327         [ "$FSTYPE" != "ldiskfs" ] && skip "can not check trusted.fid FSTYPE=$FSTYPE" && return 0
1328
1329         # check the trusted.fid attribute of the OST objects of the file
1330         for (( i=0, j=19; i < ${lmm[8]}; i++, j+=4 )); do
1331                 local obdidx=${lmm[$j]}
1332                 local devnum=$((obdidx + 1))
1333                 local objid=${lmm[$((j+1))]}
1334                 local group=${lmm[$((j+3))]}
1335                 local dev=$(ostdevname $devnum)
1336                 local dir=${MOUNT%/*}/ost$devnum
1337                 do_facet ost$devnum mount -t $FSTYPE $dev $dir $OST_MOUNT_OPTS ||
1338                         { error "mounting $dev as $FSTYPE failed"; return 3; }
1339
1340                 obj_filename=$(do_facet ost$devnum find $dir/O/$group -name $objid)
1341                 local ff=$(do_facet ost$devnum $LL_DECODE_FILTER_FID $obj_filename)
1342                 IFS=$'/= [:]'
1343                 ff=($(echo $ff))
1344                 IFS="$old_ifs"
1345
1346                 # compare lmm_seq and filter_fid->ff_parent.f_seq
1347                 [ ${ff[11]} = ${lmm[4]} ] || { error "parent SEQ mismatch"; return 4; }
1348                 # compare lmm_object_id and filter_fid->ff_parent.f_oid
1349                 [ ${ff[12]} = ${lmm[6]} ] || { error "parent OID mismatch"; return 5; }
1350                 let stripe=${ff[13]}
1351                 [ $stripe -eq $i ] || { error "stripe mismatch"; return 6; }
1352
1353                 echo -e "\t\tost $obdidx, objid $objid, group $group"
1354                 do_facet ost$devnum umount -d $dev
1355         done
1356 }
1357
1358 test_27z() {
1359         mkdir -p $DIR/$tdir
1360         $SETSTRIPE $DIR/$tdir/$tfile-1 -c 1 -o 0 -s 1m ||
1361                 { error "setstripe -c -1 failed"; return 1; }
1362         dd if=/dev/zero of=$DIR/$tdir/$tfile-1 bs=1M count=1 ||
1363                 { error "dd 1 mb failed"; return 2; }
1364         $SETSTRIPE $DIR/$tdir/$tfile-2 -c -1 -o $(($OSTCOUNT - 1)) -s 1m ||
1365                 { error "setstripe -c 1 failed"; return 3; }
1366         dd if=/dev/zero of=$DIR/$tdir/$tfile-2 bs=1M count=$OSTCOUNT ||
1367                 { error "dd $OSTCOUNT mb failed"; return 4; }
1368         sync
1369
1370         check_seq_oid $DIR/$tdir/$tfile-1 || return 5
1371         check_seq_oid $DIR/$tdir/$tfile-2 || return 6
1372 }
1373 run_test 27z "check SEQ/OID on the MDT and OST filesystems"
1374
1375 test_27A() { # b=19102
1376         local restore_size=`$GETSTRIPE -s $MOUNT`
1377         local restore_count=`$GETSTRIPE -c $MOUNT`
1378         local restore_offset=`$GETSTRIPE -o $MOUNT`
1379         $SETSTRIPE -c 0 -o -1 -s 0 $MOUNT
1380         local default_size=`$GETSTRIPE -s $MOUNT`
1381         local default_count=`$GETSTRIPE -c $MOUNT`
1382         local default_offset=`$GETSTRIPE -o $MOUNT`
1383         local dsize=$((1024 * 1024))
1384         [ $default_size -eq $dsize ] || error "stripe size $default_size != $dsize"
1385         [ $default_count -eq 1 ] || error "stripe count $default_count != 1"
1386         [ $default_offset -eq -1 ] || error "stripe offset $default_offset != -1"
1387         $SETSTRIPE -c $restore_count -o $restore_offset -s $restore_size $MOUNT
1388 }
1389 run_test 27A "check filesystem-wide default LOV EA values"
1390
1391 # createtest also checks that device nodes are created and
1392 # then visible correctly (#2091)
1393 test_28() { # bug 2091
1394         mkdir $DIR/d28
1395         $CREATETEST $DIR/d28/ct || error
1396 }
1397 run_test 28 "create/mknod/mkdir with bad file types ============"
1398
1399 test_29() {
1400         cancel_lru_locks mdc
1401         mkdir $DIR/d29
1402         touch $DIR/d29/foo
1403         log 'first d29'
1404         ls -l $DIR/d29
1405
1406         declare -i LOCKCOUNTORIG=0
1407         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
1408                 let LOCKCOUNTORIG=$LOCKCOUNTORIG+$lock_count
1409         done
1410         [ $LOCKCOUNTORIG -eq 0 ] && echo "No mdc lock count" && return 1
1411
1412         declare -i LOCKUNUSEDCOUNTORIG=0
1413         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
1414                 let LOCKUNUSEDCOUNTORIG=$LOCKUNUSEDCOUNTORIG+$unused_count
1415         done
1416
1417         log 'second d29'
1418         ls -l $DIR/d29
1419         log 'done'
1420
1421         declare -i LOCKCOUNTCURRENT=0
1422         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
1423                 let LOCKCOUNTCURRENT=$LOCKCOUNTCURRENT+$lock_count
1424         done
1425
1426         declare -i LOCKUNUSEDCOUNTCURRENT=0
1427         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
1428                 let LOCKUNUSEDCOUNTCURRENT=$LOCKUNUSEDCOUNTCURRENT+$unused_count
1429         done
1430
1431         if [ "$LOCKCOUNTCURRENT" -gt "$LOCKCOUNTORIG" ]; then
1432                 lctl set_param -n ldlm.dump_namespaces ""
1433                 error "CURRENT: $LOCKCOUNTCURRENT > $LOCKCOUNTORIG"
1434                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
1435                 log "dumped log to $TMP/test_29.dk (bug 5793)"
1436                 return 2
1437         fi
1438         if [ "$LOCKUNUSEDCOUNTCURRENT" -gt "$LOCKUNUSEDCOUNTORIG" ]; then
1439                 error "UNUSED: $LOCKUNUSEDCOUNTCURRENT > $LOCKUNUSEDCOUNTORIG"
1440                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
1441                 log "dumped log to $TMP/test_29.dk (bug 5793)"
1442                 return 3
1443         fi
1444 }
1445 run_test 29 "IT_GETATTR regression  ============================"
1446
1447 test_30a() { # was test_30
1448         cp `which ls` $DIR || cp /bin/ls $DIR
1449         $DIR/ls / || error
1450         rm $DIR/ls
1451 }
1452 run_test 30a "execute binary from Lustre (execve) =============="
1453
1454 test_30b() {
1455         cp `which ls` $DIR || cp /bin/ls $DIR
1456         chmod go+rx $DIR/ls
1457         $RUNAS $DIR/ls / || error
1458         rm $DIR/ls
1459 }
1460 run_test 30b "execute binary from Lustre as non-root ==========="
1461
1462 test_30c() { # b=22376
1463         cp `which ls` $DIR || cp /bin/ls $DIR
1464         chmod a-rw $DIR/ls
1465         cancel_lru_locks mdc
1466         cancel_lru_locks osc
1467         $RUNAS $DIR/ls / || error
1468         rm -f $DIR/ls
1469 }
1470 run_test 30c "execute binary from Lustre without read perms ===="
1471
1472 test_31a() {
1473         $OPENUNLINK $DIR/f31 $DIR/f31 || error
1474         $CHECKSTAT -a $DIR/f31 || error
1475 }
1476 run_test 31a "open-unlink file =================================="
1477
1478 test_31b() {
1479         touch $DIR/f31 || error
1480         ln $DIR/f31 $DIR/f31b || error
1481         multiop $DIR/f31b Ouc || error
1482         $CHECKSTAT -t file $DIR/f31 || error
1483 }
1484 run_test 31b "unlink file with multiple links while open ======="
1485
1486 test_31c() {
1487         touch $DIR/f31 || error
1488         ln $DIR/f31 $DIR/f31c || error
1489         multiop_bg_pause $DIR/f31 O_uc || return 1
1490         MULTIPID=$!
1491         multiop $DIR/f31c Ouc
1492         kill -USR1 $MULTIPID
1493         wait $MULTIPID
1494 }
1495 run_test 31c "open-unlink file with multiple links ============="
1496
1497 test_31d() {
1498         opendirunlink $DIR/d31d $DIR/d31d || error
1499         $CHECKSTAT -a $DIR/d31d || error
1500 }
1501 run_test 31d "remove of open directory ========================="
1502
1503 test_31e() { # bug 2904
1504         check_kernel_version 34 || return 0
1505         openfilleddirunlink $DIR/d31e || error
1506 }
1507 run_test 31e "remove of open non-empty directory ==============="
1508
1509 test_31f() { # bug 4554
1510         set -vx
1511         mkdir $DIR/d31f
1512         $SETSTRIPE $DIR/d31f -s 1048576 -c 1
1513         cp /etc/hosts $DIR/d31f
1514         ls -l $DIR/d31f
1515         $GETSTRIPE $DIR/d31f/hosts
1516         multiop_bg_pause $DIR/d31f D_c || return 1
1517         MULTIPID=$!
1518
1519         rm -rv $DIR/d31f || error "first of $DIR/d31f"
1520         mkdir $DIR/d31f
1521         $SETSTRIPE $DIR/d31f -s 1048576 -c 1
1522         cp /etc/hosts $DIR/d31f
1523         ls -l $DIR/d31f
1524         $GETSTRIPE $DIR/d31f/hosts
1525         multiop_bg_pause $DIR/d31f D_c || return 1
1526         MULTIPID2=$!
1527
1528         kill -USR1 $MULTIPID || error "first opendir $MULTIPID not running"
1529         wait $MULTIPID || error "first opendir $MULTIPID failed"
1530
1531         sleep 6
1532
1533         kill -USR1 $MULTIPID2 || error "second opendir $MULTIPID not running"
1534         wait $MULTIPID2 || error "second opendir $MULTIPID2 failed"
1535         set +vx
1536 }
1537 run_test 31f "remove of open directory with open-unlink file ==="
1538
1539 test_31g() {
1540         echo "-- cross directory link --"
1541         mkdir $DIR/d31g{a,b}
1542         touch $DIR/d31ga/f
1543         ln $DIR/d31ga/f $DIR/d31gb/g
1544         $CHECKSTAT -t file $DIR/d31ga/f || error "source"
1545         [ `stat -c%h $DIR/d31ga/f` == '2' ] || error "source nlink"
1546         $CHECKSTAT -t file $DIR/d31gb/g || error "target"
1547         [ `stat -c%h $DIR/d31gb/g` == '2' ] || error "target nlink"
1548 }
1549 run_test 31g "cross directory link==============="
1550
1551 test_31h() {
1552         echo "-- cross directory link --"
1553         mkdir $DIR/d31h
1554         mkdir $DIR/d31h/dir
1555         touch $DIR/d31h/f
1556         ln $DIR/d31h/f $DIR/d31h/dir/g
1557         $CHECKSTAT -t file $DIR/d31h/f || error "source"
1558         [ `stat -c%h $DIR/d31h/f` == '2' ] || error "source nlink"
1559         $CHECKSTAT -t file $DIR/d31h/dir/g || error "target"
1560         [ `stat -c%h $DIR/d31h/dir/g` == '2' ] || error "target nlink"
1561 }
1562 run_test 31h "cross directory link under child==============="
1563
1564 test_31i() {
1565         echo "-- cross directory link --"
1566         mkdir $DIR/d31i
1567         mkdir $DIR/d31i/dir
1568         touch $DIR/d31i/dir/f
1569         ln $DIR/d31i/dir/f $DIR/d31i/g
1570         $CHECKSTAT -t file $DIR/d31i/dir/f || error "source"
1571         [ `stat -c%h $DIR/d31i/dir/f` == '2' ] || error "source nlink"
1572         $CHECKSTAT -t file $DIR/d31i/g || error "target"
1573         [ `stat -c%h $DIR/d31i/g` == '2' ] || error "target nlink"
1574 }
1575 run_test 31i "cross directory link under parent==============="
1576
1577
1578 test_31j() {
1579         mkdir $DIR/d31j
1580         mkdir $DIR/d31j/dir1
1581         ln $DIR/d31j/dir1 $DIR/d31j/dir2 && error "ln for dir"
1582         link $DIR/d31j/dir1 $DIR/d31j/dir3 && error "link for dir"
1583         mlink $DIR/d31j/dir1 $DIR/d31j/dir4 && error "mlink for dir"
1584         mlink $DIR/d31j/dir1 $DIR/d31j/dir1 && error "mlink to the same dir"
1585         return 0
1586 }
1587 run_test 31j "link for directory==============="
1588
1589
1590 test_31k() {
1591         mkdir $DIR/d31k
1592         touch $DIR/d31k/s
1593         touch $DIR/d31k/exist
1594         mlink $DIR/d31k/s $DIR/d31k/t || error "mlink"
1595         mlink $DIR/d31k/s $DIR/d31k/exist && error "mlink to exist file"
1596         mlink $DIR/d31k/s $DIR/d31k/s && error "mlink to the same file"
1597         mlink $DIR/d31k/s $DIR/d31k && error "mlink to parent dir"
1598         mlink $DIR/d31k $DIR/d31k/s && error "mlink parent dir to target"
1599         mlink $DIR/d31k/not-exist $DIR/d31k/foo && error "mlink non-existing to new"
1600         mlink $DIR/d31k/not-exist $DIR/d31k/s && error "mlink non-existing to exist"
1601         return 0
1602 }
1603 run_test 31k "link to file: the same, non-existing, dir==============="
1604
1605 test_31m() {
1606         mkdir $DIR/d31m
1607         touch $DIR/d31m/s
1608         mkdir $DIR/d31m2
1609         touch $DIR/d31m2/exist
1610         mlink $DIR/d31m/s $DIR/d31m2/t || error "mlink"
1611         mlink $DIR/d31m/s $DIR/d31m2/exist && error "mlink to exist file"
1612         mlink $DIR/d31m/s $DIR/d31m2 && error "mlink to parent dir"
1613         mlink $DIR/d31m2 $DIR/d31m/s && error "mlink parent dir to target"
1614         mlink $DIR/d31m/not-exist $DIR/d31m2/foo && error "mlink non-existing to new"
1615         mlink $DIR/d31m/not-exist $DIR/d31m2/s && error "mlink non-existing to exist"
1616         return 0
1617 }
1618 run_test 31m "link to file: the same, non-existing, dir==============="
1619
1620 test_32a() {
1621         echo "== more mountpoints and symlinks ================="
1622         [ -e $DIR/d32a ] && rm -fr $DIR/d32a
1623         mkdir -p $DIR/d32a/ext2-mountpoint
1624         mount -t ext2 -o loop $EXT2_DEV $DIR/d32a/ext2-mountpoint || error
1625         $CHECKSTAT -t dir $DIR/d32a/ext2-mountpoint/.. || error
1626         $UMOUNT $DIR/d32a/ext2-mountpoint || error
1627 }
1628 run_test 32a "stat d32a/ext2-mountpoint/.. ====================="
1629
1630 test_32b() {
1631         [ -e $DIR/d32b ] && rm -fr $DIR/d32b
1632         mkdir -p $DIR/d32b/ext2-mountpoint
1633         mount -t ext2 -o loop $EXT2_DEV $DIR/d32b/ext2-mountpoint || error
1634         ls -al $DIR/d32b/ext2-mountpoint/.. || error
1635         $UMOUNT $DIR/d32b/ext2-mountpoint || error
1636 }
1637 run_test 32b "open d32b/ext2-mountpoint/.. ====================="
1638
1639 test_32c() {
1640         [ -e $DIR/d32c ] && rm -fr $DIR/d32c
1641         mkdir -p $DIR/d32c/ext2-mountpoint
1642         mount -t ext2 -o loop $EXT2_DEV $DIR/d32c/ext2-mountpoint || error
1643         mkdir -p $DIR/d32c/d2/test_dir
1644         $CHECKSTAT -t dir $DIR/d32c/ext2-mountpoint/../d2/test_dir || error
1645         $UMOUNT $DIR/d32c/ext2-mountpoint || error
1646 }
1647 run_test 32c "stat d32c/ext2-mountpoint/../d2/test_dir ========="
1648
1649 test_32d() {
1650         [ -e $DIR/d32d ] && rm -fr $DIR/d32d
1651         mkdir -p $DIR/d32d/ext2-mountpoint
1652         mount -t ext2 -o loop $EXT2_DEV $DIR/d32d/ext2-mountpoint || error
1653         mkdir -p $DIR/d32d/d2/test_dir
1654         ls -al $DIR/d32d/ext2-mountpoint/../d2/test_dir || error
1655         $UMOUNT $DIR/d32d/ext2-mountpoint || error
1656 }
1657 run_test 32d "open d32d/ext2-mountpoint/../d2/test_dir ========="
1658
1659 test_32e() {
1660         [ -e $DIR/d32e ] && rm -fr $DIR/d32e
1661         mkdir -p $DIR/d32e/tmp
1662         TMP_DIR=$DIR/d32e/tmp
1663         ln -s $DIR/d32e $TMP_DIR/symlink11
1664         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
1665         $CHECKSTAT -t link $DIR/d32e/tmp/symlink11 || error
1666         $CHECKSTAT -t link $DIR/d32e/symlink01 || error
1667 }
1668 run_test 32e "stat d32e/symlink->tmp/symlink->lustre-subdir ===="
1669
1670 test_32f() {
1671         [ -e $DIR/d32f ] && rm -fr $DIR/d32f
1672         mkdir -p $DIR/d32f/tmp
1673         TMP_DIR=$DIR/d32f/tmp
1674         ln -s $DIR/d32f $TMP_DIR/symlink11
1675         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
1676         ls $DIR/d32f/tmp/symlink11  || error
1677         ls $DIR/d32f/symlink01 || error
1678 }
1679 run_test 32f "open d32f/symlink->tmp/symlink->lustre-subdir ===="
1680
1681 test_32g() {
1682         TMP_DIR=$DIR/$tdir/tmp
1683         mkdir -p $TMP_DIR $DIR/${tdir}2
1684         ln -s $DIR/${tdir}2 $TMP_DIR/symlink12
1685         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
1686         $CHECKSTAT -t link $TMP_DIR/symlink12 || error
1687         $CHECKSTAT -t link $DIR/$tdir/symlink02 || error
1688         $CHECKSTAT -t dir -f $TMP_DIR/symlink12 || error
1689         $CHECKSTAT -t dir -f $DIR/$tdir/symlink02 || error
1690 }
1691 run_test 32g "stat d32g/symlink->tmp/symlink->lustre-subdir/${tdir}2"
1692
1693 test_32h() {
1694         rm -fr $DIR/$tdir $DIR/${tdir}2
1695         TMP_DIR=$DIR/$tdir/tmp
1696         mkdir -p $TMP_DIR $DIR/${tdir}2
1697         ln -s $DIR/${tdir}2 $TMP_DIR/symlink12
1698         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
1699         ls $TMP_DIR/symlink12 || error
1700         ls $DIR/$tdir/symlink02  || error
1701 }
1702 run_test 32h "open d32h/symlink->tmp/symlink->lustre-subdir/${tdir}2"
1703
1704 test_32i() {
1705         [ -e $DIR/d32i ] && rm -fr $DIR/d32i
1706         mkdir -p $DIR/d32i/ext2-mountpoint
1707         mount -t ext2 -o loop $EXT2_DEV $DIR/d32i/ext2-mountpoint || error
1708         touch $DIR/d32i/test_file
1709         $CHECKSTAT -t file $DIR/d32i/ext2-mountpoint/../test_file || error
1710         $UMOUNT $DIR/d32i/ext2-mountpoint || error
1711 }
1712 run_test 32i "stat d32i/ext2-mountpoint/../test_file ==========="
1713
1714 test_32j() {
1715         [ -e $DIR/d32j ] && rm -fr $DIR/d32j
1716         mkdir -p $DIR/d32j/ext2-mountpoint
1717         mount -t ext2 -o loop $EXT2_DEV $DIR/d32j/ext2-mountpoint || error
1718         touch $DIR/d32j/test_file
1719         cat $DIR/d32j/ext2-mountpoint/../test_file || error
1720         $UMOUNT $DIR/d32j/ext2-mountpoint || error
1721 }
1722 run_test 32j "open d32j/ext2-mountpoint/../test_file ==========="
1723
1724 test_32k() {
1725         rm -fr $DIR/d32k
1726         mkdir -p $DIR/d32k/ext2-mountpoint
1727         mount -t ext2 -o loop $EXT2_DEV $DIR/d32k/ext2-mountpoint
1728         mkdir -p $DIR/d32k/d2
1729         touch $DIR/d32k/d2/test_file || error
1730         $CHECKSTAT -t file $DIR/d32k/ext2-mountpoint/../d2/test_file || error
1731         $UMOUNT $DIR/d32k/ext2-mountpoint || error
1732 }
1733 run_test 32k "stat d32k/ext2-mountpoint/../d2/test_file ========"
1734
1735 test_32l() {
1736         rm -fr $DIR/d32l
1737         mkdir -p $DIR/d32l/ext2-mountpoint
1738         mount -t ext2 -o loop $EXT2_DEV $DIR/d32l/ext2-mountpoint || error
1739         mkdir -p $DIR/d32l/d2
1740         touch $DIR/d32l/d2/test_file
1741         cat  $DIR/d32l/ext2-mountpoint/../d2/test_file || error
1742         $UMOUNT $DIR/d32l/ext2-mountpoint || error
1743 }
1744 run_test 32l "open d32l/ext2-mountpoint/../d2/test_file ========"
1745
1746 test_32m() {
1747         rm -fr $DIR/d32m
1748         mkdir -p $DIR/d32m/tmp
1749         TMP_DIR=$DIR/d32m/tmp
1750         ln -s $DIR $TMP_DIR/symlink11
1751         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
1752         $CHECKSTAT -t link $DIR/d32m/tmp/symlink11 || error
1753         $CHECKSTAT -t link $DIR/d32m/symlink01 || error
1754 }
1755 run_test 32m "stat d32m/symlink->tmp/symlink->lustre-root ======"
1756
1757 test_32n() {
1758         rm -fr $DIR/d32n
1759         mkdir -p $DIR/d32n/tmp
1760         TMP_DIR=$DIR/d32n/tmp
1761         ln -s $DIR $TMP_DIR/symlink11
1762         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
1763         ls -l $DIR/d32n/tmp/symlink11  || error
1764         ls -l $DIR/d32n/symlink01 || error
1765 }
1766 run_test 32n "open d32n/symlink->tmp/symlink->lustre-root ======"
1767
1768 test_32o() {
1769         rm -fr $DIR/d32o $DIR/$tfile
1770         touch $DIR/$tfile
1771         mkdir -p $DIR/d32o/tmp
1772         TMP_DIR=$DIR/d32o/tmp
1773         ln -s $DIR/$tfile $TMP_DIR/symlink12
1774         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
1775         $CHECKSTAT -t link $DIR/d32o/tmp/symlink12 || error
1776         $CHECKSTAT -t link $DIR/d32o/symlink02 || error
1777         $CHECKSTAT -t file -f $DIR/d32o/tmp/symlink12 || error
1778         $CHECKSTAT -t file -f $DIR/d32o/symlink02 || error
1779 }
1780 run_test 32o "stat d32o/symlink->tmp/symlink->lustre-root/$tfile"
1781
1782 test_32p() {
1783     log 32p_1
1784         rm -fr $DIR/d32p
1785     log 32p_2
1786         rm -f $DIR/$tfile
1787     log 32p_3
1788         touch $DIR/$tfile
1789     log 32p_4
1790         mkdir -p $DIR/d32p/tmp
1791     log 32p_5
1792         TMP_DIR=$DIR/d32p/tmp
1793     log 32p_6
1794         ln -s $DIR/$tfile $TMP_DIR/symlink12
1795     log 32p_7
1796         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
1797     log 32p_8
1798         cat $DIR/d32p/tmp/symlink12 || error
1799     log 32p_9
1800         cat $DIR/d32p/symlink02 || error
1801     log 32p_10
1802 }
1803 run_test 32p "open d32p/symlink->tmp/symlink->lustre-root/$tfile"
1804
1805 test_32q() {
1806         [ -e $DIR/d32q ] && rm -fr $DIR/d32q
1807         mkdir -p $DIR/d32q
1808         touch $DIR/d32q/under_the_mount
1809         mount -t ext2 -o loop $EXT2_DEV $DIR/d32q
1810         ls $DIR/d32q/under_the_mount && error || true
1811         $UMOUNT $DIR/d32q || error
1812 }
1813 run_test 32q "stat follows mountpoints in Lustre (should return error)"
1814
1815 test_32r() {
1816         [ -e $DIR/d32r ] && rm -fr $DIR/d32r
1817         mkdir -p $DIR/d32r
1818         touch $DIR/d32r/under_the_mount
1819         mount -t ext2 -o loop $EXT2_DEV $DIR/d32r
1820         ls $DIR/d32r | grep -q under_the_mount && error || true
1821         $UMOUNT $DIR/d32r || error
1822 }
1823 run_test 32r "opendir follows mountpoints in Lustre (should return error)"
1824
1825 test_33() {
1826         rm -f $DIR/$tfile
1827         touch $DIR/$tfile
1828         chmod 444 $DIR/$tfile
1829         chown $RUNAS_ID $DIR/$tfile
1830         log 33_1
1831         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
1832         log 33_2
1833 }
1834 run_test 33 "write file with mode 444 (should return error) ===="
1835
1836 test_33a() {
1837         rm -fr $DIR/d33
1838         mkdir -p $DIR/d33
1839         chown $RUNAS_ID $DIR/d33
1840         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/d33/f33|| error "create"
1841         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/d33/f33 && \
1842                 error "open RDWR" || true
1843 }
1844 run_test 33a "test open file(mode=0444) with O_RDWR (should return error)"
1845
1846 test_33b() {
1847         rm -fr $DIR/d33
1848         mkdir -p $DIR/d33
1849         chown $RUNAS_ID $DIR/d33
1850         $RUNAS $OPENFILE -f 1286739555 $DIR/d33/f33 && error "create" || true
1851 }
1852 run_test 33b "test open file with malformed flags (No panic and return error)"
1853
1854 test_33c() {
1855         local ostnum
1856         local ostname
1857         local write_bytes
1858         local all_zeros
1859
1860         all_zeros=:
1861         rm -fr $DIR/d33
1862         mkdir -p $DIR/d33
1863         # Read: 0, Write: 4, create/destroy: 2/0, stat: 1, punch: 0
1864
1865         sync
1866         for ostnum in $(seq $OSTCOUNT); do
1867                 # test-framework's OST numbering is one-based, while Lustre's
1868                 # is zero-based
1869                 ostname=$(printf "lustre-OST%.4d" $((ostnum - 1)))
1870                 # Parsing llobdstat's output sucks; we could grep the /proc
1871                 # path, but that's likely to not be as portable as using the
1872                 # llobdstat utility.  So we parse lctl output instead.
1873                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
1874                         obdfilter/$ostname/stats |
1875                         awk '/^write_bytes/ {print $7}' )
1876                 echo "baseline_write_bytes@$OSTnum/$ostname=$write_bytes"
1877                 if (( ${write_bytes:-0} > 0 ))
1878                 then
1879                         all_zeros=false
1880                         break;
1881                 fi
1882         done
1883
1884         $all_zeros || return 0
1885
1886         # Write four bytes
1887         echo foo > $DIR/d33/bar
1888         # Really write them
1889         sync
1890
1891         # Total up write_bytes after writing.  We'd better find non-zeros.
1892         for ostnum in $(seq $OSTCOUNT); do
1893                 ostname=$(printf "lustre-OST%.4d" $((ostnum - 1)))
1894                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
1895                         obdfilter/$ostname/stats |
1896                         awk '/^write_bytes/ {print $7}' )
1897                 echo "write_bytes@$OSTnum/$ostname=$write_bytes"
1898                 if (( ${write_bytes:-0} > 0 ))
1899                 then
1900                         all_zeros=false
1901                         break;
1902                 fi
1903         done
1904
1905         if $all_zeros
1906         then
1907                 for ostnum in $(seq $OSTCOUNT); do
1908                         ostname=$(printf "lustre-OST%.4d" $((ostnum - 1)))
1909                         echo "Check that write_bytes is present in obdfilter/*/stats:"
1910                         do_facet ost$ostnum lctl get_param -n \
1911                                 obdfilter/$ostname/stats
1912                 done
1913                 error "OST not keeping write_bytes stats (b22312)"
1914         fi
1915 }
1916 run_test 33c "test llobdstat and write_bytes"
1917
1918 TEST_34_SIZE=${TEST_34_SIZE:-2000000000000}
1919 test_34a() {
1920         rm -f $DIR/f34
1921         $MCREATE $DIR/f34 || error
1922         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
1923         $TRUNCATE $DIR/f34 $TEST_34_SIZE || error
1924         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
1925         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
1926 }
1927 run_test 34a "truncate file that has not been opened ==========="
1928
1929 test_34b() {
1930         [ ! -f $DIR/f34 ] && test_34a
1931         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
1932         $OPENFILE -f O_RDONLY $DIR/f34
1933         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
1934         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
1935 }
1936 run_test 34b "O_RDONLY opening file doesn't create objects ====="
1937
1938 test_34c() {
1939         [ ! -f $DIR/f34 ] && test_34a
1940         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
1941         $OPENFILE -f O_RDWR $DIR/f34
1942         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" && error
1943         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
1944 }
1945 run_test 34c "O_RDWR opening file-with-size works =============="
1946
1947 test_34d() {
1948         [ ! -f $DIR/f34 ] && test_34a
1949         dd if=/dev/zero of=$DIR/f34 conv=notrunc bs=4k count=1 || error
1950         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
1951         rm $DIR/f34
1952 }
1953 run_test 34d "write to sparse file ============================="
1954
1955 test_34e() {
1956         rm -f $DIR/f34e
1957         $MCREATE $DIR/f34e || error
1958         $TRUNCATE $DIR/f34e 1000 || error
1959         $CHECKSTAT -s 1000 $DIR/f34e || error
1960         $OPENFILE -f O_RDWR $DIR/f34e
1961         $CHECKSTAT -s 1000 $DIR/f34e || error
1962 }
1963 run_test 34e "create objects, some with size and some without =="
1964
1965 test_34f() { # bug 6242, 6243
1966         SIZE34F=48000
1967         rm -f $DIR/f34f
1968         $MCREATE $DIR/f34f || error
1969         $TRUNCATE $DIR/f34f $SIZE34F || error "truncating $DIR/f3f to $SIZE34F"
1970         dd if=$DIR/f34f of=$TMP/f34f
1971         $CHECKSTAT -s $SIZE34F $TMP/f34f || error "$TMP/f34f not $SIZE34F bytes"
1972         dd if=/dev/zero of=$TMP/f34fzero bs=$SIZE34F count=1
1973         cmp $DIR/f34f $TMP/f34fzero || error "$DIR/f34f not all zero"
1974         cmp $TMP/f34f $TMP/f34fzero || error "$TMP/f34f not all zero"
1975         rm $TMP/f34f $TMP/f34fzero $DIR/f34f
1976 }
1977 run_test 34f "read from a file with no objects until EOF ======="
1978
1979 test_34g() {
1980         dd if=/dev/zero of=$DIR/$tfile bs=1 count=100 seek=$TEST_34_SIZE || error
1981         $TRUNCATE $DIR/$tfile $((TEST_34_SIZE / 2))|| error
1982         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile || error "truncate failed"
1983         cancel_lru_locks osc
1984         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile || \
1985                 error "wrong size after lock cancel"
1986
1987         $TRUNCATE $DIR/$tfile $TEST_34_SIZE || error
1988         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile || \
1989                 error "expanding truncate failed"
1990         cancel_lru_locks osc
1991         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile || \
1992                 error "wrong expanded size after lock cancel"
1993 }
1994 run_test 34g "truncate long file ==============================="
1995
1996 test_35a() {
1997         cp /bin/sh $DIR/f35a
1998         chmod 444 $DIR/f35a
1999         chown $RUNAS_ID $DIR/f35a
2000         $RUNAS $DIR/f35a && error || true
2001         rm $DIR/f35a
2002 }
2003 run_test 35a "exec file with mode 444 (should return and not leak) ====="
2004
2005 test_36a() {
2006         rm -f $DIR/f36
2007         utime $DIR/f36 || error
2008 }
2009 run_test 36a "MDS utime check (mknod, utime) ==================="
2010
2011 test_36b() {
2012         echo "" > $DIR/f36
2013         utime $DIR/f36 || error
2014 }
2015 run_test 36b "OST utime check (open, utime) ===================="
2016
2017 test_36c() {
2018         rm -f $DIR/d36/f36
2019         mkdir $DIR/d36
2020         chown $RUNAS_ID $DIR/d36
2021         $RUNAS utime $DIR/d36/f36 || error
2022 }
2023 run_test 36c "non-root MDS utime check (mknod, utime) =========="
2024
2025 test_36d() {
2026         [ ! -d $DIR/d36 ] && test_36c
2027         echo "" > $DIR/d36/f36
2028         $RUNAS utime $DIR/d36/f36 || error
2029 }
2030 run_test 36d "non-root OST utime check (open, utime) ==========="
2031
2032 test_36e() {
2033         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
2034         mkdir -p $DIR/$tdir
2035         touch $DIR/$tdir/$tfile
2036         $RUNAS utime $DIR/$tdir/$tfile && \
2037                 error "utime worked, expected failure" || true
2038 }
2039 run_test 36e "utime on non-owned file (should return error) ===="
2040
2041 subr_36fh() {
2042         local fl="$1"
2043         local LANG_SAVE=$LANG
2044         local LC_LANG_SAVE=$LC_LANG
2045         export LANG=C LC_LANG=C # for date language
2046
2047         DATESTR="Dec 20  2000"
2048         mkdir -p $DIR/$tdir
2049         lctl set_param fail_loc=$fl
2050         date; date +%s
2051         cp /etc/hosts $DIR/$tdir/$tfile
2052         sync & # write RPC generated with "current" inode timestamp, but delayed
2053         sleep 1
2054         touch --date="$DATESTR" $DIR/$tdir/$tfile # setattr timestamp in past
2055         LS_BEFORE="`ls -l $DIR/$tdir/$tfile`" # old timestamp from client cache
2056         cancel_lru_locks osc
2057         LS_AFTER="`ls -l $DIR/$tdir/$tfile`"  # timestamp from OST object
2058         date; date +%s
2059         [ "$LS_BEFORE" != "$LS_AFTER" ] && \
2060                 echo "BEFORE: $LS_BEFORE" && \
2061                 echo "AFTER : $LS_AFTER" && \
2062                 echo "WANT  : $DATESTR" && \
2063                 error "$DIR/$tdir/$tfile timestamps changed" || true
2064
2065         export LANG=$LANG_SAVE LC_LANG=$LC_LANG_SAVE
2066 }
2067
2068 test_36f() {
2069         #define OBD_FAIL_OST_BRW_PAUSE_BULK 0x214
2070         subr_36fh "0x80000214"
2071 }
2072 run_test 36f "utime on file racing with OST BRW write =========="
2073
2074 test_36g() {
2075         remote_ost_nodsh && skip "remote OST with nodsh" && return
2076
2077         mkdir -p $DIR/$tdir
2078         export FMD_MAX_AGE=`do_facet ost1 lctl get_param -n obdfilter.*.client_cache_seconds 2> /dev/null | head -n 1`
2079         FMD_BEFORE="`awk '/ll_fmd_cache/ { print $2 }' /proc/slabinfo`"
2080         touch $DIR/$tdir/$tfile
2081         sleep $((FMD_MAX_AGE + 12))
2082         FMD_AFTER="`awk '/ll_fmd_cache/ { print $2 }' /proc/slabinfo`"
2083         [ "$FMD_AFTER" -gt "$FMD_BEFORE" ] && \
2084                 echo "AFTER : $FMD_AFTER > BEFORE $FMD_BEFORE" && \
2085                 error "fmd didn't expire after ping" || true
2086 }
2087 run_test 36g "filter mod data cache expiry ====================="
2088
2089 test_36h() {
2090         #define OBD_FAIL_OST_BRW_PAUSE_BULK2 0x227
2091         subr_36fh "0x80000227"
2092 }
2093 run_test 36h "utime on file racing with OST BRW write =========="
2094
2095 test_37() {
2096         mkdir -p $DIR/$tdir
2097         echo f > $DIR/$tdir/fbugfile
2098         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir
2099         ls $DIR/$tdir | grep "\<fbugfile\>" && error
2100         $UMOUNT $DIR/$tdir || error
2101         rm -f $DIR/$tdir/fbugfile || error
2102 }
2103 run_test 37 "ls a mounted file system to check old content ====="
2104
2105 test_38() {
2106         local file=$DIR/$tfile
2107         touch $file
2108         openfile -f O_DIRECTORY $file
2109         local RC=$?
2110         local ENOTDIR=20
2111         [ $RC -eq 0 ] && error "opened file $file with O_DIRECTORY" || true
2112         [ $RC -eq $ENOTDIR ] || error "error $RC should be ENOTDIR ($ENOTDIR)"
2113 }
2114 run_test 38 "open a regular file with O_DIRECTORY should return -ENOTDIR ==="
2115
2116 test_39() {
2117         touch $DIR/$tfile
2118         touch $DIR/${tfile}2
2119 #       ls -l  $DIR/$tfile $DIR/${tfile}2
2120 #       ls -lu  $DIR/$tfile $DIR/${tfile}2
2121 #       ls -lc  $DIR/$tfile $DIR/${tfile}2
2122         sleep 2
2123         $OPENFILE -f O_CREAT:O_TRUNC:O_WRONLY $DIR/${tfile}2
2124         if [ ! $DIR/${tfile}2 -nt $DIR/$tfile ]; then
2125                 echo "mtime"
2126                 ls -l --full-time $DIR/$tfile $DIR/${tfile}2
2127                 echo "atime"
2128                 ls -lu --full-time $DIR/$tfile $DIR/${tfile}2
2129                 echo "ctime"
2130                 ls -lc --full-time $DIR/$tfile $DIR/${tfile}2
2131                 error "O_TRUNC didn't change timestamps"
2132         fi
2133 }
2134 run_test 39 "mtime changed on create ==========================="
2135
2136 test_39b() {
2137         mkdir -p $DIR/$tdir
2138         cp -p /etc/passwd $DIR/$tdir/fopen
2139         cp -p /etc/passwd $DIR/$tdir/flink
2140         cp -p /etc/passwd $DIR/$tdir/funlink
2141         cp -p /etc/passwd $DIR/$tdir/frename
2142         ln $DIR/$tdir/funlink $DIR/$tdir/funlink2
2143
2144         sleep 1
2145         echo "aaaaaa" >> $DIR/$tdir/fopen
2146         echo "aaaaaa" >> $DIR/$tdir/flink
2147         echo "aaaaaa" >> $DIR/$tdir/funlink
2148         echo "aaaaaa" >> $DIR/$tdir/frename
2149
2150         local open_new=`stat -c %Y $DIR/$tdir/fopen`
2151         local link_new=`stat -c %Y $DIR/$tdir/flink`
2152         local unlink_new=`stat -c %Y $DIR/$tdir/funlink`
2153         local rename_new=`stat -c %Y $DIR/$tdir/frename`
2154
2155         cat $DIR/$tdir/fopen > /dev/null
2156         ln $DIR/$tdir/flink $DIR/$tdir/flink2
2157         rm -f $DIR/$tdir/funlink2
2158         mv -f $DIR/$tdir/frename $DIR/$tdir/frename2
2159
2160         for (( i=0; i < 2; i++ )) ; do
2161                 local open_new2=`stat -c %Y $DIR/$tdir/fopen`
2162                 local link_new2=`stat -c %Y $DIR/$tdir/flink`
2163                 local unlink_new2=`stat -c %Y $DIR/$tdir/funlink`
2164                 local rename_new2=`stat -c %Y $DIR/$tdir/frename2`
2165
2166                 [ $open_new2 -eq $open_new ] || error "open file reverses mtime"
2167                 [ $link_new2 -eq $link_new ] || error "link file reverses mtime"
2168                 [ $unlink_new2 -eq $unlink_new ] || error "unlink file reverses mtime"
2169                 [ $rename_new2 -eq $rename_new ] || error "rename file reverses mtime"
2170
2171                 cancel_lru_locks osc
2172                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2173         done
2174 }
2175 run_test 39b "mtime change on open, link, unlink, rename  ======"
2176
2177 # this should be set to past
2178 TEST_39_MTIME=`date -d "1 year ago" +%s`
2179
2180 # bug 11063
2181 test_39c() {
2182         touch $DIR1/$tfile
2183         sleep 2
2184         local mtime0=`stat -c %Y $DIR1/$tfile`
2185
2186         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2187         local mtime1=`stat -c %Y $DIR1/$tfile`
2188         [ "$mtime1" = $TEST_39_MTIME ] || \
2189                 error "mtime is not set to past: $mtime1, should be $TEST_39_MTIME"
2190
2191         local d1=`date +%s`
2192         echo hello >> $DIR1/$tfile
2193         local d2=`date +%s`
2194         local mtime2=`stat -c %Y $DIR1/$tfile`
2195         [ "$mtime2" -ge "$d1" ] && [ "$mtime2" -le "$d2" ] || \
2196                 error "mtime is not updated on write: $d1 <= $mtime2 <= $d2"
2197
2198         mv $DIR1/$tfile $DIR1/$tfile-1
2199
2200         for (( i=0; i < 2; i++ )) ; do
2201                 local mtime3=`stat -c %Y $DIR1/$tfile-1`
2202                 [ "$mtime2" = "$mtime3" ] || \
2203                         error "mtime ($mtime2) changed (to $mtime3) on rename"
2204
2205                 cancel_lru_locks osc
2206                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2207         done
2208 }
2209 run_test 39c "mtime change on rename ==========================="
2210
2211 # bug 21114
2212 test_39d() {
2213         touch $DIR1/$tfile
2214
2215         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2216
2217         for (( i=0; i < 2; i++ )) ; do
2218                 local mtime=`stat -c %Y $DIR1/$tfile`
2219                 [ $mtime = $TEST_39_MTIME ] || \
2220                         error "mtime($mtime) is not set to $TEST_39_MTIME"
2221
2222                 cancel_lru_locks osc
2223                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2224         done
2225 }
2226 run_test 39d "create, utime, stat =============================="
2227
2228 # bug 21114
2229 test_39e() {
2230         touch $DIR1/$tfile
2231         local mtime1=`stat -c %Y $DIR1/$tfile`
2232
2233         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2234         
2235         for (( i=0; i < 2; i++ )) ; do
2236                 local mtime2=`stat -c %Y $DIR1/$tfile`
2237                 [ $mtime2 = $TEST_39_MTIME ] || \
2238                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
2239
2240                 cancel_lru_locks osc
2241                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2242         done
2243 }
2244 run_test 39e "create, stat, utime, stat ========================"
2245
2246 # bug 21114
2247 test_39f() {
2248         touch $DIR1/$tfile
2249         mtime1=`stat -c %Y $DIR1/$tfile`
2250
2251         sleep 2
2252         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2253
2254         for (( i=0; i < 2; i++ )) ; do
2255                 local mtime2=`stat -c %Y $DIR1/$tfile`
2256                 [ $mtime2 = $TEST_39_MTIME ] || \
2257                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
2258
2259                 cancel_lru_locks osc
2260                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2261         done
2262 }
2263 run_test 39f "create, stat, sleep, utime, stat ================="
2264
2265 # bug 11063
2266 test_39g() {
2267         echo hello >> $DIR1/$tfile
2268         local mtime1=`stat -c %Y $DIR1/$tfile`
2269
2270         sleep 2
2271         chmod o+r $DIR1/$tfile
2272  
2273         for (( i=0; i < 2; i++ )) ; do
2274                 local mtime2=`stat -c %Y $DIR1/$tfile`
2275                 [ "$mtime1" = "$mtime2" ] || \
2276                         error "lost mtime: $mtime2, should be $mtime1"
2277
2278                 cancel_lru_locks osc
2279                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2280         done
2281 }
2282 run_test 39g "write, chmod, stat ==============================="
2283
2284 # bug 11063
2285 test_39h() {
2286         touch $DIR1/$tfile
2287         sleep 1
2288
2289         local d1=`date`
2290         echo hello >> $DIR1/$tfile
2291         local mtime1=`stat -c %Y $DIR1/$tfile`
2292
2293         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2294         local d2=`date`
2295         if [ "$d1" != "$d2" ]; then
2296                 echo "write and touch not within one second"
2297         else
2298                 for (( i=0; i < 2; i++ )) ; do
2299                         local mtime2=`stat -c %Y $DIR1/$tfile`
2300                         [ "$mtime2" = $TEST_39_MTIME ] || \
2301                                 error "lost mtime: $mtime2, should be $TEST_39_MTIME"
2302
2303                         cancel_lru_locks osc
2304                         if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2305                 done
2306         fi
2307 }
2308 run_test 39h "write, utime within one second, stat ============="
2309
2310 test_39i() {
2311         touch $DIR1/$tfile
2312         sleep 1
2313
2314         echo hello >> $DIR1/$tfile
2315         local mtime1=`stat -c %Y $DIR1/$tfile`
2316
2317         mv $DIR1/$tfile $DIR1/$tfile-1
2318
2319         for (( i=0; i < 2; i++ )) ; do
2320                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
2321
2322                 [ "$mtime1" = "$mtime2" ] || \
2323                         error "lost mtime: $mtime2, should be $mtime1"
2324
2325                 cancel_lru_locks osc
2326                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2327         done
2328 }
2329 run_test 39i "write, rename, stat =============================="
2330
2331 test_39j() {
2332         touch $DIR1/$tfile
2333         sleep 1
2334
2335         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c || error "multiop failed"
2336         local multipid=$!
2337         local mtime1=`stat -c %Y $DIR1/$tfile`
2338
2339         mv $DIR1/$tfile $DIR1/$tfile-1
2340
2341         kill -USR1 $multipid
2342         wait $multipid || error "multiop close failed"
2343
2344         for (( i=0; i < 2; i++ )) ; do
2345                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
2346                 [ "$mtime1" = "$mtime2" ] || \
2347                         error "mtime is lost on close: $mtime2, should be $mtime1"
2348
2349                 cancel_lru_locks osc
2350                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2351         done
2352 }
2353 run_test 39j "write, rename, close, stat ======================="
2354
2355 test_39k() {
2356         touch $DIR1/$tfile
2357         sleep 1
2358
2359         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c || error "multiop failed"
2360         local multipid=$!
2361         local mtime1=`stat -c %Y $DIR1/$tfile`
2362
2363         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2364
2365         kill -USR1 $multipid
2366         wait $multipid || error "multiop close failed"
2367                 
2368         for (( i=0; i < 2; i++ )) ; do
2369                 local mtime2=`stat -c %Y $DIR1/$tfile`
2370
2371                 [ "$mtime2" = $TEST_39_MTIME ] || \
2372                         error "mtime is lost on close: $mtime2, should be $TEST_39_MTIME"
2373
2374                 cancel_lru_locks osc
2375                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2376         done
2377 }
2378 run_test 39k "write, utime, close, stat ========================"
2379
2380 # this should be set to future
2381 TEST_39_ATIME=`date -d "1 year" +%s`
2382
2383 test_39l() {
2384         local atime_diff=$(do_facet $SINGLEMDS lctl get_param -n mdd.*.atime_diff)
2385
2386         mkdir -p $DIR/$tdir
2387
2388         # test setting directory atime to future
2389         touch -a -d @$TEST_39_ATIME $DIR/$tdir
2390         local atime=$(stat -c %X $DIR/$tdir)
2391         [ "$atime" = $TEST_39_ATIME ] || \
2392                 error "atime is not set to future: $atime, should be $TEST_39_ATIME"
2393
2394         # test setting directory atime from future to now
2395         local d1=$(date +%s)
2396         ls $DIR/$tdir
2397         local d2=$(date +%s)
2398
2399         cancel_lru_locks mdc
2400         atime=$(stat -c %X $DIR/$tdir)
2401         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] || \
2402                 error "atime is not updated from future: $atime, should be $d1<atime<$d2"
2403
2404         do_facet $SINGLEMDS lctl set_param -n mdd.*.atime_diff=2
2405         sleep 3
2406
2407         # test setting directory atime when now > dir atime + atime_diff
2408         d1=$(date +%s)
2409         ls $DIR/$tdir
2410         d2=$(date +%s)
2411         cancel_lru_locks mdc
2412         atime=$(stat -c %X $DIR/$tdir)
2413         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] || \
2414                 error "atime is not updated  : $atime, should be $d2"
2415
2416         do_facet $SINGLEMDS lctl set_param -n mdd.*.atime_diff=60
2417         sleep 3
2418
2419         # test not setting directory atime when now < dir atime + atime_diff
2420         ls $DIR/$tdir
2421         cancel_lru_locks mdc
2422         atime=$(stat -c %X $DIR/$tdir)
2423         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] || \
2424                 error "atime is updated to $atime, should remain $d1<atime<$d2"
2425
2426         do_facet $SINGLEMDS lctl set_param -n mdd.*.atime_diff=$atime_diff
2427 }
2428 run_test 39l "directory atime update ==========================="
2429
2430 test_39m() {
2431         touch $DIR1/$tfile
2432         sleep 2
2433         local far_past_mtime=$(date -d "May 29 1953" +%s)
2434         local far_past_atime=$(date -d "Dec 17 1903" +%s)
2435
2436         touch -m -d @$far_past_mtime $DIR1/$tfile
2437         touch -a -d @$far_past_atime $DIR1/$tfile
2438
2439         for (( i=0; i < 2; i++ )) ; do
2440                 local timestamps=$(stat -c "%X %Y" $DIR1/$tfile)
2441                 [ "$timestamps" = "$far_past_atime $far_past_mtime" ] || \
2442                         error "atime or mtime set incorrectly"
2443
2444                 cancel_lru_locks osc
2445                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2446         done
2447
2448         
2449 }
2450 run_test 39m "test atime and mtime before 1970"
2451
2452 test_40() {
2453         dd if=/dev/zero of=$DIR/f40 bs=4096 count=1
2454         $RUNAS $OPENFILE -f O_WRONLY:O_TRUNC $DIR/f40 && error
2455         $CHECKSTAT -t file -s 4096 $DIR/f40 || error
2456 }
2457 run_test 40 "failed open(O_TRUNC) doesn't truncate ============="
2458
2459 test_41() {
2460         # bug 1553
2461         small_write $DIR/f41 18
2462 }
2463 run_test 41 "test small file write + fstat ====================="
2464
2465 count_ost_writes() {
2466         lctl get_param -n osc.*.stats |
2467             awk -vwrites=0 '/ost_write/ { writes += $2 } END { print writes; }'
2468 }
2469
2470 # decent default
2471 WRITEBACK_SAVE=500
2472 DIRTY_RATIO_SAVE=40
2473 MAX_DIRTY_RATIO=50
2474 BG_DIRTY_RATIO_SAVE=10
2475 MAX_BG_DIRTY_RATIO=25
2476
2477 start_writeback() {
2478         trap 0
2479         # in 2.6, restore /proc/sys/vm/dirty_writeback_centisecs,
2480         # dirty_ratio, dirty_background_ratio
2481         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
2482                 sysctl -w vm.dirty_writeback_centisecs=$WRITEBACK_SAVE
2483                 sysctl -w vm.dirty_background_ratio=$BG_DIRTY_RATIO_SAVE
2484                 sysctl -w vm.dirty_ratio=$DIRTY_RATIO_SAVE
2485         else
2486                 # if file not here, we are a 2.4 kernel
2487                 kill -CONT `pidof kupdated`
2488         fi
2489 }
2490
2491 stop_writeback() {
2492         # setup the trap first, so someone cannot exit the test at the
2493         # exact wrong time and mess up a machine
2494         trap start_writeback EXIT
2495         # in 2.6, save and 0 /proc/sys/vm/dirty_writeback_centisecs
2496         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
2497                 WRITEBACK_SAVE=`sysctl -n vm.dirty_writeback_centisecs`
2498                 sysctl -w vm.dirty_writeback_centisecs=0
2499                 sysctl -w vm.dirty_writeback_centisecs=0
2500                 # save and increase /proc/sys/vm/dirty_ratio
2501                 DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_ratio`
2502                 sysctl -w vm.dirty_ratio=$MAX_DIRTY_RATIO
2503                 # save and increase /proc/sys/vm/dirty_background_ratio
2504                 BG_DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_background_ratio`
2505                 sysctl -w vm.dirty_background_ratio=$MAX_BG_DIRTY_RATIO
2506         else
2507                 # if file not here, we are a 2.4 kernel
2508                 kill -STOP `pidof kupdated`
2509         fi
2510 }
2511
2512 # ensure that all stripes have some grant before we test client-side cache
2513 setup_test42() {
2514         for i in `seq -f $DIR/f42-%g 1 $OSTCOUNT`; do
2515                 dd if=/dev/zero of=$i bs=4k count=1
2516                 rm $i
2517         done
2518 }
2519
2520 # Tests 42* verify that our behaviour is correct WRT caching, file closure,
2521 # file truncation, and file removal.
2522 test_42a() {
2523         setup_test42
2524         cancel_lru_locks osc
2525         stop_writeback
2526         sync; sleep 1; sync # just to be safe
2527         BEFOREWRITES=`count_ost_writes`
2528         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur_grant_bytes | grep "[0-9]"
2529         dd if=/dev/zero of=$DIR/f42a bs=1024 count=100
2530         AFTERWRITES=`count_ost_writes`
2531         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
2532                 error "$BEFOREWRITES < $AFTERWRITES"
2533         start_writeback
2534 }
2535 run_test 42a "ensure that we don't flush on close =============="
2536
2537 test_42b() {
2538         setup_test42
2539         cancel_lru_locks osc
2540         stop_writeback
2541         sync
2542         dd if=/dev/zero of=$DIR/f42b bs=1024 count=100
2543         BEFOREWRITES=`count_ost_writes`
2544         $MUNLINK $DIR/f42b || error "$MUNLINK $DIR/f42b: $?"
2545         AFTERWRITES=`count_ost_writes`
2546         if [ $BEFOREWRITES -lt $AFTERWRITES ]; then
2547                 error "$BEFOREWRITES < $AFTERWRITES on unlink"
2548         fi
2549         BEFOREWRITES=`count_ost_writes`
2550         sync || error "sync: $?"
2551         AFTERWRITES=`count_ost_writes`
2552         if [ $BEFOREWRITES -lt $AFTERWRITES ]; then
2553                 error "$BEFOREWRITES < $AFTERWRITES on sync"
2554         fi
2555         dmesg | grep 'error from obd_brw_async' && error 'error writing back'
2556         start_writeback
2557         return 0
2558 }
2559 run_test 42b "test destroy of file with cached dirty data ======"
2560
2561 # if these tests just want to test the effect of truncation,
2562 # they have to be very careful.  consider:
2563 # - the first open gets a {0,EOF}PR lock
2564 # - the first write conflicts and gets a {0, count-1}PW
2565 # - the rest of the writes are under {count,EOF}PW
2566 # - the open for truncate tries to match a {0,EOF}PR
2567 #   for the filesize and cancels the PWs.
2568 # any number of fixes (don't get {0,EOF} on open, match
2569 # composite locks, do smarter file size management) fix
2570 # this, but for now we want these tests to verify that
2571 # the cancellation with truncate intent works, so we
2572 # start the file with a full-file pw lock to match against
2573 # until the truncate.
2574 trunc_test() {
2575         test=$1
2576         file=$DIR/$test
2577         offset=$2
2578         cancel_lru_locks osc
2579         stop_writeback
2580         # prime the file with 0,EOF PW to match
2581         touch $file
2582         $TRUNCATE $file 0
2583         sync; sync
2584         # now the real test..
2585         dd if=/dev/zero of=$file bs=1024 count=100
2586         BEFOREWRITES=`count_ost_writes`
2587         $TRUNCATE $file $offset
2588         cancel_lru_locks osc
2589         AFTERWRITES=`count_ost_writes`
2590         start_writeback
2591 }
2592
2593 test_42c() {
2594         trunc_test 42c 1024
2595         [ $BEFOREWRITES -eq $AFTERWRITES ] && \
2596             error "beforewrites $BEFOREWRITES == afterwrites $AFTERWRITES on truncate"
2597         rm $file
2598 }
2599 run_test 42c "test partial truncate of file with cached dirty data"
2600
2601 test_42d() {
2602         trunc_test 42d 0
2603         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
2604             error "beforewrites $BEFOREWRITES != afterwrites $AFTERWRITES on truncate"
2605         rm $file
2606 }
2607 run_test 42d "test complete truncate of file with cached dirty data"
2608
2609 page_size() {
2610         getconf PAGE_SIZE
2611 }
2612
2613 test_42e() { # bug22074
2614         local TDIR=$DIR/${tdir}e
2615         local pagesz=$(page_size)
2616         local pages=16
2617         local files=$((OSTCOUNT * 500)) # hopefully 500 files on each OST
2618         local proc_osc0="osc.${FSNAME}-OST0000-osc-[^MDT]*"
2619         local max_dirty_mb
2620         local warmup_files
2621
2622         mkdir -p $TDIR
2623         $LFS setstripe -c 1 $TDIR
2624         createmany -o $TDIR/f $files
2625
2626         max_dirty_mb=$($LCTL get_param -n $proc_osc0/max_dirty_mb)
2627
2628         # we assume that with $OSTCOUNT files, at least one of them will
2629         # be allocated on OST0.
2630         warmup_files=$((OSTCOUNT * max_dirty_mb))
2631         createmany -o $TDIR/w $warmup_files
2632
2633         # write a large amount of data into one file and sync, to get good
2634         # avail_grant number from OST.
2635         for ((i=0; i<$warmup_files; i++)); do
2636                 idx=$($LFS getstripe -i $TDIR/w$i)
2637                 [ $idx -ne 0 ] && continue
2638                 dd if=/dev/zero of=$TDIR/w$i bs="$max_dirty_mb"M count=1
2639                 break
2640         done
2641         [ $i -gt $warmup_files ] && error "OST0 is still cold"
2642         sync
2643         $LCTL get_param $proc_osc0/cur_dirty_bytes
2644         $LCTL get_param $proc_osc0/cur_grant_bytes
2645
2646         # create as much dirty pages as we can while not to trigger the actual
2647         # RPCs directly. but depends on the env, VFS may trigger flush during this
2648         # period, hopefully we are good.
2649         for ((i=0; i<$warmup_files; i++)); do
2650                 idx=$($LFS getstripe -i $TDIR/w$i)
2651                 [ $idx -ne 0 ] && continue
2652                 dd if=/dev/zero of=$TDIR/w$i bs=1M count=1 2>/dev/null
2653         done
2654         $LCTL get_param $proc_osc0/cur_dirty_bytes
2655         $LCTL get_param $proc_osc0/cur_grant_bytes
2656
2657         # perform the real test
2658         $LCTL set_param $proc_osc0/rpc_stats 0
2659         for ((;i<$files; i++)); do
2660                 [ $($LFS getstripe -i $TDIR/f$i) -eq 0 ] || continue
2661                 dd if=/dev/zero of=$TDIR/f$i bs=$pagesz count=$pages 2>/dev/null
2662         done
2663         sync
2664         $LCTL get_param $proc_osc0/rpc_stats
2665
2666         $LCTL get_param $proc_osc0/rpc_stats |
2667                 while read PPR RRPC RPCT RCUM BAR WRPC WPCT WCUM; do
2668                         [ "$PPR" != "16:" ] && continue
2669                         [ $WPCT -lt 85 ] && error "$pages-page write RPCs only $WPCT% < 85%"
2670                         break # we only want the "pages per rpc" stat
2671                 done
2672         rm -rf $TDIR
2673 }
2674 run_test 42e "verify sub-RPC writes are not done synchronously"
2675
2676 test_43() {
2677         mkdir -p $DIR/$tdir
2678         cp -p /bin/ls $DIR/$tdir/$tfile
2679         multiop $DIR/$tdir/$tfile Ow_c &
2680         pid=$!
2681         # give multiop a chance to open
2682         sleep 1
2683
2684         $DIR/$tdir/$tfile && error || true
2685         kill -USR1 $pid
2686 }
2687 run_test 43 "execution of file opened for write should return -ETXTBSY"
2688
2689 test_43a() {
2690         mkdir -p $DIR/d43
2691         cp -p `which multiop` $DIR/d43/multiop || cp -p multiop $DIR/d43/multiop
2692         MULTIOP_PROG=$DIR/d43/multiop multiop_bg_pause $TMP/test43.junk O_c || return 1
2693         MULTIOP_PID=$!
2694         multiop $DIR/d43/multiop Oc && error "expected error, got success"
2695         kill -USR1 $MULTIOP_PID || return 2
2696         wait $MULTIOP_PID || return 3
2697         rm $TMP/test43.junk
2698 }
2699 run_test 43a "open(RDWR) of file being executed should return -ETXTBSY"
2700
2701 test_43b() {
2702         mkdir -p $DIR/d43
2703         cp -p `which multiop` $DIR/d43/multiop || cp -p multiop $DIR/d43/multiop
2704         MULTIOP_PROG=$DIR/d43/multiop multiop_bg_pause $TMP/test43.junk O_c || return 1
2705         MULTIOP_PID=$!
2706         $TRUNCATE $DIR/d43/multiop 0 && error "expected error, got success"
2707         kill -USR1 $MULTIOP_PID || return 2
2708         wait $MULTIOP_PID || return 3
2709         rm $TMP/test43.junk
2710 }
2711 run_test 43b "truncate of file being executed should return -ETXTBSY"
2712
2713 test_43c() {
2714         local testdir="$DIR/d43c"
2715         mkdir -p $testdir
2716         cp $SHELL $testdir/
2717         ( cd $(dirname $SHELL) && md5sum $(basename $SHELL) ) | \
2718                 ( cd $testdir && md5sum -c)
2719 }
2720 run_test 43c "md5sum of copy into lustre========================"
2721
2722 test_44() {
2723         [  "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
2724         dd if=/dev/zero of=$DIR/f1 bs=4k count=1 seek=1023
2725         dd if=$DIR/f1 bs=4k count=1 > /dev/null
2726 }
2727 run_test 44 "zero length read from a sparse stripe ============="
2728
2729 test_44a() {
2730     local nstripe=`$LCTL lov_getconfig $DIR | grep default_stripe_count: | \
2731                          awk '{print $2}'`
2732     [ -z "$nstripe" ] && skip "can't get stripe info" && return
2733     [ "$nstripe" -gt "$OSTCOUNT" ] && skip "Wrong default_stripe_count: $nstripe (OSTCOUNT: $OSTCOUNT)" && return
2734     local stride=`$LCTL lov_getconfig $DIR | grep default_stripe_size: | \
2735                       awk '{print $2}'`
2736     if [ $nstripe -eq 0 -o $nstripe -eq -1 ] ; then
2737         nstripe=`$LCTL lov_getconfig $DIR | grep obd_count: | awk '{print $2}'`
2738     fi
2739
2740     OFFSETS="0 $((stride/2)) $((stride-1))"
2741     for offset in $OFFSETS ; do
2742       for i in `seq 0 $((nstripe-1))`; do
2743         local GLOBALOFFSETS=""
2744         local size=$((((i + 2 * $nstripe )*$stride + $offset)))  # Bytes
2745         local myfn=$DIR/d44a-$size
2746         echo "--------writing $myfn at $size"
2747         ll_sparseness_write $myfn $size  || error "ll_sparseness_write"
2748         GLOBALOFFSETS="$GLOBALOFFSETS $size"
2749         ll_sparseness_verify $myfn $GLOBALOFFSETS \
2750                             || error "ll_sparseness_verify $GLOBALOFFSETS"
2751
2752         for j in `seq 0 $((nstripe-1))`; do
2753             size=$((((j + $nstripe )*$stride + $offset)))  # Bytes
2754             ll_sparseness_write $myfn $size || error "ll_sparseness_write"
2755             GLOBALOFFSETS="$GLOBALOFFSETS $size"
2756         done
2757         ll_sparseness_verify $myfn $GLOBALOFFSETS \
2758                             || error "ll_sparseness_verify $GLOBALOFFSETS"
2759         rm -f $myfn
2760       done
2761     done
2762 }
2763 run_test 44a "test sparse pwrite ==============================="
2764
2765 dirty_osc_total() {
2766         tot=0
2767         for d in `lctl get_param -n osc.*.cur_dirty_bytes`; do
2768                 tot=$(($tot + $d))
2769         done
2770         echo $tot
2771 }
2772 do_dirty_record() {
2773         before=`dirty_osc_total`
2774         echo executing "\"$*\""
2775         eval $*
2776         after=`dirty_osc_total`
2777         echo before $before, after $after
2778 }
2779 test_45() {
2780         f="$DIR/f45"
2781         # Obtain grants from OST if it supports it
2782         echo blah > ${f}_grant
2783         stop_writeback
2784         sync
2785         do_dirty_record "echo blah > $f"
2786         [ $before -eq $after ] && error "write wasn't cached"
2787         do_dirty_record "> $f"
2788         [ $before -gt $after ] || error "truncate didn't lower dirty count"
2789         do_dirty_record "echo blah > $f"
2790         [ $before -eq $after ] && error "write wasn't cached"
2791         do_dirty_record "sync"
2792         [ $before -gt $after ] || error "writeback didn't lower dirty count"
2793         do_dirty_record "echo blah > $f"
2794         [ $before -eq $after ] && error "write wasn't cached"
2795         do_dirty_record "cancel_lru_locks osc"
2796         [ $before -gt $after ] || error "lock cancellation didn't lower dirty count"
2797         start_writeback
2798 }
2799 run_test 45 "osc io page accounting ============================"
2800
2801 # in a 2 stripe file (lov.sh), page 1023 maps to page 511 in its object.  this
2802 # test tickles a bug where re-dirtying a page was failing to be mapped to the
2803 # objects offset and an assert hit when an rpc was built with 1023's mapped
2804 # offset 511 and 511's raw 511 offset. it also found general redirtying bugs.
2805 test_46() {
2806         f="$DIR/f46"
2807         stop_writeback
2808         sync
2809         dd if=/dev/zero of=$f bs=`page_size` seek=511 count=1
2810         sync
2811         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=1023 count=1
2812         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=511 count=1
2813         sync
2814         start_writeback
2815 }
2816 run_test 46 "dirtying a previously written page ================"
2817
2818 # test_47 is removed "Device nodes check" is moved to test_28
2819
2820 test_48a() { # bug 2399
2821         check_kernel_version 34 || return 0
2822         mkdir -p $DIR/d48a
2823         cd $DIR/d48a
2824         mv $DIR/d48a $DIR/d48.new || error "move directory failed"
2825         mkdir $DIR/d48a || error "recreate directory failed"
2826         touch foo || error "'touch foo' failed after recreating cwd"
2827         mkdir bar || error "'mkdir foo' failed after recreating cwd"
2828         if check_kernel_version 44; then
2829                 touch .foo || error "'touch .foo' failed after recreating cwd"
2830                 mkdir .bar || error "'mkdir .foo' failed after recreating cwd"
2831         fi
2832         ls . > /dev/null || error "'ls .' failed after recreating cwd"
2833         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
2834         cd . || error "'cd .' failed after recreating cwd"
2835         mkdir . && error "'mkdir .' worked after recreating cwd"
2836         rmdir . && error "'rmdir .' worked after recreating cwd"
2837         ln -s . baz || error "'ln -s .' failed after recreating cwd"
2838         cd .. || error "'cd ..' failed after recreating cwd"
2839 }
2840 run_test 48a "Access renamed working dir (should return errors)="
2841
2842 test_48b() { # bug 2399
2843         check_kernel_version 34 || return 0
2844         mkdir -p $DIR/d48b
2845         cd $DIR/d48b
2846         rmdir $DIR/d48b || error "remove cwd $DIR/d48b failed"
2847         touch foo && error "'touch foo' worked after removing cwd"
2848         mkdir foo && error "'mkdir foo' worked after removing cwd"
2849         if check_kernel_version 44; then
2850                 touch .foo && error "'touch .foo' worked after removing cwd"
2851                 mkdir .foo && error "'mkdir .foo' worked after removing cwd"
2852         fi
2853         ls . > /dev/null && error "'ls .' worked after removing cwd"
2854         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
2855         is_patchless || ( cd . && error "'cd .' worked after removing cwd" )
2856         mkdir . && error "'mkdir .' worked after removing cwd"
2857         rmdir . && error "'rmdir .' worked after removing cwd"
2858         ln -s . foo && error "'ln -s .' worked after removing cwd"
2859         cd .. || echo "'cd ..' failed after removing cwd `pwd`"  #bug 3517
2860 }
2861 run_test 48b "Access removed working dir (should return errors)="
2862
2863 test_48c() { # bug 2350
2864         check_kernel_version 36 || return 0
2865         #lctl set_param debug=-1
2866         #set -vx
2867         mkdir -p $DIR/d48c/dir
2868         cd $DIR/d48c/dir
2869         $TRACE rmdir $DIR/d48c/dir || error "remove cwd $DIR/d48c/dir failed"
2870         $TRACE touch foo && error "'touch foo' worked after removing cwd"
2871         $TRACE mkdir foo && error "'mkdir foo' worked after removing cwd"
2872         if check_kernel_version 44; then
2873                 touch .foo && error "'touch .foo' worked after removing cwd"
2874                 mkdir .foo && error "'mkdir .foo' worked after removing cwd"
2875         fi
2876         $TRACE ls . && error "'ls .' worked after removing cwd"
2877         $TRACE ls .. || error "'ls ..' failed after removing cwd"
2878         is_patchless || ( $TRACE cd . && error "'cd .' worked after removing cwd" )
2879         $TRACE mkdir . && error "'mkdir .' worked after removing cwd"
2880         $TRACE rmdir . && error "'rmdir .' worked after removing cwd"
2881         $TRACE ln -s . foo && error "'ln -s .' worked after removing cwd"
2882         $TRACE cd .. || echo "'cd ..' failed after removing cwd `pwd`" #bug 3415
2883 }
2884 run_test 48c "Access removed working subdir (should return errors)"
2885
2886 test_48d() { # bug 2350
2887         check_kernel_version 36 || return 0
2888         #lctl set_param debug=-1
2889         #set -vx
2890         mkdir -p $DIR/d48d/dir
2891         cd $DIR/d48d/dir
2892         $TRACE rmdir $DIR/d48d/dir || error "remove cwd $DIR/d48d/dir failed"
2893         $TRACE rmdir $DIR/d48d || error "remove parent $DIR/d48d failed"
2894         $TRACE touch foo && error "'touch foo' worked after removing parent"
2895         $TRACE mkdir foo && error "'mkdir foo' worked after removing parent"
2896         if check_kernel_version 44; then
2897                 touch .foo && error "'touch .foo' worked after removing parent"
2898                 mkdir .foo && error "'mkdir .foo' worked after removing parent"
2899         fi
2900         $TRACE ls . && error "'ls .' worked after removing parent"
2901         $TRACE ls .. && error "'ls ..' worked after removing parent"
2902         is_patchless || ( $TRACE cd . && error "'cd .' worked after recreate parent" )
2903         $TRACE mkdir . && error "'mkdir .' worked after removing parent"
2904         $TRACE rmdir . && error "'rmdir .' worked after removing parent"
2905         $TRACE ln -s . foo && error "'ln -s .' worked after removing parent"
2906         is_patchless || ( $TRACE cd .. && error "'cd ..' worked after removing parent" || true )
2907 }
2908 run_test 48d "Access removed parent subdir (should return errors)"
2909
2910 test_48e() { # bug 4134
2911         check_kernel_version 41 || return 0
2912         #lctl set_param debug=-1
2913         #set -vx
2914         mkdir -p $DIR/d48e/dir
2915         cd $DIR/d48e/dir
2916         $TRACE rmdir $DIR/d48e/dir || error "remove cwd $DIR/d48e/dir failed"
2917         $TRACE rmdir $DIR/d48e || error "remove parent $DIR/d48e failed"
2918         $TRACE touch $DIR/d48e || error "'touch $DIR/d48e' failed"
2919         $TRACE chmod +x $DIR/d48e || error "'chmod +x $DIR/d48e' failed"
2920         # On a buggy kernel addition of "touch foo" after cd .. will
2921         # produce kernel oops in lookup_hash_it
2922         touch ../foo && error "'cd ..' worked after recreate parent"
2923         cd $DIR
2924         $TRACE rm $DIR/d48e || error "rm '$DIR/d48e' failed"
2925 }
2926 run_test 48e "Access to recreated parent subdir (should return errors)"
2927
2928 test_50() {
2929         # bug 1485
2930         mkdir $DIR/d50
2931         cd $DIR/d50
2932         ls /proc/$$/cwd || error
2933 }
2934 run_test 50 "special situations: /proc symlinks  ==============="
2935
2936 test_51a() {    # was test_51
2937         # bug 1516 - create an empty entry right after ".." then split dir
2938         mkdir $DIR/d51
2939         touch $DIR/d51/foo
2940         $MCREATE $DIR/d51/bar
2941         rm $DIR/d51/foo
2942         createmany -m $DIR/d51/longfile 201
2943         FNUM=202
2944         while [ `ls -sd $DIR/d51 | awk '{ print $1 }'` -eq 4 ]; do
2945                 $MCREATE $DIR/d51/longfile$FNUM
2946                 FNUM=$(($FNUM + 1))
2947                 echo -n "+"
2948         done
2949         echo
2950         ls -l $DIR/d51 > /dev/null || error
2951 }
2952 run_test 51a "special situations: split htree with empty entry =="
2953
2954 #export NUMTEST=70000
2955 # FIXME: I select a relatively small number to do basic test.
2956 # large number may give panic(). debugging on this is going on.
2957 export NUMTEST=70
2958 test_51b() {
2959         NUMFREE=`df -i -P $DIR | tail -n 1 | awk '{ print $4 }'`
2960         [ $NUMFREE -lt 21000 ] && \
2961                 skip "not enough free inodes ($NUMFREE)" && \
2962                 return
2963
2964         check_kernel_version 40 || NUMTEST=31000
2965         [ $NUMFREE -lt $NUMTEST ] && NUMTEST=$(($NUMFREE - 50))
2966
2967         mkdir -p $DIR/d51b
2968         createmany -d $DIR/d51b/t- $NUMTEST
2969 }
2970 run_test 51b "mkdir .../t-0 --- .../t-$NUMTEST ===================="
2971
2972 test_51bb() {
2973         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2974
2975         local ndirs=${TEST51BB_NDIRS:-10}
2976         local nfiles=${TEST51BB_NFILES:-100}
2977
2978         local numfree=`df -i -P $DIR | tail -n 1 | awk '{ print $4 }'`
2979
2980         [ $numfree -lt $(( ndirs * nfiles)) ] && \
2981                 nfiles=$(( numfree / ndirs - 10 ))
2982
2983         local dir=$DIR/d51bb
2984         mkdir -p $dir
2985         local savePOLICY=$(lctl get_param -n lmv.*.placement)
2986         lctl set_param -n lmv.*.placement=CHAR
2987
2988         lfs df -i $dir
2989         local IUSED=$(lfs df -i $dir | grep MDT | awk '{print $3}')
2990         OLDUSED=($IUSED)
2991
2992         declare -a dirs
2993         for ((i=0; i < $ndirs; i++)); do
2994                 dirs[i]=$dir/$RANDOM
2995                 echo Creating directory ${dirs[i]}
2996                 mkdir -p ${dirs[i]}
2997                 ls $dir
2998                 echo Creating $nfiles in dir ${dirs[i]} ...
2999                 echo "createmany -o ${dirs[i]}/$tfile- $nfiles"
3000                 createmany -o ${dirs[i]}/$tfile- $nfiles
3001         done
3002         ls $dir
3003
3004         sleep 1
3005
3006         IUSED=$(lfs df -i $dir | grep MDT | awk '{print $3}')
3007         NEWUSED=($IUSED)
3008
3009         local rc=0
3010         for ((i=0; i<${#NEWUSED[@]}; i++)); do
3011                 echo "mds $i: inodes count OLD ${OLDUSED[$i]} NEW ${NEWUSED[$i]}"
3012                 [ ${OLDUSED[$i]} -lt ${NEWUSED[$i]} ] || rc=$((rc + 1))
3013         done
3014
3015         lctl set_param -n lmv.*.placement=$savePOLICY
3016
3017         [ $rc -ne $MDSCOUNT ] || \
3018                 error "Objects/inodes are not distributed over all mds servers"
3019 }
3020 run_test 51bb "mkdir createmany CMD $MDSCOUNT  ===================="
3021
3022
3023 test_51c() {
3024         [ ! -d $DIR/d51b ] && skip "$DIR/51b missing" && \
3025                 return
3026
3027         unlinkmany -d $DIR/d51b/t- $NUMTEST
3028 }
3029 run_test 51c "rmdir .../t-0 --- .../t-$NUMTEST ===================="
3030
3031 test_51d() {
3032         [  "$OSTCOUNT" -lt "3" ] && skip_env "skipping test with few OSTs" && return
3033         mkdir -p $DIR/d51d
3034         createmany -o $DIR/d51d/t- 1000
3035         $LFS getstripe $DIR/d51d > $TMP/files
3036         for N in `seq 0 $((OSTCOUNT - 1))`; do
3037             OBJS[$N]=`awk -vobjs=0 '($1 == '$N') { objs += 1 } END { print objs;}' $TMP/files`
3038             OBJS0[$N]=`grep -A 1 idx $TMP/files | awk -vobjs=0 '($1 == '$N') { objs += 1 } END { print objs;}'`
3039             log "OST$N has ${OBJS[$N]} objects, ${OBJS0[$N]} are index 0"
3040         done
3041         unlinkmany $DIR/d51d/t- 1000
3042
3043         NLAST=0
3044         for N in `seq 1 $((OSTCOUNT - 1))`; do
3045             [ ${OBJS[$N]} -lt $((${OBJS[$NLAST]} - 20)) ] && \
3046                 error "OST $N has less objects vs OST $NLAST (${OBJS[$N]} < ${OBJS[$NLAST]}"
3047             [ ${OBJS[$N]} -gt $((${OBJS[$NLAST]} + 20)) ] && \
3048                 error "OST $N has less objects vs OST $NLAST (${OBJS[$N]} < ${OBJS[$NLAST]}"
3049
3050             [ ${OBJS0[$N]} -lt $((${OBJS0[$NLAST]} - 20)) ] && \
3051                 error "OST $N has less #0 objects vs OST $NLAST (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
3052             [ ${OBJS0[$N]} -gt $((${OBJS0[$NLAST]} + 20)) ] && \
3053                 error "OST $N has less #0 objects vs OST $NLAST (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
3054             NLAST=$N
3055         done
3056 }
3057 run_test 51d "check object distribution ===================="
3058
3059 test_52a() {
3060         [ -f $DIR/d52a/foo ] && chattr -a $DIR/d52a/foo
3061         mkdir -p $DIR/d52a
3062         touch $DIR/d52a/foo
3063         chattr +a $DIR/d52a/foo || error "chattr +a failed"
3064         echo bar >> $DIR/d52a/foo || error "append bar failed"
3065         cp /etc/hosts $DIR/d52a/foo && error "cp worked"
3066         rm -f $DIR/d52a/foo 2>/dev/null && error "rm worked"
3067         link $DIR/d52a/foo $DIR/d52a/foo_link 2>/dev/null && error "link worked"
3068         echo foo >> $DIR/d52a/foo || error "append foo failed"
3069         mrename $DIR/d52a/foo $DIR/d52a/foo_ren && error "rename worked"
3070         lsattr $DIR/d52a/foo | egrep -q "^-+a[-e]+ $DIR/d52a/foo" || error "lsattr"
3071         chattr -a $DIR/d52a/foo || error "chattr -a failed"
3072         cp -r $DIR/d52a /tmp/
3073         rm -fr $DIR/d52a || error "cleanup rm failed"
3074 }
3075 run_test 52a "append-only flag test (should return errors) ====="
3076
3077 test_52b() {
3078         [ -f $DIR/d52b/foo ] && chattr -i $DIR/d52b/foo
3079         mkdir -p $DIR/d52b
3080         touch $DIR/d52b/foo
3081         chattr +i $DIR/d52b/foo || error "chattr +i failed"
3082         cat test > $DIR/d52b/foo && error "cat test worked"
3083         cp /etc/hosts $DIR/d52b/foo && error "cp worked"
3084         rm -f $DIR/d52b/foo 2>/dev/null && error "rm worked"
3085         link $DIR/d52b/foo $DIR/d52b/foo_link 2>/dev/null && error  "link worked"
3086         echo foo >> $DIR/d52b/foo && error "echo worked"
3087         mrename $DIR/d52b/foo $DIR/d52b/foo_ren && error "rename worked"
3088         [ -f $DIR/d52b/foo ] || error
3089         [ -f $DIR/d52b/foo_ren ] && error
3090         lsattr $DIR/d52b/foo | egrep -q "^-+i[-e]+ $DIR/d52b/foo" || error "lsattr"
3091         chattr -i $DIR/d52b/foo || error "chattr failed"
3092
3093         rm -fr $DIR/d52b || error
3094 }
3095 run_test 52b "immutable flag test (should return errors) ======="
3096
3097 test_53() {
3098         remote_mds_nodsh && skip "remote MDS with nodsh" && return
3099         remote_ost_nodsh && skip "remote OST with nodsh" && return
3100
3101         local param
3102         local ostname
3103         local mds_last
3104         local ost_last
3105         local ostnum
3106
3107         # only test MDT0000
3108         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS)
3109         for value in $(do_facet $SINGLEMDS lctl get_param osc.$mdtosc.prealloc_last_id) ; do
3110                 param=`echo ${value[0]} | cut -d "=" -f1`
3111                 ostname=`echo $param | cut -d "." -f2 | cut -d - -f 1-2`
3112                 mds_last=$(do_facet $SINGLEMDS lctl get_param -n $param)
3113                 ostnum=$(echo $ostname | sed "s/${FSNAME}-OST//g" | awk '{print ($1+1)}' )
3114                 ost_last=$(do_facet ost$ostnum lctl get_param -n obdfilter.$ostname.last_id | head -n 1)
3115                 echo "$ostname.last_id=$ost_last ; MDS.last_id=$mds_last"
3116                 if [ $ost_last != $mds_last ]; then
3117                     error "$ostname.last_id=$ost_last ; MDS.last_id=$mds_last"
3118                 fi
3119         done
3120 }
3121 run_test 53 "verify that MDS and OSTs agree on pre-creation ===="
3122
3123 test_54a() {
3124         [ ! -f "$SOCKETSERVER" ] && skip_env "no socketserver, skipping" && return
3125         [ ! -f "$SOCKETCLIENT" ] && skip_env "no socketclient, skipping" && return
3126         $SOCKETSERVER $DIR/socket
3127         $SOCKETCLIENT $DIR/socket || error
3128         $MUNLINK $DIR/socket
3129 }
3130 run_test 54a "unix domain socket test =========================="
3131
3132 test_54b() {
3133         f="$DIR/f54b"
3134         mknod $f c 1 3
3135         chmod 0666 $f
3136         dd if=/dev/zero of=$f bs=`page_size` count=1
3137 }
3138 run_test 54b "char device works in lustre ======================"
3139
3140 find_loop_dev() {
3141         [ -b /dev/loop/0 ] && LOOPBASE=/dev/loop/
3142         [ -b /dev/loop0 ] && LOOPBASE=/dev/loop
3143         [ -z "$LOOPBASE" ] && echo "/dev/loop/0 and /dev/loop0 gone?" && return
3144
3145         for i in `seq 3 7`; do
3146                 losetup $LOOPBASE$i > /dev/null 2>&1 && continue
3147                 LOOPDEV=$LOOPBASE$i
3148                 LOOPNUM=$i
3149                 break
3150         done
3151 }
3152
3153 test_54c() {
3154         tfile="$DIR/f54c"
3155         tdir="$DIR/d54c"
3156         loopdev="$DIR/loop54c"
3157
3158         find_loop_dev
3159         [ -z "$LOOPNUM" ] && echo "couldn't find empty loop device" && return
3160         mknod $loopdev b 7 $LOOPNUM
3161         echo "make a loop file system with $tfile on $loopdev ($LOOPNUM)..."
3162         dd if=/dev/zero of=$tfile bs=`page_size` seek=1024 count=1 > /dev/null
3163         losetup $loopdev $tfile || error "can't set up $loopdev for $tfile"
3164         mkfs.ext2 $loopdev || error "mke2fs on $loopdev"
3165         mkdir -p $tdir
3166         mount -t ext2 $loopdev $tdir || error "error mounting $loopdev on $tdir"
3167         dd if=/dev/zero of=$tdir/tmp bs=`page_size` count=30 || error "dd write"
3168         df $tdir
3169         dd if=$tdir/tmp of=/dev/zero bs=`page_size` count=30 || error "dd read"
3170         $UMOUNT $tdir
3171         losetup -d $loopdev
3172         rm $loopdev
3173 }
3174 run_test 54c "block device works in lustre ====================="
3175
3176 test_54d() {
3177         f="$DIR/f54d"
3178         string="aaaaaa"
3179         mknod $f p
3180         [ "$string" = `echo $string > $f | cat $f` ] || error
3181 }
3182 run_test 54d "fifo device works in lustre ======================"
3183
3184 test_54e() {
3185         check_kernel_version 46 || return 0
3186         f="$DIR/f54e"
3187         string="aaaaaa"
3188         cp -aL /dev/console $f
3189         echo $string > $f || error
3190 }
3191 run_test 54e "console/tty device works in lustre ======================"
3192
3193 #The test_55 used to be iopen test and it was removed by bz#24037. 
3194 #run_test 55 "check iopen_connect_dentry() ======================"
3195
3196 test_56a() {    # was test_56
3197         rm -rf $DIR/d56
3198         $SETSTRIPE -d $DIR
3199         mkdir $DIR/d56
3200         mkdir $DIR/d56/dir
3201         NUMFILES=3
3202         NUMFILESx2=$(($NUMFILES * 2))
3203         for i in `seq 1 $NUMFILES` ; do
3204                 touch $DIR/d56/file$i
3205                 touch $DIR/d56/dir/file$i
3206         done
3207
3208         # test lfs getstripe with --recursive
3209         FILENUM=`$GETSTRIPE --recursive $DIR/d56 | grep -c obdidx`
3210         [ $FILENUM -eq $NUMFILESx2 ] || error \
3211                 "lfs getstripe --recursive $DIR/d56 wrong: found $FILENUM, expected $NUMFILESx2"
3212         FILENUM=`$GETSTRIPE $DIR/d56 | grep -c obdidx`
3213         [ $FILENUM -eq $NUMFILES ] || error \
3214                 "lfs getstripe $DIR/d56 without --recursive wrong: found $FILENUM, expected $NUMFILES"
3215         echo "lfs getstripe --recursive passed."
3216
3217         # test lfs getstripe with file instead of dir
3218         FILENUM=`$GETSTRIPE $DIR/d56/file1 | grep -c obdidx`
3219         [ $FILENUM  -eq 1 ] || error \
3220                  "lfs getstripe $DIR/d56/file1 wrong:found $FILENUM, expected 1"
3221         echo "lfs getstripe file passed."
3222
3223         #test lfs getstripe with --verbose
3224         [ `$GETSTRIPE --verbose $DIR/d56 | grep -c lmm_magic` -eq $NUMFILES ] ||\
3225                 error "lfs getstripe --verbose $DIR/d56 wrong: should find $NUMFILES lmm_magic info"
3226         [ `$GETSTRIPE $DIR/d56 | grep -c lmm_magic` -eq 0 ] || error \
3227                 "lfs getstripe $DIR/d56 without --verbose wrong: should not show lmm_magic info"
3228         echo "lfs getstripe --verbose passed."
3229
3230         #test lfs getstripe with --obd
3231         $GETSTRIPE --obd wrong_uuid $DIR/d56 2>&1 | grep -q "unknown obduuid" || \
3232                 error "lfs getstripe --obd wrong_uuid should return error message"
3233
3234         [  "$OSTCOUNT" -lt 2 ] && \
3235                 skip_env "skipping other lfs getstripe --obd test" && return
3236         OSTIDX=1
3237         OBDUUID=$(lfs osts | grep ${OSTIDX}": " | awk '{print $2}')
3238         FILENUM=`$GETSTRIPE -ir $DIR/d56 | grep -x $OSTIDX | wc -l`
3239         FOUND=`$GETSTRIPE -r --obd $OBDUUID $DIR/d56 | grep obdidx | wc -l`
3240         [ $FOUND -eq $FILENUM ] || \
3241                 error "lfs getstripe --obd wrong: found $FOUND, expected $FILENUM"
3242         [ `$GETSTRIPE -r -v --obd $OBDUUID $DIR/d56 | \
3243                 sed '/^[         ]*'${OSTIDX}'[  ]/d' |\
3244                 sed -n '/^[      ]*[0-9][0-9]*[  ]/p' | wc -l` -eq 0 ] || \
3245                 error "lfs getstripe --obd wrong: should not show file on other obd"
3246         echo "lfs getstripe --obd passed."
3247 }
3248 run_test 56a "check lfs getstripe ===================================="
3249
3250 NUMFILES=3
3251 NUMDIRS=3
3252 setup_56() {
3253         LOCAL_NUMFILES=$1
3254         LOCAL_NUMDIRS=$2
3255         if [ ! -d "$DIR/${tdir}g" ] ; then
3256                 mkdir -p $DIR/${tdir}g
3257                 for i in `seq 1 $LOCAL_NUMFILES` ; do
3258                         touch $DIR/${tdir}g/file$i
3259                 done
3260                 for i in `seq 1 $LOCAL_NUMDIRS` ; do
3261                         mkdir $DIR/${tdir}g/dir$i
3262                         for j in `seq 1 $LOCAL_NUMFILES` ; do
3263                                 touch $DIR/${tdir}g/dir$i/file$j
3264                         done
3265                 done
3266         fi
3267 }
3268
3269 setup_56_special() {
3270         LOCAL_NUMFILES=$1
3271         LOCAL_NUMDIRS=$2
3272         TDIR=$DIR/${tdir}g
3273         setup_56 $1 $2
3274         if [ ! -e "$TDIR/loop1b" ] ; then
3275                 for i in `seq 1 $LOCAL_NUMFILES` ; do
3276                         mknod $TDIR/loop${i}b b 7 $i
3277                         mknod $TDIR/null${i}c c 1 3
3278                         ln -s $TDIR/file1 $TDIR/link${i}l
3279                 done
3280                 for i in `seq 1 $LOCAL_NUMDIRS` ; do
3281                         mknod $TDIR/dir$i/loop${i}b b 7 $i
3282                         mknod $TDIR/dir$i/null${i}c c 1 3
3283                         ln -s $TDIR/dir$i/file1 $TDIR/dir$i/link${i}l
3284                 done
3285         fi
3286 }
3287
3288 test_56g() {
3289         $LSTRIPE -d $DIR
3290
3291         setup_56 $NUMFILES $NUMDIRS
3292
3293         EXPECTED=$(($NUMDIRS + 2))
3294         # test lfs find with -name
3295         for i in `seq 1 $NUMFILES` ; do
3296                 NUMS=`$LFIND -name "*$i" $DIR/${tdir}g | wc -l`
3297                 [ $NUMS -eq $EXPECTED ] || error \
3298                         "lfs find -name \"*$i\" $DIR/${tdir}g wrong: found $NUMS, expected $EXPECTED"
3299         done
3300         echo "lfs find -name passed."
3301 }
3302 run_test 56g "check lfs find -name ============================="
3303
3304 test_56h() {
3305         $LSTRIPE -d $DIR
3306
3307         setup_56 $NUMFILES $NUMDIRS
3308
3309         EXPECTED=$((($NUMDIRS+1)*($NUMFILES-1)+$NUMFILES))
3310         # test lfs find with ! -name
3311         for i in `seq 1 $NUMFILES` ; do
3312                 NUMS=`$LFIND ! -name "*$i" $DIR/${tdir}g | wc -l`
3313                 [ $NUMS -eq $EXPECTED ] || error \
3314                         "lfs find ! -name \"*$i\" $DIR/${tdir}g wrong: found $NUMS, expected $EXPECTED"
3315         done
3316         echo "lfs find ! -name passed."
3317 }
3318 run_test 56h "check lfs find ! -name ============================="
3319
3320 test_56i() {
3321        tdir=${tdir}i
3322        mkdir -p $DIR/$tdir
3323        UUID=$(ostuuid_from_index 0 $DIR/$tdir)
3324        OUT=$($LFIND -obd $UUID $DIR/$tdir)
3325        [ "$OUT" ] && error "$LFIND returned directory '$OUT'" || true
3326 }
3327 run_test 56i "check 'lfs find -ost UUID' skips directories ======="
3328
3329 test_56j() {
3330         setup_56_special $NUMFILES $NUMDIRS
3331
3332         EXPECTED=$((NUMDIRS+1))
3333         NUMS=`$LFIND -type d $DIR/${tdir}g | wc -l`
3334         [ $NUMS -eq $EXPECTED ] || \
3335                 error "lfs find -type d $DIR/${tdir}g wrong: found $NUMS, expected $EXPECTED"
3336 }
3337 run_test 56j "check lfs find -type d ============================="
3338
3339 test_56k() {
3340         setup_56_special $NUMFILES $NUMDIRS
3341
3342         EXPECTED=$(((NUMDIRS+1) * NUMFILES))
3343         NUMS=`$LFIND -type f $DIR/${tdir}g | wc -l`
3344         [ $NUMS -eq $EXPECTED ] || \
3345                 error "lfs find -type f $DIR/${tdir}g wrong: found $NUMS, expected $EXPECTED"
3346 }
3347 run_test 56k "check lfs find -type f ============================="
3348
3349 test_56l() {
3350         setup_56_special $NUMFILES $NUMDIRS
3351
3352         EXPECTED=$((NUMDIRS + NUMFILES))
3353         NUMS=`$LFIND -type b $DIR/${tdir}g | wc -l`
3354         [ $NUMS -eq $EXPECTED ] || \
3355                 error "lfs find -type b $DIR/${tdir}g wrong: found $NUMS, expected $EXPECTED"
3356 }
3357 run_test 56l "check lfs find -type b ============================="
3358
3359 test_56m() {
3360         setup_56_special $NUMFILES $NUMDIRS
3361
3362         EXPECTED=$((NUMDIRS + NUMFILES))
3363         NUMS=`$LFIND -type c $DIR/${tdir}g | wc -l`
3364         [ $NUMS -eq $EXPECTED ] || \
3365                 error "lfs find -type c $DIR/${tdir}g wrong: found $NUMS, expected $EXPECTED"
3366 }
3367 run_test 56m "check lfs find -type c ============================="
3368
3369 test_56n() {
3370         setup_56_special $NUMFILES $NUMDIRS
3371
3372         EXPECTED=$((NUMDIRS + NUMFILES))
3373         NUMS=`$LFIND -type l $DIR/${tdir}g | wc -l`
3374         [ $NUMS -eq $EXPECTED ] || \
3375                 error "lfs find -type l $DIR/${tdir}g wrong: found $NUMS, expected $EXPECTED"
3376 }
3377 run_test 56n "check lfs find -type l ============================="
3378
3379 test_56o() {
3380         setup_56 $NUMFILES $NUMDIRS
3381         TDIR=$DIR/${tdir}g
3382
3383         utime $TDIR/file1 > /dev/null || error "utime (1)"
3384         utime $TDIR/file2 > /dev/null || error "utime (2)"
3385         utime $TDIR/dir1 > /dev/null || error "utime (3)"
3386         utime $TDIR/dir2 > /dev/null || error "utime (4)"
3387         utime $TDIR/dir1/file1 > /dev/null || error "utime (5)"
3388
3389         EXPECTED=5
3390         NUMS=`$LFIND -mtime +1 $TDIR | wc -l`
3391         [ $NUMS -eq $EXPECTED ] || \
3392                 error "lfs find -mtime $TDIR wrong: found $NUMS, expected $EXPECTED"
3393 }
3394 run_test 56o "check lfs find -mtime for old files =========================="
3395
3396 test_56p() {
3397         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
3398
3399         TDIR=$DIR/${tdir}g
3400         rm -rf $TDIR
3401
3402         setup_56 $NUMFILES $NUMDIRS
3403
3404         chown $RUNAS_ID $TDIR/file* || error "chown $DIR/${tdir}g/file$i failed"
3405         EXPECTED=$NUMFILES
3406         NUMS="`$LFIND -uid $RUNAS_ID $TDIR | wc -l`"
3407         [ $NUMS -eq $EXPECTED ] || \
3408                 error "lfs find -uid $TDIR wrong: found $NUMS, expected $EXPECTED"
3409
3410         EXPECTED=$(( ($NUMFILES+1) * $NUMDIRS + 1))
3411         NUMS="`$LFIND ! -uid $RUNAS_ID $TDIR | wc -l`"
3412         [ $NUMS -eq $EXPECTED ] || \
3413                 error "lfs find ! -uid $TDIR wrong: found $NUMS, expected $EXPECTED"
3414
3415         echo "lfs find -uid and ! -uid passed."
3416 }
3417 run_test 56p "check lfs find -uid and ! -uid ==============================="
3418
3419 test_56q() {
3420         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
3421
3422         TDIR=$DIR/${tdir}g
3423         rm -rf $TDIR
3424
3425         setup_56 $NUMFILES $NUMDIRS
3426
3427         chgrp $RUNAS_GID $TDIR/file* || error "chown $DIR/${tdir}g/file$i failed"
3428         EXPECTED=$NUMFILES
3429         NUMS="`$LFIND -gid $RUNAS_GID $TDIR | wc -l`"
3430         [ $NUMS -eq $EXPECTED ] || \
3431                 error "lfs find -gid $TDIR wrong: found $NUMS, expected $EXPECTED"
3432
3433         EXPECTED=$(( ($NUMFILES+1) * $NUMDIRS + 1))
3434         NUMS="`$LFIND ! -gid $RUNAS_GID $TDIR | wc -l`"
3435         [ $NUMS -eq $EXPECTED ] || \
3436                 error "lfs find ! -gid $TDIR wrong: found $NUMS, expected $EXPECTED"
3437
3438         echo "lfs find -gid and ! -gid passed."
3439 }
3440 run_test 56q "check lfs find -gid and ! -gid ==============================="
3441
3442 test_56r() {
3443         setup_56 $NUMFILES $NUMDIRS
3444         TDIR=$DIR/${tdir}g
3445         
3446         EXPECTED=12
3447         NUMS=`$LFIND -size 0 -t f $TDIR | wc -l`
3448         [ $NUMS -eq $EXPECTED ] || \
3449                 error "lfs find $TDIR -size 0 wrong: found $NUMS, expected $EXPECTED"
3450         EXPECTED=0
3451         NUMS=`$LFIND ! -size 0 -t f $TDIR | wc -l`
3452         [ $NUMS -eq $EXPECTED ] || \
3453                 error "lfs find $TDIR ! -size 0 wrong: found $NUMS, expected $EXPECTED"
3454         echo "test" > $TDIR/56r && sync
3455         EXPECTED=1
3456         NUMS=`$LFIND -size 5 -t f $TDIR | wc -l`
3457         [ $NUMS -eq $EXPECTED ] || \
3458                 error "lfs find $TDIR -size 5 wrong: found $NUMS, expected $EXPECTED"
3459         EXPECTED=1
3460         NUMS=`$LFIND -size +5 -t f $TDIR | wc -l`
3461         [ $NUMS -eq $EXPECTED ] || \
3462                 error "lfs find $TDIR -size +5 wrong: found $NUMS, expected $EXPECTED"
3463         EXPECTED=13
3464         NUMS=`$LFIND -size +0 -t f $TDIR | wc -l`
3465         [ $NUMS -eq $EXPECTED ] || \
3466                 error "lfs find $TDIR -size +0 wrong: found $NUMS, expected $EXPECTED"
3467         EXPECTED=0
3468         NUMS=`$LFIND ! -size -5 -t f $TDIR | wc -l`
3469         [ $NUMS -eq $EXPECTED ] || \
3470                 error "lfs find $TDIR ! -size -5 wrong: found $NUMS, expected $EXPECTED"
3471 }
3472
3473 run_test 56r "check lfs find -size works =========================="
3474
3475 test_57a() {
3476         # note test will not do anything if MDS is not local
3477         remote_mds_nodsh && skip "remote MDS with nodsh" && return
3478         local MNTDEV="osd*.*MDT*.mntdev"
3479         DEV=$(do_facet $SINGLEMDS lctl get_param -n $MNTDEV)
3480         [ -z "$DEV" ] && error "can't access $MNTDEV"
3481         for DEV in $(do_facet $SINGLEMDS lctl get_param -n $MNTDEV); do
3482                 do_facet $SINGLEMDS $DUMPE2FS -h $DEV > $TMP/t57a.dump || error "can't access $DEV"
3483                 DEVISIZE=`awk '/Inode size:/ { print $3 }' $TMP/t57a.dump`
3484                 [ "$DEVISIZE" -gt 128 ] || error "inode size $DEVISIZE"
3485                 rm $TMP/t57a.dump
3486         done
3487 }
3488 run_test 57a "verify MDS filesystem created with large inodes =="
3489
3490 test_57b() {
3491         local dir=$DIR/d57b
3492
3493         local FILECOUNT=100
3494         local FILE1=$dir/f1
3495         local FILEN=$dir/f$FILECOUNT
3496
3497         rm -rf $dir || error "removing $dir"
3498         mkdir -p $dir || error "creating $dir"
3499         local num=$(get_mds_dir $dir)
3500         local mymds=mds$num
3501
3502         echo "mcreating $FILECOUNT files"
3503         createmany -m $dir/f 1 $FILECOUNT || \
3504                 error "creating files in $dir"
3505
3506         # verify that files do not have EAs yet
3507         $GETSTRIPE $FILE1 2>&1 | grep -q "no stripe" || error "$FILE1 has an EA"
3508         $GETSTRIPE $FILEN 2>&1 | grep -q "no stripe" || error "$FILEN has an EA"
3509
3510         sync
3511         sleep 1
3512         df $dir  #make sure we get new statfs data
3513         local MDSFREE=$(do_facet $mymds lctl get_param -n osd.*MDT000$((num -1)).kbytesfree)
3514         local MDCFREE=$(lctl get_param -n mdc.*MDT000$((num -1))-mdc-*.kbytesfree)
3515         echo "opening files to create objects/EAs"
3516         local FILE
3517         for FILE in `seq -f $dir/f%g 1 $FILECOUNT`; do
3518                 $OPENFILE -f O_RDWR $FILE > /dev/null 2>&1 || error "opening $FILE"
3519         done
3520
3521         # verify that files have EAs now
3522         $GETSTRIPE $FILE1 | grep -q "obdidx" || error "$FILE1 missing EA"
3523         $GETSTRIPE $FILEN | grep -q "obdidx" || error "$FILEN missing EA"
3524
3525         sleep 1  #make sure we get new statfs data
3526         df $dir
3527         local MDSFREE2=$(do_facet $mymds lctl get_param -n osd.*MDT000$((num -1)).kbytesfree)
3528         local MDCFREE2=$(lctl get_param -n mdc.*MDT000$((num -1))-mdc-*.kbytesfree)
3529         if [ "$MDCFREE2" -lt "$((MDCFREE - 8))" ]; then
3530                 if [ "$MDSFREE" != "$MDSFREE2" ]; then
3531                         error "MDC before $MDCFREE != after $MDCFREE2"
3532                 else
3533                         echo "MDC before $MDCFREE != after $MDCFREE2"
3534                         echo "unable to confirm if MDS has large inodes"
3535                 fi
3536         fi
3537         rm -rf $dir
3538 }
3539 run_test 57b "default LOV EAs are stored inside large inodes ==="
3540
3541 test_58() {
3542     [ -z "$(which wiretest 2>/dev/null)" ] && skip_env "could not find wiretest" && return
3543     wiretest
3544 }
3545 run_test 58 "verify cross-platform wire constants =============="
3546
3547 test_59() {
3548         echo "touch 130 files"
3549         createmany -o $DIR/f59- 130
3550         echo "rm 130 files"
3551         unlinkmany $DIR/f59- 130
3552         sync
3553         sleep 2
3554         # wait for commitment of removal
3555 }
3556 run_test 59 "verify cancellation of llog records async ========="
3557
3558 TEST60_HEAD="test_60 run $RANDOM"
3559 test_60a() {
3560         [ ! -f run-llog.sh ] && skip_env "missing subtest run-llog.sh" && return
3561         log "$TEST60_HEAD - from kernel mode"
3562         sh run-llog.sh
3563 }
3564 run_test 60a "llog sanity tests run from kernel module =========="
3565
3566 test_60b() { # bug 6411
3567         dmesg > $DIR/$tfile
3568         LLOG_COUNT=`dmesg | awk "/$TEST60_HEAD/{marker = 1; from_marker = 0;}
3569                                  /llog.test/ {
3570                                          if (marker)
3571                                                  from_marker++
3572                                          from_begin++
3573                                  }
3574                                  END {
3575                                          if (marker)
3576                                                  print from_marker
3577                                          else
3578                                                  print from_begin
3579                                  }"`
3580         [ $LLOG_COUNT -gt 50 ] && error "CDEBUG_LIMIT not limiting messages ($LLOG_COUNT)"|| true
3581 }
3582 run_test 60b "limit repeated messages from CERROR/CWARN ========"
3583
3584 test_60c() {
3585         echo "create 5000 files"
3586         createmany -o $DIR/f60c- 5000
3587 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED  0x137
3588         lctl set_param fail_loc=0x80000137
3589         unlinkmany $DIR/f60c- 5000
3590         lctl set_param fail_loc=0
3591 }
3592 run_test 60c "unlink file when mds full"
3593
3594 test_60d() {
3595         SAVEPRINTK=$(lctl get_param -n printk)
3596
3597         # verify "lctl mark" is even working"
3598         MESSAGE="test message ID $RANDOM $$"
3599         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
3600         dmesg | grep -q "$MESSAGE" || error "didn't find debug marker in log"
3601
3602         lctl set_param printk=0 || error "set lnet.printk failed"
3603         lctl get_param -n printk | grep emerg || error "lnet.printk dropped emerg"
3604         MESSAGE="new test message ID $RANDOM $$"
3605         # Assume here that libcfs_debug_mark_buffer() uses D_WARNING
3606         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
3607         dmesg | grep -q "$MESSAGE" && error "D_WARNING wasn't masked" || true
3608
3609         lctl set_param -n printk="$SAVEPRINTK"
3610 }
3611 run_test 60d "test printk console message masking"
3612
3613 test_61() {
3614         f="$DIR/f61"
3615         dd if=/dev/zero of=$f bs=`page_size` count=1
3616         cancel_lru_locks osc
3617         multiop $f OSMWUc || error
3618         sync
3619 }
3620 run_test 61 "mmap() writes don't make sync hang ================"
3621
3622 # bug 2330 - insufficient obd_match error checking causes LBUG
3623 test_62() {
3624         f="$DIR/f62"
3625         echo foo > $f
3626         cancel_lru_locks osc
3627         lctl set_param fail_loc=0x405
3628         cat $f && error "cat succeeded, expect -EIO"
3629         lctl set_param fail_loc=0
3630 }
3631 # This test is now irrelevant (as of bug 10718 inclusion), we no longer
3632 # match every page all of the time.
3633 #run_test 62 "verify obd_match failure doesn't LBUG (should -EIO)"
3634
3635 # bug 2319 - oig_wait() interrupted causes crash because of invalid waitq.
3636 test_63a() {    # was test_63
3637         MAX_DIRTY_MB=`lctl get_param -n osc.*.max_dirty_mb | head -n 1`
3638         lctl set_param -n osc.*.max_dirty_mb 0
3639         for i in `seq 10` ; do
3640                 dd if=/dev/zero of=$DIR/f63 bs=8k &
3641                 sleep 5
3642                 kill $!
3643                 sleep 1
3644         done
3645
3646         lctl set_param -n osc.*.max_dirty_mb $MAX_DIRTY_MB
3647         rm -f $DIR/f63 || true
3648 }
3649 run_test 63a "Verify oig_wait interruption does not crash ======="
3650
3651 # bug 2248 - async write errors didn't return to application on sync
3652 # bug 3677 - async write errors left page locked
3653 test_63b() {
3654         debugsave
3655         lctl set_param debug=-1
3656
3657         # ensure we have a grant to do async writes
3658         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1
3659         rm $DIR/$tfile
3660
3661         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
3662         lctl set_param fail_loc=0x80000406
3663         multiop $DIR/$tfile Owy && \
3664                 error "sync didn't return ENOMEM"
3665         sync; sleep 2; sync     # do a real sync this time to flush page
3666         lctl get_param -n llite.*.dump_page_cache | grep locked && \
3667                 error "locked page left in cache after async error" || true
3668         debugrestore
3669 }
3670 run_test 63b "async write errors should be returned to fsync ==="
3671
3672 test_64a () {
3673         df $DIR
3674         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur* | grep "[0-9]"
3675 }
3676 run_test 64a "verify filter grant calculations (in kernel) ====="
3677
3678 test_64b () {
3679         [ ! -f oos.sh ] && skip_env "missing subtest oos.sh" && return
3680         sh oos.sh $MOUNT
3681 }
3682 run_test 64b "check out-of-space detection on client ==========="
3683
3684 # bug 1414 - set/get directories' stripe info
3685 test_65a() {
3686         mkdir -p $DIR/d65
3687         touch $DIR/d65/f1
3688         $LVERIFY $DIR/d65 $DIR/d65/f1 || error "lverify failed"
3689 }
3690 run_test 65a "directory with no stripe info ===================="
3691
3692 test_65b() {
3693         mkdir -p $DIR/d65
3694         $SETSTRIPE $DIR/d65 -s $(($STRIPESIZE * 2)) -i 0 -c 1 || error "setstripe"
3695         touch $DIR/d65/f2
3696         $LVERIFY $DIR/d65 $DIR/d65/f2 || error "lverify failed"
3697 }
3698 run_test 65b "directory setstripe $(($STRIPESIZE * 2)) 0 1 ==============="
3699
3700 test_65c() {
3701         if [ $OSTCOUNT -gt 1 ]; then
3702                 mkdir -p $DIR/d65
3703                 $SETSTRIPE $DIR/d65 -s $(($STRIPESIZE * 4)) -i 1 \
3704                         -c $(($OSTCOUNT - 1)) || error "setstripe"
3705                 touch $DIR/d65/f3
3706                 $LVERIFY $DIR/d65 $DIR/d65/f3 || error "lverify failed"
3707         fi
3708 }
3709 run_test 65c "directory setstripe $(($STRIPESIZE * 4)) 1 $(($OSTCOUNT - 1))"
3710
3711 test_65d() {
3712         mkdir -p $DIR/d65
3713         if [ $STRIPECOUNT -le 0 ]; then
3714                 sc=1
3715         elif [ $STRIPECOUNT -gt 160 ]; then
3716 #LOV_MAX_STRIPE_COUNT is 160
3717                 [ $OSTCOUNT -gt 160 ] && sc=160 || sc=$(($OSTCOUNT - 1))
3718         else
3719                 sc=$(($STRIPECOUNT - 1))
3720         fi
3721         $SETSTRIPE $DIR/d65 -s $STRIPESIZE -c $sc || error "setstripe"
3722         touch $DIR/d65/f4 $DIR/d65/f5
3723         $LVERIFY $DIR/d65 $DIR/d65/f4 $DIR/d65/f5 || error "lverify failed"
3724 }
3725 run_test 65d "directory setstripe $STRIPESIZE -1 stripe_count =============="
3726
3727 test_65e() {
3728         mkdir -p $DIR/d65
3729
3730         $SETSTRIPE $DIR/d65 || error "setstripe"
3731         $GETSTRIPE -v $DIR/d65 | grep "Default" || error "no stripe info failed"
3732         touch $DIR/d65/f6
3733         $LVERIFY $DIR/d65 $DIR/d65/f6 || error "lverify failed"
3734 }
3735 run_test 65e "directory setstripe defaults ======================="
3736
3737 test_65f() {
3738         mkdir -p $DIR/d65f
3739         $RUNAS $SETSTRIPE $DIR/d65f && error "setstripe succeeded" || true
3740 }
3741 run_test 65f "dir setstripe permission (should return error) ==="
3742
3743 test_65g() {
3744         mkdir -p $DIR/d65
3745         $SETSTRIPE $DIR/d65 -s $(($STRIPESIZE * 2)) -i 0 -c 1 || error "setstripe"
3746         $SETSTRIPE -d $DIR/d65 || error "setstripe"
3747         $GETSTRIPE -v $DIR/d65 | grep "Default" || \
3748                 error "delete default stripe failed"
3749 }
3750 run_test 65g "directory setstripe -d ==========================="
3751
3752 test_65h() {
3753         mkdir -p $DIR/d65
3754         $SETSTRIPE $DIR/d65 -s $(($STRIPESIZE * 2)) -i 0 -c 1 || error "setstripe"
3755         mkdir -p $DIR/d65/dd1
3756         [ "`$GETSTRIPE -v $DIR/d65 | grep "^count"`" == \
3757           "`$GETSTRIPE -v $DIR/d65/dd1 | grep "^count"`" ] || error "stripe info inherit failed"
3758 }
3759 run_test 65h "directory stripe info inherit ===================="
3760
3761 test_65i() { # bug6367
3762         $SETSTRIPE $MOUNT -s 65536 -c -1
3763 }
3764 run_test 65i "set non-default striping on root directory (bug 6367)="
3765
3766 test_65ia() { # bug12836
3767         $LFS getstripe $MOUNT || error "getstripe $MOUNT failed"
3768 }
3769 run_test 65ia "getstripe on -1 default directory striping"
3770
3771 test_65ib() { # bug12836
3772         $LFS getstripe -v $MOUNT || error "getstripe -v $MOUNT failed"
3773 }
3774 run_test 65ib "getstripe -v on -1 default directory striping"
3775
3776 test_65ic() { # bug12836
3777         $LFS find -mtime -1 $MOUNT || error "find $MOUNT failed"
3778 }
3779 run_test 65ic "new find on -1 default directory striping"
3780
3781 test_65j() { # bug6367
3782         sync; sleep 1
3783         # if we aren't already remounting for each test, do so for this test
3784         if [ "$CLEANUP" = ":" -a "$I_MOUNTED" = "yes" ]; then
3785                 cleanup || error "failed to unmount"
3786                 setup
3787         fi
3788         $SETSTRIPE -d $MOUNT || error "setstripe failed"
3789 }
3790 run_test 65j "set default striping on root directory (bug 6367)="
3791
3792 test_65k() { # bug11679
3793         [ "$OSTCOUNT" -lt 2 ] && skip_env "too few OSTs" && return
3794         remote_mds_nodsh && skip "remote MDS with nodsh" && return
3795
3796         echo "Check OST status: "
3797         MDS_OSCS=`do_facet $SINGLEMDS lctl dl | awk '/[oO][sS][cC].*md[ts]/ { print $4 }'`
3798         for OSC in $MDS_OSCS; do
3799                 echo $OSC "is activate"
3800                 do_facet $SINGLEMDS lctl --device %$OSC activate
3801         done
3802         do_facet client mkdir -p $DIR/$tdir
3803         for INACTIVE_OSC in $MDS_OSCS; do
3804                 echo $INACTIVE_OSC "is Deactivate:"
3805                 do_facet $SINGLEMDS lctl --device  %$INACTIVE_OSC deactivate
3806                 for STRIPE_OSC in $MDS_OSCS; do
3807                         STRIPE_OST=`osc_to_ost $STRIPE_OSC`
3808                         STRIPE_INDEX=`do_facet $SINGLEMDS lctl get_param -n lov.*md*.target_obd |
3809                                       grep $STRIPE_OST | awk -F: '{print $1}' | head -n 1`
3810
3811                 [ -f $DIR/$tdir/${STRIPE_INDEX} ] && continue
3812                         echo "$SETSTRIPE $DIR/$tdir/${STRIPE_INDEX} -i ${STRIPE_INDEX} -c 1"
3813                         do_facet client $SETSTRIPE $DIR/$tdir/${STRIPE_INDEX} -i ${STRIPE_INDEX} -c 1
3814                         RC=$?
3815                         [ $RC -ne 0 ] && error "setstripe should have succeeded"
3816                 done
3817                 do_facet client rm -f $DIR/$tdir/*
3818                 echo $INACTIVE_OSC "is Activate."
3819                 do_facet $SINGLEMDS lctl --device  %$INACTIVE_OSC activate
3820         done
3821 }
3822 run_test 65k "validate manual striping works properly with deactivated OSCs"
3823
3824 test_65l() { # bug 12836
3825         mkdir -p $DIR/$tdir/test_dir
3826         $SETSTRIPE $DIR/$tdir/test_dir -c -1
3827         $LFS find -mtime -1 $DIR/$tdir >/dev/null
3828 }
3829 run_test 65l "lfs find on -1 stripe dir ========================"
3830
3831 # bug 2543 - update blocks count on client
3832 test_66() {
3833         COUNT=${COUNT:-8}
3834         dd if=/dev/zero of=$DIR/f66 bs=1k count=$COUNT
3835         sync; sleep 1; sync
3836         BLOCKS=`ls -s $DIR/f66 | awk '{ print $1 }'`
3837         [ $BLOCKS -ge $COUNT ] || error "$DIR/f66 blocks $BLOCKS < $COUNT"
3838 }
3839 run_test 66 "update inode blocks count on client ==============="
3840
3841 LLOOP=
3842 LLITELOOPLOAD=
3843 cleanup_68() {
3844         trap 0
3845         if [ ! -z "$LLOOP" ]; then
3846                 if swapon -s | grep -q $LLOOP; then
3847                         swapoff $LLOOP || error "swapoff failed"
3848                 fi
3849
3850                 $LCTL blockdev_detach $LLOOP || error "detach failed"
3851                 rm -f $LLOOP
3852                 unset LLOOP
3853         fi
3854         if [ ! -z "$LLITELOOPLOAD" ]; then
3855                 rmmod llite_lloop
3856                 unset LLITELOOPLOAD
3857         fi 
3858         rm -f $DIR/f68*
3859 }
3860
3861 meminfo() {
3862         awk '($1 == "'$1':") { print $2 }' /proc/meminfo
3863 }
3864
3865 swap_used() {
3866         swapon -s | awk '($1 == "'$1'") { print $4 }'
3867 }
3868
3869 # test case for lloop driver, basic function
3870 test_68a() {
3871         [ "$UID" != 0 ] && skip_env "must run as root" && return
3872
3873         trap cleanup_68 EXIT
3874
3875         if ! module_loaded llite_lloop; then
3876                 if load_module llite/llite_lloop; then
3877                         LLITELOOPLOAD=yes
3878                 else
3879                         skip_env "can't find module llite_lloop"
3880                         return
3881                 fi
3882         fi
3883
3884         LLOOP=$TMP/lloop.`date +%s`.`date +%N`
3885         dd if=/dev/zero of=$DIR/f68a bs=4k count=1024
3886         $LCTL blockdev_attach $DIR/f68a $LLOOP || error "attach failed"
3887
3888         directio rdwr $LLOOP 0 1024 4096 || error "direct write failed"
3889         directio rdwr $LLOOP 0 1025 4096 && error "direct write should fail"
3890
3891         cleanup_68
3892 }
3893 run_test 68a "lloop driver - basic test ========================"
3894
3895 # excercise swapping to lustre by adding a high priority swapfile entry
3896 # and then consuming memory until it is used.
3897 test_68b() {  # was test_68
3898         [ "$UID" != 0 ] && skip_env "must run as root" && return
3899         lctl get_param -n devices | grep -q obdfilter && \
3900                 skip "local OST" && return
3901
3902         grep -q llite_lloop /proc/modules
3903         [ $? -ne 0 ] && skip "can't find module llite_lloop" && return
3904
3905         [ -z "`$LCTL list_nids | grep -v tcp`" ] && \
3906                 skip "can't reliably test swap with TCP" && return
3907
3908         MEMTOTAL=`meminfo MemTotal`
3909         NR_BLOCKS=$((MEMTOTAL>>8))
3910         [[ $NR_BLOCKS -le 2048 ]] && NR_BLOCKS=2048
3911
3912         LLOOP=$TMP/lloop.`date +%s`.`date +%N`
3913         dd if=/dev/zero of=$DIR/f68b bs=64k seek=$NR_BLOCKS count=1
3914         mkswap $DIR/f68b
3915
3916         $LCTL blockdev_attach $DIR/f68b $LLOOP || error "attach failed"
3917
3918         trap cleanup_68 EXIT
3919
3920         swapon -p 32767 $LLOOP || error "swapon $LLOOP failed"
3921
3922         echo "before: `swapon -s | grep $LLOOP`"
3923         $MEMHOG $MEMTOTAL || error "error allocating $MEMTOTAL kB"
3924         echo "after: `swapon -s | grep $LLOOP`"
3925         SWAPUSED=`swap_used $LLOOP`
3926
3927         cleanup_68
3928
3929         [ $SWAPUSED -eq 0 ] && echo "no swap used???" || true
3930 }
3931 run_test 68b "support swapping to Lustre ========================"
3932
3933 # bug5265, obdfilter oa2dentry return -ENOENT
3934 # #define OBD_FAIL_OST_ENOENT 0x217
3935 test_69() {
3936         remote_ost_nodsh && skip "remote OST with nodsh" && return
3937
3938         f="$DIR/$tfile"
3939         $SETSTRIPE $f -c 1 -i 0
3940
3941         $DIRECTIO write ${f}.2 0 1 || error "directio write error"
3942
3943         do_facet ost1 lctl set_param fail_loc=0x217
3944         $TRUNCATE $f 1 # vmtruncate() will ignore truncate() error.
3945         $DIRECTIO write $f 0 2 && error "write succeeded, expect -ENOENT"
3946
3947         do_facet ost1 lctl set_param fail_loc=0
3948         $DIRECTIO write $f 0 2 || error "write error"
3949
3950         cancel_lru_locks osc
3951         $DIRECTIO read $f 0 1 || error "read error"
3952
3953         do_facet ost1 lctl set_param fail_loc=0x217
3954         $DIRECTIO read $f 1 1 && error "read succeeded, expect -ENOENT"
3955
3956         do_facet ost1 lctl set_param fail_loc=0
3957         rm -f $f
3958 }
3959 run_test 69 "verify oa2dentry return -ENOENT doesn't LBUG ======"
3960
3961 test_71() {
3962     mkdir -p $DIR/$tdir
3963     sh rundbench -C -D $DIR/$tdir 2 || error "dbench failed!"
3964 }
3965 run_test 71 "Running dbench on lustre (don't segment fault) ===="
3966
3967 test_72() { # bug 5695 - Test that on 2.6 remove_suid works properly
3968         check_kernel_version 43 || return 0
3969         [ "$RUNAS_ID" = "$UID" ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
3970
3971         # Check that testing environment is properly set up. Skip if not
3972         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_GID $RUNAS || {
3973                 skip_env "User $RUNAS_ID does not exist - skipping"
3974                 return 0
3975         }
3976         # We had better clear the $DIR to get enough space for dd
3977         rm -rf $DIR/*
3978         touch $DIR/f72
3979         chmod 777 $DIR/f72
3980         chmod ug+s $DIR/f72
3981         $RUNAS dd if=/dev/zero of=$DIR/f72 bs=512 count=1 || error
3982         # See if we are still setuid/sgid
3983         test -u $DIR/f72 -o -g $DIR/f72 && error "S/gid is not dropped on write"
3984         # Now test that MDS is updated too
3985         cancel_lru_locks mdc
3986         test -u $DIR/f72 -o -g $DIR/f72 && error "S/gid is not dropped on MDS"
3987         true
3988         rm -f $DIR/f72
3989 }
3990 run_test 72 "Test that remove suid works properly (bug5695) ===="
3991
3992 # bug 3462 - multiple simultaneous MDC requests
3993 test_73() {
3994         mkdir $DIR/d73-1
3995         mkdir $DIR/d73-2
3996         multiop_bg_pause $DIR/d73-1/f73-1 O_c || return 1
3997         pid1=$!
3998
3999         lctl set_param fail_loc=0x80000129
4000         multiop $DIR/d73-1/f73-2 Oc &
4001         sleep 1
4002         lctl set_param fail_loc=0
4003
4004         multiop $DIR/d73-2/f73-3 Oc &
4005         pid3=$!
4006
4007         kill -USR1 $pid1
4008         wait $pid1 || return 1
4009
4010         sleep 25
4011
4012         $CHECKSTAT -t file $DIR/d73-1/f73-1 || return 4
4013         $CHECKSTAT -t file $DIR/d73-1/f73-2 || return 5
4014         $CHECKSTAT -t file $DIR/d73-2/f73-3 || return 6
4015
4016         rm -rf $DIR/d73-*
4017 }
4018 run_test 73 "multiple MDC requests (should not deadlock)"
4019
4020 test_74a() { # bug 6149, 6184
4021         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
4022         #
4023         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
4024         # will spin in a tight reconnection loop
4025         touch $DIR/f74a
4026         lctl set_param fail_loc=0x8000030e
4027         # get any lock that won't be difficult - lookup works.
4028         ls $DIR/f74a
4029         lctl set_param fail_loc=0
4030         true
4031         rm -f $DIR/f74a
4032 }
4033 run_test 74a "ldlm_enqueue freed-export error path, ls (shouldn't LBUG)"
4034
4035 test_74b() { # bug 13310
4036         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
4037         #
4038         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
4039         # will spin in a tight reconnection loop
4040         lctl set_param fail_loc=0x8000030e
4041         # get a "difficult" lock
4042         touch $DIR/f74b
4043         lctl set_param fail_loc=0
4044         true
4045         rm -f $DIR/f74b
4046 }
4047 run_test 74b "ldlm_enqueue freed-export error path, touch (shouldn't LBUG)"
4048
4049 test_74c() {
4050 #define OBD_FAIL_LDLM_NEW_LOCK
4051         lctl set_param fail_loc=0x80000319
4052         touch $DIR/$tfile && error "Touch successful"
4053         true
4054 }
4055 run_test 74c "ldlm_lock_create error path, (shouldn't LBUG)"
4056
4057 num_inodes() {
4058         awk '/lustre_inode_cache/ {print $2; exit}' /proc/slabinfo
4059 }
4060
4061 get_inode_slab_tunables() {
4062         awk '/lustre_inode_cache/ {print $9," ",$10," ",$11; exit}' /proc/slabinfo
4063 }
4064
4065 set_inode_slab_tunables() {
4066         echo "lustre_inode_cache $1" > /proc/slabinfo
4067 }
4068
4069 test_76() { # Now for bug 20433, added originally in bug 1443
4070         local SLAB_SETTINGS=`get_inode_slab_tunables`
4071         local CPUS=`getconf _NPROCESSORS_ONLN`
4072         # we cannot set limit below 1 which means 1 inode in each
4073         # per-cpu cache is still allowed
4074         set_inode_slab_tunables "1 1 0"
4075         cancel_lru_locks osc
4076         BEFORE_INODES=`num_inodes`
4077         echo "before inodes: $BEFORE_INODES"
4078         local COUNT=1000
4079         [ "$SLOW" = "no" ] && COUNT=100
4080         for i in `seq $COUNT`; do
4081                 touch $DIR/$tfile
4082                 rm -f $DIR/$tfile
4083         done
4084         cancel_lru_locks osc
4085         AFTER_INODES=`num_inodes`
4086         echo "after inodes: $AFTER_INODES"
4087         local wait=0
4088         while [ $((AFTER_INODES-1*CPUS)) -gt $BEFORE_INODES ]; do
4089                 sleep 2
4090                 AFTER_INODES=`num_inodes`
4091                 wait=$((wait+2))
4092                 echo "wait $wait seconds inodes: $AFTER_INODES"
4093                 if [ $wait -gt 30 ]; then
4094                         error "inode slab grew from $BEFORE_INODES to $AFTER_INODES"
4095                 fi
4096         done
4097         set_inode_slab_tunables "$SLAB_SETTINGS"
4098 }
4099 run_test 76 "confirm clients recycle inodes properly ===="
4100
4101
4102 export ORIG_CSUM=""
4103 set_checksums()
4104 {
4105         # Note: in sptlrpc modes which enable its own bulk checksum, the
4106         # original crc32_le bulk checksum will be automatically disabled,
4107         # and the OBD_FAIL_OSC_CHECKSUM_SEND/OBD_FAIL_OSC_CHECKSUM_RECEIVE
4108         # will be checked by sptlrpc code against sptlrpc bulk checksum.
4109         # In this case set_checksums() will not be no-op, because sptlrpc
4110         # bulk checksum will be enabled all through the test.
4111
4112         [ "$ORIG_CSUM" ] || ORIG_CSUM=`lctl get_param -n osc.*.checksums | head -n1`
4113         lctl set_param -n osc.*.checksums $1
4114         return 0
4115 }
4116
4117 export ORIG_CSUM_TYPE=""
4118 CKSUM_TYPES=${CKSUM_TYPES:-"crc32 adler"}
4119 set_checksum_type()
4120 {
4121         [ "$ORIG_CSUM_TYPE" ] || \
4122                 ORIG_CSUM_TYPE=`lctl get_param -n osc/*osc-[^mM]*/checksum_type |
4123                                 sed 's/.*\[\(.*\)\].*/\1/g' | head -n1`
4124         lctl set_param -n osc.*osc-[^mM]*.checksum_type $1
4125         log "set checksum type to $1"
4126         return 0
4127 }
4128 F77_TMP=$TMP/f77-temp
4129 F77SZ=8
4130 setup_f77() {
4131         dd if=/dev/urandom of=$F77_TMP bs=1M count=$F77SZ || \
4132                 error "error writing to $F77_TMP"
4133 }
4134
4135 test_77a() { # bug 10889
4136         $GSS && skip "could not run with gss" && return
4137         [ ! -f $F77_TMP ] && setup_f77
4138         set_checksums 1
4139         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ || error "dd error"
4140         set_checksums 0
4141         rm -f $DIR/$tfile
4142 }
4143 run_test 77a "normal checksum read/write operation ============="
4144
4145 test_77b() { # bug 10889
4146         $GSS && skip "could not run with gss" && return
4147         [ ! -f $F77_TMP ] && setup_f77
4148         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
4149         lctl set_param fail_loc=0x80000409
4150         set_checksums 1
4151         dd if=$F77_TMP of=$DIR/f77b bs=1M count=$F77SZ conv=sync || \
4152                 error "dd error: $?"
4153         lctl set_param fail_loc=0
4154         set_checksums 0
4155 }
4156 run_test 77b "checksum error on client write ===================="
4157
4158 test_77c() { # bug 10889
4159         $GSS && skip "could not run with gss" && return
4160         [ ! -f $DIR/f77b ] && skip "requires 77b - skipping" && return
4161         set_checksums 1
4162         for algo in $CKSUM_TYPES; do
4163                 cancel_lru_locks osc
4164                 set_checksum_type $algo
4165                 #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
4166                 lctl set_param fail_loc=0x80000408
4167                 cmp $F77_TMP $DIR/f77b || error "file compare failed"
4168                 lctl set_param fail_loc=0
4169         done
4170         set_checksums 0
4171         set_checksum_type $ORIG_CSUM_TYPE
4172         rm -f $DIR/f77b
4173 }
4174 run_test 77c "checksum error on client read ==================="
4175
4176 test_77d() { # bug 10889
4177         $GSS && skip "could not run with gss" && return
4178         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
4179         lctl set_param fail_loc=0x80000409
4180         set_checksums 1
4181         directio write $DIR/f77 0 $F77SZ $((1024 * 1024)) || \
4182                 error "direct write: rc=$?"
4183         lctl set_param fail_loc=0
4184         set_checksums 0
4185 }
4186 run_test 77d "checksum error on OST direct write ==============="
4187
4188 test_77e() { # bug 10889
4189         $GSS && skip "could not run with gss" && return
4190         [ ! -f $DIR/f77 ] && skip "requires 77d - skipping" && return
4191         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
4192         lctl set_param fail_loc=0x80000408
4193         set_checksums 1
4194         cancel_lru_locks osc
4195         directio read $DIR/f77 0 $F77SZ $((1024 * 1024)) || \
4196                 error "direct read: rc=$?"
4197         lctl set_param fail_loc=0
4198         set_checksums 0
4199 }
4200 run_test 77e "checksum error on OST direct read ================"
4201
4202 test_77f() { # bug 10889
4203         $GSS && skip "could not run with gss" && return
4204         set_checksums 1
4205         for algo in $CKSUM_TYPES; do
4206                 cancel_lru_locks osc
4207                 set_checksum_type $algo
4208                 #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
4209                 lctl set_param fail_loc=0x409
4210                 directio write $DIR/f77 0 $F77SZ $((1024 * 1024)) && \
4211                         error "direct write succeeded"
4212                 lctl set_param fail_loc=0
4213         done
4214         set_checksum_type $ORIG_CSUM_TYPE
4215         set_checksums 0
4216 }
4217 run_test 77f "repeat checksum error on write (expect error) ===="
4218
4219 test_77g() { # bug 10889
4220         $GSS && skip "could not run with gss" && return
4221         remote_ost_nodsh && skip "remote OST with nodsh" && return
4222
4223         [ ! -f $F77_TMP ] && setup_f77
4224
4225         $SETSTRIPE $DIR/f77g -c 1 -i 0
4226         #define OBD_FAIL_OST_CHECKSUM_RECEIVE       0x21a
4227         do_facet ost1 lctl set_param fail_loc=0x8000021a
4228         set_checksums 1
4229         dd if=$F77_TMP of=$DIR/f77g bs=1M count=$F77SZ || \
4230                 error "write error: rc=$?"
4231         do_facet ost1 lctl set_param fail_loc=0
4232         set_checksums 0
4233 }
4234 run_test 77g "checksum error on OST write ======================"
4235
4236 test_77h() { # bug 10889
4237         $GSS && skip "could not run with gss" && return
4238         remote_ost_nodsh && skip "remote OST with nodsh" && return
4239
4240         [ ! -f $DIR/f77g ] && skip "requires 77g - skipping" && return
4241         cancel_lru_locks osc
4242         #define OBD_FAIL_OST_CHECKSUM_SEND          0x21b
4243         do_facet ost1 lctl set_param fail_loc=0x8000021b
4244         set_checksums 1
4245         cmp $F77_TMP $DIR/f77g || error "file compare failed"
4246         do_facet ost1 lctl set_param fail_loc=0
4247         set_checksums 0
4248 }
4249 run_test 77h "checksum error on OST read ======================="
4250
4251 test_77i() { # bug 13805
4252         $GSS && skip "could not run with gss" && return
4253         #define OBD_FAIL_OSC_CONNECT_CKSUM       0x40b
4254         lctl set_param fail_loc=0x40b
4255         remount_client $MOUNT
4256         lctl set_param fail_loc=0
4257         for VALUE in `lctl get_param osc.*osc-[^mM]*.checksum_type`; do
4258                 PARAM=`echo ${VALUE[0]} | cut -d "=" -f1`
4259                 algo=`lctl get_param -n $PARAM | sed 's/.*\[\(.*\)\].*/\1/g'`
4260                 [ "$algo" = "crc32" ] || error "algo set to $algo instead of crc32"
4261         done
4262         remount_client $MOUNT
4263 }
4264 run_test 77i "client not supporting OSD_CONNECT_CKSUM =========="
4265
4266 test_77j() { # bug 13805
4267         $GSS && skip "could not run with gss" && return
4268         #define OBD_FAIL_OSC_CKSUM_ADLER_ONLY    0x40c
4269         lctl set_param fail_loc=0x40c
4270         remount_client $MOUNT
4271         lctl set_param fail_loc=0
4272         sleep 2 # wait async osc connect to finish
4273         for VALUE in `lctl get_param osc.*osc-[^mM]*.checksum_type`; do
4274                 PARAM=`echo ${VALUE[0]} | cut -d "=" -f1`
4275                 algo=`lctl get_param -n $PARAM | sed 's/.*\[\(.*\)\].*/\1/g'`
4276                 [ "$algo" = "adler" ] || error "algo set to $algo instead of adler"
4277         done
4278         remount_client $MOUNT
4279 }
4280 run_test 77j "client only supporting ADLER32 ===================="
4281
4282 [ "$ORIG_CSUM" ] && set_checksums $ORIG_CSUM || true
4283 rm -f $F77_TMP
4284 unset F77_TMP
4285
4286 test_78() { # bug 10901
4287         remote_ost || { skip_env "local OST" && return; }
4288
4289         NSEQ=5
4290         F78SIZE=$(($(awk '/MemFree:/ { print $2 }' /proc/meminfo) / 1024))
4291         echo "MemFree: $F78SIZE, Max file size: $MAXFREE"
4292         MEMTOTAL=$(($(awk '/MemTotal:/ { print $2 }' /proc/meminfo) / 1024))
4293         echo "MemTotal: $MEMTOTAL"
4294 # reserve 256MB of memory for the kernel and other running processes,
4295 # and then take 1/2 of the remaining memory for the read/write buffers.
4296     if [ $MEMTOTAL -gt 512 ] ;then
4297         MEMTOTAL=$(((MEMTOTAL - 256 ) / 2))
4298     else
4299         # for those poor memory-starved high-end clusters...
4300         MEMTOTAL=$((MEMTOTAL / 2))
4301     fi
4302         echo "Mem to use for directio: $MEMTOTAL"
4303         [ $F78SIZE -gt $MEMTOTAL ] && F78SIZE=$MEMTOTAL
4304         [ $F78SIZE -gt 512 ] && F78SIZE=512
4305         [ $F78SIZE -gt $((MAXFREE / 1024)) ] && F78SIZE=$((MAXFREE / 1024))
4306         SMALLESTOST=`lfs df $DIR |grep OST | awk '{print $4}' |sort -n |head -1`
4307         echo "Smallest OST: $SMALLESTOST"
4308         [ $SMALLESTOST -lt 10240 ] && \
4309                 skip "too small OSTSIZE, useless to run large O_DIRECT test" && return 0
4310
4311         [ $F78SIZE -gt $((SMALLESTOST * $OSTCOUNT / 1024 - 80)) ] && \
4312                 F78SIZE=$((SMALLESTOST * $OSTCOUNT / 1024 - 80))
4313
4314         [ "$SLOW" = "no" ] && NSEQ=1 && [ $F78SIZE -gt 32 ] && F78SIZE=32
4315         echo "File size: $F78SIZE"
4316         $SETSTRIPE $DIR/$tfile -c $OSTCOUNT || error "setstripe failed"
4317         for i in `seq 1 $NSEQ`
4318         do
4319                 FSIZE=$(($F78SIZE / ($NSEQ - $i + 1)))
4320                 echo directIO rdwr round $i of $NSEQ
4321                 $DIRECTIO rdwr $DIR/$tfile 0 $FSIZE 1048576||error "rdwr failed"
4322         done
4323
4324         rm -f $DIR/$tfile
4325 }
4326 run_test 78 "handle large O_DIRECT writes correctly ============"
4327
4328 test_79() { # bug 12743
4329         wait_delete_completed
4330
4331         BKTOTAL=$(calc_osc_kbytes kbytestotal)
4332         BKFREE=$(calc_osc_kbytes kbytesfree)
4333         BKAVAIL=$(calc_osc_kbytes kbytesavail)
4334
4335         STRING=`df -P $MOUNT | tail -n 1 | awk '{print $2","$3","$4}'`
4336         DFTOTAL=`echo $STRING | cut -d, -f1`
4337         DFUSED=`echo $STRING  | cut -d, -f2`
4338         DFAVAIL=`echo $STRING | cut -d, -f3`
4339         DFFREE=$(($DFTOTAL - $DFUSED))
4340
4341         ALLOWANCE=$((64 * $OSTCOUNT))
4342
4343         if [ $DFTOTAL -lt $(($BKTOTAL - $ALLOWANCE)) ] ||
4344            [ $DFTOTAL -gt $(($BKTOTAL + $ALLOWANCE)) ] ; then
4345                 error "df total($DFTOTAL) mismatch OST total($BKTOTAL)"
4346         fi
4347         if [ $DFFREE -lt $(($BKFREE - $ALLOWANCE)) ] ||
4348            [ $DFFREE -gt $(($BKFREE + $ALLOWANCE)) ] ; then
4349                 error "df free($DFFREE) mismatch OST free($BKFREE)"
4350         fi
4351         if [ $DFAVAIL -lt $(($BKAVAIL - $ALLOWANCE)) ] ||
4352            [ $DFAVAIL -gt $(($BKAVAIL + $ALLOWANCE)) ] ; then
4353                 error "df avail($DFAVAIL) mismatch OST avail($BKAVAIL)"
4354         fi
4355 }
4356 run_test 79 "df report consistency check ======================="
4357
4358 test_80() { # bug 10718
4359         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1M
4360         sync; sleep 1; sync
4361         local BEFORE=`date +%s`
4362         cancel_lru_locks osc
4363         local AFTER=`date +%s`
4364         local DIFF=$((AFTER-BEFORE))
4365         if [ $DIFF -gt 1 ] ; then
4366                 error "elapsed for 1M@1T = $DIFF"
4367         fi
4368         true
4369         rm -f $DIR/$tfile
4370 }
4371 run_test 80 "Page eviction is equally fast at high offsets too  ===="
4372
4373 test_99a() {
4374         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && \
4375             return
4376         mkdir -p $DIR/d99cvsroot
4377         chown $RUNAS_ID $DIR/d99cvsroot
4378         local oldPWD=$PWD       # bug 13584, use $TMP as working dir
4379         cd $TMP
4380
4381         $RUNAS cvs -d $DIR/d99cvsroot init || error
4382         cd $oldPWD
4383 }
4384 run_test 99a "cvs init ========================================="
4385
4386 test_99b() {
4387         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
4388         [ ! -d $DIR/d99cvsroot ] && test_99a
4389         cd /etc/init.d
4390         # some versions of cvs import exit(1) when asked to import links or
4391         # files they can't read.  ignore those files.
4392         TOIGNORE=$(find . -type l -printf '-I %f\n' -o \
4393                         ! -perm +4 -printf '-I %f\n')
4394         $RUNAS cvs -d $DIR/d99cvsroot import -m "nomesg" $TOIGNORE \
4395                 d99reposname vtag rtag
4396 }
4397 run_test 99b "cvs import ======================================="
4398
4399 test_99c() {
4400         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
4401         [ ! -d $DIR/d99cvsroot ] && test_99b
4402         cd $DIR
4403         mkdir -p $DIR/d99reposname
4404         chown $RUNAS_ID $DIR/d99reposname
4405         $RUNAS cvs -d $DIR/d99cvsroot co d99reposname
4406 }
4407 run_test 99c "cvs checkout ====================================="
4408
4409 test_99d() {
4410         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
4411         [ ! -d $DIR/d99cvsroot ] && test_99c
4412         cd $DIR/d99reposname
4413         $RUNAS touch foo99
4414         $RUNAS cvs add -m 'addmsg' foo99
4415 }
4416 run_test 99d "cvs add =========================================="
4417
4418 test_99e() {
4419         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
4420         [ ! -d $DIR/d99cvsroot ] && test_99c
4421         cd $DIR/d99reposname
4422         $RUNAS cvs update
4423 }
4424 run_test 99e "cvs update ======================================="
4425
4426 test_99f() {
4427         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
4428         [ ! -d $DIR/d99cvsroot ] && test_99d
4429         cd $DIR/d99reposname
4430         $RUNAS cvs commit -m 'nomsg' foo99
4431     rm -fr $DIR/d99cvsroot
4432 }
4433 run_test 99f "cvs commit ======================================="
4434
4435 test_100() {
4436         [ "$NETTYPE" = tcp ] || \
4437                 { skip "TCP secure port test, not useful for NETTYPE=$NETTYPE" && \
4438                         return ; }
4439
4440         remote_ost_nodsh && skip "remote OST with nodsh" && return
4441         remote_mds_nodsh && skip "remote MDS with nodsh" && return
4442         remote_servers || \
4443                 { skip "useless for local single node setup" && return; }
4444
4445         netstat -tna | ( rc=1; while read PROT SND RCV LOCAL REMOTE STAT; do
4446                 [ "$PROT" != "tcp" ] && continue
4447                 RPORT=$(echo $REMOTE | cut -d: -f2)
4448                 [ "$RPORT" != "$ACCEPTOR_PORT" ] && continue
4449
4450                 rc=0
4451                 LPORT=`echo $LOCAL | cut -d: -f2`
4452                 if [ $LPORT -ge 1024 ]; then
4453                         echo "bad: $PROT $SND $RCV $LOCAL $REMOTE $STAT"
4454                         netstat -tna
4455                         error_exit "local: $LPORT > 1024, remote: $RPORT"
4456                 fi
4457         done
4458         [ "$rc" = 0 ] || error_exit "privileged port not found" )
4459 }
4460 run_test 100 "check local port using privileged port ==========="
4461
4462 function get_named_value()
4463 {
4464     local tag
4465
4466     tag=$1
4467     while read ;do
4468         line=$REPLY
4469         case $line in
4470         $tag*)
4471             echo $line | sed "s/^$tag//"
4472             break
4473             ;;
4474         esac
4475     done
4476 }
4477
4478 export CACHE_MAX=`lctl get_param -n llite.*.max_cached_mb | head -n 1`
4479 cleanup_101() {
4480         lctl set_param -n llite.*.max_cached_mb $CACHE_MAX
4481         trap 0
4482 }
4483
4484 test_101() {
4485         local s
4486         local discard
4487         local nreads=10000
4488         [ "$CPU" = "UML" ] && nreads=1000
4489         local cache_limit=32
4490
4491         lctl set_param -n osc.*-osc*.rpc_stats 0
4492         trap cleanup_101 EXIT
4493         lctl set_param -n llite.*.read_ahead_stats 0
4494         lctl set_param -n llite.*.max_cached_mb $cache_limit
4495
4496         #
4497         # randomly read 10000 of 64K chunks from file 3x 32MB in size
4498         #
4499         echo "nreads: $nreads file size: $((cache_limit * 3))MB"
4500         $READS -f $DIR/$tfile -s$((cache_limit * 3192 * 1024)) -b65536 -C -n$nreads -t 180
4501
4502         discard=0
4503         for s in `lctl get_param -n llite.*.read_ahead_stats | \
4504                 get_named_value 'read but discarded' | cut -d" " -f1`; do
4505                         discard=$(($discard + $s))
4506         done
4507         cleanup_101
4508
4509         if [ $(($discard * 10)) -gt $nreads ] ;then
4510                 lctl get_param osc.*-osc*.rpc_stats
4511                 lctl get_param llite.*.read_ahead_stats
4512                 error "too many ($discard) discarded pages"
4513         fi
4514         rm -f $DIR/$tfile || true
4515 }
4516 run_test 101 "check read-ahead for random reads ================"
4517
4518 setup_test101b() {
4519         mkdir -p $DIR/$tdir
4520         STRIPE_SIZE=1048576
4521         STRIPE_COUNT=$OSTCOUNT
4522         STRIPE_OFFSET=0
4523
4524         trap cleanup_test101b EXIT
4525         # prepare the read-ahead file
4526         $SETSTRIPE $DIR/$tfile -s $STRIPE_SIZE -i $STRIPE_OFFSET -c $OSTCOUNT
4527
4528         dd if=/dev/zero of=$DIR/$tfile bs=1024k count=100 2> /dev/null
4529 }
4530
4531 cleanup_test101b() {
4532         trap 0
4533         rm -rf $DIR/$tdir
4534         rm -f $DIR/$tfile
4535 }
4536
4537 calc_total() {
4538         awk 'BEGIN{total=0}; {total+=$1}; END{print total}'
4539 }
4540
4541 ra_check_101() {
4542         local READ_SIZE=$1
4543         local STRIPE_SIZE=1048576
4544         local RA_INC=1048576
4545         local STRIDE_LENGTH=$((STRIPE_SIZE/READ_SIZE))
4546         local FILE_LENGTH=$((64*100))
4547         local discard_limit=$((((STRIDE_LENGTH - 1)*3/(STRIDE_LENGTH*OSTCOUNT))* \
4548                              (STRIDE_LENGTH*OSTCOUNT - STRIDE_LENGTH)))
4549         DISCARD=`$LCTL get_param -n llite.*.read_ahead_stats | \
4550                         get_named_value 'read but discarded' | \
4551                         cut -d" " -f1 | calc_total`
4552
4553         if [ $DISCARD -gt $discard_limit ]; then
4554                 lctl get_param llite.*.read_ahead_stats
4555                 error "Too many ($DISCARD) discarded pages with size (${READ_SIZE})"
4556         else
4557                 echo "Read-ahead success for size ${READ_SIZE}"
4558         fi
4559 }
4560
4561 test_101b() {
4562         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping stride IO stride-ahead test" && return
4563         local STRIPE_SIZE=1048576
4564         local STRIDE_SIZE=$((STRIPE_SIZE*OSTCOUNT))
4565         local FILE_LENGTH=$((STRIPE_SIZE*100))
4566         local ITERATION=$((FILE_LENGTH/STRIDE_SIZE))
4567         # prepare the read-ahead file
4568         setup_test101b
4569         cancel_lru_locks osc
4570         for BIDX in 2 4 8 16 32 64 128 256
4571         do
4572                 local BSIZE=$((BIDX*4096))
4573                 local READ_COUNT=$((STRIPE_SIZE/BSIZE))
4574                 local STRIDE_LENGTH=$((STRIDE_SIZE/BSIZE))
4575                 local OFFSET=$((STRIPE_SIZE/BSIZE*(OSTCOUNT - 1)))
4576                 $LCTL set_param -n llite.*.read_ahead_stats 0
4577                 $READS -f $DIR/$tfile  -l $STRIDE_LENGTH -o $OFFSET \
4578                               -s $FILE_LENGTH -b $STRIPE_SIZE -a $READ_COUNT -n $ITERATION
4579                 cancel_lru_locks osc
4580                 ra_check_101 $BSIZE
4581         done
4582         cleanup_test101b
4583         true
4584 }
4585 run_test 101b "check stride-io mode read-ahead ================="
4586
4587 set_read_ahead() {
4588    lctl get_param -n llite.*.max_read_ahead_mb | head -n 1
4589    lctl set_param -n llite.*.max_read_ahead_mb $1 > /dev/null 2>&1
4590 }
4591
4592 test_101d() {
4593     local file=$DIR/$tfile
4594     local size=${FILESIZE_101c:-500}
4595     local ra_MB=${READAHEAD_MB:-40}
4596
4597     local space=$(df -P $DIR | tail -n 1 | awk '{ print $4 }')
4598     [ $space -gt $((size / 1024)) ] ||
4599         { skip "Need free space ${size}M, have $space" && return; }
4600
4601     echo Creating ${size}M test file $file
4602     dd if=/dev/zero of=$file bs=1M count=$size
4603     echo Cancel LRU locks on lustre client to flush the client cache
4604     cancel_lru_locks osc
4605
4606     echo Disable read-ahead
4607     local old_READAHEAD=$(set_read_ahead 0)
4608
4609     echo Reading the test file $file with read-ahead disabled
4610     time_ra_OFF=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$size")
4611
4612     echo Cancel LRU locks on lustre client to flush the client cache
4613     cancel_lru_locks osc
4614     echo Enable read-ahead with ${ra_MB}MB
4615     set_read_ahead $ra_MB
4616
4617     echo Reading the test file $file with read-ahead enabled
4618     time_ra_ON=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$size")
4619
4620     echo read-ahead disabled time read $time_ra_OFF
4621     echo read-ahead enabled  time read $time_ra_ON
4622
4623     set_read_ahead $old_READAHEAD
4624     rm -f $file
4625
4626     [ $time_ra_ON -lt $time_ra_OFF ] ||
4627         error "read-ahead enabled  time read (${time_ra_ON}s) is more than
4628                read-ahead disabled time read (${time_ra_OFF}s) filesize ${size}M"
4629 }
4630 run_test 101d "file read with and without read-ahead enabled  ================="
4631
4632 setup_test102() {
4633         mkdir -p $DIR/$tdir
4634         chown $RUNAS_ID $DIR/$tdir
4635         STRIPE_SIZE=65536
4636         STRIPE_OFFSET=1
4637         STRIPE_COUNT=$OSTCOUNT
4638         [ $OSTCOUNT -gt 4 ] && STRIPE_COUNT=4
4639
4640         trap cleanup_test102 EXIT
4641         cd $DIR
4642         $1 $SETSTRIPE $tdir -s $STRIPE_SIZE -i $STRIPE_OFFSET -c $STRIPE_COUNT
4643         cd $DIR/$tdir
4644         for num in 1 2 3 4
4645         do
4646                 for count in `seq 1 $STRIPE_COUNT`
4647                 do
4648                         for offset in `seq 0 $[$STRIPE_COUNT - 1]`
4649                         do
4650                                 local stripe_size=`expr $STRIPE_SIZE \* $num`
4651                                 local file=file"$num-$offset-$count"
4652                                 $1 $SETSTRIPE $file -s $stripe_size -i $offset -c $count
4653                         done
4654                 done
4655         done
4656
4657         cd $DIR
4658         $1 $TAR cf $TMP/f102.tar $tdir --xattrs
4659 }
4660
4661 cleanup_test102() {
4662         trap 0
4663         rm -f $TMP/f102.tar
4664         rm -rf $DIR/d0.sanity/d102
4665 }
4666
4667 test_102a() {
4668         local testfile=$DIR/xattr_testfile
4669
4670         rm -f $testfile
4671         touch $testfile
4672
4673         [ "$UID" != 0 ] && skip_env "must run as root" && return
4674         [ -z "`lctl get_param -n mdc.*-mdc-*.connect_flags | grep xattr`" ] && skip_env "must have user_xattr" && return
4675
4676         [ -z "$(which setfattr 2>/dev/null)" ] && skip_env "could not find setfattr" && return
4677
4678         echo "set/get xattr..."
4679         setfattr -n trusted.name1 -v value1 $testfile || error
4680         [ "`getfattr -n trusted.name1 $testfile 2> /dev/null | \
4681         grep "trusted.name1"`" == "trusted.name1=\"value1\"" ] || error
4682
4683         setfattr -n user.author1 -v author1 $testfile || error
4684         [ "`getfattr -n user.author1 $testfile 2> /dev/null | \
4685         grep "user.author1"`" == "user.author1=\"author1\"" ] || error
4686
4687         echo "listxattr..."
4688         setfattr -n trusted.name2 -v value2 $testfile || error
4689         setfattr -n trusted.name3 -v value3 $testfile || error
4690         [ `getfattr -d -m "^trusted" $testfile 2> /dev/null | \
4691         grep "trusted.name" | wc -l` -eq 3 ] || error
4692
4693
4694         setfattr -n user.author2 -v author2 $testfile || error
4695         setfattr -n user.author3 -v author3 $testfile || error
4696         [ `getfattr -d -m "^user" $testfile 2> /dev/null | \
4697         grep "user" | wc -l` -eq 3 ] || error
4698
4699         echo "remove xattr..."
4700         setfattr -x trusted.name1 $testfile || error
4701         getfattr -d -m trusted $testfile 2> /dev/null | \
4702         grep "trusted.name1" && error || true
4703
4704         setfattr -x user.author1 $testfile || error
4705         getfattr -d -m user $testfile 2> /dev/null | \
4706         grep "user.author1" && error || true
4707
4708         # b10667: setting lustre special xattr be silently discarded
4709         echo "set lustre special xattr ..."
4710         setfattr -n "trusted.lov" -v "invalid value" $testfile || error
4711
4712         rm -f $testfile
4713 }
4714 run_test 102a "user xattr test =================================="
4715
4716 test_102b() {
4717         # b10930: get/set/list trusted.lov xattr
4718         echo "get/set/list trusted.lov xattr ..."
4719         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
4720         local testfile=$DIR/$tfile
4721         $SETSTRIPE -s 65536 -i 1 -c 2 $testfile || error "setstripe failed"
4722         getfattr -d -m "^trusted" $testfile 2> /dev/null | \
4723         grep "trusted.lov" || error "can't get trusted.lov from $testfile"
4724
4725         local testfile2=${testfile}2
4726         local value=`getfattr -n trusted.lov $testfile 2> /dev/null | \
4727                      grep "trusted.lov" |sed -e 's/[^=]\+=//'`
4728
4729         $MCREATE $testfile2
4730         setfattr -n trusted.lov -v $value $testfile2
4731         local tmp_file=${testfile}3
4732         $GETSTRIPE -v $testfile2 > $tmp_file
4733         local stripe_size=`grep "size"  $tmp_file| awk '{print $2}'`
4734         local stripe_count=`grep "count"  $tmp_file| awk '{print $2}'`
4735         [ "$stripe_size" -eq 65536 ] || error "stripe size $stripe_size != 65536"
4736         [ "$stripe_count" -eq 2 ] || error "stripe count $stripe_count != 2"
4737         rm -f $DIR/$tfile
4738 }
4739 run_test 102b "getfattr/setfattr for trusted.lov EAs ============"
4740
4741 test_102c() {
4742         # b10930: get/set/list lustre.lov xattr
4743         echo "get/set/list lustre.lov xattr ..."
4744         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
4745         mkdir -p $DIR/$tdir
4746         chown $RUNAS_ID $DIR/$tdir
4747         local testfile=$DIR/$tdir/$tfile
4748         $RUNAS $SETSTRIPE -s 65536 -i 1 -c 2 $testfile||error "setstripe failed"
4749         $RUNAS getfattr -d -m "^lustre" $testfile 2> /dev/null | \
4750         grep "lustre.lov" || error "can't get lustre.lov from $testfile"
4751
4752         local testfile2=${testfile}2
4753         local value=`getfattr -n lustre.lov $testfile 2> /dev/null | \
4754                      grep "lustre.lov" |sed -e 's/[^=]\+=//'  `
4755
4756         $RUNAS $MCREATE $testfile2
4757         $RUNAS setfattr -n lustre.lov -v $value $testfile2
4758         local tmp_file=${testfile}3
4759         $RUNAS $GETSTRIPE -v $testfile2 > $tmp_file
4760         local stripe_size=`grep "size"  $tmp_file| awk '{print $2}'`
4761         local stripe_count=`grep "count"  $tmp_file| awk '{print $2}'`
4762         [ $stripe_size -eq 65536 ] || error "stripe size $stripe_size != 65536"
4763         [ $stripe_count -eq 2 ] || error "stripe count $stripe_count != 2"
4764 }
4765 run_test 102c "non-root getfattr/setfattr for lustre.lov EAs ==========="
4766
4767 compare_stripe_info1() {
4768         local stripe_index_all_zero=1
4769
4770         for num in 1 2 3 4
4771         do
4772                 for count in `seq 1 $STRIPE_COUNT`
4773                 do
4774                         for offset in `seq 0 $[$STRIPE_COUNT - 1]`
4775                         do
4776                                 local size=`expr $STRIPE_SIZE \* $num`
4777                                 local file=file"$num-$offset-$count"
4778                                 get_stripe_info client $PWD/$file "$1"
4779                                 if [ $stripe_size -ne $size ]; then
4780                                         error "$file: different stripe size $stripe_size, expected $size" && return
4781                                 fi
4782                                 if [ $stripe_count -ne $count ]; then
4783                                         error "$file: different stripe count $stripe_count, expected $count" && return
4784                                 fi
4785                                 if [ $stripe_index -ne 0 ]; then
4786                                        stripe_index_all_zero=0
4787                                 fi
4788                         done
4789                 done
4790         done
4791         [ $stripe_index_all_zero -eq 1 ] && error "all files are being extracted starting from OST index 0"
4792         return 0
4793 }
4794
4795 compare_stripe_info2() {
4796         for num in 1 2 3 4
4797         do
4798                 for count in `seq 1 $STRIPE_COUNT`
4799                 do
4800                         for offset in `seq 0 $[$STRIPE_COUNT - 1]`
4801                         do
4802                                 local size=`expr $STRIPE_SIZE \* $num`
4803                                 local file=file"$num-$offset-$count"
4804                                 get_stripe_info client $PWD/$file
4805                                 if [ $stripe_size -ne $size ]; then
4806                                         error "$file: different stripe size $stripe_size, expected $size" && return
4807                                 fi
4808                                 if [ $stripe_count -ne $count ]; then
4809                                         error "$file: different stripe count $stripe_count, expected $count" && return
4810                                 fi
4811                                 if [ $stripe_index -ne $offset ]; then
4812                                         error "$file: different stripe offset $stripe_index, expected $offset" && return
4813                                 fi
4814                         done
4815                 done
4816         done
4817 }
4818
4819 find_lustre_tar() {
4820         [ -n "$(which tar 2>/dev/null)" ] && strings $(which tar) | grep -q lustre && echo tar
4821 }
4822
4823 test_102d() {
4824         # b10930: tar test for trusted.lov xattr
4825         TAR=$(find_lustre_tar)
4826         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
4827         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping N-stripe test" && return
4828         setup_test102
4829         mkdir -p $DIR/d102d
4830         $TAR xf $TMP/f102.tar -C $DIR/d102d --xattrs
4831         cd $DIR/d102d/$tdir
4832         compare_stripe_info1
4833 }
4834 run_test 102d "tar restore stripe info from tarfile,not keep osts ==========="
4835
4836 test_102f() {
4837         # b10930: tar test for trusted.lov xattr
4838         TAR=$(find_lustre_tar)
4839         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
4840         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping N-stripe test" && return
4841         setup_test102
4842         mkdir -p $DIR/d102f
4843         cd $DIR
4844         $TAR cf - --xattrs $tdir | $TAR xf - --xattrs -C $DIR/d102f
4845         cd $DIR/d102f/$tdir
4846         compare_stripe_info1
4847 }
4848 run_test 102f "tar copy files, not keep osts ==========="
4849
4850 test_102h() { # bug 15777
4851         [ -z $(lctl get_param -n mdc.*.connect_flags | grep xattr) ] &&
4852                 skip "must have user_xattr" && return
4853         [ -z "$(which setfattr 2>/dev/null)" ] &&
4854                 skip_env "could not find setfattr" && return
4855
4856         XBIG=trusted.big
4857         XSIZE=1024
4858         touch $DIR/$tfile
4859         VALUE=datadatadatadatadatadatadatadata
4860         while [ $(echo $VALUE | wc -c) -lt $XSIZE ]; do
4861                 VALUE="$VALUE$VALUE"
4862         done
4863         log "save $XBIG on $DIR/$tfile"
4864         setfattr -n $XBIG -v "$VALUE" $DIR/$tfile ||
4865                 error "saving $XBIG on $DIR/$tfile failed"
4866         ORIG=$(getfattr -n $XBIG $DIR/$tfile 2> /dev/null | grep $XBIG)
4867         OSIZE=$(echo $ORIG | wc -c)
4868         [ $OSIZE -lt $XSIZE ] && error "set $XBIG too small ($OSIZE < $XSIZE)"
4869
4870         XSML=trusted.sml
4871         log "save $XSML on $DIR/$tfile"
4872         setfattr -n $XSML -v val $DIR/$tfile ||
4873                 error "saving $XSML on $DIR/$tfile failed"
4874         NEW=$(getfattr -n $XBIG $DIR/$tfile 2> /dev/null | grep $XBIG)
4875         if [ "$NEW" != "$ORIG" ]; then
4876                 log "orig: $ORIG"
4877                 log "new: $NEW"
4878                 error "$XBIG different after saving $XSML"
4879         fi
4880
4881         log "grow $XSML on $DIR/$tfile"
4882         setfattr -n $XSML -v "$VALUE" $DIR/$tfile ||
4883                 error "growing $XSML on $DIR/$tfile failed"
4884         NEW=$(getfattr -n $XBIG $DIR/$tfile 2> /dev/null | grep $XBIG)
4885         if [ "$NEW" != "$ORIG" ]; then
4886                 log "orig: $ORIG"
4887                 log "new: $NEW"
4888                 error "$XBIG different after growing $XSML"
4889         fi
4890         log "$XBIG still valid after growing $XSML"
4891         rm -f $file
4892 }
4893 run_test 102h "grow xattr from inside inode to external block"
4894
4895 test_102i() { # bug 17038
4896         touch $DIR/$tfile
4897         ln -s $DIR/$tfile $DIR/${tfile}link
4898         getfattr -n trusted.lov $DIR/$tfile || error "lgetxattr on $DIR/$tfile failed"
4899         getfattr -h -n trusted.lov $DIR/${tfile}link 2>&1 | grep -i "no such attr" || error "error for lgetxattr on $DIR/${tfile}link is not ENODATA"
4900         rm -f $DIR/$tfile $DIR/${tfile}link
4901 }
4902 run_test 102i "lgetxattr test on symbolic link ============"
4903
4904 test_102j() {
4905         TAR=$(find_lustre_tar)
4906         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
4907         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping N-stripe test" && return
4908         setup_test102 "$RUNAS"
4909         mkdir -p $DIR/d102j
4910         chown $RUNAS_ID $DIR/d102j
4911         $RUNAS $TAR xf $TMP/f102.tar -C $DIR/d102j --xattrs
4912         cd $DIR/d102j/$tdir
4913         compare_stripe_info1 "$RUNAS"
4914 }
4915 run_test 102j "non-root tar restore stripe info from tarfile, not keep osts ==="
4916
4917 test_102k() {
4918         touch $DIR/$tfile
4919         # b22187 just check that does not crash for regular file.
4920         setfattr -n trusted.lov $DIR/$tfile
4921         # b22187 'setfattr -n trusted.lov' should work as remove LOV EA for directories
4922         local test_kdir=$DIR/d102k
4923         mkdir $test_kdir
4924         local default_size=`$GETSTRIPE -s $test_kdir`
4925         local default_count=`$GETSTRIPE -c $test_kdir`
4926         local default_offset=`$GETSTRIPE -o $test_kdir`
4927         $SETSTRIPE -s 65536 -i 1 -c $OSTCOUNT $test_kdir || error 'dir setstripe failed'
4928         setfattr -n trusted.lov $test_kdir
4929         local stripe_size=`$GETSTRIPE -s $test_kdir`
4930         local stripe_count=`$GETSTRIPE -c $test_kdir`
4931         local stripe_offset=`$GETSTRIPE -o $test_kdir`
4932         [ $stripe_size -eq $default_size ] || error "stripe size $stripe_size != $default_size"
4933         [ $stripe_count -eq $default_count ] || error "stripe count $stripe_count != $default_count"
4934         [ $stripe_offset -eq $default_offset ] || error "stripe offset $stripe_offset != $default_offset"
4935         rm -rf $DIR/$tfile $test_kdir
4936 }
4937 run_test 102k "setfattr without parameter of value shouldn't cause a crash"
4938
4939 cleanup_test102
4940
4941 run_acl_subtest()
4942 {
4943     $LUSTRE/tests/acl/run $LUSTRE/tests/acl/$1.test
4944     return $?
4945 }
4946
4947 test_103 () {
4948     [ "$UID" != 0 ] && skip_env "must run as root" && return
4949     [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] && skip "must have acl enabled" && return
4950     [ -z "$(which setfacl 2>/dev/null)" ] && skip_env "could not find setfacl" && return
4951     $GSS && skip "could not run under gss" && return
4952
4953     declare -a identity_old
4954
4955     for num in `seq $MDSCOUNT`; do
4956         switch_identity $num true || identity_old[$num]=$?
4957     done
4958
4959     SAVE_UMASK=`umask`
4960     umask 0022
4961     cd $DIR
4962
4963     echo "performing cp ..."
4964     run_acl_subtest cp || error
4965     echo "performing getfacl-noacl..."
4966     run_acl_subtest getfacl-noacl || error "getfacl-noacl test failed"
4967     echo "performing misc..."
4968     run_acl_subtest misc || error  "misc test failed"
4969     echo "performing permissions..."
4970     run_acl_subtest permissions || error "permissions failed"
4971     echo "performing setfacl..."
4972     run_acl_subtest setfacl || error  "setfacl test failed"
4973
4974     # inheritance test got from HP
4975     echo "performing inheritance..."
4976     cp $LUSTRE/tests/acl/make-tree . || error "cannot copy make-tree"
4977     chmod +x make-tree || error "chmod +x failed"
4978     run_acl_subtest inheritance || error "inheritance test failed"
4979     rm -f make-tree
4980
4981     cd $SAVE_PWD
4982     umask $SAVE_UMASK
4983
4984     for num in `seq $MDSCOUNT`; do
4985         if [ "${identity_old[$num]}" = 1 ]; then
4986             switch_identity $num false || identity_old[$num]=$?
4987         fi
4988     done
4989 }
4990 run_test 103 "acl test ========================================="
4991
4992 test_104a() {
4993         touch $DIR/$tfile
4994         lfs df || error "lfs df failed"
4995         lfs df -ih || error "lfs df -ih failed"
4996         lfs df -h $DIR || error "lfs df -h $DIR failed"
4997         lfs df -i $DIR || error "lfs df -i $DIR failed"
4998         lfs df $DIR/$tfile || error "lfs df $DIR/$tfile failed"
4999         lfs df -ih $DIR/$tfile || error "lfs df -ih $DIR/$tfile failed"
5000
5001         OSC=`lctl get_param -n devices | awk '/-osc-/ {print $4}' | head -n 1`
5002         lctl --device %$OSC deactivate
5003         lfs df || error "lfs df with deactivated OSC failed"
5004         lctl --device %$OSC recover
5005         lfs df || error "lfs df with reactivated OSC failed"
5006         rm -f $DIR/$tfile
5007 }
5008 run_test 104a "lfs df [-ih] [path] test ========================="
5009
5010 test_104b() {
5011         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
5012         chmod 666 /dev/obd
5013         denied_cnt=$((`$RUNAS $LFS check servers 2>&1 | grep "Permission denied" | wc -l`))
5014         if [ $denied_cnt -ne 0 ];
5015         then
5016                     error "lfs check servers test failed"
5017         fi
5018 }
5019 run_test 104b "$RUNAS lfs check servers test ===================="
5020
5021 test_105a() {
5022         # doesn't work on 2.4 kernels
5023         touch $DIR/$tfile
5024         if [ -n "`mount | grep \"$DIR.*flock\" | grep -v noflock`" ];
5025         then
5026                 flocks_test 1 on -f $DIR/$tfile || error "fail flock on"
5027         else
5028                 flocks_test 1 off -f $DIR/$tfile || error "fail flock off"
5029         fi
5030         rm -f $DIR/$tfile
5031 }
5032 run_test 105a "flock when mounted without -o flock test ========"
5033
5034 test_105b() {
5035         touch $DIR/$tfile
5036         if [ -n "`mount | grep \"$DIR.*flock\" | grep -v noflock`" ];
5037         then
5038                 flocks_test 1 on -c $DIR/$tfile || error "fail flock on"
5039         else
5040                 flocks_test 1 off -c $DIR/$tfile || error "fail flock off"
5041         fi
5042         rm -f $DIR/$tfile
5043 }
5044 run_test 105b "fcntl when mounted without -o flock test ========"
5045
5046 test_105c() {
5047         touch $DIR/$tfile
5048         if [ -n "`mount | grep \"$DIR.*flock\" | grep -v noflock`" ];
5049         then
5050                 flocks_test 1 on -l $DIR/$tfile || error "fail flock on"
5051         else
5052                 flocks_test 1 off -l $DIR/$tfile || error "fail flock off"
5053         fi
5054         rm -f $DIR/$tfile
5055 }
5056 run_test 105c "lockf when mounted without -o flock test ========"
5057
5058 test_105d() { # bug 15924
5059         mkdir -p $DIR/$tdir
5060         [ -z "`mount | grep \"$DIR.*flock\" | grep -v noflock`" ] && \
5061                 skip "mount w/o flock enabled" && return
5062         #define OBD_FAIL_LDLM_CP_CB_WAIT  0x315
5063         $LCTL set_param fail_loc=0x80000315
5064         flocks_test 2 $DIR/$tdir
5065 }
5066 run_test 105d "flock race (should not freeze) ========"
5067
5068 test_106() { #bug 10921
5069         mkdir -p $DIR/$tdir
5070         $DIR/$tdir && error "exec $DIR/$tdir succeeded"
5071         chmod 777 $DIR/$tdir || error "chmod $DIR/$tdir failed"
5072 }
5073 run_test 106 "attempt exec of dir followed by chown of that dir"
5074
5075 test_107() {
5076         CDIR=`pwd`
5077         cd $DIR
5078
5079         local file=core
5080         rm -f $file
5081
5082         local save_pattern=$(sysctl -n kernel.core_pattern)
5083         local save_uses_pid=$(sysctl -n kernel.core_uses_pid)
5084         sysctl -w kernel.core_pattern=$file
5085         sysctl -w kernel.core_uses_pid=0
5086
5087         ulimit -c unlimited
5088         sleep 60 &
5089         SLEEPPID=$!
5090
5091         sleep 1
5092
5093         kill -s 11 $SLEEPPID
5094         wait $SLEEPPID
5095         if [ -e $file ]; then
5096                 size=`stat -c%s $file`
5097                 [ $size -eq 0 ] && error "Fail to create core file $file"
5098         else
5099                 error "Fail to create core file $file"
5100         fi
5101         rm -f $file
5102         sysctl -w kernel.core_pattern=$save_pattern
5103         sysctl -w kernel.core_uses_pid=$save_uses_pid
5104         cd $CDIR
5105 }
5106 run_test 107 "Coredump on SIG"
5107
5108 test_110() {
5109         mkdir -p $DIR/d110
5110         mkdir $DIR/d110/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa || error "mkdir with 255 char fail"
5111         mkdir $DIR/d110/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb && error "mkdir with 256 char should fail, but not"
5112         touch $DIR/d110/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx || error "create with 255 char fail"
5113         touch $DIR/d110/yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy && error ""create with 256 char should fail, but not
5114
5115         ls -l $DIR/d110
5116     rm -fr $DIR/d110
5117 }
5118 run_test 110 "filename length checking"
5119
5120 test_115() {
5121         OSTIO_pre=$(ps -e|grep ll_ost_io|awk '{print $4}'|sort -n|tail -1|\
5122             cut -c11-20)
5123         [ -z "$OSTIO_pre" ] && skip "no OSS threads" && \
5124             return
5125         echo "Starting with $OSTIO_pre threads"
5126
5127         NUMTEST=20000
5128         NUMFREE=`df -i -P $DIR | tail -n 1 | awk '{ print $4 }'`
5129         [ $NUMFREE -lt $NUMTEST ] && NUMTEST=$(($NUMFREE - 1000))
5130         echo "$NUMTEST creates/unlinks"
5131         mkdir -p $DIR/$tdir
5132         createmany -o $DIR/$tdir/$tfile $NUMTEST
5133         unlinkmany $DIR/$tdir/$tfile $NUMTEST
5134
5135         OSTIO_post=$(ps -e|grep ll_ost_io|awk '{print $4}'|sort -n|tail -1|\
5136             cut -c11-20)
5137
5138         # don't return an error
5139         [ $OSTIO_post -eq $OSTIO_pre ] && echo \
5140             "WARNING: No new ll_ost_io threads were created ($OSTIO_pre)" &&\
5141             echo "This may be fine, depending on what ran before this test" &&\
5142             echo "and how fast this system is." && return
5143
5144         echo "Started with $OSTIO_pre threads, ended with $OSTIO_post"
5145 }
5146 run_test 115 "verify dynamic thread creation===================="
5147
5148 free_min_max () {
5149         wait_delete_completed
5150         AVAIL=($(lctl get_param -n osc.*[oO][sS][cC]-[^M]*.kbytesavail))
5151         echo OST kbytes available: ${AVAIL[@]}
5152         MAXI=0; MAXV=${AVAIL[0]}
5153         MINI=0; MINV=${AVAIL[0]}
5154         for ((i = 0; i < ${#AVAIL[@]}; i++)); do
5155             #echo OST $i: ${AVAIL[i]}kb
5156             if [ ${AVAIL[i]} -gt $MAXV ]; then
5157                 MAXV=${AVAIL[i]}; MAXI=$i
5158             fi
5159             if [ ${AVAIL[i]} -lt $MINV ]; then
5160                 MINV=${AVAIL[i]}; MINI=$i
5161             fi
5162         done
5163         echo Min free space: OST $MINI: $MINV
5164         echo Max free space: OST $MAXI: $MAXV
5165 }
5166
5167 test_116() {
5168         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2 OSTs" && return
5169
5170         echo -n "Free space priority "
5171         lctl get_param -n lov.*-clilov-*.qos_prio_free
5172         declare -a AVAIL
5173         free_min_max
5174         [ $MINV -gt 960000 ] && skip "too much free space in OST$MINI, skip" &&\
5175                 return
5176
5177         # generate uneven OSTs
5178         mkdir -p $DIR/$tdir/OST${MINI}
5179         declare -i FILL
5180         FILL=$(($MINV / 4))
5181         echo "Filling 25% remaining space in OST${MINI} with ${FILL}Kb"
5182         $SETSTRIPE -i $MINI -c 1 $DIR/$tdir/OST${MINI}||error "setstripe failed"
5183         i=0
5184         while [ $FILL -gt 0 ]; do
5185             i=$(($i + 1))
5186             dd if=/dev/zero of=$DIR/$tdir/OST${MINI}/$tfile-$i bs=2M count=1 2>/dev/null
5187             FILL=$(($FILL - 2048))
5188             echo -n .
5189         done
5190         FILL=$(($MINV / 4))
5191         sync
5192         sleep_maxage
5193
5194         free_min_max
5195         DIFF=$(($MAXV - $MINV))
5196         DIFF2=$(($DIFF * 100 / $MINV))
5197         echo -n "diff=${DIFF}=${DIFF2}% must be > 20% for QOS mode..."
5198         if [ $DIFF2 -gt 20 ]; then
5199             echo "ok"
5200         else
5201             echo "failed - QOS mode won't be used"
5202             error_ignore "QOS imbalance criteria not met"
5203             return
5204         fi
5205
5206         MINI1=$MINI; MINV1=$MINV
5207         MAXI1=$MAXI; MAXV1=$MAXV
5208
5209         # now fill using QOS
5210         echo writing a bunch of files to QOS-assigned OSTs
5211         $SETSTRIPE $DIR/$tdir -c 1
5212         i=0
5213         while [ $FILL -gt 0 ]; do
5214             i=$(($i + 1))
5215             dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=1024 count=200 2>/dev/null
5216             FILL=$(($FILL - 200))
5217             echo -n .
5218         done
5219         echo "wrote $i 200k files"
5220         sync
5221         sleep_maxage
5222
5223         echo "Note: free space may not be updated, so measurements might be off"
5224         free_min_max
5225         DIFF2=$(($MAXV - $MINV))
5226         echo "free space delta: orig $DIFF final $DIFF2"
5227         [ $DIFF2 -gt $DIFF ] && echo "delta got worse!"
5228         DIFF=$(($MINV1 - ${AVAIL[$MINI1]}))
5229         echo "Wrote $DIFF to smaller OST $MINI1"
5230         DIFF2=$(($MAXV1 - ${AVAIL[$MAXI1]}))
5231         echo "Wrote $DIFF2 to larger OST $MAXI1"
5232         [ $DIFF -gt 0 ] && echo "Wrote $(($DIFF2 * 100 / $DIFF - 100))% more data to larger OST $MAXI1"
5233
5234         # Figure out which files were written where
5235         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
5236                awk '/'$MINI1': / {print $2; exit}')
5237         echo $UUID
5238         MINC=$($GETSTRIPE --obd $UUID $DIR/$tdir | wc -l)
5239         echo "$MINC files created on smaller OST $MINI1"
5240         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
5241                awk '/'$MAXI1': / {print $2; exit}')
5242         echo $UUID
5243         MAXC=$($GETSTRIPE --obd $UUID $DIR/$tdir | wc -l)
5244         echo "$MAXC files created on larger OST $MAXI1"
5245         [ $MINC -gt 0 ] && echo "Wrote $(($MAXC * 100 / $MINC - 100))% more files to larger OST $MAXI1"
5246         [ $MAXC -gt $MINC ] || error_ignore "stripe QOS didn't balance free space"
5247
5248         rm -rf $DIR/$tdir
5249 }
5250 run_test 116 "stripe QOS: free space balance ==================="
5251
5252 test_117() # bug 10891
5253 {
5254         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1
5255         #define OBD_FAIL_OST_SETATTR_CREDITS 0x21e
5256         lctl set_param fail_loc=0x21e
5257         > $DIR/$tfile || error "truncate failed"
5258         lctl set_param fail_loc=0
5259         echo "Truncate succeeded."
5260         rm -f $DIR/$tfile
5261 }
5262 run_test 117 "verify fsfilt_extend =========="
5263
5264 export OLD_RESENDCOUNT=""
5265 set_resend_count () {
5266         local PROC_RESENDCOUNT="osc.${FSNAME}-OST*-osc-*.resend_count"
5267         OLD_RESENDCOUNT=$(lctl get_param -n $PROC_RESENDCOUNT | head -1)
5268         lctl set_param -n $PROC_RESENDCOUNT $1
5269         echo resend_count is set to $(lctl get_param -n $PROC_RESENDCOUNT)
5270 }
5271
5272 [ "$SLOW" = "no" ] && set_resend_count 4 # for reduce test_118* time (bug 14842)
5273
5274 # Reset async IO behavior after error case
5275 reset_async() {
5276         FILE=$DIR/reset_async
5277
5278         # Ensure all OSCs are cleared
5279         $LSTRIPE -c -1 $FILE
5280         dd if=/dev/zero of=$FILE bs=64k count=$OSTCOUNT
5281         sync
5282         rm $FILE
5283 }
5284
5285 test_118a() #bug 11710
5286 {
5287         reset_async
5288
5289         multiop $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
5290         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
5291         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
5292
5293         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
5294                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
5295                 return 1;
5296         fi
5297         rm -f $DIR/$tfile
5298 }
5299 run_test 118a "verify O_SYNC works =========="
5300
5301 test_118b()
5302 {
5303         remote_ost_nodsh && skip "remote OST with nodsh" && return
5304
5305         reset_async
5306
5307         #define OBD_FAIL_OST_ENOENT 0x217
5308         set_nodes_failloc "$(osts_nodes)" 0x217
5309         multiop $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
5310         RC=$?
5311         set_nodes_failloc "$(osts_nodes)" 0
5312         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
5313         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
5314                     grep -c writeback)
5315
5316         if [[ $RC -eq 0 ]]; then
5317                 error "Must return error due to dropped pages, rc=$RC"
5318                 return 1;
5319         fi
5320
5321         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
5322                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
5323                 return 1;
5324         fi
5325
5326         echo "Dirty pages not leaked on ENOENT"
5327
5328         # Due to the above error the OSC will issue all RPCs syncronously
5329         # until a subsequent RPC completes successfully without error.
5330         multiop $DIR/$tfile Ow4096yc
5331         rm -f $DIR/$tfile
5332
5333         return 0
5334 }
5335 run_test 118b "Reclaim dirty pages on fatal error =========="
5336
5337 test_118c()
5338 {
5339         remote_ost_nodsh && skip "remote OST with nodsh" && return
5340
5341         reset_async
5342
5343         #define OBD_FAIL_OST_EROFS               0x216
5344         set_nodes_failloc "$(osts_nodes)" 0x216
5345
5346         # multiop should block due to fsync until pages are written
5347         multiop $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
5348         MULTIPID=$!
5349         sleep 1
5350
5351         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
5352                 error "Multiop failed to block on fsync, pid=$MULTIPID"
5353         fi
5354
5355         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
5356                     grep -c writeback)
5357         if [[ $WRITEBACK -eq 0 ]]; then
5358                 error "No page in writeback, writeback=$WRITEBACK"
5359         fi
5360
5361         set_nodes_failloc "$(osts_nodes)" 0
5362         wait $MULTIPID
5363         RC=$?
5364         if [[ $RC -ne 0 ]]; then
5365                 error "Multiop fsync failed, rc=$RC"
5366         fi
5367
5368         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
5369         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
5370                     grep -c writeback)
5371         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
5372                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
5373         fi
5374
5375         rm -f $DIR/$tfile
5376         echo "Dirty pages flushed via fsync on EROFS"
5377         return 0
5378 }
5379 run_test 118c "Fsync blocks on EROFS until dirty pages are flushed =========="
5380
5381 test_118d()
5382 {
5383         remote_ost_nodsh && skip "remote OST with nodsh" && return
5384
5385         reset_async
5386
5387         #define OBD_FAIL_OST_BRW_PAUSE_BULK
5388         set_nodes_failloc "$(osts_nodes)" 0x214
5389         # multiop should block due to fsync until pages are written
5390         multiop $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
5391         MULTIPID=$!
5392         sleep 1
5393
5394         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
5395                 error "Multiop failed to block on fsync, pid=$MULTIPID"
5396         fi
5397
5398         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
5399                     grep -c writeback)
5400         if [[ $WRITEBACK -eq 0 ]]; then
5401                 error "No page in writeback, writeback=$WRITEBACK"
5402         fi
5403
5404         wait $MULTIPID || error "Multiop fsync failed, rc=$?"
5405         set_nodes_failloc "$(osts_nodes)" 0
5406
5407         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
5408         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
5409                     grep -c writeback)
5410         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
5411                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
5412         fi
5413
5414         rm -f $DIR/$tfile
5415         echo "Dirty pages gaurenteed flushed via fsync"
5416         return 0
5417 }
5418 run_test 118d "Fsync validation inject a delay of the bulk =========="
5419
5420 test_118f() {
5421         reset_async
5422
5423         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
5424         lctl set_param fail_loc=0x8000040a
5425
5426         # Should simulate EINVAL error which is fatal
5427         multiop $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
5428         RC=$?
5429         if [[ $RC -eq 0 ]]; then
5430                 error "Must return error due to dropped pages, rc=$RC"
5431         fi
5432
5433         lctl set_param fail_loc=0x0
5434
5435         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
5436         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
5437         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
5438                     grep -c writeback)
5439         if [[ $LOCKED -ne 0 ]]; then
5440                 error "Locked pages remain in cache, locked=$LOCKED"
5441         fi
5442
5443         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
5444                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
5445         fi
5446
5447         rm -f $DIR/$tfile
5448         echo "No pages locked after fsync"
5449
5450         reset_async
5451         return 0
5452 }
5453 run_test 118f "Simulate unrecoverable OSC side error =========="
5454
5455 test_118g() {
5456         reset_async
5457
5458         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
5459         lctl set_param fail_loc=0x406
5460
5461         # simulate local -ENOMEM
5462         multiop $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
5463         RC=$?
5464
5465         lctl set_param fail_loc=0
5466         if [[ $RC -eq 0 ]]; then
5467                 error "Must return error due to dropped pages, rc=$RC"
5468         fi
5469
5470         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
5471         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
5472         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
5473                         grep -c writeback)
5474         if [[ $LOCKED -ne 0 ]]; then
5475                 error "Locked pages remain in cache, locked=$LOCKED"
5476         fi
5477
5478         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
5479                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
5480         fi
5481
5482         rm -f $DIR/$tfile
5483         echo "No pages locked after fsync"
5484
5485         reset_async
5486         return 0
5487 }
5488 run_test 118g "Don't stay in wait if we got local -ENOMEM  =========="
5489
5490 test_118h() {
5491         remote_ost_nodsh && skip "remote OST with nodsh" && return
5492
5493         reset_async
5494
5495         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
5496         set_nodes_failloc "$(osts_nodes)" 0x20e
5497         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
5498         multiop $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
5499         RC=$?
5500
5501         set_nodes_failloc "$(osts_nodes)" 0
5502         if [[ $RC -eq 0 ]]; then
5503                 error "Must return error due to dropped pages, rc=$RC"
5504         fi
5505
5506         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
5507         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
5508         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
5509                     grep -c writeback)
5510         if [[ $LOCKED -ne 0 ]]; then
5511                 error "Locked pages remain in cache, locked=$LOCKED"
5512         fi
5513
5514         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
5515                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
5516         fi
5517
5518         rm -f $DIR/$tfile
5519         echo "No pages locked after fsync"
5520
5521         return 0
5522 }
5523 run_test 118h "Verify timeout in handling recoverables errors  =========="
5524
5525 test_118i() {
5526         remote_ost_nodsh && skip "remote OST with nodsh" && return
5527
5528         reset_async
5529
5530         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
5531         set_nodes_failloc "$(osts_nodes)" 0x20e
5532
5533         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
5534         multiop $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
5535         PID=$!
5536         sleep 5
5537         set_nodes_failloc "$(osts_nodes)" 0
5538
5539         wait $PID
5540         RC=$?
5541         if [[ $RC -ne 0 ]]; then
5542                 error "got error, but should be not, rc=$RC"
5543         fi
5544
5545         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
5546         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
5547         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
5548         if [[ $LOCKED -ne 0 ]]; then
5549                 error "Locked pages remain in cache, locked=$LOCKED"
5550         fi
5551
5552         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
5553                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
5554         fi
5555
5556         rm -f $DIR/$tfile
5557         echo "No pages locked after fsync"
5558
5559         return 0
5560 }
5561 run_test 118i "Fix error before timeout in recoverable error  =========="
5562
5563 test_118j() {
5564         remote_ost_nodsh && skip "remote OST with nodsh" && return
5565
5566         reset_async
5567
5568         #define OBD_FAIL_OST_BRW_WRITE_BULK2     0x220
5569         set_nodes_failloc "$(osts_nodes)" 0x220
5570
5571         # return -EIO from OST
5572         multiop $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
5573         RC=$?
5574         set_nodes_failloc "$(osts_nodes)" 0x0
5575         if [[ $RC -eq 0 ]]; then
5576                 error "Must return error due to dropped pages, rc=$RC"
5577         fi
5578
5579         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
5580         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
5581         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
5582         if [[ $LOCKED -ne 0 ]]; then
5583                 error "Locked pages remain in cache, locked=$LOCKED"
5584         fi
5585
5586         # in recoverable error on OST we want resend and stay until it finished
5587         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
5588                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
5589         fi
5590
5591         rm -f $DIR/$tfile
5592         echo "No pages locked after fsync"
5593
5594         return 0
5595 }
5596 run_test 118j "Simulate unrecoverable OST side error =========="
5597
5598 test_118k()
5599 {
5600         remote_ost_nodsh && skip "remote OSTs with nodsh" && return
5601
5602         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
5603         set_nodes_failloc "$(osts_nodes)" 0x20e
5604         mkdir -p $DIR/$tdir
5605
5606         for ((i=0;i<10;i++)); do
5607                 (dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=1M count=10 || \
5608                         error "dd to $DIR/$tdir/$tfile-$i failed" )&
5609                 SLEEPPID=$!
5610                 sleep 0.500s
5611                 kill $SLEEPPID
5612                 wait $SLEEPPID
5613         done
5614
5615         set_nodes_failloc "$(osts_nodes)" 0
5616         rm -rf $DIR/$tdir
5617 }
5618 run_test 118k "bio alloc -ENOMEM and IO TERM handling ========="
5619
5620 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
5621
5622 test_119a() # bug 11737
5623 {
5624         BSIZE=$((512 * 1024))
5625         directio write $DIR/$tfile 0 1 $BSIZE
5626         # We ask to read two blocks, which is more than a file size.
5627         # directio will indicate an error when requested and actual
5628         # sizes aren't equeal (a normal situation in this case) and
5629         # print actual read amount.
5630         NOB=`directio read $DIR/$tfile 0 2 $BSIZE | awk '/error/ {print $6}'`
5631         if [ "$NOB" != "$BSIZE" ]; then
5632                 error "read $NOB bytes instead of $BSIZE"
5633         fi
5634         rm -f $DIR/$tfile
5635 }
5636 run_test 119a "Short directIO read must return actual read amount"
5637
5638 test_119b() # bug 11737
5639 {
5640         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
5641
5642         $SETSTRIPE -c 2 $DIR/$tfile || error "setstripe failed"
5643         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1 || error "dd failed"
5644         sync
5645         multiop $DIR/$tfile oO_RDONLY:O_DIRECT:r$((2048 * 1024)) || \
5646                 error "direct read failed"
5647         rm -f $DIR/$tfile
5648 }
5649 run_test 119b "Sparse directIO read must return actual read amount"
5650
5651 test_119c() # bug 13099
5652 {
5653         BSIZE=1048576
5654         directio write $DIR/$tfile 3 1 $BSIZE || error "direct write failed"
5655         directio readhole $DIR/$tfile 0 2 $BSIZE || error "reading hole failed"
5656         rm -f $DIR/$tfile
5657 }
5658 run_test 119c "Testing for direct read hitting hole"
5659
5660 test_119d() # bug 15950
5661 {
5662         MAX_RPCS_IN_FLIGHT=`$LCTL get_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight`
5663         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight 1
5664         BSIZE=1048576
5665         $SETSTRIPE $DIR/$tfile -i 0 -c 1 || error "setstripe failed"
5666         $DIRECTIO write $DIR/$tfile 0 1 $BSIZE || error "first directio failed"
5667         #define OBD_FAIL_OSC_DIO_PAUSE           0x40d
5668         lctl set_param fail_loc=0x40d
5669         $DIRECTIO write $DIR/$tfile 1 4 $BSIZE &
5670         pid_dio=$!
5671         sleep 1
5672         cat $DIR/$tfile > /dev/null &
5673         lctl set_param fail_loc=0
5674         pid_reads=$!
5675         wait $pid_dio
5676         log "the DIO writes have completed, now wait for the reads (should not block very long)"
5677         sleep 2
5678         [ -n "`ps h -p $pid_reads -o comm`" ] && \
5679         error "the read rpcs have not completed in 2s"
5680         rm -f $DIR/$tfile
5681         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight $MAX_RPCS_IN_FLIGHT
5682 }
5683 run_test 119d "The DIO path should try to send a new rpc once one is completed"
5684
5685 test_120a() {
5686         mkdir -p $DIR/$tdir
5687         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
5688                skip "no early lock cancel on server" && return 0
5689         lru_resize_disable mdc
5690         lru_resize_disable osc
5691         cancel_lru_locks mdc
5692         stat $DIR/$tdir > /dev/null
5693         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
5694         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
5695         mkdir $DIR/$tdir/d1
5696         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
5697         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
5698         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
5699         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
5700         lru_resize_enable mdc
5701         lru_resize_enable osc
5702 }
5703 run_test 120a "Early Lock Cancel: mkdir test"
5704
5705 test_120b() {
5706         mkdir -p $DIR/$tdir
5707         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
5708                skip "no early lock cancel on server" && return 0
5709         lru_resize_disable mdc
5710         lru_resize_disable osc
5711         cancel_lru_locks mdc
5712         stat $DIR/$tdir > /dev/null
5713         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
5714         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
5715         touch $DIR/$tdir/f1
5716         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
5717         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
5718         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
5719         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
5720         lru_resize_enable mdc
5721         lru_resize_enable osc
5722 }
5723 run_test 120b "Early Lock Cancel: create test"
5724
5725 test_120c() {
5726         mkdir -p $DIR/$tdir
5727         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
5728                skip "no early lock cancel on server" && return 0
5729         lru_resize_disable mdc
5730         lru_resize_disable osc
5731         mkdir -p $DIR/$tdir/d1 $DIR/$tdir/d2
5732         touch $DIR/$tdir/d1/f1
5733         cancel_lru_locks mdc
5734         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 > /dev/null
5735         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
5736         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
5737         ln $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
5738         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
5739         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
5740         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
5741         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
5742         lru_resize_enable mdc
5743         lru_resize_enable osc
5744 }
5745 run_test 120c "Early Lock Cancel: link test"
5746
5747 test_120d() {
5748         mkdir -p $DIR/$tdir
5749         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
5750                skip "no early lock cancel on server" && return 0
5751         lru_resize_disable mdc
5752         lru_resize_disable osc
5753         touch $DIR/$tdir
5754         cancel_lru_locks mdc
5755         stat $DIR/$tdir > /dev/null
5756         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
5757         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
5758         chmod a+x $DIR/$tdir
5759         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
5760         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
5761         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
5762         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
5763         lru_resize_enable mdc
5764         lru_resize_enable osc
5765 }
5766 run_test 120d "Early Lock Cancel: setattr test"
5767
5768 test_120e() {
5769         mkdir -p $DIR/$tdir
5770         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
5771                skip "no early lock cancel on server" && return 0
5772         lru_resize_disable mdc
5773         lru_resize_disable osc
5774         dd if=/dev/zero of=$DIR/$tdir/f1 count=1
5775         cancel_lru_locks mdc
5776         cancel_lru_locks osc
5777         dd if=$DIR/$tdir/f1 of=/dev/null
5778         stat $DIR/$tdir $DIR/$tdir/f1 > /dev/null
5779         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
5780               awk '/ldlm_cancel/ {print $2}'`
5781         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
5782               awk '/ldlm_bl_callback/ {print $2}'`
5783         unlink $DIR/$tdir/f1
5784         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
5785               awk '/ldlm_cancel/ {print $2}'`
5786         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
5787               awk '/ldlm_bl_callback/ {print $2}'`
5788         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
5789         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
5790         lru_resize_enable mdc
5791         lru_resize_enable osc
5792 }
5793 run_test 120e "Early Lock Cancel: unlink test"
5794
5795 test_120f() {
5796         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
5797                skip "no early lock cancel on server" && return 0
5798         mkdir -p $DIR/$tdir
5799         lru_resize_disable mdc
5800         lru_resize_disable osc
5801         mkdir -p $DIR/$tdir/d1 $DIR/$tdir/d2
5802         dd if=/dev/zero of=$DIR/$tdir/d1/f1 count=1
5803         dd if=/dev/zero of=$DIR/$tdir/d2/f2 count=1
5804         cancel_lru_locks mdc
5805         cancel_lru_locks osc
5806         dd if=$DIR/$tdir/d1/f1 of=/dev/null
5807         dd if=$DIR/$tdir/d2/f2 of=/dev/null
5808         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2 > /dev/null
5809         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
5810               awk '/ldlm_cancel/ {print $2}'`
5811         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
5812               awk '/ldlm_bl_callback/ {print $2}'`
5813         mv $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
5814         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
5815               awk '/ldlm_cancel/ {print $2}'`
5816         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
5817               awk '/ldlm_bl_callback/ {print $2}'`
5818         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
5819         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
5820         lru_resize_enable mdc
5821         lru_resize_enable osc
5822 }
5823 run_test 120f "Early Lock Cancel: rename test"
5824
5825 test_120g() {
5826         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
5827                skip "no early lock cancel on server" && return 0
5828         lru_resize_disable mdc
5829         lru_resize_disable osc
5830         count=10000
5831         echo create $count files
5832         mkdir -p $DIR/$tdir
5833         cancel_lru_locks mdc
5834         cancel_lru_locks osc
5835         t0=`date +%s`
5836
5837         can0=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
5838               awk '/ldlm_cancel/ {print $2}'`
5839         blk0=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
5840               awk '/ldlm_bl_callback/ {print $2}'`
5841         createmany -o $DIR/$tdir/f $count
5842         sync
5843         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
5844               awk '/ldlm_cancel/ {print $2}'`
5845         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
5846               awk '/ldlm_bl_callback/ {print $2}'`
5847         t1=`date +%s`
5848         echo total: $((can1-can0)) cancels, $((blk1-blk0)) blockings
5849         echo rm $count files
5850         rm -r $DIR/$tdir
5851         sync
5852         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
5853               awk '/ldlm_cancel/ {print $2}'`
5854         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
5855               awk '/ldlm_bl_callback/ {print $2}'`
5856         t2=`date +%s`
5857         echo total: $count removes in $((t2-t1))
5858         echo total: $((can2-can1)) cancels, $((blk2-blk1)) blockings
5859         sleep 2
5860         # wait for commitment of removal
5861         lru_resize_enable mdc
5862         lru_resize_enable osc
5863 }
5864 run_test 120g "Early Lock Cancel: performance test"
5865
5866 test_121() { #bug #10589
5867         rm -rf $DIR/$tfile
5868         writes=$(LANG=C dd if=/dev/zero of=$DIR/$tfile count=1 2>&1 | awk -F '+' '/out$/ {print $1}')
5869 #define OBD_FAIL_LDLM_CANCEL_RACE        0x310
5870         lctl set_param fail_loc=0x310
5871         cancel_lru_locks osc > /dev/null
5872         reads=$(LANG=C dd if=$DIR/$tfile of=/dev/null 2>&1 | awk -F '+' '/in$/ {print $1}')
5873         lctl set_param fail_loc=0
5874         [ "$reads" -eq "$writes" ] || error "read" $reads "blocks, must be" $writes
5875 }
5876 run_test 121 "read cancel race ========="
5877
5878 test_123a() { # was test 123, statahead(bug 11401)
5879         SLOWOK=0
5880         if [ -z "$(grep "processor.*: 1" /proc/cpuinfo)" ]; then
5881             log "testing on UP system. Performance may be not as good as expected."
5882                         SLOWOK=1
5883         fi
5884
5885         rm -rf $DIR/$tdir
5886         mkdir -p $DIR/$tdir
5887         NUMFREE=`df -i -P $DIR | tail -n 1 | awk '{ print $4 }'`
5888         [ $NUMFREE -gt 100000 ] && NUMFREE=100000 || NUMFREE=$((NUMFREE-1000))
5889         MULT=10
5890         for ((i=100, j=0; i<=$NUMFREE; j=$i, i=$((i * MULT)) )); do
5891                 createmany -o $DIR/$tdir/$tfile $j $((i - j))
5892
5893                 max=`lctl get_param -n llite.*.statahead_max | head -n 1`
5894                 lctl set_param -n llite.*.statahead_max 0
5895                 lctl get_param llite.*.statahead_max
5896                 cancel_lru_locks mdc
5897                 cancel_lru_locks osc
5898                 stime=`date +%s`
5899                 time ls -l $DIR/$tdir | wc -l
5900                 etime=`date +%s`
5901                 delta=$((etime - stime))
5902                 log "ls $i files without statahead: $delta sec"
5903                 lctl set_param llite.*.statahead_max=$max
5904
5905                 swrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
5906                 lctl get_param -n llite.*.statahead_max | grep '[0-9]'
5907                 cancel_lru_locks mdc
5908                 cancel_lru_locks osc
5909                 stime=`date +%s`
5910                 time ls -l $DIR/$tdir | wc -l
5911                 etime=`date +%s`
5912                 delta_sa=$((etime - stime))
5913                 log "ls $i files with statahead: $delta_sa sec"
5914                 lctl get_param -n llite.*.statahead_stats
5915                 ewrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
5916
5917                 [ $swrong -lt $ewrong ] && log "statahead was stopped, maybe too many locks held!"
5918                 [ $delta -eq 0 -o $delta_sa -eq 0 ] && continue
5919
5920                 if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
5921                     max=`lctl get_param -n llite.*.statahead_max | head -n 1`
5922                     lctl set_param -n llite.*.statahead_max 0
5923                     lctl get_param llite.*.statahead_max
5924                     cancel_lru_locks mdc
5925                     cancel_lru_locks osc
5926                     stime=`date +%s`
5927                     time ls -l $DIR/$tdir | wc -l
5928                     etime=`date +%s`
5929                     delta=$((etime - stime))
5930                     log "ls $i files again without statahead: $delta sec"
5931                     lctl set_param llite.*.statahead_max=$max
5932                     if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
5933                         if [  $SLOWOK -eq 0 ]; then
5934                                 error "ls $i files is slower with statahead!"
5935                         else
5936                                 log "ls $i files is slower with statahead!"
5937                         fi
5938                         break
5939                     fi
5940                 fi
5941
5942                 [ $delta -gt 20 ] && break
5943                 [ $delta -gt 8 ] && MULT=$((50 / delta))
5944                 [ "$SLOW" = "no" -a $delta -gt 5 ] && break
5945         done
5946         log "ls done"
5947
5948         stime=`date +%s`
5949         rm -r $DIR/$tdir
5950         sync
5951         etime=`date +%s`
5952         delta=$((etime - stime))
5953         log "rm -r $DIR/$tdir/: $delta seconds"
5954         log "rm done"
5955         lctl get_param -n llite.*.statahead_stats
5956 }
5957 run_test 123a "verify statahead work"
5958
5959 test_123b () { # statahead(bug 15027)
5960         mkdir -p $DIR/$tdir
5961         createmany -o $DIR/$tdir/$tfile-%d 1000
5962
5963         cancel_lru_locks mdc
5964         cancel_lru_locks osc
5965
5966 #define OBD_FAIL_MDC_GETATTR_ENQUEUE     0x803
5967         lctl set_param fail_loc=0x80000803
5968         ls -lR $DIR/$tdir > /dev/null
5969         log "ls done"
5970         lctl set_param fail_loc=0x0
5971         lctl get_param -n llite.*.statahead_stats
5972         rm -r $DIR/$tdir
5973         sync
5974
5975 }
5976 run_test 123b "not panic with network error in statahead enqueue (bug 15027)"
5977
5978 test_124a() {
5979         [ -z "`lctl get_param -n mdc.*.connect_flags | grep lru_resize`" ] && \
5980                skip "no lru resize on server" && return 0
5981         local NR=2000
5982         mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
5983
5984         log "create $NR files at $DIR/$tdir"
5985         createmany -o $DIR/$tdir/f $NR ||
5986                 error "failed to create $NR files in $DIR/$tdir"
5987
5988         cancel_lru_locks mdc
5989         ls -l $DIR/$tdir > /dev/null
5990
5991         local NSDIR=""
5992         local LRU_SIZE=0
5993         for VALUE in `lctl get_param ldlm.namespaces.*mdc-*.lru_size`; do
5994                 local PARAM=`echo ${VALUE[0]} | cut -d "=" -f1`
5995                 LRU_SIZE=$(lctl get_param -n $PARAM)
5996                 if [ $LRU_SIZE -gt $(default_lru_size) ]; then
5997                         NSDIR=$(echo $PARAM | cut -d "." -f1-3)
5998                         log "NS=$(basename $NSDIR)"
5999                         break
6000                 fi
6001         done
6002
6003         if [ -z "$NSDIR" -o $LRU_SIZE -lt $(default_lru_size) ]; then
6004                 skip "Not enough cached locks created!"
6005                 return 0
6006         fi
6007         log "LRU=$LRU_SIZE"
6008
6009         local SLEEP=30
6010
6011         # We know that lru resize allows one client to hold $LIMIT locks
6012         # for 10h. After that locks begin to be killed by client.
6013         local MAX_HRS=10
6014         local LIMIT=`lctl get_param -n $NSDIR.pool.limit`
6015
6016         # Make LVF so higher that sleeping for $SLEEP is enough to _start_
6017         # killing locks. Some time was spent for creating locks. This means
6018         # that up to the moment of sleep finish we must have killed some of
6019         # them (10-100 locks). This depends on how fast ther were created.
6020         # Many of them were touched in almost the same moment and thus will
6021         # be killed in groups.
6022         local LVF=$(($MAX_HRS * 60 * 60 / $SLEEP * $LIMIT / $LRU_SIZE))
6023
6024         # Use $LRU_SIZE_B here to take into account real number of locks
6025         # created in the case of CMD, LRU_SIZE_B != $NR in most of cases
6026         local LRU_SIZE_B=$LRU_SIZE
6027         log "LVF=$LVF"
6028         local OLD_LVF=`lctl get_param -n $NSDIR.pool.lock_volume_factor`
6029         lctl set_param -n $NSDIR.pool.lock_volume_factor $LVF
6030
6031         # Let's make sure that we really have some margin. Client checks
6032         # cached locks every 10 sec.
6033         SLEEP=$((SLEEP+20))
6034         log "Sleep ${SLEEP} sec"
6035         local SEC=0
6036         while ((SEC<$SLEEP)); do
6037                 echo -n "..."
6038                 sleep 5
6039                 SEC=$((SEC+5))
6040                 LRU_SIZE=`lctl get_param -n $NSDIR/lru_size`
6041                 echo -n "$LRU_SIZE"
6042         done
6043         echo ""
6044         lctl set_param -n $NSDIR.pool.lock_volume_factor $OLD_LVF
6045         local LRU_SIZE_A=`lctl get_param -n $NSDIR/lru_size`
6046
6047         [ $LRU_SIZE_B -gt $LRU_SIZE_A ] || {
6048                 error "No locks dropped in ${SLEEP}s. LRU size: $LRU_SIZE_A"
6049                 unlinkmany $DIR/$tdir/f $NR
6050                 return
6051         }
6052
6053         log "Dropped "$((LRU_SIZE_B-LRU_SIZE_A))" locks in ${SLEEP}s"
6054         log "unlink $NR files at $DIR/$tdir"
6055         unlinkmany $DIR/$tdir/f $NR
6056 }
6057 run_test 124a "lru resize ======================================="
6058
6059 get_max_pool_limit()
6060 {
6061         local limit=`lctl get_param -n ldlm.namespaces.*-MDT0000-mdc-*.pool.limit`
6062         local max=0
6063         for l in $limit; do
6064                 if test $l -gt $max; then
6065                         max=$l
6066                 fi
6067         done
6068         echo $max
6069 }
6070
6071 test_124b() {
6072         [ -z "`lctl get_param -n mdc.*.connect_flags | grep lru_resize`" ] && \
6073                skip "no lru resize on server" && return 0
6074
6075         LIMIT=`get_max_pool_limit`
6076
6077         NR=$(($(default_lru_size)*20))
6078         if [ $NR -gt $LIMIT ]; then
6079                 log "Limit lock number by $LIMIT locks"
6080                 NR=$LIMIT
6081         fi
6082         lru_resize_disable mdc
6083         mkdir -p $DIR/$tdir/disable_lru_resize ||
6084                 error "failed to create $DIR/$tdir/disable_lru_resize"
6085
6086         createmany -o $DIR/$tdir/disable_lru_resize/f $NR
6087         log "doing ls -la $DIR/$tdir/disable_lru_resize 3 times"
6088         cancel_lru_locks mdc
6089         stime=`date +%s`
6090         PID=""
6091         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
6092         PID="$PID $!"
6093         sleep 2
6094         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
6095         PID="$PID $!"
6096         sleep 2
6097         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
6098         PID="$PID $!"
6099         wait $PID
6100         etime=`date +%s`
6101         nolruresize_delta=$((etime-stime))
6102         log "ls -la time: $nolruresize_delta seconds"
6103         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
6104         unlinkmany $DIR/$tdir/disable_lru_resize/f $NR
6105
6106         lru_resize_enable mdc
6107         mkdir -p $DIR/$tdir/enable_lru_resize ||
6108                 error "failed to create $DIR/$tdir/enable_lru_resize"
6109
6110         createmany -o $DIR/$tdir/enable_lru_resize/f $NR
6111         log "doing ls -la $DIR/$tdir/enable_lru_resize 3 times"
6112         cancel_lru_locks mdc
6113         stime=`date +%s`
6114         PID=""
6115         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
6116         PID="$PID $!"
6117         sleep 2
6118         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
6119         PID="$PID $!"
6120         sleep 2
6121         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
6122         PID="$PID $!"
6123         wait $PID
6124         etime=`date +%s`
6125         lruresize_delta=$((etime-stime))
6126         log "ls -la time: $lruresize_delta seconds"
6127         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
6128
6129         if [ $lruresize_delta -gt $nolruresize_delta ]; then
6130                 log "ls -la is $(((lruresize_delta - $nolruresize_delta) * 100 / $nolruresize_delta))% slower with lru resize enabled"
6131         elif [ $nolruresize_delta -gt $lruresize_delta ]; then
6132                 log "ls -la is $(((nolruresize_delta - $lruresize_delta) * 100 / $nolruresize_delta))% faster with lru resize enabled"
6133         else
6134                 log "lru resize performs the same with no lru resize"
6135         fi
6136         unlinkmany $DIR/$tdir/enable_lru_resize/f $NR
6137 }
6138 run_test 124b "lru resize (performance test) ======================="
6139
6140 test_125() { # 13358
6141         [ -z "$(lctl get_param -n llite.*.client_type | grep local)" ] && skip "must run as local client" && return
6142         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] && skip "must have acl enabled" && return
6143         mkdir -p $DIR/d125 || error "mkdir failed"
6144         $SETSTRIPE $DIR/d125 -s 65536 -c -1 || error "setstripe failed"
6145         setfacl -R -m u:bin:rwx $DIR/d125 || error "setfacl $DIR/d125 failed"
6146         ls -ld $DIR/d125 || error "cannot access $DIR/d125"
6147 }
6148 run_test 125 "don't return EPROTO when a dir has a non-default striping and ACLs"
6149
6150 test_126() { # bug 12829/13455
6151         [ -z "$(lctl get_param -n llite.*.client_type | grep local)" ] && skip "must run as local client" && return
6152         [ "$UID" != 0 ] && skip_env "skipping $TESTNAME (must run as root)" && return
6153         $GSS && skip "must run as gss disabled" && return
6154
6155         $RUNAS -u 0 -g 1 touch $DIR/$tfile || error "touch failed"
6156         gid=`ls -n $DIR/$tfile | awk '{print $4}'`
6157         rm -f $DIR/$tfile
6158         [ $gid -eq "1" ] || error "gid is set to" $gid "instead of 1"
6159 }
6160 run_test 126 "check that the fsgid provided by the client is taken into account"
6161
6162 test_127() { # bug 15521
6163         $SETSTRIPE -i 0 -c 1 $DIR/$tfile || error "setstripe failed"
6164         $LCTL set_param osc.*.stats=0
6165         FSIZE=$((2048 * 1024))
6166         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
6167         cancel_lru_locks osc
6168         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE
6169
6170         $LCTL get_param osc.*0000-osc-*.stats | grep samples > $DIR/${tfile}.tmp
6171         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
6172                 echo "got $COUNT $NAME"
6173                 [ ! $MIN ] && error "Missing min value for $NAME proc entry"
6174                 eval $NAME=$COUNT || error "Wrong proc format"
6175
6176                 case $NAME in
6177                         read_bytes|write_bytes)
6178                         [ $MIN -lt 4096 ] && error "min is too small: $MIN"
6179                         [ $MIN -gt $FSIZE ] && error "min is too big: $MIN"
6180                         [ $MAX -lt 4096 ] && error "max is too small: $MAX"
6181                         [ $MAX -gt $FSIZE ] && error "max is too big: $MAX"
6182                         [ $SUM -ne $FSIZE ] && error "sum is wrong: $SUM"
6183                         [ $SUMSQ -lt $(((FSIZE /4096) * (4096 * 4096))) ] &&
6184                                 error "sumsquare is too small: $SUMSQ"
6185                         [ $SUMSQ -gt $((FSIZE * FSIZE)) ] &&
6186                                 error "sumsquare is too big: $SUMSQ"
6187                         ;;
6188                         *) ;;
6189                 esac
6190         done < $DIR/${tfile}.tmp
6191
6192         #check that we actually got some stats
6193         [ "$read_bytes" ] || error "Missing read_bytes stats"
6194         [ "$write_bytes" ] || error "Missing write_bytes stats"
6195         [ "$read_bytes" != 0 ] || error "no read done"
6196         [ "$write_bytes" != 0 ] || error "no write done"
6197 }
6198 run_test 127 "verify the client stats are sane"
6199
6200 test_128() { # bug 15212
6201         touch $DIR/$tfile
6202         $LFS 2>&1 <<-EOF | tee $TMP/$tfile.log
6203                 find $DIR/$tfile
6204                 find $DIR/$tfile
6205         EOF
6206
6207         result=$(grep error $TMP/$tfile.log)
6208         rm -f $DIR/$tfile
6209         [ -z "$result" ] || error "consecutive find's under interactive lfs failed"
6210 }
6211 run_test 128 "interactive lfs for 2 consecutive find's"
6212
6213 set_dir_limits () {
6214         local mntdev
6215         local canondev
6216         local node
6217
6218         local LDPROC=/proc/fs/ldiskfs
6219
6220         for facet in $(get_facets MDS); do
6221                 canondev=$(ldiskfs_canon *.$(convert_facet2label $facet).mntdev $facet)
6222                 do_facet $facet "test -e $LDPROC/$canondev/max_dir_size" || LDPROC=/sys/fs/ldiskfs
6223                 do_facet $facet "echo $1 >$LDPROC/$canondev/max_dir_size"
6224         done
6225 }
6226 test_129() {
6227         [ "$FSTYPE" != "ldiskfs" ] && skip "not needed for FSTYPE=$FSTYPE" && return 0
6228         remote_mds_nodsh && skip "remote MDS with nodsh" && return
6229
6230         EFBIG=27
6231         MAX=16384
6232
6233         set_dir_limits $MAX
6234
6235         mkdir -p $DIR/$tdir
6236
6237         I=0
6238         J=0
6239         while [ ! $I -gt $((MAX * MDSCOUNT)) ]; do
6240                 multiop $DIR/$tdir/$J Oc
6241                 rc=$?
6242                 if [ $rc -eq $EFBIG ]; then
6243                         set_dir_limits 0
6244                         echo "return code $rc received as expected"
6245                         return 0
6246                 elif [ $rc -ne 0 ]; then
6247                         set_dir_limits 0
6248                         error_exit "return code $rc received instead of expected $EFBIG"
6249                 fi
6250                 J=$((J+1))
6251                 I=$(stat -c%s "$DIR/$tdir")
6252         done
6253
6254         set_dir_limits 0
6255         error "exceeded dir size limit $MAX x $MDSCOUNT $((MAX * MDSCOUNT)) : $I bytes"
6256 }
6257 run_test 129 "test directory size limit ========================"
6258
6259 OLDIFS="$IFS"
6260 cleanup_130() {
6261         trap 0
6262         IFS="$OLDIFS"
6263 }
6264
6265 test_130a() {
6266         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
6267         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" && return
6268
6269         trap cleanup_130 EXIT RETURN
6270
6271         local fm_file=$DIR/$tfile
6272         lfs setstripe -s 65536 -c 1 $fm_file || error "setstripe failed on $fm_file"
6273         dd if=/dev/zero of=$fm_file bs=65536 count=1 || error "dd failed for $fm_file"
6274
6275         filefrag -ves $fm_file || error "filefrag $fm_file failed"
6276         filefrag_op=`filefrag -ve $fm_file | grep -A 100 "ext:" | grep -v "ext:" | grep -v "found"`
6277
6278         lun=`$GETSTRIPE $fm_file  | grep -A 10 obdidx | awk '{print $1}' | grep -v "obdidx"`
6279
6280         start_blk=`echo $filefrag_op | cut -d: -f2 | cut -d. -f1`
6281         IFS=$'\n'
6282         tot_len=0
6283         for line in $filefrag_op
6284         do
6285                 frag_lun=`echo $line | cut -d: -f5`
6286                 ext_len=`echo $line | cut -d: -f4`
6287                 if (( $frag_lun != $lun )); then
6288                         cleanup_130
6289                         error "FIEMAP on 1-stripe file($fm_file) failed"
6290                         return
6291                 fi
6292                 (( tot_len += ext_len ))
6293         done
6294
6295         if (( lun != frag_lun || start_blk != 0 || tot_len != 64 )); then
6296                 cleanup_130
6297                 error "FIEMAP on 1-stripe file($fm_file) failed;"
6298                 return
6299         fi
6300
6301         cleanup_130
6302
6303         echo "FIEMAP on single striped file succeeded"
6304 }
6305 run_test 130a "FIEMAP (1-stripe file)"
6306
6307 test_130b() {
6308         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping FIEMAP on 2-stripe file test" && return
6309
6310         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
6311         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" && return
6312
6313         trap cleanup_130 EXIT RETURN
6314
6315         local fm_file=$DIR/$tfile
6316         lfs setstripe -s 65536 -c 2 $fm_file || error "setstripe failed on $fm_file"
6317         dd if=/dev/zero of=$fm_file bs=1M count=2 || error "dd failed on $fm_file"
6318
6319         filefrag -ves $fm_file || error "filefrag $fm_file failed"
6320         filefrag_op=`filefrag -ve $fm_file | grep -A 100 "ext:" | grep -v "ext:" | grep -v "found"`
6321
6322         last_lun=`echo $filefrag_op | cut -d: -f5`
6323
6324         IFS=$'\n'
6325         tot_len=0
6326         num_luns=1
6327         for line in $filefrag_op
6328         do
6329                 frag_lun=`echo $line | cut -d: -f5`
6330                 ext_len=`echo $line | cut -d: -f4`
6331                 if (( $frag_lun != $last_lun )); then
6332                         if (( tot_len != 1024 )); then
6333                                 cleanup_130
6334                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of 256"
6335                                 return
6336                         else
6337                                 (( num_luns += 1 ))
6338                                 tot_len=0
6339                         fi
6340                 fi
6341                 (( tot_len += ext_len ))
6342                 last_lun=$frag_lun
6343         done
6344         if (( num_luns != 2 || tot_len != 1024 )); then
6345                 cleanup_130
6346                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
6347                 return
6348         fi
6349
6350         cleanup_130
6351
6352         echo "FIEMAP on 2-stripe file succeeded"
6353 }
6354 run_test 130b "FIEMAP (2-stripe file)"
6355
6356 test_130c() {
6357         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping FIEMAP on 2-stripe file with hole test" && return
6358
6359         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
6360         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" && return
6361
6362         trap cleanup_130 EXIT RETURN
6363
6364         local fm_file=$DIR/$tfile
6365         lfs setstripe -s 65536 -c 2 $fm_file || error "setstripe failed on $fm_file"
6366         dd if=/dev/zero of=$fm_file seek=1 bs=1M count=1 || error "dd failed on $fm_file"
6367
6368         filefrag -ves $fm_file || error "filefrag $fm_file failed"
6369         filefrag_op=`filefrag -ve $fm_file | grep -A 100 "ext:" | grep -v "ext:" | grep -v "found"`
6370
6371         last_lun=`echo $filefrag_op | cut -d: -f5`
6372
6373         IFS=$'\n'
6374         tot_len=0
6375         num_luns=1
6376         for line in $filefrag_op
6377         do
6378                 frag_lun=`echo $line | cut -d: -f5`
6379                 ext_len=`echo $line | cut -d: -f4`
6380                 if (( $frag_lun != $last_lun )); then
6381                         logical=`echo $line | cut -d: -f2 | cut -d. -f1`
6382                         if (( logical != 512 )); then
6383                                 cleanup_130
6384                                 error "FIEMAP on $fm_file failed; returned logical start for lun $logical instead of 512"
6385                                 return
6386                         fi
6387                         if (( tot_len != 512 )); then
6388                                 cleanup_130
6389                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of 1024"
6390                                 return
6391                         else
6392                                 (( num_luns += 1 ))
6393                                 tot_len=0
6394                         fi
6395                 fi
6396                 (( tot_len += ext_len ))
6397                 last_lun=$frag_lun
6398         done
6399         if (( num_luns != 2 || tot_len != 512 )); then
6400                 cleanup_130
6401                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
6402                 return
6403         fi
6404
6405         cleanup_130
6406
6407         echo "FIEMAP on 2-stripe file with hole succeeded"
6408 }
6409 run_test 130c "FIEMAP (2-stripe file with hole)"
6410
6411 test_130d() {
6412         [ "$OSTCOUNT" -lt "3" ] && skip_env "skipping FIEMAP on N-stripe file test" && return
6413
6414         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
6415         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" && return
6416
6417         trap cleanup_130 EXIT RETURN
6418
6419         local fm_file=$DIR/$tfile
6420         lfs setstripe -s 65536 -c $OSTCOUNT $fm_file || error "setstripe failed on $fm_file"
6421         dd if=/dev/zero of=$fm_file bs=1M count=$OSTCOUNT || error "dd failed on $fm_file"
6422
6423         filefrag -ves $fm_file || error "filefrag $fm_file failed"
6424         filefrag_op=`filefrag -ve $fm_file | grep -A 100 "ext:" | grep -v "ext:" | grep -v "found"`
6425
6426         last_lun=`echo $filefrag_op | cut -d: -f5`
6427
6428         IFS=$'\n'
6429         tot_len=0
6430         num_luns=1
6431         for line in $filefrag_op
6432         do
6433                 frag_lun=`echo $line | cut -d: -f5`
6434                 ext_len=`echo $line | cut -d: -f4`
6435                 if (( $frag_lun != $last_lun )); then
6436                         if (( tot_len != 1024 )); then
6437                                 cleanup_130
6438                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of 1024"
6439                                 return
6440                         else
6441                                 (( num_luns += 1 ))
6442                                 tot_len=0
6443                         fi
6444                 fi
6445                 (( tot_len += ext_len ))
6446                 last_lun=$frag_lun
6447         done
6448         if (( num_luns != OSTCOUNT || tot_len != 1024 )); then
6449                 cleanup_130
6450                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
6451                 return
6452         fi
6453
6454         cleanup_130
6455
6456         echo "FIEMAP on N-stripe file succeeded"
6457 }
6458 run_test 130d "FIEMAP (N-stripe file)"
6459
6460 test_130e() {
6461         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping continuation FIEMAP test" && return
6462
6463         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
6464         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" && return
6465
6466         trap cleanup_130 EXIT RETURN
6467
6468         local fm_file=$DIR/$tfile
6469         lfs setstripe -s 131072 -c 2 $fm_file || error "setstripe failed on $fm_file"
6470         NUM_BLKS=512
6471         EXPECTED_LEN=$(( (NUM_BLKS / 2) * 64 ))
6472         for ((i = 0; i < $NUM_BLKS; i++))
6473         do
6474                 dd if=/dev/zero of=$fm_file count=1 bs=64k seek=$((2*$i)) conv=notrunc > /dev/null 2>&1
6475         done
6476
6477         filefrag -ves $fm_file || error "filefrag $fm_file failed"
6478         filefrag_op=`filefrag -ve $fm_file | grep -A 12000 "ext:" | grep -v "ext:" | grep -v "found"`
6479
6480         last_lun=`echo $filefrag_op | cut -d: -f5`
6481
6482         IFS=$'\n'
6483         tot_len=0
6484         num_luns=1
6485         for line in $filefrag_op
6486         do
6487                 frag_lun=`echo $line | cut -d: -f5`
6488                 ext_len=`echo $line | cut -d: -f4`
6489                 if (( $frag_lun != $last_lun )); then
6490                         if (( tot_len != $EXPECTED_LEN )); then
6491                                 cleanup_130
6492                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of $EXPECTED_LEN"
6493                                 return
6494                         else
6495                                 (( num_luns += 1 ))
6496                                 tot_len=0
6497                         fi
6498                 fi
6499                 (( tot_len += ext_len ))
6500                 last_lun=$frag_lun
6501         done
6502         if (( num_luns != 2 || tot_len != $EXPECTED_LEN )); then
6503                 cleanup_130
6504                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
6505                 return
6506         fi
6507
6508         cleanup_130
6509
6510         echo "FIEMAP with continuation calls succeeded"
6511 }
6512 run_test 130e "FIEMAP (test continuation FIEMAP calls)"
6513
6514 # Test for writev/readv
6515 test_131a() {
6516         rwv -f $DIR/$tfile -w -n 3 524288 1048576 1572864 || \
6517         error "writev test failed"
6518         rwv -f $DIR/$tfile -r -v -n 2 1572864 1048576 || \
6519         error "readv failed"
6520         rm -f $DIR/$tfile
6521 }
6522 run_test 131a "test iov's crossing stripe boundary for writev/readv"
6523
6524 test_131b() {
6525         rwv -f $DIR/$tfile -w -a -n 3 524288 1048576 1572864 || \
6526         error "append writev test failed"
6527         rwv -f $DIR/$tfile -w -a -n 2 1572864 1048576 || \
6528         error "append writev test failed"
6529         rm -f $DIR/$tfile
6530 }
6531 run_test 131b "test append writev"
6532
6533 test_131c() {
6534         rwv -f $DIR/$tfile -w -d -n 1 1048576 || return 0
6535         error "NOT PASS"
6536 }
6537 run_test 131c "test read/write on file w/o objects"
6538
6539 test_131d() {
6540         rwv -f $DIR/$tfile -w -n 1 1572864
6541         NOB=`rwv -f $DIR/$tfile -r -n 3 524288 524288 1048576 | awk '/error/ {print $6}'`
6542         if [ "$NOB" != 1572864 ]; then
6543                 error "Short read filed: read $NOB bytes instead of 1572864"
6544         fi
6545         rm -f $DIR/$tfile
6546 }
6547 run_test 131d "test short read"
6548
6549 test_131e() {
6550         rwv -f $DIR/$tfile -w -s 1048576 -n 1 1048576
6551         rwv -f $DIR/$tfile -r -z -s 0 -n 1 524288 || \
6552         error "read hitting hole failed"
6553         rm -f $DIR/$tfile
6554 }
6555 run_test 131e "test read hitting hole"
6556
6557 get_ost_param() {
6558         local token=$1
6559         local gl_sum=0
6560         for node in $(osts_nodes); do
6561                 gl=$(do_node $node "$LCTL get_param -n ost.OSS.ost.stats" | awk '/'$token'/ {print $2}' | head -n 1)
6562                 [ x$gl = x"" ] && gl=0
6563                 gl_sum=$((gl_sum + gl))
6564         done
6565         echo $gl
6566 }
6567
6568 som_mode_switch() {
6569         local som=$1
6570         local gl1=$2
6571         local gl2=$3
6572
6573         if [ x$som = x"enabled" ]; then
6574                 [ $((gl2 - gl1)) -gt 0 ] && error "no glimpse RPC is expected"
6575                 MOUNTOPT=`echo $MOUNTOPT | sed 's/som_preview//g'`
6576                 do_facet mgs "$LCTL conf_param $FSNAME.mdt.som=disabled"
6577         else
6578                 [ $((gl2 - gl1)) -gt 0 ] || error "some glimpse RPC is expected"
6579                 MOUNTOPT="$MOUNTOPT,som_preview"
6580                 do_facet mgs "$LCTL conf_param $FSNAME.mdt.som=enabled"
6581         fi
6582
6583         # do remount to make new mount-conf parameters actual
6584         echo remounting...
6585         sync
6586         stopall
6587         setupall
6588 }
6589
6590 test_132() { #1028, SOM
6591         local num=$(get_mds_dir $DIR)
6592         local mymds=mds${num}
6593         local MOUNTOPT_SAVE=$MOUNTOPT
6594
6595         dd if=/dev/zero of=$DIR/$tfile count=1 2>/dev/null
6596         cancel_lru_locks osc
6597
6598         som1=$(do_facet $mymds "$LCTL get_param mdt.*.som" |  awk -F= ' {print $2}' | head -n 1)
6599
6600         gl1=$(get_ost_param "ldlm_glimpse_enqueue")
6601         stat $DIR/$tfile >/dev/null
6602         gl2=$(get_ost_param "ldlm_glimpse_enqueue")
6603         echo "====> SOM is "$som1", "$((gl2 - gl1))" glimpse RPC occured"
6604         rm $DIR/$tfile
6605         som_mode_switch $som1 $gl1 $gl2
6606
6607         dd if=/dev/zero of=$DIR/$tfile count=1 2>/dev/null
6608         cancel_lru_locks osc
6609
6610         som2=$(do_facet $mymds "$LCTL get_param mdt.*.som" |  awk -F= ' {print $2}' | head -n 1)
6611         if [ $som1 == $som2 ]; then
6612             error "som is still "$som2
6613             if [ x$som2 = x"enabled" ]; then
6614                 som2="disabled"
6615             else
6616                 som2="enabled"
6617             fi
6618         fi
6619
6620         gl1=$(get_ost_param "ldlm_glimpse_enqueue")
6621         stat $DIR/$tfile >/dev/null
6622         gl2=$(get_ost_param "ldlm_glimpse_enqueue")
6623         echo "====> SOM is "$som2", "$((gl2 - gl1))" glimpse RPC occured"
6624         som_mode_switch $som2 $gl1 $gl2
6625         MOUNTOPT=$MOUNTOPT_SAVE
6626 }
6627 run_test 132 "som avoids glimpse rpc"
6628
6629 test_140() { #bug-17379
6630         mkdir -p $DIR/$tdir || error "Creating dir $DIR/$tdir"
6631         cd $DIR/$tdir || error "Changing to $DIR/$tdir"
6632         cp /usr/bin/stat . || error "Copying stat to $DIR/$tdir"
6633
6634         # VFS limits max symlink depth to 5(4KSTACK) or 7(8KSTACK) or 8
6635         local i=0
6636         while i=`expr $i + 1`; do
6637                 mkdir -p $i || error "Creating dir $i"
6638                 cd $i || error "Changing to $i"
6639                 ln -s ../stat stat || error "Creating stat symlink"
6640                 # Read the symlink until ELOOP present,
6641                 # not LBUGing the system is considered success,
6642                 # we didn't overrun the stack.
6643                 $OPENFILE -f O_RDONLY stat >/dev/null 2>&1; ret=$?
6644                 [ $ret -ne 0 ] && {
6645                         if [ $ret -eq 40 ]; then
6646                                 break  # -ELOOP
6647                         else
6648                                 error "Open stat symlink"
6649                                 return
6650                         fi
6651                 }
6652         done
6653         i=`expr $i - 1`
6654         echo "The symlink depth = $i"
6655         [ $i -eq 5 -o $i -eq 7 -o $i -eq 8 ] || error "Invalid symlink depth"
6656 }
6657 run_test 140 "Check reasonable stack depth (shouldn't LBUG) ===="
6658
6659 test_150() {
6660         local TF="$TMP/$tfile"
6661
6662         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
6663         cp $TF $DIR/$tfile
6664         cancel_lru_locks osc
6665         cmp $TF $DIR/$tfile || error "$TMP/$tfile $DIR/$tfile differ"
6666         remount_client $MOUNT
6667         df -P $MOUNT
6668         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (remount)"
6669
6670         $TRUNCATE $TF 6000
6671         $TRUNCATE $DIR/$tfile 6000
6672         cancel_lru_locks osc
6673         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (truncate1)"
6674
6675         echo "12345" >>$TF
6676         echo "12345" >>$DIR/$tfile
6677         cancel_lru_locks osc
6678         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append1)"
6679
6680         echo "12345" >>$TF
6681         echo "12345" >>$DIR/$tfile
6682         cancel_lru_locks osc
6683         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append2)"
6684
6685         rm -f $TF
6686         true
6687 }
6688 run_test 150 "truncate/append tests"
6689
6690 function roc_hit() {
6691     local list=$(comma_list $(osts_nodes))
6692
6693     ACCNUM=$(do_nodes $list $LCTL get_param -n obdfilter.*.stats | \
6694         awk '/'cache_hit'/ {sum+=$2} END {print sum}')
6695     echo $ACCNUM
6696 }
6697
6698 function set_cache() {
6699     local on=1
6700
6701     if [ "$2" == "off" ]; then
6702         on=0;
6703     fi
6704     local list=$(comma_list $(osts_nodes))
6705     do_nodes $list lctl set_param obdfilter.*.${1}_cache_enable $on
6706
6707     cancel_lru_locks osc
6708 }
6709
6710 test_151() {
6711         remote_ost_nodsh && skip "remote OST with nodsh" && return
6712
6713         local CPAGES=3
6714         local list=$(comma_list $(osts_nodes))
6715
6716         # check whether obdfilter is cache capable at all
6717         if ! do_nodes $list $LCTL get_param -n obdfilter.*.read_cache_enable > /dev/null; then
6718                 echo "not cache-capable obdfilter"
6719                 return 0
6720         fi
6721
6722         # check cache is enabled on all obdfilters
6723         if do_nodes $list $LCTL get_param -n obdfilter.*.read_cache_enable | grep 0 >&/dev/null; then
6724                 echo "oss cache is disabled"
6725                 return 0
6726         fi
6727
6728         do_nodes $list $LCTL set_param -n obdfilter.*.writethrough_cache_enable 1
6729
6730         # pages should be in the case right after write
6731         dd if=/dev/urandom of=$DIR/$tfile bs=4k count=$CPAGES || error "dd failed"
6732         local BEFORE=`roc_hit`
6733         cancel_lru_locks osc
6734         cat $DIR/$tfile >/dev/null
6735         local AFTER=`roc_hit`
6736         if ! let "AFTER - BEFORE == CPAGES"; then
6737                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
6738         fi
6739
6740         # the following read invalidates the cache
6741         cancel_lru_locks osc
6742         do_nodes $list $LCTL set_param -n obdfilter.*.read_cache_enable 0
6743         cat $DIR/$tfile >/dev/null
6744
6745         # now data shouldn't be found in the cache
6746         BEFORE=`roc_hit`
6747         cancel_lru_locks osc
6748         cat $DIR/$tfile >/dev/null
6749         AFTER=`roc_hit`
6750         if let "AFTER - BEFORE != 0"; then
6751                 error "IN CACHE: before: $BEFORE, after: $AFTER"
6752         fi
6753
6754         do_nodes $list $LCTL set_param -n obdfilter.*.read_cache_enable 1
6755         rm -f $DIR/$tfile
6756 }
6757 run_test 151 "test cache on oss and controls ==============================="
6758
6759 test_152() {
6760         local TF="$TMP/$tfile"
6761
6762         # simulate ENOMEM during write
6763 #define OBD_FAIL_OST_NOMEM      0x226
6764         lctl set_param fail_loc=0x80000226
6765         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
6766         cp $TF $DIR/$tfile
6767         sync || error "sync failed"
6768         lctl set_param fail_loc=0
6769
6770         # discard client's cache
6771         cancel_lru_locks osc
6772
6773         # simulate ENOMEM during read
6774         lctl set_param fail_loc=0x80000226
6775         cmp $TF $DIR/$tfile || error "cmp failed"
6776         lctl set_param fail_loc=0
6777
6778         rm -f $TF
6779 }
6780 run_test 152 "test read/write with enomem ============================"
6781
6782 test_153() {
6783         multiop $DIR/$tfile Ow4096Ycu || error "multiop failed"
6784 }
6785 run_test 153 "test if fdatasync does not crash ======================="
6786
6787 test_154() {
6788         cp /etc/hosts $DIR/$tfile
6789
6790         fid=$($LFS path2fid $DIR/$tfile)
6791         rc=$?
6792         [ $rc -ne 0 ] && error "error: could not get fid for $DIR/$tfile."
6793
6794         echo "open fid $fid"
6795         diff /etc/hosts $DIR/.lustre/fid/$fid || error "open by fid failed: did not find expected data in file."
6796
6797         echo "Opening a file by FID succeeded"
6798 }
6799 run_test 154 "Opening a file by FID"
6800
6801 test_155_load() {
6802     local temp=$TMP/$tfile
6803     local file=$DIR/$tfile
6804     local list=$(comma_list $(osts_nodes))
6805     local big=$(do_nodes $list grep "cache" /proc/cpuinfo | \
6806         awk '{sum+=$4} END{print sum}')
6807
6808     log big is $big K
6809
6810     dd if=/dev/urandom of=$temp bs=6096 count=1 || \
6811         error "dd of=$temp bs=6096 count=1 failed"
6812     cp $temp $file
6813     cancel_lru_locks osc
6814     cmp $temp $file || error "$temp $file differ"
6815
6816     $TRUNCATE $temp 6000
6817     $TRUNCATE $file 6000
6818     cmp $temp $file || error "$temp $file differ (truncate1)"
6819
6820     echo "12345" >>$temp
6821     echo "12345" >>$file
6822     cmp $temp $file || error "$temp $file differ (append1)"
6823
6824     echo "12345" >>$temp
6825     echo "12345" >>$file
6826     cmp $temp $file || error "$temp $file differ (append2)"
6827
6828     dd if=/dev/urandom of=$temp bs=$((big*2)) count=1k || \
6829         error "dd of=$temp bs=$((big*2)) count=1k failed"
6830     cp $temp $file
6831     ls -lh $temp $file
6832     cancel_lru_locks osc
6833     cmp $temp $file || error "$temp $file differ"
6834
6835     rm -f $temp
6836     true
6837 }
6838
6839 test_155a() {
6840     set_cache read on
6841     set_cache writethrough on
6842     test_155_load
6843 }
6844 run_test 155a "Verification of correctness: read cache:on write_cache:on"
6845
6846 test_155b() {
6847     set_cache read on
6848     set_cache writethrough off
6849     test_155_load
6850 }
6851 run_test 155b "Verification of correctness: read cache:on write_cache:off"
6852
6853 test_155c() {
6854     set_cache read off
6855     set_cache writethrough on
6856     test_155_load
6857 }
6858 run_test 155c "Verification of correctness: read cache:off write_cache:on"
6859
6860 test_155d() {
6861     set_cache read off
6862     set_cache writethrough off
6863     test_155_load
6864 }
6865 run_test 155d "Verification of correctness: read cache:off write_cache:off "
6866
6867 test_156() {
6868     local CPAGES=3
6869     local BEFORE
6870     local AFTER
6871     local file="$DIR/$tfile"
6872
6873     log "Turn on read and write cache"
6874     set_cache read on
6875     set_cache writethrough on
6876
6877     log "Write data and read it back."
6878     log "Read should be satisfied from the cache."
6879     dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
6880     BEFORE=`roc_hit`
6881     cancel_lru_locks osc
6882     cat $file >/dev/null
6883     AFTER=`roc_hit`
6884     if ! let "AFTER - BEFORE == CPAGES"; then
6885         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
6886     else
6887         log "cache hits:: before: $BEFORE, after: $AFTER"
6888     fi
6889
6890     log "Read again; it should be satisfied from the cache."
6891     BEFORE=$AFTER
6892     cancel_lru_locks osc
6893     cat $file >/dev/null
6894     AFTER=`roc_hit`
6895     if ! let "AFTER - BEFORE == CPAGES"; then
6896         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
6897     else
6898         log "cache hits:: before: $BEFORE, after: $AFTER"
6899     fi
6900
6901
6902     log "Turn off the read cache and turn on the write cache"
6903     set_cache read off
6904     set_cache writethrough on
6905
6906     log "Read again; it should be satisfied from the cache."
6907     BEFORE=`roc_hit`
6908     cancel_lru_locks osc
6909     cat $file >/dev/null
6910     AFTER=`roc_hit`
6911     if ! let "AFTER - BEFORE == CPAGES"; then
6912         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
6913     else
6914         log "cache hits:: before: $BEFORE, after: $AFTER"
6915     fi
6916
6917     log "Read again; it should not be satisfied from the cache."
6918     BEFORE=$AFTER
6919     cancel_lru_locks osc
6920     cat $file >/dev/null
6921     AFTER=`roc_hit`
6922     if ! let "AFTER - BEFORE == 0"; then
6923         error "IN CACHE: before: $BEFORE, after: $AFTER"
6924     else
6925         log "cache hits:: before: $BEFORE, after: $AFTER"
6926     fi
6927
6928     log "Write data and read it back."
6929     log "Read should be satisfied from the cache."
6930     dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
6931     BEFORE=`roc_hit`
6932     cancel_lru_locks osc
6933     cat $file >/dev/null
6934     AFTER=`roc_hit`
6935     if ! let "AFTER - BEFORE == CPAGES"; then
6936         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
6937     else
6938         log "cache hits:: before: $BEFORE, after: $AFTER"
6939     fi
6940
6941     log "Read again; it should not be satisfied from the cache."
6942     BEFORE=$AFTER
6943     cancel_lru_locks osc
6944     cat $file >/dev/null
6945     AFTER=`roc_hit`
6946     if ! let "AFTER - BEFORE == 0"; then
6947         error "IN CACHE: before: $BEFORE, after: $AFTER"
6948     else
6949         log "cache hits:: before: $BEFORE, after: $AFTER"
6950     fi
6951
6952
6953     log "Turn off read and write cache"
6954     set_cache read off
6955     set_cache writethrough off
6956
6957     log "Write data and read it back"
6958     log "It should not be satisfied from the cache."
6959     rm -f $file
6960     dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
6961     cancel_lru_locks osc
6962     BEFORE=`roc_hit`
6963     cat $file >/dev/null
6964     AFTER=`roc_hit`
6965     if ! let "AFTER - BEFORE == 0"; then
6966         error_ignore 20762 "IN CACHE: before: $BEFORE, after: $AFTER"
6967     else
6968         log "cache hits:: before: $BEFORE, after: $AFTER"
6969     fi
6970
6971
6972     log "Turn on the read cache and turn off the write cache"
6973     set_cache read on
6974     set_cache writethrough off
6975
6976     log "Write data and read it back"
6977     log "It should not be satisfied from the cache."
6978     rm -f $file
6979     dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
6980     BEFORE=`roc_hit`
6981     cancel_lru_locks osc
6982     cat $file >/dev/null
6983     AFTER=`roc_hit`
6984     if ! let "AFTER - BEFORE == 0"; then
6985         error_ignore 20762 "IN CACHE: before: $BEFORE, after: $AFTER"
6986     else
6987         log "cache hits:: before: $BEFORE, after: $AFTER"
6988     fi
6989
6990     log "Read again; it should be satisfied from the cache."
6991     BEFORE=`roc_hit`
6992     cancel_lru_locks osc
6993     cat $file >/dev/null
6994     AFTER=`roc_hit`
6995     if ! let "AFTER - BEFORE == CPAGES"; then
6996         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
6997     else
6998         log "cache hits:: before: $BEFORE, after: $AFTER"
6999     fi
7000
7001     rm -f $file
7002 }
7003 run_test 156 "Verification of tunables ============================"
7004
7005 #Changelogs
7006 err17935 () {
7007     if [ $MDSCOUNT -gt 1 ]; then
7008         error_ignore 17935 $*
7009     else
7010         error $*
7011     fi
7012 }
7013 test_160() {
7014     USER=$(do_facet $SINGLEMDS lctl --device $MDT0 changelog_register -n)
7015     echo "Registered as changelog user $USER"
7016     do_facet $SINGLEMDS lctl get_param -n mdd.$MDT0.changelog_users | \
7017         grep -q $USER || error "User $USER not found in changelog_users"
7018
7019     # change something
7020     mkdir -p $DIR/$tdir/pics/2008/zachy
7021     touch $DIR/$tdir/pics/2008/zachy/timestamp
7022     cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg
7023     mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
7024     ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
7025     ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
7026     rm $DIR/$tdir/pics/desktop.jpg
7027
7028     $LFS changelog $MDT0 | tail -5
7029
7030     echo "verifying changelog mask"
7031     do_facet $SINGLEMDS lctl set_param mdd.$MDT0.changelog_mask="-mkdir"
7032     mkdir -p $DIR/$tdir/pics/2009/sofia
7033     do_facet $SINGLEMDS lctl set_param mdd.$MDT0.changelog_mask="+mkdir"
7034     mkdir $DIR/$tdir/pics/2009/zachary
7035     DIRS=$($LFS changelog $MDT0 | tail -5 | grep -c MKDIR)
7036     [ $DIRS -eq 1 ] || err17935 "changelog mask count $DIRS != 1"
7037
7038     # verify contents
7039     echo "verifying target fid"
7040     fidc=$($LFS changelog $MDT0 | grep timestamp | grep "CREAT" | \
7041         tail -1 | awk '{print $6}')
7042     fidf=$($LFS path2fid $DIR/$tdir/pics/zach/timestamp)
7043     [ "$fidc" == "t=$fidf" ] || \
7044         err17935 "fid in changelog $fidc != file fid $fidf"
7045     echo "verifying parent fid"
7046     fidc=$($LFS changelog $MDT0 | grep timestamp | grep "CREAT" | \
7047         tail -1 | awk '{print $7}')
7048     fidf=$($LFS path2fid $DIR/$tdir/pics/zach)
7049     [ "$fidc" == "p=$fidf" ] || \
7050         err17935 "pfid in changelog $fidc != dir fid $fidf"
7051
7052     USER_REC1=$(do_facet $SINGLEMDS lctl get_param -n \
7053         mdd.$MDT0.changelog_users | grep $USER | awk '{print $2}')
7054     $LFS changelog_clear $MDT0 $USER $(($USER_REC1 + 5))
7055     USER_REC2=$(do_facet $SINGLEMDS lctl get_param -n \
7056         mdd.$MDT0.changelog_users | grep $USER | awk '{print $2}')
7057     echo "verifying user clear: $(( $USER_REC1 + 5 )) == $USER_REC2"
7058     [ $USER_REC2 == $(($USER_REC1 + 5)) ] || \
7059         err17935 "user index should be $(($USER_REC1 + 5)); is $USER_REC2"
7060
7061     MIN_REC=$(do_facet $SINGLEMDS lctl get_param mdd.$MDT0.changelog_users | \
7062         awk 'min == "" || $2 < min {min = $2}; END {print min}')
7063     FIRST_REC=$($LFS changelog $MDT0 | head -1 | awk '{print $1}')
7064     echo "verifying min purge: $(( $MIN_REC + 1 )) == $FIRST_REC"
7065     [ $FIRST_REC == $(($MIN_REC + 1)) ] || \
7066         err17935 "first index should be $(($MIN_REC + 1)); is $FIRST_REC"
7067
7068     echo "verifying user deregister"
7069     do_facet $SINGLEMDS lctl --device $MDT0 changelog_deregister $USER
7070     do_facet $SINGLEMDS lctl get_param -n mdd.$MDT0.changelog_users | \
7071         grep -q $USER && error "User $USER still found in changelog_users"
7072
7073     USERS=$(( $(do_facet $SINGLEMDS lctl get_param -n \
7074         mdd.$MDT0.changelog_users | wc -l) - 2 ))
7075     if [ $USERS -eq 0 ]; then
7076         LAST_REC1=$(do_facet $SINGLEMDS lctl get_param -n \
7077             mdd.$MDT0.changelog_users | head -1 | awk '{print $3}')
7078         touch $DIR/$tdir/chloe
7079         LAST_REC2=$(do_facet $SINGLEMDS lctl get_param -n \
7080             mdd.$MDT0.changelog_users | head -1 | awk '{print $3}')
7081         echo "verify changelogs are off if we were the only user: $LAST_REC1 == $LAST_REC2"
7082         [ $LAST_REC1 == $LAST_REC2 ] || error "changelogs not off"
7083     else
7084         echo "$USERS other changelog users; can't verify off"
7085     fi
7086 }
7087 run_test 160 "changelog sanity"
7088
7089 test_161() {
7090     mkdir -p $DIR/$tdir
7091     cp /etc/hosts $DIR/$tdir/$tfile
7092     mkdir $DIR/$tdir/foo1
7093     mkdir $DIR/$tdir/foo2
7094     ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/sofia
7095     ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/zachary
7096     ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/luna
7097     ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/thor
7098     local FID=$($LFS path2fid $DIR/$tdir/$tfile | tr -d '[')
7099     if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
7100         $LFS fid2path $DIR $FID
7101         err17935 "bad link ea"
7102     fi
7103     # middle
7104     rm $DIR/$tdir/foo2/zachary
7105     # last
7106     rm $DIR/$tdir/foo2/thor
7107     # first
7108     rm $DIR/$tdir/$tfile
7109     # rename
7110     mv $DIR/$tdir/foo1/sofia $DIR/$tdir/foo2/maggie
7111     if [ "$($LFS fid2path $FSNAME --link 1 $FID)" != "$tdir/foo2/maggie" ]
7112         then
7113         $LFS fid2path $DIR $FID
7114         err17935 "bad link rename"
7115     fi
7116     rm $DIR/$tdir/foo2/maggie
7117
7118     # overflow the EA
7119     local longname=filename_avg_len_is_thirty_two_
7120     createmany -l$DIR/$tdir/foo1/luna $DIR/$tdir/foo2/$longname 1000 || \
7121         error "failed to hardlink many files"
7122     links=$($LFS fid2path $DIR $FID | wc -l)
7123     echo -n "${links}/1000 links in link EA"
7124     [ ${links} -gt 60 ] || err17935 "expected at least 60 links in link EA"
7125     unlinkmany $DIR/$tdir/foo2/$longname 1000 || \
7126         error "failed to unlink many hardlinks"
7127 }
7128 run_test 161 "link ea sanity"
7129
7130 check_path() {
7131     local expected=$1
7132     shift
7133     local fid=$2
7134
7135     local path=$(${LFS} fid2path $*)
7136     RC=$?
7137
7138     if [ $RC -ne 0 ]; then
7139         err17935 "path looked up of $expected failed. Error $RC"
7140         return $RC
7141     elif [ "${path}" != "${expected}" ]; then
7142         err17935 "path looked up \"${path}\" instead of \"${expected}\""
7143         return 2
7144     fi
7145     echo "fid $fid resolves to path $path (expected $expected)"
7146 }
7147
7148 test_162() {
7149         # Make changes to filesystem
7150         mkdir -p $DIR/$tdir/d2
7151         touch $DIR/$tdir/d2/$tfile
7152         touch $DIR/$tdir/d2/x1
7153         touch $DIR/$tdir/d2/x2
7154         mkdir -p $DIR/$tdir/d2/a/b/c
7155         mkdir -p $DIR/$tdir/d2/p/q/r
7156         # regular file
7157         FID=$($LFS path2fid $DIR/$tdir/d2/$tfile | tr -d '[]')
7158         check_path "$tdir/d2/$tfile" $FSNAME $FID --link 0
7159
7160         # softlink
7161         ln -s $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/slink
7162         FID=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink | tr -d '[]')
7163         check_path "$tdir/d2/p/q/r/slink" $FSNAME $FID --link 0
7164
7165         # softlink to wrong file
7166         ln -s /this/is/garbage $DIR/$tdir/d2/p/q/r/slink.wrong
7167         FID=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink.wrong | tr -d '[]')
7168         check_path "$tdir/d2/p/q/r/slink.wrong" $FSNAME $FID --link 0
7169
7170         # hardlink
7171         ln $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/hlink
7172         mv $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/a/b/c/new_file
7173         FID=$($LFS path2fid $DIR/$tdir/d2/a/b/c/new_file | tr -d '[]')
7174         # fid2path dir/fsname should both work
7175         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $FID --link 1
7176         check_path "$DIR/$tdir/d2/p/q/r/hlink" $DIR $FID --link 0
7177
7178         # hardlink count: check that there are 2 links
7179         # Doesnt work with CMD yet: 17935
7180         ${LFS} fid2path $DIR $FID | wc -l | grep -q 2 || \
7181                 err17935 "expected 2 links"
7182
7183         # hardlink indexing: remove the first link
7184         rm $DIR/$tdir/d2/p/q/r/hlink
7185         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $FID --link 0
7186
7187         return 0
7188 }
7189 run_test 162 "path lookup sanity"
7190
7191 test_163() {
7192         remote_mds_nodsh && skip "remote MDS with nodsh" && return
7193         copytool --test $FSNAME || { skip "copytool not runnable: $?" && return; }
7194         copytool $FSNAME &
7195         sleep 1
7196         local uuid=$($LCTL get_param -n mdc.${FSNAME}-MDT0000-mdc-*.uuid)
7197         # this proc file is temporary and linux-only
7198         do_facet $SINGLEMDS lctl set_param mdt.${FSNAME}-MDT0000.mdccomm=$uuid ||\
7199          error "kernel->userspace send failed"
7200         kill -INT $!
7201 }
7202 run_test 163 "kernel <-> userspace comms"
7203
7204 test_169() {
7205         # do directio so as not to populate the page cache
7206         log "creating a 10 Mb file"
7207         multiop $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
7208         log "starting reads"
7209         dd if=$DIR/$tfile of=/dev/null bs=4096 &
7210         log "truncating the file"
7211         multiop $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
7212         log "killing dd"
7213         kill %+ || true # reads might have finished
7214         echo "wait until dd is finished"
7215         wait
7216         log "removing the temporary file"
7217         rm -rf $DIR/$tfile || error "tmp file removal failed"
7218 }
7219 run_test 169 "parallel read and truncate should not deadlock"
7220
7221 test_170() {
7222         $LCTL clear     # bug 18514
7223         $LCTL debug_daemon start $TMP/${tfile}_log_good
7224         touch $DIR/$tfile
7225         $LCTL debug_daemon stop
7226         sed -e "s/^...../a/g" $TMP/${tfile}_log_good > $TMP/${tfile}_log_bad ||
7227                error "sed failed to read log_good"
7228
7229         $LCTL debug_daemon start $TMP/${tfile}_log_good
7230         rm -rf $DIR/$tfile
7231         $LCTL debug_daemon stop
7232
7233         $LCTL df $TMP/${tfile}_log_bad > $TMP/${tfile}_log_bad.out 2>&1 ||
7234                error "lctl df log_bad failed"
7235
7236         local bad_line=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
7237         local good_line1=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
7238
7239         $LCTL df $TMP/${tfile}_log_good > $TMP/${tfile}_log_good.out 2>&1
7240         local good_line2=$(tail -n 1 $TMP/${tfile}_log_good.out | awk '{print $5}')
7241
7242         [ "$bad_line" ] && [ "$good_line1" ] && [ "$good_line2" ] ||
7243                 error "bad_line good_line1 good_line2 are empty"
7244
7245         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
7246         cat $TMP/${tfile}_log_bad >> $TMP/${tfile}_logs_corrupt
7247         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
7248
7249         $LCTL df $TMP/${tfile}_logs_corrupt > $TMP/${tfile}_log_bad.out 2>&1
7250         local bad_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
7251         local good_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
7252
7253         [ "$bad_line_new" ] && [ "$good_line_new" ] ||
7254                 error "bad_line_new good_line_new are empty"
7255
7256         local expected_good=$((good_line1 + good_line2*2))
7257
7258         rm -f $TMP/${tfile}*
7259         if [ $bad_line -ne $bad_line_new ]; then
7260                 error "expected $bad_line bad lines, but got $bad_line_new"
7261                 return 1
7262         fi
7263
7264         if [ $expected_good -ne $good_line_new ]; then
7265                 error "expected $expected_good good lines, but got $good_line_new"
7266                 return 2
7267         fi
7268         true
7269 }
7270 run_test 170 "test lctl df to handle corrupted log ====================="
7271
7272 test_171() { # bug20592
7273 #define OBD_FAIL_PTLRPC_DUMP_LOG         0x50e
7274         $LCTL set_param fail_loc=0x50e
7275         $LCTL set_param fail_val=3000
7276         multiop_bg_pause $DIR/$tfile Os || true
7277         # cause log dump
7278         sleep 3
7279         if dmesg | grep "recursive fault"; then
7280                 error "caught a recursive fault"
7281         fi
7282         $LCTL set_param fail_loc=0
7283         true
7284 }
7285 run_test 171 "test libcfs_debug_dumplog_thread stuck in do_exit() ======"
7286
7287 # it would be good to share it with obdfilter-survey/libecho code
7288 setup_obdecho_osc () {
7289         local rc=0
7290         local ost_nid=$1
7291         local obdfilter_name=$2
7292         echo "Creating new osc for $obdfilter_name on $ost_nid"
7293         [ $rc -eq 0 ] && { $LCTL attach osc ${obdfilter_name}_osc     \
7294                            ${obdfilter_name}_osc_UUID || rc=2; }
7295         [ $rc -eq 0 ] && { $LCTL --device ${obdfilter_name}_osc setup \
7296                            ${obdfilter_name}_UUID  $ost_nid || rc=3; }
7297         return $rc
7298 }
7299
7300 cleanup_obdecho_osc () {
7301         local obdfilter_name=$1
7302         $LCTL --device ${obdfilter_name}_osc cleanup >/dev/null
7303         $LCTL --device ${obdfilter_name}_osc detach  >/dev/null
7304         return 0
7305 }
7306
7307 obdecho_create_test() {
7308         local OBD=$1
7309         local node=$2
7310         local rc=0
7311         local id
7312         do_facet $node "$LCTL attach echo_client ec ec_uuid" || rc=1
7313         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec setup $OBD" ||
7314                            rc=2; }
7315         if [ $rc -eq 0 ]; then
7316             id=$(do_facet $node "$LCTL --device ec create 1"  | awk '/object id/ {print $6}')
7317             [ ${PIPESTATUS[0]} -eq 0 -a -n "$id" ] || rc=3
7318         fi
7319         echo "New object id is $id"
7320         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec test_brw 10 w v 64 $id" ||
7321                            rc=4; }
7322         [ $rc -eq 0 -o $rc -gt 2 ] && { do_facet $node "$LCTL --device ec "    \
7323                                         "cleanup" || rc=5; }
7324         [ $rc -eq 0 -o $rc -gt 1 ] && { do_facet $node "$LCTL --device ec "    \
7325                                         "detach" || rc=6; }
7326         [ $rc -ne 0 ] && echo "obecho_create_test failed: $rc"
7327         return $rc
7328 }
7329
7330 test_180a() {
7331         local rc=0
7332         local rmmod_local=0
7333
7334         if ! module_loaded obdecho; then
7335             load_module obdecho/obdecho 
7336             rmmod_local=1           
7337         fi
7338
7339         local osc=$($LCTL dl | grep -v mdt | awk '$3 == "osc" {print $4; exit}')
7340         local host=$(awk '/current_connection:/ {print $2}' /proc/fs/lustre/osc/$osc/import)
7341         local target=$(awk '/target:/ {print $2}' /proc/fs/lustre/osc/$osc/import)
7342         target=${target%_UUID}
7343         
7344         [[ -n $target ]]  && { setup_obdecho_osc $host $target || rc=1; } || rc=1
7345         [ $rc -eq 0 ] && { obdecho_create_test ${target}_osc client || rc=2; }
7346         [[ -n $target ]] && cleanup_obdecho_osc $target
7347         [ $rmmod_local -eq 1 ] && rmmod obdecho
7348         return $rc
7349 }
7350 run_test 180a "test obdecho on osc"
7351
7352 test_180b() {
7353         local rc=0
7354         local rmmod_remote=0
7355
7356         do_facet ost "lsmod | grep -q obdecho || "                      \
7357                      "{ insmod ${LUSTRE}/obdecho/obdecho.ko || "        \
7358                      "modprobe obdecho; }" && rmmod_remote=1
7359         target=$(do_facet ost $LCTL dl | awk '/obdfilter/ {print $4;exit}')
7360         [[ -n $target ]] && { obdecho_create_test $target ost || rc=1; }
7361         [ $rmmod_remote -eq 1 ] && do_facet ost "rmmod obdecho"
7362         return $rc
7363 }
7364 run_test 180b "test obdecho directly on obdfilter"
7365
7366 # OST pools tests
7367 POOL=${POOL:-cea1}
7368 TGT_COUNT=$OSTCOUNT
7369 TGTPOOL_FIRST=1
7370 TGTPOOL_MAX=$(($TGT_COUNT - 1))
7371 TGTPOOL_STEP=2
7372 TGTPOOL_LIST=`seq $TGTPOOL_FIRST $TGTPOOL_STEP $TGTPOOL_MAX`
7373 POOL_ROOT=${POOL_ROOT:-$DIR/d200.pools}
7374 POOL_DIR_NAME=dir_tst
7375 POOL_DIR=$POOL_ROOT/$POOL_DIR_NAME
7376 POOL_FILE=$POOL_ROOT/file_tst
7377
7378 check_file_in_pool()
7379 {
7380         file=$1
7381         res=$($GETSTRIPE $file | grep 0x | cut -f2)
7382         for i in $res
7383         do
7384                 found=$(echo :$TGTPOOL_LIST: | tr " " ":"  | grep :$i:)
7385                 if [[ "$found" == "" ]]
7386                 then
7387                         echo "pool list: $TGTPOOL_LIST"
7388                         echo "striping: $res"
7389                         error "$file not allocated in $POOL"
7390                         return 1
7391                 fi
7392         done
7393         return 0
7394 }
7395
7396 trap "cleanup_pools $FSNAME" EXIT
7397
7398 test_200a() {
7399         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
7400     create_pool $FSNAME.$POOL || return $?
7401         [ $($LFS pool_list $FSNAME | grep -c $POOL) -eq 1 ] ||
7402                 error "$POOL not in lfs pool_list"
7403 }
7404 run_test 200a "Create new pool =========================================="
7405
7406 test_200b() {
7407         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
7408         TGT=$(for i in $TGTPOOL_LIST; do printf "$FSNAME-OST%04x_UUID " $i; done)
7409         do_facet mgs $LCTL pool_add $FSNAME.$POOL \
7410                 $FSNAME-OST[$TGTPOOL_FIRST-$TGTPOOL_MAX/$TGTPOOL_STEP]
7411         wait_update $HOSTNAME "lctl get_param -n lov.$FSNAME-*.pools.$POOL | sort -u | tr '\n' ' ' " "$TGT" ||
7412                 error "Add to pool failed"
7413         local lfscount=$($LFS pool_list $FSNAME.$POOL | grep -c "\-OST")
7414         local addcount=$((($TGTPOOL_MAX - $TGTPOOL_FIRST) / $TGTPOOL_STEP + 1))
7415         [ $lfscount -eq $addcount ] ||
7416                 error "lfs pool_list bad ost count $lfscount != $addcount"
7417 }
7418 run_test 200b "Add targets to a pool ===================================="
7419
7420 test_200c() {
7421         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
7422         mkdir -p $POOL_DIR
7423         $SETSTRIPE -c 2 -p $POOL $POOL_DIR
7424         [ $? = 0 ] || error "Cannot set pool $POOL to $POOL_DIR"
7425         # b-19919 test relative path works well
7426         mkdir -p $POOL_DIR/$POOL_DIR_NAME
7427         cd $POOL_DIR
7428         $SETSTRIPE -c 2 -p $POOL $POOL_DIR_NAME
7429         [ $? = 0 ] || error "Cannot set pool $POOL to $POOL_DIR/$POOL_DIR_NAME"
7430         $SETSTRIPE -c 2 -p $POOL ./$POOL_DIR_NAME
7431         [ $? = 0 ] || error "Cannot set pool $POOL to $POOL_DIR/./$POOL_DIR_NAME"
7432         $SETSTRIPE -c 2 -p $POOL ../$POOL_DIR_NAME
7433         [ $? = 0 ] || error "Cannot set pool $POOL to $POOL_DIR/../$POOL_DIR_NAME"
7434         $SETSTRIPE -c 2 -p $POOL ../$POOL_DIR_NAME/$POOL_DIR_NAME
7435         [ $? = 0 ] || error "Cannot set pool $POOL to $POOL_DIR/../$POOL_DIR_NAME/$POOL_DIR_NAME"
7436         rm -rf $POOL_DIR_NAME; cd -
7437 }
7438 run_test 200c "Set pool on a directory ================================="
7439
7440 test_200d() {
7441         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
7442         res=$($GETSTRIPE --pool $POOL_DIR)
7443         [ $res = $POOL ] || error "Pool on $POOL_DIR is $res, not $POOL"
7444 }
7445 run_test 200d "Check pool on a directory ==============================="
7446
7447 test_200e() {
7448         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
7449         failed=0
7450         for i in $(seq -w 1 $(($TGT_COUNT * 3)))
7451         do
7452                 file=$POOL_DIR/file-$i
7453                 touch $file
7454                 check_file_in_pool $file
7455                 if [[ $? != 0 ]]
7456                 then
7457                         failed=$(($failed + 1))
7458                 fi
7459         done
7460         [ "$failed" = 0 ] || error "$failed files not allocated in $POOL"
7461 }
7462 run_test 200e "Check files allocation from directory pool =============="
7463
7464 test_200f() {
7465         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
7466         mkdir -p $POOL_FILE
7467         failed=0
7468         for i in $(seq -w 1 $(($TGT_COUNT * 3)))
7469         do
7470                 file=$POOL_FILE/spoo-$i
7471                 $SETSTRIPE -p $POOL $file
7472                 check_file_in_pool $file
7473                 if [[ $? != 0 ]]
7474                 then
7475                         failed=$(($failed + 1))
7476                 fi
7477         done
7478         [ "$failed" = 0 ] || error "$failed files not allocated in $POOL"
7479 }
7480 run_test 200f "Create files in a pool ==================================="
7481
7482 test_200g() {
7483         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
7484         TGT=$($LCTL get_param -n lov.$FSNAME-clilov-*.pools.$POOL | tr '\n' ' ')
7485         res=$($LFS df --pool $FSNAME.$POOL | awk '{print $1}' | grep "$FSNAME-OST" | tr '\n' ' ')
7486         [ "$res" = "$TGT" ] || error "Pools OSTs '$TGT' is not '$res' that lfs df reports"
7487 }
7488 run_test 200g "lfs df a pool ============================================"
7489
7490 test_200h() { # b=24039
7491         mkdir -p $POOL_DIR || error "unable to create $POOL_DIR"
7492
7493         local file="/..$POOL_DIR/$tfile-1"
7494         $SETSTRIPE -p $POOL $file || error "unable to create $file"
7495
7496         cd $POOL_DIR
7497         $SETSTRIPE -p $POOL $tfile-2 || \
7498                 error "unable to create $tfile-2 in $POOL_DIR"
7499 }
7500 run_test 200h "Create files in a pool with relative pathname ============"
7501
7502 test_201a() {
7503         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
7504         TGT=$($LCTL get_param -n lov.$FSNAME-*.pools.$POOL | head -1)
7505         do_facet mgs $LCTL pool_remove $FSNAME.$POOL $TGT
7506         wait_update $HOSTNAME "lctl get_param -n lov.$FSNAME-*.pools.$POOL | grep $TGT" "" ||
7507                 error "$TGT not removed from $FSNAME.$POOL"
7508 }
7509 run_test 201a "Remove a target from a pool ============================="
7510
7511 test_201b() {
7512         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
7513         for TGT in $($LCTL get_param -n lov.$FSNAME-*.pools.$POOL | sort -u)
7514         do
7515                 do_facet mgs $LCTL pool_remove $FSNAME.$POOL $TGT
7516         done
7517         wait_update $HOSTNAME "lctl get_param -n lov.$FSNAME-*.pools.$POOL" "" ||
7518                 error "Pool $FSNAME.$POOL cannot be drained"
7519         # striping on an empty/nonexistant pool should fall back to "pool of everything"
7520         touch ${POOL_DIR}/$tfile || error "failed to use fallback striping for empty pool"
7521         # setstripe on an empty pool should fail
7522         $SETSTRIPE -p $POOL ${POOL_FILE}/$tfile 2>/dev/null && \
7523                 error "expected failure when creating file with empty pool"
7524         return 0
7525 }
7526 run_test 201b "Remove all targets from a pool =========================="
7527
7528 test_201c() {
7529         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
7530         do_facet mgs $LCTL pool_destroy $FSNAME.$POOL
7531         
7532         sleep 2                        
7533     # striping on an empty/nonexistant pool should fall back to "pool of everything"
7534         touch ${POOL_DIR}/$tfile || error "failed to use fallback striping for missing pool"
7535         # setstripe on an empty pool should fail
7536         $SETSTRIPE -p $POOL ${POOL_FILE}/$tfile 2>/dev/null && \
7537                 error "expected failure when creating file with missing pool"
7538
7539         # get param should return err once pool is gone
7540         if wait_update $HOSTNAME "lctl get_param -n lov.$FSNAME-*.pools.$POOL 2>/dev/null ||
7541                         echo foo" "foo"; then
7542                 remove_pool_from_list $FSNAME.$POOL
7543                 return 0
7544         fi
7545         error "Pool $FSNAME.$POOL is not destroyed"
7546 }
7547 run_test 201c "Remove a pool ============================================"
7548
7549 cleanup_pools $FSNAME
7550
7551 test_212() {
7552         size=`date +%s`
7553         size=$((size % 8192 + 1))
7554         dd if=/dev/urandom of=$DIR/f212 bs=1k count=$size
7555         sendfile $DIR/f212 $DIR/f212.xyz || error "sendfile wrong"
7556         rm -f $DIR/f212 $DIR/f212.xyz
7557 }
7558 run_test 212 "Sendfile test ============================================"
7559
7560 test_213() {
7561         dd if=/dev/zero of=$DIR/$tfile bs=4k count=4
7562         cancel_lru_locks osc
7563         lctl set_param fail_loc=0x8000040f
7564         # generate a read lock
7565         cat $DIR/$tfile > /dev/null
7566         # write to the file, it will try to cancel the above read lock.
7567         cat /etc/hosts >> $DIR/$tfile
7568 }
7569 run_test 213 "OSC lock completion and cancel race don't crash - bug 18829"
7570
7571 test_214() { # for bug 20133
7572         mkdir -p $DIR/d214p/d214c
7573         for (( i=0; i < 340; i++ )) ; do
7574                 touch $DIR/d214p/d214c/a$i
7575         done
7576
7577         ls -l $DIR/d214p || error "ls -l $DIR/d214p failed"
7578         mv $DIR/d214p/d214c $DIR/ || error "mv $DIR/d214p/d214c $DIR/ failed"
7579         ls $DIR/d214c || error "ls $DIR/d214c failed"
7580         rm -rf $DIR/d214* || error "rm -rf $DIR/d214* failed"
7581 }
7582 run_test 214 "hash-indexed directory test - bug 20133"
7583
7584 # having "abc" as 1st arg, creates $TMP/lnet_abc.out and $TMP/lnet_abc.sys
7585 create_lnet_proc_files() {
7586         cat /proc/sys/lnet/$1 >$TMP/lnet_$1.out || error "cannot read /proc/sys/lnet/$1"
7587         sysctl lnet.$1 >$TMP/lnet_$1.sys_tmp || error "cannot read lnet.$1"
7588
7589         sed "s/^lnet.$1\ =\ //g" "$TMP/lnet_$1.sys_tmp" >$TMP/lnet_$1.sys
7590         rm -f "$TMP/lnet_$1.sys_tmp"
7591 }
7592
7593 # counterpart of create_lnet_proc_files
7594 remove_lnet_proc_files() {
7595         rm -f $TMP/lnet_$1.out $TMP/lnet_$1.sys
7596 }
7597
7598 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
7599 # 3rd arg as regexp for body
7600 check_lnet_proc_stats() {
7601         local l=$(cat "$TMP/lnet_$1" |wc -l)
7602         [ $l = 1 ] || (cat "$TMP/lnet_$1" && error "$2 is not of 1 line: $l")
7603
7604         grep -E "$3" "$TMP/lnet_$1" || (cat "$TMP/lnet_$1" && error "$2 misformatted")
7605 }
7606
7607 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
7608 # 3rd arg as regexp for body, 4th arg as regexp for 1st line, 5th arg is
7609 # optional and can be regexp for 2nd line (lnet.routes case)
7610 check_lnet_proc_entry() {
7611         local blp=2            # blp stands for 'position of 1st line of body'
7612         [ "$5" = "" ] || blp=3 # lnet.routes case
7613
7614         local l=$(cat "$TMP/lnet_$1" |wc -l)
7615         # subtracting one from $blp because the body can be empty
7616         [ "$l" -ge "$(($blp - 1))" ] || (cat "$TMP/lnet_$1" && error "$2 is too short: $l")
7617
7618         sed -n '1 p' "$TMP/lnet_$1" |grep -E "$4" >/dev/null ||
7619                 (cat "$TMP/lnet_$1" && error "1st line of $2 misformatted")
7620
7621         [ "$5" = "" ] || sed -n '2 p' "$TMP/lnet_$1" |grep -E "$5" >/dev/null ||
7622                 (cat "$TMP/lnet_$1" && error "2nd line of $2 misformatted")
7623
7624         # bail out if any unexpected line happened
7625         sed -n "$blp~1 p" "$TMP/lnet_$1" |grep -Ev "$3"
7626         [ "$?" != 0 ] || error "$2 misformatted"
7627 }
7628
7629 test_215() { # for bugs 18102, 21079, 21517
7630         local N='(0|[1-9][0-9]*)'   # non-negative numeric
7631         local P='[1-9][0-9]*'       # positive numeric
7632         local I='(0|-?[1-9][0-9]*)' # any numeric (0 | >0 | <0)
7633         local NET='[a-z][a-z0-9]*'  # LNET net like o2ib2
7634         local ADDR='[0-9.]+'        # LNET addr like 10.0.0.1
7635         local NID="$ADDR@$NET"      # LNET nid like 10.0.0.1@o2ib2
7636
7637         local L1 # regexp for 1st line
7638         local L2 # regexp for 2nd line (optional)
7639         local BR # regexp for the rest (body)
7640
7641         # /proc/sys/lnet/stats should look as 11 space-separated non-negative numerics
7642         BR="^$N $N $N $N $N $N $N $N $N $N $N$"
7643         create_lnet_proc_files "stats"
7644         check_lnet_proc_stats "stats.out" "/proc/sys/lnet/stats" "$BR"
7645         check_lnet_proc_stats "stats.sys" "lnet.stats" "$BR"
7646         remove_lnet_proc_files "stats"
7647
7648         # /proc/sys/lnet/routes should look like this:
7649         # Routing disabled/enabled
7650         # net hops state router
7651         # where net is a string like tcp0, hops >= 0, state is up/down,
7652         # router is a string like 192.168.1.1@tcp2
7653         L1="^Routing (disabled|enabled)$"
7654         L2="^net +hops +state +router$"
7655         BR="^$NET +$N +(up|down) +$NID$"
7656         create_lnet_proc_files "routes"
7657         check_lnet_proc_entry "routes.out" "/proc/sys/lnet/routes" "$BR" "$L1" "$L2"
7658         check_lnet_proc_entry "routes.sys" "lnet.routes" "$BR" "$L1" "$L2"
7659         remove_lnet_proc_files "routes"
7660
7661         # /proc/sys/lnet/routers should look like this:
7662         # ref rtr_ref alive_cnt state last_ping ping_sent deadline down_ni router
7663         # where ref > 0, rtr_ref > 0, alive_cnt >= 0, state is up/down,
7664         # last_ping >= 0, ping_sent is boolean (0/1), deadline and down_ni are
7665         # numeric (0 or >0 or <0), router is a string like 192.168.1.1@tcp2
7666         L1="^ref +rtr_ref +alive_cnt +state +last_ping +ping_sent +deadline +down_ni +router$"
7667         BR="^$P +$P +$N +(up|down) +$N +(0|1) +$I +$I +$NID$"
7668         create_lnet_proc_files "routers"
7669         check_lnet_proc_entry "routers.out" "/proc/sys/lnet/routers" "$BR" "$L1"
7670         check_lnet_proc_entry "routers.sys" "lnet.routers" "$BR" "$L1"
7671         remove_lnet_proc_files "routers"
7672
7673         # /proc/sys/lnet/peers should look like this:
7674         # nid refs state last max rtr min tx min queue
7675         # where nid is a string like 192.168.1.1@tcp2, refs > 0,
7676         # state is up/down/NA, max >= 0. last, rtr, min, tx, min are
7677         # numeric (0 or >0 or <0), queue >= 0.
7678         L1="^nid +refs +state +last +max +rtr +min +tx +min +queue$"
7679         BR="^$NID +$P +(up|down|NA) +$I +$N +$I +$I +$I +$I +$N$"
7680         create_lnet_proc_files "peers"
7681         check_lnet_proc_entry "peers.out" "/proc/sys/lnet/peers" "$BR" "$L1"
7682         check_lnet_proc_entry "peers.sys" "lnet.peers" "$BR" "$L1"
7683         remove_lnet_proc_files "peers"
7684
7685         # /proc/sys/lnet/buffers  should look like this:
7686         # pages count credits min
7687         # where pages >=0, count >=0, credits and min are numeric (0 or >0 or <0)
7688         L1="^pages +count +credits +min$"
7689         BR="^ +$N +$N +$I +$I$"
7690         create_lnet_proc_files "buffers"
7691         check_lnet_proc_entry "buffers.out" "/proc/sys/lnet/buffers" "$BR" "$L1"
7692         check_lnet_proc_entry "buffers.sys" "lnet.buffers" "$BR" "$L1"
7693         remove_lnet_proc_files "buffers"
7694
7695         # /proc/sys/lnet/nis should look like this:
7696         # nid status alive refs peer rtr max tx min
7697         # where nid is a string like 192.168.1.1@tcp2, status is up/down,
7698         # alive is numeric (0 or >0 or <0), refs > 0, peer >= 0,
7699         # rtr >= 0, max >=0, tx and min are numeric (0 or >0 or <0).
7700         L1="^nid +status +alive +refs +peer +rtr +max +tx +min$"
7701         BR="^$NID +(up|down) +$I +$P +$N +$N +$N +$I +$I$"
7702         create_lnet_proc_files "nis"
7703         check_lnet_proc_entry "nis.out" "/proc/sys/lnet/nis" "$BR" "$L1"
7704         check_lnet_proc_entry "nis.sys" "lnet.nis" "$BR" "$L1"
7705         remove_lnet_proc_files "nis"
7706
7707         # can we successfully write to /proc/sys/lnet/stats?
7708         echo "0" >/proc/sys/lnet/stats || error "cannot write to /proc/sys/lnet/stats"
7709         sysctl -w lnet.stats=0 || error "cannot write to lnet.stats"
7710 }
7711 run_test 215 "/proc/sys/lnet exists and has proper content - bugs 18102, 21079, 21517"
7712
7713 test_216() { # bug 20317
7714         local node
7715         local p="$TMP/sanityN-$TESTNAME.parameters"
7716         save_lustre_params $HOSTNAME "osc.*.contention_seconds" > $p
7717         for node in $(osts_nodes); do
7718                 save_lustre_params $node "ldlm.namespaces.filter-*.max_nolock_bytes" >> $p
7719                 save_lustre_params $node "ldlm.namespaces.filter-*.contended_locks" >> $p
7720                 save_lustre_params $node "ldlm.namespaces.filter-*.contention_seconds" >> $p
7721         done
7722         clear_osc_stats
7723
7724         # agressive lockless i/o settings
7725         for node in $(osts_nodes); do
7726                 do_node $node 'lctl set_param -n ldlm.namespaces.filter-*.max_nolock_bytes 2000000; lctl set_param -n ldlm.namespaces.filter-*.contended_locks 0; lctl set_param -n ldlm.namespaces.filter-*.contention_seconds 60'
7727         done
7728         lctl set_param -n osc.*.contention_seconds 60
7729
7730         $DIRECTIO write $DIR/$tfile 0 10 4096
7731         $CHECKSTAT -s 40960 $DIR/$tfile
7732
7733         # disable lockless i/o
7734         for node in $(osts_nodes); do
7735                 do_node $node 'lctl set_param -n ldlm.namespaces.filter-*.max_nolock_bytes 0; lctl set_param -n ldlm.namespaces.filter-*.contended_locks 32; lctl set_param -n ldlm.namespaces.filter-*.contention_seconds 0'
7736         done
7737         lctl set_param -n osc.*.contention_seconds 0
7738         clear_osc_stats
7739
7740         dd if=/dev/zero of=$DIR/$tfile count=0
7741         $CHECKSTAT -s 0 $DIR/$tfile
7742
7743         restore_lustre_params <$p
7744         rm -f $p
7745         rm $DIR/$tfile
7746 }
7747 run_test 216 "check lockless direct write works and updates file size and kms correctly"
7748
7749 test_217() { # bug 22430
7750         local node
7751         for node in $(nodes_list); do
7752                 if [[ $node = *-* ]] ; then
7753                         echo "lctl ping $node@$NETTYPE"
7754                         lctl ping $node@$NETTYPE
7755                 else
7756                         echo "skipping $node (no hiphen detected)"
7757                 fi
7758         done
7759 }
7760 run_test 217 "check lctl ping for hostnames with hiphen ('-')"
7761
7762 test_218() {
7763        # do directio so as not to populate the page cache
7764        log "creating a 10 Mb file"
7765        multiop $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
7766        log "starting reads"
7767        dd if=$DIR/$tfile of=/dev/null bs=4096 &
7768        log "truncating the file"
7769        multiop $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
7770        log "killing dd"
7771        kill %+ || true # reads might have finished
7772        echo "wait until dd is finished"
7773        wait
7774        log "removing the temporary file"
7775        rm -rf $DIR/$tfile || error "tmp file removal failed"
7776 }
7777 run_test 218 "parallel read and truncate should not deadlock ======================="
7778
7779 #
7780 # tests that do cleanup/setup should be run at the end
7781 #
7782
7783 test_900() {
7784         local ls
7785         #define OBD_FAIL_MGC_PAUSE_PROCESS_LOG   0x903
7786         $LCTL set_param fail_loc=0x903
7787         # cancel_lru_locks mgc - does not work due to lctl set_param syntax
7788         for ls in /proc/fs/lustre/ldlm/namespaces/MGC*/lru_size; do
7789                 echo "clear" > $ls
7790         done
7791         FAIL_ON_ERROR=true cleanup
7792         FAIL_ON_ERROR=true setup
7793 }
7794 run_test 900 "umount should not race with any mgc requeue thread"
7795
7796 log "cleanup: ======================================================"
7797 check_and_cleanup_lustre
7798 if [ "$I_MOUNTED" != "yes" ]; then
7799         lctl set_param debug="$OLDDEBUG" 2> /dev/null || true
7800 fi
7801
7802 echo '=========================== finished ==============================='
7803 [ -f "$SANITYLOG" ] && cat $SANITYLOG && grep -q FAIL $SANITYLOG && exit 1 || true
7804 echo "$0: completed"