Whamcloud - gitweb
LU-3163 tests: Fix test_61 from conf-sanity test
[fs/lustre-release.git] / lustre / tests / sanity.sh
1 #!/bin/bash
2 # -*- tab-width: 8; indent-tabs-mode: t; -*-
3 #
4 # Run select tests by setting ONLY, or as arguments to the script.
5 # Skip specific tests by setting EXCEPT.
6 #
7 # e.g. ONLY="22 23" or ONLY="`seq 32 39`" or EXCEPT="31"
8 set -e
9
10 ONLY=${ONLY:-"$*"}
11 # bug number for skipped test: 13297 2108 9789 3637 9789 3561 12622 5188
12 ALWAYS_EXCEPT="                42a  42b  42c  42d  45   51d   68b   $SANITY_EXCEPT"
13 # UPDATE THE COMMENT ABOVE WITH BUG NUMBERS WHEN CHANGING ALWAYS_EXCEPT!
14
15 # with LOD/OSP landing
16 # bug number for skipped tests: LU-2036
17 ALWAYS_EXCEPT="                 76     $ALWAYS_EXCEPT"
18
19 SRCDIR=$(cd $(dirname $0); echo $PWD)
20 export PATH=$PATH:/sbin
21
22 TMP=${TMP:-/tmp}
23
24 CC=${CC:-cc}
25 CHECKSTAT=${CHECKSTAT:-"checkstat -v"}
26 CREATETEST=${CREATETEST:-createtest}
27 LFS=${LFS:-lfs}
28 LFIND=${LFIND:-"$LFS find"}
29 LVERIFY=${LVERIFY:-ll_dirstripe_verify}
30 LCTL=${LCTL:-lctl}
31 OPENFILE=${OPENFILE:-openfile}
32 OPENUNLINK=${OPENUNLINK:-openunlink}
33 export MULTIOP=${MULTIOP:-multiop}
34 READS=${READS:-"reads"}
35 MUNLINK=${MUNLINK:-munlink}
36 SOCKETSERVER=${SOCKETSERVER:-socketserver}
37 SOCKETCLIENT=${SOCKETCLIENT:-socketclient}
38 MEMHOG=${MEMHOG:-memhog}
39 DIRECTIO=${DIRECTIO:-directio}
40 ACCEPTOR_PORT=${ACCEPTOR_PORT:-988}
41 UMOUNT=${UMOUNT:-"umount -d"}
42 STRIPES_PER_OBJ=-1
43 CHECK_GRANT=${CHECK_GRANT:-"yes"}
44 GRANT_CHECK_LIST=${GRANT_CHECK_LIST:-""}
45 export PARALLEL=${PARALLEL:-"no"}
46
47 export NAME=${NAME:-local}
48
49 SAVE_PWD=$PWD
50
51 CLEANUP=${CLEANUP:-:}
52 SETUP=${SETUP:-:}
53 TRACE=${TRACE:-""}
54 LUSTRE=${LUSTRE:-$(cd $(dirname $0)/..; echo $PWD)}
55 LUSTRE_TESTS_API_DIR=${LUSTRE_TESTS_API_DIR:-${LUSTRE}/tests/clientapi}
56 . $LUSTRE/tests/test-framework.sh
57 init_test_env $@
58 . ${CONFIG:=$LUSTRE/tests/cfg/${NAME}.sh}
59 init_logging
60
61 [ "$SLOW" = "no" ] && EXCEPT_SLOW="24o 24D 27m 64b 68 71 77f 78 115 124b"
62
63 if [ $(facet_fstype $SINGLEMDS) = "zfs" ]; then
64         # bug number for skipped test: LU-4536 LU-1957 LU-2805
65         ALWAYS_EXCEPT="$ALWAYS_EXCEPT  65ic    180     184c"
66         [ "$SLOW" = "no" ] && EXCEPT_SLOW="$EXCEPT_SLOW 51b 51ba"
67 fi
68
69 FAIL_ON_ERROR=false
70
71 cleanup() {
72         echo -n "cln.."
73         pgrep ll_sa > /dev/null && { echo "There are ll_sa thread not exit!"; exit 20; }
74         cleanupall ${FORCE} $* || { echo "FAILed to clean up"; exit 20; }
75 }
76 setup() {
77         echo -n "mnt.."
78         load_modules
79         setupall || exit 10
80         echo "done"
81 }
82
83 check_swap_layouts_support()
84 {
85         $LCTL get_param -n llite.*.sbi_flags | grep -q layout ||
86                 { skip "Does not support layout lock."; return 0; }
87         return 1
88 }
89
90 check_and_setup_lustre
91
92 DIR=${DIR:-$MOUNT}
93 assert_DIR
94
95 MDT0=$($LCTL get_param -n mdc.*.mds_server_uuid |
96         awk '{ gsub(/_UUID/,""); print $1 }' | head -n1)
97 LOVNAME=$($LCTL get_param -n llite.*.lov.common_name | tail -n 1)
98 OSTCOUNT=$($LCTL get_param -n lov.$LOVNAME.numobd)
99 STRIPECOUNT=$($LCTL get_param -n lov.$LOVNAME.stripecount)
100 STRIPESIZE=$($LCTL get_param -n lov.$LOVNAME.stripesize)
101 ORIGFREE=$($LCTL get_param -n lov.$LOVNAME.kbytesavail)
102 MAXFREE=${MAXFREE:-$((200000 * $OSTCOUNT))}
103
104 [ -f $DIR/d52a/foo ] && chattr -a $DIR/d52a/foo
105 [ -f $DIR/d52b/foo ] && chattr -i $DIR/d52b/foo
106 rm -rf $DIR/[Rdfs][0-9]*
107
108 # $RUNAS_ID may get set incorrectly somewhere else
109 [ $UID -eq 0 -a $RUNAS_ID -eq 0 ] && error "\$RUNAS_ID set to 0, but \$UID is also 0!"
110
111 check_runas_id $RUNAS_ID $RUNAS_GID $RUNAS
112
113 build_test_filter
114
115 if [ "${ONLY}" = "MOUNT" ] ; then
116         echo "Lustre is up, please go on"
117         exit
118 fi
119
120 echo "preparing for tests involving mounts"
121 EXT2_DEV=${EXT2_DEV:-$TMP/SANITY.LOOP}
122 touch $EXT2_DEV
123 mke2fs -j -F $EXT2_DEV 8000 > /dev/null
124 echo # add a newline after mke2fs.
125
126 umask 077
127
128 OLDDEBUG=$(lctl get_param -n debug 2> /dev/null)
129 lctl set_param debug=-1 2> /dev/null || true
130 test_0a() {
131         touch $DIR/$tfile
132         $CHECKSTAT -t file $DIR/$tfile || error "$tfile is not a file"
133         rm $DIR/$tfile
134         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
135 }
136 run_test 0a "touch; rm ====================="
137
138 test_0b() {
139         chmod 0755 $DIR || error "chmod 0755 $DIR failed"
140         $CHECKSTAT -p 0755 $DIR || error "$DIR permission is not 0755"
141 }
142 run_test 0b "chmod 0755 $DIR ============================="
143
144 test_0c() {
145         $LCTL get_param mdc.*.import | grep "state: FULL" ||
146                 error "import not FULL"
147         $LCTL get_param mdc.*.import | grep "target: $FSNAME-MDT" ||
148                 error "bad target"
149 }
150 run_test 0c "check import proc ============================="
151
152 test_1() {
153         test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
154         test_mkdir -p $DIR/$tdir/d2 || error "mkdir $tdir/d2 failed"
155         test_mkdir $DIR/$tdir/d2 && error "we expect EEXIST, but not returned"
156         $CHECKSTAT -t dir $DIR/$tdir/d2 || error "$tdir/d2 is not a dir"
157         rmdir $DIR/$tdir/d2
158         rmdir $DIR/$tdir
159         $CHECKSTAT -a $DIR/$tdir || error "$tdir was not removed"
160 }
161 run_test 1 "mkdir; remkdir; rmdir =============================="
162
163 test_2() {
164         test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
165         touch $DIR/$tdir/$tfile || error "touch $tdir/$tfile failed"
166         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "$tdir/$tfile not a file"
167         rm -r $DIR/$tdir
168         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$file is not removed"
169 }
170 run_test 2 "mkdir; touch; rmdir; check file ===================="
171
172 test_3() {
173         test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
174         $CHECKSTAT -t dir $DIR/$tdir || error "$tdir is not a directory"
175         touch $DIR/$tdir/$tfile
176         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "$tdir/$tfile not a file"
177         rm -r $DIR/$tdir
178         $CHECKSTAT -a $DIR/$tdir || error "$tdir is not removed"
179 }
180 run_test 3 "mkdir; touch; rmdir; check dir ====================="
181
182 # LU-4471 - failed rmdir on remote directories still removes directory on MDT0
183 test_4() {
184         local MDTIDX=1
185
186         test_mkdir $DIR/$tdir ||
187                 error "Create remote directory failed"
188
189         touch $DIR/$tdir/$tfile ||
190                 error "Create file under remote directory failed"
191
192         rmdir $DIR/$tdir &&
193                 error "Expect error removing in-use dir $DIR/$tdir"
194
195         test -d $DIR/$tdir || error "Remote directory disappeared"
196
197         rm -rf $DIR/$tdir || error "remove remote dir error"
198 }
199 run_test 4 "mkdir; touch dir/file; rmdir; checkdir (expect error)"
200
201 test_5() {
202         test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
203         test_mkdir $DIR/$tdir/d2 || error "mkdir $tdir/d2 failed"
204         chmod 0707 $DIR/$tdir/d2 || error "chmod 0707 $tdir/d2 failed"
205         $CHECKSTAT -t dir -p 0707 $DIR/$tdir/d2 || error "$tdir/d2 not mode 707"
206         $CHECKSTAT -t dir $DIR/$tdir/d2 || error "$tdir/d2 is not a directory"
207 }
208 run_test 5 "mkdir .../d5 .../d5/d2; chmod .../d5/d2 ============"
209
210 test_6a() {
211         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
212         chmod 0666 $DIR/$tfile || error "chmod 0666 $tfile failed"
213         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile ||
214                 error "$tfile does not have perm 0666 or UID $UID"
215         $RUNAS chmod 0444 $DIR/$tfile && error "chmod $tfile worked on UID $UID"
216         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile ||
217                 error "$tfile should be 0666 and owned by UID $UID"
218 }
219 run_test 6a "touch f6a; chmod f6a; $RUNAS chmod f6a (should return error) =="
220
221 test_6c() {
222         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
223         touch $DIR/$tfile
224         chown $RUNAS_ID $DIR/$tfile || error "chown $RUNAS_ID $file failed"
225         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/$tfile ||
226                 error "$tfile should be owned by UID $RUNAS_ID"
227         $RUNAS chown $UID $DIR/$tfile && error "chown $UID $file succeeded"
228         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/$tfile ||
229                 error "$tfile should be owned by UID $RUNAS_ID"
230 }
231 run_test 6c "touch f6c; chown f6c; $RUNAS chown f6c (should return error) =="
232
233 test_6e() {
234         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
235         touch $DIR/$tfile
236         chgrp $RUNAS_ID $DIR/$tfile || error "chgrp $RUNAS_ID $file failed"
237         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile ||
238                 error "$tfile should be owned by GID $UID"
239         $RUNAS chgrp $UID $DIR/$tfile && error "chgrp $UID $file succeeded"
240         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile ||
241                 error "$tfile should be owned by UID $UID and GID $RUNAS_ID"
242 }
243 run_test 6e "touch f6e; chgrp f6e; $RUNAS chgrp f6e (should return error) =="
244
245 test_6g() {
246         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
247         test_mkdir $DIR/$tdir || error "mkdir $tfile failed"
248         chmod 777 $DIR/$tdir || error "chmod 0777 $tdir failed"
249         $RUNAS mkdir $DIR/$tdir/d || error "mkdir $tdir/d failed"
250         chmod g+s $DIR/$tdir/d || error "chmod g+s $tdir/d failed"
251         test_mkdir $DIR/$tdir/d/subdir || error "mkdir $tdir/d/subdir failed"
252         $CHECKSTAT -g \#$RUNAS_GID $DIR/$tdir/d/subdir ||
253                 error "$tdir/d/subdir should be GID $RUNAS_GID"
254 }
255 run_test 6g "Is new dir in sgid dir inheriting group?"
256
257 test_6h() { # bug 7331
258         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
259         touch $DIR/$tfile || error "touch failed"
260         chown $RUNAS_ID:$RUNAS_GID $DIR/$tfile || error "initial chown failed"
261         $RUNAS -G$RUNAS_GID chown $RUNAS_ID:0 $DIR/$tfile &&
262                 error "chown $RUNAS_ID:0 $tfile worked as GID $RUNAS_GID"
263         $CHECKSTAT -t file -u \#$RUNAS_ID -g \#$RUNAS_GID $DIR/$tfile ||
264                 error "$tdir/$tfile should be UID $RUNAS_UID GID $RUNAS_GID"
265 }
266 run_test 6h "$RUNAS chown RUNAS_ID.0 .../f6h (should return error)"
267
268 test_7a() {
269         test_mkdir $DIR/$tdir
270         $MCREATE $DIR/$tdir/$tfile
271         chmod 0666 $DIR/$tdir/$tfile
272         $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile ||
273                 error "$tdir/$tfile should be mode 0666"
274 }
275 run_test 7a "mkdir .../d7; mcreate .../d7/f; chmod .../d7/f ===="
276
277 test_7b() {
278         if [ ! -d $DIR/$tdir ]; then
279                 test_mkdir $DIR/$tdir
280         fi
281         $MCREATE $DIR/$tdir/$tfile
282         echo -n foo > $DIR/$tdir/$tfile
283         [ "$(cat $DIR/$tdir/$tfile)" = "foo" ] || error "$tdir/$tfile not 'foo'"
284         $CHECKSTAT -t file -s 3 $DIR/$tdir/$tfile || error "$tfile size not 3"
285 }
286 run_test 7b "mkdir .../d7; mcreate d7/f2; echo foo > d7/f2 ====="
287
288 test_8() {
289         test_mkdir $DIR/$tdir
290         touch $DIR/$tdir/$tfile
291         chmod 0666 $DIR/$tdir/$tfile
292         $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile ||
293                 error "$tfile mode not 0666"
294 }
295 run_test 8 "mkdir .../d8; touch .../d8/f; chmod .../d8/f ======="
296
297 test_9() {
298         test_mkdir $DIR/$tdir
299         test_mkdir $DIR/$tdir/d2
300         test_mkdir $DIR/$tdir/d2/d3
301         $CHECKSTAT -t dir $DIR/$tdir/d2/d3 || error "$tdir/d2/d3 not a dir"
302 }
303 run_test 9 "mkdir .../d9 .../d9/d2 .../d9/d2/d3 ================"
304
305 test_10() {
306         test_mkdir $DIR/$tdir
307         test_mkdir $DIR/$tdir/d2
308         touch $DIR/$tdir/d2/$tfile
309         $CHECKSTAT -t file $DIR/$tdir/d2/$tfile ||
310                 error "$tdir/d2/$tfile not a file"
311 }
312 run_test 10 "mkdir .../d10 .../d10/d2; touch .../d10/d2/f ======"
313
314 test_11() {
315         test_mkdir $DIR/$tdir
316         test_mkdir $DIR/$tdir/d2
317         chmod 0666 $DIR/$tdir/d2
318         chmod 0705 $DIR/$tdir/d2
319         $CHECKSTAT -t dir -p 0705 $DIR/$tdir/d2 ||
320                 error "$tdir/d2 mode not 0705"
321 }
322 run_test 11 "mkdir .../d11 d11/d2; chmod .../d11/d2 ============"
323
324 test_12() {
325         test_mkdir $DIR/$tdir
326         touch $DIR/$tdir/$tfile
327         chmod 0666 $DIR/$tdir/$tfile
328         chmod 0654 $DIR/$tdir/$tfile
329         $CHECKSTAT -t file -p 0654 $DIR/$tdir/$tfile ||
330                 error "$tdir/d2 mode not 0654"
331 }
332 run_test 12 "touch .../d12/f; chmod .../d12/f .../d12/f ========"
333
334 test_13() {
335         test_mkdir $DIR/$tdir
336         dd if=/dev/zero of=$DIR/$tdir/$tfile count=10
337         >  $DIR/$tdir/$tfile
338         $CHECKSTAT -t file -s 0 $DIR/$tdir/$tfile ||
339                 error "$tdir/$tfile size not 0 after truncate"
340 }
341 run_test 13 "creat .../d13/f; dd .../d13/f; > .../d13/f ========"
342
343 test_14() {
344         test_mkdir $DIR/$tdir
345         touch $DIR/$tdir/$tfile
346         rm $DIR/$tdir/$tfile
347         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$tfile not removed"
348 }
349 run_test 14 "touch .../d14/f; rm .../d14/f; rm .../d14/f ======="
350
351 test_15() {
352         test_mkdir $DIR/$tdir
353         touch $DIR/$tdir/$tfile
354         mv $DIR/$tdir/$tfile $DIR/$tdir/${tfile}_2
355         $CHECKSTAT -t file $DIR/$tdir/${tfile}_2 ||
356                 error "$tdir/${tfile_2} not a file after rename"
357         rm $DIR/$tdir/${tfile}_2 || error "unlink failed after rename"
358 }
359 run_test 15 "touch .../d15/f; mv .../d15/f .../d15/f2 =========="
360
361 test_16() {
362         test_mkdir $DIR/$tdir
363         touch $DIR/$tdir/$tfile
364         rm -rf $DIR/$tdir/$tfile
365         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$tfile not removed"
366 }
367 run_test 16 "touch .../d16/f; rm -rf .../d16/f ================="
368
369 test_17a() {
370         test_mkdir -p $DIR/$tdir
371         touch $DIR/$tdir/$tfile
372         ln -s $DIR/$tdir/$tfile $DIR/$tdir/l-exist
373         ls -l $DIR/$tdir
374         $CHECKSTAT -l $DIR/$tdir/$tfile $DIR/$tdir/l-exist ||
375                 error "$tdir/l-exist not a symlink"
376         $CHECKSTAT -f -t f $DIR/$tdir/l-exist ||
377                 error "$tdir/l-exist not referencing a file"
378         rm -f $DIR/$tdir/l-exist
379         $CHECKSTAT -a $DIR/$tdir/l-exist || error "$tdir/l-exist not removed"
380 }
381 run_test 17a "symlinks: create, remove (real) =================="
382
383 test_17b() {
384         test_mkdir -p $DIR/$tdir
385         ln -s no-such-file $DIR/$tdir/l-dangle
386         ls -l $DIR/$tdir
387         $CHECKSTAT -l no-such-file $DIR/$tdir/l-dangle ||
388                 error "$tdir/l-dangle not referencing no-such-file"
389         $CHECKSTAT -fa $DIR/$tdir/l-dangle ||
390                 error "$tdir/l-dangle not referencing non-existent file"
391         rm -f $DIR/$tdir/l-dangle
392         $CHECKSTAT -a $DIR/$tdir/l-dangle || error "$tdir/l-dangle not removed"
393 }
394 run_test 17b "symlinks: create, remove (dangling) =============="
395
396 test_17c() { # bug 3440 - don't save failed open RPC for replay
397         test_mkdir -p $DIR/$tdir
398         ln -s foo $DIR/$tdir/$tfile
399         cat $DIR/$tdir/$tfile && error "opened non-existent symlink" || true
400 }
401 run_test 17c "symlinks: open dangling (should return error) ===="
402
403 test_17d() {
404         test_mkdir -p $DIR/$tdir
405         ln -s foo $DIR/$tdir/$tfile
406         touch $DIR/$tdir/$tfile || error "creating to new symlink"
407 }
408 run_test 17d "symlinks: create dangling ========================"
409
410 test_17e() {
411         test_mkdir -p $DIR/$tdir
412         local foo=$DIR/$tdir/$tfile
413         ln -s $foo $foo || error "create symlink failed"
414         ls -l $foo || error "ls -l failed"
415         ls $foo && error "ls not failed" || true
416 }
417 run_test 17e "symlinks: create recursive symlink (should return error) ===="
418
419 test_17f() {
420         test_mkdir -p $DIR/$tdir
421         ln -s 1234567890/2234567890/3234567890/4234567890 $DIR/$tdir/111
422         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890 $DIR/$tdir/222
423         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890 $DIR/$tdir/333
424         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890 $DIR/$tdir/444
425         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890/c234567890/d234567890/f234567890 $DIR/$tdir/555
426         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890/c234567890/d234567890/f234567890/aaaaaaaaaa/bbbbbbbbbb/cccccccccc/dddddddddd/eeeeeeeeee/ffffffffff/ $DIR/$tdir/666
427         ls -l  $DIR/$tdir
428 }
429 run_test 17f "symlinks: long and very long symlink name ========================"
430
431 # str_repeat(S, N) generate a string that is string S repeated N times
432 str_repeat() {
433         local s=$1
434         local n=$2
435         local ret=''
436         while [ $((n -= 1)) -ge 0 ]; do
437                 ret=$ret$s
438         done
439         echo $ret
440 }
441
442 # Long symlinks and LU-2241
443 test_17g() {
444         test_mkdir -p $DIR/$tdir
445         local TESTS="59 60 61 4094 4095"
446
447         # Fix for inode size boundary in 2.1.4
448         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.1.4) ] &&
449                 TESTS="4094 4095"
450
451         # Patch not applied to 2.2 or 2.3 branches
452         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
453         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.3.55) ] &&
454                 TESTS="4094 4095"
455
456         # skip long symlink name for rhel6.5.
457         # rhel6.5 has a limit (PATH_MAX - sizeof(struct filename))
458         grep -q '6.5' /etc/redhat-release &>/dev/null &&
459                 TESTS="59 60 61 4062 4063"
460
461         for i in $TESTS; do
462                 local SYMNAME=$(str_repeat 'x' $i)
463                 ln -s $SYMNAME $DIR/$tdir/f$i || error "failed $i-char symlink"
464                 readlink $DIR/$tdir/f$i || error "failed $i-char readlink"
465         done
466 }
467 run_test 17g "symlinks: really long symlink name and inode boundaries"
468
469 test_17h() { #bug 17378
470         remote_mds_nodsh && skip "remote MDS with nodsh" && return
471         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
472         local mdt_idx
473         test_mkdir -p $DIR/$tdir
474         if [[ $MDSCOUNT -gt 1 ]]; then
475                 mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
476         else
477                 mdt_idx=0
478         fi
479         $SETSTRIPE -c -1 $DIR/$tdir
480 #define OBD_FAIL_MDS_LOV_PREP_CREATE 0x141
481         do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000141
482         touch $DIR/$tdir/$tfile || true
483 }
484 run_test 17h "create objects: lov_free_memmd() doesn't lbug"
485
486 test_17i() { #bug 20018
487         remote_mds_nodsh && skip "remote MDS with nodsh" && return
488         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
489         test_mkdir -c1 $DIR/$tdir
490         local foo=$DIR/$tdir/$tfile
491         local mdt_idx
492         if [[ $MDSCOUNT -gt 1 ]]; then
493                 mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
494         else
495                 mdt_idx=0
496         fi
497         ln -s $foo $foo || error "create symlink failed"
498 #define OBD_FAIL_MDS_READLINK_EPROTO     0x143
499         do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000143
500         ls -l $foo && error "error not detected"
501         return 0
502 }
503 run_test 17i "don't panic on short symlink"
504
505 test_17k() { #bug 22301
506         [[ -z "$(which rsync 2>/dev/null)" ]] &&
507                 skip "no rsync command" && return 0
508         rsync --help | grep -q xattr ||
509                 skip_env "$(rsync --version | head -n1) does not support xattrs"
510         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return 0
511         test_mkdir -p $DIR/$tdir
512         test_mkdir -p $DIR/$tdir.new
513         touch $DIR/$tdir/$tfile
514         ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
515         rsync -av -X $DIR/$tdir/ $DIR/$tdir.new ||
516                 error "rsync failed with xattrs enabled"
517 }
518 run_test 17k "symlinks: rsync with xattrs enabled ========================="
519
520 test_17l() { # LU-279
521         [[ -z "$(which getfattr 2>/dev/null)" ]] &&
522                 skip "no getfattr command" && return 0
523         test_mkdir -p $DIR/$tdir
524         touch $DIR/$tdir/$tfile
525         ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
526         for path in "$DIR/$tdir" "$DIR/$tdir/$tfile" "$DIR/$tdir/$tfile.lnk"; do
527                 # -h to not follow symlinks. -m '' to list all the xattrs.
528                 # grep to remove first line: '# file: $path'.
529                 for xattr in `getfattr -hm '' $path 2>/dev/null | grep -v '^#'`;
530                 do
531                         lgetxattr_size_check $path $xattr ||
532                                 error "lgetxattr_size_check $path $xattr failed"
533                 done
534         done
535 }
536 run_test 17l "Ensure lgetxattr's returned xattr size is consistent ========"
537
538 # LU-1540
539 test_17m() {
540         local short_sym="0123456789"
541         local WDIR=$DIR/${tdir}m
542         local mds_index
543         local devname
544         local cmd
545         local i
546         local rc=0
547
548         remote_mds_nodsh && skip "remote MDS with nodsh" && return
549         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
550         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.2.93) ] &&
551                 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks" && return
552
553         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
554                 skip "only for ldiskfs MDT" && return 0
555
556         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
557
558         test_mkdir -p $WDIR
559         long_sym=$short_sym
560         # create a long symlink file
561         for ((i = 0; i < 4; ++i)); do
562                 long_sym=${long_sym}${long_sym}
563         done
564
565         echo "create 512 short and long symlink files under $WDIR"
566         for ((i = 0; i < 256; ++i)); do
567                 ln -sf ${long_sym}"a5a5" $WDIR/long-$i
568                 ln -sf ${short_sym}"a5a5" $WDIR/short-$i
569         done
570
571         echo "erase them"
572         rm -f $WDIR/*
573         sync
574         wait_delete_completed
575
576         echo "recreate the 512 symlink files with a shorter string"
577         for ((i = 0; i < 512; ++i)); do
578                 # rewrite the symlink file with a shorter string
579                 ln -sf ${long_sym} $WDIR/long-$i
580                 ln -sf ${short_sym} $WDIR/short-$i
581         done
582
583         mds_index=$($LFS getstripe -M $WDIR)
584         mds_index=$((mds_index+1))
585         devname=$(mdsdevname $mds_index)
586         cmd="$E2FSCK -fnvd $devname"
587
588         echo "stop and checking mds${mds_index}: $cmd"
589         # e2fsck should not return error
590         stop mds${mds_index}
591         do_facet mds${mds_index} $cmd || rc=$?
592
593         start mds${mds_index} $devname $MDS_MOUNT_OPTS || error "start failed"
594         df $MOUNT > /dev/null 2>&1
595         [ $rc -ne 0 ] && error "e2fsck should not report error upon "\
596                 "short/long symlink MDT: rc=$rc"
597         return $rc
598 }
599 run_test 17m "run e2fsck against MDT which contains short/long symlink"
600
601 check_fs_consistency_17n() {
602         local mdt_index
603         local devname
604         local cmd
605         local rc=0
606
607         # create/unlink in 17n only change 2 MDTs(MDT1/MDT2),
608         # so it only check MDT1/MDT2 instead of all of MDTs.
609         for mdt_index in $(seq 1 2); do
610                 devname=$(mdsdevname $mdt_index)
611                 cmd="$E2FSCK -fnvd $devname"
612
613                 echo "stop and checking mds${mdt_index}: $cmd"
614                 # e2fsck should not return error
615                 stop mds${mdt_index}
616                 do_facet mds${mdt_index} $cmd || rc=$?
617
618                 start mds${mdt_index} $devname $MDS_MOUNT_OPTS ||
619                         error "mount mds${mdt_index} failed"
620                 df $MOUNT > /dev/null 2>&1
621                 [ $rc -ne 0 ] && break
622         done
623         return $rc
624 }
625
626 test_17n() {
627         local i
628
629         remote_mds_nodsh && skip "remote MDS with nodsh" && return
630         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
631         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.2.93) ] &&
632                 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks" && return
633
634         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
635                 skip "only for ldiskfs MDT" && return 0
636
637         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
638
639         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
640
641         test_mkdir $DIR/$tdir
642         for ((i=0; i<10; i++)); do
643                 $LFS mkdir -i1 -c2 $DIR/$tdir/remote_dir_${i} ||
644                         error "create remote dir error $i"
645                 createmany -o $DIR/$tdir/remote_dir_${i}/f 10 ||
646                         error "create files under remote dir failed $i"
647         done
648
649         check_fs_consistency_17n ||
650                 error "e2fsck report error after create files under remote dir"
651
652         for ((i = 0; i < 10; i++)); do
653                 rm -rf $DIR/$tdir/remote_dir_${i} ||
654                         error "destroy remote dir error $i"
655         done
656
657         check_fs_consistency_17n ||
658                 error "e2fsck report error after unlink files under remote dir"
659
660         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.50) ] &&
661                 skip "lustre < 2.4.50 does not support migrate mv " && return
662
663         for ((i = 0; i < 10; i++)); do
664                 mkdir -p $DIR/$tdir/remote_dir_${i}
665                 createmany -o $DIR/$tdir/remote_dir_${i}/f 10 ||
666                         error "create files under remote dir failed $i"
667                 $LFS migrate --mdt-index 1 $DIR/$tdir/remote_dir_${i} ||
668                         error "migrate remote dir error $i"
669         done
670         check_fs_consistency_17n || error "e2fsck report error after migration"
671
672         for ((i = 0; i < 10; i++)); do
673                 rm -rf $DIR/$tdir/remote_dir_${i} ||
674                         error "destroy remote dir error $i"
675         done
676
677         check_fs_consistency_17n || error "e2fsck report error after unlink"
678 }
679 run_test 17n "run e2fsck against master/slave MDT which contains remote dir"
680
681 test_17o() {
682         remote_mds_nodsh && skip "remote MDS with nodsh" && return
683         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.64) ] &&
684                 skip "Need MDS version at least 2.3.64" && return
685
686         local WDIR=$DIR/${tdir}o
687         local mdt_index
688         local rc=0
689
690         test_mkdir -p $WDIR
691         mdt_index=$($LFS getstripe -M $WDIR)
692         mdt_index=$((mdt_index+1))
693
694         touch $WDIR/$tfile
695
696         #fail mds will wait the failover finish then set
697         #following fail_loc to avoid interfer the recovery process.
698         fail mds${mdt_index}
699
700         #define OBD_FAIL_OSD_LMA_INCOMPAT 0x194
701         do_facet mds${mdt_index} lctl set_param fail_loc=0x194
702         ls -l $WDIR/$tfile && rc=1
703         do_facet mds${mdt_index} lctl set_param fail_loc=0
704         [[ $rc -ne 0 ]] && error "stat file should fail"
705         true
706 }
707 run_test 17o "stat file with incompat LMA feature"
708
709 test_18() {
710         touch $DIR/$tfile || error "Failed to touch $DIR/$tfile: $?"
711         ls $DIR || error "Failed to ls $DIR: $?"
712 }
713 run_test 18 "touch .../f ; ls ... =============================="
714
715 test_19a() {
716         touch $DIR/$tfile
717         ls -l $DIR
718         rm $DIR/$tfile
719         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
720 }
721 run_test 19a "touch .../f19 ; ls -l ... ; rm .../f19 ==========="
722
723 test_19b() {
724         ls -l $DIR/$tfile && error "ls -l $tfile failed"|| true
725 }
726 run_test 19b "ls -l .../f19 (should return error) =============="
727
728 test_19c() {
729         [ $RUNAS_ID -eq $UID ] &&
730                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
731         $RUNAS touch $DIR/$tfile && error "create non-root file failed" || true
732 }
733 run_test 19c "$RUNAS touch .../f19 (should return error) =="
734
735 test_19d() {
736         cat $DIR/f19 && error || true
737 }
738 run_test 19d "cat .../f19 (should return error) =============="
739
740 test_20() {
741         touch $DIR/$tfile
742         rm $DIR/$tfile
743         log "1 done"
744         touch $DIR/$tfile
745         rm $DIR/$tfile
746         log "2 done"
747         touch $DIR/$tfile
748         rm $DIR/$tfile
749         log "3 done"
750         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
751 }
752 run_test 20 "touch .../f ; ls -l ... ==========================="
753
754 test_21() {
755         test_mkdir -p $DIR/$tdir
756         [ -f $DIR/$tdir/dangle ] && rm -f $DIR/$tdir/dangle
757         ln -s dangle $DIR/$tdir/link
758         echo foo >> $DIR/$tdir/link
759         cat $DIR/$tdir/dangle
760         $CHECKSTAT -t link $DIR/$tdir/link || error "$tdir/link not a link"
761         $CHECKSTAT -f -t file $DIR/$tdir/link ||
762                 error "$tdir/link not linked to a file"
763 }
764 run_test 21 "write to dangling link ============================"
765
766 test_22() {
767         WDIR=$DIR/$tdir
768         test_mkdir -p $DIR/$tdir
769         chown $RUNAS_ID:$RUNAS_GID $WDIR
770         (cd $WDIR || error "cd $WDIR failed";
771         $RUNAS tar cf - /etc/hosts /etc/sysconfig/network | \
772         $RUNAS tar xf -)
773         ls -lR $WDIR/etc || error "ls -lR $WDIR/etc failed"
774         $CHECKSTAT -t dir $WDIR/etc || error "checkstat -t dir failed"
775         $CHECKSTAT -u \#$RUNAS_ID -g \#$RUNAS_GID $WDIR/etc || error "checkstat -u failed"
776 }
777 run_test 22 "unpack tar archive as non-root user ==============="
778
779 # was test_23
780 test_23a() {
781         test_mkdir -p $DIR/$tdir
782         local file=$DIR/$tdir/$tfile
783
784         openfile -f O_CREAT:O_EXCL $file || error "$file create failed"
785         openfile -f O_CREAT:O_EXCL $file &&
786                 error "$file recreate succeeded" || true
787 }
788 run_test 23a "O_CREAT|O_EXCL in subdir =========================="
789
790 test_23b() { # bug 18988
791         test_mkdir -p $DIR/$tdir
792         local file=$DIR/$tdir/$tfile
793
794         rm -f $file
795         echo foo > $file || error "write filed"
796         echo bar >> $file || error "append filed"
797         $CHECKSTAT -s 8 $file || error "wrong size"
798         rm $file
799 }
800 run_test 23b "O_APPEND check =========================="
801
802 # rename sanity
803 test_24a() {
804         echo '-- same directory rename'
805         test_mkdir $DIR/$tdir
806         touch $DIR/$tdir/$tfile.1
807         mv $DIR/$tdir/$tfile.1 $DIR/$tdir/$tfile.2
808         $CHECKSTAT -t file $DIR/$tdir/$tfile.2 || error "$tfile.2 not a file"
809 }
810 run_test 24a "rename file to non-existent target"
811
812 test_24b() {
813         test_mkdir $DIR/$tdir
814         touch $DIR/$tdir/$tfile.{1,2}
815         mv $DIR/$tdir/$tfile.1 $DIR/$tdir/$tfile.2
816         $CHECKSTAT -a $DIR/$tdir/$tfile.1 || error "$tfile.1 exists"
817         $CHECKSTAT -t file $DIR/$tdir/$tfile.2 || error "$tfile.2 not a file"
818 }
819 run_test 24b "rename file to existing target"
820
821 test_24c() {
822         test_mkdir $DIR/$tdir
823         test_mkdir $DIR/$tdir/d$testnum.1
824         mv $DIR/$tdir/d$testnum.1 $DIR/$tdir/d$testnum.2
825         $CHECKSTAT -a $DIR/$tdir/d$testnum.1 || error "d$testnum.1 exists"
826         $CHECKSTAT -t dir $DIR/$tdir/d$testnum.2 || error "d$testnum.2 not dir"
827 }
828 run_test 24c "rename directory to non-existent target"
829
830 test_24d() {
831         test_mkdir -c1 $DIR/$tdir
832         test_mkdir -c1 $DIR/$tdir/d$testnum.1
833         test_mkdir -c1 $DIR/$tdir/d$testnum.2
834         mrename $DIR/$tdir/d$testnum.1 $DIR/$tdir/d$testnum.2
835         $CHECKSTAT -a $DIR/$tdir/d$testnum.1 || error "d$testnum.1 exists"
836         $CHECKSTAT -t dir $DIR/$tdir/d$testnum.2 || error "d$testnum.2 not dir"
837 }
838 run_test 24d "rename directory to existing target"
839
840 test_24e() {
841         echo '-- cross directory renames --'
842         test_mkdir $DIR/R5a
843         test_mkdir $DIR/R5b
844         touch $DIR/R5a/f
845         mv $DIR/R5a/f $DIR/R5b/g
846         $CHECKSTAT -a $DIR/R5a/f || error
847         $CHECKSTAT -t file $DIR/R5b/g || error
848 }
849 run_test 24e "touch .../R5a/f; rename .../R5a/f .../R5b/g ======"
850
851 test_24f() {
852         test_mkdir $DIR/R6a
853         test_mkdir $DIR/R6b
854         touch $DIR/R6a/f $DIR/R6b/g
855         mv $DIR/R6a/f $DIR/R6b/g
856         $CHECKSTAT -a $DIR/R6a/f || error
857         $CHECKSTAT -t file $DIR/R6b/g || error
858 }
859 run_test 24f "touch .../R6a/f R6b/g; mv .../R6a/f .../R6b/g ===="
860
861 test_24g() {
862         test_mkdir $DIR/R7a
863         test_mkdir $DIR/R7b
864         test_mkdir $DIR/R7a/d
865         mv $DIR/R7a/d $DIR/R7b/e
866         $CHECKSTAT -a $DIR/R7a/d || error
867         $CHECKSTAT -t dir $DIR/R7b/e || error
868 }
869 run_test 24g "mkdir .../R7{a,b}/d; mv .../R7a/d .../R7b/e ======"
870
871 test_24h() {
872         test_mkdir -c1 $DIR/R8a
873         test_mkdir -c1 $DIR/R8b
874         test_mkdir -c1 $DIR/R8a/d
875         test_mkdir -c1 $DIR/R8b/e
876         mrename $DIR/R8a/d $DIR/R8b/e
877         $CHECKSTAT -a $DIR/R8a/d || error
878         $CHECKSTAT -t dir $DIR/R8b/e || error
879 }
880 run_test 24h "mkdir .../R8{a,b}/{d,e}; rename .../R8a/d .../R8b/e"
881
882 test_24i() {
883         echo "-- rename error cases"
884         test_mkdir $DIR/R9
885         test_mkdir $DIR/R9/a
886         touch $DIR/R9/f
887         mrename $DIR/R9/f $DIR/R9/a
888         $CHECKSTAT -t file $DIR/R9/f || error
889         $CHECKSTAT -t dir  $DIR/R9/a || error
890         $CHECKSTAT -a $DIR/R9/a/f || error
891 }
892 run_test 24i "rename file to dir error: touch f ; mkdir a ; rename f a"
893
894 test_24j() {
895         test_mkdir $DIR/R10
896         mrename $DIR/R10/f $DIR/R10/g
897         $CHECKSTAT -t dir $DIR/R10 || error
898         $CHECKSTAT -a $DIR/R10/f || error
899         $CHECKSTAT -a $DIR/R10/g || error
900 }
901 run_test 24j "source does not exist ============================"
902
903 test_24k() {
904         test_mkdir $DIR/R11a
905         test_mkdir $DIR/R11a/d
906         touch $DIR/R11a/f
907         mv $DIR/R11a/f $DIR/R11a/d
908         $CHECKSTAT -a $DIR/R11a/f || error
909         $CHECKSTAT -t file $DIR/R11a/d/f || error
910 }
911 run_test 24k "touch .../R11a/f; mv .../R11a/f .../R11a/d ======="
912
913 # bug 2429 - rename foo foo foo creates invalid file
914 test_24l() {
915         f="$DIR/f24l"
916         $MULTIOP $f OcNs || error
917 }
918 run_test 24l "Renaming a file to itself ========================"
919
920 test_24m() {
921         f="$DIR/f24m"
922         $MULTIOP $f OcLN ${f}2 ${f}2 || error "link ${f}2 ${f}2 failed"
923         # on ext3 this does not remove either the source or target files
924         # though the "expected" operation would be to remove the source
925         $CHECKSTAT -t file ${f} || error "${f} missing"
926         $CHECKSTAT -t file ${f}2 || error "${f}2 missing"
927 }
928 run_test 24m "Renaming a file to a hard link to itself ========="
929
930 test_24n() {
931     f="$DIR/f24n"
932     # this stats the old file after it was renamed, so it should fail
933     touch ${f}
934     $CHECKSTAT ${f}
935     mv ${f} ${f}.rename
936     $CHECKSTAT ${f}.rename
937     $CHECKSTAT -a ${f}
938 }
939 run_test 24n "Statting the old file after renaming (Posix rename 2)"
940
941 test_24o() {
942         test_mkdir -p $DIR/d24o
943         rename_many -s random -v -n 10 $DIR/d24o
944 }
945 run_test 24o "rename of files during htree split ==============="
946
947 test_24p() {
948         test_mkdir $DIR/R12a
949         test_mkdir $DIR/R12b
950         DIRINO=`ls -lid $DIR/R12a | awk '{ print $1 }'`
951         mrename $DIR/R12a $DIR/R12b
952         $CHECKSTAT -a $DIR/R12a || error
953         $CHECKSTAT -t dir $DIR/R12b || error
954         DIRINO2=`ls -lid $DIR/R12b | awk '{ print $1 }'`
955         [ "$DIRINO" = "$DIRINO2" ] || error "R12a $DIRINO != R12b $DIRINO2"
956 }
957 run_test 24p "mkdir .../R12{a,b}; rename .../R12a .../R12b"
958
959 cleanup_multiop_pause() {
960         trap 0
961         kill -USR1 $MULTIPID
962 }
963
964 test_24q() {
965         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
966         test_mkdir $DIR/R13a
967         test_mkdir $DIR/R13b
968         local DIRINO=$(ls -lid $DIR/R13a | awk '{ print $1 }')
969         multiop_bg_pause $DIR/R13b D_c || error "multiop failed to start"
970         MULTIPID=$!
971
972         trap cleanup_multiop_pause EXIT
973         mrename $DIR/R13a $DIR/R13b
974         $CHECKSTAT -a $DIR/R13a || error "R13a still exists"
975         $CHECKSTAT -t dir $DIR/R13b || error "R13b does not exist"
976         local DIRINO2=$(ls -lid $DIR/R13b | awk '{ print $1 }')
977         [ "$DIRINO" = "$DIRINO2" ] || error "R13a $DIRINO != R13b $DIRINO2"
978         cleanup_multiop_pause
979         wait $MULTIPID || error "multiop close failed"
980 }
981 run_test 24q "mkdir .../R13{a,b}; open R13b rename R13a R13b ==="
982
983 test_24r() { #bug 3789
984         test_mkdir $DIR/R14a
985         test_mkdir $DIR/R14a/b
986         mrename $DIR/R14a $DIR/R14a/b && error "rename to subdir worked!"
987         $CHECKSTAT -t dir $DIR/R14a || error "$DIR/R14a missing"
988         $CHECKSTAT -t dir $DIR/R14a/b || error "$DIR/R14a/b missing"
989 }
990 run_test 24r "mkdir .../R14a/b; rename .../R14a .../R14a/b ====="
991
992 test_24s() {
993         test_mkdir $DIR/R15a
994         test_mkdir $DIR/R15a/b
995         test_mkdir $DIR/R15a/b/c
996         mrename $DIR/R15a $DIR/R15a/b/c && error "rename to sub-subdir worked!"
997         $CHECKSTAT -t dir $DIR/R15a || error "$DIR/R15a missing"
998         $CHECKSTAT -t dir $DIR/R15a/b/c || error "$DIR/R15a/b/c missing"
999 }
1000 run_test 24s "mkdir .../R15a/b/c; rename .../R15a .../R15a/b/c ="
1001 test_24t() {
1002         test_mkdir $DIR/R16a
1003         test_mkdir $DIR/R16a/b
1004         test_mkdir $DIR/R16a/b/c
1005         mrename $DIR/R16a/b/c $DIR/R16a && error "rename to sub-subdir worked!"
1006         $CHECKSTAT -t dir $DIR/R16a || error "$DIR/R16a missing"
1007         $CHECKSTAT -t dir $DIR/R16a/b/c || error "$DIR/R16a/b/c missing"
1008 }
1009 run_test 24t "mkdir .../R16a/b/c; rename .../R16a/b/c .../R16a ="
1010
1011 test_24u() { # bug12192
1012         $MULTIOP $DIR/$tfile C2w$((2048 * 1024))c || error
1013         $CHECKSTAT -s $((2048 * 1024)) $DIR/$tfile || error "wrong file size"
1014 }
1015 run_test 24u "create stripe file"
1016
1017 page_size() {
1018         getconf PAGE_SIZE
1019 }
1020
1021 simple_cleanup_common() {
1022         trap 0
1023         rm -rf $DIR/$tdir
1024         wait_delete_completed
1025 }
1026
1027 max_pages_per_rpc() {
1028         $LCTL get_param -n mdc.*.max_pages_per_rpc | head -n1
1029 }
1030
1031 test_24v() {
1032         local NRFILES=100000
1033         local FREE_INODES=$(mdt_free_inodes 0)
1034         [[ $FREE_INODES -lt $NRFILES ]] &&
1035                 skip "not enough free inodes $FREE_INODES required $NRFILES" &&
1036                 return
1037
1038         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1039         trap simple_cleanup_common EXIT
1040
1041         # Performance issue on ZFS see LU-4072 (c.f. LU-2887)
1042         [ $(facet_fstype $SINGLEMDS) = "zfs" ] && NRFILES=10000
1043
1044         test_mkdir -p $DIR/$tdir
1045         createmany -m $DIR/$tdir/$tfile $NRFILES
1046
1047         cancel_lru_locks mdc
1048         lctl set_param mdc.*.stats clear
1049
1050         ls $DIR/$tdir >/dev/null || error "error in listing large dir"
1051
1052         # LU-5 large readdir
1053         # DIRENT_SIZE = 32 bytes for sizeof(struct lu_dirent) +
1054         #               8 bytes for name(filename is mostly 5 in this test) +
1055         #               8 bytes for luda_type
1056         # take into account of overhead in lu_dirpage header and end mark in
1057         # each page, plus one in RPC_NUM calculation.
1058         DIRENT_SIZE=48
1059         RPC_SIZE=$(($(max_pages_per_rpc) * $(page_size)))
1060         RPC_NUM=$(((NRFILES * DIRENT_SIZE + RPC_SIZE - 1) / RPC_SIZE + 1))
1061         mds_readpage=$(lctl get_param mdc.*MDT0000*.stats |
1062                                 awk '/^mds_readpage/ {print $2}')
1063         [[ $mds_readpage -gt $RPC_NUM ]] &&
1064                 error "large readdir doesn't take effect"
1065
1066         simple_cleanup_common
1067 }
1068 run_test 24v "list directory with large files (handle hash collision, bug: 17560)"
1069
1070 test_24w() { # bug21506
1071         SZ1=234852
1072         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=4096 || return 1
1073         dd if=/dev/zero bs=$SZ1 count=1 >> $DIR/$tfile || return 2
1074         dd if=$DIR/$tfile of=$DIR/${tfile}_left bs=1M skip=4097 || return 3
1075         SZ2=`ls -l $DIR/${tfile}_left | awk '{print $5}'`
1076         [[ "$SZ1" -eq "$SZ2" ]] ||
1077                 error "Error reading at the end of the file $tfile"
1078 }
1079 run_test 24w "Reading a file larger than 4Gb"
1080
1081 test_24x() {
1082         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
1083         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1084         local MDTIDX=1
1085         local remote_dir=$DIR/$tdir/remote_dir
1086
1087         test_mkdir -p $DIR/$tdir
1088         $LFS mkdir -i $MDTIDX $remote_dir ||
1089                 error "create remote directory failed"
1090
1091         test_mkdir -p $DIR/$tdir/src_dir
1092         touch $DIR/$tdir/src_file
1093         test_mkdir -p $remote_dir/tgt_dir
1094         touch $remote_dir/tgt_file
1095
1096         mrename $DIR/$tdir/src_dir $remote_dir/tgt_dir ||
1097                 error "rename dir cross MDT failed!"
1098
1099         mrename $DIR/$tdir/src_file $remote_dir/tgt_file ||
1100                 error "rename file cross MDT failed!"
1101
1102         touch $DIR/$tdir/ln_file
1103         ln $DIR/$tdir/ln_file $remote_dir/ln_name ||
1104                 error "ln file cross MDT failed"
1105
1106         rm -rf $DIR/$tdir || error "Can not delete directories"
1107 }
1108 run_test 24x "cross MDT rename/link"
1109
1110 test_24y() {
1111         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
1112         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1113         local MDTIDX=1
1114         local remote_dir=$DIR/$tdir/remote_dir
1115
1116         test_mkdir -p $DIR/$tdir
1117         $LFS mkdir -i $MDTIDX $remote_dir ||
1118                    error "create remote directory failed"
1119
1120         test_mkdir -p $remote_dir/src_dir
1121         touch $remote_dir/src_file
1122         test_mkdir -p $remote_dir/tgt_dir
1123         touch $remote_dir/tgt_file
1124
1125         mrename $remote_dir/src_dir $remote_dir/tgt_dir ||
1126                 error "rename subdir in the same remote dir failed!"
1127
1128         mrename $remote_dir/src_file $remote_dir/tgt_file ||
1129                 error "rename files in the same remote dir failed!"
1130
1131         ln $remote_dir/tgt_file $remote_dir/tgt_file1 ||
1132                 error "link files in the same remote dir failed!"
1133
1134         rm -rf $DIR/$tdir || error "Can not delete directories"
1135 }
1136 run_test 24y "rename/link on the same dir should succeed"
1137
1138 test_24A() { # LU-3182
1139         local NFILES=5000
1140
1141         rm -rf $DIR/$tdir
1142         test_mkdir -p $DIR/$tdir
1143         createmany -m $DIR/$tdir/$tfile $NFILES
1144         local t=$(ls $DIR/$tdir | wc -l)
1145         local u=$(ls $DIR/$tdir | sort -u | wc -l)
1146         local v=$(ls -ai $DIR/$tdir | sort -u | wc -l)
1147         if [ $t -ne $NFILES -o $u -ne $NFILES -o $v -ne $((NFILES + 2)) ] ; then
1148                 error "Expected $NFILES files, got $t ($u unique $v .&..)"
1149         fi
1150
1151         rm -rf $DIR/$tdir || error "Can not delete directories"
1152 }
1153 run_test 24A "readdir() returns correct number of entries."
1154
1155 test_24B() { # LU-4805
1156         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1157         local count
1158
1159         test_mkdir $DIR/$tdir
1160         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
1161                 error "create striped dir failed"
1162
1163         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1164         [ $count -eq 2 ] || error "Expected 2, got $count"
1165
1166         touch $DIR/$tdir/striped_dir/a
1167
1168         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1169         [ $count -eq 3 ] || error "Expected 3, got $count"
1170
1171         touch $DIR/$tdir/striped_dir/.f
1172
1173         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1174         [ $count -eq 4 ] || error "Expected 4, got $count"
1175
1176         rm -rf $DIR/$tdir || error "Can not delete directories"
1177 }
1178 run_test 24B "readdir for striped dir return correct number of entries"
1179
1180 test_24C() {
1181         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1182
1183         mkdir $DIR/$tdir
1184         mkdir $DIR/$tdir/d0
1185         mkdir $DIR/$tdir/d1
1186
1187         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/d0/striped_dir ||
1188                 error "create striped dir failed"
1189
1190         cd $DIR/$tdir/d0/striped_dir
1191
1192         local d0_ino=$(ls -i -l -a $DIR/$tdir | grep "d0" | awk '{print $1}')
1193         local d1_ino=$(ls -i -l -a $DIR/$tdir | grep "d1" | awk '{print $1}')
1194         local parent_ino=$(ls -i -l -a | grep "\.\." | awk '{print $1}')
1195
1196         [ "$d0_ino" = "$parent_ino" ] ||
1197                 error ".. wrong, expect $d0_ino, get $parent_ino"
1198
1199         mv $DIR/$tdir/d0/striped_dir $DIR/$tdir/d1/ ||
1200                 error "mv striped dir failed"
1201
1202         parent_ino=$(ls -i -l -a | grep "\.\." | awk '{print $1}')
1203
1204         [ "$d1_ino" = "$parent_ino" ] ||
1205                 error ".. wrong after mv, expect $d1_ino, get $parent_ino"
1206 }
1207 run_test 24C "check .. in striped dir"
1208
1209 test_24D() { # LU-6101
1210         local NFILES=50000
1211
1212         rm -rf $DIR/$tdir
1213         mkdir -p $DIR/$tdir
1214         createmany -m $DIR/$tdir/$tfile $NFILES
1215         local t=$(ls $DIR/$tdir | wc -l)
1216         local u=$(ls $DIR/$tdir | sort -u | wc -l)
1217         local v=$(ls -ai $DIR/$tdir | sort -u | wc -l)
1218         if [ $t -ne $NFILES -o $u -ne $NFILES -o $v -ne $((NFILES + 2)) ] ; then
1219                 error "Expected $NFILES files, got $t ($u unique $v .&..)"
1220         fi
1221
1222         rm -rf $DIR/$tdir || error "Can not delete directories"
1223 }
1224 run_test 24D "readdir() returns correct number of entries after cursor reload"
1225
1226 test_24E() {
1227         [[ $MDSCOUNT -lt 4 ]] && skip "needs >= 4 MDTs" && return
1228         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1229
1230         mkdir -p $DIR/$tdir
1231         mkdir $DIR/$tdir/src_dir
1232         $LFS mkdir -i 1 $DIR/$tdir/src_dir/src_child ||
1233                 error "create remote source failed"
1234
1235         touch $DIR/$tdir/src_dir/src_child/a
1236
1237         $LFS mkdir -i 2 $DIR/$tdir/tgt_dir ||
1238                 error "create remote target dir failed"
1239
1240         $LFS mkdir -i 3 $DIR/$tdir/tgt_dir/tgt_child ||
1241                 error "create remote target child failed"
1242
1243         mrename $DIR/$tdir/src_dir/src_child $DIR/$tdir/tgt_dir/tgt_child ||
1244                 error "rename dir cross MDT failed!"
1245
1246         find $DIR/$tdir
1247
1248         $CHECKSTAT -t dir $DIR/$tdir/src_dir/src_child &&
1249                 error "src_child still exists after rename"
1250
1251         $CHECKSTAT -t file $DIR/$tdir/tgt_dir/tgt_child/a ||
1252                 error "missing file(a) after rename"
1253
1254         rm -rf $DIR/$tdir || error "Can not delete directories"
1255 }
1256 run_test 24E "cross MDT rename/link"
1257
1258 test_25a() {
1259         echo '== symlink sanity ============================================='
1260
1261         test_mkdir $DIR/d25
1262         ln -s d25 $DIR/s25
1263         touch $DIR/s25/foo || error
1264 }
1265 run_test 25a "create file in symlinked directory ==============="
1266
1267 test_25b() {
1268         [ ! -d $DIR/d25 ] && test_25a
1269         $CHECKSTAT -t file $DIR/s25/foo || error
1270 }
1271 run_test 25b "lookup file in symlinked directory ==============="
1272
1273 test_26a() {
1274         test_mkdir $DIR/d26
1275         test_mkdir $DIR/d26/d26-2
1276         ln -s d26/d26-2 $DIR/s26
1277         touch $DIR/s26/foo || error
1278 }
1279 run_test 26a "multiple component symlink ======================="
1280
1281 test_26b() {
1282         test_mkdir -p $DIR/d26b/d26-2
1283         ln -s d26b/d26-2/foo $DIR/s26-2
1284         touch $DIR/s26-2 || error
1285 }
1286 run_test 26b "multiple component symlink at end of lookup ======"
1287
1288 test_26c() {
1289         test_mkdir $DIR/d26.2
1290         touch $DIR/d26.2/foo
1291         ln -s d26.2 $DIR/s26.2-1
1292         ln -s s26.2-1 $DIR/s26.2-2
1293         ln -s s26.2-2 $DIR/s26.2-3
1294         chmod 0666 $DIR/s26.2-3/foo
1295 }
1296 run_test 26c "chain of symlinks ================================"
1297
1298 # recursive symlinks (bug 439)
1299 test_26d() {
1300         ln -s d26-3/foo $DIR/d26-3
1301 }
1302 run_test 26d "create multiple component recursive symlink ======"
1303
1304 test_26e() {
1305         [ ! -h $DIR/d26-3 ] && test_26d
1306         rm $DIR/d26-3
1307 }
1308 run_test 26e "unlink multiple component recursive symlink ======"
1309
1310 # recursive symlinks (bug 7022)
1311 test_26f() {
1312         test_mkdir -p $DIR/$tdir
1313         test_mkdir $DIR/$tdir/$tfile   || error "mkdir $DIR/$tdir/$tfile failed"
1314         cd $DIR/$tdir/$tfile           || error "cd $DIR/$tdir/$tfile failed"
1315         test_mkdir -p lndir/bar1      || error "mkdir lndir/bar1 failed"
1316         test_mkdir $DIR/$tdir/$tfile/$tfile   || error "mkdir $tfile failed"
1317         cd $tfile                || error "cd $tfile failed"
1318         ln -s .. dotdot          || error "ln dotdot failed"
1319         ln -s dotdot/lndir lndir || error "ln lndir failed"
1320         cd $DIR/$tdir                 || error "cd $DIR/$tdir failed"
1321         output=`ls $tfile/$tfile/lndir/bar1`
1322         [ "$output" = bar1 ] && error "unexpected output"
1323         rm -r $tfile             || error "rm $tfile failed"
1324         $CHECKSTAT -a $DIR/$tfile || error "$tfile not gone"
1325 }
1326 run_test 26f "rm -r of a directory which has recursive symlink ="
1327
1328 test_27a() {
1329         echo '== stripe sanity =============================================='
1330         test_mkdir -p $DIR/d27 || error "mkdir failed"
1331         $GETSTRIPE $DIR/d27
1332         $SETSTRIPE -c 1 $DIR/d27/f0 || error "setstripe failed"
1333         $CHECKSTAT -t file $DIR/d27/f0 || error "checkstat failed"
1334         log "== test_27a: write to one stripe file ========================="
1335         cp /etc/hosts $DIR/d27/f0 || error
1336 }
1337 run_test 27a "one stripe file =================================="
1338
1339 test_27b() {
1340         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping 2-stripe test" && return
1341         test_mkdir -p $DIR/d27
1342         $SETSTRIPE -c 2 $DIR/d27/f01 || error "setstripe failed"
1343         $GETSTRIPE -c $DIR/d27/f01
1344         [ $($GETSTRIPE -c $DIR/d27/f01) -eq 2 ] ||
1345                 error "two-stripe file doesn't have two stripes"
1346
1347         dd if=/dev/zero of=$DIR/d27/f01 bs=4k count=4 || error "dd failed"
1348 }
1349 run_test 27b "create and write to two stripe file"
1350
1351 test_27d() {
1352         test_mkdir -p $DIR/d27
1353         $SETSTRIPE -c 0 -i -1 -S 0 $DIR/d27/fdef || error "setstripe failed"
1354         $CHECKSTAT -t file $DIR/d27/fdef || error "checkstat failed"
1355         dd if=/dev/zero of=$DIR/d27/fdef bs=4k count=4 || error
1356 }
1357 run_test 27d "create file with default settings ================"
1358
1359 test_27e() {
1360         # LU-5839 adds check for existed layout before setting it
1361         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.56) ]] &&
1362                 skip "Need MDS version at least 2.7.56" && return
1363         test_mkdir -p $DIR/d27
1364         $SETSTRIPE -c 2 $DIR/d27/f12 || error "setstripe failed"
1365         $SETSTRIPE -c 2 $DIR/d27/f12 && error "setstripe succeeded twice"
1366         $CHECKSTAT -t file $DIR/d27/f12 || error "checkstat failed"
1367 }
1368 run_test 27e "setstripe existing file (should return error) ======"
1369
1370 test_27f() {
1371         test_mkdir $DIR/$tdir
1372         $SETSTRIPE -S 100 -i 0 -c 1 $DIR/$tdir/$tfile &&
1373                 error "$SETSTRIPE $DIR/$tdir/$tfile failed"
1374         $CHECKSTAT -t file $DIR/$tdir/$tfile &&
1375                 error "$CHECKSTAT -t file $DIR/$tdir/$tfile should fail"
1376         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
1377         $GETSTRIPE $DIR/$tdir/$tfile || error "$GETSTRIPE failed"
1378 }
1379 run_test 27f "setstripe with bad stripe size (should return error)"
1380
1381 test_27g() {
1382         test_mkdir -p $DIR/d27
1383         $MCREATE $DIR/d27/fnone || error "mcreate failed"
1384         $GETSTRIPE $DIR/d27/fnone 2>&1 | grep "no stripe info" ||
1385                 error "$DIR/d27/fnone has object"
1386 }
1387 run_test 27g "$GETSTRIPE with no objects"
1388
1389 test_27i() {
1390         test_mkdir $DIR/$tdir
1391         touch $DIR/$tdir/$tfile || error "touch failed"
1392         [[ $($GETSTRIPE -c $DIR/$tdir/$tfile) -gt 0 ]] ||
1393                 error "missing objects"
1394 }
1395 run_test 27i "$GETSTRIPE with some objects"
1396
1397 test_27j() {
1398         test_mkdir -p $DIR/d27
1399         $SETSTRIPE -i $OSTCOUNT $DIR/d27/f27j && error "setstripe failed"||true
1400 }
1401 run_test 27j "setstripe with bad stripe offset (should return error)"
1402
1403 test_27k() { # bug 2844
1404         test_mkdir -p $DIR/d27
1405         FILE=$DIR/d27/f27k
1406         LL_MAX_BLKSIZE=$((4 * 1024 * 1024))
1407         [ ! -d $DIR/d27 ] && test_mkdir -p $DIR d27
1408         $SETSTRIPE -S 67108864 $FILE || error "setstripe failed"
1409         BLKSIZE=`stat $FILE | awk '/IO Block:/ { print $7 }'`
1410         [ $BLKSIZE -le $LL_MAX_BLKSIZE ] || error "1:$BLKSIZE > $LL_MAX_BLKSIZE"
1411         dd if=/dev/zero of=$FILE bs=4k count=1
1412         BLKSIZE=`stat $FILE | awk '/IO Block:/ { print $7 }'`
1413         [ $BLKSIZE -le $LL_MAX_BLKSIZE ] || error "2:$BLKSIZE > $LL_MAX_BLKSIZE"
1414 }
1415 run_test 27k "limit i_blksize for broken user apps ============="
1416
1417 test_27l() {
1418         test_mkdir -p $DIR/d27
1419         mcreate $DIR/f27l || error "creating file"
1420         $RUNAS $SETSTRIPE -c 1 $DIR/f27l && \
1421                 error "setstripe should have failed" || true
1422 }
1423 run_test 27l "check setstripe permissions (should return error)"
1424
1425 test_27m() {
1426         [[ $OSTCOUNT -lt 2 ]] && skip_env "$OSTCOUNT < 2 OSTs -- skipping" &&
1427                 return
1428         if [[ $ORIGFREE -gt $MAXFREE ]]; then
1429                 skip "$ORIGFREE > $MAXFREE skipping out-of-space test on OST0"
1430                 return
1431         fi
1432         trap simple_cleanup_common EXIT
1433         test_mkdir -p $DIR/$tdir
1434         $SETSTRIPE -i 0 -c 1 $DIR/$tdir/f27m_1
1435         dd if=/dev/zero of=$DIR/$tdir/f27m_1 bs=1024 count=$MAXFREE &&
1436                 error "dd should fill OST0"
1437         i=2
1438         while $SETSTRIPE -i 0 -c 1 $DIR/$tdir/f27m_$i; do
1439                 i=$((i + 1))
1440                 [ $i -gt 256 ] && break
1441         done
1442         i=$((i + 1))
1443         touch $DIR/$tdir/f27m_$i
1444         [ `$GETSTRIPE $DIR/$tdir/f27m_$i | grep -A 10 obdidx | awk '{print $1}'| grep -w "0"` ] &&
1445                 error "OST0 was full but new created file still use it"
1446         i=$((i + 1))
1447         touch $DIR/$tdir/f27m_$i
1448         [ `$GETSTRIPE $DIR/$tdir/f27m_$i | grep -A 10 obdidx | awk '{print $1}'| grep -w "0"` ] &&
1449                 error "OST0 was full but new created file still use it"
1450         simple_cleanup_common
1451 }
1452 run_test 27m "create file while OST0 was full =================="
1453
1454 sleep_maxage() {
1455         local DELAY=$(do_facet $SINGLEMDS lctl get_param -n lov.*.qos_maxage | head -n 1 | awk '{print $1 * 2}')
1456         sleep $DELAY
1457 }
1458
1459 # OSCs keep a NOSPC flag that will be reset after ~5s (qos_maxage)
1460 # if the OST isn't full anymore.
1461 reset_enospc() {
1462         local OSTIDX=${1:-""}
1463
1464         local list=$(comma_list $(osts_nodes))
1465         [ "$OSTIDX" ] && list=$(facet_host ost$((OSTIDX + 1)))
1466
1467         do_nodes $list lctl set_param fail_loc=0
1468         sync    # initiate all OST_DESTROYs from MDS to OST
1469         sleep_maxage
1470 }
1471
1472 exhaust_precreations() {
1473         local OSTIDX=$1
1474         local FAILLOC=$2
1475         local FAILIDX=${3:-$OSTIDX}
1476         local ofacet=ost$((OSTIDX + 1))
1477
1478         test_mkdir -p -c1 $DIR/$tdir
1479         local mdtidx=$($LFS getstripe -M $DIR/$tdir)
1480         local mfacet=mds$((mdtidx + 1))
1481         echo OSTIDX=$OSTIDX MDTIDX=$mdtidx
1482
1483         local OST=$(ostname_from_index $OSTIDX)
1484
1485         # on the mdt's osc
1486         local mdtosc_proc1=$(get_mdtosc_proc_path $mfacet $OST)
1487         local last_id=$(do_facet $mfacet lctl get_param -n \
1488                         osc.$mdtosc_proc1.prealloc_last_id)
1489         local next_id=$(do_facet $mfacet lctl get_param -n \
1490                         osc.$mdtosc_proc1.prealloc_next_id)
1491
1492         local mdtosc_proc2=$(get_mdtosc_proc_path $mfacet)
1493         do_facet $mfacet lctl get_param osc.$mdtosc_proc2.prealloc*
1494
1495         test_mkdir -p $DIR/$tdir/${OST}
1496         $SETSTRIPE -i $OSTIDX -c 1 $DIR/$tdir/${OST}
1497 #define OBD_FAIL_OST_ENOSPC              0x215
1498         do_facet $ofacet lctl set_param fail_val=$FAILIDX fail_loc=0x215
1499         echo "Creating to objid $last_id on ost $OST..."
1500         createmany -o $DIR/$tdir/${OST}/f $next_id $((last_id - next_id + 2))
1501         do_facet $mfacet lctl get_param osc.$mdtosc_proc2.prealloc*
1502         do_facet $ofacet lctl set_param fail_loc=$FAILLOC
1503         sleep_maxage
1504 }
1505
1506 exhaust_all_precreations() {
1507         local i
1508         for (( i=0; i < OSTCOUNT; i++ )) ; do
1509                 exhaust_precreations $i $1 -1
1510         done
1511 }
1512
1513 test_27n() {
1514         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1515         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1516         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1517         remote_ost_nodsh && skip "remote OST with nodsh" && return
1518
1519         reset_enospc
1520         rm -f $DIR/$tdir/$tfile
1521         exhaust_precreations 0 0x80000215
1522         $SETSTRIPE -c -1 $DIR/$tdir
1523         touch $DIR/$tdir/$tfile || error
1524         $GETSTRIPE $DIR/$tdir/$tfile
1525         reset_enospc
1526 }
1527 run_test 27n "create file with some full OSTs =================="
1528
1529 test_27o() {
1530         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1531         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1532         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1533         remote_ost_nodsh && skip "remote OST with nodsh" && return
1534
1535         reset_enospc
1536         rm -f $DIR/$tdir/$tfile
1537         exhaust_all_precreations 0x215
1538
1539         touch $DIR/$tdir/$tfile && error "able to create $DIR/$tdir/$tfile"
1540
1541         reset_enospc
1542         rm -rf $DIR/$tdir/*
1543 }
1544 run_test 27o "create file with all full OSTs (should error) ===="
1545
1546 test_27p() {
1547         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1548         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1549         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1550         remote_ost_nodsh && skip "remote OST with nodsh" && return
1551
1552         reset_enospc
1553         rm -f $DIR/$tdir/$tfile
1554         test_mkdir -p $DIR/$tdir
1555
1556         $MCREATE $DIR/$tdir/$tfile || error "mcreate failed"
1557         $TRUNCATE $DIR/$tdir/$tfile 80000000 || error "truncate failed"
1558         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1559
1560         exhaust_precreations 0 0x80000215
1561         echo foo >> $DIR/$tdir/$tfile || error "append failed"
1562         $CHECKSTAT -s 80000004 $DIR/$tdir/$tfile || error "checkstat failed"
1563         $GETSTRIPE $DIR/$tdir/$tfile
1564
1565         reset_enospc
1566 }
1567 run_test 27p "append to a truncated file with some full OSTs ==="
1568
1569 test_27q() {
1570         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1571         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1572         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1573         remote_ost_nodsh && skip "remote OST with nodsh" && return
1574
1575         reset_enospc
1576         rm -f $DIR/$tdir/$tfile
1577
1578         test_mkdir -p $DIR/$tdir
1579         $MCREATE $DIR/$tdir/$tfile || error "mcreate $DIR/$tdir/$tfile failed"
1580         $TRUNCATE $DIR/$tdir/$tfile 80000000 ||error "truncate $DIR/$tdir/$tfile failed"
1581         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1582
1583         exhaust_all_precreations 0x215
1584
1585         echo foo >> $DIR/$tdir/$tfile && error "append succeeded"
1586         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat 2 failed"
1587
1588         reset_enospc
1589 }
1590 run_test 27q "append to truncated file with all OSTs full (should error) ==="
1591
1592 test_27r() {
1593         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1594         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1595         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1596         remote_ost_nodsh && skip "remote OST with nodsh" && return
1597
1598         reset_enospc
1599         rm -f $DIR/$tdir/$tfile
1600         exhaust_precreations 0 0x80000215
1601
1602         $SETSTRIPE -i 0 -c 2 $DIR/$tdir/$tfile # && error
1603
1604         reset_enospc
1605 }
1606 run_test 27r "stripe file with some full OSTs (shouldn't LBUG) ="
1607
1608 test_27s() { # bug 10725
1609         test_mkdir -p $DIR/$tdir
1610         local stripe_size=$((4096 * 1024 * 1024))       # 2^32
1611         local stripe_count=0
1612         [ $OSTCOUNT -eq 1 ] || stripe_count=2
1613         $SETSTRIPE -S $stripe_size -c $stripe_count $DIR/$tdir &&
1614                 error "stripe width >= 2^32 succeeded" || true
1615
1616 }
1617 run_test 27s "lsm_xfersize overflow (should error) (bug 10725)"
1618
1619 test_27t() { # bug 10864
1620         WDIR=$(pwd)
1621         WLFS=$(which lfs)
1622         cd $DIR
1623         touch $tfile
1624         $WLFS getstripe $tfile
1625         cd $WDIR
1626 }
1627 run_test 27t "check that utils parse path correctly"
1628
1629 test_27u() { # bug 4900
1630         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1631         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1632         local index
1633         local list=$(comma_list $(mdts_nodes))
1634
1635 #define OBD_FAIL_MDS_OSC_PRECREATE      0x139
1636         do_nodes $list $LCTL set_param fail_loc=0x139
1637         test_mkdir -p $DIR/$tdir
1638         rm -rf $DIR/$tdir/*
1639         createmany -o $DIR/$tdir/t- 1000
1640         do_nodes $list $LCTL set_param fail_loc=0
1641
1642         TLOG=$DIR/$tfile.getstripe
1643         $GETSTRIPE $DIR/$tdir > $TLOG
1644         OBJS=$(awk -vobj=0 '($1 == 0) { obj += 1 } END { print obj; }' $TLOG)
1645         unlinkmany $DIR/$tdir/t- 1000
1646         [[ $OBJS -gt 0 ]] &&
1647                 error "$OBJS objects created on OST-0. See $TLOG" || pass
1648 }
1649 run_test 27u "skip object creation on OSC w/o objects =========="
1650
1651 test_27v() { # bug 4900
1652         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1653         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1654         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1655         remote_ost_nodsh && skip "remote OST with nodsh" && return
1656
1657         exhaust_all_precreations 0x215
1658         reset_enospc
1659
1660         test_mkdir -p $DIR/$tdir
1661         $SETSTRIPE -c 1 $DIR/$tdir         # 1 stripe / file
1662
1663         touch $DIR/$tdir/$tfile
1664         #define OBD_FAIL_TGT_DELAY_PRECREATE     0x705
1665         # all except ost1
1666         for (( i=1; i < OSTCOUNT; i++ )); do
1667                 do_facet ost$i lctl set_param fail_loc=0x705
1668         done
1669         local START=`date +%s`
1670         createmany -o $DIR/$tdir/$tfile 32
1671
1672         local FINISH=`date +%s`
1673         local TIMEOUT=`lctl get_param -n timeout`
1674         local PROCESS=$((FINISH - START))
1675         [ $PROCESS -ge $((TIMEOUT / 2)) ] && \
1676                error "$FINISH - $START >= $TIMEOUT / 2"
1677         sleep $((TIMEOUT / 2 - PROCESS))
1678         reset_enospc
1679 }
1680 run_test 27v "skip object creation on slow OST ================="
1681
1682 test_27w() { # bug 10997
1683         test_mkdir -p $DIR/$tdir || error "mkdir failed"
1684         $SETSTRIPE -S 65536 $DIR/$tdir/f0 || error "setstripe failed"
1685         [ $($GETSTRIPE -S $DIR/$tdir/f0) -ne 65536 ] &&
1686                 error "stripe size $size != 65536" || true
1687         [ $($GETSTRIPE -d $DIR/$tdir | grep -c "stripe_count") -ne 1 ] &&
1688                 error "$GETSTRIPE -d $DIR/$tdir failed" || true
1689 }
1690 run_test 27w "check $SETSTRIPE -S option"
1691
1692 test_27wa() {
1693         [[ $OSTCOUNT -lt 2 ]] &&
1694                 skip_env "skipping multiple stripe count/offset test" && return
1695
1696         test_mkdir -p $DIR/$tdir || error "mkdir failed"
1697         for i in $(seq 1 $OSTCOUNT); do
1698                 offset=$((i - 1))
1699                 $SETSTRIPE -c $i -i $offset $DIR/$tdir/f$i ||
1700                         error "setstripe -c $i -i $offset failed"
1701                 count=$($GETSTRIPE -c $DIR/$tdir/f$i)
1702                 index=$($GETSTRIPE -i $DIR/$tdir/f$i)
1703                 [ $count -ne $i ] && error "stripe count $count != $i" || true
1704                 [ $index -ne $offset ] &&
1705                         error "stripe offset $index != $offset" || true
1706         done
1707 }
1708 run_test 27wa "check $SETSTRIPE -c -i options"
1709
1710 test_27x() {
1711         remote_ost_nodsh && skip "remote OST with nodsh" && return
1712         [[ $OSTCOUNT -lt 2 ]] && skip_env "$OSTCOUNT < 2 OSTs" && return
1713         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1714         OFFSET=$(($OSTCOUNT - 1))
1715         OSTIDX=0
1716         local OST=$(ostname_from_index $OSTIDX)
1717
1718         test_mkdir -p $DIR/$tdir
1719         $SETSTRIPE -c 1 $DIR/$tdir      # 1 stripe per file
1720         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 1
1721         sleep_maxage
1722         createmany -o $DIR/$tdir/$tfile $OSTCOUNT
1723         for i in `seq 0 $OFFSET`; do
1724                 [ `$GETSTRIPE $DIR/$tdir/$tfile$i | grep -A 10 obdidx | awk '{print $1}' | grep -w "$OSTIDX"` ] &&
1725                 error "OST0 was degraded but new created file still use it"
1726         done
1727         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 0
1728 }
1729 run_test 27x "create files while OST0 is degraded"
1730
1731 test_27y() {
1732         [[ $OSTCOUNT -lt 2 ]] &&
1733                 skip_env "$OSTCOUNT < 2 OSTs -- skipping" && return
1734         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1735         remote_ost_nodsh && skip "remote OST with nodsh" && return
1736         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1737
1738         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS $FSNAME-OST0000)
1739         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
1740             osc.$mdtosc.prealloc_last_id)
1741         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
1742             osc.$mdtosc.prealloc_next_id)
1743         local fcount=$((last_id - next_id))
1744         [[ $fcount -eq 0 ]] && skip "not enough space on OST0" && return
1745         [[ $fcount -gt $OSTCOUNT ]] && fcount=$OSTCOUNT
1746
1747         local MDS_OSCS=$(do_facet $SINGLEMDS lctl dl |
1748                          awk '/[oO][sS][cC].*md[ts]/ { print $4 }')
1749         local OST_DEACTIVE_IDX=-1
1750         local OSC
1751         local OSTIDX
1752         local OST
1753
1754         for OSC in $MDS_OSCS; do
1755                 OST=$(osc_to_ost $OSC)
1756                 OSTIDX=$(index_from_ostuuid $OST)
1757                 if [ $OST_DEACTIVE_IDX == -1 ]; then
1758                         OST_DEACTIVE_IDX=$OSTIDX
1759                 fi
1760                 if [ $OSTIDX != $OST_DEACTIVE_IDX ]; then
1761                         echo $OSC "is Deactivated:"
1762                         do_facet $SINGLEMDS lctl --device  %$OSC deactivate
1763                 fi
1764         done
1765
1766         OSTIDX=$(index_from_ostuuid $OST)
1767         test_mkdir -p $DIR/$tdir
1768         $SETSTRIPE -c 1 $DIR/$tdir      # 1 stripe / file
1769
1770         for OSC in $MDS_OSCS; do
1771                 OST=$(osc_to_ost $OSC)
1772                 OSTIDX=$(index_from_ostuuid $OST)
1773                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1774                         echo $OST "is degraded:"
1775                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1776                                                 obdfilter.$OST.degraded=1
1777                 fi
1778         done
1779
1780         sleep_maxage
1781         createmany -o $DIR/$tdir/$tfile $fcount
1782
1783         for OSC in $MDS_OSCS; do
1784                 OST=$(osc_to_ost $OSC)
1785                 OSTIDX=$(index_from_ostuuid $OST)
1786                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1787                         echo $OST "is recovered from degraded:"
1788                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1789                                                 obdfilter.$OST.degraded=0
1790                 else
1791                         do_facet $SINGLEMDS lctl --device %$OSC activate
1792                 fi
1793         done
1794
1795         # all osp devices get activated, hence -1 stripe count restored
1796         local stripecnt=0
1797
1798         # sleep 2*lod_qos_maxage seconds waiting for lod qos to notice osp
1799         # devices get activated.
1800         sleep_maxage
1801         $SETSTRIPE -c -1 $DIR/$tfile
1802         stripecnt=$($GETSTRIPE -c $DIR/$tfile)
1803         rm -f $DIR/$tfile
1804         [ $stripecnt -ne $OSTCOUNT ] &&
1805                 error "Of $OSTCOUNT OSTs, only $stripecnt is available"
1806         return 0
1807 }
1808 run_test 27y "create files while OST0 is degraded and the rest inactive"
1809
1810 check_seq_oid()
1811 {
1812         log "check file $1"
1813
1814         lmm_count=$($GETSTRIPE -c $1)
1815         lmm_seq=$($GETSTRIPE -v $1 | awk '/lmm_seq/ { print $2 }')
1816         lmm_oid=$($GETSTRIPE -v $1 | awk '/lmm_object_id/ { print $2 }')
1817
1818         local old_ifs="$IFS"
1819         IFS=$'[:]'
1820         fid=($($LFS path2fid $1))
1821         IFS="$old_ifs"
1822
1823         log "FID seq ${fid[1]}, oid ${fid[2]} ver ${fid[3]}"
1824         log "LOV seq $lmm_seq, oid $lmm_oid, count: $lmm_count"
1825
1826         # compare lmm_seq and lu_fid->f_seq
1827         [ $lmm_seq = ${fid[1]} ] || { error "SEQ mismatch"; return 1; }
1828         # compare lmm_object_id and lu_fid->oid
1829         [ $lmm_oid = ${fid[2]} ] || { error "OID mismatch"; return 2; }
1830
1831         # check the trusted.fid attribute of the OST objects of the file
1832         local have_obdidx=false
1833         local stripe_nr=0
1834         $GETSTRIPE $1 | while read obdidx oid hex seq; do
1835                 # skip lines up to and including "obdidx"
1836                 [ -z "$obdidx" ] && break
1837                 [ "$obdidx" = "obdidx" ] && have_obdidx=true && continue
1838                 $have_obdidx || continue
1839
1840                 local ost=$((obdidx + 1))
1841                 local dev=$(ostdevname $ost)
1842                 local oid_hex
1843
1844                 log "want: stripe:$stripe_nr ost:$obdidx oid:$oid/$hex seq:$seq"
1845
1846                 seq=$(echo $seq | sed -e "s/^0x//g")
1847                 if [ $seq == 0 ]; then
1848                         oid_hex=$(echo $oid)
1849                 else
1850                         oid_hex=$(echo $hex | sed -e "s/^0x//g")
1851                 fi
1852                 local obj_file="O/$seq/d$((oid %32))/$oid_hex"
1853
1854                 local ff
1855                 #
1856                 # Don't unmount/remount the OSTs if we don't need to do that.
1857                 # LU-2577 changes filter_fid to be smaller, so debugfs needs
1858                 # update too, until that use mount/ll_decode_filter_fid/mount.
1859                 # Re-enable when debugfs will understand new filter_fid.
1860                 #
1861                 if false && [ $(facet_fstype ost$ost) == ldiskfs ]; then
1862                         ff=$(do_facet ost$ost "$DEBUGFS -c -R 'stat $obj_file' \
1863                                 $dev 2>/dev/null" | grep "parent=")
1864                 else
1865                         stop ost$ost
1866                         mount_fstype ost$ost
1867                         ff=$(do_facet ost$ost $LL_DECODE_FILTER_FID \
1868                                 $(facet_mntpt ost$ost)/$obj_file)
1869                         unmount_fstype ost$ost
1870                         start ost$ost $dev $OST_MOUNT_OPTS
1871                 fi
1872
1873                 [ -z "$ff" ] && error "$obj_file: no filter_fid info"
1874
1875                 echo "$ff" | sed -e 's#.*objid=#got: objid=#'
1876
1877                 # /mnt/O/0/d23/23: objid=23 seq=0 parent=[0x200000400:0x1e:0x1]
1878                 # fid: objid=23 seq=0 parent=[0x200000400:0x1e:0x0] stripe=1
1879                 local ff_parent=$(echo $ff|sed -e 's/.*parent=.//')
1880                 local ff_pseq=$(echo $ff_parent | cut -d: -f1)
1881                 local ff_poid=$(echo $ff_parent | cut -d: -f2)
1882                 local ff_pstripe
1883                 if echo $ff_parent | grep -q 'stripe='; then
1884                         ff_pstripe=$(echo $ff_parent | sed -e 's/.*stripe=//')
1885                 else
1886                         #
1887                         # $LL_DECODE_FILTER_FID does not print "stripe="; look
1888                         # into f_ver in this case.  See the comment on
1889                         # ff_parent.
1890                         #
1891                         ff_pstripe=$(echo $ff_parent | cut -d: -f3 |
1892                                 sed -e 's/\]//')
1893                 fi
1894
1895                 # compare lmm_seq and filter_fid->ff_parent.f_seq
1896                 [ $ff_pseq = $lmm_seq ] ||
1897                         error "FF parent SEQ $ff_pseq != $lmm_seq"
1898                 # compare lmm_object_id and filter_fid->ff_parent.f_oid
1899                 [ $ff_poid = $lmm_oid ] ||
1900                         error "FF parent OID $ff_poid != $lmm_oid"
1901                 (($ff_pstripe == $stripe_nr)) ||
1902                         error "FF stripe $ff_pstripe != $stripe_nr"
1903
1904                 stripe_nr=$((stripe_nr + 1))
1905         done
1906 }
1907
1908 test_27z() {
1909         remote_ost_nodsh && skip "remote OST with nodsh" && return
1910         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1911         test_mkdir -p $DIR/$tdir
1912
1913         $SETSTRIPE -c 1 -i 0 -S 64k $DIR/$tdir/$tfile-1 ||
1914                 { error "setstripe -c -1 failed"; return 1; }
1915         # We need to send a write to every object to get parent FID info set.
1916         # This _should_ also work for setattr, but does not currently.
1917         # touch $DIR/$tdir/$tfile-1 ||
1918         dd if=/dev/zero of=$DIR/$tdir/$tfile-1 bs=1M count=1 ||
1919                 { error "dd $tfile-1 failed"; return 2; }
1920         $SETSTRIPE -c -1 -i $((OSTCOUNT - 1)) -S 1M $DIR/$tdir/$tfile-2 ||
1921                 { error "setstripe -c -1 failed"; return 3; }
1922         dd if=/dev/zero of=$DIR/$tdir/$tfile-2 bs=1M count=$OSTCOUNT ||
1923                 { error "dd $tfile-2 failed"; return 4; }
1924
1925         # make sure write RPCs have been sent to OSTs
1926         sync; sleep 5; sync
1927
1928         check_seq_oid $DIR/$tdir/$tfile-1 || return 5
1929         check_seq_oid $DIR/$tdir/$tfile-2 || return 6
1930 }
1931 run_test 27z "check SEQ/OID on the MDT and OST filesystems"
1932
1933 test_27A() { # b=19102
1934         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1935         local restore_size=$($GETSTRIPE -S $MOUNT)
1936         local restore_count=$($GETSTRIPE -c $MOUNT)
1937         local restore_offset=$($GETSTRIPE -i $MOUNT)
1938         $SETSTRIPE -c 0 -i -1 -S 0 $MOUNT
1939         wait_update $HOSTNAME "$GETSTRIPE -c $MOUNT | sed 's/  *//g'" "1" 20 ||
1940                 error "stripe count $($GETSTRIPE -c $MOUNT) != 1"
1941         local default_size=$($GETSTRIPE -S $MOUNT)
1942         local default_offset=$($GETSTRIPE -i $MOUNT)
1943         local dsize=$((1024 * 1024))
1944         [ $default_size -eq $dsize ] ||
1945                 error "stripe size $default_size != $dsize"
1946         [ $default_offset -eq -1 ] ||error "stripe offset $default_offset != -1"
1947         $SETSTRIPE -c $restore_count -i $restore_offset -S $restore_size $MOUNT
1948 }
1949 run_test 27A "check filesystem-wide default LOV EA values"
1950
1951 test_27B() { # LU-2523
1952         test_mkdir -p $DIR/$tdir
1953         rm -f $DIR/$tdir/f0 $DIR/$tdir/f1
1954         touch $DIR/$tdir/f0
1955         # open f1 with O_LOV_DELAY_CREATE
1956         # rename f0 onto f1
1957         # call setstripe ioctl on open file descriptor for f1
1958         # close
1959         multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:nB1c \
1960                 $DIR/$tdir/f0
1961
1962         rm -f $DIR/$tdir/f1
1963         # open f1 with O_LOV_DELAY_CREATE
1964         # unlink f1
1965         # call setstripe ioctl on open file descriptor for f1
1966         # close
1967         multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:uB1c
1968
1969         # Allow multiop to fail in imitation of NFS's busted semantics.
1970         true
1971 }
1972 run_test 27B "call setstripe on open unlinked file/rename victim"
1973
1974 test_27C() { #LU-2871
1975         [[ $OSTCOUNT -lt 2 ]] && skip "needs >= 2 OSTs" && return
1976
1977         declare -a ost_idx
1978         local index
1979         local found
1980         local i
1981         local j
1982
1983         test_mkdir -p $DIR/$tdir
1984         cd $DIR/$tdir
1985         for i in $(seq 0 $((OSTCOUNT - 1))); do
1986                 # set stripe across all OSTs starting from OST$i
1987                 $SETSTRIPE -i $i -c -1 $tfile$i
1988                 # get striping information
1989                 ost_idx=($($GETSTRIPE $tfile$i |
1990                          tail -n $((OSTCOUNT + 1)) | awk '{print $1}'))
1991                 echo ${ost_idx[@]}
1992
1993                 # check the layout
1994                 [ ${#ost_idx[@]} -eq $OSTCOUNT ] ||
1995                         error "${#ost_idx[@]} != $OSTCOUNT"
1996
1997                 for index in $(seq 0 $((OSTCOUNT - 1))); do
1998                         found=0
1999                         for j in $(echo ${ost_idx[@]}); do
2000                                 if [ $index -eq $j ]; then
2001                                         found=1
2002                                         break
2003                                 fi
2004                         done
2005                         [ $found = 1 ] ||
2006                                 error "Can not find $index in ${ost_idx[@]}"
2007                 done
2008         done
2009 }
2010 run_test 27C "check full striping across all OSTs"
2011
2012 test_27D() {
2013         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
2014         local POOL=${POOL:-testpool}
2015         local first_ost=0
2016         local last_ost=$(($OSTCOUNT - 1))
2017         local ost_step=1
2018         local ost_list=$(seq $first_ost $ost_step $last_ost)
2019         local ost_range="$first_ost $last_ost $ost_step"
2020
2021         test_mkdir -p $DIR/$tdir
2022         pool_add $POOL || error "pool_add failed"
2023         pool_add_targets $POOL $ost_range || error "pool_add_targets failed"
2024         llapi_layout_test -d$DIR/$tdir -p$POOL -o$OSTCOUNT ||
2025                 error "llapi_layout_test failed"
2026         cleanup_pools || error "cleanup_pools failed"
2027 }
2028 run_test 27D "validate llapi_layout API"
2029
2030 # Verify that default_easize is increased from its initial value after
2031 # accessing a widely striped file.
2032 test_27E() {
2033         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
2034
2035         # 72 bytes is the minimum space required to store striping
2036         # information for a file striped across one OST:
2037         # (sizeof(struct lov_user_md_v3) +
2038         #  sizeof(struct lov_user_ost_data_v1))
2039         local min_easize=72
2040         $LCTL set_param -n llite.*.default_easize $min_easize ||
2041                 error "lctl set_param failed"
2042         local easize=$($LCTL get_param -n llite.*.default_easize)
2043
2044         [ $easize -eq $min_easize ] ||
2045                 error "failed to set default_easize"
2046
2047         $LFS setstripe -c $OSTCOUNT $DIR/$tfile ||
2048                 error "setstripe failed"
2049         cat $DIR/$tfile
2050         rm $DIR/$tfile
2051
2052         easize=$($LCTL get_param -n llite.*.default_easize)
2053
2054         [ $easize -gt $min_easize ] ||
2055                 error "default_easize not updated"
2056 }
2057 run_test 27E "check that default extended attribute size properly increases"
2058
2059 # createtest also checks that device nodes are created and
2060 # then visible correctly (#2091)
2061 test_28() { # bug 2091
2062         test_mkdir $DIR/d28
2063         $CREATETEST $DIR/d28/ct || error
2064 }
2065 run_test 28 "create/mknod/mkdir with bad file types ============"
2066
2067 test_29() {
2068         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2069         cancel_lru_locks mdc
2070         test_mkdir $DIR/d29
2071         touch $DIR/d29/foo
2072         log 'first d29'
2073         ls -l $DIR/d29
2074
2075         declare -i LOCKCOUNTORIG=0
2076         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
2077                 let LOCKCOUNTORIG=$LOCKCOUNTORIG+$lock_count
2078         done
2079         [ $LOCKCOUNTORIG -eq 0 ] && echo "No mdc lock count" && return 1
2080
2081         declare -i LOCKUNUSEDCOUNTORIG=0
2082         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
2083                 let LOCKUNUSEDCOUNTORIG=$LOCKUNUSEDCOUNTORIG+$unused_count
2084         done
2085
2086         log 'second d29'
2087         ls -l $DIR/d29
2088         log 'done'
2089
2090         declare -i LOCKCOUNTCURRENT=0
2091         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
2092                 let LOCKCOUNTCURRENT=$LOCKCOUNTCURRENT+$lock_count
2093         done
2094
2095         declare -i LOCKUNUSEDCOUNTCURRENT=0
2096         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
2097                 let LOCKUNUSEDCOUNTCURRENT=$LOCKUNUSEDCOUNTCURRENT+$unused_count
2098         done
2099
2100         if [[ $LOCKCOUNTCURRENT -gt $LOCKCOUNTORIG ]]; then
2101                 $LCTL set_param -n ldlm.dump_namespaces ""
2102                 error "CURRENT: $LOCKCOUNTCURRENT > $LOCKCOUNTORIG"
2103                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
2104                 log "dumped log to $TMP/test_29.dk (bug 5793)"
2105                 return 2
2106         fi
2107         if [[ $LOCKUNUSEDCOUNTCURRENT -gt $LOCKUNUSEDCOUNTORIG ]]; then
2108                 error "UNUSED: $LOCKUNUSEDCOUNTCURRENT > $LOCKUNUSEDCOUNTORIG"
2109                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
2110                 log "dumped log to $TMP/test_29.dk (bug 5793)"
2111                 return 3
2112         fi
2113 }
2114 run_test 29 "IT_GETATTR regression  ============================"
2115
2116 test_30a() { # was test_30
2117         cp $(which ls) $DIR || cp /bin/ls $DIR
2118         $DIR/ls / || error
2119         rm $DIR/ls
2120 }
2121 run_test 30a "execute binary from Lustre (execve) =============="
2122
2123 test_30b() {
2124         cp `which ls` $DIR || cp /bin/ls $DIR
2125         chmod go+rx $DIR/ls
2126         $RUNAS $DIR/ls / || error
2127         rm $DIR/ls
2128 }
2129 run_test 30b "execute binary from Lustre as non-root ==========="
2130
2131 test_30c() { # b=22376
2132         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2133         cp `which ls` $DIR || cp /bin/ls $DIR
2134         chmod a-rw $DIR/ls
2135         cancel_lru_locks mdc
2136         cancel_lru_locks osc
2137         $RUNAS $DIR/ls / || error
2138         rm -f $DIR/ls
2139 }
2140 run_test 30c "execute binary from Lustre without read perms ===="
2141
2142 test_31a() {
2143         $OPENUNLINK $DIR/f31 $DIR/f31 || error
2144         $CHECKSTAT -a $DIR/f31 || error
2145 }
2146 run_test 31a "open-unlink file =================================="
2147
2148 test_31b() {
2149         touch $DIR/f31 || error
2150         ln $DIR/f31 $DIR/f31b || error
2151         $MULTIOP $DIR/f31b Ouc || error
2152         $CHECKSTAT -t file $DIR/f31 || error
2153 }
2154 run_test 31b "unlink file with multiple links while open ======="
2155
2156 test_31c() {
2157         touch $DIR/f31 || error
2158         ln $DIR/f31 $DIR/f31c || error
2159         multiop_bg_pause $DIR/f31 O_uc || return 1
2160         MULTIPID=$!
2161         $MULTIOP $DIR/f31c Ouc
2162         kill -USR1 $MULTIPID
2163         wait $MULTIPID
2164 }
2165 run_test 31c "open-unlink file with multiple links ============="
2166
2167 test_31d() {
2168         opendirunlink $DIR/d31d $DIR/d31d || error
2169         $CHECKSTAT -a $DIR/d31d || error
2170 }
2171 run_test 31d "remove of open directory ========================="
2172
2173 test_31e() { # bug 2904
2174         openfilleddirunlink $DIR/d31e || error
2175 }
2176 run_test 31e "remove of open non-empty directory ==============="
2177
2178 test_31f() { # bug 4554
2179         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2180         set -vx
2181         test_mkdir $DIR/d31f
2182         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
2183         cp /etc/hosts $DIR/d31f
2184         ls -l $DIR/d31f
2185         $GETSTRIPE $DIR/d31f/hosts
2186         multiop_bg_pause $DIR/d31f D_c || return 1
2187         MULTIPID=$!
2188
2189         rm -rv $DIR/d31f || error "first of $DIR/d31f"
2190         test_mkdir $DIR/d31f
2191         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
2192         cp /etc/hosts $DIR/d31f
2193         ls -l $DIR/d31f
2194         $GETSTRIPE $DIR/d31f/hosts
2195         multiop_bg_pause $DIR/d31f D_c || return 1
2196         MULTIPID2=$!
2197
2198         kill -USR1 $MULTIPID || error "first opendir $MULTIPID not running"
2199         wait $MULTIPID || error "first opendir $MULTIPID failed"
2200
2201         sleep 6
2202
2203         kill -USR1 $MULTIPID2 || error "second opendir $MULTIPID not running"
2204         wait $MULTIPID2 || error "second opendir $MULTIPID2 failed"
2205         set +vx
2206 }
2207 run_test 31f "remove of open directory with open-unlink file ==="
2208
2209 test_31g() {
2210         echo "-- cross directory link --"
2211         test_mkdir -c1 $DIR/${tdir}ga
2212         test_mkdir -c1 $DIR/${tdir}gb
2213         touch $DIR/${tdir}ga/f
2214         ln $DIR/${tdir}ga/f $DIR/${tdir}gb/g
2215         $CHECKSTAT -t file $DIR/${tdir}ga/f || error "source"
2216         [ `stat -c%h $DIR/${tdir}ga/f` == '2' ] || error "source nlink"
2217         $CHECKSTAT -t file $DIR/${tdir}gb/g || error "target"
2218         [ `stat -c%h $DIR/${tdir}gb/g` == '2' ] || error "target nlink"
2219 }
2220 run_test 31g "cross directory link==============="
2221
2222 test_31h() {
2223         echo "-- cross directory link --"
2224         test_mkdir -c1 $DIR/${tdir}
2225         test_mkdir -c1 $DIR/${tdir}/dir
2226         touch $DIR/${tdir}/f
2227         ln $DIR/${tdir}/f $DIR/${tdir}/dir/g
2228         $CHECKSTAT -t file $DIR/${tdir}/f || error "source"
2229         [ `stat -c%h $DIR/${tdir}/f` == '2' ] || error "source nlink"
2230         $CHECKSTAT -t file $DIR/${tdir}/dir/g || error "target"
2231         [ `stat -c%h $DIR/${tdir}/dir/g` == '2' ] || error "target nlink"
2232 }
2233 run_test 31h "cross directory link under child==============="
2234
2235 test_31i() {
2236         echo "-- cross directory link --"
2237         test_mkdir -c1 $DIR/$tdir
2238         test_mkdir -c1 $DIR/$tdir/dir
2239         touch $DIR/$tdir/dir/f
2240         ln $DIR/$tdir/dir/f $DIR/$tdir/g
2241         $CHECKSTAT -t file $DIR/$tdir/dir/f || error "source"
2242         [ `stat -c%h $DIR/$tdir/dir/f` == '2' ] || error "source nlink"
2243         $CHECKSTAT -t file $DIR/$tdir/g || error "target"
2244         [ `stat -c%h $DIR/$tdir/g` == '2' ] || error "target nlink"
2245 }
2246 run_test 31i "cross directory link under parent==============="
2247
2248 test_31j() {
2249         test_mkdir -c1 -p $DIR/$tdir
2250         test_mkdir -c1 -p $DIR/$tdir/dir1
2251         ln $DIR/$tdir/dir1 $DIR/$tdir/dir2 && error "ln for dir"
2252         link $DIR/$tdir/dir1 $DIR/$tdir/dir3 && error "link for dir"
2253         mlink $DIR/$tdir/dir1 $DIR/$tdir/dir4 && error "mlink for dir"
2254         mlink $DIR/$tdir/dir1 $DIR/$tdir/dir1 && error "mlink to the same dir"
2255         return 0
2256 }
2257 run_test 31j "link for directory==============="
2258
2259 test_31k() {
2260         test_mkdir -c1 -p $DIR/$tdir
2261         touch $DIR/$tdir/s
2262         touch $DIR/$tdir/exist
2263         mlink $DIR/$tdir/s $DIR/$tdir/t || error "mlink"
2264         mlink $DIR/$tdir/s $DIR/$tdir/exist && error "mlink to exist file"
2265         mlink $DIR/$tdir/s $DIR/$tdir/s && error "mlink to the same file"
2266         mlink $DIR/$tdir/s $DIR/$tdir && error "mlink to parent dir"
2267         mlink $DIR/$tdir $DIR/$tdir/s && error "mlink parent dir to target"
2268         mlink $DIR/$tdir/not-exist $DIR/$tdir/foo && error "mlink non-existing to new"
2269         mlink $DIR/$tdir/not-exist $DIR/$tdir/s && error "mlink non-existing to exist"
2270         return 0
2271 }
2272 run_test 31k "link to file: the same, non-existing, dir==============="
2273
2274 test_31m() {
2275         mkdir $DIR/d31m
2276         touch $DIR/d31m/s
2277         mkdir $DIR/d31m2
2278         touch $DIR/d31m2/exist
2279         mlink $DIR/d31m/s $DIR/d31m2/t || error "mlink"
2280         mlink $DIR/d31m/s $DIR/d31m2/exist && error "mlink to exist file"
2281         mlink $DIR/d31m/s $DIR/d31m2 && error "mlink to parent dir"
2282         mlink $DIR/d31m2 $DIR/d31m/s && error "mlink parent dir to target"
2283         mlink $DIR/d31m/not-exist $DIR/d31m2/foo && error "mlink non-existing to new"
2284         mlink $DIR/d31m/not-exist $DIR/d31m2/s && error "mlink non-existing to exist"
2285         return 0
2286 }
2287 run_test 31m "link to file: the same, non-existing, dir==============="
2288
2289 test_31n() {
2290         touch $DIR/$tfile || error "cannot create '$DIR/$tfile'"
2291         nlink=$(stat --format=%h $DIR/$tfile)
2292         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2293         local fd=$(free_fd)
2294         local cmd="exec $fd<$DIR/$tfile"
2295         eval $cmd
2296         cmd="exec $fd<&-"
2297         trap "eval $cmd" EXIT
2298         nlink=$(stat --dereference --format=%h /proc/self/fd/$fd)
2299         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2300         rm $DIR/$tfile || error "cannot remove '$DIR/$tfile'"
2301         nlink=$(stat --dereference --format=%h /proc/self/fd/$fd)
2302         [ ${nlink:--1} -eq 0 ] || error "nlink is $nlink, expected 0"
2303         eval $cmd
2304 }
2305 run_test 31n "check link count of unlinked file"
2306
2307 link_one() {
2308         local TEMPNAME=$(mktemp $1_XXXXXX)
2309         mlink $TEMPNAME $1 2> /dev/null &&
2310                 echo "$BASHPID: link $TEMPNAME to $1 succeeded"
2311         munlink $TEMPNAME
2312 }
2313
2314 test_31o() { # LU-2901
2315         test_mkdir -p $DIR/$tdir
2316         for LOOP in $(seq 100); do
2317                 rm -f $DIR/$tdir/$tfile*
2318                 for THREAD in $(seq 8); do
2319                         link_one $DIR/$tdir/$tfile.$LOOP &
2320                 done
2321                 wait
2322                 local LINKS=$(ls -1 $DIR/$tdir | grep -c $tfile.$LOOP)
2323                 [[ $LINKS -gt 1 ]] && ls $DIR/$tdir &&
2324                         error "$LINKS duplicate links to $tfile.$LOOP" &&
2325                         break || true
2326         done
2327 }
2328 run_test 31o "duplicate hard links with same filename"
2329
2330 test_31p() {
2331         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2332
2333         test_mkdir $DIR/$tdir
2334         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2335         $LFS setdirstripe -D -c2 -t all_char $DIR/$tdir/striped_dir
2336
2337         opendirunlink $DIR/$tdir/striped_dir/test1 ||
2338                 error "open unlink test1 failed"
2339         opendirunlink $DIR/$tdir/striped_dir/test2 ||
2340                 error "open unlink test2 failed"
2341
2342         $CHECKSTAT -a $DIR/$tdir/striped_dir/test1 ||
2343                 error "test1 still exists"
2344         $CHECKSTAT -a $DIR/$tdir/striped_dir/test2 ||
2345                 error "test2 still exists"
2346 }
2347 run_test 31p "remove of open striped directory"
2348
2349 cleanup_test32_mount() {
2350         trap 0
2351         $UMOUNT -d $DIR/$tdir/ext2-mountpoint
2352 }
2353
2354 test_32a() {
2355         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2356         echo "== more mountpoints and symlinks ================="
2357         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2358         trap cleanup_test32_mount EXIT
2359         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2360         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2361         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/.. || error
2362         cleanup_test32_mount
2363 }
2364 run_test 32a "stat d32a/ext2-mountpoint/.. ====================="
2365
2366 test_32b() {
2367         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2368         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2369         trap cleanup_test32_mount EXIT
2370         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2371         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2372         ls -al $DIR/$tdir/ext2-mountpoint/.. || error
2373         cleanup_test32_mount
2374 }
2375 run_test 32b "open d32b/ext2-mountpoint/.. ====================="
2376
2377 test_32c() {
2378         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2379         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2380         trap cleanup_test32_mount EXIT
2381         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2382         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2383         test_mkdir -p $DIR/$tdir/d2/test_dir
2384         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/../d2/test_dir || error
2385         cleanup_test32_mount
2386 }
2387 run_test 32c "stat d32c/ext2-mountpoint/../d2/test_dir ========="
2388
2389 test_32d() {
2390         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2391         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2392         trap cleanup_test32_mount EXIT
2393         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2394         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2395         test_mkdir -p $DIR/$tdir/d2/test_dir
2396         ls -al $DIR/$tdir/ext2-mountpoint/../d2/test_dir || error
2397         cleanup_test32_mount
2398 }
2399 run_test 32d "open d32d/ext2-mountpoint/../d2/test_dir ========="
2400
2401 test_32e() {
2402         [ -e $DIR/d32e ] && rm -fr $DIR/d32e
2403         test_mkdir -p $DIR/d32e/tmp
2404         TMP_DIR=$DIR/d32e/tmp
2405         ln -s $DIR/d32e $TMP_DIR/symlink11
2406         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2407         $CHECKSTAT -t link $DIR/d32e/tmp/symlink11 || error
2408         $CHECKSTAT -t link $DIR/d32e/symlink01 || error
2409 }
2410 run_test 32e "stat d32e/symlink->tmp/symlink->lustre-subdir ===="
2411
2412 test_32f() {
2413         [ -e $DIR/d32f ] && rm -fr $DIR/d32f
2414         test_mkdir -p $DIR/d32f/tmp
2415         TMP_DIR=$DIR/d32f/tmp
2416         ln -s $DIR/d32f $TMP_DIR/symlink11
2417         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2418         ls $DIR/d32f/tmp/symlink11  || error
2419         ls $DIR/d32f/symlink01 || error
2420 }
2421 run_test 32f "open d32f/symlink->tmp/symlink->lustre-subdir ===="
2422
2423 test_32g() {
2424         TMP_DIR=$DIR/$tdir/tmp
2425         test_mkdir -p $DIR/$tdir/tmp
2426         test_mkdir $DIR/${tdir}2
2427         ln -s $DIR/${tdir}2 $TMP_DIR/symlink12
2428         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2429         $CHECKSTAT -t link $TMP_DIR/symlink12 || error
2430         $CHECKSTAT -t link $DIR/$tdir/symlink02 || error
2431         $CHECKSTAT -t dir -f $TMP_DIR/symlink12 || error
2432         $CHECKSTAT -t dir -f $DIR/$tdir/symlink02 || error
2433 }
2434 run_test 32g "stat d32g/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2435
2436 test_32h() {
2437         rm -fr $DIR/$tdir $DIR/${tdir}2
2438         TMP_DIR=$DIR/$tdir/tmp
2439         test_mkdir -p $DIR/$tdir/tmp
2440         test_mkdir $DIR/${tdir}2
2441         ln -s $DIR/${tdir}2 $TMP_DIR/symlink12
2442         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2443         ls $TMP_DIR/symlink12 || error
2444         ls $DIR/$tdir/symlink02  || error
2445 }
2446 run_test 32h "open d32h/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2447
2448 test_32i() {
2449         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2450         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2451         trap cleanup_test32_mount EXIT
2452         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2453         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2454         touch $DIR/$tdir/test_file
2455         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../test_file || error
2456         cleanup_test32_mount
2457 }
2458 run_test 32i "stat d32i/ext2-mountpoint/../test_file ==========="
2459
2460 test_32j() {
2461         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2462         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2463         trap cleanup_test32_mount EXIT
2464         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2465         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2466         touch $DIR/$tdir/test_file
2467         cat $DIR/$tdir/ext2-mountpoint/../test_file || error
2468         cleanup_test32_mount
2469 }
2470 run_test 32j "open d32j/ext2-mountpoint/../test_file ==========="
2471
2472 test_32k() {
2473         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2474         rm -fr $DIR/$tdir
2475         trap cleanup_test32_mount EXIT
2476         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2477         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint
2478         test_mkdir -p $DIR/$tdir/d2
2479         touch $DIR/$tdir/d2/test_file || error
2480         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../d2/test_file || error
2481         cleanup_test32_mount
2482 }
2483 run_test 32k "stat d32k/ext2-mountpoint/../d2/test_file ========"
2484
2485 test_32l() {
2486         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2487         rm -fr $DIR/$tdir
2488         trap cleanup_test32_mount EXIT
2489         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2490         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2491         test_mkdir -p $DIR/$tdir/d2
2492         touch $DIR/$tdir/d2/test_file
2493         cat  $DIR/$tdir/ext2-mountpoint/../d2/test_file || error
2494         cleanup_test32_mount
2495 }
2496 run_test 32l "open d32l/ext2-mountpoint/../d2/test_file ========"
2497
2498 test_32m() {
2499         rm -fr $DIR/d32m
2500         test_mkdir -p $DIR/d32m/tmp
2501         TMP_DIR=$DIR/d32m/tmp
2502         ln -s $DIR $TMP_DIR/symlink11
2503         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2504         $CHECKSTAT -t link $DIR/d32m/tmp/symlink11 || error
2505         $CHECKSTAT -t link $DIR/d32m/symlink01 || error
2506 }
2507 run_test 32m "stat d32m/symlink->tmp/symlink->lustre-root ======"
2508
2509 test_32n() {
2510         rm -fr $DIR/d32n
2511         test_mkdir -p $DIR/d32n/tmp
2512         TMP_DIR=$DIR/d32n/tmp
2513         ln -s $DIR $TMP_DIR/symlink11
2514         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2515         ls -l $DIR/d32n/tmp/symlink11  || error
2516         ls -l $DIR/d32n/symlink01 || error
2517 }
2518 run_test 32n "open d32n/symlink->tmp/symlink->lustre-root ======"
2519
2520 test_32o() {
2521         touch $DIR/$tfile
2522         test_mkdir -p $DIR/d32o/tmp
2523         TMP_DIR=$DIR/d32o/tmp
2524         ln -s $DIR/$tfile $TMP_DIR/symlink12
2525         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2526         $CHECKSTAT -t link $DIR/d32o/tmp/symlink12 || error
2527         $CHECKSTAT -t link $DIR/d32o/symlink02 || error
2528         $CHECKSTAT -t file -f $DIR/d32o/tmp/symlink12 || error
2529         $CHECKSTAT -t file -f $DIR/d32o/symlink02 || error
2530 }
2531 run_test 32o "stat d32o/symlink->tmp/symlink->lustre-root/$tfile"
2532
2533 test_32p() {
2534     log 32p_1
2535         rm -fr $DIR/d32p
2536     log 32p_2
2537         rm -f $DIR/$tfile
2538     log 32p_3
2539         touch $DIR/$tfile
2540     log 32p_4
2541         test_mkdir -p $DIR/d32p/tmp
2542     log 32p_5
2543         TMP_DIR=$DIR/d32p/tmp
2544     log 32p_6
2545         ln -s $DIR/$tfile $TMP_DIR/symlink12
2546     log 32p_7
2547         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2548     log 32p_8
2549         cat $DIR/d32p/tmp/symlink12 || error
2550     log 32p_9
2551         cat $DIR/d32p/symlink02 || error
2552     log 32p_10
2553 }
2554 run_test 32p "open d32p/symlink->tmp/symlink->lustre-root/$tfile"
2555
2556 cleanup_testdir_mount() {
2557         trap 0
2558         $UMOUNT -d $DIR/$tdir
2559 }
2560
2561 test_32q() {
2562         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2563         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2564         trap cleanup_testdir_mount EXIT
2565         test_mkdir -p $DIR/$tdir
2566         touch $DIR/$tdir/under_the_mount
2567         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir
2568         ls $DIR/$tdir | grep "\<under_the_mount\>" && error
2569         cleanup_testdir_mount
2570 }
2571 run_test 32q "stat follows mountpoints in Lustre (should return error)"
2572
2573 test_32r() {
2574         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2575         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2576         trap cleanup_testdir_mount EXIT
2577         test_mkdir -p $DIR/$tdir
2578         touch $DIR/$tdir/under_the_mount
2579         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir
2580         ls $DIR/$tdir | grep -q under_the_mount && error || true
2581         cleanup_testdir_mount
2582 }
2583 run_test 32r "opendir follows mountpoints in Lustre (should return error)"
2584
2585 test_33aa() {
2586         rm -f $DIR/$tfile
2587         touch $DIR/$tfile
2588         chmod 444 $DIR/$tfile
2589         chown $RUNAS_ID $DIR/$tfile
2590         log 33_1
2591         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2592         log 33_2
2593 }
2594 run_test 33aa "write file with mode 444 (should return error) ===="
2595
2596 test_33a() {
2597         rm -fr $DIR/d33
2598         test_mkdir -p $DIR/d33
2599         chown $RUNAS_ID $DIR/d33
2600         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/d33/f33|| error "create"
2601         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/d33/f33 && \
2602                 error "open RDWR" || true
2603 }
2604 run_test 33a "test open file(mode=0444) with O_RDWR (should return error)"
2605
2606 test_33b() {
2607         rm -fr $DIR/d33
2608         test_mkdir -p $DIR/d33
2609         chown $RUNAS_ID $DIR/d33
2610         $RUNAS $OPENFILE -f 1286739555 $DIR/d33/f33 || true
2611 }
2612 run_test 33b "test open file with malformed flags (No panic)"
2613
2614 test_33c() {
2615         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2616         local ostnum
2617         local ostname
2618         local write_bytes
2619         local all_zeros
2620
2621         remote_ost_nodsh && skip "remote OST with nodsh" && return
2622         all_zeros=:
2623         rm -fr $DIR/d33
2624         test_mkdir -p $DIR/d33
2625         # Read: 0, Write: 4, create/destroy: 2/0, stat: 1, punch: 0
2626
2627         sync
2628         for ostnum in $(seq $OSTCOUNT); do
2629                 # test-framework's OST numbering is one-based, while Lustre's
2630                 # is zero-based
2631                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2632                 # Parsing llobdstat's output sucks; we could grep the /proc
2633                 # path, but that's likely to not be as portable as using the
2634                 # llobdstat utility.  So we parse lctl output instead.
2635                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2636                         obdfilter/$ostname/stats |
2637                         awk '/^write_bytes/ {print $7}' )
2638                 echo "baseline_write_bytes@$OSTnum/$ostname=$write_bytes"
2639                 if (( ${write_bytes:-0} > 0 ))
2640                 then
2641                         all_zeros=false
2642                         break;
2643                 fi
2644         done
2645
2646         $all_zeros || return 0
2647
2648         # Write four bytes
2649         echo foo > $DIR/d33/bar
2650         # Really write them
2651         sync
2652
2653         # Total up write_bytes after writing.  We'd better find non-zeros.
2654         for ostnum in $(seq $OSTCOUNT); do
2655                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2656                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2657                         obdfilter/$ostname/stats |
2658                         awk '/^write_bytes/ {print $7}' )
2659                 echo "write_bytes@$OSTnum/$ostname=$write_bytes"
2660                 if (( ${write_bytes:-0} > 0 ))
2661                 then
2662                         all_zeros=false
2663                         break;
2664                 fi
2665         done
2666
2667         if $all_zeros
2668         then
2669                 for ostnum in $(seq $OSTCOUNT); do
2670                         ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2671                         echo "Check that write_bytes is present in obdfilter/*/stats:"
2672                         do_facet ost$ostnum lctl get_param -n \
2673                                 obdfilter/$ostname/stats
2674                 done
2675                 error "OST not keeping write_bytes stats (b22312)"
2676         fi
2677 }
2678 run_test 33c "test llobdstat and write_bytes"
2679
2680 test_33d() {
2681         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
2682         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2683         local MDTIDX=1
2684         local remote_dir=$DIR/$tdir/remote_dir
2685
2686         test_mkdir -p $DIR/$tdir
2687         $LFS mkdir -i $MDTIDX $remote_dir ||
2688                 error "create remote directory failed"
2689
2690         touch $remote_dir/$tfile
2691         chmod 444 $remote_dir/$tfile
2692         chown $RUNAS_ID $remote_dir/$tfile
2693
2694         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2695
2696         chown $RUNAS_ID $remote_dir
2697         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 ||
2698                                         error "create" || true
2699         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 &&
2700                                     error "open RDWR" || true
2701         $RUNAS $OPENFILE -f 1286739555 $remote_dir/f33 &&
2702                                     error "create" || true
2703 }
2704 run_test 33d "openfile with 444 modes and malformed flags under remote dir"
2705
2706 test_33e() {
2707         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2708
2709         mkdir $DIR/$tdir
2710
2711         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2712         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
2713         mkdir $DIR/$tdir/local_dir
2714
2715         local s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
2716         local s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
2717         local l_mode=$(stat -c%f $DIR/$tdir/local_dir)
2718
2719         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
2720                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode"
2721
2722         rmdir $DIR/$tdir/* || error "rmdir failed"
2723
2724         umask 777
2725         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2726         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
2727         mkdir $DIR/$tdir/local_dir
2728
2729         s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
2730         s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
2731         l_mode=$(stat -c%f $DIR/$tdir/local_dir)
2732
2733         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
2734                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode 777"
2735
2736         rmdir $DIR/$tdir/* || error "rmdir(umask 777) failed"
2737
2738         umask 000
2739         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2740         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
2741         mkdir $DIR/$tdir/local_dir
2742
2743         s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
2744         s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
2745         l_mode=$(stat -c%f $DIR/$tdir/local_dir)
2746
2747         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
2748                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode 0"
2749 }
2750 run_test 33e "mkdir and striped directory should have same mode"
2751
2752 cleanup_33f() {
2753         trap 0
2754         do_facet $SINGLEMDS $LCTL set_param mdt.*.enable_remote_dir_gid=0
2755 }
2756
2757 test_33f() {
2758         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2759
2760         mkdir $DIR/$tdir
2761         chmod go+rwx $DIR/$tdir
2762         do_facet $SINGLEMDS $LCTL set_param mdt.*.enable_remote_dir_gid=-1
2763         trap cleanup_33f EXIT
2764
2765         $RUNAS lfs mkdir -c$MDSCOUNT $DIR/$tdir/striped_dir ||
2766                 error "cannot create striped directory"
2767
2768         $RUNAS touch $DIR/$tdir/striped_dir/{0..16} ||
2769                 error "cannot create files in striped directory"
2770
2771         $RUNAS rm $DIR/$tdir/striped_dir/{0..16} ||
2772                 error "cannot remove files in striped directory"
2773
2774         $RUNAS rmdir $DIR/$tdir/striped_dir ||
2775                 error "cannot remove striped directory"
2776
2777         cleanup_33f
2778 }
2779 run_test 33f "nonroot user can create, access, and remove a striped directory"
2780
2781 TEST_34_SIZE=${TEST_34_SIZE:-2000000000000}
2782 test_34a() {
2783         rm -f $DIR/f34
2784         $MCREATE $DIR/f34 || error
2785         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2786         $TRUNCATE $DIR/f34 $TEST_34_SIZE || error
2787         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2788         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2789 }
2790 run_test 34a "truncate file that has not been opened ==========="
2791
2792 test_34b() {
2793         [ ! -f $DIR/f34 ] && test_34a
2794         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2795         $OPENFILE -f O_RDONLY $DIR/f34
2796         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2797         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2798 }
2799 run_test 34b "O_RDONLY opening file doesn't create objects ====="
2800
2801 test_34c() {
2802         [ ! -f $DIR/f34 ] && test_34a
2803         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2804         $OPENFILE -f O_RDWR $DIR/f34
2805         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" && error
2806         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2807 }
2808 run_test 34c "O_RDWR opening file-with-size works =============="
2809
2810 test_34d() {
2811         [ ! -f $DIR/f34 ] && test_34a
2812         dd if=/dev/zero of=$DIR/f34 conv=notrunc bs=4k count=1 || error
2813         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2814         rm $DIR/f34
2815 }
2816 run_test 34d "write to sparse file ============================="
2817
2818 test_34e() {
2819         rm -f $DIR/f34e
2820         $MCREATE $DIR/f34e || error
2821         $TRUNCATE $DIR/f34e 1000 || error
2822         $CHECKSTAT -s 1000 $DIR/f34e || error
2823         $OPENFILE -f O_RDWR $DIR/f34e
2824         $CHECKSTAT -s 1000 $DIR/f34e || error
2825 }
2826 run_test 34e "create objects, some with size and some without =="
2827
2828 test_34f() { # bug 6242, 6243
2829         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2830         SIZE34F=48000
2831         rm -f $DIR/f34f
2832         $MCREATE $DIR/f34f || error
2833         $TRUNCATE $DIR/f34f $SIZE34F || error "truncating $DIR/f3f to $SIZE34F"
2834         dd if=$DIR/f34f of=$TMP/f34f
2835         $CHECKSTAT -s $SIZE34F $TMP/f34f || error "$TMP/f34f not $SIZE34F bytes"
2836         dd if=/dev/zero of=$TMP/f34fzero bs=$SIZE34F count=1
2837         cmp $DIR/f34f $TMP/f34fzero || error "$DIR/f34f not all zero"
2838         cmp $TMP/f34f $TMP/f34fzero || error "$TMP/f34f not all zero"
2839         rm $TMP/f34f $TMP/f34fzero $DIR/f34f
2840 }
2841 run_test 34f "read from a file with no objects until EOF ======="
2842
2843 test_34g() {
2844         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2845         dd if=/dev/zero of=$DIR/$tfile bs=1 count=100 seek=$TEST_34_SIZE || error
2846         $TRUNCATE $DIR/$tfile $((TEST_34_SIZE / 2))|| error
2847         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile || error "truncate failed"
2848         cancel_lru_locks osc
2849         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile || \
2850                 error "wrong size after lock cancel"
2851
2852         $TRUNCATE $DIR/$tfile $TEST_34_SIZE || error
2853         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile || \
2854                 error "expanding truncate failed"
2855         cancel_lru_locks osc
2856         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile || \
2857                 error "wrong expanded size after lock cancel"
2858 }
2859 run_test 34g "truncate long file ==============================="
2860
2861 test_34h() {
2862         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2863         local gid=10
2864         local sz=1000
2865
2866         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10 || error
2867         sync # Flush the cache so that multiop below does not block on cache
2868              # flush when getting the group lock
2869         $MULTIOP $DIR/$tfile OG${gid}T${sz}g${gid}c &
2870         MULTIPID=$!
2871
2872         # Since just timed wait is not good enough, let's do a sync write
2873         # that way we are sure enough time for a roundtrip + processing
2874         # passed + 2 seconds of extra margin.
2875         dd if=/dev/zero of=$DIR/${tfile}-1 bs=4096 oflag=direct count=1
2876         rm $DIR/${tfile}-1
2877         sleep 2
2878
2879         if [[ `ps h -o comm -p $MULTIPID` == "multiop" ]]; then
2880                 error "Multiop blocked on ftruncate, pid=$MULTIPID"
2881                 kill -9 $MULTIPID
2882         fi
2883         wait $MULTIPID
2884         local nsz=`stat -c %s $DIR/$tfile`
2885         [[ $nsz == $sz ]] || error "New size wrong $nsz != $sz"
2886 }
2887 run_test 34h "ftruncate file under grouplock should not block"
2888
2889 test_35a() {
2890         cp /bin/sh $DIR/f35a
2891         chmod 444 $DIR/f35a
2892         chown $RUNAS_ID $DIR/f35a
2893         $RUNAS $DIR/f35a && error || true
2894         rm $DIR/f35a
2895 }
2896 run_test 35a "exec file with mode 444 (should return and not leak) ====="
2897
2898 test_36a() {
2899         rm -f $DIR/f36
2900         utime $DIR/f36 || error
2901 }
2902 run_test 36a "MDS utime check (mknod, utime) ==================="
2903
2904 test_36b() {
2905         echo "" > $DIR/f36
2906         utime $DIR/f36 || error
2907 }
2908 run_test 36b "OST utime check (open, utime) ===================="
2909
2910 test_36c() {
2911         rm -f $DIR/d36/f36
2912         test_mkdir $DIR/d36
2913         chown $RUNAS_ID $DIR/d36
2914         $RUNAS utime $DIR/d36/f36 || error
2915 }
2916 run_test 36c "non-root MDS utime check (mknod, utime) =========="
2917
2918 test_36d() {
2919         [ ! -d $DIR/d36 ] && test_36c
2920         echo "" > $DIR/d36/f36
2921         $RUNAS utime $DIR/d36/f36 || error
2922 }
2923 run_test 36d "non-root OST utime check (open, utime) ==========="
2924
2925 test_36e() {
2926         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
2927         test_mkdir -p $DIR/$tdir
2928         touch $DIR/$tdir/$tfile
2929         $RUNAS utime $DIR/$tdir/$tfile && \
2930                 error "utime worked, expected failure" || true
2931 }
2932 run_test 36e "utime on non-owned file (should return error) ===="
2933
2934 subr_36fh() {
2935         local fl="$1"
2936         local LANG_SAVE=$LANG
2937         local LC_LANG_SAVE=$LC_LANG
2938         export LANG=C LC_LANG=C # for date language
2939
2940         DATESTR="Dec 20  2000"
2941         test_mkdir -p $DIR/$tdir
2942         lctl set_param fail_loc=$fl
2943         date; date +%s
2944         cp /etc/hosts $DIR/$tdir/$tfile
2945         sync & # write RPC generated with "current" inode timestamp, but delayed
2946         sleep 1
2947         touch --date="$DATESTR" $DIR/$tdir/$tfile # setattr timestamp in past
2948         LS_BEFORE="`ls -l $DIR/$tdir/$tfile`" # old timestamp from client cache
2949         cancel_lru_locks osc
2950         LS_AFTER="`ls -l $DIR/$tdir/$tfile`"  # timestamp from OST object
2951         date; date +%s
2952         [ "$LS_BEFORE" != "$LS_AFTER" ] && \
2953                 echo "BEFORE: $LS_BEFORE" && \
2954                 echo "AFTER : $LS_AFTER" && \
2955                 echo "WANT  : $DATESTR" && \
2956                 error "$DIR/$tdir/$tfile timestamps changed" || true
2957
2958         export LANG=$LANG_SAVE LC_LANG=$LC_LANG_SAVE
2959 }
2960
2961 test_36f() {
2962         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2963         #define OBD_FAIL_OST_BRW_PAUSE_BULK 0x214
2964         subr_36fh "0x80000214"
2965 }
2966 run_test 36f "utime on file racing with OST BRW write =========="
2967
2968 test_36g() {
2969         remote_ost_nodsh && skip "remote OST with nodsh" && return
2970         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2971         local fmd_max_age
2972         local fmd_before
2973         local fmd_after
2974
2975         test_mkdir -p $DIR/$tdir
2976         fmd_max_age=$(do_facet ost1 \
2977                 "lctl get_param -n obdfilter.*.client_cache_seconds 2> /dev/null | \
2978                 head -n 1")
2979
2980         fmd_before=$(do_facet ost1 \
2981                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
2982         touch $DIR/$tdir/$tfile
2983         sleep $((fmd_max_age + 12))
2984         fmd_after=$(do_facet ost1 \
2985                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
2986
2987         echo "fmd_before: $fmd_before"
2988         echo "fmd_after: $fmd_after"
2989         [[ $fmd_after -gt $fmd_before ]] &&
2990                 echo "AFTER: $fmd_after > BEFORE: $fmd_before" &&
2991                 error "fmd didn't expire after ping" || true
2992 }
2993 run_test 36g "filter mod data cache expiry ====================="
2994
2995 test_36h() {
2996         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2997         #define OBD_FAIL_OST_BRW_PAUSE_BULK2 0x227
2998         subr_36fh "0x80000227"
2999 }
3000 run_test 36h "utime on file racing with OST BRW write =========="
3001
3002 test_36i() {
3003         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
3004
3005         test_mkdir $DIR/$tdir
3006         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir
3007
3008         local mtime=$(stat -c%Y $DIR/$tdir/striped_dir)
3009         local new_mtime=$((mtime + 200))
3010
3011         #change Modify time of striped dir
3012         touch -m -d @$new_mtime $DIR/$tdir/striped_dir ||
3013                         error "change mtime failed"
3014
3015         local got=$(stat -c%Y $DIR/$tdir/striped_dir)
3016
3017         [ "$new_mtime" = "$got" ] || error "expect $new_mtime got $got"
3018 }
3019 run_test 36i "change mtime on striped directory"
3020
3021 # test_37 - duplicate with tests 32q 32r
3022
3023 test_38() {
3024         local file=$DIR/$tfile
3025         touch $file
3026         openfile -f O_DIRECTORY $file
3027         local RC=$?
3028         local ENOTDIR=20
3029         [ $RC -eq 0 ] && error "opened file $file with O_DIRECTORY" || true
3030         [ $RC -eq $ENOTDIR ] || error "error $RC should be ENOTDIR ($ENOTDIR)"
3031 }
3032 run_test 38 "open a regular file with O_DIRECTORY should return -ENOTDIR ==="
3033
3034 test_39() {
3035         touch $DIR/$tfile
3036         touch $DIR/${tfile}2
3037 #       ls -l  $DIR/$tfile $DIR/${tfile}2
3038 #       ls -lu  $DIR/$tfile $DIR/${tfile}2
3039 #       ls -lc  $DIR/$tfile $DIR/${tfile}2
3040         sleep 2
3041         $OPENFILE -f O_CREAT:O_TRUNC:O_WRONLY $DIR/${tfile}2
3042         if [ ! $DIR/${tfile}2 -nt $DIR/$tfile ]; then
3043                 echo "mtime"
3044                 ls -l --full-time $DIR/$tfile $DIR/${tfile}2
3045                 echo "atime"
3046                 ls -lu --full-time $DIR/$tfile $DIR/${tfile}2
3047                 echo "ctime"
3048                 ls -lc --full-time $DIR/$tfile $DIR/${tfile}2
3049                 error "O_TRUNC didn't change timestamps"
3050         fi
3051 }
3052 run_test 39 "mtime changed on create ==========================="
3053
3054 test_39b() {
3055         test_mkdir -p -c1 $DIR/$tdir
3056         cp -p /etc/passwd $DIR/$tdir/fopen
3057         cp -p /etc/passwd $DIR/$tdir/flink
3058         cp -p /etc/passwd $DIR/$tdir/funlink
3059         cp -p /etc/passwd $DIR/$tdir/frename
3060         ln $DIR/$tdir/funlink $DIR/$tdir/funlink2
3061
3062         sleep 1
3063         echo "aaaaaa" >> $DIR/$tdir/fopen
3064         echo "aaaaaa" >> $DIR/$tdir/flink
3065         echo "aaaaaa" >> $DIR/$tdir/funlink
3066         echo "aaaaaa" >> $DIR/$tdir/frename
3067
3068         local open_new=`stat -c %Y $DIR/$tdir/fopen`
3069         local link_new=`stat -c %Y $DIR/$tdir/flink`
3070         local unlink_new=`stat -c %Y $DIR/$tdir/funlink`
3071         local rename_new=`stat -c %Y $DIR/$tdir/frename`
3072
3073         cat $DIR/$tdir/fopen > /dev/null
3074         ln $DIR/$tdir/flink $DIR/$tdir/flink2
3075         rm -f $DIR/$tdir/funlink2
3076         mv -f $DIR/$tdir/frename $DIR/$tdir/frename2
3077
3078         for (( i=0; i < 2; i++ )) ; do
3079                 local open_new2=`stat -c %Y $DIR/$tdir/fopen`
3080                 local link_new2=`stat -c %Y $DIR/$tdir/flink`
3081                 local unlink_new2=`stat -c %Y $DIR/$tdir/funlink`
3082                 local rename_new2=`stat -c %Y $DIR/$tdir/frename2`
3083
3084                 [ $open_new2 -eq $open_new ] || error "open file reverses mtime"
3085                 [ $link_new2 -eq $link_new ] || error "link file reverses mtime"
3086                 [ $unlink_new2 -eq $unlink_new ] || error "unlink file reverses mtime"
3087                 [ $rename_new2 -eq $rename_new ] || error "rename file reverses mtime"
3088
3089                 cancel_lru_locks osc
3090                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3091         done
3092 }
3093 run_test 39b "mtime change on open, link, unlink, rename  ======"
3094
3095 # this should be set to past
3096 TEST_39_MTIME=`date -d "1 year ago" +%s`
3097
3098 # bug 11063
3099 test_39c() {
3100         touch $DIR1/$tfile
3101         sleep 2
3102         local mtime0=`stat -c %Y $DIR1/$tfile`
3103
3104         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3105         local mtime1=`stat -c %Y $DIR1/$tfile`
3106         [ "$mtime1" = $TEST_39_MTIME ] || \
3107                 error "mtime is not set to past: $mtime1, should be $TEST_39_MTIME"
3108
3109         local d1=`date +%s`
3110         echo hello >> $DIR1/$tfile
3111         local d2=`date +%s`
3112         local mtime2=`stat -c %Y $DIR1/$tfile`
3113         [ "$mtime2" -ge "$d1" ] && [ "$mtime2" -le "$d2" ] || \
3114                 error "mtime is not updated on write: $d1 <= $mtime2 <= $d2"
3115
3116         mv $DIR1/$tfile $DIR1/$tfile-1
3117
3118         for (( i=0; i < 2; i++ )) ; do
3119                 local mtime3=`stat -c %Y $DIR1/$tfile-1`
3120                 [ "$mtime2" = "$mtime3" ] || \
3121                         error "mtime ($mtime2) changed (to $mtime3) on rename"
3122
3123                 cancel_lru_locks osc
3124                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3125         done
3126 }
3127 run_test 39c "mtime change on rename ==========================="
3128
3129 # bug 21114
3130 test_39d() {
3131         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3132         touch $DIR1/$tfile
3133
3134         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3135
3136         for (( i=0; i < 2; i++ )) ; do
3137                 local mtime=`stat -c %Y $DIR1/$tfile`
3138                 [ $mtime = $TEST_39_MTIME ] || \
3139                         error "mtime($mtime) is not set to $TEST_39_MTIME"
3140
3141                 cancel_lru_locks osc
3142                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3143         done
3144 }
3145 run_test 39d "create, utime, stat =============================="
3146
3147 # bug 21114
3148 test_39e() {
3149         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3150         touch $DIR1/$tfile
3151         local mtime1=`stat -c %Y $DIR1/$tfile`
3152
3153         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3154
3155         for (( i=0; i < 2; i++ )) ; do
3156                 local mtime2=`stat -c %Y $DIR1/$tfile`
3157                 [ $mtime2 = $TEST_39_MTIME ] || \
3158                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
3159
3160                 cancel_lru_locks osc
3161                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3162         done
3163 }
3164 run_test 39e "create, stat, utime, stat ========================"
3165
3166 # bug 21114
3167 test_39f() {
3168         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3169         touch $DIR1/$tfile
3170         mtime1=`stat -c %Y $DIR1/$tfile`
3171
3172         sleep 2
3173         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3174
3175         for (( i=0; i < 2; i++ )) ; do
3176                 local mtime2=`stat -c %Y $DIR1/$tfile`
3177                 [ $mtime2 = $TEST_39_MTIME ] || \
3178                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
3179
3180                 cancel_lru_locks osc
3181                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3182         done
3183 }
3184 run_test 39f "create, stat, sleep, utime, stat ================="
3185
3186 # bug 11063
3187 test_39g() {
3188         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3189         echo hello >> $DIR1/$tfile
3190         local mtime1=`stat -c %Y $DIR1/$tfile`
3191
3192         sleep 2
3193         chmod o+r $DIR1/$tfile
3194
3195         for (( i=0; i < 2; i++ )) ; do
3196                 local mtime2=`stat -c %Y $DIR1/$tfile`
3197                 [ "$mtime1" = "$mtime2" ] || \
3198                         error "lost mtime: $mtime2, should be $mtime1"
3199
3200                 cancel_lru_locks osc
3201                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3202         done
3203 }
3204 run_test 39g "write, chmod, stat ==============================="
3205
3206 # bug 11063
3207 test_39h() {
3208         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3209         touch $DIR1/$tfile
3210         sleep 1
3211
3212         local d1=`date`
3213         echo hello >> $DIR1/$tfile
3214         local mtime1=`stat -c %Y $DIR1/$tfile`
3215
3216         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3217         local d2=`date`
3218         if [ "$d1" != "$d2" ]; then
3219                 echo "write and touch not within one second"
3220         else
3221                 for (( i=0; i < 2; i++ )) ; do
3222                         local mtime2=`stat -c %Y $DIR1/$tfile`
3223                         [ "$mtime2" = $TEST_39_MTIME ] || \
3224                                 error "lost mtime: $mtime2, should be $TEST_39_MTIME"
3225
3226                         cancel_lru_locks osc
3227                         if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3228                 done
3229         fi
3230 }
3231 run_test 39h "write, utime within one second, stat ============="
3232
3233 test_39i() {
3234         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3235         touch $DIR1/$tfile
3236         sleep 1
3237
3238         echo hello >> $DIR1/$tfile
3239         local mtime1=`stat -c %Y $DIR1/$tfile`
3240
3241         mv $DIR1/$tfile $DIR1/$tfile-1
3242
3243         for (( i=0; i < 2; i++ )) ; do
3244                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
3245
3246                 [ "$mtime1" = "$mtime2" ] || \
3247                         error "lost mtime: $mtime2, should be $mtime1"
3248
3249                 cancel_lru_locks osc
3250                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3251         done
3252 }
3253 run_test 39i "write, rename, stat =============================="
3254
3255 test_39j() {
3256         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3257         start_full_debug_logging
3258         touch $DIR1/$tfile
3259         sleep 1
3260
3261         #define OBD_FAIL_OSC_DELAY_SETTIME       0x412
3262         lctl set_param fail_loc=0x80000412
3263         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c ||
3264                 error "multiop failed"
3265         local multipid=$!
3266         local mtime1=`stat -c %Y $DIR1/$tfile`
3267
3268         mv $DIR1/$tfile $DIR1/$tfile-1
3269
3270         kill -USR1 $multipid
3271         wait $multipid || error "multiop close failed"
3272
3273         for (( i=0; i < 2; i++ )) ; do
3274                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
3275                 [ "$mtime1" = "$mtime2" ] ||
3276                         error "mtime is lost on close: $mtime2, " \
3277                               "should be $mtime1"
3278
3279                 cancel_lru_locks osc
3280                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3281         done
3282         lctl set_param fail_loc=0
3283         stop_full_debug_logging
3284 }
3285 run_test 39j "write, rename, close, stat ======================="
3286
3287 test_39k() {
3288         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3289         touch $DIR1/$tfile
3290         sleep 1
3291
3292         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c || error "multiop failed"
3293         local multipid=$!
3294         local mtime1=`stat -c %Y $DIR1/$tfile`
3295
3296         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3297
3298         kill -USR1 $multipid
3299         wait $multipid || error "multiop close failed"
3300
3301         for (( i=0; i < 2; i++ )) ; do
3302                 local mtime2=`stat -c %Y $DIR1/$tfile`
3303
3304                 [ "$mtime2" = $TEST_39_MTIME ] || \
3305                         error "mtime is lost on close: $mtime2, should be $TEST_39_MTIME"
3306
3307                 cancel_lru_locks osc
3308                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3309         done
3310 }
3311 run_test 39k "write, utime, close, stat ========================"
3312
3313 # this should be set to future
3314 TEST_39_ATIME=`date -d "1 year" +%s`
3315
3316 test_39l() {
3317         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3318         remote_mds_nodsh && skip "remote MDS with nodsh" && return
3319         local atime_diff=$(do_facet $SINGLEMDS \
3320                                 lctl get_param -n mdd.*MDT0000*.atime_diff)
3321         rm -rf $DIR/$tdir
3322         mkdir -p $DIR/$tdir
3323
3324         # test setting directory atime to future
3325         touch -a -d @$TEST_39_ATIME $DIR/$tdir
3326         local atime=$(stat -c %X $DIR/$tdir)
3327         [ "$atime" = $TEST_39_ATIME ] || \
3328                 error "atime is not set to future: $atime, $TEST_39_ATIME"
3329
3330         # test setting directory atime from future to now
3331         local d1=$(date +%s)
3332         ls $DIR/$tdir
3333         local d2=$(date +%s)
3334
3335         cancel_lru_locks mdc
3336         atime=$(stat -c %X $DIR/$tdir)
3337         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] || \
3338                 error "atime is not updated from future: $atime, $d1<atime<$d2"
3339
3340         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=2
3341         sleep 3
3342
3343         # test setting directory atime when now > dir atime + atime_diff
3344         d1=$(date +%s)
3345         ls $DIR/$tdir
3346         d2=$(date +%s)
3347         cancel_lru_locks mdc
3348         atime=$(stat -c %X $DIR/$tdir)
3349         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] || \
3350                 error "atime is not updated  : $atime, should be $d2"
3351
3352         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=60
3353         sleep 3
3354
3355         # test not setting directory atime when now < dir atime + atime_diff
3356         ls $DIR/$tdir
3357         cancel_lru_locks mdc
3358         atime=$(stat -c %X $DIR/$tdir)
3359         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] || \
3360                 error "atime is updated to $atime, should remain $d1<atime<$d2"
3361
3362         do_facet $SINGLEMDS \
3363                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
3364 }
3365 run_test 39l "directory atime update ==========================="
3366
3367 test_39m() {
3368         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3369         touch $DIR1/$tfile
3370         sleep 2
3371         local far_past_mtime=$(date -d "May 29 1953" +%s)
3372         local far_past_atime=$(date -d "Dec 17 1903" +%s)
3373
3374         touch -m -d @$far_past_mtime $DIR1/$tfile
3375         touch -a -d @$far_past_atime $DIR1/$tfile
3376
3377         for (( i=0; i < 2; i++ )) ; do
3378                 local timestamps=$(stat -c "%X %Y" $DIR1/$tfile)
3379                 [ "$timestamps" = "$far_past_atime $far_past_mtime" ] || \
3380                         error "atime or mtime set incorrectly"
3381
3382                 cancel_lru_locks osc
3383                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3384         done
3385 }
3386 run_test 39m "test atime and mtime before 1970"
3387
3388 test_39n() { # LU-3832
3389         local atime_diff=$(do_facet $SINGLEMDS \
3390                 lctl get_param -n mdd.*MDT0000*.atime_diff)
3391         local atime0
3392         local atime1
3393         local atime2
3394
3395         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=1
3396
3397         rm -rf $DIR/$tfile
3398         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 status=noxfer
3399         atime0=$(stat -c %X $DIR/$tfile)
3400
3401         sleep 5
3402         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
3403         atime1=$(stat -c %X $DIR/$tfile)
3404
3405         sleep 5
3406         cancel_lru_locks mdc
3407         cancel_lru_locks osc
3408         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
3409         atime2=$(stat -c %X $DIR/$tfile)
3410
3411         do_facet $SINGLEMDS \
3412                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
3413
3414         [ "$atime0" -eq "$atime1" ] || error "atime0 $atime0 != atime1 $atime1"
3415         [ "$atime1" -eq "$atime2" ] || error "atime0 $atime0 != atime1 $atime1"
3416 }
3417 run_test 39n "check that O_NOATIME is honored"
3418
3419 test_39o() {
3420         TESTDIR=$DIR/$tdir/$tfile
3421         [ -e $TESTDIR ] && rm -rf $TESTDIR
3422         mkdir -p $TESTDIR
3423         cd $TESTDIR
3424         links1=2
3425         ls
3426         mkdir a b
3427         ls
3428         links2=$(stat -c %h .)
3429         [ $(($links1 + 2)) != $links2 ] &&
3430                 error "wrong links count $(($links1 + 2)) != $links2"
3431         rmdir b
3432         links3=$(stat -c %h .)
3433         [ $(($links1 + 1)) != $links3 ] &&
3434                 error "wrong links count $links1 != $links3"
3435         return 0
3436 }
3437 run_test 39o "directory cached attributes updated after create ========"
3438
3439 test_39p() {
3440         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
3441         local MDTIDX=1
3442         TESTDIR=$DIR/$tdir/$tfile
3443         [ -e $TESTDIR ] && rm -rf $TESTDIR
3444         test_mkdir -p $TESTDIR
3445         cd $TESTDIR
3446         links1=2
3447         ls
3448         $LFS mkdir -i $MDTIDX $TESTDIR/remote_dir1
3449         $LFS mkdir -i $MDTIDX $TESTDIR/remote_dir2
3450         ls
3451         links2=$(stat -c %h .)
3452         [ $(($links1 + 2)) != $links2 ] &&
3453                 error "wrong links count $(($links1 + 2)) != $links2"
3454         rmdir remote_dir2
3455         links3=$(stat -c %h .)
3456         [ $(($links1 + 1)) != $links3 ] &&
3457                 error "wrong links count $links1 != $links3"
3458         return 0
3459 }
3460 run_test 39p "remote directory cached attributes updated after create ========"
3461
3462
3463 test_40() {
3464         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
3465         $RUNAS $OPENFILE -f O_WRONLY:O_TRUNC $DIR/$tfile &&
3466                 error "openfile O_WRONLY:O_TRUNC $tfile failed"
3467         $CHECKSTAT -t file -s 4096 $DIR/$tfile ||
3468                 error "$tfile is not 4096 bytes in size"
3469 }
3470 run_test 40 "failed open(O_TRUNC) doesn't truncate ============="
3471
3472 test_41() {
3473         # bug 1553
3474         small_write $DIR/f41 18
3475 }
3476 run_test 41 "test small file write + fstat ====================="
3477
3478 count_ost_writes() {
3479         lctl get_param -n osc.*.stats |
3480                 awk -vwrites=0 '/ost_write/ { writes += $2 } \
3481                         END { printf("%0.0f", writes) }'
3482 }
3483
3484 # decent default
3485 WRITEBACK_SAVE=500
3486 DIRTY_RATIO_SAVE=40
3487 MAX_DIRTY_RATIO=50
3488 BG_DIRTY_RATIO_SAVE=10
3489 MAX_BG_DIRTY_RATIO=25
3490
3491 start_writeback() {
3492         trap 0
3493         # in 2.6, restore /proc/sys/vm/dirty_writeback_centisecs,
3494         # dirty_ratio, dirty_background_ratio
3495         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3496                 sysctl -w vm.dirty_writeback_centisecs=$WRITEBACK_SAVE
3497                 sysctl -w vm.dirty_background_ratio=$BG_DIRTY_RATIO_SAVE
3498                 sysctl -w vm.dirty_ratio=$DIRTY_RATIO_SAVE
3499         else
3500                 # if file not here, we are a 2.4 kernel
3501                 kill -CONT `pidof kupdated`
3502         fi
3503 }
3504
3505 stop_writeback() {
3506         # setup the trap first, so someone cannot exit the test at the
3507         # exact wrong time and mess up a machine
3508         trap start_writeback EXIT
3509         # in 2.6, save and 0 /proc/sys/vm/dirty_writeback_centisecs
3510         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3511                 WRITEBACK_SAVE=`sysctl -n vm.dirty_writeback_centisecs`
3512                 sysctl -w vm.dirty_writeback_centisecs=0
3513                 sysctl -w vm.dirty_writeback_centisecs=0
3514                 # save and increase /proc/sys/vm/dirty_ratio
3515                 DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_ratio`
3516                 sysctl -w vm.dirty_ratio=$MAX_DIRTY_RATIO
3517                 # save and increase /proc/sys/vm/dirty_background_ratio
3518                 BG_DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_background_ratio`
3519                 sysctl -w vm.dirty_background_ratio=$MAX_BG_DIRTY_RATIO
3520         else
3521                 # if file not here, we are a 2.4 kernel
3522                 kill -STOP `pidof kupdated`
3523         fi
3524 }
3525
3526 # ensure that all stripes have some grant before we test client-side cache
3527 setup_test42() {
3528         for i in `seq -f $DIR/f42-%g 1 $OSTCOUNT`; do
3529                 dd if=/dev/zero of=$i bs=4k count=1
3530                 rm $i
3531         done
3532 }
3533
3534 # Tests 42* verify that our behaviour is correct WRT caching, file closure,
3535 # file truncation, and file removal.
3536 test_42a() {
3537         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3538         setup_test42
3539         cancel_lru_locks osc
3540         stop_writeback
3541         sync; sleep 1; sync # just to be safe
3542         BEFOREWRITES=`count_ost_writes`
3543         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur_grant_bytes | grep "[0-9]"
3544         dd if=/dev/zero of=$DIR/f42a bs=1024 count=100
3545         AFTERWRITES=`count_ost_writes`
3546         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
3547                 error "$BEFOREWRITES < $AFTERWRITES"
3548         start_writeback
3549 }
3550 run_test 42a "ensure that we don't flush on close =============="
3551
3552 test_42b() {
3553         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3554         setup_test42
3555         cancel_lru_locks osc
3556         stop_writeback
3557         sync
3558         dd if=/dev/zero of=$DIR/f42b bs=1024 count=100
3559         BEFOREWRITES=$(count_ost_writes)
3560         $MUNLINK $DIR/f42b || error "$MUNLINK $DIR/f42b: $?"
3561         AFTERWRITES=$(count_ost_writes)
3562         if [[ $BEFOREWRITES -lt $AFTERWRITES ]]; then
3563                 error "$BEFOREWRITES < $AFTERWRITES on unlink"
3564         fi
3565         BEFOREWRITES=$(count_ost_writes)
3566         sync || error "sync: $?"
3567         AFTERWRITES=$(count_ost_writes)
3568         if [[ $BEFOREWRITES -lt $AFTERWRITES ]]; then
3569                 error "$BEFOREWRITES < $AFTERWRITES on sync"
3570         fi
3571         dmesg | grep 'error from obd_brw_async' && error 'error writing back'
3572         start_writeback
3573         return 0
3574 }
3575 run_test 42b "test destroy of file with cached dirty data ======"
3576
3577 # if these tests just want to test the effect of truncation,
3578 # they have to be very careful.  consider:
3579 # - the first open gets a {0,EOF}PR lock
3580 # - the first write conflicts and gets a {0, count-1}PW
3581 # - the rest of the writes are under {count,EOF}PW
3582 # - the open for truncate tries to match a {0,EOF}PR
3583 #   for the filesize and cancels the PWs.
3584 # any number of fixes (don't get {0,EOF} on open, match
3585 # composite locks, do smarter file size management) fix
3586 # this, but for now we want these tests to verify that
3587 # the cancellation with truncate intent works, so we
3588 # start the file with a full-file pw lock to match against
3589 # until the truncate.
3590 trunc_test() {
3591         test=$1
3592         file=$DIR/$test
3593         offset=$2
3594         cancel_lru_locks osc
3595         stop_writeback
3596         # prime the file with 0,EOF PW to match
3597         touch $file
3598         $TRUNCATE $file 0
3599         sync; sync
3600         # now the real test..
3601         dd if=/dev/zero of=$file bs=1024 count=100
3602         BEFOREWRITES=`count_ost_writes`
3603         $TRUNCATE $file $offset
3604         cancel_lru_locks osc
3605         AFTERWRITES=`count_ost_writes`
3606         start_writeback
3607 }
3608
3609 test_42c() {
3610         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3611         trunc_test 42c 1024
3612         [ $BEFOREWRITES -eq $AFTERWRITES ] && \
3613             error "beforewrites $BEFOREWRITES == afterwrites $AFTERWRITES on truncate"
3614         rm $file
3615 }
3616 run_test 42c "test partial truncate of file with cached dirty data"
3617
3618 test_42d() {
3619         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3620         trunc_test 42d 0
3621         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
3622             error "beforewrites $BEFOREWRITES != afterwrites $AFTERWRITES on truncate"
3623         rm $file
3624 }
3625 run_test 42d "test complete truncate of file with cached dirty data"
3626
3627 test_42e() { # bug22074
3628         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3629         local TDIR=$DIR/${tdir}e
3630         local pagesz=$(page_size)
3631         local pages=16 # hardcoded 16 pages, don't change it.
3632         local files=$((OSTCOUNT * 500)) # hopefully 500 files on each OST
3633         local proc_osc0="osc.${FSNAME}-OST0000-osc-[^MDT]*"
3634         local max_dirty_mb
3635         local warmup_files
3636
3637         test_mkdir -p $DIR/${tdir}e
3638         $SETSTRIPE -c 1 $TDIR
3639         createmany -o $TDIR/f $files
3640
3641         max_dirty_mb=$($LCTL get_param -n $proc_osc0/max_dirty_mb)
3642
3643         # we assume that with $OSTCOUNT files, at least one of them will
3644         # be allocated on OST0.
3645         warmup_files=$((OSTCOUNT * max_dirty_mb))
3646         createmany -o $TDIR/w $warmup_files
3647
3648         # write a large amount of data into one file and sync, to get good
3649         # avail_grant number from OST.
3650         for ((i=0; i<$warmup_files; i++)); do
3651                 idx=$($GETSTRIPE -i $TDIR/w$i)
3652                 [ $idx -ne 0 ] && continue
3653                 dd if=/dev/zero of=$TDIR/w$i bs="$max_dirty_mb"M count=1
3654                 break
3655         done
3656         [[ $i -gt $warmup_files ]] && error "OST0 is still cold"
3657         sync
3658         $LCTL get_param $proc_osc0/cur_dirty_bytes
3659         $LCTL get_param $proc_osc0/cur_grant_bytes
3660
3661         # create as much dirty pages as we can while not to trigger the actual
3662         # RPCs directly. but depends on the env, VFS may trigger flush during this
3663         # period, hopefully we are good.
3664         for ((i=0; i<$warmup_files; i++)); do
3665                 idx=$($GETSTRIPE -i $TDIR/w$i)
3666                 [ $idx -ne 0 ] && continue
3667                 dd if=/dev/zero of=$TDIR/w$i bs=1M count=1 2>/dev/null
3668         done
3669         $LCTL get_param $proc_osc0/cur_dirty_bytes
3670         $LCTL get_param $proc_osc0/cur_grant_bytes
3671
3672         # perform the real test
3673         $LCTL set_param $proc_osc0/rpc_stats 0
3674         for ((;i<$files; i++)); do
3675                 [ $($GETSTRIPE -i $TDIR/f$i) -eq 0 ] || continue
3676                 dd if=/dev/zero of=$TDIR/f$i bs=$pagesz count=$pages 2>/dev/null
3677         done
3678         sync
3679         $LCTL get_param $proc_osc0/rpc_stats
3680
3681         local percent=0
3682         local have_ppr=false
3683         $LCTL get_param $proc_osc0/rpc_stats |
3684                 while read PPR RRPC RPCT RCUM BAR WRPC WPCT WCUM; do
3685                         # skip lines until we are at the RPC histogram data
3686                         [ "$PPR" == "pages" ] && have_ppr=true && continue
3687                         $have_ppr || continue
3688
3689                         # we only want the percent stat for < 16 pages
3690                         [[ $(echo $PPR | tr -d ':') -ge $pages ]] && break
3691
3692                         percent=$((percent + WPCT))
3693                         if [[ $percent -gt 15 ]]; then
3694                                 error "less than 16-pages write RPCs" \
3695                                       "$percent% > 15%"
3696                                 break
3697                         fi
3698                 done
3699         rm -rf $TDIR
3700 }
3701 run_test 42e "verify sub-RPC writes are not done synchronously"
3702
3703 test_43() {
3704         test_mkdir -p $DIR/$tdir
3705         cp -p /bin/ls $DIR/$tdir/$tfile
3706         $MULTIOP $DIR/$tdir/$tfile Ow_c &
3707         pid=$!
3708         # give multiop a chance to open
3709         sleep 1
3710
3711         $DIR/$tdir/$tfile && error || true
3712         kill -USR1 $pid
3713 }
3714 run_test 43 "execution of file opened for write should return -ETXTBSY"
3715
3716 test_43a() {
3717         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3718         test_mkdir -p $DIR/$tdir
3719         cp -p `which $MULTIOP` $DIR/$tdir/multiop ||
3720                         cp -p multiop $DIR/$tdir/multiop
3721         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/$tfile.junk O_c ||
3722                         return 1
3723         MULTIOP_PID=$!
3724         $MULTIOP $DIR/$tdir/multiop Oc && error "expected error, got success"
3725         kill -USR1 $MULTIOP_PID || return 2
3726         wait $MULTIOP_PID || return 3
3727         rm $TMP/$tfile.junk $DIR/$tdir/multiop
3728 }
3729 run_test 43a "open(RDWR) of file being executed should return -ETXTBSY"
3730
3731 test_43b() {
3732         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3733         test_mkdir -p $DIR/$tdir
3734         cp -p `which $MULTIOP` $DIR/$tdir/multiop ||
3735                         cp -p multiop $DIR/$tdir/multiop
3736         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/$tfile.junk O_c ||
3737                         return 1
3738         MULTIOP_PID=$!
3739         $TRUNCATE $DIR/$tdir/multiop 0 && error "expected error, got success"
3740         kill -USR1 $MULTIOP_PID || return 2
3741         wait $MULTIOP_PID || return 3
3742         rm $TMP/$tfile.junk $DIR/$tdir/multiop
3743 }
3744 run_test 43b "truncate of file being executed should return -ETXTBSY"
3745
3746 test_43c() {
3747         local testdir="$DIR/$tdir"
3748         test_mkdir -p $DIR/$tdir
3749         cp $SHELL $testdir/
3750         ( cd $(dirname $SHELL) && md5sum $(basename $SHELL) ) | \
3751                 ( cd $testdir && md5sum -c)
3752 }
3753 run_test 43c "md5sum of copy into lustre========================"
3754
3755 test_44() {
3756         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping 2-stripe test" && return
3757         dd if=/dev/zero of=$DIR/f1 bs=4k count=1 seek=1023
3758         dd if=$DIR/f1 bs=4k count=1 > /dev/null
3759 }
3760 run_test 44 "zero length read from a sparse stripe ============="
3761
3762 test_44a() {
3763         local nstripe=$($LCTL lov_getconfig $DIR | grep default_stripe_count: |
3764                 awk '{ print $2 }')
3765         [ -z "$nstripe" ] && skip "can't get stripe info" && return
3766         [[ $nstripe -gt $OSTCOUNT ]] &&
3767             skip "Wrong default_stripe_count: $nstripe (OSTCOUNT: $OSTCOUNT)" &&
3768             return
3769         local stride=$($LCTL lov_getconfig $DIR | grep default_stripe_size: |
3770                 awk '{ print $2 }')
3771         if [[ $nstripe -eq 0 || $nstripe -eq -1 ]]; then
3772                 nstripe=$($LCTL lov_getconfig $DIR | grep obd_count: |
3773                         awk '{ print $2 }')
3774         fi
3775
3776         OFFSETS="0 $((stride/2)) $((stride-1))"
3777         for offset in $OFFSETS; do
3778                 for i in $(seq 0 $((nstripe-1))); do
3779                         local GLOBALOFFSETS=""
3780                         # size in Bytes
3781                         local size=$((((i + 2 * $nstripe )*$stride + $offset)))
3782                         local myfn=$DIR/d44a-$size
3783                         echo "--------writing $myfn at $size"
3784                         ll_sparseness_write $myfn $size ||
3785                                 error "ll_sparseness_write"
3786                         GLOBALOFFSETS="$GLOBALOFFSETS $size"
3787                         ll_sparseness_verify $myfn $GLOBALOFFSETS ||
3788                                 error "ll_sparseness_verify $GLOBALOFFSETS"
3789
3790                         for j in $(seq 0 $((nstripe-1))); do
3791                                 # size in Bytes
3792                                 size=$((((j + $nstripe )*$stride + $offset)))
3793                                 ll_sparseness_write $myfn $size ||
3794                                         error "ll_sparseness_write"
3795                                 GLOBALOFFSETS="$GLOBALOFFSETS $size"
3796                         done
3797                         ll_sparseness_verify $myfn $GLOBALOFFSETS ||
3798                                 error "ll_sparseness_verify $GLOBALOFFSETS"
3799                         rm -f $myfn
3800                 done
3801         done
3802 }
3803 run_test 44a "test sparse pwrite ==============================="
3804
3805 dirty_osc_total() {
3806         tot=0
3807         for d in `lctl get_param -n osc.*.cur_dirty_bytes`; do
3808                 tot=$(($tot + $d))
3809         done
3810         echo $tot
3811 }
3812 do_dirty_record() {
3813         before=`dirty_osc_total`
3814         echo executing "\"$*\""
3815         eval $*
3816         after=`dirty_osc_total`
3817         echo before $before, after $after
3818 }
3819 test_45() {
3820         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3821         f="$DIR/f45"
3822         # Obtain grants from OST if it supports it
3823         echo blah > ${f}_grant
3824         stop_writeback
3825         sync
3826         do_dirty_record "echo blah > $f"
3827         [[ $before -eq $after ]] && error "write wasn't cached"
3828         do_dirty_record "> $f"
3829         [[ $before -gt $after ]] || error "truncate didn't lower dirty count"
3830         do_dirty_record "echo blah > $f"
3831         [[ $before -eq $after ]] && error "write wasn't cached"
3832         do_dirty_record "sync"
3833         [[ $before -gt $after ]] || error "writeback didn't lower dirty count"
3834         do_dirty_record "echo blah > $f"
3835         [[ $before -eq $after ]] && error "write wasn't cached"
3836         do_dirty_record "cancel_lru_locks osc"
3837         [[ $before -gt $after ]] ||
3838                 error "lock cancellation didn't lower dirty count"
3839         start_writeback
3840 }
3841 run_test 45 "osc io page accounting ============================"
3842
3843 # in a 2 stripe file (lov.sh), page 1023 maps to page 511 in its object.  this
3844 # test tickles a bug where re-dirtying a page was failing to be mapped to the
3845 # objects offset and an assert hit when an rpc was built with 1023's mapped
3846 # offset 511 and 511's raw 511 offset. it also found general redirtying bugs.
3847 test_46() {
3848         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3849         f="$DIR/f46"
3850         stop_writeback
3851         sync
3852         dd if=/dev/zero of=$f bs=`page_size` seek=511 count=1
3853         sync
3854         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=1023 count=1
3855         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=511 count=1
3856         sync
3857         start_writeback
3858 }
3859 run_test 46 "dirtying a previously written page ================"
3860
3861 # test_47 is removed "Device nodes check" is moved to test_28
3862
3863 test_48a() { # bug 2399
3864         [ $(facet_fstype $SINGLEMDS) = "zfs" ] &&
3865         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.63) ] &&
3866                 skip "MDS prior to 2.3.63 handle ZFS dir .. incorrectly" &&
3867                 return
3868         test_mkdir $DIR/$tdir
3869         cd $DIR/$tdir
3870         mv $DIR/$tdir $DIR/$tdir.new || error "move directory failed"
3871         test_mkdir $DIR/$tdir || error "recreate directory failed"
3872         touch foo || error "'touch foo' failed after recreating cwd"
3873         test_mkdir bar || error "'mkdir foo' failed after recreating cwd"
3874         touch .foo || error "'touch .foo' failed after recreating cwd"
3875         test_mkdir .bar || error "'mkdir .foo' failed after recreating cwd"
3876         ls . > /dev/null || error "'ls .' failed after recreating cwd"
3877         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
3878         cd . || error "'cd .' failed after recreating cwd"
3879         test_mkdir . && error "'mkdir .' worked after recreating cwd"
3880         rmdir . && error "'rmdir .' worked after recreating cwd"
3881         ln -s . baz || error "'ln -s .' failed after recreating cwd"
3882         cd .. || error "'cd ..' failed after recreating cwd"
3883 }
3884 run_test 48a "Access renamed working dir (should return errors)="
3885
3886 test_48b() { # bug 2399
3887         rm -rf $DIR/$tdir
3888         test_mkdir $DIR/$tdir
3889         cd $DIR/$tdir
3890         rmdir $DIR/$tdir || error "remove cwd $DIR/$tdir failed"
3891         touch foo && error "'touch foo' worked after removing cwd"
3892         test_mkdir foo && error "'mkdir foo' worked after removing cwd"
3893         touch .foo && error "'touch .foo' worked after removing cwd"
3894         test_mkdir .foo && error "'mkdir .foo' worked after removing cwd"
3895         ls . > /dev/null && error "'ls .' worked after removing cwd"
3896         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
3897         is_patchless || ( cd . && error "'cd .' worked after removing cwd" )
3898         test_mkdir . && error "'mkdir .' worked after removing cwd"
3899         rmdir . && error "'rmdir .' worked after removing cwd"
3900         ln -s . foo && error "'ln -s .' worked after removing cwd"
3901         cd .. || echo "'cd ..' failed after removing cwd `pwd`"  #bug 3517
3902 }
3903 run_test 48b "Access removed working dir (should return errors)="
3904
3905 test_48c() { # bug 2350
3906         #lctl set_param debug=-1
3907         #set -vx
3908         rm -rf $DIR/$tdir
3909         test_mkdir -p $DIR/$tdir/dir
3910         cd $DIR/$tdir/dir
3911         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
3912         $TRACE touch foo && error "touch foo worked after removing cwd"
3913         $TRACE test_mkdir foo && error "'mkdir foo' worked after removing cwd"
3914         touch .foo && error "touch .foo worked after removing cwd"
3915         test_mkdir .foo && error "mkdir .foo worked after removing cwd"
3916         $TRACE ls . && error "'ls .' worked after removing cwd"
3917         $TRACE ls .. || error "'ls ..' failed after removing cwd"
3918         is_patchless || ( $TRACE cd . &&
3919                         error "'cd .' worked after removing cwd" )
3920         $TRACE test_mkdir . && error "'mkdir .' worked after removing cwd"
3921         $TRACE rmdir . && error "'rmdir .' worked after removing cwd"
3922         $TRACE ln -s . foo && error "'ln -s .' worked after removing cwd"
3923         $TRACE cd .. || echo "'cd ..' failed after removing cwd `pwd`" #bug 3415
3924 }
3925 run_test 48c "Access removed working subdir (should return errors)"
3926
3927 test_48d() { # bug 2350
3928         #lctl set_param debug=-1
3929         #set -vx
3930         rm -rf $DIR/$tdir
3931         test_mkdir -p $DIR/$tdir/dir
3932         cd $DIR/$tdir/dir
3933         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
3934         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
3935         $TRACE touch foo && error "'touch foo' worked after removing parent"
3936         $TRACE test_mkdir foo && error "mkdir foo worked after removing parent"
3937         touch .foo && error "'touch .foo' worked after removing parent"
3938         test_mkdir .foo && error "mkdir .foo worked after removing parent"
3939         $TRACE ls . && error "'ls .' worked after removing parent"
3940         $TRACE ls .. && error "'ls ..' worked after removing parent"
3941         is_patchless || ( $TRACE cd . &&
3942                         error "'cd .' worked after recreate parent" )
3943         $TRACE test_mkdir . && error "'mkdir .' worked after removing parent"
3944         $TRACE rmdir . && error "'rmdir .' worked after removing parent"
3945         $TRACE ln -s . foo && error "'ln -s .' worked after removing parent"
3946         is_patchless || ( $TRACE cd .. &&
3947                         error "'cd ..' worked after removing parent" || true )
3948 }
3949 run_test 48d "Access removed parent subdir (should return errors)"
3950
3951 test_48e() { # bug 4134
3952         #lctl set_param debug=-1
3953         #set -vx
3954         rm -rf $DIR/$tdir
3955         test_mkdir -p $DIR/$tdir/dir
3956         cd $DIR/$tdir/dir
3957         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
3958         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
3959         $TRACE touch $DIR/$tdir || error "'touch $DIR/$tdir' failed"
3960         $TRACE chmod +x $DIR/$tdir || error "'chmod +x $DIR/$tdir' failed"
3961         # On a buggy kernel addition of "touch foo" after cd .. will
3962         # produce kernel oops in lookup_hash_it
3963         touch ../foo && error "'cd ..' worked after recreate parent"
3964         cd $DIR
3965         $TRACE rm $DIR/$tdir || error "rm '$DIR/$tdir' failed"
3966 }
3967 run_test 48e "Access to recreated parent subdir (should return errors)"
3968
3969 test_49() { # LU-1030
3970         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3971         # get ost1 size - lustre-OST0000
3972         ost1_size=$(do_facet ost1 $LFS df | grep ${ost1_svc} |
3973                 awk '{ print $4 }')
3974         # write 800M at maximum
3975         [[ $ost1_size -lt 2 ]] && ost1_size=2
3976         [[ $ost1_size -gt 819200 ]] && ost1_size=819200
3977
3978         $SETSTRIPE -c 1 -i 0 $DIR/$tfile
3979         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((ost1_size >> 2)) &
3980         local dd_pid=$!
3981
3982         # change max_pages_per_rpc while writing the file
3983         local osc1_mppc=osc.$(get_osc_import_name client ost1).max_pages_per_rpc
3984         local orig_mppc=$($LCTL get_param -n $osc1_mppc)
3985         # loop until dd process exits
3986         while ps ax -opid | grep -wq $dd_pid; do
3987                 $LCTL set_param $osc1_mppc=$((RANDOM % 256 + 1))
3988                 sleep $((RANDOM % 5 + 1))
3989         done
3990         # restore original max_pages_per_rpc
3991         $LCTL set_param $osc1_mppc=$orig_mppc
3992         rm $DIR/$tfile || error "rm $DIR/$tfile failed"
3993 }
3994 run_test 49 "Change max_pages_per_rpc won't break osc extent"
3995
3996 test_50() {
3997         # bug 1485
3998         test_mkdir $DIR/$tdir
3999         cd $DIR/$tdir
4000         ls /proc/$$/cwd || error "ls /proc/$$/cwd failed"
4001 }
4002 run_test 50 "special situations: /proc symlinks  ==============="
4003
4004 test_51a() {    # was test_51
4005         # bug 1516 - create an empty entry right after ".." then split dir
4006         test_mkdir -c1 $DIR/$tdir
4007         touch $DIR/$tdir/foo
4008         $MCREATE $DIR/$tdir/bar
4009         rm $DIR/$tdir/foo
4010         createmany -m $DIR/$tdir/longfile 201
4011         FNUM=202
4012         while [[ $(ls -sd $DIR/$tdir | awk '{ print $1 }') -eq 4 ]]; do
4013                 $MCREATE $DIR/$tdir/longfile$FNUM
4014                 FNUM=$(($FNUM + 1))
4015                 echo -n "+"
4016         done
4017         echo
4018         ls -l $DIR/$tdir > /dev/null || error "ls -l $DIR/$tdir failed"
4019 }
4020 run_test 51a "special situations: split htree with empty entry =="
4021
4022 export NUMTEST=70000
4023 test_51b() {
4024         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4025         local BASE=$DIR/d${base}.${TESTSUITE}
4026
4027         # cleanup the directory
4028         rm -fr $BASE
4029
4030         test_mkdir -p -c1 $BASE
4031
4032         $LFS df
4033         $LFS df -i
4034         local mdtidx=$(printf "%04x" $($LFS getstripe -M $BASE))
4035         local numfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.filesfree)
4036         [[ $numfree -lt 21000 ]] &&
4037                 skip "not enough free inodes ($numfree) on MDT$mdtidx" &&
4038                 return
4039
4040         [[ $numfree -lt $NUMTEST ]] && NUMTEST=$(($numfree - 50)) &&
4041                 echo "reduced count to $NUMTEST due to inodes on MDT$mdtidx"
4042
4043         # need to check free space for the directories as well
4044         local blkfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.kbytesavail)
4045         numfree=$((blkfree / 4))
4046         [[ $numfree -lt $NUMTEST ]] && NUMTEST=$((numfree - 50)) &&
4047                 echo "reduced count to $NUMTEST due to blocks on MDT$mdtidx"
4048
4049         createmany -d $BASE/d $NUMTEST && echo $NUMTEST > $BASE/fnum ||
4050         {
4051                 $LFS df
4052                 $LFS df -i
4053                 echo "failed" > $BASE/fnum
4054                 error "failed to create $NUMTEST subdirs in MDT$mdtidx:$BASE"
4055         }
4056 }
4057 run_test 51b "exceed 64k subdirectory nlink limit"
4058
4059 test_51ba() { # LU-993
4060         local BASE=$DIR/d${base}.${TESTSUITE}
4061         # unlink all but 100 subdirectories, then check it still works
4062         local LEFT=100
4063         [ -f $BASE/fnum ] && local NUMPREV=$(cat $BASE/fnum) && rm $BASE/fnum
4064
4065         [ "$NUMPREV" != "failed" ] && NUMTEST=$NUMPREV
4066         local DELETE=$((NUMTEST - LEFT))
4067
4068         # continue on to run this test even if 51b didn't finish,
4069         # just to delete the many subdirectories created.
4070         [ ! -d "${BASE}/d1" ] && skip "test_51b() not run" && return 0
4071
4072         # for ldiskfs the nlink count should be 1, but this is OSD specific
4073         # and so this is listed for informational purposes only
4074         echo "nlink before: $(stat -c %h $BASE), created before: $NUMTEST"
4075         unlinkmany -d $BASE/d $DELETE
4076         RC=$?
4077
4078         if [ $RC -ne 0 ]; then
4079                 if [ "$NUMPREV" == "failed" ]; then
4080                         skip "previous setup failed"
4081                         return 0
4082                 else
4083                         error "unlink of first $DELETE subdirs failed"
4084                         return $RC
4085                 fi
4086         fi
4087
4088         echo "nlink between: $(stat -c %h $BASE)"
4089         # trim the first line of ls output
4090         local FOUND=$(($(ls -l ${BASE} | wc -l) - 1))
4091         [ $FOUND -ne $LEFT ] &&
4092                 error "can't find subdirs: found only $FOUND/$LEFT"
4093
4094         unlinkmany -d $BASE/d $DELETE $LEFT ||
4095                 error "unlink of second $LEFT subdirs failed"
4096         # regardless of whether the backing filesystem tracks nlink accurately
4097         # or not, the nlink count shouldn't be more than "." and ".." here
4098         local AFTER=$(stat -c %h $BASE)
4099         [[ $AFTER -gt 2 ]] && error "nlink after: $AFTER > 2" ||
4100                 echo "nlink after: $AFTER"
4101 }
4102 run_test 51ba "verify nlink for many subdirectory cleanup"
4103
4104 test_51d() {
4105         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4106         [[ $OSTCOUNT -lt 3 ]] &&
4107                 skip_env "skipping test with few OSTs" && return
4108         test_mkdir -p $DIR/$tdir
4109         createmany -o $DIR/$tdir/t- 1000
4110         $GETSTRIPE $DIR/$tdir > $TMP/files
4111         for N in $(seq 0 $((OSTCOUNT - 1))); do
4112                 OBJS[$N]=$(awk -vobjs=0 '($1 == '$N') { objs += 1 } \
4113                         END { printf("%0.0f", objs) }' $TMP/files)
4114                 OBJS0[$N]=$(grep -A 1 idx $TMP/files | awk -vobjs=0 \
4115                         '($1 == '$N') { objs += 1 } \
4116                         END { printf("%0.0f", objs) }')
4117                 log "OST$N has ${OBJS[$N]} objects, ${OBJS0[$N]} are index 0"
4118         done
4119         unlinkmany $DIR/$tdir/t- 1000
4120
4121         NLAST=0
4122         for N in $(seq 1 $((OSTCOUNT - 1))); do
4123                 [[ ${OBJS[$N]} -lt $((${OBJS[$NLAST]} - 20)) ]] &&
4124                         error "OST $N has less objects vs OST $NLAST" \
4125                               " (${OBJS[$N]} < ${OBJS[$NLAST]}"
4126                 [[ ${OBJS[$N]} -gt $((${OBJS[$NLAST]} + 20)) ]] &&
4127                         error "OST $N has less objects vs OST $NLAST" \
4128                               " (${OBJS[$N]} < ${OBJS[$NLAST]}"
4129
4130                 [[ ${OBJS0[$N]} -lt $((${OBJS0[$NLAST]} - 20)) ]] &&
4131                         error "OST $N has less #0 objects vs OST $NLAST" \
4132                               " (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
4133                 [[ ${OBJS0[$N]} -gt $((${OBJS0[$NLAST]} + 20)) ]] &&
4134                         error "OST $N has less #0 objects vs OST $NLAST" \
4135                               " (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
4136                 NLAST=$N
4137         done
4138 }
4139 run_test 51d "check object distribution ===================="
4140
4141 test_51e() {
4142         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
4143                 skip "Only applicable to ldiskfs-based MDTs"
4144                 return
4145         fi
4146
4147         test_mkdir -c1 $DIR/$tdir       || error "create $tdir failed"
4148         test_mkdir -c1 $DIR/$tdir/d0    || error "create d0 failed"
4149
4150         touch $DIR/$tdir/d0/foo
4151         createmany -l $DIR/$tdir/d0/foo $DIR/$tdir/d0/f- 65001 &&
4152                 error "file exceed 65000 nlink limit!"
4153         unlinkmany $DIR/$tdir/d0/f- 65001
4154         return 0
4155 }
4156 run_test 51e "check file nlink limit"
4157
4158 test_52a() {
4159         [ -f $DIR/$tdir/foo ] && chattr -a $DIR/$tdir/foo
4160         test_mkdir -p $DIR/$tdir
4161         touch $DIR/$tdir/foo
4162         chattr +a $DIR/$tdir/foo || error "chattr +a failed"
4163         echo bar >> $DIR/$tdir/foo || error "append bar failed"
4164         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
4165         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
4166         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
4167                                         error "link worked"
4168         echo foo >> $DIR/$tdir/foo || error "append foo failed"
4169         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
4170         lsattr $DIR/$tdir/foo | egrep -q "^-+a[-e]+ $DIR/$tdir/foo" ||
4171                                                      error "lsattr"
4172         chattr -a $DIR/$tdir/foo || error "chattr -a failed"
4173         cp -r $DIR/$tdir /tmp/
4174         rm -fr $DIR/$tdir || error "cleanup rm failed"
4175 }
4176 run_test 52a "append-only flag test (should return errors) ====="
4177
4178 test_52b() {
4179         [ -f $DIR/$tdir/foo ] && chattr -i $DIR/$tdir/foo
4180         test_mkdir -p $DIR/$tdir
4181         touch $DIR/$tdir/foo
4182         chattr +i $DIR/$tdir/foo || error "chattr +i failed"
4183         cat test > $DIR/$tdir/foo && error "cat test worked"
4184         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
4185         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
4186         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
4187                                         error "link worked"
4188         echo foo >> $DIR/$tdir/foo && error "echo worked"
4189         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
4190         [ -f $DIR/$tdir/foo ] || error "$tdir/foo is not a file"
4191         [ -f $DIR/$tdir/foo_ren ] && error "$tdir/foo_ren is not a file"
4192         lsattr $DIR/$tdir/foo | egrep -q "^-+i[-e]+ $DIR/$tdir/foo" ||
4193                                                         error "lsattr"
4194         chattr -i $DIR/$tdir/foo || error "chattr failed"
4195
4196         rm -fr $DIR/$tdir || error "unable to remove $DIR/$tdir"
4197 }
4198 run_test 52b "immutable flag test (should return errors) ======="
4199
4200 test_53() {
4201         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4202         remote_mds_nodsh && skip "remote MDS with nodsh" && return
4203         remote_ost_nodsh && skip "remote OST with nodsh" && return
4204
4205         local param
4206         local param_seq
4207         local ostname
4208         local mds_last
4209         local mds_last_seq
4210         local ost_last
4211         local ost_last_seq
4212         local ost_last_id
4213         local ostnum
4214         local node
4215         local found=false
4216         local support_last_seq=true
4217
4218         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.60) ]] ||
4219                 support_last_seq=false
4220
4221         # only test MDT0000
4222         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS)
4223         local value
4224         for value in $(do_facet $SINGLEMDS \
4225                        $LCTL get_param osc.$mdtosc.prealloc_last_id) ; do
4226                 param=$(echo ${value[0]} | cut -d "=" -f1)
4227                 ostname=$(echo $param | cut -d "." -f2 | cut -d - -f 1-2)
4228
4229                 if $support_last_seq; then
4230                         param_seq=$(echo $param |
4231                                 sed -e s/prealloc_last_id/prealloc_last_seq/g)
4232                         mds_last_seq=$(do_facet $SINGLEMDS \
4233                                        $LCTL get_param -n $param_seq)
4234                 fi
4235                 mds_last=$(do_facet $SINGLEMDS $LCTL get_param -n $param)
4236
4237                 ostnum=$(index_from_ostuuid ${ostname}_UUID)
4238                 node=$(facet_active_host ost$((ostnum+1)))
4239                 param="obdfilter.$ostname.last_id"
4240                 for ost_last in $(do_node $node $LCTL get_param -n $param) ; do
4241                         echo "$ostname.last_id=$ost_last; MDS.last_id=$mds_last"
4242                         ost_last_id=$ost_last
4243
4244                         if $support_last_seq; then
4245                                 ost_last_id=$(echo $ost_last |
4246                                               awk -F':' '{print $2}' |
4247                                               sed -e "s/^0x//g")
4248                                 ost_last_seq=$(echo $ost_last |
4249                                                awk -F':' '{print $1}')
4250                                 [[ $ost_last_seq = $mds_last_seq ]] || continue
4251                         fi
4252
4253                         if [[ $ost_last_id != $mds_last ]]; then
4254                                 error "$ost_last_id != $mds_last"
4255                         else
4256                                 found=true
4257                                 break
4258                         fi
4259                 done
4260         done
4261         $found || error "can not match last_seq/last_id for $mdtosc"
4262         return 0
4263 }
4264 run_test 53 "verify that MDS and OSTs agree on pre-creation ===="
4265
4266 test_54a() {
4267         $SOCKETSERVER $DIR/socket ||
4268                 error "$SOCKETSERVER $DIR/socket failed: $?"
4269         $SOCKETCLIENT $DIR/socket ||
4270                 error "$SOCKETCLIENT $DIR/socket failed: $?"
4271         $MUNLINK $DIR/socket || error "$MUNLINK $DIR/socket failed: $?"
4272 }
4273 run_test 54a "unix domain socket test =========================="
4274
4275 test_54b() {
4276         f="$DIR/f54b"
4277         mknod $f c 1 3
4278         chmod 0666 $f
4279         dd if=/dev/zero of=$f bs=$(page_size) count=1
4280 }
4281 run_test 54b "char device works in lustre ======================"
4282
4283 find_loop_dev() {
4284         [ -b /dev/loop/0 ] && LOOPBASE=/dev/loop/
4285         [ -b /dev/loop0 ] && LOOPBASE=/dev/loop
4286         [ -z "$LOOPBASE" ] && echo "/dev/loop/0 and /dev/loop0 gone?" && return
4287
4288         for i in $(seq 3 7); do
4289                 losetup $LOOPBASE$i > /dev/null 2>&1 && continue
4290                 LOOPDEV=$LOOPBASE$i
4291                 LOOPNUM=$i
4292                 break
4293         done
4294 }
4295
4296 cleanup_54c() {
4297         loopdev="$DIR/loop54c"
4298
4299         trap 0
4300         $UMOUNT -d $DIR/$tdir || rc=$?
4301         losetup -d $loopdev || true
4302         losetup -d $LOOPDEV || true
4303         rm -rf $loopdev $DIR/$tfile $DIR/$tdir
4304         return $rc
4305 }
4306
4307 test_54c() {
4308         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4309         loopdev="$DIR/loop54c"
4310
4311         find_loop_dev
4312         [ -z "$LOOPNUM" ] && echo "couldn't find empty loop device" && return
4313         trap cleanup_54c EXIT
4314         mknod $loopdev b 7 $LOOPNUM
4315         echo "make a loop file system with $DIR/$tfile on $loopdev ($LOOPNUM)."
4316         dd if=/dev/zero of=$DIR/$tfile bs=$(get_page_size client) seek=1024 count=1 > /dev/null
4317         losetup $loopdev $DIR/$tfile ||
4318                 error "can't set up $loopdev for $DIR/$tfile"
4319         mkfs.ext2 $loopdev || error "mke2fs on $loopdev"
4320         test_mkdir -p $DIR/$tdir
4321         mount -t ext2 $loopdev $DIR/$tdir ||
4322                 error "error mounting $loopdev on $DIR/$tdir"
4323         dd if=/dev/zero of=$DIR/$tdir/tmp bs=$(get_page_size client) count=30 ||
4324                 error "dd write"
4325         df $DIR/$tdir
4326         dd if=$DIR/$tdir/tmp of=/dev/zero bs=$(get_page_size client) count=30 ||
4327                 error "dd read"
4328         cleanup_54c
4329 }
4330 run_test 54c "block device works in lustre ====================="
4331
4332 test_54d() {
4333         f="$DIR/f54d"
4334         string="aaaaaa"
4335         mknod $f p
4336         [ "$string" = $(echo $string > $f | cat $f) ] || error "$f != $string"
4337 }
4338 run_test 54d "fifo device works in lustre ======================"
4339
4340 test_54e() {
4341         f="$DIR/f54e"
4342         string="aaaaaa"
4343         cp -aL /dev/console $f
4344         echo $string > $f || error "echo $string to $f failed"
4345 }
4346 run_test 54e "console/tty device works in lustre ======================"
4347
4348 #The test_55 used to be iopen test and it was removed by bz#24037.
4349 #run_test 55 "check iopen_connect_dentry() ======================"
4350
4351 test_56a() {    # was test_56
4352         rm -rf $DIR/$tdir
4353         $SETSTRIPE -d $DIR
4354         test_mkdir -p $DIR/$tdir/dir
4355         NUMFILES=3
4356         NUMFILESx2=$(($NUMFILES * 2))
4357         for i in $(seq 1 $NUMFILES); do
4358                 touch $DIR/$tdir/file$i
4359                 touch $DIR/$tdir/dir/file$i
4360         done
4361
4362         # test lfs getstripe with --recursive
4363         FILENUM=$($GETSTRIPE --recursive $DIR/$tdir | grep -c obdidx)
4364         [[ $FILENUM -eq $NUMFILESx2 ]] ||
4365                 error "$GETSTRIPE --recursive: found $FILENUM, not $NUMFILESx2"
4366         FILENUM=$($GETSTRIPE $DIR/$tdir | grep -c obdidx)
4367         [[ $FILENUM -eq $NUMFILES ]] ||
4368                 error "$GETSTRIPE $DIR/$tdir: found $FILENUM, not $NUMFILES"
4369         echo "$GETSTRIPE --recursive passed."
4370
4371         # test lfs getstripe with file instead of dir
4372         FILENUM=$($GETSTRIPE $DIR/$tdir/file1 | grep -c obdidx)
4373         [[ $FILENUM -eq 1 ]] ||
4374                 error "$GETSTRIPE $DIR/$tdir/file1: found $FILENUM, not 1"
4375         echo "$GETSTRIPE file1 passed."
4376
4377         #test lfs getstripe with --verbose
4378         [[ $($GETSTRIPE --verbose $DIR/$tdir |
4379                 grep -c lmm_magic) -eq $NUMFILES ]] ||
4380                 error "$GETSTRIPE --verbose $DIR/$tdir: want $NUMFILES"
4381         [[ $($GETSTRIPE $DIR/$tdir | grep -c lmm_magic) -eq 0 ]] ||
4382                 rror "$GETSTRIPE $DIR/$tdir: showed lmm_magic"
4383         echo "$GETSTRIPE --verbose passed."
4384
4385         #test lfs getstripe with --obd
4386         $GETSTRIPE --obd wrong_uuid $DIR/$tdir 2>&1 |
4387                 grep -q "unknown obduuid" ||
4388                 error "$GETSTRIPE --obd wrong_uuid should return error message"
4389
4390         [[ $OSTCOUNT -lt 2 ]] &&
4391                 skip_env "skipping other $GETSTRIPE --obd test" && return
4392
4393         OSTIDX=1
4394         OBDUUID=$(ostuuid_from_index $OSTIDX)
4395         FILENUM=$($GETSTRIPE -ir $DIR/$tdir | grep "^$OSTIDX\$" | wc -l)
4396         FOUND=$($GETSTRIPE -r --obd $OBDUUID $DIR/$tdir | grep obdidx | wc -l)
4397         [[ $FOUND -eq $FILENUM ]] ||
4398                 error "$GETSTRIPE --obd wrong: found $FOUND, expected $FILENUM"
4399         [[ $($GETSTRIPE -r -v --obd $OBDUUID $DIR/$tdir |
4400                 sed '/^[         ]*'${OSTIDX}'[  ]/d' |
4401                 sed -n '/^[      ]*[0-9][0-9]*[  ]/p' | wc -l) -eq 0 ]] ||
4402                 error "$GETSTRIPE --obd: should not show file on other obd"
4403         echo "$GETSTRIPE --obd passed"
4404 }
4405 run_test 56a "check $GETSTRIPE"
4406
4407 NUMFILES=3
4408 NUMDIRS=3
4409 setup_56() {
4410         local LOCAL_NUMFILES="$1"
4411         local LOCAL_NUMDIRS="$2"
4412         local MKDIR_PARAMS="$3"
4413         local DIR_STRIPE_PARAMS="$4"
4414
4415         if [ ! -d "$TDIR" ] ; then
4416                 test_mkdir -p $DIR_STRIPE_PARAMS $TDIR
4417                 [ "$MKDIR_PARAMS" ] && $SETSTRIPE $MKDIR_PARAMS $TDIR
4418                 for i in `seq 1 $LOCAL_NUMFILES` ; do
4419                         touch $TDIR/file$i
4420                 done
4421                 for i in `seq 1 $LOCAL_NUMDIRS` ; do
4422                         test_mkdir $DIR_STRIPE_PARAMS $TDIR/dir$i
4423                         for j in `seq 1 $LOCAL_NUMFILES` ; do
4424                                 touch $TDIR/dir$i/file$j
4425                         done
4426                 done
4427         fi
4428 }
4429
4430 setup_56_special() {
4431         LOCAL_NUMFILES=$1
4432         LOCAL_NUMDIRS=$2
4433         setup_56 $1 $2
4434         if [ ! -e "$TDIR/loop1b" ] ; then
4435                 for i in `seq 1 $LOCAL_NUMFILES` ; do
4436                         mknod $TDIR/loop${i}b b 7 $i
4437                         mknod $TDIR/null${i}c c 1 3
4438                         ln -s $TDIR/file1 $TDIR/link${i}l
4439                 done
4440                 for i in `seq 1 $LOCAL_NUMDIRS` ; do
4441                         mknod $TDIR/dir$i/loop${i}b b 7 $i
4442                         mknod $TDIR/dir$i/null${i}c c 1 3
4443                         ln -s $TDIR/dir$i/file1 $TDIR/dir$i/link${i}l
4444                 done
4445         fi
4446 }
4447
4448 test_56g() {
4449         $SETSTRIPE -d $DIR
4450
4451         TDIR=$DIR/${tdir}g
4452         setup_56 $NUMFILES $NUMDIRS
4453
4454         EXPECTED=$(($NUMDIRS + 2))
4455         # test lfs find with -name
4456         for i in $(seq 1 $NUMFILES) ; do
4457                 NUMS=$($LFIND -name "*$i" $TDIR | wc -l)
4458                 [ $NUMS -eq $EXPECTED ] ||
4459                         error "lfs find -name \"*$i\" $TDIR wrong: "\
4460                               "found $NUMS, expected $EXPECTED"
4461         done
4462 }
4463 run_test 56g "check lfs find -name ============================="
4464
4465 test_56h() {
4466         $SETSTRIPE -d $DIR
4467
4468         TDIR=$DIR/${tdir}g
4469         setup_56 $NUMFILES $NUMDIRS
4470
4471         EXPECTED=$(((NUMDIRS + 1) * (NUMFILES - 1) + NUMFILES))
4472         # test lfs find with ! -name
4473         for i in $(seq 1 $NUMFILES) ; do
4474                 NUMS=$($LFIND ! -name "*$i" $TDIR | wc -l)
4475                 [ $NUMS -eq $EXPECTED ] ||
4476                         error "lfs find ! -name \"*$i\" $TDIR wrong: "\
4477                               "found $NUMS, expected $EXPECTED"
4478         done
4479 }
4480 run_test 56h "check lfs find ! -name ============================="
4481
4482 test_56i() {
4483        tdir=${tdir}i
4484        test_mkdir -p $DIR/$tdir
4485        UUID=$(ostuuid_from_index 0 $DIR/$tdir)
4486        CMD="$LFIND -ost $UUID $DIR/$tdir"
4487        OUT=$($CMD)
4488        [ -z "$OUT" ] || error "\"$CMD\" returned directory '$OUT'"
4489 }
4490 run_test 56i "check 'lfs find -ost UUID' skips directories ======="
4491
4492 test_56j() {
4493         TDIR=$DIR/${tdir}g
4494         setup_56_special $NUMFILES $NUMDIRS
4495
4496         EXPECTED=$((NUMDIRS + 1))
4497         CMD="$LFIND -type d $TDIR"
4498         NUMS=$($CMD | wc -l)
4499         [ $NUMS -eq $EXPECTED ] ||
4500                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4501 }
4502 run_test 56j "check lfs find -type d ============================="
4503
4504 test_56k() {
4505         TDIR=$DIR/${tdir}g
4506         setup_56_special $NUMFILES $NUMDIRS
4507
4508         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4509         CMD="$LFIND -type f $TDIR"
4510         NUMS=$($CMD | wc -l)
4511         [ $NUMS -eq $EXPECTED ] ||
4512                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4513 }
4514 run_test 56k "check lfs find -type f ============================="
4515
4516 test_56l() {
4517         TDIR=$DIR/${tdir}g
4518         setup_56_special $NUMFILES $NUMDIRS
4519
4520         EXPECTED=$((NUMDIRS + NUMFILES))
4521         CMD="$LFIND -type b $TDIR"
4522         NUMS=$($CMD | wc -l)
4523         [ $NUMS -eq $EXPECTED ] ||
4524                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4525 }
4526 run_test 56l "check lfs find -type b ============================="
4527
4528 test_56m() {
4529         TDIR=$DIR/${tdir}g
4530         setup_56_special $NUMFILES $NUMDIRS
4531
4532         EXPECTED=$((NUMDIRS + NUMFILES))
4533         CMD="$LFIND -type c $TDIR"
4534         NUMS=$($CMD | wc -l)
4535         [ $NUMS -eq $EXPECTED ] ||
4536                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4537 }
4538 run_test 56m "check lfs find -type c ============================="
4539
4540 test_56n() {
4541         TDIR=$DIR/${tdir}g
4542         setup_56_special $NUMFILES $NUMDIRS
4543
4544         EXPECTED=$((NUMDIRS + NUMFILES))
4545         CMD="$LFIND -type l $TDIR"
4546         NUMS=$($CMD | wc -l)
4547         [ $NUMS -eq $EXPECTED ] ||
4548                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4549 }
4550 run_test 56n "check lfs find -type l ============================="
4551
4552 test_56o() {
4553         TDIR=$DIR/${tdir}o
4554         setup_56 $NUMFILES $NUMDIRS
4555         utime $TDIR/file1 > /dev/null || error "utime (1)"
4556         utime $TDIR/file2 > /dev/null || error "utime (2)"
4557         utime $TDIR/dir1 > /dev/null || error "utime (3)"
4558         utime $TDIR/dir2 > /dev/null || error "utime (4)"
4559         utime $TDIR/dir1/file1 > /dev/null || error "utime (5)"
4560         dd if=/dev/zero count=1 >> $TDIR/dir1/file1 && sync
4561
4562         EXPECTED=4
4563         NUMS=`$LFIND -mtime +0 $TDIR | wc -l`
4564         [ $NUMS -eq $EXPECTED ] || \
4565                 error "lfs find -mtime +0 $TDIR wrong: found $NUMS, expected $EXPECTED"
4566
4567         EXPECTED=12
4568         CMD="$LFIND -mtime 0 $TDIR"
4569         NUMS=$($CMD | wc -l)
4570         [ $NUMS -eq $EXPECTED ] ||
4571                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4572 }
4573 run_test 56o "check lfs find -mtime for old files =========================="
4574
4575 test_56p() {
4576         [ $RUNAS_ID -eq $UID ] &&
4577                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
4578
4579         TDIR=$DIR/${tdir}p
4580         setup_56 $NUMFILES $NUMDIRS
4581
4582         chown $RUNAS_ID $TDIR/file* || error "chown $DIR/${tdir}g/file$i failed"
4583         EXPECTED=$NUMFILES
4584         CMD="$LFIND -uid $RUNAS_ID $TDIR"
4585         NUMS=$($CMD | wc -l)
4586         [ $NUMS -eq $EXPECTED ] || \
4587                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4588
4589         EXPECTED=$(((NUMFILES + 1) * NUMDIRS + 1))
4590         CMD="$LFIND ! -uid $RUNAS_ID $TDIR"
4591         NUMS=$($CMD | wc -l)
4592         [ $NUMS -eq $EXPECTED ] || \
4593                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4594 }
4595 run_test 56p "check lfs find -uid and ! -uid ==============================="
4596
4597 test_56q() {
4598         [ $RUNAS_ID -eq $UID ] &&
4599                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
4600
4601         TDIR=$DIR/${tdir}q
4602         setup_56 $NUMFILES $NUMDIRS
4603
4604         chgrp $RUNAS_GID $TDIR/file* || error "chown $TDIR/file$i failed"
4605
4606         EXPECTED=$NUMFILES
4607         CMD="$LFIND -gid $RUNAS_GID $TDIR"
4608         NUMS=$($CMD | wc -l)
4609         [ $NUMS -eq $EXPECTED ] ||
4610                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4611
4612         EXPECTED=$(( ($NUMFILES+1) * $NUMDIRS + 1))
4613         CMD="$LFIND ! -gid $RUNAS_GID $TDIR"
4614         NUMS=$($CMD | wc -l)
4615         [ $NUMS -eq $EXPECTED ] ||
4616                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4617 }
4618 run_test 56q "check lfs find -gid and ! -gid ==============================="
4619
4620 test_56r() {
4621         TDIR=$DIR/${tdir}r
4622         setup_56 $NUMFILES $NUMDIRS
4623
4624         EXPECTED=12
4625         CMD="$LFIND -size 0 -type f $TDIR"
4626         NUMS=$($CMD | wc -l)
4627         [ $NUMS -eq $EXPECTED ] ||
4628                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4629         EXPECTED=0
4630         CMD="$LFIND ! -size 0 -type f $TDIR"
4631         NUMS=$($CMD | wc -l)
4632         [ $NUMS -eq $EXPECTED ] ||
4633                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4634         echo "test" > $TDIR/$tfile
4635         echo "test2" > $TDIR/$tfile.2 && sync
4636         EXPECTED=1
4637         CMD="$LFIND -size 5 -type f $TDIR"
4638         NUMS=$($CMD | wc -l)
4639         [ $NUMS -eq $EXPECTED ] ||
4640                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4641         EXPECTED=1
4642         CMD="$LFIND -size +5 -type f $TDIR"
4643         NUMS=$($CMD | wc -l)
4644         [ $NUMS -eq $EXPECTED ] ||
4645                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4646         EXPECTED=2
4647         CMD="$LFIND -size +0 -type f $TDIR"
4648         NUMS=$($CMD | wc -l)
4649         [ $NUMS -eq $EXPECTED ] ||
4650                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4651         EXPECTED=2
4652         CMD="$LFIND ! -size -5 -type f $TDIR"
4653         NUMS=$($CMD | wc -l)
4654         [ $NUMS -eq $EXPECTED ] ||
4655                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4656         EXPECTED=12
4657         CMD="$LFIND -size -5 -type f $TDIR"
4658         NUMS=$($CMD | wc -l)
4659         [ $NUMS -eq $EXPECTED ] ||
4660                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4661 }
4662 run_test 56r "check lfs find -size works =========================="
4663
4664 test_56s() { # LU-611
4665         TDIR=$DIR/${tdir}s
4666         setup_56 $NUMFILES $NUMDIRS "-c $OSTCOUNT"
4667
4668         if [[ $OSTCOUNT -gt 1 ]]; then
4669                 $SETSTRIPE -c 1 $TDIR/$tfile.{0,1,2,3}
4670                 ONESTRIPE=4
4671                 EXTRA=4
4672         else
4673                 ONESTRIPE=$(((NUMDIRS + 1) * NUMFILES))
4674                 EXTRA=0
4675         fi
4676
4677         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4678         CMD="$LFIND -stripe-count $OSTCOUNT -type f $TDIR"
4679         NUMS=$($CMD | wc -l)
4680         [ $NUMS -eq $EXPECTED ] || {
4681                 $GETSTRIPE -R $TDIR
4682                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4683         }
4684
4685         EXPECTED=$(((NUMDIRS + 1) * NUMFILES + EXTRA))
4686         CMD="$LFIND -stripe-count +0 -type f $TDIR"
4687         NUMS=$($CMD | wc -l)
4688         [ $NUMS -eq $EXPECTED ] || {
4689                 $GETSTRIPE -R $TDIR
4690                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4691         }
4692
4693         EXPECTED=$ONESTRIPE
4694         CMD="$LFIND -stripe-count 1 -type f $TDIR"
4695         NUMS=$($CMD | wc -l)
4696         [ $NUMS -eq $EXPECTED ] || {
4697                 $GETSTRIPE -R $TDIR
4698                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4699         }
4700
4701         CMD="$LFIND -stripe-count -2 -type f $TDIR"
4702         NUMS=$($CMD | wc -l)
4703         [ $NUMS -eq $EXPECTED ] || {
4704                 $GETSTRIPE -R $TDIR
4705                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4706         }
4707
4708         EXPECTED=0
4709         CMD="$LFIND -stripe-count $((OSTCOUNT + 1)) -type f $TDIR"
4710         NUMS=$($CMD | wc -l)
4711         [ $NUMS -eq $EXPECTED ] || {
4712                 $GETSTRIPE -R $TDIR
4713                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4714         }
4715 }
4716 run_test 56s "check lfs find -stripe-count works"
4717
4718 test_56t() { # LU-611
4719         TDIR=$DIR/${tdir}t
4720         setup_56 $NUMFILES $NUMDIRS "-s 512k"
4721
4722         $SETSTRIPE -S 256k $TDIR/$tfile.{0,1,2,3}
4723
4724         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4725         CMD="$LFIND -stripe-size 512k -type f $TDIR"
4726         NUMS=$($CMD | wc -l)
4727         [ $NUMS -eq $EXPECTED ] ||
4728                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4729
4730         CMD="$LFIND -stripe-size +320k -type f $TDIR"
4731         NUMS=$($CMD | wc -l)
4732         [ $NUMS -eq $EXPECTED ] ||
4733                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4734
4735         EXPECTED=$(((NUMDIRS + 1) * NUMFILES + 4))
4736         CMD="$LFIND -stripe-size +200k -type f $TDIR"
4737         NUMS=$($CMD | wc -l)
4738         [ $NUMS -eq $EXPECTED ] ||
4739                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4740
4741         CMD="$LFIND -stripe-size -640k -type f $TDIR"
4742         NUMS=$($CMD | wc -l)
4743         [ $NUMS -eq $EXPECTED ] ||
4744                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4745
4746         EXPECTED=4
4747         CMD="$LFIND -stripe-size 256k -type f $TDIR"
4748         NUMS=$($CMD | wc -l)
4749         [ $NUMS -eq $EXPECTED ] ||
4750                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4751
4752         CMD="$LFIND -stripe-size -320k -type f $TDIR"
4753         NUMS=$($CMD | wc -l)
4754         [ $NUMS -eq $EXPECTED ] ||
4755                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4756
4757         EXPECTED=0
4758         CMD="$LFIND -stripe-size 1024k -type f $TDIR"
4759         NUMS=$($CMD | wc -l)
4760         [ $NUMS -eq $EXPECTED ] ||
4761                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4762 }
4763 run_test 56t "check lfs find -stripe-size works"
4764
4765 test_56u() { # LU-611
4766         TDIR=$DIR/${tdir}u
4767         setup_56 $NUMFILES $NUMDIRS "-i 0"
4768
4769         if [[ $OSTCOUNT -gt 1 ]]; then
4770                 $SETSTRIPE -i 1 $TDIR/$tfile.{0,1,2,3}
4771                 ONESTRIPE=4
4772         else
4773                 ONESTRIPE=0
4774         fi
4775
4776         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4777         CMD="$LFIND -stripe-index 0 -type f $TDIR"
4778         NUMS=$($CMD | wc -l)
4779         [ $NUMS -eq $EXPECTED ] ||
4780                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4781
4782         EXPECTED=$ONESTRIPE
4783         CMD="$LFIND -stripe-index 1 -type f $TDIR"
4784         NUMS=$($CMD | wc -l)
4785         [ $NUMS -eq $EXPECTED ] ||
4786                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4787
4788         CMD="$LFIND ! -stripe-index 0 -type f $TDIR"
4789         NUMS=$($CMD | wc -l)
4790         [ $NUMS -eq $EXPECTED ] ||
4791                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4792
4793         EXPECTED=0
4794         # This should produce an error and not return any files
4795         CMD="$LFIND -stripe-index $OSTCOUNT -type f $TDIR"
4796         NUMS=$($CMD 2>/dev/null | wc -l)
4797         [ $NUMS -eq $EXPECTED ] ||
4798                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4799
4800         if [[ $OSTCOUNT -gt 1 ]]; then
4801                 EXPECTED=$(((NUMDIRS + 1) * NUMFILES + ONESTRIPE))
4802                 CMD="$LFIND -stripe-index 0,1 -type f $TDIR"
4803                 NUMS=$($CMD | wc -l)
4804                 [ $NUMS -eq $EXPECTED ] ||
4805                         error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4806         fi
4807 }
4808 run_test 56u "check lfs find -stripe-index works"
4809
4810 test_56v() {
4811     local MDT_IDX=0
4812
4813     TDIR=$DIR/${tdir}v
4814     rm -rf $TDIR
4815     setup_56 $NUMFILES $NUMDIRS
4816
4817     UUID=$(mdtuuid_from_index $MDT_IDX $TDIR)
4818     [ -z "$UUID" ] && error "mdtuuid_from_index cannot find MDT index $MDT_IDX"
4819
4820     for file in $($LFIND -mdt $UUID $TDIR); do
4821         file_mdt_idx=$($GETSTRIPE -M $file)
4822         [ $file_mdt_idx -eq $MDT_IDX ] ||
4823             error "'lfind -mdt $UUID' != 'getstripe -M' ($file_mdt_idx)"
4824     done
4825 }
4826 run_test 56v "check 'lfs find -mdt match with lfs getstripe -M' ======="
4827
4828 test_56w() {
4829         [[ $OSTCOUNT -lt 2 ]] && skip_env "$OSTCOUNT < 2 OSTs -- skipping" &&
4830                 return
4831         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4832         TDIR=$DIR/${tdir}w
4833
4834     rm -rf $TDIR || error "remove $TDIR failed"
4835     setup_56 $NUMFILES $NUMDIRS "-c $OSTCOUNT" "-c1"
4836
4837     local stripe_size
4838     stripe_size=$($GETSTRIPE -S -d $TDIR) ||
4839         error "$GETSTRIPE -S -d $TDIR failed"
4840     stripe_size=${stripe_size%% *}
4841
4842     local file_size=$((stripe_size * OSTCOUNT))
4843     local file_num=$((NUMDIRS * NUMFILES + NUMFILES))
4844     local required_space=$((file_num * file_size))
4845     local free_space=$($LCTL get_param -n lov.$LOVNAME.kbytesavail)
4846     [[ $free_space -le $((required_space / 1024)) ]] &&
4847         skip_env "need at least $required_space bytes free space," \
4848                  "have $free_space kbytes" && return
4849
4850     local dd_bs=65536
4851     local dd_count=$((file_size / dd_bs))
4852
4853     # write data into the files
4854     local i
4855     local j
4856     local file
4857     for i in $(seq 1 $NUMFILES); do
4858         file=$TDIR/file$i
4859         yes | dd bs=$dd_bs count=$dd_count of=$file >/dev/null 2>&1 ||
4860             error "write data into $file failed"
4861     done
4862     for i in $(seq 1 $NUMDIRS); do
4863         for j in $(seq 1 $NUMFILES); do
4864             file=$TDIR/dir$i/file$j
4865             yes | dd bs=$dd_bs count=$dd_count of=$file \
4866                 >/dev/null 2>&1 ||
4867                 error "write data into $file failed"
4868         done
4869     done
4870
4871     local expected=-1
4872     [[ $OSTCOUNT -gt 1 ]] && expected=$((OSTCOUNT - 1))
4873
4874     # lfs_migrate file
4875     local cmd="$LFS_MIGRATE -y -c $expected $TDIR/file1"
4876     echo "$cmd"
4877     eval $cmd || error "$cmd failed"
4878
4879     check_stripe_count $TDIR/file1 $expected
4880
4881         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.90) ];
4882         then
4883                 # lfs_migrate file onto OST 0 if it is on OST 1, or onto
4884                 # OST 1 if it is on OST 0. This file is small enough to
4885                 # be on only one stripe.
4886                 file=$TDIR/migr_1_ost
4887                 dd bs=$dd_bs count=1 if=/dev/urandom of=$file >/dev/null 2>&1 ||
4888                         error "write data into $file failed"
4889                 local obdidx=$($LFS getstripe -i $file)
4890                 local oldmd5=$(md5sum $file)
4891                 local newobdidx=0
4892                 [[ $obdidx -eq 0 ]] && newobdidx=1
4893                 cmd="$LFS migrate -i $newobdidx $file"
4894                 echo $cmd
4895                 eval $cmd || error "$cmd failed"
4896                 local realobdix=$($LFS getstripe -i $file)
4897                 local newmd5=$(md5sum $file)
4898                 [[ $newobdidx -ne $realobdix ]] &&
4899                         error "new OST is different (was=$obdidx, wanted=$newobdidx, got=$realobdix)"
4900                 [[ "$oldmd5" != "$newmd5" ]] &&
4901                         error "md5sum differ: $oldmd5, $newmd5"
4902         fi
4903
4904     # lfs_migrate dir
4905     cmd="$LFS_MIGRATE -y -c $expected $TDIR/dir1"
4906     echo "$cmd"
4907     eval $cmd || error "$cmd failed"
4908
4909     for j in $(seq 1 $NUMFILES); do
4910         check_stripe_count $TDIR/dir1/file$j $expected
4911     done
4912
4913     # lfs_migrate works with lfs find
4914     cmd="$LFIND -stripe_count $OSTCOUNT -type f $TDIR |
4915          $LFS_MIGRATE -y -c $expected"
4916     echo "$cmd"
4917     eval $cmd || error "$cmd failed"
4918
4919     for i in $(seq 2 $NUMFILES); do
4920         check_stripe_count $TDIR/file$i $expected
4921     done
4922     for i in $(seq 2 $NUMDIRS); do
4923         for j in $(seq 1 $NUMFILES); do
4924             check_stripe_count $TDIR/dir$i/file$j $expected
4925         done
4926     done
4927 }
4928 run_test 56w "check lfs_migrate -c stripe_count works"
4929
4930 test_56x() {
4931         check_swap_layouts_support && return 0
4932         [[ $OSTCOUNT -lt 2 ]] &&
4933                 skip_env "need 2 OST, skipping test" && return
4934
4935         local dir0=$DIR/$tdir/$testnum
4936         test_mkdir -p $dir0 || error "creating dir $dir0"
4937
4938         local ref1=/etc/passwd
4939         local file1=$dir0/file1
4940
4941         $SETSTRIPE -c 2 $file1
4942         cp $ref1 $file1
4943         $LFS migrate -c 1 $file1 || error "migrate failed rc = $?"
4944         stripe=$($GETSTRIPE -c $file1)
4945         [[ $stripe == 1 ]] || error "stripe of $file1 is $stripe != 1"
4946         cmp $file1 $ref1 || error "content mismatch $file1 differs from $ref1"
4947
4948         # clean up
4949         rm -f $file1
4950 }
4951 run_test 56x "lfs migration support"
4952
4953 test_56y() {
4954         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.53) ] &&
4955                 skip "No HSM $(lustre_build_version $SINGLEMDS) MDS < 2.4.53" &&
4956                 return
4957
4958         local res=""
4959         local dir0=$DIR/$tdir/$testnum
4960         test_mkdir -p $dir0 || error "creating dir $dir0"
4961         local f1=$dir0/file1
4962         local f2=$dir0/file2
4963
4964         touch $f1 || error "creating std file $f1"
4965         $MULTIOP $f2 H2c || error "creating released file $f2"
4966
4967         # a directory can be raid0, so ask only for files
4968         res=$($LFIND $dir0 -L raid0 -type f | wc -l)
4969         [[ $res == 2 ]] || error "search raid0: found $res files != 2"
4970
4971         res=$($LFIND $dir0 \! -L raid0 -type f | wc -l)
4972         [[ $res == 0 ]] || error "search !raid0: found $res files != 0"
4973
4974         # only files can be released, so no need to force file search
4975         res=$($LFIND $dir0 -L released)
4976         [[ $res == $f2 ]] || error "search released: found $res != $f2"
4977
4978         res=$($LFIND $dir0 \! -L released)
4979         [[ $res == $f1 ]] || error "search !released: found $res != $f1"
4980
4981 }
4982 run_test 56y "lfs find -L raid0|released"
4983
4984 test_56z() { # LU-4824
4985         # This checks to make sure 'lfs find' continues after errors
4986         # There are two classes of errors that should be caught:
4987         # - If multiple paths are provided, all should be searched even if one
4988         #   errors out
4989         # - If errors are encountered during the search, it should not terminate
4990         #   early
4991         local i
4992         test_mkdir $DIR/$tdir
4993         for i in d{0..9}; do
4994                 test_mkdir $DIR/$tdir/$i
4995         done
4996         touch $DIR/$tdir/d{0..9}/$tfile
4997         $LFS find $DIR/non_existent_dir $DIR/$tdir &&
4998                 error "$LFS find did not return an error"
4999         # Make a directory unsearchable. This should NOT be the last entry in
5000         # directory order.  Arbitrarily pick the 6th entry
5001         chmod 700 $($LFS find $DIR/$tdir -type d | sed '6!d')
5002         local count=$($RUNAS $LFS find $DIR/non_existent $DIR/$tdir | wc -l)
5003         # The user should be able to see 10 directories and 9 files
5004         [ $count == 19 ] || error "$LFS find did not continue after error"
5005 }
5006 run_test 56z "lfs find should continue after an error"
5007
5008 test_56aa() { # LU-5937
5009         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
5010
5011         mkdir $DIR/$tdir
5012         $LFS setdirstripe -c$MDSCOUNT $DIR/$tdir/striped_dir
5013
5014         createmany -o $DIR/$tdir/striped_dir/${tfile}- 1024
5015         local dirs=$(lfs find --size +8k $DIR/$tdir/)
5016
5017         [ -n "$dirs" ] || error "lfs find --size wrong under striped dir"
5018 }
5019 run_test 56aa "lfs find --size under striped dir"
5020
5021 test_57a() {
5022         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5023         # note test will not do anything if MDS is not local
5024         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
5025                 skip "Only applicable to ldiskfs-based MDTs"
5026                 return
5027         fi
5028
5029         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5030         local MNTDEV="osd*.*MDT*.mntdev"
5031         DEV=$(do_facet $SINGLEMDS lctl get_param -n $MNTDEV)
5032         [ -z "$DEV" ] && error "can't access $MNTDEV"
5033         for DEV in $(do_facet $SINGLEMDS lctl get_param -n $MNTDEV); do
5034                 do_facet $SINGLEMDS $DUMPE2FS -h $DEV > $TMP/t57a.dump ||
5035                         error "can't access $DEV"
5036                 DEVISIZE=$(awk '/Inode size:/ { print $3 }' $TMP/t57a.dump)
5037                 [[ $DEVISIZE -gt 128 ]] || error "inode size $DEVISIZE"
5038                 rm $TMP/t57a.dump
5039         done
5040 }
5041 run_test 57a "verify MDS filesystem created with large inodes =="
5042
5043 test_57b() {
5044         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5045         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
5046                 skip "Only applicable to ldiskfs-based MDTs"
5047                 return
5048         fi
5049
5050         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5051         local dir=$DIR/$tdir
5052
5053         local FILECOUNT=100
5054         local FILE1=$dir/f1
5055         local FILEN=$dir/f$FILECOUNT
5056
5057         rm -rf $dir || error "removing $dir"
5058         test_mkdir -p -c1 $dir || error "creating $dir"
5059         local mdtidx=$($LFS getstripe -M $dir)
5060         local mdtname=MDT$(printf %04x $mdtidx)
5061         local facet=mds$((mdtidx + 1))
5062
5063         echo "mcreating $FILECOUNT files"
5064         createmany -m $dir/f 1 $FILECOUNT || \
5065                 error "creating files in $dir"
5066
5067         # verify that files do not have EAs yet
5068         $GETSTRIPE $FILE1 2>&1 | grep -q "no stripe" || error "$FILE1 has an EA"
5069         $GETSTRIPE $FILEN 2>&1 | grep -q "no stripe" || error "$FILEN has an EA"
5070
5071         sync
5072         sleep 1
5073         df $dir  #make sure we get new statfs data
5074         local MDSFREE=$(do_facet $facet \
5075                 lctl get_param -n osd*.*$mdtname.kbytesfree)
5076         local MDCFREE=$(lctl get_param -n mdc.*$mdtname-mdc-*.kbytesfree)
5077         echo "opening files to create objects/EAs"
5078         local FILE
5079         for FILE in `seq -f $dir/f%g 1 $FILECOUNT`; do
5080                 $OPENFILE -f O_RDWR $FILE > /dev/null 2>&1 || error "opening $FILE"
5081         done
5082
5083         # verify that files have EAs now
5084         $GETSTRIPE $FILE1 | grep -q "obdidx" || error "$FILE1 missing EA"
5085         $GETSTRIPE $FILEN | grep -q "obdidx" || error "$FILEN missing EA"
5086
5087         sleep 1  #make sure we get new statfs data
5088         df $dir
5089         local MDSFREE2=$(do_facet $facet \
5090                 lctl get_param -n osd*.*$mdtname.kbytesfree)
5091         local MDCFREE2=$(lctl get_param -n mdc.*$mdtname-mdc-*.kbytesfree)
5092         if [[ $MDCFREE2 -lt $((MDCFREE - 16)) ]]; then
5093                 if [ "$MDSFREE" != "$MDSFREE2" ]; then
5094                         error "MDC before $MDCFREE != after $MDCFREE2"
5095                 else
5096                         echo "MDC before $MDCFREE != after $MDCFREE2"
5097                         echo "unable to confirm if MDS has large inodes"
5098                 fi
5099         fi
5100         rm -rf $dir
5101 }
5102 run_test 57b "default LOV EAs are stored inside large inodes ==="
5103
5104 test_58() {
5105         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5106         [ -z "$(which wiretest 2>/dev/null)" ] &&
5107                         skip_env "could not find wiretest" && return
5108         wiretest
5109 }
5110 run_test 58 "verify cross-platform wire constants =============="
5111
5112 test_59() {
5113         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5114         echo "touch 130 files"
5115         createmany -o $DIR/f59- 130
5116         echo "rm 130 files"
5117         unlinkmany $DIR/f59- 130
5118         sync
5119         # wait for commitment of removal
5120         wait_delete_completed
5121 }
5122 run_test 59 "verify cancellation of llog records async ========="
5123
5124 TEST60_HEAD="test_60 run $RANDOM"
5125 test_60a() {
5126         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5127         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
5128         do_facet mgs "! which run-llog.sh &> /dev/null" &&
5129                 skip_env "missing subtest run-llog.sh" && return
5130         log "$TEST60_HEAD - from kernel mode"
5131         do_facet mgs sh run-llog.sh
5132 }
5133 run_test 60a "llog sanity tests run from kernel module =========="
5134
5135 test_60b() { # bug 6411
5136         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5137         dmesg > $DIR/$tfile
5138         LLOG_COUNT=`dmesg | awk "/$TEST60_HEAD/{marker = 1; from_marker = 0;}
5139                                  /llog.test/ {
5140                                          if (marker)
5141                                                  from_marker++
5142                                          from_begin++
5143                                  }
5144                                  END {
5145                                          if (marker)
5146                                                  print from_marker
5147                                          else
5148                                                  print from_begin
5149                                  }"`
5150         [[ $LLOG_COUNT -gt 50 ]] &&
5151                 error "CDEBUG_LIMIT not limiting messages ($LLOG_COUNT)" || true
5152 }
5153 run_test 60b "limit repeated messages from CERROR/CWARN ========"
5154
5155 test_60c() {
5156         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5157         echo "create 5000 files"
5158         createmany -o $DIR/f60c- 5000
5159 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED  0x137
5160         lctl set_param fail_loc=0x80000137
5161         unlinkmany $DIR/f60c- 5000
5162         lctl set_param fail_loc=0
5163 }
5164 run_test 60c "unlink file when mds full"
5165
5166 test_60d() {
5167         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5168         SAVEPRINTK=$(lctl get_param -n printk)
5169
5170         # verify "lctl mark" is even working"
5171         MESSAGE="test message ID $RANDOM $$"
5172         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
5173         dmesg | grep -q "$MESSAGE" || error "didn't find debug marker in log"
5174
5175         lctl set_param printk=0 || error "set lnet.printk failed"
5176         lctl get_param -n printk | grep emerg || error "lnet.printk dropped emerg"
5177         MESSAGE="new test message ID $RANDOM $$"
5178         # Assume here that libcfs_debug_mark_buffer() uses D_WARNING
5179         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
5180         dmesg | grep -q "$MESSAGE" && error "D_WARNING wasn't masked" || true
5181
5182         lctl set_param -n printk="$SAVEPRINTK"
5183 }
5184 run_test 60d "test printk console message masking"
5185
5186 test_61() {
5187         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5188         f="$DIR/f61"
5189         dd if=/dev/zero of=$f bs=$(page_size) count=1 || error "dd $f failed"
5190         cancel_lru_locks osc
5191         $MULTIOP $f OSMWUc || error "$MULTIOP $f failed"
5192         sync
5193 }
5194 run_test 61 "mmap() writes don't make sync hang ================"
5195
5196 # bug 2330 - insufficient obd_match error checking causes LBUG
5197 test_62() {
5198         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5199         f="$DIR/f62"
5200         echo foo > $f
5201         cancel_lru_locks osc
5202         lctl set_param fail_loc=0x405
5203         cat $f && error "cat succeeded, expect -EIO"
5204         lctl set_param fail_loc=0
5205 }
5206 # This test is now irrelevant (as of bug 10718 inclusion), we no longer
5207 # match every page all of the time.
5208 #run_test 62 "verify obd_match failure doesn't LBUG (should -EIO)"
5209
5210 # bug 2319 - oig_wait() interrupted causes crash because of invalid waitq.
5211 # Though this test is irrelevant anymore, it helped to reveal some
5212 # other grant bugs (LU-4482), let's keep it.
5213 test_63a() {   # was test_63
5214         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5215         MAX_DIRTY_MB=`lctl get_param -n osc.*.max_dirty_mb | head -n 1`
5216         for i in `seq 10` ; do
5217                 dd if=/dev/zero of=$DIR/f63 bs=8k &
5218                 sleep 5
5219                 kill $!
5220                 sleep 1
5221         done
5222
5223         rm -f $DIR/f63 || true
5224 }
5225 run_test 63a "Verify oig_wait interruption does not crash ======="
5226
5227 # bug 2248 - async write errors didn't return to application on sync
5228 # bug 3677 - async write errors left page locked
5229 test_63b() {
5230         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5231         debugsave
5232         lctl set_param debug=-1
5233
5234         # ensure we have a grant to do async writes
5235         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1
5236         rm $DIR/$tfile
5237
5238         sync    # sync lest earlier test intercept the fail_loc
5239
5240         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
5241         lctl set_param fail_loc=0x80000406
5242         $MULTIOP $DIR/$tfile Owy && \
5243                 error "sync didn't return ENOMEM"
5244         sync; sleep 2; sync     # do a real sync this time to flush page
5245         lctl get_param -n llite.*.dump_page_cache | grep locked && \
5246                 error "locked page left in cache after async error" || true
5247         debugrestore
5248 }
5249 run_test 63b "async write errors should be returned to fsync ==="
5250
5251 test_64a () {
5252         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5253         df $DIR
5254         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur* | grep "[0-9]"
5255 }
5256 run_test 64a "verify filter grant calculations (in kernel) ====="
5257
5258 test_64b () {
5259         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5260         sh oos.sh $MOUNT || error "oos.sh failed: $?"
5261 }
5262 run_test 64b "check out-of-space detection on client ==========="
5263
5264 test_64c() {
5265         $LCTL set_param osc.*OST0000-osc-[^mM]*.cur_grant_bytes=0
5266 }
5267 run_test 64c "verify grant shrink ========================------"
5268
5269 # bug 1414 - set/get directories' stripe info
5270 test_65a() {
5271         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5272         test_mkdir -p $DIR/$tdir
5273         touch $DIR/$tdir/f1
5274         $LVERIFY $DIR/$tdir $DIR/$tdir/f1 || error "lverify failed"
5275 }
5276 run_test 65a "directory with no stripe info ===================="
5277
5278 test_65b() {
5279         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5280         test_mkdir -p $DIR/$tdir
5281         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
5282                                                 error "setstripe"
5283         touch $DIR/$tdir/f2
5284         $LVERIFY $DIR/$tdir $DIR/$tdir/f2 || error "lverify failed"
5285 }
5286 run_test 65b "directory setstripe -S $((STRIPESIZE * 2)) -i 0 -c 1"
5287
5288 test_65c() {
5289         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5290         if [[ $OSTCOUNT -gt 1 ]]; then
5291                 test_mkdir -p $DIR/$tdir
5292                 $SETSTRIPE -S $(($STRIPESIZE * 4)) -i 1 \
5293                         -c $(($OSTCOUNT - 1)) $DIR/$tdir || error "setstripe"
5294                 touch $DIR/$tdir/f3
5295                 $LVERIFY $DIR/$tdir $DIR/$tdir/f3 || error "lverify failed"
5296         fi
5297 }
5298 run_test 65c "directory setstripe -S $((STRIPESIZE*4)) -i 1 -c $((OSTCOUNT-1))"
5299
5300 test_65d() {
5301         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5302         test_mkdir -p $DIR/$tdir
5303         if [[ $STRIPECOUNT -le 0 ]]; then
5304                 sc=1
5305         elif [[ $STRIPECOUNT -gt 2000 ]]; then
5306 #LOV_MAX_STRIPE_COUNT is 2000
5307                 [[ $OSTCOUNT -gt 2000 ]] && sc=2000 || sc=$(($OSTCOUNT - 1))
5308         else
5309                 sc=$(($STRIPECOUNT - 1))
5310         fi
5311         $SETSTRIPE -S $STRIPESIZE -c $sc $DIR/$tdir || error "setstripe"
5312         touch $DIR/$tdir/f4 $DIR/$tdir/f5
5313         $LVERIFY $DIR/$tdir $DIR/$tdir/f4 $DIR/$tdir/f5 ||
5314                 error "lverify failed"
5315 }
5316 run_test 65d "directory setstripe -S $STRIPESIZE -c stripe_count"
5317
5318 test_65e() {
5319         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5320         test_mkdir -p $DIR/$tdir
5321
5322         $SETSTRIPE $DIR/$tdir || error "setstripe"
5323         $GETSTRIPE -v $DIR/$tdir | grep "Default" ||
5324                                         error "no stripe info failed"
5325         touch $DIR/$tdir/f6
5326         $LVERIFY $DIR/$tdir $DIR/$tdir/f6 || error "lverify failed"
5327 }
5328 run_test 65e "directory setstripe defaults ======================="
5329
5330 test_65f() {
5331         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5332         test_mkdir -p $DIR/${tdir}f
5333         $RUNAS $SETSTRIPE $DIR/${tdir}f && error "setstripe succeeded" || true
5334 }
5335 run_test 65f "dir setstripe permission (should return error) ==="
5336
5337 test_65g() {
5338         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5339         test_mkdir -p $DIR/$tdir
5340         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
5341                                                         error "setstripe"
5342         $SETSTRIPE -d $DIR/$tdir || error "setstripe"
5343         $GETSTRIPE -v $DIR/$tdir | grep "Default" ||
5344                 error "delete default stripe failed"
5345 }
5346 run_test 65g "directory setstripe -d ==========================="
5347
5348 test_65h() {
5349         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5350         test_mkdir -p $DIR/$tdir
5351         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
5352                                                         error "setstripe"
5353         test_mkdir -p $DIR/$tdir/dd1
5354         [ $($GETSTRIPE -c $DIR/$tdir) == $($GETSTRIPE -c $DIR/$tdir/dd1) ] ||
5355                 error "stripe info inherit failed"
5356 }
5357 run_test 65h "directory stripe info inherit ===================="
5358
5359 test_65i() { # bug6367
5360         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5361         $SETSTRIPE -S 65536 -c -1 $MOUNT
5362 }
5363 run_test 65i "set non-default striping on root directory (bug 6367)="
5364
5365 test_65ia() { # bug12836
5366         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5367         $GETSTRIPE $MOUNT || error "getstripe $MOUNT failed"
5368 }
5369 run_test 65ia "getstripe on -1 default directory striping"
5370
5371 test_65ib() { # bug12836
5372         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5373         $GETSTRIPE -v $MOUNT || error "getstripe -v $MOUNT failed"
5374 }
5375 run_test 65ib "getstripe -v on -1 default directory striping"
5376
5377 test_65ic() { # bug12836
5378         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5379         $LFS find -mtime -1 $MOUNT > /dev/null || error "find $MOUNT failed"
5380 }
5381 run_test 65ic "new find on -1 default directory striping"
5382
5383 test_65j() { # bug6367
5384         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5385         sync; sleep 1
5386         # if we aren't already remounting for each test, do so for this test
5387         if [ "$CLEANUP" = ":" -a "$I_MOUNTED" = "yes" ]; then
5388                 cleanup || error "failed to unmount"
5389                 setup
5390         fi
5391         $SETSTRIPE -d $MOUNT || error "setstripe failed"
5392 }
5393 run_test 65j "set default striping on root directory (bug 6367)="
5394
5395 test_65k() { # bug11679
5396         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5397         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
5398         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5399
5400     echo "Check OST status: "
5401     local MDS_OSCS=`do_facet $SINGLEMDS lctl dl |
5402               awk '/[oO][sS][cC].*md[ts]/ { print $4 }'`
5403
5404     for OSC in $MDS_OSCS; do
5405         echo $OSC "is activate"
5406         do_facet $SINGLEMDS lctl --device %$OSC activate
5407     done
5408
5409     mkdir -p $DIR/$tdir
5410     for INACTIVE_OSC in $MDS_OSCS; do
5411         echo "Deactivate: " $INACTIVE_OSC
5412         do_facet $SINGLEMDS lctl --device %$INACTIVE_OSC deactivate
5413         for STRIPE_OSC in $MDS_OSCS; do
5414             OST=`osc_to_ost $STRIPE_OSC`
5415             IDX=`do_facet $SINGLEMDS lctl get_param -n lov.*md*.target_obd |
5416                  awk -F: /$OST/'{ print $1 }' | head -n 1`
5417
5418             [ -f $DIR/$tdir/$IDX ] && continue
5419             echo "$SETSTRIPE -i $IDX -c 1 $DIR/$tdir/$IDX"
5420             $SETSTRIPE -i $IDX -c 1 $DIR/$tdir/$IDX
5421             RC=$?
5422             [ $RC -ne 0 ] && error "setstripe should have succeeded"
5423         done
5424         rm -f $DIR/$tdir/*
5425         echo $INACTIVE_OSC "is Activate."
5426         do_facet $SINGLEMDS lctl --device  %$INACTIVE_OSC activate
5427     done
5428 }
5429 run_test 65k "validate manual striping works properly with deactivated OSCs"
5430
5431 test_65l() { # bug 12836
5432         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5433         test_mkdir -p $DIR/$tdir/test_dir
5434         $SETSTRIPE -c -1 $DIR/$tdir/test_dir
5435         $LFS find -mtime -1 $DIR/$tdir >/dev/null
5436 }
5437 run_test 65l "lfs find on -1 stripe dir ========================"
5438
5439 # bug 2543 - update blocks count on client
5440 test_66() {
5441         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5442         COUNT=${COUNT:-8}
5443         dd if=/dev/zero of=$DIR/f66 bs=1k count=$COUNT
5444         sync; sync_all_data; sync; sync_all_data
5445         cancel_lru_locks osc
5446         BLOCKS=`ls -s $DIR/f66 | awk '{ print $1 }'`
5447         [ $BLOCKS -ge $COUNT ] || error "$DIR/f66 blocks $BLOCKS < $COUNT"
5448 }
5449 run_test 66 "update inode blocks count on client ==============="
5450
5451 LLOOP=
5452 LLITELOOPLOAD=
5453 cleanup_68() {
5454         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5455         trap 0
5456         if [ ! -z "$LLOOP" ]; then
5457                 if swapon -s | grep -q $LLOOP; then
5458                         swapoff $LLOOP || error "swapoff failed"
5459                 fi
5460
5461                 $LCTL blockdev_detach $LLOOP || error "detach failed"
5462                 rm -f $LLOOP
5463                 unset LLOOP
5464         fi
5465         if [ ! -z "$LLITELOOPLOAD" ]; then
5466                 rmmod llite_lloop
5467                 unset LLITELOOPLOAD
5468         fi
5469         rm -f $DIR/f68*
5470 }
5471
5472 meminfo() {
5473         awk '($1 == "'$1':") { print $2 }' /proc/meminfo
5474 }
5475
5476 swap_used() {
5477         swapon -s | awk '($1 == "'$1'") { print $4 }'
5478 }
5479
5480 # test case for lloop driver, basic function
5481 test_68a() {
5482         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5483         [ "$UID" != 0 ] && skip_env "must run as root" && return
5484         llite_lloop_enabled || \
5485                 { skip_env "llite_lloop module disabled" && return; }
5486
5487         trap cleanup_68 EXIT
5488
5489         if ! module_loaded llite_lloop; then
5490                 if load_module llite/llite_lloop; then
5491                         LLITELOOPLOAD=yes
5492                 else
5493                         skip_env "can't find module llite_lloop"
5494                         return
5495                 fi
5496         fi
5497
5498         LLOOP=$TMP/lloop.`date +%s`.`date +%N`
5499         dd if=/dev/zero of=$DIR/f68a bs=4k count=1024
5500         $LCTL blockdev_attach $DIR/f68a $LLOOP || error "attach failed"
5501
5502         directio rdwr $LLOOP 0 1024 4096 || error "direct write failed"
5503         directio rdwr $LLOOP 0 1025 4096 && error "direct write should fail"
5504
5505         cleanup_68
5506 }
5507 run_test 68a "lloop driver - basic test ========================"
5508
5509 # excercise swapping to lustre by adding a high priority swapfile entry
5510 # and then consuming memory until it is used.
5511 test_68b() {  # was test_68
5512         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5513         [ "$UID" != 0 ] && skip_env "must run as root" && return
5514         lctl get_param -n devices | grep -q obdfilter && \
5515                 skip "local OST" && return
5516
5517         grep -q llite_lloop /proc/modules
5518         [ $? -ne 0 ] && skip "can't find module llite_lloop" && return
5519
5520         [ -z "`$LCTL list_nids | grep -v tcp`" ] && \
5521                 skip "can't reliably test swap with TCP" && return
5522
5523         MEMTOTAL=`meminfo MemTotal`
5524         NR_BLOCKS=$((MEMTOTAL>>8))
5525         [[ $NR_BLOCKS -le 2048 ]] && NR_BLOCKS=2048
5526
5527         LLOOP=$TMP/lloop.`date +%s`.`date +%N`
5528         dd if=/dev/zero of=$DIR/f68b bs=64k seek=$NR_BLOCKS count=1
5529         mkswap $DIR/f68b
5530
5531         $LCTL blockdev_attach $DIR/f68b $LLOOP || error "attach failed"
5532
5533         trap cleanup_68 EXIT
5534
5535         swapon -p 32767 $LLOOP || error "swapon $LLOOP failed"
5536
5537         echo "before: `swapon -s | grep $LLOOP`"
5538         $MEMHOG $MEMTOTAL || error "error allocating $MEMTOTAL kB"
5539         echo "after: `swapon -s | grep $LLOOP`"
5540         SWAPUSED=`swap_used $LLOOP`
5541
5542         cleanup_68
5543
5544         [ $SWAPUSED -eq 0 ] && echo "no swap used???" || true
5545 }
5546 run_test 68b "support swapping to Lustre ========================"
5547
5548 # bug5265, obdfilter oa2dentry return -ENOENT
5549 # #define OBD_FAIL_OST_ENOENT 0x217
5550 test_69() {
5551         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5552         remote_ost_nodsh && skip "remote OST with nodsh" && return
5553
5554         f="$DIR/$tfile"
5555         $SETSTRIPE -c 1 -i 0 $f
5556
5557         $DIRECTIO write ${f}.2 0 1 || error "directio write error"
5558
5559         do_facet ost1 lctl set_param fail_loc=0x217
5560         $TRUNCATE $f 1 # vmtruncate() will ignore truncate() error.
5561         $DIRECTIO write $f 0 2 && error "write succeeded, expect -ENOENT"
5562
5563         do_facet ost1 lctl set_param fail_loc=0
5564         $DIRECTIO write $f 0 2 || error "write error"
5565
5566         cancel_lru_locks osc
5567         $DIRECTIO read $f 0 1 || error "read error"
5568
5569         do_facet ost1 lctl set_param fail_loc=0x217
5570         $DIRECTIO read $f 1 1 && error "read succeeded, expect -ENOENT"
5571
5572         do_facet ost1 lctl set_param fail_loc=0
5573         rm -f $f
5574 }
5575 run_test 69 "verify oa2dentry return -ENOENT doesn't LBUG ======"
5576
5577 test_71() {
5578         test_mkdir -p $DIR/$tdir
5579         $LFS setdirstripe -D -c$MDSCOUNT $DIR/$tdir
5580         sh rundbench -C -D $DIR/$tdir 2 || error "dbench failed!"
5581 }
5582 run_test 71 "Running dbench on lustre (don't segment fault) ===="
5583
5584 test_72a() { # bug 5695 - Test that on 2.6 remove_suid works properly
5585         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5586         [ "$RUNAS_ID" = "$UID" ] &&
5587                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
5588
5589         # Check that testing environment is properly set up. Skip if not
5590         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_GID $RUNAS || {
5591                 skip_env "User $RUNAS_ID does not exist - skipping"
5592                 return 0
5593         }
5594         touch $DIR/$tfile
5595         chmod 777 $DIR/$tfile
5596         chmod ug+s $DIR/$tfile
5597         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=512 count=1 ||
5598                 error "$RUNAS dd $DIR/$tfile failed"
5599         # See if we are still setuid/sgid
5600         test -u $DIR/$tfile -o -g $DIR/$tfile &&
5601                 error "S/gid is not dropped on write"
5602         # Now test that MDS is updated too
5603         cancel_lru_locks mdc
5604         test -u $DIR/$tfile -o -g $DIR/$tfile &&
5605                 error "S/gid is not dropped on MDS"
5606         rm -f $DIR/$tfile
5607 }
5608 run_test 72a "Test that remove suid works properly (bug5695) ===="
5609
5610 test_72b() { # bug 24226 -- keep mode setting when size is not changing
5611         local perm
5612
5613         [ "$RUNAS_ID" = "$UID" ] && \
5614                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
5615         [ "$RUNAS_ID" -eq 0 ] && \
5616                 skip_env "RUNAS_ID = 0 -- skipping" && return
5617
5618         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5619         # Check that testing environment is properly set up. Skip if not
5620         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_ID $RUNAS || {
5621                 skip_env "User $RUNAS_ID does not exist - skipping"
5622                 return 0
5623         }
5624         touch $DIR/${tfile}-f{g,u}
5625         test_mkdir $DIR/${tfile}-dg
5626         test_mkdir $DIR/${tfile}-du
5627         chmod 770 $DIR/${tfile}-{f,d}{g,u}
5628         chmod g+s $DIR/${tfile}-{f,d}g
5629         chmod u+s $DIR/${tfile}-{f,d}u
5630         for perm in 777 2777 4777; do
5631                 $RUNAS chmod $perm $DIR/${tfile}-fg && error "S/gid file allowed improper chmod to $perm"
5632                 $RUNAS chmod $perm $DIR/${tfile}-fu && error "S/uid file allowed improper chmod to $perm"
5633                 $RUNAS chmod $perm $DIR/${tfile}-dg && error "S/gid dir allowed improper chmod to $perm"
5634                 $RUNAS chmod $perm $DIR/${tfile}-du && error "S/uid dir allowed improper chmod to $perm"
5635         done
5636         true
5637 }
5638 run_test 72b "Test that we keep mode setting if without file data changed (bug 24226)"
5639
5640 # bug 3462 - multiple simultaneous MDC requests
5641 test_73() {
5642         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5643         test_mkdir $DIR/d73-1
5644         test_mkdir $DIR/d73-2
5645         multiop_bg_pause $DIR/d73-1/f73-1 O_c || return 1
5646         pid1=$!
5647
5648         lctl set_param fail_loc=0x80000129
5649         $MULTIOP $DIR/d73-1/f73-2 Oc &
5650         sleep 1
5651         lctl set_param fail_loc=0
5652
5653         $MULTIOP $DIR/d73-2/f73-3 Oc &
5654         pid3=$!
5655
5656         kill -USR1 $pid1
5657         wait $pid1 || return 1
5658
5659         sleep 25
5660
5661         $CHECKSTAT -t file $DIR/d73-1/f73-1 || return 4
5662         $CHECKSTAT -t file $DIR/d73-1/f73-2 || return 5
5663         $CHECKSTAT -t file $DIR/d73-2/f73-3 || return 6
5664
5665         rm -rf $DIR/d73-*
5666 }
5667 run_test 73 "multiple MDC requests (should not deadlock)"
5668
5669 test_74a() { # bug 6149, 6184
5670         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5671         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
5672         #
5673         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
5674         # will spin in a tight reconnection loop
5675         touch $DIR/f74a
5676         $LCTL set_param fail_loc=0x8000030e
5677         # get any lock that won't be difficult - lookup works.
5678         ls $DIR/f74a
5679         $LCTL set_param fail_loc=0
5680         rm -f $DIR/f74a
5681         true
5682 }
5683 run_test 74a "ldlm_enqueue freed-export error path, ls (shouldn't LBUG)"
5684
5685 test_74b() { # bug 13310
5686         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5687         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
5688         #
5689         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
5690         # will spin in a tight reconnection loop
5691         $LCTL set_param fail_loc=0x8000030e
5692         # get a "difficult" lock
5693         touch $DIR/f74b
5694         $LCTL set_param fail_loc=0
5695         rm -f $DIR/f74b
5696         true
5697 }
5698 run_test 74b "ldlm_enqueue freed-export error path, touch (shouldn't LBUG)"
5699
5700 test_74c() {
5701         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5702         #define OBD_FAIL_LDLM_NEW_LOCK
5703         $LCTL set_param fail_loc=0x319
5704         touch $DIR/$tfile && error "touch successful"
5705         $LCTL set_param fail_loc=0
5706         true
5707 }
5708 run_test 74c "ldlm_lock_create error path, (shouldn't LBUG)"
5709
5710 num_inodes() {
5711         awk '/lustre_inode_cache/ {print $2; exit}' /proc/slabinfo
5712 }
5713
5714 get_inode_slab_tunables() {
5715         awk '/lustre_inode_cache/ {print $9," ",$10," ",$11; exit}' /proc/slabinfo
5716 }
5717
5718 set_inode_slab_tunables() {
5719         echo "lustre_inode_cache $1" > /proc/slabinfo
5720 }
5721
5722 test_76() { # Now for bug 20433, added originally in bug 1443
5723         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5724         local SLAB_SETTINGS=`get_inode_slab_tunables`
5725         local CPUS=`getconf _NPROCESSORS_ONLN`
5726         # we cannot set limit below 1 which means 1 inode in each
5727         # per-cpu cache is still allowed
5728         set_inode_slab_tunables "1 1 0"
5729         cancel_lru_locks osc
5730         BEFORE_INODES=$(num_inodes)
5731         echo "before inodes: $BEFORE_INODES"
5732         local COUNT=1000
5733         [ "$SLOW" = "no" ] && COUNT=100
5734         for i in $(seq $COUNT); do
5735                 touch $DIR/$tfile
5736                 rm -f $DIR/$tfile
5737         done
5738         cancel_lru_locks osc
5739         AFTER_INODES=$(num_inodes)
5740         echo "after inodes: $AFTER_INODES"
5741         local wait=0
5742         while [[ $((AFTER_INODES-1*CPUS)) -gt $BEFORE_INODES ]]; do
5743                 sleep 2
5744                 AFTER_INODES=$(num_inodes)
5745                 wait=$((wait+2))
5746                 echo "wait $wait seconds inodes: $AFTER_INODES"
5747                 if [ $wait -gt 30 ]; then
5748                         error "inode slab grew from $BEFORE_INODES to $AFTER_INODES"
5749                 fi
5750         done
5751         set_inode_slab_tunables "$SLAB_SETTINGS"
5752 }
5753 run_test 76 "confirm clients recycle inodes properly ===="
5754
5755
5756 export ORIG_CSUM=""
5757 set_checksums()
5758 {
5759         # Note: in sptlrpc modes which enable its own bulk checksum, the
5760         # original crc32_le bulk checksum will be automatically disabled,
5761         # and the OBD_FAIL_OSC_CHECKSUM_SEND/OBD_FAIL_OSC_CHECKSUM_RECEIVE
5762         # will be checked by sptlrpc code against sptlrpc bulk checksum.
5763         # In this case set_checksums() will not be no-op, because sptlrpc
5764         # bulk checksum will be enabled all through the test.
5765
5766         [ "$ORIG_CSUM" ] || ORIG_CSUM=`lctl get_param -n osc.*.checksums | head -n1`
5767         lctl set_param -n osc.*.checksums $1
5768         return 0
5769 }
5770
5771 export ORIG_CSUM_TYPE="`lctl get_param -n osc.*osc-[^mM]*.checksum_type |
5772                         sed 's/.*\[\(.*\)\].*/\1/g' | head -n1`"
5773 CKSUM_TYPES=${CKSUM_TYPES:-"crc32 adler"}
5774 [ "$ORIG_CSUM_TYPE" = "crc32c" ] && CKSUM_TYPES="$CKSUM_TYPES crc32c"
5775 set_checksum_type()
5776 {
5777         lctl set_param -n osc.*osc-[^mM]*.checksum_type $1
5778         log "set checksum type to $1"
5779         return 0
5780 }
5781 F77_TMP=$TMP/f77-temp
5782 F77SZ=8
5783 setup_f77() {
5784         dd if=/dev/urandom of=$F77_TMP bs=1M count=$F77SZ || \
5785                 error "error writing to $F77_TMP"
5786 }
5787
5788 test_77a() { # bug 10889
5789         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5790         $GSS && skip "could not run with gss" && return
5791         [ ! -f $F77_TMP ] && setup_f77
5792         set_checksums 1
5793         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ || error "dd error"
5794         set_checksums 0
5795         rm -f $DIR/$tfile
5796 }
5797 run_test 77a "normal checksum read/write operation"
5798
5799 test_77b() { # bug 10889
5800         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5801         $GSS && skip "could not run with gss" && return
5802         [ ! -f $F77_TMP ] && setup_f77
5803         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
5804         $LCTL set_param fail_loc=0x80000409
5805         set_checksums 1
5806
5807         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ conv=sync ||
5808                 error "dd error: $?"
5809         $LCTL set_param fail_loc=0
5810
5811         for algo in $CKSUM_TYPES; do
5812                 cancel_lru_locks osc
5813                 set_checksum_type $algo
5814                 #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
5815                 $LCTL set_param fail_loc=0x80000408
5816                 cmp $F77_TMP $DIR/$tfile || error "file compare failed"
5817                 $LCTL set_param fail_loc=0
5818         done
5819         set_checksums 0
5820         set_checksum_type $ORIG_CSUM_TYPE
5821         rm -f $DIR/$tfile
5822 }
5823 run_test 77b "checksum error on client write, read"
5824
5825 test_77d() { # bug 10889
5826         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5827         $GSS && skip "could not run with gss" && return
5828         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
5829         $LCTL set_param fail_loc=0x80000409
5830         set_checksums 1
5831         $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
5832                 error "direct write: rc=$?"
5833         $LCTL set_param fail_loc=0
5834         set_checksums 0
5835
5836         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
5837         $LCTL set_param fail_loc=0x80000408
5838         set_checksums 1
5839         cancel_lru_locks osc
5840         $DIRECTIO read $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
5841                 error "direct read: rc=$?"
5842         $LCTL set_param fail_loc=0
5843         set_checksums 0
5844 }
5845 run_test 77d "checksum error on OST direct write, read"
5846
5847 test_77f() { # bug 10889
5848         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5849         $GSS && skip "could not run with gss" && return
5850         set_checksums 1
5851         for algo in $CKSUM_TYPES; do
5852                 cancel_lru_locks osc
5853                 set_checksum_type $algo
5854                 #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
5855                 $LCTL set_param fail_loc=0x409
5856                 $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) &&
5857                         error "direct write succeeded"
5858                 $LCTL set_param fail_loc=0
5859         done
5860         set_checksum_type $ORIG_CSUM_TYPE
5861         set_checksums 0
5862 }
5863 run_test 77f "repeat checksum error on write (expect error)"
5864
5865 test_77g() { # bug 10889
5866         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5867         $GSS && skip "could not run with gss" && return
5868         remote_ost_nodsh && skip "remote OST with nodsh" && return
5869
5870         [ ! -f $F77_TMP ] && setup_f77
5871
5872         $SETSTRIPE -c 1 -i 0 $DIR/$tfile
5873         #define OBD_FAIL_OST_CHECKSUM_RECEIVE       0x21a
5874         do_facet ost1 lctl set_param fail_loc=0x8000021a
5875         set_checksums 1
5876         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ ||
5877                 error "write error: rc=$?"
5878         do_facet ost1 lctl set_param fail_loc=0
5879         set_checksums 0
5880
5881         cancel_lru_locks osc
5882         #define OBD_FAIL_OST_CHECKSUM_SEND          0x21b
5883         do_facet ost1 lctl set_param fail_loc=0x8000021b
5884         set_checksums 1
5885         cmp $F77_TMP $DIR/$tfile || error "file compare failed"
5886         do_facet ost1 lctl set_param fail_loc=0
5887         set_checksums 0
5888 }
5889 run_test 77g "checksum error on OST write, read"
5890
5891 test_77i() { # bug 13805
5892         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5893         $GSS && skip "could not run with gss" && return
5894         #define OBD_FAIL_OSC_CONNECT_CKSUM       0x40b
5895         lctl set_param fail_loc=0x40b
5896         remount_client $MOUNT
5897         lctl set_param fail_loc=0
5898         for VALUE in `lctl get_param osc.*osc-[^mM]*.checksum_type`; do
5899                 PARAM=`echo ${VALUE[0]} | cut -d "=" -f1`
5900                 algo=`lctl get_param -n $PARAM | sed 's/.*\[\(.*\)\].*/\1/g'`
5901                 [ "$algo" = "adler" ] || error "algo set to $algo instead of adler"
5902         done
5903         remount_client $MOUNT
5904 }
5905 run_test 77i "client not supporting OSD_CONNECT_CKSUM"
5906
5907 test_77j() { # bug 13805
5908         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5909         $GSS && skip "could not run with gss" && return
5910         #define OBD_FAIL_OSC_CKSUM_ADLER_ONLY    0x40c
5911         lctl set_param fail_loc=0x40c
5912         remount_client $MOUNT
5913         lctl set_param fail_loc=0
5914         sleep 2 # wait async osc connect to finish
5915         for VALUE in `lctl get_param osc.*osc-[^mM]*.checksum_type`; do
5916                 PARAM=`echo ${VALUE[0]} | cut -d "=" -f1`
5917                 algo=`lctl get_param -n $PARAM | sed 's/.*\[\(.*\)\].*/\1/g'`
5918                 [ "$algo" = "adler" ] || error "algo set to $algo instead of adler"
5919         done
5920         remount_client $MOUNT
5921 }
5922 run_test 77j "client only supporting ADLER32"
5923
5924 [ "$ORIG_CSUM" ] && set_checksums $ORIG_CSUM || true
5925 rm -f $F77_TMP
5926 unset F77_TMP
5927
5928 test_78() { # bug 10901
5929         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5930         remote_ost || { skip_env "local OST" && return; }
5931
5932         NSEQ=5
5933         F78SIZE=$(($(awk '/MemFree:/ { print $2 }' /proc/meminfo) / 1024))
5934         echo "MemFree: $F78SIZE, Max file size: $MAXFREE"
5935         MEMTOTAL=$(($(awk '/MemTotal:/ { print $2 }' /proc/meminfo) / 1024))
5936         echo "MemTotal: $MEMTOTAL"
5937
5938         # reserve 256MB of memory for the kernel and other running processes,
5939         # and then take 1/2 of the remaining memory for the read/write buffers.
5940         if [ $MEMTOTAL -gt 512 ] ;then
5941                 MEMTOTAL=$(((MEMTOTAL - 256 ) / 2))
5942         else
5943                 # for those poor memory-starved high-end clusters...
5944                 MEMTOTAL=$((MEMTOTAL / 2))
5945         fi
5946         echo "Mem to use for directio: $MEMTOTAL"
5947
5948         [[ $F78SIZE -gt $MEMTOTAL ]] && F78SIZE=$MEMTOTAL
5949         [[ $F78SIZE -gt 512 ]] && F78SIZE=512
5950         [[ $F78SIZE -gt $((MAXFREE / 1024)) ]] && F78SIZE=$((MAXFREE / 1024))
5951         SMALLESTOST=$($LFS df $DIR | grep OST | awk '{ print $4 }' | sort -n |
5952                 head -n1)
5953         echo "Smallest OST: $SMALLESTOST"
5954         [[ $SMALLESTOST -lt 10240 ]] &&
5955                 skip "too small OSTSIZE, useless to run large O_DIRECT test" && return 0
5956
5957         [[ $F78SIZE -gt $((SMALLESTOST * $OSTCOUNT / 1024 - 80)) ]] &&
5958                 F78SIZE=$((SMALLESTOST * $OSTCOUNT / 1024 - 80))
5959
5960         [ "$SLOW" = "no" ] && NSEQ=1 && [ $F78SIZE -gt 32 ] && F78SIZE=32
5961         echo "File size: $F78SIZE"
5962         $SETSTRIPE -c $OSTCOUNT $DIR/$tfile || error "setstripe failed"
5963         for i in $(seq 1 $NSEQ); do
5964                 FSIZE=$(($F78SIZE / ($NSEQ - $i + 1)))
5965                 echo directIO rdwr round $i of $NSEQ
5966                 $DIRECTIO rdwr $DIR/$tfile 0 $FSIZE 1048576||error "rdwr failed"
5967         done
5968
5969         rm -f $DIR/$tfile
5970 }
5971 run_test 78 "handle large O_DIRECT writes correctly ============"
5972
5973 test_79() { # bug 12743
5974         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5975         wait_delete_completed
5976
5977         BKTOTAL=$(calc_osc_kbytes kbytestotal)
5978         BKFREE=$(calc_osc_kbytes kbytesfree)
5979         BKAVAIL=$(calc_osc_kbytes kbytesavail)
5980
5981         STRING=`df -P $MOUNT | tail -n 1 | awk '{print $2","$3","$4}'`
5982         DFTOTAL=`echo $STRING | cut -d, -f1`
5983         DFUSED=`echo $STRING  | cut -d, -f2`
5984         DFAVAIL=`echo $STRING | cut -d, -f3`
5985         DFFREE=$(($DFTOTAL - $DFUSED))
5986
5987         ALLOWANCE=$((64 * $OSTCOUNT))
5988
5989         if [ $DFTOTAL -lt $(($BKTOTAL - $ALLOWANCE)) ] ||
5990            [ $DFTOTAL -gt $(($BKTOTAL + $ALLOWANCE)) ] ; then
5991                 error "df total($DFTOTAL) mismatch OST total($BKTOTAL)"
5992         fi
5993         if [ $DFFREE -lt $(($BKFREE - $ALLOWANCE)) ] ||
5994            [ $DFFREE -gt $(($BKFREE + $ALLOWANCE)) ] ; then
5995                 error "df free($DFFREE) mismatch OST free($BKFREE)"
5996         fi
5997         if [ $DFAVAIL -lt $(($BKAVAIL - $ALLOWANCE)) ] ||
5998            [ $DFAVAIL -gt $(($BKAVAIL + $ALLOWANCE)) ] ; then
5999                 error "df avail($DFAVAIL) mismatch OST avail($BKAVAIL)"
6000         fi
6001 }
6002 run_test 79 "df report consistency check ======================="
6003
6004 test_80() { # bug 10718
6005         remote_ost_nodsh && skip "remote OST with nodsh" && return
6006         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6007         # relax strong synchronous semantics for slow backends like ZFS
6008         local soc="obdfilter.*.sync_on_lock_cancel"
6009         local soc_old=$(do_facet ost1 lctl get_param -n $soc | head -n1)
6010         local hosts=
6011         if [ "$soc_old" != "never" -a "$(facet_fstype ost1)" != "ldiskfs" ]; then
6012                 hosts=$(for host in $(seq -f "ost%g" 1 $OSTCOUNT); do
6013                           facet_active_host $host; done | sort -u)
6014                 do_nodes $hosts lctl set_param $soc=never
6015         fi
6016
6017         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1M
6018         sync; sleep 1; sync
6019         local BEFORE=`date +%s`
6020         cancel_lru_locks osc
6021         local AFTER=`date +%s`
6022         local DIFF=$((AFTER-BEFORE))
6023         if [ $DIFF -gt 1 ] ; then
6024                 error "elapsed for 1M@1T = $DIFF"
6025         fi
6026
6027         [ -n "$hosts" ] && do_nodes $hosts lctl set_param $soc=$soc_old
6028
6029         rm -f $DIR/$tfile
6030 }
6031 run_test 80 "Page eviction is equally fast at high offsets too  ===="
6032
6033 test_81a() { # LU-456
6034         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6035         remote_ost_nodsh && skip "remote OST with nodsh" && return
6036         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
6037         # MUST OR with the OBD_FAIL_ONCE (0x80000000)
6038         do_facet ost1 lctl set_param fail_loc=0x80000228
6039
6040         # write should trigger a retry and success
6041         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
6042         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6043         RC=$?
6044         if [ $RC -ne 0 ] ; then
6045                 error "write should success, but failed for $RC"
6046         fi
6047 }
6048 run_test 81a "OST should retry write when get -ENOSPC ==============="
6049
6050 test_81b() { # LU-456
6051         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6052         remote_ost_nodsh && skip "remote OST with nodsh" && return
6053         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
6054         # Don't OR with the OBD_FAIL_ONCE (0x80000000)
6055         do_facet ost1 lctl set_param fail_loc=0x228
6056
6057         # write should retry several times and return -ENOSPC finally
6058         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
6059         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6060         RC=$?
6061         ENOSPC=28
6062         if [ $RC -ne $ENOSPC ] ; then
6063                 error "dd should fail for -ENOSPC, but succeed."
6064         fi
6065 }
6066 run_test 81b "OST should return -ENOSPC when retry still fails ======="
6067
6068 test_82() { # LU-1031
6069         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10
6070         local gid1=14091995
6071         local gid2=16022000
6072
6073         multiop_bg_pause $DIR/$tfile OG${gid1}_g${gid1}c || return 1
6074         local MULTIPID1=$!
6075         multiop_bg_pause $DIR/$tfile O_G${gid2}r10g${gid2}c || return 2
6076         local MULTIPID2=$!
6077         kill -USR1 $MULTIPID2
6078         sleep 2
6079         if [[ `ps h -o comm -p $MULTIPID2` == "" ]]; then
6080                 error "First grouplock does not block second one"
6081         else
6082                 echo "Second grouplock blocks first one"
6083         fi
6084         kill -USR1 $MULTIPID1
6085         wait $MULTIPID1
6086         wait $MULTIPID2
6087 }
6088 run_test 82 "Basic grouplock test ==============================="
6089
6090 test_99a() {
6091         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" &&
6092                 return
6093         test_mkdir -p $DIR/d99cvsroot
6094         chown $RUNAS_ID $DIR/d99cvsroot
6095         local oldPWD=$PWD       # bug 13584, use $TMP as working dir
6096         cd $TMP
6097
6098         $RUNAS cvs -d $DIR/d99cvsroot init || error "cvs init failed"
6099         cd $oldPWD
6100 }
6101 run_test 99a "cvs init ========================================="
6102
6103 test_99b() {
6104         [ -z "$(which cvs 2>/dev/null)" ] &&
6105                 skip_env "could not find cvs" && return
6106         [ ! -d $DIR/d99cvsroot ] && test_99a
6107         cd /etc/init.d
6108         # some versions of cvs import exit(1) when asked to import links or
6109         # files they can't read.  ignore those files.
6110         TOIGNORE=$(find . -type l -printf '-I %f\n' -o \
6111                         ! -perm +4 -printf '-I %f\n')
6112         $RUNAS cvs -d $DIR/d99cvsroot import -m "nomesg" $TOIGNORE \
6113                 d99reposname vtag rtag
6114 }
6115 run_test 99b "cvs import ======================================="
6116
6117 test_99c() {
6118         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
6119         [ ! -d $DIR/d99cvsroot ] && test_99b
6120         cd $DIR
6121         test_mkdir -p $DIR/d99reposname
6122         chown $RUNAS_ID $DIR/d99reposname
6123         $RUNAS cvs -d $DIR/d99cvsroot co d99reposname
6124 }
6125 run_test 99c "cvs checkout ====================================="
6126
6127 test_99d() {
6128         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
6129         [ ! -d $DIR/d99cvsroot ] && test_99c
6130         cd $DIR/d99reposname
6131         $RUNAS touch foo99
6132         $RUNAS cvs add -m 'addmsg' foo99
6133 }
6134 run_test 99d "cvs add =========================================="
6135
6136 test_99e() {
6137         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
6138         [ ! -d $DIR/d99cvsroot ] && test_99c
6139         cd $DIR/d99reposname
6140         $RUNAS cvs update
6141 }
6142 run_test 99e "cvs update ======================================="
6143
6144 test_99f() {
6145         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
6146         [ ! -d $DIR/d99cvsroot ] && test_99d
6147         cd $DIR/d99reposname
6148         $RUNAS cvs commit -m 'nomsg' foo99
6149     rm -fr $DIR/d99cvsroot
6150 }
6151 run_test 99f "cvs commit ======================================="
6152
6153 test_100() {
6154         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6155         [ "$NETTYPE" = tcp ] || \
6156                 { skip "TCP secure port test, not useful for NETTYPE=$NETTYPE" && \
6157                         return ; }
6158
6159         remote_ost_nodsh && skip "remote OST with nodsh" && return
6160         remote_mds_nodsh && skip "remote MDS with nodsh" && return
6161         remote_servers || \
6162                 { skip "useless for local single node setup" && return; }
6163
6164         netstat -tna | ( rc=1; while read PROT SND RCV LOCAL REMOTE STAT; do
6165                 [ "$PROT" != "tcp" ] && continue
6166                 RPORT=$(echo $REMOTE | cut -d: -f2)
6167                 [ "$RPORT" != "$ACCEPTOR_PORT" ] && continue
6168
6169                 rc=0
6170                 LPORT=`echo $LOCAL | cut -d: -f2`
6171                 if [ $LPORT -ge 1024 ]; then
6172                         echo "bad: $PROT $SND $RCV $LOCAL $REMOTE $STAT"
6173                         netstat -tna
6174                         error_exit "local: $LPORT > 1024, remote: $RPORT"
6175                 fi
6176         done
6177         [ "$rc" = 0 ] || error_exit "privileged port not found" )
6178 }
6179 run_test 100 "check local port using privileged port ==========="
6180
6181 function get_named_value()
6182 {
6183     local tag
6184
6185     tag=$1
6186     while read ;do
6187         line=$REPLY
6188         case $line in
6189         $tag*)
6190             echo $line | sed "s/^$tag[ ]*//"
6191             break
6192             ;;
6193         esac
6194     done
6195 }
6196
6197 export CACHE_MAX=$($LCTL get_param -n llite.*.max_cached_mb |
6198                    awk '/^max_cached_mb/ { print $2 }')
6199
6200 cleanup_101a() {
6201         $LCTL set_param -n llite.*.max_cached_mb $CACHE_MAX
6202         trap 0
6203 }
6204
6205 test_101a() {
6206         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6207         [ $MDSCOUNT -ge 2 ] && skip "skip now for >= 2 MDTs" && return #LU-4322
6208         local s
6209         local discard
6210         local nreads=10000
6211         local cache_limit=32
6212
6213         $LCTL set_param -n osc.*-osc*.rpc_stats 0
6214         trap cleanup_101a EXIT
6215         $LCTL set_param -n llite.*.read_ahead_stats 0
6216         $LCTL set_param -n llite.*.max_cached_mb $cache_limit
6217
6218         #
6219         # randomly read 10000 of 64K chunks from file 3x 32MB in size
6220         #
6221         echo "nreads: $nreads file size: $((cache_limit * 3))MB"
6222         $READS -f $DIR/$tfile -s$((cache_limit * 3192 * 1024)) -b65536 -C -n$nreads -t 180
6223
6224         discard=0
6225         for s in $($LCTL get_param -n llite.*.read_ahead_stats |
6226                 get_named_value 'read but discarded' | cut -d" " -f1); do
6227                         discard=$(($discard + $s))
6228         done
6229         cleanup_101a
6230
6231         if [[ $(($discard * 10)) -gt $nreads ]]; then
6232                 $LCTL get_param osc.*-osc*.rpc_stats
6233                 $LCTL get_param llite.*.read_ahead_stats
6234                 error "too many ($discard) discarded pages"
6235         fi
6236         rm -f $DIR/$tfile || true
6237 }
6238 run_test 101a "check read-ahead for random reads ================"
6239
6240 setup_test101bc() {
6241         test_mkdir -p $DIR/$tdir
6242         local STRIPE_SIZE=$1
6243         local FILE_LENGTH=$2
6244         STRIPE_OFFSET=0
6245
6246         local FILE_SIZE_MB=$((FILE_LENGTH / STRIPE_SIZE))
6247
6248         local list=$(comma_list $(osts_nodes))
6249         set_osd_param $list '' read_cache_enable 0
6250         set_osd_param $list '' writethrough_cache_enable 0
6251
6252         trap cleanup_test101bc EXIT
6253         # prepare the read-ahead file
6254         $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $OSTCOUNT $DIR/$tfile
6255
6256         dd if=/dev/zero of=$DIR/$tfile bs=$STRIPE_SIZE \
6257                                 count=$FILE_SIZE_MB 2> /dev/null
6258
6259 }
6260
6261 cleanup_test101bc() {
6262         trap 0
6263         rm -rf $DIR/$tdir
6264         rm -f $DIR/$tfile
6265
6266         local list=$(comma_list $(osts_nodes))
6267         set_osd_param $list '' read_cache_enable 1
6268         set_osd_param $list '' writethrough_cache_enable 1
6269 }
6270
6271 calc_total() {
6272         awk 'BEGIN{total=0}; {total+=$1}; END{print total}'
6273 }
6274
6275 ra_check_101() {
6276         local READ_SIZE=$1
6277         local STRIPE_SIZE=$2
6278         local FILE_LENGTH=$3
6279         local RA_INC=1048576
6280         local STRIDE_LENGTH=$((STRIPE_SIZE/READ_SIZE))
6281         local discard_limit=$((((STRIDE_LENGTH - 1)*3/(STRIDE_LENGTH*OSTCOUNT))* \
6282                              (STRIDE_LENGTH*OSTCOUNT - STRIDE_LENGTH)))
6283         DISCARD=$($LCTL get_param -n llite.*.read_ahead_stats |
6284                         get_named_value 'read but discarded' |
6285                         cut -d" " -f1 | calc_total)
6286         if [[ $DISCARD -gt $discard_limit ]]; then
6287                 $LCTL get_param llite.*.read_ahead_stats
6288                 error "Too many ($DISCARD) discarded pages with size (${READ_SIZE})"
6289         else
6290                 echo "Read-ahead success for size ${READ_SIZE}"
6291         fi
6292 }
6293
6294 test_101b() {
6295         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6296         [[ $OSTCOUNT -lt 2 ]] &&
6297                 skip_env "skipping stride IO stride-ahead test" && return
6298         local STRIPE_SIZE=1048576
6299         local STRIDE_SIZE=$((STRIPE_SIZE*OSTCOUNT))
6300         if [ $SLOW == "yes" ]; then
6301                 local FILE_LENGTH=$((STRIDE_SIZE * 64))
6302         else
6303                 local FILE_LENGTH=$((STRIDE_SIZE * 8))
6304         fi
6305
6306         local ITERATION=$((FILE_LENGTH / STRIDE_SIZE))
6307
6308         # prepare the read-ahead file
6309         setup_test101bc $STRIPE_SIZE $FILE_LENGTH
6310         cancel_lru_locks osc
6311         for BIDX in 2 4 8 16 32 64 128 256
6312         do
6313                 local BSIZE=$((BIDX*4096))
6314                 local READ_COUNT=$((STRIPE_SIZE/BSIZE))
6315                 local STRIDE_LENGTH=$((STRIDE_SIZE/BSIZE))
6316                 local OFFSET=$((STRIPE_SIZE/BSIZE*(OSTCOUNT - 1)))
6317                 $LCTL set_param -n llite.*.read_ahead_stats 0
6318                 $READS -f $DIR/$tfile  -l $STRIDE_LENGTH -o $OFFSET \
6319                               -s $FILE_LENGTH -b $STRIPE_SIZE -a $READ_COUNT -n $ITERATION
6320                 cancel_lru_locks osc
6321                 ra_check_101 $BSIZE $STRIPE_SIZE $FILE_LENGTH
6322         done
6323         cleanup_test101bc
6324         true
6325 }
6326 run_test 101b "check stride-io mode read-ahead ================="
6327
6328 test_101c() {
6329         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6330         local STRIPE_SIZE=1048576
6331         local FILE_LENGTH=$((STRIPE_SIZE*100))
6332         local nreads=10000
6333         local osc_rpc_stats
6334
6335         setup_test101bc $STRIPE_SIZE $FILE_LENGTH
6336
6337         cancel_lru_locks osc
6338         $LCTL set_param osc.*.rpc_stats 0
6339         $READS -f $DIR/$tfile -s$FILE_LENGTH -b65536 -n$nreads -t 180
6340         for osc_rpc_stats in $($LCTL get_param -N osc.*.rpc_stats); do
6341                 local stats=$($LCTL get_param -n $osc_rpc_stats)
6342                 local lines=$(echo "$stats" | awk 'END {print NR;}')
6343                 local size
6344
6345                 if [ $lines -le 20 ]; then
6346                         continue
6347                 fi
6348                 for size in 1 2 4 8; do
6349                         local rpc=$(echo "$stats" |
6350                                     awk '($1 == "'$size':") {print $2; exit; }')
6351                         [ $rpc != 0 ] &&
6352                                 error "Small $((size*4))k read IO $rpc !"
6353                 done
6354                 echo "$osc_rpc_stats check passed!"
6355         done
6356         cleanup_test101bc
6357         true
6358 }
6359 run_test 101c "check stripe_size aligned read-ahead ================="
6360
6361 set_read_ahead() {
6362         $LCTL get_param -n llite.*.max_read_ahead_mb | head -n 1
6363         $LCTL set_param -n llite.*.max_read_ahead_mb $1 > /dev/null 2>&1
6364 }
6365
6366 test_101d() {
6367         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6368         local file=$DIR/$tfile
6369         local sz_MB=${FILESIZE_101d:-500}
6370         local ra_MB=${READAHEAD_MB:-40}
6371
6372         local free_MB=$(($(df -P $DIR | tail -n 1 | awk '{ print $4 }') / 1024))
6373         [ $free_MB -lt $sz_MB ] &&
6374                 skip "Need free space ${sz_MB}M, have ${free_MB}M" && return
6375
6376         echo "Create test file $file size ${sz_MB}M, ${free_MB}M free"
6377         $SETSTRIPE -c -1 $file || error "setstripe failed"
6378
6379         dd if=/dev/zero of=$file bs=1M count=$sz_MB || error "dd failed"
6380         echo Cancel LRU locks on lustre client to flush the client cache
6381         cancel_lru_locks osc
6382
6383         echo Disable read-ahead
6384         local old_READAHEAD=$(set_read_ahead 0)
6385
6386         echo Reading the test file $file with read-ahead disabled
6387         local raOFF=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$sz_MB")
6388
6389         echo Cancel LRU locks on lustre client to flush the client cache
6390         cancel_lru_locks osc
6391         echo Enable read-ahead with ${ra_MB}MB
6392         set_read_ahead $ra_MB
6393
6394         echo Reading the test file $file with read-ahead enabled
6395         local raON=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$sz_MB")
6396
6397         echo "read-ahead disabled time read $raOFF"
6398         echo "read-ahead enabled  time read $raON"
6399
6400         set_read_ahead $old_READAHEAD
6401         rm -f $file
6402         wait_delete_completed
6403
6404         [ $raOFF -le 1 -o $raON -lt $raOFF ] ||
6405                 error "readahead ${raON}s > no-readahead ${raOFF}s ${sz_MB}M"
6406 }
6407 run_test 101d "file read with and without read-ahead enabled"
6408
6409 test_101e() {
6410         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6411         local file=$DIR/$tfile
6412         local size_KB=500  #KB
6413         local count=100
6414         local bsize=1024
6415
6416         local free_KB=$(df -P $DIR | tail -n 1 | awk '{ print $4 }')
6417         local need_KB=$((count * size_KB))
6418         [[ $free_KB -le $need_KB ]] &&
6419                 skip_env "Need free space $need_KB, have $free_KB" && return
6420
6421         echo "Creating $count ${size_KB}K test files"
6422         for ((i = 0; i < $count; i++)); do
6423                 dd if=/dev/zero of=$file.$i bs=$bsize count=$size_KB 2>/dev/null
6424         done
6425
6426         echo "Cancel LRU locks on lustre client to flush the client cache"
6427         cancel_lru_locks osc
6428
6429         echo "Reset readahead stats"
6430         $LCTL set_param -n llite.*.read_ahead_stats 0
6431
6432         for ((i = 0; i < $count; i++)); do
6433                 dd if=$file.$i of=/dev/null bs=$bsize count=$size_KB 2>/dev/null
6434         done
6435
6436         local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
6437                      get_named_value 'misses' | cut -d" " -f1 | calc_total)
6438
6439         for ((i = 0; i < $count; i++)); do
6440                 rm -rf $file.$i 2>/dev/null
6441         done
6442
6443         #10000 means 20% reads are missing in readahead
6444         [[ $miss -lt 10000 ]] ||  error "misses too much for small reads"
6445 }
6446 run_test 101e "check read-ahead for small read(1k) for small files(500k)"
6447
6448 cleanup_test101f() {
6449     trap 0
6450     $LCTL set_param -n llite.*.max_read_ahead_whole_mb $MAX_WHOLE_MB
6451     rm -rf $DIR/$tfile 2>/dev/null
6452 }
6453
6454 test_101f() {
6455         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6456     local file=$DIR/$tfile
6457     local nreads=1000
6458
6459     MAX_WHOLE_MB=$($LCTL get_param -n llite.*.max_read_ahead_whole_mb)
6460     $LCTL set_param -n llite.*.max_read_ahead_whole_mb 2
6461     dd if=/dev/zero of=${file} bs=2097152 count=1 2>/dev/null
6462     trap cleanup_test101f EXIT
6463
6464     echo Cancel LRU locks on lustre client to flush the client cache
6465     cancel_lru_locks osc
6466
6467     echo Reset readahead stats
6468     $LCTL set_param -n llite.*.read_ahead_stats 0
6469     # Random read in a 2M file, because max_read_ahead_whole_mb = 2M,
6470     # readahead should read in 2M file on second read, so only miss
6471     # 2 pages.
6472     echo Random 4K reads on 2M file for 1000 times
6473     $READS -f $file -s 2097152 -b 4096 -n $nreads
6474
6475     echo checking missing pages
6476     local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
6477           get_named_value 'misses' | cut -d" " -f1 | calc_total)
6478
6479     [ $miss -lt 3 ] || error "misses too much pages!"
6480     cleanup_test101f
6481 }
6482 run_test 101f "check read-ahead for max_read_ahead_whole_mb"
6483
6484 setup_test102() {
6485         test_mkdir -p $DIR/$tdir
6486         chown $RUNAS_ID $DIR/$tdir
6487         STRIPE_SIZE=65536
6488         STRIPE_OFFSET=1
6489         STRIPE_COUNT=$OSTCOUNT
6490         [[ $OSTCOUNT -gt 4 ]] && STRIPE_COUNT=4
6491
6492         trap cleanup_test102 EXIT
6493         cd $DIR
6494         $1 $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $STRIPE_COUNT $tdir
6495         cd $DIR/$tdir
6496         for num in 1 2 3 4; do
6497                 for count in $(seq 1 $STRIPE_COUNT); do
6498                         for idx in $(seq 0 $[$STRIPE_COUNT - 1]); do
6499                                 local size=`expr $STRIPE_SIZE \* $num`
6500                                 local file=file"$num-$idx-$count"
6501                                 $1 $SETSTRIPE -S $size -i $idx -c $count $file
6502                         done
6503                 done
6504         done
6505
6506         cd $DIR
6507         $1 $TAR cf $TMP/f102.tar $tdir --xattrs
6508 }
6509
6510 cleanup_test102() {
6511         trap 0
6512         rm -f $TMP/f102.tar
6513         rm -rf $DIR/d0.sanity/d102
6514 }
6515
6516 test_102a() {
6517         local testfile=$DIR/$tfile
6518
6519         touch $testfile
6520
6521         [ "$UID" != 0 ] && skip_env "must run as root" && return
6522         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep xattr)" ] &&
6523                 skip_env "must have user_xattr" && return
6524
6525         [ -z "$(which setfattr 2>/dev/null)" ] &&
6526                 skip_env "could not find setfattr" && return
6527
6528         echo "set/get xattr..."
6529         setfattr -n trusted.name1 -v value1 $testfile ||
6530                 error "setfattr -n trusted.name1=value1 $testfile failed"
6531         getfattr -n trusted.name1 $testfile 2> /dev/null |
6532           grep "trusted.name1=.value1" ||
6533                 error "$testfile missing trusted.name1=value1"
6534
6535         setfattr -n user.author1 -v author1 $testfile ||
6536                 error "setfattr -n user.author1=author1 $testfile failed"
6537         getfattr -n user.author1 $testfile 2> /dev/null |
6538           grep "user.author1=.author1" ||
6539                 error "$testfile missing trusted.author1=author1"
6540
6541         echo "listxattr..."
6542         setfattr -n trusted.name2 -v value2 $testfile ||
6543                 error "$testfile unable to set trusted.name2"
6544         setfattr -n trusted.name3 -v value3 $testfile ||
6545                 error "$testfile unable to set trusted.name3"
6546         [ $(getfattr -d -m "^trusted" $testfile 2> /dev/null |
6547             grep "trusted.name" | wc -l) -eq 3 ] ||
6548                 error "$testfile missing 3 trusted.name xattrs"
6549
6550         setfattr -n user.author2 -v author2 $testfile ||
6551                 error "$testfile unable to set user.author2"
6552         setfattr -n user.author3 -v author3 $testfile ||
6553                 error "$testfile unable to set user.author3"
6554         [ $(getfattr -d -m "^user" $testfile 2> /dev/null |
6555             grep "user.author" | wc -l) -eq 3 ] ||
6556                 error "$testfile missing 3 user.author xattrs"
6557
6558         echo "remove xattr..."
6559         setfattr -x trusted.name1 $testfile ||
6560                 error "$testfile error deleting trusted.name1"
6561         getfattr -d -m trusted $testfile 2> /dev/null | grep "trusted.name1" &&
6562                 error "$testfile did not delete trusted.name1 xattr"
6563
6564         setfattr -x user.author1 $testfile ||
6565                 error "$testfile error deleting user.author1"
6566         getfattr -d -m user $testfile 2> /dev/null | grep "user.author1" &&
6567                 error "$testfile did not delete trusted.name1 xattr"
6568
6569         # b10667: setting lustre special xattr be silently discarded
6570         echo "set lustre special xattr ..."
6571         setfattr -n "trusted.lov" -v "invalid value" $testfile ||
6572                 error "$testfile allowed setting trusted.lov"
6573 }
6574 run_test 102a "user xattr test =================================="
6575
6576 test_102b() {
6577         [ -z "$(which setfattr 2>/dev/null)" ] &&
6578                 skip_env "could not find setfattr" && return
6579
6580         # b10930: get/set/list trusted.lov xattr
6581         echo "get/set/list trusted.lov xattr ..."
6582         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping 2-stripe test" && return
6583         local testfile=$DIR/$tfile
6584         $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
6585                 error "setstripe failed"
6586         local STRIPECOUNT=$($GETSTRIPE -c $testfile) ||
6587                 error "getstripe failed"
6588         getfattr -d -m "^trusted" $testfile 2>/dev/null | grep "trusted.lov" ||
6589                 error "can't get trusted.lov from $testfile"
6590
6591         local testfile2=${testfile}2
6592         local value=$(getfattr -n trusted.lov $testfile 2>/dev/null |
6593                         grep "trusted.lov" | sed -e 's/[^=]\+=//')
6594
6595         $MCREATE $testfile2
6596         setfattr -n trusted.lov -v $value $testfile2
6597         local stripe_size=$($GETSTRIPE -S $testfile2)
6598         local stripe_count=$($GETSTRIPE -c $testfile2)
6599         [[ $stripe_size -eq 65536 ]] ||
6600                 error "stripe size $stripe_size != 65536"
6601         [[ $stripe_count -eq $STRIPECOUNT ]] ||
6602                 error "stripe count $stripe_count != $STRIPECOUNT"
6603         rm -f $DIR/$tfile
6604 }
6605 run_test 102b "getfattr/setfattr for trusted.lov EAs ============"
6606
6607 test_102c() {
6608         [ -z "$(which setfattr 2>/dev/null)" ] &&
6609                 skip_env "could not find setfattr" && return
6610
6611         # b10930: get/set/list lustre.lov xattr
6612         echo "get/set/list lustre.lov xattr ..."
6613         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping 2-stripe test" && return
6614         test_mkdir -p $DIR/$tdir
6615         chown $RUNAS_ID $DIR/$tdir
6616         local testfile=$DIR/$tdir/$tfile
6617         $RUNAS $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
6618                 error "setstripe failed"
6619         local STRIPECOUNT=$($RUNAS $GETSTRIPE -c $testfile) ||
6620                 error "getstripe failed"
6621         $RUNAS getfattr -d -m "^lustre" $testfile 2> /dev/null | \
6622         grep "lustre.lov" || error "can't get lustre.lov from $testfile"
6623
6624         local testfile2=${testfile}2
6625         local value=`getfattr -n lustre.lov $testfile 2> /dev/null | \
6626                      grep "lustre.lov" |sed -e 's/[^=]\+=//'  `
6627
6628         $RUNAS $MCREATE $testfile2
6629         $RUNAS setfattr -n lustre.lov -v $value $testfile2
6630         local stripe_size=$($RUNAS $GETSTRIPE -S $testfile2)
6631         local stripe_count=$($RUNAS $GETSTRIPE -c $testfile2)
6632         [ $stripe_size -eq 65536 ] || error "stripe size $stripe_size != 65536"
6633         [ $stripe_count -eq $STRIPECOUNT ] ||
6634                 error "stripe count $stripe_count != $STRIPECOUNT"
6635 }
6636 run_test 102c "non-root getfattr/setfattr for lustre.lov EAs ==========="
6637
6638 compare_stripe_info1() {
6639         local stripe_index_all_zero=true
6640
6641         for num in 1 2 3 4; do
6642                 for count in $(seq 1 $STRIPE_COUNT); do
6643                         for offset in $(seq 0 $[$STRIPE_COUNT - 1]); do
6644                                 local size=$((STRIPE_SIZE * num))
6645                                 local file=file"$num-$offset-$count"
6646                                 stripe_size=$($LFS getstripe -S $PWD/$file)
6647                                 [[ $stripe_size -ne $size ]] &&
6648                                     error "$file: size $stripe_size != $size"
6649                                 stripe_count=$($LFS getstripe -c $PWD/$file)
6650                                 # allow fewer stripes to be created, ORI-601
6651                                 [[ $stripe_count -lt $(((3 * count + 3) / 4)) ]] &&
6652                                     error "$file: count $stripe_count != $count"
6653                                 stripe_index=$($LFS getstripe -i $PWD/$file)
6654                                 [[ $stripe_index -ne 0 ]] &&
6655                                         stripe_index_all_zero=false
6656                         done
6657                 done
6658         done
6659         $stripe_index_all_zero &&
6660                 error "all files are being extracted starting from OST index 0"
6661         return 0
6662 }
6663
6664 find_lustre_tar() {
6665         [ -n "$(which tar 2>/dev/null)" ] &&
6666                 strings $(which tar) | grep -q "lustre" && echo tar
6667 }
6668
6669 test_102d() {
6670         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6671         # b10930: tar test for trusted.lov xattr
6672         TAR=$(find_lustre_tar)
6673         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
6674         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping N-stripe test" && return
6675         setup_test102
6676         test_mkdir -p $DIR/d102d
6677         $TAR xf $TMP/f102.tar -C $DIR/d102d --xattrs
6678         cd $DIR/d102d/$tdir
6679         compare_stripe_info1
6680 }
6681 run_test 102d "tar restore stripe info from tarfile,not keep osts ==========="
6682
6683 test_102f() {
6684         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6685         # b10930: tar test for trusted.lov xattr
6686         TAR=$(find_lustre_tar)
6687         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
6688         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping N-stripe test" && return
6689         setup_test102
6690         test_mkdir -p $DIR/d102f
6691         cd $DIR
6692         $TAR cf - --xattrs $tdir | $TAR xf - --xattrs -C $DIR/d102f
6693         cd $DIR/d102f/$tdir
6694         compare_stripe_info1
6695 }
6696 run_test 102f "tar copy files, not keep osts ==========="
6697
6698 grow_xattr() {
6699         local xsize=${1:-1024}  # in bytes
6700         local file=$DIR/$tfile
6701
6702         [ -z $(lctl get_param -n mdc.*.connect_flags | grep xattr) ] &&
6703                 skip "must have user_xattr" && return 0
6704         [ -z "$(which setfattr 2>/dev/null)" ] &&
6705                 skip_env "could not find setfattr" && return 0
6706         [ -z "$(which getfattr 2>/dev/null)" ] &&
6707                 skip_env "could not find getfattr" && return 0
6708
6709         touch $file
6710
6711         local value="$(generate_string $xsize)"
6712
6713         local xbig=trusted.big
6714         log "save $xbig on $file"
6715         setfattr -n $xbig -v $value $file ||
6716                 error "saving $xbig on $file failed"
6717
6718         local orig=$(get_xattr_value $xbig $file)
6719         [[ "$orig" != "$value" ]] && error "$xbig different after saving $xbig"
6720
6721         local xsml=trusted.sml
6722         log "save $xsml on $file"
6723         setfattr -n $xsml -v val $file || error "saving $xsml on $file failed"
6724
6725         local new=$(get_xattr_value $xbig $file)
6726         [[ "$new" != "$orig" ]] && error "$xbig different after saving $xsml"
6727
6728         log "grow $xsml on $file"
6729         setfattr -n $xsml -v "$value" $file ||
6730                 error "growing $xsml on $file failed"
6731
6732         new=$(get_xattr_value $xbig $file)
6733         [[ "$new" != "$orig" ]] && error "$xbig different after growing $xsml"
6734         log "$xbig still valid after growing $xsml"
6735
6736         rm -f $file
6737 }
6738
6739 test_102h() { # bug 15777
6740         grow_xattr 1024
6741 }
6742 run_test 102h "grow xattr from inside inode to external block"
6743
6744 test_102ha() {
6745         large_xattr_enabled || { skip "large_xattr disabled" && return; }
6746         grow_xattr $(max_xattr_size)
6747 }
6748 run_test 102ha "grow xattr from inside inode to external inode"
6749
6750 test_102i() { # bug 17038
6751         [ -z "$(which getfattr 2>/dev/null)" ] &&
6752                 skip "could not find getfattr" && return
6753         touch $DIR/$tfile
6754         ln -s $DIR/$tfile $DIR/${tfile}link
6755         getfattr -n trusted.lov $DIR/$tfile ||
6756                 error "lgetxattr on $DIR/$tfile failed"
6757         getfattr -h -n trusted.lov $DIR/${tfile}link 2>&1 |
6758                 grep -i "no such attr" ||
6759                 error "error for lgetxattr on $DIR/${tfile}link is not ENODATA"
6760         rm -f $DIR/$tfile $DIR/${tfile}link
6761 }
6762 run_test 102i "lgetxattr test on symbolic link ============"
6763
6764 test_102j() {
6765         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6766         TAR=$(find_lustre_tar)
6767         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
6768         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping N-stripe test" && return
6769         setup_test102 "$RUNAS"
6770         test_mkdir -p $DIR/d102j
6771         chown $RUNAS_ID $DIR/d102j
6772         $RUNAS $TAR xf $TMP/f102.tar -C $DIR/d102j --xattrs
6773         cd $DIR/d102j/$tdir
6774         compare_stripe_info1 "$RUNAS"
6775 }
6776 run_test 102j "non-root tar restore stripe info from tarfile, not keep osts ==="
6777
6778 test_102k() {
6779         [ -z "$(which setfattr 2>/dev/null)" ] &&
6780                 skip "could not find setfattr" && return
6781         touch $DIR/$tfile
6782         # b22187 just check that does not crash for regular file.
6783         setfattr -n trusted.lov $DIR/$tfile
6784         # b22187 'setfattr -n trusted.lov' should work as remove LOV EA for directories
6785         local test_kdir=$DIR/d102k
6786         test_mkdir $test_kdir
6787         local default_size=`$GETSTRIPE -S $test_kdir`
6788         local default_count=`$GETSTRIPE -c $test_kdir`
6789         local default_offset=`$GETSTRIPE -i $test_kdir`
6790         $SETSTRIPE -S 65536 -i 0 -c $OSTCOUNT $test_kdir ||
6791                 error 'dir setstripe failed'
6792         setfattr -n trusted.lov $test_kdir
6793         local stripe_size=`$GETSTRIPE -S $test_kdir`
6794         local stripe_count=`$GETSTRIPE -c $test_kdir`
6795         local stripe_offset=`$GETSTRIPE -i $test_kdir`
6796         [ $stripe_size -eq $default_size ] ||
6797                 error "stripe size $stripe_size != $default_size"
6798         [ $stripe_count -eq $default_count ] ||
6799                 error "stripe count $stripe_count != $default_count"
6800         [ $stripe_offset -eq $default_offset ] ||
6801                 error "stripe offset $stripe_offset != $default_offset"
6802         rm -rf $DIR/$tfile $test_kdir
6803 }
6804 run_test 102k "setfattr without parameter of value shouldn't cause a crash"
6805
6806 test_102l() {
6807         [ -z "$(which getfattr 2>/dev/null)" ] &&
6808                 skip "could not find getfattr" && return
6809
6810         # LU-532 trusted. xattr is invisible to non-root
6811         local testfile=$DIR/$tfile
6812
6813         touch $testfile
6814
6815         echo "listxattr as user..."
6816         chown $RUNAS_ID $testfile
6817         $RUNAS getfattr -d -m '.*' $testfile 2>&1 |
6818             grep -q "trusted" &&
6819                 error "$testfile trusted xattrs are user visible"
6820
6821         return 0;
6822 }
6823 run_test 102l "listxattr size test =================================="
6824
6825 test_102m() { # LU-3403 llite: error of listxattr when buffer is small
6826         local path=$DIR/$tfile
6827         touch $path
6828
6829         listxattr_size_check $path || error "listattr_size_check $path failed"
6830 }
6831 run_test 102m "Ensure listxattr fails on small bufffer ========"
6832
6833 cleanup_test102
6834
6835 getxattr() { # getxattr path name
6836         # Return the base64 encoding of the value of xattr name on path.
6837         local path=$1
6838         local name=$2
6839
6840         # # getfattr --absolute-names --encoding=base64 --name=trusted.lov $path
6841         # file: $path
6842         # trusted.lov=0s0AvRCwEAAAAGAAAAAAAAAAAEAAACAAAAAAAQAAEAA...AAAAAAAAA=
6843         #
6844         # We print just 0s0AvRCwEAAAAGAAAAAAAAAAAEAAACAAAAAAAQAAEAA...AAAAAAAAA=
6845
6846         getfattr --absolute-names --encoding=base64 --name=$name $path |
6847                 awk -F= -v name=$name '$1 == name {
6848                         print substr($0, index($0, "=") + 1);
6849         }'
6850 }
6851
6852 test_102n() { # LU-4101 mdt: protect internal xattrs
6853         local file0=$DIR/$tfile.0
6854         local file1=$DIR/$tfile.1
6855         local xattr0=$TMP/$tfile.0
6856         local xattr1=$TMP/$tfile.1
6857         local name
6858         local value
6859
6860         [ -z "$(which setfattr 2>/dev/null)" ] &&
6861                 skip "could not find setfattr" && return
6862
6863         if [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.50) ]
6864         then
6865                 skip "MDT < 2.5.50 allows setxattr on internal trusted xattrs"
6866                 return
6867         fi
6868
6869         rm -rf $file0 $file1 $xattr0 $xattr1
6870         touch $file0 $file1
6871
6872         # Get 'before' xattrs of $file1.
6873         getfattr --absolute-names --dump --match=- $file1 > $xattr0
6874
6875         for name in lov lma lmv link fid version som hsm lfsck_namespace; do
6876                 # Try to copy xattr from $file0 to $file1.
6877                 value=$(getxattr $file0 trusted.$name 2> /dev/null)
6878
6879                 setfattr --name=trusted.$name --value="$value" $file1 ||
6880                         error "setxattr 'trusted.$name' failed"
6881
6882                 # Try to set a garbage xattr.
6883                 value=0sVGhlIHF1aWNrIGJyb3duIGZveCBqdW1wcyBvdmVyIGl0c2VsZi4=
6884
6885                 setfattr --name=trusted.$name --value="$value" $file1 ||
6886                         error "setxattr 'trusted.$name' failed"
6887
6888                 # Try to remove the xattr from $file1. We don't care if this
6889                 # appears to succeed or fail, we just don't want there to be
6890                 # any changes or crashes.
6891                 setfattr --remove=$trusted.$name $file1 2> /dev/null
6892         done
6893
6894         if [ $(lustre_version_code $SINGLEMDS) -gt $(version_code 2.6.50) ]
6895         then
6896                 name="lfsck_ns"
6897                 # Try to copy xattr from $file0 to $file1.
6898                 value=$(getxattr $file0 trusted.$name 2> /dev/null)
6899
6900                 setfattr --name=trusted.$name --value="$value" $file1 ||
6901                         error "setxattr 'trusted.$name' failed"
6902
6903                 # Try to set a garbage xattr.
6904                 value=0sVGhlIHF1aWNrIGJyb3duIGZveCBqdW1wcyBvdmVyIGl0c2VsZi4=
6905
6906                 setfattr --name=trusted.$name --value="$value" $file1 ||
6907                         error "setxattr 'trusted.$name' failed"
6908
6909                 # Try to remove the xattr from $file1. We don't care if this
6910                 # appears to succeed or fail, we just don't want there to be
6911                 # any changes or crashes.
6912                 setfattr --remove=$trusted.$name $file1 2> /dev/null
6913         fi
6914
6915         # Get 'after' xattrs of file1.
6916         getfattr --absolute-names --dump --match=- $file1 > $xattr1
6917
6918         if ! diff $xattr0 $xattr1; then
6919                 error "before and after xattrs of '$file1' differ"
6920         fi
6921
6922         rm -rf $file0 $file1 $xattr0 $xattr1
6923
6924         return 0
6925 }
6926 run_test 102n "silently ignore setxattr on internal trusted xattrs"
6927
6928 test_102p() { # LU-4703 setxattr did not check ownership
6929         local testfile=$DIR/$tfile
6930
6931         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.56) ] &&
6932                 skip "MDS needs to be at least 2.5.56" && return
6933
6934         touch $testfile
6935
6936         echo "setfacl as user..."
6937         $RUNAS setfacl -m "u:$RUNAS_ID:rwx" $testfile
6938         [ $? -ne 0 ] || error "setfacl by $RUNAS_ID was allowed on $testfile"
6939
6940         echo "setfattr as user..."
6941         setfacl -m "u:$RUNAS_ID:---" $testfile
6942         $RUNAS setfattr -x system.posix_acl_access $testfile
6943         [ $? -ne 0 ] || error "setfattr by $RUNAS_ID was allowed on $testfile"
6944 }
6945 run_test 102p "check setxattr(2) correctly fails without permission"
6946
6947 test_102q() {
6948         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.92) ] &&
6949                 skip "MDS needs to be at least 2.6.92" && return
6950         orphan_linkea_check $DIR/$tfile || error "orphan_linkea_check"
6951 }
6952 run_test 102q "flistxattr should not return trusted.link EAs for orphans"
6953
6954 test_102r() {
6955         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.93) ] &&
6956                 skip "MDS needs to be at least 2.6.93" && return
6957         touch $DIR/$tfile || error "touch"
6958         setfattr -n user.$(basename $tfile) $DIR/$tfile || error "setfattr"
6959         getfattr -n user.$(basename $tfile) $DIR/$tfile || error "getfattr"
6960         rm $DIR/$tfile || error "rm"
6961
6962         #normal directory
6963         mkdir -p $DIR/$tdir || error "mkdir"
6964         setfattr -n user.$(basename $tdir) $DIR/$tdir || error "setfattr dir"
6965         getfattr -n user.$(basename $tdir) $DIR/$tdir || error "getfattr dir"
6966         setfattr -x user.$(basename $tdir) $DIR/$tdir ||
6967                 error "$testfile error deleting user.author1"
6968         getfattr -d -m user.$(basename $tdir) 2> /dev/null |
6969                 grep "user.$(basename $tdir)" &&
6970                 error "$tdir did not delete user.$(basename $tdir)"
6971         rmdir $DIR/$tdir || error "rmdir"
6972
6973         #striped directory
6974         test_mkdir -p $DIR/$tdir || error "make striped dir"
6975         setfattr -n user.$(basename $tdir) $DIR/$tdir || error "setfattr dir"
6976         getfattr -n user.$(basename $tdir) $DIR/$tdir || error "getfattr dir"
6977         setfattr -x user.$(basename $tdir) $DIR/$tdir ||
6978                 error "$testfile error deleting user.author1"
6979         getfattr -d -m user.$(basename $tdir) 2> /dev/null |
6980                 grep "user.$(basename $tdir)" &&
6981                 error "$tdir did not delete user.$(basename $tdir)"
6982         rmdir $DIR/$tdir || error "rm striped dir"
6983 }
6984 run_test 102r "set EAs with empty values"
6985
6986 run_acl_subtest()
6987 {
6988     $LUSTRE/tests/acl/run $LUSTRE/tests/acl/$1.test
6989     return $?
6990 }
6991
6992 test_103a() {
6993         [ "$UID" != 0 ] && skip_env "must run as root" && return
6994         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] &&
6995                 skip "must have acl enabled" && return
6996         [ -z "$(which setfacl 2>/dev/null)" ] &&
6997                 skip_env "could not find setfacl" && return
6998         $GSS && skip "could not run under gss" && return
6999
7000         gpasswd -a daemon bin                           # LU-5641
7001         do_facet $SINGLEMDS gpasswd -a daemon bin       # LU-5641
7002
7003         declare -a identity_old
7004
7005         for num in $(seq $MDSCOUNT); do
7006                 switch_identity $num true || identity_old[$num]=$?
7007         done
7008
7009         SAVE_UMASK=$(umask)
7010         umask 0022
7011         cd $DIR
7012
7013         echo "performing cp ..."
7014         run_acl_subtest cp || error "run_acl_subtest cp failed"
7015         echo "performing getfacl-noacl..."
7016         run_acl_subtest getfacl-noacl || error "getfacl-noacl test failed"
7017         echo "performing misc..."
7018         run_acl_subtest misc || error  "misc test failed"
7019         echo "performing permissions..."
7020         run_acl_subtest permissions || error "permissions failed"
7021         echo "performing setfacl..."
7022         run_acl_subtest setfacl || error  "setfacl test failed"
7023
7024         # inheritance test got from HP
7025         echo "performing inheritance..."
7026         cp $LUSTRE/tests/acl/make-tree . || error "cannot copy make-tree"
7027         chmod +x make-tree || error "chmod +x failed"
7028         run_acl_subtest inheritance || error "inheritance test failed"
7029         rm -f make-tree
7030
7031         echo "LU-974 ignore umask when acl is enabled..."
7032         run_acl_subtest 974 || error "LU-974 umask test failed"
7033         if [ $MDSCOUNT -ge 2 ]; then
7034                 run_acl_subtest 974_remote ||
7035                         error "LU-974 umask test failed under remote dir"
7036         fi
7037
7038         echo "LU-2561 newly created file is same size as directory..."
7039         if [ $(facet_fstype $SINGLEMDS) != "zfs" ]; then
7040                 run_acl_subtest 2561 || error "LU-2561 test failed"
7041         else
7042                 run_acl_subtest 2561_zfs || error "LU-2561 zfs test failed"
7043         fi
7044
7045         run_acl_subtest 4924 || error "LU-4924 test failed"
7046
7047         cd $SAVE_PWD
7048         umask $SAVE_UMASK
7049
7050         for num in $(seq $MDSCOUNT); do
7051                 if [ "${identity_old[$num]}" = 1 ]; then
7052                         switch_identity $num false || identity_old[$num]=$?
7053                 fi
7054         done
7055 }
7056 run_test 103a "acl test ========================================="
7057
7058 test_103b() {
7059         local noacl=false
7060         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
7061         local mountopts=$MDS_MOUNT_OPTS
7062
7063         if [[ "$MDS_MOUNT_OPTS" =~ "noacl" ]]; then
7064                 noacl=true
7065         else
7066                 # stop the MDT
7067                 stop $SINGLEMDS || error "failed to stop MDT."
7068                 # remount the MDT
7069                 if [ -z "$MDS_MOUNT_OPTS" ]; then
7070                         MDS_MOUNT_OPTS="-o noacl"
7071                 else
7072                         MDS_MOUNT_OPTS="${MDS_MOUNT_OPTS},noacl"
7073                 fi
7074                 start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS ||
7075                         error "failed to start MDT."
7076                 MDS_MOUNT_OPTS=$mountopts
7077         fi
7078
7079         touch $DIR/$tfile
7080         setfacl -m u:bin:rw $DIR/$tfile && error "setfacl should fail"
7081
7082         if ! $noacl; then
7083                 # stop the MDT
7084                 stop $SINGLEMDS || error "failed to stop MDT."
7085                 # remount the MDT
7086                 start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS ||
7087                         error "failed to start MDT."
7088         fi
7089
7090         true
7091 }
7092 run_test 103b "MDS mount option 'noacl'"
7093
7094 test_103c() {
7095         mkdir -p $DIR/$tdir
7096         cp -rp $DIR/$tdir $DIR/$tdir.bak
7097
7098         [ -n "$(getfattr -d -m. $DIR/$tdir | grep posix_acl_default)" ] &&
7099                 error "$DIR/$tdir shouldn't contain default ACL"
7100         [ -n "$(getfattr -d -m. $DIR/$tdir.bak | grep posix_acl_default)" ] &&
7101                 error "$DIR/$tdir.bak shouldn't contain default ACL"
7102         true
7103 }
7104 run_test 103c "'cp -rp' won't set empty acl"
7105
7106 test_104a() {
7107         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7108         touch $DIR/$tfile
7109         lfs df || error "lfs df failed"
7110         lfs df -ih || error "lfs df -ih failed"
7111         lfs df -h $DIR || error "lfs df -h $DIR failed"
7112         lfs df -i $DIR || error "lfs df -i $DIR failed"
7113         lfs df $DIR/$tfile || error "lfs df $DIR/$tfile failed"
7114         lfs df -ih $DIR/$tfile || error "lfs df -ih $DIR/$tfile failed"
7115
7116         local OSC=$(lctl dl | grep OST0000-osc-[^M] | awk '{ print $4 }')
7117         lctl --device %$OSC deactivate
7118         lfs df || error "lfs df with deactivated OSC failed"
7119         lctl --device %$OSC activate
7120         # wait the osc back to normal
7121         wait_osc_import_state client ost FULL
7122
7123         lfs df || error "lfs df with reactivated OSC failed"
7124         rm -f $DIR/$tfile
7125 }
7126 run_test 104a "lfs df [-ih] [path] test ========================="
7127
7128 test_104b() {
7129         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7130         [ $RUNAS_ID -eq $UID ] &&
7131                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
7132         chmod 666 /dev/obd
7133         denied_cnt=$(($($RUNAS $LFS check servers 2>&1 |
7134                         grep "Permission denied" | wc -l)))
7135         if [ $denied_cnt -ne 0 ]; then
7136                 error "lfs check servers test failed"
7137         fi
7138 }
7139 run_test 104b "$RUNAS lfs check servers test ===================="
7140
7141 test_105a() {
7142         # doesn't work on 2.4 kernels
7143         touch $DIR/$tfile
7144         if $(flock_is_enabled); then
7145                 flocks_test 1 on -f $DIR/$tfile || error "fail flock on"
7146         else
7147                 flocks_test 1 off -f $DIR/$tfile || error "fail flock off"
7148         fi
7149         rm -f $DIR/$tfile
7150 }
7151 run_test 105a "flock when mounted without -o flock test ========"
7152
7153 test_105b() {
7154         touch $DIR/$tfile
7155         if $(flock_is_enabled); then
7156                 flocks_test 1 on -c $DIR/$tfile || error "fail flock on"
7157         else
7158                 flocks_test 1 off -c $DIR/$tfile || error "fail flock off"
7159         fi
7160         rm -f $DIR/$tfile
7161 }
7162 run_test 105b "fcntl when mounted without -o flock test ========"
7163
7164 test_105c() {
7165         touch $DIR/$tfile
7166         if $(flock_is_enabled); then
7167                 flocks_test 1 on -l $DIR/$tfile || error "fail flock on"
7168         else
7169                 flocks_test 1 off -l $DIR/$tfile || error "fail flock off"
7170         fi
7171         rm -f $DIR/$tfile
7172 }
7173 run_test 105c "lockf when mounted without -o flock test ========"
7174
7175 test_105d() { # bug 15924
7176         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7177         test_mkdir -p $DIR/$tdir
7178         flock_is_enabled || { skip "mount w/o flock enabled" && return; }
7179         #define OBD_FAIL_LDLM_CP_CB_WAIT  0x315
7180         $LCTL set_param fail_loc=0x80000315
7181         flocks_test 2 $DIR/$tdir
7182 }
7183 run_test 105d "flock race (should not freeze) ========"
7184
7185 test_105e() { # bug 22660 && 22040
7186         flock_is_enabled || { skip "mount w/o flock enabled" && return; }
7187         touch $DIR/$tfile
7188         flocks_test 3 $DIR/$tfile
7189 }
7190 run_test 105e "Two conflicting flocks from same process ======="
7191
7192 test_106() { #bug 10921
7193         test_mkdir -p $DIR/$tdir
7194         $DIR/$tdir && error "exec $DIR/$tdir succeeded"
7195         chmod 777 $DIR/$tdir || error "chmod $DIR/$tdir failed"
7196 }
7197 run_test 106 "attempt exec of dir followed by chown of that dir"
7198
7199 test_107() {
7200         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7201         CDIR=`pwd`
7202         cd $DIR
7203
7204         local file=core
7205         rm -f $file
7206
7207         local save_pattern=$(sysctl -n kernel.core_pattern)
7208         local save_uses_pid=$(sysctl -n kernel.core_uses_pid)
7209         sysctl -w kernel.core_pattern=$file
7210         sysctl -w kernel.core_uses_pid=0
7211
7212         ulimit -c unlimited
7213         sleep 60 &
7214         SLEEPPID=$!
7215
7216         sleep 1
7217
7218         kill -s 11 $SLEEPPID
7219         wait $SLEEPPID
7220         if [ -e $file ]; then
7221                 size=`stat -c%s $file`
7222                 [ $size -eq 0 ] && error "Fail to create core file $file"
7223         else
7224                 error "Fail to create core file $file"
7225         fi
7226         rm -f $file
7227         sysctl -w kernel.core_pattern=$save_pattern
7228         sysctl -w kernel.core_uses_pid=$save_uses_pid
7229         cd $CDIR
7230 }
7231 run_test 107 "Coredump on SIG"
7232
7233 test_110() {
7234         test_mkdir -p $DIR/$tdir
7235         test_mkdir $DIR/$tdir/$(str_repeat 'a' 255) ||
7236                 error "mkdir with 255 char failed"
7237         test_mkdir $DIR/$tdir/$(str_repeat 'b' 256) &&
7238                 error "mkdir with 256 char should fail, but did not"
7239         touch $DIR/$tdir/$(str_repeat 'x' 255) ||
7240                 error "create with 255 char failed"
7241         touch $DIR/$tdir/$(str_repeat 'y' 256) &&
7242                 error "create with 256 char should fail, but did not"
7243
7244         ls -l $DIR/$tdir
7245         rm -rf $DIR/$tdir
7246 }
7247 run_test 110 "filename length checking"
7248
7249 test_115() {
7250         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7251         OSTIO_pre=$(ps -e | grep ll_ost_io | awk '{ print $4 }'| sort -n |
7252                 tail -1 | cut -c11-20)
7253         [ -z "$OSTIO_pre" ] && skip "no OSS threads" && return
7254         echo "Starting with $OSTIO_pre threads"
7255
7256         NUMTEST=20000
7257         NUMFREE=$(df -i -P $DIR | tail -n 1 | awk '{ print $4 }')
7258         [[ $NUMFREE -lt $NUMTEST ]] && NUMTEST=$(($NUMFREE - 1000))
7259         echo "$NUMTEST creates/unlinks"
7260         test_mkdir -p $DIR/$tdir
7261         createmany -o $DIR/$tdir/$tfile $NUMTEST
7262         unlinkmany $DIR/$tdir/$tfile $NUMTEST
7263
7264         OSTIO_post=$(ps -e | grep ll_ost_io | awk '{ print $4 }' | sort -n |
7265                 tail -1 | cut -c11-20)
7266
7267         # don't return an error
7268         [ $OSTIO_post == $OSTIO_pre ] && echo \
7269             "WARNING: No new ll_ost_io threads were created ($OSTIO_pre)" &&
7270             echo "This may be fine, depending on what ran before this test" &&
7271             echo "and how fast this system is." && return
7272
7273         echo "Started with $OSTIO_pre threads, ended with $OSTIO_post"
7274 }
7275 run_test 115 "verify dynamic thread creation===================="
7276
7277 free_min_max () {
7278         wait_delete_completed
7279         AVAIL=($(lctl get_param -n osc.*[oO][sS][cC]-[^M]*.kbytesavail))
7280         echo OST kbytes available: ${AVAIL[@]}
7281         MAXI=0; MAXV=${AVAIL[0]}
7282         MINI=0; MINV=${AVAIL[0]}
7283         for ((i = 0; i < ${#AVAIL[@]}; i++)); do
7284                 #echo OST $i: ${AVAIL[i]}kb
7285                 if [[ ${AVAIL[i]} -gt $MAXV ]]; then
7286                         MAXV=${AVAIL[i]}; MAXI=$i
7287                 fi
7288                 if [[ ${AVAIL[i]} -lt $MINV ]]; then
7289                         MINV=${AVAIL[i]}; MINI=$i
7290                 fi
7291         done
7292         echo Min free space: OST $MINI: $MINV
7293         echo Max free space: OST $MAXI: $MAXV
7294 }
7295
7296 test_116a() { # was previously test_116()
7297         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7298         [[ $OSTCOUNT -lt 2 ]] && skip_env "$OSTCOUNT < 2 OSTs" && return
7299
7300         echo -n "Free space priority "
7301         do_facet $SINGLEMDS lctl get_param -n lo*.*-mdtlov.qos_prio_free |
7302                 head -n1
7303         declare -a AVAIL
7304         free_min_max
7305
7306         [ $MINV -eq 0 ] && skip "no free space in OST$MINI, skip" && return
7307         [ $MINV -gt 10000000 ] && skip "too much free space in OST$MINI, skip" \
7308                 && return
7309         trap simple_cleanup_common EXIT
7310
7311
7312         # Check if we need to generate uneven OSTs
7313         test_mkdir -p $DIR/$tdir/OST${MINI}
7314         local FILL=$(($MINV / 4))
7315         local DIFF=$(($MAXV - $MINV))
7316         local DIFF2=$(($DIFF * 100 / $MINV))
7317
7318         local threshold=$(do_facet $SINGLEMDS \
7319                 lctl get_param -n *.*MDT0000-mdtlov.qos_threshold_rr | head -n1)
7320         threshold=${threshold%%%}
7321         echo -n "Check for uneven OSTs: "
7322         echo -n "diff=${DIFF}KB (${DIFF2}%) must be > ${threshold}% ..."
7323
7324         if [[ $DIFF2 -gt $threshold ]]; then
7325                 echo "ok"
7326                 echo "Don't need to fill OST$MINI"
7327         else
7328                 # generate uneven OSTs. Write 2% over the QOS threshold value
7329                 echo "no"
7330                 DIFF=$(($threshold - $DIFF2 + 2))
7331                 DIFF2=$(( ($MINV * $DIFF)/100 ))
7332                 echo "Fill ${DIFF}% remaining space in OST${MINI} with ${DIFF2}KB"
7333                 $SETSTRIPE -i $MINI -c 1 $DIR/$tdir/OST${MINI} ||
7334                         error "setstripe failed"
7335                 DIFF=$(($DIFF2 / 2048))
7336                 i=0
7337                 while [ $i -lt $DIFF ]; do
7338                         i=$(($i + 1))
7339                         dd if=/dev/zero of=$DIR/$tdir/OST${MINI}/$tfile-$i \
7340                                 bs=2M count=1 2>/dev/null
7341                         echo -n .
7342                 done
7343                 echo .
7344                 sync
7345                 sleep_maxage
7346                 free_min_max
7347         fi
7348
7349         DIFF=$(($MAXV - $MINV))
7350         DIFF2=$(($DIFF * 100 / $MINV))
7351         echo -n "diff=${DIFF}=${DIFF2}% must be > ${threshold}% for QOS mode..."
7352         if [[ $DIFF2 -gt $threshold ]]; then
7353                 echo "ok"
7354         else
7355                 echo "failed - QOS mode won't be used"
7356                 skip "QOS imbalance criteria not met"
7357                 simple_cleanup_common
7358                 return
7359         fi
7360
7361         MINI1=$MINI; MINV1=$MINV
7362         MAXI1=$MAXI; MAXV1=$MAXV
7363
7364         # now fill using QOS
7365         $SETSTRIPE -c 1 $DIR/$tdir
7366         FILL=$(($FILL / 200))
7367         if [ $FILL -gt 600 ]; then
7368                 FILL=600
7369         fi
7370         echo "writing $FILL files to QOS-assigned OSTs"
7371         i=0
7372         while [ $i -lt $FILL ]; do
7373                 i=$((i + 1))
7374                 dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=200k \
7375                         count=1 2>/dev/null
7376                 echo -n .
7377         done
7378         echo "wrote $i 200k files"
7379         sync
7380         sleep_maxage
7381
7382         echo "Note: free space may not be updated, so measurements might be off"
7383         free_min_max
7384         DIFF2=$(($MAXV - $MINV))
7385         echo "free space delta: orig $DIFF final $DIFF2"
7386         [ $DIFF2 -gt $DIFF ] && echo "delta got worse!"
7387         DIFF=$(($MINV1 - ${AVAIL[$MINI1]}))
7388         echo "Wrote ${DIFF}KB to smaller OST $MINI1"
7389         DIFF2=$(($MAXV1 - ${AVAIL[$MAXI1]}))
7390         echo "Wrote ${DIFF2}KB to larger OST $MAXI1"
7391         FILL=$(($DIFF2 * 100 / $DIFF - 100))
7392         [ $DIFF -gt 0 ] &&
7393                 echo "Wrote ${FILL}% more data to larger OST $MAXI1"
7394
7395         # Figure out which files were written where
7396         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
7397                   awk '/'$MINI1': / {print $2; exit}')
7398         echo $UUID
7399         MINC=$($GETSTRIPE --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
7400         echo "$MINC files created on smaller OST $MINI1"
7401         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
7402                   awk '/'$MAXI1': / {print $2; exit}')
7403         echo $UUID
7404         MAXC=$($GETSTRIPE --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
7405         echo "$MAXC files created on larger OST $MAXI1"
7406         FILL=$(($MAXC * 100 / $MINC - 100))
7407         [[ $MINC -gt 0 ]] &&
7408                 echo "Wrote ${FILL}% more files to larger OST $MAXI1"
7409         [[ $MAXC -gt $MINC ]] ||
7410                 error_ignore LU-9 "stripe QOS didn't balance free space"
7411         simple_cleanup_common
7412 }
7413 run_test 116a "stripe QOS: free space balance ==================="
7414
7415 test_116b() { # LU-2093
7416         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7417 #define OBD_FAIL_MDS_OSC_CREATE_FAIL     0x147
7418         local old_rr=$(do_facet $SINGLEMDS lctl get_param -n \
7419                        lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr | head -1)
7420         [ -z "$old_rr" ] && skip "no QOS" && return 0
7421         do_facet $SINGLEMDS lctl set_param \
7422                 lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr=0
7423         mkdir -p $DIR/$tdir
7424         do_facet $SINGLEMDS lctl set_param fail_loc=0x147
7425         createmany -o $DIR/$tdir/f- 20 || error "can't create"
7426         do_facet $SINGLEMDS lctl set_param fail_loc=0
7427         rm -rf $DIR/$tdir
7428         do_facet $SINGLEMDS lctl set_param \
7429                 lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr=$old_rr
7430 }
7431 run_test 116b "QoS shouldn't LBUG if not enough OSTs found on the 2nd pass"
7432
7433 test_117() # bug 10891
7434 {
7435         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7436         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1
7437         #define OBD_FAIL_OST_SETATTR_CREDITS 0x21e
7438         lctl set_param fail_loc=0x21e
7439         > $DIR/$tfile || error "truncate failed"
7440         lctl set_param fail_loc=0
7441         echo "Truncate succeeded."
7442         rm -f $DIR/$tfile
7443 }
7444 run_test 117 "verify osd extend =========="
7445
7446 NO_SLOW_RESENDCOUNT=4
7447 export OLD_RESENDCOUNT=""
7448 set_resend_count () {
7449         local PROC_RESENDCOUNT="osc.${FSNAME}-OST*-osc-*.resend_count"
7450         OLD_RESENDCOUNT=$(lctl get_param -n $PROC_RESENDCOUNT | head -n1)
7451         lctl set_param -n $PROC_RESENDCOUNT $1
7452         echo resend_count is set to $(lctl get_param -n $PROC_RESENDCOUNT)
7453 }
7454
7455 # for reduce test_118* time (b=14842)
7456 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
7457
7458 # Reset async IO behavior after error case
7459 reset_async() {
7460         FILE=$DIR/reset_async
7461
7462         # Ensure all OSCs are cleared
7463         $SETSTRIPE -c -1 $FILE
7464         dd if=/dev/zero of=$FILE bs=64k count=$OSTCOUNT
7465         sync
7466         rm $FILE
7467 }
7468
7469 test_118a() #bug 11710
7470 {
7471         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7472         reset_async
7473
7474         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7475         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7476         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
7477
7478         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7479                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7480                 return 1;
7481         fi
7482         rm -f $DIR/$tfile
7483 }
7484 run_test 118a "verify O_SYNC works =========="
7485
7486 test_118b()
7487 {
7488         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7489         remote_ost_nodsh && skip "remote OST with nodsh" && return
7490
7491         reset_async
7492
7493         #define OBD_FAIL_OST_ENOENT 0x217
7494         set_nodes_failloc "$(osts_nodes)" 0x217
7495         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7496         RC=$?
7497         set_nodes_failloc "$(osts_nodes)" 0
7498         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7499         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7500                     grep -c writeback)
7501
7502         if [[ $RC -eq 0 ]]; then
7503                 error "Must return error due to dropped pages, rc=$RC"
7504                 return 1;
7505         fi
7506
7507         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7508                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7509                 return 1;
7510         fi
7511
7512         echo "Dirty pages not leaked on ENOENT"
7513
7514         # Due to the above error the OSC will issue all RPCs syncronously
7515         # until a subsequent RPC completes successfully without error.
7516         $MULTIOP $DIR/$tfile Ow4096yc
7517         rm -f $DIR/$tfile
7518
7519         return 0
7520 }
7521 run_test 118b "Reclaim dirty pages on fatal error =========="
7522
7523 test_118c()
7524 {
7525         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7526
7527         # for 118c, restore the original resend count, LU-1940
7528         [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] &&
7529                                 set_resend_count $OLD_RESENDCOUNT
7530         remote_ost_nodsh && skip "remote OST with nodsh" && return
7531
7532         reset_async
7533
7534         #define OBD_FAIL_OST_EROFS               0x216
7535         set_nodes_failloc "$(osts_nodes)" 0x216
7536
7537         # multiop should block due to fsync until pages are written
7538         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
7539         MULTIPID=$!
7540         sleep 1
7541
7542         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
7543                 error "Multiop failed to block on fsync, pid=$MULTIPID"
7544         fi
7545
7546         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7547                     grep -c writeback)
7548         if [[ $WRITEBACK -eq 0 ]]; then
7549                 error "No page in writeback, writeback=$WRITEBACK"
7550         fi
7551
7552         set_nodes_failloc "$(osts_nodes)" 0
7553         wait $MULTIPID
7554         RC=$?
7555         if [[ $RC -ne 0 ]]; then
7556                 error "Multiop fsync failed, rc=$RC"
7557         fi
7558
7559         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7560         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7561                     grep -c writeback)
7562         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7563                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7564         fi
7565
7566         rm -f $DIR/$tfile
7567         echo "Dirty pages flushed via fsync on EROFS"
7568         return 0
7569 }
7570 run_test 118c "Fsync blocks on EROFS until dirty pages are flushed =========="
7571
7572 # continue to use small resend count to reduce test_118* time (b=14842)
7573 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
7574
7575 test_118d()
7576 {
7577         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7578         remote_ost_nodsh && skip "remote OST with nodsh" && return
7579
7580         reset_async
7581
7582         #define OBD_FAIL_OST_BRW_PAUSE_BULK
7583         set_nodes_failloc "$(osts_nodes)" 0x214
7584         # multiop should block due to fsync until pages are written
7585         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
7586         MULTIPID=$!
7587         sleep 1
7588
7589         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
7590                 error "Multiop failed to block on fsync, pid=$MULTIPID"
7591         fi
7592
7593         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7594                     grep -c writeback)
7595         if [[ $WRITEBACK -eq 0 ]]; then
7596                 error "No page in writeback, writeback=$WRITEBACK"
7597         fi
7598
7599         wait $MULTIPID || error "Multiop fsync failed, rc=$?"
7600         set_nodes_failloc "$(osts_nodes)" 0
7601
7602         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7603         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7604                     grep -c writeback)
7605         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7606                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7607         fi
7608
7609         rm -f $DIR/$tfile
7610         echo "Dirty pages gaurenteed flushed via fsync"
7611         return 0
7612 }
7613 run_test 118d "Fsync validation inject a delay of the bulk =========="
7614
7615 test_118f() {
7616         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7617         reset_async
7618
7619         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
7620         lctl set_param fail_loc=0x8000040a
7621
7622         # Should simulate EINVAL error which is fatal
7623         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7624         RC=$?
7625         if [[ $RC -eq 0 ]]; then
7626                 error "Must return error due to dropped pages, rc=$RC"
7627         fi
7628
7629         lctl set_param fail_loc=0x0
7630
7631         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
7632         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7633         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7634                     grep -c writeback)
7635         if [[ $LOCKED -ne 0 ]]; then
7636                 error "Locked pages remain in cache, locked=$LOCKED"
7637         fi
7638
7639         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7640                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7641         fi
7642
7643         rm -f $DIR/$tfile
7644         echo "No pages locked after fsync"
7645
7646         reset_async
7647         return 0
7648 }
7649 run_test 118f "Simulate unrecoverable OSC side error =========="
7650
7651 test_118g() {
7652         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7653         reset_async
7654
7655         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
7656         lctl set_param fail_loc=0x406
7657
7658         # simulate local -ENOMEM
7659         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7660         RC=$?
7661
7662         lctl set_param fail_loc=0
7663         if [[ $RC -eq 0 ]]; then
7664                 error "Must return error due to dropped pages, rc=$RC"
7665         fi
7666
7667         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
7668         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7669         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7670                         grep -c writeback)
7671         if [[ $LOCKED -ne 0 ]]; then
7672                 error "Locked pages remain in cache, locked=$LOCKED"
7673         fi
7674
7675         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7676                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7677         fi
7678
7679         rm -f $DIR/$tfile
7680         echo "No pages locked after fsync"
7681
7682         reset_async
7683         return 0
7684 }
7685 run_test 118g "Don't stay in wait if we got local -ENOMEM  =========="
7686
7687 test_118h() {
7688         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7689         remote_ost_nodsh && skip "remote OST with nodsh" && return
7690
7691         reset_async
7692
7693         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
7694         set_nodes_failloc "$(osts_nodes)" 0x20e
7695         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
7696         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7697         RC=$?
7698
7699         set_nodes_failloc "$(osts_nodes)" 0
7700         if [[ $RC -eq 0 ]]; then
7701                 error "Must return error due to dropped pages, rc=$RC"
7702         fi
7703
7704         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
7705         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7706         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7707                     grep -c writeback)
7708         if [[ $LOCKED -ne 0 ]]; then
7709                 error "Locked pages remain in cache, locked=$LOCKED"
7710         fi
7711
7712         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7713                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7714         fi
7715
7716         rm -f $DIR/$tfile
7717         echo "No pages locked after fsync"
7718
7719         return 0
7720 }
7721 run_test 118h "Verify timeout in handling recoverables errors  =========="
7722
7723 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
7724
7725 test_118i() {
7726         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7727         remote_ost_nodsh && skip "remote OST with nodsh" && return
7728
7729         reset_async
7730
7731         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
7732         set_nodes_failloc "$(osts_nodes)" 0x20e
7733
7734         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
7735         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
7736         PID=$!
7737         sleep 5
7738         set_nodes_failloc "$(osts_nodes)" 0
7739
7740         wait $PID
7741         RC=$?
7742         if [[ $RC -ne 0 ]]; then
7743                 error "got error, but should be not, rc=$RC"
7744         fi
7745
7746         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
7747         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7748         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
7749         if [[ $LOCKED -ne 0 ]]; then
7750                 error "Locked pages remain in cache, locked=$LOCKED"
7751         fi
7752
7753         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7754                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7755         fi
7756
7757         rm -f $DIR/$tfile
7758         echo "No pages locked after fsync"
7759
7760         return 0
7761 }
7762 run_test 118i "Fix error before timeout in recoverable error  =========="
7763
7764 [ "$SLOW" = "no" ] && set_resend_count 4
7765
7766 test_118j() {
7767         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7768         remote_ost_nodsh && skip "remote OST with nodsh" && return
7769
7770         reset_async
7771
7772         #define OBD_FAIL_OST_BRW_WRITE_BULK2     0x220
7773         set_nodes_failloc "$(osts_nodes)" 0x220
7774
7775         # return -EIO from OST
7776         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7777         RC=$?
7778         set_nodes_failloc "$(osts_nodes)" 0x0
7779         if [[ $RC -eq 0 ]]; then
7780                 error "Must return error due to dropped pages, rc=$RC"
7781         fi
7782
7783         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
7784         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7785         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
7786         if [[ $LOCKED -ne 0 ]]; then
7787                 error "Locked pages remain in cache, locked=$LOCKED"
7788         fi
7789
7790         # in recoverable error on OST we want resend and stay until it finished
7791         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7792                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7793         fi
7794
7795         rm -f $DIR/$tfile
7796         echo "No pages locked after fsync"
7797
7798         return 0
7799 }
7800 run_test 118j "Simulate unrecoverable OST side error =========="
7801
7802 test_118k()
7803 {
7804         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7805         remote_ost_nodsh && skip "remote OSTs with nodsh" && return
7806
7807         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
7808         set_nodes_failloc "$(osts_nodes)" 0x20e
7809         test_mkdir -p $DIR/$tdir
7810
7811         for ((i=0;i<10;i++)); do
7812                 (dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=1M count=10 || \
7813                         error "dd to $DIR/$tdir/$tfile-$i failed" )&
7814                 SLEEPPID=$!
7815                 sleep 0.500s
7816                 kill $SLEEPPID
7817                 wait $SLEEPPID
7818         done
7819
7820         set_nodes_failloc "$(osts_nodes)" 0
7821         rm -rf $DIR/$tdir
7822 }
7823 run_test 118k "bio alloc -ENOMEM and IO TERM handling ========="
7824
7825 test_118l()
7826 {
7827         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7828         # LU-646
7829         test_mkdir -p $DIR/$tdir
7830         $MULTIOP $DIR/$tdir Dy || error "fsync dir failed"
7831         rm -rf $DIR/$tdir
7832 }
7833 run_test 118l "fsync dir ========="
7834
7835 test_118m() # LU-3066
7836 {
7837         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7838         test_mkdir -p $DIR/$tdir
7839         $MULTIOP $DIR/$tdir DY || error "fdatasync dir failed"
7840         rm -rf $DIR/$tdir
7841 }
7842 run_test 118m "fdatasync dir ========="
7843
7844 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
7845
7846 test_119a() # bug 11737
7847 {
7848         BSIZE=$((512 * 1024))
7849         directio write $DIR/$tfile 0 1 $BSIZE
7850         # We ask to read two blocks, which is more than a file size.
7851         # directio will indicate an error when requested and actual
7852         # sizes aren't equeal (a normal situation in this case) and
7853         # print actual read amount.
7854         NOB=`directio read $DIR/$tfile 0 2 $BSIZE | awk '/error/ {print $6}'`
7855         if [ "$NOB" != "$BSIZE" ]; then
7856                 error "read $NOB bytes instead of $BSIZE"
7857         fi
7858         rm -f $DIR/$tfile
7859 }
7860 run_test 119a "Short directIO read must return actual read amount"
7861
7862 test_119b() # bug 11737
7863 {
7864         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
7865
7866         $SETSTRIPE -c 2 $DIR/$tfile || error "setstripe failed"
7867         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1 || error "dd failed"
7868         sync
7869         $MULTIOP $DIR/$tfile oO_RDONLY:O_DIRECT:r$((2048 * 1024)) || \
7870                 error "direct read failed"
7871         rm -f $DIR/$tfile
7872 }
7873 run_test 119b "Sparse directIO read must return actual read amount"
7874
7875 test_119c() # bug 13099
7876 {
7877         BSIZE=1048576
7878         directio write $DIR/$tfile 3 1 $BSIZE || error "direct write failed"
7879         directio readhole $DIR/$tfile 0 2 $BSIZE || error "reading hole failed"
7880         rm -f $DIR/$tfile
7881 }
7882 run_test 119c "Testing for direct read hitting hole"
7883
7884 test_119d() # bug 15950
7885 {
7886         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7887         MAX_RPCS_IN_FLIGHT=`$LCTL get_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight`
7888         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight 1
7889         BSIZE=1048576
7890         $SETSTRIPE $DIR/$tfile -i 0 -c 1 || error "setstripe failed"
7891         $DIRECTIO write $DIR/$tfile 0 1 $BSIZE || error "first directio failed"
7892         #define OBD_FAIL_OSC_DIO_PAUSE           0x40d
7893         lctl set_param fail_loc=0x40d
7894         $DIRECTIO write $DIR/$tfile 1 4 $BSIZE &
7895         pid_dio=$!
7896         sleep 1
7897         cat $DIR/$tfile > /dev/null &
7898         lctl set_param fail_loc=0
7899         pid_reads=$!
7900         wait $pid_dio
7901         log "the DIO writes have completed, now wait for the reads (should not block very long)"
7902         sleep 2
7903         [ -n "`ps h -p $pid_reads -o comm`" ] && \
7904         error "the read rpcs have not completed in 2s"
7905         rm -f $DIR/$tfile
7906         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight $MAX_RPCS_IN_FLIGHT
7907 }
7908 run_test 119d "The DIO path should try to send a new rpc once one is completed"
7909
7910 test_120a() {
7911         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7912         test_mkdir -p $DIR/$tdir
7913         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
7914                skip "no early lock cancel on server" && return 0
7915
7916         lru_resize_disable mdc
7917         lru_resize_disable osc
7918         cancel_lru_locks mdc
7919         # asynchronous object destroy at MDT could cause bl ast to client
7920         cancel_lru_locks osc
7921
7922         stat $DIR/$tdir > /dev/null
7923         can1=$(do_facet $SINGLEMDS \
7924                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
7925                awk '/ldlm_cancel/ {print $2}')
7926         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
7927                awk '/ldlm_bl_callback/ {print $2}')
7928         test_mkdir -c1 $DIR/$tdir/d1
7929         can2=$(do_facet $SINGLEMDS \
7930                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
7931                awk '/ldlm_cancel/ {print $2}')
7932         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
7933                awk '/ldlm_bl_callback/ {print $2}')
7934         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
7935         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
7936         lru_resize_enable mdc
7937         lru_resize_enable osc
7938 }
7939 run_test 120a "Early Lock Cancel: mkdir test"
7940
7941 test_120b() {
7942         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7943         test_mkdir $DIR/$tdir
7944         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel)" ] && \
7945                skip "no early lock cancel on server" && return 0
7946         lru_resize_disable mdc
7947         lru_resize_disable osc
7948         cancel_lru_locks mdc
7949         stat $DIR/$tdir > /dev/null
7950         can1=$(do_facet $SINGLEMDS \
7951                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
7952                awk '/ldlm_cancel/ {print $2}')
7953         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
7954                awk '/ldlm_bl_callback/ {print $2}')
7955         touch $DIR/$tdir/f1
7956         can2=$(do_facet $SINGLEMDS \
7957                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
7958                awk '/ldlm_cancel/ {print $2}')
7959         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
7960                awk '/ldlm_bl_callback/ {print $2}')
7961         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
7962         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
7963         lru_resize_enable mdc
7964         lru_resize_enable osc
7965 }
7966 run_test 120b "Early Lock Cancel: create test"
7967
7968 test_120c() {
7969         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7970         test_mkdir -c1 $DIR/$tdir
7971         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel)" ] && \
7972                skip "no early lock cancel on server" && return 0
7973         lru_resize_disable mdc
7974         lru_resize_disable osc
7975         test_mkdir -p -c1 $DIR/$tdir/d1
7976         test_mkdir -p -c1 $DIR/$tdir/d2
7977         touch $DIR/$tdir/d1/f1
7978         cancel_lru_locks mdc
7979         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 > /dev/null
7980         can1=$(do_facet $SINGLEMDS \
7981                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
7982                awk '/ldlm_cancel/ {print $2}')
7983         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
7984                awk '/ldlm_bl_callback/ {print $2}')
7985         ln $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
7986         can2=$(do_facet $SINGLEMDS \
7987                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
7988                awk '/ldlm_cancel/ {print $2}')
7989         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
7990                awk '/ldlm_bl_callback/ {print $2}')
7991         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
7992         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
7993         lru_resize_enable mdc
7994         lru_resize_enable osc
7995 }
7996 run_test 120c "Early Lock Cancel: link test"
7997
7998 test_120d() {
7999         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8000         test_mkdir -p -c1 $DIR/$tdir
8001         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel)" ] && \
8002                skip "no early lock cancel on server" && return 0
8003         lru_resize_disable mdc
8004         lru_resize_disable osc
8005         touch $DIR/$tdir
8006         cancel_lru_locks mdc
8007         stat $DIR/$tdir > /dev/null
8008         can1=$(do_facet $SINGLEMDS \
8009                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8010                awk '/ldlm_cancel/ {print $2}')
8011         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8012                awk '/ldlm_bl_callback/ {print $2}')
8013         chmod a+x $DIR/$tdir
8014         can2=$(do_facet $SINGLEMDS \
8015                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8016                awk '/ldlm_cancel/ {print $2}')
8017         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8018                awk '/ldlm_bl_callback/ {print $2}')
8019         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
8020         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
8021         lru_resize_enable mdc
8022         lru_resize_enable osc
8023 }
8024 run_test 120d "Early Lock Cancel: setattr test"
8025
8026 test_120e() {
8027         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8028         test_mkdir -p -c1 $DIR/$tdir
8029         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
8030                skip "no early lock cancel on server" && return 0
8031         lru_resize_disable mdc
8032         lru_resize_disable osc
8033         dd if=/dev/zero of=$DIR/$tdir/f1 count=1
8034         cancel_lru_locks mdc
8035         cancel_lru_locks osc
8036         dd if=$DIR/$tdir/f1 of=/dev/null
8037         stat $DIR/$tdir $DIR/$tdir/f1 > /dev/null
8038         # XXX client can not do early lock cancel of OST lock
8039         # during unlink (LU-4206), so cancel osc lock now.
8040         cancel_lru_locks osc
8041         can1=$(do_facet $SINGLEMDS \
8042                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8043                awk '/ldlm_cancel/ {print $2}')
8044         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8045                awk '/ldlm_bl_callback/ {print $2}')
8046         unlink $DIR/$tdir/f1
8047         sleep 5
8048         can2=$(do_facet $SINGLEMDS \
8049                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8050                awk '/ldlm_cancel/ {print $2}')
8051         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8052                awk '/ldlm_bl_callback/ {print $2}')
8053         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
8054         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
8055         lru_resize_enable mdc
8056         lru_resize_enable osc
8057 }
8058 run_test 120e "Early Lock Cancel: unlink test"
8059
8060 test_120f() {
8061         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8062         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
8063                skip "no early lock cancel on server" && return 0
8064         test_mkdir -p -c1 $DIR/$tdir
8065         lru_resize_disable mdc
8066         lru_resize_disable osc
8067         test_mkdir -p -c1 $DIR/$tdir/d1
8068         test_mkdir -p -c1 $DIR/$tdir/d2
8069         dd if=/dev/zero of=$DIR/$tdir/d1/f1 count=1
8070         dd if=/dev/zero of=$DIR/$tdir/d2/f2 count=1
8071         cancel_lru_locks mdc
8072         cancel_lru_locks osc
8073         dd if=$DIR/$tdir/d1/f1 of=/dev/null
8074         dd if=$DIR/$tdir/d2/f2 of=/dev/null
8075         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2 > /dev/null
8076         # XXX client can not do early lock cancel of OST lock
8077         # during rename (LU-4206), so cancel osc lock now.
8078         cancel_lru_locks osc
8079         can1=$(do_facet $SINGLEMDS \
8080                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8081                awk '/ldlm_cancel/ {print $2}')
8082         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8083                awk '/ldlm_bl_callback/ {print $2}')
8084         mrename $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
8085         sleep 5
8086         can2=$(do_facet $SINGLEMDS \
8087                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8088                awk '/ldlm_cancel/ {print $2}')
8089         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8090                awk '/ldlm_bl_callback/ {print $2}')
8091         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
8092         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
8093         lru_resize_enable mdc
8094         lru_resize_enable osc
8095 }
8096 run_test 120f "Early Lock Cancel: rename test"
8097
8098 test_120g() {
8099         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8100         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
8101                skip "no early lock cancel on server" && return 0
8102         lru_resize_disable mdc
8103         lru_resize_disable osc
8104         count=10000
8105         echo create $count files
8106         test_mkdir -p $DIR/$tdir
8107         cancel_lru_locks mdc
8108         cancel_lru_locks osc
8109         t0=`date +%s`
8110
8111         can0=$(do_facet $SINGLEMDS \
8112                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8113                awk '/ldlm_cancel/ {print $2}')
8114         blk0=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8115                awk '/ldlm_bl_callback/ {print $2}')
8116         createmany -o $DIR/$tdir/f $count
8117         sync
8118         can1=$(do_facet $SINGLEMDS \
8119                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8120                awk '/ldlm_cancel/ {print $2}')
8121         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8122                awk '/ldlm_bl_callback/ {print $2}')
8123         t1=$(date +%s)
8124         echo total: $((can1-can0)) cancels, $((blk1-blk0)) blockings
8125         echo rm $count files
8126         rm -r $DIR/$tdir
8127         sync
8128         can2=$(do_facet $SINGLEMDS \
8129                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8130                awk '/ldlm_cancel/ {print $2}')
8131         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8132                awk '/ldlm_bl_callback/ {print $2}')
8133         t2=$(date +%s)
8134         echo total: $count removes in $((t2-t1))
8135         echo total: $((can2-can1)) cancels, $((blk2-blk1)) blockings
8136         sleep 2
8137         # wait for commitment of removal
8138         lru_resize_enable mdc
8139         lru_resize_enable osc
8140 }
8141 run_test 120g "Early Lock Cancel: performance test"
8142
8143 test_121() { #bug #10589
8144         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8145         rm -rf $DIR/$tfile
8146         writes=$(LANG=C dd if=/dev/zero of=$DIR/$tfile count=1 2>&1 | awk -F '+' '/out$/ {print $1}')
8147 #define OBD_FAIL_LDLM_CANCEL_RACE        0x310
8148         lctl set_param fail_loc=0x310
8149         cancel_lru_locks osc > /dev/null
8150         reads=$(LANG=C dd if=$DIR/$tfile of=/dev/null 2>&1 | awk -F '+' '/in$/ {print $1}')
8151         lctl set_param fail_loc=0
8152         [[ $reads -eq $writes ]] ||
8153                 error "read $reads blocks, must be $writes blocks"
8154 }
8155 run_test 121 "read cancel race ========="
8156
8157 test_123a() { # was test 123, statahead(bug 11401)
8158         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8159         SLOWOK=0
8160         if [ -z "$(grep "processor.*: 1" /proc/cpuinfo)" ]; then
8161             log "testing on UP system. Performance may be not as good as expected."
8162                         SLOWOK=1
8163         fi
8164
8165         rm -rf $DIR/$tdir
8166         test_mkdir -p $DIR/$tdir
8167         NUMFREE=$(df -i -P $DIR | tail -n 1 | awk '{ print $4 }')
8168         [[ $NUMFREE -gt 100000 ]] && NUMFREE=100000 || NUMFREE=$((NUMFREE-1000))
8169         MULT=10
8170         for ((i=100, j=0; i<=$NUMFREE; j=$i, i=$((i * MULT)) )); do
8171                 createmany -o $DIR/$tdir/$tfile $j $((i - j))
8172
8173                 max=`lctl get_param -n llite.*.statahead_max | head -n 1`
8174                 lctl set_param -n llite.*.statahead_max 0
8175                 lctl get_param llite.*.statahead_max
8176                 cancel_lru_locks mdc
8177                 cancel_lru_locks osc
8178                 stime=`date +%s`
8179                 time ls -l $DIR/$tdir | wc -l
8180                 etime=`date +%s`
8181                 delta=$((etime - stime))
8182                 log "ls $i files without statahead: $delta sec"
8183                 lctl set_param llite.*.statahead_max=$max
8184
8185                 swrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
8186                 lctl get_param -n llite.*.statahead_max | grep '[0-9]'
8187                 cancel_lru_locks mdc
8188                 cancel_lru_locks osc
8189                 stime=`date +%s`
8190                 time ls -l $DIR/$tdir | wc -l
8191                 etime=`date +%s`
8192                 delta_sa=$((etime - stime))
8193                 log "ls $i files with statahead: $delta_sa sec"
8194                 lctl get_param -n llite.*.statahead_stats
8195                 ewrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
8196
8197                 [[ $swrong -lt $ewrong ]] &&
8198                         log "statahead was stopped, maybe too many locks held!"
8199                 [[ $delta -eq 0 || $delta_sa -eq 0 ]] && continue
8200
8201                 if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
8202                     max=`lctl get_param -n llite.*.statahead_max | head -n 1`
8203                     lctl set_param -n llite.*.statahead_max 0
8204                     lctl get_param llite.*.statahead_max
8205                     cancel_lru_locks mdc
8206                     cancel_lru_locks osc
8207                     stime=`date +%s`
8208                     time ls -l $DIR/$tdir | wc -l
8209                     etime=`date +%s`
8210                     delta=$((etime - stime))
8211                     log "ls $i files again without statahead: $delta sec"
8212                     lctl set_param llite.*.statahead_max=$max
8213                     if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
8214                         if [  $SLOWOK -eq 0 ]; then
8215                                 error "ls $i files is slower with statahead!"
8216                         else
8217                                 log "ls $i files is slower with statahead!"
8218                         fi
8219                         break
8220                     fi
8221                 fi
8222
8223                 [ $delta -gt 20 ] && break
8224                 [ $delta -gt 8 ] && MULT=$((50 / delta))
8225                 [ "$SLOW" = "no" -a $delta -gt 5 ] && break
8226         done
8227         log "ls done"
8228
8229         stime=`date +%s`
8230         rm -r $DIR/$tdir
8231         sync
8232         etime=`date +%s`
8233         delta=$((etime - stime))
8234         log "rm -r $DIR/$tdir/: $delta seconds"
8235         log "rm done"
8236         lctl get_param -n llite.*.statahead_stats
8237 }
8238 run_test 123a "verify statahead work"
8239
8240 test_123b () { # statahead(bug 15027)
8241         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8242         test_mkdir -p $DIR/$tdir
8243         createmany -o $DIR/$tdir/$tfile-%d 1000
8244
8245         cancel_lru_locks mdc
8246         cancel_lru_locks osc
8247
8248 #define OBD_FAIL_MDC_GETATTR_ENQUEUE     0x803
8249         lctl set_param fail_loc=0x80000803
8250         ls -lR $DIR/$tdir > /dev/null
8251         log "ls done"
8252         lctl set_param fail_loc=0x0
8253         lctl get_param -n llite.*.statahead_stats
8254         rm -r $DIR/$tdir
8255         sync
8256
8257 }
8258 run_test 123b "not panic with network error in statahead enqueue (bug 15027)"
8259
8260 test_124a() {
8261         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8262         [ -z "$($LCTL get_param -n mdc.*.connect_flags | grep lru_resize)" ] &&
8263                 skip "no lru resize on server" && return 0
8264         local NR=2000
8265         test_mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
8266
8267         log "create $NR files at $DIR/$tdir"
8268         createmany -o $DIR/$tdir/f $NR ||
8269                 error "failed to create $NR files in $DIR/$tdir"
8270
8271         cancel_lru_locks mdc
8272         ls -l $DIR/$tdir > /dev/null
8273
8274         local NSDIR=""
8275         local LRU_SIZE=0
8276         for VALUE in $($LCTL get_param ldlm.namespaces.*mdc-*.lru_size); do
8277                 local PARAM=$(echo ${VALUE[0]} | cut -d "=" -f1)
8278                 LRU_SIZE=$($LCTL get_param -n $PARAM)
8279                 if [[ $LRU_SIZE -gt $(default_lru_size) ]]; then
8280                         NSDIR=$(echo $PARAM | cut -d "." -f1-3)
8281                         log "NSDIR=$NSDIR"
8282                         log "NS=$(basename $NSDIR)"
8283                         break
8284                 fi
8285         done
8286
8287         if [[ -z "$NSDIR" || $LRU_SIZE -lt $(default_lru_size) ]]; then
8288                 skip "Not enough cached locks created!"
8289                 return 0
8290         fi
8291         log "LRU=$LRU_SIZE"
8292
8293         local SLEEP=30
8294
8295         # We know that lru resize allows one client to hold $LIMIT locks
8296         # for 10h. After that locks begin to be killed by client.
8297         local MAX_HRS=10
8298         local LIMIT=$($LCTL get_param -n $NSDIR.pool.limit)
8299         log "LIMIT=$LIMIT"
8300         if [ $LIMIT -lt $LRU_SIZE ]; then
8301             skip "Limit is too small $LIMIT"
8302             return 0
8303         fi
8304
8305         # Make LVF so higher that sleeping for $SLEEP is enough to _start_
8306         # killing locks. Some time was spent for creating locks. This means
8307         # that up to the moment of sleep finish we must have killed some of
8308         # them (10-100 locks). This depends on how fast ther were created.
8309         # Many of them were touched in almost the same moment and thus will
8310         # be killed in groups.
8311         local LVF=$(($MAX_HRS * 60 * 60 / $SLEEP * $LIMIT / $LRU_SIZE))
8312
8313         # Use $LRU_SIZE_B here to take into account real number of locks
8314         # created in the case of CMD, LRU_SIZE_B != $NR in most of cases
8315         local LRU_SIZE_B=$LRU_SIZE
8316         log "LVF=$LVF"
8317         local OLD_LVF=$($LCTL get_param -n $NSDIR.pool.lock_volume_factor)
8318         log "OLD_LVF=$OLD_LVF"
8319         $LCTL set_param -n $NSDIR.pool.lock_volume_factor $LVF
8320
8321         # Let's make sure that we really have some margin. Client checks
8322         # cached locks every 10 sec.
8323         SLEEP=$((SLEEP+20))
8324         log "Sleep ${SLEEP} sec"
8325         local SEC=0
8326         while ((SEC<$SLEEP)); do
8327                 echo -n "..."
8328                 sleep 5
8329                 SEC=$((SEC+5))
8330                 LRU_SIZE=$($LCTL get_param -n $NSDIR/lru_size)
8331                 echo -n "$LRU_SIZE"
8332         done
8333         echo ""
8334         $LCTL set_param -n $NSDIR.pool.lock_volume_factor $OLD_LVF
8335         local LRU_SIZE_A=$($LCTL get_param -n $NSDIR.lru_size)
8336
8337         [[ $LRU_SIZE_B -gt $LRU_SIZE_A ]] || {
8338                 error "No locks dropped in ${SLEEP}s. LRU size: $LRU_SIZE_A"
8339                 unlinkmany $DIR/$tdir/f $NR
8340                 return
8341         }
8342
8343         log "Dropped "$((LRU_SIZE_B-LRU_SIZE_A))" locks in ${SLEEP}s"
8344         log "unlink $NR files at $DIR/$tdir"
8345         unlinkmany $DIR/$tdir/f $NR
8346 }
8347 run_test 124a "lru resize ======================================="
8348
8349 get_max_pool_limit()
8350 {
8351         local limit=$($LCTL get_param \
8352                       -n ldlm.namespaces.*-MDT0000-mdc-*.pool.limit)
8353         local max=0
8354         for l in $limit; do
8355                 if [[ $l -gt $max ]]; then
8356                         max=$l
8357                 fi
8358         done
8359         echo $max
8360 }
8361
8362 test_124b() {
8363         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8364         [ -z "$($LCTL get_param -n mdc.*.connect_flags | grep lru_resize)" ] &&
8365                 skip "no lru resize on server" && return 0
8366
8367         LIMIT=$(get_max_pool_limit)
8368
8369         NR=$(($(default_lru_size)*20))
8370         if [[ $NR -gt $LIMIT ]]; then
8371                 log "Limit lock number by $LIMIT locks"
8372                 NR=$LIMIT
8373         fi
8374         lru_resize_disable mdc
8375         test_mkdir -p $DIR/$tdir/disable_lru_resize ||
8376                 error "failed to create $DIR/$tdir/disable_lru_resize"
8377
8378         createmany -o $DIR/$tdir/disable_lru_resize/f $NR
8379         log "doing ls -la $DIR/$tdir/disable_lru_resize 3 times"
8380         cancel_lru_locks mdc
8381         stime=`date +%s`
8382         PID=""
8383         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
8384         PID="$PID $!"
8385         sleep 2
8386         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
8387         PID="$PID $!"
8388         sleep 2
8389         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
8390         PID="$PID $!"
8391         wait $PID
8392         etime=`date +%s`
8393         nolruresize_delta=$((etime-stime))
8394         log "ls -la time: $nolruresize_delta seconds"
8395         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
8396         unlinkmany $DIR/$tdir/disable_lru_resize/f $NR
8397
8398         lru_resize_enable mdc
8399         test_mkdir -p $DIR/$tdir/enable_lru_resize ||
8400                 error "failed to create $DIR/$tdir/enable_lru_resize"
8401
8402         createmany -o $DIR/$tdir/enable_lru_resize/f $NR
8403         log "doing ls -la $DIR/$tdir/enable_lru_resize 3 times"
8404         cancel_lru_locks mdc
8405         stime=`date +%s`
8406         PID=""
8407         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
8408         PID="$PID $!"
8409         sleep 2
8410         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
8411         PID="$PID $!"
8412         sleep 2
8413         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
8414         PID="$PID $!"
8415         wait $PID
8416         etime=`date +%s`
8417         lruresize_delta=$((etime-stime))
8418         log "ls -la time: $lruresize_delta seconds"
8419         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
8420
8421         if [ $lruresize_delta -gt $nolruresize_delta ]; then
8422                 log "ls -la is $(((lruresize_delta - $nolruresize_delta) * 100 / $nolruresize_delta))% slower with lru resize enabled"
8423         elif [ $nolruresize_delta -gt $lruresize_delta ]; then
8424                 log "ls -la is $(((nolruresize_delta - $lruresize_delta) * 100 / $nolruresize_delta))% faster with lru resize enabled"
8425         else
8426                 log "lru resize performs the same with no lru resize"
8427         fi
8428         unlinkmany $DIR/$tdir/enable_lru_resize/f $NR
8429 }
8430 run_test 124b "lru resize (performance test) ======================="
8431
8432 test_124c() {
8433         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8434         [ -z "$($LCTL get_param -n mdc.*.connect_flags | grep lru_resize)" ] &&
8435                 skip "no lru resize on server" && return 0
8436
8437         # cache ununsed locks on client
8438         local nr=100
8439         cancel_lru_locks mdc
8440         test_mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
8441         createmany -o $DIR/$tdir/f $nr ||
8442                 error "failed to create $nr files in $DIR/$tdir"
8443         ls -l $DIR/$tdir > /dev/null
8444
8445         local nsdir="ldlm.namespaces.*-MDT0000-mdc-*"
8446         local unused=$($LCTL get_param -n $nsdir.lock_unused_count)
8447         local max_age=$($LCTL get_param -n $nsdir.lru_max_age)
8448         local recalc_p=$($LCTL get_param -n $nsdir.pool.recalc_period)
8449         echo "unused=$unused, max_age=$max_age, recalc_p=$recalc_p"
8450
8451         # set lru_max_age to 1 sec
8452         $LCTL set_param $nsdir.lru_max_age=1000 # jiffies
8453         echo "sleep $((recalc_p * 2)) seconds..."
8454         sleep $((recalc_p * 2))
8455
8456         local remaining=$($LCTL get_param -n $nsdir.lock_unused_count)
8457         # restore lru_max_age
8458         $LCTL set_param -n $nsdir.lru_max_age $max_age
8459         [ $remaining -eq 0 ] || error "$remaining locks are not canceled"
8460         unlinkmany $DIR/$tdir/f $nr
8461 }
8462 run_test 124c "LRUR cancel very aged locks"
8463
8464 test_125() { # 13358
8465         [ -z "$(lctl get_param -n llite.*.client_type | grep local)" ] && skip "must run as local client" && return
8466         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] && skip "must have acl enabled" && return
8467         [ -z "$(which setfacl)" ] && skip "must have setfacl tool" && return
8468         test_mkdir -p $DIR/d125 || error "mkdir failed"
8469         $SETSTRIPE -S 65536 -c -1 $DIR/d125 || error "setstripe failed"
8470         setfacl -R -m u:bin:rwx $DIR/d125 || error "setfacl $DIR/d125 failed"
8471         ls -ld $DIR/d125 || error "cannot access $DIR/d125"
8472 }
8473 run_test 125 "don't return EPROTO when a dir has a non-default striping and ACLs"
8474
8475 test_126() { # bug 12829/13455
8476         [ -z "$(lctl get_param -n llite.*.client_type | grep local)" ] && skip "must run as local client" && return
8477         [ "$UID" != 0 ] && skip_env "skipping $TESTNAME (must run as root)" && return
8478         $GSS && skip "must run as gss disabled" && return
8479
8480         $RUNAS -u 0 -g 1 touch $DIR/$tfile || error "touch failed"
8481         gid=`ls -n $DIR/$tfile | awk '{print $4}'`
8482         rm -f $DIR/$tfile
8483         [ $gid -eq "1" ] || error "gid is set to" $gid "instead of 1"
8484 }
8485 run_test 126 "check that the fsgid provided by the client is taken into account"
8486
8487 test_127a() { # bug 15521
8488         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8489         $SETSTRIPE -i 0 -c 1 $DIR/$tfile || error "setstripe failed"
8490         $LCTL set_param osc.*.stats=0
8491         FSIZE=$((2048 * 1024))
8492         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
8493         cancel_lru_locks osc
8494         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE
8495
8496         $LCTL get_param osc.*0000-osc-*.stats | grep samples > $DIR/${tfile}.tmp
8497         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
8498                 echo "got $COUNT $NAME"
8499                 [ ! $MIN ] && error "Missing min value for $NAME proc entry"
8500                 eval $NAME=$COUNT || error "Wrong proc format"
8501
8502                 case $NAME in
8503                         read_bytes|write_bytes)
8504                         [ $MIN -lt 4096 ] && error "min is too small: $MIN"
8505                         [ $MIN -gt $FSIZE ] && error "min is too big: $MIN"
8506                         [ $MAX -lt 4096 ] && error "max is too small: $MAX"
8507                         [ $MAX -gt $FSIZE ] && error "max is too big: $MAX"
8508                         [ $SUM -ne $FSIZE ] && error "sum is wrong: $SUM"
8509                         [ $SUMSQ -lt $(((FSIZE /4096) * (4096 * 4096))) ] &&
8510                                 error "sumsquare is too small: $SUMSQ"
8511                         [ $SUMSQ -gt $((FSIZE * FSIZE)) ] &&
8512                                 error "sumsquare is too big: $SUMSQ"
8513                         ;;
8514                         *) ;;
8515                 esac
8516         done < $DIR/${tfile}.tmp
8517
8518         #check that we actually got some stats
8519         [ "$read_bytes" ] || error "Missing read_bytes stats"
8520         [ "$write_bytes" ] || error "Missing write_bytes stats"
8521         [ "$read_bytes" != 0 ] || error "no read done"
8522         [ "$write_bytes" != 0 ] || error "no write done"
8523 }
8524 run_test 127a "verify the client stats are sane"
8525
8526 test_127b() { # bug LU-333
8527         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8528         $LCTL set_param llite.*.stats=0
8529         FSIZE=65536 # sized fixed to match PAGE_SIZE for most clients
8530         # perform 2 reads and writes so MAX is different from SUM.
8531         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
8532         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
8533         cancel_lru_locks osc
8534         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE count=1
8535         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE count=1
8536
8537         $LCTL get_param llite.*.stats | grep samples > $TMP/${tfile}.tmp
8538         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
8539                 echo "got $COUNT $NAME"
8540                 eval $NAME=$COUNT || error "Wrong proc format"
8541
8542         case $NAME in
8543                 read_bytes)
8544                         [ $COUNT -ne 2 ] && error "count is not 2: $COUNT"
8545                         [ $MIN -ne $FSIZE ] && error "min is not $FSIZE: $MIN"
8546                         [ $MAX -ne $FSIZE ] && error "max is incorrect: $MAX"
8547                         [ $SUM -ne $((FSIZE * 2)) ] && error "sum is wrong: $SUM"
8548                         ;;
8549                 write_bytes)
8550                         [ $COUNT -ne 2 ] && error "count is not 2: $COUNT"
8551                         [ $MIN -ne $FSIZE ] && error "min is not $FSIZE: $MIN"
8552                         [ $MAX -ne $FSIZE ] && error "max is incorrect: $MAX"
8553                         [ $SUM -ne $((FSIZE * 2)) ] && error "sum is wrong: $SUM"
8554                         ;;
8555                         *) ;;
8556                 esac
8557         done < $TMP/${tfile}.tmp
8558
8559         #check that we actually got some stats
8560         [ "$read_bytes" ] || error "Missing read_bytes stats"
8561         [ "$write_bytes" ] || error "Missing write_bytes stats"
8562         [ "$read_bytes" != 0 ] || error "no read done"
8563         [ "$write_bytes" != 0 ] || error "no write done"
8564 }
8565 run_test 127b "verify the llite client stats are sane"
8566
8567 test_128() { # bug 15212
8568         touch $DIR/$tfile
8569         $LFS 2>&1 <<-EOF | tee $TMP/$tfile.log
8570                 find $DIR/$tfile
8571                 find $DIR/$tfile
8572         EOF
8573
8574         result=$(grep error $TMP/$tfile.log)
8575         rm -f $DIR/$tfile
8576         [ -z "$result" ] || error "consecutive find's under interactive lfs failed"
8577 }
8578 run_test 128 "interactive lfs for 2 consecutive find's"
8579
8580 set_dir_limits () {
8581         local mntdev
8582         local canondev
8583         local node
8584
8585         local LDPROC=/proc/fs/ldiskfs
8586         local facets=$(get_facets MDS)
8587
8588         for facet in ${facets//,/ }; do
8589                 canondev=$(ldiskfs_canon \
8590                            *.$(convert_facet2label $facet).mntdev $facet)
8591                 do_facet $facet "test -e $LDPROC/$canondev/max_dir_size" ||
8592                                                 LDPROC=/sys/fs/ldiskfs
8593                 do_facet $facet "echo $1 >$LDPROC/$canondev/max_dir_size"
8594         done
8595 }
8596
8597 test_129() {
8598         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8599         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
8600                 skip "Only applicable to ldiskfs-based MDTs"
8601                 return
8602         fi
8603         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8604         ENOSPC=28
8605         EFBIG=27
8606
8607         rm -rf $DIR/$tdir
8608         test_mkdir -p $DIR/$tdir
8609
8610         # block size of mds1
8611         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
8612         local MDSBLOCKSIZE=$($LCTL get_param -n mdc.*MDT0000*.blocksize)
8613         local MAX=$((MDSBLOCKSIZE * 3))
8614         set_dir_limits $MAX
8615         local I=$(stat -c%s "$DIR/$tdir")
8616         local J=0
8617         local STRIPE_COUNT=1
8618         [[ $MDSCOUNT -ge 2 ]] && STRIPE_COUNT=$($LFS getdirstripe -c $DIR/$tdir)
8619         MAX=$((MAX*STRIPE_COUNT))
8620         while [[ $I -le $MAX ]]; do
8621                 $MULTIOP $DIR/$tdir/$J Oc
8622                 rc=$?
8623                 #check two errors ENOSPC for new version of ext4 max_dir_size patch
8624                 #mainline kernel commit df981d03eeff7971ac7e6ff37000bfa702327ef1
8625                 #and EFBIG for previous versions
8626                 if [ $rc -eq $EFBIG -o $rc -eq $ENOSPC ]; then
8627                         set_dir_limits 0
8628                         echo "return code $rc received as expected"
8629                         multiop $DIR/$tdir/$J Oc ||
8630                                 error_exit "multiop failed w/o dir size limit"
8631
8632                         I=$(stat -c%s "$DIR/$tdir")
8633
8634                         if [ $(lustre_version_code $SINGLEMDS) -lt \
8635                                         $(version_code 2.4.51) ]
8636                         then
8637                                 [[ $I -eq $MAX ]] && return 0
8638                         else
8639                                 [[ $I -gt $MAX ]] && return 0
8640                         fi
8641                         error_exit "current dir size $I, previous limit $MAX"
8642                 elif [ $rc -ne 0 ]; then
8643                         set_dir_limits 0
8644                         error_exit "return code $rc received instead of expected " \
8645                                    "$EFBIG or $ENOSPC, files in dir $I"
8646                 fi
8647                 J=$((J+1))
8648                 I=$(stat -c%s "$DIR/$tdir")
8649         done
8650
8651         set_dir_limits 0
8652         error "exceeded dir size limit $MAX($MDSCOUNT) : $I bytes"
8653 }
8654 run_test 129 "test directory size limit ========================"
8655
8656 OLDIFS="$IFS"
8657 cleanup_130() {
8658         trap 0
8659         IFS="$OLDIFS"
8660 }
8661
8662 test_130a() {
8663         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
8664         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP" &&
8665                 return
8666
8667         trap cleanup_130 EXIT RETURN
8668
8669         local fm_file=$DIR/$tfile
8670         $SETSTRIPE -S 65536 -c 1 $fm_file || error "setstripe on $fm_file"
8671         dd if=/dev/zero of=$fm_file bs=65536 count=1 ||
8672                 error "dd failed for $fm_file"
8673
8674         # LU-1795: test filefrag/FIEMAP once, even if unsupported
8675         filefrag -ves $fm_file
8676         RC=$?
8677         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
8678                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
8679         [ $RC != 0 ] && error "filefrag $fm_file failed"
8680
8681         filefrag_op=$(filefrag -ve $fm_file | grep -A 100 "ext:" |
8682                       grep -v "ext:" | grep -v "found")
8683         lun=$($GETSTRIPE -i $fm_file)
8684
8685         start_blk=`echo $filefrag_op | cut -d: -f2 | cut -d. -f1`
8686         IFS=$'\n'
8687         tot_len=0
8688         for line in $filefrag_op
8689         do
8690                 frag_lun=`echo $line | cut -d: -f5`
8691                 ext_len=`echo $line | cut -d: -f4`
8692                 if (( $frag_lun != $lun )); then
8693                         cleanup_130
8694                         error "FIEMAP on 1-stripe file($fm_file) failed"
8695                         return
8696                 fi
8697                 (( tot_len += ext_len ))
8698         done
8699
8700         if (( lun != frag_lun || start_blk != 0 || tot_len != 64 )); then
8701                 cleanup_130
8702                 error "FIEMAP on 1-stripe file($fm_file) failed;"
8703                 return
8704         fi
8705
8706         cleanup_130
8707
8708         echo "FIEMAP on single striped file succeeded"
8709 }
8710 run_test 130a "FIEMAP (1-stripe file)"
8711
8712 test_130b() {
8713         [ "$OSTCOUNT" -lt "2" ] &&
8714                 skip_env "skipping FIEMAP on 2-stripe file test" && return
8715
8716         [ "$OSTCOUNT" -ge "10" ] &&
8717                 skip_env "skipping FIEMAP with >= 10 OSTs" && return
8718
8719         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
8720         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP" &&
8721                 return
8722
8723         trap cleanup_130 EXIT RETURN
8724
8725         local fm_file=$DIR/$tfile
8726         $SETSTRIPE -S 65536 -c 2 $fm_file || error "setstripe on $fm_file"
8727         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
8728                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
8729
8730         dd if=/dev/zero of=$fm_file bs=1M count=2 ||
8731                 error "dd failed on $fm_file"
8732
8733         filefrag -ves $fm_file || error "filefrag $fm_file failed"
8734         filefrag_op=$(filefrag -ve $fm_file | grep -A 100 "ext:" |
8735                       grep -v "ext:" | grep -v "found")
8736
8737         last_lun=$(echo $filefrag_op | cut -d: -f5)
8738
8739         IFS=$'\n'
8740         tot_len=0
8741         num_luns=1
8742         for line in $filefrag_op
8743         do
8744                 frag_lun=`echo $line | cut -d: -f5`
8745                 ext_len=`echo $line | cut -d: -f4`
8746                 if (( $frag_lun != $last_lun )); then
8747                         if (( tot_len != 1024 )); then
8748                                 cleanup_130
8749                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of 256"
8750                                 return
8751                         else
8752                                 (( num_luns += 1 ))
8753                                 tot_len=0
8754                         fi
8755                 fi
8756                 (( tot_len += ext_len ))
8757                 last_lun=$frag_lun
8758         done
8759         if (( num_luns != 2 || tot_len != 1024 )); then
8760                 cleanup_130
8761                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
8762                 return
8763         fi
8764
8765         cleanup_130
8766
8767         echo "FIEMAP on 2-stripe file succeeded"
8768 }
8769 run_test 130b "FIEMAP (2-stripe file)"
8770
8771 test_130c() {
8772         [ "$OSTCOUNT" -lt "2" ] &&
8773                 skip_env "skipping FIEMAP on 2-stripe file" && return
8774
8775         [ "$OSTCOUNT" -ge "10" ] &&
8776                 skip_env "skipping FIEMAP with >= 10 OSTs" && return
8777
8778         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
8779         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" &&
8780                 return
8781
8782         trap cleanup_130 EXIT RETURN
8783
8784         local fm_file=$DIR/$tfile
8785         $SETSTRIPE -S 65536 -c 2 $fm_file || error "setstripe on $fm_file"
8786         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
8787                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
8788
8789         dd if=/dev/zero of=$fm_file seek=1 bs=1M count=1 || error "dd failed on $fm_file"
8790
8791         filefrag -ves $fm_file || error "filefrag $fm_file failed"
8792         filefrag_op=`filefrag -ve $fm_file | grep -A 100 "ext:" | grep -v "ext:" | grep -v "found"`
8793
8794         last_lun=`echo $filefrag_op | cut -d: -f5`
8795
8796         IFS=$'\n'
8797         tot_len=0
8798         num_luns=1
8799         for line in $filefrag_op
8800         do
8801                 frag_lun=`echo $line | cut -d: -f5`
8802                 ext_len=`echo $line | cut -d: -f4`
8803                 if (( $frag_lun != $last_lun )); then
8804                         logical=`echo $line | cut -d: -f2 | cut -d. -f1`
8805                         if (( logical != 512 )); then
8806                                 cleanup_130
8807                                 error "FIEMAP on $fm_file failed; returned logical start for lun $logical instead of 512"
8808                                 return
8809                         fi
8810                         if (( tot_len != 512 )); then
8811                                 cleanup_130
8812                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of 1024"
8813                                 return
8814                         else
8815                                 (( num_luns += 1 ))
8816                                 tot_len=0
8817                         fi
8818                 fi
8819                 (( tot_len += ext_len ))
8820                 last_lun=$frag_lun
8821         done
8822         if (( num_luns != 2 || tot_len != 512 )); then
8823                 cleanup_130
8824                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
8825                 return
8826         fi
8827
8828         cleanup_130
8829
8830         echo "FIEMAP on 2-stripe file with hole succeeded"
8831 }
8832 run_test 130c "FIEMAP (2-stripe file with hole)"
8833
8834 test_130d() {
8835         [ "$OSTCOUNT" -lt "3" ] && skip_env "skipping FIEMAP on N-stripe file test" && return
8836
8837         [ "$OSTCOUNT" -ge "10" ] &&
8838                 skip_env "skipping FIEMAP with >= 10 OSTs" && return
8839
8840         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
8841         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" && return
8842
8843         trap cleanup_130 EXIT RETURN
8844
8845         local fm_file=$DIR/$tfile
8846         $SETSTRIPE -S 65536 -c $OSTCOUNT $fm_file||error "setstripe on $fm_file"
8847         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
8848                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
8849
8850         local actual_stripecnt=$($GETSTRIPE -c $fm_file)
8851         dd if=/dev/zero of=$fm_file bs=1M count=$actual_stripecnt ||
8852                 error "dd failed on $fm_file"
8853
8854         filefrag -ves $fm_file || error "filefrag $fm_file failed"
8855         filefrag_op=`filefrag -ve $fm_file | grep -A 100 "ext:" |
8856                 grep -v "ext:" | grep -v "found"`
8857
8858         last_lun=`echo $filefrag_op | cut -d: -f5`
8859
8860         IFS=$'\n'
8861         tot_len=0
8862         num_luns=1
8863         for line in $filefrag_op
8864         do
8865                 frag_lun=`echo $line | cut -d: -f5`
8866                 ext_len=`echo $line | cut -d: -f4`
8867                 if (( $frag_lun != $last_lun )); then
8868                         if (( tot_len != 1024 )); then
8869                                 cleanup_130
8870                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of 1024"
8871                                 return
8872                         else
8873                                 (( num_luns += 1 ))
8874                                 tot_len=0
8875                         fi
8876                 fi
8877                 (( tot_len += ext_len ))
8878                 last_lun=$frag_lun
8879         done
8880         if (( num_luns != actual_stripecnt || tot_len != 1024 )); then
8881                 cleanup_130
8882                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
8883                 return
8884         fi
8885
8886         cleanup_130
8887
8888         echo "FIEMAP on N-stripe file succeeded"
8889 }
8890 run_test 130d "FIEMAP (N-stripe file)"
8891
8892 test_130e() {
8893         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping continuation FIEMAP test" && return
8894
8895         [ "$OSTCOUNT" -ge "10" ] &&
8896                 skip_env "skipping FIEMAP with >= 10 OSTs" && return
8897
8898         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
8899         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" && return
8900
8901         trap cleanup_130 EXIT RETURN
8902
8903         local fm_file=$DIR/$tfile
8904         $SETSTRIPE -S 131072 -c 2 $fm_file || error "setstripe on $fm_file"
8905         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
8906                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
8907
8908         NUM_BLKS=512
8909         EXPECTED_LEN=$(( (NUM_BLKS / 2) * 64 ))
8910         for ((i = 0; i < $NUM_BLKS; i++))
8911         do
8912                 dd if=/dev/zero of=$fm_file count=1 bs=64k seek=$((2*$i)) conv=notrunc > /dev/null 2>&1
8913         done
8914
8915         filefrag -ves $fm_file || error "filefrag $fm_file failed"
8916         filefrag_op=`filefrag -ve $fm_file | grep -A 12000 "ext:" | grep -v "ext:" | grep -v "found"`
8917
8918         last_lun=`echo $filefrag_op | cut -d: -f5`
8919
8920         IFS=$'\n'
8921         tot_len=0
8922         num_luns=1
8923         for line in $filefrag_op
8924         do
8925                 frag_lun=`echo $line | cut -d: -f5`
8926                 ext_len=`echo $line | cut -d: -f4`
8927                 if (( $frag_lun != $last_lun )); then
8928                         if (( tot_len != $EXPECTED_LEN )); then
8929                                 cleanup_130
8930                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of $EXPECTED_LEN"
8931                                 return
8932                         else
8933                                 (( num_luns += 1 ))
8934                                 tot_len=0
8935                         fi
8936                 fi
8937                 (( tot_len += ext_len ))
8938                 last_lun=$frag_lun
8939         done
8940         if (( num_luns != 2 || tot_len != $EXPECTED_LEN )); then
8941                 cleanup_130
8942                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
8943                 return
8944         fi
8945
8946         cleanup_130
8947
8948         echo "FIEMAP with continuation calls succeeded"
8949 }
8950 run_test 130e "FIEMAP (test continuation FIEMAP calls)"
8951
8952 # Test for writev/readv
8953 test_131a() {
8954         rwv -f $DIR/$tfile -w -n 3 524288 1048576 1572864 || \
8955         error "writev test failed"
8956         rwv -f $DIR/$tfile -r -v -n 2 1572864 1048576 || \
8957         error "readv failed"
8958         rm -f $DIR/$tfile
8959 }
8960 run_test 131a "test iov's crossing stripe boundary for writev/readv"
8961
8962 test_131b() {
8963         rwv -f $DIR/$tfile -w -a -n 3 524288 1048576 1572864 || \
8964         error "append writev test failed"
8965         rwv -f $DIR/$tfile -w -a -n 2 1572864 1048576 || \
8966         error "append writev test failed"
8967         rm -f $DIR/$tfile
8968 }
8969 run_test 131b "test append writev"
8970
8971 test_131c() {
8972         rwv -f $DIR/$tfile -w -d -n 1 1048576 || return 0
8973         error "NOT PASS"
8974 }
8975 run_test 131c "test read/write on file w/o objects"
8976
8977 test_131d() {
8978         rwv -f $DIR/$tfile -w -n 1 1572864
8979         NOB=`rwv -f $DIR/$tfile -r -n 3 524288 524288 1048576 | awk '/error/ {print $6}'`
8980         if [ "$NOB" != 1572864 ]; then
8981                 error "Short read filed: read $NOB bytes instead of 1572864"
8982         fi
8983         rm -f $DIR/$tfile
8984 }
8985 run_test 131d "test short read"
8986
8987 test_131e() {
8988         rwv -f $DIR/$tfile -w -s 1048576 -n 1 1048576
8989         rwv -f $DIR/$tfile -r -z -s 0 -n 1 524288 || \
8990         error "read hitting hole failed"
8991         rm -f $DIR/$tfile
8992 }
8993 run_test 131e "test read hitting hole"
8994
8995 check_stats() {
8996         local res
8997         local count
8998         case $1 in
8999         $SINGLEMDS) res=`do_facet $SINGLEMDS $LCTL get_param mdt.$FSNAME-MDT0000.md_stats | grep "$2"`
9000                  ;;
9001         ost) res=`do_facet ost1 $LCTL get_param obdfilter.$FSNAME-OST0000.stats | grep "$2"`
9002                  ;;
9003         *) error "Wrong argument $1" ;;
9004         esac
9005         echo $res
9006         [ -z "$res" ] && error "The counter for $2 on $1 was not incremented"
9007         # if the argument $3 is zero, it means any stat increment is ok.
9008         if [[ $3 -gt 0 ]]; then
9009                 count=$(echo $res | awk '{ print $2 }')
9010                 [[ $count -ne $3 ]] &&
9011                         error "The $2 counter on $1 is wrong - expected $3"
9012         fi
9013 }
9014
9015 test_133a() {
9016         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9017         remote_ost_nodsh && skip "remote OST with nodsh" && return
9018         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9019
9020         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
9021                 { skip "MDS doesn't support rename stats"; return; }
9022         local testdir=$DIR/${tdir}/stats_testdir
9023         mkdir -p $DIR/${tdir}
9024
9025         # clear stats.
9026         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
9027         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
9028
9029         # verify mdt stats first.
9030         mkdir ${testdir} || error "mkdir failed"
9031         check_stats $SINGLEMDS "mkdir" 1
9032         touch ${testdir}/${tfile} || "touch failed"
9033         check_stats $SINGLEMDS "open" 1
9034         check_stats $SINGLEMDS "close" 1
9035         mknod ${testdir}/${tfile}-pipe p || "mknod failed"
9036         check_stats $SINGLEMDS "mknod" 1
9037         rm -f ${testdir}/${tfile}-pipe || "pipe remove failed"
9038         check_stats $SINGLEMDS "unlink" 1
9039         rm -f ${testdir}/${tfile} || error "file remove failed"
9040         check_stats $SINGLEMDS "unlink" 2
9041
9042         # remove working dir and check mdt stats again.
9043         rmdir ${testdir} || error "rmdir failed"
9044         check_stats $SINGLEMDS "rmdir" 1
9045
9046         local testdir1=$DIR/${tdir}/stats_testdir1
9047         mkdir -p ${testdir}
9048         mkdir -p ${testdir1}
9049         touch ${testdir1}/test1
9050         mv ${testdir1}/test1 ${testdir} || error "file crossdir rename"
9051         check_stats $SINGLEMDS "crossdir_rename" 1
9052
9053         mv ${testdir}/test1 ${testdir}/test0 || error "file samedir rename"
9054         check_stats $SINGLEMDS "samedir_rename" 1
9055
9056         rm -rf $DIR/${tdir}
9057 }
9058 run_test 133a "Verifying MDT stats ========================================"
9059
9060 test_133b() {
9061         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9062         remote_ost_nodsh && skip "remote OST with nodsh" && return
9063         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9064         local testdir=$DIR/${tdir}/stats_testdir
9065         mkdir -p ${testdir} || error "mkdir failed"
9066         touch ${testdir}/${tfile} || "touch failed"
9067         cancel_lru_locks mdc
9068
9069         # clear stats.
9070         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
9071         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
9072
9073         # extra mdt stats verification.
9074         chmod 444 ${testdir}/${tfile} || error "chmod failed"
9075         check_stats $SINGLEMDS "setattr" 1
9076         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
9077         if [ $(lustre_version_code $SINGLEMDS) -ne $(version_code 2.2.0) ]
9078         then            # LU-1740
9079                 ls -l ${testdir}/${tfile} > /dev/null|| error "ls failed"
9080                 check_stats $SINGLEMDS "getattr" 1
9081         fi
9082         $LFS df || error "lfs failed"
9083         check_stats $SINGLEMDS "statfs" 1
9084
9085         rm -rf $DIR/${tdir}
9086 }
9087 run_test 133b "Verifying extra MDT stats =================================="
9088
9089 test_133c() {
9090         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9091         remote_ost_nodsh && skip "remote OST with nodsh" && return
9092         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9093         local testdir=$DIR/${tdir}/stats_testdir
9094         test_mkdir -p ${testdir} || error "mkdir failed"
9095
9096         # verify obdfilter stats.
9097         $SETSTRIPE -c 1 -i 0 ${testdir}/${tfile}
9098         sync
9099         cancel_lru_locks osc
9100         wait_delete_completed
9101
9102         # clear stats.
9103         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
9104         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
9105
9106         dd if=/dev/zero of=${testdir}/${tfile} conv=notrunc bs=512k count=1 || error "dd failed"
9107         sync
9108         cancel_lru_locks osc
9109         check_stats ost "write" 1
9110
9111         dd if=${testdir}/${tfile} of=/dev/null bs=1k count=1 || error "dd failed"
9112         check_stats ost "read" 1
9113
9114         > ${testdir}/${tfile} || error "truncate failed"
9115         check_stats ost "punch" 1
9116
9117         rm -f ${testdir}/${tfile} || error "file remove failed"
9118         wait_delete_completed
9119         check_stats ost "destroy" 1
9120
9121         rm -rf $DIR/${tdir}
9122 }
9123 run_test 133c "Verifying OST stats ========================================"
9124
9125 order_2() {
9126         local value=$1
9127         local orig=$value
9128         local order=1
9129
9130         while [ $value -ge 2 ]; do
9131                 order=$((order*2))
9132                 value=$((value/2))
9133         done
9134
9135         if [ $orig -gt $order ]; then
9136                 order=$((order*2))
9137         fi
9138         echo $order
9139 }
9140
9141 size_in_KMGT() {
9142     local value=$1
9143     local size=('K' 'M' 'G' 'T');
9144     local i=0
9145     local size_string=$value
9146
9147     while [ $value -ge 1024 ]; do
9148         if [ $i -gt 3 ]; then
9149             #T is the biggest unit we get here, if that is bigger,
9150             #just return XXXT
9151             size_string=${value}T
9152             break
9153         fi
9154         value=$((value >> 10))
9155         if [ $value -lt 1024 ]; then
9156             size_string=${value}${size[$i]}
9157             break
9158         fi
9159         i=$((i + 1))
9160     done
9161
9162     echo $size_string
9163 }
9164
9165 get_rename_size() {
9166     local size=$1
9167     local context=${2:-.}
9168     local sample=$(do_facet $SINGLEMDS $LCTL get_param mdt.*.rename_stats |
9169                 grep -A1 $context |
9170                 awk '/ '${size}'/ {print $4}' | sed -e "s/,//g")
9171     echo $sample
9172 }
9173
9174 test_133d() {
9175         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9176         remote_ost_nodsh && skip "remote OST with nodsh" && return
9177         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9178         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
9179         { skip "MDS doesn't support rename stats"; return; }
9180
9181         local testdir1=$DIR/${tdir}/stats_testdir1
9182         local testdir2=$DIR/${tdir}/stats_testdir2
9183
9184         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
9185
9186         mkdir -p ${testdir1} || error "mkdir failed"
9187         mkdir -p ${testdir2} || error "mkdir failed"
9188
9189         createmany -o $testdir1/test 512 || error "createmany failed"
9190
9191         # check samedir rename size
9192         mv ${testdir1}/test0 ${testdir1}/test_0
9193
9194         local testdir1_size=$(ls -l $DIR/${tdir} |
9195                 awk '/stats_testdir1/ {print $5}')
9196         local testdir2_size=$(ls -l $DIR/${tdir} |
9197                 awk '/stats_testdir2/ {print $5}')
9198
9199         testdir1_size=$(order_2 $testdir1_size)
9200         testdir2_size=$(order_2 $testdir2_size)
9201
9202         testdir1_size=$(size_in_KMGT $testdir1_size)
9203         testdir2_size=$(size_in_KMGT $testdir2_size)
9204
9205         echo "source rename dir size: ${testdir1_size}"
9206         echo "target rename dir size: ${testdir2_size}"
9207
9208         local cmd="do_facet $SINGLEMDS $LCTL get_param mdt.*.rename_stats"
9209         eval $cmd || error "$cmd failed"
9210         local samedir=$($cmd | grep 'same_dir')
9211         local same_sample=$(get_rename_size $testdir1_size)
9212         [ -z "$samedir" ] && error "samedir_rename_size count error"
9213         [[ $same_sample -eq 1 ]] ||
9214                 error "samedir_rename_size error $same_sample"
9215         echo "Check same dir rename stats success"
9216
9217         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
9218
9219         # check crossdir rename size
9220         mv ${testdir1}/test_0 ${testdir2}/test_0
9221
9222         testdir1_size=$(ls -l $DIR/${tdir} |
9223                 awk '/stats_testdir1/ {print $5}')
9224         testdir2_size=$(ls -l $DIR/${tdir} |
9225                 awk '/stats_testdir2/ {print $5}')
9226
9227         testdir1_size=$(order_2 $testdir1_size)
9228         testdir2_size=$(order_2 $testdir2_size)
9229
9230         testdir1_size=$(size_in_KMGT $testdir1_size)
9231         testdir2_size=$(size_in_KMGT $testdir2_size)
9232
9233         echo "source rename dir size: ${testdir1_size}"
9234         echo "target rename dir size: ${testdir2_size}"
9235
9236         eval $cmd || error "$cmd failed"
9237         local crossdir=$($cmd | grep 'crossdir')
9238         local src_sample=$(get_rename_size $testdir1_size crossdir_src)
9239         local tgt_sample=$(get_rename_size $testdir2_size crossdir_tgt)
9240         [ -z "$crossdir" ] && error "crossdir_rename_size count error"
9241         [[ $src_sample -eq 1 ]] ||
9242                 error "crossdir_rename_size error $src_sample"
9243         [[ $tgt_sample -eq 1 ]] ||
9244                 error "crossdir_rename_size error $tgt_sample"
9245         echo "Check cross dir rename stats success"
9246         rm -rf $DIR/${tdir}
9247 }
9248 run_test 133d "Verifying rename_stats ========================================"
9249
9250 test_133e() {
9251         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9252         remote_ost_nodsh && skip "remote OST with nodsh" && return
9253         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9254         local testdir=$DIR/${tdir}/stats_testdir
9255         local ctr f0 f1 bs=32768 count=42 sum
9256
9257         mkdir -p ${testdir} || error "mkdir failed"
9258
9259         $SETSTRIPE -c 1 -i 0 ${testdir}/${tfile}
9260
9261         for ctr in {write,read}_bytes; do
9262                 sync
9263                 cancel_lru_locks osc
9264
9265                 do_facet ost1 $LCTL set_param -n \
9266                         "obdfilter.*.exports.clear=clear"
9267
9268                 if [ $ctr = write_bytes ]; then
9269                         f0=/dev/zero
9270                         f1=${testdir}/${tfile}
9271                 else
9272                         f0=${testdir}/${tfile}
9273                         f1=/dev/null
9274                 fi
9275
9276                 dd if=$f0 of=$f1 conv=notrunc bs=$bs count=$count || \
9277                         error "dd failed"
9278                 sync
9279                 cancel_lru_locks osc
9280
9281                 sum=$(do_facet ost1 $LCTL get_param \
9282                         "obdfilter.*.exports.*.stats" |
9283                         awk -v ctr=$ctr 'BEGIN { sum = 0 }
9284                                 $1 == ctr { sum += $7 }
9285                                 END { printf("%0.0f", sum) }')
9286
9287                 if ((sum != bs * count)); then
9288                         error "Bad $ctr sum, expected $((bs * count)), got $sum"
9289                 fi
9290         done
9291
9292         rm -rf $DIR/${tdir}
9293 }
9294 run_test 133e "Verifying OST {read,write}_bytes nid stats ================="
9295
9296 test_133f() {
9297         local proc_dirs
9298
9299         local dirs="/proc/fs/lustre/ /proc/sys/lnet/ /proc/sys/lustre/ \
9300 /sys/fs/lustre/ /sys/fs/lnet/"
9301         local dir
9302         for dir in $dirs; do
9303                 if [ -d $dir ]; then
9304                         proc_dirs="$proc_dirs $dir"
9305                 fi
9306         done
9307
9308         local facet
9309
9310         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9311         remote_ost_nodsh && skip "remote OST with nodsh" && return
9312         # First without trusting modes.
9313         find $proc_dirs -exec cat '{}' \; &> /dev/null
9314
9315         # Second verifying readability.
9316         find $proc_dirs \
9317                 -type f \
9318                 -exec cat '{}' \; &> /dev/null ||
9319                         error "proc file read failed"
9320
9321         for facet in $SINGLEMDS ost1; do
9322                 do_facet $facet find $proc_dirs \
9323                         ! -name req_history \
9324                         -exec cat '{}' \\\; &> /dev/null
9325
9326                 do_facet $facet find $proc_dirs \
9327                         ! -name req_history \
9328                         -type f \
9329                         -exec cat '{}' \\\; &> /dev/null ||
9330                                 error "proc file read failed"
9331         done
9332 }
9333 run_test 133f "Check for LBUGs/Oopses/unreadable files in /proc"
9334
9335 test_133g() {
9336         local proc_dirs
9337
9338         local dirs="/proc/fs/lustre/ /proc/sys/lnet/ /proc/sys/lustre/ \
9339 /sys/fs/lustre/ /sys/fs/lnet/"
9340         local dir
9341         for dir in $dirs; do
9342                 if [ -d $dir ]; then
9343                         proc_dirs="$proc_dirs $dir"
9344                 fi
9345         done
9346
9347         local facet
9348
9349         # Second verifying readability.
9350         find $proc_dirs \
9351                 -type f \
9352                 -not -name force_lbug \
9353                 -not -name changelog_mask \
9354                 -exec badarea_io '{}' \; &> /dev/null ||
9355                 error "find $proc_dirs failed"
9356
9357         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.5.54) ] &&
9358                 skip "Too old lustre on MDS" && return
9359
9360         [ $(lustre_version_code ost1) -le $(version_code 2.5.54) ] &&
9361                 skip "Too old lustre on ost1" && return
9362
9363         for facet in $SINGLEMDS ost1; do
9364                 do_facet $facet find $proc_dirs \
9365                         -type f \
9366                         -not -name force_lbug \
9367                         -not -name changelog_mask \
9368                         -exec badarea_io '{}' \\\; &> /dev/null ||
9369                 error "$facet find $proc_dirs failed"
9370
9371         done
9372
9373         # remount the FS in case writes/reads /proc break the FS
9374         cleanup || error "failed to unmount"
9375         setup || error "failed to setup"
9376         true
9377 }
9378 run_test 133g "Check for Oopses on bad io area writes/reads in /proc"
9379
9380 test_134a() {
9381         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.54) ]] &&
9382                 skip "Need MDS version at least 2.7.54" && return
9383
9384         mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
9385         cancel_lru_locks mdc
9386
9387         local nsdir="ldlm.namespaces.*-MDT0000-mdc-*"
9388         local unused=$($LCTL get_param -n $nsdir.lock_unused_count)
9389         [ $unused -eq 0 ] || "$unused locks are not cleared"
9390
9391         local nr=1000
9392         createmany -o $DIR/$tdir/f $nr ||
9393                 error "failed to create $nr files in $DIR/$tdir"
9394         unused=$($LCTL get_param -n $nsdir.lock_unused_count)
9395
9396         #define OBD_FAIL_LDLM_WATERMARK_LOW     0x327
9397         do_facet mds1 $LCTL set_param fail_loc=0x327
9398         do_facet mds1 $LCTL set_param fail_val=500
9399         touch $DIR/$tdir/m
9400
9401         echo "sleep 10 seconds ..."
9402         sleep 10
9403         local lck_cnt=$($LCTL get_param -n $nsdir.lock_unused_count)
9404
9405         do_facet mds1 $LCTL set_param fail_loc=0
9406         do_facet mds1 $LCTL set_param fail_val=0
9407         [ $lck_cnt -lt $unused ] ||
9408                 error "No locks reclaimed, before:$unused, after:$lck_cnt"
9409
9410         rm $DIR/$tdir/m
9411         unlinkmany $DIR/$tdir/f $nr
9412 }
9413 run_test 134a "Server reclaims locks when reaching low watermark"
9414
9415 test_134b() {
9416         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.54) ]] &&
9417                 skip "Need MDS version at least 2.7.54" && return
9418
9419         mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
9420         cancel_lru_locks mdc
9421
9422         local low_wm=$(do_facet mds1 $LCTL get_param -n ldlm.watermark_mb_low)
9423         # disable reclaim temporarily
9424         do_facet mds1 $LCTL set_param ldlm.watermark_mb_low=0
9425
9426         #define OBD_FAIL_LDLM_WATERMARK_HIGH     0x328
9427         do_facet mds1 $LCTL set_param fail_loc=0x328
9428         do_facet mds1 $LCTL set_param fail_val=500
9429
9430         $LCTL set_param debug=+trace
9431
9432         local nr=600
9433         createmany -o $DIR/$tdir/f $nr &
9434         local create_pid=$!
9435
9436         echo "Sleep $TIMEOUT seconds ..."
9437         sleep $TIMEOUT
9438         if ! ps -p $create_pid  > /dev/null 2>&1; then
9439                 do_facet mds1 $LCTL set_param fail_loc=0
9440                 do_facet mds1 $LCTL set_param fail_val=0
9441                 do_facet mds1 $LCTL set_param ldlm.watermark_mb_low=$low_wm
9442                 error "createmany finished incorrectly!"
9443         fi
9444         do_facet mds1 $LCTL set_param fail_loc=0
9445         do_facet mds1 $LCTL set_param fail_val=0
9446         do_facet mds1 $LCTL set_param ldlm.watermark_mb_low=$low_wm
9447         wait $create_pid || return 1
9448
9449         unlinkmany $DIR/$tdir/f $nr
9450 }
9451 run_test 134b "Server rejects lock request when reaching high watermark"
9452
9453 test_140() { #bug-17379
9454         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9455         test_mkdir -p $DIR/$tdir || error "Creating dir $DIR/$tdir"
9456         cd $DIR/$tdir || error "Changing to $DIR/$tdir"
9457         cp /usr/bin/stat . || error "Copying stat to $DIR/$tdir"
9458
9459         # VFS limits max symlink depth to 5(4KSTACK) or 7(8KSTACK) or 8
9460         # For kernel > 3.5, bellow only tests consecutive symlink (MAX 40)
9461         local i=0
9462         while i=`expr $i + 1`; do
9463                 test_mkdir -p $i || error "Creating dir $i"
9464                 cd $i || error "Changing to $i"
9465                 ln -s ../stat stat || error "Creating stat symlink"
9466                 # Read the symlink until ELOOP present,
9467                 # not LBUGing the system is considered success,
9468                 # we didn't overrun the stack.
9469                 $OPENFILE -f O_RDONLY stat >/dev/null 2>&1; ret=$?
9470                 [ $ret -ne 0 ] && {
9471                         if [ $ret -eq 40 ]; then
9472                                 break  # -ELOOP
9473                         else
9474                                 error "Open stat symlink"
9475                                 return
9476                         fi
9477                 }
9478         done
9479         i=`expr $i - 1`
9480         echo "The symlink depth = $i"
9481         [ $i -eq 5 -o $i -eq 7 -o $i -eq 8 -o $i -eq 40 ] ||
9482                                         error "Invalid symlink depth"
9483
9484         # Test recursive symlink
9485         ln -s symlink_self symlink_self
9486         $OPENFILE -f O_RDONLY symlink_self >/dev/null 2>&1; ret=$?
9487         echo "open symlink_self returns $ret"
9488         [ $ret -eq 40 ] || error "recursive symlink doesn't return -ELOOP"
9489 }
9490 run_test 140 "Check reasonable stack depth (shouldn't LBUG) ===="
9491
9492 test_150() {
9493         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9494         local TF="$TMP/$tfile"
9495
9496         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
9497         cp $TF $DIR/$tfile
9498         cancel_lru_locks osc
9499         cmp $TF $DIR/$tfile || error "$TMP/$tfile $DIR/$tfile differ"
9500         remount_client $MOUNT
9501         df -P $MOUNT
9502         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (remount)"
9503
9504         $TRUNCATE $TF 6000
9505         $TRUNCATE $DIR/$tfile 6000
9506         cancel_lru_locks osc
9507         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (truncate1)"
9508
9509         echo "12345" >>$TF
9510         echo "12345" >>$DIR/$tfile
9511         cancel_lru_locks osc
9512         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append1)"
9513
9514         echo "12345" >>$TF
9515         echo "12345" >>$DIR/$tfile
9516         cancel_lru_locks osc
9517         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append2)"
9518
9519         rm -f $TF
9520         true
9521 }
9522 run_test 150 "truncate/append tests"
9523
9524 #LU-2902 roc_hit was not able to read all values from lproc
9525 function roc_hit_init() {
9526         local list=$(comma_list $(osts_nodes))
9527         local dir=$DIR/$tdir-check
9528         local file=$dir/file
9529         local BEFORE
9530         local AFTER
9531         local idx
9532
9533         test_mkdir -p $dir
9534         #use setstripe to do a write to every ost
9535         for i in $(seq 0 $((OSTCOUNT-1))); do
9536                 $SETSTRIPE -c 1 -i $i $dir || error "$SETSTRIPE $file failed"
9537                 dd if=/dev/urandom of=$file bs=4k count=4 2>&1 > /dev/null
9538                 idx=$(printf %04x $i)
9539                 BEFORE=$(get_osd_param $list *OST*$idx stats |
9540                         awk '$1 == "cache_access" {sum += $7}
9541                                 END { printf("%0.0f", sum) }')
9542
9543                 cancel_lru_locks osc
9544                 cat $file >/dev/null
9545
9546                 AFTER=$(get_osd_param $list *OST*$idx stats |
9547                         awk '$1 == "cache_access" {sum += $7}
9548                                 END { printf("%0.0f", sum) }')
9549
9550                 echo BEFORE:$BEFORE AFTER:$AFTER
9551                 if ! let "AFTER - BEFORE == 4"; then
9552                         rm -rf $dir
9553                         error "roc_hit is not safe to use"
9554                 fi
9555                 rm $file
9556         done
9557
9558         rm -rf $dir
9559 }
9560
9561 function roc_hit() {
9562         local list=$(comma_list $(osts_nodes))
9563         echo $(get_osd_param $list '' stats |
9564                 awk '$1 == "cache_hit" {sum += $7}
9565                         END { printf("%0.0f", sum) }')
9566 }
9567
9568 function set_cache() {
9569         local on=1
9570
9571         if [ "$2" == "off" ]; then
9572                 on=0;
9573         fi
9574         local list=$(comma_list $(osts_nodes))
9575         set_osd_param $list '' $1_cache_enable $on
9576
9577         cancel_lru_locks osc
9578 }
9579
9580 test_151() {
9581         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9582         remote_ost_nodsh && skip "remote OST with nodsh" && return
9583
9584         local CPAGES=3
9585         local list=$(comma_list $(osts_nodes))
9586
9587         # check whether obdfilter is cache capable at all
9588         if ! get_osd_param $list '' read_cache_enable >/dev/null; then
9589                 echo "not cache-capable obdfilter"
9590                 return 0
9591         fi
9592
9593         # check cache is enabled on all obdfilters
9594         if get_osd_param $list '' read_cache_enable | grep 0; then
9595                 echo "oss cache is disabled"
9596                 return 0
9597         fi
9598
9599         set_osd_param $list '' writethrough_cache_enable 1
9600
9601         # check write cache is enabled on all obdfilters
9602         if get_osd_param $list '' writethrough_cache_enable | grep 0; then
9603                 echo "oss write cache is NOT enabled"
9604                 return 0
9605         fi
9606
9607         roc_hit_init
9608
9609         #define OBD_FAIL_OBD_NO_LRU  0x609
9610         do_nodes $list $LCTL set_param fail_loc=0x609
9611
9612         # pages should be in the case right after write
9613         dd if=/dev/urandom of=$DIR/$tfile bs=4k count=$CPAGES ||
9614                 error "dd failed"
9615
9616         local BEFORE=$(roc_hit)
9617         cancel_lru_locks osc
9618         cat $DIR/$tfile >/dev/null
9619         local AFTER=$(roc_hit)
9620
9621         do_nodes $list $LCTL set_param fail_loc=0
9622
9623         if ! let "AFTER - BEFORE == CPAGES"; then
9624                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
9625         fi
9626
9627         # the following read invalidates the cache
9628         cancel_lru_locks osc
9629         set_osd_param $list '' read_cache_enable 0
9630         cat $DIR/$tfile >/dev/null
9631
9632         # now data shouldn't be found in the cache
9633         BEFORE=$(roc_hit)
9634         cancel_lru_locks osc
9635         cat $DIR/$tfile >/dev/null
9636         AFTER=$(roc_hit)
9637         if let "AFTER - BEFORE != 0"; then
9638                 error "IN CACHE: before: $BEFORE, after: $AFTER"
9639         fi
9640
9641         set_osd_param $list '' read_cache_enable 1
9642         rm -f $DIR/$tfile
9643 }
9644 run_test 151 "test cache on oss and controls ==============================="
9645
9646 test_152() {
9647         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9648         local TF="$TMP/$tfile"
9649
9650         # simulate ENOMEM during write
9651 #define OBD_FAIL_OST_NOMEM      0x226
9652         lctl set_param fail_loc=0x80000226
9653         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
9654         cp $TF $DIR/$tfile
9655         sync || error "sync failed"
9656         lctl set_param fail_loc=0
9657
9658         # discard client's cache
9659         cancel_lru_locks osc
9660
9661         # simulate ENOMEM during read
9662         lctl set_param fail_loc=0x80000226
9663         cmp $TF $DIR/$tfile || error "cmp failed"
9664         lctl set_param fail_loc=0
9665
9666         rm -f $TF
9667 }
9668 run_test 152 "test read/write with enomem ============================"
9669
9670 test_153() {
9671         $MULTIOP $DIR/$tfile Ow4096Ycu || error "multiop failed"
9672 }
9673 run_test 153 "test if fdatasync does not crash ======================="
9674
9675 dot_lustre_fid_permission_check() {
9676         local fid=$1
9677         local ffid=$MOUNT/.lustre/fid/$fid
9678         local test_dir=$2
9679
9680         echo "stat fid $fid"
9681         stat $ffid > /dev/null || error "stat $ffid failed."
9682         echo "touch fid $fid"
9683         touch $ffid || error "touch $ffid failed."
9684         echo "write to fid $fid"
9685         cat /etc/hosts > $ffid || error "write $ffid failed."
9686         echo "read fid $fid"
9687         diff /etc/hosts $ffid || error "read $ffid failed."
9688         echo "append write to fid $fid"
9689         cat /etc/hosts >> $ffid || error "append write $ffid failed."
9690         echo "rename fid $fid"
9691         mv $ffid $test_dir/$tfile.1 &&
9692                 error "rename $ffid to $tfile.1 should fail."
9693         touch $test_dir/$tfile.1
9694         mv $test_dir/$tfile.1 $ffid &&
9695                 error "rename $tfile.1 to $ffid should fail."
9696         rm -f $test_dir/$tfile.1
9697         echo "truncate fid $fid"
9698         $TRUNCATE $ffid 777 || error "truncate $ffid failed."
9699         if [ $MDSCOUNT -lt 2 ]; then #FIXME when cross-MDT hard link is working
9700                 echo "link fid $fid"
9701                 ln -f $ffid $test_dir/tfile.lnk || error "link $ffid failed."
9702         fi
9703         if [ -n $(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl) ]; then
9704                 echo "setfacl fid $fid"
9705                 setfacl -R -m u:bin:rwx $ffid || error "setfacl $ffid failed."
9706                 echo "getfacl fid $fid"
9707                 getfacl $ffid >/dev/null || error "getfacl $ffid failed."
9708         fi
9709         echo "unlink fid $fid"
9710         unlink $MOUNT/.lustre/fid/$fid && error "unlink $ffid should fail."
9711         echo "mknod fid $fid"
9712         mknod $ffid c 1 3 && error "mknod $ffid should fail."
9713
9714         fid=[0xf00000400:0x1:0x0]
9715         ffid=$MOUNT/.lustre/fid/$fid
9716
9717         echo "stat non-exist fid $fid"
9718         stat $ffid > /dev/null && error "stat non-exist $ffid should fail."
9719         echo "write to non-exist fid $fid"
9720         cat /etc/hosts > $ffid && error "write non-exist $ffid should fail."
9721         echo "link new fid $fid"
9722         ln $test_dir/$tfile $ffid && error "link $ffid should fail."
9723
9724         mkdir -p $test_dir/$tdir
9725         touch $test_dir/$tdir/$tfile
9726         fid=$($LFS path2fid $test_dir/$tdir)
9727         rc=$?
9728         [ $rc -ne 0 ] &&
9729                 error "error: could not get fid for $test_dir/$dir/$tfile."
9730
9731         ffid=$MOUNT/.lustre/fid/$fid
9732
9733         echo "ls $fid"
9734         ls $ffid > /dev/null || error "ls $ffid failed."
9735         echo "touch $fid/$tfile.1"
9736         touch $ffid/$tfile.1 || error "touch $ffid/$tfile.1 failed."
9737
9738         echo "touch $MOUNT/.lustre/fid/$tfile"
9739         touch $MOUNT/.lustre/fid/$tfile && \
9740                 error "touch $MOUNT/.lustre/fid/$tfile should fail."
9741
9742         echo "setxattr to $MOUNT/.lustre/fid"
9743         setfattr -n trusted.name1 -v value1 $MOUNT/.lustre/fid
9744
9745         echo "listxattr for $MOUNT/.lustre/fid"
9746         getfattr -d -m "^trusted" $MOUNT/.lustre/fid
9747
9748         echo "delxattr from $MOUNT/.lustre/fid"
9749         setfattr -x trusted.name1 $MOUNT/.lustre/fid
9750
9751         echo "touch invalid fid: $MOUNT/.lustre/fid/[0x200000400:0x2:0x3]"
9752         touch $MOUNT/.lustre/fid/[0x200000400:0x2:0x3] &&
9753                 error "touch invalid fid should fail."
9754
9755         echo "touch non-normal fid: $MOUNT/.lustre/fid/[0x1:0x2:0x0]"
9756         touch $MOUNT/.lustre/fid/[0x1:0x2:0x0] &&
9757                 error "touch non-normal fid should fail."
9758
9759         echo "rename $tdir to $MOUNT/.lustre/fid"
9760         mrename $test_dir/$tdir $MOUNT/.lustre/fid &&
9761                 error "rename to $MOUNT/.lustre/fid should fail."
9762
9763         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.51) ]
9764         then            # LU-3547
9765                 local old_obf_mode=$(stat --format="%a" $DIR/.lustre/fid)
9766                 local new_obf_mode=777
9767
9768                 echo "change mode of $DIR/.lustre/fid to $new_obf_mode"
9769                 chmod $new_obf_mode $DIR/.lustre/fid ||
9770                         error "chmod $new_obf_mode $DIR/.lustre/fid failed"
9771
9772                 local obf_mode=$(stat --format=%a $DIR/.lustre/fid)
9773                 [ $obf_mode -eq $new_obf_mode ] ||
9774                         error "stat $DIR/.lustre/fid returned wrong mode $obf_mode"
9775
9776                 echo "restore mode of $DIR/.lustre/fid to $old_obf_mode"
9777                 chmod $old_obf_mode $DIR/.lustre/fid ||
9778                         error "chmod $old_obf_mode $DIR/.lustre/fid failed"
9779         fi
9780
9781         $OPENFILE -f O_LOV_DELAY_CREATE:O_CREAT $test_dir/$tfile-2
9782         fid=$($LFS path2fid $test_dir/$tfile-2)
9783
9784         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.50) ]
9785         then # LU-5424
9786                 echo "cp /etc/passwd $MOUNT/.lustre/fid/$fid"
9787                 cp /etc/passwd $MOUNT/.lustre/fid/$fid ||
9788                         error "create lov data thru .lustre failed"
9789         fi
9790         echo "cp /etc/passwd $test_dir/$tfile-2"
9791         cp /etc/passwd $test_dir/$tfile-2 ||
9792                 error "copy to $test_dir/$tfile-2 failed."
9793         echo "diff /etc/passwd $MOUNT/.lustre/fid/$fid"
9794         diff /etc/passwd $MOUNT/.lustre/fid/$fid ||
9795                 error "diff /etc/passwd $MOUNT/.lustre/fid/$fid failed."
9796
9797         rm -rf $test_dir/tfile.lnk
9798         rm -rf $test_dir/$tfile-2
9799 }
9800
9801 test_154A() {
9802         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
9803                 skip "Need MDS version at least 2.4.1" && return
9804
9805         touch $DIR/$tfile
9806         local FID=$($LFS path2fid $DIR/$tfile)
9807         [ -z "$FID" ] && error "path2fid unable to get $DIR/$tfile FID"
9808
9809         # check that we get the same pathname back
9810         local FOUND=$($LFS fid2path $MOUNT "$FID")
9811         [ -z "$FOUND" ] && error "fid2path unable to get $FID path"
9812         [ "$FOUND" != "$DIR/$tfile" ] &&
9813                 error "fid2path(path2fid($DIR/$tfile)) = $FOUND != $DIR/$tfile"
9814
9815         rm -rf $DIR/$tfile
9816 }
9817 run_test 154A "lfs path2fid and fid2path basic checks"
9818
9819 test_154a() {
9820         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9821         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
9822                 { skip "Need MDS version at least 2.2.51"; return 0; }
9823         [ -z "$(which setfacl)" ] && skip "must have setfacl tool" && return
9824
9825         cp /etc/hosts $DIR/$tfile
9826
9827         fid=$($LFS path2fid $DIR/$tfile)
9828         rc=$?
9829         [ $rc -ne 0 ] && error "error: could not get fid for $DIR/$tfile."
9830
9831         dot_lustre_fid_permission_check "$fid" $DIR ||
9832                 error "dot lustre permission check $fid failed"
9833
9834         rm -rf $MOUNT/.lustre && error ".lustre is not allowed to be unlinked"
9835
9836         touch $MOUNT/.lustre/file &&
9837                 error "creation is not allowed under .lustre"
9838
9839         mkdir $MOUNT/.lustre/dir &&
9840                 error "mkdir is not allowed under .lustre"
9841
9842         rm -rf $DIR/$tfile
9843 }
9844 run_test 154a "Open-by-FID"
9845
9846 test_154b() {
9847         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9848         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
9849                 { skip "Need MDS version at least 2.2.51"; return 0; }
9850
9851         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
9852
9853         local remote_dir=$DIR/$tdir/remote_dir
9854         local MDTIDX=1
9855         local rc=0
9856
9857         mkdir -p $DIR/$tdir
9858         $LFS mkdir -i $MDTIDX $remote_dir ||
9859                 error "create remote directory failed"
9860
9861         cp /etc/hosts $remote_dir/$tfile
9862
9863         fid=$($LFS path2fid $remote_dir/$tfile)
9864         rc=$?
9865         [ $rc -ne 0 ] && error "error: could not get fid for $remote_dir/$tfile"
9866
9867         dot_lustre_fid_permission_check "$fid" $remote_dir ||
9868                 error "dot lustre permission check $fid failed"
9869         rm -rf $DIR/$tdir
9870 }
9871 run_test 154b "Open-by-FID for remote directory"
9872
9873 test_154c() {
9874         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
9875                 skip "Need MDS version at least 2.4.1" && return
9876
9877         touch $DIR/$tfile.1 $DIR/$tfile.2 $DIR/$tfile.3
9878         local FID1=$($LFS path2fid $DIR/$tfile.1)
9879         local FID2=$($LFS path2fid $DIR/$tfile.2)
9880         local FID3=$($LFS path2fid $DIR/$tfile.3)
9881
9882         local N=1
9883         $LFS path2fid $DIR/$tfile.[123] | while read PATHNAME FID; do
9884                 [ "$PATHNAME" = "$DIR/$tfile.$N:" ] ||
9885                         error "path2fid pathname $PATHNAME != $DIR/$tfile.$N:"
9886                 local want=FID$N
9887                 [ "$FID" = "${!want}" ] ||
9888                         error "path2fid $PATHNAME FID $FID != FID$N ${!want}"
9889                 N=$((N + 1))
9890         done
9891
9892         $LFS fid2path $MOUNT "$FID1" "$FID2" "$FID3" | while read PATHNAME;
9893         do
9894                 [ "$PATHNAME" = "$DIR/$tfile.$N" ] ||
9895                         error "fid2path pathname $PATHNAME != $DIR/$tfile.$N:"
9896                 N=$((N + 1))
9897         done
9898 }
9899 run_test 154c "lfs path2fid and fid2path multiple arguments"
9900
9901 test_154d() {
9902         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.53) ]] &&
9903                 skip "Need MDS version at least 2.5.53" && return
9904
9905         if remote_mds; then
9906                 nid=$($LCTL list_nids | sed  "s/\./\\\./g")
9907         else
9908                 nid="0@lo"
9909         fi
9910         local proc_ofile="mdt.*.exports.'$nid'.open_files"
9911         local fd
9912         local cmd
9913
9914         rm -f $DIR/$tfile
9915         touch $DIR/$tfile
9916
9917         local fid=$($LFS path2fid $DIR/$tfile)
9918         # Open the file
9919         fd=$(free_fd)
9920         cmd="exec $fd<$DIR/$tfile"
9921         eval $cmd
9922         local fid_list=$(do_facet $SINGLEMDS $LCTL get_param $proc_ofile)
9923         echo "$fid_list" | grep "$fid"
9924         rc=$?
9925
9926         cmd="exec $fd>/dev/null"
9927         eval $cmd
9928         if [ $rc -ne 0 ]; then
9929                 error "FID $fid not found in open files list $fid_list"
9930         fi
9931 }
9932 run_test 154d "Verify open file fid"
9933
9934 test_154e()
9935 {
9936         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.50) ]] &&
9937                 skip "Need MDS version at least 2.6.50" && return
9938
9939         if ls -a $MOUNT | grep -q '^\.lustre$'; then
9940                 error ".lustre returned by readdir"
9941         fi
9942 }
9943 run_test 154e ".lustre is not returned by readdir"
9944
9945 test_154f() {
9946         # create parent directory on a single MDT to avoid cross-MDT hardlinks
9947         test_mkdir -p -c1 $DIR/$tdir/d
9948         # test dirs inherit from its stripe
9949         mkdir -p $DIR/$tdir/d/foo1 || error "mkdir error"
9950         mkdir -p $DIR/$tdir/d/foo2 || error "mkdir error"
9951         cp /etc/hosts $DIR/$tdir/d/foo1/$tfile
9952         ln $DIR/$tdir/d/foo1/$tfile $DIR/$tdir/d/foo2/link
9953         touch $DIR/f
9954
9955         # get fid of parents
9956         local FID0=$($LFS path2fid $DIR/$tdir/d)
9957         local FID1=$($LFS path2fid $DIR/$tdir/d/foo1)
9958         local FID2=$($LFS path2fid $DIR/$tdir/d/foo2)
9959         local FID3=$($LFS path2fid $DIR)
9960
9961         # check that path2fid --parents returns expected <parent_fid>/name
9962         # 1) test for a directory (single parent)
9963         local parent=$($LFS path2fid --parents $DIR/$tdir/d/foo1)
9964         [ "$parent" == "$FID0/foo1" ] ||
9965                 error "expected parent: $FID0/foo1, got: $parent"
9966
9967         # 2) test for a file with nlink > 1 (multiple parents)
9968         parent=$($LFS path2fid --parents $DIR/$tdir/d/foo1/$tfile)
9969         echo "$parent" | grep -F "$FID1/$tfile" ||
9970                 error "$FID1/$tfile not returned in parent list"
9971         echo "$parent" | grep -F "$FID2/link" ||
9972                 error "$FID2/link not returned in parent list"
9973
9974         # 3) get parent by fid
9975         local file_fid=$($LFS path2fid $DIR/$tdir/d/foo1/$tfile)
9976         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
9977         echo "$parent" | grep -F "$FID1/$tfile" ||
9978                 error "$FID1/$tfile not returned in parent list (by fid)"
9979         echo "$parent" | grep -F "$FID2/link" ||
9980                 error "$FID2/link not returned in parent list (by fid)"
9981
9982         # 4) test for entry in root directory
9983         parent=$($LFS path2fid --parents $DIR/f)
9984         echo "$parent" | grep -F "$FID3/f" ||
9985                 error "$FID3/f not returned in parent list"
9986
9987         # 5) test it on root directory
9988         [ -z "$($LFS path2fid --parents $MOUNT 2>/dev/null)" ] ||
9989                 error "$MOUNT should not have parents"
9990
9991         # enable xattr caching and check that linkea is correctly updated
9992         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
9993         save_lustre_params client "llite.*.xattr_cache" > $save
9994         lctl set_param llite.*.xattr_cache 1
9995
9996         # 6.1) linkea update on rename
9997         mv $DIR/$tdir/d/foo1/$tfile $DIR/$tdir/d/foo2/$tfile.moved
9998
9999         # get parents by fid
10000         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
10001         # foo1 should no longer be returned in parent list
10002         echo "$parent" | grep -F "$FID1" &&
10003                 error "$FID1 should no longer be in parent list"
10004         # the new path should appear
10005         echo "$parent" | grep -F "$FID2/$tfile.moved" ||
10006                 error "$FID2/$tfile.moved is not in parent list"
10007
10008         # 6.2) linkea update on unlink
10009         rm -f $DIR/$tdir/d/foo2/link
10010         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
10011         # foo2/link should no longer be returned in parent list
10012         echo "$parent" | grep -F "$FID2/link" &&
10013                 error "$FID2/link should no longer be in parent list"
10014         true
10015
10016         rm -f $DIR/f
10017         restore_lustre_params < $save
10018 }
10019 run_test 154f "get parent fids by reading link ea"
10020
10021 test_154g()
10022 {
10023         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.92) ]] ||
10024                 { skip "Need MDS version at least 2.6.92"; return 0; }
10025
10026         mkdir -p $DIR/$tdir
10027         llapi_fid_test -d $DIR/$tdir
10028 }
10029 run_test 154g "various llapi FID tests"
10030
10031 test_155_small_load() {
10032     local temp=$TMP/$tfile
10033     local file=$DIR/$tfile
10034
10035     dd if=/dev/urandom of=$temp bs=6096 count=1 || \
10036         error "dd of=$temp bs=6096 count=1 failed"
10037     cp $temp $file
10038     cancel_lru_locks osc
10039     cmp $temp $file || error "$temp $file differ"
10040
10041     $TRUNCATE $temp 6000
10042     $TRUNCATE $file 6000
10043     cmp $temp $file || error "$temp $file differ (truncate1)"
10044
10045     echo "12345" >>$temp
10046     echo "12345" >>$file
10047     cmp $temp $file || error "$temp $file differ (append1)"
10048
10049     echo "12345" >>$temp
10050     echo "12345" >>$file
10051     cmp $temp $file || error "$temp $file differ (append2)"
10052
10053     rm -f $temp $file
10054     true
10055 }
10056
10057 test_155_big_load() {
10058     remote_ost_nodsh && skip "remote OST with nodsh" && return
10059     local temp=$TMP/$tfile
10060     local file=$DIR/$tfile
10061
10062     free_min_max
10063     local cache_size=$(do_facet ost$((MAXI+1)) \
10064         "awk '/cache/ {sum+=\\\$4} END {print sum}' /proc/cpuinfo")
10065     local large_file_size=$((cache_size * 2))
10066
10067     echo "OSS cache size: $cache_size KB"
10068     echo "Large file size: $large_file_size KB"
10069
10070     [ $MAXV -le $large_file_size ] && \
10071         skip_env "max available OST size needs > $large_file_size KB" && \
10072         return 0
10073
10074     $SETSTRIPE $file -c 1 -i $MAXI || error "$SETSTRIPE $file failed"
10075
10076     dd if=/dev/urandom of=$temp bs=$large_file_size count=1k || \
10077         error "dd of=$temp bs=$large_file_size count=1k failed"
10078     cp $temp $file
10079     ls -lh $temp $file
10080     cancel_lru_locks osc
10081     cmp $temp $file || error "$temp $file differ"
10082
10083     rm -f $temp $file
10084     true
10085 }
10086
10087 test_155a() {
10088         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10089         set_cache read on
10090         set_cache writethrough on
10091         test_155_small_load
10092 }
10093 run_test 155a "Verify small file correctness: read cache:on write_cache:on"
10094
10095 test_155b() {
10096         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10097         set_cache read on
10098         set_cache writethrough off
10099         test_155_small_load
10100 }
10101 run_test 155b "Verify small file correctness: read cache:on write_cache:off"
10102
10103 test_155c() {
10104         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10105         set_cache read off
10106         set_cache writethrough on
10107         test_155_small_load
10108 }
10109 run_test 155c "Verify small file correctness: read cache:off write_cache:on"
10110
10111 test_155d() {
10112         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10113         set_cache read off
10114         set_cache writethrough off
10115         test_155_small_load
10116 }
10117 run_test 155d "Verify small file correctness: read cache:off write_cache:off"
10118
10119 test_155e() {
10120         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10121         set_cache read on
10122         set_cache writethrough on
10123         test_155_big_load
10124 }
10125 run_test 155e "Verify big file correctness: read cache:on write_cache:on"
10126
10127 test_155f() {
10128         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10129         set_cache read on
10130         set_cache writethrough off
10131         test_155_big_load
10132 }
10133 run_test 155f "Verify big file correctness: read cache:on write_cache:off"
10134
10135 test_155g() {
10136         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10137         set_cache read off
10138         set_cache writethrough on
10139         test_155_big_load
10140 }
10141 run_test 155g "Verify big file correctness: read cache:off write_cache:on"
10142
10143 test_155h() {
10144         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10145         set_cache read off
10146         set_cache writethrough off
10147         test_155_big_load
10148 }
10149 run_test 155h "Verify big file correctness: read cache:off write_cache:off"
10150
10151 test_156() {
10152         remote_ost_nodsh && skip "remote OST with nodsh" && return
10153         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10154         local CPAGES=3
10155         local BEFORE
10156         local AFTER
10157         local file="$DIR/$tfile"
10158
10159         [ "$(facet_fstype ost1)" = "zfs" ] &&
10160                 skip "LU-1956/LU-2261: stats unimplemented on OSD ZFS" &&
10161                 return
10162
10163         roc_hit_init
10164
10165     log "Turn on read and write cache"
10166     set_cache read on
10167     set_cache writethrough on
10168
10169     log "Write data and read it back."
10170     log "Read should be satisfied from the cache."
10171     dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
10172     BEFORE=`roc_hit`
10173     cancel_lru_locks osc
10174     cat $file >/dev/null
10175     AFTER=`roc_hit`
10176     if ! let "AFTER - BEFORE == CPAGES"; then
10177         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10178     else
10179         log "cache hits:: before: $BEFORE, after: $AFTER"
10180     fi
10181
10182     log "Read again; it should be satisfied from the cache."
10183     BEFORE=$AFTER
10184     cancel_lru_locks osc
10185     cat $file >/dev/null
10186     AFTER=`roc_hit`
10187     if ! let "AFTER - BEFORE == CPAGES"; then
10188         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10189     else
10190         log "cache hits:: before: $BEFORE, after: $AFTER"
10191     fi
10192
10193
10194     log "Turn off the read cache and turn on the write cache"
10195     set_cache read off
10196     set_cache writethrough on
10197
10198     log "Read again; it should be satisfied from the cache."
10199     BEFORE=`roc_hit`
10200     cancel_lru_locks osc
10201     cat $file >/dev/null
10202     AFTER=`roc_hit`
10203     if ! let "AFTER - BEFORE == CPAGES"; then
10204         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10205     else
10206         log "cache hits:: before: $BEFORE, after: $AFTER"
10207     fi
10208
10209     log "Read again; it should not be satisfied from the cache."
10210     BEFORE=$AFTER
10211     cancel_lru_locks osc
10212     cat $file >/dev/null
10213     AFTER=`roc_hit`
10214     if ! let "AFTER - BEFORE == 0"; then
10215         error "IN CACHE: before: $BEFORE, after: $AFTER"
10216     else
10217         log "cache hits:: before: $BEFORE, after: $AFTER"
10218     fi
10219
10220     log "Write data and read it back."
10221     log "Read should be satisfied from the cache."
10222     dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
10223     BEFORE=`roc_hit`
10224     cancel_lru_locks osc
10225     cat $file >/dev/null
10226     AFTER=`roc_hit`
10227     if ! let "AFTER - BEFORE == CPAGES"; then
10228         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10229     else
10230         log "cache hits:: before: $BEFORE, after: $AFTER"
10231     fi
10232
10233     log "Read again; it should not be satisfied from the cache."
10234     BEFORE=$AFTER
10235     cancel_lru_locks osc
10236     cat $file >/dev/null
10237     AFTER=`roc_hit`
10238     if ! let "AFTER - BEFORE == 0"; then
10239         error "IN CACHE: before: $BEFORE, after: $AFTER"
10240     else
10241         log "cache hits:: before: $BEFORE, after: $AFTER"
10242     fi
10243
10244
10245     log "Turn off read and write cache"
10246     set_cache read off
10247     set_cache writethrough off
10248
10249     log "Write data and read it back"
10250     log "It should not be satisfied from the cache."
10251     rm -f $file
10252     dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
10253     cancel_lru_locks osc
10254     BEFORE=`roc_hit`
10255     cat $file >/dev/null
10256     AFTER=`roc_hit`
10257         if ! let "AFTER - BEFORE == 0"; then
10258                 error_ignore bz20762 "IN CACHE: before: $BEFORE, after: $AFTER"
10259         else
10260                 log "cache hits:: before: $BEFORE, after: $AFTER"
10261         fi
10262
10263     log "Turn on the read cache and turn off the write cache"
10264     set_cache read on
10265     set_cache writethrough off
10266
10267     log "Write data and read it back"
10268     log "It should not be satisfied from the cache."
10269     rm -f $file
10270     dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
10271     BEFORE=`roc_hit`
10272     cancel_lru_locks osc
10273     cat $file >/dev/null
10274     AFTER=`roc_hit`
10275         if ! let "AFTER - BEFORE == 0"; then
10276                 error_ignore bz20762 "IN CACHE: before: $BEFORE, after: $AFTER"
10277         else
10278                 log "cache hits:: before: $BEFORE, after: $AFTER"
10279         fi
10280
10281     log "Read again; it should be satisfied from the cache."
10282     BEFORE=`roc_hit`
10283     cancel_lru_locks osc
10284     cat $file >/dev/null
10285     AFTER=`roc_hit`
10286     if ! let "AFTER - BEFORE == CPAGES"; then
10287         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10288     else
10289         log "cache hits:: before: $BEFORE, after: $AFTER"
10290     fi
10291
10292     rm -f $file
10293 }
10294 run_test 156 "Verification of tunables ============================"
10295
10296 #Changelogs
10297 err17935 () {
10298         if [[ $MDSCOUNT -gt 1 ]]; then
10299                 error_ignore bz17935 $*
10300         else
10301                 error $*
10302         fi
10303 }
10304
10305 changelog_chmask()
10306 {
10307         local CL_MASK_PARAM="mdd.$MDT0.changelog_mask"
10308
10309         MASK=$(do_facet $SINGLEMDS $LCTL get_param $CL_MASK_PARAM| grep -c "$1")
10310
10311         if [ $MASK -eq 1 ]; then
10312                 do_facet $SINGLEMDS $LCTL set_param $CL_MASK_PARAM="-$1"
10313         else
10314                 do_facet $SINGLEMDS $LCTL set_param $CL_MASK_PARAM="+$1"
10315         fi
10316 }
10317
10318 changelog_extract_field() {
10319         local mdt=$1
10320         local cltype=$2
10321         local file=$3
10322         local identifier=$4
10323
10324         $LFS changelog $mdt | gawk "/$cltype.*$file$/ {
10325                 print gensub(/^.* "$identifier'(\[[^\]]*\]).*$/,"\\1",1)}' |
10326                 tail -1
10327 }
10328
10329 test_160a() {
10330         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10331         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10332         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] ||
10333                 { skip "Need MDS version at least 2.2.0"; return; }
10334
10335         local CL_USERS="mdd.$MDT0.changelog_users"
10336         local GET_CL_USERS="do_facet $SINGLEMDS $LCTL get_param -n $CL_USERS"
10337         USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_register -n)
10338         echo "Registered as changelog user $USER"
10339         $GET_CL_USERS | grep -q $USER ||
10340                 error "User $USER not found in changelog_users"
10341
10342         # change something
10343         test_mkdir -p $DIR/$tdir/pics/2008/zachy
10344         touch $DIR/$tdir/pics/2008/zachy/timestamp
10345         cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg
10346         mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
10347         ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
10348         ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
10349         rm $DIR/$tdir/pics/desktop.jpg
10350
10351         $LFS changelog $MDT0 | tail -5
10352
10353         echo "verifying changelog mask"
10354         changelog_chmask "MKDIR"
10355         changelog_chmask "CLOSE"
10356
10357         test_mkdir -p $DIR/$tdir/pics/zach/sofia
10358         echo "zzzzzz" > $DIR/$tdir/pics/zach/file
10359
10360         changelog_chmask "MKDIR"
10361         changelog_chmask "CLOSE"
10362
10363         test_mkdir -p $DIR/$tdir/pics/2008/sofia
10364         echo "zzzzzz" > $DIR/$tdir/pics/zach/file
10365
10366         $LFS changelog $MDT0
10367         MKDIRS=$($LFS changelog $MDT0 | tail -5 | grep -c "MKDIR")
10368         CLOSES=$($LFS changelog $MDT0 | tail -5 | grep -c "CLOSE")
10369         [ $MKDIRS -eq 1 ] || err17935 "MKDIR changelog mask count $DIRS != 1"
10370         [ $CLOSES -eq 1 ] || err17935 "CLOSE changelog mask count $DIRS != 1"
10371
10372         # verify contents
10373         echo "verifying target fid"
10374         fidc=$(changelog_extract_field $MDT0 "CREAT" "timestamp" "t=")
10375         fidf=$($LFS path2fid $DIR/$tdir/pics/zach/timestamp)
10376         [ "$fidc" == "$fidf" ] ||
10377                 err17935 "fid in changelog $fidc != file fid $fidf"
10378         echo "verifying parent fid"
10379         fidc=$(changelog_extract_field $MDT0 "CREAT" "timestamp" "p=")
10380         fidf=$($LFS path2fid $DIR/$tdir/pics/zach)
10381         [ "$fidc" == "$fidf" ] ||
10382                 err17935 "pfid in changelog $fidc != dir fid $fidf"
10383
10384         USER_REC1=$($GET_CL_USERS | awk "\$1 == \"$USER\" {print \$2}")
10385         $LFS changelog_clear $MDT0 $USER $(($USER_REC1 + 5))
10386         USER_REC2=$($GET_CL_USERS | awk "\$1 == \"$USER\" {print \$2}")
10387         echo "verifying user clear: $(( $USER_REC1 + 5 )) == $USER_REC2"
10388         [ $USER_REC2 == $(($USER_REC1 + 5)) ] ||
10389                 err17935 "user index expected $(($USER_REC1 + 5)) is $USER_REC2"
10390
10391         MIN_REC=$($GET_CL_USERS |
10392                 awk 'min == "" || $2 < min {min = $2}; END {print min}')
10393         FIRST_REC=$($LFS changelog $MDT0 | head -n1 | awk '{print $1}')
10394         echo "verifying min purge: $(( $MIN_REC + 1 )) == $FIRST_REC"
10395         [ $FIRST_REC == $(($MIN_REC + 1)) ] ||
10396                 err17935 "first index should be $(($MIN_REC + 1)) is $FIRST_REC"
10397
10398         # LU-3446 changelog index reset on MDT restart
10399         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
10400         CUR_REC1=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
10401         $LFS changelog_clear $MDT0 $USER 0
10402         stop $SINGLEMDS || error "Fail to stop MDT."
10403         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
10404         CUR_REC2=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
10405         echo "verifying index survives MDT restart: $CUR_REC1 == $CUR_REC2"
10406         [ $CUR_REC1 == $CUR_REC2 ] ||
10407                 err17935 "current index should be $CUR_REC1 is $CUR_REC2"
10408
10409         echo "verifying user deregister"
10410         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $USER
10411         $GET_CL_USERS | grep -q $USER &&
10412                 error "User $USER still in changelog_users"
10413
10414         USERS=$(( $($GET_CL_USERS | wc -l) - 2 ))
10415         if [ $USERS -eq 0 ]; then
10416                 LAST_REC1=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
10417                 touch $DIR/$tdir/chloe
10418                 LAST_REC2=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
10419                 echo "verify changelogs are off: $LAST_REC1 == $LAST_REC2"
10420                 [ $LAST_REC1 == $LAST_REC2 ] || error "changelogs not off"
10421         else
10422                 echo "$USERS other changelog users; can't verify off"
10423         fi
10424 }
10425 run_test 160a "changelog sanity"
10426
10427 test_160b() { # LU-3587
10428         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10429         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10430         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] ||
10431                 { skip "Need MDS version at least 2.2.0"; return; }
10432
10433         local CL_USERS="mdd.$MDT0.changelog_users"
10434         local GET_CL_USERS="do_facet $SINGLEMDS $LCTL get_param -n $CL_USERS"
10435         USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_register -n)
10436         echo "Registered as changelog user $USER"
10437         $GET_CL_USERS | grep -q $USER ||
10438                 error "User $USER not found in changelog_users"
10439
10440         local LONGNAME1=$(str_repeat a 255)
10441         local LONGNAME2=$(str_repeat b 255)
10442
10443         cd $DIR
10444         echo "creating very long named file"
10445         touch $LONGNAME1 || error "create of $LONGNAME1 failed"
10446         echo "moving very long named file"
10447         mv $LONGNAME1 $LONGNAME2
10448
10449         $LFS changelog $MDT0 | grep RENME
10450
10451         echo "deregistering $USER"
10452         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $USER
10453
10454         rm -f $LONGNAME2
10455 }
10456 run_test 160b "Verify that very long rename doesn't crash in changelog"
10457
10458 test_160c() {
10459         local rc=0
10460         local server_version=$(lustre_version_code $SINGLEMDS)
10461
10462         [[ $server_version -gt $(version_code 2.5.57) ]] ||
10463                 [[ $server_version -gt $(version_code 2.5.1) &&
10464                    $server_version -lt $(version_code 2.5.50) ]] ||
10465                 { skip "Need MDS version at least 2.5.58 or 2.5.2+"; return; }
10466         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10467
10468         # Registration step
10469         local USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
10470                 changelog_register -n)
10471
10472         rm -rf $DIR/$tdir
10473         mkdir -p $DIR/$tdir
10474         $MCREATE $DIR/$tdir/foo_160c
10475         changelog_chmask "TRUNC"
10476         $TRUNCATE $DIR/$tdir/foo_160c 200
10477         changelog_chmask "TRUNC"
10478         $TRUNCATE $DIR/$tdir/foo_160c 199
10479         $LFS changelog $MDT0
10480         TRUNCS=$($LFS changelog $MDT0 | tail -5 | grep -c "TRUNC")
10481         [ $TRUNCS -eq 1 ] || err17935 "TRUNC changelog mask count $TRUNCS != 1"
10482         $LFS changelog_clear $MDT0 $USER 0
10483
10484         # Deregistration step
10485         echo "deregistering $USER"
10486         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $USER
10487 }
10488 run_test 160c "verify that changelog log catch the truncate event"
10489
10490 test_161a() {
10491         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10492         test_mkdir -p -c1 $DIR/$tdir
10493         cp /etc/hosts $DIR/$tdir/$tfile
10494         test_mkdir -c1 $DIR/$tdir/foo1
10495         test_mkdir -c1 $DIR/$tdir/foo2
10496         ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/sofia
10497         ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/zachary
10498         ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/luna
10499         ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/thor
10500         local FID=$($LFS path2fid $DIR/$tdir/$tfile | tr -d '[]')
10501         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
10502                 $LFS fid2path $DIR $FID
10503                 err17935 "bad link ea"
10504         fi
10505     # middle
10506     rm $DIR/$tdir/foo2/zachary
10507     # last
10508     rm $DIR/$tdir/foo2/thor
10509     # first
10510     rm $DIR/$tdir/$tfile
10511     # rename
10512     mv $DIR/$tdir/foo1/sofia $DIR/$tdir/foo2/maggie
10513     if [ "$($LFS fid2path $FSNAME --link 1 $FID)" != "$tdir/foo2/maggie" ]
10514         then
10515         $LFS fid2path $DIR $FID
10516         err17935 "bad link rename"
10517     fi
10518     rm $DIR/$tdir/foo2/maggie
10519
10520         # overflow the EA
10521         local longname=filename_avg_len_is_thirty_two_
10522         createmany -l$DIR/$tdir/foo1/luna $DIR/$tdir/foo2/$longname 1000 ||
10523                 error "failed to hardlink many files"
10524         links=$($LFS fid2path $DIR $FID | wc -l)
10525         echo -n "${links}/1000 links in link EA"
10526         [[ $links -gt 60 ]] ||
10527                 err17935 "expected at least 60 links in link EA"
10528         unlinkmany $DIR/$tdir/foo2/$longname 1000 ||
10529                 error "failed to unlink many hardlinks"
10530 }
10531 run_test 161a "link ea sanity"
10532
10533 test_161b() {
10534         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10535         [ $MDSCOUNT -lt 2 ] &&
10536                 skip "skipping remote directory test" && return
10537         local MDTIDX=1
10538         local remote_dir=$DIR/$tdir/remote_dir
10539
10540         mkdir -p $DIR/$tdir
10541         $LFS mkdir -i $MDTIDX $remote_dir ||
10542                 error "create remote directory failed"
10543
10544         cp /etc/hosts $remote_dir/$tfile
10545         mkdir -p $remote_dir/foo1
10546         mkdir -p $remote_dir/foo2
10547         ln $remote_dir/$tfile $remote_dir/foo1/sofia
10548         ln $remote_dir/$tfile $remote_dir/foo2/zachary
10549         ln $remote_dir/$tfile $remote_dir/foo1/luna
10550         ln $remote_dir/$tfile $remote_dir/foo2/thor
10551
10552         local FID=$($LFS path2fid $remote_dir/$tfile | tr -d '[' |
10553                      tr -d ']')
10554         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
10555                 $LFS fid2path $DIR $FID
10556                 err17935 "bad link ea"
10557         fi
10558         # middle
10559         rm $remote_dir/foo2/zachary
10560         # last
10561         rm $remote_dir/foo2/thor
10562         # first
10563         rm $remote_dir/$tfile
10564         # rename
10565         mv $remote_dir/foo1/sofia $remote_dir/foo2/maggie
10566         local link_path=$($LFS fid2path $FSNAME --link 1 $FID)
10567         if [ "$DIR/$link_path" != "$remote_dir/foo2/maggie" ]; then
10568                 $LFS fid2path $DIR $FID
10569                 err17935 "bad link rename"
10570         fi
10571         rm $remote_dir/foo2/maggie
10572
10573         # overflow the EA
10574         local longname=filename_avg_len_is_thirty_two_
10575         createmany -l$remote_dir/foo1/luna $remote_dir/foo2/$longname 1000 ||
10576                 error "failed to hardlink many files"
10577         links=$($LFS fid2path $DIR $FID | wc -l)
10578         echo -n "${links}/1000 links in link EA"
10579         [[ ${links} -gt 60 ]] ||
10580                 err17935 "expected at least 60 links in link EA"
10581         unlinkmany $remote_dir/foo2/$longname 1000 ||
10582         error "failed to unlink many hardlinks"
10583 }
10584 run_test 161b "link ea sanity under remote directory"
10585
10586 test_161c() {
10587         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10588         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10589         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.1.5) ]] &&
10590                 skip "Need MDS version at least 2.1.5" && return
10591
10592         # define CLF_RENAME_LAST 0x0001
10593         # rename overwrite a target having nlink = 1 (changelog flag 0x1)
10594         local USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
10595                 changelog_register -n)
10596         rm -rf $DIR/$tdir
10597         mkdir -p $DIR/$tdir
10598         touch $DIR/$tdir/foo_161c
10599         touch $DIR/$tdir/bar_161c
10600         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
10601         $LFS changelog $MDT0 | grep RENME
10602         local flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | \
10603                 cut -f5 -d' ')
10604         $LFS changelog_clear $MDT0 $USER 0
10605         if [ x$flags != "x0x1" ]; then
10606                 do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister \
10607                         $USER
10608                 error "flag $flags is not 0x1"
10609         fi
10610         echo "rename overwrite a target having nlink = 1," \
10611                 "changelog record has flags of $flags"
10612
10613         # rename overwrite a target having nlink > 1 (changelog flag 0x0)
10614         touch $DIR/$tdir/foo_161c
10615         touch $DIR/$tdir/bar_161c
10616         ln $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
10617         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
10618         $LFS changelog $MDT0 | grep RENME
10619         flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | cut -f5 -d' ')
10620         $LFS changelog_clear $MDT0 $USER 0
10621         if [ x$flags != "x0x0" ]; then
10622                 do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister \
10623                         $USER
10624                 error "flag $flags is not 0x0"
10625         fi
10626         echo "rename overwrite a target having nlink > 1," \
10627                 "changelog record has flags of $flags"
10628
10629         # rename doesn't overwrite a target (changelog flag 0x0)
10630         touch $DIR/$tdir/foo_161c
10631         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/foo2_161c
10632         $LFS changelog $MDT0 | grep RENME
10633         flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | cut -f5 -d' ')
10634         $LFS changelog_clear $MDT0 $USER 0
10635         if [ x$flags != "x0x0" ]; then
10636                 do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister \
10637                         $USER
10638                 error "flag $flags is not 0x0"
10639         fi
10640         echo "rename doesn't overwrite a target," \
10641                 "changelog record has flags of $flags"
10642
10643         # define CLF_UNLINK_LAST 0x0001
10644         # unlink a file having nlink = 1 (changelog flag 0x1)
10645         rm -f $DIR/$tdir/foo2_161c
10646         $LFS changelog $MDT0 | grep UNLNK
10647         flags=$($LFS changelog $MDT0 | grep UNLNK | tail -1 | cut -f5 -d' ')
10648         $LFS changelog_clear $MDT0 $USER 0
10649         if [ x$flags != "x0x1" ]; then
10650                 do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister \
10651                         $USER
10652                 error "flag $flags is not 0x1"
10653         fi
10654         echo "unlink a file having nlink = 1," \
10655                 "changelog record has flags of $flags"
10656
10657         # unlink a file having nlink > 1 (changelog flag 0x0)
10658         ln -f $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
10659         rm -f $DIR/$tdir/foobar_161c
10660         $LFS changelog $MDT0 | grep UNLNK
10661         flags=$($LFS changelog $MDT0 | grep UNLNK | tail -1 | cut -f5 -d' ')
10662         $LFS changelog_clear $MDT0 $USER 0
10663         if [ x$flags != "x0x0" ]; then
10664                 do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister \
10665                         $USER
10666                 error "flag $flags is not 0x0"
10667         fi
10668         echo "unlink a file having nlink > 1," \
10669                 "changelog record has flags of $flags"
10670         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $USER
10671 }
10672 run_test 161c "check CL_RENME[UNLINK] changelog record flags"
10673
10674 check_path() {
10675     local expected=$1
10676     shift
10677     local fid=$2
10678
10679     local path=$(${LFS} fid2path $*)
10680     # Remove the '//' indicating a remote directory
10681     path=$(echo $path | sed 's#//#/#g')
10682     RC=$?
10683
10684     if [ $RC -ne 0 ]; then
10685         err17935 "path looked up of $expected failed. Error $RC"
10686         return $RC
10687     elif [ "${path}" != "${expected}" ]; then
10688         err17935 "path looked up \"${path}\" instead of \"${expected}\""
10689         return 2
10690     fi
10691     echo "fid $fid resolves to path $path (expected $expected)"
10692 }
10693
10694 test_162() {
10695         # Make changes to filesystem
10696         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10697         test_mkdir -p -c1 $DIR/$tdir/d2
10698         touch $DIR/$tdir/d2/$tfile
10699         touch $DIR/$tdir/d2/x1
10700         touch $DIR/$tdir/d2/x2
10701         test_mkdir -p -c1 $DIR/$tdir/d2/a/b/c
10702         test_mkdir -p -c1 $DIR/$tdir/d2/p/q/r
10703         # regular file
10704         FID=$($LFS path2fid $DIR/$tdir/d2/$tfile | tr -d '[]')
10705         check_path "$tdir/d2/$tfile" $FSNAME $FID --link 0 ||
10706                 error "check path $tdir/d2/$tfile failed"
10707
10708         # softlink
10709         ln -s $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/slink
10710         FID=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink | tr -d '[]')
10711         check_path "$tdir/d2/p/q/r/slink" $FSNAME $FID --link 0 ||
10712                 error "check path $tdir/d2/p/q/r/slink failed"
10713
10714         # softlink to wrong file
10715         ln -s /this/is/garbage $DIR/$tdir/d2/p/q/r/slink.wrong
10716         FID=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink.wrong | tr -d '[]')
10717         check_path "$tdir/d2/p/q/r/slink.wrong" $FSNAME $FID --link 0 ||
10718                 error "check path $tdir/d2/p/q/r/slink.wrong failed"
10719
10720         # hardlink
10721         ln $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/hlink
10722         mv $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/a/b/c/new_file
10723         FID=$($LFS path2fid $DIR/$tdir/d2/a/b/c/new_file | tr -d '[]')
10724         # fid2path dir/fsname should both work
10725         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $FID --link 1 ||
10726                 error "check path $tdir/d2/a/b/c/new_file failed"
10727         check_path "$DIR/$tdir/d2/p/q/r/hlink" $DIR $FID --link 0 ||
10728                 error "check path $DIR/$tdir/d2/p/q/r/hlink failed"
10729
10730         # hardlink count: check that there are 2 links
10731         # Doesnt work with CMD yet: 17935
10732         ${LFS} fid2path $DIR $FID | wc -l | grep -q 2 || \
10733                 err17935 "expected 2 links"
10734
10735         # hardlink indexing: remove the first link
10736         rm $DIR/$tdir/d2/p/q/r/hlink
10737         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $FID --link 0 ||
10738                 error "check path $DIR/$tdir/d2/a/b/c/new_file failed"
10739
10740         return 0
10741 }
10742 run_test 162 "path lookup sanity"
10743
10744 test_162b() {
10745         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10746         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
10747
10748         mkdir $DIR/$tdir
10749         $LFS setdirstripe -i0 -c$MDSCOUNT -t all_char $DIR/$tdir/striped_dir ||
10750                                 error "create striped dir failed"
10751
10752         local FID=$($LFS getdirstripe $DIR/$tdir/striped_dir |
10753                                         tail -n 1 | awk '{print $2}')
10754         stat $MOUNT/.lustre/fid/$FID && error "sub_stripe can be accessed"
10755
10756         touch $DIR/$tdir/striped_dir/f{0..4} || error "touch f0..4 failed"
10757         mkdir $DIR/$tdir/striped_dir/d{0..4} || error "mkdir d0..4 failed"
10758
10759         # regular file
10760         for ((i=0;i<5;i++)); do
10761                 FID=$($LFS path2fid $DIR/$tdir/striped_dir/f$i | tr -d '[]') ||
10762                         error "get fid for f$i failed"
10763                 check_path "$tdir/striped_dir/f$i" $FSNAME $FID --link 0 ||
10764                         error "check path $tdir/striped_dir/f$i failed"
10765
10766                 FID=$($LFS path2fid $DIR/$tdir/striped_dir/d$i | tr -d '[]') ||
10767                         error "get fid for d$i failed"
10768                 check_path "$tdir/striped_dir/d$i" $FSNAME $FID --link 0 ||
10769                         error "check path $tdir/striped_dir/d$i failed"
10770         done
10771
10772         return 0
10773 }
10774 run_test 162b "striped directory path lookup sanity"
10775
10776 # LU-4239: Verify fid2path works with paths 100 or more directories deep
10777 test_162c() {
10778         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.51) ]] &&
10779                 skip "Need MDS version at least 2.7.51" && return
10780         test_mkdir $DIR/$tdir.local
10781         test_mkdir $DIR/$tdir.remote
10782         local lpath=$tdir.local
10783         local rpath=$tdir.remote
10784
10785         for ((i = 0; i <= 101; i++)); do
10786                 lpath="$lpath/$i"
10787                 mkdir $DIR/$lpath
10788                 FID=$($LFS path2fid $DIR/$lpath | tr -d '[]') ||
10789                         error "get fid for local directory $DIR/$lpath failed"
10790                 check_path "$DIR/$lpath" $MOUNT $FID --link 0 ||
10791                         error "check path for local directory $DIR/$lpath failed"
10792
10793                 rpath="$rpath/$i"
10794                 test_mkdir $DIR/$rpath
10795                 FID=$($LFS path2fid $DIR/$rpath | tr -d '[]') ||
10796                         error "get fid for remote directory $DIR/$rpath failed"
10797                 check_path "$DIR/$rpath" $MOUNT $FID --link 0 ||
10798                         error "check path for remote directory $DIR/$rpath failed"
10799         done
10800
10801         return 0
10802 }
10803 run_test 162c "fid2path works with paths 100 or more directories deep"
10804
10805 test_169() {
10806         # do directio so as not to populate the page cache
10807         log "creating a 10 Mb file"
10808         $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
10809         log "starting reads"
10810         dd if=$DIR/$tfile of=/dev/null bs=4096 &
10811         log "truncating the file"
10812         $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
10813         log "killing dd"
10814         kill %+ || true # reads might have finished
10815         echo "wait until dd is finished"
10816         wait
10817         log "removing the temporary file"
10818         rm -rf $DIR/$tfile || error "tmp file removal failed"
10819 }
10820 run_test 169 "parallel read and truncate should not deadlock"
10821
10822 test_170() {
10823         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10824         $LCTL clear     # bug 18514
10825         $LCTL debug_daemon start $TMP/${tfile}_log_good
10826         touch $DIR/$tfile
10827         $LCTL debug_daemon stop
10828         sed -e "s/^...../a/g" $TMP/${tfile}_log_good > $TMP/${tfile}_log_bad ||
10829                error "sed failed to read log_good"
10830
10831         $LCTL debug_daemon start $TMP/${tfile}_log_good
10832         rm -rf $DIR/$tfile
10833         $LCTL debug_daemon stop
10834
10835         $LCTL df $TMP/${tfile}_log_bad > $TMP/${tfile}_log_bad.out 2>&1 ||
10836                error "lctl df log_bad failed"
10837
10838         local bad_line=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
10839         local good_line1=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
10840
10841         $LCTL df $TMP/${tfile}_log_good > $TMP/${tfile}_log_good.out 2>&1
10842         local good_line2=$(tail -n 1 $TMP/${tfile}_log_good.out | awk '{print $5}')
10843
10844         [ "$bad_line" ] && [ "$good_line1" ] && [ "$good_line2" ] ||
10845                 error "bad_line good_line1 good_line2 are empty"
10846
10847         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
10848         cat $TMP/${tfile}_log_bad >> $TMP/${tfile}_logs_corrupt
10849         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
10850
10851         $LCTL df $TMP/${tfile}_logs_corrupt > $TMP/${tfile}_log_bad.out 2>&1
10852         local bad_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
10853         local good_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
10854
10855         [ "$bad_line_new" ] && [ "$good_line_new" ] ||
10856                 error "bad_line_new good_line_new are empty"
10857
10858         local expected_good=$((good_line1 + good_line2*2))
10859
10860         rm -f $TMP/${tfile}*
10861         # LU-231, short malformed line may not be counted into bad lines
10862         if [ $bad_line -ne $bad_line_new ] &&
10863                    [ $bad_line -ne $((bad_line_new - 1)) ]; then
10864                 error "expected $bad_line bad lines, but got $bad_line_new"
10865                 return 1
10866         fi
10867
10868         if [ $expected_good -ne $good_line_new ]; then
10869                 error "expected $expected_good good lines, but got $good_line_new"
10870                 return 2
10871         fi
10872         true
10873 }
10874 run_test 170 "test lctl df to handle corrupted log ====================="
10875
10876 test_171() { # bug20592
10877         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10878 #define OBD_FAIL_PTLRPC_DUMP_LOG         0x50e
10879         $LCTL set_param fail_loc=0x50e
10880         $LCTL set_param fail_val=3000
10881         multiop_bg_pause $DIR/$tfile O_s || true
10882         local MULTIPID=$!
10883         kill -USR1 $MULTIPID
10884         # cause log dump
10885         sleep 3
10886         wait $MULTIPID
10887         if dmesg | grep "recursive fault"; then
10888                 error "caught a recursive fault"
10889         fi
10890         $LCTL set_param fail_loc=0
10891         true
10892 }
10893 run_test 171 "test libcfs_debug_dumplog_thread stuck in do_exit() ======"
10894
10895 # it would be good to share it with obdfilter-survey/iokit-libecho code
10896 setup_obdecho_osc () {
10897         local rc=0
10898         local ost_nid=$1
10899         local obdfilter_name=$2
10900         echo "Creating new osc for $obdfilter_name on $ost_nid"
10901         # make sure we can find loopback nid
10902         $LCTL add_uuid $ost_nid $ost_nid >/dev/null 2>&1
10903
10904         [ $rc -eq 0 ] && { $LCTL attach osc ${obdfilter_name}_osc     \
10905                            ${obdfilter_name}_osc_UUID || rc=2; }
10906         [ $rc -eq 0 ] && { $LCTL --device ${obdfilter_name}_osc setup \
10907                            ${obdfilter_name}_UUID  $ost_nid || rc=3; }
10908         return $rc
10909 }
10910
10911 cleanup_obdecho_osc () {
10912         local obdfilter_name=$1
10913         $LCTL --device ${obdfilter_name}_osc cleanup >/dev/null
10914         $LCTL --device ${obdfilter_name}_osc detach  >/dev/null
10915         return 0
10916 }
10917
10918 obdecho_test() {
10919         local OBD=$1
10920         local node=$2
10921         local pages=${3:-64}
10922         local rc=0
10923         local id
10924
10925         local count=10
10926         local obd_size=$(get_obd_size $node $OBD)
10927         local page_size=$(get_page_size $node)
10928         if [[ -n "$obd_size" ]]; then
10929                 local new_count=$((obd_size / (pages * page_size / 1024)))
10930                 [[ $new_count -ge $count ]] || count=$new_count
10931         fi
10932
10933         do_facet $node "$LCTL attach echo_client ec ec_uuid" || rc=1
10934         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec setup $OBD" ||
10935                            rc=2; }
10936         if [ $rc -eq 0 ]; then
10937             id=$(do_facet $node "$LCTL --device ec create 1"  | awk '/object id/ {print $6}')
10938             [ ${PIPESTATUS[0]} -eq 0 -a -n "$id" ] || rc=3
10939         fi
10940         echo "New object id is $id"
10941         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec getattr $id" ||
10942                            rc=4; }
10943         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec "                 \
10944                            "test_brw $count w v $pages $id" || rc=4; }
10945         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec destroy $id 1" ||
10946                            rc=4; }
10947         [ $rc -eq 0 -o $rc -gt 2 ] && { do_facet $node "$LCTL --device ec "    \
10948                                         "cleanup" || rc=5; }
10949         [ $rc -eq 0 -o $rc -gt 1 ] && { do_facet $node "$LCTL --device ec "    \
10950                                         "detach" || rc=6; }
10951         [ $rc -ne 0 ] && echo "obecho_create_test failed: $rc"
10952         return $rc
10953 }
10954
10955 test_180a() {
10956         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10957         remote_ost_nodsh && skip "remote OST with nodsh" && return
10958         local rc=0
10959         local rmmod_local=0
10960
10961         if ! module_loaded obdecho; then
10962             load_module obdecho/obdecho
10963             rmmod_local=1
10964         fi
10965
10966         local osc=$($LCTL dl | grep -v mdt | awk '$3 == "osc" {print $4; exit}')
10967         local host=$(lctl get_param -n osc.$osc.import |
10968                              awk '/current_connection:/ {print $2}' )
10969         local target=$(lctl get_param -n osc.$osc.import |
10970                              awk '/target:/ {print $2}' )
10971         target=${target%_UUID}
10972
10973         [[ -n $target ]]  && { setup_obdecho_osc $host $target || rc=1; } || rc=1
10974         [ $rc -eq 0 ] && { obdecho_test ${target}_osc client || rc=2; }
10975         [[ -n $target ]] && cleanup_obdecho_osc $target
10976         [ $rmmod_local -eq 1 ] && rmmod obdecho
10977         return $rc
10978 }
10979 run_test 180a "test obdecho on osc"
10980
10981 test_180b() {
10982         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10983         remote_ost_nodsh && skip "remote OST with nodsh" && return
10984         local rc=0
10985         local rmmod_remote=0
10986
10987         do_facet ost1 "lsmod | grep -q obdecho || "                      \
10988                       "{ insmod ${LUSTRE}/obdecho/obdecho.ko || "        \
10989                       "modprobe obdecho; }" && rmmod_remote=1
10990         target=$(do_facet ost1 $LCTL dl | awk '/obdfilter/ {print $4;exit}')
10991         [[ -n $target ]] && { obdecho_test $target ost1 || rc=1; }
10992         [ $rmmod_remote -eq 1 ] && do_facet ost1 "rmmod obdecho"
10993         return $rc
10994 }
10995 run_test 180b "test obdecho directly on obdfilter"
10996
10997 test_180c() { # LU-2598
10998         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10999         remote_ost_nodsh && skip "remote OST with nodsh" && return
11000         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.0) ]] &&
11001                 skip "Need MDS version at least 2.4.0" && return
11002
11003         local rc=0
11004         local rmmod_remote=false
11005         local pages=16384 # 64MB bulk I/O RPC size
11006         local target
11007
11008         do_rpc_nodes $(facet_active_host ost1) load_module obdecho/obdecho &&
11009                 rmmod_remote=true || error "failed to load module obdecho"
11010
11011         target=$(do_facet ost1 $LCTL dl | awk '/obdfilter/ { print $4 }' |
11012                 head -n1)
11013         if [ -n "$target" ]; then
11014                 obdecho_test "$target" ost1 "$pages" || rc=${PIPESTATUS[0]}
11015         else
11016                 echo "there is no obdfilter target on ost1"
11017                 rc=2
11018         fi
11019         $rmmod_remote && do_facet ost1 "rmmod obdecho" || true
11020         return $rc
11021 }
11022 run_test 180c "test huge bulk I/O size on obdfilter, don't LASSERT"
11023
11024 test_181() { # bug 22177
11025         test_mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
11026         # create enough files to index the directory
11027         createmany -o $DIR/$tdir/foobar 4000
11028         # print attributes for debug purpose
11029         lsattr -d .
11030         # open dir
11031         multiop_bg_pause $DIR/$tdir D_Sc || return 1
11032         MULTIPID=$!
11033         # remove the files & current working dir
11034         unlinkmany $DIR/$tdir/foobar 4000
11035         rmdir $DIR/$tdir
11036         kill -USR1 $MULTIPID
11037         wait $MULTIPID
11038         stat $DIR/$tdir && error "open-unlinked dir was not removed!"
11039         return 0
11040 }
11041 run_test 181 "Test open-unlinked dir ========================"
11042
11043 test_182() {
11044         local fcount=1000
11045         local tcount=10
11046
11047         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
11048
11049         $LCTL set_param mdc.*.rpc_stats=clear
11050
11051         for (( i = 0; i < $tcount; i++ )) ; do
11052                 mkdir $DIR/$tdir/$i
11053         done
11054
11055         for (( i = 0; i < $tcount; i++ )) ; do
11056                 createmany -o $DIR/$tdir/$i/f- $fcount &
11057         done
11058         wait
11059
11060         for (( i = 0; i < $tcount; i++ )) ; do
11061                 unlinkmany $DIR/$tdir/$i/f- $fcount &
11062         done
11063         wait
11064
11065         $LCTL get_param mdc.*.rpc_stats
11066
11067         rm -rf $DIR/$tdir
11068 }
11069 run_test 182 "Test parallel modify metadata operations ================"
11070
11071 test_183() { # LU-2275
11072         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11073         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.56) ]] &&
11074                 skip "Need MDS version at least 2.3.56" && return
11075
11076         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11077         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
11078         echo aaa > $DIR/$tdir/$tfile
11079
11080 #define OBD_FAIL_MDS_NEGATIVE_POSITIVE  0x148
11081         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x148
11082
11083         ls -l $DIR/$tdir && error "ls succeeded, should have failed"
11084         cat $DIR/$tdir/$tfile && error "cat succeeded, should have failed"
11085
11086         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
11087
11088         # Flush negative dentry cache
11089         touch $DIR/$tdir/$tfile
11090
11091         # We are not checking for any leaked references here, they'll
11092         # become evident next time we do cleanup with module unload.
11093         rm -rf $DIR/$tdir
11094 }
11095 run_test 183 "No crash or request leak in case of strange dispositions ========"
11096
11097 # test suite 184 is for LU-2016, LU-2017
11098 test_184a() {
11099         check_swap_layouts_support && return 0
11100
11101         dir0=$DIR/$tdir/$testnum
11102         test_mkdir -p -c1 $dir0 || error "creating dir $dir0"
11103         ref1=/etc/passwd
11104         ref2=/etc/group
11105         file1=$dir0/f1
11106         file2=$dir0/f2
11107         $SETSTRIPE -c1 $file1
11108         cp $ref1 $file1
11109         $SETSTRIPE -c2 $file2
11110         cp $ref2 $file2
11111         gen1=$($GETSTRIPE -g $file1)
11112         gen2=$($GETSTRIPE -g $file2)
11113
11114         $LFS swap_layouts $file1 $file2 || error "swap of file layout failed"
11115         gen=$($GETSTRIPE -g $file1)
11116         [[ $gen1 != $gen ]] ||
11117                 "Layout generation on $file1 does not change"
11118         gen=$($GETSTRIPE -g $file2)
11119         [[ $gen2 != $gen ]] ||
11120                 "Layout generation on $file2 does not change"
11121
11122         cmp $ref1 $file2 || error "content compare failed ($ref1 != $file2)"
11123         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
11124 }
11125 run_test 184a "Basic layout swap"
11126
11127 test_184b() {
11128         check_swap_layouts_support && return 0
11129
11130         dir0=$DIR/$tdir/$testnum
11131         mkdir -p $dir0 || error "creating dir $dir0"
11132         file1=$dir0/f1
11133         file2=$dir0/f2
11134         file3=$dir0/f3
11135         dir1=$dir0/d1
11136         dir2=$dir0/d2
11137         mkdir $dir1 $dir2
11138         $SETSTRIPE -c1 $file1
11139         $SETSTRIPE -c2 $file2
11140         $SETSTRIPE -c1 $file3
11141         chown $RUNAS_ID $file3
11142         gen1=$($GETSTRIPE -g $file1)
11143         gen2=$($GETSTRIPE -g $file2)
11144
11145         $LFS swap_layouts $dir1 $dir2 &&
11146                 error "swap of directories layouts should fail"
11147         $LFS swap_layouts $dir1 $file1 &&
11148                 error "swap of directory and file layouts should fail"
11149         $RUNAS $LFS swap_layouts $file1 $file2 &&
11150                 error "swap of file we cannot write should fail"
11151         $LFS swap_layouts $file1 $file3 &&
11152                 error "swap of file with different owner should fail"
11153         /bin/true # to clear error code
11154 }
11155 run_test 184b "Forbidden layout swap (will generate errors)"
11156
11157 test_184c() {
11158         check_swap_layouts_support && return 0
11159
11160         local dir0=$DIR/$tdir/$testnum
11161         mkdir -p $dir0 || error "creating dir $dir0"
11162
11163         local ref1=$dir0/ref1
11164         local ref2=$dir0/ref2
11165         local file1=$dir0/file1
11166         local file2=$dir0/file2
11167         # create a file large enough for the concurrent test
11168         dd if=/dev/urandom of=$ref1 bs=1M count=$((RANDOM % 50 + 20))
11169         dd if=/dev/urandom of=$ref2 bs=1M count=$((RANDOM % 50 + 20))
11170         echo "ref file size: ref1($(stat -c %s $ref1))," \
11171              "ref2($(stat -c %s $ref2))"
11172
11173         cp $ref2 $file2
11174         dd if=$ref1 of=$file1 bs=16k &
11175         local DD_PID=$!
11176
11177         # Make sure dd starts to copy file
11178         while [ ! -f $file1 ]; do sleep 0.1; done
11179
11180         $LFS swap_layouts $file1 $file2
11181         local rc=$?
11182         wait $DD_PID
11183         [[ $? == 0 ]] || error "concurrent write on $file1 failed"
11184         [[ $rc == 0 ]] || error "swap of $file1 and $file2 failed"
11185
11186         # how many bytes copied before swapping layout
11187         local copied=$(stat -c %s $file2)
11188         local remaining=$(stat -c %s $ref1)
11189         remaining=$((remaining - copied))
11190         echo "Copied $copied bytes before swapping layout..."
11191
11192         cmp -n $copied $file1 $ref2 | grep differ &&
11193                 error "Content mismatch [0, $copied) of ref2 and file1"
11194         cmp -n $copied $file2 $ref1 ||
11195                 error "Content mismatch [0, $copied) of ref1 and file2"
11196         cmp -i $copied:$copied -n $remaining $file1 $ref1 ||
11197                 error "Content mismatch [$copied, EOF) of ref1 and file1"
11198
11199         # clean up
11200         rm -f $ref1 $ref2 $file1 $file2
11201 }
11202 run_test 184c "Concurrent write and layout swap"
11203
11204 test_184d() {
11205         check_swap_layouts_support && return 0
11206         [ -z "$(which getfattr 2>/dev/null)" ] &&
11207                 skip "no getfattr command" && return 0
11208
11209         local file1=$DIR/$tdir/$tfile-1
11210         local file2=$DIR/$tdir/$tfile-2
11211         local file3=$DIR/$tdir/$tfile-3
11212         local lovea1
11213         local lovea2
11214
11215         mkdir -p $DIR/$tdir
11216         touch $file1 || error "create $file1 failed"
11217         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file2 ||
11218                 error "create $file2 failed"
11219         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file3 ||
11220                 error "create $file3 failed"
11221         lovea1=$($LFS getstripe $file1 | sed 1d)
11222
11223         $LFS swap_layouts $file2 $file3 ||
11224                 error "swap $file2 $file3 layouts failed"
11225         $LFS swap_layouts $file1 $file2 ||
11226                 error "swap $file1 $file2 layouts failed"
11227
11228         lovea2=$($LFS getstripe $file2 | sed 1d)
11229         [ "$lovea1" == "$lovea2" ] || error "lovea $lovea1 != $lovea2"
11230
11231         lovea1=$(getfattr -n trusted.lov $file1 | grep ^trusted)
11232         [[ -z "$lovea1" ]] || error "$file1 shouldn't have lovea"
11233 }
11234 run_test 184d "allow stripeless layouts swap"
11235
11236 test_184e() {
11237         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.94) ]] ||
11238                 { skip "Need MDS version at least 2.6.94"; return 0; }
11239         check_swap_layouts_support && return 0
11240         [ -z "$(which getfattr 2>/dev/null)" ] &&
11241                 skip "no getfattr command" && return 0
11242
11243         local file1=$DIR/$tdir/$tfile-1
11244         local file2=$DIR/$tdir/$tfile-2
11245         local file3=$DIR/$tdir/$tfile-3
11246         local lovea
11247
11248         mkdir -p $DIR/$tdir
11249         touch $file1 || error "create $file1 failed"
11250         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file2 ||
11251                 error "create $file2 failed"
11252         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file3 ||
11253                 error "create $file3 failed"
11254
11255         $LFS swap_layouts $file1 $file2 ||
11256                 error "swap $file1 $file2 layouts failed"
11257
11258         lovea=$(getfattr -n trusted.lov $file1 | grep ^trusted)
11259         [[ -z "$lovea" ]] || error "$file1 shouldn't have lovea"
11260
11261         echo 123 > $file1 || error "Should be able to write into $file1"
11262
11263         $LFS swap_layouts $file1 $file3 ||
11264                 error "swap $file1 $file3 layouts failed"
11265
11266         echo 123 > $file1 || error "Should be able to write into $file1"
11267
11268         rm -rf $file1 $file2 $file3
11269 }
11270 run_test 184e "Recreate layout after stripeless layout swaps"
11271
11272 test_185() { # LU-2441
11273         # LU-3553 - no volatile file support in old servers
11274         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.60) ]] ||
11275                 { skip "Need MDS version at least 2.3.60"; return 0; }
11276
11277         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
11278         touch $DIR/$tdir/spoo
11279         local mtime1=$(stat -c "%Y" $DIR/$tdir)
11280         local fid=$($MULTIOP $DIR/$tdir VFw4096c) ||
11281                 error "cannot create/write a volatile file"
11282         $CHECKSTAT -t file $MOUNT/.lustre/fid/$fid 2>/dev/null &&
11283                 error "FID is still valid after close"
11284
11285         multiop_bg_pause $DIR/$tdir vVw4096_c
11286         local multi_pid=$!
11287
11288         local OLD_IFS=$IFS
11289         IFS=":"
11290         local fidv=($fid)
11291         IFS=$OLD_IFS
11292         # assume that the next FID for this client is sequential, since stdout
11293         # is unfortunately eaten by multiop_bg_pause
11294         local n=$((${fidv[1]} + 1))
11295         local next_fid="${fidv[0]}:$(printf "0x%x" $n):${fidv[2]}"
11296         $CHECKSTAT -t file $MOUNT/.lustre/fid/$next_fid ||
11297                 error "FID is missing before close"
11298         kill -USR1 $multi_pid
11299         # 1 second delay, so if mtime change we will see it
11300         sleep 1
11301         local mtime2=$(stat -c "%Y" $DIR/$tdir)
11302         [[ $mtime1 == $mtime2 ]] || error "mtime has changed"
11303 }
11304 run_test 185 "Volatile file support"
11305
11306 test_187a() {
11307         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11308         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.0) ] &&
11309                 skip "Need MDS version at least 2.3.0" && return
11310
11311         local dir0=$DIR/$tdir/$testnum
11312         mkdir -p $dir0 || error "creating dir $dir0"
11313
11314         local file=$dir0/file1
11315         dd if=/dev/urandom of=$file count=10 bs=1M conv=fsync
11316         local dv1=$($LFS data_version $file)
11317         dd if=/dev/urandom of=$file seek=10 count=1 bs=1M conv=fsync
11318         local dv2=$($LFS data_version $file)
11319         [[ $dv1 != $dv2 ]] ||
11320                 error "data version did not change on write $dv1 == $dv2"
11321
11322         # clean up
11323         rm -f $file1
11324 }
11325 run_test 187a "Test data version change"
11326
11327 test_187b() {
11328         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11329         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.0) ] &&
11330                 skip "Need MDS version at least 2.3.0" && return
11331
11332         local dir0=$DIR/$tdir/$testnum
11333         mkdir -p $dir0 || error "creating dir $dir0"
11334
11335         declare -a DV=$($MULTIOP $dir0 Vw1000xYw1000xY | cut -f3 -d" ")
11336         [[ ${DV[0]} != ${DV[1]} ]] ||
11337                 error "data version did not change on write"\
11338                       " ${DV[0]} == ${DV[1]}"
11339
11340         # clean up
11341         rm -f $file1
11342 }
11343 run_test 187b "Test data version change on volatile file"
11344
11345 test_200() {
11346         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11347         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
11348
11349         local POOL=${POOL:-cea1}
11350         local POOL_ROOT=${POOL_ROOT:-$DIR/d200.pools}
11351         local POOL_DIR_NAME=${POOL_DIR_NAME:-dir_tst}
11352         # Pool OST targets
11353         local first_ost=0
11354         local last_ost=$(($OSTCOUNT - 1))
11355         local ost_step=2
11356         local ost_list=$(seq $first_ost $ost_step $last_ost)
11357         local ost_range="$first_ost $last_ost $ost_step"
11358         local test_path=$POOL_ROOT/$POOL_DIR_NAME
11359         local file_dir=$POOL_ROOT/file_tst
11360         local subdir=$test_path/subdir
11361
11362         local rc=0
11363         while : ; do
11364                 # former test_200a test_200b
11365                 pool_add $POOL                          || { rc=$? ; break; }
11366                 pool_add_targets  $POOL $ost_range      || { rc=$? ; break; }
11367                 # former test_200c test_200d
11368                 mkdir -p $test_path
11369                 pool_set_dir      $POOL $test_path      || { rc=$? ; break; }
11370                 pool_check_dir    $POOL $test_path      || { rc=$? ; break; }
11371                 mkdir -p $subdir
11372                 pool_check_dir    $POOL $subdir         || { rc=$? ; break; }
11373                 pool_dir_rel_path $POOL $POOL_DIR_NAME $POOL_ROOT \
11374                                                         || { rc=$? ; break; }
11375                 # former test_200e test_200f
11376                 local files=$((OSTCOUNT*3))
11377                 pool_alloc_files  $POOL $test_path $files "$ost_list" \
11378                                                         || { rc=$? ; break; }
11379                 pool_create_files $POOL $file_dir $files "$ost_list" \
11380                                                         || { rc=$? ; break; }
11381                 # former test_200g test_200h
11382                 pool_lfs_df $POOL                       || { rc=$? ; break; }
11383                 pool_file_rel_path $POOL $test_path     || { rc=$? ; break; }
11384
11385                 # former test_201a test_201b test_201c
11386                 pool_remove_first_target $POOL          || { rc=$? ; break; }
11387
11388                 local f=$test_path/$tfile
11389                 pool_remove_all_targets $POOL $f        || { rc=$? ; break; }
11390                 pool_remove $POOL $f                    || { rc=$? ; break; }
11391                 break
11392         done
11393
11394         cleanup_pools
11395         return $rc
11396 }
11397 run_test 200 "OST pools"
11398
11399 # usage: default_attr <count | size | offset>
11400 default_attr() {
11401         $LCTL get_param -n lov.$FSNAME-clilov-\*.stripe${1}
11402 }
11403
11404 # usage: check_default_stripe_attr
11405 check_default_stripe_attr() {
11406         ACTUAL=$($GETSTRIPE $* $DIR/$tdir)
11407         case $1 in
11408         --stripe-count|--count)
11409                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr count);;
11410         --stripe-size|--size)
11411                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr size);;
11412         --stripe-index|--index)
11413                 EXPECTED=-1;;
11414         *)
11415                 error "unknown getstripe attr '$1'"
11416         esac
11417
11418         [ $ACTUAL != $EXPECTED ] &&
11419                 error "$DIR/$tdir has $1 '$ACTUAL', not '$EXPECTED'"
11420 }
11421
11422 test_204a() {
11423         test_mkdir -p $DIR/$tdir
11424         $SETSTRIPE --stripe-count 0 --stripe-size 0 --stripe-index -1 $DIR/$tdir
11425
11426         check_default_stripe_attr --stripe-count
11427         check_default_stripe_attr --stripe-size
11428         check_default_stripe_attr --stripe-index
11429
11430         return 0
11431 }
11432 run_test 204a "Print default stripe attributes ================="
11433
11434 test_204b() {
11435         test_mkdir -p $DIR/$tdir
11436         $SETSTRIPE --stripe-count 1 $DIR/$tdir
11437
11438         check_default_stripe_attr --stripe-size
11439         check_default_stripe_attr --stripe-index
11440
11441         return 0
11442 }
11443 run_test 204b "Print default stripe size and offset  ==========="
11444
11445 test_204c() {
11446         test_mkdir -p $DIR/$tdir
11447         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
11448
11449         check_default_stripe_attr --stripe-count
11450         check_default_stripe_attr --stripe-index
11451
11452         return 0
11453 }
11454 run_test 204c "Print default stripe count and offset ==========="
11455
11456 test_204d() {
11457         test_mkdir -p $DIR/$tdir
11458         $SETSTRIPE --stripe-index 0 $DIR/$tdir
11459
11460         check_default_stripe_attr --stripe-count
11461         check_default_stripe_attr --stripe-size
11462
11463         return 0
11464 }
11465 run_test 204d "Print default stripe count and size ============="
11466
11467 test_204e() {
11468         test_mkdir -p $DIR/$tdir
11469         $SETSTRIPE -d $DIR/$tdir
11470
11471         check_default_stripe_attr --stripe-count --raw
11472         check_default_stripe_attr --stripe-size --raw
11473         check_default_stripe_attr --stripe-index --raw
11474
11475         return 0
11476 }
11477 run_test 204e "Print raw stripe attributes ================="
11478
11479 test_204f() {
11480         test_mkdir -p $DIR/$tdir
11481         $SETSTRIPE --stripe-count 1 $DIR/$tdir
11482
11483         check_default_stripe_attr --stripe-size --raw
11484         check_default_stripe_attr --stripe-index --raw
11485
11486         return 0
11487 }
11488 run_test 204f "Print raw stripe size and offset  ==========="
11489
11490 test_204g() {
11491         test_mkdir -p $DIR/$tdir
11492         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
11493
11494         check_default_stripe_attr --stripe-count --raw
11495         check_default_stripe_attr --stripe-index --raw
11496
11497         return 0
11498 }
11499 run_test 204g "Print raw stripe count and offset ==========="
11500
11501 test_204h() {
11502         test_mkdir -p $DIR/$tdir
11503         $SETSTRIPE --stripe-index 0 $DIR/$tdir
11504
11505         check_default_stripe_attr --stripe-count --raw
11506         check_default_stripe_attr --stripe-size --raw
11507
11508         return 0
11509 }
11510 run_test 204h "Print raw stripe count and size ============="
11511
11512 # Figure out which job scheduler is being used, if any,
11513 # or use a fake one
11514 if [ -n "$SLURM_JOB_ID" ]; then # SLURM
11515         JOBENV=SLURM_JOB_ID
11516 elif [ -n "$LSB_JOBID" ]; then # Load Sharing Facility
11517         JOBENV=LSB_JOBID
11518 elif [ -n "$PBS_JOBID" ]; then # PBS/Maui/Moab
11519         JOBENV=PBS_JOBID
11520 elif [ -n "$LOADL_STEPID" ]; then # LoadLeveller
11521         JOBENV=LOADL_STEP_ID
11522 elif [ -n "$JOB_ID" ]; then # Sun Grid Engine
11523         JOBENV=JOB_ID
11524 else
11525         JOBENV=FAKE_JOBID
11526 fi
11527
11528 verify_jobstats() {
11529         local cmd=($1)
11530         shift
11531         local facets="$@"
11532
11533 # we don't really need to clear the stats for this test to work, since each
11534 # command has a unique jobid, but it makes debugging easier if needed.
11535 #       for facet in $facets; do
11536 #               local dev=$(convert_facet2label $facet)
11537 #               # clear old jobstats
11538 #               do_facet $facet lctl set_param *.$dev.job_stats="clear"
11539 #       done
11540
11541         # use a new JobID for each test, or we might see an old one
11542         [ "$JOBENV" = "FAKE_JOBID" ] &&
11543                 FAKE_JOBID=id.$testnum.$(basename ${cmd[0]}).$RANDOM
11544
11545         JOBVAL=${!JOBENV}
11546         log "Test: ${cmd[*]}"
11547         log "Using JobID environment variable $JOBENV=$JOBVAL"
11548
11549         if [ $JOBENV = "FAKE_JOBID" ]; then
11550                 FAKE_JOBID=$JOBVAL ${cmd[*]}
11551         else
11552                 ${cmd[*]}
11553         fi
11554
11555         # all files are created on OST0000
11556         for facet in $facets; do
11557                 local stats="*.$(convert_facet2label $facet).job_stats"
11558                 if [ $(do_facet $facet lctl get_param $stats |
11559                        grep -c $JOBVAL) -ne 1 ]; then
11560                         do_facet $facet lctl get_param $stats
11561                         error "No jobstats for $JOBVAL found on $facet::$stats"
11562                 fi
11563         done
11564 }
11565
11566 jobstats_set() {
11567         trap 0
11568         NEW_JOBENV=${1:-$OLD_JOBENV}
11569         do_facet mgs $LCTL conf_param $FSNAME.sys.jobid_var=$NEW_JOBENV
11570         wait_update $HOSTNAME "$LCTL get_param -n jobid_var" $NEW_JOBENV
11571 }
11572
11573 cleanup_205() {
11574         do_facet $SINGLEMDS \
11575                 $LCTL set_param mdt.*.job_cleanup_interval=$OLD_INTERVAL
11576         [ $OLD_JOBENV != $JOBENV ] && jobstats_set $OLD_JOBENV
11577         do_facet $SINGLEMDS lctl --device $MDT0 changelog_deregister $CL_USER
11578 }
11579
11580 test_205() { # Job stats
11581         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11582         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
11583         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep jobstats)" ] &&
11584                 skip "Server doesn't support jobstats" && return 0
11585         [[ $JOBID_VAR = disable ]] && skip "jobstats is disabled" && return
11586
11587         OLD_JOBENV=$($LCTL get_param -n jobid_var)
11588         if [ $OLD_JOBENV != $JOBENV ]; then
11589                 jobstats_set $JOBENV
11590                 trap cleanup_205 EXIT
11591         fi
11592
11593         CL_USER=$(do_facet $SINGLEMDS lctl --device $MDT0 changelog_register -n)
11594         echo "Registered as changelog user $CL_USER"
11595
11596         OLD_INTERVAL=$(do_facet $SINGLEMDS \
11597                        lctl get_param -n mdt.*.job_cleanup_interval)
11598         local interval_new=5
11599         do_facet $SINGLEMDS \
11600                 $LCTL set_param mdt.*.job_cleanup_interval=$interval_new
11601         local start=$SECONDS
11602
11603         local cmd
11604         # mkdir
11605         cmd="mkdir $DIR/$tdir"
11606         verify_jobstats "$cmd" "$SINGLEMDS"
11607         # rmdir
11608         cmd="rmdir $DIR/$tdir"
11609         verify_jobstats "$cmd" "$SINGLEMDS"
11610         # mkdir on secondary MDT
11611         if [ $MDSCOUNT -gt 1 ]; then
11612                 cmd="lfs mkdir -i 1 $DIR/$tdir.remote"
11613                 verify_jobstats "$cmd" "mds2"
11614         fi
11615         # mknod
11616         cmd="mknod $DIR/$tfile c 1 3"
11617         verify_jobstats "$cmd" "$SINGLEMDS"
11618         # unlink
11619         cmd="rm -f $DIR/$tfile"
11620         verify_jobstats "$cmd" "$SINGLEMDS"
11621         # create all files on OST0000 so verify_jobstats can find OST stats
11622         # open & close
11623         cmd="$SETSTRIPE -i 0 -c 1 $DIR/$tfile"
11624         verify_jobstats "$cmd" "$SINGLEMDS"
11625         # setattr
11626         cmd="touch $DIR/$tfile"
11627         verify_jobstats "$cmd" "$SINGLEMDS ost1"
11628         # write
11629         cmd="dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 oflag=sync"
11630         verify_jobstats "$cmd" "ost1"
11631         # read
11632         cmd="dd if=$DIR/$tfile of=/dev/null bs=1M count=1 iflag=direct"
11633         verify_jobstats "$cmd" "ost1"
11634         # truncate
11635         cmd="$TRUNCATE $DIR/$tfile 0"
11636         verify_jobstats "$cmd" "$SINGLEMDS ost1"
11637         # rename
11638         cmd="mv -f $DIR/$tfile $DIR/$tdir.rename"
11639         verify_jobstats "$cmd" "$SINGLEMDS"
11640         # jobstats expiry - sleep until old stats should be expired
11641         local left=$((interval_new - (SECONDS - start)))
11642         [ $left -ge 0 ] && echo "sleep $left for expiry" && sleep $((left + 1))
11643         cmd="mkdir $DIR/$tdir.expire"
11644         verify_jobstats "$cmd" "$SINGLEMDS"
11645         [ $(do_facet $SINGLEMDS lctl get_param *.*.job_stats |
11646             grep -c "job_id.*mkdir") -gt 1 ] && error "old jobstats not expired"
11647
11648         # Ensure that jobid are present in changelog (if supported by MDS)
11649         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.52) ]
11650         then
11651                 $LFS changelog $MDT0 | tail -9
11652                 jobids=$($LFS changelog $MDT0 | tail -9 | grep -c "j=")
11653                 [ $jobids -eq 9 ] ||
11654                         error "Wrong changelog jobid count $jobids != 9"
11655
11656                 # LU-5862
11657                 JOBENV="disable"
11658                 jobstats_set $JOBENV
11659                 touch $DIR/$tfile
11660                 $LFS changelog $MDT0 | tail -1
11661                 jobids=$($LFS changelog $MDT0 | tail -1 | grep -c "j=")
11662                 [ $jobids -eq 0 ] ||
11663                         error "Unexpected jobids when jobid_var=$JOBENV"
11664         fi
11665
11666         cleanup_205
11667 }
11668 run_test 205 "Verify job stats"
11669
11670 # LU-1480, LU-1773 and LU-1657
11671 test_206() {
11672         mkdir -p $DIR/$tdir
11673         $SETSTRIPE -c -1 $DIR/$tdir
11674 #define OBD_FAIL_LOV_INIT 0x1403
11675         $LCTL set_param fail_loc=0xa0001403
11676         $LCTL set_param fail_val=1
11677         touch $DIR/$tdir/$tfile || true
11678 }
11679 run_test 206 "fail lov_init_raid0() doesn't lbug"
11680
11681 test_207a() {
11682         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
11683         local fsz=`stat -c %s $DIR/$tfile`
11684         cancel_lru_locks mdc
11685
11686         # do not return layout in getattr intent
11687 #define OBD_FAIL_MDS_NO_LL_GETATTR 0x170
11688         $LCTL set_param fail_loc=0x170
11689         local sz=`stat -c %s $DIR/$tfile`
11690
11691         [ $fsz -eq $sz ] || error "file size expected $fsz, actual $sz"
11692
11693         rm -rf $DIR/$tfile
11694 }
11695 run_test 207a "can refresh layout at glimpse"
11696
11697 test_207b() {
11698         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
11699         local cksum=`md5sum $DIR/$tfile`
11700         local fsz=`stat -c %s $DIR/$tfile`
11701         cancel_lru_locks mdc
11702         cancel_lru_locks osc
11703
11704         # do not return layout in getattr intent
11705 #define OBD_FAIL_MDS_NO_LL_OPEN 0x171
11706         $LCTL set_param fail_loc=0x171
11707
11708         # it will refresh layout after the file is opened but before read issues
11709         echo checksum is "$cksum"
11710         echo "$cksum" |md5sum -c --quiet || error "file differs"
11711
11712         rm -rf $DIR/$tfile
11713 }
11714 run_test 207b "can refresh layout at open"
11715
11716 test_208() {
11717         # FIXME: in this test suite, only RD lease is used. This is okay
11718         # for now as only exclusive open is supported. After generic lease
11719         # is done, this test suite should be revised. - Jinshan
11720
11721         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.4.52) ]] ||
11722                 { skip "Need MDS version at least 2.4.52"; return 0; }
11723         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11724
11725         echo "==== test 1: verify get lease work"
11726         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:eRE+eU || error "get lease error"
11727
11728         echo "==== test 2: verify lease can be broken by upcoming open"
11729         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
11730         local PID=$!
11731         sleep 1
11732
11733         $MULTIOP $DIR/$tfile oO_RDONLY:c
11734         kill -USR1 $PID && wait $PID || error "break lease error"
11735
11736         echo "==== test 3: verify lease can't be granted if an open already exists"
11737         $MULTIOP $DIR/$tfile oO_RDONLY:_c &
11738         local PID=$!
11739         sleep 1
11740
11741         $MULTIOP $DIR/$tfile oO_RDONLY:eReUc && error "apply lease should fail"
11742         kill -USR1 $PID && wait $PID || error "open file error"
11743
11744         echo "==== test 4: lease can sustain over recovery"
11745         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E+eUc &
11746         PID=$!
11747         sleep 1
11748
11749         fail mds1
11750
11751         kill -USR1 $PID && wait $PID || error "lease broken over recovery"
11752
11753         echo "==== test 5: lease broken can't be regained by replay"
11754         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
11755         PID=$!
11756         sleep 1
11757
11758         # open file to break lease and then recovery
11759         $MULTIOP $DIR/$tfile oO_RDWR:c || error "open file error"
11760         fail mds1
11761
11762         kill -USR1 $PID && wait $PID || error "lease not broken over recovery"
11763
11764         rm -f $DIR/$tfile
11765 }
11766 run_test 208 "Exclusive open"
11767
11768 test_209() {
11769         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep disp_stripe)" ] &&
11770                 skip_env "must have disp_stripe" && return
11771
11772         touch $DIR/$tfile
11773         sync; sleep 5; sync;
11774
11775         echo 3 > /proc/sys/vm/drop_caches
11776         req_before=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
11777
11778         # open/close 500 times
11779         for i in $(seq 500); do
11780                 cat $DIR/$tfile
11781         done
11782
11783         echo 3 > /proc/sys/vm/drop_caches
11784         req_after=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
11785
11786         echo "before: $req_before, after: $req_after"
11787         [ $((req_after - req_before)) -ge 300 ] &&
11788                 error "open/close requests are not freed"
11789         return 0
11790 }
11791 run_test 209 "read-only open/close requests should be freed promptly"
11792
11793 test_212() {
11794         size=`date +%s`
11795         size=$((size % 8192 + 1))
11796         dd if=/dev/urandom of=$DIR/f212 bs=1k count=$size
11797         sendfile $DIR/f212 $DIR/f212.xyz || error "sendfile wrong"
11798         rm -f $DIR/f212 $DIR/f212.xyz
11799 }
11800 run_test 212 "Sendfile test ============================================"
11801
11802 test_213() {
11803         dd if=/dev/zero of=$DIR/$tfile bs=4k count=4
11804         cancel_lru_locks osc
11805         lctl set_param fail_loc=0x8000040f
11806         # generate a read lock
11807         cat $DIR/$tfile > /dev/null
11808         # write to the file, it will try to cancel the above read lock.
11809         cat /etc/hosts >> $DIR/$tfile
11810 }
11811 run_test 213 "OSC lock completion and cancel race don't crash - bug 18829"
11812
11813 test_214() { # for bug 20133
11814         mkdir -p $DIR/$tdir/d214c || error "mkdir $DIR/$tdir/d214c failed"
11815         for (( i=0; i < 340; i++ )) ; do
11816                 touch $DIR/$tdir/d214c/a$i
11817         done
11818
11819         ls -l $DIR/$tdir || error "ls -l $DIR/d214p failed"
11820         mv $DIR/$tdir/d214c $DIR/ || error "mv $DIR/d214p/d214c $DIR/ failed"
11821         ls $DIR/d214c || error "ls $DIR/d214c failed"
11822         rm -rf $DIR/$tdir || error "rm -rf $DIR/d214* failed"
11823         rm -rf $DIR/d214* || error "rm -rf $DIR/d214* failed"
11824 }
11825 run_test 214 "hash-indexed directory test - bug 20133"
11826
11827 # having "abc" as 1st arg, creates $TMP/lnet_abc.out and $TMP/lnet_abc.sys
11828 create_lnet_proc_files() {
11829         lctl get_param -n $1 >$TMP/lnet_$1.out || error "cannot read lnet.$1"
11830         sysctl lnet.$1 >$TMP/lnet_$1.sys_tmp || error "cannot read lnet.$1"
11831
11832         sed "s/^lnet.$1\ =\ //g" "$TMP/lnet_$1.sys_tmp" >$TMP/lnet_$1.sys
11833         rm -f "$TMP/lnet_$1.sys_tmp"
11834 }
11835
11836 # counterpart of create_lnet_proc_files
11837 remove_lnet_proc_files() {
11838         rm -f $TMP/lnet_$1.out $TMP/lnet_$1.sys
11839 }
11840
11841 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
11842 # 3rd arg as regexp for body
11843 check_lnet_proc_stats() {
11844         local l=$(cat "$TMP/lnet_$1" |wc -l)
11845         [ $l = 1 ] || (cat "$TMP/lnet_$1" && error "$2 is not of 1 line: $l")
11846
11847         grep -E "$3" "$TMP/lnet_$1" || (cat "$TMP/lnet_$1" && error "$2 misformatted")
11848 }
11849
11850 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
11851 # 3rd arg as regexp for body, 4th arg as regexp for 1st line, 5th arg is
11852 # optional and can be regexp for 2nd line (lnet.routes case)
11853 check_lnet_proc_entry() {
11854         local blp=2          # blp stands for 'position of 1st line of body'
11855         [ -z "$5" ] || blp=3 # lnet.routes case
11856
11857         local l=$(cat "$TMP/lnet_$1" |wc -l)
11858         # subtracting one from $blp because the body can be empty
11859         [ "$l" -ge "$(($blp - 1))" ] || (cat "$TMP/lnet_$1" && error "$2 is too short: $l")
11860
11861         sed -n '1 p' "$TMP/lnet_$1" |grep -E "$4" >/dev/null ||
11862                 (cat "$TMP/lnet_$1" && error "1st line of $2 misformatted")
11863
11864         [ "$5" = "" ] || sed -n '2 p' "$TMP/lnet_$1" |grep -E "$5" >/dev/null ||
11865                 (cat "$TMP/lnet_$1" && error "2nd line of $2 misformatted")
11866
11867         # bail out if any unexpected line happened
11868         sed -n "$blp p" "$TMP/lnet_$1" | grep -Ev "$3"
11869         [ "$?" != 0 ] || error "$2 misformatted"
11870 }
11871
11872 test_215() { # for bugs 18102, 21079, 21517
11873         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11874         local N='(0|[1-9][0-9]*)'       # non-negative numeric
11875         local P='[1-9][0-9]*'           # positive numeric
11876         local I='(0|-?[1-9][0-9]*|NA)'  # any numeric (0 | >0 | <0) or NA if no value
11877         local NET='[a-z][a-z0-9]*'      # LNET net like o2ib2
11878         local ADDR='[0-9.]+'            # LNET addr like 10.0.0.1
11879         local NID="$ADDR@$NET"          # LNET nid like 10.0.0.1@o2ib2
11880
11881         local L1 # regexp for 1st line
11882         local L2 # regexp for 2nd line (optional)
11883         local BR # regexp for the rest (body)
11884
11885         # lnet.stats should look as 11 space-separated non-negative numerics
11886         BR="^$N $N $N $N $N $N $N $N $N $N $N$"
11887         create_lnet_proc_files "stats"
11888         check_lnet_proc_stats "stats.sys" "lnet.stats" "$BR"
11889         remove_lnet_proc_files "stats"
11890
11891         # lnet.routes should look like this:
11892         # Routing disabled/enabled
11893         # net hops priority state router
11894         # where net is a string like tcp0, hops > 0, priority >= 0,
11895         # state is up/down,
11896         # router is a string like 192.168.1.1@tcp2
11897         L1="^Routing (disabled|enabled)$"
11898         L2="^net +hops +priority +state +router$"
11899         BR="^$NET +$N +(0|1) +(up|down) +$NID$"
11900         create_lnet_proc_files "routes"
11901         check_lnet_proc_entry "routes.sys" "lnet.routes" "$BR" "$L1" "$L2"
11902         remove_lnet_proc_files "routes"
11903
11904         # lnet.routers should look like this:
11905         # ref rtr_ref alive_cnt state last_ping ping_sent deadline down_ni router
11906         # where ref > 0, rtr_ref > 0, alive_cnt >= 0, state is up/down,
11907         # last_ping >= 0, ping_sent is boolean (0/1), deadline and down_ni are
11908         # numeric (0 or >0 or <0), router is a string like 192.168.1.1@tcp2
11909         L1="^ref +rtr_ref +alive_cnt +state +last_ping +ping_sent +deadline +down_ni +router$"
11910         BR="^$P +$P +$N +(up|down) +$N +(0|1) +$I +$I +$NID$"
11911         create_lnet_proc_files "routers"
11912         check_lnet_proc_entry "routers.sys" "lnet.routers" "$BR" "$L1"
11913         remove_lnet_proc_files "routers"
11914
11915         # lnet.peers should look like this:
11916         # nid refs state last max rtr min tx min queue
11917         # where nid is a string like 192.168.1.1@tcp2, refs > 0,
11918         # state is up/down/NA, max >= 0. last, rtr, min, tx, min are
11919         # numeric (0 or >0 or <0), queue >= 0.
11920         L1="^nid +refs +state +last +max +rtr +min +tx +min +queue$"
11921         BR="^$NID +$P +(up|down|NA) +$I +$N +$I +$I +$I +$I +$N$"
11922         create_lnet_proc_files "peers"
11923         check_lnet_proc_entry "peers.sys" "lnet.peers" "$BR" "$L1"
11924         remove_lnet_proc_files "peers"
11925
11926         # lnet.buffers  should look like this:
11927         # pages count credits min
11928         # where pages >=0, count >=0, credits and min are numeric (0 or >0 or <0)
11929         L1="^pages +count +credits +min$"
11930         BR="^ +$N +$N +$I +$I$"
11931         create_lnet_proc_files "buffers"
11932         check_lnet_proc_entry "buffers.sys" "lnet.buffers" "$BR" "$L1"
11933         remove_lnet_proc_files "buffers"
11934
11935         # lnet.nis should look like this:
11936         # nid status alive refs peer rtr max tx min
11937         # where nid is a string like 192.168.1.1@tcp2, status is up/down,
11938         # alive is numeric (0 or >0 or <0), refs >= 0, peer >= 0,
11939         # rtr >= 0, max >=0, tx and min are numeric (0 or >0 or <0).
11940         L1="^nid +status +alive +refs +peer +rtr +max +tx +min$"
11941         BR="^$NID +(up|down) +$I +$N +$N +$N +$N +$I +$I$"
11942         create_lnet_proc_files "nis"
11943         check_lnet_proc_entry "nis.sys" "lnet.nis" "$BR" "$L1"
11944         remove_lnet_proc_files "nis"
11945
11946         # can we successfully write to lnet.stats?
11947         lctl set_param -n stats=0 || error "cannot write to lnet.stats"
11948         sysctl -w lnet.stats=0 || error "cannot write to lnet.stats"
11949 }
11950 run_test 215 "lnet exists and has proper content - bugs 18102, 21079, 21517"
11951
11952 test_216() { # bug 20317
11953         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11954         remote_ost_nodsh && skip "remote OST with nodsh" && return
11955
11956         local node
11957         local facets=$(get_facets OST)
11958         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11959
11960         save_lustre_params client "osc.*.contention_seconds" > $p
11961         save_lustre_params $facets \
11962                 "ldlm.namespaces.filter-*.max_nolock_bytes" >> $p
11963         save_lustre_params $facets \
11964                 "ldlm.namespaces.filter-*.contended_locks" >> $p
11965         save_lustre_params $facets \
11966                 "ldlm.namespaces.filter-*.contention_seconds" >> $p
11967         clear_osc_stats
11968
11969         # agressive lockless i/o settings
11970         for node in $(osts_nodes); do
11971                 do_node $node 'lctl set_param -n ldlm.namespaces.filter-*.max_nolock_bytes 2000000; lctl set_param -n ldlm.namespaces.filter-*.contended_locks 0; lctl set_param -n ldlm.namespaces.filter-*.contention_seconds 60'
11972         done
11973         lctl set_param -n osc.*.contention_seconds 60
11974
11975         $DIRECTIO write $DIR/$tfile 0 10 4096
11976         $CHECKSTAT -s 40960 $DIR/$tfile
11977
11978         # disable lockless i/o
11979         for node in $(osts_nodes); do
11980                 do_node $node 'lctl set_param -n ldlm.namespaces.filter-*.max_nolock_bytes 0; lctl set_param -n ldlm.namespaces.filter-*.contended_locks 32; lctl set_param -n ldlm.namespaces.filter-*.contention_seconds 0'
11981         done
11982         lctl set_param -n osc.*.contention_seconds 0
11983         clear_osc_stats
11984
11985         dd if=/dev/zero of=$DIR/$tfile count=0
11986         $CHECKSTAT -s 0 $DIR/$tfile
11987
11988         restore_lustre_params <$p
11989         rm -f $p
11990         rm $DIR/$tfile
11991 }
11992 run_test 216 "check lockless direct write works and updates file size and kms correctly"
11993
11994 test_217() { # bug 22430
11995         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11996         local node
11997         local nid
11998
11999         for node in $(nodes_list); do
12000                 nid=$(host_nids_address $node $NETTYPE)
12001                 if [[ $nid = *-* ]] ; then
12002                         echo "lctl ping $nid@$NETTYPE"
12003                         lctl ping $nid@$NETTYPE
12004                 else
12005                         echo "skipping $node (no hyphen detected)"
12006                 fi
12007         done
12008 }
12009 run_test 217 "check lctl ping for hostnames with hiphen ('-')"
12010
12011 test_218() {
12012        # do directio so as not to populate the page cache
12013        log "creating a 10 Mb file"
12014        $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
12015        log "starting reads"
12016        dd if=$DIR/$tfile of=/dev/null bs=4096 &
12017        log "truncating the file"
12018        $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
12019        log "killing dd"
12020        kill %+ || true # reads might have finished
12021        echo "wait until dd is finished"
12022        wait
12023        log "removing the temporary file"
12024        rm -rf $DIR/$tfile || error "tmp file removal failed"
12025 }
12026 run_test 218 "parallel read and truncate should not deadlock ======================="
12027
12028 test_219() {
12029         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12030         # write one partial page
12031         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1
12032         # set no grant so vvp_io_commit_write will do sync write
12033         $LCTL set_param fail_loc=0x411
12034         # write a full page at the end of file
12035         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=1 conv=notrunc
12036
12037         $LCTL set_param fail_loc=0
12038         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=3
12039         $LCTL set_param fail_loc=0x411
12040         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1 seek=2 conv=notrunc
12041
12042         # LU-4201
12043         dd if=/dev/zero of=$DIR/$tfile-2 bs=1024 count=1
12044         $CHECKSTAT -s 1024 $DIR/$tfile-2 || error "checkstat wrong size"
12045 }
12046 run_test 219 "LU-394: Write partial won't cause uncontiguous pages vec at LND"
12047
12048 test_220() { #LU-325
12049         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12050         remote_ost_nodsh && skip "remote OST with nodsh" && return
12051         local OSTIDX=0
12052
12053         test_mkdir -p $DIR/$tdir
12054         local OST=$($LFS osts | grep ${OSTIDX}": " | \
12055                 awk '{print $2}' | sed -e 's/_UUID$//')
12056
12057         # on the mdt's osc
12058         local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $OST)
12059         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
12060                         osc.$mdtosc_proc1.prealloc_last_id)
12061         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
12062                         osc.$mdtosc_proc1.prealloc_next_id)
12063
12064         $LFS df -i
12065
12066         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=-1
12067         #define OBD_FAIL_OST_ENOINO              0x229
12068         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0x229
12069         do_facet mgs $LCTL pool_new $FSNAME.$TESTNAME || return 1
12070         do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $OST || return 2
12071
12072         $SETSTRIPE $DIR/$tdir -i $OSTIDX -c 1 -p $FSNAME.$TESTNAME
12073
12074         MDSOBJS=$((last_id - next_id))
12075         echo "preallocated objects on MDS is $MDSOBJS" "($last_id - $next_id)"
12076
12077         blocks=$($LFS df $MOUNT | awk '($1 == '$OSTIDX') { print $4 }')
12078         echo "OST still has $count kbytes free"
12079
12080         echo "create $MDSOBJS files @next_id..."
12081         createmany -o $DIR/$tdir/f $MDSOBJS || return 3
12082
12083         local last_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
12084                         osc.$mdtosc_proc1.prealloc_last_id)
12085         local next_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
12086                         osc.$mdtosc_proc1.prealloc_next_id)
12087
12088         echo "after creation, last_id=$last_id2, next_id=$next_id2"
12089         $LFS df -i
12090
12091         echo "cleanup..."
12092
12093         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=0
12094         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0
12095
12096         do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $OST || return 4
12097         do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME || return 5
12098         echo "unlink $MDSOBJS files @$next_id..."
12099         unlinkmany $DIR/$tdir/f $MDSOBJS || return 6
12100 }
12101 run_test 220 "preallocated MDS objects still used if ENOSPC from OST"
12102
12103 test_221() {
12104         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12105         dd if=`which date` of=$MOUNT/date oflag=sync
12106         chmod +x $MOUNT/date
12107
12108         #define OBD_FAIL_LLITE_FAULT_TRUNC_RACE  0x1401
12109         $LCTL set_param fail_loc=0x80001401
12110
12111         $MOUNT/date > /dev/null
12112         rm -f $MOUNT/date
12113 }
12114 run_test 221 "make sure fault and truncate race to not cause OOM"
12115
12116 test_222a () {
12117         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12118        rm -rf $DIR/$tdir
12119        test_mkdir -p $DIR/$tdir
12120        $SETSTRIPE -c 1 -i 0 $DIR/$tdir
12121        createmany -o $DIR/$tdir/$tfile 10
12122        cancel_lru_locks mdc
12123        cancel_lru_locks osc
12124        #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
12125        $LCTL set_param fail_loc=0x31a
12126        ls -l $DIR/$tdir > /dev/null || error "AGL for ls failed"
12127        $LCTL set_param fail_loc=0
12128        rm -r $DIR/$tdir
12129 }
12130 run_test 222a "AGL for ls should not trigger CLIO lock failure ================"
12131
12132 test_222b () {
12133         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12134        rm -rf $DIR/$tdir
12135        test_mkdir -p $DIR/$tdir
12136        $SETSTRIPE -c 1 -i 0 $DIR/$tdir
12137        createmany -o $DIR/$tdir/$tfile 10
12138        cancel_lru_locks mdc
12139        cancel_lru_locks osc
12140        #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
12141        $LCTL set_param fail_loc=0x31a
12142        rm -r $DIR/$tdir || "AGL for rmdir failed"
12143        $LCTL set_param fail_loc=0
12144 }
12145 run_test 222b "AGL for rmdir should not trigger CLIO lock failure ============="
12146
12147 test_223 () {
12148         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12149        rm -rf $DIR/$tdir
12150        test_mkdir -p $DIR/$tdir
12151        $SETSTRIPE -c 1 -i 0 $DIR/$tdir
12152        createmany -o $DIR/$tdir/$tfile 10
12153        cancel_lru_locks mdc
12154        cancel_lru_locks osc
12155        #define OBD_FAIL_LDLM_AGL_NOLOCK          0x31b
12156        $LCTL set_param fail_loc=0x31b
12157        ls -l $DIR/$tdir > /dev/null || error "reenqueue failed"
12158        $LCTL set_param fail_loc=0
12159        rm -r $DIR/$tdir
12160 }
12161 run_test 223 "osc reenqueue if without AGL lock granted ======================="
12162
12163 test_224a() { # LU-1039, MRP-303
12164         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12165         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB   0x508
12166         $LCTL set_param fail_loc=0x508
12167         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 conv=fsync
12168         $LCTL set_param fail_loc=0
12169         df $DIR
12170 }
12171 run_test 224a "Don't panic on bulk IO failure"
12172
12173 test_224b() { # LU-1039, MRP-303
12174         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12175         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
12176         cancel_lru_locks osc
12177         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB2   0x515
12178         $LCTL set_param fail_loc=0x515
12179         dd of=/dev/null if=$DIR/$tfile bs=4096 count=1
12180         $LCTL set_param fail_loc=0
12181         df $DIR
12182 }
12183 run_test 224b "Don't panic on bulk IO failure"
12184
12185 test_224c() { # LU-6441
12186         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12187         local pages_per_rpc=$($LCTL get_param \
12188                                 osc.*.max_pages_per_rpc)
12189         local at_max=$($LCTL get_param -n at_max)
12190         local timeout=$($LCTL get_param -n timeout)
12191         local test_at="$LCTL get_param -n at_max"
12192         local param_at="$FSNAME.sys.at_max"
12193         local test_timeout="$LCTL get_param -n timeout"
12194         local param_timeout="$FSNAME.sys.timeout"
12195
12196         $LCTL set_param -n osc.*.max_pages_per_rpc=1024
12197
12198         set_conf_param_and_check client "$test_at" "$param_at" 0 ||
12199                 error "conf_param at_max=0 failed"
12200         set_conf_param_and_check client "$test_timeout" "$param_timeout" 5 ||
12201                 error "conf_param timeout=5 failed"
12202
12203         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB3   0x520
12204         $LCTL set_param fail_loc=0x520
12205         dd if=/dev/zero of=$DIR/$tfile bs=8MB count=1
12206         sync
12207         $LCTL set_param fail_loc=0
12208
12209         set_conf_param_and_check client "$test_at" "$param_at" $at_max ||
12210                 error "conf_param at_max=$at_max failed"
12211         set_conf_param_and_check client "$test_timeout" "$param_timeout" \
12212                 $timeout || error "conf_param timeout=$timeout failed"
12213
12214         $LCTL set_param -n $pages_per_rpc
12215 }
12216 run_test 224c "Don't hang if one of md lost during large bulk RPC"
12217
12218 MDSSURVEY=${MDSSURVEY:-$(which mds-survey 2>/dev/null || true)}
12219 test_225a () {
12220         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12221         if [ -z ${MDSSURVEY} ]; then
12222               skip_env "mds-survey not found" && return
12223         fi
12224
12225         [ $MDSCOUNT -ge 2 ] &&
12226                 skip "skipping now for more than one MDT" && return
12227
12228        [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
12229             { skip "Need MDS version at least 2.2.51"; return; }
12230
12231        local mds=$(facet_host $SINGLEMDS)
12232        local target=$(do_nodes $mds 'lctl dl' | \
12233                       awk "{if (\$2 == \"UP\" && \$3 == \"mdt\") {print \$4}}")
12234
12235        local cmd1="file_count=1000 thrhi=4"
12236        local cmd2="dir_count=2 layer=mdd stripe_count=0"
12237        local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
12238        local cmd="$cmd1 $cmd2 $cmd3"
12239
12240        rm -f ${TMP}/mds_survey*
12241        echo + $cmd
12242        eval $cmd || error "mds-survey with zero-stripe failed"
12243        cat ${TMP}/mds_survey*
12244        rm -f ${TMP}/mds_survey*
12245 }
12246 run_test 225a "Metadata survey sanity with zero-stripe"
12247
12248 test_225b () {
12249         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12250
12251         if [ -z ${MDSSURVEY} ]; then
12252               skip_env "mds-survey not found" && return
12253         fi
12254         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
12255             { skip "Need MDS version at least 2.2.51"; return; }
12256
12257         if [ $($LCTL dl | grep -c osc) -eq 0 ]; then
12258               skip_env "Need to mount OST to test" && return
12259         fi
12260
12261         [ $MDSCOUNT -ge 2 ] &&
12262                 skip "skipping now for more than one MDT" && return
12263        local mds=$(facet_host $SINGLEMDS)
12264        local target=$(do_nodes $mds 'lctl dl' | \
12265                       awk "{if (\$2 == \"UP\" && \$3 == \"mdt\") {print \$4}}")
12266
12267        local cmd1="file_count=1000 thrhi=4"
12268        local cmd2="dir_count=2 layer=mdd stripe_count=1"
12269        local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
12270        local cmd="$cmd1 $cmd2 $cmd3"
12271
12272        rm -f ${TMP}/mds_survey*
12273        echo + $cmd
12274        eval $cmd || error "mds-survey with stripe_count failed"
12275        cat ${TMP}/mds_survey*
12276        rm -f ${TMP}/mds_survey*
12277 }
12278 run_test 225b "Metadata survey sanity with stripe_count = 1"
12279
12280 mcreate_path2fid () {
12281         local mode=$1
12282         local major=$2
12283         local minor=$3
12284         local name=$4
12285         local desc=$5
12286         local path=$DIR/$tdir/$name
12287         local fid
12288         local rc
12289         local fid_path
12290
12291         $MCREATE --mode=$1 --major=$2 --minor=$3 $path ||
12292                 error "cannot create $desc"
12293
12294         fid=$($LFS path2fid $path | tr -d '[' | tr -d ']')
12295         rc=$?
12296         [ $rc -ne 0 ] && error "cannot get fid of a $desc"
12297
12298         fid_path=$($LFS fid2path $MOUNT $fid)
12299         rc=$?
12300         [ $rc -ne 0 ] && error "cannot get path of $desc by $DIR $path $fid"
12301
12302         [ "$path" == "$fid_path" ] ||
12303                 error "fid2path returned $fid_path, expected $path"
12304
12305         echo "pass with $path and $fid"
12306 }
12307
12308 test_226a () {
12309         rm -rf $DIR/$tdir
12310         mkdir -p $DIR/$tdir
12311
12312         mcreate_path2fid 0010666 0 0 fifo "FIFO"
12313         mcreate_path2fid 0020666 1 3 null "character special file (null)"
12314         mcreate_path2fid 0020666 1 255 none "character special file (no device)"
12315         mcreate_path2fid 0040666 0 0 dir "directory"
12316         mcreate_path2fid 0060666 7 0 loop0 "block special file (loop)"
12317         mcreate_path2fid 0100666 0 0 file "regular file"
12318         mcreate_path2fid 0120666 0 0 link "symbolic link"
12319         mcreate_path2fid 0140666 0 0 sock "socket"
12320 }
12321 run_test 226a "call path2fid and fid2path on files of all type"
12322
12323 test_226b () {
12324         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
12325         rm -rf $DIR/$tdir
12326         local MDTIDX=1
12327
12328         mkdir -p $DIR/$tdir
12329         $LFS setdirstripe -i $MDTIDX $DIR/$tdir/remote_dir ||
12330                 error "create remote directory failed"
12331         mcreate_path2fid 0010666 0 0 "remote_dir/fifo" "FIFO"
12332         mcreate_path2fid 0020666 1 3 "remote_dir/null" \
12333                                 "character special file (null)"
12334         mcreate_path2fid 0020666 1 255 "remote_dir/none" \
12335                                 "character special file (no device)"
12336         mcreate_path2fid 0040666 0 0 "remote_dir/dir" "directory"
12337         mcreate_path2fid 0060666 7 0 "remote_dir/loop0" \
12338                                 "block special file (loop)"
12339         mcreate_path2fid 0100666 0 0 "remote_dir/file" "regular file"
12340         mcreate_path2fid 0120666 0 0 "remote_dir/link" "symbolic link"
12341         mcreate_path2fid 0140666 0 0 "remote_dir/sock" "socket"
12342 }
12343 run_test 226b "call path2fid and fid2path on files of all type under remote dir"
12344
12345 # LU-1299 Executing or running ldd on a truncated executable does not
12346 # cause an out-of-memory condition.
12347 test_227() {
12348         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12349         [ -z "$(which ldd)" ] && skip "should have ldd tool" && return
12350         dd if=$(which date) of=$MOUNT/date bs=1k count=1
12351         chmod +x $MOUNT/date
12352
12353         $MOUNT/date > /dev/null
12354         ldd $MOUNT/date > /dev/null
12355         rm -f $MOUNT/date
12356 }
12357 run_test 227 "running truncated executable does not cause OOM"
12358
12359 # LU-1512 try to reuse idle OI blocks
12360 test_228a() {
12361         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12362         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12363         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
12364                 skip "non-ldiskfs backend" && return
12365
12366         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
12367         local myDIR=$DIR/$tdir
12368
12369         mkdir -p $myDIR
12370         #define OBD_FAIL_SEQ_EXHAUST             0x1002
12371         $LCTL set_param fail_loc=0x80001002
12372         createmany -o $myDIR/t- 10000
12373         $LCTL set_param fail_loc=0
12374         # The guard is current the largest FID holder
12375         touch $myDIR/guard
12376         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
12377                     tr -d '[')
12378         local IDX=$(($SEQ % 64))
12379
12380         do_facet $SINGLEMDS sync
12381         # Make sure journal flushed.
12382         sleep 6
12383         local blk1=$(do_facet $SINGLEMDS \
12384                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
12385                      grep Blockcount | awk '{print $4}')
12386
12387         # Remove old files, some OI blocks will become idle.
12388         unlinkmany $myDIR/t- 10000
12389         # Create new files, idle OI blocks should be reused.
12390         createmany -o $myDIR/t- 2000
12391         do_facet $SINGLEMDS sync
12392         # Make sure journal flushed.
12393         sleep 6
12394         local blk2=$(do_facet $SINGLEMDS \
12395                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
12396                      grep Blockcount | awk '{print $4}')
12397
12398         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
12399 }
12400 run_test 228a "try to reuse idle OI blocks"
12401
12402 test_228b() {
12403         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12404         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12405         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
12406                 skip "non-ldiskfs backend" && return
12407
12408         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
12409         local myDIR=$DIR/$tdir
12410
12411         mkdir -p $myDIR
12412         #define OBD_FAIL_SEQ_EXHAUST             0x1002
12413         $LCTL set_param fail_loc=0x80001002
12414         createmany -o $myDIR/t- 10000
12415         $LCTL set_param fail_loc=0
12416         # The guard is current the largest FID holder
12417         touch $myDIR/guard
12418         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
12419                     tr -d '[')
12420         local IDX=$(($SEQ % 64))
12421
12422         do_facet $SINGLEMDS sync
12423         # Make sure journal flushed.
12424         sleep 6
12425         local blk1=$(do_facet $SINGLEMDS \
12426                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
12427                      grep Blockcount | awk '{print $4}')
12428
12429         # Remove old files, some OI blocks will become idle.
12430         unlinkmany $myDIR/t- 10000
12431
12432         # stop the MDT
12433         stop $SINGLEMDS || error "Fail to stop MDT."
12434         # remount the MDT
12435         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
12436
12437         df $MOUNT || error "Fail to df."
12438         # Create new files, idle OI blocks should be reused.
12439         createmany -o $myDIR/t- 2000
12440         do_facet $SINGLEMDS sync
12441         # Make sure journal flushed.
12442         sleep 6
12443         local blk2=$(do_facet $SINGLEMDS \
12444                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
12445                      grep Blockcount | awk '{print $4}')
12446
12447         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
12448 }
12449 run_test 228b "idle OI blocks can be reused after MDT restart"
12450
12451 #LU-1881
12452 test_228c() {
12453         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12454         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12455         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
12456                 skip "non-ldiskfs backend" && return
12457
12458         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
12459         local myDIR=$DIR/$tdir
12460
12461         mkdir -p $myDIR
12462         #define OBD_FAIL_SEQ_EXHAUST             0x1002
12463         $LCTL set_param fail_loc=0x80001002
12464         # 20000 files can guarantee there are index nodes in the OI file
12465         createmany -o $myDIR/t- 20000
12466         $LCTL set_param fail_loc=0
12467         # The guard is current the largest FID holder
12468         touch $myDIR/guard
12469         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
12470                     tr -d '[')
12471         local IDX=$(($SEQ % 64))
12472
12473         do_facet $SINGLEMDS sync
12474         # Make sure journal flushed.
12475         sleep 6
12476         local blk1=$(do_facet $SINGLEMDS \
12477                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
12478                      grep Blockcount | awk '{print $4}')
12479
12480         # Remove old files, some OI blocks will become idle.
12481         unlinkmany $myDIR/t- 20000
12482         rm -f $myDIR/guard
12483         # The OI file should become empty now
12484
12485         # Create new files, idle OI blocks should be reused.
12486         createmany -o $myDIR/t- 2000
12487         do_facet $SINGLEMDS sync
12488         # Make sure journal flushed.
12489         sleep 6
12490         local blk2=$(do_facet $SINGLEMDS \
12491                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
12492                      grep Blockcount | awk '{print $4}')
12493
12494         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
12495 }
12496 run_test 228c "NOT shrink the last entry in OI index node to recycle idle leaf"
12497
12498 test_229() { # LU-2482, LU-3448
12499         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.53) ] &&
12500                 skip "No HSM $(lustre_build_version $SINGLEMDS) MDS < 2.4.53" &&
12501                 return
12502         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12503         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
12504
12505         rm -f $DIR/$tfile
12506
12507         # Create a file with a released layout and stripe count 2.
12508         $MULTIOP $DIR/$tfile H2c ||
12509                 error "failed to create file with released layout"
12510
12511         $GETSTRIPE -v $DIR/$tfile
12512
12513         local pattern=$($GETSTRIPE -L $DIR/$tfile)
12514         [ X"$pattern" = X"80000001" ] || error "pattern error ($pattern)"
12515
12516         local stripe_count=$($GETSTRIPE -c $DIR/$tfile) || error "getstripe"
12517         [ $stripe_count -eq 2 ] || error "stripe count not 2 ($stripe_count)"
12518         stat $DIR/$tfile || error "failed to stat released file"
12519
12520         chown $RUNAS_ID $DIR/$tfile ||
12521                 error "chown $RUNAS_ID $DIR/$tfile failed"
12522
12523         chgrp $RUNAS_ID $DIR/$tfile ||
12524                 error "chgrp $RUNAS_ID $DIR/$tfile failed"
12525
12526         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
12527         rm $DIR/$tfile || error "failed to remove released file"
12528 }
12529 run_test 229 "getstripe/stat/rm/attr changes work on released files"
12530
12531 test_230a() {
12532         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12533         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
12534         local MDTIDX=1
12535
12536         test_mkdir $DIR/$tdir
12537         test_mkdir -i0 -c1 $DIR/$tdir/test_230_local
12538         local mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230_local)
12539         [ $mdt_idx -ne 0 ] &&
12540                 error "create local directory on wrong MDT $mdt_idx"
12541
12542         $LFS mkdir -i $MDTIDX $DIR/$tdir/test_230 ||
12543                         error "create remote directory failed"
12544         local mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230)
12545         [ $mdt_idx -ne $MDTIDX ] &&
12546                 error "create remote directory on wrong MDT $mdt_idx"
12547
12548         createmany -o $DIR/$tdir/test_230/t- 10 ||
12549                 error "create files on remote directory failed"
12550         mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230/t-0)
12551         [ $mdt_idx -ne $MDTIDX ] && error "create files on wrong MDT $mdt_idx"
12552         rm -r $DIR/$tdir || error "unlink remote directory failed"
12553 }
12554 run_test 230a "Create remote directory and files under the remote directory"
12555
12556 test_230b() {
12557         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12558         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
12559         local MDTIDX=1
12560         local mdt_index
12561         local i
12562         local file
12563         local pid
12564         local stripe_count
12565         local migrate_dir=$DIR/$tdir/migrate_dir
12566         local other_dir=$DIR/$tdir/other_dir
12567
12568         test_mkdir $DIR/$tdir
12569         test_mkdir -i0 -c1 $migrate_dir
12570         test_mkdir -i0 -c1 $other_dir
12571         for ((i=0; i<10; i++)); do
12572                 mkdir -p $migrate_dir/dir_${i}
12573                 createmany -o $migrate_dir/dir_${i}/f 10 ||
12574                         error "create files under remote dir failed $i"
12575         done
12576
12577         cp /etc/passwd $migrate_dir/$tfile
12578         cp /etc/passwd $other_dir/$tfile
12579         chattr +SAD $migrate_dir
12580         chattr +SAD $migrate_dir/$tfile
12581
12582         local old_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
12583         local old_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
12584         local old_dir_mode=$(stat -c%f $migrate_dir)
12585         local old_file_mode=$(stat -c%f $migrate_dir/$tfile)
12586
12587         mkdir -p $migrate_dir/dir_default_stripe2
12588         $SETSTRIPE -c 2 $migrate_dir/dir_default_stripe2
12589         $SETSTRIPE -c 2 $migrate_dir/${tfile}_stripe2
12590
12591         mkdir -p $other_dir
12592         ln $migrate_dir/$tfile $other_dir/luna
12593         ln $migrate_dir/$tfile $migrate_dir/sofia
12594         ln $other_dir/$tfile $migrate_dir/david
12595         ln -s $migrate_dir/$tfile $other_dir/zachary
12596         ln -s $migrate_dir/$tfile $migrate_dir/${tfile}_ln
12597         ln -s $other_dir/$tfile $migrate_dir/${tfile}_ln_other
12598
12599         $LFS migrate -m $MDTIDX $migrate_dir ||
12600                 error "migrate remote dir error"
12601
12602         echo "migratate to MDT1, then checking.."
12603         for ((i = 0; i < 10; i++)); do
12604                 for file in $(find $migrate_dir/dir_${i}); do
12605                         mdt_index=$($LFS getstripe -M $file)
12606                         [ $mdt_index == $MDTIDX ] ||
12607                                 error "$file is not on MDT${MDTIDX}"
12608                 done
12609         done
12610
12611         # the multiple link file should still in MDT0
12612         mdt_index=$($LFS getstripe -M $migrate_dir/$tfile)
12613         [ $mdt_index == 0 ] ||
12614                 error "$file is not on MDT${MDTIDX}"
12615
12616         local new_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
12617         [ "$old_dir_flag" = "$new_dir_flag" ] ||
12618                 error " expect $old_dir_flag get $new_dir_flag"
12619
12620         local new_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
12621         [ "$old_file_flag" = "$new_file_flag" ] ||
12622                 error " expect $old_file_flag get $new_file_flag"
12623
12624         local new_dir_mode=$(stat -c%f $migrate_dir)
12625         [ "$old_dir_mode" = "$new_dir_mode" ] ||
12626                 error "expect mode $old_dir_mode get $new_dir_mode"
12627
12628         local new_file_mode=$(stat -c%f $migrate_dir/$tfile)
12629         [ "$old_file_mode" = "$new_file_mode" ] ||
12630                 error "expect mode $old_file_mode get $new_file_mode"
12631
12632         diff /etc/passwd $migrate_dir/$tfile ||
12633                 error "$tfile different after migration"
12634
12635         diff /etc/passwd $other_dir/luna ||
12636                 error "luna different after migration"
12637
12638         diff /etc/passwd $migrate_dir/sofia ||
12639                 error "sofia different after migration"
12640
12641         diff /etc/passwd $migrate_dir/david ||
12642                 error "david different after migration"
12643
12644         diff /etc/passwd $other_dir/zachary ||
12645                 error "zachary different after migration"
12646
12647         diff /etc/passwd $migrate_dir/${tfile}_ln ||
12648                 error "${tfile}_ln different after migration"
12649
12650         diff /etc/passwd $migrate_dir/${tfile}_ln_other ||
12651                 error "${tfile}_ln_other different after migration"
12652
12653         stripe_count=$($LFS getstripe -c $migrate_dir/dir_default_stripe2)
12654         [ $stripe_count = 2 ] ||
12655                 error "dir strpe_count $d != 2 after migration."
12656
12657         stripe_count=$($LFS getstripe -c $migrate_dir/${tfile}_stripe2)
12658         [ $stripe_count = 2 ] ||
12659                 error "file strpe_count $d != 2 after migration."
12660
12661         #migrate back to MDT0
12662         MDTIDX=0
12663         $LFS migrate -m $MDTIDX $migrate_dir ||
12664                 error "migrate remote dir error"
12665
12666         echo "migrate back to MDT0, checking.."
12667         for file in $(find $migrate_dir); do
12668                 mdt_index=$($LFS getstripe -M $file)
12669                 [ $mdt_index == $MDTIDX ] ||
12670                         error "$file is not on MDT${MDTIDX}"
12671         done
12672
12673         local new_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
12674         [ "$old_dir_flag" = "$new_dir_flag" ] ||
12675                 error " expect $old_dir_flag get $new_dir_flag"
12676
12677         local new_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
12678         [ "$old_file_flag" = "$new_file_flag" ] ||
12679                 error " expect $old_file_flag get $new_file_flag"
12680
12681         local new_dir_mode=$(stat -c%f $migrate_dir)
12682         [ "$old_dir_mode" = "$new_dir_mode" ] ||
12683                 error "expect mode $old_dir_mode get $new_dir_mode"
12684
12685         local new_file_mode=$(stat -c%f $migrate_dir/$tfile)
12686         [ "$old_file_mode" = "$new_file_mode" ] ||
12687                 error "expect mode $old_file_mode get $new_file_mode"
12688
12689         diff /etc/passwd ${migrate_dir}/$tfile ||
12690                 error "$tfile different after migration"
12691
12692         diff /etc/passwd ${other_dir}/luna ||
12693                 error "luna different after migration"
12694
12695         diff /etc/passwd ${migrate_dir}/sofia ||
12696                 error "sofia different after migration"
12697
12698         diff /etc/passwd ${other_dir}/zachary ||
12699                 error "zachary different after migration"
12700
12701         diff /etc/passwd $migrate_dir/${tfile}_ln ||
12702                 error "${tfile}_ln different after migration"
12703
12704         diff /etc/passwd $migrate_dir/${tfile}_ln_other ||
12705                 error "${tfile}_ln_other different after migration"
12706
12707         stripe_count=$($LFS getstripe -c ${migrate_dir}/dir_default_stripe2)
12708         [ $stripe_count = 2 ] ||
12709                 error "dir strpe_count $d != 2 after migration."
12710
12711         stripe_count=$($LFS getstripe -c ${migrate_dir}/${tfile}_stripe2)
12712         [ $stripe_count = 2 ] ||
12713                 error "file strpe_count $d != 2 after migration."
12714
12715         rm -rf $DIR/$tdir || error "rm dir failed after migration"
12716 }
12717 run_test 230b "migrate directory"
12718
12719 test_230c() {
12720         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12721         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
12722         local MDTIDX=1
12723         local mdt_index
12724         local file
12725         local migrate_dir=$DIR/$tdir/migrate_dir
12726
12727         #If migrating directory fails in the middle, all entries of
12728         #the directory is still accessiable.
12729         test_mkdir $DIR/$tdir
12730         test_mkdir -i0 -c1 $migrate_dir
12731         stat $migrate_dir
12732         createmany -o $migrate_dir/f 10 ||
12733                 error "create files under ${migrate_dir} failed"
12734
12735         #failed after migrating 5 entries
12736         #OBD_FAIL_MIGRATE_ENTRIES       0x1801
12737         do_facet mds1 lctl set_param fail_loc=0x20001801
12738         do_facet mds1 lctl  set_param fail_val=5
12739         local t=$(ls $migrate_dir | wc -l)
12740         $LFS migrate --mdt-index $MDTIDX $migrate_dir &&
12741                 error "migrate should fail after 5 entries"
12742         local u=$(ls $migrate_dir | wc -l)
12743         [ "$u" == "$t" ] || error "$u != $t during migration"
12744
12745         for file in $(find $migrate_dir); do
12746                 stat $file || error "stat $file failed"
12747         done
12748
12749         do_facet mds1 lctl set_param fail_loc=0
12750         do_facet mds1 lctl set_param fail_val=0
12751
12752         $LFS migrate -m $MDTIDX $migrate_dir ||
12753                 error "migrate open files should failed with open files"
12754
12755         echo "Finish migration, then checking.."
12756         for file in $(find $migrate_dir); do
12757                 mdt_index=$($LFS getstripe -M $file)
12758                 [ $mdt_index == $MDTIDX ] ||
12759                         error "$file is not on MDT${MDTIDX}"
12760         done
12761
12762         rm -rf $DIR/$tdir || error "rm dir failed after migration"
12763 }
12764 run_test 230c "check directory accessiblity if migration is failed"
12765
12766 test_230d() {
12767         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12768         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
12769         local MDTIDX=1
12770         local mdt_index
12771         local migrate_dir=$DIR/$tdir/migrate_dir
12772         local i
12773         local j
12774
12775         test_mkdir $DIR/$tdir
12776         test_mkdir -i0 -c1 $migrate_dir
12777
12778         for ((i=0; i<100; i++)); do
12779                 test_mkdir -i0 -c1 $migrate_dir/dir_${i}
12780                 createmany -o $migrate_dir/dir_${i}/f 100 ||
12781                         error "create files under remote dir failed $i"
12782         done
12783
12784         $LFS migrate -m $MDTIDX $migrate_dir ||
12785                 error "migrate remote dir error"
12786
12787         echo "Finish migration, then checking.."
12788         for file in $(find $migrate_dir); do
12789                 mdt_index=$($LFS getstripe -M $file)
12790                 [ $mdt_index == $MDTIDX ] ||
12791                         error "$file is not on MDT${MDTIDX}"
12792         done
12793
12794         rm -rf $DIR/$tdir || error "rm dir failed after migration"
12795 }
12796 run_test 230d "check migrate big directory"
12797
12798 test_231a()
12799 {
12800         # For simplicity this test assumes that max_pages_per_rpc
12801         # is the same across all OSCs
12802         local max_pages=$($LCTL get_param -n osc.*.max_pages_per_rpc | head -n1)
12803         local bulk_size=$((max_pages * 4096))
12804
12805         mkdir -p $DIR/$tdir
12806
12807         # clear the OSC stats
12808         $LCTL set_param osc.*.stats=0 &>/dev/null
12809
12810         # Client writes $bulk_size - there must be 1 rpc for $max_pages.
12811         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=$bulk_size count=1 \
12812                 oflag=direct &>/dev/null || error "dd failed"
12813
12814         local nrpcs=$($LCTL get_param osc.*.stats |awk '/ost_write/ {print $2}')
12815         if [ x$nrpcs != "x1" ]; then
12816                 error "found $nrpc ost_write RPCs, not 1 as expected"
12817         fi
12818
12819         # Drop the OSC cache, otherwise we will read from it
12820         cancel_lru_locks osc
12821
12822         # clear the OSC stats
12823         $LCTL set_param osc.*.stats=0 &>/dev/null
12824
12825         # Client reads $bulk_size.
12826         dd if=$DIR/$tdir/$tfile of=/dev/null bs=$bulk_size count=1 \
12827                 iflag=direct &>/dev/null || error "dd failed"
12828
12829         nrpcs=$($LCTL get_param osc.*.stats | awk '/ost_read/ { print $2 }')
12830         if [ x$nrpcs != "x1" ]; then
12831                 error "found $nrpc ost_read RPCs, not 1 as expected"
12832         fi
12833 }
12834 run_test 231a "checking that reading/writing of BRW RPC size results in one RPC"
12835
12836 test_231b() {
12837         mkdir -p $DIR/$tdir
12838         local i
12839         for i in {0..1023}; do
12840                 dd if=/dev/zero of=$DIR/$tdir/$tfile conv=notrunc \
12841                         seek=$((2 * i)) bs=4096 count=1 &>/dev/null ||
12842                         error "dd of=$DIR/$tdir/$tfile seek=$((2 * i)) failed"
12843         done
12844         sync
12845 }
12846 run_test 231b "must not assert on fully utilized OST request buffer"
12847
12848 test_232() {
12849         mkdir -p $DIR/$tdir
12850         #define OBD_FAIL_LDLM_OST_LVB            0x31c
12851         $LCTL set_param fail_loc=0x31c
12852
12853         # ignore dd failure
12854         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=1 || true
12855
12856         $LCTL set_param fail_loc=0
12857         umount_client $MOUNT || error "umount failed"
12858         mount_client $MOUNT || error "mount failed"
12859 }
12860 run_test 232 "failed lock should not block umount"
12861
12862 test_233a() {
12863         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.64) ] ||
12864         { skip "Need MDS version at least 2.3.64"; return; }
12865
12866         local fid=$($LFS path2fid $MOUNT)
12867         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
12868                 error "cannot access $MOUNT using its FID '$fid'"
12869 }
12870 run_test 233a "checking that OBF of the FS root succeeds"
12871
12872 test_233b() {
12873         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.5.90) ] ||
12874         { skip "Need MDS version at least 2.5.90"; return; }
12875
12876         local fid=$($LFS path2fid $MOUNT/.lustre)
12877         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
12878                 error "cannot access $MOUNT/.lustre using its FID '$fid'"
12879
12880         fid=$($LFS path2fid $MOUNT/.lustre/fid)
12881         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
12882                 error "cannot access $MOUNT/.lustre/fid using its FID '$fid'"
12883 }
12884 run_test 233b "checking that OBF of the FS .lustre succeeds"
12885
12886 test_234() {
12887         local p="$TMP/sanityN-$TESTNAME.parameters"
12888         save_lustre_params client "llite.*.xattr_cache" > $p
12889         lctl set_param llite.*.xattr_cache 1 ||
12890                 { skip "xattr cache is not supported"; return 0; }
12891
12892         mkdir -p $DIR/$tdir || error "mkdir failed"
12893         touch $DIR/$tdir/$tfile || error "touch failed"
12894         # OBD_FAIL_LLITE_XATTR_ENOMEM
12895         $LCTL set_param fail_loc=0x1405
12896         # output of the form: attr 2 4 44 3 fc13 x86_64
12897         V=($(IFS=".-" rpm -q attr))
12898         if [[ ${V[1]} > 2 || ${V[2]} > 4 || ${V[3]} > 44 ||
12899               ${V[1]} = 2 && ${V[2]} = 4 && ${V[3]} = 44 && ${V[4]} > 6 ]]; then
12900                 # attr pre-2.4.44-7 had a bug with rc
12901                 # LU-3703 - SLES 11 and FC13 clients have older attr
12902                 getfattr -n user.attr $DIR/$tdir/$tfile &&
12903                         error "getfattr should have failed with ENOMEM"
12904         else
12905                 skip "LU-3703: attr version $(getfattr --version) too old"
12906         fi
12907         $LCTL set_param fail_loc=0x0
12908         rm -rf $DIR/$tdir
12909
12910         restore_lustre_params < $p
12911         rm -f $p
12912 }
12913 run_test 234 "xattr cache should not crash on ENOMEM"
12914
12915 test_235() {
12916         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.52) ] &&
12917                 skip "Need MDS version at least 2.4.52" && return
12918         flock_deadlock $DIR/$tfile
12919         local RC=$?
12920         case $RC in
12921                 0)
12922                 ;;
12923                 124) error "process hangs on a deadlock"
12924                 ;;
12925                 *) error "error executing flock_deadlock $DIR/$tfile"
12926                 ;;
12927         esac
12928 }
12929 run_test 235 "LU-1715: flock deadlock detection does not work properly"
12930
12931 #LU-2935
12932 test_236() {
12933         check_swap_layouts_support && return 0
12934         test_mkdir -p -c1 $DIR/$tdir || error "mkdir $tdir failed"
12935
12936         local ref1=/etc/passwd
12937         local ref2=/etc/group
12938         local file1=$DIR/$tdir/f1
12939         local file2=$DIR/$tdir/f2
12940
12941         $SETSTRIPE -c 1 $file1 || error "cannot setstripe on '$file1': rc = $?"
12942         cp $ref1 $file1 || error "cp $ref1 $file1 failed: rc = $?"
12943         $SETSTRIPE -c 2 $file2 || error "cannot setstripe on '$file2': rc = $?"
12944         cp $ref2 $file2 || error "cp $ref2 $file2 failed: rc = $?"
12945         local fd=$(free_fd)
12946         local cmd="exec $fd<>$file2"
12947         eval $cmd
12948         rm $file2
12949         $LFS swap_layouts $file1 /proc/self/fd/${fd} ||
12950                 error "cannot swap layouts of '$file1' and /proc/self/fd/${fd}"
12951         cmd="exec $fd>&-"
12952         eval $cmd
12953         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
12954
12955         #cleanup
12956         rm -rf $DIR/$tdir
12957 }
12958 run_test 236 "Layout swap on open unlinked file"
12959
12960 # test to verify file handle related system calls
12961 # (name_to_handle_at/open_by_handle_at)
12962 # The new system calls are supported in glibc >= 2.14.
12963
12964 test_237() {
12965         echo "Test file_handle syscalls" > $DIR/$tfile ||
12966                 error "write failed"
12967         check_fhandle_syscalls $DIR/$tfile ||
12968                 error "check_fhandle_syscalls failed"
12969 }
12970 run_test 237 "Verify name_to_handle_at/open_by_handle_at syscalls"
12971
12972 # LU-4659 linkea consistency
12973 test_238() {
12974         local server_version=$(lustre_version_code $SINGLEMDS)
12975
12976         [[ $server_version -gt $(version_code 2.5.57) ]] ||
12977                 [[ $server_version -gt $(version_code 2.5.1) &&
12978                    $server_version -lt $(version_code 2.5.50) ]] ||
12979                 { skip "Need MDS version at least 2.5.58 or 2.5.2+"; return; }
12980
12981         touch $DIR/$tfile
12982         ln $DIR/$tfile $DIR/$tfile.lnk
12983         touch $DIR/$tfile.new
12984         mv $DIR/$tfile.new $DIR/$tfile
12985         local fid1=$($LFS path2fid $DIR/$tfile)
12986         local fid2=$($LFS path2fid $DIR/$tfile.lnk)
12987         local path1=$($LFS fid2path $FSNAME "$fid1")
12988         [ $tfile == $path1 ] || error "linkea inconsistent: $tfile $fid1 $path1"
12989         local path2=$($LFS fid2path $FSNAME "$fid2")
12990         [ $tfile.lnk == $path2 ] ||
12991                 error "linkea inconsistent: $tfile.lnk $fid2 $path2!"
12992         rm -f $DIR/$tfile*
12993 }
12994 run_test 238 "Verify linkea consistency"
12995
12996 test_239() {
12997         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.60) ] &&
12998                 skip "Need MDS version at least 2.5.60" && return
12999         local list=$(comma_list $(mdts_nodes))
13000
13001         mkdir -p $DIR/$tdir
13002         createmany -o $DIR/$tdir/f- 5000
13003         unlinkmany $DIR/$tdir/f- 5000
13004         do_nodes $list "lctl set_param -n osp*.*.sync_changes 1"
13005         changes=$(do_nodes $list "lctl get_param -n osc.*MDT*.sync_changes \
13006                         osc.*MDT*.sync_in_flight" | calc_sum)
13007         [ "$changes" -eq 0 ] || error "$changes not synced"
13008 }
13009 run_test 239 "osp_sync test"
13010
13011 test_240() {
13012         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13013
13014         mkdir -p $DIR/$tdir
13015
13016         $LFS mkdir -i 0 $DIR/$tdir/d0 ||
13017                 error "failed to mkdir $DIR/$tdir/d0 on MDT0"
13018         $LFS mkdir -i 1 $DIR/$tdir/d0/d1 ||
13019                 error "failed to mkdir $DIR/$tdir/d0/d1 on MDT1"
13020
13021         umount_client $MOUNT || error "umount failed"
13022         #define OBD_FAIL_TGT_DELAY_CONDITIONAL   0x713
13023         do_facet mds2 lctl set_param fail_loc=0x713 fail_val=1
13024         mount_client $MOUNT || error "failed to mount client"
13025
13026         echo "stat $DIR/$tdir/d0/d1, should not fail/ASSERT"
13027         stat $DIR/$tdir/d0/d1 || error "fail to stat $DIR/$tdir/d0/d1"
13028 }
13029 run_test 240 "race between ldlm enqueue and the connection RPC (no ASSERT)"
13030
13031 test_241_bio() {
13032         for LOOP in $(seq $1); do
13033                 dd if=$DIR/$tfile of=/dev/null bs=40960 count=1 2>/dev/null
13034                 cancel_lru_locks osc
13035         done
13036 }
13037
13038 test_241_dio() {
13039         for LOOP in $(seq $1); do
13040                 dd if=$DIR/$tfile of=/dev/null bs=40960 count=1 \
13041                                                 iflag=direct 2>/dev/null
13042         done
13043 }
13044
13045 test_241() {
13046         dd if=/dev/zero of=$DIR/$tfile count=1 bs=40960
13047         ls -la $DIR/$tfile
13048         cancel_lru_locks osc
13049         test_241_bio 1000 &
13050         PID=$!
13051         test_241_dio 1000
13052         wait $PID
13053 }
13054 run_test 241 "bio vs dio"
13055
13056 test_241b() {
13057         dd if=/dev/zero of=$DIR/$tfile count=1 bs=40960
13058         ls -la $DIR/$tfile
13059         test_241_dio 1000 &
13060         PID=$!
13061         test_241_dio 1000
13062         wait $PID
13063 }
13064 run_test 241b "dio vs dio"
13065
13066 test_242() {
13067         mkdir -p $DIR/$tdir
13068         touch $DIR/$tdir/$tfile
13069
13070         #define OBD_FAIL_MDS_READPAGE_PACK      0x105
13071         do_facet mds1 lctl set_param fail_loc=0x105
13072         /bin/ls $DIR/$tdir && error "ls $DIR/$tdir should fail"
13073
13074         do_facet mds1 lctl set_param fail_loc=0
13075         /bin/ls $DIR/$tdir || error "ls $DIR/$tdir failed"
13076 }
13077 run_test 242 "mdt_readpage failure should not cause directory unreadable"
13078
13079 test_243()
13080 {
13081         test_mkdir -p $DIR/$tdir
13082         group_lock_test -d $DIR/$tdir || error "A group lock test failed"
13083 }
13084 run_test 243 "various group lock tests"
13085
13086 test_244()
13087 {
13088         test_mkdir -p $DIR/$tdir
13089         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=35
13090         sendfile_grouplock $DIR/$tdir/$tfile || \
13091                 error "sendfile+grouplock failed"
13092         rm -rf $DIR/$tdir
13093 }
13094 run_test 244 "sendfile with group lock tests"
13095
13096 test_250() {
13097         [ "$(facet_fstype ost$(($($GETSTRIPE -i $DIR/$tfile) + 1)))" = "zfs" ] \
13098          && skip "no 16TB file size limit on ZFS" && return
13099
13100         $SETSTRIPE -c 1 $DIR/$tfile
13101         # ldiskfs extent file size limit is (16TB - 4KB - 1) bytes
13102         local size=$((16 * 1024 * 1024 * 1024 * 1024 - 4096 - 1))
13103         $TRUNCATE $DIR/$tfile $size || error "truncate $tfile to $size failed"
13104         dd if=/dev/zero of=$DIR/$tfile bs=10 count=1 oflag=append \
13105                 conv=notrunc,fsync && error "append succeeded"
13106         return 0
13107 }
13108 run_test 250 "Write above 16T limit"
13109
13110 test_251() {
13111         $SETSTRIPE -c -1 -S 1048576 $DIR/$tfile
13112
13113         #define OBD_FAIL_LLITE_LOST_LAYOUT 0x1407
13114         #Skip once - writing the first stripe will succeed
13115         $LCTL set_param fail_loc=0xa0001407 fail_val=1
13116         $MULTIOP $DIR/$tfile o:O_RDWR:w2097152c 2>&1 | grep -q "short write" &&
13117                 error "short write happened"
13118
13119         $LCTL set_param fail_loc=0xa0001407 fail_val=1
13120         $MULTIOP $DIR/$tfile or2097152c 2>&1 | grep -q "short read" &&
13121                 error "short read happened"
13122
13123         rm -f $DIR/$tfile
13124 }
13125 run_test 251 "Handling short read and write correctly"
13126
13127 cleanup_test_300() {
13128         trap 0
13129         umask $SAVE_UMASK
13130 }
13131 test_striped_dir() {
13132         local mdt_index=$1
13133         local stripe_count
13134         local stripe_index
13135
13136         mkdir -p $DIR/$tdir
13137
13138         SAVE_UMASK=$(umask)
13139         trap cleanup_test_300 RETURN EXIT
13140
13141         $LFS setdirstripe -i $mdt_index -c 2 -t all_char -m 755 \
13142                                                 $DIR/$tdir/striped_dir ||
13143                 error "set striped dir error"
13144
13145         local mode=$(stat -c%a $DIR/$tdir/striped_dir)
13146         [ "$mode" = "755" ] || error "expect 755 got $mode"
13147
13148         $LFS getdirstripe $DIR/$tdir/striped_dir > /dev/null 2>&1 ||
13149                 error "getdirstripe failed"
13150         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir)
13151         if [ "$stripe_count" != "2" ]; then
13152                 error "stripe_count is $stripe_count, expect 2"
13153         fi
13154
13155         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir)
13156         if [ "$stripe_index" != "$mdt_index" ]; then
13157                 error "stripe_index is $stripe_index, expect $mdt_index"
13158         fi
13159
13160         [ $(stat -c%h $DIR/$tdir/striped_dir) == '2' ] ||
13161                 error "nlink error after create striped dir"
13162
13163         mkdir $DIR/$tdir/striped_dir/a
13164         mkdir $DIR/$tdir/striped_dir/b
13165
13166         stat $DIR/$tdir/striped_dir/a ||
13167                 error "create dir under striped dir failed"
13168         stat $DIR/$tdir/striped_dir/b ||
13169                 error "create dir under striped dir failed"
13170
13171         [ $(stat -c%h $DIR/$tdir/striped_dir) == '4' ] ||
13172                 error "nlink error after mkdir"
13173
13174         rmdir $DIR/$tdir/striped_dir/a
13175         [ $(stat -c%h $DIR/$tdir/striped_dir) == '3' ] ||
13176                 error "nlink error after rmdir"
13177
13178         rmdir $DIR/$tdir/striped_dir/b
13179         [ $(stat -c%h $DIR/$tdir/striped_dir) == '2' ] ||
13180                 error "nlink error after rmdir"
13181
13182         chattr +i $DIR/$tdir/striped_dir
13183         createmany -o $DIR/$tdir/striped_dir/f 10 &&
13184                 error "immutable flags not working under striped dir!"
13185         chattr -i $DIR/$tdir/striped_dir
13186
13187         rmdir $DIR/$tdir/striped_dir ||
13188                 error "rmdir striped dir error"
13189
13190         cleanup_test_300
13191
13192         true
13193 }
13194
13195 test_300a() {
13196         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13197         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13198
13199         test_striped_dir 0 || error "failed on striped dir on MDT0"
13200         test_striped_dir 1 || error "failed on striped dir on MDT0"
13201 }
13202 run_test 300a "basic striped dir sanity test"
13203
13204 test_300b() {
13205         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13206         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13207         local i
13208         local mtime1
13209         local mtime2
13210         local mtime3
13211
13212         test_mkdir $DIR/$tdir || error "mkdir fail"
13213         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir ||
13214                 error "set striped dir error"
13215         for ((i=0; i<10; i++)); do
13216                 mtime1=$(stat -c %Y $DIR/$tdir/striped_dir)
13217                 sleep 1
13218                 touch $DIR/$tdir/striped_dir/file_$i ||
13219                                         error "touch error $i"
13220                 mtime2=$(stat -c %Y $DIR/$tdir/striped_dir)
13221                 [ $mtime1 -eq $mtime2 ] &&
13222                         error "mtime not change after create"
13223                 sleep 1
13224                 rm -f $DIR/$tdir/striped_dir/file_$i ||
13225                                         error "unlink error $i"
13226                 mtime3=$(stat -c %Y $DIR/$tdir/striped_dir)
13227                 [ $mtime2 -eq $mtime3 ] &&
13228                         error "mtime did not change after unlink"
13229         done
13230         true
13231 }
13232 run_test 300b "check ctime/mtime for striped dir"
13233
13234 test_300c() {
13235         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13236         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13237         local file_count
13238
13239         mkdir -p $DIR/$tdir
13240         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir ||
13241                 error "set striped dir error"
13242
13243         chown $RUNAS_ID:$RUNAS_GID $DIR/$tdir/striped_dir ||
13244                 error "chown striped dir failed"
13245
13246         $RUNAS createmany -o $DIR/$tdir/striped_dir/f 5000 ||
13247                 error "create 5k files failed"
13248
13249         file_count=$(ls $DIR/$tdir/striped_dir | wc -l)
13250
13251         [ "$file_count" = 5000 ] || error "file count $file_count != 5000"
13252
13253         rm -rf $DIR/$tdir
13254 }
13255 run_test 300c "chown && check ls under striped directory"
13256
13257 test_300d() {
13258         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13259         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13260         local stripe_count
13261         local file
13262
13263         mkdir -p $DIR/$tdir
13264         $SETSTRIPE -c 2 $DIR/$tdir
13265
13266         #local striped directory
13267         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir ||
13268                 error "set striped dir error"
13269         createmany -o $DIR/$tdir/striped_dir/f 10 ||
13270                 error "create 10 files failed"
13271
13272         #remote striped directory
13273         $LFS setdirstripe -i 1 -c 2 $DIR/$tdir/remote_striped_dir ||
13274                 error "set striped dir error"
13275         createmany -o $DIR/$tdir/remote_striped_dir/f 10 ||
13276                 error "create 10 files failed"
13277
13278         for file in $(find $DIR/$tdir); do
13279                 stripe_count=$($GETSTRIPE -c $file)
13280                 [ $stripe_count -eq 2 ] ||
13281                         error "wrong stripe $stripe_count for $file"
13282         done
13283
13284         rm -rf $DIR/$tdir
13285 }
13286 run_test 300d "check default stripe under striped directory"
13287
13288 test_300e() {
13289         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13290         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13291         local stripe_count
13292         local file
13293
13294         mkdir -p $DIR/$tdir
13295
13296         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir ||
13297                 error "set striped dir error"
13298
13299         touch $DIR/$tdir/striped_dir/a
13300         touch $DIR/$tdir/striped_dir/b
13301         touch $DIR/$tdir/striped_dir/c
13302
13303         mkdir $DIR/$tdir/striped_dir/dir_a
13304         mkdir $DIR/$tdir/striped_dir/dir_b
13305         mkdir $DIR/$tdir/striped_dir/dir_c
13306
13307         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir/stp_a ||
13308                 error "set striped dir under striped dir error"
13309
13310         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir/stp_b ||
13311                 error "set striped dir under striped dir error"
13312
13313         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir/stp_c ||
13314                 error "set striped dir under striped dir error"
13315
13316         mrename $DIR/$tdir/striped_dir/dir_a $DIR/$tdir/striped_dir/dir_b ||
13317                 error "rename dir under striped dir fails"
13318
13319         mrename $DIR/$tdir/striped_dir/stp_a $DIR/$tdir/striped_dir/stp_b ||
13320                 error "rename dir under different stripes fails"
13321
13322         mrename $DIR/$tdir/striped_dir/a $DIR/$tdir/striped_dir/c ||
13323                 error "rename file under striped dir should succeed"
13324
13325         mrename $DIR/$tdir/striped_dir/dir_b $DIR/$tdir/striped_dir/dir_c ||
13326                 error "rename dir under striped dir should succeed"
13327
13328         rm -rf $DIR/$tdir
13329 }
13330 run_test 300e "check rename under striped directory"
13331
13332 test_300f() {
13333         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13334         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13335         local stripe_count
13336         local file
13337
13338         rm -rf $DIR/$tdir
13339         mkdir -p $DIR/$tdir
13340
13341         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir ||
13342                 error "set striped dir error"
13343
13344         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir1 ||
13345                 error "set striped dir error"
13346
13347         touch $DIR/$tdir/striped_dir/a
13348         mkdir $DIR/$tdir/striped_dir/dir_a
13349         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir/stp_a ||
13350                 error "create striped dir under striped dir fails"
13351
13352         touch $DIR/$tdir/striped_dir1/b
13353         mkdir $DIR/$tdir/striped_dir1/dir_b
13354         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir/stp_b ||
13355                 error "create striped dir under striped dir fails"
13356
13357         mrename $DIR/$tdir/striped_dir/dir_a $DIR/$tdir/striped_dir1/dir_b ||
13358                 error "rename dir under different striped dir should fail"
13359
13360         mrename $DIR/$tdir/striped_dir/stp_a $DIR/$tdir/striped_dir1/stp_b ||
13361                 error "rename striped dir under diff striped dir should fail"
13362
13363         mrename $DIR/$tdir/striped_dir/a $DIR/$tdir/striped_dir1/a ||
13364                 error "rename file under diff striped dirs fails"
13365
13366         rm -rf $DIR/$tdir
13367 }
13368 run_test 300f "check rename cross striped directory"
13369
13370 test_300_check_default_striped_dir()
13371 {
13372         local dirname=$1
13373         local default_count=$2
13374         local default_index=$3
13375         local stripe_count
13376         local stripe_index
13377         local dir_stripe_index
13378         local dir
13379
13380         echo "checking $dirname $default_count $default_index"
13381         $LFS setdirstripe -D -c $default_count -i $default_index \
13382                                 -t all_char $DIR/$tdir/$dirname ||
13383                 error "set default stripe on striped dir error"
13384         stripe_count=$($LFS getdirstripe -D -c $DIR/$tdir/$dirname)
13385         [ $stripe_count -eq $default_count ] ||
13386                 error "expect $default_count get $stripe_count for $dirname"
13387
13388         stripe_index=$($LFS getdirstripe -D -i $DIR/$tdir/$dirname)
13389         [ $stripe_index -eq $default_index ] ||
13390                 error "expect $default_index get $stripe_index for $dirname"
13391
13392         mkdir $DIR/$tdir/$dirname/{test1,test2,test3,test4} ||
13393                                                 error "create dirs failed"
13394
13395         createmany -o $DIR/$tdir/$dirname/f- 10 || error "create files failed"
13396         unlinkmany $DIR/$tdir/$dirname/f- 10    || error "unlink files failed"
13397         for dir in $(find $DIR/$tdir/$dirname/*); do
13398                 stripe_count=$($LFS getdirstripe -c $dir)
13399                 [ $stripe_count -eq $default_count ] ||
13400                 error "stripe count $default_count != $stripe_count for $dir"
13401
13402                 stripe_index=$($LFS getdirstripe -i $dir)
13403                 [ $default_index -eq -1 -o $stripe_index -eq $default_index ] ||
13404                         error "$stripe_index != $default_index for $dir"
13405
13406                 #check default stripe
13407                 stripe_count=$($LFS getdirstripe -D -c $dir)
13408                 [ $stripe_count -eq $default_count ] ||
13409                 error "default count $default_count != $stripe_count for $dir"
13410
13411                 stripe_index=$($LFS getdirstripe -D -i $dir)
13412                 [ $stripe_index -eq $default_index ] ||
13413                 error "default index $default_index != $stripe_index for $dir"
13414         done
13415         rmdir $DIR/$tdir/$dirname/* || error "rmdir failed"
13416 }
13417
13418 test_300g() {
13419         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13420         local dir
13421         local stripe_count
13422         local stripe_index
13423
13424         mkdir $DIR/$tdir
13425         mkdir $DIR/$tdir/normal_dir
13426
13427         test_300_check_default_striped_dir normal_dir $MDSCOUNT 1
13428         test_300_check_default_striped_dir normal_dir 1 0
13429         test_300_check_default_striped_dir normal_dir 2 1
13430         test_300_check_default_striped_dir normal_dir 2 -1
13431
13432         #delete default stripe information
13433         echo "delete default stripeEA"
13434         $LFS setdirstripe -d $DIR/$tdir/normal_dir ||
13435                 error "set default stripe on striped dir error"
13436
13437         mkdir -p $DIR/$tdir/normal_dir/{test1,test2,test3,test4}
13438         for dir in $(find $DIR/$tdir/normal_dir/*); do
13439                 stripe_count=$($LFS getdirstripe -c $dir)
13440                 [ $stripe_count -eq 0 ] ||
13441                         error "expect 1 get $stripe_count for $dir"
13442                 stripe_index=$($LFS getdirstripe -i $dir)
13443                 [ $stripe_index -eq 0 ] ||
13444                         error "expect 0 get $stripe_index for $dir"
13445         done
13446 }
13447 run_test 300g "check default striped directory for normal directory"
13448
13449 test_300h() {
13450         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13451         local dir
13452         local stripe_count
13453
13454         mkdir $DIR/$tdir
13455         $LFS setdirstripe -i 0 -c $MDSCOUNT -t all_char \
13456                                         $DIR/$tdir/striped_dir ||
13457                 error "set striped dir error"
13458
13459         test_300_check_default_striped_dir striped_dir $MDSCOUNT 1
13460         test_300_check_default_striped_dir striped_dir 1 0
13461         test_300_check_default_striped_dir striped_dir 2 1
13462         test_300_check_default_striped_dir striped_dir 2 -1
13463
13464         #delete default stripe information
13465         $LFS setdirstripe -d $DIR/$tdir/striped_dir ||
13466                 error "set default stripe on striped dir error"
13467
13468         mkdir -p $DIR/$tdir/striped_dir/{test1,test2,test3,test4}
13469         for dir in $(find $DIR/$tdir/striped_dir/*); do
13470                 stripe_count=$($LFS getdirstripe -c $dir)
13471                 [ $stripe_count -eq 0 ] ||
13472                         error "expect 1 get $stripe_count for $dir"
13473         done
13474 }
13475 run_test 300h "check default striped directory for striped directory"
13476
13477 test_300i() {
13478         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13479         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13480         local stripe_count
13481         local file
13482
13483         mkdir $DIR/$tdir
13484
13485         $LFS setdirstripe -i 0 -c$MDSCOUNT -t all_char $DIR/$tdir/striped_dir ||
13486                 error "set striped dir error"
13487
13488         createmany -o $DIR/$tdir/striped_dir/f- 10 ||
13489                 error "create files under striped dir failed"
13490
13491         # unfortunately, we need to umount to clear dir layout cache for now
13492         # once we fully implement dir layout, we can drop this
13493         umount_client $MOUNT || error "umount failed"
13494         mount_client $MOUNT || error "mount failed"
13495
13496         #set the stripe to be unknown hash type
13497         #define OBD_FAIL_UNKNOWN_LMV_STRIPE     0x1901
13498         $LCTL set_param fail_loc=0x1901
13499         for ((i = 0; i < 10; i++)); do
13500                 $CHECKSTAT -t file $DIR/$tdir/striped_dir/f-$i ||
13501                         error "stat f-$i failed"
13502                 rm $DIR/$tdir/striped_dir/f-$i || error "unlink f-$i failed"
13503         done
13504
13505         touch $DIR/$tdir/striped_dir/f0 &&
13506                 error "create under striped dir with unknown hash should fail"
13507
13508         $LCTL set_param fail_loc=0
13509
13510         umount_client $MOUNT || error "umount failed"
13511         mount_client $MOUNT || error "mount failed"
13512
13513         return 0
13514 }
13515 run_test 300i "client handle unknown hash type striped directory"
13516
13517 test_300j() {
13518         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13519         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
13520                 skip "Need MDS version at least 2.7.55" && return
13521         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13522         local stripe_count
13523         local file
13524
13525         mkdir $DIR/$tdir
13526
13527         #define OBD_FAIL_SPLIT_UPDATE_REC       0x1702
13528         $LCTL set_param fail_loc=0x1702
13529         $LFS setdirstripe -i 0 -c$MDSCOUNT -t all_char $DIR/$tdir/striped_dir ||
13530                 error "set striped dir error"
13531
13532         createmany -o $DIR/$tdir/striped_dir/f- 10 ||
13533                 error "create files under striped dir failed"
13534
13535         $LCTL set_param fail_loc=0
13536
13537         rm -rf $DIR/$tdir || error "unlink striped dir fails"
13538
13539         return 0
13540 }
13541 run_test 300j "test large update record"
13542
13543 test_300k() {
13544         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13545         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
13546                 skip "Need MDS version at least 2.7.55" && return
13547         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13548         local stripe_count
13549         local file
13550
13551         mkdir $DIR/$tdir
13552
13553         #define OBD_FAIL_LARGE_STRIPE   0x1703
13554         $LCTL set_param fail_loc=0x1703
13555         $LFS setdirstripe -i 0 -c512 $DIR/$tdir/striped_dir ||
13556                 error "set striped dir error"
13557         $LCTL set_param fail_loc=0
13558
13559         $LFS getdirstripe $DIR/$tdir/striped_dir ||
13560                 error "getstripeddir fails"
13561         rm -rf $DIR/$tdir/striped_dir ||
13562                 error "unlink striped dir fails"
13563
13564         return 0
13565 }
13566 run_test 300k "test large striped directory"
13567
13568 test_300l() {
13569         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13570         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13571         local stripe_index
13572
13573         test_mkdir -p $DIR/$tdir/striped_dir
13574         chown $RUNAS_ID $DIR/$tdir/striped_dir ||
13575                         error "chown $RUNAS_ID failed"
13576         $LFS setdirstripe -i 1 -D $DIR/$tdir/striped_dir ||
13577                 error "set default striped dir failed"
13578
13579         #define OBD_FAIL_MDS_STALE_DIR_LAYOUT    0x158
13580         $LCTL set_param fail_loc=0x80000158
13581         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir || error "create dir fails"
13582
13583         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/test_dir)
13584         [ $stripe_index -eq 1 ] ||
13585                 error "expect 1 get $stripe_index for $dir"
13586 }
13587 run_test 300l "non-root user to create dir under striped dir with stale layout"
13588
13589 prepare_remote_file() {
13590         mkdir $DIR/$tdir/src_dir ||
13591                 error "create remote source failed"
13592
13593         cp /etc/hosts $DIR/$tdir/src_dir/a || error
13594         touch $DIR/$tdir/src_dir/a
13595
13596         $LFS mkdir -i 1 $DIR/$tdir/tgt_dir ||
13597                 error "create remote target dir failed"
13598
13599         touch $DIR/$tdir/tgt_dir/b
13600
13601         mrename $DIR/$tdir/src_dir/a $DIR/$tdir/tgt_dir/b ||
13602                 error "rename dir cross MDT failed!"
13603
13604         $CHECKSTAT -t file $DIR/$tdir/src_dir/a &&
13605                 error "src_child still exists after rename"
13606
13607         $CHECKSTAT -t file $DIR/$tdir/tgt_dir/b ||
13608                 error "missing file(a) after rename"
13609
13610         diff /etc/hosts $DIR/$tdir/tgt_dir/b ||
13611                 error "diff after rename"
13612 }
13613
13614 test_310a() {
13615         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 4 MDTs" && return
13616         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13617         local remote_file=$DIR/$tdir/tgt_dir/b
13618
13619         mkdir -p $DIR/$tdir
13620
13621         prepare_remote_file || error "prepare remote file failed"
13622
13623         #open-unlink file
13624         $OPENUNLINK $remote_file $remote_file || error
13625         $CHECKSTAT -a $remote_file || error
13626 }
13627 run_test 310a "open unlink remote file"
13628
13629 test_310b() {
13630         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 4 MDTs" && return
13631         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13632         local remote_file=$DIR/$tdir/tgt_dir/b
13633
13634         mkdir -p $DIR/$tdir
13635
13636         prepare_remote_file || error "prepare remote file failed"
13637
13638         ln $remote_file $DIR/$tfile || error "link failed for remote file"
13639         $MULTIOP $DIR/$tfile Ouc || error "mulitop failed"
13640         $CHECKSTAT -t file $remote_file || error "check file failed"
13641 }
13642 run_test 310b "unlink remote file with multiple links while open"
13643
13644 test_310c() {
13645         [[ $MDSCOUNT -lt 4 ]] && skip "needs >= 4 MDTs" && return
13646         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13647         local remote_file=$DIR/$tdir/tgt_dir/b
13648
13649         mkdir -p $DIR/$tdir
13650
13651         prepare_remote_file || error "prepare remote file failed"
13652
13653         ln $remote_file $DIR/$tfile || error "link failed for remote file"
13654         multiop_bg_pause $remote_file O_uc ||
13655                         error "mulitop failed for remote file"
13656         MULTIPID=$!
13657         $MULTIOP $DIR/$tfile Ouc
13658         kill -USR1 $MULTIPID
13659         wait $MULTIPID
13660 }
13661 run_test 310c "open-unlink remote file with multiple links"
13662
13663 test_400a() { # LU-1606, was conf-sanity test_74
13664         local extra_flags=''
13665         local out=$TMP/$tfile
13666         local prefix=/usr/include/lustre
13667         local prog
13668
13669         if ! which $CC > /dev/null 2>&1; then
13670                 skip_env "$CC is not installed"
13671                 return 0
13672         fi
13673
13674         if ! [[ -d $prefix ]]; then
13675                 # Assume we're running in tree and fixup the include path.
13676                 extra_flags+=" -I$LUSTRE/../libcfs/include"
13677                 extra_flags+=" -I$LUSTRE/include"
13678                 extra_flags+=" -L$LUSTRE/utils"
13679         fi
13680
13681         for prog in $LUSTRE_TESTS_API_DIR/*.c; do
13682                 $CC -Wall -Werror $extra_flags -llustreapi -o $out $prog ||
13683                         error "client api broken"
13684         done
13685 }
13686 run_test 400a "Lustre client api program can compile and link"
13687
13688 test_400b() { # LU-1606, LU-5011
13689         local header
13690         local out=$TMP/$tfile
13691         local prefix=/usr/include/lustre
13692
13693         # We use a hard coded prefix so that this test will not fail
13694         # when run in tree. There are headers in lustre/include/lustre/
13695         # that are not packaged (like lustre_idl.h) and have more
13696         # complicated include dependencies (like config.h and lnet/types.h).
13697         # Since this test about correct packaging we just skip them when
13698         # they don't exist (see below) rather than try to fixup cppflags.
13699
13700         if ! which $CC > /dev/null 2>&1; then
13701                 skip_env "$CC is not installed"
13702                 return 0
13703         fi
13704
13705         for header in $prefix/*.h; do
13706                 if ! [[ -f "$header" ]]; then
13707                         continue
13708                 fi
13709
13710                 if [[ "$(basename $header)" == liblustreapi.h ]]; then
13711                         continue # liblustreapi.h is deprecated.
13712                 fi
13713
13714                 $CC -Wall -Werror -include $header -c -x c /dev/null -o $out ||
13715                         error "cannot compile '$header'"
13716         done
13717 }
13718 run_test 400b "packaged headers can be compiled"
13719
13720 #
13721 # tests that do cleanup/setup should be run at the end
13722 #
13723
13724 test_900() {
13725         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13726         local ls
13727         #define OBD_FAIL_MGC_PAUSE_PROCESS_LOG   0x903
13728         $LCTL set_param fail_loc=0x903
13729
13730         cancel_lru_locks MGC
13731
13732         FAIL_ON_ERROR=true cleanup
13733         FAIL_ON_ERROR=true setup
13734 }
13735 run_test 900 "umount should not race with any mgc requeue thread"
13736
13737 complete $SECONDS
13738 [ -f $EXT2_DEV ] && rm $EXT2_DEV || true
13739 check_and_cleanup_lustre
13740 if [ "$I_MOUNTED" != "yes" ]; then
13741         lctl set_param debug="$OLDDEBUG" 2> /dev/null || true
13742 fi
13743 exit_status