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