Whamcloud - gitweb
b=24226 SUID/SGID related processing
[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 lctl get_param -n osd.*MDT000$((num -1)).kbytesfree)
3511         local MDCFREE=$(lctl get_param -n mdc.*MDT000$((num -1))-mdc-*.kbytesfree)
3512         echo "opening files to create objects/EAs"
3513         local FILE
3514         for FILE in `seq -f $dir/f%g 1 $FILECOUNT`; do
3515                 $OPENFILE -f O_RDWR $FILE > /dev/null 2>&1 || error "opening $FILE"
3516         done
3517
3518         # verify that files have EAs now
3519         $GETSTRIPE $FILE1 | grep -q "obdidx" || error "$FILE1 missing EA"
3520         $GETSTRIPE $FILEN | grep -q "obdidx" || error "$FILEN missing EA"
3521
3522         sleep 1  #make sure we get new statfs data
3523         df $dir
3524         local MDSFREE2=$(do_facet $mymds lctl get_param -n osd.*MDT000$((num -1)).kbytesfree)
3525         local MDCFREE2=$(lctl get_param -n mdc.*MDT000$((num -1))-mdc-*.kbytesfree)
3526         if [ "$MDCFREE2" -lt "$((MDCFREE - 8))" ]; then
3527                 if [ "$MDSFREE" != "$MDSFREE2" ]; then
3528                         error "MDC before $MDCFREE != after $MDCFREE2"
3529                 else
3530                         echo "MDC before $MDCFREE != after $MDCFREE2"
3531                         echo "unable to confirm if MDS has large inodes"
3532                 fi
3533         fi
3534         rm -rf $dir
3535 }
3536 run_test 57b "default LOV EAs are stored inside large inodes ==="
3537
3538 test_58() {
3539     [ -z "$(which wiretest 2>/dev/null)" ] && skip_env "could not find wiretest" && return
3540     wiretest
3541 }
3542 run_test 58 "verify cross-platform wire constants =============="
3543
3544 test_59() {
3545         echo "touch 130 files"
3546         createmany -o $DIR/f59- 130
3547         echo "rm 130 files"
3548         unlinkmany $DIR/f59- 130
3549         sync
3550         sleep 2
3551         # wait for commitment of removal
3552 }
3553 run_test 59 "verify cancellation of llog records async ========="
3554
3555 TEST60_HEAD="test_60 run $RANDOM"
3556 test_60a() {
3557         [ ! -f run-llog.sh ] && skip_env "missing subtest run-llog.sh" && return
3558         log "$TEST60_HEAD - from kernel mode"
3559         sh run-llog.sh
3560 }
3561 run_test 60a "llog sanity tests run from kernel module =========="
3562
3563 test_60b() { # bug 6411
3564         dmesg > $DIR/$tfile
3565         LLOG_COUNT=`dmesg | awk "/$TEST60_HEAD/{marker = 1; from_marker = 0;}
3566                                  /llog.test/ {
3567                                          if (marker)
3568                                                  from_marker++
3569                                          from_begin++
3570                                  }
3571                                  END {
3572                                          if (marker)
3573                                                  print from_marker
3574                                          else
3575                                                  print from_begin
3576                                  }"`
3577         [ $LLOG_COUNT -gt 50 ] && error "CDEBUG_LIMIT not limiting messages ($LLOG_COUNT)"|| true
3578 }
3579 run_test 60b "limit repeated messages from CERROR/CWARN ========"
3580
3581 test_60c() {
3582         echo "create 5000 files"
3583         createmany -o $DIR/f60c- 5000
3584 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED  0x137
3585         lctl set_param fail_loc=0x80000137
3586         unlinkmany $DIR/f60c- 5000
3587         lctl set_param fail_loc=0
3588 }
3589 run_test 60c "unlink file when mds full"
3590
3591 test_60d() {
3592         SAVEPRINTK=$(lctl get_param -n printk)
3593
3594         # verify "lctl mark" is even working"
3595         MESSAGE="test message ID $RANDOM $$"
3596         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
3597         dmesg | grep -q "$MESSAGE" || error "didn't find debug marker in log"
3598
3599         lctl set_param printk=0 || error "set lnet.printk failed"
3600         lctl get_param -n printk | grep emerg || error "lnet.printk dropped emerg"
3601         MESSAGE="new test message ID $RANDOM $$"
3602         # Assume here that libcfs_debug_mark_buffer() uses D_WARNING
3603         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
3604         dmesg | grep -q "$MESSAGE" && error "D_WARNING wasn't masked" || true
3605
3606         lctl set_param -n printk="$SAVEPRINTK"
3607 }
3608 run_test 60d "test printk console message masking"
3609
3610 test_61() {
3611         f="$DIR/f61"
3612         dd if=/dev/zero of=$f bs=`page_size` count=1
3613         cancel_lru_locks osc
3614         multiop $f OSMWUc || error
3615         sync
3616 }
3617 run_test 61 "mmap() writes don't make sync hang ================"
3618
3619 # bug 2330 - insufficient obd_match error checking causes LBUG
3620 test_62() {
3621         f="$DIR/f62"
3622         echo foo > $f
3623         cancel_lru_locks osc
3624         lctl set_param fail_loc=0x405
3625         cat $f && error "cat succeeded, expect -EIO"
3626         lctl set_param fail_loc=0
3627 }
3628 # This test is now irrelevant (as of bug 10718 inclusion), we no longer
3629 # match every page all of the time.
3630 #run_test 62 "verify obd_match failure doesn't LBUG (should -EIO)"
3631
3632 # bug 2319 - oig_wait() interrupted causes crash because of invalid waitq.
3633 test_63a() {    # was test_63
3634         MAX_DIRTY_MB=`lctl get_param -n osc.*.max_dirty_mb | head -n 1`
3635         lctl set_param -n osc.*.max_dirty_mb 0
3636         for i in `seq 10` ; do
3637                 dd if=/dev/zero of=$DIR/f63 bs=8k &
3638                 sleep 5
3639                 kill $!
3640                 sleep 1
3641         done
3642
3643         lctl set_param -n osc.*.max_dirty_mb $MAX_DIRTY_MB
3644         rm -f $DIR/f63 || true
3645 }
3646 run_test 63a "Verify oig_wait interruption does not crash ======="
3647
3648 # bug 2248 - async write errors didn't return to application on sync
3649 # bug 3677 - async write errors left page locked
3650 test_63b() {
3651         debugsave
3652         lctl set_param debug=-1
3653
3654         # ensure we have a grant to do async writes
3655         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1
3656         rm $DIR/$tfile
3657
3658         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
3659         lctl set_param fail_loc=0x80000406
3660         multiop $DIR/$tfile Owy && \
3661                 error "sync didn't return ENOMEM"
3662         sync; sleep 2; sync     # do a real sync this time to flush page
3663         lctl get_param -n llite.*.dump_page_cache | grep locked && \
3664                 error "locked page left in cache after async error" || true
3665         debugrestore
3666 }
3667 run_test 63b "async write errors should be returned to fsync ==="
3668
3669 test_64a () {
3670         df $DIR
3671         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur* | grep "[0-9]"
3672 }
3673 run_test 64a "verify filter grant calculations (in kernel) ====="
3674
3675 test_64b () {
3676         [ ! -f oos.sh ] && skip_env "missing subtest oos.sh" && return
3677         sh oos.sh $MOUNT
3678 }
3679 run_test 64b "check out-of-space detection on client ==========="
3680
3681 # bug 1414 - set/get directories' stripe info
3682 test_65a() {
3683         mkdir -p $DIR/d65
3684         touch $DIR/d65/f1
3685         $LVERIFY $DIR/d65 $DIR/d65/f1 || error "lverify failed"
3686 }
3687 run_test 65a "directory with no stripe info ===================="
3688
3689 test_65b() {
3690         mkdir -p $DIR/d65
3691         $SETSTRIPE $DIR/d65 -s $(($STRIPESIZE * 2)) -i 0 -c 1 || error "setstripe"
3692         touch $DIR/d65/f2
3693         $LVERIFY $DIR/d65 $DIR/d65/f2 || error "lverify failed"
3694 }
3695 run_test 65b "directory setstripe $(($STRIPESIZE * 2)) 0 1 ==============="
3696
3697 test_65c() {
3698         if [ $OSTCOUNT -gt 1 ]; then
3699                 mkdir -p $DIR/d65
3700                 $SETSTRIPE $DIR/d65 -s $(($STRIPESIZE * 4)) -i 1 \
3701                         -c $(($OSTCOUNT - 1)) || error "setstripe"
3702                 touch $DIR/d65/f3
3703                 $LVERIFY $DIR/d65 $DIR/d65/f3 || error "lverify failed"
3704         fi
3705 }
3706 run_test 65c "directory setstripe $(($STRIPESIZE * 4)) 1 $(($OSTCOUNT - 1))"
3707
3708 test_65d() {
3709         mkdir -p $DIR/d65
3710         if [ $STRIPECOUNT -le 0 ]; then
3711                 sc=1
3712         elif [ $STRIPECOUNT -gt 160 ]; then
3713 #LOV_MAX_STRIPE_COUNT is 160
3714                 [ $OSTCOUNT -gt 160 ] && sc=160 || sc=$(($OSTCOUNT - 1))
3715         else
3716                 sc=$(($STRIPECOUNT - 1))
3717         fi
3718         $SETSTRIPE $DIR/d65 -s $STRIPESIZE -c $sc || error "setstripe"
3719         touch $DIR/d65/f4 $DIR/d65/f5
3720         $LVERIFY $DIR/d65 $DIR/d65/f4 $DIR/d65/f5 || error "lverify failed"
3721 }
3722 run_test 65d "directory setstripe $STRIPESIZE -1 stripe_count =============="
3723
3724 test_65e() {
3725         mkdir -p $DIR/d65
3726
3727         $SETSTRIPE $DIR/d65 || error "setstripe"
3728         $GETSTRIPE -v $DIR/d65 | grep "Default" || error "no stripe info failed"
3729         touch $DIR/d65/f6
3730         $LVERIFY $DIR/d65 $DIR/d65/f6 || error "lverify failed"
3731 }
3732 run_test 65e "directory setstripe defaults ======================="
3733
3734 test_65f() {
3735         mkdir -p $DIR/d65f
3736         $RUNAS $SETSTRIPE $DIR/d65f && error "setstripe succeeded" || true
3737 }
3738 run_test 65f "dir setstripe permission (should return error) ==="
3739
3740 test_65g() {
3741         mkdir -p $DIR/d65
3742         $SETSTRIPE $DIR/d65 -s $(($STRIPESIZE * 2)) -i 0 -c 1 || error "setstripe"
3743         $SETSTRIPE -d $DIR/d65 || error "setstripe"
3744         $GETSTRIPE -v $DIR/d65 | grep "Default" || \
3745                 error "delete default stripe failed"
3746 }
3747 run_test 65g "directory setstripe -d ==========================="
3748
3749 test_65h() {
3750         mkdir -p $DIR/d65
3751         $SETSTRIPE $DIR/d65 -s $(($STRIPESIZE * 2)) -i 0 -c 1 || error "setstripe"
3752         mkdir -p $DIR/d65/dd1
3753         [ "`$GETSTRIPE -v $DIR/d65 | grep "^count"`" == \
3754           "`$GETSTRIPE -v $DIR/d65/dd1 | grep "^count"`" ] || error "stripe info inherit failed"
3755 }
3756 run_test 65h "directory stripe info inherit ===================="
3757
3758 test_65i() { # bug6367
3759         $SETSTRIPE $MOUNT -s 65536 -c -1
3760 }
3761 run_test 65i "set non-default striping on root directory (bug 6367)="
3762
3763 test_65ia() { # bug12836
3764         $LFS getstripe $MOUNT || error "getstripe $MOUNT failed"
3765 }
3766 run_test 65ia "getstripe on -1 default directory striping"
3767
3768 test_65ib() { # bug12836
3769         $LFS getstripe -v $MOUNT || error "getstripe -v $MOUNT failed"
3770 }
3771 run_test 65ib "getstripe -v on -1 default directory striping"
3772
3773 test_65ic() { # bug12836
3774         $LFS find -mtime -1 $MOUNT || error "find $MOUNT failed"
3775 }
3776 run_test 65ic "new find on -1 default directory striping"
3777
3778 test_65j() { # bug6367
3779         sync; sleep 1
3780         # if we aren't already remounting for each test, do so for this test
3781         if [ "$CLEANUP" = ":" -a "$I_MOUNTED" = "yes" ]; then
3782                 cleanup || error "failed to unmount"
3783                 setup
3784         fi
3785         $SETSTRIPE -d $MOUNT || error "setstripe failed"
3786 }
3787 run_test 65j "set default striping on root directory (bug 6367)="
3788
3789 test_65k() { # bug11679
3790         [ "$OSTCOUNT" -lt 2 ] && skip_env "too few OSTs" && return
3791         remote_mds_nodsh && skip "remote MDS with nodsh" && return
3792
3793         echo "Check OST status: "
3794         MDS_OSCS=`do_facet $SINGLEMDS lctl dl | awk '/[oO][sS][cC].*md[ts]/ { print $4 }'`
3795         for OSC in $MDS_OSCS; do
3796                 echo $OSC "is activate"
3797                 do_facet $SINGLEMDS lctl --device %$OSC activate
3798         done
3799         do_facet client mkdir -p $DIR/$tdir
3800         for INACTIVE_OSC in $MDS_OSCS; do
3801                 echo $INACTIVE_OSC "is Deactivate:"
3802                 do_facet $SINGLEMDS lctl --device  %$INACTIVE_OSC deactivate
3803                 for STRIPE_OSC in $MDS_OSCS; do
3804                         STRIPE_OST=`osc_to_ost $STRIPE_OSC`
3805                         STRIPE_INDEX=`do_facet $SINGLEMDS lctl get_param -n lov.*md*.target_obd |
3806                                       grep $STRIPE_OST | awk -F: '{print $1}' | head -n 1`
3807
3808                 [ -f $DIR/$tdir/${STRIPE_INDEX} ] && continue
3809                         echo "$SETSTRIPE $DIR/$tdir/${STRIPE_INDEX} -i ${STRIPE_INDEX} -c 1"
3810                         do_facet client $SETSTRIPE $DIR/$tdir/${STRIPE_INDEX} -i ${STRIPE_INDEX} -c 1
3811                         RC=$?
3812                         [ $RC -ne 0 ] && error "setstripe should have succeeded"
3813                 done
3814                 do_facet client rm -f $DIR/$tdir/*
3815                 echo $INACTIVE_OSC "is Activate."
3816                 do_facet $SINGLEMDS lctl --device  %$INACTIVE_OSC activate
3817         done
3818 }
3819 run_test 65k "validate manual striping works properly with deactivated OSCs"
3820
3821 test_65l() { # bug 12836
3822         mkdir -p $DIR/$tdir/test_dir
3823         $SETSTRIPE $DIR/$tdir/test_dir -c -1
3824         $LFS find -mtime -1 $DIR/$tdir >/dev/null
3825 }
3826 run_test 65l "lfs find on -1 stripe dir ========================"
3827
3828 # bug 2543 - update blocks count on client
3829 test_66() {
3830         COUNT=${COUNT:-8}
3831         dd if=/dev/zero of=$DIR/f66 bs=1k count=$COUNT
3832         sync; sleep 1; sync
3833         BLOCKS=`ls -s $DIR/f66 | awk '{ print $1 }'`
3834         [ $BLOCKS -ge $COUNT ] || error "$DIR/f66 blocks $BLOCKS < $COUNT"
3835 }
3836 run_test 66 "update inode blocks count on client ==============="
3837
3838 LLOOP=
3839 LLITELOOPLOAD=
3840 cleanup_68() {
3841         trap 0
3842         if [ ! -z "$LLOOP" ]; then
3843                 if swapon -s | grep -q $LLOOP; then
3844                         swapoff $LLOOP || error "swapoff failed"
3845                 fi
3846
3847                 $LCTL blockdev_detach $LLOOP || error "detach failed"
3848                 rm -f $LLOOP
3849                 unset LLOOP
3850         fi
3851         if [ ! -z "$LLITELOOPLOAD" ]; then
3852                 rmmod llite_lloop
3853                 unset LLITELOOPLOAD
3854         fi 
3855         rm -f $DIR/f68*
3856 }
3857
3858 meminfo() {
3859         awk '($1 == "'$1':") { print $2 }' /proc/meminfo
3860 }
3861
3862 swap_used() {
3863         swapon -s | awk '($1 == "'$1'") { print $4 }'
3864 }
3865
3866 # test case for lloop driver, basic function
3867 test_68a() {
3868         [ "$UID" != 0 ] && skip_env "must run as root" && return
3869
3870         trap cleanup_68 EXIT
3871
3872         if ! module_loaded llite_lloop; then
3873                 if load_module llite/llite_lloop; then
3874                         LLITELOOPLOAD=yes
3875                 else
3876                         skip_env "can't find module llite_lloop"
3877                         return
3878                 fi
3879         fi
3880
3881         LLOOP=$TMP/lloop.`date +%s`.`date +%N`
3882         dd if=/dev/zero of=$DIR/f68a bs=4k count=1024
3883         $LCTL blockdev_attach $DIR/f68a $LLOOP || error "attach failed"
3884
3885         directio rdwr $LLOOP 0 1024 4096 || error "direct write failed"
3886         directio rdwr $LLOOP 0 1025 4096 && error "direct write should fail"
3887
3888         cleanup_68
3889 }
3890 run_test 68a "lloop driver - basic test ========================"
3891
3892 # excercise swapping to lustre by adding a high priority swapfile entry
3893 # and then consuming memory until it is used.
3894 test_68b() {  # was test_68
3895         [ "$UID" != 0 ] && skip_env "must run as root" && return
3896         lctl get_param -n devices | grep -q obdfilter && \
3897                 skip "local OST" && return
3898
3899         grep -q llite_lloop /proc/modules
3900         [ $? -ne 0 ] && skip "can't find module llite_lloop" && return
3901
3902         [ -z "`$LCTL list_nids | grep -v tcp`" ] && \
3903                 skip "can't reliably test swap with TCP" && return
3904
3905         MEMTOTAL=`meminfo MemTotal`
3906         NR_BLOCKS=$((MEMTOTAL>>8))
3907         [[ $NR_BLOCKS -le 2048 ]] && NR_BLOCKS=2048
3908
3909         LLOOP=$TMP/lloop.`date +%s`.`date +%N`
3910         dd if=/dev/zero of=$DIR/f68b bs=64k seek=$NR_BLOCKS count=1
3911         mkswap $DIR/f68b
3912
3913         $LCTL blockdev_attach $DIR/f68b $LLOOP || error "attach failed"
3914
3915         trap cleanup_68 EXIT
3916
3917         swapon -p 32767 $LLOOP || error "swapon $LLOOP failed"
3918
3919         echo "before: `swapon -s | grep $LLOOP`"
3920         $MEMHOG $MEMTOTAL || error "error allocating $MEMTOTAL kB"
3921         echo "after: `swapon -s | grep $LLOOP`"
3922         SWAPUSED=`swap_used $LLOOP`
3923
3924         cleanup_68
3925
3926         [ $SWAPUSED -eq 0 ] && echo "no swap used???" || true
3927 }
3928 run_test 68b "support swapping to Lustre ========================"
3929
3930 # bug5265, obdfilter oa2dentry return -ENOENT
3931 # #define OBD_FAIL_OST_ENOENT 0x217
3932 test_69() {
3933         remote_ost_nodsh && skip "remote OST with nodsh" && return
3934
3935         f="$DIR/$tfile"
3936         $SETSTRIPE $f -c 1 -i 0
3937
3938         $DIRECTIO write ${f}.2 0 1 || error "directio write error"
3939
3940         do_facet ost1 lctl set_param fail_loc=0x217
3941         $TRUNCATE $f 1 # vmtruncate() will ignore truncate() error.
3942         $DIRECTIO write $f 0 2 && error "write succeeded, expect -ENOENT"
3943
3944         do_facet ost1 lctl set_param fail_loc=0
3945         $DIRECTIO write $f 0 2 || error "write error"
3946
3947         cancel_lru_locks osc
3948         $DIRECTIO read $f 0 1 || error "read error"
3949
3950         do_facet ost1 lctl set_param fail_loc=0x217
3951         $DIRECTIO read $f 1 1 && error "read succeeded, expect -ENOENT"
3952
3953         do_facet ost1 lctl set_param fail_loc=0
3954         rm -f $f
3955 }
3956 run_test 69 "verify oa2dentry return -ENOENT doesn't LBUG ======"
3957
3958 test_71() {
3959     mkdir -p $DIR/$tdir
3960     sh rundbench -C -D $DIR/$tdir 2 || error "dbench failed!"
3961 }
3962 run_test 71 "Running dbench on lustre (don't segment fault) ===="
3963
3964 test_72a() { # bug 5695 - Test that on 2.6 remove_suid works properly
3965         check_kernel_version 43 || return 0
3966         [ "$RUNAS_ID" = "$UID" ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
3967
3968         # Check that testing environment is properly set up. Skip if not
3969         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_GID $RUNAS || {
3970                 skip_env "User $RUNAS_ID does not exist - skipping"
3971                 return 0
3972         }
3973         # We had better clear the $DIR to get enough space for dd
3974         rm -rf $DIR/*
3975         touch $DIR/f72
3976         chmod 777 $DIR/f72
3977         chmod ug+s $DIR/f72
3978         $RUNAS dd if=/dev/zero of=$DIR/f72 bs=512 count=1 || error
3979         # See if we are still setuid/sgid
3980         test -u $DIR/f72 -o -g $DIR/f72 && error "S/gid is not dropped on write"
3981         # Now test that MDS is updated too
3982         cancel_lru_locks mdc
3983         test -u $DIR/f72 -o -g $DIR/f72 && error "S/gid is not dropped on MDS"
3984         true
3985         rm -f $DIR/f72
3986 }
3987 run_test 72a "Test that remove suid works properly (bug5695) ===="
3988
3989 test_72b() { # bug 24226 -- keep mode setting when size is not changing
3990         local perm
3991
3992         [ "$RUNAS_ID" = "$UID" ] && \
3993                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
3994         [ "$RUNAS_ID" -eq 0 ] && \
3995                 skip_env "RUNAS_ID = 0 -- skipping" && return
3996
3997         # Check that testing environment is properly set up. Skip if not
3998         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_ID $RUNAS || {
3999                 skip_env "User $RUNAS_ID does not exist - skipping"
4000                 return 0
4001         }
4002         touch $DIR/${tfile}-f{g,u}
4003         mkdir $DIR/${tfile}-d{g,u}
4004         chmod 770 $DIR/${tfile}-{f,d}{g,u}
4005         chmod g+s $DIR/${tfile}-{f,d}g
4006         chmod u+s $DIR/${tfile}-{f,d}u
4007         for perm in 777 2777 4777; do
4008                 $RUNAS chmod $perm $DIR/${tfile}-fg && error "S/gid file allowed improper chmod to $perm"
4009                 $RUNAS chmod $perm $DIR/${tfile}-fu && error "S/uid file allowed improper chmod to $perm"
4010                 $RUNAS chmod $perm $DIR/${tfile}-dg && error "S/gid dir allowed improper chmod to $perm"
4011                 $RUNAS chmod $perm $DIR/${tfile}-du && error "S/uid dir allowed improper chmod to $perm"
4012         done
4013         true
4014 }
4015 run_test 72b "Test that we keep mode setting if without file data changed (bug 24226)"
4016
4017 # bug 3462 - multiple simultaneous MDC requests
4018 test_73() {
4019         mkdir $DIR/d73-1
4020         mkdir $DIR/d73-2
4021         multiop_bg_pause $DIR/d73-1/f73-1 O_c || return 1
4022         pid1=$!
4023
4024         lctl set_param fail_loc=0x80000129
4025         multiop $DIR/d73-1/f73-2 Oc &
4026         sleep 1
4027         lctl set_param fail_loc=0
4028
4029         multiop $DIR/d73-2/f73-3 Oc &
4030         pid3=$!
4031
4032         kill -USR1 $pid1
4033         wait $pid1 || return 1
4034
4035         sleep 25
4036
4037         $CHECKSTAT -t file $DIR/d73-1/f73-1 || return 4
4038         $CHECKSTAT -t file $DIR/d73-1/f73-2 || return 5
4039         $CHECKSTAT -t file $DIR/d73-2/f73-3 || return 6
4040
4041         rm -rf $DIR/d73-*
4042 }
4043 run_test 73 "multiple MDC requests (should not deadlock)"
4044
4045 test_74a() { # bug 6149, 6184
4046         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
4047         #
4048         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
4049         # will spin in a tight reconnection loop
4050         touch $DIR/f74a
4051         lctl set_param fail_loc=0x8000030e
4052         # get any lock that won't be difficult - lookup works.
4053         ls $DIR/f74a
4054         lctl set_param fail_loc=0
4055         true
4056         rm -f $DIR/f74a
4057 }
4058 run_test 74a "ldlm_enqueue freed-export error path, ls (shouldn't LBUG)"
4059
4060 test_74b() { # bug 13310
4061         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
4062         #
4063         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
4064         # will spin in a tight reconnection loop
4065         lctl set_param fail_loc=0x8000030e
4066         # get a "difficult" lock
4067         touch $DIR/f74b
4068         lctl set_param fail_loc=0
4069         true
4070         rm -f $DIR/f74b
4071 }
4072 run_test 74b "ldlm_enqueue freed-export error path, touch (shouldn't LBUG)"
4073
4074 test_74c() {
4075 #define OBD_FAIL_LDLM_NEW_LOCK
4076         lctl set_param fail_loc=0x80000319
4077         touch $DIR/$tfile && error "Touch successful"
4078         true
4079 }
4080 run_test 74c "ldlm_lock_create error path, (shouldn't LBUG)"
4081
4082 num_inodes() {
4083         awk '/lustre_inode_cache/ {print $2; exit}' /proc/slabinfo
4084 }
4085
4086 get_inode_slab_tunables() {
4087         awk '/lustre_inode_cache/ {print $9," ",$10," ",$11; exit}' /proc/slabinfo
4088 }
4089
4090 set_inode_slab_tunables() {
4091         echo "lustre_inode_cache $1" > /proc/slabinfo
4092 }
4093
4094 test_76() { # Now for bug 20433, added originally in bug 1443
4095         local SLAB_SETTINGS=`get_inode_slab_tunables`
4096         local CPUS=`getconf _NPROCESSORS_ONLN`
4097         # we cannot set limit below 1 which means 1 inode in each
4098         # per-cpu cache is still allowed
4099         set_inode_slab_tunables "1 1 0"
4100         cancel_lru_locks osc
4101         BEFORE_INODES=`num_inodes`
4102         echo "before inodes: $BEFORE_INODES"
4103         local COUNT=1000
4104         [ "$SLOW" = "no" ] && COUNT=100
4105         for i in `seq $COUNT`; do
4106                 touch $DIR/$tfile
4107                 rm -f $DIR/$tfile
4108         done
4109         cancel_lru_locks osc
4110         AFTER_INODES=`num_inodes`
4111         echo "after inodes: $AFTER_INODES"
4112         local wait=0
4113         while [ $((AFTER_INODES-1*CPUS)) -gt $BEFORE_INODES ]; do
4114                 sleep 2
4115                 AFTER_INODES=`num_inodes`
4116                 wait=$((wait+2))
4117                 echo "wait $wait seconds inodes: $AFTER_INODES"
4118                 if [ $wait -gt 30 ]; then
4119                         error "inode slab grew from $BEFORE_INODES to $AFTER_INODES"
4120                 fi
4121         done
4122         set_inode_slab_tunables "$SLAB_SETTINGS"
4123 }
4124 run_test 76 "confirm clients recycle inodes properly ===="
4125
4126
4127 export ORIG_CSUM=""
4128 set_checksums()
4129 {
4130         # Note: in sptlrpc modes which enable its own bulk checksum, the
4131         # original crc32_le bulk checksum will be automatically disabled,
4132         # and the OBD_FAIL_OSC_CHECKSUM_SEND/OBD_FAIL_OSC_CHECKSUM_RECEIVE
4133         # will be checked by sptlrpc code against sptlrpc bulk checksum.
4134         # In this case set_checksums() will not be no-op, because sptlrpc
4135         # bulk checksum will be enabled all through the test.
4136
4137         [ "$ORIG_CSUM" ] || ORIG_CSUM=`lctl get_param -n osc.*.checksums | head -n1`
4138         lctl set_param -n osc.*.checksums $1
4139         return 0
4140 }
4141
4142 export ORIG_CSUM_TYPE=""
4143 CKSUM_TYPES=${CKSUM_TYPES:-"crc32 adler"}
4144 set_checksum_type()
4145 {
4146         [ "$ORIG_CSUM_TYPE" ] || \
4147                 ORIG_CSUM_TYPE=`lctl get_param -n osc/*osc-[^mM]*/checksum_type |
4148                                 sed 's/.*\[\(.*\)\].*/\1/g' | head -n1`
4149         lctl set_param -n osc.*osc-[^mM]*.checksum_type $1
4150         log "set checksum type to $1"
4151         return 0
4152 }
4153 F77_TMP=$TMP/f77-temp
4154 F77SZ=8
4155 setup_f77() {
4156         dd if=/dev/urandom of=$F77_TMP bs=1M count=$F77SZ || \
4157                 error "error writing to $F77_TMP"
4158 }
4159
4160 test_77a() { # bug 10889
4161         $GSS && skip "could not run with gss" && return
4162         [ ! -f $F77_TMP ] && setup_f77
4163         set_checksums 1
4164         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ || error "dd error"
4165         set_checksums 0
4166         rm -f $DIR/$tfile
4167 }
4168 run_test 77a "normal checksum read/write operation ============="
4169
4170 test_77b() { # bug 10889
4171         $GSS && skip "could not run with gss" && return
4172         [ ! -f $F77_TMP ] && setup_f77
4173         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
4174         lctl set_param fail_loc=0x80000409
4175         set_checksums 1
4176         dd if=$F77_TMP of=$DIR/f77b bs=1M count=$F77SZ conv=sync || \
4177                 error "dd error: $?"
4178         lctl set_param fail_loc=0
4179         set_checksums 0
4180 }
4181 run_test 77b "checksum error on client write ===================="
4182
4183 test_77c() { # bug 10889
4184         $GSS && skip "could not run with gss" && return
4185         [ ! -f $DIR/f77b ] && skip "requires 77b - skipping" && return
4186         set_checksums 1
4187         for algo in $CKSUM_TYPES; do
4188                 cancel_lru_locks osc
4189                 set_checksum_type $algo
4190                 #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
4191                 lctl set_param fail_loc=0x80000408
4192                 cmp $F77_TMP $DIR/f77b || error "file compare failed"
4193                 lctl set_param fail_loc=0
4194         done
4195         set_checksums 0
4196         set_checksum_type $ORIG_CSUM_TYPE
4197         rm -f $DIR/f77b
4198 }
4199 run_test 77c "checksum error on client read ==================="
4200
4201 test_77d() { # bug 10889
4202         $GSS && skip "could not run with gss" && return
4203         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
4204         lctl set_param fail_loc=0x80000409
4205         set_checksums 1
4206         directio write $DIR/f77 0 $F77SZ $((1024 * 1024)) || \
4207                 error "direct write: rc=$?"
4208         lctl set_param fail_loc=0
4209         set_checksums 0
4210 }
4211 run_test 77d "checksum error on OST direct write ==============="
4212
4213 test_77e() { # bug 10889
4214         $GSS && skip "could not run with gss" && return
4215         [ ! -f $DIR/f77 ] && skip "requires 77d - skipping" && return
4216         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
4217         lctl set_param fail_loc=0x80000408
4218         set_checksums 1
4219         cancel_lru_locks osc
4220         directio read $DIR/f77 0 $F77SZ $((1024 * 1024)) || \
4221                 error "direct read: rc=$?"
4222         lctl set_param fail_loc=0
4223         set_checksums 0
4224 }
4225 run_test 77e "checksum error on OST direct read ================"
4226
4227 test_77f() { # bug 10889
4228         $GSS && skip "could not run with gss" && return
4229         set_checksums 1
4230         for algo in $CKSUM_TYPES; do
4231                 cancel_lru_locks osc
4232                 set_checksum_type $algo
4233                 #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
4234                 lctl set_param fail_loc=0x409
4235                 directio write $DIR/f77 0 $F77SZ $((1024 * 1024)) && \
4236                         error "direct write succeeded"
4237                 lctl set_param fail_loc=0
4238         done
4239         set_checksum_type $ORIG_CSUM_TYPE
4240         set_checksums 0
4241 }
4242 run_test 77f "repeat checksum error on write (expect error) ===="
4243
4244 test_77g() { # bug 10889
4245         $GSS && skip "could not run with gss" && return
4246         remote_ost_nodsh && skip "remote OST with nodsh" && return
4247
4248         [ ! -f $F77_TMP ] && setup_f77
4249
4250         $SETSTRIPE $DIR/f77g -c 1 -i 0
4251         #define OBD_FAIL_OST_CHECKSUM_RECEIVE       0x21a
4252         do_facet ost1 lctl set_param fail_loc=0x8000021a
4253         set_checksums 1
4254         dd if=$F77_TMP of=$DIR/f77g bs=1M count=$F77SZ || \
4255                 error "write error: rc=$?"
4256         do_facet ost1 lctl set_param fail_loc=0
4257         set_checksums 0
4258 }
4259 run_test 77g "checksum error on OST write ======================"
4260
4261 test_77h() { # bug 10889
4262         $GSS && skip "could not run with gss" && return
4263         remote_ost_nodsh && skip "remote OST with nodsh" && return
4264
4265         [ ! -f $DIR/f77g ] && skip "requires 77g - skipping" && return
4266         cancel_lru_locks osc
4267         #define OBD_FAIL_OST_CHECKSUM_SEND          0x21b
4268         do_facet ost1 lctl set_param fail_loc=0x8000021b
4269         set_checksums 1
4270         cmp $F77_TMP $DIR/f77g || error "file compare failed"
4271         do_facet ost1 lctl set_param fail_loc=0
4272         set_checksums 0
4273 }
4274 run_test 77h "checksum error on OST read ======================="
4275
4276 test_77i() { # bug 13805
4277         $GSS && skip "could not run with gss" && return
4278         #define OBD_FAIL_OSC_CONNECT_CKSUM       0x40b
4279         lctl set_param fail_loc=0x40b
4280         remount_client $MOUNT
4281         lctl set_param fail_loc=0
4282         for VALUE in `lctl get_param osc.*osc-[^mM]*.checksum_type`; do
4283                 PARAM=`echo ${VALUE[0]} | cut -d "=" -f1`
4284                 algo=`lctl get_param -n $PARAM | sed 's/.*\[\(.*\)\].*/\1/g'`
4285                 [ "$algo" = "crc32" ] || error "algo set to $algo instead of crc32"
4286         done
4287         remount_client $MOUNT
4288 }
4289 run_test 77i "client not supporting OSD_CONNECT_CKSUM =========="
4290
4291 test_77j() { # bug 13805
4292         $GSS && skip "could not run with gss" && return
4293         #define OBD_FAIL_OSC_CKSUM_ADLER_ONLY    0x40c
4294         lctl set_param fail_loc=0x40c
4295         remount_client $MOUNT
4296         lctl set_param fail_loc=0
4297         sleep 2 # wait async osc connect to finish
4298         for VALUE in `lctl get_param osc.*osc-[^mM]*.checksum_type`; do
4299                 PARAM=`echo ${VALUE[0]} | cut -d "=" -f1`
4300                 algo=`lctl get_param -n $PARAM | sed 's/.*\[\(.*\)\].*/\1/g'`
4301                 [ "$algo" = "adler" ] || error "algo set to $algo instead of adler"
4302         done
4303         remount_client $MOUNT
4304 }
4305 run_test 77j "client only supporting ADLER32 ===================="
4306
4307 [ "$ORIG_CSUM" ] && set_checksums $ORIG_CSUM || true
4308 rm -f $F77_TMP
4309 unset F77_TMP
4310
4311 test_78() { # bug 10901
4312         remote_ost || { skip_env "local OST" && return; }
4313
4314         NSEQ=5
4315         F78SIZE=$(($(awk '/MemFree:/ { print $2 }' /proc/meminfo) / 1024))
4316         echo "MemFree: $F78SIZE, Max file size: $MAXFREE"
4317         MEMTOTAL=$(($(awk '/MemTotal:/ { print $2 }' /proc/meminfo) / 1024))
4318         echo "MemTotal: $MEMTOTAL"
4319 # reserve 256MB of memory for the kernel and other running processes,
4320 # and then take 1/2 of the remaining memory for the read/write buffers.
4321     if [ $MEMTOTAL -gt 512 ] ;then
4322         MEMTOTAL=$(((MEMTOTAL - 256 ) / 2))
4323     else
4324         # for those poor memory-starved high-end clusters...
4325         MEMTOTAL=$((MEMTOTAL / 2))
4326     fi
4327         echo "Mem to use for directio: $MEMTOTAL"
4328         [ $F78SIZE -gt $MEMTOTAL ] && F78SIZE=$MEMTOTAL
4329         [ $F78SIZE -gt 512 ] && F78SIZE=512
4330         [ $F78SIZE -gt $((MAXFREE / 1024)) ] && F78SIZE=$((MAXFREE / 1024))
4331         SMALLESTOST=`lfs df $DIR |grep OST | awk '{print $4}' |sort -n |head -1`
4332         echo "Smallest OST: $SMALLESTOST"
4333         [ $SMALLESTOST -lt 10240 ] && \
4334                 skip "too small OSTSIZE, useless to run large O_DIRECT test" && return 0
4335
4336         [ $F78SIZE -gt $((SMALLESTOST * $OSTCOUNT / 1024 - 80)) ] && \
4337                 F78SIZE=$((SMALLESTOST * $OSTCOUNT / 1024 - 80))
4338
4339         [ "$SLOW" = "no" ] && NSEQ=1 && [ $F78SIZE -gt 32 ] && F78SIZE=32
4340         echo "File size: $F78SIZE"
4341         $SETSTRIPE $DIR/$tfile -c $OSTCOUNT || error "setstripe failed"
4342         for i in `seq 1 $NSEQ`
4343         do
4344                 FSIZE=$(($F78SIZE / ($NSEQ - $i + 1)))
4345                 echo directIO rdwr round $i of $NSEQ
4346                 $DIRECTIO rdwr $DIR/$tfile 0 $FSIZE 1048576||error "rdwr failed"
4347         done
4348
4349         rm -f $DIR/$tfile
4350 }
4351 run_test 78 "handle large O_DIRECT writes correctly ============"
4352
4353 test_79() { # bug 12743
4354         wait_delete_completed
4355
4356         BKTOTAL=$(calc_osc_kbytes kbytestotal)
4357         BKFREE=$(calc_osc_kbytes kbytesfree)
4358         BKAVAIL=$(calc_osc_kbytes kbytesavail)
4359
4360         STRING=`df -P $MOUNT | tail -n 1 | awk '{print $2","$3","$4}'`
4361         DFTOTAL=`echo $STRING | cut -d, -f1`
4362         DFUSED=`echo $STRING  | cut -d, -f2`
4363         DFAVAIL=`echo $STRING | cut -d, -f3`
4364         DFFREE=$(($DFTOTAL - $DFUSED))
4365
4366         ALLOWANCE=$((64 * $OSTCOUNT))
4367
4368         if [ $DFTOTAL -lt $(($BKTOTAL - $ALLOWANCE)) ] ||
4369            [ $DFTOTAL -gt $(($BKTOTAL + $ALLOWANCE)) ] ; then
4370                 error "df total($DFTOTAL) mismatch OST total($BKTOTAL)"
4371         fi
4372         if [ $DFFREE -lt $(($BKFREE - $ALLOWANCE)) ] ||
4373            [ $DFFREE -gt $(($BKFREE + $ALLOWANCE)) ] ; then
4374                 error "df free($DFFREE) mismatch OST free($BKFREE)"
4375         fi
4376         if [ $DFAVAIL -lt $(($BKAVAIL - $ALLOWANCE)) ] ||
4377            [ $DFAVAIL -gt $(($BKAVAIL + $ALLOWANCE)) ] ; then
4378                 error "df avail($DFAVAIL) mismatch OST avail($BKAVAIL)"
4379         fi
4380 }
4381 run_test 79 "df report consistency check ======================="
4382
4383 test_80() { # bug 10718
4384         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1M
4385         sync; sleep 1; sync
4386         local BEFORE=`date +%s`
4387         cancel_lru_locks osc
4388         local AFTER=`date +%s`
4389         local DIFF=$((AFTER-BEFORE))
4390         if [ $DIFF -gt 1 ] ; then
4391                 error "elapsed for 1M@1T = $DIFF"
4392         fi
4393         true
4394         rm -f $DIR/$tfile
4395 }
4396 run_test 80 "Page eviction is equally fast at high offsets too  ===="
4397
4398 test_99a() {
4399         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && \
4400             return
4401         mkdir -p $DIR/d99cvsroot
4402         chown $RUNAS_ID $DIR/d99cvsroot
4403         local oldPWD=$PWD       # bug 13584, use $TMP as working dir
4404         cd $TMP
4405
4406         $RUNAS cvs -d $DIR/d99cvsroot init || error
4407         cd $oldPWD
4408 }
4409 run_test 99a "cvs init ========================================="
4410
4411 test_99b() {
4412         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
4413         [ ! -d $DIR/d99cvsroot ] && test_99a
4414         cd /etc/init.d
4415         # some versions of cvs import exit(1) when asked to import links or
4416         # files they can't read.  ignore those files.
4417         TOIGNORE=$(find . -type l -printf '-I %f\n' -o \
4418                         ! -perm +4 -printf '-I %f\n')
4419         $RUNAS cvs -d $DIR/d99cvsroot import -m "nomesg" $TOIGNORE \
4420                 d99reposname vtag rtag
4421 }
4422 run_test 99b "cvs import ======================================="
4423
4424 test_99c() {
4425         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
4426         [ ! -d $DIR/d99cvsroot ] && test_99b
4427         cd $DIR
4428         mkdir -p $DIR/d99reposname
4429         chown $RUNAS_ID $DIR/d99reposname
4430         $RUNAS cvs -d $DIR/d99cvsroot co d99reposname
4431 }
4432 run_test 99c "cvs checkout ====================================="
4433
4434 test_99d() {
4435         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
4436         [ ! -d $DIR/d99cvsroot ] && test_99c
4437         cd $DIR/d99reposname
4438         $RUNAS touch foo99
4439         $RUNAS cvs add -m 'addmsg' foo99
4440 }
4441 run_test 99d "cvs add =========================================="
4442
4443 test_99e() {
4444         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
4445         [ ! -d $DIR/d99cvsroot ] && test_99c
4446         cd $DIR/d99reposname
4447         $RUNAS cvs update
4448 }
4449 run_test 99e "cvs update ======================================="
4450
4451 test_99f() {
4452         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
4453         [ ! -d $DIR/d99cvsroot ] && test_99d
4454         cd $DIR/d99reposname
4455         $RUNAS cvs commit -m 'nomsg' foo99
4456     rm -fr $DIR/d99cvsroot
4457 }
4458 run_test 99f "cvs commit ======================================="
4459
4460 test_100() {
4461         [ "$NETTYPE" = tcp ] || \
4462                 { skip "TCP secure port test, not useful for NETTYPE=$NETTYPE" && \
4463                         return ; }
4464
4465         remote_ost_nodsh && skip "remote OST with nodsh" && return
4466         remote_mds_nodsh && skip "remote MDS with nodsh" && return
4467         remote_servers || \
4468                 { skip "useless for local single node setup" && return; }
4469
4470         netstat -tna | ( rc=1; while read PROT SND RCV LOCAL REMOTE STAT; do
4471                 [ "$PROT" != "tcp" ] && continue
4472                 RPORT=$(echo $REMOTE | cut -d: -f2)
4473                 [ "$RPORT" != "$ACCEPTOR_PORT" ] && continue
4474
4475                 rc=0
4476                 LPORT=`echo $LOCAL | cut -d: -f2`
4477                 if [ $LPORT -ge 1024 ]; then
4478                         echo "bad: $PROT $SND $RCV $LOCAL $REMOTE $STAT"
4479                         netstat -tna
4480                         error_exit "local: $LPORT > 1024, remote: $RPORT"
4481                 fi
4482         done
4483         [ "$rc" = 0 ] || error_exit "privileged port not found" )
4484 }
4485 run_test 100 "check local port using privileged port ==========="
4486
4487 function get_named_value()
4488 {
4489     local tag
4490
4491     tag=$1
4492     while read ;do
4493         line=$REPLY
4494         case $line in
4495         $tag*)
4496             echo $line | sed "s/^$tag//"
4497             break
4498             ;;
4499         esac
4500     done
4501 }
4502
4503 export CACHE_MAX=`lctl get_param -n llite.*.max_cached_mb | head -n 1`
4504 cleanup_101() {
4505         lctl set_param -n llite.*.max_cached_mb $CACHE_MAX
4506         trap 0
4507 }
4508
4509 test_101() {
4510         local s
4511         local discard
4512         local nreads=10000
4513         [ "$CPU" = "UML" ] && nreads=1000
4514         local cache_limit=32
4515
4516         lctl set_param -n osc.*-osc*.rpc_stats 0
4517         trap cleanup_101 EXIT
4518         lctl set_param -n llite.*.read_ahead_stats 0
4519         lctl set_param -n llite.*.max_cached_mb $cache_limit
4520
4521         #
4522         # randomly read 10000 of 64K chunks from file 3x 32MB in size
4523         #
4524         echo "nreads: $nreads file size: $((cache_limit * 3))MB"
4525         $READS -f $DIR/$tfile -s$((cache_limit * 3192 * 1024)) -b65536 -C -n$nreads -t 180
4526
4527         discard=0
4528         for s in `lctl get_param -n llite.*.read_ahead_stats | \
4529                 get_named_value 'read but discarded' | cut -d" " -f1`; do
4530                         discard=$(($discard + $s))
4531         done
4532         cleanup_101
4533
4534         if [ $(($discard * 10)) -gt $nreads ] ;then
4535                 lctl get_param osc.*-osc*.rpc_stats
4536                 lctl get_param llite.*.read_ahead_stats
4537                 error "too many ($discard) discarded pages"
4538         fi
4539         rm -f $DIR/$tfile || true
4540 }
4541 run_test 101 "check read-ahead for random reads ================"
4542
4543 setup_test101b() {
4544         mkdir -p $DIR/$tdir
4545         STRIPE_SIZE=1048576
4546         STRIPE_COUNT=$OSTCOUNT
4547         STRIPE_OFFSET=0
4548
4549         trap cleanup_test101b EXIT
4550         # prepare the read-ahead file
4551         $SETSTRIPE $DIR/$tfile -s $STRIPE_SIZE -i $STRIPE_OFFSET -c $OSTCOUNT
4552
4553         dd if=/dev/zero of=$DIR/$tfile bs=1024k count=100 2> /dev/null
4554 }
4555
4556 cleanup_test101b() {
4557         trap 0
4558         rm -rf $DIR/$tdir
4559         rm -f $DIR/$tfile
4560 }
4561
4562 calc_total() {
4563         awk 'BEGIN{total=0}; {total+=$1}; END{print total}'
4564 }
4565
4566 ra_check_101() {
4567         local READ_SIZE=$1
4568         local STRIPE_SIZE=1048576
4569         local RA_INC=1048576
4570         local STRIDE_LENGTH=$((STRIPE_SIZE/READ_SIZE))
4571         local FILE_LENGTH=$((64*100))
4572         local discard_limit=$((((STRIDE_LENGTH - 1)*3/(STRIDE_LENGTH*OSTCOUNT))* \
4573                              (STRIDE_LENGTH*OSTCOUNT - STRIDE_LENGTH)))
4574         DISCARD=`$LCTL get_param -n llite.*.read_ahead_stats | \
4575                         get_named_value 'read but discarded' | \
4576                         cut -d" " -f1 | calc_total`
4577
4578         if [ $DISCARD -gt $discard_limit ]; then
4579                 lctl get_param llite.*.read_ahead_stats
4580                 error "Too many ($DISCARD) discarded pages with size (${READ_SIZE})"
4581         else
4582                 echo "Read-ahead success for size ${READ_SIZE}"
4583         fi
4584 }
4585
4586 test_101b() {
4587         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping stride IO stride-ahead test" && return
4588         local STRIPE_SIZE=1048576
4589         local STRIDE_SIZE=$((STRIPE_SIZE*OSTCOUNT))
4590         local FILE_LENGTH=$((STRIPE_SIZE*100))
4591         local ITERATION=$((FILE_LENGTH/STRIDE_SIZE))
4592         # prepare the read-ahead file
4593         setup_test101b
4594         cancel_lru_locks osc
4595         for BIDX in 2 4 8 16 32 64 128 256
4596         do
4597                 local BSIZE=$((BIDX*4096))
4598                 local READ_COUNT=$((STRIPE_SIZE/BSIZE))
4599                 local STRIDE_LENGTH=$((STRIDE_SIZE/BSIZE))
4600                 local OFFSET=$((STRIPE_SIZE/BSIZE*(OSTCOUNT - 1)))
4601                 $LCTL set_param -n llite.*.read_ahead_stats 0
4602                 $READS -f $DIR/$tfile  -l $STRIDE_LENGTH -o $OFFSET \
4603                               -s $FILE_LENGTH -b $STRIPE_SIZE -a $READ_COUNT -n $ITERATION
4604                 cancel_lru_locks osc
4605                 ra_check_101 $BSIZE
4606         done
4607         cleanup_test101b
4608         true
4609 }
4610 run_test 101b "check stride-io mode read-ahead ================="
4611
4612 set_read_ahead() {
4613    lctl get_param -n llite.*.max_read_ahead_mb | head -n 1
4614    lctl set_param -n llite.*.max_read_ahead_mb $1 > /dev/null 2>&1
4615 }
4616
4617 test_101d() {
4618     local file=$DIR/$tfile
4619     local size=${FILESIZE_101c:-500}
4620     local ra_MB=${READAHEAD_MB:-40}
4621
4622     local space=$(df -P $DIR | tail -n 1 | awk '{ print $4 }')
4623     [ $space -gt $((size / 1024)) ] ||
4624         { skip "Need free space ${size}M, have $space" && return; }
4625
4626     echo Creating ${size}M test file $file
4627     dd if=/dev/zero of=$file bs=1M count=$size
4628     echo Cancel LRU locks on lustre client to flush the client cache
4629     cancel_lru_locks osc
4630
4631     echo Disable read-ahead
4632     local old_READAHEAD=$(set_read_ahead 0)
4633
4634     echo Reading the test file $file with read-ahead disabled
4635     time_ra_OFF=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$size")
4636
4637     echo Cancel LRU locks on lustre client to flush the client cache
4638     cancel_lru_locks osc
4639     echo Enable read-ahead with ${ra_MB}MB
4640     set_read_ahead $ra_MB
4641
4642     echo Reading the test file $file with read-ahead enabled
4643     time_ra_ON=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$size")
4644
4645     echo read-ahead disabled time read $time_ra_OFF
4646     echo read-ahead enabled  time read $time_ra_ON
4647
4648     set_read_ahead $old_READAHEAD
4649     rm -f $file
4650
4651     [ $time_ra_ON -lt $time_ra_OFF ] ||
4652         error "read-ahead enabled  time read (${time_ra_ON}s) is more than
4653                read-ahead disabled time read (${time_ra_OFF}s) filesize ${size}M"
4654 }
4655 run_test 101d "file read with and without read-ahead enabled  ================="
4656
4657 setup_test102() {
4658         mkdir -p $DIR/$tdir
4659         chown $RUNAS_ID $DIR/$tdir
4660         STRIPE_SIZE=65536
4661         STRIPE_OFFSET=1
4662         STRIPE_COUNT=$OSTCOUNT
4663         [ $OSTCOUNT -gt 4 ] && STRIPE_COUNT=4
4664
4665         trap cleanup_test102 EXIT
4666         cd $DIR
4667         $1 $SETSTRIPE $tdir -s $STRIPE_SIZE -i $STRIPE_OFFSET -c $STRIPE_COUNT
4668         cd $DIR/$tdir
4669         for num in 1 2 3 4
4670         do
4671                 for count in `seq 1 $STRIPE_COUNT`
4672                 do
4673                         for offset in `seq 0 $[$STRIPE_COUNT - 1]`
4674                         do
4675                                 local stripe_size=`expr $STRIPE_SIZE \* $num`
4676                                 local file=file"$num-$offset-$count"
4677                                 $1 $SETSTRIPE $file -s $stripe_size -i $offset -c $count
4678                         done
4679                 done
4680         done
4681
4682         cd $DIR
4683         $1 $TAR cf $TMP/f102.tar $tdir --xattrs
4684 }
4685
4686 cleanup_test102() {
4687         trap 0
4688         rm -f $TMP/f102.tar
4689         rm -rf $DIR/d0.sanity/d102
4690 }
4691
4692 test_102a() {
4693         local testfile=$DIR/xattr_testfile
4694
4695         rm -f $testfile
4696         touch $testfile
4697
4698         [ "$UID" != 0 ] && skip_env "must run as root" && return
4699         [ -z "`lctl get_param -n mdc.*-mdc-*.connect_flags | grep xattr`" ] && skip_env "must have user_xattr" && return
4700
4701         [ -z "$(which setfattr 2>/dev/null)" ] && skip_env "could not find setfattr" && return
4702
4703         echo "set/get xattr..."
4704         setfattr -n trusted.name1 -v value1 $testfile || error
4705         [ "`getfattr -n trusted.name1 $testfile 2> /dev/null | \
4706         grep "trusted.name1"`" == "trusted.name1=\"value1\"" ] || error
4707
4708         setfattr -n user.author1 -v author1 $testfile || error
4709         [ "`getfattr -n user.author1 $testfile 2> /dev/null | \
4710         grep "user.author1"`" == "user.author1=\"author1\"" ] || error
4711
4712         echo "listxattr..."
4713         setfattr -n trusted.name2 -v value2 $testfile || error
4714         setfattr -n trusted.name3 -v value3 $testfile || error
4715         [ `getfattr -d -m "^trusted" $testfile 2> /dev/null | \
4716         grep "trusted.name" | wc -l` -eq 3 ] || error
4717
4718
4719         setfattr -n user.author2 -v author2 $testfile || error
4720         setfattr -n user.author3 -v author3 $testfile || error
4721         [ `getfattr -d -m "^user" $testfile 2> /dev/null | \
4722         grep "user" | wc -l` -eq 3 ] || error
4723
4724         echo "remove xattr..."
4725         setfattr -x trusted.name1 $testfile || error
4726         getfattr -d -m trusted $testfile 2> /dev/null | \
4727         grep "trusted.name1" && error || true
4728
4729         setfattr -x user.author1 $testfile || error
4730         getfattr -d -m user $testfile 2> /dev/null | \
4731         grep "user.author1" && error || true
4732
4733         # b10667: setting lustre special xattr be silently discarded
4734         echo "set lustre special xattr ..."
4735         setfattr -n "trusted.lov" -v "invalid value" $testfile || error
4736
4737         rm -f $testfile
4738 }
4739 run_test 102a "user xattr test =================================="
4740
4741 test_102b() {
4742         # b10930: get/set/list trusted.lov xattr
4743         echo "get/set/list trusted.lov xattr ..."
4744         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
4745         local testfile=$DIR/$tfile
4746         $SETSTRIPE -s 65536 -i 1 -c 2 $testfile || error "setstripe failed"
4747         getfattr -d -m "^trusted" $testfile 2> /dev/null | \
4748         grep "trusted.lov" || error "can't get trusted.lov from $testfile"
4749
4750         local testfile2=${testfile}2
4751         local value=`getfattr -n trusted.lov $testfile 2> /dev/null | \
4752                      grep "trusted.lov" |sed -e 's/[^=]\+=//'`
4753
4754         $MCREATE $testfile2
4755         setfattr -n trusted.lov -v $value $testfile2
4756         local tmp_file=${testfile}3
4757         $GETSTRIPE -v $testfile2 > $tmp_file
4758         local stripe_size=`grep "size"  $tmp_file| awk '{print $2}'`
4759         local stripe_count=`grep "count"  $tmp_file| awk '{print $2}'`
4760         [ "$stripe_size" -eq 65536 ] || error "stripe size $stripe_size != 65536"
4761         [ "$stripe_count" -eq 2 ] || error "stripe count $stripe_count != 2"
4762         rm -f $DIR/$tfile
4763 }
4764 run_test 102b "getfattr/setfattr for trusted.lov EAs ============"
4765
4766 test_102c() {
4767         # b10930: get/set/list lustre.lov xattr
4768         echo "get/set/list lustre.lov xattr ..."
4769         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
4770         mkdir -p $DIR/$tdir
4771         chown $RUNAS_ID $DIR/$tdir
4772         local testfile=$DIR/$tdir/$tfile
4773         $RUNAS $SETSTRIPE -s 65536 -i 1 -c 2 $testfile||error "setstripe failed"
4774         $RUNAS getfattr -d -m "^lustre" $testfile 2> /dev/null | \
4775         grep "lustre.lov" || error "can't get lustre.lov from $testfile"
4776
4777         local testfile2=${testfile}2
4778         local value=`getfattr -n lustre.lov $testfile 2> /dev/null | \
4779                      grep "lustre.lov" |sed -e 's/[^=]\+=//'  `
4780
4781         $RUNAS $MCREATE $testfile2
4782         $RUNAS setfattr -n lustre.lov -v $value $testfile2
4783         local tmp_file=${testfile}3
4784         $RUNAS $GETSTRIPE -v $testfile2 > $tmp_file
4785         local stripe_size=`grep "size"  $tmp_file| awk '{print $2}'`
4786         local stripe_count=`grep "count"  $tmp_file| awk '{print $2}'`
4787         [ $stripe_size -eq 65536 ] || error "stripe size $stripe_size != 65536"
4788         [ $stripe_count -eq 2 ] || error "stripe count $stripe_count != 2"
4789 }
4790 run_test 102c "non-root getfattr/setfattr for lustre.lov EAs ==========="
4791
4792 compare_stripe_info1() {
4793         local stripe_index_all_zero=1
4794
4795         for num in 1 2 3 4
4796         do
4797                 for count in `seq 1 $STRIPE_COUNT`
4798                 do
4799                         for offset in `seq 0 $[$STRIPE_COUNT - 1]`
4800                         do
4801                                 local size=`expr $STRIPE_SIZE \* $num`
4802                                 local file=file"$num-$offset-$count"
4803                                 get_stripe_info client $PWD/$file "$1"
4804                                 if [ $stripe_size -ne $size ]; then
4805                                         error "$file: different stripe size $stripe_size, expected $size" && return
4806                                 fi
4807                                 if [ $stripe_count -ne $count ]; then
4808                                         error "$file: different stripe count $stripe_count, expected $count" && return
4809                                 fi
4810                                 if [ $stripe_index -ne 0 ]; then
4811                                        stripe_index_all_zero=0
4812                                 fi
4813                         done
4814                 done
4815         done
4816         [ $stripe_index_all_zero -eq 1 ] && error "all files are being extracted starting from OST index 0"
4817         return 0
4818 }
4819
4820 compare_stripe_info2() {
4821         for num in 1 2 3 4
4822         do
4823                 for count in `seq 1 $STRIPE_COUNT`
4824                 do
4825                         for offset in `seq 0 $[$STRIPE_COUNT - 1]`
4826                         do
4827                                 local size=`expr $STRIPE_SIZE \* $num`
4828                                 local file=file"$num-$offset-$count"
4829                                 get_stripe_info client $PWD/$file
4830                                 if [ $stripe_size -ne $size ]; then
4831                                         error "$file: different stripe size $stripe_size, expected $size" && return
4832                                 fi
4833                                 if [ $stripe_count -ne $count ]; then
4834                                         error "$file: different stripe count $stripe_count, expected $count" && return
4835                                 fi
4836                                 if [ $stripe_index -ne $offset ]; then
4837                                         error "$file: different stripe offset $stripe_index, expected $offset" && return
4838                                 fi
4839                         done
4840                 done
4841         done
4842 }
4843
4844 find_lustre_tar() {
4845         [ -n "$(which tar 2>/dev/null)" ] && strings $(which tar) | grep -q lustre && echo tar
4846 }
4847
4848 test_102d() {
4849         # b10930: tar test for trusted.lov xattr
4850         TAR=$(find_lustre_tar)
4851         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
4852         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping N-stripe test" && return
4853         setup_test102
4854         mkdir -p $DIR/d102d
4855         $TAR xf $TMP/f102.tar -C $DIR/d102d --xattrs
4856         cd $DIR/d102d/$tdir
4857         compare_stripe_info1
4858 }
4859 run_test 102d "tar restore stripe info from tarfile,not keep osts ==========="
4860
4861 test_102f() {
4862         # b10930: tar test for trusted.lov xattr
4863         TAR=$(find_lustre_tar)
4864         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
4865         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping N-stripe test" && return
4866         setup_test102
4867         mkdir -p $DIR/d102f
4868         cd $DIR
4869         $TAR cf - --xattrs $tdir | $TAR xf - --xattrs -C $DIR/d102f
4870         cd $DIR/d102f/$tdir
4871         compare_stripe_info1
4872 }
4873 run_test 102f "tar copy files, not keep osts ==========="
4874
4875 test_102h() { # bug 15777
4876         [ -z $(lctl get_param -n mdc.*.connect_flags | grep xattr) ] &&
4877                 skip "must have user_xattr" && return
4878         [ -z "$(which setfattr 2>/dev/null)" ] &&
4879                 skip_env "could not find setfattr" && return
4880
4881         XBIG=trusted.big
4882         XSIZE=1024
4883         touch $DIR/$tfile
4884         VALUE=datadatadatadatadatadatadatadata
4885         while [ $(echo $VALUE | wc -c) -lt $XSIZE ]; do
4886                 VALUE="$VALUE$VALUE"
4887         done
4888         log "save $XBIG on $DIR/$tfile"
4889         setfattr -n $XBIG -v "$VALUE" $DIR/$tfile ||
4890                 error "saving $XBIG on $DIR/$tfile failed"
4891         ORIG=$(getfattr -n $XBIG $DIR/$tfile 2> /dev/null | grep $XBIG)
4892         OSIZE=$(echo $ORIG | wc -c)
4893         [ $OSIZE -lt $XSIZE ] && error "set $XBIG too small ($OSIZE < $XSIZE)"
4894
4895         XSML=trusted.sml
4896         log "save $XSML on $DIR/$tfile"
4897         setfattr -n $XSML -v val $DIR/$tfile ||
4898                 error "saving $XSML on $DIR/$tfile failed"
4899         NEW=$(getfattr -n $XBIG $DIR/$tfile 2> /dev/null | grep $XBIG)
4900         if [ "$NEW" != "$ORIG" ]; then
4901                 log "orig: $ORIG"
4902                 log "new: $NEW"
4903                 error "$XBIG different after saving $XSML"
4904         fi
4905
4906         log "grow $XSML on $DIR/$tfile"
4907         setfattr -n $XSML -v "$VALUE" $DIR/$tfile ||
4908                 error "growing $XSML on $DIR/$tfile failed"
4909         NEW=$(getfattr -n $XBIG $DIR/$tfile 2> /dev/null | grep $XBIG)
4910         if [ "$NEW" != "$ORIG" ]; then
4911                 log "orig: $ORIG"
4912                 log "new: $NEW"
4913                 error "$XBIG different after growing $XSML"
4914         fi
4915         log "$XBIG still valid after growing $XSML"
4916         rm -f $file
4917 }
4918 run_test 102h "grow xattr from inside inode to external block"
4919
4920 test_102i() { # bug 17038
4921         touch $DIR/$tfile
4922         ln -s $DIR/$tfile $DIR/${tfile}link
4923         getfattr -n trusted.lov $DIR/$tfile || error "lgetxattr on $DIR/$tfile failed"
4924         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"
4925         rm -f $DIR/$tfile $DIR/${tfile}link
4926 }
4927 run_test 102i "lgetxattr test on symbolic link ============"
4928
4929 test_102j() {
4930         TAR=$(find_lustre_tar)
4931         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
4932         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping N-stripe test" && return
4933         setup_test102 "$RUNAS"
4934         mkdir -p $DIR/d102j
4935         chown $RUNAS_ID $DIR/d102j
4936         $RUNAS $TAR xf $TMP/f102.tar -C $DIR/d102j --xattrs
4937         cd $DIR/d102j/$tdir
4938         compare_stripe_info1 "$RUNAS"
4939 }
4940 run_test 102j "non-root tar restore stripe info from tarfile, not keep osts ==="
4941
4942 test_102k() {
4943         touch $DIR/$tfile
4944         # b22187 just check that does not crash for regular file.
4945         setfattr -n trusted.lov $DIR/$tfile
4946         # b22187 'setfattr -n trusted.lov' should work as remove LOV EA for directories
4947         local test_kdir=$DIR/d102k
4948         mkdir $test_kdir
4949         local default_size=`$GETSTRIPE -s $test_kdir`
4950         local default_count=`$GETSTRIPE -c $test_kdir`
4951         local default_offset=`$GETSTRIPE -o $test_kdir`
4952         $SETSTRIPE -s 65536 -i 1 -c $OSTCOUNT $test_kdir || error 'dir setstripe failed'
4953         setfattr -n trusted.lov $test_kdir
4954         local stripe_size=`$GETSTRIPE -s $test_kdir`
4955         local stripe_count=`$GETSTRIPE -c $test_kdir`
4956         local stripe_offset=`$GETSTRIPE -o $test_kdir`
4957         [ $stripe_size -eq $default_size ] || error "stripe size $stripe_size != $default_size"
4958         [ $stripe_count -eq $default_count ] || error "stripe count $stripe_count != $default_count"
4959         [ $stripe_offset -eq $default_offset ] || error "stripe offset $stripe_offset != $default_offset"
4960         rm -rf $DIR/$tfile $test_kdir
4961 }
4962 run_test 102k "setfattr without parameter of value shouldn't cause a crash"
4963
4964 cleanup_test102
4965
4966 run_acl_subtest()
4967 {
4968     $LUSTRE/tests/acl/run $LUSTRE/tests/acl/$1.test
4969     return $?
4970 }
4971
4972 test_103 () {
4973     [ "$UID" != 0 ] && skip_env "must run as root" && return
4974     [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] && skip "must have acl enabled" && return
4975     [ -z "$(which setfacl 2>/dev/null)" ] && skip_env "could not find setfacl" && return
4976     $GSS && skip "could not run under gss" && return
4977
4978     declare -a identity_old
4979
4980     for num in `seq $MDSCOUNT`; do
4981         switch_identity $num true || identity_old[$num]=$?
4982     done
4983
4984     SAVE_UMASK=`umask`
4985     umask 0022
4986     cd $DIR
4987
4988     echo "performing cp ..."
4989     run_acl_subtest cp || error
4990     echo "performing getfacl-noacl..."
4991     run_acl_subtest getfacl-noacl || error "getfacl-noacl test failed"
4992     echo "performing misc..."
4993     run_acl_subtest misc || error  "misc test failed"
4994     echo "performing permissions..."
4995     run_acl_subtest permissions || error "permissions failed"
4996     echo "performing setfacl..."
4997     run_acl_subtest setfacl || error  "setfacl test failed"
4998
4999     # inheritance test got from HP
5000     echo "performing inheritance..."
5001     cp $LUSTRE/tests/acl/make-tree . || error "cannot copy make-tree"
5002     chmod +x make-tree || error "chmod +x failed"
5003     run_acl_subtest inheritance || error "inheritance test failed"
5004     rm -f make-tree
5005
5006     cd $SAVE_PWD
5007     umask $SAVE_UMASK
5008
5009     for num in `seq $MDSCOUNT`; do
5010         if [ "${identity_old[$num]}" = 1 ]; then
5011             switch_identity $num false || identity_old[$num]=$?
5012         fi
5013     done
5014 }
5015 run_test 103 "acl test ========================================="
5016
5017 test_104a() {
5018         touch $DIR/$tfile
5019         lfs df || error "lfs df failed"
5020         lfs df -ih || error "lfs df -ih failed"
5021         lfs df -h $DIR || error "lfs df -h $DIR failed"
5022         lfs df -i $DIR || error "lfs df -i $DIR failed"
5023         lfs df $DIR/$tfile || error "lfs df $DIR/$tfile failed"
5024         lfs df -ih $DIR/$tfile || error "lfs df -ih $DIR/$tfile failed"
5025
5026         OSC=`lctl get_param -n devices | awk '/-osc-/ {print $4}' | head -n 1`
5027         lctl --device %$OSC deactivate
5028         lfs df || error "lfs df with deactivated OSC failed"
5029         lctl --device %$OSC recover
5030         lfs df || error "lfs df with reactivated OSC failed"
5031         rm -f $DIR/$tfile
5032 }
5033 run_test 104a "lfs df [-ih] [path] test ========================="
5034
5035 test_104b() {
5036         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
5037         chmod 666 /dev/obd
5038         denied_cnt=$((`$RUNAS $LFS check servers 2>&1 | grep "Permission denied" | wc -l`))
5039         if [ $denied_cnt -ne 0 ];
5040         then
5041                     error "lfs check servers test failed"
5042         fi
5043 }
5044 run_test 104b "$RUNAS lfs check servers test ===================="
5045
5046 test_105a() {
5047         # doesn't work on 2.4 kernels
5048         touch $DIR/$tfile
5049         if [ -n "`mount | grep \"$DIR.*flock\" | grep -v noflock`" ];
5050         then
5051                 flocks_test 1 on -f $DIR/$tfile || error "fail flock on"
5052         else
5053                 flocks_test 1 off -f $DIR/$tfile || error "fail flock off"
5054         fi
5055         rm -f $DIR/$tfile
5056 }
5057 run_test 105a "flock when mounted without -o flock test ========"
5058
5059 test_105b() {
5060         touch $DIR/$tfile
5061         if [ -n "`mount | grep \"$DIR.*flock\" | grep -v noflock`" ];
5062         then
5063                 flocks_test 1 on -c $DIR/$tfile || error "fail flock on"
5064         else
5065                 flocks_test 1 off -c $DIR/$tfile || error "fail flock off"
5066         fi
5067         rm -f $DIR/$tfile
5068 }
5069 run_test 105b "fcntl when mounted without -o flock test ========"
5070
5071 test_105c() {
5072         touch $DIR/$tfile
5073         if [ -n "`mount | grep \"$DIR.*flock\" | grep -v noflock`" ];
5074         then
5075                 flocks_test 1 on -l $DIR/$tfile || error "fail flock on"
5076         else
5077                 flocks_test 1 off -l $DIR/$tfile || error "fail flock off"
5078         fi
5079         rm -f $DIR/$tfile
5080 }
5081 run_test 105c "lockf when mounted without -o flock test ========"
5082
5083 test_105d() { # bug 15924
5084         mkdir -p $DIR/$tdir
5085         [ -z "`mount | grep \"$DIR.*flock\" | grep -v noflock`" ] && \
5086                 skip "mount w/o flock enabled" && return
5087         #define OBD_FAIL_LDLM_CP_CB_WAIT  0x315
5088         $LCTL set_param fail_loc=0x80000315
5089         flocks_test 2 $DIR/$tdir
5090 }
5091 run_test 105d "flock race (should not freeze) ========"
5092
5093 test_106() { #bug 10921
5094         mkdir -p $DIR/$tdir
5095         $DIR/$tdir && error "exec $DIR/$tdir succeeded"
5096         chmod 777 $DIR/$tdir || error "chmod $DIR/$tdir failed"
5097 }
5098 run_test 106 "attempt exec of dir followed by chown of that dir"
5099
5100 test_107() {
5101         CDIR=`pwd`
5102         cd $DIR
5103
5104         local file=core
5105         rm -f $file
5106
5107         local save_pattern=$(sysctl -n kernel.core_pattern)
5108         local save_uses_pid=$(sysctl -n kernel.core_uses_pid)
5109         sysctl -w kernel.core_pattern=$file
5110         sysctl -w kernel.core_uses_pid=0
5111
5112         ulimit -c unlimited
5113         sleep 60 &
5114         SLEEPPID=$!
5115
5116         sleep 1
5117
5118         kill -s 11 $SLEEPPID
5119         wait $SLEEPPID
5120         if [ -e $file ]; then
5121                 size=`stat -c%s $file`
5122                 [ $size -eq 0 ] && error "Fail to create core file $file"
5123         else
5124                 error "Fail to create core file $file"
5125         fi
5126         rm -f $file
5127         sysctl -w kernel.core_pattern=$save_pattern
5128         sysctl -w kernel.core_uses_pid=$save_uses_pid
5129         cd $CDIR
5130 }
5131 run_test 107 "Coredump on SIG"
5132
5133 test_110() {
5134         mkdir -p $DIR/d110
5135         mkdir $DIR/d110/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa || error "mkdir with 255 char fail"
5136         mkdir $DIR/d110/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb && error "mkdir with 256 char should fail, but not"
5137         touch $DIR/d110/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx || error "create with 255 char fail"
5138         touch $DIR/d110/yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy && error ""create with 256 char should fail, but not
5139
5140         ls -l $DIR/d110
5141     rm -fr $DIR/d110
5142 }
5143 run_test 110 "filename length checking"
5144
5145 test_115() {
5146         OSTIO_pre=$(ps -e|grep ll_ost_io|awk '{print $4}'|sort -n|tail -1|\
5147             cut -c11-20)
5148         [ -z "$OSTIO_pre" ] && skip "no OSS threads" && \
5149             return
5150         echo "Starting with $OSTIO_pre threads"
5151
5152         NUMTEST=20000
5153         NUMFREE=`df -i -P $DIR | tail -n 1 | awk '{ print $4 }'`
5154         [ $NUMFREE -lt $NUMTEST ] && NUMTEST=$(($NUMFREE - 1000))
5155         echo "$NUMTEST creates/unlinks"
5156         mkdir -p $DIR/$tdir
5157         createmany -o $DIR/$tdir/$tfile $NUMTEST
5158         unlinkmany $DIR/$tdir/$tfile $NUMTEST
5159
5160         OSTIO_post=$(ps -e|grep ll_ost_io|awk '{print $4}'|sort -n|tail -1|\
5161             cut -c11-20)
5162
5163         # don't return an error
5164         [ $OSTIO_post -eq $OSTIO_pre ] && echo \
5165             "WARNING: No new ll_ost_io threads were created ($OSTIO_pre)" &&\
5166             echo "This may be fine, depending on what ran before this test" &&\
5167             echo "and how fast this system is." && return
5168
5169         echo "Started with $OSTIO_pre threads, ended with $OSTIO_post"
5170 }
5171 run_test 115 "verify dynamic thread creation===================="
5172
5173 free_min_max () {
5174         wait_delete_completed
5175         AVAIL=($(lctl get_param -n osc.*[oO][sS][cC]-[^M]*.kbytesavail))
5176         echo OST kbytes available: ${AVAIL[@]}
5177         MAXI=0; MAXV=${AVAIL[0]}
5178         MINI=0; MINV=${AVAIL[0]}
5179         for ((i = 0; i < ${#AVAIL[@]}; i++)); do
5180             #echo OST $i: ${AVAIL[i]}kb
5181             if [ ${AVAIL[i]} -gt $MAXV ]; then
5182                 MAXV=${AVAIL[i]}; MAXI=$i
5183             fi
5184             if [ ${AVAIL[i]} -lt $MINV ]; then
5185                 MINV=${AVAIL[i]}; MINI=$i
5186             fi
5187         done
5188         echo Min free space: OST $MINI: $MINV
5189         echo Max free space: OST $MAXI: $MAXV
5190 }
5191
5192 test_116() {
5193         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2 OSTs" && return
5194
5195         echo -n "Free space priority "
5196         lctl get_param -n lov.*-clilov-*.qos_prio_free
5197         declare -a AVAIL
5198         free_min_max
5199         [ $MINV -gt 960000 ] && skip "too much free space in OST$MINI, skip" &&\
5200                 return
5201
5202         # generate uneven OSTs
5203         mkdir -p $DIR/$tdir/OST${MINI}
5204         declare -i FILL
5205         FILL=$(($MINV / 4))
5206         echo "Filling 25% remaining space in OST${MINI} with ${FILL}Kb"
5207         $SETSTRIPE -i $MINI -c 1 $DIR/$tdir/OST${MINI}||error "setstripe failed"
5208         i=0
5209         while [ $FILL -gt 0 ]; do
5210             i=$(($i + 1))
5211             dd if=/dev/zero of=$DIR/$tdir/OST${MINI}/$tfile-$i bs=2M count=1 2>/dev/null
5212             FILL=$(($FILL - 2048))
5213             echo -n .
5214         done
5215         FILL=$(($MINV / 4))
5216         sync
5217         sleep_maxage
5218
5219         free_min_max
5220         DIFF=$(($MAXV - $MINV))
5221         DIFF2=$(($DIFF * 100 / $MINV))
5222         echo -n "diff=${DIFF}=${DIFF2}% must be > 20% for QOS mode..."
5223         if [ $DIFF2 -gt 20 ]; then
5224             echo "ok"
5225         else
5226             echo "failed - QOS mode won't be used"
5227             error_ignore "QOS imbalance criteria not met"
5228             return
5229         fi
5230
5231         MINI1=$MINI; MINV1=$MINV
5232         MAXI1=$MAXI; MAXV1=$MAXV
5233
5234         # now fill using QOS
5235         echo writing a bunch of files to QOS-assigned OSTs
5236         $SETSTRIPE $DIR/$tdir -c 1
5237         i=0
5238         while [ $FILL -gt 0 ]; do
5239             i=$(($i + 1))
5240             dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=1024 count=200 2>/dev/null
5241             FILL=$(($FILL - 200))
5242             echo -n .
5243         done
5244         echo "wrote $i 200k files"
5245         sync
5246         sleep_maxage
5247
5248         echo "Note: free space may not be updated, so measurements might be off"
5249         free_min_max
5250         DIFF2=$(($MAXV - $MINV))
5251         echo "free space delta: orig $DIFF final $DIFF2"
5252         [ $DIFF2 -gt $DIFF ] && echo "delta got worse!"
5253         DIFF=$(($MINV1 - ${AVAIL[$MINI1]}))
5254         echo "Wrote $DIFF to smaller OST $MINI1"
5255         DIFF2=$(($MAXV1 - ${AVAIL[$MAXI1]}))
5256         echo "Wrote $DIFF2 to larger OST $MAXI1"
5257         [ $DIFF -gt 0 ] && echo "Wrote $(($DIFF2 * 100 / $DIFF - 100))% more data to larger OST $MAXI1"
5258
5259         # Figure out which files were written where
5260         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
5261                awk '/'$MINI1': / {print $2; exit}')
5262         echo $UUID
5263         MINC=$($GETSTRIPE --obd $UUID $DIR/$tdir | wc -l)
5264         echo "$MINC files created on smaller OST $MINI1"
5265         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
5266                awk '/'$MAXI1': / {print $2; exit}')
5267         echo $UUID
5268         MAXC=$($GETSTRIPE --obd $UUID $DIR/$tdir | wc -l)
5269         echo "$MAXC files created on larger OST $MAXI1"
5270         [ $MINC -gt 0 ] && echo "Wrote $(($MAXC * 100 / $MINC - 100))% more files to larger OST $MAXI1"
5271         [ $MAXC -gt $MINC ] || error_ignore "stripe QOS didn't balance free space"
5272
5273         rm -rf $DIR/$tdir
5274 }
5275 run_test 116 "stripe QOS: free space balance ==================="
5276
5277 test_117() # bug 10891
5278 {
5279         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1
5280         #define OBD_FAIL_OST_SETATTR_CREDITS 0x21e
5281         lctl set_param fail_loc=0x21e
5282         > $DIR/$tfile || error "truncate failed"
5283         lctl set_param fail_loc=0
5284         echo "Truncate succeeded."
5285         rm -f $DIR/$tfile
5286 }
5287 run_test 117 "verify fsfilt_extend =========="
5288
5289 export OLD_RESENDCOUNT=""
5290 set_resend_count () {
5291         local PROC_RESENDCOUNT="osc.${FSNAME}-OST*-osc-*.resend_count"
5292         OLD_RESENDCOUNT=$(lctl get_param -n $PROC_RESENDCOUNT | head -1)
5293         lctl set_param -n $PROC_RESENDCOUNT $1
5294         echo resend_count is set to $(lctl get_param -n $PROC_RESENDCOUNT)
5295 }
5296
5297 [ "$SLOW" = "no" ] && set_resend_count 4 # for reduce test_118* time (bug 14842)
5298
5299 # Reset async IO behavior after error case
5300 reset_async() {
5301         FILE=$DIR/reset_async
5302
5303         # Ensure all OSCs are cleared
5304         $LSTRIPE -c -1 $FILE
5305         dd if=/dev/zero of=$FILE bs=64k count=$OSTCOUNT
5306         sync
5307         rm $FILE
5308 }
5309
5310 test_118a() #bug 11710
5311 {
5312         reset_async
5313
5314         multiop $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
5315         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
5316         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
5317
5318         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
5319                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
5320                 return 1;
5321         fi
5322         rm -f $DIR/$tfile
5323 }
5324 run_test 118a "verify O_SYNC works =========="
5325
5326 test_118b()
5327 {
5328         remote_ost_nodsh && skip "remote OST with nodsh" && return
5329
5330         reset_async
5331
5332         #define OBD_FAIL_OST_ENOENT 0x217
5333         set_nodes_failloc "$(osts_nodes)" 0x217
5334         multiop $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
5335         RC=$?
5336         set_nodes_failloc "$(osts_nodes)" 0
5337         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
5338         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
5339                     grep -c writeback)
5340
5341         if [[ $RC -eq 0 ]]; then
5342                 error "Must return error due to dropped pages, rc=$RC"
5343                 return 1;
5344         fi
5345
5346         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
5347                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
5348                 return 1;
5349         fi
5350
5351         echo "Dirty pages not leaked on ENOENT"
5352
5353         # Due to the above error the OSC will issue all RPCs syncronously
5354         # until a subsequent RPC completes successfully without error.
5355         multiop $DIR/$tfile Ow4096yc
5356         rm -f $DIR/$tfile
5357
5358         return 0
5359 }
5360 run_test 118b "Reclaim dirty pages on fatal error =========="
5361
5362 test_118c()
5363 {
5364         remote_ost_nodsh && skip "remote OST with nodsh" && return
5365
5366         reset_async
5367
5368         #define OBD_FAIL_OST_EROFS               0x216
5369         set_nodes_failloc "$(osts_nodes)" 0x216
5370
5371         # multiop should block due to fsync until pages are written
5372         multiop $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
5373         MULTIPID=$!
5374         sleep 1
5375
5376         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
5377                 error "Multiop failed to block on fsync, pid=$MULTIPID"
5378         fi
5379
5380         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
5381                     grep -c writeback)
5382         if [[ $WRITEBACK -eq 0 ]]; then
5383                 error "No page in writeback, writeback=$WRITEBACK"
5384         fi
5385
5386         set_nodes_failloc "$(osts_nodes)" 0
5387         wait $MULTIPID
5388         RC=$?
5389         if [[ $RC -ne 0 ]]; then
5390                 error "Multiop fsync failed, rc=$RC"
5391         fi
5392
5393         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
5394         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
5395                     grep -c writeback)
5396         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
5397                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
5398         fi
5399
5400         rm -f $DIR/$tfile
5401         echo "Dirty pages flushed via fsync on EROFS"
5402         return 0
5403 }
5404 run_test 118c "Fsync blocks on EROFS until dirty pages are flushed =========="
5405
5406 test_118d()
5407 {
5408         remote_ost_nodsh && skip "remote OST with nodsh" && return
5409
5410         reset_async
5411
5412         #define OBD_FAIL_OST_BRW_PAUSE_BULK
5413         set_nodes_failloc "$(osts_nodes)" 0x214
5414         # multiop should block due to fsync until pages are written
5415         multiop $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
5416         MULTIPID=$!
5417         sleep 1
5418
5419         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
5420                 error "Multiop failed to block on fsync, pid=$MULTIPID"
5421         fi
5422
5423         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
5424                     grep -c writeback)
5425         if [[ $WRITEBACK -eq 0 ]]; then
5426                 error "No page in writeback, writeback=$WRITEBACK"
5427         fi
5428
5429         wait $MULTIPID || error "Multiop fsync failed, rc=$?"
5430         set_nodes_failloc "$(osts_nodes)" 0
5431
5432         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
5433         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
5434                     grep -c writeback)
5435         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
5436                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
5437         fi
5438
5439         rm -f $DIR/$tfile
5440         echo "Dirty pages gaurenteed flushed via fsync"
5441         return 0
5442 }
5443 run_test 118d "Fsync validation inject a delay of the bulk =========="
5444
5445 test_118f() {
5446         reset_async
5447
5448         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
5449         lctl set_param fail_loc=0x8000040a
5450
5451         # Should simulate EINVAL error which is fatal
5452         multiop $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
5453         RC=$?
5454         if [[ $RC -eq 0 ]]; then
5455                 error "Must return error due to dropped pages, rc=$RC"
5456         fi
5457
5458         lctl set_param fail_loc=0x0
5459
5460         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
5461         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
5462         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
5463                     grep -c writeback)
5464         if [[ $LOCKED -ne 0 ]]; then
5465                 error "Locked pages remain in cache, locked=$LOCKED"
5466         fi
5467
5468         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
5469                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
5470         fi
5471
5472         rm -f $DIR/$tfile
5473         echo "No pages locked after fsync"
5474
5475         reset_async
5476         return 0
5477 }
5478 run_test 118f "Simulate unrecoverable OSC side error =========="
5479
5480 test_118g() {
5481         reset_async
5482
5483         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
5484         lctl set_param fail_loc=0x406
5485
5486         # simulate local -ENOMEM
5487         multiop $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
5488         RC=$?
5489
5490         lctl set_param fail_loc=0
5491         if [[ $RC -eq 0 ]]; then
5492                 error "Must return error due to dropped pages, rc=$RC"
5493         fi
5494
5495         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
5496         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
5497         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
5498                         grep -c writeback)
5499         if [[ $LOCKED -ne 0 ]]; then
5500                 error "Locked pages remain in cache, locked=$LOCKED"
5501         fi
5502
5503         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
5504                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
5505         fi
5506
5507         rm -f $DIR/$tfile
5508         echo "No pages locked after fsync"
5509
5510         reset_async
5511         return 0
5512 }
5513 run_test 118g "Don't stay in wait if we got local -ENOMEM  =========="
5514
5515 test_118h() {
5516         remote_ost_nodsh && skip "remote OST with nodsh" && return
5517
5518         reset_async
5519
5520         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
5521         set_nodes_failloc "$(osts_nodes)" 0x20e
5522         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
5523         multiop $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
5524         RC=$?
5525
5526         set_nodes_failloc "$(osts_nodes)" 0
5527         if [[ $RC -eq 0 ]]; then
5528                 error "Must return error due to dropped pages, rc=$RC"
5529         fi
5530
5531         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
5532         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
5533         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
5534                     grep -c writeback)
5535         if [[ $LOCKED -ne 0 ]]; then
5536                 error "Locked pages remain in cache, locked=$LOCKED"
5537         fi
5538
5539         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
5540                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
5541         fi
5542
5543         rm -f $DIR/$tfile
5544         echo "No pages locked after fsync"
5545
5546         return 0
5547 }
5548 run_test 118h "Verify timeout in handling recoverables errors  =========="
5549
5550 test_118i() {
5551         remote_ost_nodsh && skip "remote OST with nodsh" && return
5552
5553         reset_async
5554
5555         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
5556         set_nodes_failloc "$(osts_nodes)" 0x20e
5557
5558         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
5559         multiop $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
5560         PID=$!
5561         sleep 5
5562         set_nodes_failloc "$(osts_nodes)" 0
5563
5564         wait $PID
5565         RC=$?
5566         if [[ $RC -ne 0 ]]; then
5567                 error "got error, but should be not, rc=$RC"
5568         fi
5569
5570         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
5571         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
5572         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
5573         if [[ $LOCKED -ne 0 ]]; then
5574                 error "Locked pages remain in cache, locked=$LOCKED"
5575         fi
5576
5577         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
5578                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
5579         fi
5580
5581         rm -f $DIR/$tfile
5582         echo "No pages locked after fsync"
5583
5584         return 0
5585 }
5586 run_test 118i "Fix error before timeout in recoverable error  =========="
5587
5588 test_118j() {
5589         remote_ost_nodsh && skip "remote OST with nodsh" && return
5590
5591         reset_async
5592
5593         #define OBD_FAIL_OST_BRW_WRITE_BULK2     0x220
5594         set_nodes_failloc "$(osts_nodes)" 0x220
5595
5596         # return -EIO from OST
5597         multiop $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
5598         RC=$?
5599         set_nodes_failloc "$(osts_nodes)" 0x0
5600         if [[ $RC -eq 0 ]]; then
5601                 error "Must return error due to dropped pages, rc=$RC"
5602         fi
5603
5604         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
5605         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
5606         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
5607         if [[ $LOCKED -ne 0 ]]; then
5608                 error "Locked pages remain in cache, locked=$LOCKED"
5609         fi
5610
5611         # in recoverable error on OST we want resend and stay until it finished
5612         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
5613                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
5614         fi
5615
5616         rm -f $DIR/$tfile
5617         echo "No pages locked after fsync"
5618
5619         return 0
5620 }
5621 run_test 118j "Simulate unrecoverable OST side error =========="
5622
5623 test_118k()
5624 {
5625         remote_ost_nodsh && skip "remote OSTs with nodsh" && return
5626
5627         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
5628         set_nodes_failloc "$(osts_nodes)" 0x20e
5629         mkdir -p $DIR/$tdir
5630
5631         for ((i=0;i<10;i++)); do
5632                 (dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=1M count=10 || \
5633                         error "dd to $DIR/$tdir/$tfile-$i failed" )&
5634                 SLEEPPID=$!
5635                 sleep 0.500s
5636                 kill $SLEEPPID
5637                 wait $SLEEPPID
5638         done
5639
5640         set_nodes_failloc "$(osts_nodes)" 0
5641         rm -rf $DIR/$tdir
5642 }
5643 run_test 118k "bio alloc -ENOMEM and IO TERM handling ========="
5644
5645 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
5646
5647 test_119a() # bug 11737
5648 {
5649         BSIZE=$((512 * 1024))
5650         directio write $DIR/$tfile 0 1 $BSIZE
5651         # We ask to read two blocks, which is more than a file size.
5652         # directio will indicate an error when requested and actual
5653         # sizes aren't equeal (a normal situation in this case) and
5654         # print actual read amount.
5655         NOB=`directio read $DIR/$tfile 0 2 $BSIZE | awk '/error/ {print $6}'`
5656         if [ "$NOB" != "$BSIZE" ]; then
5657                 error "read $NOB bytes instead of $BSIZE"
5658         fi
5659         rm -f $DIR/$tfile
5660 }
5661 run_test 119a "Short directIO read must return actual read amount"
5662
5663 test_119b() # bug 11737
5664 {
5665         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
5666
5667         $SETSTRIPE -c 2 $DIR/$tfile || error "setstripe failed"
5668         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1 || error "dd failed"
5669         sync
5670         multiop $DIR/$tfile oO_RDONLY:O_DIRECT:r$((2048 * 1024)) || \
5671                 error "direct read failed"
5672         rm -f $DIR/$tfile
5673 }
5674 run_test 119b "Sparse directIO read must return actual read amount"
5675
5676 test_119c() # bug 13099
5677 {
5678         BSIZE=1048576
5679         directio write $DIR/$tfile 3 1 $BSIZE || error "direct write failed"
5680         directio readhole $DIR/$tfile 0 2 $BSIZE || error "reading hole failed"
5681         rm -f $DIR/$tfile
5682 }
5683 run_test 119c "Testing for direct read hitting hole"
5684
5685 test_119d() # bug 15950
5686 {
5687         MAX_RPCS_IN_FLIGHT=`$LCTL get_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight`
5688         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight 1
5689         BSIZE=1048576
5690         $SETSTRIPE $DIR/$tfile -i 0 -c 1 || error "setstripe failed"
5691         $DIRECTIO write $DIR/$tfile 0 1 $BSIZE || error "first directio failed"
5692         #define OBD_FAIL_OSC_DIO_PAUSE           0x40d
5693         lctl set_param fail_loc=0x40d
5694         $DIRECTIO write $DIR/$tfile 1 4 $BSIZE &
5695         pid_dio=$!
5696         sleep 1
5697         cat $DIR/$tfile > /dev/null &
5698         lctl set_param fail_loc=0
5699         pid_reads=$!
5700         wait $pid_dio
5701         log "the DIO writes have completed, now wait for the reads (should not block very long)"
5702         sleep 2
5703         [ -n "`ps h -p $pid_reads -o comm`" ] && \
5704         error "the read rpcs have not completed in 2s"
5705         rm -f $DIR/$tfile
5706         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight $MAX_RPCS_IN_FLIGHT
5707 }
5708 run_test 119d "The DIO path should try to send a new rpc once one is completed"
5709
5710 test_120a() {
5711         mkdir -p $DIR/$tdir
5712         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
5713                skip "no early lock cancel on server" && return 0
5714         lru_resize_disable mdc
5715         lru_resize_disable osc
5716         cancel_lru_locks mdc
5717         stat $DIR/$tdir > /dev/null
5718         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
5719         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
5720         mkdir $DIR/$tdir/d1
5721         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
5722         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
5723         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
5724         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
5725         lru_resize_enable mdc
5726         lru_resize_enable osc
5727 }
5728 run_test 120a "Early Lock Cancel: mkdir test"
5729
5730 test_120b() {
5731         mkdir -p $DIR/$tdir
5732         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
5733                skip "no early lock cancel on server" && return 0
5734         lru_resize_disable mdc
5735         lru_resize_disable osc
5736         cancel_lru_locks mdc
5737         stat $DIR/$tdir > /dev/null
5738         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
5739         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
5740         touch $DIR/$tdir/f1
5741         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
5742         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
5743         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
5744         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
5745         lru_resize_enable mdc
5746         lru_resize_enable osc
5747 }
5748 run_test 120b "Early Lock Cancel: create test"
5749
5750 test_120c() {
5751         mkdir -p $DIR/$tdir
5752         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
5753                skip "no early lock cancel on server" && return 0
5754         lru_resize_disable mdc
5755         lru_resize_disable osc
5756         mkdir -p $DIR/$tdir/d1 $DIR/$tdir/d2
5757         touch $DIR/$tdir/d1/f1
5758         cancel_lru_locks mdc
5759         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 > /dev/null
5760         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
5761         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
5762         ln $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
5763         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
5764         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
5765         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
5766         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
5767         lru_resize_enable mdc
5768         lru_resize_enable osc
5769 }
5770 run_test 120c "Early Lock Cancel: link test"
5771
5772 test_120d() {
5773         mkdir -p $DIR/$tdir
5774         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
5775                skip "no early lock cancel on server" && return 0
5776         lru_resize_disable mdc
5777         lru_resize_disable osc
5778         touch $DIR/$tdir
5779         cancel_lru_locks mdc
5780         stat $DIR/$tdir > /dev/null
5781         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
5782         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
5783         chmod a+x $DIR/$tdir
5784         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
5785         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
5786         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
5787         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
5788         lru_resize_enable mdc
5789         lru_resize_enable osc
5790 }
5791 run_test 120d "Early Lock Cancel: setattr test"
5792
5793 test_120e() {
5794         mkdir -p $DIR/$tdir
5795         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
5796                skip "no early lock cancel on server" && return 0
5797         lru_resize_disable mdc
5798         lru_resize_disable osc
5799         dd if=/dev/zero of=$DIR/$tdir/f1 count=1
5800         cancel_lru_locks mdc
5801         cancel_lru_locks osc
5802         dd if=$DIR/$tdir/f1 of=/dev/null
5803         stat $DIR/$tdir $DIR/$tdir/f1 > /dev/null
5804         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
5805               awk '/ldlm_cancel/ {print $2}'`
5806         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
5807               awk '/ldlm_bl_callback/ {print $2}'`
5808         unlink $DIR/$tdir/f1
5809         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
5810               awk '/ldlm_cancel/ {print $2}'`
5811         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
5812               awk '/ldlm_bl_callback/ {print $2}'`
5813         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
5814         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
5815         lru_resize_enable mdc
5816         lru_resize_enable osc
5817 }
5818 run_test 120e "Early Lock Cancel: unlink test"
5819
5820 test_120f() {
5821         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
5822                skip "no early lock cancel on server" && return 0
5823         mkdir -p $DIR/$tdir
5824         lru_resize_disable mdc
5825         lru_resize_disable osc
5826         mkdir -p $DIR/$tdir/d1 $DIR/$tdir/d2
5827         dd if=/dev/zero of=$DIR/$tdir/d1/f1 count=1
5828         dd if=/dev/zero of=$DIR/$tdir/d2/f2 count=1
5829         cancel_lru_locks mdc
5830         cancel_lru_locks osc
5831         dd if=$DIR/$tdir/d1/f1 of=/dev/null
5832         dd if=$DIR/$tdir/d2/f2 of=/dev/null
5833         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2 > /dev/null
5834         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
5835               awk '/ldlm_cancel/ {print $2}'`
5836         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
5837               awk '/ldlm_bl_callback/ {print $2}'`
5838         mv $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
5839         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
5840               awk '/ldlm_cancel/ {print $2}'`
5841         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
5842               awk '/ldlm_bl_callback/ {print $2}'`
5843         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
5844         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
5845         lru_resize_enable mdc
5846         lru_resize_enable osc
5847 }
5848 run_test 120f "Early Lock Cancel: rename test"
5849
5850 test_120g() {
5851         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
5852                skip "no early lock cancel on server" && return 0
5853         lru_resize_disable mdc
5854         lru_resize_disable osc
5855         count=10000
5856         echo create $count files
5857         mkdir -p $DIR/$tdir
5858         cancel_lru_locks mdc
5859         cancel_lru_locks osc
5860         t0=`date +%s`
5861
5862         can0=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
5863               awk '/ldlm_cancel/ {print $2}'`
5864         blk0=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
5865               awk '/ldlm_bl_callback/ {print $2}'`
5866         createmany -o $DIR/$tdir/f $count
5867         sync
5868         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
5869               awk '/ldlm_cancel/ {print $2}'`
5870         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
5871               awk '/ldlm_bl_callback/ {print $2}'`
5872         t1=`date +%s`
5873         echo total: $((can1-can0)) cancels, $((blk1-blk0)) blockings
5874         echo rm $count files
5875         rm -r $DIR/$tdir
5876         sync
5877         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
5878               awk '/ldlm_cancel/ {print $2}'`
5879         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
5880               awk '/ldlm_bl_callback/ {print $2}'`
5881         t2=`date +%s`
5882         echo total: $count removes in $((t2-t1))
5883         echo total: $((can2-can1)) cancels, $((blk2-blk1)) blockings
5884         sleep 2
5885         # wait for commitment of removal
5886         lru_resize_enable mdc
5887         lru_resize_enable osc
5888 }
5889 run_test 120g "Early Lock Cancel: performance test"
5890
5891 test_121() { #bug #10589
5892         rm -rf $DIR/$tfile
5893         writes=$(LANG=C dd if=/dev/zero of=$DIR/$tfile count=1 2>&1 | awk -F '+' '/out$/ {print $1}')
5894 #define OBD_FAIL_LDLM_CANCEL_RACE        0x310
5895         lctl set_param fail_loc=0x310
5896         cancel_lru_locks osc > /dev/null
5897         reads=$(LANG=C dd if=$DIR/$tfile of=/dev/null 2>&1 | awk -F '+' '/in$/ {print $1}')
5898         lctl set_param fail_loc=0
5899         [ "$reads" -eq "$writes" ] || error "read" $reads "blocks, must be" $writes
5900 }
5901 run_test 121 "read cancel race ========="
5902
5903 test_123a() { # was test 123, statahead(bug 11401)
5904         SLOWOK=0
5905         if [ -z "$(grep "processor.*: 1" /proc/cpuinfo)" ]; then
5906             log "testing on UP system. Performance may be not as good as expected."
5907                         SLOWOK=1
5908         fi
5909
5910         rm -rf $DIR/$tdir
5911         mkdir -p $DIR/$tdir
5912         NUMFREE=`df -i -P $DIR | tail -n 1 | awk '{ print $4 }'`
5913         [ $NUMFREE -gt 100000 ] && NUMFREE=100000 || NUMFREE=$((NUMFREE-1000))
5914         MULT=10
5915         for ((i=100, j=0; i<=$NUMFREE; j=$i, i=$((i * MULT)) )); do
5916                 createmany -o $DIR/$tdir/$tfile $j $((i - j))
5917
5918                 max=`lctl get_param -n llite.*.statahead_max | head -n 1`
5919                 lctl set_param -n llite.*.statahead_max 0
5920                 lctl get_param llite.*.statahead_max
5921                 cancel_lru_locks mdc
5922                 cancel_lru_locks osc
5923                 stime=`date +%s`
5924                 time ls -l $DIR/$tdir | wc -l
5925                 etime=`date +%s`
5926                 delta=$((etime - stime))
5927                 log "ls $i files without statahead: $delta sec"
5928                 lctl set_param llite.*.statahead_max=$max
5929
5930                 swrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
5931                 lctl get_param -n llite.*.statahead_max | grep '[0-9]'
5932                 cancel_lru_locks mdc
5933                 cancel_lru_locks osc
5934                 stime=`date +%s`
5935                 time ls -l $DIR/$tdir | wc -l
5936                 etime=`date +%s`
5937                 delta_sa=$((etime - stime))
5938                 log "ls $i files with statahead: $delta_sa sec"
5939                 lctl get_param -n llite.*.statahead_stats
5940                 ewrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
5941
5942                 [ $swrong -lt $ewrong ] && log "statahead was stopped, maybe too many locks held!"
5943                 [ $delta -eq 0 -o $delta_sa -eq 0 ] && continue
5944
5945                 if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
5946                     max=`lctl get_param -n llite.*.statahead_max | head -n 1`
5947                     lctl set_param -n llite.*.statahead_max 0
5948                     lctl get_param llite.*.statahead_max
5949                     cancel_lru_locks mdc
5950                     cancel_lru_locks osc
5951                     stime=`date +%s`
5952                     time ls -l $DIR/$tdir | wc -l
5953                     etime=`date +%s`
5954                     delta=$((etime - stime))
5955                     log "ls $i files again without statahead: $delta sec"
5956                     lctl set_param llite.*.statahead_max=$max
5957                     if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
5958                         if [  $SLOWOK -eq 0 ]; then
5959                                 error "ls $i files is slower with statahead!"
5960                         else
5961                                 log "ls $i files is slower with statahead!"
5962                         fi
5963                         break
5964                     fi
5965                 fi
5966
5967                 [ $delta -gt 20 ] && break
5968                 [ $delta -gt 8 ] && MULT=$((50 / delta))
5969                 [ "$SLOW" = "no" -a $delta -gt 5 ] && break
5970         done
5971         log "ls done"
5972
5973         stime=`date +%s`
5974         rm -r $DIR/$tdir
5975         sync
5976         etime=`date +%s`
5977         delta=$((etime - stime))
5978         log "rm -r $DIR/$tdir/: $delta seconds"
5979         log "rm done"
5980         lctl get_param -n llite.*.statahead_stats
5981 }
5982 run_test 123a "verify statahead work"
5983
5984 test_123b () { # statahead(bug 15027)
5985         mkdir -p $DIR/$tdir
5986         createmany -o $DIR/$tdir/$tfile-%d 1000
5987
5988         cancel_lru_locks mdc
5989         cancel_lru_locks osc
5990
5991 #define OBD_FAIL_MDC_GETATTR_ENQUEUE     0x803
5992         lctl set_param fail_loc=0x80000803
5993         ls -lR $DIR/$tdir > /dev/null
5994         log "ls done"
5995         lctl set_param fail_loc=0x0
5996         lctl get_param -n llite.*.statahead_stats
5997         rm -r $DIR/$tdir
5998         sync
5999
6000 }
6001 run_test 123b "not panic with network error in statahead enqueue (bug 15027)"
6002
6003 test_124a() {
6004         [ -z "`lctl get_param -n mdc.*.connect_flags | grep lru_resize`" ] && \
6005                skip "no lru resize on server" && return 0
6006         local NR=2000
6007         mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
6008
6009         log "create $NR files at $DIR/$tdir"
6010         createmany -o $DIR/$tdir/f $NR ||
6011                 error "failed to create $NR files in $DIR/$tdir"
6012
6013         cancel_lru_locks mdc
6014         ls -l $DIR/$tdir > /dev/null
6015
6016         local NSDIR=""
6017         local LRU_SIZE=0
6018         for VALUE in `lctl get_param ldlm.namespaces.*mdc-*.lru_size`; do
6019                 local PARAM=`echo ${VALUE[0]} | cut -d "=" -f1`
6020                 LRU_SIZE=$(lctl get_param -n $PARAM)
6021                 if [ $LRU_SIZE -gt $(default_lru_size) ]; then
6022                         NSDIR=$(echo $PARAM | cut -d "." -f1-3)
6023                         log "NS=$(basename $NSDIR)"
6024                         break
6025                 fi
6026         done
6027
6028         if [ -z "$NSDIR" -o $LRU_SIZE -lt $(default_lru_size) ]; then
6029                 skip "Not enough cached locks created!"
6030                 return 0
6031         fi
6032         log "LRU=$LRU_SIZE"
6033
6034         local SLEEP=30
6035
6036         # We know that lru resize allows one client to hold $LIMIT locks
6037         # for 10h. After that locks begin to be killed by client.
6038         local MAX_HRS=10
6039         local LIMIT=`lctl get_param -n $NSDIR.pool.limit`
6040
6041         # Make LVF so higher that sleeping for $SLEEP is enough to _start_
6042         # killing locks. Some time was spent for creating locks. This means
6043         # that up to the moment of sleep finish we must have killed some of
6044         # them (10-100 locks). This depends on how fast ther were created.
6045         # Many of them were touched in almost the same moment and thus will
6046         # be killed in groups.
6047         local LVF=$(($MAX_HRS * 60 * 60 / $SLEEP * $LIMIT / $LRU_SIZE))
6048
6049         # Use $LRU_SIZE_B here to take into account real number of locks
6050         # created in the case of CMD, LRU_SIZE_B != $NR in most of cases
6051         local LRU_SIZE_B=$LRU_SIZE
6052         log "LVF=$LVF"
6053         local OLD_LVF=`lctl get_param -n $NSDIR.pool.lock_volume_factor`
6054         lctl set_param -n $NSDIR.pool.lock_volume_factor $LVF
6055
6056         # Let's make sure that we really have some margin. Client checks
6057         # cached locks every 10 sec.
6058         SLEEP=$((SLEEP+20))
6059         log "Sleep ${SLEEP} sec"
6060         local SEC=0
6061         while ((SEC<$SLEEP)); do
6062                 echo -n "..."
6063                 sleep 5
6064                 SEC=$((SEC+5))
6065                 LRU_SIZE=`lctl get_param -n $NSDIR/lru_size`
6066                 echo -n "$LRU_SIZE"
6067         done
6068         echo ""
6069         lctl set_param -n $NSDIR.pool.lock_volume_factor $OLD_LVF
6070         local LRU_SIZE_A=`lctl get_param -n $NSDIR/lru_size`
6071
6072         [ $LRU_SIZE_B -gt $LRU_SIZE_A ] || {
6073                 error "No locks dropped in ${SLEEP}s. LRU size: $LRU_SIZE_A"
6074                 unlinkmany $DIR/$tdir/f $NR
6075                 return
6076         }
6077
6078         log "Dropped "$((LRU_SIZE_B-LRU_SIZE_A))" locks in ${SLEEP}s"
6079         log "unlink $NR files at $DIR/$tdir"
6080         unlinkmany $DIR/$tdir/f $NR
6081 }
6082 run_test 124a "lru resize ======================================="
6083
6084 get_max_pool_limit()
6085 {
6086         local limit=`lctl get_param -n ldlm.namespaces.*-MDT0000-mdc-*.pool.limit`
6087         local max=0
6088         for l in $limit; do
6089                 if test $l -gt $max; then
6090                         max=$l
6091                 fi
6092         done
6093         echo $max
6094 }
6095
6096 test_124b() {
6097         [ -z "`lctl get_param -n mdc.*.connect_flags | grep lru_resize`" ] && \
6098                skip "no lru resize on server" && return 0
6099
6100         LIMIT=`get_max_pool_limit`
6101
6102         NR=$(($(default_lru_size)*20))
6103         if [ $NR -gt $LIMIT ]; then
6104                 log "Limit lock number by $LIMIT locks"
6105                 NR=$LIMIT
6106         fi
6107         lru_resize_disable mdc
6108         mkdir -p $DIR/$tdir/disable_lru_resize ||
6109                 error "failed to create $DIR/$tdir/disable_lru_resize"
6110
6111         createmany -o $DIR/$tdir/disable_lru_resize/f $NR
6112         log "doing ls -la $DIR/$tdir/disable_lru_resize 3 times"
6113         cancel_lru_locks mdc
6114         stime=`date +%s`
6115         PID=""
6116         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
6117         PID="$PID $!"
6118         sleep 2
6119         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
6120         PID="$PID $!"
6121         sleep 2
6122         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
6123         PID="$PID $!"
6124         wait $PID
6125         etime=`date +%s`
6126         nolruresize_delta=$((etime-stime))
6127         log "ls -la time: $nolruresize_delta seconds"
6128         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
6129         unlinkmany $DIR/$tdir/disable_lru_resize/f $NR
6130
6131         lru_resize_enable mdc
6132         mkdir -p $DIR/$tdir/enable_lru_resize ||
6133                 error "failed to create $DIR/$tdir/enable_lru_resize"
6134
6135         createmany -o $DIR/$tdir/enable_lru_resize/f $NR
6136         log "doing ls -la $DIR/$tdir/enable_lru_resize 3 times"
6137         cancel_lru_locks mdc
6138         stime=`date +%s`
6139         PID=""
6140         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
6141         PID="$PID $!"
6142         sleep 2
6143         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
6144         PID="$PID $!"
6145         sleep 2
6146         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
6147         PID="$PID $!"
6148         wait $PID
6149         etime=`date +%s`
6150         lruresize_delta=$((etime-stime))
6151         log "ls -la time: $lruresize_delta seconds"
6152         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
6153
6154         if [ $lruresize_delta -gt $nolruresize_delta ]; then
6155                 log "ls -la is $(((lruresize_delta - $nolruresize_delta) * 100 / $nolruresize_delta))% slower with lru resize enabled"
6156         elif [ $nolruresize_delta -gt $lruresize_delta ]; then
6157                 log "ls -la is $(((nolruresize_delta - $lruresize_delta) * 100 / $nolruresize_delta))% faster with lru resize enabled"
6158         else
6159                 log "lru resize performs the same with no lru resize"
6160         fi
6161         unlinkmany $DIR/$tdir/enable_lru_resize/f $NR
6162 }
6163 run_test 124b "lru resize (performance test) ======================="
6164
6165 test_125() { # 13358
6166         [ -z "$(lctl get_param -n llite.*.client_type | grep local)" ] && skip "must run as local client" && return
6167         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] && skip "must have acl enabled" && return
6168         mkdir -p $DIR/d125 || error "mkdir failed"
6169         $SETSTRIPE $DIR/d125 -s 65536 -c -1 || error "setstripe failed"
6170         setfacl -R -m u:bin:rwx $DIR/d125 || error "setfacl $DIR/d125 failed"
6171         ls -ld $DIR/d125 || error "cannot access $DIR/d125"
6172 }
6173 run_test 125 "don't return EPROTO when a dir has a non-default striping and ACLs"
6174
6175 test_126() { # bug 12829/13455
6176         [ -z "$(lctl get_param -n llite.*.client_type | grep local)" ] && skip "must run as local client" && return
6177         [ "$UID" != 0 ] && skip_env "skipping $TESTNAME (must run as root)" && return
6178         $GSS && skip "must run as gss disabled" && return
6179
6180         $RUNAS -u 0 -g 1 touch $DIR/$tfile || error "touch failed"
6181         gid=`ls -n $DIR/$tfile | awk '{print $4}'`
6182         rm -f $DIR/$tfile
6183         [ $gid -eq "1" ] || error "gid is set to" $gid "instead of 1"
6184 }
6185 run_test 126 "check that the fsgid provided by the client is taken into account"
6186
6187 test_127() { # bug 15521
6188         $SETSTRIPE -i 0 -c 1 $DIR/$tfile || error "setstripe failed"
6189         $LCTL set_param osc.*.stats=0
6190         FSIZE=$((2048 * 1024))
6191         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
6192         cancel_lru_locks osc
6193         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE
6194
6195         $LCTL get_param osc.*0000-osc-*.stats | grep samples > $DIR/${tfile}.tmp
6196         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
6197                 echo "got $COUNT $NAME"
6198                 [ ! $MIN ] && error "Missing min value for $NAME proc entry"
6199                 eval $NAME=$COUNT || error "Wrong proc format"
6200
6201                 case $NAME in
6202                         read_bytes|write_bytes)
6203                         [ $MIN -lt 4096 ] && error "min is too small: $MIN"
6204                         [ $MIN -gt $FSIZE ] && error "min is too big: $MIN"
6205                         [ $MAX -lt 4096 ] && error "max is too small: $MAX"
6206                         [ $MAX -gt $FSIZE ] && error "max is too big: $MAX"
6207                         [ $SUM -ne $FSIZE ] && error "sum is wrong: $SUM"
6208                         [ $SUMSQ -lt $(((FSIZE /4096) * (4096 * 4096))) ] &&
6209                                 error "sumsquare is too small: $SUMSQ"
6210                         [ $SUMSQ -gt $((FSIZE * FSIZE)) ] &&
6211                                 error "sumsquare is too big: $SUMSQ"
6212                         ;;
6213                         *) ;;
6214                 esac
6215         done < $DIR/${tfile}.tmp
6216
6217         #check that we actually got some stats
6218         [ "$read_bytes" ] || error "Missing read_bytes stats"
6219         [ "$write_bytes" ] || error "Missing write_bytes stats"
6220         [ "$read_bytes" != 0 ] || error "no read done"
6221         [ "$write_bytes" != 0 ] || error "no write done"
6222 }
6223 run_test 127 "verify the client stats are sane"
6224
6225 test_128() { # bug 15212
6226         touch $DIR/$tfile
6227         $LFS 2>&1 <<-EOF | tee $TMP/$tfile.log
6228                 find $DIR/$tfile
6229                 find $DIR/$tfile
6230         EOF
6231
6232         result=$(grep error $TMP/$tfile.log)
6233         rm -f $DIR/$tfile
6234         [ -z "$result" ] || error "consecutive find's under interactive lfs failed"
6235 }
6236 run_test 128 "interactive lfs for 2 consecutive find's"
6237
6238 set_dir_limits () {
6239         local mntdev
6240         local canondev
6241         local node
6242
6243         local LDPROC=/proc/fs/ldiskfs
6244
6245         for facet in $(get_facets MDS); do
6246                 canondev=$(ldiskfs_canon *.$(convert_facet2label $facet).mntdev $facet)
6247                 do_facet $facet "test -e $LDPROC/$canondev/max_dir_size" || LDPROC=/sys/fs/ldiskfs
6248                 do_facet $facet "echo $1 >$LDPROC/$canondev/max_dir_size"
6249         done
6250 }
6251 test_129() {
6252         [ "$FSTYPE" != "ldiskfs" ] && skip "not needed for FSTYPE=$FSTYPE" && return 0
6253         remote_mds_nodsh && skip "remote MDS with nodsh" && return
6254
6255         EFBIG=27
6256         MAX=16384
6257
6258         set_dir_limits $MAX
6259
6260         mkdir -p $DIR/$tdir
6261
6262         I=0
6263         J=0
6264         while [ ! $I -gt $((MAX * MDSCOUNT)) ]; do
6265                 multiop $DIR/$tdir/$J Oc
6266                 rc=$?
6267                 if [ $rc -eq $EFBIG ]; then
6268                         set_dir_limits 0
6269                         echo "return code $rc received as expected"
6270                         return 0
6271                 elif [ $rc -ne 0 ]; then
6272                         set_dir_limits 0
6273                         error_exit "return code $rc received instead of expected $EFBIG"
6274                 fi
6275                 J=$((J+1))
6276                 I=$(stat -c%s "$DIR/$tdir")
6277         done
6278
6279         set_dir_limits 0
6280         error "exceeded dir size limit $MAX x $MDSCOUNT $((MAX * MDSCOUNT)) : $I bytes"
6281 }
6282 run_test 129 "test directory size limit ========================"
6283
6284 OLDIFS="$IFS"
6285 cleanup_130() {
6286         trap 0
6287         IFS="$OLDIFS"
6288 }
6289
6290 test_130a() {
6291         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
6292         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" && return
6293
6294         trap cleanup_130 EXIT RETURN
6295
6296         local fm_file=$DIR/$tfile
6297         lfs setstripe -s 65536 -c 1 $fm_file || error "setstripe failed on $fm_file"
6298         dd if=/dev/zero of=$fm_file bs=65536 count=1 || error "dd failed for $fm_file"
6299
6300         filefrag -ves $fm_file || error "filefrag $fm_file failed"
6301         filefrag_op=`filefrag -ve $fm_file | grep -A 100 "ext:" | grep -v "ext:" | grep -v "found"`
6302
6303         lun=`$GETSTRIPE $fm_file  | grep -A 10 obdidx | awk '{print $1}' | grep -v "obdidx"`
6304
6305         start_blk=`echo $filefrag_op | cut -d: -f2 | cut -d. -f1`
6306         IFS=$'\n'
6307         tot_len=0
6308         for line in $filefrag_op
6309         do
6310                 frag_lun=`echo $line | cut -d: -f5`
6311                 ext_len=`echo $line | cut -d: -f4`
6312                 if (( $frag_lun != $lun )); then
6313                         cleanup_130
6314                         error "FIEMAP on 1-stripe file($fm_file) failed"
6315                         return
6316                 fi
6317                 (( tot_len += ext_len ))
6318         done
6319
6320         if (( lun != frag_lun || start_blk != 0 || tot_len != 64 )); then
6321                 cleanup_130
6322                 error "FIEMAP on 1-stripe file($fm_file) failed;"
6323                 return
6324         fi
6325
6326         cleanup_130
6327
6328         echo "FIEMAP on single striped file succeeded"
6329 }
6330 run_test 130a "FIEMAP (1-stripe file)"
6331
6332 test_130b() {
6333         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping FIEMAP on 2-stripe file test" && return
6334
6335         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
6336         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" && return
6337
6338         trap cleanup_130 EXIT RETURN
6339
6340         local fm_file=$DIR/$tfile
6341         lfs setstripe -s 65536 -c 2 $fm_file || error "setstripe failed on $fm_file"
6342         dd if=/dev/zero of=$fm_file bs=1M count=2 || error "dd failed on $fm_file"
6343
6344         filefrag -ves $fm_file || error "filefrag $fm_file failed"
6345         filefrag_op=`filefrag -ve $fm_file | grep -A 100 "ext:" | grep -v "ext:" | grep -v "found"`
6346
6347         last_lun=`echo $filefrag_op | cut -d: -f5`
6348
6349         IFS=$'\n'
6350         tot_len=0
6351         num_luns=1
6352         for line in $filefrag_op
6353         do
6354                 frag_lun=`echo $line | cut -d: -f5`
6355                 ext_len=`echo $line | cut -d: -f4`
6356                 if (( $frag_lun != $last_lun )); then
6357                         if (( tot_len != 1024 )); then
6358                                 cleanup_130
6359                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of 256"
6360                                 return
6361                         else
6362                                 (( num_luns += 1 ))
6363                                 tot_len=0
6364                         fi
6365                 fi
6366                 (( tot_len += ext_len ))
6367                 last_lun=$frag_lun
6368         done
6369         if (( num_luns != 2 || tot_len != 1024 )); then
6370                 cleanup_130
6371                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
6372                 return
6373         fi
6374
6375         cleanup_130
6376
6377         echo "FIEMAP on 2-stripe file succeeded"
6378 }
6379 run_test 130b "FIEMAP (2-stripe file)"
6380
6381 test_130c() {
6382         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping FIEMAP on 2-stripe file with hole test" && return
6383
6384         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
6385         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" && return
6386
6387         trap cleanup_130 EXIT RETURN
6388
6389         local fm_file=$DIR/$tfile
6390         lfs setstripe -s 65536 -c 2 $fm_file || error "setstripe failed on $fm_file"
6391         dd if=/dev/zero of=$fm_file seek=1 bs=1M count=1 || error "dd failed on $fm_file"
6392
6393         filefrag -ves $fm_file || error "filefrag $fm_file failed"
6394         filefrag_op=`filefrag -ve $fm_file | grep -A 100 "ext:" | grep -v "ext:" | grep -v "found"`
6395
6396         last_lun=`echo $filefrag_op | cut -d: -f5`
6397
6398         IFS=$'\n'
6399         tot_len=0
6400         num_luns=1
6401         for line in $filefrag_op
6402         do
6403                 frag_lun=`echo $line | cut -d: -f5`
6404                 ext_len=`echo $line | cut -d: -f4`
6405                 if (( $frag_lun != $last_lun )); then
6406                         logical=`echo $line | cut -d: -f2 | cut -d. -f1`
6407                         if (( logical != 512 )); then
6408                                 cleanup_130
6409                                 error "FIEMAP on $fm_file failed; returned logical start for lun $logical instead of 512"
6410                                 return
6411                         fi
6412                         if (( tot_len != 512 )); then
6413                                 cleanup_130
6414                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of 1024"
6415                                 return
6416                         else
6417                                 (( num_luns += 1 ))
6418                                 tot_len=0
6419                         fi
6420                 fi
6421                 (( tot_len += ext_len ))
6422                 last_lun=$frag_lun
6423         done
6424         if (( num_luns != 2 || tot_len != 512 )); then
6425                 cleanup_130
6426                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
6427                 return
6428         fi
6429
6430         cleanup_130
6431
6432         echo "FIEMAP on 2-stripe file with hole succeeded"
6433 }
6434 run_test 130c "FIEMAP (2-stripe file with hole)"
6435
6436 test_130d() {
6437         [ "$OSTCOUNT" -lt "3" ] && skip_env "skipping FIEMAP on N-stripe file test" && return
6438
6439         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
6440         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" && return
6441
6442         trap cleanup_130 EXIT RETURN
6443
6444         local fm_file=$DIR/$tfile
6445         lfs setstripe -s 65536 -c $OSTCOUNT $fm_file || error "setstripe failed on $fm_file"
6446         dd if=/dev/zero of=$fm_file bs=1M count=$OSTCOUNT || error "dd failed on $fm_file"
6447
6448         filefrag -ves $fm_file || error "filefrag $fm_file failed"
6449         filefrag_op=`filefrag -ve $fm_file | grep -A 100 "ext:" | grep -v "ext:" | grep -v "found"`
6450
6451         last_lun=`echo $filefrag_op | cut -d: -f5`
6452
6453         IFS=$'\n'
6454         tot_len=0
6455         num_luns=1
6456         for line in $filefrag_op
6457         do
6458                 frag_lun=`echo $line | cut -d: -f5`
6459                 ext_len=`echo $line | cut -d: -f4`
6460                 if (( $frag_lun != $last_lun )); then
6461                         if (( tot_len != 1024 )); then
6462                                 cleanup_130
6463                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of 1024"
6464                                 return
6465                         else
6466                                 (( num_luns += 1 ))
6467                                 tot_len=0
6468                         fi
6469                 fi
6470                 (( tot_len += ext_len ))
6471                 last_lun=$frag_lun
6472         done
6473         if (( num_luns != OSTCOUNT || tot_len != 1024 )); then
6474                 cleanup_130
6475                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
6476                 return
6477         fi
6478
6479         cleanup_130
6480
6481         echo "FIEMAP on N-stripe file succeeded"
6482 }
6483 run_test 130d "FIEMAP (N-stripe file)"
6484
6485 test_130e() {
6486         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping continuation FIEMAP test" && return
6487
6488         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
6489         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" && return
6490
6491         trap cleanup_130 EXIT RETURN
6492
6493         local fm_file=$DIR/$tfile
6494         lfs setstripe -s 131072 -c 2 $fm_file || error "setstripe failed on $fm_file"
6495         NUM_BLKS=512
6496         EXPECTED_LEN=$(( (NUM_BLKS / 2) * 64 ))
6497         for ((i = 0; i < $NUM_BLKS; i++))
6498         do
6499                 dd if=/dev/zero of=$fm_file count=1 bs=64k seek=$((2*$i)) conv=notrunc > /dev/null 2>&1
6500         done
6501
6502         filefrag -ves $fm_file || error "filefrag $fm_file failed"
6503         filefrag_op=`filefrag -ve $fm_file | grep -A 12000 "ext:" | grep -v "ext:" | grep -v "found"`
6504
6505         last_lun=`echo $filefrag_op | cut -d: -f5`
6506
6507         IFS=$'\n'
6508         tot_len=0
6509         num_luns=1
6510         for line in $filefrag_op
6511         do
6512                 frag_lun=`echo $line | cut -d: -f5`
6513                 ext_len=`echo $line | cut -d: -f4`
6514                 if (( $frag_lun != $last_lun )); then
6515                         if (( tot_len != $EXPECTED_LEN )); then
6516                                 cleanup_130
6517                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of $EXPECTED_LEN"
6518                                 return
6519                         else
6520                                 (( num_luns += 1 ))
6521                                 tot_len=0
6522                         fi
6523                 fi
6524                 (( tot_len += ext_len ))
6525                 last_lun=$frag_lun
6526         done
6527         if (( num_luns != 2 || tot_len != $EXPECTED_LEN )); then
6528                 cleanup_130
6529                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
6530                 return
6531         fi
6532
6533         cleanup_130
6534
6535         echo "FIEMAP with continuation calls succeeded"
6536 }
6537 run_test 130e "FIEMAP (test continuation FIEMAP calls)"
6538
6539 # Test for writev/readv
6540 test_131a() {
6541         rwv -f $DIR/$tfile -w -n 3 524288 1048576 1572864 || \
6542         error "writev test failed"
6543         rwv -f $DIR/$tfile -r -v -n 2 1572864 1048576 || \
6544         error "readv failed"
6545         rm -f $DIR/$tfile
6546 }
6547 run_test 131a "test iov's crossing stripe boundary for writev/readv"
6548
6549 test_131b() {
6550         rwv -f $DIR/$tfile -w -a -n 3 524288 1048576 1572864 || \
6551         error "append writev test failed"
6552         rwv -f $DIR/$tfile -w -a -n 2 1572864 1048576 || \
6553         error "append writev test failed"
6554         rm -f $DIR/$tfile
6555 }
6556 run_test 131b "test append writev"
6557
6558 test_131c() {
6559         rwv -f $DIR/$tfile -w -d -n 1 1048576 || return 0
6560         error "NOT PASS"
6561 }
6562 run_test 131c "test read/write on file w/o objects"
6563
6564 test_131d() {
6565         rwv -f $DIR/$tfile -w -n 1 1572864
6566         NOB=`rwv -f $DIR/$tfile -r -n 3 524288 524288 1048576 | awk '/error/ {print $6}'`
6567         if [ "$NOB" != 1572864 ]; then
6568                 error "Short read filed: read $NOB bytes instead of 1572864"
6569         fi
6570         rm -f $DIR/$tfile
6571 }
6572 run_test 131d "test short read"
6573
6574 test_131e() {
6575         rwv -f $DIR/$tfile -w -s 1048576 -n 1 1048576
6576         rwv -f $DIR/$tfile -r -z -s 0 -n 1 524288 || \
6577         error "read hitting hole failed"
6578         rm -f $DIR/$tfile
6579 }
6580 run_test 131e "test read hitting hole"
6581
6582 get_ost_param() {
6583         local token=$1
6584         local gl_sum=0
6585         for node in $(osts_nodes); do
6586                 gl=$(do_node $node "$LCTL get_param -n ost.OSS.ost.stats" | awk '/'$token'/ {print $2}' | head -n 1)
6587                 [ x$gl = x"" ] && gl=0
6588                 gl_sum=$((gl_sum + gl))
6589         done
6590         echo $gl
6591 }
6592
6593 som_mode_switch() {
6594         local som=$1
6595         local gl1=$2
6596         local gl2=$3
6597
6598         if [ x$som = x"enabled" ]; then
6599                 [ $((gl2 - gl1)) -gt 0 ] && error "no glimpse RPC is expected"
6600                 MOUNTOPT=`echo $MOUNTOPT | sed 's/som_preview//g'`
6601                 do_facet mgs "$LCTL conf_param $FSNAME.mdt.som=disabled"
6602         else
6603                 [ $((gl2 - gl1)) -gt 0 ] || error "some glimpse RPC is expected"
6604                 MOUNTOPT="$MOUNTOPT,som_preview"
6605                 do_facet mgs "$LCTL conf_param $FSNAME.mdt.som=enabled"
6606         fi
6607
6608         # do remount to make new mount-conf parameters actual
6609         echo remounting...
6610         sync
6611         stopall
6612         setupall
6613 }
6614
6615 test_132() { #1028, SOM
6616         local num=$(get_mds_dir $DIR)
6617         local mymds=mds${num}
6618         local MOUNTOPT_SAVE=$MOUNTOPT
6619
6620         dd if=/dev/zero of=$DIR/$tfile count=1 2>/dev/null
6621         cancel_lru_locks osc
6622
6623         som1=$(do_facet $mymds "$LCTL get_param mdt.*.som" |  awk -F= ' {print $2}' | head -n 1)
6624
6625         gl1=$(get_ost_param "ldlm_glimpse_enqueue")
6626         stat $DIR/$tfile >/dev/null
6627         gl2=$(get_ost_param "ldlm_glimpse_enqueue")
6628         echo "====> SOM is "$som1", "$((gl2 - gl1))" glimpse RPC occured"
6629         rm $DIR/$tfile
6630         som_mode_switch $som1 $gl1 $gl2
6631
6632         dd if=/dev/zero of=$DIR/$tfile count=1 2>/dev/null
6633         cancel_lru_locks osc
6634
6635         som2=$(do_facet $mymds "$LCTL get_param mdt.*.som" |  awk -F= ' {print $2}' | head -n 1)
6636         if [ $som1 == $som2 ]; then
6637             error "som is still "$som2
6638             if [ x$som2 = x"enabled" ]; then
6639                 som2="disabled"
6640             else
6641                 som2="enabled"
6642             fi
6643         fi
6644
6645         gl1=$(get_ost_param "ldlm_glimpse_enqueue")
6646         stat $DIR/$tfile >/dev/null
6647         gl2=$(get_ost_param "ldlm_glimpse_enqueue")
6648         echo "====> SOM is "$som2", "$((gl2 - gl1))" glimpse RPC occured"
6649         som_mode_switch $som2 $gl1 $gl2
6650         MOUNTOPT=$MOUNTOPT_SAVE
6651 }
6652 run_test 132 "som avoids glimpse rpc"
6653
6654 test_140() { #bug-17379
6655         mkdir -p $DIR/$tdir || error "Creating dir $DIR/$tdir"
6656         cd $DIR/$tdir || error "Changing to $DIR/$tdir"
6657         cp /usr/bin/stat . || error "Copying stat to $DIR/$tdir"
6658
6659         # VFS limits max symlink depth to 5(4KSTACK) or 7(8KSTACK) or 8
6660         local i=0
6661         while i=`expr $i + 1`; do
6662                 mkdir -p $i || error "Creating dir $i"
6663                 cd $i || error "Changing to $i"
6664                 ln -s ../stat stat || error "Creating stat symlink"
6665                 # Read the symlink until ELOOP present,
6666                 # not LBUGing the system is considered success,
6667                 # we didn't overrun the stack.
6668                 $OPENFILE -f O_RDONLY stat >/dev/null 2>&1; ret=$?
6669                 [ $ret -ne 0 ] && {
6670                         if [ $ret -eq 40 ]; then
6671                                 break  # -ELOOP
6672                         else
6673                                 error "Open stat symlink"
6674                                 return
6675                         fi
6676                 }
6677         done
6678         i=`expr $i - 1`
6679         echo "The symlink depth = $i"
6680         [ $i -eq 5 -o $i -eq 7 -o $i -eq 8 ] || error "Invalid symlink depth"
6681 }
6682 run_test 140 "Check reasonable stack depth (shouldn't LBUG) ===="
6683
6684 test_150() {
6685         local TF="$TMP/$tfile"
6686
6687         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
6688         cp $TF $DIR/$tfile
6689         cancel_lru_locks osc
6690         cmp $TF $DIR/$tfile || error "$TMP/$tfile $DIR/$tfile differ"
6691         remount_client $MOUNT
6692         df -P $MOUNT
6693         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (remount)"
6694
6695         $TRUNCATE $TF 6000
6696         $TRUNCATE $DIR/$tfile 6000
6697         cancel_lru_locks osc
6698         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (truncate1)"
6699
6700         echo "12345" >>$TF
6701         echo "12345" >>$DIR/$tfile
6702         cancel_lru_locks osc
6703         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append1)"
6704
6705         echo "12345" >>$TF
6706         echo "12345" >>$DIR/$tfile
6707         cancel_lru_locks osc
6708         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append2)"
6709
6710         rm -f $TF
6711         true
6712 }
6713 run_test 150 "truncate/append tests"
6714
6715 function roc_hit() {
6716     local list=$(comma_list $(osts_nodes))
6717
6718     ACCNUM=$(do_nodes $list $LCTL get_param -n obdfilter.*.stats | \
6719         awk '/'cache_hit'/ {sum+=$2} END {print sum}')
6720     echo $ACCNUM
6721 }
6722
6723 function set_cache() {
6724     local on=1
6725
6726     if [ "$2" == "off" ]; then
6727         on=0;
6728     fi
6729     local list=$(comma_list $(osts_nodes))
6730     do_nodes $list lctl set_param obdfilter.*.${1}_cache_enable $on
6731
6732     cancel_lru_locks osc
6733 }
6734
6735 test_151() {
6736         remote_ost_nodsh && skip "remote OST with nodsh" && return
6737
6738         local CPAGES=3
6739         local list=$(comma_list $(osts_nodes))
6740
6741         # check whether obdfilter is cache capable at all
6742         if ! do_nodes $list $LCTL get_param -n obdfilter.*.read_cache_enable > /dev/null; then
6743                 echo "not cache-capable obdfilter"
6744                 return 0
6745         fi
6746
6747         # check cache is enabled on all obdfilters
6748         if do_nodes $list $LCTL get_param -n obdfilter.*.read_cache_enable | grep 0 >&/dev/null; then
6749                 echo "oss cache is disabled"
6750                 return 0
6751         fi
6752
6753         do_nodes $list $LCTL set_param -n obdfilter.*.writethrough_cache_enable 1
6754
6755         # pages should be in the case right after write
6756         dd if=/dev/urandom of=$DIR/$tfile bs=4k count=$CPAGES || error "dd failed"
6757         local BEFORE=`roc_hit`
6758         cancel_lru_locks osc
6759         cat $DIR/$tfile >/dev/null
6760         local AFTER=`roc_hit`
6761         if ! let "AFTER - BEFORE == CPAGES"; then
6762                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
6763         fi
6764
6765         # the following read invalidates the cache
6766         cancel_lru_locks osc
6767         do_nodes $list $LCTL set_param -n obdfilter.*.read_cache_enable 0
6768         cat $DIR/$tfile >/dev/null
6769
6770         # now data shouldn't be found in the cache
6771         BEFORE=`roc_hit`
6772         cancel_lru_locks osc
6773         cat $DIR/$tfile >/dev/null
6774         AFTER=`roc_hit`
6775         if let "AFTER - BEFORE != 0"; then
6776                 error "IN CACHE: before: $BEFORE, after: $AFTER"
6777         fi
6778
6779         do_nodes $list $LCTL set_param -n obdfilter.*.read_cache_enable 1
6780         rm -f $DIR/$tfile
6781 }
6782 run_test 151 "test cache on oss and controls ==============================="
6783
6784 test_152() {
6785         local TF="$TMP/$tfile"
6786
6787         # simulate ENOMEM during write
6788 #define OBD_FAIL_OST_NOMEM      0x226
6789         lctl set_param fail_loc=0x80000226
6790         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
6791         cp $TF $DIR/$tfile
6792         sync || error "sync failed"
6793         lctl set_param fail_loc=0
6794
6795         # discard client's cache
6796         cancel_lru_locks osc
6797
6798         # simulate ENOMEM during read
6799         lctl set_param fail_loc=0x80000226
6800         cmp $TF $DIR/$tfile || error "cmp failed"
6801         lctl set_param fail_loc=0
6802
6803         rm -f $TF
6804 }
6805 run_test 152 "test read/write with enomem ============================"
6806
6807 test_153() {
6808         multiop $DIR/$tfile Ow4096Ycu || error "multiop failed"
6809 }
6810 run_test 153 "test if fdatasync does not crash ======================="
6811
6812 test_154() {
6813         cp /etc/hosts $DIR/$tfile
6814
6815         fid=$($LFS path2fid $DIR/$tfile)
6816         rc=$?
6817         [ $rc -ne 0 ] && error "error: could not get fid for $DIR/$tfile."
6818
6819         echo "open fid $fid"
6820         diff /etc/hosts $DIR/.lustre/fid/$fid || error "open by fid failed: did not find expected data in file."
6821
6822         echo "Opening a file by FID succeeded"
6823 }
6824 run_test 154 "Opening a file by FID"
6825
6826 test_155_load() {
6827     local temp=$TMP/$tfile
6828     local file=$DIR/$tfile
6829     local list=$(comma_list $(osts_nodes))
6830     local big=$(do_nodes $list grep "cache" /proc/cpuinfo | \
6831         awk '{sum+=$4} END{print sum}')
6832
6833     log big is $big K
6834
6835     dd if=/dev/urandom of=$temp bs=6096 count=1 || \
6836         error "dd of=$temp bs=6096 count=1 failed"
6837     cp $temp $file
6838     cancel_lru_locks osc
6839     cmp $temp $file || error "$temp $file differ"
6840
6841     $TRUNCATE $temp 6000
6842     $TRUNCATE $file 6000
6843     cmp $temp $file || error "$temp $file differ (truncate1)"
6844
6845     echo "12345" >>$temp
6846     echo "12345" >>$file
6847     cmp $temp $file || error "$temp $file differ (append1)"
6848
6849     echo "12345" >>$temp
6850     echo "12345" >>$file
6851     cmp $temp $file || error "$temp $file differ (append2)"
6852
6853     dd if=/dev/urandom of=$temp bs=$((big*2)) count=1k || \
6854         error "dd of=$temp bs=$((big*2)) count=1k failed"
6855     cp $temp $file
6856     ls -lh $temp $file
6857     cancel_lru_locks osc
6858     cmp $temp $file || error "$temp $file differ"
6859
6860     rm -f $temp
6861     true
6862 }
6863
6864 test_155a() {
6865     set_cache read on
6866     set_cache writethrough on
6867     test_155_load
6868 }
6869 run_test 155a "Verification of correctness: read cache:on write_cache:on"
6870
6871 test_155b() {
6872     set_cache read on
6873     set_cache writethrough off
6874     test_155_load
6875 }
6876 run_test 155b "Verification of correctness: read cache:on write_cache:off"
6877
6878 test_155c() {
6879     set_cache read off
6880     set_cache writethrough on
6881     test_155_load
6882 }
6883 run_test 155c "Verification of correctness: read cache:off write_cache:on"
6884
6885 test_155d() {
6886     set_cache read off
6887     set_cache writethrough off
6888     test_155_load
6889 }
6890 run_test 155d "Verification of correctness: read cache:off write_cache:off "
6891
6892 test_156() {
6893     local CPAGES=3
6894     local BEFORE
6895     local AFTER
6896     local file="$DIR/$tfile"
6897
6898     log "Turn on read and write cache"
6899     set_cache read on
6900     set_cache writethrough on
6901
6902     log "Write data and read it back."
6903     log "Read should be satisfied from the cache."
6904     dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
6905     BEFORE=`roc_hit`
6906     cancel_lru_locks osc
6907     cat $file >/dev/null
6908     AFTER=`roc_hit`
6909     if ! let "AFTER - BEFORE == CPAGES"; then
6910         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
6911     else
6912         log "cache hits:: before: $BEFORE, after: $AFTER"
6913     fi
6914
6915     log "Read again; it should be satisfied from the cache."
6916     BEFORE=$AFTER
6917     cancel_lru_locks osc
6918     cat $file >/dev/null
6919     AFTER=`roc_hit`
6920     if ! let "AFTER - BEFORE == CPAGES"; then
6921         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
6922     else
6923         log "cache hits:: before: $BEFORE, after: $AFTER"
6924     fi
6925
6926
6927     log "Turn off the read cache and turn on the write cache"
6928     set_cache read off
6929     set_cache writethrough on
6930
6931     log "Read again; it should be satisfied from the cache."
6932     BEFORE=`roc_hit`
6933     cancel_lru_locks osc
6934     cat $file >/dev/null
6935     AFTER=`roc_hit`
6936     if ! let "AFTER - BEFORE == CPAGES"; then
6937         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
6938     else
6939         log "cache hits:: before: $BEFORE, after: $AFTER"
6940     fi
6941
6942     log "Read again; it should not be satisfied from the cache."
6943     BEFORE=$AFTER
6944     cancel_lru_locks osc
6945     cat $file >/dev/null
6946     AFTER=`roc_hit`
6947     if ! let "AFTER - BEFORE == 0"; then
6948         error "IN CACHE: before: $BEFORE, after: $AFTER"
6949     else
6950         log "cache hits:: before: $BEFORE, after: $AFTER"
6951     fi
6952
6953     log "Write data and read it back."
6954     log "Read should be satisfied from the cache."
6955     dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
6956     BEFORE=`roc_hit`
6957     cancel_lru_locks osc
6958     cat $file >/dev/null
6959     AFTER=`roc_hit`
6960     if ! let "AFTER - BEFORE == CPAGES"; then
6961         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
6962     else
6963         log "cache hits:: before: $BEFORE, after: $AFTER"
6964     fi
6965
6966     log "Read again; it should not be satisfied from the cache."
6967     BEFORE=$AFTER
6968     cancel_lru_locks osc
6969     cat $file >/dev/null
6970     AFTER=`roc_hit`
6971     if ! let "AFTER - BEFORE == 0"; then
6972         error "IN CACHE: before: $BEFORE, after: $AFTER"
6973     else
6974         log "cache hits:: before: $BEFORE, after: $AFTER"
6975     fi
6976
6977
6978     log "Turn off read and write cache"
6979     set_cache read off
6980     set_cache writethrough off
6981
6982     log "Write data and read it back"
6983     log "It should not be satisfied from the cache."
6984     rm -f $file
6985     dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
6986     cancel_lru_locks osc
6987     BEFORE=`roc_hit`
6988     cat $file >/dev/null
6989     AFTER=`roc_hit`
6990     if ! let "AFTER - BEFORE == 0"; then
6991         error_ignore 20762 "IN CACHE: before: $BEFORE, after: $AFTER"
6992     else
6993         log "cache hits:: before: $BEFORE, after: $AFTER"
6994     fi
6995
6996
6997     log "Turn on the read cache and turn off the write cache"
6998     set_cache read on
6999     set_cache writethrough off
7000
7001     log "Write data and read it back"
7002     log "It should not be satisfied from the cache."
7003     rm -f $file
7004     dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
7005     BEFORE=`roc_hit`
7006     cancel_lru_locks osc
7007     cat $file >/dev/null
7008     AFTER=`roc_hit`
7009     if ! let "AFTER - BEFORE == 0"; then
7010         error_ignore 20762 "IN CACHE: before: $BEFORE, after: $AFTER"
7011     else
7012         log "cache hits:: before: $BEFORE, after: $AFTER"
7013     fi
7014
7015     log "Read again; it should be satisfied from the cache."
7016     BEFORE=`roc_hit`
7017     cancel_lru_locks osc
7018     cat $file >/dev/null
7019     AFTER=`roc_hit`
7020     if ! let "AFTER - BEFORE == CPAGES"; then
7021         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
7022     else
7023         log "cache hits:: before: $BEFORE, after: $AFTER"
7024     fi
7025
7026     rm -f $file
7027 }
7028 run_test 156 "Verification of tunables ============================"
7029
7030 #Changelogs
7031 err17935 () {
7032     if [ $MDSCOUNT -gt 1 ]; then
7033         error_ignore 17935 $*
7034     else
7035         error $*
7036     fi
7037 }
7038 test_160() {
7039     USER=$(do_facet $SINGLEMDS lctl --device $MDT0 changelog_register -n)
7040     echo "Registered as changelog user $USER"
7041     do_facet $SINGLEMDS lctl get_param -n mdd.$MDT0.changelog_users | \
7042         grep -q $USER || error "User $USER not found in changelog_users"
7043
7044     # change something
7045     mkdir -p $DIR/$tdir/pics/2008/zachy
7046     touch $DIR/$tdir/pics/2008/zachy/timestamp
7047     cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg
7048     mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
7049     ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
7050     ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
7051     rm $DIR/$tdir/pics/desktop.jpg
7052
7053     $LFS changelog $MDT0 | tail -5
7054
7055     echo "verifying changelog mask"
7056     do_facet $SINGLEMDS lctl set_param mdd.$MDT0.changelog_mask="-mkdir"
7057     mkdir -p $DIR/$tdir/pics/2009/sofia
7058     do_facet $SINGLEMDS lctl set_param mdd.$MDT0.changelog_mask="+mkdir"
7059     mkdir $DIR/$tdir/pics/2009/zachary
7060     DIRS=$($LFS changelog $MDT0 | tail -5 | grep -c MKDIR)
7061     [ $DIRS -eq 1 ] || err17935 "changelog mask count $DIRS != 1"
7062
7063     # verify contents
7064     echo "verifying target fid"
7065     fidc=$($LFS changelog $MDT0 | grep timestamp | grep "CREAT" | \
7066         tail -1 | awk '{print $6}')
7067     fidf=$($LFS path2fid $DIR/$tdir/pics/zach/timestamp)
7068     [ "$fidc" == "t=$fidf" ] || \
7069         err17935 "fid in changelog $fidc != file fid $fidf"
7070     echo "verifying parent fid"
7071     fidc=$($LFS changelog $MDT0 | grep timestamp | grep "CREAT" | \
7072         tail -1 | awk '{print $7}')
7073     fidf=$($LFS path2fid $DIR/$tdir/pics/zach)
7074     [ "$fidc" == "p=$fidf" ] || \
7075         err17935 "pfid in changelog $fidc != dir fid $fidf"
7076
7077     USER_REC1=$(do_facet $SINGLEMDS lctl get_param -n \
7078         mdd.$MDT0.changelog_users | grep $USER | awk '{print $2}')
7079     $LFS changelog_clear $MDT0 $USER $(($USER_REC1 + 5))
7080     USER_REC2=$(do_facet $SINGLEMDS lctl get_param -n \
7081         mdd.$MDT0.changelog_users | grep $USER | awk '{print $2}')
7082     echo "verifying user clear: $(( $USER_REC1 + 5 )) == $USER_REC2"
7083     [ $USER_REC2 == $(($USER_REC1 + 5)) ] || \
7084         err17935 "user index should be $(($USER_REC1 + 5)); is $USER_REC2"
7085
7086     MIN_REC=$(do_facet $SINGLEMDS lctl get_param mdd.$MDT0.changelog_users | \
7087         awk 'min == "" || $2 < min {min = $2}; END {print min}')
7088     FIRST_REC=$($LFS changelog $MDT0 | head -1 | awk '{print $1}')
7089     echo "verifying min purge: $(( $MIN_REC + 1 )) == $FIRST_REC"
7090     [ $FIRST_REC == $(($MIN_REC + 1)) ] || \
7091         err17935 "first index should be $(($MIN_REC + 1)); is $FIRST_REC"
7092
7093     echo "verifying user deregister"
7094     do_facet $SINGLEMDS lctl --device $MDT0 changelog_deregister $USER
7095     do_facet $SINGLEMDS lctl get_param -n mdd.$MDT0.changelog_users | \
7096         grep -q $USER && error "User $USER still found in changelog_users"
7097
7098     USERS=$(( $(do_facet $SINGLEMDS lctl get_param -n \
7099         mdd.$MDT0.changelog_users | wc -l) - 2 ))
7100     if [ $USERS -eq 0 ]; then
7101         LAST_REC1=$(do_facet $SINGLEMDS lctl get_param -n \
7102             mdd.$MDT0.changelog_users | head -1 | awk '{print $3}')
7103         touch $DIR/$tdir/chloe
7104         LAST_REC2=$(do_facet $SINGLEMDS lctl get_param -n \
7105             mdd.$MDT0.changelog_users | head -1 | awk '{print $3}')
7106         echo "verify changelogs are off if we were the only user: $LAST_REC1 == $LAST_REC2"
7107         [ $LAST_REC1 == $LAST_REC2 ] || error "changelogs not off"
7108     else
7109         echo "$USERS other changelog users; can't verify off"
7110     fi
7111 }
7112 run_test 160 "changelog sanity"
7113
7114 test_161() {
7115     mkdir -p $DIR/$tdir
7116     cp /etc/hosts $DIR/$tdir/$tfile
7117     mkdir $DIR/$tdir/foo1
7118     mkdir $DIR/$tdir/foo2
7119     ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/sofia
7120     ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/zachary
7121     ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/luna
7122     ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/thor
7123     local FID=$($LFS path2fid $DIR/$tdir/$tfile | tr -d '[')
7124     if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
7125         $LFS fid2path $DIR $FID
7126         err17935 "bad link ea"
7127     fi
7128     # middle
7129     rm $DIR/$tdir/foo2/zachary
7130     # last
7131     rm $DIR/$tdir/foo2/thor
7132     # first
7133     rm $DIR/$tdir/$tfile
7134     # rename
7135     mv $DIR/$tdir/foo1/sofia $DIR/$tdir/foo2/maggie
7136     if [ "$($LFS fid2path $FSNAME --link 1 $FID)" != "$tdir/foo2/maggie" ]
7137         then
7138         $LFS fid2path $DIR $FID
7139         err17935 "bad link rename"
7140     fi
7141     rm $DIR/$tdir/foo2/maggie
7142
7143     # overflow the EA
7144     local longname=filename_avg_len_is_thirty_two_
7145     createmany -l$DIR/$tdir/foo1/luna $DIR/$tdir/foo2/$longname 1000 || \
7146         error "failed to hardlink many files"
7147     links=$($LFS fid2path $DIR $FID | wc -l)
7148     echo -n "${links}/1000 links in link EA"
7149     [ ${links} -gt 60 ] || err17935 "expected at least 60 links in link EA"
7150     unlinkmany $DIR/$tdir/foo2/$longname 1000 || \
7151         error "failed to unlink many hardlinks"
7152 }
7153 run_test 161 "link ea sanity"
7154
7155 check_path() {
7156     local expected=$1
7157     shift
7158     local fid=$2
7159
7160     local path=$(${LFS} fid2path $*)
7161     RC=$?
7162
7163     if [ $RC -ne 0 ]; then
7164         err17935 "path looked up of $expected failed. Error $RC"
7165         return $RC
7166     elif [ "${path}" != "${expected}" ]; then
7167         err17935 "path looked up \"${path}\" instead of \"${expected}\""
7168         return 2
7169     fi
7170     echo "fid $fid resolves to path $path (expected $expected)"
7171 }
7172
7173 test_162() {
7174         # Make changes to filesystem
7175         mkdir -p $DIR/$tdir/d2
7176         touch $DIR/$tdir/d2/$tfile
7177         touch $DIR/$tdir/d2/x1
7178         touch $DIR/$tdir/d2/x2
7179         mkdir -p $DIR/$tdir/d2/a/b/c
7180         mkdir -p $DIR/$tdir/d2/p/q/r
7181         # regular file
7182         FID=$($LFS path2fid $DIR/$tdir/d2/$tfile | tr -d '[]')
7183         check_path "$tdir/d2/$tfile" $FSNAME $FID --link 0
7184
7185         # softlink
7186         ln -s $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/slink
7187         FID=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink | tr -d '[]')
7188         check_path "$tdir/d2/p/q/r/slink" $FSNAME $FID --link 0
7189
7190         # softlink to wrong file
7191         ln -s /this/is/garbage $DIR/$tdir/d2/p/q/r/slink.wrong
7192         FID=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink.wrong | tr -d '[]')
7193         check_path "$tdir/d2/p/q/r/slink.wrong" $FSNAME $FID --link 0
7194
7195         # hardlink
7196         ln $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/hlink
7197         mv $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/a/b/c/new_file
7198         FID=$($LFS path2fid $DIR/$tdir/d2/a/b/c/new_file | tr -d '[]')
7199         # fid2path dir/fsname should both work
7200         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $FID --link 1
7201         check_path "$DIR/$tdir/d2/p/q/r/hlink" $DIR $FID --link 0
7202
7203         # hardlink count: check that there are 2 links
7204         # Doesnt work with CMD yet: 17935
7205         ${LFS} fid2path $DIR $FID | wc -l | grep -q 2 || \
7206                 err17935 "expected 2 links"
7207
7208         # hardlink indexing: remove the first link
7209         rm $DIR/$tdir/d2/p/q/r/hlink
7210         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $FID --link 0
7211
7212         return 0
7213 }
7214 run_test 162 "path lookup sanity"
7215
7216 test_163() {
7217         remote_mds_nodsh && skip "remote MDS with nodsh" && return
7218         copytool --test $FSNAME || { skip "copytool not runnable: $?" && return; }
7219         copytool $FSNAME &
7220         sleep 1
7221         local uuid=$($LCTL get_param -n mdc.${FSNAME}-MDT0000-mdc-*.uuid)
7222         # this proc file is temporary and linux-only
7223         do_facet $SINGLEMDS lctl set_param mdt.${FSNAME}-MDT0000.mdccomm=$uuid ||\
7224          error "kernel->userspace send failed"
7225         kill -INT $!
7226 }
7227 run_test 163 "kernel <-> userspace comms"
7228
7229 test_169() {
7230         # do directio so as not to populate the page cache
7231         log "creating a 10 Mb file"
7232         multiop $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
7233         log "starting reads"
7234         dd if=$DIR/$tfile of=/dev/null bs=4096 &
7235         log "truncating the file"
7236         multiop $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
7237         log "killing dd"
7238         kill %+ || true # reads might have finished
7239         echo "wait until dd is finished"
7240         wait
7241         log "removing the temporary file"
7242         rm -rf $DIR/$tfile || error "tmp file removal failed"
7243 }
7244 run_test 169 "parallel read and truncate should not deadlock"
7245
7246 test_170() {
7247         $LCTL clear     # bug 18514
7248         $LCTL debug_daemon start $TMP/${tfile}_log_good
7249         touch $DIR/$tfile
7250         $LCTL debug_daemon stop
7251         sed -e "s/^...../a/g" $TMP/${tfile}_log_good > $TMP/${tfile}_log_bad ||
7252                error "sed failed to read log_good"
7253
7254         $LCTL debug_daemon start $TMP/${tfile}_log_good
7255         rm -rf $DIR/$tfile
7256         $LCTL debug_daemon stop
7257
7258         $LCTL df $TMP/${tfile}_log_bad > $TMP/${tfile}_log_bad.out 2>&1 ||
7259                error "lctl df log_bad failed"
7260
7261         local bad_line=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
7262         local good_line1=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
7263
7264         $LCTL df $TMP/${tfile}_log_good > $TMP/${tfile}_log_good.out 2>&1
7265         local good_line2=$(tail -n 1 $TMP/${tfile}_log_good.out | awk '{print $5}')
7266
7267         [ "$bad_line" ] && [ "$good_line1" ] && [ "$good_line2" ] ||
7268                 error "bad_line good_line1 good_line2 are empty"
7269
7270         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
7271         cat $TMP/${tfile}_log_bad >> $TMP/${tfile}_logs_corrupt
7272         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
7273
7274         $LCTL df $TMP/${tfile}_logs_corrupt > $TMP/${tfile}_log_bad.out 2>&1
7275         local bad_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
7276         local good_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
7277
7278         [ "$bad_line_new" ] && [ "$good_line_new" ] ||
7279                 error "bad_line_new good_line_new are empty"
7280
7281         local expected_good=$((good_line1 + good_line2*2))
7282
7283         rm -f $TMP/${tfile}*
7284         if [ $bad_line -ne $bad_line_new ]; then
7285                 error "expected $bad_line bad lines, but got $bad_line_new"
7286                 return 1
7287         fi
7288
7289         if [ $expected_good -ne $good_line_new ]; then
7290                 error "expected $expected_good good lines, but got $good_line_new"
7291                 return 2
7292         fi
7293         true
7294 }
7295 run_test 170 "test lctl df to handle corrupted log ====================="
7296
7297 test_171() { # bug20592
7298 #define OBD_FAIL_PTLRPC_DUMP_LOG         0x50e
7299         $LCTL set_param fail_loc=0x50e
7300         $LCTL set_param fail_val=3000
7301         multiop_bg_pause $DIR/$tfile Os || true
7302         # cause log dump
7303         sleep 3
7304         if dmesg | grep "recursive fault"; then
7305                 error "caught a recursive fault"
7306         fi
7307         $LCTL set_param fail_loc=0
7308         true
7309 }
7310 run_test 171 "test libcfs_debug_dumplog_thread stuck in do_exit() ======"
7311
7312 # it would be good to share it with obdfilter-survey/libecho code
7313 setup_obdecho_osc () {
7314         local rc=0
7315         local ost_nid=$1
7316         local obdfilter_name=$2
7317         echo "Creating new osc for $obdfilter_name on $ost_nid"
7318         [ $rc -eq 0 ] && { $LCTL attach osc ${obdfilter_name}_osc     \
7319                            ${obdfilter_name}_osc_UUID || rc=2; }
7320         [ $rc -eq 0 ] && { $LCTL --device ${obdfilter_name}_osc setup \
7321                            ${obdfilter_name}_UUID  $ost_nid || rc=3; }
7322         return $rc
7323 }
7324
7325 cleanup_obdecho_osc () {
7326         local obdfilter_name=$1
7327         $LCTL --device ${obdfilter_name}_osc cleanup >/dev/null
7328         $LCTL --device ${obdfilter_name}_osc detach  >/dev/null
7329         return 0
7330 }
7331
7332 obdecho_create_test() {
7333         local OBD=$1
7334         local node=$2
7335         local rc=0
7336         local id
7337         do_facet $node "$LCTL attach echo_client ec ec_uuid" || rc=1
7338         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec setup $OBD" ||
7339                            rc=2; }
7340         if [ $rc -eq 0 ]; then
7341             id=$(do_facet $node "$LCTL --device ec create 1"  | awk '/object id/ {print $6}')
7342             [ ${PIPESTATUS[0]} -eq 0 -a -n "$id" ] || rc=3
7343         fi
7344         echo "New object id is $id"
7345         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec test_brw 10 w v 64 $id" ||
7346                            rc=4; }
7347         [ $rc -eq 0 -o $rc -gt 2 ] && { do_facet $node "$LCTL --device ec "    \
7348                                         "cleanup" || rc=5; }
7349         [ $rc -eq 0 -o $rc -gt 1 ] && { do_facet $node "$LCTL --device ec "    \
7350                                         "detach" || rc=6; }
7351         [ $rc -ne 0 ] && echo "obecho_create_test failed: $rc"
7352         return $rc
7353 }
7354
7355 test_180a() {
7356         local rc=0
7357         local rmmod_local=0
7358
7359         if ! module_loaded obdecho; then
7360             load_module obdecho/obdecho 
7361             rmmod_local=1           
7362         fi
7363
7364         local osc=$($LCTL dl | grep -v mdt | awk '$3 == "osc" {print $4; exit}')
7365         local host=$(awk '/current_connection:/ {print $2}' /proc/fs/lustre/osc/$osc/import)
7366         local target=$(awk '/target:/ {print $2}' /proc/fs/lustre/osc/$osc/import)
7367         target=${target%_UUID}
7368         
7369         [[ -n $target ]]  && { setup_obdecho_osc $host $target || rc=1; } || rc=1
7370         [ $rc -eq 0 ] && { obdecho_create_test ${target}_osc client || rc=2; }
7371         [[ -n $target ]] && cleanup_obdecho_osc $target
7372         [ $rmmod_local -eq 1 ] && rmmod obdecho
7373         return $rc
7374 }
7375 run_test 180a "test obdecho on osc"
7376
7377 test_180b() {
7378         local rc=0
7379         local rmmod_remote=0
7380
7381         do_facet ost "lsmod | grep -q obdecho || "                      \
7382                      "{ insmod ${LUSTRE}/obdecho/obdecho.ko || "        \
7383                      "modprobe obdecho; }" && rmmod_remote=1
7384         target=$(do_facet ost $LCTL dl | awk '/obdfilter/ {print $4;exit}')
7385         [[ -n $target ]] && { obdecho_create_test $target ost || rc=1; }
7386         [ $rmmod_remote -eq 1 ] && do_facet ost "rmmod obdecho"
7387         return $rc
7388 }
7389 run_test 180b "test obdecho directly on obdfilter"
7390
7391 # OST pools tests
7392 POOL=${POOL:-cea1}
7393 TGT_COUNT=$OSTCOUNT
7394 TGTPOOL_FIRST=1
7395 TGTPOOL_MAX=$(($TGT_COUNT - 1))
7396 TGTPOOL_STEP=2
7397 TGTPOOL_LIST=`seq $TGTPOOL_FIRST $TGTPOOL_STEP $TGTPOOL_MAX`
7398 POOL_ROOT=${POOL_ROOT:-$DIR/d200.pools}
7399 POOL_DIR_NAME=dir_tst
7400 POOL_DIR=$POOL_ROOT/$POOL_DIR_NAME
7401 POOL_FILE=$POOL_ROOT/file_tst
7402
7403 check_file_in_pool()
7404 {
7405         file=$1
7406         res=$($GETSTRIPE $file | grep 0x | cut -f2)
7407         for i in $res
7408         do
7409                 found=$(echo :$TGTPOOL_LIST: | tr " " ":"  | grep :$i:)
7410                 if [[ "$found" == "" ]]
7411                 then
7412                         echo "pool list: $TGTPOOL_LIST"
7413                         echo "striping: $res"
7414                         error "$file not allocated in $POOL"
7415                         return 1
7416                 fi
7417         done
7418         return 0
7419 }
7420
7421 trap "cleanup_pools $FSNAME" EXIT
7422
7423 test_200a() {
7424         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
7425     create_pool $FSNAME.$POOL || return $?
7426         [ $($LFS pool_list $FSNAME | grep -c $POOL) -eq 1 ] ||
7427                 error "$POOL not in lfs pool_list"
7428 }
7429 run_test 200a "Create new pool =========================================="
7430
7431 test_200b() {
7432         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
7433         TGT=$(for i in $TGTPOOL_LIST; do printf "$FSNAME-OST%04x_UUID " $i; done)
7434         do_facet mgs $LCTL pool_add $FSNAME.$POOL \
7435                 $FSNAME-OST[$TGTPOOL_FIRST-$TGTPOOL_MAX/$TGTPOOL_STEP]
7436         wait_update $HOSTNAME "lctl get_param -n lov.$FSNAME-*.pools.$POOL | sort -u | tr '\n' ' ' " "$TGT" ||
7437                 error "Add to pool failed"
7438         local lfscount=$($LFS pool_list $FSNAME.$POOL | grep -c "\-OST")
7439         local addcount=$((($TGTPOOL_MAX - $TGTPOOL_FIRST) / $TGTPOOL_STEP + 1))
7440         [ $lfscount -eq $addcount ] ||
7441                 error "lfs pool_list bad ost count $lfscount != $addcount"
7442 }
7443 run_test 200b "Add targets to a pool ===================================="
7444
7445 test_200c() {
7446         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
7447         mkdir -p $POOL_DIR
7448         $SETSTRIPE -c 2 -p $POOL $POOL_DIR
7449         [ $? = 0 ] || error "Cannot set pool $POOL to $POOL_DIR"
7450         # b-19919 test relative path works well
7451         mkdir -p $POOL_DIR/$POOL_DIR_NAME
7452         cd $POOL_DIR
7453         $SETSTRIPE -c 2 -p $POOL $POOL_DIR_NAME
7454         [ $? = 0 ] || error "Cannot set pool $POOL to $POOL_DIR/$POOL_DIR_NAME"
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/$POOL_DIR_NAME
7460         [ $? = 0 ] || error "Cannot set pool $POOL to $POOL_DIR/../$POOL_DIR_NAME/$POOL_DIR_NAME"
7461         rm -rf $POOL_DIR_NAME; cd -
7462 }
7463 run_test 200c "Set pool on a directory ================================="
7464
7465 test_200d() {
7466         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
7467         res=$($GETSTRIPE --pool $POOL_DIR)
7468         [ $res = $POOL ] || error "Pool on $POOL_DIR is $res, not $POOL"
7469 }
7470 run_test 200d "Check pool on a directory ==============================="
7471
7472 test_200e() {
7473         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
7474         failed=0
7475         for i in $(seq -w 1 $(($TGT_COUNT * 3)))
7476         do
7477                 file=$POOL_DIR/file-$i
7478                 touch $file
7479                 check_file_in_pool $file
7480                 if [[ $? != 0 ]]
7481                 then
7482                         failed=$(($failed + 1))
7483                 fi
7484         done
7485         [ "$failed" = 0 ] || error "$failed files not allocated in $POOL"
7486 }
7487 run_test 200e "Check files allocation from directory pool =============="
7488
7489 test_200f() {
7490         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
7491         mkdir -p $POOL_FILE
7492         failed=0
7493         for i in $(seq -w 1 $(($TGT_COUNT * 3)))
7494         do
7495                 file=$POOL_FILE/spoo-$i
7496                 $SETSTRIPE -p $POOL $file
7497                 check_file_in_pool $file
7498                 if [[ $? != 0 ]]
7499                 then
7500                         failed=$(($failed + 1))
7501                 fi
7502         done
7503         [ "$failed" = 0 ] || error "$failed files not allocated in $POOL"
7504 }
7505 run_test 200f "Create files in a pool ==================================="
7506
7507 test_200g() {
7508         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
7509         TGT=$($LCTL get_param -n lov.$FSNAME-clilov-*.pools.$POOL | tr '\n' ' ')
7510         res=$($LFS df --pool $FSNAME.$POOL | awk '{print $1}' | grep "$FSNAME-OST" | tr '\n' ' ')
7511         [ "$res" = "$TGT" ] || error "Pools OSTs '$TGT' is not '$res' that lfs df reports"
7512 }
7513 run_test 200g "lfs df a pool ============================================"
7514
7515 test_200h() { # b=24039
7516         mkdir -p $POOL_DIR || error "unable to create $POOL_DIR"
7517
7518         local file="/..$POOL_DIR/$tfile-1"
7519         $SETSTRIPE -p $POOL $file || error "unable to create $file"
7520
7521         cd $POOL_DIR
7522         $SETSTRIPE -p $POOL $tfile-2 || \
7523                 error "unable to create $tfile-2 in $POOL_DIR"
7524 }
7525 run_test 200h "Create files in a pool with relative pathname ============"
7526
7527 test_201a() {
7528         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
7529         TGT=$($LCTL get_param -n lov.$FSNAME-*.pools.$POOL | head -1)
7530         do_facet mgs $LCTL pool_remove $FSNAME.$POOL $TGT
7531         wait_update $HOSTNAME "lctl get_param -n lov.$FSNAME-*.pools.$POOL | grep $TGT" "" ||
7532                 error "$TGT not removed from $FSNAME.$POOL"
7533 }
7534 run_test 201a "Remove a target from a pool ============================="
7535
7536 test_201b() {
7537         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
7538         for TGT in $($LCTL get_param -n lov.$FSNAME-*.pools.$POOL | sort -u)
7539         do
7540                 do_facet mgs $LCTL pool_remove $FSNAME.$POOL $TGT
7541         done
7542         wait_update $HOSTNAME "lctl get_param -n lov.$FSNAME-*.pools.$POOL" "" ||
7543                 error "Pool $FSNAME.$POOL cannot be drained"
7544         # striping on an empty/nonexistant pool should fall back to "pool of everything"
7545         touch ${POOL_DIR}/$tfile || error "failed to use fallback striping for empty pool"
7546         # setstripe on an empty pool should fail
7547         $SETSTRIPE -p $POOL ${POOL_FILE}/$tfile 2>/dev/null && \
7548                 error "expected failure when creating file with empty pool"
7549         return 0
7550 }
7551 run_test 201b "Remove all targets from a pool =========================="
7552
7553 test_201c() {
7554         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
7555         do_facet mgs $LCTL pool_destroy $FSNAME.$POOL
7556         
7557         sleep 2                        
7558     # striping on an empty/nonexistant pool should fall back to "pool of everything"
7559         touch ${POOL_DIR}/$tfile || error "failed to use fallback striping for missing pool"
7560         # setstripe on an empty pool should fail
7561         $SETSTRIPE -p $POOL ${POOL_FILE}/$tfile 2>/dev/null && \
7562                 error "expected failure when creating file with missing pool"
7563
7564         # get param should return err once pool is gone
7565         if wait_update $HOSTNAME "lctl get_param -n lov.$FSNAME-*.pools.$POOL 2>/dev/null ||
7566                         echo foo" "foo"; then
7567                 remove_pool_from_list $FSNAME.$POOL
7568                 return 0
7569         fi
7570         error "Pool $FSNAME.$POOL is not destroyed"
7571 }
7572 run_test 201c "Remove a pool ============================================"
7573
7574 cleanup_pools $FSNAME
7575
7576 test_212() {
7577         size=`date +%s`
7578         size=$((size % 8192 + 1))
7579         dd if=/dev/urandom of=$DIR/f212 bs=1k count=$size
7580         sendfile $DIR/f212 $DIR/f212.xyz || error "sendfile wrong"
7581         rm -f $DIR/f212 $DIR/f212.xyz
7582 }
7583 run_test 212 "Sendfile test ============================================"
7584
7585 test_213() {
7586         dd if=/dev/zero of=$DIR/$tfile bs=4k count=4
7587         cancel_lru_locks osc
7588         lctl set_param fail_loc=0x8000040f
7589         # generate a read lock
7590         cat $DIR/$tfile > /dev/null
7591         # write to the file, it will try to cancel the above read lock.
7592         cat /etc/hosts >> $DIR/$tfile
7593 }
7594 run_test 213 "OSC lock completion and cancel race don't crash - bug 18829"
7595
7596 test_214() { # for bug 20133
7597         mkdir -p $DIR/d214p/d214c
7598         for (( i=0; i < 340; i++ )) ; do
7599                 touch $DIR/d214p/d214c/a$i
7600         done
7601
7602         ls -l $DIR/d214p || error "ls -l $DIR/d214p failed"
7603         mv $DIR/d214p/d214c $DIR/ || error "mv $DIR/d214p/d214c $DIR/ failed"
7604         ls $DIR/d214c || error "ls $DIR/d214c failed"
7605         rm -rf $DIR/d214* || error "rm -rf $DIR/d214* failed"
7606 }
7607 run_test 214 "hash-indexed directory test - bug 20133"
7608
7609 # having "abc" as 1st arg, creates $TMP/lnet_abc.out and $TMP/lnet_abc.sys
7610 create_lnet_proc_files() {
7611         cat /proc/sys/lnet/$1 >$TMP/lnet_$1.out || error "cannot read /proc/sys/lnet/$1"
7612         sysctl lnet.$1 >$TMP/lnet_$1.sys_tmp || error "cannot read lnet.$1"
7613
7614         sed "s/^lnet.$1\ =\ //g" "$TMP/lnet_$1.sys_tmp" >$TMP/lnet_$1.sys
7615         rm -f "$TMP/lnet_$1.sys_tmp"
7616 }
7617
7618 # counterpart of create_lnet_proc_files
7619 remove_lnet_proc_files() {
7620         rm -f $TMP/lnet_$1.out $TMP/lnet_$1.sys
7621 }
7622
7623 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
7624 # 3rd arg as regexp for body
7625 check_lnet_proc_stats() {
7626         local l=$(cat "$TMP/lnet_$1" |wc -l)
7627         [ $l = 1 ] || (cat "$TMP/lnet_$1" && error "$2 is not of 1 line: $l")
7628
7629         grep -E "$3" "$TMP/lnet_$1" || (cat "$TMP/lnet_$1" && error "$2 misformatted")
7630 }
7631
7632 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
7633 # 3rd arg as regexp for body, 4th arg as regexp for 1st line, 5th arg is
7634 # optional and can be regexp for 2nd line (lnet.routes case)
7635 check_lnet_proc_entry() {
7636         local blp=2            # blp stands for 'position of 1st line of body'
7637         [ "$5" = "" ] || blp=3 # lnet.routes case
7638
7639         local l=$(cat "$TMP/lnet_$1" |wc -l)
7640         # subtracting one from $blp because the body can be empty
7641         [ "$l" -ge "$(($blp - 1))" ] || (cat "$TMP/lnet_$1" && error "$2 is too short: $l")
7642
7643         sed -n '1 p' "$TMP/lnet_$1" |grep -E "$4" >/dev/null ||
7644                 (cat "$TMP/lnet_$1" && error "1st line of $2 misformatted")
7645
7646         [ "$5" = "" ] || sed -n '2 p' "$TMP/lnet_$1" |grep -E "$5" >/dev/null ||
7647                 (cat "$TMP/lnet_$1" && error "2nd line of $2 misformatted")
7648
7649         # bail out if any unexpected line happened
7650         sed -n "$blp~1 p" "$TMP/lnet_$1" |grep -Ev "$3"
7651         [ "$?" != 0 ] || error "$2 misformatted"
7652 }
7653
7654 test_215() { # for bugs 18102, 21079, 21517
7655         local N='(0|[1-9][0-9]*)'   # non-negative numeric
7656         local P='[1-9][0-9]*'       # positive numeric
7657         local I='(0|-?[1-9][0-9]*)' # any numeric (0 | >0 | <0)
7658         local NET='[a-z][a-z0-9]*'  # LNET net like o2ib2
7659         local ADDR='[0-9.]+'        # LNET addr like 10.0.0.1
7660         local NID="$ADDR@$NET"      # LNET nid like 10.0.0.1@o2ib2
7661
7662         local L1 # regexp for 1st line
7663         local L2 # regexp for 2nd line (optional)
7664         local BR # regexp for the rest (body)
7665
7666         # /proc/sys/lnet/stats should look as 11 space-separated non-negative numerics
7667         BR="^$N $N $N $N $N $N $N $N $N $N $N$"
7668         create_lnet_proc_files "stats"
7669         check_lnet_proc_stats "stats.out" "/proc/sys/lnet/stats" "$BR"
7670         check_lnet_proc_stats "stats.sys" "lnet.stats" "$BR"
7671         remove_lnet_proc_files "stats"
7672
7673         # /proc/sys/lnet/routes should look like this:
7674         # Routing disabled/enabled
7675         # net hops state router
7676         # where net is a string like tcp0, hops >= 0, state is up/down,
7677         # router is a string like 192.168.1.1@tcp2
7678         L1="^Routing (disabled|enabled)$"
7679         L2="^net +hops +state +router$"
7680         BR="^$NET +$N +(up|down) +$NID$"
7681         create_lnet_proc_files "routes"
7682         check_lnet_proc_entry "routes.out" "/proc/sys/lnet/routes" "$BR" "$L1" "$L2"
7683         check_lnet_proc_entry "routes.sys" "lnet.routes" "$BR" "$L1" "$L2"
7684         remove_lnet_proc_files "routes"
7685
7686         # /proc/sys/lnet/routers should look like this:
7687         # ref rtr_ref alive_cnt state last_ping ping_sent deadline down_ni router
7688         # where ref > 0, rtr_ref > 0, alive_cnt >= 0, state is up/down,
7689         # last_ping >= 0, ping_sent is boolean (0/1), deadline and down_ni are
7690         # numeric (0 or >0 or <0), router is a string like 192.168.1.1@tcp2
7691         L1="^ref +rtr_ref +alive_cnt +state +last_ping +ping_sent +deadline +down_ni +router$"
7692         BR="^$P +$P +$N +(up|down) +$N +(0|1) +$I +$I +$NID$"
7693         create_lnet_proc_files "routers"
7694         check_lnet_proc_entry "routers.out" "/proc/sys/lnet/routers" "$BR" "$L1"
7695         check_lnet_proc_entry "routers.sys" "lnet.routers" "$BR" "$L1"
7696         remove_lnet_proc_files "routers"
7697
7698         # /proc/sys/lnet/peers should look like this:
7699         # nid refs state last max rtr min tx min queue
7700         # where nid is a string like 192.168.1.1@tcp2, refs > 0,
7701         # state is up/down/NA, max >= 0. last, rtr, min, tx, min are
7702         # numeric (0 or >0 or <0), queue >= 0.
7703         L1="^nid +refs +state +last +max +rtr +min +tx +min +queue$"
7704         BR="^$NID +$P +(up|down|NA) +$I +$N +$I +$I +$I +$I +$N$"
7705         create_lnet_proc_files "peers"
7706         check_lnet_proc_entry "peers.out" "/proc/sys/lnet/peers" "$BR" "$L1"
7707         check_lnet_proc_entry "peers.sys" "lnet.peers" "$BR" "$L1"
7708         remove_lnet_proc_files "peers"
7709
7710         # /proc/sys/lnet/buffers  should look like this:
7711         # pages count credits min
7712         # where pages >=0, count >=0, credits and min are numeric (0 or >0 or <0)
7713         L1="^pages +count +credits +min$"
7714         BR="^ +$N +$N +$I +$I$"
7715         create_lnet_proc_files "buffers"
7716         check_lnet_proc_entry "buffers.out" "/proc/sys/lnet/buffers" "$BR" "$L1"
7717         check_lnet_proc_entry "buffers.sys" "lnet.buffers" "$BR" "$L1"
7718         remove_lnet_proc_files "buffers"
7719
7720         # /proc/sys/lnet/nis should look like this:
7721         # nid status alive refs peer rtr max tx min
7722         # where nid is a string like 192.168.1.1@tcp2, status is up/down,
7723         # alive is numeric (0 or >0 or <0), refs > 0, peer >= 0,
7724         # rtr >= 0, max >=0, tx and min are numeric (0 or >0 or <0).
7725         L1="^nid +status +alive +refs +peer +rtr +max +tx +min$"
7726         BR="^$NID +(up|down) +$I +$P +$N +$N +$N +$I +$I$"
7727         create_lnet_proc_files "nis"
7728         check_lnet_proc_entry "nis.out" "/proc/sys/lnet/nis" "$BR" "$L1"
7729         check_lnet_proc_entry "nis.sys" "lnet.nis" "$BR" "$L1"
7730         remove_lnet_proc_files "nis"
7731
7732         # can we successfully write to /proc/sys/lnet/stats?
7733         echo "0" >/proc/sys/lnet/stats || error "cannot write to /proc/sys/lnet/stats"
7734         sysctl -w lnet.stats=0 || error "cannot write to lnet.stats"
7735 }
7736 run_test 215 "/proc/sys/lnet exists and has proper content - bugs 18102, 21079, 21517"
7737
7738 test_216() { # bug 20317
7739         local node
7740         local p="$TMP/sanityN-$TESTNAME.parameters"
7741         save_lustre_params $HOSTNAME "osc.*.contention_seconds" > $p
7742         for node in $(osts_nodes); do
7743                 save_lustre_params $node "ldlm.namespaces.filter-*.max_nolock_bytes" >> $p
7744                 save_lustre_params $node "ldlm.namespaces.filter-*.contended_locks" >> $p
7745                 save_lustre_params $node "ldlm.namespaces.filter-*.contention_seconds" >> $p
7746         done
7747         clear_osc_stats
7748
7749         # agressive lockless i/o settings
7750         for node in $(osts_nodes); do
7751                 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'
7752         done
7753         lctl set_param -n osc.*.contention_seconds 60
7754
7755         $DIRECTIO write $DIR/$tfile 0 10 4096
7756         $CHECKSTAT -s 40960 $DIR/$tfile
7757
7758         # disable lockless i/o
7759         for node in $(osts_nodes); do
7760                 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'
7761         done
7762         lctl set_param -n osc.*.contention_seconds 0
7763         clear_osc_stats
7764
7765         dd if=/dev/zero of=$DIR/$tfile count=0
7766         $CHECKSTAT -s 0 $DIR/$tfile
7767
7768         restore_lustre_params <$p
7769         rm -f $p
7770         rm $DIR/$tfile
7771 }
7772 run_test 216 "check lockless direct write works and updates file size and kms correctly"
7773
7774 test_217() { # bug 22430
7775         local node
7776         for node in $(nodes_list); do
7777                 if [[ $node = *-* ]] ; then
7778                         echo "lctl ping $node@$NETTYPE"
7779                         lctl ping $node@$NETTYPE
7780                 else
7781                         echo "skipping $node (no hiphen detected)"
7782                 fi
7783         done
7784 }
7785 run_test 217 "check lctl ping for hostnames with hiphen ('-')"
7786
7787 test_218() {
7788        # do directio so as not to populate the page cache
7789        log "creating a 10 Mb file"
7790        multiop $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
7791        log "starting reads"
7792        dd if=$DIR/$tfile of=/dev/null bs=4096 &
7793        log "truncating the file"
7794        multiop $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
7795        log "killing dd"
7796        kill %+ || true # reads might have finished
7797        echo "wait until dd is finished"
7798        wait
7799        log "removing the temporary file"
7800        rm -rf $DIR/$tfile || error "tmp file removal failed"
7801 }
7802 run_test 218 "parallel read and truncate should not deadlock ======================="
7803
7804 #
7805 # tests that do cleanup/setup should be run at the end
7806 #
7807
7808 test_900() {
7809         local ls
7810         #define OBD_FAIL_MGC_PAUSE_PROCESS_LOG   0x903
7811         $LCTL set_param fail_loc=0x903
7812         # cancel_lru_locks mgc - does not work due to lctl set_param syntax
7813         for ls in /proc/fs/lustre/ldlm/namespaces/MGC*/lru_size; do
7814                 echo "clear" > $ls
7815         done
7816         FAIL_ON_ERROR=true cleanup
7817         FAIL_ON_ERROR=true setup
7818 }
7819 run_test 900 "umount should not race with any mgc requeue thread"
7820
7821 complete $(basename $0) $SECONDS
7822 check_and_cleanup_lustre
7823 if [ "$I_MOUNTED" != "yes" ]; then
7824         lctl set_param debug="$OLDDEBUG" 2> /dev/null || true
7825 fi
7826 exit_status