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