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