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