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