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