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