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