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