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