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