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