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