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