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