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