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