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