Whamcloud - gitweb
6e4e7ee7048382f4e15a9890bb3c0b96e13b9129
[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 run_test 39m "test atime and mtime before 1970"
2447
2448 test_40() {
2449         dd if=/dev/zero of=$DIR/f40 bs=4096 count=1
2450         $RUNAS $OPENFILE -f O_WRONLY:O_TRUNC $DIR/f40 && error
2451         $CHECKSTAT -t file -s 4096 $DIR/f40 || error
2452 }
2453 run_test 40 "failed open(O_TRUNC) doesn't truncate ============="
2454
2455 test_41() {
2456         # bug 1553
2457         small_write $DIR/f41 18
2458 }
2459 run_test 41 "test small file write + fstat ====================="
2460
2461 count_ost_writes() {
2462         lctl get_param -n osc.*.stats |
2463             awk -vwrites=0 '/ost_write/ { writes += $2 } END { print writes; }'
2464 }
2465
2466 # decent default
2467 WRITEBACK_SAVE=500
2468 DIRTY_RATIO_SAVE=40
2469 MAX_DIRTY_RATIO=50
2470 BG_DIRTY_RATIO_SAVE=10
2471 MAX_BG_DIRTY_RATIO=25
2472
2473 start_writeback() {
2474         trap 0
2475         # in 2.6, restore /proc/sys/vm/dirty_writeback_centisecs,
2476         # dirty_ratio, dirty_background_ratio
2477         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
2478                 sysctl -w vm.dirty_writeback_centisecs=$WRITEBACK_SAVE
2479                 sysctl -w vm.dirty_background_ratio=$BG_DIRTY_RATIO_SAVE
2480                 sysctl -w vm.dirty_ratio=$DIRTY_RATIO_SAVE
2481         else
2482                 # if file not here, we are a 2.4 kernel
2483                 kill -CONT `pidof kupdated`
2484         fi
2485 }
2486
2487 stop_writeback() {
2488         # setup the trap first, so someone cannot exit the test at the
2489         # exact wrong time and mess up a machine
2490         trap start_writeback EXIT
2491         # in 2.6, save and 0 /proc/sys/vm/dirty_writeback_centisecs
2492         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
2493                 WRITEBACK_SAVE=`sysctl -n vm.dirty_writeback_centisecs`
2494                 sysctl -w vm.dirty_writeback_centisecs=0
2495                 sysctl -w vm.dirty_writeback_centisecs=0
2496                 # save and increase /proc/sys/vm/dirty_ratio
2497                 DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_ratio`
2498                 sysctl -w vm.dirty_ratio=$MAX_DIRTY_RATIO
2499                 # save and increase /proc/sys/vm/dirty_background_ratio
2500                 BG_DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_background_ratio`
2501                 sysctl -w vm.dirty_background_ratio=$MAX_BG_DIRTY_RATIO
2502         else
2503                 # if file not here, we are a 2.4 kernel
2504                 kill -STOP `pidof kupdated`
2505         fi
2506 }
2507
2508 # ensure that all stripes have some grant before we test client-side cache
2509 setup_test42() {
2510         for i in `seq -f $DIR/f42-%g 1 $OSTCOUNT`; do
2511                 dd if=/dev/zero of=$i bs=4k count=1
2512                 rm $i
2513         done
2514 }
2515
2516 # Tests 42* verify that our behaviour is correct WRT caching, file closure,
2517 # file truncation, and file removal.
2518 test_42a() {
2519         setup_test42
2520         cancel_lru_locks osc
2521         stop_writeback
2522         sync; sleep 1; sync # just to be safe
2523         BEFOREWRITES=`count_ost_writes`
2524         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur_grant_bytes | grep "[0-9]"
2525         dd if=/dev/zero of=$DIR/f42a bs=1024 count=100
2526         AFTERWRITES=`count_ost_writes`
2527         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
2528                 error "$BEFOREWRITES < $AFTERWRITES"
2529         start_writeback
2530 }
2531 run_test 42a "ensure that we don't flush on close =============="
2532
2533 test_42b() {
2534         setup_test42
2535         cancel_lru_locks osc
2536         stop_writeback
2537         sync
2538         dd if=/dev/zero of=$DIR/f42b bs=1024 count=100
2539         BEFOREWRITES=`count_ost_writes`
2540         $MUNLINK $DIR/f42b || error "$MUNLINK $DIR/f42b: $?"
2541         AFTERWRITES=`count_ost_writes`
2542         if [ $BEFOREWRITES -lt $AFTERWRITES ]; then
2543                 error "$BEFOREWRITES < $AFTERWRITES on unlink"
2544         fi
2545         BEFOREWRITES=`count_ost_writes`
2546         sync || error "sync: $?"
2547         AFTERWRITES=`count_ost_writes`
2548         if [ $BEFOREWRITES -lt $AFTERWRITES ]; then
2549                 error "$BEFOREWRITES < $AFTERWRITES on sync"
2550         fi
2551         dmesg | grep 'error from obd_brw_async' && error 'error writing back'
2552         start_writeback
2553         return 0
2554 }
2555 run_test 42b "test destroy of file with cached dirty data ======"
2556
2557 # if these tests just want to test the effect of truncation,
2558 # they have to be very careful.  consider:
2559 # - the first open gets a {0,EOF}PR lock
2560 # - the first write conflicts and gets a {0, count-1}PW
2561 # - the rest of the writes are under {count,EOF}PW
2562 # - the open for truncate tries to match a {0,EOF}PR
2563 #   for the filesize and cancels the PWs.
2564 # any number of fixes (don't get {0,EOF} on open, match
2565 # composite locks, do smarter file size management) fix
2566 # this, but for now we want these tests to verify that
2567 # the cancellation with truncate intent works, so we
2568 # start the file with a full-file pw lock to match against
2569 # until the truncate.
2570 trunc_test() {
2571         test=$1
2572         file=$DIR/$test
2573         offset=$2
2574         cancel_lru_locks osc
2575         stop_writeback
2576         # prime the file with 0,EOF PW to match
2577         touch $file
2578         $TRUNCATE $file 0
2579         sync; sync
2580         # now the real test..
2581         dd if=/dev/zero of=$file bs=1024 count=100
2582         BEFOREWRITES=`count_ost_writes`
2583         $TRUNCATE $file $offset
2584         cancel_lru_locks osc
2585         AFTERWRITES=`count_ost_writes`
2586         start_writeback
2587 }
2588
2589 test_42c() {
2590         trunc_test 42c 1024
2591         [ $BEFOREWRITES -eq $AFTERWRITES ] && \
2592             error "beforewrites $BEFOREWRITES == afterwrites $AFTERWRITES on truncate"
2593         rm $file
2594 }
2595 run_test 42c "test partial truncate of file with cached dirty data"
2596
2597 test_42d() {
2598         trunc_test 42d 0
2599         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
2600             error "beforewrites $BEFOREWRITES != afterwrites $AFTERWRITES on truncate"
2601         rm $file
2602 }
2603 run_test 42d "test complete truncate of file with cached dirty data"
2604
2605 page_size() {
2606         getconf PAGE_SIZE
2607 }
2608
2609 test_42e() { # bug22074
2610         local TDIR=$DIR/${tdir}e
2611         local pagesz=$(page_size)
2612         local pages=16
2613         local files=$((OSTCOUNT * 500)) # hopefully 500 files on each OST
2614         local proc_osc0="osc.${FSNAME}-OST0000-osc-[^MDT]*"
2615         local max_dirty_mb
2616         local warmup_files
2617
2618         mkdir -p $TDIR
2619         $LFS setstripe -c 1 $TDIR
2620         createmany -o $TDIR/f $files
2621
2622         max_dirty_mb=$($LCTL get_param -n $proc_osc0/max_dirty_mb)
2623
2624         # we assume that with $OSTCOUNT files, at least one of them will
2625         # be allocated on OST0.
2626         warmup_files=$((OSTCOUNT * max_dirty_mb))
2627         createmany -o $TDIR/w $warmup_files
2628
2629         # write a large amount of data into one file and sync, to get good
2630         # avail_grant number from OST.
2631         for ((i=0; i<$warmup_files; i++)); do
2632                 idx=$($LFS getstripe -i $TDIR/w$i)
2633                 [ $idx -ne 0 ] && continue
2634                 dd if=/dev/zero of=$TDIR/w$i bs="$max_dirty_mb"M count=1
2635                 break
2636         done
2637         [ $i -gt $warmup_files ] && error "OST0 is still cold"
2638         sync
2639         $LCTL get_param $proc_osc0/cur_dirty_bytes
2640         $LCTL get_param $proc_osc0/cur_grant_bytes
2641
2642         # create as much dirty pages as we can while not to trigger the actual
2643         # RPCs directly. but depends on the env, VFS may trigger flush during this
2644         # period, hopefully we are good.
2645         for ((i=0; i<$warmup_files; i++)); do
2646                 idx=$($LFS getstripe -i $TDIR/w$i)
2647                 [ $idx -ne 0 ] && continue
2648                 dd if=/dev/zero of=$TDIR/w$i bs=1M count=1 2>/dev/null
2649         done
2650         $LCTL get_param $proc_osc0/cur_dirty_bytes
2651         $LCTL get_param $proc_osc0/cur_grant_bytes
2652
2653         # perform the real test
2654         $LCTL set_param $proc_osc0/rpc_stats 0
2655         for ((;i<$files; i++)); do
2656                 [ $($LFS getstripe -i $TDIR/f$i) -eq 0 ] || continue
2657                 dd if=/dev/zero of=$TDIR/f$i bs=$pagesz count=$pages 2>/dev/null
2658         done
2659         sync
2660         $LCTL get_param $proc_osc0/rpc_stats
2661
2662         $LCTL get_param $proc_osc0/rpc_stats |
2663                 while read PPR RRPC RPCT RCUM BAR WRPC WPCT WCUM; do
2664                         [ "$PPR" != "16:" ] && continue
2665                         [ $WPCT -lt 85 ] && error "$pages-page write RPCs only $WPCT% < 85%"
2666                         break # we only want the "pages per rpc" stat
2667                 done
2668         rm -rf $TDIR
2669 }
2670 run_test 42e "verify sub-RPC writes are not done synchronously"
2671
2672 test_43() {
2673         mkdir -p $DIR/$tdir
2674         cp -p /bin/ls $DIR/$tdir/$tfile
2675         multiop $DIR/$tdir/$tfile Ow_c &
2676         pid=$!
2677         # give multiop a chance to open
2678         sleep 1
2679
2680         $DIR/$tdir/$tfile && error || true
2681         kill -USR1 $pid
2682 }
2683 run_test 43 "execution of file opened for write should return -ETXTBSY"
2684
2685 test_43a() {
2686         mkdir -p $DIR/d43
2687         cp -p `which multiop` $DIR/d43/multiop || cp -p multiop $DIR/d43/multiop
2688         MULTIOP_PROG=$DIR/d43/multiop multiop_bg_pause $TMP/test43.junk O_c || return 1
2689         MULTIOP_PID=$!
2690         multiop $DIR/d43/multiop Oc && error "expected error, got success"
2691         kill -USR1 $MULTIOP_PID || return 2
2692         wait $MULTIOP_PID || return 3
2693         rm $TMP/test43.junk
2694 }
2695 run_test 43a "open(RDWR) of file being executed should return -ETXTBSY"
2696
2697 test_43b() {
2698         mkdir -p $DIR/d43
2699         cp -p `which multiop` $DIR/d43/multiop || cp -p multiop $DIR/d43/multiop
2700         MULTIOP_PROG=$DIR/d43/multiop multiop_bg_pause $TMP/test43.junk O_c || return 1
2701         MULTIOP_PID=$!
2702         $TRUNCATE $DIR/d43/multiop 0 && error "expected error, got success"
2703         kill -USR1 $MULTIOP_PID || return 2
2704         wait $MULTIOP_PID || return 3
2705         rm $TMP/test43.junk
2706 }
2707 run_test 43b "truncate of file being executed should return -ETXTBSY"
2708
2709 test_43c() {
2710         local testdir="$DIR/d43c"
2711         mkdir -p $testdir
2712         cp $SHELL $testdir/
2713         ( cd $(dirname $SHELL) && md5sum $(basename $SHELL) ) | \
2714                 ( cd $testdir && md5sum -c)
2715 }
2716 run_test 43c "md5sum of copy into lustre========================"
2717
2718 test_44() {
2719         [  "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
2720         dd if=/dev/zero of=$DIR/f1 bs=4k count=1 seek=1023
2721         dd if=$DIR/f1 bs=4k count=1 > /dev/null
2722 }
2723 run_test 44 "zero length read from a sparse stripe ============="
2724
2725 test_44a() {
2726     local nstripe=`$LCTL lov_getconfig $DIR | grep default_stripe_count: | \
2727                          awk '{print $2}'`
2728     [ -z "$nstripe" ] && skip "can't get stripe info" && return
2729     [ "$nstripe" -gt "$OSTCOUNT" ] && skip "Wrong default_stripe_count: $nstripe (OSTCOUNT: $OSTCOUNT)" && return
2730     local stride=`$LCTL lov_getconfig $DIR | grep default_stripe_size: | \
2731                       awk '{print $2}'`
2732     if [ $nstripe -eq 0 -o $nstripe -eq -1 ] ; then
2733         nstripe=`$LCTL lov_getconfig $DIR | grep obd_count: | awk '{print $2}'`
2734     fi
2735
2736     OFFSETS="0 $((stride/2)) $((stride-1))"
2737     for offset in $OFFSETS ; do
2738       for i in `seq 0 $((nstripe-1))`; do
2739         local GLOBALOFFSETS=""
2740         local size=$((((i + 2 * $nstripe )*$stride + $offset)))  # Bytes
2741         local myfn=$DIR/d44a-$size
2742         echo "--------writing $myfn at $size"
2743         ll_sparseness_write $myfn $size  || error "ll_sparseness_write"
2744         GLOBALOFFSETS="$GLOBALOFFSETS $size"
2745         ll_sparseness_verify $myfn $GLOBALOFFSETS \
2746                             || error "ll_sparseness_verify $GLOBALOFFSETS"
2747
2748         for j in `seq 0 $((nstripe-1))`; do
2749             size=$((((j + $nstripe )*$stride + $offset)))  # Bytes
2750             ll_sparseness_write $myfn $size || error "ll_sparseness_write"
2751             GLOBALOFFSETS="$GLOBALOFFSETS $size"
2752         done
2753         ll_sparseness_verify $myfn $GLOBALOFFSETS \
2754                             || error "ll_sparseness_verify $GLOBALOFFSETS"
2755         rm -f $myfn
2756       done
2757     done
2758 }
2759 run_test 44a "test sparse pwrite ==============================="
2760
2761 dirty_osc_total() {
2762         tot=0
2763         for d in `lctl get_param -n osc.*.cur_dirty_bytes`; do
2764                 tot=$(($tot + $d))
2765         done
2766         echo $tot
2767 }
2768 do_dirty_record() {
2769         before=`dirty_osc_total`
2770         echo executing "\"$*\""
2771         eval $*
2772         after=`dirty_osc_total`
2773         echo before $before, after $after
2774 }
2775 test_45() {
2776         f="$DIR/f45"
2777         # Obtain grants from OST if it supports it
2778         echo blah > ${f}_grant
2779         stop_writeback
2780         sync
2781         do_dirty_record "echo blah > $f"
2782         [ $before -eq $after ] && error "write wasn't cached"
2783         do_dirty_record "> $f"
2784         [ $before -gt $after ] || error "truncate didn't lower dirty count"
2785         do_dirty_record "echo blah > $f"
2786         [ $before -eq $after ] && error "write wasn't cached"
2787         do_dirty_record "sync"
2788         [ $before -gt $after ] || error "writeback didn't lower dirty count"
2789         do_dirty_record "echo blah > $f"
2790         [ $before -eq $after ] && error "write wasn't cached"
2791         do_dirty_record "cancel_lru_locks osc"
2792         [ $before -gt $after ] || error "lock cancellation didn't lower dirty count"
2793         start_writeback
2794 }
2795 run_test 45 "osc io page accounting ============================"
2796
2797 # in a 2 stripe file (lov.sh), page 1023 maps to page 511 in its object.  this
2798 # test tickles a bug where re-dirtying a page was failing to be mapped to the
2799 # objects offset and an assert hit when an rpc was built with 1023's mapped
2800 # offset 511 and 511's raw 511 offset. it also found general redirtying bugs.
2801 test_46() {
2802         f="$DIR/f46"
2803         stop_writeback
2804         sync
2805         dd if=/dev/zero of=$f bs=`page_size` seek=511 count=1
2806         sync
2807         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=1023 count=1
2808         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=511 count=1
2809         sync
2810         start_writeback
2811 }
2812 run_test 46 "dirtying a previously written page ================"
2813
2814 # test_47 is removed "Device nodes check" is moved to test_28
2815
2816 test_48a() { # bug 2399
2817         check_kernel_version 34 || return 0
2818         mkdir -p $DIR/d48a
2819         cd $DIR/d48a
2820         mv $DIR/d48a $DIR/d48.new || error "move directory failed"
2821         mkdir $DIR/d48a || error "recreate directory failed"
2822         touch foo || error "'touch foo' failed after recreating cwd"
2823         mkdir bar || error "'mkdir foo' failed after recreating cwd"
2824         if check_kernel_version 44; then
2825                 touch .foo || error "'touch .foo' failed after recreating cwd"
2826                 mkdir .bar || error "'mkdir .foo' failed after recreating cwd"
2827         fi
2828         ls . > /dev/null || error "'ls .' failed after recreating cwd"
2829         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
2830         cd . || error "'cd .' failed after recreating cwd"
2831         mkdir . && error "'mkdir .' worked after recreating cwd"
2832         rmdir . && error "'rmdir .' worked after recreating cwd"
2833         ln -s . baz || error "'ln -s .' failed after recreating cwd"
2834         cd .. || error "'cd ..' failed after recreating cwd"
2835 }
2836 run_test 48a "Access renamed working dir (should return errors)="
2837
2838 test_48b() { # bug 2399
2839         check_kernel_version 34 || return 0
2840         mkdir -p $DIR/d48b
2841         cd $DIR/d48b
2842         rmdir $DIR/d48b || error "remove cwd $DIR/d48b failed"
2843         touch foo && error "'touch foo' worked after removing cwd"
2844         mkdir foo && error "'mkdir foo' worked after removing cwd"
2845         if check_kernel_version 44; then
2846                 touch .foo && error "'touch .foo' worked after removing cwd"
2847                 mkdir .foo && error "'mkdir .foo' worked after removing cwd"
2848         fi
2849         ls . > /dev/null && error "'ls .' worked after removing cwd"
2850         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
2851         is_patchless || ( cd . && error "'cd .' worked after removing cwd" )
2852         mkdir . && error "'mkdir .' worked after removing cwd"
2853         rmdir . && error "'rmdir .' worked after removing cwd"
2854         ln -s . foo && error "'ln -s .' worked after removing cwd"
2855         cd .. || echo "'cd ..' failed after removing cwd `pwd`"  #bug 3517
2856 }
2857 run_test 48b "Access removed working dir (should return errors)="
2858
2859 test_48c() { # bug 2350
2860         check_kernel_version 36 || return 0
2861         #lctl set_param debug=-1
2862         #set -vx
2863         mkdir -p $DIR/d48c/dir
2864         cd $DIR/d48c/dir
2865         $TRACE rmdir $DIR/d48c/dir || error "remove cwd $DIR/d48c/dir failed"
2866         $TRACE touch foo && error "'touch foo' worked after removing cwd"
2867         $TRACE mkdir foo && error "'mkdir foo' worked after removing cwd"
2868         if check_kernel_version 44; then
2869                 touch .foo && error "'touch .foo' worked after removing cwd"
2870                 mkdir .foo && error "'mkdir .foo' worked after removing cwd"
2871         fi
2872         $TRACE ls . && error "'ls .' worked after removing cwd"
2873         $TRACE ls .. || error "'ls ..' failed after removing cwd"
2874         is_patchless || ( $TRACE cd . && error "'cd .' worked after removing cwd" )
2875         $TRACE mkdir . && error "'mkdir .' worked after removing cwd"
2876         $TRACE rmdir . && error "'rmdir .' worked after removing cwd"
2877         $TRACE ln -s . foo && error "'ln -s .' worked after removing cwd"
2878         $TRACE cd .. || echo "'cd ..' failed after removing cwd `pwd`" #bug 3415
2879 }
2880 run_test 48c "Access removed working subdir (should return errors)"
2881
2882 test_48d() { # bug 2350
2883         check_kernel_version 36 || return 0
2884         #lctl set_param debug=-1
2885         #set -vx
2886         mkdir -p $DIR/d48d/dir
2887         cd $DIR/d48d/dir
2888         $TRACE rmdir $DIR/d48d/dir || error "remove cwd $DIR/d48d/dir failed"
2889         $TRACE rmdir $DIR/d48d || error "remove parent $DIR/d48d failed"
2890         $TRACE touch foo && error "'touch foo' worked after removing parent"
2891         $TRACE mkdir foo && error "'mkdir foo' worked after removing parent"
2892         if check_kernel_version 44; then
2893                 touch .foo && error "'touch .foo' worked after removing parent"
2894                 mkdir .foo && error "'mkdir .foo' worked after removing parent"
2895         fi
2896         $TRACE ls . && error "'ls .' worked after removing parent"
2897         $TRACE ls .. && error "'ls ..' worked after removing parent"
2898         is_patchless || ( $TRACE cd . && error "'cd .' worked after recreate parent" )
2899         $TRACE mkdir . && error "'mkdir .' worked after removing parent"
2900         $TRACE rmdir . && error "'rmdir .' worked after removing parent"
2901         $TRACE ln -s . foo && error "'ln -s .' worked after removing parent"
2902         is_patchless || ( $TRACE cd .. && error "'cd ..' worked after removing parent" || true )
2903 }
2904 run_test 48d "Access removed parent subdir (should return errors)"
2905
2906 test_48e() { # bug 4134
2907         check_kernel_version 41 || return 0
2908         #lctl set_param debug=-1
2909         #set -vx
2910         mkdir -p $DIR/d48e/dir
2911         cd $DIR/d48e/dir
2912         $TRACE rmdir $DIR/d48e/dir || error "remove cwd $DIR/d48e/dir failed"
2913         $TRACE rmdir $DIR/d48e || error "remove parent $DIR/d48e failed"
2914         $TRACE touch $DIR/d48e || error "'touch $DIR/d48e' failed"
2915         $TRACE chmod +x $DIR/d48e || error "'chmod +x $DIR/d48e' failed"
2916         # On a buggy kernel addition of "touch foo" after cd .. will
2917         # produce kernel oops in lookup_hash_it
2918         touch ../foo && error "'cd ..' worked after recreate parent"
2919         cd $DIR
2920         $TRACE rm $DIR/d48e || error "rm '$DIR/d48e' failed"
2921 }
2922 run_test 48e "Access to recreated parent subdir (should return errors)"
2923
2924 test_50() {
2925         # bug 1485
2926         mkdir $DIR/d50
2927         cd $DIR/d50
2928         ls /proc/$$/cwd || error
2929 }
2930 run_test 50 "special situations: /proc symlinks  ==============="
2931
2932 test_51a() {    # was test_51
2933         # bug 1516 - create an empty entry right after ".." then split dir
2934         mkdir $DIR/d51
2935         touch $DIR/d51/foo
2936         $MCREATE $DIR/d51/bar
2937         rm $DIR/d51/foo
2938         createmany -m $DIR/d51/longfile 201
2939         FNUM=202
2940         while [ `ls -sd $DIR/d51 | awk '{ print $1 }'` -eq 4 ]; do
2941                 $MCREATE $DIR/d51/longfile$FNUM
2942                 FNUM=$(($FNUM + 1))
2943                 echo -n "+"
2944         done
2945         echo
2946         ls -l $DIR/d51 > /dev/null || error
2947 }
2948 run_test 51a "special situations: split htree with empty entry =="
2949
2950 #export NUMTEST=70000
2951 # FIXME: I select a relatively small number to do basic test.
2952 # large number may give panic(). debugging on this is going on.
2953 export NUMTEST=70
2954 test_51b() {
2955         NUMFREE=`df -i -P $DIR | tail -n 1 | awk '{ print $4 }'`
2956         [ $NUMFREE -lt 21000 ] && \
2957                 skip "not enough free inodes ($NUMFREE)" && \
2958                 return
2959
2960         check_kernel_version 40 || NUMTEST=31000
2961         [ $NUMFREE -lt $NUMTEST ] && NUMTEST=$(($NUMFREE - 50))
2962
2963         mkdir -p $DIR/d51b
2964         createmany -d $DIR/d51b/t- $NUMTEST
2965 }
2966 run_test 51b "mkdir .../t-0 --- .../t-$NUMTEST ===================="
2967
2968 test_51bb() {
2969         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2970
2971         local ndirs=${TEST51BB_NDIRS:-10}
2972         local nfiles=${TEST51BB_NFILES:-100}
2973
2974         local numfree=`df -i -P $DIR | tail -n 1 | awk '{ print $4 }'`
2975
2976         [ $numfree -lt $(( ndirs * nfiles)) ] && \
2977                 nfiles=$(( numfree / ndirs - 10 ))
2978
2979         local dir=$DIR/d51bb
2980         mkdir -p $dir
2981         local savePOLICY=$(lctl get_param -n lmv.*.placement)
2982         lctl set_param -n lmv.*.placement=CHAR
2983
2984         lfs df -i $dir
2985         local IUSED=$(lfs df -i $dir | grep MDT | awk '{print $3}')
2986         OLDUSED=($IUSED)
2987
2988         declare -a dirs
2989         for ((i=0; i < $ndirs; i++)); do
2990                 dirs[i]=$dir/$RANDOM
2991                 echo Creating directory ${dirs[i]}
2992                 mkdir -p ${dirs[i]}
2993                 ls $dir
2994                 echo Creating $nfiles in dir ${dirs[i]} ...
2995                 echo "createmany -o ${dirs[i]}/$tfile- $nfiles"
2996                 createmany -o ${dirs[i]}/$tfile- $nfiles
2997         done
2998         ls $dir
2999
3000         sleep 1
3001
3002         IUSED=$(lfs df -i $dir | grep MDT | awk '{print $3}')
3003         NEWUSED=($IUSED)
3004
3005         local rc=0
3006         for ((i=0; i<${#NEWUSED[@]}; i++)); do
3007                 echo "mds $i: inodes count OLD ${OLDUSED[$i]} NEW ${NEWUSED[$i]}"
3008                 [ ${OLDUSED[$i]} -lt ${NEWUSED[$i]} ] || rc=$((rc + 1))
3009         done
3010
3011         lctl set_param -n lmv.*.placement=$savePOLICY
3012
3013         [ $rc -ne $MDSCOUNT ] || \
3014                 error "Objects/inodes are not distributed over all mds servers"
3015 }
3016 run_test 51bb "mkdir createmany CMD $MDSCOUNT  ===================="
3017
3018
3019 test_51c() {
3020         [ ! -d $DIR/d51b ] && skip "$DIR/51b missing" && \
3021                 return
3022
3023         unlinkmany -d $DIR/d51b/t- $NUMTEST
3024 }
3025 run_test 51c "rmdir .../t-0 --- .../t-$NUMTEST ===================="
3026
3027 test_51d() {
3028         [  "$OSTCOUNT" -lt "3" ] && skip_env "skipping test with few OSTs" && return
3029         mkdir -p $DIR/d51d
3030         createmany -o $DIR/d51d/t- 1000
3031         $LFS getstripe $DIR/d51d > $TMP/files
3032         for N in `seq 0 $((OSTCOUNT - 1))`; do
3033             OBJS[$N]=`awk -vobjs=0 '($1 == '$N') { objs += 1 } END { print objs;}' $TMP/files`
3034             OBJS0[$N]=`grep -A 1 idx $TMP/files | awk -vobjs=0 '($1 == '$N') { objs += 1 } END { print objs;}'`
3035             log "OST$N has ${OBJS[$N]} objects, ${OBJS0[$N]} are index 0"
3036         done
3037         unlinkmany $DIR/d51d/t- 1000
3038
3039         NLAST=0
3040         for N in `seq 1 $((OSTCOUNT - 1))`; do
3041             [ ${OBJS[$N]} -lt $((${OBJS[$NLAST]} - 20)) ] && \
3042                 error "OST $N has less objects vs OST $NLAST (${OBJS[$N]} < ${OBJS[$NLAST]}"
3043             [ ${OBJS[$N]} -gt $((${OBJS[$NLAST]} + 20)) ] && \
3044                 error "OST $N has less objects vs OST $NLAST (${OBJS[$N]} < ${OBJS[$NLAST]}"
3045
3046             [ ${OBJS0[$N]} -lt $((${OBJS0[$NLAST]} - 20)) ] && \
3047                 error "OST $N has less #0 objects vs OST $NLAST (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
3048             [ ${OBJS0[$N]} -gt $((${OBJS0[$NLAST]} + 20)) ] && \
3049                 error "OST $N has less #0 objects vs OST $NLAST (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
3050             NLAST=$N
3051         done
3052 }
3053 run_test 51d "check object distribution ===================="
3054
3055 test_52a() {
3056         [ -f $DIR/d52a/foo ] && chattr -a $DIR/d52a/foo
3057         mkdir -p $DIR/d52a
3058         touch $DIR/d52a/foo
3059         chattr +a $DIR/d52a/foo || error "chattr +a failed"
3060         echo bar >> $DIR/d52a/foo || error "append bar failed"
3061         cp /etc/hosts $DIR/d52a/foo && error "cp worked"
3062         rm -f $DIR/d52a/foo 2>/dev/null && error "rm worked"
3063         link $DIR/d52a/foo $DIR/d52a/foo_link 2>/dev/null && error "link worked"
3064         echo foo >> $DIR/d52a/foo || error "append foo failed"
3065         mrename $DIR/d52a/foo $DIR/d52a/foo_ren && error "rename worked"
3066         lsattr $DIR/d52a/foo | egrep -q "^-+a[-e]+ $DIR/d52a/foo" || error "lsattr"
3067         chattr -a $DIR/d52a/foo || error "chattr -a failed"
3068         cp -r $DIR/d52a /tmp/
3069         rm -fr $DIR/d52a || error "cleanup rm failed"
3070 }
3071 run_test 52a "append-only flag test (should return errors) ====="
3072
3073 test_52b() {
3074         [ -f $DIR/d52b/foo ] && chattr -i $DIR/d52b/foo
3075         mkdir -p $DIR/d52b
3076         touch $DIR/d52b/foo
3077         chattr +i $DIR/d52b/foo || error "chattr +i failed"
3078         cat test > $DIR/d52b/foo && error "cat test worked"
3079         cp /etc/hosts $DIR/d52b/foo && error "cp worked"
3080         rm -f $DIR/d52b/foo 2>/dev/null && error "rm worked"
3081         link $DIR/d52b/foo $DIR/d52b/foo_link 2>/dev/null && error  "link worked"
3082         echo foo >> $DIR/d52b/foo && error "echo worked"
3083         mrename $DIR/d52b/foo $DIR/d52b/foo_ren && error "rename worked"
3084         [ -f $DIR/d52b/foo ] || error
3085         [ -f $DIR/d52b/foo_ren ] && error
3086         lsattr $DIR/d52b/foo | egrep -q "^-+i[-e]+ $DIR/d52b/foo" || error "lsattr"
3087         chattr -i $DIR/d52b/foo || error "chattr failed"
3088
3089         rm -fr $DIR/d52b || error
3090 }
3091 run_test 52b "immutable flag test (should return errors) ======="
3092
3093 test_53() {
3094         remote_mds_nodsh && skip "remote MDS with nodsh" && return
3095         remote_ost_nodsh && skip "remote OST with nodsh" && return
3096
3097         local param
3098         local ostname
3099         local mds_last
3100         local ost_last
3101         local ostnum
3102
3103         # only test MDT0000
3104         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS)
3105         for value in $(do_facet $SINGLEMDS lctl get_param osc.$mdtosc.prealloc_last_id) ; do
3106                 param=`echo ${value[0]} | cut -d "=" -f1`
3107                 ostname=`echo $param | cut -d "." -f2 | cut -d - -f 1-2`
3108                 mds_last=$(do_facet $SINGLEMDS lctl get_param -n $param)
3109                 ostnum=$(echo $ostname | sed "s/${FSNAME}-OST//g" | awk '{print ($1+1)}' )
3110                 ost_last=$(do_facet ost$ostnum lctl get_param -n obdfilter.$ostname.last_id | head -n 1)
3111                 echo "$ostname.last_id=$ost_last ; MDS.last_id=$mds_last"
3112                 if [ $ost_last != $mds_last ]; then
3113                     error "$ostname.last_id=$ost_last ; MDS.last_id=$mds_last"
3114                 fi
3115         done
3116 }
3117 run_test 53 "verify that MDS and OSTs agree on pre-creation ===="
3118
3119 test_54a() {
3120         [ ! -f "$SOCKETSERVER" ] && skip_env "no socketserver, skipping" && return
3121         [ ! -f "$SOCKETCLIENT" ] && skip_env "no socketclient, skipping" && return
3122         $SOCKETSERVER $DIR/socket
3123         $SOCKETCLIENT $DIR/socket || error
3124         $MUNLINK $DIR/socket
3125 }
3126 run_test 54a "unix domain socket test =========================="
3127
3128 test_54b() {
3129         f="$DIR/f54b"
3130         mknod $f c 1 3
3131         chmod 0666 $f
3132         dd if=/dev/zero of=$f bs=`page_size` count=1
3133 }
3134 run_test 54b "char device works in lustre ======================"
3135
3136 find_loop_dev() {
3137         [ -b /dev/loop/0 ] && LOOPBASE=/dev/loop/
3138         [ -b /dev/loop0 ] && LOOPBASE=/dev/loop
3139         [ -z "$LOOPBASE" ] && echo "/dev/loop/0 and /dev/loop0 gone?" && return
3140
3141         for i in `seq 3 7`; do
3142                 losetup $LOOPBASE$i > /dev/null 2>&1 && continue
3143                 LOOPDEV=$LOOPBASE$i
3144                 LOOPNUM=$i
3145                 break
3146         done
3147 }
3148
3149 test_54c() {
3150         tfile="$DIR/f54c"
3151         tdir="$DIR/d54c"
3152         loopdev="$DIR/loop54c"
3153
3154         find_loop_dev
3155         [ -z "$LOOPNUM" ] && echo "couldn't find empty loop device" && return
3156         mknod $loopdev b 7 $LOOPNUM
3157         echo "make a loop file system with $tfile on $loopdev ($LOOPNUM)..."
3158         dd if=/dev/zero of=$tfile bs=`page_size` seek=1024 count=1 > /dev/null
3159         losetup $loopdev $tfile || error "can't set up $loopdev for $tfile"
3160         mkfs.ext2 $loopdev || error "mke2fs on $loopdev"
3161         mkdir -p $tdir
3162         mount -t ext2 $loopdev $tdir || error "error mounting $loopdev on $tdir"
3163         dd if=/dev/zero of=$tdir/tmp bs=`page_size` count=30 || error "dd write"
3164         df $tdir
3165         dd if=$tdir/tmp of=/dev/zero bs=`page_size` count=30 || error "dd read"
3166         $UMOUNT $tdir
3167         losetup -d $loopdev
3168         rm $loopdev
3169 }
3170 run_test 54c "block device works in lustre ====================="
3171
3172 test_54d() {
3173         f="$DIR/f54d"
3174         string="aaaaaa"
3175         mknod $f p
3176         [ "$string" = `echo $string > $f | cat $f` ] || error
3177 }
3178 run_test 54d "fifo device works in lustre ======================"
3179
3180 test_54e() {
3181         check_kernel_version 46 || return 0
3182         f="$DIR/f54e"
3183         string="aaaaaa"
3184         cp -aL /dev/console $f
3185         echo $string > $f || error
3186 }
3187 run_test 54e "console/tty device works in lustre ======================"
3188
3189 #The test_55 used to be iopen test and it was removed by bz#24037.
3190 #run_test 55 "check iopen_connect_dentry() ======================"
3191
3192 test_56a() {    # was test_56
3193         rm -rf $DIR/d56
3194         $SETSTRIPE -d $DIR
3195         mkdir $DIR/d56
3196         mkdir $DIR/d56/dir
3197         NUMFILES=3
3198         NUMFILESx2=$(($NUMFILES * 2))
3199         for i in `seq 1 $NUMFILES` ; do
3200                 touch $DIR/d56/file$i
3201                 touch $DIR/d56/dir/file$i
3202         done
3203
3204         # test lfs getstripe with --recursive
3205         FILENUM=`$GETSTRIPE --recursive $DIR/d56 | grep -c obdidx`
3206         [ $FILENUM -eq $NUMFILESx2 ] || error \
3207                 "lfs getstripe --recursive $DIR/d56 wrong: found $FILENUM, expected $NUMFILESx2"
3208         FILENUM=`$GETSTRIPE $DIR/d56 | grep -c obdidx`
3209         [ $FILENUM -eq $NUMFILES ] || error \
3210                 "lfs getstripe $DIR/d56 without --recursive wrong: found $FILENUM, expected $NUMFILES"
3211         echo "lfs getstripe --recursive passed."
3212
3213         # test lfs getstripe with file instead of dir
3214         FILENUM=`$GETSTRIPE $DIR/d56/file1 | grep -c obdidx`
3215         [ $FILENUM  -eq 1 ] || error \
3216                  "lfs getstripe $DIR/d56/file1 wrong:found $FILENUM, expected 1"
3217         echo "lfs getstripe file passed."
3218
3219         #test lfs getstripe with --verbose
3220         [ `$GETSTRIPE --verbose $DIR/d56 | grep -c lmm_magic` -eq $NUMFILES ] ||\
3221                 error "lfs getstripe --verbose $DIR/d56 wrong: should find $NUMFILES lmm_magic info"
3222         [ `$GETSTRIPE $DIR/d56 | grep -c lmm_magic` -eq 0 ] || error \
3223                 "lfs getstripe $DIR/d56 without --verbose wrong: should not show lmm_magic info"
3224         echo "lfs getstripe --verbose passed."
3225
3226         #test lfs getstripe with --obd
3227         $GETSTRIPE --obd wrong_uuid $DIR/d56 2>&1 | grep -q "unknown obduuid" || \
3228                 error "lfs getstripe --obd wrong_uuid should return error message"
3229
3230         [  "$OSTCOUNT" -lt 2 ] && \
3231                 skip_env "skipping other lfs getstripe --obd test" && return
3232         OSTIDX=1
3233         OBDUUID=$(lfs osts | grep ${OSTIDX}": " | awk '{print $2}')
3234         FILENUM=`$GETSTRIPE -ir $DIR/d56 | grep -x $OSTIDX | wc -l`
3235         FOUND=`$GETSTRIPE -r --obd $OBDUUID $DIR/d56 | grep obdidx | wc -l`
3236         [ $FOUND -eq $FILENUM ] || \
3237                 error "lfs getstripe --obd wrong: found $FOUND, expected $FILENUM"
3238         [ `$GETSTRIPE -r -v --obd $OBDUUID $DIR/d56 | \
3239                 sed '/^[         ]*'${OSTIDX}'[  ]/d' |\
3240                 sed -n '/^[      ]*[0-9][0-9]*[  ]/p' | wc -l` -eq 0 ] || \
3241                 error "lfs getstripe --obd wrong: should not show file on other obd"
3242         echo "lfs getstripe --obd passed."
3243 }
3244 run_test 56a "check lfs getstripe ===================================="
3245
3246 NUMFILES=3
3247 NUMDIRS=3
3248 setup_56() {
3249         LOCAL_NUMFILES=$1
3250         LOCAL_NUMDIRS=$2
3251         if [ ! -d "$DIR/${tdir}g" ] ; then
3252                 mkdir -p $DIR/${tdir}g
3253                 for i in `seq 1 $LOCAL_NUMFILES` ; do
3254                         touch $DIR/${tdir}g/file$i
3255                 done
3256                 for i in `seq 1 $LOCAL_NUMDIRS` ; do
3257                         mkdir $DIR/${tdir}g/dir$i
3258                         for j in `seq 1 $LOCAL_NUMFILES` ; do
3259                                 touch $DIR/${tdir}g/dir$i/file$j
3260                         done
3261                 done
3262         fi
3263 }
3264
3265 setup_56_special() {
3266         LOCAL_NUMFILES=$1
3267         LOCAL_NUMDIRS=$2
3268         TDIR=$DIR/${tdir}g
3269         setup_56 $1 $2
3270         if [ ! -e "$TDIR/loop1b" ] ; then
3271                 for i in `seq 1 $LOCAL_NUMFILES` ; do
3272                         mknod $TDIR/loop${i}b b 7 $i
3273                         mknod $TDIR/null${i}c c 1 3
3274                         ln -s $TDIR/file1 $TDIR/link${i}l
3275                 done
3276                 for i in `seq 1 $LOCAL_NUMDIRS` ; do
3277                         mknod $TDIR/dir$i/loop${i}b b 7 $i
3278                         mknod $TDIR/dir$i/null${i}c c 1 3
3279                         ln -s $TDIR/dir$i/file1 $TDIR/dir$i/link${i}l
3280                 done
3281         fi
3282 }
3283
3284 test_56g() {
3285         $LSTRIPE -d $DIR
3286
3287         setup_56 $NUMFILES $NUMDIRS
3288
3289         EXPECTED=$(($NUMDIRS + 2))
3290         # test lfs find with -name
3291         for i in `seq 1 $NUMFILES` ; do
3292                 NUMS=`$LFIND -name "*$i" $DIR/${tdir}g | wc -l`
3293                 [ $NUMS -eq $EXPECTED ] || error \
3294                         "lfs find -name \"*$i\" $DIR/${tdir}g wrong: found $NUMS, expected $EXPECTED"
3295         done
3296         echo "lfs find -name passed."
3297 }
3298 run_test 56g "check lfs find -name ============================="
3299
3300 test_56h() {
3301         $LSTRIPE -d $DIR
3302
3303         setup_56 $NUMFILES $NUMDIRS
3304
3305         EXPECTED=$((($NUMDIRS+1)*($NUMFILES-1)+$NUMFILES))
3306         # test lfs find with ! -name
3307         for i in `seq 1 $NUMFILES` ; do
3308                 NUMS=`$LFIND ! -name "*$i" $DIR/${tdir}g | wc -l`
3309                 [ $NUMS -eq $EXPECTED ] || error \
3310                         "lfs find ! -name \"*$i\" $DIR/${tdir}g wrong: found $NUMS, expected $EXPECTED"
3311         done
3312         echo "lfs find ! -name passed."
3313 }
3314 run_test 56h "check lfs find ! -name ============================="
3315
3316 test_56i() {
3317        tdir=${tdir}i
3318        mkdir -p $DIR/$tdir
3319        UUID=$(ostuuid_from_index 0 $DIR/$tdir)
3320        OUT=$($LFIND -obd $UUID $DIR/$tdir)
3321        [ "$OUT" ] && error "$LFIND returned directory '$OUT'" || true
3322 }
3323 run_test 56i "check 'lfs find -ost UUID' skips directories ======="
3324
3325 test_56j() {
3326         setup_56_special $NUMFILES $NUMDIRS
3327
3328         EXPECTED=$((NUMDIRS+1))
3329         NUMS=`$LFIND -type d $DIR/${tdir}g | wc -l`
3330         [ $NUMS -eq $EXPECTED ] || \
3331                 error "lfs find -type d $DIR/${tdir}g wrong: found $NUMS, expected $EXPECTED"
3332 }
3333 run_test 56j "check lfs find -type d ============================="
3334
3335 test_56k() {
3336         setup_56_special $NUMFILES $NUMDIRS
3337
3338         EXPECTED=$(((NUMDIRS+1) * NUMFILES))
3339         NUMS=`$LFIND -type f $DIR/${tdir}g | wc -l`
3340         [ $NUMS -eq $EXPECTED ] || \
3341                 error "lfs find -type f $DIR/${tdir}g wrong: found $NUMS, expected $EXPECTED"
3342 }
3343 run_test 56k "check lfs find -type f ============================="
3344
3345 test_56l() {
3346         setup_56_special $NUMFILES $NUMDIRS
3347
3348         EXPECTED=$((NUMDIRS + NUMFILES))
3349         NUMS=`$LFIND -type b $DIR/${tdir}g | wc -l`
3350         [ $NUMS -eq $EXPECTED ] || \
3351                 error "lfs find -type b $DIR/${tdir}g wrong: found $NUMS, expected $EXPECTED"
3352 }
3353 run_test 56l "check lfs find -type b ============================="
3354
3355 test_56m() {
3356         setup_56_special $NUMFILES $NUMDIRS
3357
3358         EXPECTED=$((NUMDIRS + NUMFILES))
3359         NUMS=`$LFIND -type c $DIR/${tdir}g | wc -l`
3360         [ $NUMS -eq $EXPECTED ] || \
3361                 error "lfs find -type c $DIR/${tdir}g wrong: found $NUMS, expected $EXPECTED"
3362 }
3363 run_test 56m "check lfs find -type c ============================="
3364
3365 test_56n() {
3366         setup_56_special $NUMFILES $NUMDIRS
3367
3368         EXPECTED=$((NUMDIRS + NUMFILES))
3369         NUMS=`$LFIND -type l $DIR/${tdir}g | wc -l`
3370         [ $NUMS -eq $EXPECTED ] || \
3371                 error "lfs find -type l $DIR/${tdir}g wrong: found $NUMS, expected $EXPECTED"
3372 }
3373 run_test 56n "check lfs find -type l ============================="
3374
3375 test_56o() {
3376         setup_56 $NUMFILES $NUMDIRS
3377         TDIR=$DIR/${tdir}g
3378
3379         utime $TDIR/file1 > /dev/null || error "utime (1)"
3380         utime $TDIR/file2 > /dev/null || error "utime (2)"
3381         utime $TDIR/dir1 > /dev/null || error "utime (3)"
3382         utime $TDIR/dir2 > /dev/null || error "utime (4)"
3383         utime $TDIR/dir1/file1 > /dev/null || error "utime (5)"
3384
3385         EXPECTED=5
3386         NUMS=`$LFIND -mtime +1 $TDIR | wc -l`
3387         [ $NUMS -eq $EXPECTED ] || \
3388                 error "lfs find -mtime $TDIR wrong: found $NUMS, expected $EXPECTED"
3389 }
3390 run_test 56o "check lfs find -mtime for old files =========================="
3391
3392 test_56p() {
3393         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
3394
3395         TDIR=$DIR/${tdir}g
3396         rm -rf $TDIR
3397
3398         setup_56 $NUMFILES $NUMDIRS
3399
3400         chown $RUNAS_ID $TDIR/file* || error "chown $DIR/${tdir}g/file$i failed"
3401         EXPECTED=$NUMFILES
3402         NUMS="`$LFIND -uid $RUNAS_ID $TDIR | wc -l`"
3403         [ $NUMS -eq $EXPECTED ] || \
3404                 error "lfs find -uid $TDIR wrong: found $NUMS, expected $EXPECTED"
3405
3406         EXPECTED=$(( ($NUMFILES+1) * $NUMDIRS + 1))
3407         NUMS="`$LFIND ! -uid $RUNAS_ID $TDIR | wc -l`"
3408         [ $NUMS -eq $EXPECTED ] || \
3409                 error "lfs find ! -uid $TDIR wrong: found $NUMS, expected $EXPECTED"
3410
3411         echo "lfs find -uid and ! -uid passed."
3412 }
3413 run_test 56p "check lfs find -uid and ! -uid ==============================="
3414
3415 test_56q() {
3416         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
3417
3418         TDIR=$DIR/${tdir}g
3419         rm -rf $TDIR
3420
3421         setup_56 $NUMFILES $NUMDIRS
3422
3423         chgrp $RUNAS_GID $TDIR/file* || error "chown $DIR/${tdir}g/file$i failed"
3424         EXPECTED=$NUMFILES
3425         NUMS="`$LFIND -gid $RUNAS_GID $TDIR | wc -l`"
3426         [ $NUMS -eq $EXPECTED ] || \
3427                 error "lfs find -gid $TDIR wrong: found $NUMS, expected $EXPECTED"
3428
3429         EXPECTED=$(( ($NUMFILES+1) * $NUMDIRS + 1))
3430         NUMS="`$LFIND ! -gid $RUNAS_GID $TDIR | wc -l`"
3431         [ $NUMS -eq $EXPECTED ] || \
3432                 error "lfs find ! -gid $TDIR wrong: found $NUMS, expected $EXPECTED"
3433
3434         echo "lfs find -gid and ! -gid passed."
3435 }
3436 run_test 56q "check lfs find -gid and ! -gid ==============================="
3437
3438 test_56r() {
3439         setup_56 $NUMFILES $NUMDIRS
3440         TDIR=$DIR/${tdir}g
3441
3442         EXPECTED=12
3443         NUMS=`$LFIND -size 0 -t f $TDIR | wc -l`
3444         [ $NUMS -eq $EXPECTED ] || \
3445                 error "lfs find $TDIR -size 0 wrong: found $NUMS, expected $EXPECTED"
3446         EXPECTED=0
3447         NUMS=`$LFIND ! -size 0 -t f $TDIR | wc -l`
3448         [ $NUMS -eq $EXPECTED ] || \
3449                 error "lfs find $TDIR ! -size 0 wrong: found $NUMS, expected $EXPECTED"
3450         echo "test" > $TDIR/56r && sync
3451         EXPECTED=1
3452         NUMS=`$LFIND -size 5 -t f $TDIR | wc -l`
3453         [ $NUMS -eq $EXPECTED ] || \
3454                 error "lfs find $TDIR -size 5 wrong: found $NUMS, expected $EXPECTED"
3455         EXPECTED=1
3456         NUMS=`$LFIND -size +5 -t f $TDIR | wc -l`
3457         [ $NUMS -eq $EXPECTED ] || \
3458                 error "lfs find $TDIR -size +5 wrong: found $NUMS, expected $EXPECTED"
3459         EXPECTED=13
3460         NUMS=`$LFIND -size +0 -t f $TDIR | wc -l`
3461         [ $NUMS -eq $EXPECTED ] || \
3462                 error "lfs find $TDIR -size +0 wrong: found $NUMS, expected $EXPECTED"
3463         EXPECTED=0
3464         NUMS=`$LFIND ! -size -5 -t f $TDIR | wc -l`
3465         [ $NUMS -eq $EXPECTED ] || \
3466                 error "lfs find $TDIR ! -size -5 wrong: found $NUMS, expected $EXPECTED"
3467 }
3468
3469 run_test 56r "check lfs find -size works =========================="
3470
3471 test_57a() {
3472         # note test will not do anything if MDS is not local
3473         remote_mds_nodsh && skip "remote MDS with nodsh" && return
3474         local MNTDEV="osd*.*MDT*.mntdev"
3475         DEV=$(do_facet $SINGLEMDS lctl get_param -n $MNTDEV)
3476         [ -z "$DEV" ] && error "can't access $MNTDEV"
3477         for DEV in $(do_facet $SINGLEMDS lctl get_param -n $MNTDEV); do
3478                 do_facet $SINGLEMDS $DUMPE2FS -h $DEV > $TMP/t57a.dump || error "can't access $DEV"
3479                 DEVISIZE=`awk '/Inode size:/ { print $3 }' $TMP/t57a.dump`
3480                 [ "$DEVISIZE" -gt 128 ] || error "inode size $DEVISIZE"
3481                 rm $TMP/t57a.dump
3482         done
3483 }
3484 run_test 57a "verify MDS filesystem created with large inodes =="
3485
3486 test_57b() {
3487         local dir=$DIR/d57b
3488
3489         local FILECOUNT=100
3490         local FILE1=$dir/f1
3491         local FILEN=$dir/f$FILECOUNT
3492
3493         rm -rf $dir || error "removing $dir"
3494         mkdir -p $dir || error "creating $dir"
3495         local num=$(get_mds_dir $dir)
3496         local mymds=mds$num
3497
3498         echo "mcreating $FILECOUNT files"
3499         createmany -m $dir/f 1 $FILECOUNT || \
3500                 error "creating files in $dir"
3501
3502         # verify that files do not have EAs yet
3503         $GETSTRIPE $FILE1 2>&1 | grep -q "no stripe" || error "$FILE1 has an EA"
3504         $GETSTRIPE $FILEN 2>&1 | grep -q "no stripe" || error "$FILEN has an EA"
3505
3506         sync
3507         sleep 1
3508         df $dir  #make sure we get new statfs data
3509         local MDSFREE=$(do_facet $mymds \
3510                 lctl get_param -n osd*.*MDT000$((num -1)).kbytesfree)
3511         local MDCFREE=$(lctl get_param -n mdc.*MDT000$((num -1))-mdc-*.kbytesfree)
3512         echo "opening files to create objects/EAs"
3513         local FILE
3514         for FILE in `seq -f $dir/f%g 1 $FILECOUNT`; do
3515                 $OPENFILE -f O_RDWR $FILE > /dev/null 2>&1 || error "opening $FILE"
3516         done
3517
3518         # verify that files have EAs now
3519         $GETSTRIPE $FILE1 | grep -q "obdidx" || error "$FILE1 missing EA"
3520         $GETSTRIPE $FILEN | grep -q "obdidx" || error "$FILEN missing EA"
3521
3522         sleep 1  #make sure we get new statfs data
3523         df $dir
3524         local MDSFREE2=$(do_facet $mymds \
3525                 lctl get_param -n osd*.*MDT000$((num -1)).kbytesfree)
3526         local MDCFREE2=$(lctl get_param -n mdc.*MDT000$((num -1))-mdc-*.kbytesfree)
3527         if [ "$MDCFREE2" -lt "$((MDCFREE - 8))" ]; then
3528                 if [ "$MDSFREE" != "$MDSFREE2" ]; then
3529                         error "MDC before $MDCFREE != after $MDCFREE2"
3530                 else
3531                         echo "MDC before $MDCFREE != after $MDCFREE2"
3532                         echo "unable to confirm if MDS has large inodes"
3533                 fi
3534         fi
3535         rm -rf $dir
3536 }
3537 run_test 57b "default LOV EAs are stored inside large inodes ==="
3538
3539 test_58() {
3540     [ -z "$(which wiretest 2>/dev/null)" ] && skip_env "could not find wiretest" && return
3541     wiretest
3542 }
3543 run_test 58 "verify cross-platform wire constants =============="
3544
3545 test_59() {
3546         echo "touch 130 files"
3547         createmany -o $DIR/f59- 130
3548         echo "rm 130 files"
3549         unlinkmany $DIR/f59- 130
3550         sync
3551         sleep 2
3552         # wait for commitment of removal
3553 }
3554 run_test 59 "verify cancellation of llog records async ========="
3555
3556 TEST60_HEAD="test_60 run $RANDOM"
3557 test_60a() {
3558         [ ! -f run-llog.sh ] && skip_env "missing subtest run-llog.sh" && return
3559         log "$TEST60_HEAD - from kernel mode"
3560         sh run-llog.sh
3561 }
3562 run_test 60a "llog sanity tests run from kernel module =========="
3563
3564 test_60b() { # bug 6411
3565         dmesg > $DIR/$tfile
3566         LLOG_COUNT=`dmesg | awk "/$TEST60_HEAD/{marker = 1; from_marker = 0;}
3567                                  /llog.test/ {
3568                                          if (marker)
3569                                                  from_marker++
3570                                          from_begin++
3571                                  }
3572                                  END {
3573                                          if (marker)
3574                                                  print from_marker
3575                                          else
3576                                                  print from_begin
3577                                  }"`
3578         [ $LLOG_COUNT -gt 50 ] && error "CDEBUG_LIMIT not limiting messages ($LLOG_COUNT)"|| true
3579 }
3580 run_test 60b "limit repeated messages from CERROR/CWARN ========"
3581
3582 test_60c() {
3583         echo "create 5000 files"
3584         createmany -o $DIR/f60c- 5000
3585 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED  0x137
3586         lctl set_param fail_loc=0x80000137
3587         unlinkmany $DIR/f60c- 5000
3588         lctl set_param fail_loc=0
3589 }
3590 run_test 60c "unlink file when mds full"
3591
3592 test_60d() {
3593         SAVEPRINTK=$(lctl get_param -n printk)
3594
3595         # verify "lctl mark" is even working"
3596         MESSAGE="test message ID $RANDOM $$"
3597         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
3598         dmesg | grep -q "$MESSAGE" || error "didn't find debug marker in log"
3599
3600         lctl set_param printk=0 || error "set lnet.printk failed"
3601         lctl get_param -n printk | grep emerg || error "lnet.printk dropped emerg"
3602         MESSAGE="new test message ID $RANDOM $$"
3603         # Assume here that libcfs_debug_mark_buffer() uses D_WARNING
3604         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
3605         dmesg | grep -q "$MESSAGE" && error "D_WARNING wasn't masked" || true
3606
3607         lctl set_param -n printk="$SAVEPRINTK"
3608 }
3609 run_test 60d "test printk console message masking"
3610
3611 test_61() {
3612         f="$DIR/f61"
3613         dd if=/dev/zero of=$f bs=`page_size` count=1
3614         cancel_lru_locks osc
3615         multiop $f OSMWUc || error
3616         sync
3617 }
3618 run_test 61 "mmap() writes don't make sync hang ================"
3619
3620 # bug 2330 - insufficient obd_match error checking causes LBUG
3621 test_62() {
3622         f="$DIR/f62"
3623         echo foo > $f
3624         cancel_lru_locks osc
3625         lctl set_param fail_loc=0x405
3626         cat $f && error "cat succeeded, expect -EIO"
3627         lctl set_param fail_loc=0
3628 }
3629 # This test is now irrelevant (as of bug 10718 inclusion), we no longer
3630 # match every page all of the time.
3631 #run_test 62 "verify obd_match failure doesn't LBUG (should -EIO)"
3632
3633 # bug 2319 - oig_wait() interrupted causes crash because of invalid waitq.
3634 test_63a() {    # was test_63
3635         MAX_DIRTY_MB=`lctl get_param -n osc.*.max_dirty_mb | head -n 1`
3636         lctl set_param -n osc.*.max_dirty_mb 0
3637         for i in `seq 10` ; do
3638                 dd if=/dev/zero of=$DIR/f63 bs=8k &
3639                 sleep 5
3640                 kill $!
3641                 sleep 1
3642         done
3643
3644         lctl set_param -n osc.*.max_dirty_mb $MAX_DIRTY_MB
3645         rm -f $DIR/f63 || true
3646 }
3647 run_test 63a "Verify oig_wait interruption does not crash ======="
3648
3649 # bug 2248 - async write errors didn't return to application on sync
3650 # bug 3677 - async write errors left page locked
3651 test_63b() {
3652         debugsave
3653         lctl set_param debug=-1
3654
3655         # ensure we have a grant to do async writes
3656         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1
3657         rm $DIR/$tfile
3658
3659         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
3660         lctl set_param fail_loc=0x80000406
3661         multiop $DIR/$tfile Owy && \
3662                 error "sync didn't return ENOMEM"
3663         sync; sleep 2; sync     # do a real sync this time to flush page
3664         lctl get_param -n llite.*.dump_page_cache | grep locked && \
3665                 error "locked page left in cache after async error" || true
3666         debugrestore
3667 }
3668 run_test 63b "async write errors should be returned to fsync ==="
3669
3670 test_64a () {
3671         df $DIR
3672         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur* | grep "[0-9]"
3673 }
3674 run_test 64a "verify filter grant calculations (in kernel) ====="
3675
3676 test_64b () {
3677         [ ! -f oos.sh ] && skip_env "missing subtest oos.sh" && return
3678         sh oos.sh $MOUNT
3679 }
3680 run_test 64b "check out-of-space detection on client ==========="
3681
3682 # bug 1414 - set/get directories' stripe info
3683 test_65a() {
3684         mkdir -p $DIR/d65
3685         touch $DIR/d65/f1
3686         $LVERIFY $DIR/d65 $DIR/d65/f1 || error "lverify failed"
3687 }
3688 run_test 65a "directory with no stripe info ===================="
3689
3690 test_65b() {
3691         mkdir -p $DIR/d65
3692         $SETSTRIPE $DIR/d65 -s $(($STRIPESIZE * 2)) -i 0 -c 1 || error "setstripe"
3693         touch $DIR/d65/f2
3694         $LVERIFY $DIR/d65 $DIR/d65/f2 || error "lverify failed"
3695 }
3696 run_test 65b "directory setstripe $(($STRIPESIZE * 2)) 0 1 ==============="
3697
3698 test_65c() {
3699         if [ $OSTCOUNT -gt 1 ]; then
3700                 mkdir -p $DIR/d65
3701                 $SETSTRIPE $DIR/d65 -s $(($STRIPESIZE * 4)) -i 1 \
3702                         -c $(($OSTCOUNT - 1)) || error "setstripe"
3703                 touch $DIR/d65/f3
3704                 $LVERIFY $DIR/d65 $DIR/d65/f3 || error "lverify failed"
3705         fi
3706 }
3707 run_test 65c "directory setstripe $(($STRIPESIZE * 4)) 1 $(($OSTCOUNT - 1))"
3708
3709 test_65d() {
3710         mkdir -p $DIR/d65
3711         if [ $STRIPECOUNT -le 0 ]; then
3712                 sc=1
3713         elif [ $STRIPECOUNT -gt 160 ]; then
3714 #LOV_MAX_STRIPE_COUNT is 160
3715                 [ $OSTCOUNT -gt 160 ] && sc=160 || sc=$(($OSTCOUNT - 1))
3716         else
3717                 sc=$(($STRIPECOUNT - 1))
3718         fi
3719         $SETSTRIPE $DIR/d65 -s $STRIPESIZE -c $sc || error "setstripe"
3720         touch $DIR/d65/f4 $DIR/d65/f5
3721         $LVERIFY $DIR/d65 $DIR/d65/f4 $DIR/d65/f5 || error "lverify failed"
3722 }
3723 run_test 65d "directory setstripe $STRIPESIZE -1 stripe_count =============="
3724
3725 test_65e() {
3726         mkdir -p $DIR/d65
3727
3728         $SETSTRIPE $DIR/d65 || error "setstripe"
3729         $GETSTRIPE -v $DIR/d65 | grep "Default" || error "no stripe info failed"
3730         touch $DIR/d65/f6
3731         $LVERIFY $DIR/d65 $DIR/d65/f6 || error "lverify failed"
3732 }
3733 run_test 65e "directory setstripe defaults ======================="
3734
3735 test_65f() {
3736         mkdir -p $DIR/d65f
3737         $RUNAS $SETSTRIPE $DIR/d65f && error "setstripe succeeded" || true
3738 }
3739 run_test 65f "dir setstripe permission (should return error) ==="
3740
3741 test_65g() {
3742         mkdir -p $DIR/d65
3743         $SETSTRIPE $DIR/d65 -s $(($STRIPESIZE * 2)) -i 0 -c 1 || error "setstripe"
3744         $SETSTRIPE -d $DIR/d65 || error "setstripe"
3745         $GETSTRIPE -v $DIR/d65 | grep "Default" || \
3746                 error "delete default stripe failed"
3747 }
3748 run_test 65g "directory setstripe -d ==========================="
3749
3750 test_65h() {
3751         mkdir -p $DIR/d65
3752         $SETSTRIPE $DIR/d65 -s $(($STRIPESIZE * 2)) -i 0 -c 1 || error "setstripe"
3753         mkdir -p $DIR/d65/dd1
3754         [ "`$GETSTRIPE -v $DIR/d65 | grep "^count"`" == \
3755           "`$GETSTRIPE -v $DIR/d65/dd1 | grep "^count"`" ] || error "stripe info inherit failed"
3756 }
3757 run_test 65h "directory stripe info inherit ===================="
3758
3759 test_65i() { # bug6367
3760         $SETSTRIPE $MOUNT -s 65536 -c -1
3761 }
3762 run_test 65i "set non-default striping on root directory (bug 6367)="
3763
3764 test_65ia() { # bug12836
3765         $LFS getstripe $MOUNT || error "getstripe $MOUNT failed"
3766 }
3767 run_test 65ia "getstripe on -1 default directory striping"
3768
3769 test_65ib() { # bug12836
3770         $LFS getstripe -v $MOUNT || error "getstripe -v $MOUNT failed"
3771 }
3772 run_test 65ib "getstripe -v on -1 default directory striping"
3773
3774 test_65ic() { # bug12836
3775         $LFS find -mtime -1 $MOUNT || error "find $MOUNT failed"
3776 }
3777 run_test 65ic "new find on -1 default directory striping"
3778
3779 test_65j() { # bug6367
3780         sync; sleep 1
3781         # if we aren't already remounting for each test, do so for this test
3782         if [ "$CLEANUP" = ":" -a "$I_MOUNTED" = "yes" ]; then
3783                 cleanup || error "failed to unmount"
3784                 setup
3785         fi
3786         $SETSTRIPE -d $MOUNT || error "setstripe failed"
3787 }
3788 run_test 65j "set default striping on root directory (bug 6367)="
3789
3790 test_65k() { # bug11679
3791         [ "$OSTCOUNT" -lt 2 ] && skip_env "too few OSTs" && return
3792         remote_mds_nodsh && skip "remote MDS with nodsh" && return
3793
3794         echo "Check OST status: "
3795         MDS_OSCS=`do_facet $SINGLEMDS lctl dl | awk '/[oO][sS][cC].*md[ts]/ { print $4 }'`
3796         for OSC in $MDS_OSCS; do
3797                 echo $OSC "is activate"
3798                 do_facet $SINGLEMDS lctl --device %$OSC activate
3799         done
3800         do_facet client mkdir -p $DIR/$tdir
3801         for INACTIVE_OSC in $MDS_OSCS; do
3802                 echo $INACTIVE_OSC "is Deactivate:"
3803                 do_facet $SINGLEMDS lctl --device  %$INACTIVE_OSC deactivate
3804                 for STRIPE_OSC in $MDS_OSCS; do
3805                         STRIPE_OST=`osc_to_ost $STRIPE_OSC`
3806                         STRIPE_INDEX=`do_facet $SINGLEMDS lctl get_param -n lov.*md*.target_obd |
3807                                       grep $STRIPE_OST | awk -F: '{print $1}' | head -n 1`
3808
3809                 [ -f $DIR/$tdir/${STRIPE_INDEX} ] && continue
3810                         echo "$SETSTRIPE $DIR/$tdir/${STRIPE_INDEX} -i ${STRIPE_INDEX} -c 1"
3811                         do_facet client $SETSTRIPE $DIR/$tdir/${STRIPE_INDEX} -i ${STRIPE_INDEX} -c 1
3812                         RC=$?
3813                         [ $RC -ne 0 ] && error "setstripe should have succeeded"
3814                 done
3815                 do_facet client rm -f $DIR/$tdir/*
3816                 echo $INACTIVE_OSC "is Activate."
3817                 do_facet $SINGLEMDS lctl --device  %$INACTIVE_OSC activate
3818         done
3819 }
3820 run_test 65k "validate manual striping works properly with deactivated OSCs"
3821
3822 test_65l() { # bug 12836
3823         mkdir -p $DIR/$tdir/test_dir
3824         $SETSTRIPE $DIR/$tdir/test_dir -c -1
3825         $LFS find -mtime -1 $DIR/$tdir >/dev/null
3826 }
3827 run_test 65l "lfs find on -1 stripe dir ========================"
3828
3829 # bug 2543 - update blocks count on client
3830 test_66() {
3831         COUNT=${COUNT:-8}
3832         dd if=/dev/zero of=$DIR/f66 bs=1k count=$COUNT
3833         sync; sleep 1; sync
3834         BLOCKS=`ls -s $DIR/f66 | awk '{ print $1 }'`
3835         [ $BLOCKS -ge $COUNT ] || error "$DIR/f66 blocks $BLOCKS < $COUNT"
3836 }
3837 run_test 66 "update inode blocks count on client ==============="
3838
3839 LLOOP=
3840 LLITELOOPLOAD=
3841 cleanup_68() {
3842         trap 0
3843         if [ ! -z "$LLOOP" ]; then
3844                 if swapon -s | grep -q $LLOOP; then
3845                         swapoff $LLOOP || error "swapoff failed"
3846                 fi
3847
3848                 $LCTL blockdev_detach $LLOOP || error "detach failed"
3849                 rm -f $LLOOP
3850                 unset LLOOP
3851         fi
3852         if [ ! -z "$LLITELOOPLOAD" ]; then
3853                 rmmod llite_lloop
3854                 unset LLITELOOPLOAD
3855         fi
3856         rm -f $DIR/f68*
3857 }
3858
3859 meminfo() {
3860         awk '($1 == "'$1':") { print $2 }' /proc/meminfo
3861 }
3862
3863 swap_used() {
3864         swapon -s | awk '($1 == "'$1'") { print $4 }'
3865 }
3866
3867 # test case for lloop driver, basic function
3868 test_68a() {
3869         [ "$UID" != 0 ] && skip_env "must run as root" && return
3870
3871         trap cleanup_68 EXIT
3872
3873         if ! module_loaded llite_lloop; then
3874                 if load_module llite/llite_lloop; then
3875                         LLITELOOPLOAD=yes
3876                 else
3877                         skip_env "can't find module llite_lloop"
3878                         return
3879                 fi
3880         fi
3881
3882         LLOOP=$TMP/lloop.`date +%s`.`date +%N`
3883         dd if=/dev/zero of=$DIR/f68a bs=4k count=1024
3884         $LCTL blockdev_attach $DIR/f68a $LLOOP || error "attach failed"
3885
3886         directio rdwr $LLOOP 0 1024 4096 || error "direct write failed"
3887         directio rdwr $LLOOP 0 1025 4096 && error "direct write should fail"
3888
3889         cleanup_68
3890 }
3891 run_test 68a "lloop driver - basic test ========================"
3892
3893 # excercise swapping to lustre by adding a high priority swapfile entry
3894 # and then consuming memory until it is used.
3895 test_68b() {  # was test_68
3896         [ "$UID" != 0 ] && skip_env "must run as root" && return
3897         lctl get_param -n devices | grep -q obdfilter && \
3898                 skip "local OST" && return
3899
3900         grep -q llite_lloop /proc/modules
3901         [ $? -ne 0 ] && skip "can't find module llite_lloop" && return
3902
3903         [ -z "`$LCTL list_nids | grep -v tcp`" ] && \
3904                 skip "can't reliably test swap with TCP" && return
3905
3906         MEMTOTAL=`meminfo MemTotal`
3907         NR_BLOCKS=$((MEMTOTAL>>8))
3908         [[ $NR_BLOCKS -le 2048 ]] && NR_BLOCKS=2048
3909
3910         LLOOP=$TMP/lloop.`date +%s`.`date +%N`
3911         dd if=/dev/zero of=$DIR/f68b bs=64k seek=$NR_BLOCKS count=1
3912         mkswap $DIR/f68b
3913
3914         $LCTL blockdev_attach $DIR/f68b $LLOOP || error "attach failed"
3915
3916         trap cleanup_68 EXIT
3917
3918         swapon -p 32767 $LLOOP || error "swapon $LLOOP failed"
3919
3920         echo "before: `swapon -s | grep $LLOOP`"
3921         $MEMHOG $MEMTOTAL || error "error allocating $MEMTOTAL kB"
3922         echo "after: `swapon -s | grep $LLOOP`"
3923         SWAPUSED=`swap_used $LLOOP`
3924
3925         cleanup_68
3926
3927         [ $SWAPUSED -eq 0 ] && echo "no swap used???" || true
3928 }
3929 run_test 68b "support swapping to Lustre ========================"
3930
3931 # bug5265, obdfilter oa2dentry return -ENOENT
3932 # #define OBD_FAIL_OST_ENOENT 0x217
3933 test_69() {
3934         remote_ost_nodsh && skip "remote OST with nodsh" && return
3935
3936         f="$DIR/$tfile"
3937         $SETSTRIPE $f -c 1 -i 0
3938
3939         $DIRECTIO write ${f}.2 0 1 || error "directio write error"
3940
3941         do_facet ost1 lctl set_param fail_loc=0x217
3942         $TRUNCATE $f 1 # vmtruncate() will ignore truncate() error.
3943         $DIRECTIO write $f 0 2 && error "write succeeded, expect -ENOENT"
3944
3945         do_facet ost1 lctl set_param fail_loc=0
3946         $DIRECTIO write $f 0 2 || error "write error"
3947
3948         cancel_lru_locks osc
3949         $DIRECTIO read $f 0 1 || error "read error"
3950
3951         do_facet ost1 lctl set_param fail_loc=0x217
3952         $DIRECTIO read $f 1 1 && error "read succeeded, expect -ENOENT"
3953
3954         do_facet ost1 lctl set_param fail_loc=0
3955         rm -f $f
3956 }
3957 run_test 69 "verify oa2dentry return -ENOENT doesn't LBUG ======"
3958
3959 test_71() {
3960     mkdir -p $DIR/$tdir
3961     sh rundbench -C -D $DIR/$tdir 2 || error "dbench failed!"
3962 }
3963 run_test 71 "Running dbench on lustre (don't segment fault) ===="
3964
3965 test_72a() { # bug 5695 - Test that on 2.6 remove_suid works properly
3966         check_kernel_version 43 || return 0
3967         [ "$RUNAS_ID" = "$UID" ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
3968
3969         # Check that testing environment is properly set up. Skip if not
3970         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_GID $RUNAS || {
3971                 skip_env "User $RUNAS_ID does not exist - skipping"
3972                 return 0
3973         }
3974         # We had better clear the $DIR to get enough space for dd
3975         rm -rf $DIR/*
3976         touch $DIR/f72
3977         chmod 777 $DIR/f72
3978         chmod ug+s $DIR/f72
3979         $RUNAS dd if=/dev/zero of=$DIR/f72 bs=512 count=1 || error
3980         # See if we are still setuid/sgid
3981         test -u $DIR/f72 -o -g $DIR/f72 && error "S/gid is not dropped on write"
3982         # Now test that MDS is updated too
3983         cancel_lru_locks mdc
3984         test -u $DIR/f72 -o -g $DIR/f72 && error "S/gid is not dropped on MDS"
3985         true
3986         rm -f $DIR/f72
3987 }
3988 run_test 72a "Test that remove suid works properly (bug5695) ===="
3989
3990 test_72b() { # bug 24226 -- keep mode setting when size is not changing
3991         local perm
3992
3993         [ "$RUNAS_ID" = "$UID" ] && \
3994                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
3995         [ "$RUNAS_ID" -eq 0 ] && \
3996                 skip_env "RUNAS_ID = 0 -- skipping" && return
3997
3998         # Check that testing environment is properly set up. Skip if not
3999         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_ID $RUNAS || {
4000                 skip_env "User $RUNAS_ID does not exist - skipping"
4001                 return 0
4002         }
4003         touch $DIR/${tfile}-f{g,u}
4004         mkdir $DIR/${tfile}-d{g,u}
4005         chmod 770 $DIR/${tfile}-{f,d}{g,u}
4006         chmod g+s $DIR/${tfile}-{f,d}g
4007         chmod u+s $DIR/${tfile}-{f,d}u
4008         for perm in 777 2777 4777; do
4009                 $RUNAS chmod $perm $DIR/${tfile}-fg && error "S/gid file allowed improper chmod to $perm"
4010                 $RUNAS chmod $perm $DIR/${tfile}-fu && error "S/uid file allowed improper chmod to $perm"
4011                 $RUNAS chmod $perm $DIR/${tfile}-dg && error "S/gid dir allowed improper chmod to $perm"
4012                 $RUNAS chmod $perm $DIR/${tfile}-du && error "S/uid dir allowed improper chmod to $perm"
4013         done
4014         true
4015 }
4016 run_test 72b "Test that we keep mode setting if without file data changed (bug 24226)"
4017
4018 # bug 3462 - multiple simultaneous MDC requests
4019 test_73() {
4020         mkdir $DIR/d73-1
4021         mkdir $DIR/d73-2
4022         multiop_bg_pause $DIR/d73-1/f73-1 O_c || return 1
4023         pid1=$!
4024
4025         lctl set_param fail_loc=0x80000129
4026         multiop $DIR/d73-1/f73-2 Oc &
4027         sleep 1
4028         lctl set_param fail_loc=0
4029
4030         multiop $DIR/d73-2/f73-3 Oc &
4031         pid3=$!
4032
4033         kill -USR1 $pid1
4034         wait $pid1 || return 1
4035
4036         sleep 25
4037
4038         $CHECKSTAT -t file $DIR/d73-1/f73-1 || return 4
4039         $CHECKSTAT -t file $DIR/d73-1/f73-2 || return 5
4040         $CHECKSTAT -t file $DIR/d73-2/f73-3 || return 6
4041
4042         rm -rf $DIR/d73-*
4043 }
4044 run_test 73 "multiple MDC requests (should not deadlock)"
4045
4046 test_74a() { # bug 6149, 6184
4047         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
4048         #
4049         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
4050         # will spin in a tight reconnection loop
4051         touch $DIR/f74a
4052         lctl set_param fail_loc=0x8000030e
4053         # get any lock that won't be difficult - lookup works.
4054         ls $DIR/f74a
4055         lctl set_param fail_loc=0
4056         true
4057         rm -f $DIR/f74a
4058 }
4059 run_test 74a "ldlm_enqueue freed-export error path, ls (shouldn't LBUG)"
4060
4061 test_74b() { # bug 13310
4062         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
4063         #
4064         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
4065         # will spin in a tight reconnection loop
4066         lctl set_param fail_loc=0x8000030e
4067         # get a "difficult" lock
4068         touch $DIR/f74b
4069         lctl set_param fail_loc=0
4070         true
4071         rm -f $DIR/f74b
4072 }
4073 run_test 74b "ldlm_enqueue freed-export error path, touch (shouldn't LBUG)"
4074
4075 test_74c() {
4076 #define OBD_FAIL_LDLM_NEW_LOCK
4077         lctl set_param fail_loc=0x80000319
4078         touch $DIR/$tfile && error "Touch successful"
4079         true
4080 }
4081 run_test 74c "ldlm_lock_create error path, (shouldn't LBUG)"
4082
4083 num_inodes() {
4084         awk '/lustre_inode_cache/ {print $2; exit}' /proc/slabinfo
4085 }
4086
4087 get_inode_slab_tunables() {
4088         awk '/lustre_inode_cache/ {print $9," ",$10," ",$11; exit}' /proc/slabinfo
4089 }
4090
4091 set_inode_slab_tunables() {
4092         echo "lustre_inode_cache $1" > /proc/slabinfo
4093 }
4094
4095 test_76() { # Now for bug 20433, added originally in bug 1443
4096         local SLAB_SETTINGS=`get_inode_slab_tunables`
4097         local CPUS=`getconf _NPROCESSORS_ONLN`
4098         # we cannot set limit below 1 which means 1 inode in each
4099         # per-cpu cache is still allowed
4100         set_inode_slab_tunables "1 1 0"
4101         cancel_lru_locks osc
4102         BEFORE_INODES=`num_inodes`
4103         echo "before inodes: $BEFORE_INODES"
4104         local COUNT=1000
4105         [ "$SLOW" = "no" ] && COUNT=100
4106         for i in `seq $COUNT`; do
4107                 touch $DIR/$tfile
4108                 rm -f $DIR/$tfile
4109         done
4110         cancel_lru_locks osc
4111         AFTER_INODES=`num_inodes`
4112         echo "after inodes: $AFTER_INODES"
4113         local wait=0
4114         while [ $((AFTER_INODES-1*CPUS)) -gt $BEFORE_INODES ]; do
4115                 sleep 2
4116                 AFTER_INODES=`num_inodes`
4117                 wait=$((wait+2))
4118                 echo "wait $wait seconds inodes: $AFTER_INODES"
4119                 if [ $wait -gt 30 ]; then
4120                         error "inode slab grew from $BEFORE_INODES to $AFTER_INODES"
4121                 fi
4122         done
4123         set_inode_slab_tunables "$SLAB_SETTINGS"
4124 }
4125 run_test 76 "confirm clients recycle inodes properly ===="
4126
4127
4128 export ORIG_CSUM=""
4129 set_checksums()
4130 {
4131         # Note: in sptlrpc modes which enable its own bulk checksum, the
4132         # original crc32_le bulk checksum will be automatically disabled,
4133         # and the OBD_FAIL_OSC_CHECKSUM_SEND/OBD_FAIL_OSC_CHECKSUM_RECEIVE
4134         # will be checked by sptlrpc code against sptlrpc bulk checksum.
4135         # In this case set_checksums() will not be no-op, because sptlrpc
4136         # bulk checksum will be enabled all through the test.
4137
4138         [ "$ORIG_CSUM" ] || ORIG_CSUM=`lctl get_param -n osc.*.checksums | head -n1`
4139         lctl set_param -n osc.*.checksums $1
4140         return 0
4141 }
4142
4143 export ORIG_CSUM_TYPE=""
4144 CKSUM_TYPES=${CKSUM_TYPES:-"crc32 adler"}
4145 set_checksum_type()
4146 {
4147         [ "$ORIG_CSUM_TYPE" ] || \
4148                 ORIG_CSUM_TYPE=`lctl get_param -n osc/*osc-[^mM]*/checksum_type |
4149                                 sed 's/.*\[\(.*\)\].*/\1/g' | head -n1`
4150         lctl set_param -n osc.*osc-[^mM]*.checksum_type $1
4151         log "set checksum type to $1"
4152         return 0
4153 }
4154 F77_TMP=$TMP/f77-temp
4155 F77SZ=8
4156 setup_f77() {
4157         dd if=/dev/urandom of=$F77_TMP bs=1M count=$F77SZ || \
4158                 error "error writing to $F77_TMP"
4159 }
4160
4161 test_77a() { # bug 10889
4162         $GSS && skip "could not run with gss" && return
4163         [ ! -f $F77_TMP ] && setup_f77
4164         set_checksums 1
4165         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ || error "dd error"
4166         set_checksums 0
4167         rm -f $DIR/$tfile
4168 }
4169 run_test 77a "normal checksum read/write operation ============="
4170
4171 test_77b() { # bug 10889
4172         $GSS && skip "could not run with gss" && return
4173         [ ! -f $F77_TMP ] && setup_f77
4174         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
4175         lctl set_param fail_loc=0x80000409
4176         set_checksums 1
4177         dd if=$F77_TMP of=$DIR/f77b bs=1M count=$F77SZ conv=sync || \
4178                 error "dd error: $?"
4179         lctl set_param fail_loc=0
4180         set_checksums 0
4181 }
4182 run_test 77b "checksum error on client write ===================="
4183
4184 test_77c() { # bug 10889
4185         $GSS && skip "could not run with gss" && return
4186         [ ! -f $DIR/f77b ] && skip "requires 77b - skipping" && return
4187         set_checksums 1
4188         for algo in $CKSUM_TYPES; do
4189                 cancel_lru_locks osc
4190                 set_checksum_type $algo
4191                 #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
4192                 lctl set_param fail_loc=0x80000408
4193                 cmp $F77_TMP $DIR/f77b || error "file compare failed"
4194                 lctl set_param fail_loc=0
4195         done
4196         set_checksums 0
4197         set_checksum_type $ORIG_CSUM_TYPE
4198         rm -f $DIR/f77b
4199 }
4200 run_test 77c "checksum error on client read ==================="
4201
4202 test_77d() { # bug 10889
4203         $GSS && skip "could not run with gss" && return
4204         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
4205         lctl set_param fail_loc=0x80000409
4206         set_checksums 1
4207         directio write $DIR/f77 0 $F77SZ $((1024 * 1024)) || \
4208                 error "direct write: rc=$?"
4209         lctl set_param fail_loc=0
4210         set_checksums 0
4211 }
4212 run_test 77d "checksum error on OST direct write ==============="
4213
4214 test_77e() { # bug 10889
4215         $GSS && skip "could not run with gss" && return
4216         [ ! -f $DIR/f77 ] && skip "requires 77d - skipping" && return
4217         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
4218         lctl set_param fail_loc=0x80000408
4219         set_checksums 1
4220         cancel_lru_locks osc
4221         directio read $DIR/f77 0 $F77SZ $((1024 * 1024)) || \
4222                 error "direct read: rc=$?"
4223         lctl set_param fail_loc=0
4224         set_checksums 0
4225 }
4226 run_test 77e "checksum error on OST direct read ================"
4227
4228 test_77f() { # bug 10889
4229         $GSS && skip "could not run with gss" && return
4230         set_checksums 1
4231         for algo in $CKSUM_TYPES; do
4232                 cancel_lru_locks osc
4233                 set_checksum_type $algo
4234                 #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
4235                 lctl set_param fail_loc=0x409
4236                 directio write $DIR/f77 0 $F77SZ $((1024 * 1024)) && \
4237                         error "direct write succeeded"
4238                 lctl set_param fail_loc=0
4239         done
4240         set_checksum_type $ORIG_CSUM_TYPE
4241         set_checksums 0
4242 }
4243 run_test 77f "repeat checksum error on write (expect error) ===="
4244
4245 test_77g() { # bug 10889
4246         $GSS && skip "could not run with gss" && return
4247         remote_ost_nodsh && skip "remote OST with nodsh" && return
4248
4249         [ ! -f $F77_TMP ] && setup_f77
4250
4251         $SETSTRIPE $DIR/f77g -c 1 -i 0
4252         #define OBD_FAIL_OST_CHECKSUM_RECEIVE       0x21a
4253         do_facet ost1 lctl set_param fail_loc=0x8000021a
4254         set_checksums 1
4255         dd if=$F77_TMP of=$DIR/f77g bs=1M count=$F77SZ || \
4256                 error "write error: rc=$?"
4257         do_facet ost1 lctl set_param fail_loc=0
4258         set_checksums 0
4259 }
4260 run_test 77g "checksum error on OST write ======================"
4261
4262 test_77h() { # bug 10889
4263         $GSS && skip "could not run with gss" && return
4264         remote_ost_nodsh && skip "remote OST with nodsh" && return
4265
4266         [ ! -f $DIR/f77g ] && skip "requires 77g - skipping" && return
4267         cancel_lru_locks osc
4268         #define OBD_FAIL_OST_CHECKSUM_SEND          0x21b
4269         do_facet ost1 lctl set_param fail_loc=0x8000021b
4270         set_checksums 1
4271         cmp $F77_TMP $DIR/f77g || error "file compare failed"
4272         do_facet ost1 lctl set_param fail_loc=0
4273         set_checksums 0
4274 }
4275 run_test 77h "checksum error on OST read ======================="
4276
4277 test_77i() { # bug 13805
4278         $GSS && skip "could not run with gss" && return
4279         #define OBD_FAIL_OSC_CONNECT_CKSUM       0x40b
4280         lctl set_param fail_loc=0x40b
4281         remount_client $MOUNT
4282         lctl set_param fail_loc=0
4283         for VALUE in `lctl get_param osc.*osc-[^mM]*.checksum_type`; do
4284                 PARAM=`echo ${VALUE[0]} | cut -d "=" -f1`
4285                 algo=`lctl get_param -n $PARAM | sed 's/.*\[\(.*\)\].*/\1/g'`
4286                 [ "$algo" = "crc32" ] || error "algo set to $algo instead of crc32"
4287         done
4288         remount_client $MOUNT
4289 }
4290 run_test 77i "client not supporting OSD_CONNECT_CKSUM =========="
4291
4292 test_77j() { # bug 13805
4293         $GSS && skip "could not run with gss" && return
4294         #define OBD_FAIL_OSC_CKSUM_ADLER_ONLY    0x40c
4295         lctl set_param fail_loc=0x40c
4296         remount_client $MOUNT
4297         lctl set_param fail_loc=0
4298         sleep 2 # wait async osc connect to finish
4299         for VALUE in `lctl get_param osc.*osc-[^mM]*.checksum_type`; do
4300                 PARAM=`echo ${VALUE[0]} | cut -d "=" -f1`
4301                 algo=`lctl get_param -n $PARAM | sed 's/.*\[\(.*\)\].*/\1/g'`
4302                 [ "$algo" = "adler" ] || error "algo set to $algo instead of adler"
4303         done
4304         remount_client $MOUNT
4305 }
4306 run_test 77j "client only supporting ADLER32 ===================="
4307
4308 [ "$ORIG_CSUM" ] && set_checksums $ORIG_CSUM || true
4309 rm -f $F77_TMP
4310 unset F77_TMP
4311
4312 test_78() { # bug 10901
4313         remote_ost || { skip_env "local OST" && return; }
4314
4315         NSEQ=5
4316         F78SIZE=$(($(awk '/MemFree:/ { print $2 }' /proc/meminfo) / 1024))
4317         echo "MemFree: $F78SIZE, Max file size: $MAXFREE"
4318         MEMTOTAL=$(($(awk '/MemTotal:/ { print $2 }' /proc/meminfo) / 1024))
4319         echo "MemTotal: $MEMTOTAL"
4320 # reserve 256MB of memory for the kernel and other running processes,
4321 # and then take 1/2 of the remaining memory for the read/write buffers.
4322     if [ $MEMTOTAL -gt 512 ] ;then
4323         MEMTOTAL=$(((MEMTOTAL - 256 ) / 2))
4324     else
4325         # for those poor memory-starved high-end clusters...
4326         MEMTOTAL=$((MEMTOTAL / 2))
4327     fi
4328         echo "Mem to use for directio: $MEMTOTAL"
4329         [ $F78SIZE -gt $MEMTOTAL ] && F78SIZE=$MEMTOTAL
4330         [ $F78SIZE -gt 512 ] && F78SIZE=512
4331         [ $F78SIZE -gt $((MAXFREE / 1024)) ] && F78SIZE=$((MAXFREE / 1024))
4332         SMALLESTOST=`lfs df $DIR |grep OST | awk '{print $4}' |sort -n |head -1`
4333         echo "Smallest OST: $SMALLESTOST"
4334         [ $SMALLESTOST -lt 10240 ] && \
4335                 skip "too small OSTSIZE, useless to run large O_DIRECT test" && return 0
4336
4337         [ $F78SIZE -gt $((SMALLESTOST * $OSTCOUNT / 1024 - 80)) ] && \
4338                 F78SIZE=$((SMALLESTOST * $OSTCOUNT / 1024 - 80))
4339
4340         [ "$SLOW" = "no" ] && NSEQ=1 && [ $F78SIZE -gt 32 ] && F78SIZE=32
4341         echo "File size: $F78SIZE"
4342         $SETSTRIPE $DIR/$tfile -c $OSTCOUNT || error "setstripe failed"
4343         for i in `seq 1 $NSEQ`
4344         do
4345                 FSIZE=$(($F78SIZE / ($NSEQ - $i + 1)))
4346                 echo directIO rdwr round $i of $NSEQ
4347                 $DIRECTIO rdwr $DIR/$tfile 0 $FSIZE 1048576||error "rdwr failed"
4348         done
4349
4350         rm -f $DIR/$tfile
4351 }
4352 run_test 78 "handle large O_DIRECT writes correctly ============"
4353
4354 test_79() { # bug 12743
4355         wait_delete_completed
4356
4357         BKTOTAL=$(calc_osc_kbytes kbytestotal)
4358         BKFREE=$(calc_osc_kbytes kbytesfree)
4359         BKAVAIL=$(calc_osc_kbytes kbytesavail)
4360
4361         STRING=`df -P $MOUNT | tail -n 1 | awk '{print $2","$3","$4}'`
4362         DFTOTAL=`echo $STRING | cut -d, -f1`
4363         DFUSED=`echo $STRING  | cut -d, -f2`
4364         DFAVAIL=`echo $STRING | cut -d, -f3`
4365         DFFREE=$(($DFTOTAL - $DFUSED))
4366
4367         ALLOWANCE=$((64 * $OSTCOUNT))
4368
4369         if [ $DFTOTAL -lt $(($BKTOTAL - $ALLOWANCE)) ] ||
4370            [ $DFTOTAL -gt $(($BKTOTAL + $ALLOWANCE)) ] ; then
4371                 error "df total($DFTOTAL) mismatch OST total($BKTOTAL)"
4372         fi
4373         if [ $DFFREE -lt $(($BKFREE - $ALLOWANCE)) ] ||
4374            [ $DFFREE -gt $(($BKFREE + $ALLOWANCE)) ] ; then
4375                 error "df free($DFFREE) mismatch OST free($BKFREE)"
4376         fi
4377         if [ $DFAVAIL -lt $(($BKAVAIL - $ALLOWANCE)) ] ||
4378            [ $DFAVAIL -gt $(($BKAVAIL + $ALLOWANCE)) ] ; then
4379                 error "df avail($DFAVAIL) mismatch OST avail($BKAVAIL)"
4380         fi
4381 }
4382 run_test 79 "df report consistency check ======================="
4383
4384 test_80() { # bug 10718
4385         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1M
4386         sync; sleep 1; sync
4387         local BEFORE=`date +%s`
4388         cancel_lru_locks osc
4389         local AFTER=`date +%s`
4390         local DIFF=$((AFTER-BEFORE))
4391         if [ $DIFF -gt 1 ] ; then
4392                 error "elapsed for 1M@1T = $DIFF"
4393         fi
4394         true
4395         rm -f $DIR/$tfile
4396 }
4397 run_test 80 "Page eviction is equally fast at high offsets too  ===="
4398
4399 test_99a() {
4400         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && \
4401             return
4402         mkdir -p $DIR/d99cvsroot
4403         chown $RUNAS_ID $DIR/d99cvsroot
4404         local oldPWD=$PWD       # bug 13584, use $TMP as working dir
4405         cd $TMP
4406
4407         $RUNAS cvs -d $DIR/d99cvsroot init || error
4408         cd $oldPWD
4409 }
4410 run_test 99a "cvs init ========================================="
4411
4412 test_99b() {
4413         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
4414         [ ! -d $DIR/d99cvsroot ] && test_99a
4415         cd /etc/init.d
4416         # some versions of cvs import exit(1) when asked to import links or
4417         # files they can't read.  ignore those files.
4418         TOIGNORE=$(find . -type l -printf '-I %f\n' -o \
4419                         ! -perm +4 -printf '-I %f\n')
4420         $RUNAS cvs -d $DIR/d99cvsroot import -m "nomesg" $TOIGNORE \
4421                 d99reposname vtag rtag
4422 }
4423 run_test 99b "cvs import ======================================="
4424
4425 test_99c() {
4426         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
4427         [ ! -d $DIR/d99cvsroot ] && test_99b
4428         cd $DIR
4429         mkdir -p $DIR/d99reposname
4430         chown $RUNAS_ID $DIR/d99reposname
4431         $RUNAS cvs -d $DIR/d99cvsroot co d99reposname
4432 }
4433 run_test 99c "cvs checkout ====================================="
4434
4435 test_99d() {
4436         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
4437         [ ! -d $DIR/d99cvsroot ] && test_99c
4438         cd $DIR/d99reposname
4439         $RUNAS touch foo99
4440         $RUNAS cvs add -m 'addmsg' foo99
4441 }
4442 run_test 99d "cvs add =========================================="
4443
4444 test_99e() {
4445         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
4446         [ ! -d $DIR/d99cvsroot ] && test_99c
4447         cd $DIR/d99reposname
4448         $RUNAS cvs update
4449 }
4450 run_test 99e "cvs update ======================================="
4451
4452 test_99f() {
4453         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
4454         [ ! -d $DIR/d99cvsroot ] && test_99d
4455         cd $DIR/d99reposname
4456         $RUNAS cvs commit -m 'nomsg' foo99
4457     rm -fr $DIR/d99cvsroot
4458 }
4459 run_test 99f "cvs commit ======================================="
4460
4461 test_100() {
4462         [ "$NETTYPE" = tcp ] || \
4463                 { skip "TCP secure port test, not useful for NETTYPE=$NETTYPE" && \
4464                         return ; }
4465
4466         remote_ost_nodsh && skip "remote OST with nodsh" && return
4467         remote_mds_nodsh && skip "remote MDS with nodsh" && return
4468         remote_servers || \
4469                 { skip "useless for local single node setup" && return; }
4470
4471         netstat -tna | ( rc=1; while read PROT SND RCV LOCAL REMOTE STAT; do
4472                 [ "$PROT" != "tcp" ] && continue
4473                 RPORT=$(echo $REMOTE | cut -d: -f2)
4474                 [ "$RPORT" != "$ACCEPTOR_PORT" ] && continue
4475
4476                 rc=0
4477                 LPORT=`echo $LOCAL | cut -d: -f2`
4478                 if [ $LPORT -ge 1024 ]; then
4479                         echo "bad: $PROT $SND $RCV $LOCAL $REMOTE $STAT"
4480                         netstat -tna
4481                         error_exit "local: $LPORT > 1024, remote: $RPORT"
4482                 fi
4483         done
4484         [ "$rc" = 0 ] || error_exit "privileged port not found" )
4485 }
4486 run_test 100 "check local port using privileged port ==========="
4487
4488 function get_named_value()
4489 {
4490     local tag
4491
4492     tag=$1
4493     while read ;do
4494         line=$REPLY
4495         case $line in
4496         $tag*)
4497             echo $line | sed "s/^$tag//"
4498             break
4499             ;;
4500         esac
4501     done
4502 }
4503
4504 export CACHE_MAX=`lctl get_param -n llite.*.max_cached_mb | head -n 1`
4505 cleanup_101() {
4506         lctl set_param -n llite.*.max_cached_mb $CACHE_MAX
4507         trap 0
4508 }
4509
4510 test_101() {
4511         local s
4512         local discard
4513         local nreads=10000
4514         [ "$CPU" = "UML" ] && nreads=1000
4515         local cache_limit=32
4516
4517         lctl set_param -n osc.*-osc*.rpc_stats 0
4518         trap cleanup_101 EXIT
4519         lctl set_param -n llite.*.read_ahead_stats 0
4520         lctl set_param -n llite.*.max_cached_mb $cache_limit
4521
4522         #
4523         # randomly read 10000 of 64K chunks from file 3x 32MB in size
4524         #
4525         echo "nreads: $nreads file size: $((cache_limit * 3))MB"
4526         $READS -f $DIR/$tfile -s$((cache_limit * 3192 * 1024)) -b65536 -C -n$nreads -t 180
4527
4528         discard=0
4529         for s in `lctl get_param -n llite.*.read_ahead_stats | \
4530                 get_named_value 'read but discarded' | cut -d" " -f1`; do
4531                         discard=$(($discard + $s))
4532         done
4533         cleanup_101
4534
4535         if [ $(($discard * 10)) -gt $nreads ] ;then
4536                 lctl get_param osc.*-osc*.rpc_stats
4537                 lctl get_param llite.*.read_ahead_stats
4538                 error "too many ($discard) discarded pages"
4539         fi
4540         rm -f $DIR/$tfile || true
4541 }
4542 run_test 101 "check read-ahead for random reads ================"
4543
4544 setup_test101b() {
4545         mkdir -p $DIR/$tdir
4546         STRIPE_SIZE=1048576
4547         STRIPE_COUNT=$OSTCOUNT
4548         STRIPE_OFFSET=0
4549
4550         trap cleanup_test101b EXIT
4551         # prepare the read-ahead file
4552         $SETSTRIPE $DIR/$tfile -s $STRIPE_SIZE -i $STRIPE_OFFSET -c $OSTCOUNT
4553
4554         dd if=/dev/zero of=$DIR/$tfile bs=1024k count=100 2> /dev/null
4555 }
4556
4557 cleanup_test101b() {
4558         trap 0
4559         rm -rf $DIR/$tdir
4560         rm -f $DIR/$tfile
4561 }
4562
4563 calc_total() {
4564         awk 'BEGIN{total=0}; {total+=$1}; END{print total}'
4565 }
4566
4567 ra_check_101() {
4568         local READ_SIZE=$1
4569         local STRIPE_SIZE=1048576
4570         local RA_INC=1048576
4571         local STRIDE_LENGTH=$((STRIPE_SIZE/READ_SIZE))
4572         local FILE_LENGTH=$((64*100))
4573         local discard_limit=$((((STRIDE_LENGTH - 1)*3/(STRIDE_LENGTH*OSTCOUNT))* \
4574                              (STRIDE_LENGTH*OSTCOUNT - STRIDE_LENGTH)))
4575         DISCARD=`$LCTL get_param -n llite.*.read_ahead_stats | \
4576                         get_named_value 'read but discarded' | \
4577                         cut -d" " -f1 | calc_total`
4578
4579         if [ $DISCARD -gt $discard_limit ]; then
4580                 lctl get_param llite.*.read_ahead_stats
4581                 error "Too many ($DISCARD) discarded pages with size (${READ_SIZE})"
4582         else
4583                 echo "Read-ahead success for size ${READ_SIZE}"
4584         fi
4585 }
4586
4587 test_101b() {
4588         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping stride IO stride-ahead test" && return
4589         local STRIPE_SIZE=1048576
4590         local STRIDE_SIZE=$((STRIPE_SIZE*OSTCOUNT))
4591         local FILE_LENGTH=$((STRIPE_SIZE*100))
4592         local ITERATION=$((FILE_LENGTH/STRIDE_SIZE))
4593         # prepare the read-ahead file
4594         setup_test101b
4595         cancel_lru_locks osc
4596         for BIDX in 2 4 8 16 32 64 128 256
4597         do
4598                 local BSIZE=$((BIDX*4096))
4599                 local READ_COUNT=$((STRIPE_SIZE/BSIZE))
4600                 local STRIDE_LENGTH=$((STRIDE_SIZE/BSIZE))
4601                 local OFFSET=$((STRIPE_SIZE/BSIZE*(OSTCOUNT - 1)))
4602                 $LCTL set_param -n llite.*.read_ahead_stats 0
4603                 $READS -f $DIR/$tfile  -l $STRIDE_LENGTH -o $OFFSET \
4604                               -s $FILE_LENGTH -b $STRIPE_SIZE -a $READ_COUNT -n $ITERATION
4605                 cancel_lru_locks osc
4606                 ra_check_101 $BSIZE
4607         done
4608         cleanup_test101b
4609         true
4610 }
4611 run_test 101b "check stride-io mode read-ahead ================="
4612
4613 set_read_ahead() {
4614    lctl get_param -n llite.*.max_read_ahead_mb | head -n 1
4615    lctl set_param -n llite.*.max_read_ahead_mb $1 > /dev/null 2>&1
4616 }
4617
4618 test_101d() {
4619     local file=$DIR/$tfile
4620     local size=${FILESIZE_101c:-500}
4621     local ra_MB=${READAHEAD_MB:-40}
4622
4623     local space=$(df -P $DIR | tail -n 1 | awk '{ print $4 }')
4624     [ $space -gt $((size / 1024)) ] ||
4625         { skip "Need free space ${size}M, have $space" && return; }
4626
4627     echo Creating ${size}M test file $file
4628     dd if=/dev/zero of=$file bs=1M count=$size
4629     echo Cancel LRU locks on lustre client to flush the client cache
4630     cancel_lru_locks osc
4631
4632     echo Disable read-ahead
4633     local old_READAHEAD=$(set_read_ahead 0)
4634
4635     echo Reading the test file $file with read-ahead disabled
4636     time_ra_OFF=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$size")
4637
4638     echo Cancel LRU locks on lustre client to flush the client cache
4639     cancel_lru_locks osc
4640     echo Enable read-ahead with ${ra_MB}MB
4641     set_read_ahead $ra_MB
4642
4643     echo Reading the test file $file with read-ahead enabled
4644     time_ra_ON=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$size")
4645
4646     echo read-ahead disabled time read $time_ra_OFF
4647     echo read-ahead enabled  time read $time_ra_ON
4648
4649     set_read_ahead $old_READAHEAD
4650     rm -f $file
4651
4652     [ $time_ra_ON -lt $time_ra_OFF ] ||
4653         error "read-ahead enabled  time read (${time_ra_ON}s) is more than
4654                read-ahead disabled time read (${time_ra_OFF}s) filesize ${size}M"
4655 }
4656 run_test 101d "file read with and without read-ahead enabled  ================="
4657
4658 setup_test102() {
4659         mkdir -p $DIR/$tdir
4660         chown $RUNAS_ID $DIR/$tdir
4661         STRIPE_SIZE=65536
4662         STRIPE_OFFSET=1
4663         STRIPE_COUNT=$OSTCOUNT
4664         [ $OSTCOUNT -gt 4 ] && STRIPE_COUNT=4
4665
4666         trap cleanup_test102 EXIT
4667         cd $DIR
4668         $1 $SETSTRIPE $tdir -s $STRIPE_SIZE -i $STRIPE_OFFSET -c $STRIPE_COUNT
4669         cd $DIR/$tdir
4670         for num in 1 2 3 4
4671         do
4672                 for count in `seq 1 $STRIPE_COUNT`
4673                 do
4674                         for offset in `seq 0 $[$STRIPE_COUNT - 1]`
4675                         do
4676                                 local stripe_size=`expr $STRIPE_SIZE \* $num`
4677                                 local file=file"$num-$offset-$count"
4678                                 $1 $SETSTRIPE $file -s $stripe_size -i $offset -c $count
4679                         done
4680                 done
4681         done
4682
4683         cd $DIR
4684         $1 $TAR cf $TMP/f102.tar $tdir --xattrs
4685 }
4686
4687 cleanup_test102() {
4688         trap 0
4689         rm -f $TMP/f102.tar
4690         rm -rf $DIR/d0.sanity/d102
4691 }
4692
4693 test_102a() {
4694         local testfile=$DIR/xattr_testfile
4695
4696         rm -f $testfile
4697         touch $testfile
4698
4699         [ "$UID" != 0 ] && skip_env "must run as root" && return
4700         [ -z "`lctl get_param -n mdc.*-mdc-*.connect_flags | grep xattr`" ] && skip_env "must have user_xattr" && return
4701
4702         [ -z "$(which setfattr 2>/dev/null)" ] && skip_env "could not find setfattr" && return
4703
4704         echo "set/get xattr..."
4705         setfattr -n trusted.name1 -v value1 $testfile || error
4706         [ "`getfattr -n trusted.name1 $testfile 2> /dev/null | \
4707         grep "trusted.name1"`" == "trusted.name1=\"value1\"" ] || error
4708
4709         setfattr -n user.author1 -v author1 $testfile || error
4710         [ "`getfattr -n user.author1 $testfile 2> /dev/null | \
4711         grep "user.author1"`" == "user.author1=\"author1\"" ] || error
4712
4713         echo "listxattr..."
4714         setfattr -n trusted.name2 -v value2 $testfile || error
4715         setfattr -n trusted.name3 -v value3 $testfile || error
4716         [ `getfattr -d -m "^trusted" $testfile 2> /dev/null | \
4717         grep "trusted.name" | wc -l` -eq 3 ] || error
4718
4719
4720         setfattr -n user.author2 -v author2 $testfile || error
4721         setfattr -n user.author3 -v author3 $testfile || error
4722         [ `getfattr -d -m "^user" $testfile 2> /dev/null | \
4723         grep "user" | wc -l` -eq 3 ] || error
4724
4725         echo "remove xattr..."
4726         setfattr -x trusted.name1 $testfile || error
4727         getfattr -d -m trusted $testfile 2> /dev/null | \
4728         grep "trusted.name1" && error || true
4729
4730         setfattr -x user.author1 $testfile || error
4731         getfattr -d -m user $testfile 2> /dev/null | \
4732         grep "user.author1" && error || true
4733
4734         # b10667: setting lustre special xattr be silently discarded
4735         echo "set lustre special xattr ..."
4736         setfattr -n "trusted.lov" -v "invalid value" $testfile || error
4737
4738         rm -f $testfile
4739 }
4740 run_test 102a "user xattr test =================================="
4741
4742 test_102b() {
4743         # b10930: get/set/list trusted.lov xattr
4744         echo "get/set/list trusted.lov xattr ..."
4745         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
4746         local testfile=$DIR/$tfile
4747         $SETSTRIPE -s 65536 -i 1 -c 2 $testfile || error "setstripe failed"
4748         getfattr -d -m "^trusted" $testfile 2> /dev/null | \
4749         grep "trusted.lov" || error "can't get trusted.lov from $testfile"
4750
4751         local testfile2=${testfile}2
4752         local value=`getfattr -n trusted.lov $testfile 2> /dev/null | \
4753                      grep "trusted.lov" |sed -e 's/[^=]\+=//'`
4754
4755         $MCREATE $testfile2
4756         setfattr -n trusted.lov -v $value $testfile2
4757         local tmp_file=${testfile}3
4758         $GETSTRIPE -v $testfile2 > $tmp_file
4759         local stripe_size=`grep "size"  $tmp_file| awk '{print $2}'`
4760         local stripe_count=`grep "count"  $tmp_file| awk '{print $2}'`
4761         [ "$stripe_size" -eq 65536 ] || error "stripe size $stripe_size != 65536"
4762         [ "$stripe_count" -eq 2 ] || error "stripe count $stripe_count != 2"
4763         rm -f $DIR/$tfile
4764 }
4765 run_test 102b "getfattr/setfattr for trusted.lov EAs ============"
4766
4767 test_102c() {
4768         # b10930: get/set/list lustre.lov xattr
4769         echo "get/set/list lustre.lov xattr ..."
4770         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
4771         mkdir -p $DIR/$tdir
4772         chown $RUNAS_ID $DIR/$tdir
4773         local testfile=$DIR/$tdir/$tfile
4774         $RUNAS $SETSTRIPE -s 65536 -i 1 -c 2 $testfile||error "setstripe failed"
4775         $RUNAS getfattr -d -m "^lustre" $testfile 2> /dev/null | \
4776         grep "lustre.lov" || error "can't get lustre.lov from $testfile"
4777
4778         local testfile2=${testfile}2
4779         local value=`getfattr -n lustre.lov $testfile 2> /dev/null | \
4780                      grep "lustre.lov" |sed -e 's/[^=]\+=//'  `
4781
4782         $RUNAS $MCREATE $testfile2
4783         $RUNAS setfattr -n lustre.lov -v $value $testfile2
4784         local tmp_file=${testfile}3
4785         $RUNAS $GETSTRIPE -v $testfile2 > $tmp_file
4786         local stripe_size=`grep "size"  $tmp_file| awk '{print $2}'`
4787         local stripe_count=`grep "count"  $tmp_file| awk '{print $2}'`
4788         [ $stripe_size -eq 65536 ] || error "stripe size $stripe_size != 65536"
4789         [ $stripe_count -eq 2 ] || error "stripe count $stripe_count != 2"
4790 }
4791 run_test 102c "non-root getfattr/setfattr for lustre.lov EAs ==========="
4792
4793 compare_stripe_info1() {
4794         local stripe_index_all_zero=1
4795
4796         for num in 1 2 3 4
4797         do
4798                 for count in `seq 1 $STRIPE_COUNT`
4799                 do
4800                         for offset in `seq 0 $[$STRIPE_COUNT - 1]`
4801                         do
4802                                 local size=`expr $STRIPE_SIZE \* $num`
4803                                 local file=file"$num-$offset-$count"
4804                                 get_stripe_info client $PWD/$file "$1"
4805                                 if [ $stripe_size -ne $size ]; then
4806                                         error "$file: different stripe size $stripe_size, expected $size" && return
4807                                 fi
4808                                 if [ $stripe_count -ne $count ]; then
4809                                         error "$file: different stripe count $stripe_count, expected $count" && return
4810                                 fi
4811                                 if [ $stripe_index -ne 0 ]; then
4812                                        stripe_index_all_zero=0
4813                                 fi
4814                         done
4815                 done
4816         done
4817         [ $stripe_index_all_zero -eq 1 ] && error "all files are being extracted starting from OST index 0"
4818         return 0
4819 }
4820
4821 compare_stripe_info2() {
4822         for num in 1 2 3 4
4823         do
4824                 for count in `seq 1 $STRIPE_COUNT`
4825                 do
4826                         for offset in `seq 0 $[$STRIPE_COUNT - 1]`
4827                         do
4828                                 local size=`expr $STRIPE_SIZE \* $num`
4829                                 local file=file"$num-$offset-$count"
4830                                 get_stripe_info client $PWD/$file
4831                                 if [ $stripe_size -ne $size ]; then
4832                                         error "$file: different stripe size $stripe_size, expected $size" && return
4833                                 fi
4834                                 if [ $stripe_count -ne $count ]; then
4835                                         error "$file: different stripe count $stripe_count, expected $count" && return
4836                                 fi
4837                                 if [ $stripe_index -ne $offset ]; then
4838                                         error "$file: different stripe offset $stripe_index, expected $offset" && return
4839                                 fi
4840                         done
4841                 done
4842         done
4843 }
4844
4845 find_lustre_tar() {
4846         [ -n "$(which tar 2>/dev/null)" ] && strings $(which tar) | grep -q lustre && echo tar
4847 }
4848
4849 test_102d() {
4850         # b10930: tar test for trusted.lov xattr
4851         TAR=$(find_lustre_tar)
4852         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
4853         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping N-stripe test" && return
4854         setup_test102
4855         mkdir -p $DIR/d102d
4856         $TAR xf $TMP/f102.tar -C $DIR/d102d --xattrs
4857         cd $DIR/d102d/$tdir
4858         compare_stripe_info1
4859 }
4860 run_test 102d "tar restore stripe info from tarfile,not keep osts ==========="
4861
4862 test_102f() {
4863         # b10930: tar test for trusted.lov xattr
4864         TAR=$(find_lustre_tar)
4865         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
4866         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping N-stripe test" && return
4867         setup_test102
4868         mkdir -p $DIR/d102f
4869         cd $DIR
4870         $TAR cf - --xattrs $tdir | $TAR xf - --xattrs -C $DIR/d102f
4871         cd $DIR/d102f/$tdir
4872         compare_stripe_info1
4873 }
4874 run_test 102f "tar copy files, not keep osts ==========="
4875
4876 test_102h() { # bug 15777
4877         [ -z $(lctl get_param -n mdc.*.connect_flags | grep xattr) ] &&
4878                 skip "must have user_xattr" && return
4879         [ -z "$(which setfattr 2>/dev/null)" ] &&
4880                 skip_env "could not find setfattr" && return
4881
4882         XBIG=trusted.big
4883         XSIZE=1024
4884         touch $DIR/$tfile
4885         VALUE=datadatadatadatadatadatadatadata
4886         while [ $(echo $VALUE | wc -c) -lt $XSIZE ]; do
4887                 VALUE="$VALUE$VALUE"
4888         done
4889         log "save $XBIG on $DIR/$tfile"
4890         setfattr -n $XBIG -v "$VALUE" $DIR/$tfile ||
4891                 error "saving $XBIG on $DIR/$tfile failed"
4892         ORIG=$(getfattr -n $XBIG $DIR/$tfile 2> /dev/null | grep $XBIG)
4893         OSIZE=$(echo $ORIG | wc -c)
4894         [ $OSIZE -lt $XSIZE ] && error "set $XBIG too small ($OSIZE < $XSIZE)"
4895
4896         XSML=trusted.sml
4897         log "save $XSML on $DIR/$tfile"
4898         setfattr -n $XSML -v val $DIR/$tfile ||
4899                 error "saving $XSML on $DIR/$tfile failed"
4900         NEW=$(getfattr -n $XBIG $DIR/$tfile 2> /dev/null | grep $XBIG)
4901         if [ "$NEW" != "$ORIG" ]; then
4902                 log "orig: $ORIG"
4903                 log "new: $NEW"
4904                 error "$XBIG different after saving $XSML"
4905         fi
4906
4907         log "grow $XSML on $DIR/$tfile"
4908         setfattr -n $XSML -v "$VALUE" $DIR/$tfile ||
4909                 error "growing $XSML on $DIR/$tfile failed"
4910         NEW=$(getfattr -n $XBIG $DIR/$tfile 2> /dev/null | grep $XBIG)
4911         if [ "$NEW" != "$ORIG" ]; then
4912                 log "orig: $ORIG"
4913                 log "new: $NEW"
4914                 error "$XBIG different after growing $XSML"
4915         fi
4916         log "$XBIG still valid after growing $XSML"
4917         rm -f $file
4918 }
4919 run_test 102h "grow xattr from inside inode to external block"
4920
4921 test_102i() { # bug 17038
4922         touch $DIR/$tfile
4923         ln -s $DIR/$tfile $DIR/${tfile}link
4924         getfattr -n trusted.lov $DIR/$tfile || error "lgetxattr on $DIR/$tfile failed"
4925         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"
4926         rm -f $DIR/$tfile $DIR/${tfile}link
4927 }
4928 run_test 102i "lgetxattr test on symbolic link ============"
4929
4930 test_102j() {
4931         TAR=$(find_lustre_tar)
4932         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
4933         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping N-stripe test" && return
4934         setup_test102 "$RUNAS"
4935         mkdir -p $DIR/d102j
4936         chown $RUNAS_ID $DIR/d102j
4937         $RUNAS $TAR xf $TMP/f102.tar -C $DIR/d102j --xattrs
4938         cd $DIR/d102j/$tdir
4939         compare_stripe_info1 "$RUNAS"
4940 }
4941 run_test 102j "non-root tar restore stripe info from tarfile, not keep osts ==="
4942
4943 test_102k() {
4944         touch $DIR/$tfile
4945         # b22187 just check that does not crash for regular file.
4946         setfattr -n trusted.lov $DIR/$tfile
4947         # b22187 'setfattr -n trusted.lov' should work as remove LOV EA for directories
4948         local test_kdir=$DIR/d102k
4949         mkdir $test_kdir
4950         local default_size=`$GETSTRIPE -s $test_kdir`
4951         local default_count=`$GETSTRIPE -c $test_kdir`
4952         local default_offset=`$GETSTRIPE -o $test_kdir`
4953         $SETSTRIPE -s 65536 -i 1 -c $OSTCOUNT $test_kdir || error 'dir setstripe failed'
4954         setfattr -n trusted.lov $test_kdir
4955         local stripe_size=`$GETSTRIPE -s $test_kdir`
4956         local stripe_count=`$GETSTRIPE -c $test_kdir`
4957         local stripe_offset=`$GETSTRIPE -o $test_kdir`
4958         [ $stripe_size -eq $default_size ] || error "stripe size $stripe_size != $default_size"
4959         [ $stripe_count -eq $default_count ] || error "stripe count $stripe_count != $default_count"
4960         [ $stripe_offset -eq $default_offset ] || error "stripe offset $stripe_offset != $default_offset"
4961         rm -rf $DIR/$tfile $test_kdir
4962 }
4963 run_test 102k "setfattr without parameter of value shouldn't cause a crash"
4964
4965 cleanup_test102
4966
4967 run_acl_subtest()
4968 {
4969     $LUSTRE/tests/acl/run $LUSTRE/tests/acl/$1.test
4970     return $?
4971 }
4972
4973 test_103 () {
4974     [ "$UID" != 0 ] && skip_env "must run as root" && return
4975     [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] && skip "must have acl enabled" && return
4976     [ -z "$(which setfacl 2>/dev/null)" ] && skip_env "could not find setfacl" && return
4977     $GSS && skip "could not run under gss" && return
4978
4979     declare -a identity_old
4980
4981     for num in `seq $MDSCOUNT`; do
4982         switch_identity $num true || identity_old[$num]=$?
4983     done
4984
4985     SAVE_UMASK=`umask`
4986     umask 0022
4987     cd $DIR
4988
4989     echo "performing cp ..."
4990     run_acl_subtest cp || error
4991     echo "performing getfacl-noacl..."
4992     run_acl_subtest getfacl-noacl || error "getfacl-noacl test failed"
4993     echo "performing misc..."
4994     run_acl_subtest misc || error  "misc test failed"
4995     echo "performing permissions..."
4996     run_acl_subtest permissions || error "permissions failed"
4997     echo "performing setfacl..."
4998     run_acl_subtest setfacl || error  "setfacl test failed"
4999
5000     # inheritance test got from HP
5001     echo "performing inheritance..."
5002     cp $LUSTRE/tests/acl/make-tree . || error "cannot copy make-tree"
5003     chmod +x make-tree || error "chmod +x failed"
5004     run_acl_subtest inheritance || error "inheritance test failed"
5005     rm -f make-tree
5006
5007     cd $SAVE_PWD
5008     umask $SAVE_UMASK
5009
5010     for num in `seq $MDSCOUNT`; do
5011         if [ "${identity_old[$num]}" = 1 ]; then
5012             switch_identity $num false || identity_old[$num]=$?
5013         fi
5014     done
5015 }
5016 run_test 103 "acl test ========================================="
5017
5018 test_104a() {
5019         touch $DIR/$tfile
5020         lfs df || error "lfs df failed"
5021         lfs df -ih || error "lfs df -ih failed"
5022         lfs df -h $DIR || error "lfs df -h $DIR failed"
5023         lfs df -i $DIR || error "lfs df -i $DIR failed"
5024         lfs df $DIR/$tfile || error "lfs df $DIR/$tfile failed"
5025         lfs df -ih $DIR/$tfile || error "lfs df -ih $DIR/$tfile failed"
5026
5027         OSC=`lctl get_param -n devices | awk '/-osc-/ {print $4}' | head -n 1`
5028         lctl --device %$OSC deactivate
5029         lfs df || error "lfs df with deactivated OSC failed"
5030         lctl --device %$OSC recover
5031         lfs df || error "lfs df with reactivated OSC failed"
5032         rm -f $DIR/$tfile
5033 }
5034 run_test 104a "lfs df [-ih] [path] test ========================="
5035
5036 test_104b() {
5037         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
5038         chmod 666 /dev/obd
5039         denied_cnt=$((`$RUNAS $LFS check servers 2>&1 | grep "Permission denied" | wc -l`))
5040         if [ $denied_cnt -ne 0 ];
5041         then
5042                     error "lfs check servers test failed"
5043         fi
5044 }
5045 run_test 104b "$RUNAS lfs check servers test ===================="
5046
5047 test_105a() {
5048         # doesn't work on 2.4 kernels
5049         touch $DIR/$tfile
5050         if [ -n "`mount | grep \"$DIR.*flock\" | grep -v noflock`" ];
5051         then
5052                 flocks_test 1 on -f $DIR/$tfile || error "fail flock on"
5053         else
5054                 flocks_test 1 off -f $DIR/$tfile || error "fail flock off"
5055         fi
5056         rm -f $DIR/$tfile
5057 }
5058 run_test 105a "flock when mounted without -o flock test ========"
5059
5060 test_105b() {
5061         touch $DIR/$tfile
5062         if [ -n "`mount | grep \"$DIR.*flock\" | grep -v noflock`" ];
5063         then
5064                 flocks_test 1 on -c $DIR/$tfile || error "fail flock on"
5065         else
5066                 flocks_test 1 off -c $DIR/$tfile || error "fail flock off"
5067         fi
5068         rm -f $DIR/$tfile
5069 }
5070 run_test 105b "fcntl when mounted without -o flock test ========"
5071
5072 test_105c() {
5073         touch $DIR/$tfile
5074         if [ -n "`mount | grep \"$DIR.*flock\" | grep -v noflock`" ];
5075         then
5076                 flocks_test 1 on -l $DIR/$tfile || error "fail flock on"
5077         else
5078                 flocks_test 1 off -l $DIR/$tfile || error "fail flock off"
5079         fi
5080         rm -f $DIR/$tfile
5081 }
5082 run_test 105c "lockf when mounted without -o flock test ========"
5083
5084 test_105d() { # bug 15924
5085         mkdir -p $DIR/$tdir
5086         [ -z "`mount | grep \"$DIR.*flock\" | grep -v noflock`" ] && \
5087                 skip "mount w/o flock enabled" && return
5088         #define OBD_FAIL_LDLM_CP_CB_WAIT  0x315
5089         $LCTL set_param fail_loc=0x80000315
5090         flocks_test 2 $DIR/$tdir
5091 }
5092 run_test 105d "flock race (should not freeze) ========"
5093
5094 test_105e() { # bug 22660 && 22040
5095         [ -z "`mount | grep \"$DIR.*flock\" | grep -v noflock`" ] && \
5096                 skip "mount w/o flock enabled" && return
5097         touch $DIR/$tfile
5098         flocks_test 3 $DIR/$tfile
5099 }
5100 run_test 105e "Two conflicting flocks from same process ======="
5101
5102 test_106() { #bug 10921
5103         mkdir -p $DIR/$tdir
5104         $DIR/$tdir && error "exec $DIR/$tdir succeeded"
5105         chmod 777 $DIR/$tdir || error "chmod $DIR/$tdir failed"
5106 }
5107 run_test 106 "attempt exec of dir followed by chown of that dir"
5108
5109 test_107() {
5110         CDIR=`pwd`
5111         cd $DIR
5112
5113         local file=core
5114         rm -f $file
5115
5116         local save_pattern=$(sysctl -n kernel.core_pattern)
5117         local save_uses_pid=$(sysctl -n kernel.core_uses_pid)
5118         sysctl -w kernel.core_pattern=$file
5119         sysctl -w kernel.core_uses_pid=0
5120
5121         ulimit -c unlimited
5122         sleep 60 &
5123         SLEEPPID=$!
5124
5125         sleep 1
5126
5127         kill -s 11 $SLEEPPID
5128         wait $SLEEPPID
5129         if [ -e $file ]; then
5130                 size=`stat -c%s $file`
5131                 [ $size -eq 0 ] && error "Fail to create core file $file"
5132         else
5133                 error "Fail to create core file $file"
5134         fi
5135         rm -f $file
5136         sysctl -w kernel.core_pattern=$save_pattern
5137         sysctl -w kernel.core_uses_pid=$save_uses_pid
5138         cd $CDIR
5139 }
5140 run_test 107 "Coredump on SIG"
5141
5142 test_110() {
5143         mkdir -p $DIR/d110
5144         mkdir $DIR/d110/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa || error "mkdir with 255 char fail"
5145         mkdir $DIR/d110/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb && error "mkdir with 256 char should fail, but not"
5146         touch $DIR/d110/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx || error "create with 255 char fail"
5147         touch $DIR/d110/yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy && error ""create with 256 char should fail, but not
5148
5149         ls -l $DIR/d110
5150     rm -fr $DIR/d110
5151 }
5152 run_test 110 "filename length checking"
5153
5154 test_115() {
5155         OSTIO_pre=$(ps -e|grep ll_ost_io|awk '{print $4}'|sort -n|tail -1|\
5156             cut -c11-20)
5157         [ -z "$OSTIO_pre" ] && skip "no OSS threads" && \
5158             return
5159         echo "Starting with $OSTIO_pre threads"
5160
5161         NUMTEST=20000
5162         NUMFREE=`df -i -P $DIR | tail -n 1 | awk '{ print $4 }'`
5163         [ $NUMFREE -lt $NUMTEST ] && NUMTEST=$(($NUMFREE - 1000))
5164         echo "$NUMTEST creates/unlinks"
5165         mkdir -p $DIR/$tdir
5166         createmany -o $DIR/$tdir/$tfile $NUMTEST
5167         unlinkmany $DIR/$tdir/$tfile $NUMTEST
5168
5169         OSTIO_post=$(ps -e|grep ll_ost_io|awk '{print $4}'|sort -n|tail -1|\
5170             cut -c11-20)
5171
5172         # don't return an error
5173         [ $OSTIO_post -eq $OSTIO_pre ] && echo \
5174             "WARNING: No new ll_ost_io threads were created ($OSTIO_pre)" &&\
5175             echo "This may be fine, depending on what ran before this test" &&\
5176             echo "and how fast this system is." && return
5177
5178         echo "Started with $OSTIO_pre threads, ended with $OSTIO_post"
5179 }
5180 run_test 115 "verify dynamic thread creation===================="
5181
5182 free_min_max () {
5183         wait_delete_completed
5184         AVAIL=($(lctl get_param -n osc.*[oO][sS][cC]-[^M]*.kbytesavail))
5185         echo OST kbytes available: ${AVAIL[@]}
5186         MAXI=0; MAXV=${AVAIL[0]}
5187         MINI=0; MINV=${AVAIL[0]}
5188         for ((i = 0; i < ${#AVAIL[@]}; i++)); do
5189             #echo OST $i: ${AVAIL[i]}kb
5190             if [ ${AVAIL[i]} -gt $MAXV ]; then
5191                 MAXV=${AVAIL[i]}; MAXI=$i
5192             fi
5193             if [ ${AVAIL[i]} -lt $MINV ]; then
5194                 MINV=${AVAIL[i]}; MINI=$i
5195             fi
5196         done
5197         echo Min free space: OST $MINI: $MINV
5198         echo Max free space: OST $MAXI: $MAXV
5199 }
5200
5201 test_116() {
5202         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2 OSTs" && return
5203
5204         echo -n "Free space priority "
5205         lctl get_param -n lov.*-clilov-*.qos_prio_free
5206         declare -a AVAIL
5207         free_min_max
5208         [ $MINV -gt 960000 ] && skip "too much free space in OST$MINI, skip" &&\
5209                 return
5210
5211         # generate uneven OSTs
5212         mkdir -p $DIR/$tdir/OST${MINI}
5213         declare -i FILL
5214         FILL=$(($MINV / 4))
5215         echo "Filling 25% remaining space in OST${MINI} with ${FILL}Kb"
5216         $SETSTRIPE -i $MINI -c 1 $DIR/$tdir/OST${MINI}||error "setstripe failed"
5217         i=0
5218         while [ $FILL -gt 0 ]; do
5219             i=$(($i + 1))
5220             dd if=/dev/zero of=$DIR/$tdir/OST${MINI}/$tfile-$i bs=2M count=1 2>/dev/null
5221             FILL=$(($FILL - 2048))
5222             echo -n .
5223         done
5224         FILL=$(($MINV / 4))
5225         sync
5226         sleep_maxage
5227
5228         free_min_max
5229         DIFF=$(($MAXV - $MINV))
5230         DIFF2=$(($DIFF * 100 / $MINV))
5231         echo -n "diff=${DIFF}=${DIFF2}% must be > 20% for QOS mode..."
5232         if [ $DIFF2 -gt 20 ]; then
5233             echo "ok"
5234         else
5235             echo "failed - QOS mode won't be used"
5236             error_ignore "QOS imbalance criteria not met"
5237             return
5238         fi
5239
5240         MINI1=$MINI; MINV1=$MINV
5241         MAXI1=$MAXI; MAXV1=$MAXV
5242
5243         # now fill using QOS
5244         echo writing a bunch of files to QOS-assigned OSTs
5245         $SETSTRIPE $DIR/$tdir -c 1
5246         i=0
5247         while [ $FILL -gt 0 ]; do
5248             i=$(($i + 1))
5249             dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=1024 count=200 2>/dev/null
5250             FILL=$(($FILL - 200))
5251             echo -n .
5252         done
5253         echo "wrote $i 200k files"
5254         sync
5255         sleep_maxage
5256
5257         echo "Note: free space may not be updated, so measurements might be off"
5258         free_min_max
5259         DIFF2=$(($MAXV - $MINV))
5260         echo "free space delta: orig $DIFF final $DIFF2"
5261         [ $DIFF2 -gt $DIFF ] && echo "delta got worse!"
5262         DIFF=$(($MINV1 - ${AVAIL[$MINI1]}))
5263         echo "Wrote $DIFF to smaller OST $MINI1"
5264         DIFF2=$(($MAXV1 - ${AVAIL[$MAXI1]}))
5265         echo "Wrote $DIFF2 to larger OST $MAXI1"
5266         [ $DIFF -gt 0 ] && echo "Wrote $(($DIFF2 * 100 / $DIFF - 100))% more data to larger OST $MAXI1"
5267
5268         # Figure out which files were written where
5269         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
5270                awk '/'$MINI1': / {print $2; exit}')
5271         echo $UUID
5272         MINC=$($GETSTRIPE --obd $UUID $DIR/$tdir | wc -l)
5273         echo "$MINC files created on smaller OST $MINI1"
5274         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
5275                awk '/'$MAXI1': / {print $2; exit}')
5276         echo $UUID
5277         MAXC=$($GETSTRIPE --obd $UUID $DIR/$tdir | wc -l)
5278         echo "$MAXC files created on larger OST $MAXI1"
5279         [ $MINC -gt 0 ] && echo "Wrote $(($MAXC * 100 / $MINC - 100))% more files to larger OST $MAXI1"
5280         [ $MAXC -gt $MINC ] || error_ignore "stripe QOS didn't balance free space"
5281
5282         rm -rf $DIR/$tdir
5283 }
5284 run_test 116 "stripe QOS: free space balance ==================="
5285
5286 test_117() # bug 10891
5287 {
5288         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1
5289         #define OBD_FAIL_OST_SETATTR_CREDITS 0x21e
5290         lctl set_param fail_loc=0x21e
5291         > $DIR/$tfile || error "truncate failed"
5292         lctl set_param fail_loc=0
5293         echo "Truncate succeeded."
5294         rm -f $DIR/$tfile
5295 }
5296 run_test 117 "verify fsfilt_extend =========="
5297
5298 export OLD_RESENDCOUNT=""
5299 set_resend_count () {
5300         local PROC_RESENDCOUNT="osc.${FSNAME}-OST*-osc-*.resend_count"
5301         OLD_RESENDCOUNT=$(lctl get_param -n $PROC_RESENDCOUNT | head -1)
5302         lctl set_param -n $PROC_RESENDCOUNT $1
5303         echo resend_count is set to $(lctl get_param -n $PROC_RESENDCOUNT)
5304 }
5305
5306 [ "$SLOW" = "no" ] && set_resend_count 4 # for reduce test_118* time (bug 14842)
5307
5308 # Reset async IO behavior after error case
5309 reset_async() {
5310         FILE=$DIR/reset_async
5311
5312         # Ensure all OSCs are cleared
5313         $LSTRIPE -c -1 $FILE
5314         dd if=/dev/zero of=$FILE bs=64k count=$OSTCOUNT
5315         sync
5316         rm $FILE
5317 }
5318
5319 test_118a() #bug 11710
5320 {
5321         reset_async
5322
5323         multiop $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
5324         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
5325         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
5326
5327         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
5328                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
5329                 return 1;
5330         fi
5331         rm -f $DIR/$tfile
5332 }
5333 run_test 118a "verify O_SYNC works =========="
5334
5335 test_118b()
5336 {
5337         remote_ost_nodsh && skip "remote OST with nodsh" && return
5338
5339         reset_async
5340
5341         #define OBD_FAIL_OST_ENOENT 0x217
5342         set_nodes_failloc "$(osts_nodes)" 0x217
5343         multiop $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
5344         RC=$?
5345         set_nodes_failloc "$(osts_nodes)" 0
5346         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
5347         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
5348                     grep -c writeback)
5349
5350         if [[ $RC -eq 0 ]]; then
5351                 error "Must return error due to dropped pages, rc=$RC"
5352                 return 1;
5353         fi
5354
5355         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
5356                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
5357                 return 1;
5358         fi
5359
5360         echo "Dirty pages not leaked on ENOENT"
5361
5362         # Due to the above error the OSC will issue all RPCs syncronously
5363         # until a subsequent RPC completes successfully without error.
5364         multiop $DIR/$tfile Ow4096yc
5365         rm -f $DIR/$tfile
5366
5367         return 0
5368 }
5369 run_test 118b "Reclaim dirty pages on fatal error =========="
5370
5371 test_118c()
5372 {
5373         remote_ost_nodsh && skip "remote OST with nodsh" && return
5374
5375         reset_async
5376
5377         #define OBD_FAIL_OST_EROFS               0x216
5378         set_nodes_failloc "$(osts_nodes)" 0x216
5379
5380         # multiop should block due to fsync until pages are written
5381         multiop $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
5382         MULTIPID=$!
5383         sleep 1
5384
5385         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
5386                 error "Multiop failed to block on fsync, pid=$MULTIPID"
5387         fi
5388
5389         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
5390                     grep -c writeback)
5391         if [[ $WRITEBACK -eq 0 ]]; then
5392                 error "No page in writeback, writeback=$WRITEBACK"
5393         fi
5394
5395         set_nodes_failloc "$(osts_nodes)" 0
5396         wait $MULTIPID
5397         RC=$?
5398         if [[ $RC -ne 0 ]]; then
5399                 error "Multiop fsync failed, rc=$RC"
5400         fi
5401
5402         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
5403         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
5404                     grep -c writeback)
5405         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
5406                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
5407         fi
5408
5409         rm -f $DIR/$tfile
5410         echo "Dirty pages flushed via fsync on EROFS"
5411         return 0
5412 }
5413 run_test 118c "Fsync blocks on EROFS until dirty pages are flushed =========="
5414
5415 test_118d()
5416 {
5417         remote_ost_nodsh && skip "remote OST with nodsh" && return
5418
5419         reset_async
5420
5421         #define OBD_FAIL_OST_BRW_PAUSE_BULK
5422         set_nodes_failloc "$(osts_nodes)" 0x214
5423         # multiop should block due to fsync until pages are written
5424         multiop $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
5425         MULTIPID=$!
5426         sleep 1
5427
5428         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
5429                 error "Multiop failed to block on fsync, pid=$MULTIPID"
5430         fi
5431
5432         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
5433                     grep -c writeback)
5434         if [[ $WRITEBACK -eq 0 ]]; then
5435                 error "No page in writeback, writeback=$WRITEBACK"
5436         fi
5437
5438         wait $MULTIPID || error "Multiop fsync failed, rc=$?"
5439         set_nodes_failloc "$(osts_nodes)" 0
5440
5441         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
5442         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
5443                     grep -c writeback)
5444         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
5445                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
5446         fi
5447
5448         rm -f $DIR/$tfile
5449         echo "Dirty pages gaurenteed flushed via fsync"
5450         return 0
5451 }
5452 run_test 118d "Fsync validation inject a delay of the bulk =========="
5453
5454 test_118f() {
5455         reset_async
5456
5457         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
5458         lctl set_param fail_loc=0x8000040a
5459
5460         # Should simulate EINVAL error which is fatal
5461         multiop $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
5462         RC=$?
5463         if [[ $RC -eq 0 ]]; then
5464                 error "Must return error due to dropped pages, rc=$RC"
5465         fi
5466
5467         lctl set_param fail_loc=0x0
5468
5469         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
5470         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
5471         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
5472                     grep -c writeback)
5473         if [[ $LOCKED -ne 0 ]]; then
5474                 error "Locked pages remain in cache, locked=$LOCKED"
5475         fi
5476
5477         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
5478                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
5479         fi
5480
5481         rm -f $DIR/$tfile
5482         echo "No pages locked after fsync"
5483
5484         reset_async
5485         return 0
5486 }
5487 run_test 118f "Simulate unrecoverable OSC side error =========="
5488
5489 test_118g() {
5490         reset_async
5491
5492         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
5493         lctl set_param fail_loc=0x406
5494
5495         # simulate local -ENOMEM
5496         multiop $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
5497         RC=$?
5498
5499         lctl set_param fail_loc=0
5500         if [[ $RC -eq 0 ]]; then
5501                 error "Must return error due to dropped pages, rc=$RC"
5502         fi
5503
5504         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
5505         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
5506         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
5507                         grep -c writeback)
5508         if [[ $LOCKED -ne 0 ]]; then
5509                 error "Locked pages remain in cache, locked=$LOCKED"
5510         fi
5511
5512         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
5513                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
5514         fi
5515
5516         rm -f $DIR/$tfile
5517         echo "No pages locked after fsync"
5518
5519         reset_async
5520         return 0
5521 }
5522 run_test 118g "Don't stay in wait if we got local -ENOMEM  =========="
5523
5524 test_118h() {
5525         remote_ost_nodsh && skip "remote OST with nodsh" && return
5526
5527         reset_async
5528
5529         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
5530         set_nodes_failloc "$(osts_nodes)" 0x20e
5531         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
5532         multiop $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
5533         RC=$?
5534
5535         set_nodes_failloc "$(osts_nodes)" 0
5536         if [[ $RC -eq 0 ]]; then
5537                 error "Must return error due to dropped pages, rc=$RC"
5538         fi
5539
5540         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
5541         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
5542         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
5543                     grep -c writeback)
5544         if [[ $LOCKED -ne 0 ]]; then
5545                 error "Locked pages remain in cache, locked=$LOCKED"
5546         fi
5547
5548         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
5549                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
5550         fi
5551
5552         rm -f $DIR/$tfile
5553         echo "No pages locked after fsync"
5554
5555         return 0
5556 }
5557 run_test 118h "Verify timeout in handling recoverables errors  =========="
5558
5559 test_118i() {
5560         remote_ost_nodsh && skip "remote OST with nodsh" && return
5561
5562         reset_async
5563
5564         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
5565         set_nodes_failloc "$(osts_nodes)" 0x20e
5566
5567         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
5568         multiop $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
5569         PID=$!
5570         sleep 5
5571         set_nodes_failloc "$(osts_nodes)" 0
5572
5573         wait $PID
5574         RC=$?
5575         if [[ $RC -ne 0 ]]; then
5576                 error "got error, but should be not, rc=$RC"
5577         fi
5578
5579         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
5580         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
5581         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
5582         if [[ $LOCKED -ne 0 ]]; then
5583                 error "Locked pages remain in cache, locked=$LOCKED"
5584         fi
5585
5586         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
5587                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
5588         fi
5589
5590         rm -f $DIR/$tfile
5591         echo "No pages locked after fsync"
5592
5593         return 0
5594 }
5595 run_test 118i "Fix error before timeout in recoverable error  =========="
5596
5597 test_118j() {
5598         remote_ost_nodsh && skip "remote OST with nodsh" && return
5599
5600         reset_async
5601
5602         #define OBD_FAIL_OST_BRW_WRITE_BULK2     0x220
5603         set_nodes_failloc "$(osts_nodes)" 0x220
5604
5605         # return -EIO from OST
5606         multiop $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
5607         RC=$?
5608         set_nodes_failloc "$(osts_nodes)" 0x0
5609         if [[ $RC -eq 0 ]]; then
5610                 error "Must return error due to dropped pages, rc=$RC"
5611         fi
5612
5613         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
5614         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
5615         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
5616         if [[ $LOCKED -ne 0 ]]; then
5617                 error "Locked pages remain in cache, locked=$LOCKED"
5618         fi
5619
5620         # in recoverable error on OST we want resend and stay until it finished
5621         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
5622                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
5623         fi
5624
5625         rm -f $DIR/$tfile
5626         echo "No pages locked after fsync"
5627
5628         return 0
5629 }
5630 run_test 118j "Simulate unrecoverable OST side error =========="
5631
5632 test_118k()
5633 {
5634         remote_ost_nodsh && skip "remote OSTs with nodsh" && return
5635
5636         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
5637         set_nodes_failloc "$(osts_nodes)" 0x20e
5638         mkdir -p $DIR/$tdir
5639
5640         for ((i=0;i<10;i++)); do
5641                 (dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=1M count=10 || \
5642                         error "dd to $DIR/$tdir/$tfile-$i failed" )&
5643                 SLEEPPID=$!
5644                 sleep 0.500s
5645                 kill $SLEEPPID
5646                 wait $SLEEPPID
5647         done
5648
5649         set_nodes_failloc "$(osts_nodes)" 0
5650         rm -rf $DIR/$tdir
5651 }
5652 run_test 118k "bio alloc -ENOMEM and IO TERM handling ========="
5653
5654 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
5655
5656 test_119a() # bug 11737
5657 {
5658         BSIZE=$((512 * 1024))
5659         directio write $DIR/$tfile 0 1 $BSIZE
5660         # We ask to read two blocks, which is more than a file size.
5661         # directio will indicate an error when requested and actual
5662         # sizes aren't equeal (a normal situation in this case) and
5663         # print actual read amount.
5664         NOB=`directio read $DIR/$tfile 0 2 $BSIZE | awk '/error/ {print $6}'`
5665         if [ "$NOB" != "$BSIZE" ]; then
5666                 error "read $NOB bytes instead of $BSIZE"
5667         fi
5668         rm -f $DIR/$tfile
5669 }
5670 run_test 119a "Short directIO read must return actual read amount"
5671
5672 test_119b() # bug 11737
5673 {
5674         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
5675
5676         $SETSTRIPE -c 2 $DIR/$tfile || error "setstripe failed"
5677         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1 || error "dd failed"
5678         sync
5679         multiop $DIR/$tfile oO_RDONLY:O_DIRECT:r$((2048 * 1024)) || \
5680                 error "direct read failed"
5681         rm -f $DIR/$tfile
5682 }
5683 run_test 119b "Sparse directIO read must return actual read amount"
5684
5685 test_119c() # bug 13099
5686 {
5687         BSIZE=1048576
5688         directio write $DIR/$tfile 3 1 $BSIZE || error "direct write failed"
5689         directio readhole $DIR/$tfile 0 2 $BSIZE || error "reading hole failed"
5690         rm -f $DIR/$tfile
5691 }
5692 run_test 119c "Testing for direct read hitting hole"
5693
5694 test_119d() # bug 15950
5695 {
5696         MAX_RPCS_IN_FLIGHT=`$LCTL get_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight`
5697         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight 1
5698         BSIZE=1048576
5699         $SETSTRIPE $DIR/$tfile -i 0 -c 1 || error "setstripe failed"
5700         $DIRECTIO write $DIR/$tfile 0 1 $BSIZE || error "first directio failed"
5701         #define OBD_FAIL_OSC_DIO_PAUSE           0x40d
5702         lctl set_param fail_loc=0x40d
5703         $DIRECTIO write $DIR/$tfile 1 4 $BSIZE &
5704         pid_dio=$!
5705         sleep 1
5706         cat $DIR/$tfile > /dev/null &
5707         lctl set_param fail_loc=0
5708         pid_reads=$!
5709         wait $pid_dio
5710         log "the DIO writes have completed, now wait for the reads (should not block very long)"
5711         sleep 2
5712         [ -n "`ps h -p $pid_reads -o comm`" ] && \
5713         error "the read rpcs have not completed in 2s"
5714         rm -f $DIR/$tfile
5715         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight $MAX_RPCS_IN_FLIGHT
5716 }
5717 run_test 119d "The DIO path should try to send a new rpc once one is completed"
5718
5719 test_120a() {
5720         mkdir -p $DIR/$tdir
5721         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
5722                skip "no early lock cancel on server" && return 0
5723         lru_resize_disable mdc
5724         lru_resize_disable osc
5725         cancel_lru_locks mdc
5726         stat $DIR/$tdir > /dev/null
5727         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
5728         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
5729         mkdir $DIR/$tdir/d1
5730         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
5731         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
5732         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
5733         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
5734         lru_resize_enable mdc
5735         lru_resize_enable osc
5736 }
5737 run_test 120a "Early Lock Cancel: mkdir test"
5738
5739 test_120b() {
5740         mkdir -p $DIR/$tdir
5741         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
5742                skip "no early lock cancel on server" && return 0
5743         lru_resize_disable mdc
5744         lru_resize_disable osc
5745         cancel_lru_locks mdc
5746         stat $DIR/$tdir > /dev/null
5747         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
5748         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
5749         touch $DIR/$tdir/f1
5750         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
5751         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
5752         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
5753         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
5754         lru_resize_enable mdc
5755         lru_resize_enable osc
5756 }
5757 run_test 120b "Early Lock Cancel: create test"
5758
5759 test_120c() {
5760         mkdir -p $DIR/$tdir
5761         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
5762                skip "no early lock cancel on server" && return 0
5763         lru_resize_disable mdc
5764         lru_resize_disable osc
5765         mkdir -p $DIR/$tdir/d1 $DIR/$tdir/d2
5766         touch $DIR/$tdir/d1/f1
5767         cancel_lru_locks mdc
5768         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 > /dev/null
5769         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
5770         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
5771         ln $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
5772         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
5773         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
5774         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
5775         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
5776         lru_resize_enable mdc
5777         lru_resize_enable osc
5778 }
5779 run_test 120c "Early Lock Cancel: link test"
5780
5781 test_120d() {
5782         mkdir -p $DIR/$tdir
5783         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
5784                skip "no early lock cancel on server" && return 0
5785         lru_resize_disable mdc
5786         lru_resize_disable osc
5787         touch $DIR/$tdir
5788         cancel_lru_locks mdc
5789         stat $DIR/$tdir > /dev/null
5790         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
5791         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
5792         chmod a+x $DIR/$tdir
5793         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
5794         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
5795         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
5796         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
5797         lru_resize_enable mdc
5798         lru_resize_enable osc
5799 }
5800 run_test 120d "Early Lock Cancel: setattr test"
5801
5802 test_120e() {
5803         mkdir -p $DIR/$tdir
5804         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
5805                skip "no early lock cancel on server" && return 0
5806         lru_resize_disable mdc
5807         lru_resize_disable osc
5808         dd if=/dev/zero of=$DIR/$tdir/f1 count=1
5809         cancel_lru_locks mdc
5810         cancel_lru_locks osc
5811         dd if=$DIR/$tdir/f1 of=/dev/null
5812         stat $DIR/$tdir $DIR/$tdir/f1 > /dev/null
5813         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
5814               awk '/ldlm_cancel/ {print $2}'`
5815         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
5816               awk '/ldlm_bl_callback/ {print $2}'`
5817         unlink $DIR/$tdir/f1
5818         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
5819               awk '/ldlm_cancel/ {print $2}'`
5820         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
5821               awk '/ldlm_bl_callback/ {print $2}'`
5822         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
5823         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
5824         lru_resize_enable mdc
5825         lru_resize_enable osc
5826 }
5827 run_test 120e "Early Lock Cancel: unlink test"
5828
5829 test_120f() {
5830         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
5831                skip "no early lock cancel on server" && return 0
5832         mkdir -p $DIR/$tdir
5833         lru_resize_disable mdc
5834         lru_resize_disable osc
5835         mkdir -p $DIR/$tdir/d1 $DIR/$tdir/d2
5836         dd if=/dev/zero of=$DIR/$tdir/d1/f1 count=1
5837         dd if=/dev/zero of=$DIR/$tdir/d2/f2 count=1
5838         cancel_lru_locks mdc
5839         cancel_lru_locks osc
5840         dd if=$DIR/$tdir/d1/f1 of=/dev/null
5841         dd if=$DIR/$tdir/d2/f2 of=/dev/null
5842         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2 > /dev/null
5843         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
5844               awk '/ldlm_cancel/ {print $2}'`
5845         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
5846               awk '/ldlm_bl_callback/ {print $2}'`
5847         mv $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
5848         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
5849               awk '/ldlm_cancel/ {print $2}'`
5850         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
5851               awk '/ldlm_bl_callback/ {print $2}'`
5852         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
5853         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
5854         lru_resize_enable mdc
5855         lru_resize_enable osc
5856 }
5857 run_test 120f "Early Lock Cancel: rename test"
5858
5859 test_120g() {
5860         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
5861                skip "no early lock cancel on server" && return 0
5862         lru_resize_disable mdc
5863         lru_resize_disable osc
5864         count=10000
5865         echo create $count files
5866         mkdir -p $DIR/$tdir
5867         cancel_lru_locks mdc
5868         cancel_lru_locks osc
5869         t0=`date +%s`
5870
5871         can0=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
5872               awk '/ldlm_cancel/ {print $2}'`
5873         blk0=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
5874               awk '/ldlm_bl_callback/ {print $2}'`
5875         createmany -o $DIR/$tdir/f $count
5876         sync
5877         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
5878               awk '/ldlm_cancel/ {print $2}'`
5879         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
5880               awk '/ldlm_bl_callback/ {print $2}'`
5881         t1=`date +%s`
5882         echo total: $((can1-can0)) cancels, $((blk1-blk0)) blockings
5883         echo rm $count files
5884         rm -r $DIR/$tdir
5885         sync
5886         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
5887               awk '/ldlm_cancel/ {print $2}'`
5888         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
5889               awk '/ldlm_bl_callback/ {print $2}'`
5890         t2=`date +%s`
5891         echo total: $count removes in $((t2-t1))
5892         echo total: $((can2-can1)) cancels, $((blk2-blk1)) blockings
5893         sleep 2
5894         # wait for commitment of removal
5895         lru_resize_enable mdc
5896         lru_resize_enable osc
5897 }
5898 run_test 120g "Early Lock Cancel: performance test"
5899
5900 test_121() { #bug #10589
5901         rm -rf $DIR/$tfile
5902         writes=$(LANG=C dd if=/dev/zero of=$DIR/$tfile count=1 2>&1 | awk -F '+' '/out$/ {print $1}')
5903 #define OBD_FAIL_LDLM_CANCEL_RACE        0x310
5904         lctl set_param fail_loc=0x310
5905         cancel_lru_locks osc > /dev/null
5906         reads=$(LANG=C dd if=$DIR/$tfile of=/dev/null 2>&1 | awk -F '+' '/in$/ {print $1}')
5907         lctl set_param fail_loc=0
5908         [ "$reads" -eq "$writes" ] || error "read" $reads "blocks, must be" $writes
5909 }
5910 run_test 121 "read cancel race ========="
5911
5912 test_123a() { # was test 123, statahead(bug 11401)
5913         SLOWOK=0
5914         if [ -z "$(grep "processor.*: 1" /proc/cpuinfo)" ]; then
5915             log "testing on UP system. Performance may be not as good as expected."
5916                         SLOWOK=1
5917         fi
5918
5919         rm -rf $DIR/$tdir
5920         mkdir -p $DIR/$tdir
5921         NUMFREE=`df -i -P $DIR | tail -n 1 | awk '{ print $4 }'`
5922         [ $NUMFREE -gt 100000 ] && NUMFREE=100000 || NUMFREE=$((NUMFREE-1000))
5923         MULT=10
5924         for ((i=100, j=0; i<=$NUMFREE; j=$i, i=$((i * MULT)) )); do
5925                 createmany -o $DIR/$tdir/$tfile $j $((i - j))
5926
5927                 max=`lctl get_param -n llite.*.statahead_max | head -n 1`
5928                 lctl set_param -n llite.*.statahead_max 0
5929                 lctl get_param llite.*.statahead_max
5930                 cancel_lru_locks mdc
5931                 cancel_lru_locks osc
5932                 stime=`date +%s`
5933                 time ls -l $DIR/$tdir | wc -l
5934                 etime=`date +%s`
5935                 delta=$((etime - stime))
5936                 log "ls $i files without statahead: $delta sec"
5937                 lctl set_param llite.*.statahead_max=$max
5938
5939                 swrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
5940                 lctl get_param -n llite.*.statahead_max | grep '[0-9]'
5941                 cancel_lru_locks mdc
5942                 cancel_lru_locks osc
5943                 stime=`date +%s`
5944                 time ls -l $DIR/$tdir | wc -l
5945                 etime=`date +%s`
5946                 delta_sa=$((etime - stime))
5947                 log "ls $i files with statahead: $delta_sa sec"
5948                 lctl get_param -n llite.*.statahead_stats
5949                 ewrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
5950
5951                 [ $swrong -lt $ewrong ] && log "statahead was stopped, maybe too many locks held!"
5952                 [ $delta -eq 0 -o $delta_sa -eq 0 ] && continue
5953
5954                 if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
5955                     max=`lctl get_param -n llite.*.statahead_max | head -n 1`
5956                     lctl set_param -n llite.*.statahead_max 0
5957                     lctl get_param llite.*.statahead_max
5958                     cancel_lru_locks mdc
5959                     cancel_lru_locks osc
5960                     stime=`date +%s`
5961                     time ls -l $DIR/$tdir | wc -l
5962                     etime=`date +%s`
5963                     delta=$((etime - stime))
5964                     log "ls $i files again without statahead: $delta sec"
5965                     lctl set_param llite.*.statahead_max=$max
5966                     if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
5967                         if [  $SLOWOK -eq 0 ]; then
5968                                 error "ls $i files is slower with statahead!"
5969                         else
5970                                 log "ls $i files is slower with statahead!"
5971                         fi
5972                         break
5973                     fi
5974                 fi
5975
5976                 [ $delta -gt 20 ] && break
5977                 [ $delta -gt 8 ] && MULT=$((50 / delta))
5978                 [ "$SLOW" = "no" -a $delta -gt 5 ] && break
5979         done
5980         log "ls done"
5981
5982         stime=`date +%s`
5983         rm -r $DIR/$tdir
5984         sync
5985         etime=`date +%s`
5986         delta=$((etime - stime))
5987         log "rm -r $DIR/$tdir/: $delta seconds"
5988         log "rm done"
5989         lctl get_param -n llite.*.statahead_stats
5990 }
5991 run_test 123a "verify statahead work"
5992
5993 test_123b () { # statahead(bug 15027)
5994         mkdir -p $DIR/$tdir
5995         createmany -o $DIR/$tdir/$tfile-%d 1000
5996
5997         cancel_lru_locks mdc
5998         cancel_lru_locks osc
5999
6000 #define OBD_FAIL_MDC_GETATTR_ENQUEUE     0x803
6001         lctl set_param fail_loc=0x80000803
6002         ls -lR $DIR/$tdir > /dev/null
6003         log "ls done"
6004         lctl set_param fail_loc=0x0
6005         lctl get_param -n llite.*.statahead_stats
6006         rm -r $DIR/$tdir
6007         sync
6008
6009 }
6010 run_test 123b "not panic with network error in statahead enqueue (bug 15027)"
6011
6012 test_124a() {
6013         [ -z "`lctl get_param -n mdc.*.connect_flags | grep lru_resize`" ] && \
6014                skip "no lru resize on server" && return 0
6015         local NR=2000
6016         mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
6017
6018         log "create $NR files at $DIR/$tdir"
6019         createmany -o $DIR/$tdir/f $NR ||
6020                 error "failed to create $NR files in $DIR/$tdir"
6021
6022         cancel_lru_locks mdc
6023         ls -l $DIR/$tdir > /dev/null
6024
6025         local NSDIR=""
6026         local LRU_SIZE=0
6027         for VALUE in `lctl get_param ldlm.namespaces.*mdc-*.lru_size`; do
6028                 local PARAM=`echo ${VALUE[0]} | cut -d "=" -f1`
6029                 LRU_SIZE=$(lctl get_param -n $PARAM)
6030                 if [ $LRU_SIZE -gt $(default_lru_size) ]; then
6031                         NSDIR=$(echo $PARAM | cut -d "." -f1-3)
6032                         log "NS=$(basename $NSDIR)"
6033                         break
6034                 fi
6035         done
6036
6037         if [ -z "$NSDIR" -o $LRU_SIZE -lt $(default_lru_size) ]; then
6038                 skip "Not enough cached locks created!"
6039                 return 0
6040         fi
6041         log "LRU=$LRU_SIZE"
6042
6043         local SLEEP=30
6044
6045         # We know that lru resize allows one client to hold $LIMIT locks
6046         # for 10h. After that locks begin to be killed by client.
6047         local MAX_HRS=10
6048         local LIMIT=`lctl get_param -n $NSDIR.pool.limit`
6049
6050         # Make LVF so higher that sleeping for $SLEEP is enough to _start_
6051         # killing locks. Some time was spent for creating locks. This means
6052         # that up to the moment of sleep finish we must have killed some of
6053         # them (10-100 locks). This depends on how fast ther were created.
6054         # Many of them were touched in almost the same moment and thus will
6055         # be killed in groups.
6056         local LVF=$(($MAX_HRS * 60 * 60 / $SLEEP * $LIMIT / $LRU_SIZE))
6057
6058         # Use $LRU_SIZE_B here to take into account real number of locks
6059         # created in the case of CMD, LRU_SIZE_B != $NR in most of cases
6060         local LRU_SIZE_B=$LRU_SIZE
6061         log "LVF=$LVF"
6062         local OLD_LVF=`lctl get_param -n $NSDIR.pool.lock_volume_factor`
6063         lctl set_param -n $NSDIR.pool.lock_volume_factor $LVF
6064
6065         # Let's make sure that we really have some margin. Client checks
6066         # cached locks every 10 sec.
6067         SLEEP=$((SLEEP+20))
6068         log "Sleep ${SLEEP} sec"
6069         local SEC=0
6070         while ((SEC<$SLEEP)); do
6071                 echo -n "..."
6072                 sleep 5
6073                 SEC=$((SEC+5))
6074                 LRU_SIZE=`lctl get_param -n $NSDIR/lru_size`
6075                 echo -n "$LRU_SIZE"
6076         done
6077         echo ""
6078         lctl set_param -n $NSDIR.pool.lock_volume_factor $OLD_LVF
6079         local LRU_SIZE_A=`lctl get_param -n $NSDIR/lru_size`
6080
6081         [ $LRU_SIZE_B -gt $LRU_SIZE_A ] || {
6082                 error "No locks dropped in ${SLEEP}s. LRU size: $LRU_SIZE_A"
6083                 unlinkmany $DIR/$tdir/f $NR
6084                 return
6085         }
6086
6087         log "Dropped "$((LRU_SIZE_B-LRU_SIZE_A))" locks in ${SLEEP}s"
6088         log "unlink $NR files at $DIR/$tdir"
6089         unlinkmany $DIR/$tdir/f $NR
6090 }
6091 run_test 124a "lru resize ======================================="
6092
6093 get_max_pool_limit()
6094 {
6095         local limit=`lctl get_param -n ldlm.namespaces.*-MDT0000-mdc-*.pool.limit`
6096         local max=0
6097         for l in $limit; do
6098                 if test $l -gt $max; then
6099                         max=$l
6100                 fi
6101         done
6102         echo $max
6103 }
6104
6105 test_124b() {
6106         [ -z "`lctl get_param -n mdc.*.connect_flags | grep lru_resize`" ] && \
6107                skip "no lru resize on server" && return 0
6108
6109         LIMIT=`get_max_pool_limit`
6110
6111         NR=$(($(default_lru_size)*20))
6112         if [ $NR -gt $LIMIT ]; then
6113                 log "Limit lock number by $LIMIT locks"
6114                 NR=$LIMIT
6115         fi
6116         lru_resize_disable mdc
6117         mkdir -p $DIR/$tdir/disable_lru_resize ||
6118                 error "failed to create $DIR/$tdir/disable_lru_resize"
6119
6120         createmany -o $DIR/$tdir/disable_lru_resize/f $NR
6121         log "doing ls -la $DIR/$tdir/disable_lru_resize 3 times"
6122         cancel_lru_locks mdc
6123         stime=`date +%s`
6124         PID=""
6125         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
6126         PID="$PID $!"
6127         sleep 2
6128         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
6129         PID="$PID $!"
6130         sleep 2
6131         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
6132         PID="$PID $!"
6133         wait $PID
6134         etime=`date +%s`
6135         nolruresize_delta=$((etime-stime))
6136         log "ls -la time: $nolruresize_delta seconds"
6137         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
6138         unlinkmany $DIR/$tdir/disable_lru_resize/f $NR
6139
6140         lru_resize_enable mdc
6141         mkdir -p $DIR/$tdir/enable_lru_resize ||
6142                 error "failed to create $DIR/$tdir/enable_lru_resize"
6143
6144         createmany -o $DIR/$tdir/enable_lru_resize/f $NR
6145         log "doing ls -la $DIR/$tdir/enable_lru_resize 3 times"
6146         cancel_lru_locks mdc
6147         stime=`date +%s`
6148         PID=""
6149         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
6150         PID="$PID $!"
6151         sleep 2
6152         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
6153         PID="$PID $!"
6154         sleep 2
6155         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
6156         PID="$PID $!"
6157         wait $PID
6158         etime=`date +%s`
6159         lruresize_delta=$((etime-stime))
6160         log "ls -la time: $lruresize_delta seconds"
6161         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
6162
6163         if [ $lruresize_delta -gt $nolruresize_delta ]; then
6164                 log "ls -la is $(((lruresize_delta - $nolruresize_delta) * 100 / $nolruresize_delta))% slower with lru resize enabled"
6165         elif [ $nolruresize_delta -gt $lruresize_delta ]; then
6166                 log "ls -la is $(((nolruresize_delta - $lruresize_delta) * 100 / $nolruresize_delta))% faster with lru resize enabled"
6167         else
6168                 log "lru resize performs the same with no lru resize"
6169         fi
6170         unlinkmany $DIR/$tdir/enable_lru_resize/f $NR
6171 }
6172 run_test 124b "lru resize (performance test) ======================="
6173
6174 test_125() { # 13358
6175         [ -z "$(lctl get_param -n llite.*.client_type | grep local)" ] && skip "must run as local client" && return
6176         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] && skip "must have acl enabled" && return
6177         mkdir -p $DIR/d125 || error "mkdir failed"
6178         $SETSTRIPE $DIR/d125 -s 65536 -c -1 || error "setstripe failed"
6179         setfacl -R -m u:bin:rwx $DIR/d125 || error "setfacl $DIR/d125 failed"
6180         ls -ld $DIR/d125 || error "cannot access $DIR/d125"
6181 }
6182 run_test 125 "don't return EPROTO when a dir has a non-default striping and ACLs"
6183
6184 test_126() { # bug 12829/13455
6185         [ -z "$(lctl get_param -n llite.*.client_type | grep local)" ] && skip "must run as local client" && return
6186         [ "$UID" != 0 ] && skip_env "skipping $TESTNAME (must run as root)" && return
6187         $GSS && skip "must run as gss disabled" && return
6188
6189         $RUNAS -u 0 -g 1 touch $DIR/$tfile || error "touch failed"
6190         gid=`ls -n $DIR/$tfile | awk '{print $4}'`
6191         rm -f $DIR/$tfile
6192         [ $gid -eq "1" ] || error "gid is set to" $gid "instead of 1"
6193 }
6194 run_test 126 "check that the fsgid provided by the client is taken into account"
6195
6196 test_127() { # bug 15521
6197         $SETSTRIPE -i 0 -c 1 $DIR/$tfile || error "setstripe failed"
6198         $LCTL set_param osc.*.stats=0
6199         FSIZE=$((2048 * 1024))
6200         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
6201         cancel_lru_locks osc
6202         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE
6203
6204         $LCTL get_param osc.*0000-osc-*.stats | grep samples > $DIR/${tfile}.tmp
6205         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
6206                 echo "got $COUNT $NAME"
6207                 [ ! $MIN ] && error "Missing min value for $NAME proc entry"
6208                 eval $NAME=$COUNT || error "Wrong proc format"
6209
6210                 case $NAME in
6211                         read_bytes|write_bytes)
6212                         [ $MIN -lt 4096 ] && error "min is too small: $MIN"
6213                         [ $MIN -gt $FSIZE ] && error "min is too big: $MIN"
6214                         [ $MAX -lt 4096 ] && error "max is too small: $MAX"
6215                         [ $MAX -gt $FSIZE ] && error "max is too big: $MAX"
6216                         [ $SUM -ne $FSIZE ] && error "sum is wrong: $SUM"
6217                         [ $SUMSQ -lt $(((FSIZE /4096) * (4096 * 4096))) ] &&
6218                                 error "sumsquare is too small: $SUMSQ"
6219                         [ $SUMSQ -gt $((FSIZE * FSIZE)) ] &&
6220                                 error "sumsquare is too big: $SUMSQ"
6221                         ;;
6222                         *) ;;
6223                 esac
6224         done < $DIR/${tfile}.tmp
6225
6226         #check that we actually got some stats
6227         [ "$read_bytes" ] || error "Missing read_bytes stats"
6228         [ "$write_bytes" ] || error "Missing write_bytes stats"
6229         [ "$read_bytes" != 0 ] || error "no read done"
6230         [ "$write_bytes" != 0 ] || error "no write done"
6231 }
6232 run_test 127 "verify the client stats are sane"
6233
6234 test_128() { # bug 15212
6235         touch $DIR/$tfile
6236         $LFS 2>&1 <<-EOF | tee $TMP/$tfile.log
6237                 find $DIR/$tfile
6238                 find $DIR/$tfile
6239         EOF
6240
6241         result=$(grep error $TMP/$tfile.log)
6242         rm -f $DIR/$tfile
6243         [ -z "$result" ] || error "consecutive find's under interactive lfs failed"
6244 }
6245 run_test 128 "interactive lfs for 2 consecutive find's"
6246
6247 set_dir_limits () {
6248         local mntdev
6249         local canondev
6250         local node
6251
6252         local LDPROC=/proc/fs/ldiskfs
6253
6254         for facet in $(get_facets MDS); do
6255                 canondev=$(ldiskfs_canon *.$(convert_facet2label $facet).mntdev $facet)
6256                 do_facet $facet "test -e $LDPROC/$canondev/max_dir_size" || LDPROC=/sys/fs/ldiskfs
6257                 do_facet $facet "echo $1 >$LDPROC/$canondev/max_dir_size"
6258         done
6259 }
6260 test_129() {
6261         [ "$FSTYPE" != "ldiskfs" ] && skip "not needed for FSTYPE=$FSTYPE" && return 0
6262         remote_mds_nodsh && skip "remote MDS with nodsh" && return
6263
6264         EFBIG=27
6265         MAX=16384
6266
6267         set_dir_limits $MAX
6268
6269         mkdir -p $DIR/$tdir
6270
6271         I=0
6272         J=0
6273         while [ ! $I -gt $((MAX * MDSCOUNT)) ]; do
6274                 multiop $DIR/$tdir/$J Oc
6275                 rc=$?
6276                 if [ $rc -eq $EFBIG ]; then
6277                         set_dir_limits 0
6278                         echo "return code $rc received as expected"
6279                         return 0
6280                 elif [ $rc -ne 0 ]; then
6281                         set_dir_limits 0
6282                         error_exit "return code $rc received instead of expected $EFBIG"
6283                 fi
6284                 J=$((J+1))
6285                 I=$(stat -c%s "$DIR/$tdir")
6286         done
6287
6288         set_dir_limits 0
6289         error "exceeded dir size limit $MAX x $MDSCOUNT $((MAX * MDSCOUNT)) : $I bytes"
6290 }
6291 run_test 129 "test directory size limit ========================"
6292
6293 OLDIFS="$IFS"
6294 cleanup_130() {
6295         trap 0
6296         IFS="$OLDIFS"
6297 }
6298
6299 test_130a() {
6300         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
6301         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" && return
6302
6303         trap cleanup_130 EXIT RETURN
6304
6305         local fm_file=$DIR/$tfile
6306         lfs setstripe -s 65536 -c 1 $fm_file || error "setstripe failed on $fm_file"
6307         dd if=/dev/zero of=$fm_file bs=65536 count=1 || error "dd failed for $fm_file"
6308
6309         filefrag -ves $fm_file || error "filefrag $fm_file failed"
6310         filefrag_op=`filefrag -ve $fm_file | grep -A 100 "ext:" | grep -v "ext:" | grep -v "found"`
6311
6312         lun=`$GETSTRIPE $fm_file  | grep -A 10 obdidx | awk '{print $1}' | grep -v "obdidx"`
6313
6314         start_blk=`echo $filefrag_op | cut -d: -f2 | cut -d. -f1`
6315         IFS=$'\n'
6316         tot_len=0
6317         for line in $filefrag_op
6318         do
6319                 frag_lun=`echo $line | cut -d: -f5`
6320                 ext_len=`echo $line | cut -d: -f4`
6321                 if (( $frag_lun != $lun )); then
6322                         cleanup_130
6323                         error "FIEMAP on 1-stripe file($fm_file) failed"
6324                         return
6325                 fi
6326                 (( tot_len += ext_len ))
6327         done
6328
6329         if (( lun != frag_lun || start_blk != 0 || tot_len != 64 )); then
6330                 cleanup_130
6331                 error "FIEMAP on 1-stripe file($fm_file) failed;"
6332                 return
6333         fi
6334
6335         cleanup_130
6336
6337         echo "FIEMAP on single striped file succeeded"
6338 }
6339 run_test 130a "FIEMAP (1-stripe file)"
6340
6341 test_130b() {
6342         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping FIEMAP on 2-stripe file test" && return
6343
6344         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
6345         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" && return
6346
6347         trap cleanup_130 EXIT RETURN
6348
6349         local fm_file=$DIR/$tfile
6350         lfs setstripe -s 65536 -c 2 $fm_file || error "setstripe failed on $fm_file"
6351         dd if=/dev/zero of=$fm_file bs=1M count=2 || error "dd failed on $fm_file"
6352
6353         filefrag -ves $fm_file || error "filefrag $fm_file failed"
6354         filefrag_op=`filefrag -ve $fm_file | grep -A 100 "ext:" | grep -v "ext:" | grep -v "found"`
6355
6356         last_lun=`echo $filefrag_op | cut -d: -f5`
6357
6358         IFS=$'\n'
6359         tot_len=0
6360         num_luns=1
6361         for line in $filefrag_op
6362         do
6363                 frag_lun=`echo $line | cut -d: -f5`
6364                 ext_len=`echo $line | cut -d: -f4`
6365                 if (( $frag_lun != $last_lun )); then
6366                         if (( tot_len != 1024 )); then
6367                                 cleanup_130
6368                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of 256"
6369                                 return
6370                         else
6371                                 (( num_luns += 1 ))
6372                                 tot_len=0
6373                         fi
6374                 fi
6375                 (( tot_len += ext_len ))
6376                 last_lun=$frag_lun
6377         done
6378         if (( num_luns != 2 || tot_len != 1024 )); then
6379                 cleanup_130
6380                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
6381                 return
6382         fi
6383
6384         cleanup_130
6385
6386         echo "FIEMAP on 2-stripe file succeeded"
6387 }
6388 run_test 130b "FIEMAP (2-stripe file)"
6389
6390 test_130c() {
6391         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping FIEMAP on 2-stripe file with hole test" && return
6392
6393         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
6394         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" && return
6395
6396         trap cleanup_130 EXIT RETURN
6397
6398         local fm_file=$DIR/$tfile
6399         lfs setstripe -s 65536 -c 2 $fm_file || error "setstripe failed on $fm_file"
6400         dd if=/dev/zero of=$fm_file seek=1 bs=1M count=1 || error "dd failed on $fm_file"
6401
6402         filefrag -ves $fm_file || error "filefrag $fm_file failed"
6403         filefrag_op=`filefrag -ve $fm_file | grep -A 100 "ext:" | grep -v "ext:" | grep -v "found"`
6404
6405         last_lun=`echo $filefrag_op | cut -d: -f5`
6406
6407         IFS=$'\n'
6408         tot_len=0
6409         num_luns=1
6410         for line in $filefrag_op
6411         do
6412                 frag_lun=`echo $line | cut -d: -f5`
6413                 ext_len=`echo $line | cut -d: -f4`
6414                 if (( $frag_lun != $last_lun )); then
6415                         logical=`echo $line | cut -d: -f2 | cut -d. -f1`
6416                         if (( logical != 512 )); then
6417                                 cleanup_130
6418                                 error "FIEMAP on $fm_file failed; returned logical start for lun $logical instead of 512"
6419                                 return
6420                         fi
6421                         if (( tot_len != 512 )); then
6422                                 cleanup_130
6423                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of 1024"
6424                                 return
6425                         else
6426                                 (( num_luns += 1 ))
6427                                 tot_len=0
6428                         fi
6429                 fi
6430                 (( tot_len += ext_len ))
6431                 last_lun=$frag_lun
6432         done
6433         if (( num_luns != 2 || tot_len != 512 )); then
6434                 cleanup_130
6435                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
6436                 return
6437         fi
6438
6439         cleanup_130
6440
6441         echo "FIEMAP on 2-stripe file with hole succeeded"
6442 }
6443 run_test 130c "FIEMAP (2-stripe file with hole)"
6444
6445 test_130d() {
6446         [ "$OSTCOUNT" -lt "3" ] && skip_env "skipping FIEMAP on N-stripe file test" && return
6447
6448         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
6449         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" && return
6450
6451         trap cleanup_130 EXIT RETURN
6452
6453         local fm_file=$DIR/$tfile
6454         lfs setstripe -s 65536 -c $OSTCOUNT $fm_file || error "setstripe failed on $fm_file"
6455         dd if=/dev/zero of=$fm_file bs=1M count=$OSTCOUNT || error "dd failed on $fm_file"
6456
6457         filefrag -ves $fm_file || error "filefrag $fm_file failed"
6458         filefrag_op=`filefrag -ve $fm_file | grep -A 100 "ext:" | grep -v "ext:" | grep -v "found"`
6459
6460         last_lun=`echo $filefrag_op | cut -d: -f5`
6461
6462         IFS=$'\n'
6463         tot_len=0
6464         num_luns=1
6465         for line in $filefrag_op
6466         do
6467                 frag_lun=`echo $line | cut -d: -f5`
6468                 ext_len=`echo $line | cut -d: -f4`
6469                 if (( $frag_lun != $last_lun )); then
6470                         if (( tot_len != 1024 )); then
6471                                 cleanup_130
6472                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of 1024"
6473                                 return
6474                         else
6475                                 (( num_luns += 1 ))
6476                                 tot_len=0
6477                         fi
6478                 fi
6479                 (( tot_len += ext_len ))
6480                 last_lun=$frag_lun
6481         done
6482         if (( num_luns != OSTCOUNT || tot_len != 1024 )); then
6483                 cleanup_130
6484                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
6485                 return
6486         fi
6487
6488         cleanup_130
6489
6490         echo "FIEMAP on N-stripe file succeeded"
6491 }
6492 run_test 130d "FIEMAP (N-stripe file)"
6493
6494 test_130e() {
6495         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping continuation FIEMAP test" && return
6496
6497         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
6498         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" && return
6499
6500         trap cleanup_130 EXIT RETURN
6501
6502         local fm_file=$DIR/$tfile
6503         lfs setstripe -s 131072 -c 2 $fm_file || error "setstripe failed on $fm_file"
6504         NUM_BLKS=512
6505         EXPECTED_LEN=$(( (NUM_BLKS / 2) * 64 ))
6506         for ((i = 0; i < $NUM_BLKS; i++))
6507         do
6508                 dd if=/dev/zero of=$fm_file count=1 bs=64k seek=$((2*$i)) conv=notrunc > /dev/null 2>&1
6509         done
6510
6511         filefrag -ves $fm_file || error "filefrag $fm_file failed"
6512         filefrag_op=`filefrag -ve $fm_file | grep -A 12000 "ext:" | grep -v "ext:" | grep -v "found"`
6513
6514         last_lun=`echo $filefrag_op | cut -d: -f5`
6515
6516         IFS=$'\n'
6517         tot_len=0
6518         num_luns=1
6519         for line in $filefrag_op
6520         do
6521                 frag_lun=`echo $line | cut -d: -f5`
6522                 ext_len=`echo $line | cut -d: -f4`
6523                 if (( $frag_lun != $last_lun )); then
6524                         if (( tot_len != $EXPECTED_LEN )); then
6525                                 cleanup_130
6526                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of $EXPECTED_LEN"
6527                                 return
6528                         else
6529                                 (( num_luns += 1 ))
6530                                 tot_len=0
6531                         fi
6532                 fi
6533                 (( tot_len += ext_len ))
6534                 last_lun=$frag_lun
6535         done
6536         if (( num_luns != 2 || tot_len != $EXPECTED_LEN )); then
6537                 cleanup_130
6538                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
6539                 return
6540         fi
6541
6542         cleanup_130
6543
6544         echo "FIEMAP with continuation calls succeeded"
6545 }
6546 run_test 130e "FIEMAP (test continuation FIEMAP calls)"
6547
6548 # Test for writev/readv
6549 test_131a() {
6550         rwv -f $DIR/$tfile -w -n 3 524288 1048576 1572864 || \
6551         error "writev test failed"
6552         rwv -f $DIR/$tfile -r -v -n 2 1572864 1048576 || \
6553         error "readv failed"
6554         rm -f $DIR/$tfile
6555 }
6556 run_test 131a "test iov's crossing stripe boundary for writev/readv"
6557
6558 test_131b() {
6559         rwv -f $DIR/$tfile -w -a -n 3 524288 1048576 1572864 || \
6560         error "append writev test failed"
6561         rwv -f $DIR/$tfile -w -a -n 2 1572864 1048576 || \
6562         error "append writev test failed"
6563         rm -f $DIR/$tfile
6564 }
6565 run_test 131b "test append writev"
6566
6567 test_131c() {
6568         rwv -f $DIR/$tfile -w -d -n 1 1048576 || return 0
6569         error "NOT PASS"
6570 }
6571 run_test 131c "test read/write on file w/o objects"
6572
6573 test_131d() {
6574         rwv -f $DIR/$tfile -w -n 1 1572864
6575         NOB=`rwv -f $DIR/$tfile -r -n 3 524288 524288 1048576 | awk '/error/ {print $6}'`
6576         if [ "$NOB" != 1572864 ]; then
6577                 error "Short read filed: read $NOB bytes instead of 1572864"
6578         fi
6579         rm -f $DIR/$tfile
6580 }
6581 run_test 131d "test short read"
6582
6583 test_131e() {
6584         rwv -f $DIR/$tfile -w -s 1048576 -n 1 1048576
6585         rwv -f $DIR/$tfile -r -z -s 0 -n 1 524288 || \
6586         error "read hitting hole failed"
6587         rm -f $DIR/$tfile
6588 }
6589 run_test 131e "test read hitting hole"
6590
6591 get_ost_param() {
6592         local token=$1
6593         local gl_sum=0
6594         for node in $(osts_nodes); do
6595                 gl=$(do_node $node "$LCTL get_param -n ost.OSS.ost.stats" | awk '/'$token'/ {print $2}' | head -n 1)
6596                 [ x$gl = x"" ] && gl=0
6597                 gl_sum=$((gl_sum + gl))
6598         done
6599         echo $gl
6600 }
6601
6602 som_mode_switch() {
6603         local som=$1
6604         local gl1=$2
6605         local gl2=$3
6606
6607         if [ x$som = x"enabled" ]; then
6608                 [ $((gl2 - gl1)) -gt 0 ] && error "no glimpse RPC is expected"
6609                 MOUNTOPT=`echo $MOUNTOPT | sed 's/som_preview//g'`
6610                 do_facet mgs "$LCTL conf_param $FSNAME.mdt.som=disabled"
6611         else
6612                 [ $((gl2 - gl1)) -gt 0 ] || error "some glimpse RPC is expected"
6613                 MOUNTOPT="$MOUNTOPT,som_preview"
6614                 do_facet mgs "$LCTL conf_param $FSNAME.mdt.som=enabled"
6615         fi
6616
6617         # do remount to make new mount-conf parameters actual
6618         echo remounting...
6619         sync
6620         stopall
6621         setupall
6622 }
6623
6624 test_132() { #1028, SOM
6625         local num=$(get_mds_dir $DIR)
6626         local mymds=mds${num}
6627         local MOUNTOPT_SAVE=$MOUNTOPT
6628
6629         dd if=/dev/zero of=$DIR/$tfile count=1 2>/dev/null
6630         cancel_lru_locks osc
6631
6632         som1=$(do_facet $mymds "$LCTL get_param mdt.*.som" |  awk -F= ' {print $2}' | head -n 1)
6633
6634         gl1=$(get_ost_param "ldlm_glimpse_enqueue")
6635         stat $DIR/$tfile >/dev/null
6636         gl2=$(get_ost_param "ldlm_glimpse_enqueue")
6637         echo "====> SOM is "$som1", "$((gl2 - gl1))" glimpse RPC occured"
6638         rm $DIR/$tfile
6639         som_mode_switch $som1 $gl1 $gl2
6640
6641         dd if=/dev/zero of=$DIR/$tfile count=1 2>/dev/null
6642         cancel_lru_locks osc
6643
6644         som2=$(do_facet $mymds "$LCTL get_param mdt.*.som" |  awk -F= ' {print $2}' | head -n 1)
6645         if [ $som1 == $som2 ]; then
6646             error "som is still "$som2
6647             if [ x$som2 = x"enabled" ]; then
6648                 som2="disabled"
6649             else
6650                 som2="enabled"
6651             fi
6652         fi
6653
6654         gl1=$(get_ost_param "ldlm_glimpse_enqueue")
6655         stat $DIR/$tfile >/dev/null
6656         gl2=$(get_ost_param "ldlm_glimpse_enqueue")
6657         echo "====> SOM is "$som2", "$((gl2 - gl1))" glimpse RPC occured"
6658         som_mode_switch $som2 $gl1 $gl2
6659         MOUNTOPT=$MOUNTOPT_SAVE
6660 }
6661 run_test 132 "som avoids glimpse rpc"
6662
6663 test_140() { #bug-17379
6664         mkdir -p $DIR/$tdir || error "Creating dir $DIR/$tdir"
6665         cd $DIR/$tdir || error "Changing to $DIR/$tdir"
6666         cp /usr/bin/stat . || error "Copying stat to $DIR/$tdir"
6667
6668         # VFS limits max symlink depth to 5(4KSTACK) or 7(8KSTACK) or 8
6669         local i=0
6670         while i=`expr $i + 1`; do
6671                 mkdir -p $i || error "Creating dir $i"
6672                 cd $i || error "Changing to $i"
6673                 ln -s ../stat stat || error "Creating stat symlink"
6674                 # Read the symlink until ELOOP present,
6675                 # not LBUGing the system is considered success,
6676                 # we didn't overrun the stack.
6677                 $OPENFILE -f O_RDONLY stat >/dev/null 2>&1; ret=$?
6678                 [ $ret -ne 0 ] && {
6679                         if [ $ret -eq 40 ]; then
6680                                 break  # -ELOOP
6681                         else
6682                                 error "Open stat symlink"
6683                                 return
6684                         fi
6685                 }
6686         done
6687         i=`expr $i - 1`
6688         echo "The symlink depth = $i"
6689         [ $i -eq 5 -o $i -eq 7 -o $i -eq 8 ] || error "Invalid symlink depth"
6690 }
6691 run_test 140 "Check reasonable stack depth (shouldn't LBUG) ===="
6692
6693 test_150() {
6694         local TF="$TMP/$tfile"
6695
6696         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
6697         cp $TF $DIR/$tfile
6698         cancel_lru_locks osc
6699         cmp $TF $DIR/$tfile || error "$TMP/$tfile $DIR/$tfile differ"
6700         remount_client $MOUNT
6701         df -P $MOUNT
6702         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (remount)"
6703
6704         $TRUNCATE $TF 6000
6705         $TRUNCATE $DIR/$tfile 6000
6706         cancel_lru_locks osc
6707         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (truncate1)"
6708
6709         echo "12345" >>$TF
6710         echo "12345" >>$DIR/$tfile
6711         cancel_lru_locks osc
6712         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append1)"
6713
6714         echo "12345" >>$TF
6715         echo "12345" >>$DIR/$tfile
6716         cancel_lru_locks osc
6717         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append2)"
6718
6719         rm -f $TF
6720         true
6721 }
6722 run_test 150 "truncate/append tests"
6723
6724 function roc_hit() {
6725     local list=$(comma_list $(osts_nodes))
6726
6727     ACCNUM=$(do_nodes $list $LCTL get_param -n obdfilter.*.stats | \
6728         awk '/'cache_hit'/ {sum+=$2} END {print sum}')
6729     echo $ACCNUM
6730 }
6731
6732 function set_cache() {
6733     local on=1
6734
6735     if [ "$2" == "off" ]; then
6736         on=0;
6737     fi
6738     local list=$(comma_list $(osts_nodes))
6739     do_nodes $list lctl set_param obdfilter.*.${1}_cache_enable $on
6740
6741     cancel_lru_locks osc
6742 }
6743
6744 test_151() {
6745         remote_ost_nodsh && skip "remote OST with nodsh" && return
6746
6747         local CPAGES=3
6748         local list=$(comma_list $(osts_nodes))
6749
6750         # check whether obdfilter is cache capable at all
6751         if ! do_nodes $list $LCTL get_param -n obdfilter.*.read_cache_enable > /dev/null; then
6752                 echo "not cache-capable obdfilter"
6753                 return 0
6754         fi
6755
6756         # check cache is enabled on all obdfilters
6757         if do_nodes $list $LCTL get_param -n obdfilter.*.read_cache_enable | grep 0 >&/dev/null; then
6758                 echo "oss cache is disabled"
6759                 return 0
6760         fi
6761
6762         do_nodes $list $LCTL set_param -n obdfilter.*.writethrough_cache_enable 1
6763
6764         # pages should be in the case right after write
6765         dd if=/dev/urandom of=$DIR/$tfile bs=4k count=$CPAGES || error "dd failed"
6766         local BEFORE=`roc_hit`
6767         cancel_lru_locks osc
6768         cat $DIR/$tfile >/dev/null
6769         local AFTER=`roc_hit`
6770         if ! let "AFTER - BEFORE == CPAGES"; then
6771                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
6772         fi
6773
6774         # the following read invalidates the cache
6775         cancel_lru_locks osc
6776         do_nodes $list $LCTL set_param -n obdfilter.*.read_cache_enable 0
6777         cat $DIR/$tfile >/dev/null
6778
6779         # now data shouldn't be found in the cache
6780         BEFORE=`roc_hit`
6781         cancel_lru_locks osc
6782         cat $DIR/$tfile >/dev/null
6783         AFTER=`roc_hit`
6784         if let "AFTER - BEFORE != 0"; then
6785                 error "IN CACHE: before: $BEFORE, after: $AFTER"
6786         fi
6787
6788         do_nodes $list $LCTL set_param -n obdfilter.*.read_cache_enable 1
6789         rm -f $DIR/$tfile
6790 }
6791 run_test 151 "test cache on oss and controls ==============================="
6792
6793 test_152() {
6794         local TF="$TMP/$tfile"
6795
6796         # simulate ENOMEM during write
6797 #define OBD_FAIL_OST_NOMEM      0x226
6798         lctl set_param fail_loc=0x80000226
6799         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
6800         cp $TF $DIR/$tfile
6801         sync || error "sync failed"
6802         lctl set_param fail_loc=0
6803
6804         # discard client's cache
6805         cancel_lru_locks osc
6806
6807         # simulate ENOMEM during read
6808         lctl set_param fail_loc=0x80000226
6809         cmp $TF $DIR/$tfile || error "cmp failed"
6810         lctl set_param fail_loc=0
6811
6812         rm -f $TF
6813 }
6814 run_test 152 "test read/write with enomem ============================"
6815
6816 test_153() {
6817         multiop $DIR/$tfile Ow4096Ycu || error "multiop failed"
6818 }
6819 run_test 153 "test if fdatasync does not crash ======================="
6820
6821 test_154() {
6822         cp /etc/hosts $DIR/$tfile
6823
6824         fid=$($LFS path2fid $DIR/$tfile)
6825         rc=$?
6826         [ $rc -ne 0 ] && error "error: could not get fid for $DIR/$tfile."
6827
6828         echo "open fid $fid"
6829         diff /etc/hosts $DIR/.lustre/fid/$fid || error "open by fid failed: did not find expected data in file."
6830
6831         echo "Opening a file by FID succeeded"
6832 }
6833 run_test 154 "Opening a file by FID"
6834
6835 test_155_load() {
6836     local temp=$TMP/$tfile
6837     local file=$DIR/$tfile
6838     local list=$(comma_list $(osts_nodes))
6839     local big=$(do_nodes $list grep "cache" /proc/cpuinfo | \
6840         awk '{sum+=$4} END{print sum}')
6841
6842     log big is $big K
6843
6844     dd if=/dev/urandom of=$temp bs=6096 count=1 || \
6845         error "dd of=$temp bs=6096 count=1 failed"
6846     cp $temp $file
6847     cancel_lru_locks osc
6848     cmp $temp $file || error "$temp $file differ"
6849
6850     $TRUNCATE $temp 6000
6851     $TRUNCATE $file 6000
6852     cmp $temp $file || error "$temp $file differ (truncate1)"
6853
6854     echo "12345" >>$temp
6855     echo "12345" >>$file
6856     cmp $temp $file || error "$temp $file differ (append1)"
6857
6858     echo "12345" >>$temp
6859     echo "12345" >>$file
6860     cmp $temp $file || error "$temp $file differ (append2)"
6861
6862     dd if=/dev/urandom of=$temp bs=$((big*2)) count=1k || \
6863         error "dd of=$temp bs=$((big*2)) count=1k failed"
6864     cp $temp $file
6865     ls -lh $temp $file
6866     cancel_lru_locks osc
6867     cmp $temp $file || error "$temp $file differ"
6868
6869     rm -f $temp
6870     true
6871 }
6872
6873 test_155a() {
6874     set_cache read on
6875     set_cache writethrough on
6876     test_155_load
6877 }
6878 run_test 155a "Verification of correctness: read cache:on write_cache:on"
6879
6880 test_155b() {
6881     set_cache read on
6882     set_cache writethrough off
6883     test_155_load
6884 }
6885 run_test 155b "Verification of correctness: read cache:on write_cache:off"
6886
6887 test_155c() {
6888     set_cache read off
6889     set_cache writethrough on
6890     test_155_load
6891 }
6892 run_test 155c "Verification of correctness: read cache:off write_cache:on"
6893
6894 test_155d() {
6895     set_cache read off
6896     set_cache writethrough off
6897     test_155_load
6898 }
6899 run_test 155d "Verification of correctness: read cache:off write_cache:off "
6900
6901 test_156() {
6902     local CPAGES=3
6903     local BEFORE
6904     local AFTER
6905     local file="$DIR/$tfile"
6906
6907     log "Turn on read and write cache"
6908     set_cache read on
6909     set_cache writethrough on
6910
6911     log "Write data and read it back."
6912     log "Read should be satisfied from the cache."
6913     dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
6914     BEFORE=`roc_hit`
6915     cancel_lru_locks osc
6916     cat $file >/dev/null
6917     AFTER=`roc_hit`
6918     if ! let "AFTER - BEFORE == CPAGES"; then
6919         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
6920     else
6921         log "cache hits:: before: $BEFORE, after: $AFTER"
6922     fi
6923
6924     log "Read again; it should be satisfied from the cache."
6925     BEFORE=$AFTER
6926     cancel_lru_locks osc
6927     cat $file >/dev/null
6928     AFTER=`roc_hit`
6929     if ! let "AFTER - BEFORE == CPAGES"; then
6930         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
6931     else
6932         log "cache hits:: before: $BEFORE, after: $AFTER"
6933     fi
6934
6935
6936     log "Turn off the read cache and turn on the write cache"
6937     set_cache read off
6938     set_cache writethrough on
6939
6940     log "Read again; it should be satisfied from the cache."
6941     BEFORE=`roc_hit`
6942     cancel_lru_locks osc
6943     cat $file >/dev/null
6944     AFTER=`roc_hit`
6945     if ! let "AFTER - BEFORE == CPAGES"; then
6946         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
6947     else
6948         log "cache hits:: before: $BEFORE, after: $AFTER"
6949     fi
6950
6951     log "Read again; it should not be satisfied from the cache."
6952     BEFORE=$AFTER
6953     cancel_lru_locks osc
6954     cat $file >/dev/null
6955     AFTER=`roc_hit`
6956     if ! let "AFTER - BEFORE == 0"; then
6957         error "IN CACHE: before: $BEFORE, after: $AFTER"
6958     else
6959         log "cache hits:: before: $BEFORE, after: $AFTER"
6960     fi
6961
6962     log "Write data and read it back."
6963     log "Read should be satisfied from the cache."
6964     dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
6965     BEFORE=`roc_hit`
6966     cancel_lru_locks osc
6967     cat $file >/dev/null
6968     AFTER=`roc_hit`
6969     if ! let "AFTER - BEFORE == CPAGES"; then
6970         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
6971     else
6972         log "cache hits:: before: $BEFORE, after: $AFTER"
6973     fi
6974
6975     log "Read again; it should not be satisfied from the cache."
6976     BEFORE=$AFTER
6977     cancel_lru_locks osc
6978     cat $file >/dev/null
6979     AFTER=`roc_hit`
6980     if ! let "AFTER - BEFORE == 0"; then
6981         error "IN CACHE: before: $BEFORE, after: $AFTER"
6982     else
6983         log "cache hits:: before: $BEFORE, after: $AFTER"
6984     fi
6985
6986
6987     log "Turn off read and write cache"
6988     set_cache read off
6989     set_cache writethrough off
6990
6991     log "Write data and read it back"
6992     log "It should not be satisfied from the cache."
6993     rm -f $file
6994     dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
6995     cancel_lru_locks osc
6996     BEFORE=`roc_hit`
6997     cat $file >/dev/null
6998     AFTER=`roc_hit`
6999     if ! let "AFTER - BEFORE == 0"; then
7000         error_ignore 20762 "IN CACHE: before: $BEFORE, after: $AFTER"
7001     else
7002         log "cache hits:: before: $BEFORE, after: $AFTER"
7003     fi
7004
7005
7006     log "Turn on the read cache and turn off the write cache"
7007     set_cache read on
7008     set_cache writethrough off
7009
7010     log "Write data and read it back"
7011     log "It should not be satisfied from the cache."
7012     rm -f $file
7013     dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
7014     BEFORE=`roc_hit`
7015     cancel_lru_locks osc
7016     cat $file >/dev/null
7017     AFTER=`roc_hit`
7018     if ! let "AFTER - BEFORE == 0"; then
7019         error_ignore 20762 "IN CACHE: before: $BEFORE, after: $AFTER"
7020     else
7021         log "cache hits:: before: $BEFORE, after: $AFTER"
7022     fi
7023
7024     log "Read again; it should be satisfied from the cache."
7025     BEFORE=`roc_hit`
7026     cancel_lru_locks osc
7027     cat $file >/dev/null
7028     AFTER=`roc_hit`
7029     if ! let "AFTER - BEFORE == CPAGES"; then
7030         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
7031     else
7032         log "cache hits:: before: $BEFORE, after: $AFTER"
7033     fi
7034
7035     rm -f $file
7036 }
7037 run_test 156 "Verification of tunables ============================"
7038
7039 #Changelogs
7040 err17935 () {
7041     if [ $MDSCOUNT -gt 1 ]; then
7042         error_ignore 17935 $*
7043     else
7044         error $*
7045     fi
7046 }
7047 test_160() {
7048     USER=$(do_facet $SINGLEMDS lctl --device $MDT0 changelog_register -n)
7049     echo "Registered as changelog user $USER"
7050     do_facet $SINGLEMDS lctl get_param -n mdd.$MDT0.changelog_users | \
7051         grep -q $USER || error "User $USER not found in changelog_users"
7052
7053     # change something
7054     mkdir -p $DIR/$tdir/pics/2008/zachy
7055     touch $DIR/$tdir/pics/2008/zachy/timestamp
7056     cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg
7057     mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
7058     ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
7059     ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
7060     rm $DIR/$tdir/pics/desktop.jpg
7061
7062     $LFS changelog $MDT0 | tail -5
7063
7064     echo "verifying changelog mask"
7065     do_facet $SINGLEMDS lctl set_param mdd.$MDT0.changelog_mask="-mkdir"
7066     mkdir -p $DIR/$tdir/pics/2009/sofia
7067     do_facet $SINGLEMDS lctl set_param mdd.$MDT0.changelog_mask="+mkdir"
7068     mkdir $DIR/$tdir/pics/2009/zachary
7069     DIRS=$($LFS changelog $MDT0 | tail -5 | grep -c MKDIR)
7070     [ $DIRS -eq 1 ] || err17935 "changelog mask count $DIRS != 1"
7071
7072     # verify contents
7073     echo "verifying target fid"
7074     fidc=$($LFS changelog $MDT0 | grep timestamp | grep "CREAT" | \
7075         tail -1 | awk '{print $6}')
7076     fidf=$($LFS path2fid $DIR/$tdir/pics/zach/timestamp)
7077     [ "$fidc" == "t=$fidf" ] || \
7078         err17935 "fid in changelog $fidc != file fid $fidf"
7079     echo "verifying parent fid"
7080     fidc=$($LFS changelog $MDT0 | grep timestamp | grep "CREAT" | \
7081         tail -1 | awk '{print $7}')
7082     fidf=$($LFS path2fid $DIR/$tdir/pics/zach)
7083     [ "$fidc" == "p=$fidf" ] || \
7084         err17935 "pfid in changelog $fidc != dir fid $fidf"
7085
7086     USER_REC1=$(do_facet $SINGLEMDS lctl get_param -n \
7087         mdd.$MDT0.changelog_users | grep $USER | awk '{print $2}')
7088     $LFS changelog_clear $MDT0 $USER $(($USER_REC1 + 5))
7089     USER_REC2=$(do_facet $SINGLEMDS lctl get_param -n \
7090         mdd.$MDT0.changelog_users | grep $USER | awk '{print $2}')
7091     echo "verifying user clear: $(( $USER_REC1 + 5 )) == $USER_REC2"
7092     [ $USER_REC2 == $(($USER_REC1 + 5)) ] || \
7093         err17935 "user index should be $(($USER_REC1 + 5)); is $USER_REC2"
7094
7095     MIN_REC=$(do_facet $SINGLEMDS lctl get_param mdd.$MDT0.changelog_users | \
7096         awk 'min == "" || $2 < min {min = $2}; END {print min}')
7097     FIRST_REC=$($LFS changelog $MDT0 | head -1 | awk '{print $1}')
7098     echo "verifying min purge: $(( $MIN_REC + 1 )) == $FIRST_REC"
7099     [ $FIRST_REC == $(($MIN_REC + 1)) ] || \
7100         err17935 "first index should be $(($MIN_REC + 1)); is $FIRST_REC"
7101
7102     echo "verifying user deregister"
7103     do_facet $SINGLEMDS lctl --device $MDT0 changelog_deregister $USER
7104     do_facet $SINGLEMDS lctl get_param -n mdd.$MDT0.changelog_users | \
7105         grep -q $USER && error "User $USER still found in changelog_users"
7106
7107     USERS=$(( $(do_facet $SINGLEMDS lctl get_param -n \
7108         mdd.$MDT0.changelog_users | wc -l) - 2 ))
7109     if [ $USERS -eq 0 ]; then
7110         LAST_REC1=$(do_facet $SINGLEMDS lctl get_param -n \
7111             mdd.$MDT0.changelog_users | head -1 | awk '{print $3}')
7112         touch $DIR/$tdir/chloe
7113         LAST_REC2=$(do_facet $SINGLEMDS lctl get_param -n \
7114             mdd.$MDT0.changelog_users | head -1 | awk '{print $3}')
7115         echo "verify changelogs are off if we were the only user: $LAST_REC1 == $LAST_REC2"
7116         [ $LAST_REC1 == $LAST_REC2 ] || error "changelogs not off"
7117     else
7118         echo "$USERS other changelog users; can't verify off"
7119     fi
7120 }
7121 run_test 160 "changelog sanity"
7122
7123 test_161() {
7124     mkdir -p $DIR/$tdir
7125     cp /etc/hosts $DIR/$tdir/$tfile
7126     mkdir $DIR/$tdir/foo1
7127     mkdir $DIR/$tdir/foo2
7128     ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/sofia
7129     ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/zachary
7130     ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/luna
7131     ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/thor
7132     local FID=$($LFS path2fid $DIR/$tdir/$tfile | tr -d '[')
7133     if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
7134         $LFS fid2path $DIR $FID
7135         err17935 "bad link ea"
7136     fi
7137     # middle
7138     rm $DIR/$tdir/foo2/zachary
7139     # last
7140     rm $DIR/$tdir/foo2/thor
7141     # first
7142     rm $DIR/$tdir/$tfile
7143     # rename
7144     mv $DIR/$tdir/foo1/sofia $DIR/$tdir/foo2/maggie
7145     if [ "$($LFS fid2path $FSNAME --link 1 $FID)" != "$tdir/foo2/maggie" ]
7146         then
7147         $LFS fid2path $DIR $FID
7148         err17935 "bad link rename"
7149     fi
7150     rm $DIR/$tdir/foo2/maggie
7151
7152     # overflow the EA
7153     local longname=filename_avg_len_is_thirty_two_
7154     createmany -l$DIR/$tdir/foo1/luna $DIR/$tdir/foo2/$longname 1000 || \
7155         error "failed to hardlink many files"
7156     links=$($LFS fid2path $DIR $FID | wc -l)
7157     echo -n "${links}/1000 links in link EA"
7158     [ ${links} -gt 60 ] || err17935 "expected at least 60 links in link EA"
7159     unlinkmany $DIR/$tdir/foo2/$longname 1000 || \
7160         error "failed to unlink many hardlinks"
7161 }
7162 run_test 161 "link ea sanity"
7163
7164 check_path() {
7165     local expected=$1
7166     shift
7167     local fid=$2
7168
7169     local path=$(${LFS} fid2path $*)
7170     RC=$?
7171
7172     if [ $RC -ne 0 ]; then
7173         err17935 "path looked up of $expected failed. Error $RC"
7174         return $RC
7175     elif [ "${path}" != "${expected}" ]; then
7176         err17935 "path looked up \"${path}\" instead of \"${expected}\""
7177         return 2
7178     fi
7179     echo "fid $fid resolves to path $path (expected $expected)"
7180 }
7181
7182 test_162() {
7183         # Make changes to filesystem
7184         mkdir -p $DIR/$tdir/d2
7185         touch $DIR/$tdir/d2/$tfile
7186         touch $DIR/$tdir/d2/x1
7187         touch $DIR/$tdir/d2/x2
7188         mkdir -p $DIR/$tdir/d2/a/b/c
7189         mkdir -p $DIR/$tdir/d2/p/q/r
7190         # regular file
7191         FID=$($LFS path2fid $DIR/$tdir/d2/$tfile | tr -d '[]')
7192         check_path "$tdir/d2/$tfile" $FSNAME $FID --link 0
7193
7194         # softlink
7195         ln -s $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/slink
7196         FID=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink | tr -d '[]')
7197         check_path "$tdir/d2/p/q/r/slink" $FSNAME $FID --link 0
7198
7199         # softlink to wrong file
7200         ln -s /this/is/garbage $DIR/$tdir/d2/p/q/r/slink.wrong
7201         FID=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink.wrong | tr -d '[]')
7202         check_path "$tdir/d2/p/q/r/slink.wrong" $FSNAME $FID --link 0
7203
7204         # hardlink
7205         ln $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/hlink
7206         mv $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/a/b/c/new_file
7207         FID=$($LFS path2fid $DIR/$tdir/d2/a/b/c/new_file | tr -d '[]')
7208         # fid2path dir/fsname should both work
7209         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $FID --link 1
7210         check_path "$DIR/$tdir/d2/p/q/r/hlink" $DIR $FID --link 0
7211
7212         # hardlink count: check that there are 2 links
7213         # Doesnt work with CMD yet: 17935
7214         ${LFS} fid2path $DIR $FID | wc -l | grep -q 2 || \
7215                 err17935 "expected 2 links"
7216
7217         # hardlink indexing: remove the first link
7218         rm $DIR/$tdir/d2/p/q/r/hlink
7219         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $FID --link 0
7220
7221         return 0
7222 }
7223 run_test 162 "path lookup sanity"
7224
7225 test_163() {
7226         remote_mds_nodsh && skip "remote MDS with nodsh" && return
7227         copytool --test $FSNAME || { skip "copytool not runnable: $?" && return; }
7228         copytool $FSNAME &
7229         sleep 1
7230         local uuid=$($LCTL get_param -n mdc.${FSNAME}-MDT0000-mdc-*.uuid)
7231         # this proc file is temporary and linux-only
7232         do_facet $SINGLEMDS lctl set_param mdt.${FSNAME}-MDT0000.mdccomm=$uuid ||\
7233          error "kernel->userspace send failed"
7234         kill -INT $!
7235 }
7236 run_test 163 "kernel <-> userspace comms"
7237
7238 test_169() {
7239         # do directio so as not to populate the page cache
7240         log "creating a 10 Mb file"
7241         multiop $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
7242         log "starting reads"
7243         dd if=$DIR/$tfile of=/dev/null bs=4096 &
7244         log "truncating the file"
7245         multiop $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
7246         log "killing dd"
7247         kill %+ || true # reads might have finished
7248         echo "wait until dd is finished"
7249         wait
7250         log "removing the temporary file"
7251         rm -rf $DIR/$tfile || error "tmp file removal failed"
7252 }
7253 run_test 169 "parallel read and truncate should not deadlock"
7254
7255 test_170() {
7256         $LCTL clear     # bug 18514
7257         $LCTL debug_daemon start $TMP/${tfile}_log_good
7258         touch $DIR/$tfile
7259         $LCTL debug_daemon stop
7260         sed -e "s/^...../a/g" $TMP/${tfile}_log_good > $TMP/${tfile}_log_bad ||
7261                error "sed failed to read log_good"
7262
7263         $LCTL debug_daemon start $TMP/${tfile}_log_good
7264         rm -rf $DIR/$tfile
7265         $LCTL debug_daemon stop
7266
7267         $LCTL df $TMP/${tfile}_log_bad > $TMP/${tfile}_log_bad.out 2>&1 ||
7268                error "lctl df log_bad failed"
7269
7270         local bad_line=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
7271         local good_line1=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
7272
7273         $LCTL df $TMP/${tfile}_log_good > $TMP/${tfile}_log_good.out 2>&1
7274         local good_line2=$(tail -n 1 $TMP/${tfile}_log_good.out | awk '{print $5}')
7275
7276         [ "$bad_line" ] && [ "$good_line1" ] && [ "$good_line2" ] ||
7277                 error "bad_line good_line1 good_line2 are empty"
7278
7279         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
7280         cat $TMP/${tfile}_log_bad >> $TMP/${tfile}_logs_corrupt
7281         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
7282
7283         $LCTL df $TMP/${tfile}_logs_corrupt > $TMP/${tfile}_log_bad.out 2>&1
7284         local bad_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
7285         local good_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
7286
7287         [ "$bad_line_new" ] && [ "$good_line_new" ] ||
7288                 error "bad_line_new good_line_new are empty"
7289
7290         local expected_good=$((good_line1 + good_line2*2))
7291
7292         rm -f $TMP/${tfile}*
7293         if [ $bad_line -ne $bad_line_new ]; then
7294                 error "expected $bad_line bad lines, but got $bad_line_new"
7295                 return 1
7296         fi
7297
7298         if [ $expected_good -ne $good_line_new ]; then
7299                 error "expected $expected_good good lines, but got $good_line_new"
7300                 return 2
7301         fi
7302         true
7303 }
7304 run_test 170 "test lctl df to handle corrupted log ====================="
7305
7306 test_171() { # bug20592
7307 #define OBD_FAIL_PTLRPC_DUMP_LOG         0x50e
7308         $LCTL set_param fail_loc=0x50e
7309         $LCTL set_param fail_val=3000
7310         multiop_bg_pause $DIR/$tfile O_s || true
7311         local MULTIPID=$!
7312         kill -USR1 $MULTIPID
7313         # cause log dump
7314         sleep 3
7315         wait $MULTIPID
7316         if dmesg | grep "recursive fault"; then
7317                 error "caught a recursive fault"
7318         fi
7319         $LCTL set_param fail_loc=0
7320         true
7321 }
7322 run_test 171 "test libcfs_debug_dumplog_thread stuck in do_exit() ======"
7323
7324 # it would be good to share it with obdfilter-survey/libecho code
7325 setup_obdecho_osc () {
7326         local rc=0
7327         local ost_nid=$1
7328         local obdfilter_name=$2
7329         echo "Creating new osc for $obdfilter_name on $ost_nid"
7330         [ $rc -eq 0 ] && { $LCTL attach osc ${obdfilter_name}_osc     \
7331                            ${obdfilter_name}_osc_UUID || rc=2; }
7332         [ $rc -eq 0 ] && { $LCTL --device ${obdfilter_name}_osc setup \
7333                            ${obdfilter_name}_UUID  $ost_nid || rc=3; }
7334         return $rc
7335 }
7336
7337 cleanup_obdecho_osc () {
7338         local obdfilter_name=$1
7339         $LCTL --device ${obdfilter_name}_osc cleanup >/dev/null
7340         $LCTL --device ${obdfilter_name}_osc detach  >/dev/null
7341         return 0
7342 }
7343
7344 obdecho_create_test() {
7345         local OBD=$1
7346         local node=$2
7347         local rc=0
7348         local id
7349         do_facet $node "$LCTL attach echo_client ec ec_uuid" || rc=1
7350         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec setup $OBD" ||
7351                            rc=2; }
7352         if [ $rc -eq 0 ]; then
7353             id=$(do_facet $node "$LCTL --device ec create 1"  | awk '/object id/ {print $6}')
7354             [ ${PIPESTATUS[0]} -eq 0 -a -n "$id" ] || rc=3
7355         fi
7356         echo "New object id is $id"
7357         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec test_brw 10 w v 64 $id" ||
7358                            rc=4; }
7359         [ $rc -eq 0 -o $rc -gt 2 ] && { do_facet $node "$LCTL --device ec "    \
7360                                         "cleanup" || rc=5; }
7361         [ $rc -eq 0 -o $rc -gt 1 ] && { do_facet $node "$LCTL --device ec "    \
7362                                         "detach" || rc=6; }
7363         [ $rc -ne 0 ] && echo "obecho_create_test failed: $rc"
7364         return $rc
7365 }
7366
7367 test_180a() {
7368         local rc=0
7369         local rmmod_local=0
7370
7371         if ! module_loaded obdecho; then
7372             load_module obdecho/obdecho
7373             rmmod_local=1
7374         fi
7375
7376         local osc=$($LCTL dl | grep -v mdt | awk '$3 == "osc" {print $4; exit}')
7377         local host=$(awk '/current_connection:/ {print $2}' /proc/fs/lustre/osc/$osc/import)
7378         local target=$(awk '/target:/ {print $2}' /proc/fs/lustre/osc/$osc/import)
7379         target=${target%_UUID}
7380
7381         [[ -n $target ]]  && { setup_obdecho_osc $host $target || rc=1; } || rc=1
7382         [ $rc -eq 0 ] && { obdecho_create_test ${target}_osc client || rc=2; }
7383         [[ -n $target ]] && cleanup_obdecho_osc $target
7384         [ $rmmod_local -eq 1 ] && rmmod obdecho
7385         return $rc
7386 }
7387 run_test 180a "test obdecho on osc"
7388
7389 test_180b() {
7390         local rc=0
7391         local rmmod_remote=0
7392
7393         do_facet ost "lsmod | grep -q obdecho || "                      \
7394                      "{ insmod ${LUSTRE}/obdecho/obdecho.ko || "        \
7395                      "modprobe obdecho; }" && rmmod_remote=1
7396         target=$(do_facet ost $LCTL dl | awk '/obdfilter/ {print $4;exit}')
7397         [[ -n $target ]] && { obdecho_create_test $target ost || rc=1; }
7398         [ $rmmod_remote -eq 1 ] && do_facet ost "rmmod obdecho"
7399         return $rc
7400 }
7401 run_test 180b "test obdecho directly on obdfilter"
7402
7403 # OST pools tests
7404 POOL=${POOL:-cea1}
7405 TGT_COUNT=$OSTCOUNT
7406 TGTPOOL_FIRST=1
7407 TGTPOOL_MAX=$(($TGT_COUNT - 1))
7408 TGTPOOL_STEP=2
7409 TGTPOOL_LIST=`seq $TGTPOOL_FIRST $TGTPOOL_STEP $TGTPOOL_MAX`
7410 POOL_ROOT=${POOL_ROOT:-$DIR/d200.pools}
7411 POOL_DIR_NAME=dir_tst
7412 POOL_DIR=$POOL_ROOT/$POOL_DIR_NAME
7413 POOL_FILE=$POOL_ROOT/file_tst
7414
7415 check_file_in_pool()
7416 {
7417         file=$1
7418         res=$($GETSTRIPE $file | grep 0x | cut -f2)
7419         for i in $res
7420         do
7421                 found=$(echo :$TGTPOOL_LIST: | tr " " ":"  | grep :$i:)
7422                 if [[ "$found" == "" ]]
7423                 then
7424                         echo "pool list: $TGTPOOL_LIST"
7425                         echo "striping: $res"
7426                         error "$file not allocated in $POOL"
7427                         return 1
7428                 fi
7429         done
7430         return 0
7431 }
7432
7433 trap "cleanup_pools $FSNAME" EXIT
7434
7435 test_200a() {
7436         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
7437     create_pool $FSNAME.$POOL || return $?
7438         [ $($LFS pool_list $FSNAME | grep -c $POOL) -eq 1 ] ||
7439                 error "$POOL not in lfs pool_list"
7440 }
7441 run_test 200a "Create new pool =========================================="
7442
7443 test_200b() {
7444         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
7445         TGT=$(for i in $TGTPOOL_LIST; do printf "$FSNAME-OST%04x_UUID " $i; done)
7446         do_facet mgs $LCTL pool_add $FSNAME.$POOL \
7447                 $FSNAME-OST[$TGTPOOL_FIRST-$TGTPOOL_MAX/$TGTPOOL_STEP]
7448         wait_update $HOSTNAME "lctl get_param -n lov.$FSNAME-*.pools.$POOL | sort -u | tr '\n' ' ' " "$TGT" ||
7449                 error "Add to pool failed"
7450         local lfscount=$($LFS pool_list $FSNAME.$POOL | grep -c "\-OST")
7451         local addcount=$((($TGTPOOL_MAX - $TGTPOOL_FIRST) / $TGTPOOL_STEP + 1))
7452         [ $lfscount -eq $addcount ] ||
7453                 error "lfs pool_list bad ost count $lfscount != $addcount"
7454 }
7455 run_test 200b "Add targets to a pool ===================================="
7456
7457 test_200c() {
7458         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
7459         mkdir -p $POOL_DIR
7460         $SETSTRIPE -c 2 -p $POOL $POOL_DIR
7461         [ $? = 0 ] || error "Cannot set pool $POOL to $POOL_DIR"
7462         # b-19919 test relative path works well
7463         mkdir -p $POOL_DIR/$POOL_DIR_NAME
7464         cd $POOL_DIR
7465         $SETSTRIPE -c 2 -p $POOL $POOL_DIR_NAME
7466         [ $? = 0 ] || error "Cannot set pool $POOL to $POOL_DIR/$POOL_DIR_NAME"
7467         $SETSTRIPE -c 2 -p $POOL ./$POOL_DIR_NAME
7468         [ $? = 0 ] || error "Cannot set pool $POOL to $POOL_DIR/./$POOL_DIR_NAME"
7469         $SETSTRIPE -c 2 -p $POOL ../$POOL_DIR_NAME
7470         [ $? = 0 ] || error "Cannot set pool $POOL to $POOL_DIR/../$POOL_DIR_NAME"
7471         $SETSTRIPE -c 2 -p $POOL ../$POOL_DIR_NAME/$POOL_DIR_NAME
7472         [ $? = 0 ] || error "Cannot set pool $POOL to $POOL_DIR/../$POOL_DIR_NAME/$POOL_DIR_NAME"
7473         rm -rf $POOL_DIR_NAME; cd -
7474 }
7475 run_test 200c "Set pool on a directory ================================="
7476
7477 test_200d() {
7478         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
7479         res=$($GETSTRIPE --pool $POOL_DIR)
7480         [ $res = $POOL ] || error "Pool on $POOL_DIR is $res, not $POOL"
7481 }
7482 run_test 200d "Check pool on a directory ==============================="
7483
7484 test_200e() {
7485         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
7486         failed=0
7487         for i in $(seq -w 1 $(($TGT_COUNT * 3)))
7488         do
7489                 file=$POOL_DIR/file-$i
7490                 touch $file
7491                 check_file_in_pool $file
7492                 if [[ $? != 0 ]]
7493                 then
7494                         failed=$(($failed + 1))
7495                 fi
7496         done
7497         [ "$failed" = 0 ] || error "$failed files not allocated in $POOL"
7498 }
7499 run_test 200e "Check files allocation from directory pool =============="
7500
7501 test_200f() {
7502         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
7503         mkdir -p $POOL_FILE
7504         failed=0
7505         for i in $(seq -w 1 $(($TGT_COUNT * 3)))
7506         do
7507                 file=$POOL_FILE/spoo-$i
7508                 $SETSTRIPE -p $POOL $file
7509                 check_file_in_pool $file
7510                 if [[ $? != 0 ]]
7511                 then
7512                         failed=$(($failed + 1))
7513                 fi
7514         done
7515         [ "$failed" = 0 ] || error "$failed files not allocated in $POOL"
7516 }
7517 run_test 200f "Create files in a pool ==================================="
7518
7519 test_200g() {
7520         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
7521         TGT=$($LCTL get_param -n lov.$FSNAME-clilov-*.pools.$POOL | tr '\n' ' ')
7522         res=$($LFS df --pool $FSNAME.$POOL | awk '{print $1}' | grep "$FSNAME-OST" | tr '\n' ' ')
7523         [ "$res" = "$TGT" ] || error "Pools OSTs '$TGT' is not '$res' that lfs df reports"
7524 }
7525 run_test 200g "lfs df a pool ============================================"
7526
7527 test_200h() { # b=24039
7528         mkdir -p $POOL_DIR || error "unable to create $POOL_DIR"
7529
7530         local file="/..$POOL_DIR/$tfile-1"
7531         $SETSTRIPE -p $POOL $file || error "unable to create $file"
7532
7533         cd $POOL_DIR
7534         $SETSTRIPE -p $POOL $tfile-2 || \
7535                 error "unable to create $tfile-2 in $POOL_DIR"
7536 }
7537 run_test 200h "Create files in a pool with relative pathname ============"
7538
7539 test_201a() {
7540         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
7541         TGT=$($LCTL get_param -n lov.$FSNAME-*.pools.$POOL | head -1)
7542         do_facet mgs $LCTL pool_remove $FSNAME.$POOL $TGT
7543         wait_update $HOSTNAME "lctl get_param -n lov.$FSNAME-*.pools.$POOL | grep $TGT" "" ||
7544                 error "$TGT not removed from $FSNAME.$POOL"
7545 }
7546 run_test 201a "Remove a target from a pool ============================="
7547
7548 test_201b() {
7549         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
7550         for TGT in $($LCTL get_param -n lov.$FSNAME-*.pools.$POOL | sort -u)
7551         do
7552                 do_facet mgs $LCTL pool_remove $FSNAME.$POOL $TGT
7553         done
7554         wait_update $HOSTNAME "lctl get_param -n lov.$FSNAME-*.pools.$POOL" "" ||
7555                 error "Pool $FSNAME.$POOL cannot be drained"
7556         # striping on an empty/nonexistant pool should fall back to "pool of everything"
7557         touch ${POOL_DIR}/$tfile || error "failed to use fallback striping for empty pool"
7558         # setstripe on an empty pool should fail
7559         $SETSTRIPE -p $POOL ${POOL_FILE}/$tfile 2>/dev/null && \
7560                 error "expected failure when creating file with empty pool"
7561         return 0
7562 }
7563 run_test 201b "Remove all targets from a pool =========================="
7564
7565 test_201c() {
7566         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
7567         do_facet mgs $LCTL pool_destroy $FSNAME.$POOL
7568
7569         sleep 2
7570     # striping on an empty/nonexistant pool should fall back to "pool of everything"
7571         touch ${POOL_DIR}/$tfile || error "failed to use fallback striping for missing pool"
7572         # setstripe on an empty pool should fail
7573         $SETSTRIPE -p $POOL ${POOL_FILE}/$tfile 2>/dev/null && \
7574                 error "expected failure when creating file with missing pool"
7575
7576         # get param should return err once pool is gone
7577         if wait_update $HOSTNAME "lctl get_param -n lov.$FSNAME-*.pools.$POOL 2>/dev/null ||
7578                         echo foo" "foo"; then
7579                 remove_pool_from_list $FSNAME.$POOL
7580                 return 0
7581         fi
7582         error "Pool $FSNAME.$POOL is not destroyed"
7583 }
7584 run_test 201c "Remove a pool ============================================"
7585
7586 cleanup_pools $FSNAME
7587
7588 test_212() {
7589         size=`date +%s`
7590         size=$((size % 8192 + 1))
7591         dd if=/dev/urandom of=$DIR/f212 bs=1k count=$size
7592         sendfile $DIR/f212 $DIR/f212.xyz || error "sendfile wrong"
7593         rm -f $DIR/f212 $DIR/f212.xyz
7594 }
7595 run_test 212 "Sendfile test ============================================"
7596
7597 test_213() {
7598         dd if=/dev/zero of=$DIR/$tfile bs=4k count=4
7599         cancel_lru_locks osc
7600         lctl set_param fail_loc=0x8000040f
7601         # generate a read lock
7602         cat $DIR/$tfile > /dev/null
7603         # write to the file, it will try to cancel the above read lock.
7604         cat /etc/hosts >> $DIR/$tfile
7605 }
7606 run_test 213 "OSC lock completion and cancel race don't crash - bug 18829"
7607
7608 test_214() { # for bug 20133
7609         mkdir -p $DIR/d214p/d214c
7610         for (( i=0; i < 340; i++ )) ; do
7611                 touch $DIR/d214p/d214c/a$i
7612         done
7613
7614         ls -l $DIR/d214p || error "ls -l $DIR/d214p failed"
7615         mv $DIR/d214p/d214c $DIR/ || error "mv $DIR/d214p/d214c $DIR/ failed"
7616         ls $DIR/d214c || error "ls $DIR/d214c failed"
7617         rm -rf $DIR/d214* || error "rm -rf $DIR/d214* failed"
7618 }
7619 run_test 214 "hash-indexed directory test - bug 20133"
7620
7621 # having "abc" as 1st arg, creates $TMP/lnet_abc.out and $TMP/lnet_abc.sys
7622 create_lnet_proc_files() {
7623         cat /proc/sys/lnet/$1 >$TMP/lnet_$1.out || error "cannot read /proc/sys/lnet/$1"
7624         sysctl lnet.$1 >$TMP/lnet_$1.sys_tmp || error "cannot read lnet.$1"
7625
7626         sed "s/^lnet.$1\ =\ //g" "$TMP/lnet_$1.sys_tmp" >$TMP/lnet_$1.sys
7627         rm -f "$TMP/lnet_$1.sys_tmp"
7628 }
7629
7630 # counterpart of create_lnet_proc_files
7631 remove_lnet_proc_files() {
7632         rm -f $TMP/lnet_$1.out $TMP/lnet_$1.sys
7633 }
7634
7635 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
7636 # 3rd arg as regexp for body
7637 check_lnet_proc_stats() {
7638         local l=$(cat "$TMP/lnet_$1" |wc -l)
7639         [ $l = 1 ] || (cat "$TMP/lnet_$1" && error "$2 is not of 1 line: $l")
7640
7641         grep -E "$3" "$TMP/lnet_$1" || (cat "$TMP/lnet_$1" && error "$2 misformatted")
7642 }
7643
7644 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
7645 # 3rd arg as regexp for body, 4th arg as regexp for 1st line, 5th arg is
7646 # optional and can be regexp for 2nd line (lnet.routes case)
7647 check_lnet_proc_entry() {
7648         local blp=2            # blp stands for 'position of 1st line of body'
7649         [ "$5" = "" ] || blp=3 # lnet.routes case
7650
7651         local l=$(cat "$TMP/lnet_$1" |wc -l)
7652         # subtracting one from $blp because the body can be empty
7653         [ "$l" -ge "$(($blp - 1))" ] || (cat "$TMP/lnet_$1" && error "$2 is too short: $l")
7654
7655         sed -n '1 p' "$TMP/lnet_$1" |grep -E "$4" >/dev/null ||
7656                 (cat "$TMP/lnet_$1" && error "1st line of $2 misformatted")
7657
7658         [ "$5" = "" ] || sed -n '2 p' "$TMP/lnet_$1" |grep -E "$5" >/dev/null ||
7659                 (cat "$TMP/lnet_$1" && error "2nd line of $2 misformatted")
7660
7661         # bail out if any unexpected line happened
7662         sed -n "$blp~1 p" "$TMP/lnet_$1" |grep -Ev "$3"
7663         [ "$?" != 0 ] || error "$2 misformatted"
7664 }
7665
7666 test_215() { # for bugs 18102, 21079, 21517
7667         local N='(0|[1-9][0-9]*)'   # non-negative numeric
7668         local P='[1-9][0-9]*'       # positive numeric
7669         local I='(0|-?[1-9][0-9]*)' # any numeric (0 | >0 | <0)
7670         local NET='[a-z][a-z0-9]*'  # LNET net like o2ib2
7671         local ADDR='[0-9.]+'        # LNET addr like 10.0.0.1
7672         local NID="$ADDR@$NET"      # LNET nid like 10.0.0.1@o2ib2
7673
7674         local L1 # regexp for 1st line
7675         local L2 # regexp for 2nd line (optional)
7676         local BR # regexp for the rest (body)
7677
7678         # /proc/sys/lnet/stats should look as 11 space-separated non-negative numerics
7679         BR="^$N $N $N $N $N $N $N $N $N $N $N$"
7680         create_lnet_proc_files "stats"
7681         check_lnet_proc_stats "stats.out" "/proc/sys/lnet/stats" "$BR"
7682         check_lnet_proc_stats "stats.sys" "lnet.stats" "$BR"
7683         remove_lnet_proc_files "stats"
7684
7685         # /proc/sys/lnet/routes should look like this:
7686         # Routing disabled/enabled
7687         # net hops state router
7688         # where net is a string like tcp0, hops >= 0, state is up/down,
7689         # router is a string like 192.168.1.1@tcp2
7690         L1="^Routing (disabled|enabled)$"
7691         L2="^net +hops +state +router$"
7692         BR="^$NET +$N +(up|down) +$NID$"
7693         create_lnet_proc_files "routes"
7694         check_lnet_proc_entry "routes.out" "/proc/sys/lnet/routes" "$BR" "$L1" "$L2"
7695         check_lnet_proc_entry "routes.sys" "lnet.routes" "$BR" "$L1" "$L2"
7696         remove_lnet_proc_files "routes"
7697
7698         # /proc/sys/lnet/routers should look like this:
7699         # ref rtr_ref alive_cnt state last_ping ping_sent deadline down_ni router
7700         # where ref > 0, rtr_ref > 0, alive_cnt >= 0, state is up/down,
7701         # last_ping >= 0, ping_sent is boolean (0/1), deadline and down_ni are
7702         # numeric (0 or >0 or <0), router is a string like 192.168.1.1@tcp2
7703         L1="^ref +rtr_ref +alive_cnt +state +last_ping +ping_sent +deadline +down_ni +router$"
7704         BR="^$P +$P +$N +(up|down) +$N +(0|1) +$I +$I +$NID$"
7705         create_lnet_proc_files "routers"
7706         check_lnet_proc_entry "routers.out" "/proc/sys/lnet/routers" "$BR" "$L1"
7707         check_lnet_proc_entry "routers.sys" "lnet.routers" "$BR" "$L1"
7708         remove_lnet_proc_files "routers"
7709
7710         # /proc/sys/lnet/peers should look like this:
7711         # nid refs state last max rtr min tx min queue
7712         # where nid is a string like 192.168.1.1@tcp2, refs > 0,
7713         # state is up/down/NA, max >= 0. last, rtr, min, tx, min are
7714         # numeric (0 or >0 or <0), queue >= 0.
7715         L1="^nid +refs +state +last +max +rtr +min +tx +min +queue$"
7716         BR="^$NID +$P +(up|down|NA) +$I +$N +$I +$I +$I +$I +$N$"
7717         create_lnet_proc_files "peers"
7718         check_lnet_proc_entry "peers.out" "/proc/sys/lnet/peers" "$BR" "$L1"
7719         check_lnet_proc_entry "peers.sys" "lnet.peers" "$BR" "$L1"
7720         remove_lnet_proc_files "peers"
7721
7722         # /proc/sys/lnet/buffers  should look like this:
7723         # pages count credits min
7724         # where pages >=0, count >=0, credits and min are numeric (0 or >0 or <0)
7725         L1="^pages +count +credits +min$"
7726         BR="^ +$N +$N +$I +$I$"
7727         create_lnet_proc_files "buffers"
7728         check_lnet_proc_entry "buffers.out" "/proc/sys/lnet/buffers" "$BR" "$L1"
7729         check_lnet_proc_entry "buffers.sys" "lnet.buffers" "$BR" "$L1"
7730         remove_lnet_proc_files "buffers"
7731
7732         # /proc/sys/lnet/nis should look like this:
7733         # nid status alive refs peer rtr max tx min
7734         # where nid is a string like 192.168.1.1@tcp2, status is up/down,
7735         # alive is numeric (0 or >0 or <0), refs > 0, peer >= 0,
7736         # rtr >= 0, max >=0, tx and min are numeric (0 or >0 or <0).
7737         L1="^nid +status +alive +refs +peer +rtr +max +tx +min$"
7738         BR="^$NID +(up|down) +$I +$P +$N +$N +$N +$I +$I$"
7739         create_lnet_proc_files "nis"
7740         check_lnet_proc_entry "nis.out" "/proc/sys/lnet/nis" "$BR" "$L1"
7741         check_lnet_proc_entry "nis.sys" "lnet.nis" "$BR" "$L1"
7742         remove_lnet_proc_files "nis"
7743
7744         # can we successfully write to /proc/sys/lnet/stats?
7745         echo "0" >/proc/sys/lnet/stats || error "cannot write to /proc/sys/lnet/stats"
7746         sysctl -w lnet.stats=0 || error "cannot write to lnet.stats"
7747 }
7748 run_test 215 "/proc/sys/lnet exists and has proper content - bugs 18102, 21079, 21517"
7749
7750 test_216() { # bug 20317
7751         local node
7752         local p="$TMP/sanityN-$TESTNAME.parameters"
7753         save_lustre_params $HOSTNAME "osc.*.contention_seconds" > $p
7754         for node in $(osts_nodes); do
7755                 save_lustre_params $node "ldlm.namespaces.filter-*.max_nolock_bytes" >> $p
7756                 save_lustre_params $node "ldlm.namespaces.filter-*.contended_locks" >> $p
7757                 save_lustre_params $node "ldlm.namespaces.filter-*.contention_seconds" >> $p
7758         done
7759         clear_osc_stats
7760
7761         # agressive lockless i/o settings
7762         for node in $(osts_nodes); do
7763                 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'
7764         done
7765         lctl set_param -n osc.*.contention_seconds 60
7766
7767         $DIRECTIO write $DIR/$tfile 0 10 4096
7768         $CHECKSTAT -s 40960 $DIR/$tfile
7769
7770         # disable lockless i/o
7771         for node in $(osts_nodes); do
7772                 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'
7773         done
7774         lctl set_param -n osc.*.contention_seconds 0
7775         clear_osc_stats
7776
7777         dd if=/dev/zero of=$DIR/$tfile count=0
7778         $CHECKSTAT -s 0 $DIR/$tfile
7779
7780         restore_lustre_params <$p
7781         rm -f $p
7782         rm $DIR/$tfile
7783 }
7784 run_test 216 "check lockless direct write works and updates file size and kms correctly"
7785
7786 test_217() { # bug 22430
7787         local node
7788         for node in $(nodes_list); do
7789                 if [[ $node = *-* ]] ; then
7790                         echo "lctl ping $node@$NETTYPE"
7791                         lctl ping $node@$NETTYPE
7792                 else
7793                         echo "skipping $node (no hiphen detected)"
7794                 fi
7795         done
7796 }
7797 run_test 217 "check lctl ping for hostnames with hiphen ('-')"
7798
7799 test_218() {
7800        # do directio so as not to populate the page cache
7801        log "creating a 10 Mb file"
7802        multiop $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
7803        log "starting reads"
7804        dd if=$DIR/$tfile of=/dev/null bs=4096 &
7805        log "truncating the file"
7806        multiop $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
7807        log "killing dd"
7808        kill %+ || true # reads might have finished
7809        echo "wait until dd is finished"
7810        wait
7811        log "removing the temporary file"
7812        rm -rf $DIR/$tfile || error "tmp file removal failed"
7813 }
7814 run_test 218 "parallel read and truncate should not deadlock ======================="
7815
7816 #
7817 # tests that do cleanup/setup should be run at the end
7818 #
7819
7820 test_900() {
7821         local ls
7822         #define OBD_FAIL_MGC_PAUSE_PROCESS_LOG   0x903
7823         $LCTL set_param fail_loc=0x903
7824         # cancel_lru_locks mgc - does not work due to lctl set_param syntax
7825         for ls in /proc/fs/lustre/ldlm/namespaces/MGC*/lru_size; do
7826                 echo "clear" > $ls
7827         done
7828         FAIL_ON_ERROR=true cleanup
7829         FAIL_ON_ERROR=true setup
7830 }
7831 run_test 900 "umount should not race with any mgc requeue thread"
7832
7833 complete $(basename $0) $SECONDS
7834 check_and_cleanup_lustre
7835 if [ "$I_MOUNTED" != "yes" ]; then
7836         lctl set_param debug="$OLDDEBUG" 2> /dev/null || true
7837 fi
7838 exit_status