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