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