Whamcloud - gitweb
LU-7576 llapi: use dirname() in opendir_parent()
[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 is_sles11()                                             # LU-4341
20 {
21         if [ -r /etc/SuSE-release ]
22         then
23                 local vers=$(grep VERSION /etc/SuSE-release | awk '{print $3}')
24                 local patchlev=$(grep PATCHLEVEL /etc/SuSE-release |
25                         awk '{ print $3 }')
26                 if [ $vers -eq 11 ] && [ $patchlev -ge 3 ]; then
27                         return 0
28                 fi
29         fi
30         return 1
31 }
32
33 if is_sles11; then                                      # LU-4341
34         ALWAYS_EXCEPT="$ALWAYS_EXCEPT 170"
35 fi
36
37 SRCDIR=$(cd $(dirname $0); echo $PWD)
38 export PATH=$PATH:/sbin
39
40 TMP=${TMP:-/tmp}
41
42 CC=${CC:-cc}
43 CHECKSTAT=${CHECKSTAT:-"checkstat -v"}
44 CREATETEST=${CREATETEST:-createtest}
45 LFS=${LFS:-lfs}
46 LFIND=${LFIND:-"$LFS find"}
47 LVERIFY=${LVERIFY:-ll_dirstripe_verify}
48 LCTL=${LCTL:-lctl}
49 OPENFILE=${OPENFILE:-openfile}
50 OPENUNLINK=${OPENUNLINK:-openunlink}
51 export MULTIOP=${MULTIOP:-multiop}
52 READS=${READS:-"reads"}
53 MUNLINK=${MUNLINK:-munlink}
54 SOCKETSERVER=${SOCKETSERVER:-socketserver}
55 SOCKETCLIENT=${SOCKETCLIENT:-socketclient}
56 MEMHOG=${MEMHOG:-memhog}
57 DIRECTIO=${DIRECTIO:-directio}
58 ACCEPTOR_PORT=${ACCEPTOR_PORT:-988}
59 STRIPES_PER_OBJ=-1
60 CHECK_GRANT=${CHECK_GRANT:-"yes"}
61 GRANT_CHECK_LIST=${GRANT_CHECK_LIST:-""}
62 export PARALLEL=${PARALLEL:-"no"}
63
64 export NAME=${NAME:-local}
65
66 SAVE_PWD=$PWD
67
68 CLEANUP=${CLEANUP:-:}
69 SETUP=${SETUP:-:}
70 TRACE=${TRACE:-""}
71 LUSTRE=${LUSTRE:-$(cd $(dirname $0)/..; echo $PWD)}
72 LUSTRE_TESTS_API_DIR=${LUSTRE_TESTS_API_DIR:-${LUSTRE}/tests/clientapi}
73 . $LUSTRE/tests/test-framework.sh
74 init_test_env $@
75 . ${CONFIG:=$LUSTRE/tests/cfg/${NAME}.sh}
76 init_logging
77
78 [ "$SLOW" = "no" ] && EXCEPT_SLOW="24o 24D 27m 64b 68 71 77f 78 115 124b 300o"
79
80 if [ $(facet_fstype $SINGLEMDS) = "zfs" ]; then
81         # bug number for skipped test: LU-4536 LU-1957 LU-2805
82         ALWAYS_EXCEPT="$ALWAYS_EXCEPT  65ic    180     184c"
83         [ "$SLOW" = "no" ] && EXCEPT_SLOW="$EXCEPT_SLOW 51b 51ba"
84 fi
85
86 FAIL_ON_ERROR=false
87
88 cleanup() {
89         echo -n "cln.."
90         pgrep ll_sa > /dev/null && { echo "There are ll_sa thread not exit!"; exit 20; }
91         cleanupall ${FORCE} $* || { echo "FAILed to clean up"; exit 20; }
92 }
93 setup() {
94         echo -n "mnt.."
95         load_modules
96         setupall || exit 10
97         echo "done"
98 }
99
100 check_swap_layouts_support()
101 {
102         $LCTL get_param -n llite.*.sbi_flags | grep -q layout ||
103                 { skip "Does not support layout lock."; return 0; }
104         return 1
105 }
106
107 check_and_setup_lustre
108
109 DIR=${DIR:-$MOUNT}
110 assert_DIR
111
112 MDT0=$($LCTL get_param -n mdc.*.mds_server_uuid |
113         awk '{ gsub(/_UUID/,""); print $1 }' | head -n1)
114 MAXFREE=${MAXFREE:-$((200000 * $OSTCOUNT))}
115
116 [ -f $DIR/d52a/foo ] && chattr -a $DIR/d52a/foo
117 [ -f $DIR/d52b/foo ] && chattr -i $DIR/d52b/foo
118 rm -rf $DIR/[Rdfs][0-9]*
119
120 # $RUNAS_ID may get set incorrectly somewhere else
121 [ $UID -eq 0 -a $RUNAS_ID -eq 0 ] && error "\$RUNAS_ID set to 0, but \$UID is also 0!"
122
123 check_runas_id $RUNAS_ID $RUNAS_GID $RUNAS
124
125 build_test_filter
126
127 if [ "${ONLY}" = "MOUNT" ] ; then
128         echo "Lustre is up, please go on"
129         exit
130 fi
131
132 echo "preparing for tests involving mounts"
133 EXT2_DEV=${EXT2_DEV:-$TMP/SANITY.LOOP}
134 touch $EXT2_DEV
135 mke2fs -j -F $EXT2_DEV 8000 > /dev/null
136 echo # add a newline after mke2fs.
137
138 umask 077
139
140 OLDDEBUG=$(lctl get_param -n debug 2> /dev/null)
141 lctl set_param debug=-1 2> /dev/null || true
142 test_0a() {
143         touch $DIR/$tfile
144         $CHECKSTAT -t file $DIR/$tfile || error "$tfile is not a file"
145         rm $DIR/$tfile
146         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
147 }
148 run_test 0a "touch; rm ====================="
149
150 test_0b() {
151         chmod 0755 $DIR || error "chmod 0755 $DIR failed"
152         $CHECKSTAT -p 0755 $DIR || error "$DIR permission is not 0755"
153 }
154 run_test 0b "chmod 0755 $DIR ============================="
155
156 test_0c() {
157         $LCTL get_param mdc.*.import | grep "state: FULL" ||
158                 error "import not FULL"
159         $LCTL get_param mdc.*.import | grep "target: $FSNAME-MDT" ||
160                 error "bad target"
161 }
162 run_test 0c "check import proc ============================="
163
164 test_1() {
165         test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
166         test_mkdir -p $DIR/$tdir/d2 || error "mkdir $tdir/d2 failed"
167         test_mkdir $DIR/$tdir/d2 && error "we expect EEXIST, but not returned"
168         $CHECKSTAT -t dir $DIR/$tdir/d2 || error "$tdir/d2 is not a dir"
169         rmdir $DIR/$tdir/d2
170         rmdir $DIR/$tdir
171         $CHECKSTAT -a $DIR/$tdir || error "$tdir was not removed"
172 }
173 run_test 1 "mkdir; remkdir; rmdir =============================="
174
175 test_2() {
176         test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
177         touch $DIR/$tdir/$tfile || error "touch $tdir/$tfile failed"
178         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "$tdir/$tfile not a file"
179         rm -r $DIR/$tdir
180         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$file is not removed"
181 }
182 run_test 2 "mkdir; touch; rmdir; check file ===================="
183
184 test_3() {
185         test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
186         $CHECKSTAT -t dir $DIR/$tdir || error "$tdir is not a directory"
187         touch $DIR/$tdir/$tfile
188         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "$tdir/$tfile not a file"
189         rm -r $DIR/$tdir
190         $CHECKSTAT -a $DIR/$tdir || error "$tdir is not removed"
191 }
192 run_test 3 "mkdir; touch; rmdir; check dir ====================="
193
194 # LU-4471 - failed rmdir on remote directories still removes directory on MDT0
195 test_4() {
196         local MDTIDX=1
197
198         test_mkdir $DIR/$tdir ||
199                 error "Create remote directory failed"
200
201         touch $DIR/$tdir/$tfile ||
202                 error "Create file under remote directory failed"
203
204         rmdir $DIR/$tdir &&
205                 error "Expect error removing in-use dir $DIR/$tdir"
206
207         test -d $DIR/$tdir || error "Remote directory disappeared"
208
209         rm -rf $DIR/$tdir || error "remove remote dir error"
210 }
211 run_test 4 "mkdir; touch dir/file; rmdir; checkdir (expect error)"
212
213 test_5() {
214         test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
215         test_mkdir $DIR/$tdir/d2 || error "mkdir $tdir/d2 failed"
216         chmod 0707 $DIR/$tdir/d2 || error "chmod 0707 $tdir/d2 failed"
217         $CHECKSTAT -t dir -p 0707 $DIR/$tdir/d2 || error "$tdir/d2 not mode 707"
218         $CHECKSTAT -t dir $DIR/$tdir/d2 || error "$tdir/d2 is not a directory"
219 }
220 run_test 5 "mkdir .../d5 .../d5/d2; chmod .../d5/d2 ============"
221
222 test_6a() {
223         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
224         chmod 0666 $DIR/$tfile || error "chmod 0666 $tfile failed"
225         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile ||
226                 error "$tfile does not have perm 0666 or UID $UID"
227         $RUNAS chmod 0444 $DIR/$tfile && error "chmod $tfile worked on UID $UID"
228         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile ||
229                 error "$tfile should be 0666 and owned by UID $UID"
230 }
231 run_test 6a "touch f6a; chmod f6a; $RUNAS chmod f6a (should return error) =="
232
233 test_6c() {
234         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
235         touch $DIR/$tfile
236         chown $RUNAS_ID $DIR/$tfile || error "chown $RUNAS_ID $file failed"
237         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/$tfile ||
238                 error "$tfile should be owned by UID $RUNAS_ID"
239         $RUNAS chown $UID $DIR/$tfile && error "chown $UID $file succeeded"
240         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/$tfile ||
241                 error "$tfile should be owned by UID $RUNAS_ID"
242 }
243 run_test 6c "touch f6c; chown f6c; $RUNAS chown f6c (should return error) =="
244
245 test_6e() {
246         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
247         touch $DIR/$tfile
248         chgrp $RUNAS_ID $DIR/$tfile || error "chgrp $RUNAS_ID $file failed"
249         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile ||
250                 error "$tfile should be owned by GID $UID"
251         $RUNAS chgrp $UID $DIR/$tfile && error "chgrp $UID $file succeeded"
252         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile ||
253                 error "$tfile should be owned by UID $UID and GID $RUNAS_ID"
254 }
255 run_test 6e "touch f6e; chgrp f6e; $RUNAS chgrp f6e (should return error) =="
256
257 test_6g() {
258         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
259         test_mkdir $DIR/$tdir || error "mkdir $tfile failed"
260         chmod 777 $DIR/$tdir || error "chmod 0777 $tdir failed"
261         $RUNAS mkdir $DIR/$tdir/d || error "mkdir $tdir/d failed"
262         chmod g+s $DIR/$tdir/d || error "chmod g+s $tdir/d failed"
263         test_mkdir $DIR/$tdir/d/subdir || error "mkdir $tdir/d/subdir failed"
264         $CHECKSTAT -g \#$RUNAS_GID $DIR/$tdir/d/subdir ||
265                 error "$tdir/d/subdir should be GID $RUNAS_GID"
266 }
267 run_test 6g "Is new dir in sgid dir inheriting group?"
268
269 test_6h() { # bug 7331
270         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
271         touch $DIR/$tfile || error "touch failed"
272         chown $RUNAS_ID:$RUNAS_GID $DIR/$tfile || error "initial chown failed"
273         $RUNAS -G$RUNAS_GID chown $RUNAS_ID:0 $DIR/$tfile &&
274                 error "chown $RUNAS_ID:0 $tfile worked as GID $RUNAS_GID"
275         $CHECKSTAT -t file -u \#$RUNAS_ID -g \#$RUNAS_GID $DIR/$tfile ||
276                 error "$tdir/$tfile should be UID $RUNAS_UID GID $RUNAS_GID"
277 }
278 run_test 6h "$RUNAS chown RUNAS_ID.0 .../f6h (should return error)"
279
280 test_7a() {
281         test_mkdir $DIR/$tdir
282         $MCREATE $DIR/$tdir/$tfile
283         chmod 0666 $DIR/$tdir/$tfile
284         $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile ||
285                 error "$tdir/$tfile should be mode 0666"
286 }
287 run_test 7a "mkdir .../d7; mcreate .../d7/f; chmod .../d7/f ===="
288
289 test_7b() {
290         if [ ! -d $DIR/$tdir ]; then
291                 test_mkdir $DIR/$tdir
292         fi
293         $MCREATE $DIR/$tdir/$tfile
294         echo -n foo > $DIR/$tdir/$tfile
295         [ "$(cat $DIR/$tdir/$tfile)" = "foo" ] || error "$tdir/$tfile not 'foo'"
296         $CHECKSTAT -t file -s 3 $DIR/$tdir/$tfile || error "$tfile size not 3"
297 }
298 run_test 7b "mkdir .../d7; mcreate d7/f2; echo foo > d7/f2 ====="
299
300 test_8() {
301         test_mkdir $DIR/$tdir
302         touch $DIR/$tdir/$tfile
303         chmod 0666 $DIR/$tdir/$tfile
304         $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile ||
305                 error "$tfile mode not 0666"
306 }
307 run_test 8 "mkdir .../d8; touch .../d8/f; chmod .../d8/f ======="
308
309 test_9() {
310         test_mkdir $DIR/$tdir
311         test_mkdir $DIR/$tdir/d2
312         test_mkdir $DIR/$tdir/d2/d3
313         $CHECKSTAT -t dir $DIR/$tdir/d2/d3 || error "$tdir/d2/d3 not a dir"
314 }
315 run_test 9 "mkdir .../d9 .../d9/d2 .../d9/d2/d3 ================"
316
317 test_10() {
318         test_mkdir $DIR/$tdir
319         test_mkdir $DIR/$tdir/d2
320         touch $DIR/$tdir/d2/$tfile
321         $CHECKSTAT -t file $DIR/$tdir/d2/$tfile ||
322                 error "$tdir/d2/$tfile not a file"
323 }
324 run_test 10 "mkdir .../d10 .../d10/d2; touch .../d10/d2/f ======"
325
326 test_11() {
327         test_mkdir $DIR/$tdir
328         test_mkdir $DIR/$tdir/d2
329         chmod 0666 $DIR/$tdir/d2
330         chmod 0705 $DIR/$tdir/d2
331         $CHECKSTAT -t dir -p 0705 $DIR/$tdir/d2 ||
332                 error "$tdir/d2 mode not 0705"
333 }
334 run_test 11 "mkdir .../d11 d11/d2; chmod .../d11/d2 ============"
335
336 test_12() {
337         test_mkdir $DIR/$tdir
338         touch $DIR/$tdir/$tfile
339         chmod 0666 $DIR/$tdir/$tfile
340         chmod 0654 $DIR/$tdir/$tfile
341         $CHECKSTAT -t file -p 0654 $DIR/$tdir/$tfile ||
342                 error "$tdir/d2 mode not 0654"
343 }
344 run_test 12 "touch .../d12/f; chmod .../d12/f .../d12/f ========"
345
346 test_13() {
347         test_mkdir $DIR/$tdir
348         dd if=/dev/zero of=$DIR/$tdir/$tfile count=10
349         >  $DIR/$tdir/$tfile
350         $CHECKSTAT -t file -s 0 $DIR/$tdir/$tfile ||
351                 error "$tdir/$tfile size not 0 after truncate"
352 }
353 run_test 13 "creat .../d13/f; dd .../d13/f; > .../d13/f ========"
354
355 test_14() {
356         test_mkdir $DIR/$tdir
357         touch $DIR/$tdir/$tfile
358         rm $DIR/$tdir/$tfile
359         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$tfile not removed"
360 }
361 run_test 14 "touch .../d14/f; rm .../d14/f; rm .../d14/f ======="
362
363 test_15() {
364         test_mkdir $DIR/$tdir
365         touch $DIR/$tdir/$tfile
366         mv $DIR/$tdir/$tfile $DIR/$tdir/${tfile}_2
367         $CHECKSTAT -t file $DIR/$tdir/${tfile}_2 ||
368                 error "$tdir/${tfile_2} not a file after rename"
369         rm $DIR/$tdir/${tfile}_2 || error "unlink failed after rename"
370 }
371 run_test 15 "touch .../d15/f; mv .../d15/f .../d15/f2 =========="
372
373 test_16() {
374         test_mkdir $DIR/$tdir
375         touch $DIR/$tdir/$tfile
376         rm -rf $DIR/$tdir/$tfile
377         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$tfile not removed"
378 }
379 run_test 16 "touch .../d16/f; rm -rf .../d16/f ================="
380
381 test_17a() {
382         test_mkdir -p $DIR/$tdir
383         touch $DIR/$tdir/$tfile
384         ln -s $DIR/$tdir/$tfile $DIR/$tdir/l-exist
385         ls -l $DIR/$tdir
386         $CHECKSTAT -l $DIR/$tdir/$tfile $DIR/$tdir/l-exist ||
387                 error "$tdir/l-exist not a symlink"
388         $CHECKSTAT -f -t f $DIR/$tdir/l-exist ||
389                 error "$tdir/l-exist not referencing a file"
390         rm -f $DIR/$tdir/l-exist
391         $CHECKSTAT -a $DIR/$tdir/l-exist || error "$tdir/l-exist not removed"
392 }
393 run_test 17a "symlinks: create, remove (real) =================="
394
395 test_17b() {
396         test_mkdir -p $DIR/$tdir
397         ln -s no-such-file $DIR/$tdir/l-dangle
398         ls -l $DIR/$tdir
399         $CHECKSTAT -l no-such-file $DIR/$tdir/l-dangle ||
400                 error "$tdir/l-dangle not referencing no-such-file"
401         $CHECKSTAT -fa $DIR/$tdir/l-dangle ||
402                 error "$tdir/l-dangle not referencing non-existent file"
403         rm -f $DIR/$tdir/l-dangle
404         $CHECKSTAT -a $DIR/$tdir/l-dangle || error "$tdir/l-dangle not removed"
405 }
406 run_test 17b "symlinks: create, remove (dangling) =============="
407
408 test_17c() { # bug 3440 - don't save failed open RPC for replay
409         test_mkdir -p $DIR/$tdir
410         ln -s foo $DIR/$tdir/$tfile
411         cat $DIR/$tdir/$tfile && error "opened non-existent symlink" || true
412 }
413 run_test 17c "symlinks: open dangling (should return error) ===="
414
415 test_17d() {
416         test_mkdir -p $DIR/$tdir
417         ln -s foo $DIR/$tdir/$tfile
418         touch $DIR/$tdir/$tfile || error "creating to new symlink"
419 }
420 run_test 17d "symlinks: create dangling ========================"
421
422 test_17e() {
423         test_mkdir -p $DIR/$tdir
424         local foo=$DIR/$tdir/$tfile
425         ln -s $foo $foo || error "create symlink failed"
426         ls -l $foo || error "ls -l failed"
427         ls $foo && error "ls not failed" || true
428 }
429 run_test 17e "symlinks: create recursive symlink (should return error) ===="
430
431 test_17f() {
432         test_mkdir -p $DIR/$tdir
433         ln -s 1234567890/2234567890/3234567890/4234567890 $DIR/$tdir/111
434         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890 $DIR/$tdir/222
435         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890 $DIR/$tdir/333
436         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890 $DIR/$tdir/444
437         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890/c234567890/d234567890/f234567890 $DIR/$tdir/555
438         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
439         ls -l  $DIR/$tdir
440 }
441 run_test 17f "symlinks: long and very long symlink name ========================"
442
443 # str_repeat(S, N) generate a string that is string S repeated N times
444 str_repeat() {
445         local s=$1
446         local n=$2
447         local ret=''
448         while [ $((n -= 1)) -ge 0 ]; do
449                 ret=$ret$s
450         done
451         echo $ret
452 }
453
454 # Long symlinks and LU-2241
455 test_17g() {
456         test_mkdir -p $DIR/$tdir
457         local TESTS="59 60 61 4094 4095"
458
459         # Fix for inode size boundary in 2.1.4
460         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.1.4) ] &&
461                 TESTS="4094 4095"
462
463         # Patch not applied to 2.2 or 2.3 branches
464         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
465         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.3.55) ] &&
466                 TESTS="4094 4095"
467
468         # skip long symlink name for rhel6.5.
469         # rhel6.5 has a limit (PATH_MAX - sizeof(struct filename))
470         grep -q '6.5' /etc/redhat-release &>/dev/null &&
471                 TESTS="59 60 61 4062 4063"
472
473         for i in $TESTS; do
474                 local SYMNAME=$(str_repeat 'x' $i)
475                 ln -s $SYMNAME $DIR/$tdir/f$i || error "failed $i-char symlink"
476                 readlink $DIR/$tdir/f$i || error "failed $i-char readlink"
477         done
478 }
479 run_test 17g "symlinks: really long symlink name and inode boundaries"
480
481 test_17h() { #bug 17378
482         remote_mds_nodsh && skip "remote MDS with nodsh" && return
483         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
484         local mdt_idx
485         test_mkdir -p $DIR/$tdir
486         if [[ $MDSCOUNT -gt 1 ]]; then
487                 mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
488         else
489                 mdt_idx=0
490         fi
491         $SETSTRIPE -c -1 $DIR/$tdir
492 #define OBD_FAIL_MDS_LOV_PREP_CREATE 0x141
493         do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000141
494         touch $DIR/$tdir/$tfile || true
495 }
496 run_test 17h "create objects: lov_free_memmd() doesn't lbug"
497
498 test_17i() { #bug 20018
499         remote_mds_nodsh && skip "remote MDS with nodsh" && return
500         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
501         test_mkdir -c1 $DIR/$tdir
502         local foo=$DIR/$tdir/$tfile
503         local mdt_idx
504         if [[ $MDSCOUNT -gt 1 ]]; then
505                 mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
506         else
507                 mdt_idx=0
508         fi
509         ln -s $foo $foo || error "create symlink failed"
510 #define OBD_FAIL_MDS_READLINK_EPROTO     0x143
511         do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000143
512         ls -l $foo && error "error not detected"
513         return 0
514 }
515 run_test 17i "don't panic on short symlink"
516
517 test_17k() { #bug 22301
518         [[ -z "$(which rsync 2>/dev/null)" ]] &&
519                 skip "no rsync command" && return 0
520         rsync --help | grep -q xattr ||
521                 skip_env "$(rsync --version | head -n1) does not support xattrs"
522         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return 0
523         test_mkdir -p $DIR/$tdir
524         test_mkdir -p $DIR/$tdir.new
525         touch $DIR/$tdir/$tfile
526         ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
527         rsync -av -X $DIR/$tdir/ $DIR/$tdir.new ||
528                 error "rsync failed with xattrs enabled"
529 }
530 run_test 17k "symlinks: rsync with xattrs enabled ========================="
531
532 test_17l() { # LU-279
533         [[ -z "$(which getfattr 2>/dev/null)" ]] &&
534                 skip "no getfattr command" && return 0
535         test_mkdir -p $DIR/$tdir
536         touch $DIR/$tdir/$tfile
537         ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
538         for path in "$DIR/$tdir" "$DIR/$tdir/$tfile" "$DIR/$tdir/$tfile.lnk"; do
539                 # -h to not follow symlinks. -m '' to list all the xattrs.
540                 # grep to remove first line: '# file: $path'.
541                 for xattr in `getfattr -hm '' $path 2>/dev/null | grep -v '^#'`;
542                 do
543                         lgetxattr_size_check $path $xattr ||
544                                 error "lgetxattr_size_check $path $xattr failed"
545                 done
546         done
547 }
548 run_test 17l "Ensure lgetxattr's returned xattr size is consistent ========"
549
550 # LU-1540
551 test_17m() {
552         local short_sym="0123456789"
553         local WDIR=$DIR/${tdir}m
554         local i
555
556         remote_mds_nodsh && skip "remote MDS with nodsh" && return
557         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
558         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.2.93) ] &&
559                 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks" && return
560
561         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
562                 skip "only for ldiskfs MDT" && return 0
563
564         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
565
566         test_mkdir -p $WDIR
567         long_sym=$short_sym
568         # create a long symlink file
569         for ((i = 0; i < 4; ++i)); do
570                 long_sym=${long_sym}${long_sym}
571         done
572
573         echo "create 512 short and long symlink files under $WDIR"
574         for ((i = 0; i < 256; ++i)); do
575                 ln -sf ${long_sym}"a5a5" $WDIR/long-$i
576                 ln -sf ${short_sym}"a5a5" $WDIR/short-$i
577         done
578
579         echo "erase them"
580         rm -f $WDIR/*
581         sync
582         wait_delete_completed
583
584         echo "recreate the 512 symlink files with a shorter string"
585         for ((i = 0; i < 512; ++i)); do
586                 # rewrite the symlink file with a shorter string
587                 ln -sf ${long_sym} $WDIR/long-$i || error "long_sym failed"
588                 ln -sf ${short_sym} $WDIR/short-$i || error "short_sym failed"
589         done
590
591         local mds_index=$(($($LFS getstripe -M $WDIR) + 1))
592         local devname=$(mdsdevname $mds_index)
593
594         echo "stop and checking mds${mds_index}:"
595         # e2fsck should not return error
596         stop mds${mds_index}
597         run_e2fsck $(facet_active_host mds${mds_index}) $devname -n
598         rc=$?
599
600         start mds${mds_index} $devname $MDS_MOUNT_OPTS || error "start failed"
601         df $MOUNT > /dev/null 2>&1
602         [ $rc -eq 0 ] ||
603                 error "e2fsck detected error for short/long symlink: rc=$rc"
604 }
605 run_test 17m "run e2fsck against MDT which contains short/long symlink"
606
607 check_fs_consistency_17n() {
608         local mdt_index
609         local rc=0
610
611         # create/unlink in 17n only change 2 MDTs(MDT1/MDT2),
612         # so it only check MDT1/MDT2 instead of all of MDTs.
613         for mdt_index in 1 2; do
614                 local devname=$(mdsdevname $mdt_index)
615                 # e2fsck should not return error
616                 stop mds${mdt_index}
617                 run_e2fsck $(facet_active_host mds$mdt_index) $devname -n ||
618                         rc=$((rc + $?))
619
620                 start mds${mdt_index} $devname $MDS_MOUNT_OPTS ||
621                         error "mount mds$mdt_index failed"
622                 df $MOUNT > /dev/null 2>&1
623         done
624         return $rc
625 }
626
627 test_17n() {
628         local i
629
630         remote_mds_nodsh && skip "remote MDS with nodsh" && return
631         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
632         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.2.93) ] &&
633                 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks" && return
634
635         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
636                 skip "only for ldiskfs MDT" && return 0
637
638         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
639
640         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
641
642         test_mkdir $DIR/$tdir
643         for ((i=0; i<10; i++)); do
644                 $LFS mkdir -i1 -c2 $DIR/$tdir/remote_dir_${i} ||
645                         error "create remote dir error $i"
646                 createmany -o $DIR/$tdir/remote_dir_${i}/f 10 ||
647                         error "create files under remote dir failed $i"
648         done
649
650         check_fs_consistency_17n ||
651                 error "e2fsck report error after create files under remote dir"
652
653         for ((i = 0; i < 10; i++)); do
654                 rm -rf $DIR/$tdir/remote_dir_${i} ||
655                         error "destroy remote dir error $i"
656         done
657
658         check_fs_consistency_17n ||
659                 error "e2fsck report error after unlink files under remote dir"
660
661         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.50) ] &&
662                 skip "lustre < 2.4.50 does not support migrate mv " && return
663
664         for ((i = 0; i < 10; i++)); do
665                 mkdir -p $DIR/$tdir/remote_dir_${i}
666                 createmany -o $DIR/$tdir/remote_dir_${i}/f 10 ||
667                         error "create files under remote dir failed $i"
668                 $LFS migrate --mdt-index 1 $DIR/$tdir/remote_dir_${i} ||
669                         error "migrate remote dir error $i"
670         done
671         check_fs_consistency_17n || error "e2fsck report error after migration"
672
673         for ((i = 0; i < 10; i++)); do
674                 rm -rf $DIR/$tdir/remote_dir_${i} ||
675                         error "destroy remote dir error $i"
676         done
677
678         check_fs_consistency_17n || error "e2fsck report error after unlink"
679 }
680 run_test 17n "run e2fsck against master/slave MDT which contains remote dir"
681
682 test_17o() {
683         remote_mds_nodsh && skip "remote MDS with nodsh" && return
684         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.64) ] &&
685                 skip "Need MDS version at least 2.3.64" && return
686
687         local WDIR=$DIR/${tdir}o
688         local mdt_index
689         local rc=0
690
691         test_mkdir -p $WDIR
692         mdt_index=$($LFS getstripe -M $WDIR)
693         mdt_index=$((mdt_index+1))
694
695         touch $WDIR/$tfile
696
697         #fail mds will wait the failover finish then set
698         #following fail_loc to avoid interfer the recovery process.
699         fail mds${mdt_index}
700
701         #define OBD_FAIL_OSD_LMA_INCOMPAT 0x194
702         do_facet mds${mdt_index} lctl set_param fail_loc=0x194
703         ls -l $WDIR/$tfile && rc=1
704         do_facet mds${mdt_index} lctl set_param fail_loc=0
705         [[ $rc -ne 0 ]] && error "stat file should fail"
706         true
707 }
708 run_test 17o "stat file with incompat LMA feature"
709
710 test_18() {
711         touch $DIR/$tfile || error "Failed to touch $DIR/$tfile: $?"
712         ls $DIR || error "Failed to ls $DIR: $?"
713 }
714 run_test 18 "touch .../f ; ls ... =============================="
715
716 test_19a() {
717         touch $DIR/$tfile
718         ls -l $DIR
719         rm $DIR/$tfile
720         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
721 }
722 run_test 19a "touch .../f19 ; ls -l ... ; rm .../f19 ==========="
723
724 test_19b() {
725         ls -l $DIR/$tfile && error "ls -l $tfile failed"|| true
726 }
727 run_test 19b "ls -l .../f19 (should return error) =============="
728
729 test_19c() {
730         [ $RUNAS_ID -eq $UID ] &&
731                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
732         $RUNAS touch $DIR/$tfile && error "create non-root file failed" || true
733 }
734 run_test 19c "$RUNAS touch .../f19 (should return error) =="
735
736 test_19d() {
737         cat $DIR/f19 && error || true
738 }
739 run_test 19d "cat .../f19 (should return error) =============="
740
741 test_20() {
742         touch $DIR/$tfile
743         rm $DIR/$tfile
744         log "1 done"
745         touch $DIR/$tfile
746         rm $DIR/$tfile
747         log "2 done"
748         touch $DIR/$tfile
749         rm $DIR/$tfile
750         log "3 done"
751         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
752 }
753 run_test 20 "touch .../f ; ls -l ... ==========================="
754
755 test_21() {
756         test_mkdir -p $DIR/$tdir
757         [ -f $DIR/$tdir/dangle ] && rm -f $DIR/$tdir/dangle
758         ln -s dangle $DIR/$tdir/link
759         echo foo >> $DIR/$tdir/link
760         cat $DIR/$tdir/dangle
761         $CHECKSTAT -t link $DIR/$tdir/link || error "$tdir/link not a link"
762         $CHECKSTAT -f -t file $DIR/$tdir/link ||
763                 error "$tdir/link not linked to a file"
764 }
765 run_test 21 "write to dangling link ============================"
766
767 test_22() {
768         WDIR=$DIR/$tdir
769         test_mkdir -p $DIR/$tdir
770         chown $RUNAS_ID:$RUNAS_GID $WDIR
771         (cd $WDIR || error "cd $WDIR failed";
772         $RUNAS tar cf - /etc/hosts /etc/sysconfig/network | \
773         $RUNAS tar xf -)
774         ls -lR $WDIR/etc || error "ls -lR $WDIR/etc failed"
775         $CHECKSTAT -t dir $WDIR/etc || error "checkstat -t dir failed"
776         $CHECKSTAT -u \#$RUNAS_ID -g \#$RUNAS_GID $WDIR/etc || error "checkstat -u failed"
777 }
778 run_test 22 "unpack tar archive as non-root user ==============="
779
780 # was test_23
781 test_23a() {
782         test_mkdir -p $DIR/$tdir
783         local file=$DIR/$tdir/$tfile
784
785         openfile -f O_CREAT:O_EXCL $file || error "$file create failed"
786         openfile -f O_CREAT:O_EXCL $file &&
787                 error "$file recreate succeeded" || true
788 }
789 run_test 23a "O_CREAT|O_EXCL in subdir =========================="
790
791 test_23b() { # bug 18988
792         test_mkdir -p $DIR/$tdir
793         local file=$DIR/$tdir/$tfile
794
795         rm -f $file
796         echo foo > $file || error "write filed"
797         echo bar >> $file || error "append filed"
798         $CHECKSTAT -s 8 $file || error "wrong size"
799         rm $file
800 }
801 run_test 23b "O_APPEND check =========================="
802
803 # rename sanity
804 test_24a() {
805         echo '-- same directory rename'
806         test_mkdir $DIR/$tdir
807         touch $DIR/$tdir/$tfile.1
808         mv $DIR/$tdir/$tfile.1 $DIR/$tdir/$tfile.2
809         $CHECKSTAT -t file $DIR/$tdir/$tfile.2 || error "$tfile.2 not a file"
810 }
811 run_test 24a "rename file to non-existent target"
812
813 test_24b() {
814         test_mkdir $DIR/$tdir
815         touch $DIR/$tdir/$tfile.{1,2}
816         mv $DIR/$tdir/$tfile.1 $DIR/$tdir/$tfile.2
817         $CHECKSTAT -a $DIR/$tdir/$tfile.1 || error "$tfile.1 exists"
818         $CHECKSTAT -t file $DIR/$tdir/$tfile.2 || error "$tfile.2 not a file"
819 }
820 run_test 24b "rename file to existing target"
821
822 test_24c() {
823         test_mkdir $DIR/$tdir
824         test_mkdir $DIR/$tdir/d$testnum.1
825         mv $DIR/$tdir/d$testnum.1 $DIR/$tdir/d$testnum.2
826         $CHECKSTAT -a $DIR/$tdir/d$testnum.1 || error "d$testnum.1 exists"
827         $CHECKSTAT -t dir $DIR/$tdir/d$testnum.2 || error "d$testnum.2 not dir"
828 }
829 run_test 24c "rename directory to non-existent target"
830
831 test_24d() {
832         test_mkdir -c1 $DIR/$tdir
833         test_mkdir -c1 $DIR/$tdir/d$testnum.1
834         test_mkdir -c1 $DIR/$tdir/d$testnum.2
835         mrename $DIR/$tdir/d$testnum.1 $DIR/$tdir/d$testnum.2
836         $CHECKSTAT -a $DIR/$tdir/d$testnum.1 || error "d$testnum.1 exists"
837         $CHECKSTAT -t dir $DIR/$tdir/d$testnum.2 || error "d$testnum.2 not dir"
838 }
839 run_test 24d "rename directory to existing target"
840
841 test_24e() {
842         echo '-- cross directory renames --'
843         test_mkdir $DIR/R5a
844         test_mkdir $DIR/R5b
845         touch $DIR/R5a/f
846         mv $DIR/R5a/f $DIR/R5b/g
847         $CHECKSTAT -a $DIR/R5a/f || error
848         $CHECKSTAT -t file $DIR/R5b/g || error
849 }
850 run_test 24e "touch .../R5a/f; rename .../R5a/f .../R5b/g ======"
851
852 test_24f() {
853         test_mkdir $DIR/R6a
854         test_mkdir $DIR/R6b
855         touch $DIR/R6a/f $DIR/R6b/g
856         mv $DIR/R6a/f $DIR/R6b/g
857         $CHECKSTAT -a $DIR/R6a/f || error
858         $CHECKSTAT -t file $DIR/R6b/g || error
859 }
860 run_test 24f "touch .../R6a/f R6b/g; mv .../R6a/f .../R6b/g ===="
861
862 test_24g() {
863         test_mkdir $DIR/R7a
864         test_mkdir $DIR/R7b
865         test_mkdir $DIR/R7a/d
866         mv $DIR/R7a/d $DIR/R7b/e
867         $CHECKSTAT -a $DIR/R7a/d || error
868         $CHECKSTAT -t dir $DIR/R7b/e || error
869 }
870 run_test 24g "mkdir .../R7{a,b}/d; mv .../R7a/d .../R7b/e ======"
871
872 test_24h() {
873         test_mkdir -c1 $DIR/R8a
874         test_mkdir -c1 $DIR/R8b
875         test_mkdir -c1 $DIR/R8a/d
876         test_mkdir -c1 $DIR/R8b/e
877         mrename $DIR/R8a/d $DIR/R8b/e
878         $CHECKSTAT -a $DIR/R8a/d || error
879         $CHECKSTAT -t dir $DIR/R8b/e || error
880 }
881 run_test 24h "mkdir .../R8{a,b}/{d,e}; rename .../R8a/d .../R8b/e"
882
883 test_24i() {
884         echo "-- rename error cases"
885         test_mkdir $DIR/R9
886         test_mkdir $DIR/R9/a
887         touch $DIR/R9/f
888         mrename $DIR/R9/f $DIR/R9/a
889         $CHECKSTAT -t file $DIR/R9/f || error
890         $CHECKSTAT -t dir  $DIR/R9/a || error
891         $CHECKSTAT -a $DIR/R9/a/f || error
892 }
893 run_test 24i "rename file to dir error: touch f ; mkdir a ; rename f a"
894
895 test_24j() {
896         test_mkdir $DIR/R10
897         mrename $DIR/R10/f $DIR/R10/g
898         $CHECKSTAT -t dir $DIR/R10 || error
899         $CHECKSTAT -a $DIR/R10/f || error
900         $CHECKSTAT -a $DIR/R10/g || error
901 }
902 run_test 24j "source does not exist ============================"
903
904 test_24k() {
905         test_mkdir $DIR/R11a
906         test_mkdir $DIR/R11a/d
907         touch $DIR/R11a/f
908         mv $DIR/R11a/f $DIR/R11a/d
909         $CHECKSTAT -a $DIR/R11a/f || error
910         $CHECKSTAT -t file $DIR/R11a/d/f || error
911 }
912 run_test 24k "touch .../R11a/f; mv .../R11a/f .../R11a/d ======="
913
914 # bug 2429 - rename foo foo foo creates invalid file
915 test_24l() {
916         f="$DIR/f24l"
917         $MULTIOP $f OcNs || error
918 }
919 run_test 24l "Renaming a file to itself ========================"
920
921 test_24m() {
922         f="$DIR/f24m"
923         $MULTIOP $f OcLN ${f}2 ${f}2 || error "link ${f}2 ${f}2 failed"
924         # on ext3 this does not remove either the source or target files
925         # though the "expected" operation would be to remove the source
926         $CHECKSTAT -t file ${f} || error "${f} missing"
927         $CHECKSTAT -t file ${f}2 || error "${f}2 missing"
928 }
929 run_test 24m "Renaming a file to a hard link to itself ========="
930
931 test_24n() {
932     f="$DIR/f24n"
933     # this stats the old file after it was renamed, so it should fail
934     touch ${f}
935     $CHECKSTAT ${f}
936     mv ${f} ${f}.rename
937     $CHECKSTAT ${f}.rename
938     $CHECKSTAT -a ${f}
939 }
940 run_test 24n "Statting the old file after renaming (Posix rename 2)"
941
942 test_24o() {
943         test_mkdir -p $DIR/d24o
944         rename_many -s random -v -n 10 $DIR/d24o
945 }
946 run_test 24o "rename of files during htree split ==============="
947
948 test_24p() {
949         test_mkdir $DIR/R12a
950         test_mkdir $DIR/R12b
951         DIRINO=`ls -lid $DIR/R12a | awk '{ print $1 }'`
952         mrename $DIR/R12a $DIR/R12b
953         $CHECKSTAT -a $DIR/R12a || error
954         $CHECKSTAT -t dir $DIR/R12b || error
955         DIRINO2=`ls -lid $DIR/R12b | awk '{ print $1 }'`
956         [ "$DIRINO" = "$DIRINO2" ] || error "R12a $DIRINO != R12b $DIRINO2"
957 }
958 run_test 24p "mkdir .../R12{a,b}; rename .../R12a .../R12b"
959
960 cleanup_multiop_pause() {
961         trap 0
962         kill -USR1 $MULTIPID
963 }
964
965 test_24q() {
966         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
967         test_mkdir $DIR/R13a
968         test_mkdir $DIR/R13b
969         local DIRINO=$(ls -lid $DIR/R13a | awk '{ print $1 }')
970         multiop_bg_pause $DIR/R13b D_c || error "multiop failed to start"
971         MULTIPID=$!
972
973         trap cleanup_multiop_pause EXIT
974         mrename $DIR/R13a $DIR/R13b
975         $CHECKSTAT -a $DIR/R13a || error "R13a still exists"
976         $CHECKSTAT -t dir $DIR/R13b || error "R13b does not exist"
977         local DIRINO2=$(ls -lid $DIR/R13b | awk '{ print $1 }')
978         [ "$DIRINO" = "$DIRINO2" ] || error "R13a $DIRINO != R13b $DIRINO2"
979         cleanup_multiop_pause
980         wait $MULTIPID || error "multiop close failed"
981 }
982 run_test 24q "mkdir .../R13{a,b}; open R13b rename R13a R13b ==="
983
984 test_24r() { #bug 3789
985         test_mkdir $DIR/R14a
986         test_mkdir $DIR/R14a/b
987         mrename $DIR/R14a $DIR/R14a/b && error "rename to subdir worked!"
988         $CHECKSTAT -t dir $DIR/R14a || error "$DIR/R14a missing"
989         $CHECKSTAT -t dir $DIR/R14a/b || error "$DIR/R14a/b missing"
990 }
991 run_test 24r "mkdir .../R14a/b; rename .../R14a .../R14a/b ====="
992
993 test_24s() {
994         test_mkdir $DIR/R15a
995         test_mkdir $DIR/R15a/b
996         test_mkdir $DIR/R15a/b/c
997         mrename $DIR/R15a $DIR/R15a/b/c && error "rename to sub-subdir worked!"
998         $CHECKSTAT -t dir $DIR/R15a || error "$DIR/R15a missing"
999         $CHECKSTAT -t dir $DIR/R15a/b/c || error "$DIR/R15a/b/c missing"
1000 }
1001 run_test 24s "mkdir .../R15a/b/c; rename .../R15a .../R15a/b/c ="
1002 test_24t() {
1003         test_mkdir $DIR/R16a
1004         test_mkdir $DIR/R16a/b
1005         test_mkdir $DIR/R16a/b/c
1006         mrename $DIR/R16a/b/c $DIR/R16a && error "rename to sub-subdir worked!"
1007         $CHECKSTAT -t dir $DIR/R16a || error "$DIR/R16a missing"
1008         $CHECKSTAT -t dir $DIR/R16a/b/c || error "$DIR/R16a/b/c missing"
1009 }
1010 run_test 24t "mkdir .../R16a/b/c; rename .../R16a/b/c .../R16a ="
1011
1012 test_24u() { # bug12192
1013         $MULTIOP $DIR/$tfile C2w$((2048 * 1024))c || error
1014         $CHECKSTAT -s $((2048 * 1024)) $DIR/$tfile || error "wrong file size"
1015 }
1016 run_test 24u "create stripe file"
1017
1018 page_size() {
1019         getconf PAGE_SIZE
1020 }
1021
1022 simple_cleanup_common() {
1023         trap 0
1024         rm -rf $DIR/$tdir
1025         wait_delete_completed
1026 }
1027
1028 max_pages_per_rpc() {
1029         $LCTL get_param -n mdc.*.max_pages_per_rpc | head -n1
1030 }
1031
1032 test_24v() {
1033         local NRFILES=100000
1034         local FREE_INODES=$(mdt_free_inodes 0)
1035         [[ $FREE_INODES -lt $NRFILES ]] &&
1036                 skip "not enough free inodes $FREE_INODES required $NRFILES" &&
1037                 return
1038
1039         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1040         trap simple_cleanup_common EXIT
1041
1042         # Performance issue on ZFS see LU-4072 (c.f. LU-2887)
1043         [ $(facet_fstype $SINGLEMDS) = "zfs" ] && NRFILES=10000
1044
1045         test_mkdir -p $DIR/$tdir
1046         createmany -m $DIR/$tdir/$tfile $NRFILES
1047
1048         cancel_lru_locks mdc
1049         lctl set_param mdc.*.stats clear
1050
1051         ls $DIR/$tdir >/dev/null || error "error in listing large dir"
1052
1053         # LU-5 large readdir
1054         # DIRENT_SIZE = 32 bytes for sizeof(struct lu_dirent) +
1055         #               8 bytes for name(filename is mostly 5 in this test) +
1056         #               8 bytes for luda_type
1057         # take into account of overhead in lu_dirpage header and end mark in
1058         # each page, plus one in RPC_NUM calculation.
1059         DIRENT_SIZE=48
1060         RPC_SIZE=$(($(max_pages_per_rpc) * $(page_size)))
1061         RPC_NUM=$(((NRFILES * DIRENT_SIZE + RPC_SIZE - 1) / RPC_SIZE + 1))
1062         mds_readpage=$(lctl get_param mdc.*MDT0000*.stats |
1063                                 awk '/^mds_readpage/ {print $2}')
1064         [[ $mds_readpage -gt $RPC_NUM ]] &&
1065                 error "large readdir doesn't take effect"
1066
1067         simple_cleanup_common
1068 }
1069 run_test 24v "list directory with large files (handle hash collision, bug: 17560)"
1070
1071 test_24w() { # bug21506
1072         SZ1=234852
1073         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=4096 || return 1
1074         dd if=/dev/zero bs=$SZ1 count=1 >> $DIR/$tfile || return 2
1075         dd if=$DIR/$tfile of=$DIR/${tfile}_left bs=1M skip=4097 || return 3
1076         SZ2=`ls -l $DIR/${tfile}_left | awk '{print $5}'`
1077         [[ "$SZ1" -eq "$SZ2" ]] ||
1078                 error "Error reading at the end of the file $tfile"
1079 }
1080 run_test 24w "Reading a file larger than 4Gb"
1081
1082 test_24x() {
1083         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
1084
1085         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.56) ]] &&
1086                 skip "Need MDS version at least 2.7.56" && return
1087
1088         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1089         local MDTIDX=1
1090         local remote_dir=$DIR/$tdir/remote_dir
1091
1092         test_mkdir -p $DIR/$tdir
1093         $LFS mkdir -i $MDTIDX $remote_dir ||
1094                 error "create remote directory failed"
1095
1096         test_mkdir -p $DIR/$tdir/src_dir
1097         touch $DIR/$tdir/src_file
1098         test_mkdir -p $remote_dir/tgt_dir
1099         touch $remote_dir/tgt_file
1100
1101         mrename $DIR/$tdir/src_dir $remote_dir/tgt_dir ||
1102                 error "rename dir cross MDT failed!"
1103
1104         mrename $DIR/$tdir/src_file $remote_dir/tgt_file ||
1105                 error "rename file cross MDT failed!"
1106
1107         touch $DIR/$tdir/ln_file
1108         ln $DIR/$tdir/ln_file $remote_dir/ln_name ||
1109                 error "ln file cross MDT failed"
1110
1111         rm -rf $DIR/$tdir || error "Can not delete directories"
1112 }
1113 run_test 24x "cross MDT rename/link"
1114
1115 test_24y() {
1116         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
1117         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1118         local MDTIDX=1
1119         local remote_dir=$DIR/$tdir/remote_dir
1120
1121         test_mkdir -p $DIR/$tdir
1122         $LFS mkdir -i $MDTIDX $remote_dir ||
1123                    error "create remote directory failed"
1124
1125         test_mkdir -p $remote_dir/src_dir
1126         touch $remote_dir/src_file
1127         test_mkdir -p $remote_dir/tgt_dir
1128         touch $remote_dir/tgt_file
1129
1130         mrename $remote_dir/src_dir $remote_dir/tgt_dir ||
1131                 error "rename subdir in the same remote dir failed!"
1132
1133         mrename $remote_dir/src_file $remote_dir/tgt_file ||
1134                 error "rename files in the same remote dir failed!"
1135
1136         ln $remote_dir/tgt_file $remote_dir/tgt_file1 ||
1137                 error "link files in the same remote dir failed!"
1138
1139         rm -rf $DIR/$tdir || error "Can not delete directories"
1140 }
1141 run_test 24y "rename/link on the same dir should succeed"
1142
1143 test_24A() { # LU-3182
1144         local NFILES=5000
1145
1146         rm -rf $DIR/$tdir
1147         test_mkdir -p $DIR/$tdir
1148         createmany -m $DIR/$tdir/$tfile $NFILES
1149         local t=$(ls $DIR/$tdir | wc -l)
1150         local u=$(ls $DIR/$tdir | sort -u | wc -l)
1151         local v=$(ls -ai $DIR/$tdir | sort -u | wc -l)
1152         if [ $t -ne $NFILES -o $u -ne $NFILES -o $v -ne $((NFILES + 2)) ] ; then
1153                 error "Expected $NFILES files, got $t ($u unique $v .&..)"
1154         fi
1155
1156         rm -rf $DIR/$tdir || error "Can not delete directories"
1157 }
1158 run_test 24A "readdir() returns correct number of entries."
1159
1160 test_24B() { # LU-4805
1161         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1162         local count
1163
1164         test_mkdir $DIR/$tdir
1165         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
1166                 error "create striped dir failed"
1167
1168         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1169         [ $count -eq 2 ] || error "Expected 2, got $count"
1170
1171         touch $DIR/$tdir/striped_dir/a
1172
1173         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1174         [ $count -eq 3 ] || error "Expected 3, got $count"
1175
1176         touch $DIR/$tdir/striped_dir/.f
1177
1178         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1179         [ $count -eq 4 ] || error "Expected 4, got $count"
1180
1181         rm -rf $DIR/$tdir || error "Can not delete directories"
1182 }
1183 run_test 24B "readdir for striped dir return correct number of entries"
1184
1185 test_24C() {
1186         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1187
1188         mkdir $DIR/$tdir
1189         mkdir $DIR/$tdir/d0
1190         mkdir $DIR/$tdir/d1
1191
1192         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/d0/striped_dir ||
1193                 error "create striped dir failed"
1194
1195         cd $DIR/$tdir/d0/striped_dir
1196
1197         local d0_ino=$(ls -i -l -a $DIR/$tdir | grep "d0" | awk '{print $1}')
1198         local d1_ino=$(ls -i -l -a $DIR/$tdir | grep "d1" | awk '{print $1}')
1199         local parent_ino=$(ls -i -l -a | grep "\.\." | awk '{print $1}')
1200
1201         [ "$d0_ino" = "$parent_ino" ] ||
1202                 error ".. wrong, expect $d0_ino, get $parent_ino"
1203
1204         mv $DIR/$tdir/d0/striped_dir $DIR/$tdir/d1/ ||
1205                 error "mv striped dir failed"
1206
1207         parent_ino=$(ls -i -l -a | grep "\.\." | awk '{print $1}')
1208
1209         [ "$d1_ino" = "$parent_ino" ] ||
1210                 error ".. wrong after mv, expect $d1_ino, get $parent_ino"
1211 }
1212 run_test 24C "check .. in striped dir"
1213
1214 test_24D() { # LU-6101
1215         local NFILES=50000
1216
1217         rm -rf $DIR/$tdir
1218         mkdir -p $DIR/$tdir
1219         createmany -m $DIR/$tdir/$tfile $NFILES
1220         local t=$(ls $DIR/$tdir | wc -l)
1221         local u=$(ls $DIR/$tdir | sort -u | wc -l)
1222         local v=$(ls -ai $DIR/$tdir | sort -u | wc -l)
1223         if [ $t -ne $NFILES -o $u -ne $NFILES -o $v -ne $((NFILES + 2)) ] ; then
1224                 error "Expected $NFILES files, got $t ($u unique $v .&..)"
1225         fi
1226
1227         rm -rf $DIR/$tdir || error "Can not delete directories"
1228 }
1229 run_test 24D "readdir() returns correct number of entries after cursor reload"
1230
1231 test_24E() {
1232         [[ $MDSCOUNT -lt 4 ]] && skip "needs >= 4 MDTs" && return
1233         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1234
1235         mkdir -p $DIR/$tdir
1236         mkdir $DIR/$tdir/src_dir
1237         $LFS mkdir -i 1 $DIR/$tdir/src_dir/src_child ||
1238                 error "create remote source failed"
1239
1240         touch $DIR/$tdir/src_dir/src_child/a
1241
1242         $LFS mkdir -i 2 $DIR/$tdir/tgt_dir ||
1243                 error "create remote target dir failed"
1244
1245         $LFS mkdir -i 3 $DIR/$tdir/tgt_dir/tgt_child ||
1246                 error "create remote target child failed"
1247
1248         mrename $DIR/$tdir/src_dir/src_child $DIR/$tdir/tgt_dir/tgt_child ||
1249                 error "rename dir cross MDT failed!"
1250
1251         find $DIR/$tdir
1252
1253         $CHECKSTAT -t dir $DIR/$tdir/src_dir/src_child &&
1254                 error "src_child still exists after rename"
1255
1256         $CHECKSTAT -t file $DIR/$tdir/tgt_dir/tgt_child/a ||
1257                 error "missing file(a) after rename"
1258
1259         rm -rf $DIR/$tdir || error "Can not delete directories"
1260 }
1261 run_test 24E "cross MDT rename/link"
1262
1263 test_25a() {
1264         echo '== symlink sanity ============================================='
1265
1266         test_mkdir $DIR/d25
1267         ln -s d25 $DIR/s25
1268         touch $DIR/s25/foo || error
1269 }
1270 run_test 25a "create file in symlinked directory ==============="
1271
1272 test_25b() {
1273         [ ! -d $DIR/d25 ] && test_25a
1274         $CHECKSTAT -t file $DIR/s25/foo || error
1275 }
1276 run_test 25b "lookup file in symlinked directory ==============="
1277
1278 test_26a() {
1279         test_mkdir $DIR/d26
1280         test_mkdir $DIR/d26/d26-2
1281         ln -s d26/d26-2 $DIR/s26
1282         touch $DIR/s26/foo || error
1283 }
1284 run_test 26a "multiple component symlink ======================="
1285
1286 test_26b() {
1287         test_mkdir -p $DIR/d26b/d26-2
1288         ln -s d26b/d26-2/foo $DIR/s26-2
1289         touch $DIR/s26-2 || error
1290 }
1291 run_test 26b "multiple component symlink at end of lookup ======"
1292
1293 test_26c() {
1294         test_mkdir $DIR/d26.2
1295         touch $DIR/d26.2/foo
1296         ln -s d26.2 $DIR/s26.2-1
1297         ln -s s26.2-1 $DIR/s26.2-2
1298         ln -s s26.2-2 $DIR/s26.2-3
1299         chmod 0666 $DIR/s26.2-3/foo
1300 }
1301 run_test 26c "chain of symlinks ================================"
1302
1303 # recursive symlinks (bug 439)
1304 test_26d() {
1305         ln -s d26-3/foo $DIR/d26-3
1306 }
1307 run_test 26d "create multiple component recursive symlink ======"
1308
1309 test_26e() {
1310         [ ! -h $DIR/d26-3 ] && test_26d
1311         rm $DIR/d26-3
1312 }
1313 run_test 26e "unlink multiple component recursive symlink ======"
1314
1315 # recursive symlinks (bug 7022)
1316 test_26f() {
1317         test_mkdir -p $DIR/$tdir
1318         test_mkdir $DIR/$tdir/$tfile   || error "mkdir $DIR/$tdir/$tfile failed"
1319         cd $DIR/$tdir/$tfile           || error "cd $DIR/$tdir/$tfile failed"
1320         test_mkdir -p lndir/bar1      || error "mkdir lndir/bar1 failed"
1321         test_mkdir $DIR/$tdir/$tfile/$tfile   || error "mkdir $tfile failed"
1322         cd $tfile                || error "cd $tfile failed"
1323         ln -s .. dotdot          || error "ln dotdot failed"
1324         ln -s dotdot/lndir lndir || error "ln lndir failed"
1325         cd $DIR/$tdir                 || error "cd $DIR/$tdir failed"
1326         output=`ls $tfile/$tfile/lndir/bar1`
1327         [ "$output" = bar1 ] && error "unexpected output"
1328         rm -r $tfile             || error "rm $tfile failed"
1329         $CHECKSTAT -a $DIR/$tfile || error "$tfile not gone"
1330 }
1331 run_test 26f "rm -r of a directory which has recursive symlink ="
1332
1333 test_27a() {
1334         echo '== stripe sanity =============================================='
1335         test_mkdir -p $DIR/d27 || error "mkdir failed"
1336         $GETSTRIPE $DIR/d27
1337         $SETSTRIPE -c 1 $DIR/d27/f0 || error "setstripe failed"
1338         $CHECKSTAT -t file $DIR/d27/f0 || error "checkstat failed"
1339         log "== test_27a: write to one stripe file ========================="
1340         cp /etc/hosts $DIR/d27/f0 || error
1341 }
1342 run_test 27a "one stripe file =================================="
1343
1344 test_27b() {
1345         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping 2-stripe test" && return
1346         test_mkdir -p $DIR/d27
1347         $SETSTRIPE -c 2 $DIR/d27/f01 || error "setstripe failed"
1348         $GETSTRIPE -c $DIR/d27/f01
1349         [ $($GETSTRIPE -c $DIR/d27/f01) -eq 2 ] ||
1350                 error "two-stripe file doesn't have two stripes"
1351
1352         dd if=/dev/zero of=$DIR/d27/f01 bs=4k count=4 || error "dd failed"
1353 }
1354 run_test 27b "create and write to two stripe file"
1355
1356 test_27d() {
1357         test_mkdir -p $DIR/d27
1358         $SETSTRIPE -c 0 -i -1 -S 0 $DIR/d27/fdef || error "setstripe failed"
1359         $CHECKSTAT -t file $DIR/d27/fdef || error "checkstat failed"
1360         dd if=/dev/zero of=$DIR/d27/fdef bs=4k count=4 || error
1361 }
1362 run_test 27d "create file with default settings ================"
1363
1364 test_27e() {
1365         # LU-5839 adds check for existed layout before setting it
1366         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.56) ]] &&
1367                 skip "Need MDS version at least 2.7.56" && return
1368         test_mkdir -p $DIR/d27
1369         $SETSTRIPE -c 2 $DIR/d27/f12 || error "setstripe failed"
1370         $SETSTRIPE -c 2 $DIR/d27/f12 && error "setstripe succeeded twice"
1371         $CHECKSTAT -t file $DIR/d27/f12 || error "checkstat failed"
1372 }
1373 run_test 27e "setstripe existing file (should return error) ======"
1374
1375 test_27f() {
1376         test_mkdir $DIR/$tdir
1377         $SETSTRIPE -S 100 -i 0 -c 1 $DIR/$tdir/$tfile &&
1378                 error "$SETSTRIPE $DIR/$tdir/$tfile failed"
1379         $CHECKSTAT -t file $DIR/$tdir/$tfile &&
1380                 error "$CHECKSTAT -t file $DIR/$tdir/$tfile should fail"
1381         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
1382         $GETSTRIPE $DIR/$tdir/$tfile || error "$GETSTRIPE failed"
1383 }
1384 run_test 27f "setstripe with bad stripe size (should return error)"
1385
1386 test_27g() {
1387         test_mkdir -p $DIR/d27
1388         $MCREATE $DIR/d27/fnone || error "mcreate failed"
1389         $GETSTRIPE $DIR/d27/fnone 2>&1 | grep "no stripe info" ||
1390                 error "$DIR/d27/fnone has object"
1391 }
1392 run_test 27g "$GETSTRIPE with no objects"
1393
1394 test_27i() {
1395         test_mkdir $DIR/$tdir
1396         touch $DIR/$tdir/$tfile || error "touch failed"
1397         [[ $($GETSTRIPE -c $DIR/$tdir/$tfile) -gt 0 ]] ||
1398                 error "missing objects"
1399 }
1400 run_test 27i "$GETSTRIPE with some objects"
1401
1402 test_27j() {
1403         test_mkdir -p $DIR/d27
1404         $SETSTRIPE -i $OSTCOUNT $DIR/d27/f27j && error "setstripe failed"||true
1405 }
1406 run_test 27j "setstripe with bad stripe offset (should return error)"
1407
1408 test_27k() { # bug 2844
1409         test_mkdir -p $DIR/d27
1410         FILE=$DIR/d27/f27k
1411         LL_MAX_BLKSIZE=$((4 * 1024 * 1024))
1412         [ ! -d $DIR/d27 ] && test_mkdir -p $DIR d27
1413         $SETSTRIPE -S 67108864 $FILE || error "setstripe failed"
1414         BLKSIZE=`stat $FILE | awk '/IO Block:/ { print $7 }'`
1415         [ $BLKSIZE -le $LL_MAX_BLKSIZE ] || error "1:$BLKSIZE > $LL_MAX_BLKSIZE"
1416         dd if=/dev/zero of=$FILE bs=4k count=1
1417         BLKSIZE=`stat $FILE | awk '/IO Block:/ { print $7 }'`
1418         [ $BLKSIZE -le $LL_MAX_BLKSIZE ] || error "2:$BLKSIZE > $LL_MAX_BLKSIZE"
1419 }
1420 run_test 27k "limit i_blksize for broken user apps ============="
1421
1422 test_27l() {
1423         test_mkdir -p $DIR/d27
1424         mcreate $DIR/f27l || error "creating file"
1425         $RUNAS $SETSTRIPE -c 1 $DIR/f27l && \
1426                 error "setstripe should have failed" || true
1427 }
1428 run_test 27l "check setstripe permissions (should return error)"
1429
1430 test_27m() {
1431         [[ $OSTCOUNT -lt 2 ]] && skip_env "$OSTCOUNT < 2 OSTs -- skipping" &&
1432                 return
1433
1434         ORIGFREE=$($LCTL get_param -n lov.$FSNAME-clilov-*.kbytesavail |
1435                    head -n1)
1436         if [[ $ORIGFREE -gt $MAXFREE ]]; then
1437                 skip "$ORIGFREE > $MAXFREE skipping out-of-space test on OST0"
1438                 return
1439         fi
1440         trap simple_cleanup_common EXIT
1441         test_mkdir -p $DIR/$tdir
1442         $SETSTRIPE -i 0 -c 1 $DIR/$tdir/f27m_1
1443         dd if=/dev/zero of=$DIR/$tdir/f27m_1 bs=1024 count=$MAXFREE &&
1444                 error "dd should fill OST0"
1445         i=2
1446         while $SETSTRIPE -i 0 -c 1 $DIR/$tdir/f27m_$i; do
1447                 i=$((i + 1))
1448                 [ $i -gt 256 ] && break
1449         done
1450         i=$((i + 1))
1451         touch $DIR/$tdir/f27m_$i
1452         [ `$GETSTRIPE $DIR/$tdir/f27m_$i | grep -A 10 obdidx | awk '{print $1}'| grep -w "0"` ] &&
1453                 error "OST0 was full but new created file still use it"
1454         i=$((i + 1))
1455         touch $DIR/$tdir/f27m_$i
1456         [ `$GETSTRIPE $DIR/$tdir/f27m_$i | grep -A 10 obdidx | awk '{print $1}'| grep -w "0"` ] &&
1457                 error "OST0 was full but new created file still use it"
1458         simple_cleanup_common
1459 }
1460 run_test 27m "create file while OST0 was full =================="
1461
1462 sleep_maxage() {
1463         local DELAY=$(do_facet $SINGLEMDS lctl get_param -n lov.*.qos_maxage | head -n 1 | awk '{print $1 * 2}')
1464         sleep $DELAY
1465 }
1466
1467 # OSCs keep a NOSPC flag that will be reset after ~5s (qos_maxage)
1468 # if the OST isn't full anymore.
1469 reset_enospc() {
1470         local OSTIDX=${1:-""}
1471
1472         local list=$(comma_list $(osts_nodes))
1473         [ "$OSTIDX" ] && list=$(facet_host ost$((OSTIDX + 1)))
1474
1475         do_nodes $list lctl set_param fail_loc=0
1476         sync    # initiate all OST_DESTROYs from MDS to OST
1477         sleep_maxage
1478 }
1479
1480 exhaust_precreations() {
1481         local OSTIDX=$1
1482         local FAILLOC=$2
1483         local FAILIDX=${3:-$OSTIDX}
1484         local ofacet=ost$((OSTIDX + 1))
1485
1486         test_mkdir -p -c1 $DIR/$tdir
1487         local mdtidx=$($LFS getstripe -M $DIR/$tdir)
1488         local mfacet=mds$((mdtidx + 1))
1489         echo OSTIDX=$OSTIDX MDTIDX=$mdtidx
1490
1491         local OST=$(ostname_from_index $OSTIDX)
1492
1493         # on the mdt's osc
1494         local mdtosc_proc1=$(get_mdtosc_proc_path $mfacet $OST)
1495         local last_id=$(do_facet $mfacet lctl get_param -n \
1496                         osc.$mdtosc_proc1.prealloc_last_id)
1497         local next_id=$(do_facet $mfacet lctl get_param -n \
1498                         osc.$mdtosc_proc1.prealloc_next_id)
1499
1500         local mdtosc_proc2=$(get_mdtosc_proc_path $mfacet)
1501         do_facet $mfacet lctl get_param osc.$mdtosc_proc2.prealloc*
1502
1503         test_mkdir -p $DIR/$tdir/${OST}
1504         $SETSTRIPE -i $OSTIDX -c 1 $DIR/$tdir/${OST}
1505 #define OBD_FAIL_OST_ENOSPC              0x215
1506         do_facet $ofacet lctl set_param fail_val=$FAILIDX fail_loc=0x215
1507         echo "Creating to objid $last_id on ost $OST..."
1508         createmany -o $DIR/$tdir/${OST}/f $next_id $((last_id - next_id + 2))
1509         do_facet $mfacet lctl get_param osc.$mdtosc_proc2.prealloc*
1510         do_facet $ofacet lctl set_param fail_loc=$FAILLOC
1511         sleep_maxage
1512 }
1513
1514 exhaust_all_precreations() {
1515         local i
1516         for (( i=0; i < OSTCOUNT; i++ )) ; do
1517                 exhaust_precreations $i $1 -1
1518         done
1519 }
1520
1521 test_27n() {
1522         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1523         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1524         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1525         remote_ost_nodsh && skip "remote OST with nodsh" && return
1526
1527         reset_enospc
1528         rm -f $DIR/$tdir/$tfile
1529         exhaust_precreations 0 0x80000215
1530         $SETSTRIPE -c -1 $DIR/$tdir
1531         touch $DIR/$tdir/$tfile || error
1532         $GETSTRIPE $DIR/$tdir/$tfile
1533         reset_enospc
1534 }
1535 run_test 27n "create file with some full OSTs =================="
1536
1537 test_27o() {
1538         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1539         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1540         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1541         remote_ost_nodsh && skip "remote OST with nodsh" && return
1542
1543         reset_enospc
1544         rm -f $DIR/$tdir/$tfile
1545         exhaust_all_precreations 0x215
1546
1547         touch $DIR/$tdir/$tfile && error "able to create $DIR/$tdir/$tfile"
1548
1549         reset_enospc
1550         rm -rf $DIR/$tdir/*
1551 }
1552 run_test 27o "create file with all full OSTs (should error) ===="
1553
1554 test_27p() {
1555         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1556         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1557         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1558         remote_ost_nodsh && skip "remote OST with nodsh" && return
1559
1560         reset_enospc
1561         rm -f $DIR/$tdir/$tfile
1562         test_mkdir -p $DIR/$tdir
1563
1564         $MCREATE $DIR/$tdir/$tfile || error "mcreate failed"
1565         $TRUNCATE $DIR/$tdir/$tfile 80000000 || error "truncate failed"
1566         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1567
1568         exhaust_precreations 0 0x80000215
1569         echo foo >> $DIR/$tdir/$tfile || error "append failed"
1570         $CHECKSTAT -s 80000004 $DIR/$tdir/$tfile || error "checkstat failed"
1571         $GETSTRIPE $DIR/$tdir/$tfile
1572
1573         reset_enospc
1574 }
1575 run_test 27p "append to a truncated file with some full OSTs ==="
1576
1577 test_27q() {
1578         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1579         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1580         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1581         remote_ost_nodsh && skip "remote OST with nodsh" && return
1582
1583         reset_enospc
1584         rm -f $DIR/$tdir/$tfile
1585
1586         test_mkdir -p $DIR/$tdir
1587         $MCREATE $DIR/$tdir/$tfile || error "mcreate $DIR/$tdir/$tfile failed"
1588         $TRUNCATE $DIR/$tdir/$tfile 80000000 ||error "truncate $DIR/$tdir/$tfile failed"
1589         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1590
1591         exhaust_all_precreations 0x215
1592
1593         echo foo >> $DIR/$tdir/$tfile && error "append succeeded"
1594         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat 2 failed"
1595
1596         reset_enospc
1597 }
1598 run_test 27q "append to truncated file with all OSTs full (should error) ==="
1599
1600 test_27r() {
1601         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1602         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1603         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1604         remote_ost_nodsh && skip "remote OST with nodsh" && return
1605
1606         reset_enospc
1607         rm -f $DIR/$tdir/$tfile
1608         exhaust_precreations 0 0x80000215
1609
1610         $SETSTRIPE -i 0 -c 2 $DIR/$tdir/$tfile # && error
1611
1612         reset_enospc
1613 }
1614 run_test 27r "stripe file with some full OSTs (shouldn't LBUG) ="
1615
1616 test_27s() { # bug 10725
1617         test_mkdir -p $DIR/$tdir
1618         local stripe_size=$((4096 * 1024 * 1024))       # 2^32
1619         local stripe_count=0
1620         [ $OSTCOUNT -eq 1 ] || stripe_count=2
1621         $SETSTRIPE -S $stripe_size -c $stripe_count $DIR/$tdir &&
1622                 error "stripe width >= 2^32 succeeded" || true
1623
1624 }
1625 run_test 27s "lsm_xfersize overflow (should error) (bug 10725)"
1626
1627 test_27t() { # bug 10864
1628         WDIR=$(pwd)
1629         WLFS=$(which lfs)
1630         cd $DIR
1631         touch $tfile
1632         $WLFS getstripe $tfile
1633         cd $WDIR
1634 }
1635 run_test 27t "check that utils parse path correctly"
1636
1637 test_27u() { # bug 4900
1638         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1639         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1640         local index
1641         local list=$(comma_list $(mdts_nodes))
1642
1643 #define OBD_FAIL_MDS_OSC_PRECREATE      0x139
1644         do_nodes $list $LCTL set_param fail_loc=0x139
1645         test_mkdir -p $DIR/$tdir
1646         rm -rf $DIR/$tdir/*
1647         createmany -o $DIR/$tdir/t- 1000
1648         do_nodes $list $LCTL set_param fail_loc=0
1649
1650         TLOG=$DIR/$tfile.getstripe
1651         $GETSTRIPE $DIR/$tdir > $TLOG
1652         OBJS=$(awk -vobj=0 '($1 == 0) { obj += 1 } END { print obj; }' $TLOG)
1653         unlinkmany $DIR/$tdir/t- 1000
1654         [[ $OBJS -gt 0 ]] &&
1655                 error "$OBJS objects created on OST-0. See $TLOG" || pass
1656 }
1657 run_test 27u "skip object creation on OSC w/o objects =========="
1658
1659 test_27v() { # bug 4900
1660         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1661         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1662         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1663         remote_ost_nodsh && skip "remote OST with nodsh" && return
1664
1665         exhaust_all_precreations 0x215
1666         reset_enospc
1667
1668         test_mkdir -p $DIR/$tdir
1669         $SETSTRIPE -c 1 $DIR/$tdir         # 1 stripe / file
1670
1671         touch $DIR/$tdir/$tfile
1672         #define OBD_FAIL_TGT_DELAY_PRECREATE     0x705
1673         # all except ost1
1674         for (( i=1; i < OSTCOUNT; i++ )); do
1675                 do_facet ost$i lctl set_param fail_loc=0x705
1676         done
1677         local START=`date +%s`
1678         createmany -o $DIR/$tdir/$tfile 32
1679
1680         local FINISH=`date +%s`
1681         local TIMEOUT=`lctl get_param -n timeout`
1682         local PROCESS=$((FINISH - START))
1683         [ $PROCESS -ge $((TIMEOUT / 2)) ] && \
1684                error "$FINISH - $START >= $TIMEOUT / 2"
1685         sleep $((TIMEOUT / 2 - PROCESS))
1686         reset_enospc
1687 }
1688 run_test 27v "skip object creation on slow OST ================="
1689
1690 test_27w() { # bug 10997
1691         test_mkdir -p $DIR/$tdir || error "mkdir failed"
1692         $SETSTRIPE -S 65536 $DIR/$tdir/f0 || error "setstripe failed"
1693         [ $($GETSTRIPE -S $DIR/$tdir/f0) -ne 65536 ] &&
1694                 error "stripe size $size != 65536" || true
1695         [ $($GETSTRIPE -d $DIR/$tdir | grep -c "stripe_count") -ne 1 ] &&
1696                 error "$GETSTRIPE -d $DIR/$tdir failed" || true
1697 }
1698 run_test 27w "check $SETSTRIPE -S option"
1699
1700 test_27wa() {
1701         [[ $OSTCOUNT -lt 2 ]] &&
1702                 skip_env "skipping multiple stripe count/offset test" && return
1703
1704         test_mkdir -p $DIR/$tdir || error "mkdir failed"
1705         for i in $(seq 1 $OSTCOUNT); do
1706                 offset=$((i - 1))
1707                 $SETSTRIPE -c $i -i $offset $DIR/$tdir/f$i ||
1708                         error "setstripe -c $i -i $offset failed"
1709                 count=$($GETSTRIPE -c $DIR/$tdir/f$i)
1710                 index=$($GETSTRIPE -i $DIR/$tdir/f$i)
1711                 [ $count -ne $i ] && error "stripe count $count != $i" || true
1712                 [ $index -ne $offset ] &&
1713                         error "stripe offset $index != $offset" || true
1714         done
1715 }
1716 run_test 27wa "check $SETSTRIPE -c -i options"
1717
1718 test_27x() {
1719         remote_ost_nodsh && skip "remote OST with nodsh" && return
1720         [[ $OSTCOUNT -lt 2 ]] && skip_env "$OSTCOUNT < 2 OSTs" && return
1721         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1722         OFFSET=$(($OSTCOUNT - 1))
1723         OSTIDX=0
1724         local OST=$(ostname_from_index $OSTIDX)
1725
1726         test_mkdir -p $DIR/$tdir
1727         $SETSTRIPE -c 1 $DIR/$tdir      # 1 stripe per file
1728         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 1
1729         sleep_maxage
1730         createmany -o $DIR/$tdir/$tfile $OSTCOUNT
1731         for i in `seq 0 $OFFSET`; do
1732                 [ `$GETSTRIPE $DIR/$tdir/$tfile$i | grep -A 10 obdidx | awk '{print $1}' | grep -w "$OSTIDX"` ] &&
1733                 error "OST0 was degraded but new created file still use it"
1734         done
1735         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 0
1736 }
1737 run_test 27x "create files while OST0 is degraded"
1738
1739 test_27y() {
1740         [[ $OSTCOUNT -lt 2 ]] &&
1741                 skip_env "$OSTCOUNT < 2 OSTs -- skipping" && return
1742         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1743         remote_ost_nodsh && skip "remote OST with nodsh" && return
1744         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1745
1746         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS $FSNAME-OST0000)
1747         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
1748             osc.$mdtosc.prealloc_last_id)
1749         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
1750             osc.$mdtosc.prealloc_next_id)
1751         local fcount=$((last_id - next_id))
1752         [[ $fcount -eq 0 ]] && skip "not enough space on OST0" && return
1753         [[ $fcount -gt $OSTCOUNT ]] && fcount=$OSTCOUNT
1754
1755         local MDS_OSCS=$(do_facet $SINGLEMDS lctl dl |
1756                          awk '/[oO][sS][cC].*md[ts]/ { print $4 }')
1757         local OST_DEACTIVE_IDX=-1
1758         local OSC
1759         local OSTIDX
1760         local OST
1761
1762         for OSC in $MDS_OSCS; do
1763                 OST=$(osc_to_ost $OSC)
1764                 OSTIDX=$(index_from_ostuuid $OST)
1765                 if [ $OST_DEACTIVE_IDX == -1 ]; then
1766                         OST_DEACTIVE_IDX=$OSTIDX
1767                 fi
1768                 if [ $OSTIDX != $OST_DEACTIVE_IDX ]; then
1769                         echo $OSC "is Deactivated:"
1770                         do_facet $SINGLEMDS lctl --device  %$OSC deactivate
1771                 fi
1772         done
1773
1774         OSTIDX=$(index_from_ostuuid $OST)
1775         test_mkdir -p $DIR/$tdir
1776         $SETSTRIPE -c 1 $DIR/$tdir      # 1 stripe / file
1777
1778         for OSC in $MDS_OSCS; do
1779                 OST=$(osc_to_ost $OSC)
1780                 OSTIDX=$(index_from_ostuuid $OST)
1781                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1782                         echo $OST "is degraded:"
1783                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1784                                                 obdfilter.$OST.degraded=1
1785                 fi
1786         done
1787
1788         sleep_maxage
1789         createmany -o $DIR/$tdir/$tfile $fcount
1790
1791         for OSC in $MDS_OSCS; do
1792                 OST=$(osc_to_ost $OSC)
1793                 OSTIDX=$(index_from_ostuuid $OST)
1794                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1795                         echo $OST "is recovered from degraded:"
1796                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1797                                                 obdfilter.$OST.degraded=0
1798                 else
1799                         do_facet $SINGLEMDS lctl --device %$OSC activate
1800                 fi
1801         done
1802
1803         # all osp devices get activated, hence -1 stripe count restored
1804         local stripecnt=0
1805
1806         # sleep 2*lod_qos_maxage seconds waiting for lod qos to notice osp
1807         # devices get activated.
1808         sleep_maxage
1809         $SETSTRIPE -c -1 $DIR/$tfile
1810         stripecnt=$($GETSTRIPE -c $DIR/$tfile)
1811         rm -f $DIR/$tfile
1812         [ $stripecnt -ne $OSTCOUNT ] &&
1813                 error "Of $OSTCOUNT OSTs, only $stripecnt is available"
1814         return 0
1815 }
1816 run_test 27y "create files while OST0 is degraded and the rest inactive"
1817
1818 check_seq_oid()
1819 {
1820         log "check file $1"
1821
1822         lmm_count=$($GETSTRIPE -c $1)
1823         lmm_seq=$($GETSTRIPE -v $1 | awk '/lmm_seq/ { print $2 }')
1824         lmm_oid=$($GETSTRIPE -v $1 | awk '/lmm_object_id/ { print $2 }')
1825
1826         local old_ifs="$IFS"
1827         IFS=$'[:]'
1828         fid=($($LFS path2fid $1))
1829         IFS="$old_ifs"
1830
1831         log "FID seq ${fid[1]}, oid ${fid[2]} ver ${fid[3]}"
1832         log "LOV seq $lmm_seq, oid $lmm_oid, count: $lmm_count"
1833
1834         # compare lmm_seq and lu_fid->f_seq
1835         [ $lmm_seq = ${fid[1]} ] || { error "SEQ mismatch"; return 1; }
1836         # compare lmm_object_id and lu_fid->oid
1837         [ $lmm_oid = ${fid[2]} ] || { error "OID mismatch"; return 2; }
1838
1839         # check the trusted.fid attribute of the OST objects of the file
1840         local have_obdidx=false
1841         local stripe_nr=0
1842         $GETSTRIPE $1 | while read obdidx oid hex seq; do
1843                 # skip lines up to and including "obdidx"
1844                 [ -z "$obdidx" ] && break
1845                 [ "$obdidx" = "obdidx" ] && have_obdidx=true && continue
1846                 $have_obdidx || continue
1847
1848                 local ost=$((obdidx + 1))
1849                 local dev=$(ostdevname $ost)
1850                 local oid_hex
1851
1852                 log "want: stripe:$stripe_nr ost:$obdidx oid:$oid/$hex seq:$seq"
1853
1854                 seq=$(echo $seq | sed -e "s/^0x//g")
1855                 if [ $seq == 0 ] || [ $(facet_fstype ost$ost) == zfs ]; then
1856                         oid_hex=$(echo $oid)
1857                 else
1858                         oid_hex=$(echo $hex | sed -e "s/^0x//g")
1859                 fi
1860                 local obj_file="O/$seq/d$((oid %32))/$oid_hex"
1861
1862                 local ff
1863                 #
1864                 # Don't unmount/remount the OSTs if we don't need to do that.
1865                 # LU-2577 changes filter_fid to be smaller, so debugfs needs
1866                 # update too, until that use mount/ll_decode_filter_fid/mount.
1867                 # Re-enable when debugfs will understand new filter_fid.
1868                 #
1869                 if false && [ $(facet_fstype ost$ost) == ldiskfs ]; then
1870                         ff=$(do_facet ost$ost "$DEBUGFS -c -R 'stat $obj_file' \
1871                                 $dev 2>/dev/null" | grep "parent=")
1872                 else
1873                         stop ost$ost
1874                         mount_fstype ost$ost
1875                         ff=$(do_facet ost$ost $LL_DECODE_FILTER_FID \
1876                                 $(facet_mntpt ost$ost)/$obj_file)
1877                         unmount_fstype ost$ost
1878                         start ost$ost $dev $OST_MOUNT_OPTS
1879                         clients_up
1880                 fi
1881
1882                 [ -z "$ff" ] && error "$obj_file: no filter_fid info"
1883
1884                 echo "$ff" | sed -e 's#.*objid=#got: objid=#'
1885
1886                 # /mnt/O/0/d23/23: objid=23 seq=0 parent=[0x200000400:0x1e:0x1]
1887                 # fid: objid=23 seq=0 parent=[0x200000400:0x1e:0x0] stripe=1
1888                 local ff_parent=$(echo $ff|sed -e 's/.*parent=.//')
1889                 local ff_pseq=$(echo $ff_parent | cut -d: -f1)
1890                 local ff_poid=$(echo $ff_parent | cut -d: -f2)
1891                 local ff_pstripe
1892                 if echo $ff_parent | grep -q 'stripe='; then
1893                         ff_pstripe=$(echo $ff_parent | sed -e 's/.*stripe=//')
1894                 else
1895                         #
1896                         # $LL_DECODE_FILTER_FID does not print "stripe="; look
1897                         # into f_ver in this case.  See the comment on
1898                         # ff_parent.
1899                         #
1900                         ff_pstripe=$(echo $ff_parent | cut -d: -f3 |
1901                                 sed -e 's/\]//')
1902                 fi
1903
1904                 # compare lmm_seq and filter_fid->ff_parent.f_seq
1905                 [ $ff_pseq = $lmm_seq ] ||
1906                         error "FF parent SEQ $ff_pseq != $lmm_seq"
1907                 # compare lmm_object_id and filter_fid->ff_parent.f_oid
1908                 [ $ff_poid = $lmm_oid ] ||
1909                         error "FF parent OID $ff_poid != $lmm_oid"
1910                 (($ff_pstripe == $stripe_nr)) ||
1911                         error "FF stripe $ff_pstripe != $stripe_nr"
1912
1913                 stripe_nr=$((stripe_nr + 1))
1914         done
1915 }
1916
1917 test_27z() {
1918         remote_ost_nodsh && skip "remote OST with nodsh" && return
1919         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1920         test_mkdir -p $DIR/$tdir
1921
1922         $SETSTRIPE -c 1 -i 0 -S 64k $DIR/$tdir/$tfile-1 ||
1923                 { error "setstripe -c -1 failed"; return 1; }
1924         # We need to send a write to every object to get parent FID info set.
1925         # This _should_ also work for setattr, but does not currently.
1926         # touch $DIR/$tdir/$tfile-1 ||
1927         dd if=/dev/zero of=$DIR/$tdir/$tfile-1 bs=1M count=1 ||
1928                 { error "dd $tfile-1 failed"; return 2; }
1929         $SETSTRIPE -c -1 -i $((OSTCOUNT - 1)) -S 1M $DIR/$tdir/$tfile-2 ||
1930                 { error "setstripe -c -1 failed"; return 3; }
1931         dd if=/dev/zero of=$DIR/$tdir/$tfile-2 bs=1M count=$OSTCOUNT ||
1932                 { error "dd $tfile-2 failed"; return 4; }
1933
1934         # make sure write RPCs have been sent to OSTs
1935         sync; sleep 5; sync
1936
1937         check_seq_oid $DIR/$tdir/$tfile-1 || return 5
1938         check_seq_oid $DIR/$tdir/$tfile-2 || return 6
1939 }
1940 run_test 27z "check SEQ/OID on the MDT and OST filesystems"
1941
1942 test_27A() { # b=19102
1943         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1944         local restore_size=$($GETSTRIPE -S $MOUNT)
1945         local restore_count=$($GETSTRIPE -c $MOUNT)
1946         local restore_offset=$($GETSTRIPE -i $MOUNT)
1947         $SETSTRIPE -c 0 -i -1 -S 0 $MOUNT
1948         wait_update $HOSTNAME "$GETSTRIPE -c $MOUNT | sed 's/  *//g'" "1" 20 ||
1949                 error "stripe count $($GETSTRIPE -c $MOUNT) != 1"
1950         local default_size=$($GETSTRIPE -S $MOUNT)
1951         local default_offset=$($GETSTRIPE -i $MOUNT)
1952         local dsize=$((1024 * 1024))
1953         [ $default_size -eq $dsize ] ||
1954                 error "stripe size $default_size != $dsize"
1955         [ $default_offset -eq -1 ] ||error "stripe offset $default_offset != -1"
1956         $SETSTRIPE -c $restore_count -i $restore_offset -S $restore_size $MOUNT
1957 }
1958 run_test 27A "check filesystem-wide default LOV EA values"
1959
1960 test_27B() { # LU-2523
1961         test_mkdir -p $DIR/$tdir
1962         rm -f $DIR/$tdir/f0 $DIR/$tdir/f1
1963         touch $DIR/$tdir/f0
1964         # open f1 with O_LOV_DELAY_CREATE
1965         # rename f0 onto f1
1966         # call setstripe ioctl on open file descriptor for f1
1967         # close
1968         multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:nB1c \
1969                 $DIR/$tdir/f0
1970
1971         rm -f $DIR/$tdir/f1
1972         # open f1 with O_LOV_DELAY_CREATE
1973         # unlink f1
1974         # call setstripe ioctl on open file descriptor for f1
1975         # close
1976         multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:uB1c
1977
1978         # Allow multiop to fail in imitation of NFS's busted semantics.
1979         true
1980 }
1981 run_test 27B "call setstripe on open unlinked file/rename victim"
1982
1983 test_27C() { #LU-2871
1984         [[ $OSTCOUNT -lt 2 ]] && skip "needs >= 2 OSTs" && return
1985
1986         declare -a ost_idx
1987         local index
1988         local found
1989         local i
1990         local j
1991
1992         test_mkdir -p $DIR/$tdir
1993         cd $DIR/$tdir
1994         for i in $(seq 0 $((OSTCOUNT - 1))); do
1995                 # set stripe across all OSTs starting from OST$i
1996                 $SETSTRIPE -i $i -c -1 $tfile$i
1997                 # get striping information
1998                 ost_idx=($($GETSTRIPE $tfile$i |
1999                          tail -n $((OSTCOUNT + 1)) | awk '{print $1}'))
2000                 echo ${ost_idx[@]}
2001
2002                 # check the layout
2003                 [ ${#ost_idx[@]} -eq $OSTCOUNT ] ||
2004                         error "${#ost_idx[@]} != $OSTCOUNT"
2005
2006                 for index in $(seq 0 $((OSTCOUNT - 1))); do
2007                         found=0
2008                         for j in $(echo ${ost_idx[@]}); do
2009                                 if [ $index -eq $j ]; then
2010                                         found=1
2011                                         break
2012                                 fi
2013                         done
2014                         [ $found = 1 ] ||
2015                                 error "Can not find $index in ${ost_idx[@]}"
2016                 done
2017         done
2018 }
2019 run_test 27C "check full striping across all OSTs"
2020
2021 test_27D() {
2022         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
2023         local POOL=${POOL:-testpool}
2024         local first_ost=0
2025         local last_ost=$(($OSTCOUNT - 1))
2026         local ost_step=1
2027         local ost_list=$(seq $first_ost $ost_step $last_ost)
2028         local ost_range="$first_ost $last_ost $ost_step"
2029
2030         test_mkdir -p $DIR/$tdir
2031         pool_add $POOL || error "pool_add failed"
2032         pool_add_targets $POOL $ost_range || error "pool_add_targets failed"
2033         llapi_layout_test -d$DIR/$tdir -p$POOL -o$OSTCOUNT ||
2034                 error "llapi_layout_test failed"
2035         cleanup_pools || error "cleanup_pools failed"
2036 }
2037 run_test 27D "validate llapi_layout API"
2038
2039 # Verify that default_easize is increased from its initial value after
2040 # accessing a widely striped file.
2041 test_27E() {
2042         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
2043
2044         # 72 bytes is the minimum space required to store striping
2045         # information for a file striped across one OST:
2046         # (sizeof(struct lov_user_md_v3) +
2047         #  sizeof(struct lov_user_ost_data_v1))
2048         local min_easize=72
2049         $LCTL set_param -n llite.*.default_easize $min_easize ||
2050                 error "lctl set_param failed"
2051         local easize=$($LCTL get_param -n llite.*.default_easize)
2052
2053         [ $easize -eq $min_easize ] ||
2054                 error "failed to set default_easize"
2055
2056         $LFS setstripe -c $OSTCOUNT $DIR/$tfile ||
2057                 error "setstripe failed"
2058         cat $DIR/$tfile
2059         rm $DIR/$tfile
2060
2061         easize=$($LCTL get_param -n llite.*.default_easize)
2062
2063         [ $easize -gt $min_easize ] ||
2064                 error "default_easize not updated"
2065 }
2066 run_test 27E "check that default extended attribute size properly increases"
2067
2068 # createtest also checks that device nodes are created and
2069 # then visible correctly (#2091)
2070 test_28() { # bug 2091
2071         test_mkdir $DIR/d28
2072         $CREATETEST $DIR/d28/ct || error
2073 }
2074 run_test 28 "create/mknod/mkdir with bad file types ============"
2075
2076 test_29() {
2077         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2078         cancel_lru_locks mdc
2079         test_mkdir $DIR/d29
2080         touch $DIR/d29/foo
2081         log 'first d29'
2082         ls -l $DIR/d29
2083
2084         declare -i LOCKCOUNTORIG=0
2085         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
2086                 let LOCKCOUNTORIG=$LOCKCOUNTORIG+$lock_count
2087         done
2088         [ $LOCKCOUNTORIG -eq 0 ] && echo "No mdc lock count" && return 1
2089
2090         declare -i LOCKUNUSEDCOUNTORIG=0
2091         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
2092                 let LOCKUNUSEDCOUNTORIG=$LOCKUNUSEDCOUNTORIG+$unused_count
2093         done
2094
2095         log 'second d29'
2096         ls -l $DIR/d29
2097         log 'done'
2098
2099         declare -i LOCKCOUNTCURRENT=0
2100         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
2101                 let LOCKCOUNTCURRENT=$LOCKCOUNTCURRENT+$lock_count
2102         done
2103
2104         declare -i LOCKUNUSEDCOUNTCURRENT=0
2105         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
2106                 let LOCKUNUSEDCOUNTCURRENT=$LOCKUNUSEDCOUNTCURRENT+$unused_count
2107         done
2108
2109         if [[ $LOCKCOUNTCURRENT -gt $LOCKCOUNTORIG ]]; then
2110                 $LCTL set_param -n ldlm.dump_namespaces ""
2111                 error "CURRENT: $LOCKCOUNTCURRENT > $LOCKCOUNTORIG"
2112                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
2113                 log "dumped log to $TMP/test_29.dk (bug 5793)"
2114                 return 2
2115         fi
2116         if [[ $LOCKUNUSEDCOUNTCURRENT -gt $LOCKUNUSEDCOUNTORIG ]]; then
2117                 error "UNUSED: $LOCKUNUSEDCOUNTCURRENT > $LOCKUNUSEDCOUNTORIG"
2118                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
2119                 log "dumped log to $TMP/test_29.dk (bug 5793)"
2120                 return 3
2121         fi
2122 }
2123 run_test 29 "IT_GETATTR regression  ============================"
2124
2125 test_30a() { # was test_30
2126         cp $(which ls) $DIR || cp /bin/ls $DIR
2127         $DIR/ls / || error
2128         rm $DIR/ls
2129 }
2130 run_test 30a "execute binary from Lustre (execve) =============="
2131
2132 test_30b() {
2133         cp `which ls` $DIR || cp /bin/ls $DIR
2134         chmod go+rx $DIR/ls
2135         $RUNAS $DIR/ls / || error
2136         rm $DIR/ls
2137 }
2138 run_test 30b "execute binary from Lustre as non-root ==========="
2139
2140 test_30c() { # b=22376
2141         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2142         cp `which ls` $DIR || cp /bin/ls $DIR
2143         chmod a-rw $DIR/ls
2144         cancel_lru_locks mdc
2145         cancel_lru_locks osc
2146         $RUNAS $DIR/ls / || error
2147         rm -f $DIR/ls
2148 }
2149 run_test 30c "execute binary from Lustre without read perms ===="
2150
2151 test_31a() {
2152         $OPENUNLINK $DIR/f31 $DIR/f31 || error
2153         $CHECKSTAT -a $DIR/f31 || error
2154 }
2155 run_test 31a "open-unlink file =================================="
2156
2157 test_31b() {
2158         touch $DIR/f31 || error
2159         ln $DIR/f31 $DIR/f31b || error
2160         $MULTIOP $DIR/f31b Ouc || error
2161         $CHECKSTAT -t file $DIR/f31 || error
2162 }
2163 run_test 31b "unlink file with multiple links while open ======="
2164
2165 test_31c() {
2166         touch $DIR/f31 || error
2167         ln $DIR/f31 $DIR/f31c || error
2168         multiop_bg_pause $DIR/f31 O_uc || return 1
2169         MULTIPID=$!
2170         $MULTIOP $DIR/f31c Ouc
2171         kill -USR1 $MULTIPID
2172         wait $MULTIPID
2173 }
2174 run_test 31c "open-unlink file with multiple links ============="
2175
2176 test_31d() {
2177         opendirunlink $DIR/d31d $DIR/d31d || error
2178         $CHECKSTAT -a $DIR/d31d || error
2179 }
2180 run_test 31d "remove of open directory ========================="
2181
2182 test_31e() { # bug 2904
2183         openfilleddirunlink $DIR/d31e || error
2184 }
2185 run_test 31e "remove of open non-empty directory ==============="
2186
2187 test_31f() { # bug 4554
2188         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2189         set -vx
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         MULTIPID=$!
2197
2198         rm -rv $DIR/d31f || error "first of $DIR/d31f"
2199         test_mkdir $DIR/d31f
2200         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
2201         cp /etc/hosts $DIR/d31f
2202         ls -l $DIR/d31f
2203         $GETSTRIPE $DIR/d31f/hosts
2204         multiop_bg_pause $DIR/d31f D_c || return 1
2205         MULTIPID2=$!
2206
2207         kill -USR1 $MULTIPID || error "first opendir $MULTIPID not running"
2208         wait $MULTIPID || error "first opendir $MULTIPID failed"
2209
2210         sleep 6
2211
2212         kill -USR1 $MULTIPID2 || error "second opendir $MULTIPID not running"
2213         wait $MULTIPID2 || error "second opendir $MULTIPID2 failed"
2214         set +vx
2215 }
2216 run_test 31f "remove of open directory with open-unlink file ==="
2217
2218 test_31g() {
2219         echo "-- cross directory link --"
2220         test_mkdir -c1 $DIR/${tdir}ga
2221         test_mkdir -c1 $DIR/${tdir}gb
2222         touch $DIR/${tdir}ga/f
2223         ln $DIR/${tdir}ga/f $DIR/${tdir}gb/g
2224         $CHECKSTAT -t file $DIR/${tdir}ga/f || error "source"
2225         [ `stat -c%h $DIR/${tdir}ga/f` == '2' ] || error "source nlink"
2226         $CHECKSTAT -t file $DIR/${tdir}gb/g || error "target"
2227         [ `stat -c%h $DIR/${tdir}gb/g` == '2' ] || error "target nlink"
2228 }
2229 run_test 31g "cross directory link==============="
2230
2231 test_31h() {
2232         echo "-- cross directory link --"
2233         test_mkdir -c1 $DIR/${tdir}
2234         test_mkdir -c1 $DIR/${tdir}/dir
2235         touch $DIR/${tdir}/f
2236         ln $DIR/${tdir}/f $DIR/${tdir}/dir/g
2237         $CHECKSTAT -t file $DIR/${tdir}/f || error "source"
2238         [ `stat -c%h $DIR/${tdir}/f` == '2' ] || error "source nlink"
2239         $CHECKSTAT -t file $DIR/${tdir}/dir/g || error "target"
2240         [ `stat -c%h $DIR/${tdir}/dir/g` == '2' ] || error "target nlink"
2241 }
2242 run_test 31h "cross directory link under child==============="
2243
2244 test_31i() {
2245         echo "-- cross directory link --"
2246         test_mkdir -c1 $DIR/$tdir
2247         test_mkdir -c1 $DIR/$tdir/dir
2248         touch $DIR/$tdir/dir/f
2249         ln $DIR/$tdir/dir/f $DIR/$tdir/g
2250         $CHECKSTAT -t file $DIR/$tdir/dir/f || error "source"
2251         [ `stat -c%h $DIR/$tdir/dir/f` == '2' ] || error "source nlink"
2252         $CHECKSTAT -t file $DIR/$tdir/g || error "target"
2253         [ `stat -c%h $DIR/$tdir/g` == '2' ] || error "target nlink"
2254 }
2255 run_test 31i "cross directory link under parent==============="
2256
2257 test_31j() {
2258         test_mkdir -c1 -p $DIR/$tdir
2259         test_mkdir -c1 -p $DIR/$tdir/dir1
2260         ln $DIR/$tdir/dir1 $DIR/$tdir/dir2 && error "ln for dir"
2261         link $DIR/$tdir/dir1 $DIR/$tdir/dir3 && error "link for dir"
2262         mlink $DIR/$tdir/dir1 $DIR/$tdir/dir4 && error "mlink for dir"
2263         mlink $DIR/$tdir/dir1 $DIR/$tdir/dir1 && error "mlink to the same dir"
2264         return 0
2265 }
2266 run_test 31j "link for directory==============="
2267
2268 test_31k() {
2269         test_mkdir -c1 -p $DIR/$tdir
2270         touch $DIR/$tdir/s
2271         touch $DIR/$tdir/exist
2272         mlink $DIR/$tdir/s $DIR/$tdir/t || error "mlink"
2273         mlink $DIR/$tdir/s $DIR/$tdir/exist && error "mlink to exist file"
2274         mlink $DIR/$tdir/s $DIR/$tdir/s && error "mlink to the same file"
2275         mlink $DIR/$tdir/s $DIR/$tdir && error "mlink to parent dir"
2276         mlink $DIR/$tdir $DIR/$tdir/s && error "mlink parent dir to target"
2277         mlink $DIR/$tdir/not-exist $DIR/$tdir/foo && error "mlink non-existing to new"
2278         mlink $DIR/$tdir/not-exist $DIR/$tdir/s && error "mlink non-existing to exist"
2279         return 0
2280 }
2281 run_test 31k "link to file: the same, non-existing, dir==============="
2282
2283 test_31m() {
2284         mkdir $DIR/d31m
2285         touch $DIR/d31m/s
2286         mkdir $DIR/d31m2
2287         touch $DIR/d31m2/exist
2288         mlink $DIR/d31m/s $DIR/d31m2/t || error "mlink"
2289         mlink $DIR/d31m/s $DIR/d31m2/exist && error "mlink to exist file"
2290         mlink $DIR/d31m/s $DIR/d31m2 && error "mlink to parent dir"
2291         mlink $DIR/d31m2 $DIR/d31m/s && error "mlink parent dir to target"
2292         mlink $DIR/d31m/not-exist $DIR/d31m2/foo && error "mlink non-existing to new"
2293         mlink $DIR/d31m/not-exist $DIR/d31m2/s && error "mlink non-existing to exist"
2294         return 0
2295 }
2296 run_test 31m "link to file: the same, non-existing, dir==============="
2297
2298 test_31n() {
2299         touch $DIR/$tfile || error "cannot create '$DIR/$tfile'"
2300         nlink=$(stat --format=%h $DIR/$tfile)
2301         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2302         local fd=$(free_fd)
2303         local cmd="exec $fd<$DIR/$tfile"
2304         eval $cmd
2305         cmd="exec $fd<&-"
2306         trap "eval $cmd" EXIT
2307         nlink=$(stat --dereference --format=%h /proc/self/fd/$fd)
2308         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2309         rm $DIR/$tfile || error "cannot remove '$DIR/$tfile'"
2310         nlink=$(stat --dereference --format=%h /proc/self/fd/$fd)
2311         [ ${nlink:--1} -eq 0 ] || error "nlink is $nlink, expected 0"
2312         eval $cmd
2313 }
2314 run_test 31n "check link count of unlinked file"
2315
2316 link_one() {
2317         local TEMPNAME=$(mktemp $1_XXXXXX)
2318         mlink $TEMPNAME $1 2> /dev/null &&
2319                 echo "$BASHPID: link $TEMPNAME to $1 succeeded"
2320         munlink $TEMPNAME
2321 }
2322
2323 test_31o() { # LU-2901
2324         test_mkdir -p $DIR/$tdir
2325         for LOOP in $(seq 100); do
2326                 rm -f $DIR/$tdir/$tfile*
2327                 for THREAD in $(seq 8); do
2328                         link_one $DIR/$tdir/$tfile.$LOOP &
2329                 done
2330                 wait
2331                 local LINKS=$(ls -1 $DIR/$tdir | grep -c $tfile.$LOOP)
2332                 [[ $LINKS -gt 1 ]] && ls $DIR/$tdir &&
2333                         error "$LINKS duplicate links to $tfile.$LOOP" &&
2334                         break || true
2335         done
2336 }
2337 run_test 31o "duplicate hard links with same filename"
2338
2339 test_31p() {
2340         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2341
2342         test_mkdir $DIR/$tdir
2343         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2344         $LFS setdirstripe -D -c2 -t all_char $DIR/$tdir/striped_dir
2345
2346         opendirunlink $DIR/$tdir/striped_dir/test1 ||
2347                 error "open unlink test1 failed"
2348         opendirunlink $DIR/$tdir/striped_dir/test2 ||
2349                 error "open unlink test2 failed"
2350
2351         $CHECKSTAT -a $DIR/$tdir/striped_dir/test1 ||
2352                 error "test1 still exists"
2353         $CHECKSTAT -a $DIR/$tdir/striped_dir/test2 ||
2354                 error "test2 still exists"
2355 }
2356 run_test 31p "remove of open striped directory"
2357
2358 cleanup_test32_mount() {
2359         trap 0
2360         $UMOUNT $DIR/$tdir/ext2-mountpoint
2361 }
2362
2363 test_32a() {
2364         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2365         echo "== more mountpoints and symlinks ================="
2366         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2367         trap cleanup_test32_mount EXIT
2368         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2369         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2370         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/.. || error
2371         cleanup_test32_mount
2372 }
2373 run_test 32a "stat d32a/ext2-mountpoint/.. ====================="
2374
2375 test_32b() {
2376         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2377         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2378         trap cleanup_test32_mount EXIT
2379         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2380         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2381         ls -al $DIR/$tdir/ext2-mountpoint/.. || error
2382         cleanup_test32_mount
2383 }
2384 run_test 32b "open d32b/ext2-mountpoint/.. ====================="
2385
2386 test_32c() {
2387         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2388         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2389         trap cleanup_test32_mount EXIT
2390         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2391         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2392         test_mkdir -p $DIR/$tdir/d2/test_dir
2393         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/../d2/test_dir || error
2394         cleanup_test32_mount
2395 }
2396 run_test 32c "stat d32c/ext2-mountpoint/../d2/test_dir ========="
2397
2398 test_32d() {
2399         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2400         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2401         trap cleanup_test32_mount EXIT
2402         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2403         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2404         test_mkdir -p $DIR/$tdir/d2/test_dir
2405         ls -al $DIR/$tdir/ext2-mountpoint/../d2/test_dir || error
2406         cleanup_test32_mount
2407 }
2408 run_test 32d "open d32d/ext2-mountpoint/../d2/test_dir ========="
2409
2410 test_32e() {
2411         [ -e $DIR/d32e ] && rm -fr $DIR/d32e
2412         test_mkdir -p $DIR/d32e/tmp
2413         TMP_DIR=$DIR/d32e/tmp
2414         ln -s $DIR/d32e $TMP_DIR/symlink11
2415         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2416         $CHECKSTAT -t link $DIR/d32e/tmp/symlink11 || error
2417         $CHECKSTAT -t link $DIR/d32e/symlink01 || error
2418 }
2419 run_test 32e "stat d32e/symlink->tmp/symlink->lustre-subdir ===="
2420
2421 test_32f() {
2422         [ -e $DIR/d32f ] && rm -fr $DIR/d32f
2423         test_mkdir -p $DIR/d32f/tmp
2424         TMP_DIR=$DIR/d32f/tmp
2425         ln -s $DIR/d32f $TMP_DIR/symlink11
2426         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2427         ls $DIR/d32f/tmp/symlink11  || error
2428         ls $DIR/d32f/symlink01 || error
2429 }
2430 run_test 32f "open d32f/symlink->tmp/symlink->lustre-subdir ===="
2431
2432 test_32g() {
2433         TMP_DIR=$DIR/$tdir/tmp
2434         test_mkdir -p $DIR/$tdir/tmp
2435         test_mkdir $DIR/${tdir}2
2436         ln -s $DIR/${tdir}2 $TMP_DIR/symlink12
2437         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2438         $CHECKSTAT -t link $TMP_DIR/symlink12 || error
2439         $CHECKSTAT -t link $DIR/$tdir/symlink02 || error
2440         $CHECKSTAT -t dir -f $TMP_DIR/symlink12 || error
2441         $CHECKSTAT -t dir -f $DIR/$tdir/symlink02 || error
2442 }
2443 run_test 32g "stat d32g/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2444
2445 test_32h() {
2446         rm -fr $DIR/$tdir $DIR/${tdir}2
2447         TMP_DIR=$DIR/$tdir/tmp
2448         test_mkdir -p $DIR/$tdir/tmp
2449         test_mkdir $DIR/${tdir}2
2450         ln -s $DIR/${tdir}2 $TMP_DIR/symlink12
2451         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2452         ls $TMP_DIR/symlink12 || error
2453         ls $DIR/$tdir/symlink02  || error
2454 }
2455 run_test 32h "open d32h/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2456
2457 test_32i() {
2458         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2459         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2460         trap cleanup_test32_mount EXIT
2461         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2462         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2463         touch $DIR/$tdir/test_file
2464         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../test_file || error
2465         cleanup_test32_mount
2466 }
2467 run_test 32i "stat d32i/ext2-mountpoint/../test_file ==========="
2468
2469 test_32j() {
2470         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2471         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2472         trap cleanup_test32_mount EXIT
2473         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2474         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2475         touch $DIR/$tdir/test_file
2476         cat $DIR/$tdir/ext2-mountpoint/../test_file || error
2477         cleanup_test32_mount
2478 }
2479 run_test 32j "open d32j/ext2-mountpoint/../test_file ==========="
2480
2481 test_32k() {
2482         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2483         rm -fr $DIR/$tdir
2484         trap cleanup_test32_mount EXIT
2485         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2486         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint
2487         test_mkdir -p $DIR/$tdir/d2
2488         touch $DIR/$tdir/d2/test_file || error
2489         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../d2/test_file || error
2490         cleanup_test32_mount
2491 }
2492 run_test 32k "stat d32k/ext2-mountpoint/../d2/test_file ========"
2493
2494 test_32l() {
2495         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2496         rm -fr $DIR/$tdir
2497         trap cleanup_test32_mount EXIT
2498         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2499         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2500         test_mkdir -p $DIR/$tdir/d2
2501         touch $DIR/$tdir/d2/test_file
2502         cat  $DIR/$tdir/ext2-mountpoint/../d2/test_file || error
2503         cleanup_test32_mount
2504 }
2505 run_test 32l "open d32l/ext2-mountpoint/../d2/test_file ========"
2506
2507 test_32m() {
2508         rm -fr $DIR/d32m
2509         test_mkdir -p $DIR/d32m/tmp
2510         TMP_DIR=$DIR/d32m/tmp
2511         ln -s $DIR $TMP_DIR/symlink11
2512         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2513         $CHECKSTAT -t link $DIR/d32m/tmp/symlink11 || error
2514         $CHECKSTAT -t link $DIR/d32m/symlink01 || error
2515 }
2516 run_test 32m "stat d32m/symlink->tmp/symlink->lustre-root ======"
2517
2518 test_32n() {
2519         rm -fr $DIR/d32n
2520         test_mkdir -p $DIR/d32n/tmp
2521         TMP_DIR=$DIR/d32n/tmp
2522         ln -s $DIR $TMP_DIR/symlink11
2523         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2524         ls -l $DIR/d32n/tmp/symlink11  || error
2525         ls -l $DIR/d32n/symlink01 || error
2526 }
2527 run_test 32n "open d32n/symlink->tmp/symlink->lustre-root ======"
2528
2529 test_32o() {
2530         touch $DIR/$tfile
2531         test_mkdir -p $DIR/d32o/tmp
2532         TMP_DIR=$DIR/d32o/tmp
2533         ln -s $DIR/$tfile $TMP_DIR/symlink12
2534         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2535         $CHECKSTAT -t link $DIR/d32o/tmp/symlink12 || error
2536         $CHECKSTAT -t link $DIR/d32o/symlink02 || error
2537         $CHECKSTAT -t file -f $DIR/d32o/tmp/symlink12 || error
2538         $CHECKSTAT -t file -f $DIR/d32o/symlink02 || error
2539 }
2540 run_test 32o "stat d32o/symlink->tmp/symlink->lustre-root/$tfile"
2541
2542 test_32p() {
2543     log 32p_1
2544         rm -fr $DIR/d32p
2545     log 32p_2
2546         rm -f $DIR/$tfile
2547     log 32p_3
2548         touch $DIR/$tfile
2549     log 32p_4
2550         test_mkdir -p $DIR/d32p/tmp
2551     log 32p_5
2552         TMP_DIR=$DIR/d32p/tmp
2553     log 32p_6
2554         ln -s $DIR/$tfile $TMP_DIR/symlink12
2555     log 32p_7
2556         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2557     log 32p_8
2558         cat $DIR/d32p/tmp/symlink12 || error
2559     log 32p_9
2560         cat $DIR/d32p/symlink02 || error
2561     log 32p_10
2562 }
2563 run_test 32p "open d32p/symlink->tmp/symlink->lustre-root/$tfile"
2564
2565 cleanup_testdir_mount() {
2566         trap 0
2567         $UMOUNT $DIR/$tdir
2568 }
2569
2570 test_32q() {
2571         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2572         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2573         trap cleanup_testdir_mount EXIT
2574         test_mkdir -p $DIR/$tdir
2575         touch $DIR/$tdir/under_the_mount
2576         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir
2577         ls $DIR/$tdir | grep "\<under_the_mount\>" && error
2578         cleanup_testdir_mount
2579 }
2580 run_test 32q "stat follows mountpoints in Lustre (should return error)"
2581
2582 test_32r() {
2583         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2584         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2585         trap cleanup_testdir_mount EXIT
2586         test_mkdir -p $DIR/$tdir
2587         touch $DIR/$tdir/under_the_mount
2588         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir
2589         ls $DIR/$tdir | grep -q under_the_mount && error || true
2590         cleanup_testdir_mount
2591 }
2592 run_test 32r "opendir follows mountpoints in Lustre (should return error)"
2593
2594 test_33aa() {
2595         rm -f $DIR/$tfile
2596         touch $DIR/$tfile
2597         chmod 444 $DIR/$tfile
2598         chown $RUNAS_ID $DIR/$tfile
2599         log 33_1
2600         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2601         log 33_2
2602 }
2603 run_test 33aa "write file with mode 444 (should return error) ===="
2604
2605 test_33a() {
2606         rm -fr $DIR/d33
2607         test_mkdir -p $DIR/d33
2608         chown $RUNAS_ID $DIR/d33
2609         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/d33/f33|| error "create"
2610         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/d33/f33 && \
2611                 error "open RDWR" || true
2612 }
2613 run_test 33a "test open file(mode=0444) with O_RDWR (should return error)"
2614
2615 test_33b() {
2616         rm -fr $DIR/d33
2617         test_mkdir -p $DIR/d33
2618         chown $RUNAS_ID $DIR/d33
2619         $RUNAS $OPENFILE -f 1286739555 $DIR/d33/f33 || true
2620 }
2621 run_test 33b "test open file with malformed flags (No panic)"
2622
2623 test_33c() {
2624         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2625         local ostnum
2626         local ostname
2627         local write_bytes
2628         local all_zeros
2629
2630         remote_ost_nodsh && skip "remote OST with nodsh" && return
2631         all_zeros=:
2632         rm -fr $DIR/d33
2633         test_mkdir -p $DIR/d33
2634         # Read: 0, Write: 4, create/destroy: 2/0, stat: 1, punch: 0
2635
2636         sync
2637         for ostnum in $(seq $OSTCOUNT); do
2638                 # test-framework's OST numbering is one-based, while Lustre's
2639                 # is zero-based
2640                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2641                 # Parsing llobdstat's output sucks; we could grep the /proc
2642                 # path, but that's likely to not be as portable as using the
2643                 # llobdstat utility.  So we parse lctl output instead.
2644                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2645                         obdfilter/$ostname/stats |
2646                         awk '/^write_bytes/ {print $7}' )
2647                 echo "baseline_write_bytes@$OSTnum/$ostname=$write_bytes"
2648                 if (( ${write_bytes:-0} > 0 ))
2649                 then
2650                         all_zeros=false
2651                         break;
2652                 fi
2653         done
2654
2655         $all_zeros || return 0
2656
2657         # Write four bytes
2658         echo foo > $DIR/d33/bar
2659         # Really write them
2660         sync
2661
2662         # Total up write_bytes after writing.  We'd better find non-zeros.
2663         for ostnum in $(seq $OSTCOUNT); do
2664                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2665                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2666                         obdfilter/$ostname/stats |
2667                         awk '/^write_bytes/ {print $7}' )
2668                 echo "write_bytes@$OSTnum/$ostname=$write_bytes"
2669                 if (( ${write_bytes:-0} > 0 ))
2670                 then
2671                         all_zeros=false
2672                         break;
2673                 fi
2674         done
2675
2676         if $all_zeros
2677         then
2678                 for ostnum in $(seq $OSTCOUNT); do
2679                         ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2680                         echo "Check that write_bytes is present in obdfilter/*/stats:"
2681                         do_facet ost$ostnum lctl get_param -n \
2682                                 obdfilter/$ostname/stats
2683                 done
2684                 error "OST not keeping write_bytes stats (b22312)"
2685         fi
2686 }
2687 run_test 33c "test llobdstat and write_bytes"
2688
2689 test_33d() {
2690         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
2691         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2692         local MDTIDX=1
2693         local remote_dir=$DIR/$tdir/remote_dir
2694
2695         test_mkdir -p $DIR/$tdir
2696         $LFS mkdir -i $MDTIDX $remote_dir ||
2697                 error "create remote directory failed"
2698
2699         touch $remote_dir/$tfile
2700         chmod 444 $remote_dir/$tfile
2701         chown $RUNAS_ID $remote_dir/$tfile
2702
2703         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2704
2705         chown $RUNAS_ID $remote_dir
2706         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 ||
2707                                         error "create" || true
2708         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 &&
2709                                     error "open RDWR" || true
2710         $RUNAS $OPENFILE -f 1286739555 $remote_dir/f33 || true
2711 }
2712 run_test 33d "openfile with 444 modes and malformed flags under remote dir"
2713
2714 test_33e() {
2715         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2716
2717         mkdir $DIR/$tdir
2718
2719         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2720         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
2721         mkdir $DIR/$tdir/local_dir
2722
2723         local s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
2724         local s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
2725         local l_mode=$(stat -c%f $DIR/$tdir/local_dir)
2726
2727         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
2728                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode"
2729
2730         rmdir $DIR/$tdir/* || error "rmdir failed"
2731
2732         umask 777
2733         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2734         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
2735         mkdir $DIR/$tdir/local_dir
2736
2737         s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
2738         s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
2739         l_mode=$(stat -c%f $DIR/$tdir/local_dir)
2740
2741         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
2742                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode 777"
2743
2744         rmdir $DIR/$tdir/* || error "rmdir(umask 777) failed"
2745
2746         umask 000
2747         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2748         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
2749         mkdir $DIR/$tdir/local_dir
2750
2751         s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
2752         s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
2753         l_mode=$(stat -c%f $DIR/$tdir/local_dir)
2754
2755         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
2756                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode 0"
2757 }
2758 run_test 33e "mkdir and striped directory should have same mode"
2759
2760 cleanup_33f() {
2761         trap 0
2762         do_facet $SINGLEMDS $LCTL set_param mdt.*.enable_remote_dir_gid=0
2763 }
2764
2765 test_33f() {
2766         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2767
2768         mkdir $DIR/$tdir
2769         chmod go+rwx $DIR/$tdir
2770         do_facet $SINGLEMDS $LCTL set_param mdt.*.enable_remote_dir_gid=-1
2771         trap cleanup_33f EXIT
2772
2773         $RUNAS lfs mkdir -c$MDSCOUNT $DIR/$tdir/striped_dir ||
2774                 error "cannot create striped directory"
2775
2776         $RUNAS touch $DIR/$tdir/striped_dir/{0..16} ||
2777                 error "cannot create files in striped directory"
2778
2779         $RUNAS rm $DIR/$tdir/striped_dir/{0..16} ||
2780                 error "cannot remove files in striped directory"
2781
2782         $RUNAS rmdir $DIR/$tdir/striped_dir ||
2783                 error "cannot remove striped directory"
2784
2785         cleanup_33f
2786 }
2787 run_test 33f "nonroot user can create, access, and remove a striped directory"
2788
2789 TEST_34_SIZE=${TEST_34_SIZE:-2000000000000}
2790 test_34a() {
2791         rm -f $DIR/f34
2792         $MCREATE $DIR/f34 || error
2793         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2794         $TRUNCATE $DIR/f34 $TEST_34_SIZE || error
2795         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2796         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2797 }
2798 run_test 34a "truncate file that has not been opened ==========="
2799
2800 test_34b() {
2801         [ ! -f $DIR/f34 ] && test_34a
2802         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2803         $OPENFILE -f O_RDONLY $DIR/f34
2804         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2805         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2806 }
2807 run_test 34b "O_RDONLY opening file doesn't create objects ====="
2808
2809 test_34c() {
2810         [ ! -f $DIR/f34 ] && test_34a
2811         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2812         $OPENFILE -f O_RDWR $DIR/f34
2813         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" && error
2814         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2815 }
2816 run_test 34c "O_RDWR opening file-with-size works =============="
2817
2818 test_34d() {
2819         [ ! -f $DIR/f34 ] && test_34a
2820         dd if=/dev/zero of=$DIR/f34 conv=notrunc bs=4k count=1 || error
2821         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2822         rm $DIR/f34
2823 }
2824 run_test 34d "write to sparse file ============================="
2825
2826 test_34e() {
2827         rm -f $DIR/f34e
2828         $MCREATE $DIR/f34e || error
2829         $TRUNCATE $DIR/f34e 1000 || error
2830         $CHECKSTAT -s 1000 $DIR/f34e || error
2831         $OPENFILE -f O_RDWR $DIR/f34e
2832         $CHECKSTAT -s 1000 $DIR/f34e || error
2833 }
2834 run_test 34e "create objects, some with size and some without =="
2835
2836 test_34f() { # bug 6242, 6243
2837         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2838         SIZE34F=48000
2839         rm -f $DIR/f34f
2840         $MCREATE $DIR/f34f || error
2841         $TRUNCATE $DIR/f34f $SIZE34F || error "truncating $DIR/f3f to $SIZE34F"
2842         dd if=$DIR/f34f of=$TMP/f34f
2843         $CHECKSTAT -s $SIZE34F $TMP/f34f || error "$TMP/f34f not $SIZE34F bytes"
2844         dd if=/dev/zero of=$TMP/f34fzero bs=$SIZE34F count=1
2845         cmp $DIR/f34f $TMP/f34fzero || error "$DIR/f34f not all zero"
2846         cmp $TMP/f34f $TMP/f34fzero || error "$TMP/f34f not all zero"
2847         rm $TMP/f34f $TMP/f34fzero $DIR/f34f
2848 }
2849 run_test 34f "read from a file with no objects until EOF ======="
2850
2851 test_34g() {
2852         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2853         dd if=/dev/zero of=$DIR/$tfile bs=1 count=100 seek=$TEST_34_SIZE || error
2854         $TRUNCATE $DIR/$tfile $((TEST_34_SIZE / 2))|| error
2855         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile || error "truncate failed"
2856         cancel_lru_locks osc
2857         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile || \
2858                 error "wrong size after lock cancel"
2859
2860         $TRUNCATE $DIR/$tfile $TEST_34_SIZE || error
2861         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile || \
2862                 error "expanding truncate failed"
2863         cancel_lru_locks osc
2864         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile || \
2865                 error "wrong expanded size after lock cancel"
2866 }
2867 run_test 34g "truncate long file ==============================="
2868
2869 test_34h() {
2870         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2871         local gid=10
2872         local sz=1000
2873
2874         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10 || error
2875         sync # Flush the cache so that multiop below does not block on cache
2876              # flush when getting the group lock
2877         $MULTIOP $DIR/$tfile OG${gid}T${sz}g${gid}c &
2878         MULTIPID=$!
2879
2880         # Since just timed wait is not good enough, let's do a sync write
2881         # that way we are sure enough time for a roundtrip + processing
2882         # passed + 2 seconds of extra margin.
2883         dd if=/dev/zero of=$DIR/${tfile}-1 bs=4096 oflag=direct count=1
2884         rm $DIR/${tfile}-1
2885         sleep 2
2886
2887         if [[ `ps h -o comm -p $MULTIPID` == "multiop" ]]; then
2888                 error "Multiop blocked on ftruncate, pid=$MULTIPID"
2889                 kill -9 $MULTIPID
2890         fi
2891         wait $MULTIPID
2892         local nsz=`stat -c %s $DIR/$tfile`
2893         [[ $nsz == $sz ]] || error "New size wrong $nsz != $sz"
2894 }
2895 run_test 34h "ftruncate file under grouplock should not block"
2896
2897 test_35a() {
2898         cp /bin/sh $DIR/f35a
2899         chmod 444 $DIR/f35a
2900         chown $RUNAS_ID $DIR/f35a
2901         $RUNAS $DIR/f35a && error || true
2902         rm $DIR/f35a
2903 }
2904 run_test 35a "exec file with mode 444 (should return and not leak) ====="
2905
2906 test_36a() {
2907         rm -f $DIR/f36
2908         utime $DIR/f36 || error
2909 }
2910 run_test 36a "MDS utime check (mknod, utime) ==================="
2911
2912 test_36b() {
2913         echo "" > $DIR/f36
2914         utime $DIR/f36 || error
2915 }
2916 run_test 36b "OST utime check (open, utime) ===================="
2917
2918 test_36c() {
2919         rm -f $DIR/d36/f36
2920         test_mkdir $DIR/d36
2921         chown $RUNAS_ID $DIR/d36
2922         $RUNAS utime $DIR/d36/f36 || error
2923 }
2924 run_test 36c "non-root MDS utime check (mknod, utime) =========="
2925
2926 test_36d() {
2927         [ ! -d $DIR/d36 ] && test_36c
2928         echo "" > $DIR/d36/f36
2929         $RUNAS utime $DIR/d36/f36 || error
2930 }
2931 run_test 36d "non-root OST utime check (open, utime) ==========="
2932
2933 test_36e() {
2934         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
2935         test_mkdir -p $DIR/$tdir
2936         touch $DIR/$tdir/$tfile
2937         $RUNAS utime $DIR/$tdir/$tfile && \
2938                 error "utime worked, expected failure" || true
2939 }
2940 run_test 36e "utime on non-owned file (should return error) ===="
2941
2942 subr_36fh() {
2943         local fl="$1"
2944         local LANG_SAVE=$LANG
2945         local LC_LANG_SAVE=$LC_LANG
2946         export LANG=C LC_LANG=C # for date language
2947
2948         DATESTR="Dec 20  2000"
2949         test_mkdir -p $DIR/$tdir
2950         lctl set_param fail_loc=$fl
2951         date; date +%s
2952         cp /etc/hosts $DIR/$tdir/$tfile
2953         sync & # write RPC generated with "current" inode timestamp, but delayed
2954         sleep 1
2955         touch --date="$DATESTR" $DIR/$tdir/$tfile # setattr timestamp in past
2956         LS_BEFORE="`ls -l $DIR/$tdir/$tfile`" # old timestamp from client cache
2957         cancel_lru_locks osc
2958         LS_AFTER="`ls -l $DIR/$tdir/$tfile`"  # timestamp from OST object
2959         date; date +%s
2960         [ "$LS_BEFORE" != "$LS_AFTER" ] && \
2961                 echo "BEFORE: $LS_BEFORE" && \
2962                 echo "AFTER : $LS_AFTER" && \
2963                 echo "WANT  : $DATESTR" && \
2964                 error "$DIR/$tdir/$tfile timestamps changed" || true
2965
2966         export LANG=$LANG_SAVE LC_LANG=$LC_LANG_SAVE
2967 }
2968
2969 test_36f() {
2970         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2971         #define OBD_FAIL_OST_BRW_PAUSE_BULK 0x214
2972         subr_36fh "0x80000214"
2973 }
2974 run_test 36f "utime on file racing with OST BRW write =========="
2975
2976 test_36g() {
2977         remote_ost_nodsh && skip "remote OST with nodsh" && return
2978         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2979         local fmd_max_age
2980         local fmd_before
2981         local fmd_after
2982
2983         test_mkdir -p $DIR/$tdir
2984         fmd_max_age=$(do_facet ost1 \
2985                 "lctl get_param -n obdfilter.*.client_cache_seconds 2> /dev/null | \
2986                 head -n 1")
2987
2988         fmd_before=$(do_facet ost1 \
2989                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
2990         touch $DIR/$tdir/$tfile
2991         sleep $((fmd_max_age + 12))
2992         fmd_after=$(do_facet ost1 \
2993                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
2994
2995         echo "fmd_before: $fmd_before"
2996         echo "fmd_after: $fmd_after"
2997         [[ $fmd_after -gt $fmd_before ]] &&
2998                 echo "AFTER: $fmd_after > BEFORE: $fmd_before" &&
2999                 error "fmd didn't expire after ping" || true
3000 }
3001 run_test 36g "filter mod data cache expiry ====================="
3002
3003 test_36h() {
3004         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3005         #define OBD_FAIL_OST_BRW_PAUSE_BULK2 0x227
3006         subr_36fh "0x80000227"
3007 }
3008 run_test 36h "utime on file racing with OST BRW write =========="
3009
3010 test_36i() {
3011         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
3012
3013         test_mkdir $DIR/$tdir
3014         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir
3015
3016         local mtime=$(stat -c%Y $DIR/$tdir/striped_dir)
3017         local new_mtime=$((mtime + 200))
3018
3019         #change Modify time of striped dir
3020         touch -m -d @$new_mtime $DIR/$tdir/striped_dir ||
3021                         error "change mtime failed"
3022
3023         local got=$(stat -c%Y $DIR/$tdir/striped_dir)
3024
3025         [ "$new_mtime" = "$got" ] || error "expect $new_mtime got $got"
3026 }
3027 run_test 36i "change mtime on striped directory"
3028
3029 # test_37 - duplicate with tests 32q 32r
3030
3031 test_38() {
3032         local file=$DIR/$tfile
3033         touch $file
3034         openfile -f O_DIRECTORY $file
3035         local RC=$?
3036         local ENOTDIR=20
3037         [ $RC -eq 0 ] && error "opened file $file with O_DIRECTORY" || true
3038         [ $RC -eq $ENOTDIR ] || error "error $RC should be ENOTDIR ($ENOTDIR)"
3039 }
3040 run_test 38 "open a regular file with O_DIRECTORY should return -ENOTDIR ==="
3041
3042 test_39() {
3043         touch $DIR/$tfile
3044         touch $DIR/${tfile}2
3045 #       ls -l  $DIR/$tfile $DIR/${tfile}2
3046 #       ls -lu  $DIR/$tfile $DIR/${tfile}2
3047 #       ls -lc  $DIR/$tfile $DIR/${tfile}2
3048         sleep 2
3049         $OPENFILE -f O_CREAT:O_TRUNC:O_WRONLY $DIR/${tfile}2
3050         if [ ! $DIR/${tfile}2 -nt $DIR/$tfile ]; then
3051                 echo "mtime"
3052                 ls -l --full-time $DIR/$tfile $DIR/${tfile}2
3053                 echo "atime"
3054                 ls -lu --full-time $DIR/$tfile $DIR/${tfile}2
3055                 echo "ctime"
3056                 ls -lc --full-time $DIR/$tfile $DIR/${tfile}2
3057                 error "O_TRUNC didn't change timestamps"
3058         fi
3059 }
3060 run_test 39 "mtime changed on create ==========================="
3061
3062 test_39b() {
3063         test_mkdir -p -c1 $DIR/$tdir
3064         cp -p /etc/passwd $DIR/$tdir/fopen
3065         cp -p /etc/passwd $DIR/$tdir/flink
3066         cp -p /etc/passwd $DIR/$tdir/funlink
3067         cp -p /etc/passwd $DIR/$tdir/frename
3068         ln $DIR/$tdir/funlink $DIR/$tdir/funlink2
3069
3070         sleep 1
3071         echo "aaaaaa" >> $DIR/$tdir/fopen
3072         echo "aaaaaa" >> $DIR/$tdir/flink
3073         echo "aaaaaa" >> $DIR/$tdir/funlink
3074         echo "aaaaaa" >> $DIR/$tdir/frename
3075
3076         local open_new=`stat -c %Y $DIR/$tdir/fopen`
3077         local link_new=`stat -c %Y $DIR/$tdir/flink`
3078         local unlink_new=`stat -c %Y $DIR/$tdir/funlink`
3079         local rename_new=`stat -c %Y $DIR/$tdir/frename`
3080
3081         cat $DIR/$tdir/fopen > /dev/null
3082         ln $DIR/$tdir/flink $DIR/$tdir/flink2
3083         rm -f $DIR/$tdir/funlink2
3084         mv -f $DIR/$tdir/frename $DIR/$tdir/frename2
3085
3086         for (( i=0; i < 2; i++ )) ; do
3087                 local open_new2=`stat -c %Y $DIR/$tdir/fopen`
3088                 local link_new2=`stat -c %Y $DIR/$tdir/flink`
3089                 local unlink_new2=`stat -c %Y $DIR/$tdir/funlink`
3090                 local rename_new2=`stat -c %Y $DIR/$tdir/frename2`
3091
3092                 [ $open_new2 -eq $open_new ] || error "open file reverses mtime"
3093                 [ $link_new2 -eq $link_new ] || error "link file reverses mtime"
3094                 [ $unlink_new2 -eq $unlink_new ] || error "unlink file reverses mtime"
3095                 [ $rename_new2 -eq $rename_new ] || error "rename file reverses mtime"
3096
3097                 cancel_lru_locks osc
3098                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3099         done
3100 }
3101 run_test 39b "mtime change on open, link, unlink, rename  ======"
3102
3103 # this should be set to past
3104 TEST_39_MTIME=`date -d "1 year ago" +%s`
3105
3106 # bug 11063
3107 test_39c() {
3108         touch $DIR1/$tfile
3109         sleep 2
3110         local mtime0=`stat -c %Y $DIR1/$tfile`
3111
3112         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3113         local mtime1=`stat -c %Y $DIR1/$tfile`
3114         [ "$mtime1" = $TEST_39_MTIME ] || \
3115                 error "mtime is not set to past: $mtime1, should be $TEST_39_MTIME"
3116
3117         local d1=`date +%s`
3118         echo hello >> $DIR1/$tfile
3119         local d2=`date +%s`
3120         local mtime2=`stat -c %Y $DIR1/$tfile`
3121         [ "$mtime2" -ge "$d1" ] && [ "$mtime2" -le "$d2" ] || \
3122                 error "mtime is not updated on write: $d1 <= $mtime2 <= $d2"
3123
3124         mv $DIR1/$tfile $DIR1/$tfile-1
3125
3126         for (( i=0; i < 2; i++ )) ; do
3127                 local mtime3=`stat -c %Y $DIR1/$tfile-1`
3128                 [ "$mtime2" = "$mtime3" ] || \
3129                         error "mtime ($mtime2) changed (to $mtime3) on rename"
3130
3131                 cancel_lru_locks osc
3132                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3133         done
3134 }
3135 run_test 39c "mtime change on rename ==========================="
3136
3137 # bug 21114
3138 test_39d() {
3139         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3140         touch $DIR1/$tfile
3141
3142         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3143
3144         for (( i=0; i < 2; i++ )) ; do
3145                 local mtime=`stat -c %Y $DIR1/$tfile`
3146                 [ $mtime = $TEST_39_MTIME ] || \
3147                         error "mtime($mtime) is not set to $TEST_39_MTIME"
3148
3149                 cancel_lru_locks osc
3150                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3151         done
3152 }
3153 run_test 39d "create, utime, stat =============================="
3154
3155 # bug 21114
3156 test_39e() {
3157         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3158         touch $DIR1/$tfile
3159         local mtime1=`stat -c %Y $DIR1/$tfile`
3160
3161         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3162
3163         for (( i=0; i < 2; i++ )) ; do
3164                 local mtime2=`stat -c %Y $DIR1/$tfile`
3165                 [ $mtime2 = $TEST_39_MTIME ] || \
3166                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
3167
3168                 cancel_lru_locks osc
3169                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3170         done
3171 }
3172 run_test 39e "create, stat, utime, stat ========================"
3173
3174 # bug 21114
3175 test_39f() {
3176         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3177         touch $DIR1/$tfile
3178         mtime1=`stat -c %Y $DIR1/$tfile`
3179
3180         sleep 2
3181         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3182
3183         for (( i=0; i < 2; i++ )) ; do
3184                 local mtime2=`stat -c %Y $DIR1/$tfile`
3185                 [ $mtime2 = $TEST_39_MTIME ] || \
3186                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
3187
3188                 cancel_lru_locks osc
3189                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3190         done
3191 }
3192 run_test 39f "create, stat, sleep, utime, stat ================="
3193
3194 # bug 11063
3195 test_39g() {
3196         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3197         echo hello >> $DIR1/$tfile
3198         local mtime1=`stat -c %Y $DIR1/$tfile`
3199
3200         sleep 2
3201         chmod o+r $DIR1/$tfile
3202
3203         for (( i=0; i < 2; i++ )) ; do
3204                 local mtime2=`stat -c %Y $DIR1/$tfile`
3205                 [ "$mtime1" = "$mtime2" ] || \
3206                         error "lost mtime: $mtime2, should be $mtime1"
3207
3208                 cancel_lru_locks osc
3209                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3210         done
3211 }
3212 run_test 39g "write, chmod, stat ==============================="
3213
3214 # bug 11063
3215 test_39h() {
3216         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3217         touch $DIR1/$tfile
3218         sleep 1
3219
3220         local d1=`date`
3221         echo hello >> $DIR1/$tfile
3222         local mtime1=`stat -c %Y $DIR1/$tfile`
3223
3224         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3225         local d2=`date`
3226         if [ "$d1" != "$d2" ]; then
3227                 echo "write and touch not within one second"
3228         else
3229                 for (( i=0; i < 2; i++ )) ; do
3230                         local mtime2=`stat -c %Y $DIR1/$tfile`
3231                         [ "$mtime2" = $TEST_39_MTIME ] || \
3232                                 error "lost mtime: $mtime2, should be $TEST_39_MTIME"
3233
3234                         cancel_lru_locks osc
3235                         if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3236                 done
3237         fi
3238 }
3239 run_test 39h "write, utime within one second, stat ============="
3240
3241 test_39i() {
3242         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3243         touch $DIR1/$tfile
3244         sleep 1
3245
3246         echo hello >> $DIR1/$tfile
3247         local mtime1=`stat -c %Y $DIR1/$tfile`
3248
3249         mv $DIR1/$tfile $DIR1/$tfile-1
3250
3251         for (( i=0; i < 2; i++ )) ; do
3252                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
3253
3254                 [ "$mtime1" = "$mtime2" ] || \
3255                         error "lost mtime: $mtime2, should be $mtime1"
3256
3257                 cancel_lru_locks osc
3258                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3259         done
3260 }
3261 run_test 39i "write, rename, stat =============================="
3262
3263 test_39j() {
3264         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3265         start_full_debug_logging
3266         touch $DIR1/$tfile
3267         sleep 1
3268
3269         #define OBD_FAIL_OSC_DELAY_SETTIME       0x412
3270         lctl set_param fail_loc=0x80000412
3271         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c ||
3272                 error "multiop failed"
3273         local multipid=$!
3274         local mtime1=`stat -c %Y $DIR1/$tfile`
3275
3276         mv $DIR1/$tfile $DIR1/$tfile-1
3277
3278         kill -USR1 $multipid
3279         wait $multipid || error "multiop close failed"
3280
3281         for (( i=0; i < 2; i++ )) ; do
3282                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
3283                 [ "$mtime1" = "$mtime2" ] ||
3284                         error "mtime is lost on close: $mtime2, " \
3285                               "should be $mtime1"
3286
3287                 cancel_lru_locks osc
3288                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3289         done
3290         lctl set_param fail_loc=0
3291         stop_full_debug_logging
3292 }
3293 run_test 39j "write, rename, close, stat ======================="
3294
3295 test_39k() {
3296         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3297         touch $DIR1/$tfile
3298         sleep 1
3299
3300         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c || error "multiop failed"
3301         local multipid=$!
3302         local mtime1=`stat -c %Y $DIR1/$tfile`
3303
3304         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3305
3306         kill -USR1 $multipid
3307         wait $multipid || error "multiop close failed"
3308
3309         for (( i=0; i < 2; i++ )) ; do
3310                 local mtime2=`stat -c %Y $DIR1/$tfile`
3311
3312                 [ "$mtime2" = $TEST_39_MTIME ] || \
3313                         error "mtime is lost on close: $mtime2, should be $TEST_39_MTIME"
3314
3315                 cancel_lru_locks osc
3316                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3317         done
3318 }
3319 run_test 39k "write, utime, close, stat ========================"
3320
3321 # this should be set to future
3322 TEST_39_ATIME=`date -d "1 year" +%s`
3323
3324 test_39l() {
3325         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3326         remote_mds_nodsh && skip "remote MDS with nodsh" && return
3327         local atime_diff=$(do_facet $SINGLEMDS \
3328                                 lctl get_param -n mdd.*MDT0000*.atime_diff)
3329         rm -rf $DIR/$tdir
3330         mkdir -p $DIR/$tdir
3331
3332         # test setting directory atime to future
3333         touch -a -d @$TEST_39_ATIME $DIR/$tdir
3334         local atime=$(stat -c %X $DIR/$tdir)
3335         [ "$atime" = $TEST_39_ATIME ] || \
3336                 error "atime is not set to future: $atime, $TEST_39_ATIME"
3337
3338         # test setting directory atime from future to now
3339         local d1=$(date +%s)
3340         ls $DIR/$tdir
3341         local d2=$(date +%s)
3342
3343         cancel_lru_locks mdc
3344         atime=$(stat -c %X $DIR/$tdir)
3345         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] || \
3346                 error "atime is not updated from future: $atime, $d1<atime<$d2"
3347
3348         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=2
3349         sleep 3
3350
3351         # test setting directory atime when now > dir atime + atime_diff
3352         d1=$(date +%s)
3353         ls $DIR/$tdir
3354         d2=$(date +%s)
3355         cancel_lru_locks mdc
3356         atime=$(stat -c %X $DIR/$tdir)
3357         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] || \
3358                 error "atime is not updated  : $atime, should be $d2"
3359
3360         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=60
3361         sleep 3
3362
3363         # test not setting directory atime when now < dir atime + atime_diff
3364         ls $DIR/$tdir
3365         cancel_lru_locks mdc
3366         atime=$(stat -c %X $DIR/$tdir)
3367         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] || \
3368                 error "atime is updated to $atime, should remain $d1<atime<$d2"
3369
3370         do_facet $SINGLEMDS \
3371                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
3372 }
3373 run_test 39l "directory atime update ==========================="
3374
3375 test_39m() {
3376         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3377         touch $DIR1/$tfile
3378         sleep 2
3379         local far_past_mtime=$(date -d "May 29 1953" +%s)
3380         local far_past_atime=$(date -d "Dec 17 1903" +%s)
3381
3382         touch -m -d @$far_past_mtime $DIR1/$tfile
3383         touch -a -d @$far_past_atime $DIR1/$tfile
3384
3385         for (( i=0; i < 2; i++ )) ; do
3386                 local timestamps=$(stat -c "%X %Y" $DIR1/$tfile)
3387                 [ "$timestamps" = "$far_past_atime $far_past_mtime" ] || \
3388                         error "atime or mtime set incorrectly"
3389
3390                 cancel_lru_locks osc
3391                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3392         done
3393 }
3394 run_test 39m "test atime and mtime before 1970"
3395
3396 test_39n() { # LU-3832
3397         local atime_diff=$(do_facet $SINGLEMDS \
3398                 lctl get_param -n mdd.*MDT0000*.atime_diff)
3399         local atime0
3400         local atime1
3401         local atime2
3402
3403         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=1
3404
3405         rm -rf $DIR/$tfile
3406         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 status=noxfer
3407         atime0=$(stat -c %X $DIR/$tfile)
3408
3409         sleep 5
3410         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
3411         atime1=$(stat -c %X $DIR/$tfile)
3412
3413         sleep 5
3414         cancel_lru_locks mdc
3415         cancel_lru_locks osc
3416         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
3417         atime2=$(stat -c %X $DIR/$tfile)
3418
3419         do_facet $SINGLEMDS \
3420                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
3421
3422         [ "$atime0" -eq "$atime1" ] || error "atime0 $atime0 != atime1 $atime1"
3423         [ "$atime1" -eq "$atime2" ] || error "atime0 $atime0 != atime1 $atime1"
3424 }
3425 run_test 39n "check that O_NOATIME is honored"
3426
3427 test_39o() {
3428         TESTDIR=$DIR/$tdir/$tfile
3429         [ -e $TESTDIR ] && rm -rf $TESTDIR
3430         mkdir -p $TESTDIR
3431         cd $TESTDIR
3432         links1=2
3433         ls
3434         mkdir a b
3435         ls
3436         links2=$(stat -c %h .)
3437         [ $(($links1 + 2)) != $links2 ] &&
3438                 error "wrong links count $(($links1 + 2)) != $links2"
3439         rmdir b
3440         links3=$(stat -c %h .)
3441         [ $(($links1 + 1)) != $links3 ] &&
3442                 error "wrong links count $links1 != $links3"
3443         return 0
3444 }
3445 run_test 39o "directory cached attributes updated after create ========"
3446
3447 test_39p() {
3448         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
3449         local MDTIDX=1
3450         TESTDIR=$DIR/$tdir/$tfile
3451         [ -e $TESTDIR ] && rm -rf $TESTDIR
3452         test_mkdir -p $TESTDIR
3453         cd $TESTDIR
3454         links1=2
3455         ls
3456         $LFS mkdir -i $MDTIDX $TESTDIR/remote_dir1
3457         $LFS mkdir -i $MDTIDX $TESTDIR/remote_dir2
3458         ls
3459         links2=$(stat -c %h .)
3460         [ $(($links1 + 2)) != $links2 ] &&
3461                 error "wrong links count $(($links1 + 2)) != $links2"
3462         rmdir remote_dir2
3463         links3=$(stat -c %h .)
3464         [ $(($links1 + 1)) != $links3 ] &&
3465                 error "wrong links count $links1 != $links3"
3466         return 0
3467 }
3468 run_test 39p "remote directory cached attributes updated after create ========"
3469
3470
3471 test_40() {
3472         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
3473         $RUNAS $OPENFILE -f O_WRONLY:O_TRUNC $DIR/$tfile &&
3474                 error "openfile O_WRONLY:O_TRUNC $tfile failed"
3475         $CHECKSTAT -t file -s 4096 $DIR/$tfile ||
3476                 error "$tfile is not 4096 bytes in size"
3477 }
3478 run_test 40 "failed open(O_TRUNC) doesn't truncate ============="
3479
3480 test_41() {
3481         # bug 1553
3482         small_write $DIR/f41 18
3483 }
3484 run_test 41 "test small file write + fstat ====================="
3485
3486 count_ost_writes() {
3487         lctl get_param -n osc.*.stats |
3488                 awk -vwrites=0 '/ost_write/ { writes += $2 } \
3489                         END { printf("%0.0f", writes) }'
3490 }
3491
3492 # decent default
3493 WRITEBACK_SAVE=500
3494 DIRTY_RATIO_SAVE=40
3495 MAX_DIRTY_RATIO=50
3496 BG_DIRTY_RATIO_SAVE=10
3497 MAX_BG_DIRTY_RATIO=25
3498
3499 start_writeback() {
3500         trap 0
3501         # in 2.6, restore /proc/sys/vm/dirty_writeback_centisecs,
3502         # dirty_ratio, dirty_background_ratio
3503         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3504                 sysctl -w vm.dirty_writeback_centisecs=$WRITEBACK_SAVE
3505                 sysctl -w vm.dirty_background_ratio=$BG_DIRTY_RATIO_SAVE
3506                 sysctl -w vm.dirty_ratio=$DIRTY_RATIO_SAVE
3507         else
3508                 # if file not here, we are a 2.4 kernel
3509                 kill -CONT `pidof kupdated`
3510         fi
3511 }
3512
3513 stop_writeback() {
3514         # setup the trap first, so someone cannot exit the test at the
3515         # exact wrong time and mess up a machine
3516         trap start_writeback EXIT
3517         # in 2.6, save and 0 /proc/sys/vm/dirty_writeback_centisecs
3518         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3519                 WRITEBACK_SAVE=`sysctl -n vm.dirty_writeback_centisecs`
3520                 sysctl -w vm.dirty_writeback_centisecs=0
3521                 sysctl -w vm.dirty_writeback_centisecs=0
3522                 # save and increase /proc/sys/vm/dirty_ratio
3523                 DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_ratio`
3524                 sysctl -w vm.dirty_ratio=$MAX_DIRTY_RATIO
3525                 # save and increase /proc/sys/vm/dirty_background_ratio
3526                 BG_DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_background_ratio`
3527                 sysctl -w vm.dirty_background_ratio=$MAX_BG_DIRTY_RATIO
3528         else
3529                 # if file not here, we are a 2.4 kernel
3530                 kill -STOP `pidof kupdated`
3531         fi
3532 }
3533
3534 # ensure that all stripes have some grant before we test client-side cache
3535 setup_test42() {
3536         for i in `seq -f $DIR/f42-%g 1 $OSTCOUNT`; do
3537                 dd if=/dev/zero of=$i bs=4k count=1
3538                 rm $i
3539         done
3540 }
3541
3542 # Tests 42* verify that our behaviour is correct WRT caching, file closure,
3543 # file truncation, and file removal.
3544 test_42a() {
3545         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3546         setup_test42
3547         cancel_lru_locks osc
3548         stop_writeback
3549         sync; sleep 1; sync # just to be safe
3550         BEFOREWRITES=`count_ost_writes`
3551         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur_grant_bytes | grep "[0-9]"
3552         dd if=/dev/zero of=$DIR/f42a bs=1024 count=100
3553         AFTERWRITES=`count_ost_writes`
3554         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
3555                 error "$BEFOREWRITES < $AFTERWRITES"
3556         start_writeback
3557 }
3558 run_test 42a "ensure that we don't flush on close =============="
3559
3560 test_42b() {
3561         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3562         setup_test42
3563         cancel_lru_locks osc
3564         stop_writeback
3565         sync
3566         dd if=/dev/zero of=$DIR/f42b bs=1024 count=100
3567         BEFOREWRITES=$(count_ost_writes)
3568         $MUNLINK $DIR/f42b || error "$MUNLINK $DIR/f42b: $?"
3569         AFTERWRITES=$(count_ost_writes)
3570         if [[ $BEFOREWRITES -lt $AFTERWRITES ]]; then
3571                 error "$BEFOREWRITES < $AFTERWRITES on unlink"
3572         fi
3573         BEFOREWRITES=$(count_ost_writes)
3574         sync || error "sync: $?"
3575         AFTERWRITES=$(count_ost_writes)
3576         if [[ $BEFOREWRITES -lt $AFTERWRITES ]]; then
3577                 error "$BEFOREWRITES < $AFTERWRITES on sync"
3578         fi
3579         dmesg | grep 'error from obd_brw_async' && error 'error writing back'
3580         start_writeback
3581         return 0
3582 }
3583 run_test 42b "test destroy of file with cached dirty data ======"
3584
3585 # if these tests just want to test the effect of truncation,
3586 # they have to be very careful.  consider:
3587 # - the first open gets a {0,EOF}PR lock
3588 # - the first write conflicts and gets a {0, count-1}PW
3589 # - the rest of the writes are under {count,EOF}PW
3590 # - the open for truncate tries to match a {0,EOF}PR
3591 #   for the filesize and cancels the PWs.
3592 # any number of fixes (don't get {0,EOF} on open, match
3593 # composite locks, do smarter file size management) fix
3594 # this, but for now we want these tests to verify that
3595 # the cancellation with truncate intent works, so we
3596 # start the file with a full-file pw lock to match against
3597 # until the truncate.
3598 trunc_test() {
3599         test=$1
3600         file=$DIR/$test
3601         offset=$2
3602         cancel_lru_locks osc
3603         stop_writeback
3604         # prime the file with 0,EOF PW to match
3605         touch $file
3606         $TRUNCATE $file 0
3607         sync; sync
3608         # now the real test..
3609         dd if=/dev/zero of=$file bs=1024 count=100
3610         BEFOREWRITES=`count_ost_writes`
3611         $TRUNCATE $file $offset
3612         cancel_lru_locks osc
3613         AFTERWRITES=`count_ost_writes`
3614         start_writeback
3615 }
3616
3617 test_42c() {
3618         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3619         trunc_test 42c 1024
3620         [ $BEFOREWRITES -eq $AFTERWRITES ] && \
3621             error "beforewrites $BEFOREWRITES == afterwrites $AFTERWRITES on truncate"
3622         rm $file
3623 }
3624 run_test 42c "test partial truncate of file with cached dirty data"
3625
3626 test_42d() {
3627         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3628         trunc_test 42d 0
3629         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
3630             error "beforewrites $BEFOREWRITES != afterwrites $AFTERWRITES on truncate"
3631         rm $file
3632 }
3633 run_test 42d "test complete truncate of file with cached dirty data"
3634
3635 test_42e() { # bug22074
3636         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3637         local TDIR=$DIR/${tdir}e
3638         local pagesz=$(page_size)
3639         local pages=16 # hardcoded 16 pages, don't change it.
3640         local files=$((OSTCOUNT * 500)) # hopefully 500 files on each OST
3641         local proc_osc0="osc.${FSNAME}-OST0000-osc-[^MDT]*"
3642         local max_dirty_mb
3643         local warmup_files
3644
3645         test_mkdir -p $DIR/${tdir}e
3646         $SETSTRIPE -c 1 $TDIR
3647         createmany -o $TDIR/f $files
3648
3649         max_dirty_mb=$($LCTL get_param -n $proc_osc0/max_dirty_mb)
3650
3651         # we assume that with $OSTCOUNT files, at least one of them will
3652         # be allocated on OST0.
3653         warmup_files=$((OSTCOUNT * max_dirty_mb))
3654         createmany -o $TDIR/w $warmup_files
3655
3656         # write a large amount of data into one file and sync, to get good
3657         # avail_grant number from OST.
3658         for ((i=0; i<$warmup_files; i++)); do
3659                 idx=$($GETSTRIPE -i $TDIR/w$i)
3660                 [ $idx -ne 0 ] && continue
3661                 dd if=/dev/zero of=$TDIR/w$i bs="$max_dirty_mb"M count=1
3662                 break
3663         done
3664         [[ $i -gt $warmup_files ]] && error "OST0 is still cold"
3665         sync
3666         $LCTL get_param $proc_osc0/cur_dirty_bytes
3667         $LCTL get_param $proc_osc0/cur_grant_bytes
3668
3669         # create as much dirty pages as we can while not to trigger the actual
3670         # RPCs directly. but depends on the env, VFS may trigger flush during this
3671         # period, hopefully we are good.
3672         for ((i=0; i<$warmup_files; i++)); do
3673                 idx=$($GETSTRIPE -i $TDIR/w$i)
3674                 [ $idx -ne 0 ] && continue
3675                 dd if=/dev/zero of=$TDIR/w$i bs=1M count=1 2>/dev/null
3676         done
3677         $LCTL get_param $proc_osc0/cur_dirty_bytes
3678         $LCTL get_param $proc_osc0/cur_grant_bytes
3679
3680         # perform the real test
3681         $LCTL set_param $proc_osc0/rpc_stats 0
3682         for ((;i<$files; i++)); do
3683                 [ $($GETSTRIPE -i $TDIR/f$i) -eq 0 ] || continue
3684                 dd if=/dev/zero of=$TDIR/f$i bs=$pagesz count=$pages 2>/dev/null
3685         done
3686         sync
3687         $LCTL get_param $proc_osc0/rpc_stats
3688
3689         local percent=0
3690         local have_ppr=false
3691         $LCTL get_param $proc_osc0/rpc_stats |
3692                 while read PPR RRPC RPCT RCUM BAR WRPC WPCT WCUM; do
3693                         # skip lines until we are at the RPC histogram data
3694                         [ "$PPR" == "pages" ] && have_ppr=true && continue
3695                         $have_ppr || continue
3696
3697                         # we only want the percent stat for < 16 pages
3698                         [[ $(echo $PPR | tr -d ':') -ge $pages ]] && break
3699
3700                         percent=$((percent + WPCT))
3701                         if [[ $percent -gt 15 ]]; then
3702                                 error "less than 16-pages write RPCs" \
3703                                       "$percent% > 15%"
3704                                 break
3705                         fi
3706                 done
3707         rm -rf $TDIR
3708 }
3709 run_test 42e "verify sub-RPC writes are not done synchronously"
3710
3711 test_43() {
3712         test_mkdir -p $DIR/$tdir
3713         cp -p /bin/ls $DIR/$tdir/$tfile
3714         $MULTIOP $DIR/$tdir/$tfile Ow_c &
3715         pid=$!
3716         # give multiop a chance to open
3717         sleep 1
3718
3719         $DIR/$tdir/$tfile && error || true
3720         kill -USR1 $pid
3721 }
3722 run_test 43 "execution of file opened for write should return -ETXTBSY"
3723
3724 test_43a() {
3725         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3726         test_mkdir -p $DIR/$tdir
3727         cp -p `which $MULTIOP` $DIR/$tdir/multiop ||
3728                         cp -p multiop $DIR/$tdir/multiop
3729         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/$tfile.junk O_c ||
3730                         return 1
3731         MULTIOP_PID=$!
3732         $MULTIOP $DIR/$tdir/multiop Oc && error "expected error, got success"
3733         kill -USR1 $MULTIOP_PID || return 2
3734         wait $MULTIOP_PID || return 3
3735         rm $TMP/$tfile.junk $DIR/$tdir/multiop
3736 }
3737 run_test 43a "open(RDWR) of file being executed should return -ETXTBSY"
3738
3739 test_43b() {
3740         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3741         test_mkdir -p $DIR/$tdir
3742         cp -p `which $MULTIOP` $DIR/$tdir/multiop ||
3743                         cp -p multiop $DIR/$tdir/multiop
3744         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/$tfile.junk O_c ||
3745                         return 1
3746         MULTIOP_PID=$!
3747         $TRUNCATE $DIR/$tdir/multiop 0 && error "expected error, got success"
3748         kill -USR1 $MULTIOP_PID || return 2
3749         wait $MULTIOP_PID || return 3
3750         rm $TMP/$tfile.junk $DIR/$tdir/multiop
3751 }
3752 run_test 43b "truncate of file being executed should return -ETXTBSY"
3753
3754 test_43c() {
3755         local testdir="$DIR/$tdir"
3756         test_mkdir -p $DIR/$tdir
3757         cp $SHELL $testdir/
3758         ( cd $(dirname $SHELL) && md5sum $(basename $SHELL) ) | \
3759                 ( cd $testdir && md5sum -c)
3760 }
3761 run_test 43c "md5sum of copy into lustre========================"
3762
3763 test_44() {
3764         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping 2-stripe test" && return
3765         dd if=/dev/zero of=$DIR/f1 bs=4k count=1 seek=1023
3766         dd if=$DIR/f1 bs=4k count=1 > /dev/null
3767 }
3768 run_test 44 "zero length read from a sparse stripe ============="
3769
3770 test_44a() {
3771         local nstripe=$($LCTL lov_getconfig $DIR | grep default_stripe_count: |
3772                 awk '{ print $2 }')
3773         [ -z "$nstripe" ] && skip "can't get stripe info" && return
3774         [[ $nstripe -gt $OSTCOUNT ]] &&
3775             skip "Wrong default_stripe_count: $nstripe (OSTCOUNT: $OSTCOUNT)" &&
3776             return
3777         local stride=$($LCTL lov_getconfig $DIR | grep default_stripe_size: |
3778                 awk '{ print $2 }')
3779         if [[ $nstripe -eq 0 || $nstripe -eq -1 ]]; then
3780                 nstripe=$($LCTL lov_getconfig $DIR | grep obd_count: |
3781                         awk '{ print $2 }')
3782         fi
3783
3784         OFFSETS="0 $((stride/2)) $((stride-1))"
3785         for offset in $OFFSETS; do
3786                 for i in $(seq 0 $((nstripe-1))); do
3787                         local GLOBALOFFSETS=""
3788                         # size in Bytes
3789                         local size=$((((i + 2 * $nstripe )*$stride + $offset)))
3790                         local myfn=$DIR/d44a-$size
3791                         echo "--------writing $myfn at $size"
3792                         ll_sparseness_write $myfn $size ||
3793                                 error "ll_sparseness_write"
3794                         GLOBALOFFSETS="$GLOBALOFFSETS $size"
3795                         ll_sparseness_verify $myfn $GLOBALOFFSETS ||
3796                                 error "ll_sparseness_verify $GLOBALOFFSETS"
3797
3798                         for j in $(seq 0 $((nstripe-1))); do
3799                                 # size in Bytes
3800                                 size=$((((j + $nstripe )*$stride + $offset)))
3801                                 ll_sparseness_write $myfn $size ||
3802                                         error "ll_sparseness_write"
3803                                 GLOBALOFFSETS="$GLOBALOFFSETS $size"
3804                         done
3805                         ll_sparseness_verify $myfn $GLOBALOFFSETS ||
3806                                 error "ll_sparseness_verify $GLOBALOFFSETS"
3807                         rm -f $myfn
3808                 done
3809         done
3810 }
3811 run_test 44a "test sparse pwrite ==============================="
3812
3813 dirty_osc_total() {
3814         tot=0
3815         for d in `lctl get_param -n osc.*.cur_dirty_bytes`; do
3816                 tot=$(($tot + $d))
3817         done
3818         echo $tot
3819 }
3820 do_dirty_record() {
3821         before=`dirty_osc_total`
3822         echo executing "\"$*\""
3823         eval $*
3824         after=`dirty_osc_total`
3825         echo before $before, after $after
3826 }
3827 test_45() {
3828         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3829         f="$DIR/f45"
3830         # Obtain grants from OST if it supports it
3831         echo blah > ${f}_grant
3832         stop_writeback
3833         sync
3834         do_dirty_record "echo blah > $f"
3835         [[ $before -eq $after ]] && error "write wasn't cached"
3836         do_dirty_record "> $f"
3837         [[ $before -gt $after ]] || error "truncate didn't lower dirty count"
3838         do_dirty_record "echo blah > $f"
3839         [[ $before -eq $after ]] && error "write wasn't cached"
3840         do_dirty_record "sync"
3841         [[ $before -gt $after ]] || error "writeback didn't lower dirty count"
3842         do_dirty_record "echo blah > $f"
3843         [[ $before -eq $after ]] && error "write wasn't cached"
3844         do_dirty_record "cancel_lru_locks osc"
3845         [[ $before -gt $after ]] ||
3846                 error "lock cancellation didn't lower dirty count"
3847         start_writeback
3848 }
3849 run_test 45 "osc io page accounting ============================"
3850
3851 # in a 2 stripe file (lov.sh), page 1023 maps to page 511 in its object.  this
3852 # test tickles a bug where re-dirtying a page was failing to be mapped to the
3853 # objects offset and an assert hit when an rpc was built with 1023's mapped
3854 # offset 511 and 511's raw 511 offset. it also found general redirtying bugs.
3855 test_46() {
3856         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3857         f="$DIR/f46"
3858         stop_writeback
3859         sync
3860         dd if=/dev/zero of=$f bs=`page_size` seek=511 count=1
3861         sync
3862         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=1023 count=1
3863         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=511 count=1
3864         sync
3865         start_writeback
3866 }
3867 run_test 46 "dirtying a previously written page ================"
3868
3869 # test_47 is removed "Device nodes check" is moved to test_28
3870
3871 test_48a() { # bug 2399
3872         [ $(facet_fstype $SINGLEMDS) = "zfs" ] &&
3873         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.63) ] &&
3874                 skip "MDS prior to 2.3.63 handle ZFS dir .. incorrectly" &&
3875                 return
3876         test_mkdir $DIR/$tdir
3877         cd $DIR/$tdir
3878         mv $DIR/$tdir $DIR/$tdir.new || error "move directory failed"
3879         test_mkdir $DIR/$tdir || error "recreate directory failed"
3880         touch foo || error "'touch foo' failed after recreating cwd"
3881         test_mkdir bar || error "'mkdir foo' failed after recreating cwd"
3882         touch .foo || error "'touch .foo' failed after recreating cwd"
3883         test_mkdir .bar || error "'mkdir .foo' failed after recreating cwd"
3884         ls . > /dev/null || error "'ls .' failed after recreating cwd"
3885         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
3886         cd . || error "'cd .' failed after recreating cwd"
3887         test_mkdir . && error "'mkdir .' worked after recreating cwd"
3888         rmdir . && error "'rmdir .' worked after recreating cwd"
3889         ln -s . baz || error "'ln -s .' failed after recreating cwd"
3890         cd .. || error "'cd ..' failed after recreating cwd"
3891 }
3892 run_test 48a "Access renamed working dir (should return errors)="
3893
3894 test_48b() { # bug 2399
3895         rm -rf $DIR/$tdir
3896         test_mkdir $DIR/$tdir
3897         cd $DIR/$tdir
3898         rmdir $DIR/$tdir || error "remove cwd $DIR/$tdir failed"
3899         touch foo && error "'touch foo' worked after removing cwd"
3900         test_mkdir foo && error "'mkdir foo' worked after removing cwd"
3901         touch .foo && error "'touch .foo' worked after removing cwd"
3902         test_mkdir .foo && error "'mkdir .foo' worked after removing cwd"
3903         ls . > /dev/null && error "'ls .' worked after removing cwd"
3904         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
3905         is_patchless || ( cd . && error "'cd .' worked after removing cwd" )
3906         test_mkdir . && error "'mkdir .' worked after removing cwd"
3907         rmdir . && error "'rmdir .' worked after removing cwd"
3908         ln -s . foo && error "'ln -s .' worked after removing cwd"
3909         cd .. || echo "'cd ..' failed after removing cwd `pwd`"  #bug 3517
3910 }
3911 run_test 48b "Access removed working dir (should return errors)="
3912
3913 test_48c() { # bug 2350
3914         #lctl set_param debug=-1
3915         #set -vx
3916         rm -rf $DIR/$tdir
3917         test_mkdir -p $DIR/$tdir/dir
3918         cd $DIR/$tdir/dir
3919         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
3920         $TRACE touch foo && error "touch foo worked after removing cwd"
3921         $TRACE test_mkdir foo && error "'mkdir foo' worked after removing cwd"
3922         touch .foo && error "touch .foo worked after removing cwd"
3923         test_mkdir .foo && error "mkdir .foo worked after removing cwd"
3924         $TRACE ls . && error "'ls .' worked after removing cwd"
3925         $TRACE ls .. || error "'ls ..' failed after removing cwd"
3926         is_patchless || ( $TRACE cd . &&
3927                         error "'cd .' worked after removing cwd" )
3928         $TRACE test_mkdir . && error "'mkdir .' worked after removing cwd"
3929         $TRACE rmdir . && error "'rmdir .' worked after removing cwd"
3930         $TRACE ln -s . foo && error "'ln -s .' worked after removing cwd"
3931         $TRACE cd .. || echo "'cd ..' failed after removing cwd `pwd`" #bug 3415
3932 }
3933 run_test 48c "Access removed working subdir (should return errors)"
3934
3935 test_48d() { # bug 2350
3936         #lctl set_param debug=-1
3937         #set -vx
3938         rm -rf $DIR/$tdir
3939         test_mkdir -p $DIR/$tdir/dir
3940         cd $DIR/$tdir/dir
3941         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
3942         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
3943         $TRACE touch foo && error "'touch foo' worked after removing parent"
3944         $TRACE test_mkdir foo && error "mkdir foo worked after removing parent"
3945         touch .foo && error "'touch .foo' worked after removing parent"
3946         test_mkdir .foo && error "mkdir .foo worked after removing parent"
3947         $TRACE ls . && error "'ls .' worked after removing parent"
3948         $TRACE ls .. && error "'ls ..' worked after removing parent"
3949         is_patchless || ( $TRACE cd . &&
3950                         error "'cd .' worked after recreate parent" )
3951         $TRACE test_mkdir . && error "'mkdir .' worked after removing parent"
3952         $TRACE rmdir . && error "'rmdir .' worked after removing parent"
3953         $TRACE ln -s . foo && error "'ln -s .' worked after removing parent"
3954         is_patchless || ( $TRACE cd .. &&
3955                         error "'cd ..' worked after removing parent" || true )
3956 }
3957 run_test 48d "Access removed parent subdir (should return errors)"
3958
3959 test_48e() { # bug 4134
3960         #lctl set_param debug=-1
3961         #set -vx
3962         rm -rf $DIR/$tdir
3963         test_mkdir -p $DIR/$tdir/dir
3964         cd $DIR/$tdir/dir
3965         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
3966         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
3967         $TRACE touch $DIR/$tdir || error "'touch $DIR/$tdir' failed"
3968         $TRACE chmod +x $DIR/$tdir || error "'chmod +x $DIR/$tdir' failed"
3969         # On a buggy kernel addition of "touch foo" after cd .. will
3970         # produce kernel oops in lookup_hash_it
3971         touch ../foo && error "'cd ..' worked after recreate parent"
3972         cd $DIR
3973         $TRACE rm $DIR/$tdir || error "rm '$DIR/$tdir' failed"
3974 }
3975 run_test 48e "Access to recreated parent subdir (should return errors)"
3976
3977 test_49() { # LU-1030
3978         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3979         # get ost1 size - lustre-OST0000
3980         ost1_size=$(do_facet ost1 $LFS df | grep ${ost1_svc} |
3981                 awk '{ print $4 }')
3982         # write 800M at maximum
3983         [[ $ost1_size -lt 2 ]] && ost1_size=2
3984         [[ $ost1_size -gt 819200 ]] && ost1_size=819200
3985
3986         $SETSTRIPE -c 1 -i 0 $DIR/$tfile
3987         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((ost1_size >> 2)) &
3988         local dd_pid=$!
3989
3990         # change max_pages_per_rpc while writing the file
3991         local osc1_mppc=osc.$(get_osc_import_name client ost1).max_pages_per_rpc
3992         local orig_mppc=$($LCTL get_param -n $osc1_mppc)
3993         # loop until dd process exits
3994         while ps ax -opid | grep -wq $dd_pid; do
3995                 $LCTL set_param $osc1_mppc=$((RANDOM % 256 + 1))
3996                 sleep $((RANDOM % 5 + 1))
3997         done
3998         # restore original max_pages_per_rpc
3999         $LCTL set_param $osc1_mppc=$orig_mppc
4000         rm $DIR/$tfile || error "rm $DIR/$tfile failed"
4001 }
4002 run_test 49 "Change max_pages_per_rpc won't break osc extent"
4003
4004 test_50() {
4005         # bug 1485
4006         test_mkdir $DIR/$tdir
4007         cd $DIR/$tdir
4008         ls /proc/$$/cwd || error "ls /proc/$$/cwd failed"
4009 }
4010 run_test 50 "special situations: /proc symlinks  ==============="
4011
4012 test_51a() {    # was test_51
4013         # bug 1516 - create an empty entry right after ".." then split dir
4014         test_mkdir -c1 $DIR/$tdir
4015         touch $DIR/$tdir/foo
4016         $MCREATE $DIR/$tdir/bar
4017         rm $DIR/$tdir/foo
4018         createmany -m $DIR/$tdir/longfile 201
4019         FNUM=202
4020         while [[ $(ls -sd $DIR/$tdir | awk '{ print $1 }') -eq 4 ]]; do
4021                 $MCREATE $DIR/$tdir/longfile$FNUM
4022                 FNUM=$(($FNUM + 1))
4023                 echo -n "+"
4024         done
4025         echo
4026         ls -l $DIR/$tdir > /dev/null || error "ls -l $DIR/$tdir failed"
4027 }
4028 run_test 51a "special situations: split htree with empty entry =="
4029
4030 export NUMTEST=70000
4031 test_51b() {
4032         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4033         local BASE=$DIR/d${base}.${TESTSUITE}
4034
4035         # cleanup the directory
4036         rm -fr $BASE
4037
4038         test_mkdir -p -c1 $BASE
4039
4040         $LFS df
4041         $LFS df -i
4042         local mdtidx=$(printf "%04x" $($LFS getstripe -M $BASE))
4043         local numfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.filesfree)
4044         [[ $numfree -lt 21000 ]] &&
4045                 skip "not enough free inodes ($numfree) on MDT$mdtidx" &&
4046                 return
4047
4048         [[ $numfree -lt $NUMTEST ]] && NUMTEST=$(($numfree - 50)) &&
4049                 echo "reduced count to $NUMTEST due to inodes on MDT$mdtidx"
4050
4051         # need to check free space for the directories as well
4052         local blkfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.kbytesavail)
4053         numfree=$((blkfree / 4))
4054         [[ $numfree -lt $NUMTEST ]] && NUMTEST=$((numfree - 50)) &&
4055                 echo "reduced count to $NUMTEST due to blocks on MDT$mdtidx"
4056
4057         createmany -d $BASE/d $NUMTEST && echo $NUMTEST > $BASE/fnum ||
4058         {
4059                 $LFS df
4060                 $LFS df -i
4061                 echo "failed" > $BASE/fnum
4062                 error "failed to create $NUMTEST subdirs in MDT$mdtidx:$BASE"
4063         }
4064 }
4065 run_test 51b "exceed 64k subdirectory nlink limit"
4066
4067 test_51ba() { # LU-993
4068         local BASE=$DIR/d${base}.${TESTSUITE}
4069         # unlink all but 100 subdirectories, then check it still works
4070         local LEFT=100
4071         [ -f $BASE/fnum ] && local NUMPREV=$(cat $BASE/fnum) && rm $BASE/fnum
4072
4073         [ "$NUMPREV" != "failed" ] && NUMTEST=$NUMPREV
4074         local DELETE=$((NUMTEST - LEFT))
4075
4076         # continue on to run this test even if 51b didn't finish,
4077         # just to delete the many subdirectories created.
4078         [ ! -d "${BASE}/d1" ] && skip "test_51b() not run" && return 0
4079
4080         # for ldiskfs the nlink count should be 1, but this is OSD specific
4081         # and so this is listed for informational purposes only
4082         echo "nlink before: $(stat -c %h $BASE), created before: $NUMTEST"
4083         unlinkmany -d $BASE/d $DELETE
4084         RC=$?
4085
4086         if [ $RC -ne 0 ]; then
4087                 if [ "$NUMPREV" == "failed" ]; then
4088                         skip "previous setup failed"
4089                         return 0
4090                 else
4091                         error "unlink of first $DELETE subdirs failed"
4092                         return $RC
4093                 fi
4094         fi
4095
4096         echo "nlink between: $(stat -c %h $BASE)"
4097         # trim the first line of ls output
4098         local FOUND=$(($(ls -l ${BASE} | wc -l) - 1))
4099         [ $FOUND -ne $LEFT ] &&
4100                 error "can't find subdirs: found only $FOUND/$LEFT"
4101
4102         unlinkmany -d $BASE/d $DELETE $LEFT ||
4103                 error "unlink of second $LEFT subdirs failed"
4104         # regardless of whether the backing filesystem tracks nlink accurately
4105         # or not, the nlink count shouldn't be more than "." and ".." here
4106         local AFTER=$(stat -c %h $BASE)
4107         [[ $AFTER -gt 2 ]] && error "nlink after: $AFTER > 2" ||
4108                 echo "nlink after: $AFTER"
4109 }
4110 run_test 51ba "verify nlink for many subdirectory cleanup"
4111
4112 test_51d() {
4113         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4114         [[ $OSTCOUNT -lt 3 ]] &&
4115                 skip_env "skipping test with few OSTs" && return
4116         test_mkdir -p $DIR/$tdir
4117         createmany -o $DIR/$tdir/t- 1000
4118         $GETSTRIPE $DIR/$tdir > $TMP/files
4119         for N in $(seq 0 $((OSTCOUNT - 1))); do
4120                 OBJS[$N]=$(awk -vobjs=0 '($1 == '$N') { objs += 1 } \
4121                         END { printf("%0.0f", objs) }' $TMP/files)
4122                 OBJS0[$N]=$(grep -A 1 idx $TMP/files | awk -vobjs=0 \
4123                         '($1 == '$N') { objs += 1 } \
4124                         END { printf("%0.0f", objs) }')
4125                 log "OST$N has ${OBJS[$N]} objects, ${OBJS0[$N]} are index 0"
4126         done
4127         unlinkmany $DIR/$tdir/t- 1000
4128
4129         NLAST=0
4130         for N in $(seq 1 $((OSTCOUNT - 1))); do
4131                 [[ ${OBJS[$N]} -lt $((${OBJS[$NLAST]} - 20)) ]] &&
4132                         error "OST $N has less objects vs OST $NLAST" \
4133                               " (${OBJS[$N]} < ${OBJS[$NLAST]}"
4134                 [[ ${OBJS[$N]} -gt $((${OBJS[$NLAST]} + 20)) ]] &&
4135                         error "OST $N has less objects vs OST $NLAST" \
4136                               " (${OBJS[$N]} < ${OBJS[$NLAST]}"
4137
4138                 [[ ${OBJS0[$N]} -lt $((${OBJS0[$NLAST]} - 20)) ]] &&
4139                         error "OST $N has less #0 objects vs OST $NLAST" \
4140                               " (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
4141                 [[ ${OBJS0[$N]} -gt $((${OBJS0[$NLAST]} + 20)) ]] &&
4142                         error "OST $N has less #0 objects vs OST $NLAST" \
4143                               " (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
4144                 NLAST=$N
4145         done
4146 }
4147 run_test 51d "check object distribution ===================="
4148
4149 test_51e() {
4150         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
4151                 skip "Only applicable to ldiskfs-based MDTs"
4152                 return
4153         fi
4154
4155         test_mkdir -c1 $DIR/$tdir       || error "create $tdir failed"
4156         test_mkdir -c1 $DIR/$tdir/d0    || error "create d0 failed"
4157
4158         touch $DIR/$tdir/d0/foo
4159         createmany -l $DIR/$tdir/d0/foo $DIR/$tdir/d0/f- 65001 &&
4160                 error "file exceed 65000 nlink limit!"
4161         unlinkmany $DIR/$tdir/d0/f- 65001
4162         return 0
4163 }
4164 run_test 51e "check file nlink limit"
4165
4166 test_52a() {
4167         [ -f $DIR/$tdir/foo ] && chattr -a $DIR/$tdir/foo
4168         test_mkdir -p $DIR/$tdir
4169         touch $DIR/$tdir/foo
4170         chattr +a $DIR/$tdir/foo || error "chattr +a failed"
4171         echo bar >> $DIR/$tdir/foo || error "append bar failed"
4172         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
4173         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
4174         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
4175                                         error "link worked"
4176         echo foo >> $DIR/$tdir/foo || error "append foo failed"
4177         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
4178         lsattr $DIR/$tdir/foo | egrep -q "^-+a[-e]+ $DIR/$tdir/foo" ||
4179                                                      error "lsattr"
4180         chattr -a $DIR/$tdir/foo || error "chattr -a failed"
4181         cp -r $DIR/$tdir /tmp/
4182         rm -fr $DIR/$tdir || error "cleanup rm failed"
4183 }
4184 run_test 52a "append-only flag test (should return errors) ====="
4185
4186 test_52b() {
4187         [ -f $DIR/$tdir/foo ] && chattr -i $DIR/$tdir/foo
4188         test_mkdir -p $DIR/$tdir
4189         touch $DIR/$tdir/foo
4190         chattr +i $DIR/$tdir/foo || error "chattr +i failed"
4191         cat test > $DIR/$tdir/foo && error "cat test worked"
4192         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
4193         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
4194         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
4195                                         error "link worked"
4196         echo foo >> $DIR/$tdir/foo && error "echo worked"
4197         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
4198         [ -f $DIR/$tdir/foo ] || error "$tdir/foo is not a file"
4199         [ -f $DIR/$tdir/foo_ren ] && error "$tdir/foo_ren is not a file"
4200         lsattr $DIR/$tdir/foo | egrep -q "^-+i[-e]+ $DIR/$tdir/foo" ||
4201                                                         error "lsattr"
4202         chattr -i $DIR/$tdir/foo || error "chattr failed"
4203
4204         rm -fr $DIR/$tdir || error "unable to remove $DIR/$tdir"
4205 }
4206 run_test 52b "immutable flag test (should return errors) ======="
4207
4208 test_53() {
4209         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4210         remote_mds_nodsh && skip "remote MDS with nodsh" && return
4211         remote_ost_nodsh && skip "remote OST with nodsh" && return
4212
4213         local param
4214         local param_seq
4215         local ostname
4216         local mds_last
4217         local mds_last_seq
4218         local ost_last
4219         local ost_last_seq
4220         local ost_last_id
4221         local ostnum
4222         local node
4223         local found=false
4224         local support_last_seq=true
4225
4226         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.60) ]] ||
4227                 support_last_seq=false
4228
4229         # only test MDT0000
4230         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS)
4231         local value
4232         for value in $(do_facet $SINGLEMDS \
4233                        $LCTL get_param osc.$mdtosc.prealloc_last_id) ; do
4234                 param=$(echo ${value[0]} | cut -d "=" -f1)
4235                 ostname=$(echo $param | cut -d "." -f2 | cut -d - -f 1-2)
4236
4237                 if $support_last_seq; then
4238                         param_seq=$(echo $param |
4239                                 sed -e s/prealloc_last_id/prealloc_last_seq/g)
4240                         mds_last_seq=$(do_facet $SINGLEMDS \
4241                                        $LCTL get_param -n $param_seq)
4242                 fi
4243                 mds_last=$(do_facet $SINGLEMDS $LCTL get_param -n $param)
4244
4245                 ostnum=$(index_from_ostuuid ${ostname}_UUID)
4246                 node=$(facet_active_host ost$((ostnum+1)))
4247                 param="obdfilter.$ostname.last_id"
4248                 for ost_last in $(do_node $node $LCTL get_param -n $param) ; do
4249                         echo "$ostname.last_id=$ost_last; MDS.last_id=$mds_last"
4250                         ost_last_id=$ost_last
4251
4252                         if $support_last_seq; then
4253                                 ost_last_id=$(echo $ost_last |
4254                                               awk -F':' '{print $2}' |
4255                                               sed -e "s/^0x//g")
4256                                 ost_last_seq=$(echo $ost_last |
4257                                                awk -F':' '{print $1}')
4258                                 [[ $ost_last_seq = $mds_last_seq ]] || continue
4259                         fi
4260
4261                         if [[ $ost_last_id != $mds_last ]]; then
4262                                 error "$ost_last_id != $mds_last"
4263                         else
4264                                 found=true
4265                                 break
4266                         fi
4267                 done
4268         done
4269         $found || error "can not match last_seq/last_id for $mdtosc"
4270         return 0
4271 }
4272 run_test 53 "verify that MDS and OSTs agree on pre-creation ===="
4273
4274 test_54a() {
4275         $SOCKETSERVER $DIR/socket ||
4276                 error "$SOCKETSERVER $DIR/socket failed: $?"
4277         $SOCKETCLIENT $DIR/socket ||
4278                 error "$SOCKETCLIENT $DIR/socket failed: $?"
4279         $MUNLINK $DIR/socket || error "$MUNLINK $DIR/socket failed: $?"
4280 }
4281 run_test 54a "unix domain socket test =========================="
4282
4283 test_54b() {
4284         f="$DIR/f54b"
4285         mknod $f c 1 3
4286         chmod 0666 $f
4287         dd if=/dev/zero of=$f bs=$(page_size) count=1
4288 }
4289 run_test 54b "char device works in lustre ======================"
4290
4291 find_loop_dev() {
4292         [ -b /dev/loop/0 ] && LOOPBASE=/dev/loop/
4293         [ -b /dev/loop0 ] && LOOPBASE=/dev/loop
4294         [ -z "$LOOPBASE" ] && echo "/dev/loop/0 and /dev/loop0 gone?" && return
4295
4296         for i in $(seq 3 7); do
4297                 losetup $LOOPBASE$i > /dev/null 2>&1 && continue
4298                 LOOPDEV=$LOOPBASE$i
4299                 LOOPNUM=$i
4300                 break
4301         done
4302 }
4303
4304 cleanup_54c() {
4305         loopdev="$DIR/loop54c"
4306
4307         trap 0
4308         $UMOUNT $DIR/$tdir || rc=$?
4309         losetup -d $loopdev || true
4310         losetup -d $LOOPDEV || true
4311         rm -rf $loopdev $DIR/$tfile $DIR/$tdir
4312         return $rc
4313 }
4314
4315 test_54c() {
4316         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4317         loopdev="$DIR/loop54c"
4318
4319         find_loop_dev
4320         [ -z "$LOOPNUM" ] && echo "couldn't find empty loop device" && return
4321         trap cleanup_54c EXIT
4322         mknod $loopdev b 7 $LOOPNUM
4323         echo "make a loop file system with $DIR/$tfile on $loopdev ($LOOPNUM)."
4324         dd if=/dev/zero of=$DIR/$tfile bs=$(get_page_size client) seek=1024 count=1 > /dev/null
4325         losetup $loopdev $DIR/$tfile ||
4326                 error "can't set up $loopdev for $DIR/$tfile"
4327         mkfs.ext2 $loopdev || error "mke2fs on $loopdev"
4328         test_mkdir -p $DIR/$tdir
4329         mount -t ext2 $loopdev $DIR/$tdir ||
4330                 error "error mounting $loopdev on $DIR/$tdir"
4331         dd if=/dev/zero of=$DIR/$tdir/tmp bs=$(get_page_size client) count=30 ||
4332                 error "dd write"
4333         df $DIR/$tdir
4334         dd if=$DIR/$tdir/tmp of=/dev/zero bs=$(get_page_size client) count=30 ||
4335                 error "dd read"
4336         cleanup_54c
4337 }
4338 run_test 54c "block device works in lustre ====================="
4339
4340 test_54d() {
4341         f="$DIR/f54d"
4342         string="aaaaaa"
4343         mknod $f p
4344         [ "$string" = $(echo $string > $f | cat $f) ] || error "$f != $string"
4345 }
4346 run_test 54d "fifo device works in lustre ======================"
4347
4348 test_54e() {
4349         f="$DIR/f54e"
4350         string="aaaaaa"
4351         cp -aL /dev/console $f
4352         echo $string > $f || error "echo $string to $f failed"
4353 }
4354 run_test 54e "console/tty device works in lustre ======================"
4355
4356 #The test_55 used to be iopen test and it was removed by bz#24037.
4357 #run_test 55 "check iopen_connect_dentry() ======================"
4358
4359 test_56a() {    # was test_56
4360         rm -rf $DIR/$tdir
4361         $SETSTRIPE -d $DIR
4362         test_mkdir -p $DIR/$tdir/dir
4363         NUMFILES=3
4364         NUMFILESx2=$(($NUMFILES * 2))
4365         for i in $(seq 1 $NUMFILES); do
4366                 touch $DIR/$tdir/file$i
4367                 touch $DIR/$tdir/dir/file$i
4368         done
4369
4370         # test lfs getstripe with --recursive
4371         FILENUM=$($GETSTRIPE --recursive $DIR/$tdir | grep -c obdidx)
4372         [[ $FILENUM -eq $NUMFILESx2 ]] ||
4373                 error "$GETSTRIPE --recursive: found $FILENUM, not $NUMFILESx2"
4374         FILENUM=$($GETSTRIPE $DIR/$tdir | grep -c obdidx)
4375         [[ $FILENUM -eq $NUMFILES ]] ||
4376                 error "$GETSTRIPE $DIR/$tdir: found $FILENUM, not $NUMFILES"
4377         echo "$GETSTRIPE --recursive passed."
4378
4379         # test lfs getstripe with file instead of dir
4380         FILENUM=$($GETSTRIPE $DIR/$tdir/file1 | grep -c obdidx)
4381         [[ $FILENUM -eq 1 ]] ||
4382                 error "$GETSTRIPE $DIR/$tdir/file1: found $FILENUM, not 1"
4383         echo "$GETSTRIPE file1 passed."
4384
4385         #test lfs getstripe with --verbose
4386         [[ $($GETSTRIPE --verbose $DIR/$tdir |
4387                 grep -c lmm_magic) -eq $NUMFILES ]] ||
4388                 error "$GETSTRIPE --verbose $DIR/$tdir: want $NUMFILES"
4389         [[ $($GETSTRIPE $DIR/$tdir | grep -c lmm_magic) -eq 0 ]] ||
4390                 rror "$GETSTRIPE $DIR/$tdir: showed lmm_magic"
4391         echo "$GETSTRIPE --verbose passed."
4392
4393         #test lfs getstripe with --obd
4394         $GETSTRIPE --obd wrong_uuid $DIR/$tdir 2>&1 |
4395                 grep -q "unknown obduuid" ||
4396                 error "$GETSTRIPE --obd wrong_uuid should return error message"
4397
4398         [[ $OSTCOUNT -lt 2 ]] &&
4399                 skip_env "skipping other $GETSTRIPE --obd test" && return
4400
4401         OSTIDX=1
4402         OBDUUID=$(ostuuid_from_index $OSTIDX)
4403         FILENUM=$($GETSTRIPE -ir $DIR/$tdir | grep "^$OSTIDX\$" | wc -l)
4404         FOUND=$($GETSTRIPE -r --obd $OBDUUID $DIR/$tdir | grep obdidx | wc -l)
4405         [[ $FOUND -eq $FILENUM ]] ||
4406                 error "$GETSTRIPE --obd wrong: found $FOUND, expected $FILENUM"
4407         [[ $($GETSTRIPE -r -v --obd $OBDUUID $DIR/$tdir |
4408                 sed '/^[         ]*'${OSTIDX}'[  ]/d' |
4409                 sed -n '/^[      ]*[0-9][0-9]*[  ]/p' | wc -l) -eq 0 ]] ||
4410                 error "$GETSTRIPE --obd: should not show file on other obd"
4411         echo "$GETSTRIPE --obd passed"
4412 }
4413 run_test 56a "check $GETSTRIPE"
4414
4415 NUMFILES=3
4416 NUMDIRS=3
4417 setup_56() {
4418         local LOCAL_NUMFILES="$1"
4419         local LOCAL_NUMDIRS="$2"
4420         local MKDIR_PARAMS="$3"
4421         local DIR_STRIPE_PARAMS="$4"
4422
4423         if [ ! -d "$TDIR" ] ; then
4424                 test_mkdir -p $DIR_STRIPE_PARAMS $TDIR
4425                 [ "$MKDIR_PARAMS" ] && $SETSTRIPE $MKDIR_PARAMS $TDIR
4426                 for i in `seq 1 $LOCAL_NUMFILES` ; do
4427                         touch $TDIR/file$i
4428                 done
4429                 for i in `seq 1 $LOCAL_NUMDIRS` ; do
4430                         test_mkdir $DIR_STRIPE_PARAMS $TDIR/dir$i
4431                         for j in `seq 1 $LOCAL_NUMFILES` ; do
4432                                 touch $TDIR/dir$i/file$j
4433                         done
4434                 done
4435         fi
4436 }
4437
4438 setup_56_special() {
4439         LOCAL_NUMFILES=$1
4440         LOCAL_NUMDIRS=$2
4441         setup_56 $1 $2
4442         if [ ! -e "$TDIR/loop1b" ] ; then
4443                 for i in `seq 1 $LOCAL_NUMFILES` ; do
4444                         mknod $TDIR/loop${i}b b 7 $i
4445                         mknod $TDIR/null${i}c c 1 3
4446                         ln -s $TDIR/file1 $TDIR/link${i}l
4447                 done
4448                 for i in `seq 1 $LOCAL_NUMDIRS` ; do
4449                         mknod $TDIR/dir$i/loop${i}b b 7 $i
4450                         mknod $TDIR/dir$i/null${i}c c 1 3
4451                         ln -s $TDIR/dir$i/file1 $TDIR/dir$i/link${i}l
4452                 done
4453         fi
4454 }
4455
4456 test_56g() {
4457         $SETSTRIPE -d $DIR
4458
4459         TDIR=$DIR/${tdir}g
4460         setup_56 $NUMFILES $NUMDIRS
4461
4462         EXPECTED=$(($NUMDIRS + 2))
4463         # test lfs find with -name
4464         for i in $(seq 1 $NUMFILES) ; do
4465                 NUMS=$($LFIND -name "*$i" $TDIR | wc -l)
4466                 [ $NUMS -eq $EXPECTED ] ||
4467                         error "lfs find -name \"*$i\" $TDIR wrong: "\
4468                               "found $NUMS, expected $EXPECTED"
4469         done
4470 }
4471 run_test 56g "check lfs find -name ============================="
4472
4473 test_56h() {
4474         $SETSTRIPE -d $DIR
4475
4476         TDIR=$DIR/${tdir}g
4477         setup_56 $NUMFILES $NUMDIRS
4478
4479         EXPECTED=$(((NUMDIRS + 1) * (NUMFILES - 1) + NUMFILES))
4480         # test lfs find with ! -name
4481         for i in $(seq 1 $NUMFILES) ; do
4482                 NUMS=$($LFIND ! -name "*$i" $TDIR | wc -l)
4483                 [ $NUMS -eq $EXPECTED ] ||
4484                         error "lfs find ! -name \"*$i\" $TDIR wrong: "\
4485                               "found $NUMS, expected $EXPECTED"
4486         done
4487 }
4488 run_test 56h "check lfs find ! -name ============================="
4489
4490 test_56i() {
4491        tdir=${tdir}i
4492        test_mkdir -p $DIR/$tdir
4493        UUID=$(ostuuid_from_index 0 $DIR/$tdir)
4494        CMD="$LFIND -ost $UUID $DIR/$tdir"
4495        OUT=$($CMD)
4496        [ -z "$OUT" ] || error "\"$CMD\" returned directory '$OUT'"
4497 }
4498 run_test 56i "check 'lfs find -ost UUID' skips directories ======="
4499
4500 test_56j() {
4501         TDIR=$DIR/${tdir}g
4502         setup_56_special $NUMFILES $NUMDIRS
4503
4504         EXPECTED=$((NUMDIRS + 1))
4505         CMD="$LFIND -type d $TDIR"
4506         NUMS=$($CMD | wc -l)
4507         [ $NUMS -eq $EXPECTED ] ||
4508                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4509 }
4510 run_test 56j "check lfs find -type d ============================="
4511
4512 test_56k() {
4513         TDIR=$DIR/${tdir}g
4514         setup_56_special $NUMFILES $NUMDIRS
4515
4516         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4517         CMD="$LFIND -type f $TDIR"
4518         NUMS=$($CMD | wc -l)
4519         [ $NUMS -eq $EXPECTED ] ||
4520                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4521 }
4522 run_test 56k "check lfs find -type f ============================="
4523
4524 test_56l() {
4525         TDIR=$DIR/${tdir}g
4526         setup_56_special $NUMFILES $NUMDIRS
4527
4528         EXPECTED=$((NUMDIRS + NUMFILES))
4529         CMD="$LFIND -type b $TDIR"
4530         NUMS=$($CMD | wc -l)
4531         [ $NUMS -eq $EXPECTED ] ||
4532                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4533 }
4534 run_test 56l "check lfs find -type b ============================="
4535
4536 test_56m() {
4537         TDIR=$DIR/${tdir}g
4538         setup_56_special $NUMFILES $NUMDIRS
4539
4540         EXPECTED=$((NUMDIRS + NUMFILES))
4541         CMD="$LFIND -type c $TDIR"
4542         NUMS=$($CMD | wc -l)
4543         [ $NUMS -eq $EXPECTED ] ||
4544                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4545 }
4546 run_test 56m "check lfs find -type c ============================="
4547
4548 test_56n() {
4549         TDIR=$DIR/${tdir}g
4550         setup_56_special $NUMFILES $NUMDIRS
4551
4552         EXPECTED=$((NUMDIRS + NUMFILES))
4553         CMD="$LFIND -type l $TDIR"
4554         NUMS=$($CMD | wc -l)
4555         [ $NUMS -eq $EXPECTED ] ||
4556                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4557 }
4558 run_test 56n "check lfs find -type l ============================="
4559
4560 test_56o() {
4561         TDIR=$DIR/${tdir}o
4562         setup_56 $NUMFILES $NUMDIRS
4563         utime $TDIR/file1 > /dev/null || error "utime (1)"
4564         utime $TDIR/file2 > /dev/null || error "utime (2)"
4565         utime $TDIR/dir1 > /dev/null || error "utime (3)"
4566         utime $TDIR/dir2 > /dev/null || error "utime (4)"
4567         utime $TDIR/dir1/file1 > /dev/null || error "utime (5)"
4568         dd if=/dev/zero count=1 >> $TDIR/dir1/file1 && sync
4569
4570         EXPECTED=4
4571         NUMS=`$LFIND -mtime +0 $TDIR | wc -l`
4572         [ $NUMS -eq $EXPECTED ] || \
4573                 error "lfs find -mtime +0 $TDIR wrong: found $NUMS, expected $EXPECTED"
4574
4575         EXPECTED=12
4576         CMD="$LFIND -mtime 0 $TDIR"
4577         NUMS=$($CMD | wc -l)
4578         [ $NUMS -eq $EXPECTED ] ||
4579                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4580 }
4581 run_test 56o "check lfs find -mtime for old files =========================="
4582
4583 test_56p() {
4584         [ $RUNAS_ID -eq $UID ] &&
4585                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
4586
4587         TDIR=$DIR/${tdir}p
4588         setup_56 $NUMFILES $NUMDIRS
4589
4590         chown $RUNAS_ID $TDIR/file* || error "chown $DIR/${tdir}g/file$i failed"
4591         EXPECTED=$NUMFILES
4592         CMD="$LFIND -uid $RUNAS_ID $TDIR"
4593         NUMS=$($CMD | wc -l)
4594         [ $NUMS -eq $EXPECTED ] || \
4595                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4596
4597         EXPECTED=$(((NUMFILES + 1) * NUMDIRS + 1))
4598         CMD="$LFIND ! -uid $RUNAS_ID $TDIR"
4599         NUMS=$($CMD | wc -l)
4600         [ $NUMS -eq $EXPECTED ] || \
4601                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4602 }
4603 run_test 56p "check lfs find -uid and ! -uid ==============================="
4604
4605 test_56q() {
4606         [ $RUNAS_ID -eq $UID ] &&
4607                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
4608
4609         TDIR=$DIR/${tdir}q
4610         setup_56 $NUMFILES $NUMDIRS
4611
4612         chgrp $RUNAS_GID $TDIR/file* || error "chown $TDIR/file$i failed"
4613
4614         EXPECTED=$NUMFILES
4615         CMD="$LFIND -gid $RUNAS_GID $TDIR"
4616         NUMS=$($CMD | wc -l)
4617         [ $NUMS -eq $EXPECTED ] ||
4618                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4619
4620         EXPECTED=$(( ($NUMFILES+1) * $NUMDIRS + 1))
4621         CMD="$LFIND ! -gid $RUNAS_GID $TDIR"
4622         NUMS=$($CMD | wc -l)
4623         [ $NUMS -eq $EXPECTED ] ||
4624                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4625 }
4626 run_test 56q "check lfs find -gid and ! -gid ==============================="
4627
4628 test_56r() {
4629         TDIR=$DIR/${tdir}r
4630         setup_56 $NUMFILES $NUMDIRS
4631
4632         EXPECTED=12
4633         CMD="$LFIND -size 0 -type f $TDIR"
4634         NUMS=$($CMD | wc -l)
4635         [ $NUMS -eq $EXPECTED ] ||
4636                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4637         EXPECTED=0
4638         CMD="$LFIND ! -size 0 -type f $TDIR"
4639         NUMS=$($CMD | wc -l)
4640         [ $NUMS -eq $EXPECTED ] ||
4641                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4642         echo "test" > $TDIR/$tfile
4643         echo "test2" > $TDIR/$tfile.2 && sync
4644         EXPECTED=1
4645         CMD="$LFIND -size 5 -type f $TDIR"
4646         NUMS=$($CMD | wc -l)
4647         [ $NUMS -eq $EXPECTED ] ||
4648                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4649         EXPECTED=1
4650         CMD="$LFIND -size +5 -type f $TDIR"
4651         NUMS=$($CMD | wc -l)
4652         [ $NUMS -eq $EXPECTED ] ||
4653                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4654         EXPECTED=2
4655         CMD="$LFIND -size +0 -type f $TDIR"
4656         NUMS=$($CMD | wc -l)
4657         [ $NUMS -eq $EXPECTED ] ||
4658                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4659         EXPECTED=2
4660         CMD="$LFIND ! -size -5 -type f $TDIR"
4661         NUMS=$($CMD | wc -l)
4662         [ $NUMS -eq $EXPECTED ] ||
4663                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4664         EXPECTED=12
4665         CMD="$LFIND -size -5 -type f $TDIR"
4666         NUMS=$($CMD | wc -l)
4667         [ $NUMS -eq $EXPECTED ] ||
4668                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4669 }
4670 run_test 56r "check lfs find -size works =========================="
4671
4672 test_56s() { # LU-611
4673         TDIR=$DIR/${tdir}s
4674         setup_56 $NUMFILES $NUMDIRS "-c $OSTCOUNT"
4675
4676         if [[ $OSTCOUNT -gt 1 ]]; then
4677                 $SETSTRIPE -c 1 $TDIR/$tfile.{0,1,2,3}
4678                 ONESTRIPE=4
4679                 EXTRA=4
4680         else
4681                 ONESTRIPE=$(((NUMDIRS + 1) * NUMFILES))
4682                 EXTRA=0
4683         fi
4684
4685         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4686         CMD="$LFIND -stripe-count $OSTCOUNT -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=$(((NUMDIRS + 1) * NUMFILES + EXTRA))
4694         CMD="$LFIND -stripe-count +0 -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         EXPECTED=$ONESTRIPE
4702         CMD="$LFIND -stripe-count 1 -type f $TDIR"
4703         NUMS=$($CMD | wc -l)
4704         [ $NUMS -eq $EXPECTED ] || {
4705                 $GETSTRIPE -R $TDIR
4706                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4707         }
4708
4709         CMD="$LFIND -stripe-count -2 -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         EXPECTED=0
4717         CMD="$LFIND -stripe-count $((OSTCOUNT + 1)) -type f $TDIR"
4718         NUMS=$($CMD | wc -l)
4719         [ $NUMS -eq $EXPECTED ] || {
4720                 $GETSTRIPE -R $TDIR
4721                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4722         }
4723 }
4724 run_test 56s "check lfs find -stripe-count works"
4725
4726 test_56t() { # LU-611
4727         TDIR=$DIR/${tdir}t
4728         setup_56 $NUMFILES $NUMDIRS "-s 512k"
4729
4730         $SETSTRIPE -S 256k $TDIR/$tfile.{0,1,2,3}
4731
4732         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4733         CMD="$LFIND -stripe-size 512k -type f $TDIR"
4734         NUMS=$($CMD | wc -l)
4735         [ $NUMS -eq $EXPECTED ] ||
4736                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4737
4738         CMD="$LFIND -stripe-size +320k -type f $TDIR"
4739         NUMS=$($CMD | wc -l)
4740         [ $NUMS -eq $EXPECTED ] ||
4741                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4742
4743         EXPECTED=$(((NUMDIRS + 1) * NUMFILES + 4))
4744         CMD="$LFIND -stripe-size +200k -type f $TDIR"
4745         NUMS=$($CMD | wc -l)
4746         [ $NUMS -eq $EXPECTED ] ||
4747                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4748
4749         CMD="$LFIND -stripe-size -640k -type f $TDIR"
4750         NUMS=$($CMD | wc -l)
4751         [ $NUMS -eq $EXPECTED ] ||
4752                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4753
4754         EXPECTED=4
4755         CMD="$LFIND -stripe-size 256k -type f $TDIR"
4756         NUMS=$($CMD | wc -l)
4757         [ $NUMS -eq $EXPECTED ] ||
4758                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4759
4760         CMD="$LFIND -stripe-size -320k -type f $TDIR"
4761         NUMS=$($CMD | wc -l)
4762         [ $NUMS -eq $EXPECTED ] ||
4763                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4764
4765         EXPECTED=0
4766         CMD="$LFIND -stripe-size 1024k -type f $TDIR"
4767         NUMS=$($CMD | wc -l)
4768         [ $NUMS -eq $EXPECTED ] ||
4769                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4770 }
4771 run_test 56t "check lfs find -stripe-size works"
4772
4773 test_56u() { # LU-611
4774         TDIR=$DIR/${tdir}u
4775         setup_56 $NUMFILES $NUMDIRS "-i 0"
4776
4777         if [[ $OSTCOUNT -gt 1 ]]; then
4778                 $SETSTRIPE -i 1 $TDIR/$tfile.{0,1,2,3}
4779                 ONESTRIPE=4
4780         else
4781                 ONESTRIPE=0
4782         fi
4783
4784         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4785         CMD="$LFIND -stripe-index 0 -type f $TDIR"
4786         NUMS=$($CMD | wc -l)
4787         [ $NUMS -eq $EXPECTED ] ||
4788                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4789
4790         EXPECTED=$ONESTRIPE
4791         CMD="$LFIND -stripe-index 1 -type f $TDIR"
4792         NUMS=$($CMD | wc -l)
4793         [ $NUMS -eq $EXPECTED ] ||
4794                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4795
4796         CMD="$LFIND ! -stripe-index 0 -type f $TDIR"
4797         NUMS=$($CMD | wc -l)
4798         [ $NUMS -eq $EXPECTED ] ||
4799                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4800
4801         EXPECTED=0
4802         # This should produce an error and not return any files
4803         CMD="$LFIND -stripe-index $OSTCOUNT -type f $TDIR"
4804         NUMS=$($CMD 2>/dev/null | wc -l)
4805         [ $NUMS -eq $EXPECTED ] ||
4806                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4807
4808         if [[ $OSTCOUNT -gt 1 ]]; then
4809                 EXPECTED=$(((NUMDIRS + 1) * NUMFILES + ONESTRIPE))
4810                 CMD="$LFIND -stripe-index 0,1 -type f $TDIR"
4811                 NUMS=$($CMD | wc -l)
4812                 [ $NUMS -eq $EXPECTED ] ||
4813                         error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4814         fi
4815 }
4816 run_test 56u "check lfs find -stripe-index works"
4817
4818 test_56v() {
4819     local MDT_IDX=0
4820
4821     TDIR=$DIR/${tdir}v
4822     rm -rf $TDIR
4823     setup_56 $NUMFILES $NUMDIRS
4824
4825     UUID=$(mdtuuid_from_index $MDT_IDX $TDIR)
4826     [ -z "$UUID" ] && error "mdtuuid_from_index cannot find MDT index $MDT_IDX"
4827
4828     for file in $($LFIND -mdt $UUID $TDIR); do
4829         file_mdt_idx=$($GETSTRIPE -M $file)
4830         [ $file_mdt_idx -eq $MDT_IDX ] ||
4831             error "'lfind -mdt $UUID' != 'getstripe -M' ($file_mdt_idx)"
4832     done
4833 }
4834 run_test 56v "check 'lfs find -mdt match with lfs getstripe -M' ======="
4835
4836 test_56w() {
4837         [[ $OSTCOUNT -lt 2 ]] && skip_env "$OSTCOUNT < 2 OSTs -- skipping" &&
4838                 return
4839         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4840         TDIR=$DIR/${tdir}w
4841
4842     rm -rf $TDIR || error "remove $TDIR failed"
4843     setup_56 $NUMFILES $NUMDIRS "-c $OSTCOUNT" "-c1"
4844
4845     local stripe_size
4846     stripe_size=$($GETSTRIPE -S -d $TDIR) ||
4847         error "$GETSTRIPE -S -d $TDIR failed"
4848     stripe_size=${stripe_size%% *}
4849
4850     local file_size=$((stripe_size * OSTCOUNT))
4851     local file_num=$((NUMDIRS * NUMFILES + NUMFILES))
4852     local required_space=$((file_num * file_size))
4853
4854     local free_space=$($LCTL get_param -n lov.$FSNAME-clilov-*.kbytesavail |
4855                         head -n1)
4856     [[ $free_space -le $((required_space / 1024)) ]] &&
4857         skip_env "need at least $required_space bytes free space," \
4858                  "have $free_space kbytes" && return
4859
4860     local dd_bs=65536
4861     local dd_count=$((file_size / dd_bs))
4862
4863     # write data into the files
4864     local i
4865     local j
4866     local file
4867     for i in $(seq 1 $NUMFILES); do
4868         file=$TDIR/file$i
4869         yes | dd bs=$dd_bs count=$dd_count of=$file >/dev/null 2>&1 ||
4870             error "write data into $file failed"
4871     done
4872     for i in $(seq 1 $NUMDIRS); do
4873         for j in $(seq 1 $NUMFILES); do
4874             file=$TDIR/dir$i/file$j
4875             yes | dd bs=$dd_bs count=$dd_count of=$file \
4876                 >/dev/null 2>&1 ||
4877                 error "write data into $file failed"
4878         done
4879     done
4880
4881     local expected=-1
4882     [[ $OSTCOUNT -gt 1 ]] && expected=$((OSTCOUNT - 1))
4883
4884     # lfs_migrate file
4885     local cmd="$LFS_MIGRATE -y -c $expected $TDIR/file1"
4886     echo "$cmd"
4887     eval $cmd || error "$cmd failed"
4888
4889     check_stripe_count $TDIR/file1 $expected
4890
4891         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.90) ];
4892         then
4893                 # lfs_migrate file onto OST 0 if it is on OST 1, or onto
4894                 # OST 1 if it is on OST 0. This file is small enough to
4895                 # be on only one stripe.
4896                 file=$TDIR/migr_1_ost
4897                 dd bs=$dd_bs count=1 if=/dev/urandom of=$file >/dev/null 2>&1 ||
4898                         error "write data into $file failed"
4899                 local obdidx=$($LFS getstripe -i $file)
4900                 local oldmd5=$(md5sum $file)
4901                 local newobdidx=0
4902                 [[ $obdidx -eq 0 ]] && newobdidx=1
4903                 cmd="$LFS migrate -i $newobdidx $file"
4904                 echo $cmd
4905                 eval $cmd || error "$cmd failed"
4906                 local realobdix=$($LFS getstripe -i $file)
4907                 local newmd5=$(md5sum $file)
4908                 [[ $newobdidx -ne $realobdix ]] &&
4909                         error "new OST is different (was=$obdidx, wanted=$newobdidx, got=$realobdix)"
4910                 [[ "$oldmd5" != "$newmd5" ]] &&
4911                         error "md5sum differ: $oldmd5, $newmd5"
4912         fi
4913
4914     # lfs_migrate dir
4915     cmd="$LFS_MIGRATE -y -c $expected $TDIR/dir1"
4916     echo "$cmd"
4917     eval $cmd || error "$cmd failed"
4918
4919     for j in $(seq 1 $NUMFILES); do
4920         check_stripe_count $TDIR/dir1/file$j $expected
4921     done
4922
4923     # lfs_migrate works with lfs find
4924     cmd="$LFIND -stripe_count $OSTCOUNT -type f $TDIR |
4925          $LFS_MIGRATE -y -c $expected"
4926     echo "$cmd"
4927     eval $cmd || error "$cmd failed"
4928
4929     for i in $(seq 2 $NUMFILES); do
4930         check_stripe_count $TDIR/file$i $expected
4931     done
4932     for i in $(seq 2 $NUMDIRS); do
4933         for j in $(seq 1 $NUMFILES); do
4934             check_stripe_count $TDIR/dir$i/file$j $expected
4935         done
4936     done
4937 }
4938 run_test 56w "check lfs_migrate -c stripe_count works"
4939
4940 test_56x() {
4941         check_swap_layouts_support && return 0
4942         [[ $OSTCOUNT -lt 2 ]] &&
4943                 skip_env "need 2 OST, skipping test" && return
4944
4945         local dir0=$DIR/$tdir/$testnum
4946         test_mkdir -p $dir0 || error "creating dir $dir0"
4947
4948         local ref1=/etc/passwd
4949         local file1=$dir0/file1
4950
4951         $SETSTRIPE -c 2 $file1
4952         cp $ref1 $file1
4953         $LFS migrate -c 1 $file1 || error "migrate failed rc = $?"
4954         stripe=$($GETSTRIPE -c $file1)
4955         [[ $stripe == 1 ]] || error "stripe of $file1 is $stripe != 1"
4956         cmp $file1 $ref1 || error "content mismatch $file1 differs from $ref1"
4957
4958         # clean up
4959         rm -f $file1
4960 }
4961 run_test 56x "lfs migration support"
4962
4963 test_56y() {
4964         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.53) ] &&
4965                 skip "No HSM $(lustre_build_version $SINGLEMDS) MDS < 2.4.53" &&
4966                 return
4967
4968         local res=""
4969         local dir0=$DIR/$tdir/$testnum
4970         test_mkdir -p $dir0 || error "creating dir $dir0"
4971         local f1=$dir0/file1
4972         local f2=$dir0/file2
4973
4974         touch $f1 || error "creating std file $f1"
4975         $MULTIOP $f2 H2c || error "creating released file $f2"
4976
4977         # a directory can be raid0, so ask only for files
4978         res=$($LFIND $dir0 -L raid0 -type f | wc -l)
4979         [[ $res == 2 ]] || error "search raid0: found $res files != 2"
4980
4981         res=$($LFIND $dir0 \! -L raid0 -type f | wc -l)
4982         [[ $res == 0 ]] || error "search !raid0: found $res files != 0"
4983
4984         # only files can be released, so no need to force file search
4985         res=$($LFIND $dir0 -L released)
4986         [[ $res == $f2 ]] || error "search released: found $res != $f2"
4987
4988         res=$($LFIND $dir0 \! -L released)
4989         [[ $res == $f1 ]] || error "search !released: found $res != $f1"
4990
4991 }
4992 run_test 56y "lfs find -L raid0|released"
4993
4994 test_56z() { # LU-4824
4995         # This checks to make sure 'lfs find' continues after errors
4996         # There are two classes of errors that should be caught:
4997         # - If multiple paths are provided, all should be searched even if one
4998         #   errors out
4999         # - If errors are encountered during the search, it should not terminate
5000         #   early
5001         local i
5002         test_mkdir $DIR/$tdir
5003         for i in d{0..9}; do
5004                 test_mkdir $DIR/$tdir/$i
5005         done
5006         touch $DIR/$tdir/d{0..9}/$tfile
5007         $LFS find $DIR/non_existent_dir $DIR/$tdir &&
5008                 error "$LFS find did not return an error"
5009         # Make a directory unsearchable. This should NOT be the last entry in
5010         # directory order.  Arbitrarily pick the 6th entry
5011         chmod 700 $($LFS find $DIR/$tdir -type d | sed '6!d')
5012         local count=$($RUNAS $LFS find $DIR/non_existent $DIR/$tdir | wc -l)
5013         # The user should be able to see 10 directories and 9 files
5014         [ $count == 19 ] || error "$LFS find did not continue after error"
5015 }
5016 run_test 56z "lfs find should continue after an error"
5017
5018 test_56aa() { # LU-5937
5019         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
5020
5021         mkdir $DIR/$tdir
5022         $LFS setdirstripe -c$MDSCOUNT $DIR/$tdir/striped_dir
5023
5024         createmany -o $DIR/$tdir/striped_dir/${tfile}- 1024
5025         local dirs=$(lfs find --size +8k $DIR/$tdir/)
5026
5027         [ -n "$dirs" ] || error "lfs find --size wrong under striped dir"
5028 }
5029 run_test 56aa "lfs find --size under striped dir"
5030
5031 test_57a() {
5032         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5033         # note test will not do anything if MDS is not local
5034         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
5035                 skip "Only applicable to ldiskfs-based MDTs"
5036                 return
5037         fi
5038
5039         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5040         local MNTDEV="osd*.*MDT*.mntdev"
5041         DEV=$(do_facet $SINGLEMDS lctl get_param -n $MNTDEV)
5042         [ -z "$DEV" ] && error "can't access $MNTDEV"
5043         for DEV in $(do_facet $SINGLEMDS lctl get_param -n $MNTDEV); do
5044                 do_facet $SINGLEMDS $DUMPE2FS -h $DEV > $TMP/t57a.dump ||
5045                         error "can't access $DEV"
5046                 DEVISIZE=$(awk '/Inode size:/ { print $3 }' $TMP/t57a.dump)
5047                 [[ $DEVISIZE -gt 128 ]] || error "inode size $DEVISIZE"
5048                 rm $TMP/t57a.dump
5049         done
5050 }
5051 run_test 57a "verify MDS filesystem created with large inodes =="
5052
5053 test_57b() {
5054         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5055         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
5056                 skip "Only applicable to ldiskfs-based MDTs"
5057                 return
5058         fi
5059
5060         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5061         local dir=$DIR/$tdir
5062
5063         local FILECOUNT=100
5064         local FILE1=$dir/f1
5065         local FILEN=$dir/f$FILECOUNT
5066
5067         rm -rf $dir || error "removing $dir"
5068         test_mkdir -p -c1 $dir || error "creating $dir"
5069         local mdtidx=$($LFS getstripe -M $dir)
5070         local mdtname=MDT$(printf %04x $mdtidx)
5071         local facet=mds$((mdtidx + 1))
5072
5073         echo "mcreating $FILECOUNT files"
5074         createmany -m $dir/f 1 $FILECOUNT || \
5075                 error "creating files in $dir"
5076
5077         # verify that files do not have EAs yet
5078         $GETSTRIPE $FILE1 2>&1 | grep -q "no stripe" || error "$FILE1 has an EA"
5079         $GETSTRIPE $FILEN 2>&1 | grep -q "no stripe" || error "$FILEN has an EA"
5080
5081         sync
5082         sleep 1
5083         df $dir  #make sure we get new statfs data
5084         local MDSFREE=$(do_facet $facet \
5085                 lctl get_param -n osd*.*$mdtname.kbytesfree)
5086         local MDCFREE=$(lctl get_param -n mdc.*$mdtname-mdc-*.kbytesfree)
5087         echo "opening files to create objects/EAs"
5088         local FILE
5089         for FILE in `seq -f $dir/f%g 1 $FILECOUNT`; do
5090                 $OPENFILE -f O_RDWR $FILE > /dev/null 2>&1 || error "opening $FILE"
5091         done
5092
5093         # verify that files have EAs now
5094         $GETSTRIPE $FILE1 | grep -q "obdidx" || error "$FILE1 missing EA"
5095         $GETSTRIPE $FILEN | grep -q "obdidx" || error "$FILEN missing EA"
5096
5097         sleep 1  #make sure we get new statfs data
5098         df $dir
5099         local MDSFREE2=$(do_facet $facet \
5100                 lctl get_param -n osd*.*$mdtname.kbytesfree)
5101         local MDCFREE2=$(lctl get_param -n mdc.*$mdtname-mdc-*.kbytesfree)
5102         if [[ $MDCFREE2 -lt $((MDCFREE - 16)) ]]; then
5103                 if [ "$MDSFREE" != "$MDSFREE2" ]; then
5104                         error "MDC before $MDCFREE != after $MDCFREE2"
5105                 else
5106                         echo "MDC before $MDCFREE != after $MDCFREE2"
5107                         echo "unable to confirm if MDS has large inodes"
5108                 fi
5109         fi
5110         rm -rf $dir
5111 }
5112 run_test 57b "default LOV EAs are stored inside large inodes ==="
5113
5114 test_58() {
5115         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5116         [ -z "$(which wiretest 2>/dev/null)" ] &&
5117                         skip_env "could not find wiretest" && return
5118         wiretest
5119 }
5120 run_test 58 "verify cross-platform wire constants =============="
5121
5122 test_59() {
5123         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5124         echo "touch 130 files"
5125         createmany -o $DIR/f59- 130
5126         echo "rm 130 files"
5127         unlinkmany $DIR/f59- 130
5128         sync
5129         # wait for commitment of removal
5130         wait_delete_completed
5131 }
5132 run_test 59 "verify cancellation of llog records async ========="
5133
5134 TEST60_HEAD="test_60 run $RANDOM"
5135 test_60a() {
5136         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5137         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
5138         do_facet mgs "! which run-llog.sh &> /dev/null" &&
5139                 do_facet mgs "! ls run-llog.sh &> /dev/null" &&
5140                         skip_env "missing subtest run-llog.sh" && return
5141
5142         log "$TEST60_HEAD - from kernel mode"
5143         do_facet mgs "$LCTL set_param debug=warning; $LCTL dk > /dev/null"
5144         do_facet mgs sh run-llog.sh
5145         do_facet mgs $LCTL dk > $TMP/$tfile
5146
5147         # LU-6388: test llog_reader
5148         local llog_reader=$(do_facet mgs "which llog_reader 2> /dev/null")
5149         llog_reader=${llog_reader:-$LUSTRE/utils/llog_reader}
5150         [ -z $(do_facet mgs ls -d $llog_reader 2> /dev/null) ] &&
5151                         skip_env "missing llog_reader" && return
5152         local fstype=$(facet_fstype mgs)
5153         [ $fstype != ldiskfs -a $fstype != zfs ] &&
5154                 skip_env "Only for ldiskfs or zfs type mgs" && return
5155
5156         local mntpt=$(facet_mntpt mgs)
5157         local mgsdev=$(mgsdevname 1)
5158         local fid_list
5159         local fid
5160         local rec_list
5161         local rec
5162         local rec_type
5163         local obj_file
5164         local path
5165         local seq
5166         local oid
5167         local pass=true
5168
5169         #get fid and record list
5170         fid_list=($(awk '/9_sub.*record/ { print $NF }' /$TMP/$tfile |
5171                 tail -n 4))
5172         rec_list=($(awk '/9_sub.*record/ { print $((NF-3)) }' /$TMP/$tfile |
5173                 tail -n 4))
5174         #remount mgs as ldiskfs or zfs type
5175         stop mgs || error "stop mgs failed"
5176         mount_fstype mgs || error "remount mgs failed"
5177         for ((i = 0; i < ${#fid_list[@]}; i++)); do
5178                 fid=${fid_list[i]}
5179                 rec=${rec_list[i]}
5180                 seq=$(echo $fid | awk -F ':' '{ print $1 }' | sed -e "s/^0x//g")
5181                 oid=$(echo $fid | awk -F ':' '{ print $2 }' | sed -e "s/^0x//g")
5182                 oid=$((16#$oid))
5183
5184                 case $fstype in
5185                         ldiskfs )
5186                                 obj_file=$mntpt/O/$seq/d$((oid%32))/$oid ;;
5187                         zfs )
5188                                 obj_file=$mntpt/oi.$(($((16#$seq))&127))/$fid ;;
5189                 esac
5190                 echo "obj_file is $obj_file"
5191                 do_facet mgs $llog_reader $obj_file
5192
5193                 rec_type=$(do_facet mgs $llog_reader $obj_file | grep "type=" |
5194                         awk '{ print $3 }' | sed -e "s/^type=//g")
5195                 if [ $rec_type != $rec ]; then
5196                         echo "FAILED test_60a wrong record type $rec_type," \
5197                               "should be $rec"
5198                         pass=false
5199                         break
5200                 fi
5201
5202                 #check obj path if record type is LLOG_LOGID_MAGIC
5203                 if [ "$rec" == "1064553b" ]; then
5204                         path=$(do_facet mgs $llog_reader $obj_file |
5205                                 grep "path=" | awk '{ print $NF }' |
5206                                 sed -e "s/^path=//g")
5207                         if [ $obj_file != $mntpt/$path ]; then
5208                                 echo "FAILED test_60a wrong obj path" \
5209                                       "$montpt/$path, should be $obj_file"
5210                                 pass=false
5211                                 break
5212                         fi
5213                 fi
5214         done
5215         rm -f $TMP/$tfile
5216         #restart mgs before "error", otherwise it will block the next test
5217         stop mgs || error "stop mgs failed"
5218         start mgs $(mgsdevname) $MGS_MOUNT_OPTS || error "start mgs failed"
5219         $pass || error "test failed, see FAILED test_60a messages for specifics"
5220 }
5221 run_test 60a "llog_test run from kernel module and test llog_reader =========="
5222
5223 test_60b() { # bug 6411
5224         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5225         dmesg > $DIR/$tfile
5226         LLOG_COUNT=$(dmesg | awk "/$TEST60_HEAD/ { marker = 1; from_marker = 0; }
5227                                 /llog.test/ {
5228                                         if (marker)
5229                                                 from_marker++
5230                                         from_begin++
5231                                 }
5232                                 END {
5233                                         if (marker)
5234                                                 print from_marker
5235                                         else
5236                                                 print from_begin
5237                                 }")
5238         [[ $LLOG_COUNT -gt 100 ]] &&
5239                 error "CDEBUG_LIMIT not limiting messages ($LLOG_COUNT)" || true
5240 }
5241 run_test 60b "limit repeated messages from CERROR/CWARN ========"
5242
5243 test_60c() {
5244         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5245         echo "create 5000 files"
5246         createmany -o $DIR/f60c- 5000
5247 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED  0x137
5248         lctl set_param fail_loc=0x80000137
5249         unlinkmany $DIR/f60c- 5000
5250         lctl set_param fail_loc=0
5251 }
5252 run_test 60c "unlink file when mds full"
5253
5254 test_60d() {
5255         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5256         SAVEPRINTK=$(lctl get_param -n printk)
5257
5258         # verify "lctl mark" is even working"
5259         MESSAGE="test message ID $RANDOM $$"
5260         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
5261         dmesg | grep -q "$MESSAGE" || error "didn't find debug marker in log"
5262
5263         lctl set_param printk=0 || error "set lnet.printk failed"
5264         lctl get_param -n printk | grep emerg || error "lnet.printk dropped emerg"
5265         MESSAGE="new test message ID $RANDOM $$"
5266         # Assume here that libcfs_debug_mark_buffer() uses D_WARNING
5267         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
5268         dmesg | grep -q "$MESSAGE" && error "D_WARNING wasn't masked" || true
5269
5270         lctl set_param -n printk="$SAVEPRINTK"
5271 }
5272 run_test 60d "test printk console message masking"
5273
5274 test_60e() {
5275         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5276         touch $DIR/$tfile
5277 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED2  0x15b
5278         do_facet mds1 lctl set_param fail_loc=0x15b
5279         rm $DIR/$tfile
5280 }
5281 run_test 60e "no space while new llog is being created"
5282
5283 test_61() {
5284         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5285         f="$DIR/f61"
5286         dd if=/dev/zero of=$f bs=$(page_size) count=1 || error "dd $f failed"
5287         cancel_lru_locks osc
5288         $MULTIOP $f OSMWUc || error "$MULTIOP $f failed"
5289         sync
5290 }
5291 run_test 61 "mmap() writes don't make sync hang ================"
5292
5293 # bug 2330 - insufficient obd_match error checking causes LBUG
5294 test_62() {
5295         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5296         f="$DIR/f62"
5297         echo foo > $f
5298         cancel_lru_locks osc
5299         lctl set_param fail_loc=0x405
5300         cat $f && error "cat succeeded, expect -EIO"
5301         lctl set_param fail_loc=0
5302 }
5303 # This test is now irrelevant (as of bug 10718 inclusion), we no longer
5304 # match every page all of the time.
5305 #run_test 62 "verify obd_match failure doesn't LBUG (should -EIO)"
5306
5307 # bug 2319 - oig_wait() interrupted causes crash because of invalid waitq.
5308 # Though this test is irrelevant anymore, it helped to reveal some
5309 # other grant bugs (LU-4482), let's keep it.
5310 test_63a() {   # was test_63
5311         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5312         MAX_DIRTY_MB=`lctl get_param -n osc.*.max_dirty_mb | head -n 1`
5313         for i in `seq 10` ; do
5314                 dd if=/dev/zero of=$DIR/f63 bs=8k &
5315                 sleep 5
5316                 kill $!
5317                 sleep 1
5318         done
5319
5320         rm -f $DIR/f63 || true
5321 }
5322 run_test 63a "Verify oig_wait interruption does not crash ======="
5323
5324 # bug 2248 - async write errors didn't return to application on sync
5325 # bug 3677 - async write errors left page locked
5326 test_63b() {
5327         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5328         debugsave
5329         lctl set_param debug=-1
5330
5331         # ensure we have a grant to do async writes
5332         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1
5333         rm $DIR/$tfile
5334
5335         sync    # sync lest earlier test intercept the fail_loc
5336
5337         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
5338         lctl set_param fail_loc=0x80000406
5339         $MULTIOP $DIR/$tfile Owy && \
5340                 error "sync didn't return ENOMEM"
5341         sync; sleep 2; sync     # do a real sync this time to flush page
5342         lctl get_param -n llite.*.dump_page_cache | grep locked && \
5343                 error "locked page left in cache after async error" || true
5344         debugrestore
5345 }
5346 run_test 63b "async write errors should be returned to fsync ==="
5347
5348 test_64a () {
5349         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5350         df $DIR
5351         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur* | grep "[0-9]"
5352 }
5353 run_test 64a "verify filter grant calculations (in kernel) ====="
5354
5355 test_64b () {
5356         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5357         sh oos.sh $MOUNT || error "oos.sh failed: $?"
5358 }
5359 run_test 64b "check out-of-space detection on client ==========="
5360
5361 test_64c() {
5362         $LCTL set_param osc.*OST0000-osc-[^mM]*.cur_grant_bytes=0
5363 }
5364 run_test 64c "verify grant shrink ========================------"
5365
5366 # bug 1414 - set/get directories' stripe info
5367 test_65a() {
5368         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5369         test_mkdir -p $DIR/$tdir
5370         touch $DIR/$tdir/f1
5371         $LVERIFY $DIR/$tdir $DIR/$tdir/f1 || error "lverify failed"
5372 }
5373 run_test 65a "directory with no stripe info ===================="
5374
5375 test_65b() {
5376         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5377         test_mkdir -p $DIR/$tdir
5378         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
5379
5380         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
5381                                                 error "setstripe"
5382         touch $DIR/$tdir/f2
5383         $LVERIFY $DIR/$tdir $DIR/$tdir/f2 || error "lverify failed"
5384 }
5385 run_test 65b "directory setstripe -S stripe_size*2 -i 0 -c 1"
5386
5387 test_65c() {
5388         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5389         if [[ $OSTCOUNT -gt 1 ]]; then
5390                 test_mkdir -p $DIR/$tdir
5391                 local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
5392
5393                 $SETSTRIPE -S $(($STRIPESIZE * 4)) -i 1 \
5394                         -c $(($OSTCOUNT - 1)) $DIR/$tdir || error "setstripe"
5395                 touch $DIR/$tdir/f3
5396                 $LVERIFY $DIR/$tdir $DIR/$tdir/f3 || error "lverify failed"
5397         fi
5398 }
5399 run_test 65c "directory setstripe -S stripe_size*4 -i 1 -c $((OSTCOUNT-1))"
5400
5401 test_65d() {
5402         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5403         test_mkdir -p $DIR/$tdir
5404         local STRIPECOUNT=$($GETSTRIPE -c $DIR/$tdir)
5405         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
5406
5407         if [[ $STRIPECOUNT -le 0 ]]; then
5408                 sc=1
5409         elif [[ $STRIPECOUNT -gt 2000 ]]; then
5410 #LOV_MAX_STRIPE_COUNT is 2000
5411                 [[ $OSTCOUNT -gt 2000 ]] && sc=2000 || sc=$(($OSTCOUNT - 1))
5412         else
5413                 sc=$(($STRIPECOUNT - 1))
5414         fi
5415         $SETSTRIPE -S $STRIPESIZE -c $sc $DIR/$tdir || error "setstripe"
5416         touch $DIR/$tdir/f4 $DIR/$tdir/f5
5417         $LVERIFY $DIR/$tdir $DIR/$tdir/f4 $DIR/$tdir/f5 ||
5418                 error "lverify failed"
5419 }
5420 run_test 65d "directory setstripe -S stripe_size -c stripe_count"
5421
5422 test_65e() {
5423         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5424         test_mkdir -p $DIR/$tdir
5425
5426         $SETSTRIPE $DIR/$tdir || error "setstripe"
5427         $GETSTRIPE -v $DIR/$tdir | grep "Default" ||
5428                                         error "no stripe info failed"
5429         touch $DIR/$tdir/f6
5430         $LVERIFY $DIR/$tdir $DIR/$tdir/f6 || error "lverify failed"
5431 }
5432 run_test 65e "directory setstripe defaults ======================="
5433
5434 test_65f() {
5435         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5436         test_mkdir -p $DIR/${tdir}f
5437         $RUNAS $SETSTRIPE $DIR/${tdir}f && error "setstripe succeeded" || true
5438 }
5439 run_test 65f "dir setstripe permission (should return error) ==="
5440
5441 test_65g() {
5442         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5443         test_mkdir -p $DIR/$tdir
5444         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
5445
5446         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
5447                                                         error "setstripe"
5448         $SETSTRIPE -d $DIR/$tdir || error "setstripe"
5449         $GETSTRIPE -v $DIR/$tdir | grep "Default" ||
5450                 error "delete default stripe failed"
5451 }
5452 run_test 65g "directory setstripe -d ==========================="
5453
5454 test_65h() {
5455         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5456         test_mkdir -p $DIR/$tdir
5457         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
5458
5459         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
5460                                                         error "setstripe"
5461         test_mkdir -p $DIR/$tdir/dd1
5462         [ $($GETSTRIPE -c $DIR/$tdir) == $($GETSTRIPE -c $DIR/$tdir/dd1) ] ||
5463                 error "stripe info inherit failed"
5464 }
5465 run_test 65h "directory stripe info inherit ===================="
5466
5467 test_65i() { # bug6367
5468         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5469         $SETSTRIPE -S 65536 -c -1 $MOUNT
5470 }
5471 run_test 65i "set non-default striping on root directory (bug 6367)="
5472
5473 test_65ia() { # bug12836
5474         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5475         $GETSTRIPE $MOUNT || error "getstripe $MOUNT failed"
5476 }
5477 run_test 65ia "getstripe on -1 default directory striping"
5478
5479 test_65ib() { # bug12836
5480         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5481         $GETSTRIPE -v $MOUNT || error "getstripe -v $MOUNT failed"
5482 }
5483 run_test 65ib "getstripe -v on -1 default directory striping"
5484
5485 test_65ic() { # bug12836
5486         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5487         $LFS find -mtime -1 $MOUNT > /dev/null || error "find $MOUNT failed"
5488 }
5489 run_test 65ic "new find on -1 default directory striping"
5490
5491 test_65j() { # bug6367
5492         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5493         sync; sleep 1
5494         # if we aren't already remounting for each test, do so for this test
5495         if [ "$CLEANUP" = ":" -a "$I_MOUNTED" = "yes" ]; then
5496                 cleanup || error "failed to unmount"
5497                 setup
5498         fi
5499         $SETSTRIPE -d $MOUNT || error "setstripe failed"
5500 }
5501 run_test 65j "set default striping on root directory (bug 6367)="
5502
5503 test_65k() { # bug11679
5504         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5505         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
5506         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5507
5508     echo "Check OST status: "
5509     local MDS_OSCS=`do_facet $SINGLEMDS lctl dl |
5510               awk '/[oO][sS][cC].*md[ts]/ { print $4 }'`
5511
5512     for OSC in $MDS_OSCS; do
5513         echo $OSC "is activate"
5514         do_facet $SINGLEMDS lctl --device %$OSC activate
5515     done
5516
5517     mkdir -p $DIR/$tdir
5518     for INACTIVE_OSC in $MDS_OSCS; do
5519         echo "Deactivate: " $INACTIVE_OSC
5520         do_facet $SINGLEMDS lctl --device %$INACTIVE_OSC deactivate
5521         for STRIPE_OSC in $MDS_OSCS; do
5522             OST=`osc_to_ost $STRIPE_OSC`
5523             IDX=`do_facet $SINGLEMDS lctl get_param -n lov.*md*.target_obd |
5524                  awk -F: /$OST/'{ print $1 }' | head -n 1`
5525
5526             [ -f $DIR/$tdir/$IDX ] && continue
5527             echo "$SETSTRIPE -i $IDX -c 1 $DIR/$tdir/$IDX"
5528             $SETSTRIPE -i $IDX -c 1 $DIR/$tdir/$IDX
5529             RC=$?
5530             [ $RC -ne 0 ] && error "setstripe should have succeeded"
5531         done
5532         rm -f $DIR/$tdir/*
5533         echo $INACTIVE_OSC "is Activate."
5534         do_facet $SINGLEMDS lctl --device  %$INACTIVE_OSC activate
5535     done
5536 }
5537 run_test 65k "validate manual striping works properly with deactivated OSCs"
5538
5539 test_65l() { # bug 12836
5540         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5541         test_mkdir -p $DIR/$tdir/test_dir
5542         $SETSTRIPE -c -1 $DIR/$tdir/test_dir
5543         $LFS find -mtime -1 $DIR/$tdir >/dev/null
5544 }
5545 run_test 65l "lfs find on -1 stripe dir ========================"
5546
5547 # bug 2543 - update blocks count on client
5548 test_66() {
5549         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5550         COUNT=${COUNT:-8}
5551         dd if=/dev/zero of=$DIR/f66 bs=1k count=$COUNT
5552         sync; sync_all_data; sync; sync_all_data
5553         cancel_lru_locks osc
5554         BLOCKS=`ls -s $DIR/f66 | awk '{ print $1 }'`
5555         [ $BLOCKS -ge $COUNT ] || error "$DIR/f66 blocks $BLOCKS < $COUNT"
5556 }
5557 run_test 66 "update inode blocks count on client ==============="
5558
5559 LLOOP=
5560 LLITELOOPLOAD=
5561 cleanup_68() {
5562         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5563         trap 0
5564         if [ ! -z "$LLOOP" ]; then
5565                 if swapon -s | grep -q $LLOOP; then
5566                         swapoff $LLOOP || error "swapoff failed"
5567                 fi
5568
5569                 $LCTL blockdev_detach $LLOOP || error "detach failed"
5570                 rm -f $LLOOP
5571                 unset LLOOP
5572         fi
5573         if [ ! -z "$LLITELOOPLOAD" ]; then
5574                 rmmod llite_lloop
5575                 unset LLITELOOPLOAD
5576         fi
5577         rm -f $DIR/f68*
5578 }
5579
5580 meminfo() {
5581         awk '($1 == "'$1':") { print $2 }' /proc/meminfo
5582 }
5583
5584 swap_used() {
5585         swapon -s | awk '($1 == "'$1'") { print $4 }'
5586 }
5587
5588 # test case for lloop driver, basic function
5589 test_68a() {
5590         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5591         [ "$UID" != 0 ] && skip_env "must run as root" && return
5592         llite_lloop_enabled || \
5593                 { skip_env "llite_lloop module disabled" && return; }
5594
5595         trap cleanup_68 EXIT
5596
5597         if ! module_loaded llite_lloop; then
5598                 if load_module llite/llite_lloop; then
5599                         LLITELOOPLOAD=yes
5600                 else
5601                         skip_env "can't find module llite_lloop"
5602                         return
5603                 fi
5604         fi
5605
5606         LLOOP=$TMP/lloop.`date +%s`.`date +%N`
5607         dd if=/dev/zero of=$DIR/f68a bs=4k count=1024
5608         $LCTL blockdev_attach $DIR/f68a $LLOOP || error "attach failed"
5609
5610         directio rdwr $LLOOP 0 1024 4096 || error "direct write failed"
5611         directio rdwr $LLOOP 0 1025 4096 && error "direct write should fail"
5612
5613         cleanup_68
5614 }
5615 run_test 68a "lloop driver - basic test ========================"
5616
5617 # excercise swapping to lustre by adding a high priority swapfile entry
5618 # and then consuming memory until it is used.
5619 test_68b() {  # was test_68
5620         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5621         [ "$UID" != 0 ] && skip_env "must run as root" && return
5622         lctl get_param -n devices | grep -q obdfilter && \
5623                 skip "local OST" && return
5624
5625         grep -q llite_lloop /proc/modules
5626         [ $? -ne 0 ] && skip "can't find module llite_lloop" && return
5627
5628         [ -z "`$LCTL list_nids | grep -v tcp`" ] && \
5629                 skip "can't reliably test swap with TCP" && return
5630
5631         MEMTOTAL=`meminfo MemTotal`
5632         NR_BLOCKS=$((MEMTOTAL>>8))
5633         [[ $NR_BLOCKS -le 2048 ]] && NR_BLOCKS=2048
5634
5635         LLOOP=$TMP/lloop.`date +%s`.`date +%N`
5636         dd if=/dev/zero of=$DIR/f68b bs=64k seek=$NR_BLOCKS count=1
5637         mkswap $DIR/f68b
5638
5639         $LCTL blockdev_attach $DIR/f68b $LLOOP || error "attach failed"
5640
5641         trap cleanup_68 EXIT
5642
5643         swapon -p 32767 $LLOOP || error "swapon $LLOOP failed"
5644
5645         echo "before: `swapon -s | grep $LLOOP`"
5646         $MEMHOG $MEMTOTAL || error "error allocating $MEMTOTAL kB"
5647         echo "after: `swapon -s | grep $LLOOP`"
5648         SWAPUSED=`swap_used $LLOOP`
5649
5650         cleanup_68
5651
5652         [ $SWAPUSED -eq 0 ] && echo "no swap used???" || true
5653 }
5654 run_test 68b "support swapping to Lustre ========================"
5655
5656 # bug5265, obdfilter oa2dentry return -ENOENT
5657 # #define OBD_FAIL_SRV_ENOENT 0x217
5658 test_69() {
5659         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5660         remote_ost_nodsh && skip "remote OST with nodsh" && return
5661
5662         f="$DIR/$tfile"
5663         $SETSTRIPE -c 1 -i 0 $f
5664
5665         $DIRECTIO write ${f}.2 0 1 || error "directio write error"
5666
5667         do_facet ost1 lctl set_param fail_loc=0x217
5668         $TRUNCATE $f 1 # vmtruncate() will ignore truncate() error.
5669         $DIRECTIO write $f 0 2 && error "write succeeded, expect -ENOENT"
5670
5671         do_facet ost1 lctl set_param fail_loc=0
5672         $DIRECTIO write $f 0 2 || error "write error"
5673
5674         cancel_lru_locks osc
5675         $DIRECTIO read $f 0 1 || error "read error"
5676
5677         do_facet ost1 lctl set_param fail_loc=0x217
5678         $DIRECTIO read $f 1 1 && error "read succeeded, expect -ENOENT"
5679
5680         do_facet ost1 lctl set_param fail_loc=0
5681         rm -f $f
5682 }
5683 run_test 69 "verify oa2dentry return -ENOENT doesn't LBUG ======"
5684
5685 test_71() {
5686         test_mkdir -p $DIR/$tdir
5687         $LFS setdirstripe -D -c$MDSCOUNT $DIR/$tdir
5688         sh rundbench -C -D $DIR/$tdir 2 || error "dbench failed!"
5689 }
5690 run_test 71 "Running dbench on lustre (don't segment fault) ===="
5691
5692 test_72a() { # bug 5695 - Test that on 2.6 remove_suid works properly
5693         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5694         [ "$RUNAS_ID" = "$UID" ] &&
5695                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
5696
5697         # Check that testing environment is properly set up. Skip if not
5698         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_GID $RUNAS || {
5699                 skip_env "User $RUNAS_ID does not exist - skipping"
5700                 return 0
5701         }
5702         touch $DIR/$tfile
5703         chmod 777 $DIR/$tfile
5704         chmod ug+s $DIR/$tfile
5705         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=512 count=1 ||
5706                 error "$RUNAS dd $DIR/$tfile failed"
5707         # See if we are still setuid/sgid
5708         test -u $DIR/$tfile -o -g $DIR/$tfile &&
5709                 error "S/gid is not dropped on write"
5710         # Now test that MDS is updated too
5711         cancel_lru_locks mdc
5712         test -u $DIR/$tfile -o -g $DIR/$tfile &&
5713                 error "S/gid is not dropped on MDS"
5714         rm -f $DIR/$tfile
5715 }
5716 run_test 72a "Test that remove suid works properly (bug5695) ===="
5717
5718 test_72b() { # bug 24226 -- keep mode setting when size is not changing
5719         local perm
5720
5721         [ "$RUNAS_ID" = "$UID" ] && \
5722                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
5723         [ "$RUNAS_ID" -eq 0 ] && \
5724                 skip_env "RUNAS_ID = 0 -- skipping" && return
5725
5726         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5727         # Check that testing environment is properly set up. Skip if not
5728         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_ID $RUNAS || {
5729                 skip_env "User $RUNAS_ID does not exist - skipping"
5730                 return 0
5731         }
5732         touch $DIR/${tfile}-f{g,u}
5733         test_mkdir $DIR/${tfile}-dg
5734         test_mkdir $DIR/${tfile}-du
5735         chmod 770 $DIR/${tfile}-{f,d}{g,u}
5736         chmod g+s $DIR/${tfile}-{f,d}g
5737         chmod u+s $DIR/${tfile}-{f,d}u
5738         for perm in 777 2777 4777; do
5739                 $RUNAS chmod $perm $DIR/${tfile}-fg && error "S/gid file allowed improper chmod to $perm"
5740                 $RUNAS chmod $perm $DIR/${tfile}-fu && error "S/uid file allowed improper chmod to $perm"
5741                 $RUNAS chmod $perm $DIR/${tfile}-dg && error "S/gid dir allowed improper chmod to $perm"
5742                 $RUNAS chmod $perm $DIR/${tfile}-du && error "S/uid dir allowed improper chmod to $perm"
5743         done
5744         true
5745 }
5746 run_test 72b "Test that we keep mode setting if without file data changed (bug 24226)"
5747
5748 # bug 3462 - multiple simultaneous MDC requests
5749 test_73() {
5750         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5751         test_mkdir $DIR/d73-1
5752         test_mkdir $DIR/d73-2
5753         multiop_bg_pause $DIR/d73-1/f73-1 O_c || return 1
5754         pid1=$!
5755
5756         lctl set_param fail_loc=0x80000129
5757         $MULTIOP $DIR/d73-1/f73-2 Oc &
5758         sleep 1
5759         lctl set_param fail_loc=0
5760
5761         $MULTIOP $DIR/d73-2/f73-3 Oc &
5762         pid3=$!
5763
5764         kill -USR1 $pid1
5765         wait $pid1 || return 1
5766
5767         sleep 25
5768
5769         $CHECKSTAT -t file $DIR/d73-1/f73-1 || return 4
5770         $CHECKSTAT -t file $DIR/d73-1/f73-2 || return 5
5771         $CHECKSTAT -t file $DIR/d73-2/f73-3 || return 6
5772
5773         rm -rf $DIR/d73-*
5774 }
5775 run_test 73 "multiple MDC requests (should not deadlock)"
5776
5777 test_74a() { # bug 6149, 6184
5778         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5779         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
5780         #
5781         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
5782         # will spin in a tight reconnection loop
5783         touch $DIR/f74a
5784         $LCTL set_param fail_loc=0x8000030e
5785         # get any lock that won't be difficult - lookup works.
5786         ls $DIR/f74a
5787         $LCTL set_param fail_loc=0
5788         rm -f $DIR/f74a
5789         true
5790 }
5791 run_test 74a "ldlm_enqueue freed-export error path, ls (shouldn't LBUG)"
5792
5793 test_74b() { # bug 13310
5794         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5795         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
5796         #
5797         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
5798         # will spin in a tight reconnection loop
5799         $LCTL set_param fail_loc=0x8000030e
5800         # get a "difficult" lock
5801         touch $DIR/f74b
5802         $LCTL set_param fail_loc=0
5803         rm -f $DIR/f74b
5804         true
5805 }
5806 run_test 74b "ldlm_enqueue freed-export error path, touch (shouldn't LBUG)"
5807
5808 test_74c() {
5809         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5810         #define OBD_FAIL_LDLM_NEW_LOCK
5811         $LCTL set_param fail_loc=0x319
5812         touch $DIR/$tfile && error "touch successful"
5813         $LCTL set_param fail_loc=0
5814         true
5815 }
5816 run_test 74c "ldlm_lock_create error path, (shouldn't LBUG)"
5817
5818 num_inodes() {
5819         awk '/lustre_inode_cache/ {print $2; exit}' /proc/slabinfo
5820 }
5821
5822 get_inode_slab_tunables() {
5823         awk '/lustre_inode_cache/ {print $9," ",$10," ",$11; exit}' /proc/slabinfo
5824 }
5825
5826 set_inode_slab_tunables() {
5827         echo "lustre_inode_cache $1" > /proc/slabinfo
5828 }
5829
5830 test_76() { # Now for bug 20433, added originally in bug 1443
5831         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5832         local SLAB_SETTINGS=`get_inode_slab_tunables`
5833         local CPUS=`getconf _NPROCESSORS_ONLN`
5834         # we cannot set limit below 1 which means 1 inode in each
5835         # per-cpu cache is still allowed
5836         set_inode_slab_tunables "1 1 0"
5837         cancel_lru_locks osc
5838         BEFORE_INODES=$(num_inodes)
5839         echo "before inodes: $BEFORE_INODES"
5840         local COUNT=1000
5841         [ "$SLOW" = "no" ] && COUNT=100
5842         for i in $(seq $COUNT); do
5843                 touch $DIR/$tfile
5844                 rm -f $DIR/$tfile
5845         done
5846         cancel_lru_locks osc
5847         AFTER_INODES=$(num_inodes)
5848         echo "after inodes: $AFTER_INODES"
5849         local wait=0
5850         while [[ $((AFTER_INODES-1*CPUS)) -gt $BEFORE_INODES ]]; do
5851                 sleep 2
5852                 AFTER_INODES=$(num_inodes)
5853                 wait=$((wait+2))
5854                 echo "wait $wait seconds inodes: $AFTER_INODES"
5855                 if [ $wait -gt 30 ]; then
5856                         error "inode slab grew from $BEFORE_INODES to $AFTER_INODES"
5857                 fi
5858         done
5859         set_inode_slab_tunables "$SLAB_SETTINGS"
5860 }
5861 run_test 76 "confirm clients recycle inodes properly ===="
5862
5863
5864 export ORIG_CSUM=""
5865 set_checksums()
5866 {
5867         # Note: in sptlrpc modes which enable its own bulk checksum, the
5868         # original crc32_le bulk checksum will be automatically disabled,
5869         # and the OBD_FAIL_OSC_CHECKSUM_SEND/OBD_FAIL_OSC_CHECKSUM_RECEIVE
5870         # will be checked by sptlrpc code against sptlrpc bulk checksum.
5871         # In this case set_checksums() will not be no-op, because sptlrpc
5872         # bulk checksum will be enabled all through the test.
5873
5874         [ "$ORIG_CSUM" ] || ORIG_CSUM=`lctl get_param -n osc.*.checksums | head -n1`
5875         lctl set_param -n osc.*.checksums $1
5876         return 0
5877 }
5878
5879 export ORIG_CSUM_TYPE="`lctl get_param -n osc.*osc-[^mM]*.checksum_type |
5880                         sed 's/.*\[\(.*\)\].*/\1/g' | head -n1`"
5881 CKSUM_TYPES=${CKSUM_TYPES:-"crc32 adler"}
5882 [ "$ORIG_CSUM_TYPE" = "crc32c" ] && CKSUM_TYPES="$CKSUM_TYPES crc32c"
5883 set_checksum_type()
5884 {
5885         lctl set_param -n osc.*osc-[^mM]*.checksum_type $1
5886         log "set checksum type to $1"
5887         return 0
5888 }
5889 F77_TMP=$TMP/f77-temp
5890 F77SZ=8
5891 setup_f77() {
5892         dd if=/dev/urandom of=$F77_TMP bs=1M count=$F77SZ || \
5893                 error "error writing to $F77_TMP"
5894 }
5895
5896 test_77a() { # bug 10889
5897         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5898         $GSS && skip "could not run with gss" && return
5899         [ ! -f $F77_TMP ] && setup_f77
5900         set_checksums 1
5901         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ || error "dd error"
5902         set_checksums 0
5903         rm -f $DIR/$tfile
5904 }
5905 run_test 77a "normal checksum read/write operation"
5906
5907 test_77b() { # bug 10889
5908         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5909         $GSS && skip "could not run with gss" && return
5910         [ ! -f $F77_TMP ] && setup_f77
5911         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
5912         $LCTL set_param fail_loc=0x80000409
5913         set_checksums 1
5914
5915         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ conv=sync ||
5916                 error "dd error: $?"
5917         $LCTL set_param fail_loc=0
5918
5919         for algo in $CKSUM_TYPES; do
5920                 cancel_lru_locks osc
5921                 set_checksum_type $algo
5922                 #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
5923                 $LCTL set_param fail_loc=0x80000408
5924                 cmp $F77_TMP $DIR/$tfile || error "file compare failed"
5925                 $LCTL set_param fail_loc=0
5926         done
5927         set_checksums 0
5928         set_checksum_type $ORIG_CSUM_TYPE
5929         rm -f $DIR/$tfile
5930 }
5931 run_test 77b "checksum error on client write, read"
5932
5933 test_77d() { # bug 10889
5934         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5935         $GSS && skip "could not run with gss" && return
5936         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
5937         $LCTL set_param fail_loc=0x80000409
5938         set_checksums 1
5939         $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
5940                 error "direct write: rc=$?"
5941         $LCTL set_param fail_loc=0
5942         set_checksums 0
5943
5944         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
5945         $LCTL set_param fail_loc=0x80000408
5946         set_checksums 1
5947         cancel_lru_locks osc
5948         $DIRECTIO read $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
5949                 error "direct read: rc=$?"
5950         $LCTL set_param fail_loc=0
5951         set_checksums 0
5952 }
5953 run_test 77d "checksum error on OST direct write, read"
5954
5955 test_77f() { # bug 10889
5956         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5957         $GSS && skip "could not run with gss" && return
5958         set_checksums 1
5959         for algo in $CKSUM_TYPES; do
5960                 cancel_lru_locks osc
5961                 set_checksum_type $algo
5962                 #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
5963                 $LCTL set_param fail_loc=0x409
5964                 $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) &&
5965                         error "direct write succeeded"
5966                 $LCTL set_param fail_loc=0
5967         done
5968         set_checksum_type $ORIG_CSUM_TYPE
5969         set_checksums 0
5970 }
5971 run_test 77f "repeat checksum error on write (expect error)"
5972
5973 test_77g() { # bug 10889
5974         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5975         $GSS && skip "could not run with gss" && return
5976         remote_ost_nodsh && skip "remote OST with nodsh" && return
5977
5978         [ ! -f $F77_TMP ] && setup_f77
5979
5980         $SETSTRIPE -c 1 -i 0 $DIR/$tfile
5981         #define OBD_FAIL_OST_CHECKSUM_RECEIVE       0x21a
5982         do_facet ost1 lctl set_param fail_loc=0x8000021a
5983         set_checksums 1
5984         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ ||
5985                 error "write error: rc=$?"
5986         do_facet ost1 lctl set_param fail_loc=0
5987         set_checksums 0
5988
5989         cancel_lru_locks osc
5990         #define OBD_FAIL_OST_CHECKSUM_SEND          0x21b
5991         do_facet ost1 lctl set_param fail_loc=0x8000021b
5992         set_checksums 1
5993         cmp $F77_TMP $DIR/$tfile || error "file compare failed"
5994         do_facet ost1 lctl set_param fail_loc=0
5995         set_checksums 0
5996 }
5997 run_test 77g "checksum error on OST write, read"
5998
5999 test_77i() { # bug 13805
6000         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6001         $GSS && skip "could not run with gss" && return
6002         #define OBD_FAIL_OSC_CONNECT_CKSUM       0x40b
6003         lctl set_param fail_loc=0x40b
6004         remount_client $MOUNT
6005         lctl set_param fail_loc=0
6006         for VALUE in `lctl get_param osc.*osc-[^mM]*.checksum_type`; do
6007                 PARAM=`echo ${VALUE[0]} | cut -d "=" -f1`
6008                 algo=`lctl get_param -n $PARAM | sed 's/.*\[\(.*\)\].*/\1/g'`
6009                 [ "$algo" = "adler" ] || error "algo set to $algo instead of adler"
6010         done
6011         remount_client $MOUNT
6012 }
6013 run_test 77i "client not supporting OSD_CONNECT_CKSUM"
6014
6015 test_77j() { # bug 13805
6016         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6017         $GSS && skip "could not run with gss" && return
6018         #define OBD_FAIL_OSC_CKSUM_ADLER_ONLY    0x40c
6019         lctl set_param fail_loc=0x40c
6020         remount_client $MOUNT
6021         lctl set_param fail_loc=0
6022         sleep 2 # wait async osc connect to finish
6023         for VALUE in `lctl get_param osc.*osc-[^mM]*.checksum_type`; do
6024                 PARAM=`echo ${VALUE[0]} | cut -d "=" -f1`
6025                 algo=`lctl get_param -n $PARAM | sed 's/.*\[\(.*\)\].*/\1/g'`
6026                 [ "$algo" = "adler" ] || error "algo set to $algo instead of adler"
6027         done
6028         remount_client $MOUNT
6029 }
6030 run_test 77j "client only supporting ADLER32"
6031
6032 [ "$ORIG_CSUM" ] && set_checksums $ORIG_CSUM || true
6033 rm -f $F77_TMP
6034 unset F77_TMP
6035
6036 test_78() { # bug 10901
6037         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6038         remote_ost || { skip_env "local OST" && return; }
6039
6040         NSEQ=5
6041         F78SIZE=$(($(awk '/MemFree:/ { print $2 }' /proc/meminfo) / 1024))
6042         echo "MemFree: $F78SIZE, Max file size: $MAXFREE"
6043         MEMTOTAL=$(($(awk '/MemTotal:/ { print $2 }' /proc/meminfo) / 1024))
6044         echo "MemTotal: $MEMTOTAL"
6045
6046         # reserve 256MB of memory for the kernel and other running processes,
6047         # and then take 1/2 of the remaining memory for the read/write buffers.
6048         if [ $MEMTOTAL -gt 512 ] ;then
6049                 MEMTOTAL=$(((MEMTOTAL - 256 ) / 2))
6050         else
6051                 # for those poor memory-starved high-end clusters...
6052                 MEMTOTAL=$((MEMTOTAL / 2))
6053         fi
6054         echo "Mem to use for directio: $MEMTOTAL"
6055
6056         [[ $F78SIZE -gt $MEMTOTAL ]] && F78SIZE=$MEMTOTAL
6057         [[ $F78SIZE -gt 512 ]] && F78SIZE=512
6058         [[ $F78SIZE -gt $((MAXFREE / 1024)) ]] && F78SIZE=$((MAXFREE / 1024))
6059         SMALLESTOST=$($LFS df $DIR | grep OST | awk '{ print $4 }' | sort -n |
6060                 head -n1)
6061         echo "Smallest OST: $SMALLESTOST"
6062         [[ $SMALLESTOST -lt 10240 ]] &&
6063                 skip "too small OSTSIZE, useless to run large O_DIRECT test" && return 0
6064
6065         [[ $F78SIZE -gt $((SMALLESTOST * $OSTCOUNT / 1024 - 80)) ]] &&
6066                 F78SIZE=$((SMALLESTOST * $OSTCOUNT / 1024 - 80))
6067
6068         [ "$SLOW" = "no" ] && NSEQ=1 && [ $F78SIZE -gt 32 ] && F78SIZE=32
6069         echo "File size: $F78SIZE"
6070         $SETSTRIPE -c $OSTCOUNT $DIR/$tfile || error "setstripe failed"
6071         for i in $(seq 1 $NSEQ); do
6072                 FSIZE=$(($F78SIZE / ($NSEQ - $i + 1)))
6073                 echo directIO rdwr round $i of $NSEQ
6074                 $DIRECTIO rdwr $DIR/$tfile 0 $FSIZE 1048576||error "rdwr failed"
6075         done
6076
6077         rm -f $DIR/$tfile
6078 }
6079 run_test 78 "handle large O_DIRECT writes correctly ============"
6080
6081 test_79() { # bug 12743
6082         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6083         wait_delete_completed
6084
6085         BKTOTAL=$(calc_osc_kbytes kbytestotal)
6086         BKFREE=$(calc_osc_kbytes kbytesfree)
6087         BKAVAIL=$(calc_osc_kbytes kbytesavail)
6088
6089         STRING=`df -P $MOUNT | tail -n 1 | awk '{print $2","$3","$4}'`
6090         DFTOTAL=`echo $STRING | cut -d, -f1`
6091         DFUSED=`echo $STRING  | cut -d, -f2`
6092         DFAVAIL=`echo $STRING | cut -d, -f3`
6093         DFFREE=$(($DFTOTAL - $DFUSED))
6094
6095         ALLOWANCE=$((64 * $OSTCOUNT))
6096
6097         if [ $DFTOTAL -lt $(($BKTOTAL - $ALLOWANCE)) ] ||
6098            [ $DFTOTAL -gt $(($BKTOTAL + $ALLOWANCE)) ] ; then
6099                 error "df total($DFTOTAL) mismatch OST total($BKTOTAL)"
6100         fi
6101         if [ $DFFREE -lt $(($BKFREE - $ALLOWANCE)) ] ||
6102            [ $DFFREE -gt $(($BKFREE + $ALLOWANCE)) ] ; then
6103                 error "df free($DFFREE) mismatch OST free($BKFREE)"
6104         fi
6105         if [ $DFAVAIL -lt $(($BKAVAIL - $ALLOWANCE)) ] ||
6106            [ $DFAVAIL -gt $(($BKAVAIL + $ALLOWANCE)) ] ; then
6107                 error "df avail($DFAVAIL) mismatch OST avail($BKAVAIL)"
6108         fi
6109 }
6110 run_test 79 "df report consistency check ======================="
6111
6112 test_80() { # bug 10718
6113         remote_ost_nodsh && skip "remote OST with nodsh" && return
6114         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6115         # relax strong synchronous semantics for slow backends like ZFS
6116         local soc="obdfilter.*.sync_on_lock_cancel"
6117         local soc_old=$(do_facet ost1 lctl get_param -n $soc | head -n1)
6118         local hosts=
6119         if [ "$soc_old" != "never" -a "$(facet_fstype ost1)" != "ldiskfs" ]; then
6120                 hosts=$(for host in $(seq -f "ost%g" 1 $OSTCOUNT); do
6121                           facet_active_host $host; done | sort -u)
6122                 do_nodes $hosts lctl set_param $soc=never
6123         fi
6124
6125         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1M
6126         sync; sleep 1; sync
6127         local BEFORE=`date +%s`
6128         cancel_lru_locks osc
6129         local AFTER=`date +%s`
6130         local DIFF=$((AFTER-BEFORE))
6131         if [ $DIFF -gt 1 ] ; then
6132                 error "elapsed for 1M@1T = $DIFF"
6133         fi
6134
6135         [ -n "$hosts" ] && do_nodes $hosts lctl set_param $soc=$soc_old
6136
6137         rm -f $DIR/$tfile
6138 }
6139 run_test 80 "Page eviction is equally fast at high offsets too  ===="
6140
6141 test_81a() { # LU-456
6142         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6143         remote_ost_nodsh && skip "remote OST with nodsh" && return
6144         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
6145         # MUST OR with the OBD_FAIL_ONCE (0x80000000)
6146         do_facet ost1 lctl set_param fail_loc=0x80000228
6147
6148         # write should trigger a retry and success
6149         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
6150         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6151         RC=$?
6152         if [ $RC -ne 0 ] ; then
6153                 error "write should success, but failed for $RC"
6154         fi
6155 }
6156 run_test 81a "OST should retry write when get -ENOSPC ==============="
6157
6158 test_81b() { # LU-456
6159         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6160         remote_ost_nodsh && skip "remote OST with nodsh" && return
6161         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
6162         # Don't OR with the OBD_FAIL_ONCE (0x80000000)
6163         do_facet ost1 lctl set_param fail_loc=0x228
6164
6165         # write should retry several times and return -ENOSPC finally
6166         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
6167         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6168         RC=$?
6169         ENOSPC=28
6170         if [ $RC -ne $ENOSPC ] ; then
6171                 error "dd should fail for -ENOSPC, but succeed."
6172         fi
6173 }
6174 run_test 81b "OST should return -ENOSPC when retry still fails ======="
6175
6176 test_82() { # LU-1031
6177         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10
6178         local gid1=14091995
6179         local gid2=16022000
6180
6181         multiop_bg_pause $DIR/$tfile OG${gid1}_g${gid1}c || return 1
6182         local MULTIPID1=$!
6183         multiop_bg_pause $DIR/$tfile O_G${gid2}r10g${gid2}c || return 2
6184         local MULTIPID2=$!
6185         kill -USR1 $MULTIPID2
6186         sleep 2
6187         if [[ `ps h -o comm -p $MULTIPID2` == "" ]]; then
6188                 error "First grouplock does not block second one"
6189         else
6190                 echo "Second grouplock blocks first one"
6191         fi
6192         kill -USR1 $MULTIPID1
6193         wait $MULTIPID1
6194         wait $MULTIPID2
6195 }
6196 run_test 82 "Basic grouplock test ==============================="
6197
6198 test_99a() {
6199         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" &&
6200                 return
6201         test_mkdir -p $DIR/d99cvsroot
6202         chown $RUNAS_ID $DIR/d99cvsroot
6203         local oldPWD=$PWD       # bug 13584, use $TMP as working dir
6204         cd $TMP
6205
6206         $RUNAS cvs -d $DIR/d99cvsroot init || error "cvs init failed"
6207         cd $oldPWD
6208 }
6209 run_test 99a "cvs init ========================================="
6210
6211 test_99b() {
6212         [ -z "$(which cvs 2>/dev/null)" ] &&
6213                 skip_env "could not find cvs" && return
6214         [ ! -d $DIR/d99cvsroot ] && test_99a
6215         cd /etc/init.d
6216         # some versions of cvs import exit(1) when asked to import links or
6217         # files they can't read.  ignore those files.
6218         TOIGNORE=$(find . -type l -printf '-I %f\n' -o \
6219                         ! -perm /4 -printf '-I %f\n')
6220         $RUNAS cvs -d $DIR/d99cvsroot import -m "nomesg" $TOIGNORE \
6221                 d99reposname vtag rtag
6222 }
6223 run_test 99b "cvs import ======================================="
6224
6225 test_99c() {
6226         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
6227         [ ! -d $DIR/d99cvsroot ] && test_99b
6228         cd $DIR
6229         test_mkdir -p $DIR/d99reposname
6230         chown $RUNAS_ID $DIR/d99reposname
6231         $RUNAS cvs -d $DIR/d99cvsroot co d99reposname
6232 }
6233 run_test 99c "cvs checkout ====================================="
6234
6235 test_99d() {
6236         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
6237         [ ! -d $DIR/d99cvsroot ] && test_99c
6238         cd $DIR/d99reposname
6239         $RUNAS touch foo99
6240         $RUNAS cvs add -m 'addmsg' foo99
6241 }
6242 run_test 99d "cvs add =========================================="
6243
6244 test_99e() {
6245         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
6246         [ ! -d $DIR/d99cvsroot ] && test_99c
6247         cd $DIR/d99reposname
6248         $RUNAS cvs update
6249 }
6250 run_test 99e "cvs update ======================================="
6251
6252 test_99f() {
6253         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
6254         [ ! -d $DIR/d99cvsroot ] && test_99d
6255         cd $DIR/d99reposname
6256         $RUNAS cvs commit -m 'nomsg' foo99
6257     rm -fr $DIR/d99cvsroot
6258 }
6259 run_test 99f "cvs commit ======================================="
6260
6261 test_100() {
6262         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6263         [ "$NETTYPE" = tcp ] || \
6264                 { skip "TCP secure port test, not useful for NETTYPE=$NETTYPE" && \
6265                         return ; }
6266
6267         remote_ost_nodsh && skip "remote OST with nodsh" && return
6268         remote_mds_nodsh && skip "remote MDS with nodsh" && return
6269         remote_servers || \
6270                 { skip "useless for local single node setup" && return; }
6271
6272         netstat -tna | ( rc=1; while read PROT SND RCV LOCAL REMOTE STAT; do
6273                 [ "$PROT" != "tcp" ] && continue
6274                 RPORT=$(echo $REMOTE | cut -d: -f2)
6275                 [ "$RPORT" != "$ACCEPTOR_PORT" ] && continue
6276
6277                 rc=0
6278                 LPORT=`echo $LOCAL | cut -d: -f2`
6279                 if [ $LPORT -ge 1024 ]; then
6280                         echo "bad: $PROT $SND $RCV $LOCAL $REMOTE $STAT"
6281                         netstat -tna
6282                         error_exit "local: $LPORT > 1024, remote: $RPORT"
6283                 fi
6284         done
6285         [ "$rc" = 0 ] || error_exit "privileged port not found" )
6286 }
6287 run_test 100 "check local port using privileged port ==========="
6288
6289 function get_named_value()
6290 {
6291     local tag
6292
6293     tag=$1
6294     while read ;do
6295         line=$REPLY
6296         case $line in
6297         $tag*)
6298             echo $line | sed "s/^$tag[ ]*//"
6299             break
6300             ;;
6301         esac
6302     done
6303 }
6304
6305 export CACHE_MAX=$($LCTL get_param -n llite.*.max_cached_mb |
6306                    awk '/^max_cached_mb/ { print $2 }')
6307
6308 cleanup_101a() {
6309         $LCTL set_param -n llite.*.max_cached_mb $CACHE_MAX
6310         trap 0
6311 }
6312
6313 test_101a() {
6314         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6315         [ $MDSCOUNT -ge 2 ] && skip "skip now for >= 2 MDTs" && return #LU-4322
6316         local s
6317         local discard
6318         local nreads=10000
6319         local cache_limit=32
6320
6321         $LCTL set_param -n osc.*-osc*.rpc_stats 0
6322         trap cleanup_101a EXIT
6323         $LCTL set_param -n llite.*.read_ahead_stats 0
6324         $LCTL set_param -n llite.*.max_cached_mb $cache_limit
6325
6326         #
6327         # randomly read 10000 of 64K chunks from file 3x 32MB in size
6328         #
6329         echo "nreads: $nreads file size: $((cache_limit * 3))MB"
6330         $READS -f $DIR/$tfile -s$((cache_limit * 3192 * 1024)) -b65536 -C -n$nreads -t 180
6331
6332         discard=0
6333         for s in $($LCTL get_param -n llite.*.read_ahead_stats |
6334                 get_named_value 'read but discarded' | cut -d" " -f1); do
6335                         discard=$(($discard + $s))
6336         done
6337         cleanup_101a
6338
6339         if [[ $(($discard * 10)) -gt $nreads ]]; then
6340                 $LCTL get_param osc.*-osc*.rpc_stats
6341                 $LCTL get_param llite.*.read_ahead_stats
6342                 error "too many ($discard) discarded pages"
6343         fi
6344         rm -f $DIR/$tfile || true
6345 }
6346 run_test 101a "check read-ahead for random reads ================"
6347
6348 setup_test101bc() {
6349         test_mkdir -p $DIR/$tdir
6350         local STRIPE_SIZE=$1
6351         local FILE_LENGTH=$2
6352         STRIPE_OFFSET=0
6353
6354         local FILE_SIZE_MB=$((FILE_LENGTH / STRIPE_SIZE))
6355
6356         local list=$(comma_list $(osts_nodes))
6357         set_osd_param $list '' read_cache_enable 0
6358         set_osd_param $list '' writethrough_cache_enable 0
6359
6360         trap cleanup_test101bc EXIT
6361         # prepare the read-ahead file
6362         $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $OSTCOUNT $DIR/$tfile
6363
6364         dd if=/dev/zero of=$DIR/$tfile bs=$STRIPE_SIZE \
6365                                 count=$FILE_SIZE_MB 2> /dev/null
6366
6367 }
6368
6369 cleanup_test101bc() {
6370         trap 0
6371         rm -rf $DIR/$tdir
6372         rm -f $DIR/$tfile
6373
6374         local list=$(comma_list $(osts_nodes))
6375         set_osd_param $list '' read_cache_enable 1
6376         set_osd_param $list '' writethrough_cache_enable 1
6377 }
6378
6379 calc_total() {
6380         awk 'BEGIN{total=0}; {total+=$1}; END{print total}'
6381 }
6382
6383 ra_check_101() {
6384         local READ_SIZE=$1
6385         local STRIPE_SIZE=$2
6386         local FILE_LENGTH=$3
6387         local RA_INC=1048576
6388         local STRIDE_LENGTH=$((STRIPE_SIZE/READ_SIZE))
6389         local discard_limit=$((((STRIDE_LENGTH - 1)*3/(STRIDE_LENGTH*OSTCOUNT))* \
6390                              (STRIDE_LENGTH*OSTCOUNT - STRIDE_LENGTH)))
6391         DISCARD=$($LCTL get_param -n llite.*.read_ahead_stats |
6392                         get_named_value 'read but discarded' |
6393                         cut -d" " -f1 | calc_total)
6394         if [[ $DISCARD -gt $discard_limit ]]; then
6395                 $LCTL get_param llite.*.read_ahead_stats
6396                 error "Too many ($DISCARD) discarded pages with size (${READ_SIZE})"
6397         else
6398                 echo "Read-ahead success for size ${READ_SIZE}"
6399         fi
6400 }
6401
6402 test_101b() {
6403         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6404         [[ $OSTCOUNT -lt 2 ]] &&
6405                 skip_env "skipping stride IO stride-ahead test" && return
6406         local STRIPE_SIZE=1048576
6407         local STRIDE_SIZE=$((STRIPE_SIZE*OSTCOUNT))
6408         if [ $SLOW == "yes" ]; then
6409                 local FILE_LENGTH=$((STRIDE_SIZE * 64))
6410         else
6411                 local FILE_LENGTH=$((STRIDE_SIZE * 8))
6412         fi
6413
6414         local ITERATION=$((FILE_LENGTH / STRIDE_SIZE))
6415
6416         # prepare the read-ahead file
6417         setup_test101bc $STRIPE_SIZE $FILE_LENGTH
6418         cancel_lru_locks osc
6419         for BIDX in 2 4 8 16 32 64 128 256
6420         do
6421                 local BSIZE=$((BIDX*4096))
6422                 local READ_COUNT=$((STRIPE_SIZE/BSIZE))
6423                 local STRIDE_LENGTH=$((STRIDE_SIZE/BSIZE))
6424                 local OFFSET=$((STRIPE_SIZE/BSIZE*(OSTCOUNT - 1)))
6425                 $LCTL set_param -n llite.*.read_ahead_stats 0
6426                 $READS -f $DIR/$tfile  -l $STRIDE_LENGTH -o $OFFSET \
6427                               -s $FILE_LENGTH -b $STRIPE_SIZE -a $READ_COUNT -n $ITERATION
6428                 cancel_lru_locks osc
6429                 ra_check_101 $BSIZE $STRIPE_SIZE $FILE_LENGTH
6430         done
6431         cleanup_test101bc
6432         true
6433 }
6434 run_test 101b "check stride-io mode read-ahead ================="
6435
6436 test_101c() {
6437         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6438         local STRIPE_SIZE=1048576
6439         local FILE_LENGTH=$((STRIPE_SIZE*100))
6440         local nreads=10000
6441         local osc_rpc_stats
6442
6443         setup_test101bc $STRIPE_SIZE $FILE_LENGTH
6444
6445         cancel_lru_locks osc
6446         $LCTL set_param osc.*.rpc_stats 0
6447         $READS -f $DIR/$tfile -s$FILE_LENGTH -b65536 -n$nreads -t 180
6448         for osc_rpc_stats in $($LCTL get_param -N osc.*.rpc_stats); do
6449                 local stats=$($LCTL get_param -n $osc_rpc_stats)
6450                 local lines=$(echo "$stats" | awk 'END {print NR;}')
6451                 local size
6452
6453                 if [ $lines -le 20 ]; then
6454                         continue
6455                 fi
6456                 for size in 1 2 4 8; do
6457                         local rpc=$(echo "$stats" |
6458                                     awk '($1 == "'$size':") {print $2; exit; }')
6459                         [ $rpc != 0 ] &&
6460                                 error "Small $((size*4))k read IO $rpc !"
6461                 done
6462                 echo "$osc_rpc_stats check passed!"
6463         done
6464         cleanup_test101bc
6465         true
6466 }
6467 run_test 101c "check stripe_size aligned read-ahead ================="
6468
6469 set_read_ahead() {
6470         $LCTL get_param -n llite.*.max_read_ahead_mb | head -n 1
6471         $LCTL set_param -n llite.*.max_read_ahead_mb $1 > /dev/null 2>&1
6472 }
6473
6474 test_101d() {
6475         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6476         local file=$DIR/$tfile
6477         local sz_MB=${FILESIZE_101d:-500}
6478         local ra_MB=${READAHEAD_MB:-40}
6479
6480         local free_MB=$(($(df -P $DIR | tail -n 1 | awk '{ print $4 }') / 1024))
6481         [ $free_MB -lt $sz_MB ] &&
6482                 skip "Need free space ${sz_MB}M, have ${free_MB}M" && return
6483
6484         echo "Create test file $file size ${sz_MB}M, ${free_MB}M free"
6485         $SETSTRIPE -c -1 $file || error "setstripe failed"
6486
6487         dd if=/dev/zero of=$file bs=1M count=$sz_MB || error "dd failed"
6488         echo Cancel LRU locks on lustre client to flush the client cache
6489         cancel_lru_locks osc
6490
6491         echo Disable read-ahead
6492         local old_READAHEAD=$(set_read_ahead 0)
6493
6494         echo Reading the test file $file with read-ahead disabled
6495         local raOFF=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$sz_MB")
6496
6497         echo Cancel LRU locks on lustre client to flush the client cache
6498         cancel_lru_locks osc
6499         echo Enable read-ahead with ${ra_MB}MB
6500         set_read_ahead $ra_MB
6501
6502         echo Reading the test file $file with read-ahead enabled
6503         local raON=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$sz_MB")
6504
6505         echo "read-ahead disabled time read $raOFF"
6506         echo "read-ahead enabled  time read $raON"
6507
6508         set_read_ahead $old_READAHEAD
6509         rm -f $file
6510         wait_delete_completed
6511
6512         [ $raOFF -le 1 -o $raON -lt $raOFF ] ||
6513                 error "readahead ${raON}s > no-readahead ${raOFF}s ${sz_MB}M"
6514 }
6515 run_test 101d "file read with and without read-ahead enabled"
6516
6517 test_101e() {
6518         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6519         local file=$DIR/$tfile
6520         local size_KB=500  #KB
6521         local count=100
6522         local bsize=1024
6523
6524         local free_KB=$(df -P $DIR | tail -n 1 | awk '{ print $4 }')
6525         local need_KB=$((count * size_KB))
6526         [[ $free_KB -le $need_KB ]] &&
6527                 skip_env "Need free space $need_KB, have $free_KB" && return
6528
6529         echo "Creating $count ${size_KB}K test files"
6530         for ((i = 0; i < $count; i++)); do
6531                 dd if=/dev/zero of=$file.$i bs=$bsize count=$size_KB 2>/dev/null
6532         done
6533
6534         echo "Cancel LRU locks on lustre client to flush the client cache"
6535         cancel_lru_locks osc
6536
6537         echo "Reset readahead stats"
6538         $LCTL set_param -n llite.*.read_ahead_stats 0
6539
6540         for ((i = 0; i < $count; i++)); do
6541                 dd if=$file.$i of=/dev/null bs=$bsize count=$size_KB 2>/dev/null
6542         done
6543
6544         local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
6545                      get_named_value 'misses' | cut -d" " -f1 | calc_total)
6546
6547         for ((i = 0; i < $count; i++)); do
6548                 rm -rf $file.$i 2>/dev/null
6549         done
6550
6551         #10000 means 20% reads are missing in readahead
6552         [[ $miss -lt 10000 ]] ||  error "misses too much for small reads"
6553 }
6554 run_test 101e "check read-ahead for small read(1k) for small files(500k)"
6555
6556 cleanup_test101f() {
6557     trap 0
6558     $LCTL set_param -n llite.*.max_read_ahead_whole_mb $MAX_WHOLE_MB
6559     rm -rf $DIR/$tfile 2>/dev/null
6560 }
6561
6562 test_101f() {
6563         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6564     local file=$DIR/$tfile
6565     local nreads=1000
6566
6567     MAX_WHOLE_MB=$($LCTL get_param -n llite.*.max_read_ahead_whole_mb)
6568     $LCTL set_param -n llite.*.max_read_ahead_whole_mb 2
6569     dd if=/dev/zero of=${file} bs=2097152 count=1 2>/dev/null
6570     trap cleanup_test101f EXIT
6571
6572     echo Cancel LRU locks on lustre client to flush the client cache
6573     cancel_lru_locks osc
6574
6575     echo Reset readahead stats
6576     $LCTL set_param -n llite.*.read_ahead_stats 0
6577     # Random read in a 2M file, because max_read_ahead_whole_mb = 2M,
6578     # readahead should read in 2M file on second read, so only miss
6579     # 2 pages.
6580     echo Random 4K reads on 2M file for 1000 times
6581     $READS -f $file -s 2097152 -b 4096 -n $nreads
6582
6583     echo checking missing pages
6584     local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
6585           get_named_value 'misses' | cut -d" " -f1 | calc_total)
6586
6587     [ $miss -lt 3 ] || error "misses too much pages!"
6588     cleanup_test101f
6589 }
6590 run_test 101f "check read-ahead for max_read_ahead_whole_mb"
6591
6592 setup_test102() {
6593         test_mkdir -p $DIR/$tdir
6594         chown $RUNAS_ID $DIR/$tdir
6595         STRIPE_SIZE=65536
6596         STRIPE_OFFSET=1
6597         STRIPE_COUNT=$OSTCOUNT
6598         [[ $OSTCOUNT -gt 4 ]] && STRIPE_COUNT=4
6599
6600         trap cleanup_test102 EXIT
6601         cd $DIR
6602         $1 $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $STRIPE_COUNT $tdir
6603         cd $DIR/$tdir
6604         for num in 1 2 3 4; do
6605                 for count in $(seq 1 $STRIPE_COUNT); do
6606                         for idx in $(seq 0 $[$STRIPE_COUNT - 1]); do
6607                                 local size=`expr $STRIPE_SIZE \* $num`
6608                                 local file=file"$num-$idx-$count"
6609                                 $1 $SETSTRIPE -S $size -i $idx -c $count $file
6610                         done
6611                 done
6612         done
6613
6614         cd $DIR
6615         $1 $TAR cf $TMP/f102.tar $tdir --xattrs
6616 }
6617
6618 cleanup_test102() {
6619         trap 0
6620         rm -f $TMP/f102.tar
6621         rm -rf $DIR/d0.sanity/d102
6622 }
6623
6624 test_102a() {
6625         local testfile=$DIR/$tfile
6626
6627         touch $testfile
6628
6629         [ "$UID" != 0 ] && skip_env "must run as root" && return
6630         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep xattr)" ] &&
6631                 skip_env "must have user_xattr" && return
6632
6633         [ -z "$(which setfattr 2>/dev/null)" ] &&
6634                 skip_env "could not find setfattr" && return
6635
6636         echo "set/get xattr..."
6637         setfattr -n trusted.name1 -v value1 $testfile ||
6638                 error "setfattr -n trusted.name1=value1 $testfile failed"
6639         getfattr -n trusted.name1 $testfile 2> /dev/null |
6640           grep "trusted.name1=.value1" ||
6641                 error "$testfile missing trusted.name1=value1"
6642
6643         setfattr -n user.author1 -v author1 $testfile ||
6644                 error "setfattr -n user.author1=author1 $testfile failed"
6645         getfattr -n user.author1 $testfile 2> /dev/null |
6646           grep "user.author1=.author1" ||
6647                 error "$testfile missing trusted.author1=author1"
6648
6649         echo "listxattr..."
6650         setfattr -n trusted.name2 -v value2 $testfile ||
6651                 error "$testfile unable to set trusted.name2"
6652         setfattr -n trusted.name3 -v value3 $testfile ||
6653                 error "$testfile unable to set trusted.name3"
6654         [ $(getfattr -d -m "^trusted" $testfile 2> /dev/null |
6655             grep "trusted.name" | wc -l) -eq 3 ] ||
6656                 error "$testfile missing 3 trusted.name xattrs"
6657
6658         setfattr -n user.author2 -v author2 $testfile ||
6659                 error "$testfile unable to set user.author2"
6660         setfattr -n user.author3 -v author3 $testfile ||
6661                 error "$testfile unable to set user.author3"
6662         [ $(getfattr -d -m "^user" $testfile 2> /dev/null |
6663             grep "user.author" | wc -l) -eq 3 ] ||
6664                 error "$testfile missing 3 user.author xattrs"
6665
6666         echo "remove xattr..."
6667         setfattr -x trusted.name1 $testfile ||
6668                 error "$testfile error deleting trusted.name1"
6669         getfattr -d -m trusted $testfile 2> /dev/null | grep "trusted.name1" &&
6670                 error "$testfile did not delete trusted.name1 xattr"
6671
6672         setfattr -x user.author1 $testfile ||
6673                 error "$testfile error deleting user.author1"
6674         getfattr -d -m user $testfile 2> /dev/null | grep "user.author1" &&
6675                 error "$testfile did not delete trusted.name1 xattr"
6676
6677         # b10667: setting lustre special xattr be silently discarded
6678         echo "set lustre special xattr ..."
6679         setfattr -n "trusted.lov" -v "invalid value" $testfile ||
6680                 error "$testfile allowed setting trusted.lov"
6681 }
6682 run_test 102a "user xattr test =================================="
6683
6684 test_102b() {
6685         [ -z "$(which setfattr 2>/dev/null)" ] &&
6686                 skip_env "could not find setfattr" && return
6687
6688         # b10930: get/set/list trusted.lov xattr
6689         echo "get/set/list trusted.lov xattr ..."
6690         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping 2-stripe test" && return
6691         local testfile=$DIR/$tfile
6692         $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
6693                 error "setstripe failed"
6694         local STRIPECOUNT=$($GETSTRIPE -c $testfile) ||
6695                 error "getstripe failed"
6696         getfattr -d -m "^trusted" $testfile 2>/dev/null | grep "trusted.lov" ||
6697                 error "can't get trusted.lov from $testfile"
6698
6699         local testfile2=${testfile}2
6700         local value=$(getfattr -n trusted.lov $testfile 2>/dev/null |
6701                         grep "trusted.lov" | sed -e 's/[^=]\+=//')
6702
6703         $MCREATE $testfile2
6704         setfattr -n trusted.lov -v $value $testfile2
6705         local stripe_size=$($GETSTRIPE -S $testfile2)
6706         local stripe_count=$($GETSTRIPE -c $testfile2)
6707         [[ $stripe_size -eq 65536 ]] ||
6708                 error "stripe size $stripe_size != 65536"
6709         [[ $stripe_count -eq $STRIPECOUNT ]] ||
6710                 error "stripe count $stripe_count != $STRIPECOUNT"
6711         rm -f $DIR/$tfile
6712 }
6713 run_test 102b "getfattr/setfattr for trusted.lov EAs ============"
6714
6715 test_102c() {
6716         [ -z "$(which setfattr 2>/dev/null)" ] &&
6717                 skip_env "could not find setfattr" && return
6718
6719         # b10930: get/set/list lustre.lov xattr
6720         echo "get/set/list lustre.lov xattr ..."
6721         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping 2-stripe test" && return
6722         test_mkdir -p $DIR/$tdir
6723         chown $RUNAS_ID $DIR/$tdir
6724         local testfile=$DIR/$tdir/$tfile
6725         $RUNAS $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
6726                 error "setstripe failed"
6727         local STRIPECOUNT=$($RUNAS $GETSTRIPE -c $testfile) ||
6728                 error "getstripe failed"
6729         $RUNAS getfattr -d -m "^lustre" $testfile 2> /dev/null | \
6730         grep "lustre.lov" || error "can't get lustre.lov from $testfile"
6731
6732         local testfile2=${testfile}2
6733         local value=`getfattr -n lustre.lov $testfile 2> /dev/null | \
6734                      grep "lustre.lov" |sed -e 's/[^=]\+=//'  `
6735
6736         $RUNAS $MCREATE $testfile2
6737         $RUNAS setfattr -n lustre.lov -v $value $testfile2
6738         local stripe_size=$($RUNAS $GETSTRIPE -S $testfile2)
6739         local stripe_count=$($RUNAS $GETSTRIPE -c $testfile2)
6740         [ $stripe_size -eq 65536 ] || error "stripe size $stripe_size != 65536"
6741         [ $stripe_count -eq $STRIPECOUNT ] ||
6742                 error "stripe count $stripe_count != $STRIPECOUNT"
6743 }
6744 run_test 102c "non-root getfattr/setfattr for lustre.lov EAs ==========="
6745
6746 compare_stripe_info1() {
6747         local stripe_index_all_zero=true
6748
6749         for num in 1 2 3 4; do
6750                 for count in $(seq 1 $STRIPE_COUNT); do
6751                         for offset in $(seq 0 $[$STRIPE_COUNT - 1]); do
6752                                 local size=$((STRIPE_SIZE * num))
6753                                 local file=file"$num-$offset-$count"
6754                                 stripe_size=$($LFS getstripe -S $PWD/$file)
6755                                 [[ $stripe_size -ne $size ]] &&
6756                                     error "$file: size $stripe_size != $size"
6757                                 stripe_count=$($LFS getstripe -c $PWD/$file)
6758                                 # allow fewer stripes to be created, ORI-601
6759                                 [[ $stripe_count -lt $(((3 * count + 3) / 4)) ]] &&
6760                                     error "$file: count $stripe_count != $count"
6761                                 stripe_index=$($LFS getstripe -i $PWD/$file)
6762                                 [[ $stripe_index -ne 0 ]] &&
6763                                         stripe_index_all_zero=false
6764                         done
6765                 done
6766         done
6767         $stripe_index_all_zero &&
6768                 error "all files are being extracted starting from OST index 0"
6769         return 0
6770 }
6771
6772 find_lustre_tar() {
6773         [ -n "$(which tar 2>/dev/null)" ] &&
6774                 strings $(which tar) | grep -q "lustre" && echo tar
6775 }
6776
6777 test_102d() {
6778         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6779         # b10930: tar test for trusted.lov xattr
6780         TAR=$(find_lustre_tar)
6781         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
6782         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping N-stripe test" && return
6783         setup_test102
6784         test_mkdir -p $DIR/d102d
6785         $TAR xf $TMP/f102.tar -C $DIR/d102d --xattrs
6786         cd $DIR/d102d/$tdir
6787         compare_stripe_info1
6788 }
6789 run_test 102d "tar restore stripe info from tarfile,not keep osts ==========="
6790
6791 test_102f() {
6792         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6793         # b10930: tar test for trusted.lov xattr
6794         TAR=$(find_lustre_tar)
6795         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
6796         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping N-stripe test" && return
6797         setup_test102
6798         test_mkdir -p $DIR/d102f
6799         cd $DIR
6800         $TAR cf - --xattrs $tdir | $TAR xf - --xattrs -C $DIR/d102f
6801         cd $DIR/d102f/$tdir
6802         compare_stripe_info1
6803 }
6804 run_test 102f "tar copy files, not keep osts ==========="
6805
6806 grow_xattr() {
6807         local xsize=${1:-1024}  # in bytes
6808         local file=$DIR/$tfile
6809
6810         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep xattr)" ] &&
6811                 skip "must have user_xattr" && return 0
6812         [ -z "$(which setfattr 2>/dev/null)" ] &&
6813                 skip_env "could not find setfattr" && return 0
6814         [ -z "$(which getfattr 2>/dev/null)" ] &&
6815                 skip_env "could not find getfattr" && return 0
6816
6817         touch $file
6818
6819         local value="$(generate_string $xsize)"
6820
6821         local xbig=trusted.big
6822         log "save $xbig on $file"
6823         setfattr -n $xbig -v $value $file ||
6824                 error "saving $xbig on $file failed"
6825
6826         local orig=$(get_xattr_value $xbig $file)
6827         [[ "$orig" != "$value" ]] && error "$xbig different after saving $xbig"
6828
6829         local xsml=trusted.sml
6830         log "save $xsml on $file"
6831         setfattr -n $xsml -v val $file || error "saving $xsml on $file failed"
6832
6833         local new=$(get_xattr_value $xbig $file)
6834         [[ "$new" != "$orig" ]] && error "$xbig different after saving $xsml"
6835
6836         log "grow $xsml on $file"
6837         setfattr -n $xsml -v "$value" $file ||
6838                 error "growing $xsml on $file failed"
6839
6840         new=$(get_xattr_value $xbig $file)
6841         [[ "$new" != "$orig" ]] && error "$xbig different after growing $xsml"
6842         log "$xbig still valid after growing $xsml"
6843
6844         rm -f $file
6845 }
6846
6847 test_102h() { # bug 15777
6848         grow_xattr 1024
6849 }
6850 run_test 102h "grow xattr from inside inode to external block"
6851
6852 test_102ha() {
6853         large_xattr_enabled || { skip "large_xattr disabled" && return; }
6854         grow_xattr $(max_xattr_size)
6855 }
6856 run_test 102ha "grow xattr from inside inode to external inode"
6857
6858 test_102i() { # bug 17038
6859         [ -z "$(which getfattr 2>/dev/null)" ] &&
6860                 skip "could not find getfattr" && return
6861         touch $DIR/$tfile
6862         ln -s $DIR/$tfile $DIR/${tfile}link
6863         getfattr -n trusted.lov $DIR/$tfile ||
6864                 error "lgetxattr on $DIR/$tfile failed"
6865         getfattr -h -n trusted.lov $DIR/${tfile}link 2>&1 |
6866                 grep -i "no such attr" ||
6867                 error "error for lgetxattr on $DIR/${tfile}link is not ENODATA"
6868         rm -f $DIR/$tfile $DIR/${tfile}link
6869 }
6870 run_test 102i "lgetxattr test on symbolic link ============"
6871
6872 test_102j() {
6873         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6874         TAR=$(find_lustre_tar)
6875         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
6876         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping N-stripe test" && return
6877         setup_test102 "$RUNAS"
6878         test_mkdir -p $DIR/d102j
6879         chown $RUNAS_ID $DIR/d102j
6880         $RUNAS $TAR xf $TMP/f102.tar -C $DIR/d102j --xattrs
6881         cd $DIR/d102j/$tdir
6882         compare_stripe_info1 "$RUNAS"
6883 }
6884 run_test 102j "non-root tar restore stripe info from tarfile, not keep osts ==="
6885
6886 test_102k() {
6887         [ -z "$(which setfattr 2>/dev/null)" ] &&
6888                 skip "could not find setfattr" && return
6889         touch $DIR/$tfile
6890         # b22187 just check that does not crash for regular file.
6891         setfattr -n trusted.lov $DIR/$tfile
6892         # b22187 'setfattr -n trusted.lov' should work as remove LOV EA for directories
6893         local test_kdir=$DIR/d102k
6894         test_mkdir $test_kdir
6895         local default_size=`$GETSTRIPE -S $test_kdir`
6896         local default_count=`$GETSTRIPE -c $test_kdir`
6897         local default_offset=`$GETSTRIPE -i $test_kdir`
6898         $SETSTRIPE -S 65536 -i 0 -c $OSTCOUNT $test_kdir ||
6899                 error 'dir setstripe failed'
6900         setfattr -n trusted.lov $test_kdir
6901         local stripe_size=`$GETSTRIPE -S $test_kdir`
6902         local stripe_count=`$GETSTRIPE -c $test_kdir`
6903         local stripe_offset=`$GETSTRIPE -i $test_kdir`
6904         [ $stripe_size -eq $default_size ] ||
6905                 error "stripe size $stripe_size != $default_size"
6906         [ $stripe_count -eq $default_count ] ||
6907                 error "stripe count $stripe_count != $default_count"
6908         [ $stripe_offset -eq $default_offset ] ||
6909                 error "stripe offset $stripe_offset != $default_offset"
6910         rm -rf $DIR/$tfile $test_kdir
6911 }
6912 run_test 102k "setfattr without parameter of value shouldn't cause a crash"
6913
6914 test_102l() {
6915         [ -z "$(which getfattr 2>/dev/null)" ] &&
6916                 skip "could not find getfattr" && return
6917
6918         # LU-532 trusted. xattr is invisible to non-root
6919         local testfile=$DIR/$tfile
6920
6921         touch $testfile
6922
6923         echo "listxattr as user..."
6924         chown $RUNAS_ID $testfile
6925         $RUNAS getfattr -d -m '.*' $testfile 2>&1 |
6926             grep -q "trusted" &&
6927                 error "$testfile trusted xattrs are user visible"
6928
6929         return 0;
6930 }
6931 run_test 102l "listxattr size test =================================="
6932
6933 test_102m() { # LU-3403 llite: error of listxattr when buffer is small
6934         local path=$DIR/$tfile
6935         touch $path
6936
6937         listxattr_size_check $path || error "listattr_size_check $path failed"
6938 }
6939 run_test 102m "Ensure listxattr fails on small bufffer ========"
6940
6941 cleanup_test102
6942
6943 getxattr() { # getxattr path name
6944         # Return the base64 encoding of the value of xattr name on path.
6945         local path=$1
6946         local name=$2
6947
6948         # # getfattr --absolute-names --encoding=base64 --name=trusted.lov $path
6949         # file: $path
6950         # trusted.lov=0s0AvRCwEAAAAGAAAAAAAAAAAEAAACAAAAAAAQAAEAA...AAAAAAAAA=
6951         #
6952         # We print just 0s0AvRCwEAAAAGAAAAAAAAAAAEAAACAAAAAAAQAAEAA...AAAAAAAAA=
6953
6954         getfattr --absolute-names --encoding=base64 --name=$name $path |
6955                 awk -F= -v name=$name '$1 == name {
6956                         print substr($0, index($0, "=") + 1);
6957         }'
6958 }
6959
6960 test_102n() { # LU-4101 mdt: protect internal xattrs
6961         local file0=$DIR/$tfile.0
6962         local file1=$DIR/$tfile.1
6963         local xattr0=$TMP/$tfile.0
6964         local xattr1=$TMP/$tfile.1
6965         local name
6966         local value
6967
6968         [ -z "$(which setfattr 2>/dev/null)" ] &&
6969                 skip "could not find setfattr" && return
6970
6971         if [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.50) ]
6972         then
6973                 skip "MDT < 2.5.50 allows setxattr on internal trusted xattrs"
6974                 return
6975         fi
6976
6977         rm -rf $file0 $file1 $xattr0 $xattr1
6978         touch $file0 $file1
6979
6980         # Get 'before' xattrs of $file1.
6981         getfattr --absolute-names --dump --match=- $file1 > $xattr0
6982
6983         for name in lov lma lmv link fid version som hsm lfsck_namespace; do
6984                 # Try to copy xattr from $file0 to $file1.
6985                 value=$(getxattr $file0 trusted.$name 2> /dev/null)
6986
6987                 setfattr --name=trusted.$name --value="$value" $file1 ||
6988                         error "setxattr 'trusted.$name' failed"
6989
6990                 # Try to set a garbage xattr.
6991                 value=0sVGhlIHF1aWNrIGJyb3duIGZveCBqdW1wcyBvdmVyIGl0c2VsZi4=
6992
6993                 setfattr --name=trusted.$name --value="$value" $file1 ||
6994                         error "setxattr 'trusted.$name' failed"
6995
6996                 # Try to remove the xattr from $file1. We don't care if this
6997                 # appears to succeed or fail, we just don't want there to be
6998                 # any changes or crashes.
6999                 setfattr --remove=$trusted.$name $file1 2> /dev/null
7000         done
7001
7002         if [ $(lustre_version_code $SINGLEMDS) -gt $(version_code 2.6.50) ]
7003         then
7004                 name="lfsck_ns"
7005                 # Try to copy xattr from $file0 to $file1.
7006                 value=$(getxattr $file0 trusted.$name 2> /dev/null)
7007
7008                 setfattr --name=trusted.$name --value="$value" $file1 ||
7009                         error "setxattr 'trusted.$name' failed"
7010
7011                 # Try to set a garbage xattr.
7012                 value=0sVGhlIHF1aWNrIGJyb3duIGZveCBqdW1wcyBvdmVyIGl0c2VsZi4=
7013
7014                 setfattr --name=trusted.$name --value="$value" $file1 ||
7015                         error "setxattr 'trusted.$name' failed"
7016
7017                 # Try to remove the xattr from $file1. We don't care if this
7018                 # appears to succeed or fail, we just don't want there to be
7019                 # any changes or crashes.
7020                 setfattr --remove=$trusted.$name $file1 2> /dev/null
7021         fi
7022
7023         # Get 'after' xattrs of file1.
7024         getfattr --absolute-names --dump --match=- $file1 > $xattr1
7025
7026         if ! diff $xattr0 $xattr1; then
7027                 error "before and after xattrs of '$file1' differ"
7028         fi
7029
7030         rm -rf $file0 $file1 $xattr0 $xattr1
7031
7032         return 0
7033 }
7034 run_test 102n "silently ignore setxattr on internal trusted xattrs"
7035
7036 test_102p() { # LU-4703 setxattr did not check ownership
7037         local testfile=$DIR/$tfile
7038
7039         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.56) ] &&
7040                 skip "MDS needs to be at least 2.5.56" && return
7041
7042         touch $testfile
7043
7044         echo "setfacl as user..."
7045         $RUNAS setfacl -m "u:$RUNAS_ID:rwx" $testfile
7046         [ $? -ne 0 ] || error "setfacl by $RUNAS_ID was allowed on $testfile"
7047
7048         echo "setfattr as user..."
7049         setfacl -m "u:$RUNAS_ID:---" $testfile
7050         $RUNAS setfattr -x system.posix_acl_access $testfile
7051         [ $? -ne 0 ] || error "setfattr by $RUNAS_ID was allowed on $testfile"
7052 }
7053 run_test 102p "check setxattr(2) correctly fails without permission"
7054
7055 test_102q() {
7056         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.92) ] &&
7057                 skip "MDS needs to be at least 2.6.92" && return
7058         orphan_linkea_check $DIR/$tfile || error "orphan_linkea_check"
7059 }
7060 run_test 102q "flistxattr should not return trusted.link EAs for orphans"
7061
7062 test_102r() {
7063         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.93) ] &&
7064                 skip "MDS needs to be at least 2.6.93" && return
7065         touch $DIR/$tfile || error "touch"
7066         setfattr -n user.$(basename $tfile) $DIR/$tfile || error "setfattr"
7067         getfattr -n user.$(basename $tfile) $DIR/$tfile || error "getfattr"
7068         rm $DIR/$tfile || error "rm"
7069
7070         #normal directory
7071         mkdir -p $DIR/$tdir || error "mkdir"
7072         setfattr -n user.$(basename $tdir) $DIR/$tdir || error "setfattr dir"
7073         getfattr -n user.$(basename $tdir) $DIR/$tdir || error "getfattr dir"
7074         setfattr -x user.$(basename $tdir) $DIR/$tdir ||
7075                 error "$testfile error deleting user.author1"
7076         getfattr -d -m user.$(basename $tdir) 2> /dev/null |
7077                 grep "user.$(basename $tdir)" &&
7078                 error "$tdir did not delete user.$(basename $tdir)"
7079         rmdir $DIR/$tdir || error "rmdir"
7080
7081         #striped directory
7082         test_mkdir -p $DIR/$tdir || error "make striped dir"
7083         setfattr -n user.$(basename $tdir) $DIR/$tdir || error "setfattr dir"
7084         getfattr -n user.$(basename $tdir) $DIR/$tdir || error "getfattr dir"
7085         setfattr -x user.$(basename $tdir) $DIR/$tdir ||
7086                 error "$testfile error deleting user.author1"
7087         getfattr -d -m user.$(basename $tdir) 2> /dev/null |
7088                 grep "user.$(basename $tdir)" &&
7089                 error "$tdir did not delete user.$(basename $tdir)"
7090         rmdir $DIR/$tdir || error "rm striped dir"
7091 }
7092 run_test 102r "set EAs with empty values"
7093
7094 run_acl_subtest()
7095 {
7096     $LUSTRE/tests/acl/run $LUSTRE/tests/acl/$1.test
7097     return $?
7098 }
7099
7100 test_103a() {
7101         [ "$UID" != 0 ] && skip_env "must run as root" && return
7102         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] &&
7103                 skip "must have acl enabled" && return
7104         [ -z "$(which setfacl 2>/dev/null)" ] &&
7105                 skip_env "could not find setfacl" && return
7106         $GSS && skip "could not run under gss" && return
7107
7108         gpasswd -a daemon bin                           # LU-5641
7109         do_facet $SINGLEMDS gpasswd -a daemon bin       # LU-5641
7110
7111         declare -a identity_old
7112
7113         for num in $(seq $MDSCOUNT); do
7114                 switch_identity $num true || identity_old[$num]=$?
7115         done
7116
7117         SAVE_UMASK=$(umask)
7118         umask 0022
7119         cd $DIR
7120
7121         echo "performing cp ..."
7122         run_acl_subtest cp || error "run_acl_subtest cp failed"
7123         echo "performing getfacl-noacl..."
7124         run_acl_subtest getfacl-noacl || error "getfacl-noacl test failed"
7125         echo "performing misc..."
7126         run_acl_subtest misc || error  "misc test failed"
7127         echo "performing permissions..."
7128         run_acl_subtest permissions || error "permissions failed"
7129         echo "performing setfacl..."
7130         run_acl_subtest setfacl || error  "setfacl test failed"
7131
7132         # inheritance test got from HP
7133         echo "performing inheritance..."
7134         cp $LUSTRE/tests/acl/make-tree . || error "cannot copy make-tree"
7135         chmod +x make-tree || error "chmod +x failed"
7136         run_acl_subtest inheritance || error "inheritance test failed"
7137         rm -f make-tree
7138
7139         echo "LU-974 ignore umask when acl is enabled..."
7140         run_acl_subtest 974 || error "LU-974 umask test failed"
7141         if [ $MDSCOUNT -ge 2 ]; then
7142                 run_acl_subtest 974_remote ||
7143                         error "LU-974 umask test failed under remote dir"
7144         fi
7145
7146         echo "LU-2561 newly created file is same size as directory..."
7147         if [ $(facet_fstype $SINGLEMDS) != "zfs" ]; then
7148                 run_acl_subtest 2561 || error "LU-2561 test failed"
7149         else
7150                 run_acl_subtest 2561_zfs || error "LU-2561 zfs test failed"
7151         fi
7152
7153         run_acl_subtest 4924 || error "LU-4924 test failed"
7154
7155         cd $SAVE_PWD
7156         umask $SAVE_UMASK
7157
7158         for num in $(seq $MDSCOUNT); do
7159                 if [ "${identity_old[$num]}" = 1 ]; then
7160                         switch_identity $num false || identity_old[$num]=$?
7161                 fi
7162         done
7163 }
7164 run_test 103a "acl test ========================================="
7165
7166 test_103b() {
7167         local noacl=false
7168         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
7169         local mountopts=$MDS_MOUNT_OPTS
7170
7171         if [[ "$MDS_MOUNT_OPTS" =~ "noacl" ]]; then
7172                 noacl=true
7173         else
7174                 # stop the MDT
7175                 stop $SINGLEMDS || error "failed to stop MDT."
7176                 # remount the MDT
7177                 if [ -z "$MDS_MOUNT_OPTS" ]; then
7178                         MDS_MOUNT_OPTS="-o noacl"
7179                 else
7180                         MDS_MOUNT_OPTS="${MDS_MOUNT_OPTS},noacl"
7181                 fi
7182                 start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS ||
7183                         error "failed to start MDT."
7184                 MDS_MOUNT_OPTS=$mountopts
7185         fi
7186
7187         touch $DIR/$tfile
7188         setfacl -m u:bin:rw $DIR/$tfile && error "setfacl should fail"
7189
7190         if ! $noacl; then
7191                 # stop the MDT
7192                 stop $SINGLEMDS || error "failed to stop MDT."
7193                 # remount the MDT
7194                 start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS ||
7195                         error "failed to start MDT."
7196         fi
7197
7198         true
7199 }
7200 run_test 103b "MDS mount option 'noacl'"
7201
7202 test_103c() {
7203         mkdir -p $DIR/$tdir
7204         cp -rp $DIR/$tdir $DIR/$tdir.bak
7205
7206         [ -n "$(getfattr -d -m. $DIR/$tdir | grep posix_acl_default)" ] &&
7207                 error "$DIR/$tdir shouldn't contain default ACL"
7208         [ -n "$(getfattr -d -m. $DIR/$tdir.bak | grep posix_acl_default)" ] &&
7209                 error "$DIR/$tdir.bak shouldn't contain default ACL"
7210         true
7211 }
7212 run_test 103c "'cp -rp' won't set empty acl"
7213
7214 test_104a() {
7215         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7216         touch $DIR/$tfile
7217         lfs df || error "lfs df failed"
7218         lfs df -ih || error "lfs df -ih failed"
7219         lfs df -h $DIR || error "lfs df -h $DIR failed"
7220         lfs df -i $DIR || error "lfs df -i $DIR failed"
7221         lfs df $DIR/$tfile || error "lfs df $DIR/$tfile failed"
7222         lfs df -ih $DIR/$tfile || error "lfs df -ih $DIR/$tfile failed"
7223
7224         local OSC=$(lctl dl | grep OST0000-osc-[^M] | awk '{ print $4 }')
7225         lctl --device %$OSC deactivate
7226         lfs df || error "lfs df with deactivated OSC failed"
7227         lctl --device %$OSC activate
7228         # wait the osc back to normal
7229         wait_osc_import_state client ost FULL
7230
7231         lfs df || error "lfs df with reactivated OSC failed"
7232         rm -f $DIR/$tfile
7233 }
7234 run_test 104a "lfs df [-ih] [path] test ========================="
7235
7236 test_104b() {
7237         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7238         [ $RUNAS_ID -eq $UID ] &&
7239                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
7240         chmod 666 /dev/obd
7241         denied_cnt=$(($($RUNAS $LFS check servers 2>&1 |
7242                         grep "Permission denied" | wc -l)))
7243         if [ $denied_cnt -ne 0 ]; then
7244                 error "lfs check servers test failed"
7245         fi
7246 }
7247 run_test 104b "$RUNAS lfs check servers test ===================="
7248
7249 test_105a() {
7250         # doesn't work on 2.4 kernels
7251         touch $DIR/$tfile
7252         if $(flock_is_enabled); then
7253                 flocks_test 1 on -f $DIR/$tfile || error "fail flock on"
7254         else
7255                 flocks_test 1 off -f $DIR/$tfile || error "fail flock off"
7256         fi
7257         rm -f $DIR/$tfile
7258 }
7259 run_test 105a "flock when mounted without -o flock test ========"
7260
7261 test_105b() {
7262         touch $DIR/$tfile
7263         if $(flock_is_enabled); then
7264                 flocks_test 1 on -c $DIR/$tfile || error "fail flock on"
7265         else
7266                 flocks_test 1 off -c $DIR/$tfile || error "fail flock off"
7267         fi
7268         rm -f $DIR/$tfile
7269 }
7270 run_test 105b "fcntl when mounted without -o flock test ========"
7271
7272 test_105c() {
7273         touch $DIR/$tfile
7274         if $(flock_is_enabled); then
7275                 flocks_test 1 on -l $DIR/$tfile || error "fail flock on"
7276         else
7277                 flocks_test 1 off -l $DIR/$tfile || error "fail flock off"
7278         fi
7279         rm -f $DIR/$tfile
7280 }
7281 run_test 105c "lockf when mounted without -o flock test ========"
7282
7283 test_105d() { # bug 15924
7284         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7285         test_mkdir -p $DIR/$tdir
7286         flock_is_enabled || { skip "mount w/o flock enabled" && return; }
7287         #define OBD_FAIL_LDLM_CP_CB_WAIT  0x315
7288         $LCTL set_param fail_loc=0x80000315
7289         flocks_test 2 $DIR/$tdir
7290 }
7291 run_test 105d "flock race (should not freeze) ========"
7292
7293 test_105e() { # bug 22660 && 22040
7294         flock_is_enabled || { skip "mount w/o flock enabled" && return; }
7295         touch $DIR/$tfile
7296         flocks_test 3 $DIR/$tfile
7297 }
7298 run_test 105e "Two conflicting flocks from same process ======="
7299
7300 test_106() { #bug 10921
7301         test_mkdir -p $DIR/$tdir
7302         $DIR/$tdir && error "exec $DIR/$tdir succeeded"
7303         chmod 777 $DIR/$tdir || error "chmod $DIR/$tdir failed"
7304 }
7305 run_test 106 "attempt exec of dir followed by chown of that dir"
7306
7307 test_107() {
7308         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7309         CDIR=`pwd`
7310         cd $DIR
7311
7312         local file=core
7313         rm -f $file
7314
7315         local save_pattern=$(sysctl -n kernel.core_pattern)
7316         local save_uses_pid=$(sysctl -n kernel.core_uses_pid)
7317         sysctl -w kernel.core_pattern=$file
7318         sysctl -w kernel.core_uses_pid=0
7319
7320         ulimit -c unlimited
7321         sleep 60 &
7322         SLEEPPID=$!
7323
7324         sleep 1
7325
7326         kill -s 11 $SLEEPPID
7327         wait $SLEEPPID
7328         if [ -e $file ]; then
7329                 size=`stat -c%s $file`
7330                 [ $size -eq 0 ] && error "Fail to create core file $file"
7331         else
7332                 error "Fail to create core file $file"
7333         fi
7334         rm -f $file
7335         sysctl -w kernel.core_pattern=$save_pattern
7336         sysctl -w kernel.core_uses_pid=$save_uses_pid
7337         cd $CDIR
7338 }
7339 run_test 107 "Coredump on SIG"
7340
7341 test_110() {
7342         test_mkdir -p $DIR/$tdir
7343         test_mkdir $DIR/$tdir/$(str_repeat 'a' 255) ||
7344                 error "mkdir with 255 char failed"
7345         test_mkdir $DIR/$tdir/$(str_repeat 'b' 256) &&
7346                 error "mkdir with 256 char should fail, but did not"
7347         touch $DIR/$tdir/$(str_repeat 'x' 255) ||
7348                 error "create with 255 char failed"
7349         touch $DIR/$tdir/$(str_repeat 'y' 256) &&
7350                 error "create with 256 char should fail, but did not"
7351
7352         ls -l $DIR/$tdir
7353         rm -rf $DIR/$tdir
7354 }
7355 run_test 110 "filename length checking"
7356
7357 test_115() {
7358         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7359         OSTIO_pre=$(ps -e | grep ll_ost_io | awk '{ print $4 }'| sort -n |
7360                 tail -1 | cut -c11-20)
7361         [ -z "$OSTIO_pre" ] && skip "no OSS threads" && return
7362         echo "Starting with $OSTIO_pre threads"
7363
7364         NUMTEST=20000
7365         NUMFREE=$(df -i -P $DIR | tail -n 1 | awk '{ print $4 }')
7366         [[ $NUMFREE -lt $NUMTEST ]] && NUMTEST=$(($NUMFREE - 1000))
7367         echo "$NUMTEST creates/unlinks"
7368         test_mkdir -p $DIR/$tdir
7369         createmany -o $DIR/$tdir/$tfile $NUMTEST
7370         unlinkmany $DIR/$tdir/$tfile $NUMTEST
7371
7372         OSTIO_post=$(ps -e | grep ll_ost_io | awk '{ print $4 }' | sort -n |
7373                 tail -1 | cut -c11-20)
7374
7375         # don't return an error
7376         [ $OSTIO_post == $OSTIO_pre ] && echo \
7377             "WARNING: No new ll_ost_io threads were created ($OSTIO_pre)" &&
7378             echo "This may be fine, depending on what ran before this test" &&
7379             echo "and how fast this system is." && return
7380
7381         echo "Started with $OSTIO_pre threads, ended with $OSTIO_post"
7382 }
7383 run_test 115 "verify dynamic thread creation===================="
7384
7385 free_min_max () {
7386         wait_delete_completed
7387         AVAIL=($(lctl get_param -n osc.*[oO][sS][cC]-[^M]*.kbytesavail))
7388         echo OST kbytes available: ${AVAIL[@]}
7389         MAXI=0; MAXV=${AVAIL[0]}
7390         MINI=0; MINV=${AVAIL[0]}
7391         for ((i = 0; i < ${#AVAIL[@]}; i++)); do
7392                 #echo OST $i: ${AVAIL[i]}kb
7393                 if [[ ${AVAIL[i]} -gt $MAXV ]]; then
7394                         MAXV=${AVAIL[i]}; MAXI=$i
7395                 fi
7396                 if [[ ${AVAIL[i]} -lt $MINV ]]; then
7397                         MINV=${AVAIL[i]}; MINI=$i
7398                 fi
7399         done
7400         echo Min free space: OST $MINI: $MINV
7401         echo Max free space: OST $MAXI: $MAXV
7402 }
7403
7404 test_116a() { # was previously test_116()
7405         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7406         remote_mds_nodsh && skip "remote MDS with nodsh" && return
7407
7408         [[ $OSTCOUNT -lt 2 ]] && skip_env "$OSTCOUNT < 2 OSTs" && return
7409
7410         echo -n "Free space priority "
7411         do_facet $SINGLEMDS lctl get_param -n lo*.*-mdtlov.qos_prio_free |
7412                 head -n1
7413         declare -a AVAIL
7414         free_min_max
7415
7416         [ $MINV -eq 0 ] && skip "no free space in OST$MINI, skip" && return
7417         [ $MINV -gt 10000000 ] && skip "too much free space in OST$MINI, skip" \
7418                 && return
7419         trap simple_cleanup_common EXIT
7420
7421
7422         # Check if we need to generate uneven OSTs
7423         test_mkdir -p $DIR/$tdir/OST${MINI}
7424         local FILL=$(($MINV / 4))
7425         local DIFF=$(($MAXV - $MINV))
7426         local DIFF2=$(($DIFF * 100 / $MINV))
7427
7428         local threshold=$(do_facet $SINGLEMDS \
7429                 lctl get_param -n *.*MDT0000-mdtlov.qos_threshold_rr | head -n1)
7430         threshold=${threshold%%%}
7431         echo -n "Check for uneven OSTs: "
7432         echo -n "diff=${DIFF}KB (${DIFF2}%) must be > ${threshold}% ..."
7433
7434         if [[ $DIFF2 -gt $threshold ]]; then
7435                 echo "ok"
7436                 echo "Don't need to fill OST$MINI"
7437         else
7438                 # generate uneven OSTs. Write 2% over the QOS threshold value
7439                 echo "no"
7440                 DIFF=$(($threshold - $DIFF2 + 2))
7441                 DIFF2=$(( ($MINV * $DIFF)/100 ))
7442                 echo "Fill ${DIFF}% remaining space in OST${MINI} with ${DIFF2}KB"
7443                 $SETSTRIPE -i $MINI -c 1 $DIR/$tdir/OST${MINI} ||
7444                         error "setstripe failed"
7445                 DIFF=$(($DIFF2 / 2048))
7446                 i=0
7447                 while [ $i -lt $DIFF ]; do
7448                         i=$(($i + 1))
7449                         dd if=/dev/zero of=$DIR/$tdir/OST${MINI}/$tfile-$i \
7450                                 bs=2M count=1 2>/dev/null
7451                         echo -n .
7452                 done
7453                 echo .
7454                 sync
7455                 sleep_maxage
7456                 free_min_max
7457         fi
7458
7459         DIFF=$(($MAXV - $MINV))
7460         DIFF2=$(($DIFF * 100 / $MINV))
7461         echo -n "diff=${DIFF}=${DIFF2}% must be > ${threshold}% for QOS mode..."
7462         if [[ $DIFF2 -gt $threshold ]]; then
7463                 echo "ok"
7464         else
7465                 echo "failed - QOS mode won't be used"
7466                 skip "QOS imbalance criteria not met"
7467                 simple_cleanup_common
7468                 return
7469         fi
7470
7471         MINI1=$MINI; MINV1=$MINV
7472         MAXI1=$MAXI; MAXV1=$MAXV
7473
7474         # now fill using QOS
7475         $SETSTRIPE -c 1 $DIR/$tdir
7476         FILL=$(($FILL / 200))
7477         if [ $FILL -gt 600 ]; then
7478                 FILL=600
7479         fi
7480         echo "writing $FILL files to QOS-assigned OSTs"
7481         i=0
7482         while [ $i -lt $FILL ]; do
7483                 i=$((i + 1))
7484                 dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=200k \
7485                         count=1 2>/dev/null
7486                 echo -n .
7487         done
7488         echo "wrote $i 200k files"
7489         sync
7490         sleep_maxage
7491
7492         echo "Note: free space may not be updated, so measurements might be off"
7493         free_min_max
7494         DIFF2=$(($MAXV - $MINV))
7495         echo "free space delta: orig $DIFF final $DIFF2"
7496         [ $DIFF2 -gt $DIFF ] && echo "delta got worse!"
7497         DIFF=$(($MINV1 - ${AVAIL[$MINI1]}))
7498         echo "Wrote ${DIFF}KB to smaller OST $MINI1"
7499         DIFF2=$(($MAXV1 - ${AVAIL[$MAXI1]}))
7500         echo "Wrote ${DIFF2}KB to larger OST $MAXI1"
7501         FILL=$(($DIFF2 * 100 / $DIFF - 100))
7502         [ $DIFF -gt 0 ] &&
7503                 echo "Wrote ${FILL}% more data to larger OST $MAXI1"
7504
7505         # Figure out which files were written where
7506         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
7507                   awk '/'$MINI1': / {print $2; exit}')
7508         echo $UUID
7509         MINC=$($GETSTRIPE --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
7510         echo "$MINC files created on smaller OST $MINI1"
7511         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
7512                   awk '/'$MAXI1': / {print $2; exit}')
7513         echo $UUID
7514         MAXC=$($GETSTRIPE --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
7515         echo "$MAXC files created on larger OST $MAXI1"
7516         FILL=$(($MAXC * 100 / $MINC - 100))
7517         [[ $MINC -gt 0 ]] &&
7518                 echo "Wrote ${FILL}% more files to larger OST $MAXI1"
7519         [[ $MAXC -gt $MINC ]] ||
7520                 error_ignore LU-9 "stripe QOS didn't balance free space"
7521         simple_cleanup_common
7522 }
7523 run_test 116a "stripe QOS: free space balance ==================="
7524
7525 test_116b() { # LU-2093
7526         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7527         remote_mds_nodsh && skip "remote MDS with nodsh" && return
7528
7529 #define OBD_FAIL_MDS_OSC_CREATE_FAIL     0x147
7530         local old_rr=$(do_facet $SINGLEMDS lctl get_param -n \
7531                        lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr | head -1)
7532         [ -z "$old_rr" ] && skip "no QOS" && return 0
7533         do_facet $SINGLEMDS lctl set_param \
7534                 lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr=0
7535         mkdir -p $DIR/$tdir
7536         do_facet $SINGLEMDS lctl set_param fail_loc=0x147
7537         createmany -o $DIR/$tdir/f- 20 || error "can't create"
7538         do_facet $SINGLEMDS lctl set_param fail_loc=0
7539         rm -rf $DIR/$tdir
7540         do_facet $SINGLEMDS lctl set_param \
7541                 lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr=$old_rr
7542 }
7543 run_test 116b "QoS shouldn't LBUG if not enough OSTs found on the 2nd pass"
7544
7545 test_117() # bug 10891
7546 {
7547         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7548         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1
7549         #define OBD_FAIL_OST_SETATTR_CREDITS 0x21e
7550         lctl set_param fail_loc=0x21e
7551         > $DIR/$tfile || error "truncate failed"
7552         lctl set_param fail_loc=0
7553         echo "Truncate succeeded."
7554         rm -f $DIR/$tfile
7555 }
7556 run_test 117 "verify osd extend =========="
7557
7558 NO_SLOW_RESENDCOUNT=4
7559 export OLD_RESENDCOUNT=""
7560 set_resend_count () {
7561         local PROC_RESENDCOUNT="osc.${FSNAME}-OST*-osc-*.resend_count"
7562         OLD_RESENDCOUNT=$(lctl get_param -n $PROC_RESENDCOUNT | head -n1)
7563         lctl set_param -n $PROC_RESENDCOUNT $1
7564         echo resend_count is set to $(lctl get_param -n $PROC_RESENDCOUNT)
7565 }
7566
7567 # for reduce test_118* time (b=14842)
7568 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
7569
7570 # Reset async IO behavior after error case
7571 reset_async() {
7572         FILE=$DIR/reset_async
7573
7574         # Ensure all OSCs are cleared
7575         $SETSTRIPE -c -1 $FILE
7576         dd if=/dev/zero of=$FILE bs=64k count=$OSTCOUNT
7577         sync
7578         rm $FILE
7579 }
7580
7581 test_118a() #bug 11710
7582 {
7583         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7584         reset_async
7585
7586         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7587         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7588         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
7589
7590         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7591                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7592                 return 1;
7593         fi
7594         rm -f $DIR/$tfile
7595 }
7596 run_test 118a "verify O_SYNC works =========="
7597
7598 test_118b()
7599 {
7600         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7601         remote_ost_nodsh && skip "remote OST with nodsh" && return
7602
7603         reset_async
7604
7605         #define OBD_FAIL_SRV_ENOENT 0x217
7606         set_nodes_failloc "$(osts_nodes)" 0x217
7607         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7608         RC=$?
7609         set_nodes_failloc "$(osts_nodes)" 0
7610         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7611         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7612                     grep -c writeback)
7613
7614         if [[ $RC -eq 0 ]]; then
7615                 error "Must return error due to dropped pages, rc=$RC"
7616                 return 1;
7617         fi
7618
7619         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7620                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7621                 return 1;
7622         fi
7623
7624         echo "Dirty pages not leaked on ENOENT"
7625
7626         # Due to the above error the OSC will issue all RPCs syncronously
7627         # until a subsequent RPC completes successfully without error.
7628         $MULTIOP $DIR/$tfile Ow4096yc
7629         rm -f $DIR/$tfile
7630
7631         return 0
7632 }
7633 run_test 118b "Reclaim dirty pages on fatal error =========="
7634
7635 test_118c()
7636 {
7637         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7638
7639         # for 118c, restore the original resend count, LU-1940
7640         [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] &&
7641                                 set_resend_count $OLD_RESENDCOUNT
7642         remote_ost_nodsh && skip "remote OST with nodsh" && return
7643
7644         reset_async
7645
7646         #define OBD_FAIL_OST_EROFS               0x216
7647         set_nodes_failloc "$(osts_nodes)" 0x216
7648
7649         # multiop should block due to fsync until pages are written
7650         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
7651         MULTIPID=$!
7652         sleep 1
7653
7654         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
7655                 error "Multiop failed to block on fsync, pid=$MULTIPID"
7656         fi
7657
7658         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7659                     grep -c writeback)
7660         if [[ $WRITEBACK -eq 0 ]]; then
7661                 error "No page in writeback, writeback=$WRITEBACK"
7662         fi
7663
7664         set_nodes_failloc "$(osts_nodes)" 0
7665         wait $MULTIPID
7666         RC=$?
7667         if [[ $RC -ne 0 ]]; then
7668                 error "Multiop fsync failed, rc=$RC"
7669         fi
7670
7671         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7672         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7673                     grep -c writeback)
7674         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7675                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7676         fi
7677
7678         rm -f $DIR/$tfile
7679         echo "Dirty pages flushed via fsync on EROFS"
7680         return 0
7681 }
7682 run_test 118c "Fsync blocks on EROFS until dirty pages are flushed =========="
7683
7684 # continue to use small resend count to reduce test_118* time (b=14842)
7685 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
7686
7687 test_118d()
7688 {
7689         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7690         remote_ost_nodsh && skip "remote OST with nodsh" && return
7691
7692         reset_async
7693
7694         #define OBD_FAIL_OST_BRW_PAUSE_BULK
7695         set_nodes_failloc "$(osts_nodes)" 0x214
7696         # multiop should block due to fsync until pages are written
7697         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
7698         MULTIPID=$!
7699         sleep 1
7700
7701         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
7702                 error "Multiop failed to block on fsync, pid=$MULTIPID"
7703         fi
7704
7705         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7706                     grep -c writeback)
7707         if [[ $WRITEBACK -eq 0 ]]; then
7708                 error "No page in writeback, writeback=$WRITEBACK"
7709         fi
7710
7711         wait $MULTIPID || error "Multiop fsync failed, rc=$?"
7712         set_nodes_failloc "$(osts_nodes)" 0
7713
7714         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7715         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7716                     grep -c writeback)
7717         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7718                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7719         fi
7720
7721         rm -f $DIR/$tfile
7722         echo "Dirty pages gaurenteed flushed via fsync"
7723         return 0
7724 }
7725 run_test 118d "Fsync validation inject a delay of the bulk =========="
7726
7727 test_118f() {
7728         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7729         reset_async
7730
7731         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
7732         lctl set_param fail_loc=0x8000040a
7733
7734         # Should simulate EINVAL error which is fatal
7735         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7736         RC=$?
7737         if [[ $RC -eq 0 ]]; then
7738                 error "Must return error due to dropped pages, rc=$RC"
7739         fi
7740
7741         lctl set_param fail_loc=0x0
7742
7743         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
7744         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7745         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7746                     grep -c writeback)
7747         if [[ $LOCKED -ne 0 ]]; then
7748                 error "Locked pages remain in cache, locked=$LOCKED"
7749         fi
7750
7751         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7752                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7753         fi
7754
7755         rm -f $DIR/$tfile
7756         echo "No pages locked after fsync"
7757
7758         reset_async
7759         return 0
7760 }
7761 run_test 118f "Simulate unrecoverable OSC side error =========="
7762
7763 test_118g() {
7764         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7765         reset_async
7766
7767         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
7768         lctl set_param fail_loc=0x406
7769
7770         # simulate local -ENOMEM
7771         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7772         RC=$?
7773
7774         lctl set_param fail_loc=0
7775         if [[ $RC -eq 0 ]]; then
7776                 error "Must return error due to dropped pages, rc=$RC"
7777         fi
7778
7779         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
7780         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7781         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7782                         grep -c writeback)
7783         if [[ $LOCKED -ne 0 ]]; then
7784                 error "Locked pages remain in cache, locked=$LOCKED"
7785         fi
7786
7787         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7788                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7789         fi
7790
7791         rm -f $DIR/$tfile
7792         echo "No pages locked after fsync"
7793
7794         reset_async
7795         return 0
7796 }
7797 run_test 118g "Don't stay in wait if we got local -ENOMEM  =========="
7798
7799 test_118h() {
7800         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7801         remote_ost_nodsh && skip "remote OST with nodsh" && return
7802
7803         reset_async
7804
7805         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
7806         set_nodes_failloc "$(osts_nodes)" 0x20e
7807         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
7808         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7809         RC=$?
7810
7811         set_nodes_failloc "$(osts_nodes)" 0
7812         if [[ $RC -eq 0 ]]; then
7813                 error "Must return error due to dropped pages, rc=$RC"
7814         fi
7815
7816         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
7817         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7818         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7819                     grep -c writeback)
7820         if [[ $LOCKED -ne 0 ]]; then
7821                 error "Locked pages remain in cache, locked=$LOCKED"
7822         fi
7823
7824         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7825                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7826         fi
7827
7828         rm -f $DIR/$tfile
7829         echo "No pages locked after fsync"
7830
7831         return 0
7832 }
7833 run_test 118h "Verify timeout in handling recoverables errors  =========="
7834
7835 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
7836
7837 test_118i() {
7838         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7839         remote_ost_nodsh && skip "remote OST with nodsh" && return
7840
7841         reset_async
7842
7843         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
7844         set_nodes_failloc "$(osts_nodes)" 0x20e
7845
7846         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
7847         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
7848         PID=$!
7849         sleep 5
7850         set_nodes_failloc "$(osts_nodes)" 0
7851
7852         wait $PID
7853         RC=$?
7854         if [[ $RC -ne 0 ]]; then
7855                 error "got error, but should be not, rc=$RC"
7856         fi
7857
7858         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
7859         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7860         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
7861         if [[ $LOCKED -ne 0 ]]; then
7862                 error "Locked pages remain in cache, locked=$LOCKED"
7863         fi
7864
7865         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7866                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7867         fi
7868
7869         rm -f $DIR/$tfile
7870         echo "No pages locked after fsync"
7871
7872         return 0
7873 }
7874 run_test 118i "Fix error before timeout in recoverable error  =========="
7875
7876 [ "$SLOW" = "no" ] && set_resend_count 4
7877
7878 test_118j() {
7879         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7880         remote_ost_nodsh && skip "remote OST with nodsh" && return
7881
7882         reset_async
7883
7884         #define OBD_FAIL_OST_BRW_WRITE_BULK2     0x220
7885         set_nodes_failloc "$(osts_nodes)" 0x220
7886
7887         # return -EIO from OST
7888         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7889         RC=$?
7890         set_nodes_failloc "$(osts_nodes)" 0x0
7891         if [[ $RC -eq 0 ]]; then
7892                 error "Must return error due to dropped pages, rc=$RC"
7893         fi
7894
7895         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
7896         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7897         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
7898         if [[ $LOCKED -ne 0 ]]; then
7899                 error "Locked pages remain in cache, locked=$LOCKED"
7900         fi
7901
7902         # in recoverable error on OST we want resend and stay until it finished
7903         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7904                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7905         fi
7906
7907         rm -f $DIR/$tfile
7908         echo "No pages locked after fsync"
7909
7910         return 0
7911 }
7912 run_test 118j "Simulate unrecoverable OST side error =========="
7913
7914 test_118k()
7915 {
7916         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7917         remote_ost_nodsh && skip "remote OSTs with nodsh" && return
7918
7919         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
7920         set_nodes_failloc "$(osts_nodes)" 0x20e
7921         test_mkdir -p $DIR/$tdir
7922
7923         for ((i=0;i<10;i++)); do
7924                 (dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=1M count=10 || \
7925                         error "dd to $DIR/$tdir/$tfile-$i failed" )&
7926                 SLEEPPID=$!
7927                 sleep 0.500s
7928                 kill $SLEEPPID
7929                 wait $SLEEPPID
7930         done
7931
7932         set_nodes_failloc "$(osts_nodes)" 0
7933         rm -rf $DIR/$tdir
7934 }
7935 run_test 118k "bio alloc -ENOMEM and IO TERM handling ========="
7936
7937 test_118l()
7938 {
7939         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7940         # LU-646
7941         test_mkdir -p $DIR/$tdir
7942         $MULTIOP $DIR/$tdir Dy || error "fsync dir failed"
7943         rm -rf $DIR/$tdir
7944 }
7945 run_test 118l "fsync dir ========="
7946
7947 test_118m() # LU-3066
7948 {
7949         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7950         test_mkdir -p $DIR/$tdir
7951         $MULTIOP $DIR/$tdir DY || error "fdatasync dir failed"
7952         rm -rf $DIR/$tdir
7953 }
7954 run_test 118m "fdatasync dir ========="
7955
7956 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
7957
7958 test_119a() # bug 11737
7959 {
7960         BSIZE=$((512 * 1024))
7961         directio write $DIR/$tfile 0 1 $BSIZE
7962         # We ask to read two blocks, which is more than a file size.
7963         # directio will indicate an error when requested and actual
7964         # sizes aren't equeal (a normal situation in this case) and
7965         # print actual read amount.
7966         NOB=`directio read $DIR/$tfile 0 2 $BSIZE | awk '/error/ {print $6}'`
7967         if [ "$NOB" != "$BSIZE" ]; then
7968                 error "read $NOB bytes instead of $BSIZE"
7969         fi
7970         rm -f $DIR/$tfile
7971 }
7972 run_test 119a "Short directIO read must return actual read amount"
7973
7974 test_119b() # bug 11737
7975 {
7976         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
7977
7978         $SETSTRIPE -c 2 $DIR/$tfile || error "setstripe failed"
7979         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1 || error "dd failed"
7980         sync
7981         $MULTIOP $DIR/$tfile oO_RDONLY:O_DIRECT:r$((2048 * 1024)) || \
7982                 error "direct read failed"
7983         rm -f $DIR/$tfile
7984 }
7985 run_test 119b "Sparse directIO read must return actual read amount"
7986
7987 test_119c() # bug 13099
7988 {
7989         BSIZE=1048576
7990         directio write $DIR/$tfile 3 1 $BSIZE || error "direct write failed"
7991         directio readhole $DIR/$tfile 0 2 $BSIZE || error "reading hole failed"
7992         rm -f $DIR/$tfile
7993 }
7994 run_test 119c "Testing for direct read hitting hole"
7995
7996 test_119d() # bug 15950
7997 {
7998         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7999         MAX_RPCS_IN_FLIGHT=`$LCTL get_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight`
8000         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight 1
8001         BSIZE=1048576
8002         $SETSTRIPE $DIR/$tfile -i 0 -c 1 || error "setstripe failed"
8003         $DIRECTIO write $DIR/$tfile 0 1 $BSIZE || error "first directio failed"
8004         #define OBD_FAIL_OSC_DIO_PAUSE           0x40d
8005         lctl set_param fail_loc=0x40d
8006         $DIRECTIO write $DIR/$tfile 1 4 $BSIZE &
8007         pid_dio=$!
8008         sleep 1
8009         cat $DIR/$tfile > /dev/null &
8010         lctl set_param fail_loc=0
8011         pid_reads=$!
8012         wait $pid_dio
8013         log "the DIO writes have completed, now wait for the reads (should not block very long)"
8014         sleep 2
8015         [ -n "`ps h -p $pid_reads -o comm`" ] && \
8016         error "the read rpcs have not completed in 2s"
8017         rm -f $DIR/$tfile
8018         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight $MAX_RPCS_IN_FLIGHT
8019 }
8020 run_test 119d "The DIO path should try to send a new rpc once one is completed"
8021
8022 test_120a() {
8023         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8024         test_mkdir -p $DIR/$tdir
8025         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
8026                skip "no early lock cancel on server" && return 0
8027
8028         lru_resize_disable mdc
8029         lru_resize_disable osc
8030         cancel_lru_locks mdc
8031         # asynchronous object destroy at MDT could cause bl ast to client
8032         cancel_lru_locks osc
8033
8034         stat $DIR/$tdir > /dev/null
8035         can1=$(do_facet $SINGLEMDS \
8036                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8037                awk '/ldlm_cancel/ {print $2}')
8038         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8039                awk '/ldlm_bl_callback/ {print $2}')
8040         test_mkdir -c1 $DIR/$tdir/d1
8041         can2=$(do_facet $SINGLEMDS \
8042                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8043                awk '/ldlm_cancel/ {print $2}')
8044         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8045                awk '/ldlm_bl_callback/ {print $2}')
8046         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
8047         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
8048         lru_resize_enable mdc
8049         lru_resize_enable osc
8050 }
8051 run_test 120a "Early Lock Cancel: mkdir test"
8052
8053 test_120b() {
8054         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8055         test_mkdir $DIR/$tdir
8056         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel)" ] && \
8057                skip "no early lock cancel on server" && return 0
8058         lru_resize_disable mdc
8059         lru_resize_disable osc
8060         cancel_lru_locks mdc
8061         stat $DIR/$tdir > /dev/null
8062         can1=$(do_facet $SINGLEMDS \
8063                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8064                awk '/ldlm_cancel/ {print $2}')
8065         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8066                awk '/ldlm_bl_callback/ {print $2}')
8067         touch $DIR/$tdir/f1
8068         can2=$(do_facet $SINGLEMDS \
8069                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8070                awk '/ldlm_cancel/ {print $2}')
8071         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8072                awk '/ldlm_bl_callback/ {print $2}')
8073         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
8074         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
8075         lru_resize_enable mdc
8076         lru_resize_enable osc
8077 }
8078 run_test 120b "Early Lock Cancel: create test"
8079
8080 test_120c() {
8081         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8082         test_mkdir -c1 $DIR/$tdir
8083         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel)" ] && \
8084                skip "no early lock cancel on server" && return 0
8085         lru_resize_disable mdc
8086         lru_resize_disable osc
8087         test_mkdir -p -c1 $DIR/$tdir/d1
8088         test_mkdir -p -c1 $DIR/$tdir/d2
8089         touch $DIR/$tdir/d1/f1
8090         cancel_lru_locks mdc
8091         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 > /dev/null
8092         can1=$(do_facet $SINGLEMDS \
8093                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8094                awk '/ldlm_cancel/ {print $2}')
8095         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8096                awk '/ldlm_bl_callback/ {print $2}')
8097         ln $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
8098         can2=$(do_facet $SINGLEMDS \
8099                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8100                awk '/ldlm_cancel/ {print $2}')
8101         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8102                awk '/ldlm_bl_callback/ {print $2}')
8103         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
8104         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
8105         lru_resize_enable mdc
8106         lru_resize_enable osc
8107 }
8108 run_test 120c "Early Lock Cancel: link test"
8109
8110 test_120d() {
8111         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8112         test_mkdir -p -c1 $DIR/$tdir
8113         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel)" ] && \
8114                skip "no early lock cancel on server" && return 0
8115         lru_resize_disable mdc
8116         lru_resize_disable osc
8117         touch $DIR/$tdir
8118         cancel_lru_locks mdc
8119         stat $DIR/$tdir > /dev/null
8120         can1=$(do_facet $SINGLEMDS \
8121                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8122                awk '/ldlm_cancel/ {print $2}')
8123         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8124                awk '/ldlm_bl_callback/ {print $2}')
8125         chmod a+x $DIR/$tdir
8126         can2=$(do_facet $SINGLEMDS \
8127                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8128                awk '/ldlm_cancel/ {print $2}')
8129         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8130                awk '/ldlm_bl_callback/ {print $2}')
8131         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
8132         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
8133         lru_resize_enable mdc
8134         lru_resize_enable osc
8135 }
8136 run_test 120d "Early Lock Cancel: setattr test"
8137
8138 test_120e() {
8139         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8140         test_mkdir -p -c1 $DIR/$tdir
8141         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
8142                skip "no early lock cancel on server" && return 0
8143         lru_resize_disable mdc
8144         lru_resize_disable osc
8145         dd if=/dev/zero of=$DIR/$tdir/f1 count=1
8146         cancel_lru_locks mdc
8147         cancel_lru_locks osc
8148         dd if=$DIR/$tdir/f1 of=/dev/null
8149         stat $DIR/$tdir $DIR/$tdir/f1 > /dev/null
8150         # XXX client can not do early lock cancel of OST lock
8151         # during unlink (LU-4206), so cancel osc lock now.
8152         cancel_lru_locks osc
8153         can1=$(do_facet $SINGLEMDS \
8154                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8155                awk '/ldlm_cancel/ {print $2}')
8156         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8157                awk '/ldlm_bl_callback/ {print $2}')
8158         unlink $DIR/$tdir/f1
8159         sleep 5
8160         can2=$(do_facet $SINGLEMDS \
8161                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8162                awk '/ldlm_cancel/ {print $2}')
8163         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8164                awk '/ldlm_bl_callback/ {print $2}')
8165         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
8166         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
8167         lru_resize_enable mdc
8168         lru_resize_enable osc
8169 }
8170 run_test 120e "Early Lock Cancel: unlink test"
8171
8172 test_120f() {
8173         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8174         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
8175                skip "no early lock cancel on server" && return 0
8176         test_mkdir -p -c1 $DIR/$tdir
8177         lru_resize_disable mdc
8178         lru_resize_disable osc
8179         test_mkdir -p -c1 $DIR/$tdir/d1
8180         test_mkdir -p -c1 $DIR/$tdir/d2
8181         dd if=/dev/zero of=$DIR/$tdir/d1/f1 count=1
8182         dd if=/dev/zero of=$DIR/$tdir/d2/f2 count=1
8183         cancel_lru_locks mdc
8184         cancel_lru_locks osc
8185         dd if=$DIR/$tdir/d1/f1 of=/dev/null
8186         dd if=$DIR/$tdir/d2/f2 of=/dev/null
8187         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2 > /dev/null
8188         # XXX client can not do early lock cancel of OST lock
8189         # during rename (LU-4206), so cancel osc lock now.
8190         cancel_lru_locks osc
8191         can1=$(do_facet $SINGLEMDS \
8192                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8193                awk '/ldlm_cancel/ {print $2}')
8194         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8195                awk '/ldlm_bl_callback/ {print $2}')
8196         mrename $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
8197         sleep 5
8198         can2=$(do_facet $SINGLEMDS \
8199                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8200                awk '/ldlm_cancel/ {print $2}')
8201         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8202                awk '/ldlm_bl_callback/ {print $2}')
8203         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
8204         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
8205         lru_resize_enable mdc
8206         lru_resize_enable osc
8207 }
8208 run_test 120f "Early Lock Cancel: rename test"
8209
8210 test_120g() {
8211         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8212         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
8213                skip "no early lock cancel on server" && return 0
8214         lru_resize_disable mdc
8215         lru_resize_disable osc
8216         count=10000
8217         echo create $count files
8218         test_mkdir -p $DIR/$tdir
8219         cancel_lru_locks mdc
8220         cancel_lru_locks osc
8221         t0=`date +%s`
8222
8223         can0=$(do_facet $SINGLEMDS \
8224                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8225                awk '/ldlm_cancel/ {print $2}')
8226         blk0=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8227                awk '/ldlm_bl_callback/ {print $2}')
8228         createmany -o $DIR/$tdir/f $count
8229         sync
8230         can1=$(do_facet $SINGLEMDS \
8231                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8232                awk '/ldlm_cancel/ {print $2}')
8233         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8234                awk '/ldlm_bl_callback/ {print $2}')
8235         t1=$(date +%s)
8236         echo total: $((can1-can0)) cancels, $((blk1-blk0)) blockings
8237         echo rm $count files
8238         rm -r $DIR/$tdir
8239         sync
8240         can2=$(do_facet $SINGLEMDS \
8241                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8242                awk '/ldlm_cancel/ {print $2}')
8243         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8244                awk '/ldlm_bl_callback/ {print $2}')
8245         t2=$(date +%s)
8246         echo total: $count removes in $((t2-t1))
8247         echo total: $((can2-can1)) cancels, $((blk2-blk1)) blockings
8248         sleep 2
8249         # wait for commitment of removal
8250         lru_resize_enable mdc
8251         lru_resize_enable osc
8252 }
8253 run_test 120g "Early Lock Cancel: performance test"
8254
8255 test_121() { #bug #10589
8256         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8257         rm -rf $DIR/$tfile
8258         writes=$(LANG=C dd if=/dev/zero of=$DIR/$tfile count=1 2>&1 | awk -F '+' '/out$/ {print $1}')
8259 #define OBD_FAIL_LDLM_CANCEL_RACE        0x310
8260         lctl set_param fail_loc=0x310
8261         cancel_lru_locks osc > /dev/null
8262         reads=$(LANG=C dd if=$DIR/$tfile of=/dev/null 2>&1 | awk -F '+' '/in$/ {print $1}')
8263         lctl set_param fail_loc=0
8264         [[ $reads -eq $writes ]] ||
8265                 error "read $reads blocks, must be $writes blocks"
8266 }
8267 run_test 121 "read cancel race ========="
8268
8269 test_123a() { # was test 123, statahead(bug 11401)
8270         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8271         SLOWOK=0
8272         if [ -z "$(grep "processor.*: 1" /proc/cpuinfo)" ]; then
8273             log "testing on UP system. Performance may be not as good as expected."
8274                         SLOWOK=1
8275         fi
8276
8277         rm -rf $DIR/$tdir
8278         test_mkdir -p $DIR/$tdir
8279         NUMFREE=$(df -i -P $DIR | tail -n 1 | awk '{ print $4 }')
8280         [[ $NUMFREE -gt 100000 ]] && NUMFREE=100000 || NUMFREE=$((NUMFREE-1000))
8281         MULT=10
8282         for ((i=100, j=0; i<=$NUMFREE; j=$i, i=$((i * MULT)) )); do
8283                 createmany -o $DIR/$tdir/$tfile $j $((i - j))
8284
8285                 max=`lctl get_param -n llite.*.statahead_max | head -n 1`
8286                 lctl set_param -n llite.*.statahead_max 0
8287                 lctl get_param llite.*.statahead_max
8288                 cancel_lru_locks mdc
8289                 cancel_lru_locks osc
8290                 stime=`date +%s`
8291                 time ls -l $DIR/$tdir | wc -l
8292                 etime=`date +%s`
8293                 delta=$((etime - stime))
8294                 log "ls $i files without statahead: $delta sec"
8295                 lctl set_param llite.*.statahead_max=$max
8296
8297                 swrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
8298                 lctl get_param -n llite.*.statahead_max | grep '[0-9]'
8299                 cancel_lru_locks mdc
8300                 cancel_lru_locks osc
8301                 stime=`date +%s`
8302                 time ls -l $DIR/$tdir | wc -l
8303                 etime=`date +%s`
8304                 delta_sa=$((etime - stime))
8305                 log "ls $i files with statahead: $delta_sa sec"
8306                 lctl get_param -n llite.*.statahead_stats
8307                 ewrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
8308
8309                 [[ $swrong -lt $ewrong ]] &&
8310                         log "statahead was stopped, maybe too many locks held!"
8311                 [[ $delta -eq 0 || $delta_sa -eq 0 ]] && continue
8312
8313                 if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
8314                     max=`lctl get_param -n llite.*.statahead_max | head -n 1`
8315                     lctl set_param -n llite.*.statahead_max 0
8316                     lctl get_param llite.*.statahead_max
8317                     cancel_lru_locks mdc
8318                     cancel_lru_locks osc
8319                     stime=`date +%s`
8320                     time ls -l $DIR/$tdir | wc -l
8321                     etime=`date +%s`
8322                     delta=$((etime - stime))
8323                     log "ls $i files again without statahead: $delta sec"
8324                     lctl set_param llite.*.statahead_max=$max
8325                     if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
8326                         if [  $SLOWOK -eq 0 ]; then
8327                                 error "ls $i files is slower with statahead!"
8328                         else
8329                                 log "ls $i files is slower with statahead!"
8330                         fi
8331                         break
8332                     fi
8333                 fi
8334
8335                 [ $delta -gt 20 ] && break
8336                 [ $delta -gt 8 ] && MULT=$((50 / delta))
8337                 [ "$SLOW" = "no" -a $delta -gt 5 ] && break
8338         done
8339         log "ls done"
8340
8341         stime=`date +%s`
8342         rm -r $DIR/$tdir
8343         sync
8344         etime=`date +%s`
8345         delta=$((etime - stime))
8346         log "rm -r $DIR/$tdir/: $delta seconds"
8347         log "rm done"
8348         lctl get_param -n llite.*.statahead_stats
8349 }
8350 run_test 123a "verify statahead work"
8351
8352 test_123b () { # statahead(bug 15027)
8353         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8354         test_mkdir -p $DIR/$tdir
8355         createmany -o $DIR/$tdir/$tfile-%d 1000
8356
8357         cancel_lru_locks mdc
8358         cancel_lru_locks osc
8359
8360 #define OBD_FAIL_MDC_GETATTR_ENQUEUE     0x803
8361         lctl set_param fail_loc=0x80000803
8362         ls -lR $DIR/$tdir > /dev/null
8363         log "ls done"
8364         lctl set_param fail_loc=0x0
8365         lctl get_param -n llite.*.statahead_stats
8366         rm -r $DIR/$tdir
8367         sync
8368
8369 }
8370 run_test 123b "not panic with network error in statahead enqueue (bug 15027)"
8371
8372 test_124a() {
8373         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8374         [ -z "$($LCTL get_param -n mdc.*.connect_flags | grep lru_resize)" ] &&
8375                 skip "no lru resize on server" && return 0
8376         local NR=2000
8377         test_mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
8378
8379         log "create $NR files at $DIR/$tdir"
8380         createmany -o $DIR/$tdir/f $NR ||
8381                 error "failed to create $NR files in $DIR/$tdir"
8382
8383         cancel_lru_locks mdc
8384         ls -l $DIR/$tdir > /dev/null
8385
8386         local NSDIR=""
8387         local LRU_SIZE=0
8388         for VALUE in $($LCTL get_param ldlm.namespaces.*mdc-*.lru_size); do
8389                 local PARAM=$(echo ${VALUE[0]} | cut -d "=" -f1)
8390                 LRU_SIZE=$($LCTL get_param -n $PARAM)
8391                 if [[ $LRU_SIZE -gt $(default_lru_size) ]]; then
8392                         NSDIR=$(echo $PARAM | cut -d "." -f1-3)
8393                         log "NSDIR=$NSDIR"
8394                         log "NS=$(basename $NSDIR)"
8395                         break
8396                 fi
8397         done
8398
8399         if [[ -z "$NSDIR" || $LRU_SIZE -lt $(default_lru_size) ]]; then
8400                 skip "Not enough cached locks created!"
8401                 return 0
8402         fi
8403         log "LRU=$LRU_SIZE"
8404
8405         local SLEEP=30
8406
8407         # We know that lru resize allows one client to hold $LIMIT locks
8408         # for 10h. After that locks begin to be killed by client.
8409         local MAX_HRS=10
8410         local LIMIT=$($LCTL get_param -n $NSDIR.pool.limit)
8411         log "LIMIT=$LIMIT"
8412         if [ $LIMIT -lt $LRU_SIZE ]; then
8413             skip "Limit is too small $LIMIT"
8414             return 0
8415         fi
8416
8417         # Make LVF so higher that sleeping for $SLEEP is enough to _start_
8418         # killing locks. Some time was spent for creating locks. This means
8419         # that up to the moment of sleep finish we must have killed some of
8420         # them (10-100 locks). This depends on how fast ther were created.
8421         # Many of them were touched in almost the same moment and thus will
8422         # be killed in groups.
8423         local LVF=$(($MAX_HRS * 60 * 60 / $SLEEP * $LIMIT / $LRU_SIZE))
8424
8425         # Use $LRU_SIZE_B here to take into account real number of locks
8426         # created in the case of CMD, LRU_SIZE_B != $NR in most of cases
8427         local LRU_SIZE_B=$LRU_SIZE
8428         log "LVF=$LVF"
8429         local OLD_LVF=$($LCTL get_param -n $NSDIR.pool.lock_volume_factor)
8430         log "OLD_LVF=$OLD_LVF"
8431         $LCTL set_param -n $NSDIR.pool.lock_volume_factor $LVF
8432
8433         # Let's make sure that we really have some margin. Client checks
8434         # cached locks every 10 sec.
8435         SLEEP=$((SLEEP+20))
8436         log "Sleep ${SLEEP} sec"
8437         local SEC=0
8438         while ((SEC<$SLEEP)); do
8439                 echo -n "..."
8440                 sleep 5
8441                 SEC=$((SEC+5))
8442                 LRU_SIZE=$($LCTL get_param -n $NSDIR/lru_size)
8443                 echo -n "$LRU_SIZE"
8444         done
8445         echo ""
8446         $LCTL set_param -n $NSDIR.pool.lock_volume_factor $OLD_LVF
8447         local LRU_SIZE_A=$($LCTL get_param -n $NSDIR.lru_size)
8448
8449         [[ $LRU_SIZE_B -gt $LRU_SIZE_A ]] || {
8450                 error "No locks dropped in ${SLEEP}s. LRU size: $LRU_SIZE_A"
8451                 unlinkmany $DIR/$tdir/f $NR
8452                 return
8453         }
8454
8455         log "Dropped "$((LRU_SIZE_B-LRU_SIZE_A))" locks in ${SLEEP}s"
8456         log "unlink $NR files at $DIR/$tdir"
8457         unlinkmany $DIR/$tdir/f $NR
8458 }
8459 run_test 124a "lru resize ======================================="
8460
8461 get_max_pool_limit()
8462 {
8463         local limit=$($LCTL get_param \
8464                       -n ldlm.namespaces.*-MDT0000-mdc-*.pool.limit)
8465         local max=0
8466         for l in $limit; do
8467                 if [[ $l -gt $max ]]; then
8468                         max=$l
8469                 fi
8470         done
8471         echo $max
8472 }
8473
8474 test_124b() {
8475         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8476         [ -z "$($LCTL get_param -n mdc.*.connect_flags | grep lru_resize)" ] &&
8477                 skip "no lru resize on server" && return 0
8478
8479         LIMIT=$(get_max_pool_limit)
8480
8481         NR=$(($(default_lru_size)*20))
8482         if [[ $NR -gt $LIMIT ]]; then
8483                 log "Limit lock number by $LIMIT locks"
8484                 NR=$LIMIT
8485         fi
8486         lru_resize_disable mdc
8487         test_mkdir -p $DIR/$tdir/disable_lru_resize ||
8488                 error "failed to create $DIR/$tdir/disable_lru_resize"
8489
8490         createmany -o $DIR/$tdir/disable_lru_resize/f $NR
8491         log "doing ls -la $DIR/$tdir/disable_lru_resize 3 times"
8492         cancel_lru_locks mdc
8493         stime=`date +%s`
8494         PID=""
8495         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
8496         PID="$PID $!"
8497         sleep 2
8498         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
8499         PID="$PID $!"
8500         sleep 2
8501         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
8502         PID="$PID $!"
8503         wait $PID
8504         etime=`date +%s`
8505         nolruresize_delta=$((etime-stime))
8506         log "ls -la time: $nolruresize_delta seconds"
8507         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
8508         unlinkmany $DIR/$tdir/disable_lru_resize/f $NR
8509
8510         lru_resize_enable mdc
8511         test_mkdir -p $DIR/$tdir/enable_lru_resize ||
8512                 error "failed to create $DIR/$tdir/enable_lru_resize"
8513
8514         createmany -o $DIR/$tdir/enable_lru_resize/f $NR
8515         log "doing ls -la $DIR/$tdir/enable_lru_resize 3 times"
8516         cancel_lru_locks mdc
8517         stime=`date +%s`
8518         PID=""
8519         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
8520         PID="$PID $!"
8521         sleep 2
8522         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
8523         PID="$PID $!"
8524         sleep 2
8525         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
8526         PID="$PID $!"
8527         wait $PID
8528         etime=`date +%s`
8529         lruresize_delta=$((etime-stime))
8530         log "ls -la time: $lruresize_delta seconds"
8531         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
8532
8533         if [ $lruresize_delta -gt $nolruresize_delta ]; then
8534                 log "ls -la is $(((lruresize_delta - $nolruresize_delta) * 100 / $nolruresize_delta))% slower with lru resize enabled"
8535         elif [ $nolruresize_delta -gt $lruresize_delta ]; then
8536                 log "ls -la is $(((nolruresize_delta - $lruresize_delta) * 100 / $nolruresize_delta))% faster with lru resize enabled"
8537         else
8538                 log "lru resize performs the same with no lru resize"
8539         fi
8540         unlinkmany $DIR/$tdir/enable_lru_resize/f $NR
8541 }
8542 run_test 124b "lru resize (performance test) ======================="
8543
8544 test_124c() {
8545         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8546         [ -z "$($LCTL get_param -n mdc.*.connect_flags | grep lru_resize)" ] &&
8547                 skip "no lru resize on server" && return 0
8548
8549         # cache ununsed locks on client
8550         local nr=100
8551         cancel_lru_locks mdc
8552         test_mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
8553         createmany -o $DIR/$tdir/f $nr ||
8554                 error "failed to create $nr files in $DIR/$tdir"
8555         ls -l $DIR/$tdir > /dev/null
8556
8557         local nsdir="ldlm.namespaces.*-MDT0000-mdc-*"
8558         local unused=$($LCTL get_param -n $nsdir.lock_unused_count)
8559         local max_age=$($LCTL get_param -n $nsdir.lru_max_age)
8560         local recalc_p=$($LCTL get_param -n $nsdir.pool.recalc_period)
8561         echo "unused=$unused, max_age=$max_age, recalc_p=$recalc_p"
8562
8563         # set lru_max_age to 1 sec
8564         $LCTL set_param $nsdir.lru_max_age=1000 # jiffies
8565         echo "sleep $((recalc_p * 2)) seconds..."
8566         sleep $((recalc_p * 2))
8567
8568         local remaining=$($LCTL get_param -n $nsdir.lock_unused_count)
8569         # restore lru_max_age
8570         $LCTL set_param -n $nsdir.lru_max_age $max_age
8571         [ $remaining -eq 0 ] || error "$remaining locks are not canceled"
8572         unlinkmany $DIR/$tdir/f $nr
8573 }
8574 run_test 124c "LRUR cancel very aged locks"
8575
8576 test_125() { # 13358
8577         [ -z "$(lctl get_param -n llite.*.client_type | grep local)" ] && skip "must run as local client" && return
8578         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] && skip "must have acl enabled" && return
8579         [ -z "$(which setfacl)" ] && skip "must have setfacl tool" && return
8580         test_mkdir -p $DIR/d125 || error "mkdir failed"
8581         $SETSTRIPE -S 65536 -c -1 $DIR/d125 || error "setstripe failed"
8582         setfacl -R -m u:bin:rwx $DIR/d125 || error "setfacl $DIR/d125 failed"
8583         ls -ld $DIR/d125 || error "cannot access $DIR/d125"
8584 }
8585 run_test 125 "don't return EPROTO when a dir has a non-default striping and ACLs"
8586
8587 test_126() { # bug 12829/13455
8588         [ -z "$(lctl get_param -n llite.*.client_type | grep local)" ] && skip "must run as local client" && return
8589         [ "$UID" != 0 ] && skip_env "skipping $TESTNAME (must run as root)" && return
8590         $GSS && skip "must run as gss disabled" && return
8591
8592         $RUNAS -u 0 -g 1 touch $DIR/$tfile || error "touch failed"
8593         gid=`ls -n $DIR/$tfile | awk '{print $4}'`
8594         rm -f $DIR/$tfile
8595         [ $gid -eq "1" ] || error "gid is set to" $gid "instead of 1"
8596 }
8597 run_test 126 "check that the fsgid provided by the client is taken into account"
8598
8599 test_127a() { # bug 15521
8600         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8601         $SETSTRIPE -i 0 -c 1 $DIR/$tfile || error "setstripe failed"
8602         $LCTL set_param osc.*.stats=0
8603         FSIZE=$((2048 * 1024))
8604         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
8605         cancel_lru_locks osc
8606         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE
8607
8608         $LCTL get_param osc.*0000-osc-*.stats | grep samples > $DIR/${tfile}.tmp
8609         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
8610                 echo "got $COUNT $NAME"
8611                 [ ! $MIN ] && error "Missing min value for $NAME proc entry"
8612                 eval $NAME=$COUNT || error "Wrong proc format"
8613
8614                 case $NAME in
8615                         read_bytes|write_bytes)
8616                         [ $MIN -lt 4096 ] && error "min is too small: $MIN"
8617                         [ $MIN -gt $FSIZE ] && error "min is too big: $MIN"
8618                         [ $MAX -lt 4096 ] && error "max is too small: $MAX"
8619                         [ $MAX -gt $FSIZE ] && error "max is too big: $MAX"
8620                         [ $SUM -ne $FSIZE ] && error "sum is wrong: $SUM"
8621                         [ $SUMSQ -lt $(((FSIZE /4096) * (4096 * 4096))) ] &&
8622                                 error "sumsquare is too small: $SUMSQ"
8623                         [ $SUMSQ -gt $((FSIZE * FSIZE)) ] &&
8624                                 error "sumsquare is too big: $SUMSQ"
8625                         ;;
8626                         *) ;;
8627                 esac
8628         done < $DIR/${tfile}.tmp
8629
8630         #check that we actually got some stats
8631         [ "$read_bytes" ] || error "Missing read_bytes stats"
8632         [ "$write_bytes" ] || error "Missing write_bytes stats"
8633         [ "$read_bytes" != 0 ] || error "no read done"
8634         [ "$write_bytes" != 0 ] || error "no write done"
8635 }
8636 run_test 127a "verify the client stats are sane"
8637
8638 test_127b() { # bug LU-333
8639         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8640         $LCTL set_param llite.*.stats=0
8641         FSIZE=65536 # sized fixed to match PAGE_SIZE for most clients
8642         # perform 2 reads and writes so MAX is different from SUM.
8643         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
8644         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
8645         cancel_lru_locks osc
8646         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE count=1
8647         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE count=1
8648
8649         $LCTL get_param llite.*.stats | grep samples > $TMP/${tfile}.tmp
8650         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
8651                 echo "got $COUNT $NAME"
8652                 eval $NAME=$COUNT || error "Wrong proc format"
8653
8654         case $NAME in
8655                 read_bytes)
8656                         [ $COUNT -ne 2 ] && error "count is not 2: $COUNT"
8657                         [ $MIN -ne $FSIZE ] && error "min is not $FSIZE: $MIN"
8658                         [ $MAX -ne $FSIZE ] && error "max is incorrect: $MAX"
8659                         [ $SUM -ne $((FSIZE * 2)) ] && error "sum is wrong: $SUM"
8660                         ;;
8661                 write_bytes)
8662                         [ $COUNT -ne 2 ] && error "count is not 2: $COUNT"
8663                         [ $MIN -ne $FSIZE ] && error "min is not $FSIZE: $MIN"
8664                         [ $MAX -ne $FSIZE ] && error "max is incorrect: $MAX"
8665                         [ $SUM -ne $((FSIZE * 2)) ] && error "sum is wrong: $SUM"
8666                         ;;
8667                         *) ;;
8668                 esac
8669         done < $TMP/${tfile}.tmp
8670
8671         #check that we actually got some stats
8672         [ "$read_bytes" ] || error "Missing read_bytes stats"
8673         [ "$write_bytes" ] || error "Missing write_bytes stats"
8674         [ "$read_bytes" != 0 ] || error "no read done"
8675         [ "$write_bytes" != 0 ] || error "no write done"
8676 }
8677 run_test 127b "verify the llite client stats are sane"
8678
8679 test_128() { # bug 15212
8680         touch $DIR/$tfile
8681         $LFS 2>&1 <<-EOF | tee $TMP/$tfile.log
8682                 find $DIR/$tfile
8683                 find $DIR/$tfile
8684         EOF
8685
8686         result=$(grep error $TMP/$tfile.log)
8687         rm -f $DIR/$tfile
8688         [ -z "$result" ] || error "consecutive find's under interactive lfs failed"
8689 }
8690 run_test 128 "interactive lfs for 2 consecutive find's"
8691
8692 set_dir_limits () {
8693         local mntdev
8694         local canondev
8695         local node
8696
8697         local LDPROC=/proc/fs/ldiskfs
8698         local facets=$(get_facets MDS)
8699
8700         for facet in ${facets//,/ }; do
8701                 canondev=$(ldiskfs_canon \
8702                            *.$(convert_facet2label $facet).mntdev $facet)
8703                 do_facet $facet "test -e $LDPROC/$canondev/max_dir_size" ||
8704                                                 LDPROC=/sys/fs/ldiskfs
8705                 do_facet $facet "echo $1 >$LDPROC/$canondev/max_dir_size"
8706                 do_facet $facet "test -e $LDPROC/$canondev/warning_dir_size" ||
8707                                                 LDPROC=/sys/fs/ldiskfs
8708                 do_facet $facet "echo $2 >$LDPROC/$canondev/warning_dir_size"
8709         done
8710 }
8711
8712 check_mds_dmesg() {
8713         local facets=$(get_facets MDS)
8714         for facet in ${facets//,/ }; do
8715                 do_facet $facet "dmesg | tail -3 | grep -q $1" && return 0
8716         done
8717         return 1
8718 }
8719
8720 test_129() {
8721         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8722         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
8723                 skip "Only applicable to ldiskfs-based MDTs"
8724                 return
8725         fi
8726         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8727         ENOSPC=28
8728         EFBIG=27
8729         has_warning=0
8730
8731         rm -rf $DIR/$tdir
8732         test_mkdir -p $DIR/$tdir
8733
8734         # block size of mds1
8735         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
8736         local MDSBLOCKSIZE=$($LCTL get_param -n mdc.*MDT0000*.blocksize)
8737         local MAX=$((MDSBLOCKSIZE * 5))
8738         set_dir_limits $MAX $MAX
8739         local I=$(stat -c%s "$DIR/$tdir")
8740         local J=0
8741         local STRIPE_COUNT=1
8742         [[ $MDSCOUNT -ge 2 ]] && STRIPE_COUNT=$($LFS getdirstripe -c $DIR/$tdir)
8743         MAX=$((MAX*STRIPE_COUNT))
8744         while [[ $I -le $MAX ]]; do
8745                 $MULTIOP $DIR/$tdir/$J Oc
8746                 rc=$?
8747                 if [ $has_warning -eq 0 ]; then
8748                         check_mds_dmesg '"is approaching"' &&
8749                                 has_warning=1
8750                 fi
8751                 #check two errors ENOSPC for new version of ext4 max_dir_size patch
8752                 #mainline kernel commit df981d03eeff7971ac7e6ff37000bfa702327ef1
8753                 #and EFBIG for previous versions
8754                 if [ $rc -eq $EFBIG -o $rc -eq $ENOSPC ]; then
8755                         set_dir_limits 0 0
8756                         echo "return code $rc received as expected"
8757                         multiop $DIR/$tdir/$J Oc ||
8758                                 error_exit "multiop failed w/o dir size limit"
8759
8760                         check_mds_dmesg '"has reached"' ||
8761                                 error_exit "has reached message should be output"
8762
8763                         [ $has_warning ] ||
8764                                 error_exit "warning message should be output"
8765
8766                         I=$(stat -c%s "$DIR/$tdir")
8767
8768                         if [ $(lustre_version_code $SINGLEMDS) -lt \
8769                                         $(version_code 2.4.51) ]
8770                         then
8771                                 [[ $I -eq $MAX ]] && return 0
8772                         else
8773                                 [[ $I -gt $MAX ]] && return 0
8774                         fi
8775                         error_exit "current dir size $I, previous limit $MAX"
8776                 elif [ $rc -ne 0 ]; then
8777                         set_dir_limits 0 0
8778                         error_exit "return code $rc received instead of expected " \
8779                                    "$EFBIG or $ENOSPC, files in dir $I"
8780                 fi
8781                 J=$((J+1))
8782                 I=$(stat -c%s "$DIR/$tdir")
8783         done
8784
8785         set_dir_limits 0 0
8786         error "exceeded dir size limit $MAX($MDSCOUNT) : $I bytes"
8787 }
8788 run_test 129 "test directory size limit ========================"
8789
8790 OLDIFS="$IFS"
8791 cleanup_130() {
8792         trap 0
8793         IFS="$OLDIFS"
8794 }
8795
8796 test_130a() {
8797         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
8798         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP" &&
8799                 return
8800
8801         trap cleanup_130 EXIT RETURN
8802
8803         local fm_file=$DIR/$tfile
8804         $SETSTRIPE -S 65536 -c 1 $fm_file || error "setstripe on $fm_file"
8805         dd if=/dev/zero of=$fm_file bs=65536 count=1 ||
8806                 error "dd failed for $fm_file"
8807
8808         # LU-1795: test filefrag/FIEMAP once, even if unsupported
8809         filefrag -ves $fm_file
8810         RC=$?
8811         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
8812                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
8813         [ $RC != 0 ] && error "filefrag $fm_file failed"
8814
8815         filefrag_op=$(filefrag -ve $fm_file | grep -A 100 "ext:" |
8816                       grep -v "ext:" | grep -v "found")
8817         lun=$($GETSTRIPE -i $fm_file)
8818
8819         start_blk=`echo $filefrag_op | cut -d: -f2 | cut -d. -f1`
8820         IFS=$'\n'
8821         tot_len=0
8822         for line in $filefrag_op
8823         do
8824                 frag_lun=`echo $line | cut -d: -f5`
8825                 ext_len=`echo $line | cut -d: -f4`
8826                 if (( $frag_lun != $lun )); then
8827                         cleanup_130
8828                         error "FIEMAP on 1-stripe file($fm_file) failed"
8829                         return
8830                 fi
8831                 (( tot_len += ext_len ))
8832         done
8833
8834         if (( lun != frag_lun || start_blk != 0 || tot_len != 64 )); then
8835                 cleanup_130
8836                 error "FIEMAP on 1-stripe file($fm_file) failed;"
8837                 return
8838         fi
8839
8840         cleanup_130
8841
8842         echo "FIEMAP on single striped file succeeded"
8843 }
8844 run_test 130a "FIEMAP (1-stripe file)"
8845
8846 test_130b() {
8847         [ "$OSTCOUNT" -lt "2" ] &&
8848                 skip_env "skipping FIEMAP on 2-stripe file test" && return
8849
8850         [ "$OSTCOUNT" -ge "10" ] &&
8851                 skip_env "skipping FIEMAP with >= 10 OSTs" && return
8852
8853         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
8854         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP" &&
8855                 return
8856
8857         trap cleanup_130 EXIT RETURN
8858
8859         local fm_file=$DIR/$tfile
8860         $SETSTRIPE -S 65536 -c 2 $fm_file || error "setstripe on $fm_file"
8861         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
8862                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
8863
8864         dd if=/dev/zero of=$fm_file bs=1M count=2 ||
8865                 error "dd failed on $fm_file"
8866
8867         filefrag -ves $fm_file || error "filefrag $fm_file failed"
8868         filefrag_op=$(filefrag -ve $fm_file | grep -A 100 "ext:" |
8869                       grep -v "ext:" | grep -v "found")
8870
8871         last_lun=$(echo $filefrag_op | cut -d: -f5)
8872
8873         IFS=$'\n'
8874         tot_len=0
8875         num_luns=1
8876         for line in $filefrag_op
8877         do
8878                 frag_lun=`echo $line | cut -d: -f5`
8879                 ext_len=`echo $line | cut -d: -f4`
8880                 if (( $frag_lun != $last_lun )); then
8881                         if (( tot_len != 1024 )); then
8882                                 cleanup_130
8883                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of 256"
8884                                 return
8885                         else
8886                                 (( num_luns += 1 ))
8887                                 tot_len=0
8888                         fi
8889                 fi
8890                 (( tot_len += ext_len ))
8891                 last_lun=$frag_lun
8892         done
8893         if (( num_luns != 2 || tot_len != 1024 )); then
8894                 cleanup_130
8895                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
8896                 return
8897         fi
8898
8899         cleanup_130
8900
8901         echo "FIEMAP on 2-stripe file succeeded"
8902 }
8903 run_test 130b "FIEMAP (2-stripe file)"
8904
8905 test_130c() {
8906         [ "$OSTCOUNT" -lt "2" ] &&
8907                 skip_env "skipping FIEMAP on 2-stripe file" && return
8908
8909         [ "$OSTCOUNT" -ge "10" ] &&
8910                 skip_env "skipping FIEMAP with >= 10 OSTs" && return
8911
8912         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
8913         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" &&
8914                 return
8915
8916         trap cleanup_130 EXIT RETURN
8917
8918         local fm_file=$DIR/$tfile
8919         $SETSTRIPE -S 65536 -c 2 $fm_file || error "setstripe on $fm_file"
8920         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
8921                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
8922
8923         dd if=/dev/zero of=$fm_file seek=1 bs=1M count=1 || error "dd failed on $fm_file"
8924
8925         filefrag -ves $fm_file || error "filefrag $fm_file failed"
8926         filefrag_op=`filefrag -ve $fm_file | grep -A 100 "ext:" | grep -v "ext:" | grep -v "found"`
8927
8928         last_lun=`echo $filefrag_op | cut -d: -f5`
8929
8930         IFS=$'\n'
8931         tot_len=0
8932         num_luns=1
8933         for line in $filefrag_op
8934         do
8935                 frag_lun=`echo $line | cut -d: -f5`
8936                 ext_len=`echo $line | cut -d: -f4`
8937                 if (( $frag_lun != $last_lun )); then
8938                         logical=`echo $line | cut -d: -f2 | cut -d. -f1`
8939                         if (( logical != 512 )); then
8940                                 cleanup_130
8941                                 error "FIEMAP on $fm_file failed; returned logical start for lun $logical instead of 512"
8942                                 return
8943                         fi
8944                         if (( tot_len != 512 )); then
8945                                 cleanup_130
8946                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of 1024"
8947                                 return
8948                         else
8949                                 (( num_luns += 1 ))
8950                                 tot_len=0
8951                         fi
8952                 fi
8953                 (( tot_len += ext_len ))
8954                 last_lun=$frag_lun
8955         done
8956         if (( num_luns != 2 || tot_len != 512 )); then
8957                 cleanup_130
8958                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
8959                 return
8960         fi
8961
8962         cleanup_130
8963
8964         echo "FIEMAP on 2-stripe file with hole succeeded"
8965 }
8966 run_test 130c "FIEMAP (2-stripe file with hole)"
8967
8968 test_130d() {
8969         [ "$OSTCOUNT" -lt "3" ] && skip_env "skipping FIEMAP on N-stripe file test" && return
8970
8971         [ "$OSTCOUNT" -ge "10" ] &&
8972                 skip_env "skipping FIEMAP with >= 10 OSTs" && return
8973
8974         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
8975         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" && return
8976
8977         trap cleanup_130 EXIT RETURN
8978
8979         local fm_file=$DIR/$tfile
8980         $SETSTRIPE -S 65536 -c $OSTCOUNT $fm_file||error "setstripe on $fm_file"
8981         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
8982                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
8983
8984         local actual_stripecnt=$($GETSTRIPE -c $fm_file)
8985         dd if=/dev/zero of=$fm_file bs=1M count=$actual_stripecnt ||
8986                 error "dd failed on $fm_file"
8987
8988         filefrag -ves $fm_file || error "filefrag $fm_file failed"
8989         filefrag_op=`filefrag -ve $fm_file | grep -A 100 "ext:" |
8990                 grep -v "ext:" | grep -v "found"`
8991
8992         last_lun=`echo $filefrag_op | cut -d: -f5`
8993
8994         IFS=$'\n'
8995         tot_len=0
8996         num_luns=1
8997         for line in $filefrag_op
8998         do
8999                 frag_lun=`echo $line | cut -d: -f5`
9000                 ext_len=`echo $line | cut -d: -f4`
9001                 if (( $frag_lun != $last_lun )); then
9002                         if (( tot_len != 1024 )); then
9003                                 cleanup_130
9004                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of 1024"
9005                                 return
9006                         else
9007                                 (( num_luns += 1 ))
9008                                 tot_len=0
9009                         fi
9010                 fi
9011                 (( tot_len += ext_len ))
9012                 last_lun=$frag_lun
9013         done
9014         if (( num_luns != actual_stripecnt || tot_len != 1024 )); then
9015                 cleanup_130
9016                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
9017                 return
9018         fi
9019
9020         cleanup_130
9021
9022         echo "FIEMAP on N-stripe file succeeded"
9023 }
9024 run_test 130d "FIEMAP (N-stripe file)"
9025
9026 test_130e() {
9027         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping continuation FIEMAP test" && return
9028
9029         [ "$OSTCOUNT" -ge "10" ] &&
9030                 skip_env "skipping FIEMAP with >= 10 OSTs" && return
9031
9032         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
9033         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" && return
9034
9035         trap cleanup_130 EXIT RETURN
9036
9037         local fm_file=$DIR/$tfile
9038         $SETSTRIPE -S 131072 -c 2 $fm_file || error "setstripe on $fm_file"
9039         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
9040                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
9041
9042         NUM_BLKS=512
9043         EXPECTED_LEN=$(( (NUM_BLKS / 2) * 64 ))
9044         for ((i = 0; i < $NUM_BLKS; i++))
9045         do
9046                 dd if=/dev/zero of=$fm_file count=1 bs=64k seek=$((2*$i)) conv=notrunc > /dev/null 2>&1
9047         done
9048
9049         filefrag -ves $fm_file || error "filefrag $fm_file failed"
9050         filefrag_op=`filefrag -ve $fm_file | grep -A 12000 "ext:" | grep -v "ext:" | grep -v "found"`
9051
9052         last_lun=`echo $filefrag_op | cut -d: -f5`
9053
9054         IFS=$'\n'
9055         tot_len=0
9056         num_luns=1
9057         for line in $filefrag_op
9058         do
9059                 frag_lun=`echo $line | cut -d: -f5`
9060                 ext_len=`echo $line | cut -d: -f4`
9061                 if (( $frag_lun != $last_lun )); then
9062                         if (( tot_len != $EXPECTED_LEN )); then
9063                                 cleanup_130
9064                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of $EXPECTED_LEN"
9065                                 return
9066                         else
9067                                 (( num_luns += 1 ))
9068                                 tot_len=0
9069                         fi
9070                 fi
9071                 (( tot_len += ext_len ))
9072                 last_lun=$frag_lun
9073         done
9074         if (( num_luns != 2 || tot_len != $EXPECTED_LEN )); then
9075                 cleanup_130
9076                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
9077                 return
9078         fi
9079
9080         cleanup_130
9081
9082         echo "FIEMAP with continuation calls succeeded"
9083 }
9084 run_test 130e "FIEMAP (test continuation FIEMAP calls)"
9085
9086 # Test for writev/readv
9087 test_131a() {
9088         rwv -f $DIR/$tfile -w -n 3 524288 1048576 1572864 || \
9089         error "writev test failed"
9090         rwv -f $DIR/$tfile -r -v -n 2 1572864 1048576 || \
9091         error "readv failed"
9092         rm -f $DIR/$tfile
9093 }
9094 run_test 131a "test iov's crossing stripe boundary for writev/readv"
9095
9096 test_131b() {
9097         rwv -f $DIR/$tfile -w -a -n 3 524288 1048576 1572864 || \
9098         error "append writev test failed"
9099         rwv -f $DIR/$tfile -w -a -n 2 1572864 1048576 || \
9100         error "append writev test failed"
9101         rm -f $DIR/$tfile
9102 }
9103 run_test 131b "test append writev"
9104
9105 test_131c() {
9106         rwv -f $DIR/$tfile -w -d -n 1 1048576 || return 0
9107         error "NOT PASS"
9108 }
9109 run_test 131c "test read/write on file w/o objects"
9110
9111 test_131d() {
9112         rwv -f $DIR/$tfile -w -n 1 1572864
9113         NOB=`rwv -f $DIR/$tfile -r -n 3 524288 524288 1048576 | awk '/error/ {print $6}'`
9114         if [ "$NOB" != 1572864 ]; then
9115                 error "Short read filed: read $NOB bytes instead of 1572864"
9116         fi
9117         rm -f $DIR/$tfile
9118 }
9119 run_test 131d "test short read"
9120
9121 test_131e() {
9122         rwv -f $DIR/$tfile -w -s 1048576 -n 1 1048576
9123         rwv -f $DIR/$tfile -r -z -s 0 -n 1 524288 || \
9124         error "read hitting hole failed"
9125         rm -f $DIR/$tfile
9126 }
9127 run_test 131e "test read hitting hole"
9128
9129 check_stats() {
9130         local res
9131         local count
9132         case $1 in
9133         $SINGLEMDS) res=`do_facet $SINGLEMDS $LCTL get_param mdt.$FSNAME-MDT0000.md_stats | grep "$2"`
9134                  ;;
9135         ost) res=`do_facet ost1 $LCTL get_param obdfilter.$FSNAME-OST0000.stats | grep "$2"`
9136                  ;;
9137         *) error "Wrong argument $1" ;;
9138         esac
9139         echo $res
9140         [ -z "$res" ] && error "The counter for $2 on $1 was not incremented"
9141         # if the argument $3 is zero, it means any stat increment is ok.
9142         if [[ $3 -gt 0 ]]; then
9143                 count=$(echo $res | awk '{ print $2 }')
9144                 [[ $count -ne $3 ]] &&
9145                         error "The $2 counter on $1 is wrong - expected $3"
9146         fi
9147 }
9148
9149 test_133a() {
9150         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9151         remote_ost_nodsh && skip "remote OST with nodsh" && return
9152         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9153
9154         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
9155                 { skip "MDS doesn't support rename stats"; return; }
9156         local testdir=$DIR/${tdir}/stats_testdir
9157         mkdir -p $DIR/${tdir}
9158
9159         # clear stats.
9160         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
9161         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
9162
9163         # verify mdt stats first.
9164         mkdir ${testdir} || error "mkdir failed"
9165         check_stats $SINGLEMDS "mkdir" 1
9166         touch ${testdir}/${tfile} || "touch failed"
9167         check_stats $SINGLEMDS "open" 1
9168         check_stats $SINGLEMDS "close" 1
9169         mknod ${testdir}/${tfile}-pipe p || "mknod failed"
9170         check_stats $SINGLEMDS "mknod" 1
9171         rm -f ${testdir}/${tfile}-pipe || "pipe remove failed"
9172         check_stats $SINGLEMDS "unlink" 1
9173         rm -f ${testdir}/${tfile} || error "file remove failed"
9174         check_stats $SINGLEMDS "unlink" 2
9175
9176         # remove working dir and check mdt stats again.
9177         rmdir ${testdir} || error "rmdir failed"
9178         check_stats $SINGLEMDS "rmdir" 1
9179
9180         local testdir1=$DIR/${tdir}/stats_testdir1
9181         mkdir -p ${testdir}
9182         mkdir -p ${testdir1}
9183         touch ${testdir1}/test1
9184         mv ${testdir1}/test1 ${testdir} || error "file crossdir rename"
9185         check_stats $SINGLEMDS "crossdir_rename" 1
9186
9187         mv ${testdir}/test1 ${testdir}/test0 || error "file samedir rename"
9188         check_stats $SINGLEMDS "samedir_rename" 1
9189
9190         rm -rf $DIR/${tdir}
9191 }
9192 run_test 133a "Verifying MDT stats ========================================"
9193
9194 test_133b() {
9195         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9196         remote_ost_nodsh && skip "remote OST with nodsh" && return
9197         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9198         local testdir=$DIR/${tdir}/stats_testdir
9199         mkdir -p ${testdir} || error "mkdir failed"
9200         touch ${testdir}/${tfile} || "touch failed"
9201         cancel_lru_locks mdc
9202
9203         # clear stats.
9204         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
9205         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
9206
9207         # extra mdt stats verification.
9208         chmod 444 ${testdir}/${tfile} || error "chmod failed"
9209         check_stats $SINGLEMDS "setattr" 1
9210         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
9211         if [ $(lustre_version_code $SINGLEMDS) -ne $(version_code 2.2.0) ]
9212         then            # LU-1740
9213                 ls -l ${testdir}/${tfile} > /dev/null|| error "ls failed"
9214                 check_stats $SINGLEMDS "getattr" 1
9215         fi
9216         $LFS df || error "lfs failed"
9217         check_stats $SINGLEMDS "statfs" 1
9218
9219         rm -rf $DIR/${tdir}
9220 }
9221 run_test 133b "Verifying extra MDT stats =================================="
9222
9223 test_133c() {
9224         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9225         remote_ost_nodsh && skip "remote OST with nodsh" && return
9226         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9227         local testdir=$DIR/${tdir}/stats_testdir
9228         test_mkdir -p ${testdir} || error "mkdir failed"
9229
9230         # verify obdfilter stats.
9231         $SETSTRIPE -c 1 -i 0 ${testdir}/${tfile}
9232         sync
9233         cancel_lru_locks osc
9234         wait_delete_completed
9235
9236         # clear stats.
9237         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
9238         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
9239
9240         dd if=/dev/zero of=${testdir}/${tfile} conv=notrunc bs=512k count=1 || error "dd failed"
9241         sync
9242         cancel_lru_locks osc
9243         check_stats ost "write" 1
9244
9245         dd if=${testdir}/${tfile} of=/dev/null bs=1k count=1 || error "dd failed"
9246         check_stats ost "read" 1
9247
9248         > ${testdir}/${tfile} || error "truncate failed"
9249         check_stats ost "punch" 1
9250
9251         rm -f ${testdir}/${tfile} || error "file remove failed"
9252         wait_delete_completed
9253         check_stats ost "destroy" 1
9254
9255         rm -rf $DIR/${tdir}
9256 }
9257 run_test 133c "Verifying OST stats ========================================"
9258
9259 order_2() {
9260         local value=$1
9261         local orig=$value
9262         local order=1
9263
9264         while [ $value -ge 2 ]; do
9265                 order=$((order*2))
9266                 value=$((value/2))
9267         done
9268
9269         if [ $orig -gt $order ]; then
9270                 order=$((order*2))
9271         fi
9272         echo $order
9273 }
9274
9275 size_in_KMGT() {
9276     local value=$1
9277     local size=('K' 'M' 'G' 'T');
9278     local i=0
9279     local size_string=$value
9280
9281     while [ $value -ge 1024 ]; do
9282         if [ $i -gt 3 ]; then
9283             #T is the biggest unit we get here, if that is bigger,
9284             #just return XXXT
9285             size_string=${value}T
9286             break
9287         fi
9288         value=$((value >> 10))
9289         if [ $value -lt 1024 ]; then
9290             size_string=${value}${size[$i]}
9291             break
9292         fi
9293         i=$((i + 1))
9294     done
9295
9296     echo $size_string
9297 }
9298
9299 get_rename_size() {
9300     local size=$1
9301     local context=${2:-.}
9302     local sample=$(do_facet $SINGLEMDS $LCTL get_param mdt.*.rename_stats |
9303                 grep -A1 $context |
9304                 awk '/ '${size}'/ {print $4}' | sed -e "s/,//g")
9305     echo $sample
9306 }
9307
9308 test_133d() {
9309         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9310         remote_ost_nodsh && skip "remote OST with nodsh" && return
9311         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9312         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
9313         { skip "MDS doesn't support rename stats"; return; }
9314
9315         local testdir1=$DIR/${tdir}/stats_testdir1
9316         local testdir2=$DIR/${tdir}/stats_testdir2
9317
9318         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
9319
9320         mkdir -p ${testdir1} || error "mkdir failed"
9321         mkdir -p ${testdir2} || error "mkdir failed"
9322
9323         createmany -o $testdir1/test 512 || error "createmany failed"
9324
9325         # check samedir rename size
9326         mv ${testdir1}/test0 ${testdir1}/test_0
9327
9328         local testdir1_size=$(ls -l $DIR/${tdir} |
9329                 awk '/stats_testdir1/ {print $5}')
9330         local testdir2_size=$(ls -l $DIR/${tdir} |
9331                 awk '/stats_testdir2/ {print $5}')
9332
9333         testdir1_size=$(order_2 $testdir1_size)
9334         testdir2_size=$(order_2 $testdir2_size)
9335
9336         testdir1_size=$(size_in_KMGT $testdir1_size)
9337         testdir2_size=$(size_in_KMGT $testdir2_size)
9338
9339         echo "source rename dir size: ${testdir1_size}"
9340         echo "target rename dir size: ${testdir2_size}"
9341
9342         local cmd="do_facet $SINGLEMDS $LCTL get_param mdt.*.rename_stats"
9343         eval $cmd || error "$cmd failed"
9344         local samedir=$($cmd | grep 'same_dir')
9345         local same_sample=$(get_rename_size $testdir1_size)
9346         [ -z "$samedir" ] && error "samedir_rename_size count error"
9347         [[ $same_sample -eq 1 ]] ||
9348                 error "samedir_rename_size error $same_sample"
9349         echo "Check same dir rename stats success"
9350
9351         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
9352
9353         # check crossdir rename size
9354         mv ${testdir1}/test_0 ${testdir2}/test_0
9355
9356         testdir1_size=$(ls -l $DIR/${tdir} |
9357                 awk '/stats_testdir1/ {print $5}')
9358         testdir2_size=$(ls -l $DIR/${tdir} |
9359                 awk '/stats_testdir2/ {print $5}')
9360
9361         testdir1_size=$(order_2 $testdir1_size)
9362         testdir2_size=$(order_2 $testdir2_size)
9363
9364         testdir1_size=$(size_in_KMGT $testdir1_size)
9365         testdir2_size=$(size_in_KMGT $testdir2_size)
9366
9367         echo "source rename dir size: ${testdir1_size}"
9368         echo "target rename dir size: ${testdir2_size}"
9369
9370         eval $cmd || error "$cmd failed"
9371         local crossdir=$($cmd | grep 'crossdir')
9372         local src_sample=$(get_rename_size $testdir1_size crossdir_src)
9373         local tgt_sample=$(get_rename_size $testdir2_size crossdir_tgt)
9374         [ -z "$crossdir" ] && error "crossdir_rename_size count error"
9375         [[ $src_sample -eq 1 ]] ||
9376                 error "crossdir_rename_size error $src_sample"
9377         [[ $tgt_sample -eq 1 ]] ||
9378                 error "crossdir_rename_size error $tgt_sample"
9379         echo "Check cross dir rename stats success"
9380         rm -rf $DIR/${tdir}
9381 }
9382 run_test 133d "Verifying rename_stats ========================================"
9383
9384 test_133e() {
9385         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9386         remote_ost_nodsh && skip "remote OST with nodsh" && return
9387         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9388         local testdir=$DIR/${tdir}/stats_testdir
9389         local ctr f0 f1 bs=32768 count=42 sum
9390
9391         mkdir -p ${testdir} || error "mkdir failed"
9392
9393         $SETSTRIPE -c 1 -i 0 ${testdir}/${tfile}
9394
9395         for ctr in {write,read}_bytes; do
9396                 sync
9397                 cancel_lru_locks osc
9398
9399                 do_facet ost1 $LCTL set_param -n \
9400                         "obdfilter.*.exports.clear=clear"
9401
9402                 if [ $ctr = write_bytes ]; then
9403                         f0=/dev/zero
9404                         f1=${testdir}/${tfile}
9405                 else
9406                         f0=${testdir}/${tfile}
9407                         f1=/dev/null
9408                 fi
9409
9410                 dd if=$f0 of=$f1 conv=notrunc bs=$bs count=$count || \
9411                         error "dd failed"
9412                 sync
9413                 cancel_lru_locks osc
9414
9415                 sum=$(do_facet ost1 $LCTL get_param \
9416                         "obdfilter.*.exports.*.stats" |
9417                         awk -v ctr=$ctr 'BEGIN { sum = 0 }
9418                                 $1 == ctr { sum += $7 }
9419                                 END { printf("%0.0f", sum) }')
9420
9421                 if ((sum != bs * count)); then
9422                         error "Bad $ctr sum, expected $((bs * count)), got $sum"
9423                 fi
9424         done
9425
9426         rm -rf $DIR/${tdir}
9427 }
9428 run_test 133e "Verifying OST {read,write}_bytes nid stats ================="
9429
9430 proc_dirs=""
9431 for dir in /proc/fs/lustre/ /proc/sys/lnet/ /proc/sys/lustre/ \
9432            /sys/fs/lustre/ /sys/fs/lnet/ /sys/kernel/debug/lustre/; do
9433         [[ -d $dir ]] && proc_dirs+=" $dir"
9434 done
9435
9436 test_133f() {
9437         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9438         remote_ost_nodsh && skip "remote OST with nodsh" && return
9439         # First without trusting modes.
9440         find $proc_dirs -exec cat '{}' \; &> /dev/null
9441
9442         # Second verifying readability.
9443         $LCTL get_param -R &> /dev/null || error "proc file read failed"
9444
9445         # eventually, this can also be replaced with "lctl get_param -R",
9446         # but not until that option is always available on the server
9447         local facet
9448         for facet in $SINGLEMDS ost1; do
9449                 do_facet $facet find $proc_dirs \
9450                         ! -name req_history \
9451                         -exec cat '{}' \\\; &> /dev/null
9452
9453                 do_facet $facet find $proc_dirs \
9454                         ! -name req_history \
9455                         -type f \
9456                         -exec cat '{}' \\\; &> /dev/null ||
9457                                 error "proc file read failed"
9458         done
9459 }
9460 run_test 133f "Check for LBUGs/Oopses/unreadable files in /proc"
9461
9462 test_133g() {
9463         # Second verifying writability.
9464         find $proc_dirs \
9465                 -type f \
9466                 -not -name force_lbug \
9467                 -not -name changelog_mask \
9468                 -exec badarea_io '{}' \; &> /dev/null ||
9469                 error "find $proc_dirs failed"
9470
9471         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.5.54) ] &&
9472                 skip "Too old lustre on MDS" && return
9473
9474         [ $(lustre_version_code ost1) -le $(version_code 2.5.54) ] &&
9475                 skip "Too old lustre on ost1" && return
9476
9477         local facet
9478         for facet in $SINGLEMDS ost1; do
9479                 do_facet $facet find $proc_dirs \
9480                         -type f \
9481                         -not -name force_lbug \
9482                         -not -name changelog_mask \
9483                         -exec badarea_io '{}' \\\; &> /dev/null ||
9484                 error "$facet find $proc_dirs failed"
9485
9486         done
9487
9488         # remount the FS in case writes/reads /proc break the FS
9489         cleanup || error "failed to unmount"
9490         setup || error "failed to setup"
9491         true
9492 }
9493 run_test 133g "Check for Oopses on bad io area writes/reads in /proc"
9494
9495 test_134a() {
9496         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.54) ]] &&
9497                 skip "Need MDS version at least 2.7.54" && return
9498
9499         mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
9500         cancel_lru_locks mdc
9501
9502         local nsdir="ldlm.namespaces.*-MDT0000-mdc-*"
9503         local unused=$($LCTL get_param -n $nsdir.lock_unused_count)
9504         [ $unused -eq 0 ] || "$unused locks are not cleared"
9505
9506         local nr=1000
9507         createmany -o $DIR/$tdir/f $nr ||
9508                 error "failed to create $nr files in $DIR/$tdir"
9509         unused=$($LCTL get_param -n $nsdir.lock_unused_count)
9510
9511         #define OBD_FAIL_LDLM_WATERMARK_LOW     0x327
9512         do_facet mds1 $LCTL set_param fail_loc=0x327
9513         do_facet mds1 $LCTL set_param fail_val=500
9514         touch $DIR/$tdir/m
9515
9516         echo "sleep 10 seconds ..."
9517         sleep 10
9518         local lck_cnt=$($LCTL get_param -n $nsdir.lock_unused_count)
9519
9520         do_facet mds1 $LCTL set_param fail_loc=0
9521         do_facet mds1 $LCTL set_param fail_val=0
9522         [ $lck_cnt -lt $unused ] ||
9523                 error "No locks reclaimed, before:$unused, after:$lck_cnt"
9524
9525         rm $DIR/$tdir/m
9526         unlinkmany $DIR/$tdir/f $nr
9527 }
9528 run_test 134a "Server reclaims locks when reaching lock_reclaim_threshold"
9529
9530 test_134b() {
9531         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.54) ]] &&
9532                 skip "Need MDS version at least 2.7.54" && return
9533
9534         mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
9535         cancel_lru_locks mdc
9536
9537         local low_wm=$(do_facet mds1 $LCTL get_param -n \
9538                         ldlm.lock_reclaim_threshold_mb)
9539         # disable reclaim temporarily
9540         do_facet mds1 $LCTL set_param ldlm.lock_reclaim_threshold_mb=0
9541
9542         #define OBD_FAIL_LDLM_WATERMARK_HIGH     0x328
9543         do_facet mds1 $LCTL set_param fail_loc=0x328
9544         do_facet mds1 $LCTL set_param fail_val=500
9545
9546         $LCTL set_param debug=+trace
9547
9548         local nr=600
9549         createmany -o $DIR/$tdir/f $nr &
9550         local create_pid=$!
9551
9552         echo "Sleep $TIMEOUT seconds ..."
9553         sleep $TIMEOUT
9554         if ! ps -p $create_pid  > /dev/null 2>&1; then
9555                 do_facet mds1 $LCTL set_param fail_loc=0
9556                 do_facet mds1 $LCTL set_param fail_val=0
9557                 do_facet mds1 $LCTL set_param \
9558                         ldlm.lock_reclaim_threshold_mb=${low_wm}m
9559                 error "createmany finished incorrectly!"
9560         fi
9561         do_facet mds1 $LCTL set_param fail_loc=0
9562         do_facet mds1 $LCTL set_param fail_val=0
9563         do_facet mds1 $LCTL set_param ldlm.lock_reclaim_threshold_mb=${low_wm}m
9564         wait $create_pid || return 1
9565
9566         unlinkmany $DIR/$tdir/f $nr
9567 }
9568 run_test 134b "Server rejects lock request when reaching lock_limit_mb"
9569
9570 test_140() { #bug-17379
9571         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9572         test_mkdir -p $DIR/$tdir || error "Creating dir $DIR/$tdir"
9573         cd $DIR/$tdir || error "Changing to $DIR/$tdir"
9574         cp /usr/bin/stat . || error "Copying stat to $DIR/$tdir"
9575
9576         # VFS limits max symlink depth to 5(4KSTACK) or 7(8KSTACK) or 8
9577         # For kernel > 3.5, bellow only tests consecutive symlink (MAX 40)
9578         local i=0
9579         while i=`expr $i + 1`; do
9580                 test_mkdir -p $i || error "Creating dir $i"
9581                 cd $i || error "Changing to $i"
9582                 ln -s ../stat stat || error "Creating stat symlink"
9583                 # Read the symlink until ELOOP present,
9584                 # not LBUGing the system is considered success,
9585                 # we didn't overrun the stack.
9586                 $OPENFILE -f O_RDONLY stat >/dev/null 2>&1; ret=$?
9587                 [ $ret -ne 0 ] && {
9588                         if [ $ret -eq 40 ]; then
9589                                 break  # -ELOOP
9590                         else
9591                                 error "Open stat symlink"
9592                                 return
9593                         fi
9594                 }
9595         done
9596         i=`expr $i - 1`
9597         echo "The symlink depth = $i"
9598         [ $i -eq 5 -o $i -eq 7 -o $i -eq 8 -o $i -eq 40 ] ||
9599                                         error "Invalid symlink depth"
9600
9601         # Test recursive symlink
9602         ln -s symlink_self symlink_self
9603         $OPENFILE -f O_RDONLY symlink_self >/dev/null 2>&1; ret=$?
9604         echo "open symlink_self returns $ret"
9605         [ $ret -eq 40 ] || error "recursive symlink doesn't return -ELOOP"
9606 }
9607 run_test 140 "Check reasonable stack depth (shouldn't LBUG) ===="
9608
9609 test_150() {
9610         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9611         local TF="$TMP/$tfile"
9612
9613         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
9614         cp $TF $DIR/$tfile
9615         cancel_lru_locks osc
9616         cmp $TF $DIR/$tfile || error "$TMP/$tfile $DIR/$tfile differ"
9617         remount_client $MOUNT
9618         df -P $MOUNT
9619         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (remount)"
9620
9621         $TRUNCATE $TF 6000
9622         $TRUNCATE $DIR/$tfile 6000
9623         cancel_lru_locks osc
9624         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (truncate1)"
9625
9626         echo "12345" >>$TF
9627         echo "12345" >>$DIR/$tfile
9628         cancel_lru_locks osc
9629         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append1)"
9630
9631         echo "12345" >>$TF
9632         echo "12345" >>$DIR/$tfile
9633         cancel_lru_locks osc
9634         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append2)"
9635
9636         rm -f $TF
9637         true
9638 }
9639 run_test 150 "truncate/append tests"
9640
9641 #LU-2902 roc_hit was not able to read all values from lproc
9642 function roc_hit_init() {
9643         local list=$(comma_list $(osts_nodes))
9644         local dir=$DIR/$tdir-check
9645         local file=$dir/file
9646         local BEFORE
9647         local AFTER
9648         local idx
9649
9650         test_mkdir -p $dir
9651         #use setstripe to do a write to every ost
9652         for i in $(seq 0 $((OSTCOUNT-1))); do
9653                 $SETSTRIPE -c 1 -i $i $dir || error "$SETSTRIPE $file failed"
9654                 dd if=/dev/urandom of=$file bs=4k count=4 2>&1 > /dev/null
9655                 idx=$(printf %04x $i)
9656                 BEFORE=$(get_osd_param $list *OST*$idx stats |
9657                         awk '$1 == "cache_access" {sum += $7}
9658                                 END { printf("%0.0f", sum) }')
9659
9660                 cancel_lru_locks osc
9661                 cat $file >/dev/null
9662
9663                 AFTER=$(get_osd_param $list *OST*$idx stats |
9664                         awk '$1 == "cache_access" {sum += $7}
9665                                 END { printf("%0.0f", sum) }')
9666
9667                 echo BEFORE:$BEFORE AFTER:$AFTER
9668                 if ! let "AFTER - BEFORE == 4"; then
9669                         rm -rf $dir
9670                         error "roc_hit is not safe to use"
9671                 fi
9672                 rm $file
9673         done
9674
9675         rm -rf $dir
9676 }
9677
9678 function roc_hit() {
9679         local list=$(comma_list $(osts_nodes))
9680         echo $(get_osd_param $list '' stats |
9681                 awk '$1 == "cache_hit" {sum += $7}
9682                         END { printf("%0.0f", sum) }')
9683 }
9684
9685 function set_cache() {
9686         local on=1
9687
9688         if [ "$2" == "off" ]; then
9689                 on=0;
9690         fi
9691         local list=$(comma_list $(osts_nodes))
9692         set_osd_param $list '' $1_cache_enable $on
9693
9694         cancel_lru_locks osc
9695 }
9696
9697 test_151() {
9698         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9699         remote_ost_nodsh && skip "remote OST with nodsh" && return
9700
9701         local CPAGES=3
9702         local list=$(comma_list $(osts_nodes))
9703
9704         # check whether obdfilter is cache capable at all
9705         if ! get_osd_param $list '' read_cache_enable >/dev/null; then
9706                 echo "not cache-capable obdfilter"
9707                 return 0
9708         fi
9709
9710         # check cache is enabled on all obdfilters
9711         if get_osd_param $list '' read_cache_enable | grep 0; then
9712                 echo "oss cache is disabled"
9713                 return 0
9714         fi
9715
9716         set_osd_param $list '' writethrough_cache_enable 1
9717
9718         # check write cache is enabled on all obdfilters
9719         if get_osd_param $list '' writethrough_cache_enable | grep 0; then
9720                 echo "oss write cache is NOT enabled"
9721                 return 0
9722         fi
9723
9724         roc_hit_init
9725
9726         #define OBD_FAIL_OBD_NO_LRU  0x609
9727         do_nodes $list $LCTL set_param fail_loc=0x609
9728
9729         # pages should be in the case right after write
9730         dd if=/dev/urandom of=$DIR/$tfile bs=4k count=$CPAGES ||
9731                 error "dd failed"
9732
9733         local BEFORE=$(roc_hit)
9734         cancel_lru_locks osc
9735         cat $DIR/$tfile >/dev/null
9736         local AFTER=$(roc_hit)
9737
9738         do_nodes $list $LCTL set_param fail_loc=0
9739
9740         if ! let "AFTER - BEFORE == CPAGES"; then
9741                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
9742         fi
9743
9744         # the following read invalidates the cache
9745         cancel_lru_locks osc
9746         set_osd_param $list '' read_cache_enable 0
9747         cat $DIR/$tfile >/dev/null
9748
9749         # now data shouldn't be found in the cache
9750         BEFORE=$(roc_hit)
9751         cancel_lru_locks osc
9752         cat $DIR/$tfile >/dev/null
9753         AFTER=$(roc_hit)
9754         if let "AFTER - BEFORE != 0"; then
9755                 error "IN CACHE: before: $BEFORE, after: $AFTER"
9756         fi
9757
9758         set_osd_param $list '' read_cache_enable 1
9759         rm -f $DIR/$tfile
9760 }
9761 run_test 151 "test cache on oss and controls ==============================="
9762
9763 test_152() {
9764         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9765         local TF="$TMP/$tfile"
9766
9767         # simulate ENOMEM during write
9768 #define OBD_FAIL_OST_NOMEM      0x226
9769         lctl set_param fail_loc=0x80000226
9770         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
9771         cp $TF $DIR/$tfile
9772         sync || error "sync failed"
9773         lctl set_param fail_loc=0
9774
9775         # discard client's cache
9776         cancel_lru_locks osc
9777
9778         # simulate ENOMEM during read
9779         lctl set_param fail_loc=0x80000226
9780         cmp $TF $DIR/$tfile || error "cmp failed"
9781         lctl set_param fail_loc=0
9782
9783         rm -f $TF
9784 }
9785 run_test 152 "test read/write with enomem ============================"
9786
9787 test_153() {
9788         $MULTIOP $DIR/$tfile Ow4096Ycu || error "multiop failed"
9789 }
9790 run_test 153 "test if fdatasync does not crash ======================="
9791
9792 dot_lustre_fid_permission_check() {
9793         local fid=$1
9794         local ffid=$MOUNT/.lustre/fid/$fid
9795         local test_dir=$2
9796
9797         echo "stat fid $fid"
9798         stat $ffid > /dev/null || error "stat $ffid failed."
9799         echo "touch fid $fid"
9800         touch $ffid || error "touch $ffid failed."
9801         echo "write to fid $fid"
9802         cat /etc/hosts > $ffid || error "write $ffid failed."
9803         echo "read fid $fid"
9804         diff /etc/hosts $ffid || error "read $ffid failed."
9805         echo "append write to fid $fid"
9806         cat /etc/hosts >> $ffid || error "append write $ffid failed."
9807         echo "rename fid $fid"
9808         mv $ffid $test_dir/$tfile.1 &&
9809                 error "rename $ffid to $tfile.1 should fail."
9810         touch $test_dir/$tfile.1
9811         mv $test_dir/$tfile.1 $ffid &&
9812                 error "rename $tfile.1 to $ffid should fail."
9813         rm -f $test_dir/$tfile.1
9814         echo "truncate fid $fid"
9815         $TRUNCATE $ffid 777 || error "truncate $ffid failed."
9816         if [ $MDSCOUNT -lt 2 ]; then #FIXME when cross-MDT hard link is working
9817                 echo "link fid $fid"
9818                 ln -f $ffid $test_dir/tfile.lnk || error "link $ffid failed."
9819         fi
9820         if [ -n $(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl) ]; then
9821                 echo "setfacl fid $fid"
9822                 setfacl -R -m u:bin:rwx $ffid || error "setfacl $ffid failed."
9823                 echo "getfacl fid $fid"
9824                 getfacl $ffid >/dev/null || error "getfacl $ffid failed."
9825         fi
9826         echo "unlink fid $fid"
9827         unlink $MOUNT/.lustre/fid/$fid && error "unlink $ffid should fail."
9828         echo "mknod fid $fid"
9829         mknod $ffid c 1 3 && error "mknod $ffid should fail."
9830
9831         fid=[0xf00000400:0x1:0x0]
9832         ffid=$MOUNT/.lustre/fid/$fid
9833
9834         echo "stat non-exist fid $fid"
9835         stat $ffid > /dev/null && error "stat non-exist $ffid should fail."
9836         echo "write to non-exist fid $fid"
9837         cat /etc/hosts > $ffid && error "write non-exist $ffid should fail."
9838         echo "link new fid $fid"
9839         ln $test_dir/$tfile $ffid && error "link $ffid should fail."
9840
9841         mkdir -p $test_dir/$tdir
9842         touch $test_dir/$tdir/$tfile
9843         fid=$($LFS path2fid $test_dir/$tdir)
9844         rc=$?
9845         [ $rc -ne 0 ] &&
9846                 error "error: could not get fid for $test_dir/$dir/$tfile."
9847
9848         ffid=$MOUNT/.lustre/fid/$fid
9849
9850         echo "ls $fid"
9851         ls $ffid > /dev/null || error "ls $ffid failed."
9852         echo "touch $fid/$tfile.1"
9853         touch $ffid/$tfile.1 || error "touch $ffid/$tfile.1 failed."
9854
9855         echo "touch $MOUNT/.lustre/fid/$tfile"
9856         touch $MOUNT/.lustre/fid/$tfile && \
9857                 error "touch $MOUNT/.lustre/fid/$tfile should fail."
9858
9859         echo "setxattr to $MOUNT/.lustre/fid"
9860         setfattr -n trusted.name1 -v value1 $MOUNT/.lustre/fid
9861
9862         echo "listxattr for $MOUNT/.lustre/fid"
9863         getfattr -d -m "^trusted" $MOUNT/.lustre/fid
9864
9865         echo "delxattr from $MOUNT/.lustre/fid"
9866         setfattr -x trusted.name1 $MOUNT/.lustre/fid
9867
9868         echo "touch invalid fid: $MOUNT/.lustre/fid/[0x200000400:0x2:0x3]"
9869         touch $MOUNT/.lustre/fid/[0x200000400:0x2:0x3] &&
9870                 error "touch invalid fid should fail."
9871
9872         echo "touch non-normal fid: $MOUNT/.lustre/fid/[0x1:0x2:0x0]"
9873         touch $MOUNT/.lustre/fid/[0x1:0x2:0x0] &&
9874                 error "touch non-normal fid should fail."
9875
9876         echo "rename $tdir to $MOUNT/.lustre/fid"
9877         mrename $test_dir/$tdir $MOUNT/.lustre/fid &&
9878                 error "rename to $MOUNT/.lustre/fid should fail."
9879
9880         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.51) ]
9881         then            # LU-3547
9882                 local old_obf_mode=$(stat --format="%a" $DIR/.lustre/fid)
9883                 local new_obf_mode=777
9884
9885                 echo "change mode of $DIR/.lustre/fid to $new_obf_mode"
9886                 chmod $new_obf_mode $DIR/.lustre/fid ||
9887                         error "chmod $new_obf_mode $DIR/.lustre/fid failed"
9888
9889                 local obf_mode=$(stat --format=%a $DIR/.lustre/fid)
9890                 [ $obf_mode -eq $new_obf_mode ] ||
9891                         error "stat $DIR/.lustre/fid returned wrong mode $obf_mode"
9892
9893                 echo "restore mode of $DIR/.lustre/fid to $old_obf_mode"
9894                 chmod $old_obf_mode $DIR/.lustre/fid ||
9895                         error "chmod $old_obf_mode $DIR/.lustre/fid failed"
9896         fi
9897
9898         $OPENFILE -f O_LOV_DELAY_CREATE:O_CREAT $test_dir/$tfile-2
9899         fid=$($LFS path2fid $test_dir/$tfile-2)
9900
9901         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.50) ]
9902         then # LU-5424
9903                 echo "cp /etc/passwd $MOUNT/.lustre/fid/$fid"
9904                 cp /etc/passwd $MOUNT/.lustre/fid/$fid ||
9905                         error "create lov data thru .lustre failed"
9906         fi
9907         echo "cp /etc/passwd $test_dir/$tfile-2"
9908         cp /etc/passwd $test_dir/$tfile-2 ||
9909                 error "copy to $test_dir/$tfile-2 failed."
9910         echo "diff /etc/passwd $MOUNT/.lustre/fid/$fid"
9911         diff /etc/passwd $MOUNT/.lustre/fid/$fid ||
9912                 error "diff /etc/passwd $MOUNT/.lustre/fid/$fid failed."
9913
9914         rm -rf $test_dir/tfile.lnk
9915         rm -rf $test_dir/$tfile-2
9916 }
9917
9918 test_154A() {
9919         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
9920                 skip "Need MDS version at least 2.4.1" && return
9921
9922         touch $DIR/$tfile
9923         local FID=$($LFS path2fid $DIR/$tfile)
9924         [ -z "$FID" ] && error "path2fid unable to get $DIR/$tfile FID"
9925
9926         # check that we get the same pathname back
9927         local FOUND=$($LFS fid2path $MOUNT "$FID")
9928         [ -z "$FOUND" ] && error "fid2path unable to get $FID path"
9929         [ "$FOUND" != "$DIR/$tfile" ] &&
9930                 error "fid2path(path2fid($DIR/$tfile)) = $FOUND != $DIR/$tfile"
9931
9932         rm -rf $DIR/$tfile
9933 }
9934 run_test 154A "lfs path2fid and fid2path basic checks"
9935
9936 test_154a() {
9937         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9938         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
9939                 { skip "Need MDS version at least 2.2.51"; return 0; }
9940         [ -z "$(which setfacl)" ] && skip "must have setfacl tool" && return
9941
9942         cp /etc/hosts $DIR/$tfile
9943
9944         fid=$($LFS path2fid $DIR/$tfile)
9945         rc=$?
9946         [ $rc -ne 0 ] && error "error: could not get fid for $DIR/$tfile."
9947
9948         dot_lustre_fid_permission_check "$fid" $DIR ||
9949                 error "dot lustre permission check $fid failed"
9950
9951         rm -rf $MOUNT/.lustre && error ".lustre is not allowed to be unlinked"
9952
9953         touch $MOUNT/.lustre/file &&
9954                 error "creation is not allowed under .lustre"
9955
9956         mkdir $MOUNT/.lustre/dir &&
9957                 error "mkdir is not allowed under .lustre"
9958
9959         rm -rf $DIR/$tfile
9960 }
9961 run_test 154a "Open-by-FID"
9962
9963 test_154b() {
9964         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9965         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
9966                 { skip "Need MDS version at least 2.2.51"; return 0; }
9967
9968         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
9969
9970         local remote_dir=$DIR/$tdir/remote_dir
9971         local MDTIDX=1
9972         local rc=0
9973
9974         mkdir -p $DIR/$tdir
9975         $LFS mkdir -i $MDTIDX $remote_dir ||
9976                 error "create remote directory failed"
9977
9978         cp /etc/hosts $remote_dir/$tfile
9979
9980         fid=$($LFS path2fid $remote_dir/$tfile)
9981         rc=$?
9982         [ $rc -ne 0 ] && error "error: could not get fid for $remote_dir/$tfile"
9983
9984         dot_lustre_fid_permission_check "$fid" $remote_dir ||
9985                 error "dot lustre permission check $fid failed"
9986         rm -rf $DIR/$tdir
9987 }
9988 run_test 154b "Open-by-FID for remote directory"
9989
9990 test_154c() {
9991         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
9992                 skip "Need MDS version at least 2.4.1" && return
9993
9994         touch $DIR/$tfile.1 $DIR/$tfile.2 $DIR/$tfile.3
9995         local FID1=$($LFS path2fid $DIR/$tfile.1)
9996         local FID2=$($LFS path2fid $DIR/$tfile.2)
9997         local FID3=$($LFS path2fid $DIR/$tfile.3)
9998
9999         local N=1
10000         $LFS path2fid $DIR/$tfile.[123] | while read PATHNAME FID; do
10001                 [ "$PATHNAME" = "$DIR/$tfile.$N:" ] ||
10002                         error "path2fid pathname $PATHNAME != $DIR/$tfile.$N:"
10003                 local want=FID$N
10004                 [ "$FID" = "${!want}" ] ||
10005                         error "path2fid $PATHNAME FID $FID != FID$N ${!want}"
10006                 N=$((N + 1))
10007         done
10008
10009         $LFS fid2path $MOUNT "$FID1" "$FID2" "$FID3" | while read PATHNAME;
10010         do
10011                 [ "$PATHNAME" = "$DIR/$tfile.$N" ] ||
10012                         error "fid2path pathname $PATHNAME != $DIR/$tfile.$N:"
10013                 N=$((N + 1))
10014         done
10015 }
10016 run_test 154c "lfs path2fid and fid2path multiple arguments"
10017
10018 test_154d() {
10019         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.53) ]] &&
10020                 skip "Need MDS version at least 2.5.53" && return
10021
10022         if remote_mds; then
10023                 nid=$($LCTL list_nids | sed  "s/\./\\\./g")
10024         else
10025                 nid="0@lo"
10026         fi
10027         local proc_ofile="mdt.*.exports.'$nid'.open_files"
10028         local fd
10029         local cmd
10030
10031         rm -f $DIR/$tfile
10032         touch $DIR/$tfile
10033
10034         local fid=$($LFS path2fid $DIR/$tfile)
10035         # Open the file
10036         fd=$(free_fd)
10037         cmd="exec $fd<$DIR/$tfile"
10038         eval $cmd
10039         local fid_list=$(do_facet $SINGLEMDS $LCTL get_param $proc_ofile)
10040         echo "$fid_list" | grep "$fid"
10041         rc=$?
10042
10043         cmd="exec $fd>/dev/null"
10044         eval $cmd
10045         if [ $rc -ne 0 ]; then
10046                 error "FID $fid not found in open files list $fid_list"
10047         fi
10048 }
10049 run_test 154d "Verify open file fid"
10050
10051 test_154e()
10052 {
10053         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.50) ]] &&
10054                 skip "Need MDS version at least 2.6.50" && return
10055
10056         if ls -a $MOUNT | grep -q '^\.lustre$'; then
10057                 error ".lustre returned by readdir"
10058         fi
10059 }
10060 run_test 154e ".lustre is not returned by readdir"
10061
10062 test_154f() {
10063         # create parent directory on a single MDT to avoid cross-MDT hardlinks
10064         test_mkdir -p -c1 $DIR/$tdir/d
10065         # test dirs inherit from its stripe
10066         mkdir -p $DIR/$tdir/d/foo1 || error "mkdir error"
10067         mkdir -p $DIR/$tdir/d/foo2 || error "mkdir error"
10068         cp /etc/hosts $DIR/$tdir/d/foo1/$tfile
10069         ln $DIR/$tdir/d/foo1/$tfile $DIR/$tdir/d/foo2/link
10070         touch $DIR/f
10071
10072         # get fid of parents
10073         local FID0=$($LFS path2fid $DIR/$tdir/d)
10074         local FID1=$($LFS path2fid $DIR/$tdir/d/foo1)
10075         local FID2=$($LFS path2fid $DIR/$tdir/d/foo2)
10076         local FID3=$($LFS path2fid $DIR)
10077
10078         # check that path2fid --parents returns expected <parent_fid>/name
10079         # 1) test for a directory (single parent)
10080         local parent=$($LFS path2fid --parents $DIR/$tdir/d/foo1)
10081         [ "$parent" == "$FID0/foo1" ] ||
10082                 error "expected parent: $FID0/foo1, got: $parent"
10083
10084         # 2) test for a file with nlink > 1 (multiple parents)
10085         parent=$($LFS path2fid --parents $DIR/$tdir/d/foo1/$tfile)
10086         echo "$parent" | grep -F "$FID1/$tfile" ||
10087                 error "$FID1/$tfile not returned in parent list"
10088         echo "$parent" | grep -F "$FID2/link" ||
10089                 error "$FID2/link not returned in parent list"
10090
10091         # 3) get parent by fid
10092         local file_fid=$($LFS path2fid $DIR/$tdir/d/foo1/$tfile)
10093         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
10094         echo "$parent" | grep -F "$FID1/$tfile" ||
10095                 error "$FID1/$tfile not returned in parent list (by fid)"
10096         echo "$parent" | grep -F "$FID2/link" ||
10097                 error "$FID2/link not returned in parent list (by fid)"
10098
10099         # 4) test for entry in root directory
10100         parent=$($LFS path2fid --parents $DIR/f)
10101         echo "$parent" | grep -F "$FID3/f" ||
10102                 error "$FID3/f not returned in parent list"
10103
10104         # 5) test it on root directory
10105         [ -z "$($LFS path2fid --parents $MOUNT 2>/dev/null)" ] ||
10106                 error "$MOUNT should not have parents"
10107
10108         # enable xattr caching and check that linkea is correctly updated
10109         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
10110         save_lustre_params client "llite.*.xattr_cache" > $save
10111         lctl set_param llite.*.xattr_cache 1
10112
10113         # 6.1) linkea update on rename
10114         mv $DIR/$tdir/d/foo1/$tfile $DIR/$tdir/d/foo2/$tfile.moved
10115
10116         # get parents by fid
10117         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
10118         # foo1 should no longer be returned in parent list
10119         echo "$parent" | grep -F "$FID1" &&
10120                 error "$FID1 should no longer be in parent list"
10121         # the new path should appear
10122         echo "$parent" | grep -F "$FID2/$tfile.moved" ||
10123                 error "$FID2/$tfile.moved is not in parent list"
10124
10125         # 6.2) linkea update on unlink
10126         rm -f $DIR/$tdir/d/foo2/link
10127         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
10128         # foo2/link should no longer be returned in parent list
10129         echo "$parent" | grep -F "$FID2/link" &&
10130                 error "$FID2/link should no longer be in parent list"
10131         true
10132
10133         rm -f $DIR/f
10134         restore_lustre_params < $save
10135 }
10136 run_test 154f "get parent fids by reading link ea"
10137
10138 test_154g()
10139 {
10140         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.92) ]] ||
10141                 { skip "Need MDS version at least 2.6.92"; return 0; }
10142
10143         mkdir -p $DIR/$tdir
10144         llapi_fid_test -d $DIR/$tdir
10145 }
10146 run_test 154g "various llapi FID tests"
10147
10148 test_155_small_load() {
10149     local temp=$TMP/$tfile
10150     local file=$DIR/$tfile
10151
10152     dd if=/dev/urandom of=$temp bs=6096 count=1 || \
10153         error "dd of=$temp bs=6096 count=1 failed"
10154     cp $temp $file
10155     cancel_lru_locks osc
10156     cmp $temp $file || error "$temp $file differ"
10157
10158     $TRUNCATE $temp 6000
10159     $TRUNCATE $file 6000
10160     cmp $temp $file || error "$temp $file differ (truncate1)"
10161
10162     echo "12345" >>$temp
10163     echo "12345" >>$file
10164     cmp $temp $file || error "$temp $file differ (append1)"
10165
10166     echo "12345" >>$temp
10167     echo "12345" >>$file
10168     cmp $temp $file || error "$temp $file differ (append2)"
10169
10170     rm -f $temp $file
10171     true
10172 }
10173
10174 test_155_big_load() {
10175     remote_ost_nodsh && skip "remote OST with nodsh" && return
10176     local temp=$TMP/$tfile
10177     local file=$DIR/$tfile
10178
10179     free_min_max
10180     local cache_size=$(do_facet ost$((MAXI+1)) \
10181         "awk '/cache/ {sum+=\\\$4} END {print sum}' /proc/cpuinfo")
10182     local large_file_size=$((cache_size * 2))
10183
10184     echo "OSS cache size: $cache_size KB"
10185     echo "Large file size: $large_file_size KB"
10186
10187     [ $MAXV -le $large_file_size ] && \
10188         skip_env "max available OST size needs > $large_file_size KB" && \
10189         return 0
10190
10191     $SETSTRIPE $file -c 1 -i $MAXI || error "$SETSTRIPE $file failed"
10192
10193     dd if=/dev/urandom of=$temp bs=$large_file_size count=1k || \
10194         error "dd of=$temp bs=$large_file_size count=1k failed"
10195     cp $temp $file
10196     ls -lh $temp $file
10197     cancel_lru_locks osc
10198     cmp $temp $file || error "$temp $file differ"
10199
10200     rm -f $temp $file
10201     true
10202 }
10203
10204 test_155a() {
10205         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10206         set_cache read on
10207         set_cache writethrough on
10208         test_155_small_load
10209 }
10210 run_test 155a "Verify small file correctness: read cache:on write_cache:on"
10211
10212 test_155b() {
10213         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10214         set_cache read on
10215         set_cache writethrough off
10216         test_155_small_load
10217 }
10218 run_test 155b "Verify small file correctness: read cache:on write_cache:off"
10219
10220 test_155c() {
10221         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10222         set_cache read off
10223         set_cache writethrough on
10224         test_155_small_load
10225 }
10226 run_test 155c "Verify small file correctness: read cache:off write_cache:on"
10227
10228 test_155d() {
10229         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10230         set_cache read off
10231         set_cache writethrough off
10232         test_155_small_load
10233 }
10234 run_test 155d "Verify small file correctness: read cache:off write_cache:off"
10235
10236 test_155e() {
10237         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10238         set_cache read on
10239         set_cache writethrough on
10240         test_155_big_load
10241 }
10242 run_test 155e "Verify big file correctness: read cache:on write_cache:on"
10243
10244 test_155f() {
10245         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10246         set_cache read on
10247         set_cache writethrough off
10248         test_155_big_load
10249 }
10250 run_test 155f "Verify big file correctness: read cache:on write_cache:off"
10251
10252 test_155g() {
10253         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10254         set_cache read off
10255         set_cache writethrough on
10256         test_155_big_load
10257 }
10258 run_test 155g "Verify big file correctness: read cache:off write_cache:on"
10259
10260 test_155h() {
10261         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10262         set_cache read off
10263         set_cache writethrough off
10264         test_155_big_load
10265 }
10266 run_test 155h "Verify big file correctness: read cache:off write_cache:off"
10267
10268 test_156() {
10269         remote_ost_nodsh && skip "remote OST with nodsh" && return
10270         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10271         local CPAGES=3
10272         local BEFORE
10273         local AFTER
10274         local file="$DIR/$tfile"
10275
10276         [ "$(facet_fstype ost1)" = "zfs" -a \
10277            $(lustre_version_code ost1 -lt $(version_code 2.6.93)) ] &&
10278                 skip "LU-1956/LU-2261: stats not implemented on OSD ZFS" &&
10279                 return
10280
10281         roc_hit_init
10282
10283         log "Turn on read and write cache"
10284         set_cache read on
10285         set_cache writethrough on
10286
10287         log "Write data and read it back."
10288         log "Read should be satisfied from the cache."
10289         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
10290         BEFORE=$(roc_hit)
10291         cancel_lru_locks osc
10292         cat $file >/dev/null
10293         AFTER=$(roc_hit)
10294         if ! let "AFTER - BEFORE == CPAGES"; then
10295                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10296         else
10297                 log "cache hits:: before: $BEFORE, after: $AFTER"
10298         fi
10299
10300         log "Read again; it should be satisfied from the cache."
10301         BEFORE=$AFTER
10302         cancel_lru_locks osc
10303         cat $file >/dev/null
10304         AFTER=$(roc_hit)
10305         if ! let "AFTER - BEFORE == CPAGES"; then
10306                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10307         else
10308                 log "cache hits:: before: $BEFORE, after: $AFTER"
10309         fi
10310
10311         log "Turn off the read cache and turn on the write cache"
10312         set_cache read off
10313         set_cache writethrough on
10314
10315         log "Read again; it should be satisfied from the cache."
10316         BEFORE=$(roc_hit)
10317         cancel_lru_locks osc
10318         cat $file >/dev/null
10319         AFTER=$(roc_hit)
10320         if ! let "AFTER - BEFORE == CPAGES"; then
10321                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10322         else
10323                 log "cache hits:: before: $BEFORE, after: $AFTER"
10324         fi
10325
10326         log "Read again; it should not be satisfied from the cache."
10327         BEFORE=$AFTER
10328         cancel_lru_locks osc
10329         cat $file >/dev/null
10330         AFTER=$(roc_hit)
10331         if ! let "AFTER - BEFORE == 0"; then
10332                 error "IN CACHE: before: $BEFORE, after: $AFTER"
10333         else
10334                 log "cache hits:: before: $BEFORE, after: $AFTER"
10335         fi
10336
10337         log "Write data and read it back."
10338         log "Read should be satisfied from the cache."
10339         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
10340         BEFORE=$(roc_hit)
10341         cancel_lru_locks osc
10342         cat $file >/dev/null
10343         AFTER=$(roc_hit)
10344         if ! let "AFTER - BEFORE == CPAGES"; then
10345                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10346         else
10347                 log "cache hits:: before: $BEFORE, after: $AFTER"
10348         fi
10349
10350         log "Read again; it should not be satisfied from the cache."
10351         BEFORE=$AFTER
10352         cancel_lru_locks osc
10353         cat $file >/dev/null
10354         AFTER=$(roc_hit)
10355         if ! let "AFTER - BEFORE == 0"; then
10356                 error "IN CACHE: before: $BEFORE, after: $AFTER"
10357         else
10358                 log "cache hits:: before: $BEFORE, after: $AFTER"
10359         fi
10360
10361         log "Turn off read and write cache"
10362         set_cache read off
10363         set_cache writethrough off
10364
10365         log "Write data and read it back"
10366         log "It should not be satisfied from the cache."
10367         rm -f $file
10368         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
10369         cancel_lru_locks osc
10370         BEFORE=$(roc_hit)
10371         cat $file >/dev/null
10372         AFTER=$(roc_hit)
10373         if ! let "AFTER - BEFORE == 0"; then
10374                 error_ignore bz20762 "IN CACHE: before: $BEFORE, after: $AFTER"
10375         else
10376                 log "cache hits:: before: $BEFORE, after: $AFTER"
10377         fi
10378
10379         log "Turn on the read cache and turn off the write cache"
10380         set_cache read on
10381         set_cache writethrough off
10382
10383         log "Write data and read it back"
10384         log "It should not be satisfied from the cache."
10385         rm -f $file
10386         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
10387         BEFORE=$(roc_hit)
10388         cancel_lru_locks osc
10389         cat $file >/dev/null
10390         AFTER=$(roc_hit)
10391         if ! let "AFTER - BEFORE == 0"; then
10392                 error_ignore bz20762 "IN CACHE: before: $BEFORE, after: $AFTER"
10393         else
10394                 log "cache hits:: before: $BEFORE, after: $AFTER"
10395         fi
10396
10397         log "Read again; it should be satisfied from the cache."
10398         BEFORE=$(roc_hit)
10399         cancel_lru_locks osc
10400         cat $file >/dev/null
10401         AFTER=$(roc_hit)
10402         if ! let "AFTER - BEFORE == CPAGES"; then
10403                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10404         else
10405                 log "cache hits:: before: $BEFORE, after: $AFTER"
10406         fi
10407
10408         rm -f $file
10409 }
10410 run_test 156 "Verification of tunables"
10411
10412 #Changelogs
10413 err17935 () {
10414         if [[ $MDSCOUNT -gt 1 ]]; then
10415                 error_ignore bz17935 $*
10416         else
10417                 error $*
10418         fi
10419 }
10420
10421 changelog_chmask()
10422 {
10423         local CL_MASK_PARAM="mdd.$MDT0.changelog_mask"
10424
10425         MASK=$(do_facet $SINGLEMDS $LCTL get_param $CL_MASK_PARAM| grep -c "$1")
10426
10427         if [ $MASK -eq 1 ]; then
10428                 do_facet $SINGLEMDS $LCTL set_param $CL_MASK_PARAM="-$1"
10429         else
10430                 do_facet $SINGLEMDS $LCTL set_param $CL_MASK_PARAM="+$1"
10431         fi
10432 }
10433
10434 changelog_extract_field() {
10435         local mdt=$1
10436         local cltype=$2
10437         local file=$3
10438         local identifier=$4
10439
10440         $LFS changelog $mdt | gawk "/$cltype.*$file$/ {
10441                 print gensub(/^.* "$identifier'(\[[^\]]*\]).*$/,"\\1",1)}' |
10442                 tail -1
10443 }
10444
10445 test_160a() {
10446         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10447         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10448         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] ||
10449                 { skip "Need MDS version at least 2.2.0"; return; }
10450
10451         local CL_USERS="mdd.$MDT0.changelog_users"
10452         local GET_CL_USERS="do_facet $SINGLEMDS $LCTL get_param -n $CL_USERS"
10453         USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_register -n)
10454         echo "Registered as changelog user $USER"
10455         $GET_CL_USERS | grep -q $USER ||
10456                 error "User $USER not found in changelog_users"
10457
10458         # change something
10459         test_mkdir -p $DIR/$tdir/pics/2008/zachy
10460         touch $DIR/$tdir/pics/2008/zachy/timestamp
10461         cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg
10462         mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
10463         ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
10464         ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
10465         rm $DIR/$tdir/pics/desktop.jpg
10466
10467         $LFS changelog $MDT0 | tail -5
10468
10469         echo "verifying changelog mask"
10470         changelog_chmask "MKDIR"
10471         changelog_chmask "CLOSE"
10472
10473         test_mkdir -p $DIR/$tdir/pics/zach/sofia
10474         echo "zzzzzz" > $DIR/$tdir/pics/zach/file
10475
10476         changelog_chmask "MKDIR"
10477         changelog_chmask "CLOSE"
10478
10479         test_mkdir -p $DIR/$tdir/pics/2008/sofia
10480         echo "zzzzzz" > $DIR/$tdir/pics/zach/file
10481
10482         $LFS changelog $MDT0
10483         MKDIRS=$($LFS changelog $MDT0 | tail -5 | grep -c "MKDIR")
10484         CLOSES=$($LFS changelog $MDT0 | tail -5 | grep -c "CLOSE")
10485         [ $MKDIRS -eq 1 ] || err17935 "MKDIR changelog mask count $DIRS != 1"
10486         [ $CLOSES -eq 1 ] || err17935 "CLOSE changelog mask count $DIRS != 1"
10487
10488         # verify contents
10489         echo "verifying target fid"
10490         fidc=$(changelog_extract_field $MDT0 "CREAT" "timestamp" "t=")
10491         fidf=$($LFS path2fid $DIR/$tdir/pics/zach/timestamp)
10492         [ "$fidc" == "$fidf" ] ||
10493                 err17935 "fid in changelog $fidc != file fid $fidf"
10494         echo "verifying parent fid"
10495         fidc=$(changelog_extract_field $MDT0 "CREAT" "timestamp" "p=")
10496         fidf=$($LFS path2fid $DIR/$tdir/pics/zach)
10497         [ "$fidc" == "$fidf" ] ||
10498                 err17935 "pfid in changelog $fidc != dir fid $fidf"
10499
10500         USER_REC1=$($GET_CL_USERS | awk "\$1 == \"$USER\" {print \$2}")
10501         $LFS changelog_clear $MDT0 $USER $(($USER_REC1 + 5))
10502         USER_REC2=$($GET_CL_USERS | awk "\$1 == \"$USER\" {print \$2}")
10503         echo "verifying user clear: $(( $USER_REC1 + 5 )) == $USER_REC2"
10504         [ $USER_REC2 == $(($USER_REC1 + 5)) ] ||
10505                 err17935 "user index expected $(($USER_REC1 + 5)) is $USER_REC2"
10506
10507         MIN_REC=$($GET_CL_USERS |
10508                 awk 'min == "" || $2 < min {min = $2}; END {print min}')
10509         FIRST_REC=$($LFS changelog $MDT0 | head -n1 | awk '{print $1}')
10510         echo "verifying min purge: $(( $MIN_REC + 1 )) == $FIRST_REC"
10511         [ $FIRST_REC == $(($MIN_REC + 1)) ] ||
10512                 err17935 "first index should be $(($MIN_REC + 1)) is $FIRST_REC"
10513
10514         # LU-3446 changelog index reset on MDT restart
10515         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
10516         CUR_REC1=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
10517         $LFS changelog_clear $MDT0 $USER 0
10518         stop $SINGLEMDS || error "Fail to stop MDT."
10519         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
10520         CUR_REC2=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
10521         echo "verifying index survives MDT restart: $CUR_REC1 == $CUR_REC2"
10522         [ $CUR_REC1 == $CUR_REC2 ] ||
10523                 err17935 "current index should be $CUR_REC1 is $CUR_REC2"
10524
10525         echo "verifying user deregister"
10526         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $USER
10527         $GET_CL_USERS | grep -q $USER &&
10528                 error "User $USER still in changelog_users"
10529
10530         USERS=$(( $($GET_CL_USERS | wc -l) - 2 ))
10531         if [ $USERS -eq 0 ]; then
10532                 LAST_REC1=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
10533                 touch $DIR/$tdir/chloe
10534                 LAST_REC2=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
10535                 echo "verify changelogs are off: $LAST_REC1 == $LAST_REC2"
10536                 [ $LAST_REC1 == $LAST_REC2 ] || error "changelogs not off"
10537         else
10538                 echo "$USERS other changelog users; can't verify off"
10539         fi
10540 }
10541 run_test 160a "changelog sanity"
10542
10543 test_160b() { # LU-3587
10544         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10545         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10546         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] ||
10547                 { skip "Need MDS version at least 2.2.0"; return; }
10548
10549         local CL_USERS="mdd.$MDT0.changelog_users"
10550         local GET_CL_USERS="do_facet $SINGLEMDS $LCTL get_param -n $CL_USERS"
10551         USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_register -n)
10552         echo "Registered as changelog user $USER"
10553         $GET_CL_USERS | grep -q $USER ||
10554                 error "User $USER not found in changelog_users"
10555
10556         local LONGNAME1=$(str_repeat a 255)
10557         local LONGNAME2=$(str_repeat b 255)
10558
10559         cd $DIR
10560         echo "creating very long named file"
10561         touch $LONGNAME1 || error "create of $LONGNAME1 failed"
10562         echo "moving very long named file"
10563         mv $LONGNAME1 $LONGNAME2
10564
10565         $LFS changelog $MDT0 | grep RENME
10566
10567         echo "deregistering $USER"
10568         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $USER
10569
10570         rm -f $LONGNAME2
10571 }
10572 run_test 160b "Verify that very long rename doesn't crash in changelog"
10573
10574 test_160c() {
10575         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10576
10577         local rc=0
10578         local server_version=$(lustre_version_code $SINGLEMDS)
10579
10580         [[ $server_version -gt $(version_code 2.5.57) ]] ||
10581                 [[ $server_version -gt $(version_code 2.5.1) &&
10582                    $server_version -lt $(version_code 2.5.50) ]] ||
10583                 { skip "Need MDS version at least 2.5.58 or 2.5.2+"; return; }
10584         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10585
10586         # Registration step
10587         local USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
10588                 changelog_register -n)
10589
10590         rm -rf $DIR/$tdir
10591         mkdir -p $DIR/$tdir
10592         $MCREATE $DIR/$tdir/foo_160c
10593         changelog_chmask "TRUNC"
10594         $TRUNCATE $DIR/$tdir/foo_160c 200
10595         changelog_chmask "TRUNC"
10596         $TRUNCATE $DIR/$tdir/foo_160c 199
10597         $LFS changelog $MDT0
10598         TRUNCS=$($LFS changelog $MDT0 | tail -5 | grep -c "TRUNC")
10599         [ $TRUNCS -eq 1 ] || err17935 "TRUNC changelog mask count $TRUNCS != 1"
10600         $LFS changelog_clear $MDT0 $USER 0
10601
10602         # Deregistration step
10603         echo "deregistering $USER"
10604         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $USER
10605 }
10606 run_test 160c "verify that changelog log catch the truncate event"
10607
10608 test_160d() {
10609         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10610         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
10611
10612         local server_version=$(lustre_version_code mds1)
10613         local CL_MASK_PARAM="mdd.$MDT0.changelog_mask"
10614
10615         [[ $server_version -ge $(version_code 2.7.60) ]] ||
10616                 { skip "Need MDS version at least 2.7.60+"; return; }
10617         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10618
10619         # Registration step
10620         local USER=$(do_facet mds1 $LCTL --device $MDT0 \
10621                 changelog_register -n)
10622
10623         mkdir -p $DIR/$tdir/migrate_dir
10624         $LFS changelog_clear $MDT0 $USER 0
10625
10626         $LFS migrate -m 1 $DIR/$tdir/migrate_dir || error "migrate fails"
10627         $LFS changelog $MDT0
10628         MIGRATES=$($LFS changelog $MDT0 | tail -5 | grep -c "MIGRT")
10629         $LFS changelog_clear $MDT0 $USER 0
10630         [ $MIGRATES -eq 1 ] ||
10631                 error "MIGRATE changelog mask count $MIGRATES != 1"
10632
10633         # Deregistration step
10634         do_facet mds1 $LCTL --device $MDT0 changelog_deregister $USER
10635 }
10636 run_test 160d "verify that changelog log catch the migrate event"
10637
10638 test_161a() {
10639         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10640         test_mkdir -p -c1 $DIR/$tdir
10641         cp /etc/hosts $DIR/$tdir/$tfile
10642         test_mkdir -c1 $DIR/$tdir/foo1
10643         test_mkdir -c1 $DIR/$tdir/foo2
10644         ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/sofia
10645         ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/zachary
10646         ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/luna
10647         ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/thor
10648         local FID=$($LFS path2fid $DIR/$tdir/$tfile | tr -d '[]')
10649         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
10650                 $LFS fid2path $DIR $FID
10651                 err17935 "bad link ea"
10652         fi
10653     # middle
10654     rm $DIR/$tdir/foo2/zachary
10655     # last
10656     rm $DIR/$tdir/foo2/thor
10657     # first
10658     rm $DIR/$tdir/$tfile
10659     # rename
10660     mv $DIR/$tdir/foo1/sofia $DIR/$tdir/foo2/maggie
10661     if [ "$($LFS fid2path $FSNAME --link 1 $FID)" != "$tdir/foo2/maggie" ]
10662         then
10663         $LFS fid2path $DIR $FID
10664         err17935 "bad link rename"
10665     fi
10666     rm $DIR/$tdir/foo2/maggie
10667
10668         # overflow the EA
10669         local longname=filename_avg_len_is_thirty_two_
10670         createmany -l$DIR/$tdir/foo1/luna $DIR/$tdir/foo2/$longname 1000 ||
10671                 error "failed to hardlink many files"
10672         links=$($LFS fid2path $DIR $FID | wc -l)
10673         echo -n "${links}/1000 links in link EA"
10674         [[ $links -gt 60 ]] ||
10675                 err17935 "expected at least 60 links in link EA"
10676         unlinkmany $DIR/$tdir/foo2/$longname 1000 ||
10677                 error "failed to unlink many hardlinks"
10678 }
10679 run_test 161a "link ea sanity"
10680
10681 test_161b() {
10682         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10683         [ $MDSCOUNT -lt 2 ] &&
10684                 skip "skipping remote directory test" && return
10685         local MDTIDX=1
10686         local remote_dir=$DIR/$tdir/remote_dir
10687
10688         mkdir -p $DIR/$tdir
10689         $LFS mkdir -i $MDTIDX $remote_dir ||
10690                 error "create remote directory failed"
10691
10692         cp /etc/hosts $remote_dir/$tfile
10693         mkdir -p $remote_dir/foo1
10694         mkdir -p $remote_dir/foo2
10695         ln $remote_dir/$tfile $remote_dir/foo1/sofia
10696         ln $remote_dir/$tfile $remote_dir/foo2/zachary
10697         ln $remote_dir/$tfile $remote_dir/foo1/luna
10698         ln $remote_dir/$tfile $remote_dir/foo2/thor
10699
10700         local FID=$($LFS path2fid $remote_dir/$tfile | tr -d '[' |
10701                      tr -d ']')
10702         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
10703                 $LFS fid2path $DIR $FID
10704                 err17935 "bad link ea"
10705         fi
10706         # middle
10707         rm $remote_dir/foo2/zachary
10708         # last
10709         rm $remote_dir/foo2/thor
10710         # first
10711         rm $remote_dir/$tfile
10712         # rename
10713         mv $remote_dir/foo1/sofia $remote_dir/foo2/maggie
10714         local link_path=$($LFS fid2path $FSNAME --link 1 $FID)
10715         if [ "$DIR/$link_path" != "$remote_dir/foo2/maggie" ]; then
10716                 $LFS fid2path $DIR $FID
10717                 err17935 "bad link rename"
10718         fi
10719         rm $remote_dir/foo2/maggie
10720
10721         # overflow the EA
10722         local longname=filename_avg_len_is_thirty_two_
10723         createmany -l$remote_dir/foo1/luna $remote_dir/foo2/$longname 1000 ||
10724                 error "failed to hardlink many files"
10725         links=$($LFS fid2path $DIR $FID | wc -l)
10726         echo -n "${links}/1000 links in link EA"
10727         [[ ${links} -gt 60 ]] ||
10728                 err17935 "expected at least 60 links in link EA"
10729         unlinkmany $remote_dir/foo2/$longname 1000 ||
10730         error "failed to unlink many hardlinks"
10731 }
10732 run_test 161b "link ea sanity under remote directory"
10733
10734 test_161c() {
10735         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10736         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10737         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.1.5) ]] &&
10738                 skip "Need MDS version at least 2.1.5" && return
10739
10740         # define CLF_RENAME_LAST 0x0001
10741         # rename overwrite a target having nlink = 1 (changelog flag 0x1)
10742         local USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
10743                 changelog_register -n)
10744         rm -rf $DIR/$tdir
10745         mkdir -p $DIR/$tdir
10746         touch $DIR/$tdir/foo_161c
10747         touch $DIR/$tdir/bar_161c
10748         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
10749         $LFS changelog $MDT0 | grep RENME
10750         local flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | \
10751                 cut -f5 -d' ')
10752         $LFS changelog_clear $MDT0 $USER 0
10753         if [ x$flags != "x0x1" ]; then
10754                 do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister \
10755                         $USER
10756                 error "flag $flags is not 0x1"
10757         fi
10758         echo "rename overwrite a target having nlink = 1," \
10759                 "changelog record has flags of $flags"
10760
10761         # rename overwrite a target having nlink > 1 (changelog flag 0x0)
10762         touch $DIR/$tdir/foo_161c
10763         touch $DIR/$tdir/bar_161c
10764         ln $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
10765         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
10766         $LFS changelog $MDT0 | grep RENME
10767         flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | cut -f5 -d' ')
10768         $LFS changelog_clear $MDT0 $USER 0
10769         if [ x$flags != "x0x0" ]; then
10770                 do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister \
10771                         $USER
10772                 error "flag $flags is not 0x0"
10773         fi
10774         echo "rename overwrite a target having nlink > 1," \
10775                 "changelog record has flags of $flags"
10776
10777         # rename doesn't overwrite a target (changelog flag 0x0)
10778         touch $DIR/$tdir/foo_161c
10779         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/foo2_161c
10780         $LFS changelog $MDT0 | grep RENME
10781         flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | cut -f5 -d' ')
10782         $LFS changelog_clear $MDT0 $USER 0
10783         if [ x$flags != "x0x0" ]; then
10784                 do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister \
10785                         $USER
10786                 error "flag $flags is not 0x0"
10787         fi
10788         echo "rename doesn't overwrite a target," \
10789                 "changelog record has flags of $flags"
10790
10791         # define CLF_UNLINK_LAST 0x0001
10792         # unlink a file having nlink = 1 (changelog flag 0x1)
10793         rm -f $DIR/$tdir/foo2_161c
10794         $LFS changelog $MDT0 | grep UNLNK
10795         flags=$($LFS changelog $MDT0 | grep UNLNK | tail -1 | cut -f5 -d' ')
10796         $LFS changelog_clear $MDT0 $USER 0
10797         if [ x$flags != "x0x1" ]; then
10798                 do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister \
10799                         $USER
10800                 error "flag $flags is not 0x1"
10801         fi
10802         echo "unlink a file having nlink = 1," \
10803                 "changelog record has flags of $flags"
10804
10805         # unlink a file having nlink > 1 (changelog flag 0x0)
10806         ln -f $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
10807         rm -f $DIR/$tdir/foobar_161c
10808         $LFS changelog $MDT0 | grep UNLNK
10809         flags=$($LFS changelog $MDT0 | grep UNLNK | tail -1 | cut -f5 -d' ')
10810         $LFS changelog_clear $MDT0 $USER 0
10811         if [ x$flags != "x0x0" ]; then
10812                 do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister \
10813                         $USER
10814                 error "flag $flags is not 0x0"
10815         fi
10816         echo "unlink a file having nlink > 1," \
10817                 "changelog record has flags of $flags"
10818         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $USER
10819 }
10820 run_test 161c "check CL_RENME[UNLINK] changelog record flags"
10821
10822 check_path() {
10823     local expected=$1
10824     shift
10825     local fid=$2
10826
10827     local path=$(${LFS} fid2path $*)
10828     # Remove the '//' indicating a remote directory
10829     path=$(echo $path | sed 's#//#/#g')
10830     RC=$?
10831
10832     if [ $RC -ne 0 ]; then
10833         err17935 "path looked up of $expected failed. Error $RC"
10834         return $RC
10835     elif [ "${path}" != "${expected}" ]; then
10836         err17935 "path looked up \"${path}\" instead of \"${expected}\""
10837         return 2
10838     fi
10839     echo "fid $fid resolves to path $path (expected $expected)"
10840 }
10841
10842 test_162a() { # was test_162
10843         # Make changes to filesystem
10844         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10845         test_mkdir -p -c1 $DIR/$tdir/d2
10846         touch $DIR/$tdir/d2/$tfile
10847         touch $DIR/$tdir/d2/x1
10848         touch $DIR/$tdir/d2/x2
10849         test_mkdir -p -c1 $DIR/$tdir/d2/a/b/c
10850         test_mkdir -p -c1 $DIR/$tdir/d2/p/q/r
10851         # regular file
10852         FID=$($LFS path2fid $DIR/$tdir/d2/$tfile | tr -d '[]')
10853         check_path "$tdir/d2/$tfile" $FSNAME $FID --link 0 ||
10854                 error "check path $tdir/d2/$tfile failed"
10855
10856         # softlink
10857         ln -s $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/slink
10858         FID=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink | tr -d '[]')
10859         check_path "$tdir/d2/p/q/r/slink" $FSNAME $FID --link 0 ||
10860                 error "check path $tdir/d2/p/q/r/slink failed"
10861
10862         # softlink to wrong file
10863         ln -s /this/is/garbage $DIR/$tdir/d2/p/q/r/slink.wrong
10864         FID=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink.wrong | tr -d '[]')
10865         check_path "$tdir/d2/p/q/r/slink.wrong" $FSNAME $FID --link 0 ||
10866                 error "check path $tdir/d2/p/q/r/slink.wrong failed"
10867
10868         # hardlink
10869         ln $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/hlink
10870         mv $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/a/b/c/new_file
10871         FID=$($LFS path2fid $DIR/$tdir/d2/a/b/c/new_file | tr -d '[]')
10872         # fid2path dir/fsname should both work
10873         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $FID --link 1 ||
10874                 error "check path $tdir/d2/a/b/c/new_file failed"
10875         check_path "$DIR/$tdir/d2/p/q/r/hlink" $DIR $FID --link 0 ||
10876                 error "check path $DIR/$tdir/d2/p/q/r/hlink failed"
10877
10878         # hardlink count: check that there are 2 links
10879         # Doesnt work with CMD yet: 17935
10880         ${LFS} fid2path $DIR $FID | wc -l | grep -q 2 || \
10881                 err17935 "expected 2 links"
10882
10883         # hardlink indexing: remove the first link
10884         rm $DIR/$tdir/d2/p/q/r/hlink
10885         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $FID --link 0 ||
10886                 error "check path $DIR/$tdir/d2/a/b/c/new_file failed"
10887
10888         return 0
10889 }
10890 run_test 162a "path lookup sanity"
10891
10892 test_162b() {
10893         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10894         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
10895
10896         mkdir $DIR/$tdir
10897         $LFS setdirstripe -i0 -c$MDSCOUNT -t all_char $DIR/$tdir/striped_dir ||
10898                                 error "create striped dir failed"
10899
10900         local FID=$($LFS getdirstripe $DIR/$tdir/striped_dir |
10901                                         tail -n 1 | awk '{print $2}')
10902         stat $MOUNT/.lustre/fid/$FID && error "sub_stripe can be accessed"
10903
10904         touch $DIR/$tdir/striped_dir/f{0..4} || error "touch f0..4 failed"
10905         mkdir $DIR/$tdir/striped_dir/d{0..4} || error "mkdir d0..4 failed"
10906
10907         # regular file
10908         for ((i=0;i<5;i++)); do
10909                 FID=$($LFS path2fid $DIR/$tdir/striped_dir/f$i | tr -d '[]') ||
10910                         error "get fid for f$i failed"
10911                 check_path "$tdir/striped_dir/f$i" $FSNAME $FID --link 0 ||
10912                         error "check path $tdir/striped_dir/f$i failed"
10913
10914                 FID=$($LFS path2fid $DIR/$tdir/striped_dir/d$i | tr -d '[]') ||
10915                         error "get fid for d$i failed"
10916                 check_path "$tdir/striped_dir/d$i" $FSNAME $FID --link 0 ||
10917                         error "check path $tdir/striped_dir/d$i failed"
10918         done
10919
10920         return 0
10921 }
10922 run_test 162b "striped directory path lookup sanity"
10923
10924 # LU-4239: Verify fid2path works with paths 100 or more directories deep
10925 test_162c() {
10926         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.51) ]] &&
10927                 skip "Need MDS version at least 2.7.51" && return
10928         test_mkdir $DIR/$tdir.local
10929         test_mkdir $DIR/$tdir.remote
10930         local lpath=$tdir.local
10931         local rpath=$tdir.remote
10932
10933         for ((i = 0; i <= 101; i++)); do
10934                 lpath="$lpath/$i"
10935                 mkdir $DIR/$lpath
10936                 FID=$($LFS path2fid $DIR/$lpath | tr -d '[]') ||
10937                         error "get fid for local directory $DIR/$lpath failed"
10938                 check_path "$DIR/$lpath" $MOUNT $FID --link 0 ||
10939                         error "check path for local directory $DIR/$lpath failed"
10940
10941                 rpath="$rpath/$i"
10942                 test_mkdir $DIR/$rpath
10943                 FID=$($LFS path2fid $DIR/$rpath | tr -d '[]') ||
10944                         error "get fid for remote directory $DIR/$rpath failed"
10945                 check_path "$DIR/$rpath" $MOUNT $FID --link 0 ||
10946                         error "check path for remote directory $DIR/$rpath failed"
10947         done
10948
10949         return 0
10950 }
10951 run_test 162c "fid2path works with paths 100 or more directories deep"
10952
10953 test_169() {
10954         # do directio so as not to populate the page cache
10955         log "creating a 10 Mb file"
10956         $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
10957         log "starting reads"
10958         dd if=$DIR/$tfile of=/dev/null bs=4096 &
10959         log "truncating the file"
10960         $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
10961         log "killing dd"
10962         kill %+ || true # reads might have finished
10963         echo "wait until dd is finished"
10964         wait
10965         log "removing the temporary file"
10966         rm -rf $DIR/$tfile || error "tmp file removal failed"
10967 }
10968 run_test 169 "parallel read and truncate should not deadlock"
10969
10970 test_170() {
10971         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10972         $LCTL clear     # bug 18514
10973         $LCTL debug_daemon start $TMP/${tfile}_log_good
10974         touch $DIR/$tfile
10975         $LCTL debug_daemon stop
10976         sed -e "s/^...../a/g" $TMP/${tfile}_log_good > $TMP/${tfile}_log_bad ||
10977                error "sed failed to read log_good"
10978
10979         $LCTL debug_daemon start $TMP/${tfile}_log_good
10980         rm -rf $DIR/$tfile
10981         $LCTL debug_daemon stop
10982
10983         $LCTL df $TMP/${tfile}_log_bad > $TMP/${tfile}_log_bad.out 2>&1 ||
10984                error "lctl df log_bad failed"
10985
10986         local bad_line=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
10987         local good_line1=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
10988
10989         $LCTL df $TMP/${tfile}_log_good > $TMP/${tfile}_log_good.out 2>&1
10990         local good_line2=$(tail -n 1 $TMP/${tfile}_log_good.out | awk '{print $5}')
10991
10992         [ "$bad_line" ] && [ "$good_line1" ] && [ "$good_line2" ] ||
10993                 error "bad_line good_line1 good_line2 are empty"
10994
10995         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
10996         cat $TMP/${tfile}_log_bad >> $TMP/${tfile}_logs_corrupt
10997         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
10998
10999         $LCTL df $TMP/${tfile}_logs_corrupt > $TMP/${tfile}_log_bad.out 2>&1
11000         local bad_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
11001         local good_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
11002
11003         [ "$bad_line_new" ] && [ "$good_line_new" ] ||
11004                 error "bad_line_new good_line_new are empty"
11005
11006         local expected_good=$((good_line1 + good_line2*2))
11007
11008         rm -f $TMP/${tfile}*
11009         # LU-231, short malformed line may not be counted into bad lines
11010         if [ $bad_line -ne $bad_line_new ] &&
11011                    [ $bad_line -ne $((bad_line_new - 1)) ]; then
11012                 error "expected $bad_line bad lines, but got $bad_line_new"
11013                 return 1
11014         fi
11015
11016         if [ $expected_good -ne $good_line_new ]; then
11017                 error "expected $expected_good good lines, but got $good_line_new"
11018                 return 2
11019         fi
11020         true
11021 }
11022 run_test 170 "test lctl df to handle corrupted log ====================="
11023
11024 test_171() { # bug20592
11025         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11026 #define OBD_FAIL_PTLRPC_DUMP_LOG         0x50e
11027         $LCTL set_param fail_loc=0x50e
11028         $LCTL set_param fail_val=3000
11029         multiop_bg_pause $DIR/$tfile O_s || true
11030         local MULTIPID=$!
11031         kill -USR1 $MULTIPID
11032         # cause log dump
11033         sleep 3
11034         wait $MULTIPID
11035         if dmesg | grep "recursive fault"; then
11036                 error "caught a recursive fault"
11037         fi
11038         $LCTL set_param fail_loc=0
11039         true
11040 }
11041 run_test 171 "test libcfs_debug_dumplog_thread stuck in do_exit() ======"
11042
11043 # it would be good to share it with obdfilter-survey/iokit-libecho code
11044 setup_obdecho_osc () {
11045         local rc=0
11046         local ost_nid=$1
11047         local obdfilter_name=$2
11048         echo "Creating new osc for $obdfilter_name on $ost_nid"
11049         # make sure we can find loopback nid
11050         $LCTL add_uuid $ost_nid $ost_nid >/dev/null 2>&1
11051
11052         [ $rc -eq 0 ] && { $LCTL attach osc ${obdfilter_name}_osc     \
11053                            ${obdfilter_name}_osc_UUID || rc=2; }
11054         [ $rc -eq 0 ] && { $LCTL --device ${obdfilter_name}_osc setup \
11055                            ${obdfilter_name}_UUID  $ost_nid || rc=3; }
11056         return $rc
11057 }
11058
11059 cleanup_obdecho_osc () {
11060         local obdfilter_name=$1
11061         $LCTL --device ${obdfilter_name}_osc cleanup >/dev/null
11062         $LCTL --device ${obdfilter_name}_osc detach  >/dev/null
11063         return 0
11064 }
11065
11066 obdecho_test() {
11067         local OBD=$1
11068         local node=$2
11069         local pages=${3:-64}
11070         local rc=0
11071         local id
11072
11073         local count=10
11074         local obd_size=$(get_obd_size $node $OBD)
11075         local page_size=$(get_page_size $node)
11076         if [[ -n "$obd_size" ]]; then
11077                 local new_count=$((obd_size / (pages * page_size / 1024)))
11078                 [[ $new_count -ge $count ]] || count=$new_count
11079         fi
11080
11081         do_facet $node "$LCTL attach echo_client ec ec_uuid" || rc=1
11082         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec setup $OBD" ||
11083                            rc=2; }
11084         if [ $rc -eq 0 ]; then
11085             id=$(do_facet $node "$LCTL --device ec create 1"  | awk '/object id/ {print $6}')
11086             [ ${PIPESTATUS[0]} -eq 0 -a -n "$id" ] || rc=3
11087         fi
11088         echo "New object id is $id"
11089         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec getattr $id" ||
11090                            rc=4; }
11091         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec "                 \
11092                            "test_brw $count w v $pages $id" || rc=4; }
11093         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec destroy $id 1" ||
11094                            rc=4; }
11095         [ $rc -eq 0 -o $rc -gt 2 ] && { do_facet $node "$LCTL --device ec "    \
11096                                         "cleanup" || rc=5; }
11097         [ $rc -eq 0 -o $rc -gt 1 ] && { do_facet $node "$LCTL --device ec "    \
11098                                         "detach" || rc=6; }
11099         [ $rc -ne 0 ] && echo "obecho_create_test failed: $rc"
11100         return $rc
11101 }
11102
11103 test_180a() {
11104         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11105         remote_ost_nodsh && skip "remote OST with nodsh" && return
11106         local rc=0
11107         local rmmod_local=0
11108
11109         if ! module_loaded obdecho; then
11110             load_module obdecho/obdecho
11111             rmmod_local=1
11112         fi
11113
11114         local osc=$($LCTL dl | grep -v mdt | awk '$3 == "osc" {print $4; exit}')
11115         local host=$(lctl get_param -n osc.$osc.import |
11116                              awk '/current_connection:/ {print $2}' )
11117         local target=$(lctl get_param -n osc.$osc.import |
11118                              awk '/target:/ {print $2}' )
11119         target=${target%_UUID}
11120
11121         [[ -n $target ]]  && { setup_obdecho_osc $host $target || rc=1; } || rc=1
11122         [ $rc -eq 0 ] && { obdecho_test ${target}_osc client || rc=2; }
11123         [[ -n $target ]] && cleanup_obdecho_osc $target
11124         [ $rmmod_local -eq 1 ] && rmmod obdecho
11125         return $rc
11126 }
11127 run_test 180a "test obdecho on osc"
11128
11129 test_180b() {
11130         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11131         remote_ost_nodsh && skip "remote OST with nodsh" && return
11132         local rc=0
11133         local rmmod_remote=0
11134
11135         do_facet ost1 "lsmod | grep -q obdecho || "                      \
11136                       "{ insmod ${LUSTRE}/obdecho/obdecho.ko || "        \
11137                       "modprobe obdecho; }" && rmmod_remote=1
11138         target=$(do_facet ost1 $LCTL dl | awk '/obdfilter/ {print $4;exit}')
11139         [[ -n $target ]] && { obdecho_test $target ost1 || rc=1; }
11140         [ $rmmod_remote -eq 1 ] && do_facet ost1 "rmmod obdecho"
11141         return $rc
11142 }
11143 run_test 180b "test obdecho directly on obdfilter"
11144
11145 test_180c() { # LU-2598
11146         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11147         remote_ost_nodsh && skip "remote OST with nodsh" && return
11148         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.0) ]] &&
11149                 skip "Need MDS version at least 2.4.0" && return
11150
11151         local rc=0
11152         local rmmod_remote=false
11153         local pages=16384 # 64MB bulk I/O RPC size
11154         local target
11155
11156         do_rpc_nodes $(facet_active_host ost1) load_module obdecho/obdecho &&
11157                 rmmod_remote=true || error "failed to load module obdecho"
11158
11159         target=$(do_facet ost1 $LCTL dl | awk '/obdfilter/ { print $4 }' |
11160                 head -n1)
11161         if [ -n "$target" ]; then
11162                 obdecho_test "$target" ost1 "$pages" || rc=${PIPESTATUS[0]}
11163         else
11164                 echo "there is no obdfilter target on ost1"
11165                 rc=2
11166         fi
11167         $rmmod_remote && do_facet ost1 "rmmod obdecho" || true
11168         return $rc
11169 }
11170 run_test 180c "test huge bulk I/O size on obdfilter, don't LASSERT"
11171
11172 test_181() { # bug 22177
11173         test_mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
11174         # create enough files to index the directory
11175         createmany -o $DIR/$tdir/foobar 4000
11176         # print attributes for debug purpose
11177         lsattr -d .
11178         # open dir
11179         multiop_bg_pause $DIR/$tdir D_Sc || return 1
11180         MULTIPID=$!
11181         # remove the files & current working dir
11182         unlinkmany $DIR/$tdir/foobar 4000
11183         rmdir $DIR/$tdir
11184         kill -USR1 $MULTIPID
11185         wait $MULTIPID
11186         stat $DIR/$tdir && error "open-unlinked dir was not removed!"
11187         return 0
11188 }
11189 run_test 181 "Test open-unlinked dir ========================"
11190
11191 test_182() {
11192         local fcount=1000
11193         local tcount=10
11194
11195         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
11196
11197         $LCTL set_param mdc.*.rpc_stats=clear
11198
11199         for (( i = 0; i < $tcount; i++ )) ; do
11200                 mkdir $DIR/$tdir/$i
11201         done
11202
11203         for (( i = 0; i < $tcount; i++ )) ; do
11204                 createmany -o $DIR/$tdir/$i/f- $fcount &
11205         done
11206         wait
11207
11208         for (( i = 0; i < $tcount; i++ )) ; do
11209                 unlinkmany $DIR/$tdir/$i/f- $fcount &
11210         done
11211         wait
11212
11213         $LCTL get_param mdc.*.rpc_stats
11214
11215         rm -rf $DIR/$tdir
11216 }
11217 run_test 182 "Test parallel modify metadata operations ================"
11218
11219 test_183() { # LU-2275
11220         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11221         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.56) ]] &&
11222                 skip "Need MDS version at least 2.3.56" && return
11223
11224         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11225         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
11226         echo aaa > $DIR/$tdir/$tfile
11227
11228 #define OBD_FAIL_MDS_NEGATIVE_POSITIVE  0x148
11229         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x148
11230
11231         ls -l $DIR/$tdir && error "ls succeeded, should have failed"
11232         cat $DIR/$tdir/$tfile && error "cat succeeded, should have failed"
11233
11234         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
11235
11236         # Flush negative dentry cache
11237         touch $DIR/$tdir/$tfile
11238
11239         # We are not checking for any leaked references here, they'll
11240         # become evident next time we do cleanup with module unload.
11241         rm -rf $DIR/$tdir
11242 }
11243 run_test 183 "No crash or request leak in case of strange dispositions ========"
11244
11245 # test suite 184 is for LU-2016, LU-2017
11246 test_184a() {
11247         check_swap_layouts_support && return 0
11248
11249         dir0=$DIR/$tdir/$testnum
11250         test_mkdir -p -c1 $dir0 || error "creating dir $dir0"
11251         ref1=/etc/passwd
11252         ref2=/etc/group
11253         file1=$dir0/f1
11254         file2=$dir0/f2
11255         $SETSTRIPE -c1 $file1
11256         cp $ref1 $file1
11257         $SETSTRIPE -c2 $file2
11258         cp $ref2 $file2
11259         gen1=$($GETSTRIPE -g $file1)
11260         gen2=$($GETSTRIPE -g $file2)
11261
11262         $LFS swap_layouts $file1 $file2 || error "swap of file layout failed"
11263         gen=$($GETSTRIPE -g $file1)
11264         [[ $gen1 != $gen ]] ||
11265                 "Layout generation on $file1 does not change"
11266         gen=$($GETSTRIPE -g $file2)
11267         [[ $gen2 != $gen ]] ||
11268                 "Layout generation on $file2 does not change"
11269
11270         cmp $ref1 $file2 || error "content compare failed ($ref1 != $file2)"
11271         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
11272 }
11273 run_test 184a "Basic layout swap"
11274
11275 test_184b() {
11276         check_swap_layouts_support && return 0
11277
11278         dir0=$DIR/$tdir/$testnum
11279         mkdir -p $dir0 || error "creating dir $dir0"
11280         file1=$dir0/f1
11281         file2=$dir0/f2
11282         file3=$dir0/f3
11283         dir1=$dir0/d1
11284         dir2=$dir0/d2
11285         mkdir $dir1 $dir2
11286         $SETSTRIPE -c1 $file1
11287         $SETSTRIPE -c2 $file2
11288         $SETSTRIPE -c1 $file3
11289         chown $RUNAS_ID $file3
11290         gen1=$($GETSTRIPE -g $file1)
11291         gen2=$($GETSTRIPE -g $file2)
11292
11293         $LFS swap_layouts $dir1 $dir2 &&
11294                 error "swap of directories layouts should fail"
11295         $LFS swap_layouts $dir1 $file1 &&
11296                 error "swap of directory and file layouts should fail"
11297         $RUNAS $LFS swap_layouts $file1 $file2 &&
11298                 error "swap of file we cannot write should fail"
11299         $LFS swap_layouts $file1 $file3 &&
11300                 error "swap of file with different owner should fail"
11301         /bin/true # to clear error code
11302 }
11303 run_test 184b "Forbidden layout swap (will generate errors)"
11304
11305 test_184c() {
11306         check_swap_layouts_support && return 0
11307
11308         local dir0=$DIR/$tdir/$testnum
11309         mkdir -p $dir0 || error "creating dir $dir0"
11310
11311         local ref1=$dir0/ref1
11312         local ref2=$dir0/ref2
11313         local file1=$dir0/file1
11314         local file2=$dir0/file2
11315         # create a file large enough for the concurrent test
11316         dd if=/dev/urandom of=$ref1 bs=1M count=$((RANDOM % 50 + 20))
11317         dd if=/dev/urandom of=$ref2 bs=1M count=$((RANDOM % 50 + 20))
11318         echo "ref file size: ref1($(stat -c %s $ref1))," \
11319              "ref2($(stat -c %s $ref2))"
11320
11321         cp $ref2 $file2
11322         dd if=$ref1 of=$file1 bs=16k &
11323         local DD_PID=$!
11324
11325         # Make sure dd starts to copy file
11326         while [ ! -f $file1 ]; do sleep 0.1; done
11327
11328         $LFS swap_layouts $file1 $file2
11329         local rc=$?
11330         wait $DD_PID
11331         [[ $? == 0 ]] || error "concurrent write on $file1 failed"
11332         [[ $rc == 0 ]] || error "swap of $file1 and $file2 failed"
11333
11334         # how many bytes copied before swapping layout
11335         local copied=$(stat -c %s $file2)
11336         local remaining=$(stat -c %s $ref1)
11337         remaining=$((remaining - copied))
11338         echo "Copied $copied bytes before swapping layout..."
11339
11340         cmp -n $copied $file1 $ref2 | grep differ &&
11341                 error "Content mismatch [0, $copied) of ref2 and file1"
11342         cmp -n $copied $file2 $ref1 ||
11343                 error "Content mismatch [0, $copied) of ref1 and file2"
11344         cmp -i $copied:$copied -n $remaining $file1 $ref1 ||
11345                 error "Content mismatch [$copied, EOF) of ref1 and file1"
11346
11347         # clean up
11348         rm -f $ref1 $ref2 $file1 $file2
11349 }
11350 run_test 184c "Concurrent write and layout swap"
11351
11352 test_184d() {
11353         check_swap_layouts_support && return 0
11354         [ -z "$(which getfattr 2>/dev/null)" ] &&
11355                 skip "no getfattr command" && return 0
11356
11357         local file1=$DIR/$tdir/$tfile-1
11358         local file2=$DIR/$tdir/$tfile-2
11359         local file3=$DIR/$tdir/$tfile-3
11360         local lovea1
11361         local lovea2
11362
11363         mkdir -p $DIR/$tdir
11364         touch $file1 || error "create $file1 failed"
11365         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file2 ||
11366                 error "create $file2 failed"
11367         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file3 ||
11368                 error "create $file3 failed"
11369         lovea1=$($LFS getstripe $file1 | sed 1d)
11370
11371         $LFS swap_layouts $file2 $file3 ||
11372                 error "swap $file2 $file3 layouts failed"
11373         $LFS swap_layouts $file1 $file2 ||
11374                 error "swap $file1 $file2 layouts failed"
11375
11376         lovea2=$($LFS getstripe $file2 | sed 1d)
11377         [ "$lovea1" == "$lovea2" ] || error "lovea $lovea1 != $lovea2"
11378
11379         lovea1=$(getfattr -n trusted.lov $file1 | grep ^trusted)
11380         [[ -z "$lovea1" ]] || error "$file1 shouldn't have lovea"
11381 }
11382 run_test 184d "allow stripeless layouts swap"
11383
11384 test_184e() {
11385         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.94) ]] ||
11386                 { skip "Need MDS version at least 2.6.94"; return 0; }
11387         check_swap_layouts_support && return 0
11388         [ -z "$(which getfattr 2>/dev/null)" ] &&
11389                 skip "no getfattr command" && return 0
11390
11391         local file1=$DIR/$tdir/$tfile-1
11392         local file2=$DIR/$tdir/$tfile-2
11393         local file3=$DIR/$tdir/$tfile-3
11394         local lovea
11395
11396         mkdir -p $DIR/$tdir
11397         touch $file1 || error "create $file1 failed"
11398         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file2 ||
11399                 error "create $file2 failed"
11400         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file3 ||
11401                 error "create $file3 failed"
11402
11403         $LFS swap_layouts $file1 $file2 ||
11404                 error "swap $file1 $file2 layouts failed"
11405
11406         lovea=$(getfattr -n trusted.lov $file1 | grep ^trusted)
11407         [[ -z "$lovea" ]] || error "$file1 shouldn't have lovea"
11408
11409         echo 123 > $file1 || error "Should be able to write into $file1"
11410
11411         $LFS swap_layouts $file1 $file3 ||
11412                 error "swap $file1 $file3 layouts failed"
11413
11414         echo 123 > $file1 || error "Should be able to write into $file1"
11415
11416         rm -rf $file1 $file2 $file3
11417 }
11418 run_test 184e "Recreate layout after stripeless layout swaps"
11419
11420 test_185() { # LU-2441
11421         # LU-3553 - no volatile file support in old servers
11422         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.60) ]] ||
11423                 { skip "Need MDS version at least 2.3.60"; return 0; }
11424
11425         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
11426         touch $DIR/$tdir/spoo
11427         local mtime1=$(stat -c "%Y" $DIR/$tdir)
11428         local fid=$($MULTIOP $DIR/$tdir VFw4096c) ||
11429                 error "cannot create/write a volatile file"
11430         $CHECKSTAT -t file $MOUNT/.lustre/fid/$fid 2>/dev/null &&
11431                 error "FID is still valid after close"
11432
11433         multiop_bg_pause $DIR/$tdir vVw4096_c
11434         local multi_pid=$!
11435
11436         local OLD_IFS=$IFS
11437         IFS=":"
11438         local fidv=($fid)
11439         IFS=$OLD_IFS
11440         # assume that the next FID for this client is sequential, since stdout
11441         # is unfortunately eaten by multiop_bg_pause
11442         local n=$((${fidv[1]} + 1))
11443         local next_fid="${fidv[0]}:$(printf "0x%x" $n):${fidv[2]}"
11444         $CHECKSTAT -t file $MOUNT/.lustre/fid/$next_fid ||
11445                 error "FID is missing before close"
11446         kill -USR1 $multi_pid
11447         # 1 second delay, so if mtime change we will see it
11448         sleep 1
11449         local mtime2=$(stat -c "%Y" $DIR/$tdir)
11450         [[ $mtime1 == $mtime2 ]] || error "mtime has changed"
11451 }
11452 run_test 185 "Volatile file support"
11453
11454 test_187a() {
11455         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11456         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.0) ] &&
11457                 skip "Need MDS version at least 2.3.0" && return
11458
11459         local dir0=$DIR/$tdir/$testnum
11460         mkdir -p $dir0 || error "creating dir $dir0"
11461
11462         local file=$dir0/file1
11463         dd if=/dev/urandom of=$file count=10 bs=1M conv=fsync
11464         local dv1=$($LFS data_version $file)
11465         dd if=/dev/urandom of=$file seek=10 count=1 bs=1M conv=fsync
11466         local dv2=$($LFS data_version $file)
11467         [[ $dv1 != $dv2 ]] ||
11468                 error "data version did not change on write $dv1 == $dv2"
11469
11470         # clean up
11471         rm -f $file1
11472 }
11473 run_test 187a "Test data version change"
11474
11475 test_187b() {
11476         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11477         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.0) ] &&
11478                 skip "Need MDS version at least 2.3.0" && return
11479
11480         local dir0=$DIR/$tdir/$testnum
11481         mkdir -p $dir0 || error "creating dir $dir0"
11482
11483         declare -a DV=$($MULTIOP $dir0 Vw1000xYw1000xY | cut -f3 -d" ")
11484         [[ ${DV[0]} != ${DV[1]} ]] ||
11485                 error "data version did not change on write"\
11486                       " ${DV[0]} == ${DV[1]}"
11487
11488         # clean up
11489         rm -f $file1
11490 }
11491 run_test 187b "Test data version change on volatile file"
11492
11493 test_200() {
11494         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11495         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
11496
11497         local POOL=${POOL:-cea1}
11498         local POOL_ROOT=${POOL_ROOT:-$DIR/d200.pools}
11499         local POOL_DIR_NAME=${POOL_DIR_NAME:-dir_tst}
11500         # Pool OST targets
11501         local first_ost=0
11502         local last_ost=$(($OSTCOUNT - 1))
11503         local ost_step=2
11504         local ost_list=$(seq $first_ost $ost_step $last_ost)
11505         local ost_range="$first_ost $last_ost $ost_step"
11506         local test_path=$POOL_ROOT/$POOL_DIR_NAME
11507         local file_dir=$POOL_ROOT/file_tst
11508         local subdir=$test_path/subdir
11509
11510         local rc=0
11511         while : ; do
11512                 # former test_200a test_200b
11513                 pool_add $POOL                          || { rc=$? ; break; }
11514                 pool_add_targets  $POOL $ost_range      || { rc=$? ; break; }
11515                 # former test_200c test_200d
11516                 mkdir -p $test_path
11517                 pool_set_dir      $POOL $test_path      || { rc=$? ; break; }
11518                 pool_check_dir    $POOL $test_path      || { rc=$? ; break; }
11519                 mkdir -p $subdir
11520                 pool_check_dir    $POOL $subdir         || { rc=$? ; break; }
11521                 pool_dir_rel_path $POOL $POOL_DIR_NAME $POOL_ROOT \
11522                                                         || { rc=$? ; break; }
11523                 # former test_200e test_200f
11524                 local files=$((OSTCOUNT*3))
11525                 pool_alloc_files  $POOL $test_path $files "$ost_list" \
11526                                                         || { rc=$? ; break; }
11527                 pool_create_files $POOL $file_dir $files "$ost_list" \
11528                                                         || { rc=$? ; break; }
11529                 # former test_200g test_200h
11530                 pool_lfs_df $POOL                       || { rc=$? ; break; }
11531                 pool_file_rel_path $POOL $test_path     || { rc=$? ; break; }
11532
11533                 # former test_201a test_201b test_201c
11534                 pool_remove_first_target $POOL          || { rc=$? ; break; }
11535
11536                 local f=$test_path/$tfile
11537                 pool_remove_all_targets $POOL $f        || { rc=$? ; break; }
11538                 pool_remove $POOL $f                    || { rc=$? ; break; }
11539                 break
11540         done
11541
11542         cleanup_pools
11543         return $rc
11544 }
11545 run_test 200 "OST pools"
11546
11547 # usage: default_attr <count | size | offset>
11548 default_attr() {
11549         $LCTL get_param -n lov.$FSNAME-clilov-\*.stripe${1}
11550 }
11551
11552 # usage: check_default_stripe_attr
11553 check_default_stripe_attr() {
11554         ACTUAL=$($GETSTRIPE $* $DIR/$tdir)
11555         case $1 in
11556         --stripe-count|--count)
11557                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr count);;
11558         --stripe-size|--size)
11559                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr size);;
11560         --stripe-index|--index)
11561                 EXPECTED=-1;;
11562         *)
11563                 error "unknown getstripe attr '$1'"
11564         esac
11565
11566         [ $ACTUAL != $EXPECTED ] &&
11567                 error "$DIR/$tdir has $1 '$ACTUAL', not '$EXPECTED'"
11568 }
11569
11570 test_204a() {
11571         test_mkdir -p $DIR/$tdir
11572         $SETSTRIPE --stripe-count 0 --stripe-size 0 --stripe-index -1 $DIR/$tdir
11573
11574         check_default_stripe_attr --stripe-count
11575         check_default_stripe_attr --stripe-size
11576         check_default_stripe_attr --stripe-index
11577
11578         return 0
11579 }
11580 run_test 204a "Print default stripe attributes ================="
11581
11582 test_204b() {
11583         test_mkdir -p $DIR/$tdir
11584         $SETSTRIPE --stripe-count 1 $DIR/$tdir
11585
11586         check_default_stripe_attr --stripe-size
11587         check_default_stripe_attr --stripe-index
11588
11589         return 0
11590 }
11591 run_test 204b "Print default stripe size and offset  ==========="
11592
11593 test_204c() {
11594         test_mkdir -p $DIR/$tdir
11595         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
11596
11597         check_default_stripe_attr --stripe-count
11598         check_default_stripe_attr --stripe-index
11599
11600         return 0
11601 }
11602 run_test 204c "Print default stripe count and offset ==========="
11603
11604 test_204d() {
11605         test_mkdir -p $DIR/$tdir
11606         $SETSTRIPE --stripe-index 0 $DIR/$tdir
11607
11608         check_default_stripe_attr --stripe-count
11609         check_default_stripe_attr --stripe-size
11610
11611         return 0
11612 }
11613 run_test 204d "Print default stripe count and size ============="
11614
11615 test_204e() {
11616         test_mkdir -p $DIR/$tdir
11617         $SETSTRIPE -d $DIR/$tdir
11618
11619         check_default_stripe_attr --stripe-count --raw
11620         check_default_stripe_attr --stripe-size --raw
11621         check_default_stripe_attr --stripe-index --raw
11622
11623         return 0
11624 }
11625 run_test 204e "Print raw stripe attributes ================="
11626
11627 test_204f() {
11628         test_mkdir -p $DIR/$tdir
11629         $SETSTRIPE --stripe-count 1 $DIR/$tdir
11630
11631         check_default_stripe_attr --stripe-size --raw
11632         check_default_stripe_attr --stripe-index --raw
11633
11634         return 0
11635 }
11636 run_test 204f "Print raw stripe size and offset  ==========="
11637
11638 test_204g() {
11639         test_mkdir -p $DIR/$tdir
11640         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
11641
11642         check_default_stripe_attr --stripe-count --raw
11643         check_default_stripe_attr --stripe-index --raw
11644
11645         return 0
11646 }
11647 run_test 204g "Print raw stripe count and offset ==========="
11648
11649 test_204h() {
11650         test_mkdir -p $DIR/$tdir
11651         $SETSTRIPE --stripe-index 0 $DIR/$tdir
11652
11653         check_default_stripe_attr --stripe-count --raw
11654         check_default_stripe_attr --stripe-size --raw
11655
11656         return 0
11657 }
11658 run_test 204h "Print raw stripe count and size ============="
11659
11660 # Figure out which job scheduler is being used, if any,
11661 # or use a fake one
11662 if [ -n "$SLURM_JOB_ID" ]; then # SLURM
11663         JOBENV=SLURM_JOB_ID
11664 elif [ -n "$LSB_JOBID" ]; then # Load Sharing Facility
11665         JOBENV=LSB_JOBID
11666 elif [ -n "$PBS_JOBID" ]; then # PBS/Maui/Moab
11667         JOBENV=PBS_JOBID
11668 elif [ -n "$LOADL_STEPID" ]; then # LoadLeveller
11669         JOBENV=LOADL_STEP_ID
11670 elif [ -n "$JOB_ID" ]; then # Sun Grid Engine
11671         JOBENV=JOB_ID
11672 else
11673         $LCTL list_param jobid_name > /dev/null 2>&1
11674         if [ $? -eq 0 ]; then
11675                 JOBENV=nodelocal
11676         else
11677                 JOBENV=FAKE_JOBID
11678         fi
11679 fi
11680
11681 verify_jobstats() {
11682         local cmd=($1)
11683         shift
11684         local facets="$@"
11685
11686 # we don't really need to clear the stats for this test to work, since each
11687 # command has a unique jobid, but it makes debugging easier if needed.
11688 #       for facet in $facets; do
11689 #               local dev=$(convert_facet2label $facet)
11690 #               # clear old jobstats
11691 #               do_facet $facet lctl set_param *.$dev.job_stats="clear"
11692 #       done
11693
11694         # use a new JobID for each test, or we might see an old one
11695         [ "$JOBENV" = "FAKE_JOBID" ] &&
11696                 FAKE_JOBID=id.$testnum.$(basename ${cmd[0]}).$RANDOM
11697
11698         JOBVAL=${!JOBENV}
11699
11700         [ "$JOBENV" = "nodelocal" ] && {
11701                 FAKE_JOBID=id.$testnum.$(basename ${cmd[0]}).$RANDOM
11702                 $LCTL set_param jobid_name=$FAKE_JOBID
11703                 JOBVAL=$FAKE_JOBID
11704         }
11705
11706         log "Test: ${cmd[*]}"
11707         log "Using JobID environment variable $JOBENV=$JOBVAL"
11708
11709         if [ $JOBENV = "FAKE_JOBID" ]; then
11710                 FAKE_JOBID=$JOBVAL ${cmd[*]}
11711         else
11712                 ${cmd[*]}
11713         fi
11714
11715         # all files are created on OST0000
11716         for facet in $facets; do
11717                 local stats="*.$(convert_facet2label $facet).job_stats"
11718                 if [ $(do_facet $facet lctl get_param $stats |
11719                        grep -c $JOBVAL) -ne 1 ]; then
11720                         do_facet $facet lctl get_param $stats
11721                         error "No jobstats for $JOBVAL found on $facet::$stats"
11722                 fi
11723         done
11724 }
11725
11726 jobstats_set() {
11727         trap 0
11728         NEW_JOBENV=${1:-$OLD_JOBENV}
11729         do_facet mgs $LCTL conf_param $FSNAME.sys.jobid_var=$NEW_JOBENV
11730         wait_update $HOSTNAME "$LCTL get_param -n jobid_var" $NEW_JOBENV
11731 }
11732
11733 cleanup_205() {
11734         do_facet $SINGLEMDS \
11735                 $LCTL set_param mdt.*.job_cleanup_interval=$OLD_INTERVAL
11736         [ $OLD_JOBENV != $JOBENV ] && jobstats_set $OLD_JOBENV
11737         do_facet $SINGLEMDS lctl --device $MDT0 changelog_deregister $CL_USER
11738 }
11739
11740 test_205() { # Job stats
11741         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11742         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
11743         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11744         remote_ost_nodsh && skip "remote OST with nodsh" && return
11745
11746         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep jobstats)" ] &&
11747                 skip "Server doesn't support jobstats" && return 0
11748         [[ $JOBID_VAR = disable ]] && skip "jobstats is disabled" && return
11749
11750         OLD_JOBENV=$($LCTL get_param -n jobid_var)
11751         if [ $OLD_JOBENV != $JOBENV ]; then
11752                 jobstats_set $JOBENV
11753                 trap cleanup_205 EXIT
11754         fi
11755
11756         CL_USER=$(do_facet $SINGLEMDS lctl --device $MDT0 changelog_register -n)
11757         echo "Registered as changelog user $CL_USER"
11758
11759         OLD_INTERVAL=$(do_facet $SINGLEMDS \
11760                        lctl get_param -n mdt.*.job_cleanup_interval)
11761         local interval_new=5
11762         do_facet $SINGLEMDS \
11763                 $LCTL set_param mdt.*.job_cleanup_interval=$interval_new
11764         local start=$SECONDS
11765
11766         local cmd
11767         # mkdir
11768         cmd="mkdir $DIR/$tdir"
11769         verify_jobstats "$cmd" "$SINGLEMDS"
11770         # rmdir
11771         cmd="rmdir $DIR/$tdir"
11772         verify_jobstats "$cmd" "$SINGLEMDS"
11773         # mkdir on secondary MDT
11774         if [ $MDSCOUNT -gt 1 ]; then
11775                 cmd="lfs mkdir -i 1 $DIR/$tdir.remote"
11776                 verify_jobstats "$cmd" "mds2"
11777         fi
11778         # mknod
11779         cmd="mknod $DIR/$tfile c 1 3"
11780         verify_jobstats "$cmd" "$SINGLEMDS"
11781         # unlink
11782         cmd="rm -f $DIR/$tfile"
11783         verify_jobstats "$cmd" "$SINGLEMDS"
11784         # create all files on OST0000 so verify_jobstats can find OST stats
11785         # open & close
11786         cmd="$SETSTRIPE -i 0 -c 1 $DIR/$tfile"
11787         verify_jobstats "$cmd" "$SINGLEMDS"
11788         # setattr
11789         cmd="touch $DIR/$tfile"
11790         verify_jobstats "$cmd" "$SINGLEMDS ost1"
11791         # write
11792         cmd="dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 oflag=sync"
11793         verify_jobstats "$cmd" "ost1"
11794         # read
11795         cmd="dd if=$DIR/$tfile of=/dev/null bs=1M count=1 iflag=direct"
11796         verify_jobstats "$cmd" "ost1"
11797         # truncate
11798         cmd="$TRUNCATE $DIR/$tfile 0"
11799         verify_jobstats "$cmd" "$SINGLEMDS ost1"
11800         # rename
11801         cmd="mv -f $DIR/$tfile $DIR/$tdir.rename"
11802         verify_jobstats "$cmd" "$SINGLEMDS"
11803         # jobstats expiry - sleep until old stats should be expired
11804         local left=$((interval_new + 2 - (SECONDS - start)))
11805         [ $left -ge 0 ] && echo "sleep $left for expiry" && sleep $((left + 1))
11806         cmd="mkdir $DIR/$tdir.expire"
11807         verify_jobstats "$cmd" "$SINGLEMDS"
11808         [ $(do_facet $SINGLEMDS lctl get_param *.*.job_stats |
11809             grep -c "job_id.*mkdir") -gt 1 ] && error "old jobstats not expired"
11810
11811         # Ensure that jobid are present in changelog (if supported by MDS)
11812         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.52) ]
11813         then
11814                 $LFS changelog $MDT0 | tail -9
11815                 jobids=$($LFS changelog $MDT0 | tail -9 | grep -c "j=")
11816                 [ $jobids -eq 9 ] ||
11817                         error "Wrong changelog jobid count $jobids != 9"
11818
11819                 # LU-5862
11820                 JOBENV="disable"
11821                 jobstats_set $JOBENV
11822                 touch $DIR/$tfile
11823                 $LFS changelog $MDT0 | tail -1
11824                 jobids=$($LFS changelog $MDT0 | tail -1 | grep -c "j=")
11825                 [ $jobids -eq 0 ] ||
11826                         error "Unexpected jobids when jobid_var=$JOBENV"
11827         fi
11828
11829         cleanup_205
11830 }
11831 run_test 205 "Verify job stats"
11832
11833 # LU-1480, LU-1773 and LU-1657
11834 test_206() {
11835         mkdir -p $DIR/$tdir
11836         $SETSTRIPE -c -1 $DIR/$tdir
11837 #define OBD_FAIL_LOV_INIT 0x1403
11838         $LCTL set_param fail_loc=0xa0001403
11839         $LCTL set_param fail_val=1
11840         touch $DIR/$tdir/$tfile || true
11841 }
11842 run_test 206 "fail lov_init_raid0() doesn't lbug"
11843
11844 test_207a() {
11845         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
11846         local fsz=`stat -c %s $DIR/$tfile`
11847         cancel_lru_locks mdc
11848
11849         # do not return layout in getattr intent
11850 #define OBD_FAIL_MDS_NO_LL_GETATTR 0x170
11851         $LCTL set_param fail_loc=0x170
11852         local sz=`stat -c %s $DIR/$tfile`
11853
11854         [ $fsz -eq $sz ] || error "file size expected $fsz, actual $sz"
11855
11856         rm -rf $DIR/$tfile
11857 }
11858 run_test 207a "can refresh layout at glimpse"
11859
11860 test_207b() {
11861         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
11862         local cksum=`md5sum $DIR/$tfile`
11863         local fsz=`stat -c %s $DIR/$tfile`
11864         cancel_lru_locks mdc
11865         cancel_lru_locks osc
11866
11867         # do not return layout in getattr intent
11868 #define OBD_FAIL_MDS_NO_LL_OPEN 0x171
11869         $LCTL set_param fail_loc=0x171
11870
11871         # it will refresh layout after the file is opened but before read issues
11872         echo checksum is "$cksum"
11873         echo "$cksum" |md5sum -c --quiet || error "file differs"
11874
11875         rm -rf $DIR/$tfile
11876 }
11877 run_test 207b "can refresh layout at open"
11878
11879 test_208() {
11880         # FIXME: in this test suite, only RD lease is used. This is okay
11881         # for now as only exclusive open is supported. After generic lease
11882         # is done, this test suite should be revised. - Jinshan
11883
11884         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11885         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.4.52) ]] ||
11886                 { skip "Need MDS version at least 2.4.52"; return 0; }
11887
11888         echo "==== test 1: verify get lease work"
11889         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:eRE+eU || error "get lease error"
11890
11891         echo "==== test 2: verify lease can be broken by upcoming open"
11892         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
11893         local PID=$!
11894         sleep 1
11895
11896         $MULTIOP $DIR/$tfile oO_RDONLY:c
11897         kill -USR1 $PID && wait $PID || error "break lease error"
11898
11899         echo "==== test 3: verify lease can't be granted if an open already exists"
11900         $MULTIOP $DIR/$tfile oO_RDONLY:_c &
11901         local PID=$!
11902         sleep 1
11903
11904         $MULTIOP $DIR/$tfile oO_RDONLY:eReUc && error "apply lease should fail"
11905         kill -USR1 $PID && wait $PID || error "open file error"
11906
11907         echo "==== test 4: lease can sustain over recovery"
11908         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E+eUc &
11909         PID=$!
11910         sleep 1
11911
11912         fail mds1
11913
11914         kill -USR1 $PID && wait $PID || error "lease broken over recovery"
11915
11916         echo "==== test 5: lease broken can't be regained by replay"
11917         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
11918         PID=$!
11919         sleep 1
11920
11921         # open file to break lease and then recovery
11922         $MULTIOP $DIR/$tfile oO_RDWR:c || error "open file error"
11923         fail mds1
11924
11925         kill -USR1 $PID && wait $PID || error "lease not broken over recovery"
11926
11927         rm -f $DIR/$tfile
11928 }
11929 run_test 208 "Exclusive open"
11930
11931 test_209() {
11932         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep disp_stripe)" ] &&
11933                 skip_env "must have disp_stripe" && return
11934
11935         touch $DIR/$tfile
11936         sync; sleep 5; sync;
11937
11938         echo 3 > /proc/sys/vm/drop_caches
11939         req_before=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
11940
11941         # open/close 500 times
11942         for i in $(seq 500); do
11943                 cat $DIR/$tfile
11944         done
11945
11946         echo 3 > /proc/sys/vm/drop_caches
11947         req_after=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
11948
11949         echo "before: $req_before, after: $req_after"
11950         [ $((req_after - req_before)) -ge 300 ] &&
11951                 error "open/close requests are not freed"
11952         return 0
11953 }
11954 run_test 209 "read-only open/close requests should be freed promptly"
11955
11956 test_212() {
11957         size=`date +%s`
11958         size=$((size % 8192 + 1))
11959         dd if=/dev/urandom of=$DIR/f212 bs=1k count=$size
11960         sendfile $DIR/f212 $DIR/f212.xyz || error "sendfile wrong"
11961         rm -f $DIR/f212 $DIR/f212.xyz
11962 }
11963 run_test 212 "Sendfile test ============================================"
11964
11965 test_213() {
11966         dd if=/dev/zero of=$DIR/$tfile bs=4k count=4
11967         cancel_lru_locks osc
11968         lctl set_param fail_loc=0x8000040f
11969         # generate a read lock
11970         cat $DIR/$tfile > /dev/null
11971         # write to the file, it will try to cancel the above read lock.
11972         cat /etc/hosts >> $DIR/$tfile
11973 }
11974 run_test 213 "OSC lock completion and cancel race don't crash - bug 18829"
11975
11976 test_214() { # for bug 20133
11977         mkdir -p $DIR/$tdir/d214c || error "mkdir $DIR/$tdir/d214c failed"
11978         for (( i=0; i < 340; i++ )) ; do
11979                 touch $DIR/$tdir/d214c/a$i
11980         done
11981
11982         ls -l $DIR/$tdir || error "ls -l $DIR/d214p failed"
11983         mv $DIR/$tdir/d214c $DIR/ || error "mv $DIR/d214p/d214c $DIR/ failed"
11984         ls $DIR/d214c || error "ls $DIR/d214c failed"
11985         rm -rf $DIR/$tdir || error "rm -rf $DIR/d214* failed"
11986         rm -rf $DIR/d214* || error "rm -rf $DIR/d214* failed"
11987 }
11988 run_test 214 "hash-indexed directory test - bug 20133"
11989
11990 # having "abc" as 1st arg, creates $TMP/lnet_abc.out and $TMP/lnet_abc.sys
11991 create_lnet_proc_files() {
11992         lctl get_param -n $1 >$TMP/lnet_$1.out || error "cannot read lnet.$1"
11993         sysctl lnet.$1 >$TMP/lnet_$1.sys_tmp || error "cannot read lnet.$1"
11994
11995         sed "s/^lnet.$1\ =\ //g" "$TMP/lnet_$1.sys_tmp" >$TMP/lnet_$1.sys
11996         rm -f "$TMP/lnet_$1.sys_tmp"
11997 }
11998
11999 # counterpart of create_lnet_proc_files
12000 remove_lnet_proc_files() {
12001         rm -f $TMP/lnet_$1.out $TMP/lnet_$1.sys
12002 }
12003
12004 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
12005 # 3rd arg as regexp for body
12006 check_lnet_proc_stats() {
12007         local l=$(cat "$TMP/lnet_$1" |wc -l)
12008         [ $l = 1 ] || (cat "$TMP/lnet_$1" && error "$2 is not of 1 line: $l")
12009
12010         grep -E "$3" "$TMP/lnet_$1" || (cat "$TMP/lnet_$1" && error "$2 misformatted")
12011 }
12012
12013 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
12014 # 3rd arg as regexp for body, 4th arg as regexp for 1st line, 5th arg is
12015 # optional and can be regexp for 2nd line (lnet.routes case)
12016 check_lnet_proc_entry() {
12017         local blp=2          # blp stands for 'position of 1st line of body'
12018         [ -z "$5" ] || blp=3 # lnet.routes case
12019
12020         local l=$(cat "$TMP/lnet_$1" |wc -l)
12021         # subtracting one from $blp because the body can be empty
12022         [ "$l" -ge "$(($blp - 1))" ] || (cat "$TMP/lnet_$1" && error "$2 is too short: $l")
12023
12024         sed -n '1 p' "$TMP/lnet_$1" |grep -E "$4" >/dev/null ||
12025                 (cat "$TMP/lnet_$1" && error "1st line of $2 misformatted")
12026
12027         [ "$5" = "" ] || sed -n '2 p' "$TMP/lnet_$1" |grep -E "$5" >/dev/null ||
12028                 (cat "$TMP/lnet_$1" && error "2nd line of $2 misformatted")
12029
12030         # bail out if any unexpected line happened
12031         sed -n "$blp p" "$TMP/lnet_$1" | grep -Ev "$3"
12032         [ "$?" != 0 ] || error "$2 misformatted"
12033 }
12034
12035 test_215() { # for bugs 18102, 21079, 21517
12036         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12037         local N='(0|[1-9][0-9]*)'       # non-negative numeric
12038         local P='[1-9][0-9]*'           # positive numeric
12039         local I='(0|-?[1-9][0-9]*|NA)'  # any numeric (0 | >0 | <0) or NA if no value
12040         local NET='[a-z][a-z0-9]*'      # LNET net like o2ib2
12041         local ADDR='[0-9.]+'            # LNET addr like 10.0.0.1
12042         local NID="$ADDR@$NET"          # LNET nid like 10.0.0.1@o2ib2
12043
12044         local L1 # regexp for 1st line
12045         local L2 # regexp for 2nd line (optional)
12046         local BR # regexp for the rest (body)
12047
12048         # lnet.stats should look as 11 space-separated non-negative numerics
12049         BR="^$N $N $N $N $N $N $N $N $N $N $N$"
12050         create_lnet_proc_files "stats"
12051         check_lnet_proc_stats "stats.sys" "lnet.stats" "$BR"
12052         remove_lnet_proc_files "stats"
12053
12054         # lnet.routes should look like this:
12055         # Routing disabled/enabled
12056         # net hops priority state router
12057         # where net is a string like tcp0, hops > 0, priority >= 0,
12058         # state is up/down,
12059         # router is a string like 192.168.1.1@tcp2
12060         L1="^Routing (disabled|enabled)$"
12061         L2="^net +hops +priority +state +router$"
12062         BR="^$NET +$N +(0|1) +(up|down) +$NID$"
12063         create_lnet_proc_files "routes"
12064         check_lnet_proc_entry "routes.sys" "lnet.routes" "$BR" "$L1" "$L2"
12065         remove_lnet_proc_files "routes"
12066
12067         # lnet.routers should look like this:
12068         # ref rtr_ref alive_cnt state last_ping ping_sent deadline down_ni router
12069         # where ref > 0, rtr_ref > 0, alive_cnt >= 0, state is up/down,
12070         # last_ping >= 0, ping_sent is boolean (0/1), deadline and down_ni are
12071         # numeric (0 or >0 or <0), router is a string like 192.168.1.1@tcp2
12072         L1="^ref +rtr_ref +alive_cnt +state +last_ping +ping_sent +deadline +down_ni +router$"
12073         BR="^$P +$P +$N +(up|down) +$N +(0|1) +$I +$I +$NID$"
12074         create_lnet_proc_files "routers"
12075         check_lnet_proc_entry "routers.sys" "lnet.routers" "$BR" "$L1"
12076         remove_lnet_proc_files "routers"
12077
12078         # lnet.peers should look like this:
12079         # nid refs state last max rtr min tx min queue
12080         # where nid is a string like 192.168.1.1@tcp2, refs > 0,
12081         # state is up/down/NA, max >= 0. last, rtr, min, tx, min are
12082         # numeric (0 or >0 or <0), queue >= 0.
12083         L1="^nid +refs +state +last +max +rtr +min +tx +min +queue$"
12084         BR="^$NID +$P +(up|down|NA) +$I +$N +$I +$I +$I +$I +$N$"
12085         create_lnet_proc_files "peers"
12086         check_lnet_proc_entry "peers.sys" "lnet.peers" "$BR" "$L1"
12087         remove_lnet_proc_files "peers"
12088
12089         # lnet.buffers  should look like this:
12090         # pages count credits min
12091         # where pages >=0, count >=0, credits and min are numeric (0 or >0 or <0)
12092         L1="^pages +count +credits +min$"
12093         BR="^ +$N +$N +$I +$I$"
12094         create_lnet_proc_files "buffers"
12095         check_lnet_proc_entry "buffers.sys" "lnet.buffers" "$BR" "$L1"
12096         remove_lnet_proc_files "buffers"
12097
12098         # lnet.nis should look like this:
12099         # nid status alive refs peer rtr max tx min
12100         # where nid is a string like 192.168.1.1@tcp2, status is up/down,
12101         # alive is numeric (0 or >0 or <0), refs >= 0, peer >= 0,
12102         # rtr >= 0, max >=0, tx and min are numeric (0 or >0 or <0).
12103         L1="^nid +status +alive +refs +peer +rtr +max +tx +min$"
12104         BR="^$NID +(up|down) +$I +$N +$N +$N +$N +$I +$I$"
12105         create_lnet_proc_files "nis"
12106         check_lnet_proc_entry "nis.sys" "lnet.nis" "$BR" "$L1"
12107         remove_lnet_proc_files "nis"
12108
12109         # can we successfully write to lnet.stats?
12110         lctl set_param -n stats=0 || error "cannot write to lnet.stats"
12111         sysctl -w lnet.stats=0 || error "cannot write to lnet.stats"
12112 }
12113 run_test 215 "lnet exists and has proper content - bugs 18102, 21079, 21517"
12114
12115 test_216() { # bug 20317
12116         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12117         remote_ost_nodsh && skip "remote OST with nodsh" && return
12118
12119         local node
12120         local facets=$(get_facets OST)
12121         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
12122
12123         save_lustre_params client "osc.*.contention_seconds" > $p
12124         save_lustre_params $facets \
12125                 "ldlm.namespaces.filter-*.max_nolock_bytes" >> $p
12126         save_lustre_params $facets \
12127                 "ldlm.namespaces.filter-*.contended_locks" >> $p
12128         save_lustre_params $facets \
12129                 "ldlm.namespaces.filter-*.contention_seconds" >> $p
12130         clear_osc_stats
12131
12132         # agressive lockless i/o settings
12133         for node in $(osts_nodes); do
12134                 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'
12135         done
12136         lctl set_param -n osc.*.contention_seconds 60
12137
12138         $DIRECTIO write $DIR/$tfile 0 10 4096
12139         $CHECKSTAT -s 40960 $DIR/$tfile
12140
12141         # disable lockless i/o
12142         for node in $(osts_nodes); do
12143                 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'
12144         done
12145         lctl set_param -n osc.*.contention_seconds 0
12146         clear_osc_stats
12147
12148         dd if=/dev/zero of=$DIR/$tfile count=0
12149         $CHECKSTAT -s 0 $DIR/$tfile
12150
12151         restore_lustre_params <$p
12152         rm -f $p
12153         rm $DIR/$tfile
12154 }
12155 run_test 216 "check lockless direct write works and updates file size and kms correctly"
12156
12157 test_217() { # bug 22430
12158         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12159         local node
12160         local nid
12161
12162         for node in $(nodes_list); do
12163                 nid=$(host_nids_address $node $NETTYPE)
12164                 if [[ $nid = *-* ]] ; then
12165                         echo "lctl ping $nid@$NETTYPE"
12166                         lctl ping $nid@$NETTYPE
12167                 else
12168                         echo "skipping $node (no hyphen detected)"
12169                 fi
12170         done
12171 }
12172 run_test 217 "check lctl ping for hostnames with hiphen ('-')"
12173
12174 test_218() {
12175        # do directio so as not to populate the page cache
12176        log "creating a 10 Mb file"
12177        $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
12178        log "starting reads"
12179        dd if=$DIR/$tfile of=/dev/null bs=4096 &
12180        log "truncating the file"
12181        $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
12182        log "killing dd"
12183        kill %+ || true # reads might have finished
12184        echo "wait until dd is finished"
12185        wait
12186        log "removing the temporary file"
12187        rm -rf $DIR/$tfile || error "tmp file removal failed"
12188 }
12189 run_test 218 "parallel read and truncate should not deadlock ======================="
12190
12191 test_219() {
12192         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12193         # write one partial page
12194         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1
12195         # set no grant so vvp_io_commit_write will do sync write
12196         $LCTL set_param fail_loc=0x411
12197         # write a full page at the end of file
12198         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=1 conv=notrunc
12199
12200         $LCTL set_param fail_loc=0
12201         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=3
12202         $LCTL set_param fail_loc=0x411
12203         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1 seek=2 conv=notrunc
12204
12205         # LU-4201
12206         dd if=/dev/zero of=$DIR/$tfile-2 bs=1024 count=1
12207         $CHECKSTAT -s 1024 $DIR/$tfile-2 || error "checkstat wrong size"
12208 }
12209 run_test 219 "LU-394: Write partial won't cause uncontiguous pages vec at LND"
12210
12211 test_220() { #LU-325
12212         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12213         remote_ost_nodsh && skip "remote OST with nodsh" && return
12214         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12215         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
12216         local OSTIDX=0
12217
12218         # create on MDT0000 so the last_id and next_id are correct
12219         mkdir $DIR/$tdir
12220         local OST=$($LFS df $DIR | awk '/OST:'$OSTIDX'/ { print $1 }')
12221         OST=${OST%_UUID}
12222
12223         # on the mdt's osc
12224         local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $OST)
12225         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
12226                         osc.$mdtosc_proc1.prealloc_last_id)
12227         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
12228                         osc.$mdtosc_proc1.prealloc_next_id)
12229
12230         $LFS df -i
12231
12232         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=-1
12233         #define OBD_FAIL_OST_ENOINO              0x229
12234         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0x229
12235         do_facet mgs $LCTL pool_new $FSNAME.$TESTNAME || return 1
12236         do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $OST || return 2
12237
12238         $SETSTRIPE $DIR/$tdir -i $OSTIDX -c 1 -p $FSNAME.$TESTNAME
12239
12240         MDSOBJS=$((last_id - next_id))
12241         echo "preallocated objects on MDS is $MDSOBJS" "($last_id - $next_id)"
12242
12243         blocks=$($LFS df $MOUNT | awk '($1 == '$OSTIDX') { print $4 }')
12244         echo "OST still has $count kbytes free"
12245
12246         echo "create $MDSOBJS files @next_id..."
12247         createmany -o $DIR/$tdir/f $MDSOBJS || return 3
12248
12249         local last_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
12250                         osc.$mdtosc_proc1.prealloc_last_id)
12251         local next_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
12252                         osc.$mdtosc_proc1.prealloc_next_id)
12253
12254         echo "after creation, last_id=$last_id2, next_id=$next_id2"
12255         $LFS df -i
12256
12257         echo "cleanup..."
12258
12259         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=0
12260         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0
12261
12262         do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $OST || return 4
12263         do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME || return 5
12264         echo "unlink $MDSOBJS files @$next_id..."
12265         unlinkmany $DIR/$tdir/f $MDSOBJS || return 6
12266 }
12267 run_test 220 "preallocated MDS objects still used if ENOSPC from OST"
12268
12269 test_221() {
12270         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12271         dd if=`which date` of=$MOUNT/date oflag=sync
12272         chmod +x $MOUNT/date
12273
12274         #define OBD_FAIL_LLITE_FAULT_TRUNC_RACE  0x1401
12275         $LCTL set_param fail_loc=0x80001401
12276
12277         $MOUNT/date > /dev/null
12278         rm -f $MOUNT/date
12279 }
12280 run_test 221 "make sure fault and truncate race to not cause OOM"
12281
12282 test_222a () {
12283         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12284        rm -rf $DIR/$tdir
12285        test_mkdir -p $DIR/$tdir
12286        $SETSTRIPE -c 1 -i 0 $DIR/$tdir
12287        createmany -o $DIR/$tdir/$tfile 10
12288        cancel_lru_locks mdc
12289        cancel_lru_locks osc
12290        #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
12291        $LCTL set_param fail_loc=0x31a
12292        ls -l $DIR/$tdir > /dev/null || error "AGL for ls failed"
12293        $LCTL set_param fail_loc=0
12294        rm -r $DIR/$tdir
12295 }
12296 run_test 222a "AGL for ls should not trigger CLIO lock failure ================"
12297
12298 test_222b () {
12299         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12300        rm -rf $DIR/$tdir
12301        test_mkdir -p $DIR/$tdir
12302        $SETSTRIPE -c 1 -i 0 $DIR/$tdir
12303        createmany -o $DIR/$tdir/$tfile 10
12304        cancel_lru_locks mdc
12305        cancel_lru_locks osc
12306        #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
12307        $LCTL set_param fail_loc=0x31a
12308        rm -r $DIR/$tdir || "AGL for rmdir failed"
12309        $LCTL set_param fail_loc=0
12310 }
12311 run_test 222b "AGL for rmdir should not trigger CLIO lock failure ============="
12312
12313 test_223 () {
12314         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12315        rm -rf $DIR/$tdir
12316        test_mkdir -p $DIR/$tdir
12317        $SETSTRIPE -c 1 -i 0 $DIR/$tdir
12318        createmany -o $DIR/$tdir/$tfile 10
12319        cancel_lru_locks mdc
12320        cancel_lru_locks osc
12321        #define OBD_FAIL_LDLM_AGL_NOLOCK          0x31b
12322        $LCTL set_param fail_loc=0x31b
12323        ls -l $DIR/$tdir > /dev/null || error "reenqueue failed"
12324        $LCTL set_param fail_loc=0
12325        rm -r $DIR/$tdir
12326 }
12327 run_test 223 "osc reenqueue if without AGL lock granted ======================="
12328
12329 test_224a() { # LU-1039, MRP-303
12330         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12331         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB   0x508
12332         $LCTL set_param fail_loc=0x508
12333         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 conv=fsync
12334         $LCTL set_param fail_loc=0
12335         df $DIR
12336 }
12337 run_test 224a "Don't panic on bulk IO failure"
12338
12339 test_224b() { # LU-1039, MRP-303
12340         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12341         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
12342         cancel_lru_locks osc
12343         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB2   0x515
12344         $LCTL set_param fail_loc=0x515
12345         dd of=/dev/null if=$DIR/$tfile bs=4096 count=1
12346         $LCTL set_param fail_loc=0
12347         df $DIR
12348 }
12349 run_test 224b "Don't panic on bulk IO failure"
12350
12351 test_224c() { # LU-6441
12352         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12353         local pages_per_rpc=$($LCTL get_param \
12354                                 osc.*.max_pages_per_rpc)
12355         local at_max=$($LCTL get_param -n at_max)
12356         local timeout=$($LCTL get_param -n timeout)
12357         local test_at="$LCTL get_param -n at_max"
12358         local param_at="$FSNAME.sys.at_max"
12359         local test_timeout="$LCTL get_param -n timeout"
12360         local param_timeout="$FSNAME.sys.timeout"
12361
12362         $LCTL set_param -n osc.*.max_pages_per_rpc=1024
12363
12364         set_conf_param_and_check client "$test_at" "$param_at" 0 ||
12365                 error "conf_param at_max=0 failed"
12366         set_conf_param_and_check client "$test_timeout" "$param_timeout" 5 ||
12367                 error "conf_param timeout=5 failed"
12368
12369         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB3   0x520
12370         $LCTL set_param fail_loc=0x520
12371         dd if=/dev/zero of=$DIR/$tfile bs=8MB count=1
12372         sync
12373         $LCTL set_param fail_loc=0
12374
12375         set_conf_param_and_check client "$test_at" "$param_at" $at_max ||
12376                 error "conf_param at_max=$at_max failed"
12377         set_conf_param_and_check client "$test_timeout" "$param_timeout" \
12378                 $timeout || error "conf_param timeout=$timeout failed"
12379
12380         $LCTL set_param -n $pages_per_rpc
12381 }
12382 run_test 224c "Don't hang if one of md lost during large bulk RPC"
12383
12384 MDSSURVEY=${MDSSURVEY:-$(which mds-survey 2>/dev/null || true)}
12385 test_225a () {
12386         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12387         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12388         if [ -z ${MDSSURVEY} ]; then
12389               skip_env "mds-survey not found" && return
12390         fi
12391
12392         [ $MDSCOUNT -ge 2 ] &&
12393                 skip "skipping now for more than one MDT" && return
12394
12395        [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
12396             { skip "Need MDS version at least 2.2.51"; return; }
12397
12398        local mds=$(facet_host $SINGLEMDS)
12399        local target=$(do_nodes $mds 'lctl dl' | \
12400                       awk "{if (\$2 == \"UP\" && \$3 == \"mdt\") {print \$4}}")
12401
12402        local cmd1="file_count=1000 thrhi=4"
12403        local cmd2="dir_count=2 layer=mdd stripe_count=0"
12404        local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
12405        local cmd="$cmd1 $cmd2 $cmd3"
12406
12407        rm -f ${TMP}/mds_survey*
12408        echo + $cmd
12409        eval $cmd || error "mds-survey with zero-stripe failed"
12410        cat ${TMP}/mds_survey*
12411        rm -f ${TMP}/mds_survey*
12412 }
12413 run_test 225a "Metadata survey sanity with zero-stripe"
12414
12415 test_225b () {
12416         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12417         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12418         if [ -z ${MDSSURVEY} ]; then
12419               skip_env "mds-survey not found" && return
12420         fi
12421         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
12422             { skip "Need MDS version at least 2.2.51"; return; }
12423
12424         if [ $($LCTL dl | grep -c osc) -eq 0 ]; then
12425               skip_env "Need to mount OST to test" && return
12426         fi
12427
12428         [ $MDSCOUNT -ge 2 ] &&
12429                 skip "skipping now for more than one MDT" && return
12430        local mds=$(facet_host $SINGLEMDS)
12431        local target=$(do_nodes $mds 'lctl dl' | \
12432                       awk "{if (\$2 == \"UP\" && \$3 == \"mdt\") {print \$4}}")
12433
12434        local cmd1="file_count=1000 thrhi=4"
12435        local cmd2="dir_count=2 layer=mdd stripe_count=1"
12436        local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
12437        local cmd="$cmd1 $cmd2 $cmd3"
12438
12439        rm -f ${TMP}/mds_survey*
12440        echo + $cmd
12441        eval $cmd || error "mds-survey with stripe_count failed"
12442        cat ${TMP}/mds_survey*
12443        rm -f ${TMP}/mds_survey*
12444 }
12445 run_test 225b "Metadata survey sanity with stripe_count = 1"
12446
12447 mcreate_path2fid () {
12448         local mode=$1
12449         local major=$2
12450         local minor=$3
12451         local name=$4
12452         local desc=$5
12453         local path=$DIR/$tdir/$name
12454         local fid
12455         local rc
12456         local fid_path
12457
12458         $MCREATE --mode=$1 --major=$2 --minor=$3 $path ||
12459                 error "cannot create $desc"
12460
12461         fid=$($LFS path2fid $path | tr -d '[' | tr -d ']')
12462         rc=$?
12463         [ $rc -ne 0 ] && error "cannot get fid of a $desc"
12464
12465         fid_path=$($LFS fid2path $MOUNT $fid)
12466         rc=$?
12467         [ $rc -ne 0 ] && error "cannot get path of $desc by $DIR $path $fid"
12468
12469         [ "$path" == "$fid_path" ] ||
12470                 error "fid2path returned $fid_path, expected $path"
12471
12472         echo "pass with $path and $fid"
12473 }
12474
12475 test_226a () {
12476         rm -rf $DIR/$tdir
12477         mkdir -p $DIR/$tdir
12478
12479         mcreate_path2fid 0010666 0 0 fifo "FIFO"
12480         mcreate_path2fid 0020666 1 3 null "character special file (null)"
12481         mcreate_path2fid 0020666 1 255 none "character special file (no device)"
12482         mcreate_path2fid 0040666 0 0 dir "directory"
12483         mcreate_path2fid 0060666 7 0 loop0 "block special file (loop)"
12484         mcreate_path2fid 0100666 0 0 file "regular file"
12485         mcreate_path2fid 0120666 0 0 link "symbolic link"
12486         mcreate_path2fid 0140666 0 0 sock "socket"
12487 }
12488 run_test 226a "call path2fid and fid2path on files of all type"
12489
12490 test_226b () {
12491         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
12492         rm -rf $DIR/$tdir
12493         local MDTIDX=1
12494
12495         mkdir -p $DIR/$tdir
12496         $LFS setdirstripe -i $MDTIDX $DIR/$tdir/remote_dir ||
12497                 error "create remote directory failed"
12498         mcreate_path2fid 0010666 0 0 "remote_dir/fifo" "FIFO"
12499         mcreate_path2fid 0020666 1 3 "remote_dir/null" \
12500                                 "character special file (null)"
12501         mcreate_path2fid 0020666 1 255 "remote_dir/none" \
12502                                 "character special file (no device)"
12503         mcreate_path2fid 0040666 0 0 "remote_dir/dir" "directory"
12504         mcreate_path2fid 0060666 7 0 "remote_dir/loop0" \
12505                                 "block special file (loop)"
12506         mcreate_path2fid 0100666 0 0 "remote_dir/file" "regular file"
12507         mcreate_path2fid 0120666 0 0 "remote_dir/link" "symbolic link"
12508         mcreate_path2fid 0140666 0 0 "remote_dir/sock" "socket"
12509 }
12510 run_test 226b "call path2fid and fid2path on files of all type under remote dir"
12511
12512 # LU-1299 Executing or running ldd on a truncated executable does not
12513 # cause an out-of-memory condition.
12514 test_227() {
12515         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12516         [ -z "$(which ldd)" ] && skip "should have ldd tool" && return
12517         dd if=$(which date) of=$MOUNT/date bs=1k count=1
12518         chmod +x $MOUNT/date
12519
12520         $MOUNT/date > /dev/null
12521         ldd $MOUNT/date > /dev/null
12522         rm -f $MOUNT/date
12523 }
12524 run_test 227 "running truncated executable does not cause OOM"
12525
12526 # LU-1512 try to reuse idle OI blocks
12527 test_228a() {
12528         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12529         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12530         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
12531                 skip "non-ldiskfs backend" && return
12532
12533         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
12534         local myDIR=$DIR/$tdir
12535
12536         mkdir -p $myDIR
12537         #define OBD_FAIL_SEQ_EXHAUST             0x1002
12538         $LCTL set_param fail_loc=0x80001002
12539         createmany -o $myDIR/t- 10000
12540         $LCTL set_param fail_loc=0
12541         # The guard is current the largest FID holder
12542         touch $myDIR/guard
12543         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
12544                     tr -d '[')
12545         local IDX=$(($SEQ % 64))
12546
12547         do_facet $SINGLEMDS sync
12548         # Make sure journal flushed.
12549         sleep 6
12550         local blk1=$(do_facet $SINGLEMDS \
12551                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
12552                      grep Blockcount | awk '{print $4}')
12553
12554         # Remove old files, some OI blocks will become idle.
12555         unlinkmany $myDIR/t- 10000
12556         # Create new files, idle OI blocks should be reused.
12557         createmany -o $myDIR/t- 2000
12558         do_facet $SINGLEMDS sync
12559         # Make sure journal flushed.
12560         sleep 6
12561         local blk2=$(do_facet $SINGLEMDS \
12562                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
12563                      grep Blockcount | awk '{print $4}')
12564
12565         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
12566 }
12567 run_test 228a "try to reuse idle OI blocks"
12568
12569 test_228b() {
12570         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12571         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12572         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
12573                 skip "non-ldiskfs backend" && return
12574
12575         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
12576         local myDIR=$DIR/$tdir
12577
12578         mkdir -p $myDIR
12579         #define OBD_FAIL_SEQ_EXHAUST             0x1002
12580         $LCTL set_param fail_loc=0x80001002
12581         createmany -o $myDIR/t- 10000
12582         $LCTL set_param fail_loc=0
12583         # The guard is current the largest FID holder
12584         touch $myDIR/guard
12585         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
12586                     tr -d '[')
12587         local IDX=$(($SEQ % 64))
12588
12589         do_facet $SINGLEMDS sync
12590         # Make sure journal flushed.
12591         sleep 6
12592         local blk1=$(do_facet $SINGLEMDS \
12593                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
12594                      grep Blockcount | awk '{print $4}')
12595
12596         # Remove old files, some OI blocks will become idle.
12597         unlinkmany $myDIR/t- 10000
12598
12599         # stop the MDT
12600         stop $SINGLEMDS || error "Fail to stop MDT."
12601         # remount the MDT
12602         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
12603
12604         df $MOUNT || error "Fail to df."
12605         # Create new files, idle OI blocks should be reused.
12606         createmany -o $myDIR/t- 2000
12607         do_facet $SINGLEMDS sync
12608         # Make sure journal flushed.
12609         sleep 6
12610         local blk2=$(do_facet $SINGLEMDS \
12611                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
12612                      grep Blockcount | awk '{print $4}')
12613
12614         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
12615 }
12616 run_test 228b "idle OI blocks can be reused after MDT restart"
12617
12618 #LU-1881
12619 test_228c() {
12620         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12621         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12622         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
12623                 skip "non-ldiskfs backend" && return
12624
12625         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
12626         local myDIR=$DIR/$tdir
12627
12628         mkdir -p $myDIR
12629         #define OBD_FAIL_SEQ_EXHAUST             0x1002
12630         $LCTL set_param fail_loc=0x80001002
12631         # 20000 files can guarantee there are index nodes in the OI file
12632         createmany -o $myDIR/t- 20000
12633         $LCTL set_param fail_loc=0
12634         # The guard is current the largest FID holder
12635         touch $myDIR/guard
12636         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
12637                     tr -d '[')
12638         local IDX=$(($SEQ % 64))
12639
12640         do_facet $SINGLEMDS sync
12641         # Make sure journal flushed.
12642         sleep 6
12643         local blk1=$(do_facet $SINGLEMDS \
12644                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
12645                      grep Blockcount | awk '{print $4}')
12646
12647         # Remove old files, some OI blocks will become idle.
12648         unlinkmany $myDIR/t- 20000
12649         rm -f $myDIR/guard
12650         # The OI file should become empty now
12651
12652         # Create new files, idle OI blocks should be reused.
12653         createmany -o $myDIR/t- 2000
12654         do_facet $SINGLEMDS sync
12655         # Make sure journal flushed.
12656         sleep 6
12657         local blk2=$(do_facet $SINGLEMDS \
12658                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
12659                      grep Blockcount | awk '{print $4}')
12660
12661         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
12662 }
12663 run_test 228c "NOT shrink the last entry in OI index node to recycle idle leaf"
12664
12665 test_229() { # LU-2482, LU-3448
12666         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.53) ] &&
12667                 skip "No HSM $(lustre_build_version $SINGLEMDS) MDS < 2.4.53" &&
12668                 return
12669         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12670         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
12671
12672         rm -f $DIR/$tfile
12673
12674         # Create a file with a released layout and stripe count 2.
12675         $MULTIOP $DIR/$tfile H2c ||
12676                 error "failed to create file with released layout"
12677
12678         $GETSTRIPE -v $DIR/$tfile
12679
12680         local pattern=$($GETSTRIPE -L $DIR/$tfile)
12681         [ X"$pattern" = X"80000001" ] || error "pattern error ($pattern)"
12682
12683         local stripe_count=$($GETSTRIPE -c $DIR/$tfile) || error "getstripe"
12684         [ $stripe_count -eq 2 ] || error "stripe count not 2 ($stripe_count)"
12685         stat $DIR/$tfile || error "failed to stat released file"
12686
12687         chown $RUNAS_ID $DIR/$tfile ||
12688                 error "chown $RUNAS_ID $DIR/$tfile failed"
12689
12690         chgrp $RUNAS_ID $DIR/$tfile ||
12691                 error "chgrp $RUNAS_ID $DIR/$tfile failed"
12692
12693         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
12694         rm $DIR/$tfile || error "failed to remove released file"
12695 }
12696 run_test 229 "getstripe/stat/rm/attr changes work on released files"
12697
12698 test_230a() {
12699         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12700         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
12701         local MDTIDX=1
12702
12703         test_mkdir $DIR/$tdir
12704         test_mkdir -i0 -c1 $DIR/$tdir/test_230_local
12705         local mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230_local)
12706         [ $mdt_idx -ne 0 ] &&
12707                 error "create local directory on wrong MDT $mdt_idx"
12708
12709         $LFS mkdir -i $MDTIDX $DIR/$tdir/test_230 ||
12710                         error "create remote directory failed"
12711         local mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230)
12712         [ $mdt_idx -ne $MDTIDX ] &&
12713                 error "create remote directory on wrong MDT $mdt_idx"
12714
12715         createmany -o $DIR/$tdir/test_230/t- 10 ||
12716                 error "create files on remote directory failed"
12717         mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230/t-0)
12718         [ $mdt_idx -ne $MDTIDX ] && error "create files on wrong MDT $mdt_idx"
12719         rm -r $DIR/$tdir || error "unlink remote directory failed"
12720 }
12721 run_test 230a "Create remote directory and files under the remote directory"
12722
12723 test_230b() {
12724         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12725         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
12726         local MDTIDX=1
12727         local mdt_index
12728         local i
12729         local file
12730         local pid
12731         local stripe_count
12732         local migrate_dir=$DIR/$tdir/migrate_dir
12733         local other_dir=$DIR/$tdir/other_dir
12734
12735         test_mkdir $DIR/$tdir
12736         test_mkdir -i0 -c1 $migrate_dir
12737         test_mkdir -i0 -c1 $other_dir
12738         for ((i=0; i<10; i++)); do
12739                 mkdir -p $migrate_dir/dir_${i}
12740                 createmany -o $migrate_dir/dir_${i}/f 10 ||
12741                         error "create files under remote dir failed $i"
12742         done
12743
12744         cp /etc/passwd $migrate_dir/$tfile
12745         cp /etc/passwd $other_dir/$tfile
12746         chattr +SAD $migrate_dir
12747         chattr +SAD $migrate_dir/$tfile
12748
12749         local old_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
12750         local old_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
12751         local old_dir_mode=$(stat -c%f $migrate_dir)
12752         local old_file_mode=$(stat -c%f $migrate_dir/$tfile)
12753
12754         mkdir -p $migrate_dir/dir_default_stripe2
12755         $SETSTRIPE -c 2 $migrate_dir/dir_default_stripe2
12756         $SETSTRIPE -c 2 $migrate_dir/${tfile}_stripe2
12757
12758         mkdir -p $other_dir
12759         ln $migrate_dir/$tfile $other_dir/luna
12760         ln $migrate_dir/$tfile $migrate_dir/sofia
12761         ln $other_dir/$tfile $migrate_dir/david
12762         ln -s $migrate_dir/$tfile $other_dir/zachary
12763         ln -s $migrate_dir/$tfile $migrate_dir/${tfile}_ln
12764         ln -s $other_dir/$tfile $migrate_dir/${tfile}_ln_other
12765
12766         $LFS migrate -m $MDTIDX $migrate_dir ||
12767                 error "fails on migrating remote dir to MDT1"
12768
12769         echo "migratate to MDT1, then checking.."
12770         for ((i = 0; i < 10; i++)); do
12771                 for file in $(find $migrate_dir/dir_${i}); do
12772                         mdt_index=$($LFS getstripe -M $file)
12773                         [ $mdt_index == $MDTIDX ] ||
12774                                 error "$file is not on MDT${MDTIDX}"
12775                 done
12776         done
12777
12778         # the multiple link file should still in MDT0
12779         mdt_index=$($LFS getstripe -M $migrate_dir/$tfile)
12780         [ $mdt_index == 0 ] ||
12781                 error "$file is not on MDT${MDTIDX}"
12782
12783         local new_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
12784         [ "$old_dir_flag" = "$new_dir_flag" ] ||
12785                 error " expect $old_dir_flag get $new_dir_flag"
12786
12787         local new_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
12788         [ "$old_file_flag" = "$new_file_flag" ] ||
12789                 error " expect $old_file_flag get $new_file_flag"
12790
12791         local new_dir_mode=$(stat -c%f $migrate_dir)
12792         [ "$old_dir_mode" = "$new_dir_mode" ] ||
12793                 error "expect mode $old_dir_mode get $new_dir_mode"
12794
12795         local new_file_mode=$(stat -c%f $migrate_dir/$tfile)
12796         [ "$old_file_mode" = "$new_file_mode" ] ||
12797                 error "expect mode $old_file_mode get $new_file_mode"
12798
12799         diff /etc/passwd $migrate_dir/$tfile ||
12800                 error "$tfile different after migration"
12801
12802         diff /etc/passwd $other_dir/luna ||
12803                 error "luna different after migration"
12804
12805         diff /etc/passwd $migrate_dir/sofia ||
12806                 error "sofia different after migration"
12807
12808         diff /etc/passwd $migrate_dir/david ||
12809                 error "david different after migration"
12810
12811         diff /etc/passwd $other_dir/zachary ||
12812                 error "zachary different after migration"
12813
12814         diff /etc/passwd $migrate_dir/${tfile}_ln ||
12815                 error "${tfile}_ln different after migration"
12816
12817         diff /etc/passwd $migrate_dir/${tfile}_ln_other ||
12818                 error "${tfile}_ln_other different after migration"
12819
12820         stripe_count=$($LFS getstripe -c $migrate_dir/dir_default_stripe2)
12821         [ $stripe_count = 2 ] ||
12822                 error "dir strpe_count $d != 2 after migration."
12823
12824         stripe_count=$($LFS getstripe -c $migrate_dir/${tfile}_stripe2)
12825         [ $stripe_count = 2 ] ||
12826                 error "file strpe_count $d != 2 after migration."
12827
12828         #migrate back to MDT0
12829         MDTIDX=0
12830
12831         $LFS migrate -m $MDTIDX $migrate_dir ||
12832                 error "fails on migrating remote dir to MDT0"
12833
12834         echo "migrate back to MDT0, checking.."
12835         for file in $(find $migrate_dir); do
12836                 mdt_index=$($LFS getstripe -M $file)
12837                 [ $mdt_index == $MDTIDX ] ||
12838                         error "$file is not on MDT${MDTIDX}"
12839         done
12840
12841         local new_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
12842         [ "$old_dir_flag" = "$new_dir_flag" ] ||
12843                 error " expect $old_dir_flag get $new_dir_flag"
12844
12845         local new_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
12846         [ "$old_file_flag" = "$new_file_flag" ] ||
12847                 error " expect $old_file_flag get $new_file_flag"
12848
12849         local new_dir_mode=$(stat -c%f $migrate_dir)
12850         [ "$old_dir_mode" = "$new_dir_mode" ] ||
12851                 error "expect mode $old_dir_mode get $new_dir_mode"
12852
12853         local new_file_mode=$(stat -c%f $migrate_dir/$tfile)
12854         [ "$old_file_mode" = "$new_file_mode" ] ||
12855                 error "expect mode $old_file_mode get $new_file_mode"
12856
12857         diff /etc/passwd ${migrate_dir}/$tfile ||
12858                 error "$tfile different after migration"
12859
12860         diff /etc/passwd ${other_dir}/luna ||
12861                 error "luna different after migration"
12862
12863         diff /etc/passwd ${migrate_dir}/sofia ||
12864                 error "sofia different after migration"
12865
12866         diff /etc/passwd ${other_dir}/zachary ||
12867                 error "zachary different after migration"
12868
12869         diff /etc/passwd $migrate_dir/${tfile}_ln ||
12870                 error "${tfile}_ln different after migration"
12871
12872         diff /etc/passwd $migrate_dir/${tfile}_ln_other ||
12873                 error "${tfile}_ln_other different after migration"
12874
12875         stripe_count=$($LFS getstripe -c ${migrate_dir}/dir_default_stripe2)
12876         [ $stripe_count = 2 ] ||
12877                 error "dir strpe_count $d != 2 after migration."
12878
12879         stripe_count=$($LFS getstripe -c ${migrate_dir}/${tfile}_stripe2)
12880         [ $stripe_count = 2 ] ||
12881                 error "file strpe_count $d != 2 after migration."
12882
12883         rm -rf $DIR/$tdir || error "rm dir failed after migration"
12884 }
12885 run_test 230b "migrate directory"
12886
12887 test_230c() {
12888         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12889         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12890         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
12891         local MDTIDX=1
12892         local mdt_index
12893         local file
12894         local migrate_dir=$DIR/$tdir/migrate_dir
12895
12896         #If migrating directory fails in the middle, all entries of
12897         #the directory is still accessiable.
12898         test_mkdir $DIR/$tdir
12899         test_mkdir -i0 -c1 $migrate_dir
12900         stat $migrate_dir
12901         createmany -o $migrate_dir/f 10 ||
12902                 error "create files under ${migrate_dir} failed"
12903
12904         #failed after migrating 5 entries
12905         #OBD_FAIL_MIGRATE_ENTRIES       0x1801
12906         do_facet mds1 lctl set_param fail_loc=0x20001801
12907         do_facet mds1 lctl  set_param fail_val=5
12908         local t=$(ls $migrate_dir | wc -l)
12909         $LFS migrate --mdt-index $MDTIDX $migrate_dir &&
12910                 error "migrate should fail after 5 entries"
12911
12912         mkdir $migrate_dir/dir &&
12913                 error "mkdir succeeds under migrating directory"
12914         touch $migrate_dir/file &&
12915                 error "touch file succeeds under migrating directory"
12916
12917         local u=$(ls $migrate_dir | wc -l)
12918         [ "$u" == "$t" ] || error "$u != $t during migration"
12919
12920         for file in $(find $migrate_dir); do
12921                 stat $file || error "stat $file failed"
12922         done
12923
12924         do_facet mds1 lctl set_param fail_loc=0
12925         do_facet mds1 lctl set_param fail_val=0
12926
12927         $LFS migrate -m $MDTIDX $migrate_dir ||
12928                 error "migrate open files should failed with open files"
12929
12930         echo "Finish migration, then checking.."
12931         for file in $(find $migrate_dir); do
12932                 mdt_index=$($LFS getstripe -M $file)
12933                 [ $mdt_index == $MDTIDX ] ||
12934                         error "$file is not on MDT${MDTIDX}"
12935         done
12936
12937         rm -rf $DIR/$tdir || error "rm dir failed after migration"
12938 }
12939 run_test 230c "check directory accessiblity if migration is failed"
12940
12941 test_230d() {
12942         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12943         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
12944         local MDTIDX=1
12945         local mdt_index
12946         local migrate_dir=$DIR/$tdir/migrate_dir
12947         local i
12948         local j
12949
12950         test_mkdir $DIR/$tdir
12951         test_mkdir -i0 -c1 $migrate_dir
12952
12953         for ((i=0; i<100; i++)); do
12954                 test_mkdir -i0 -c1 $migrate_dir/dir_${i}
12955                 createmany -o $migrate_dir/dir_${i}/f 100 ||
12956                         error "create files under remote dir failed $i"
12957         done
12958
12959         $LFS migrate -m $MDTIDX $migrate_dir ||
12960                 error "migrate remote dir error"
12961
12962         echo "Finish migration, then checking.."
12963         for file in $(find $migrate_dir); do
12964                 mdt_index=$($LFS getstripe -M $file)
12965                 [ $mdt_index == $MDTIDX ] ||
12966                         error "$file is not on MDT${MDTIDX}"
12967         done
12968
12969         rm -rf $DIR/$tdir || error "rm dir failed after migration"
12970 }
12971 run_test 230d "check migrate big directory"
12972
12973 test_230e() {
12974         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12975         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
12976         local i
12977         local j
12978         local a_fid
12979         local b_fid
12980
12981         mkdir -p $DIR/$tdir
12982         mkdir $DIR/$tdir/migrate_dir
12983         mkdir $DIR/$tdir/other_dir
12984         touch $DIR/$tdir/migrate_dir/a
12985         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/b
12986         ls $DIR/$tdir/other_dir
12987
12988         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
12989                 error "migrate dir fails"
12990
12991         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir)
12992         [ $mdt_index == 1 ] || error "migrate_dir is not on MDT1"
12993
12994         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
12995         [ $mdt_index == 0 ] || error "a is not on MDT0"
12996
12997         $LFS migrate -m 1 $DIR/$tdir/other_dir ||
12998                 error "migrate dir fails"
12999
13000         mdt_index=$($LFS getstripe -M $DIR/$tdir/other_dir)
13001         [ $mdt_index == 1 ] || error "other_dir is not on MDT1"
13002
13003         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
13004         [ $mdt_index == 1 ] || error "a is not on MDT1"
13005
13006         mdt_index=$($LFS getstripe -M $DIR/$tdir/other_dir/b)
13007         [ $mdt_index == 1 ] || error "b is not on MDT1"
13008
13009         a_fid=$($LFS path2fid $DIR/$tdir/migrate_dir/a)
13010         b_fid=$($LFS path2fid $DIR/$tdir/other_dir/b)
13011
13012         [ "$a_fid" = "$b_fid" ] || error "different fid after migration"
13013
13014         rm -rf $DIR/$tdir || error "rm dir failed after migration"
13015 }
13016 run_test 230e "migrate mulitple local link files"
13017
13018 test_230f() {
13019         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13020         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13021         local a_fid
13022         local ln_fid
13023
13024         mkdir -p $DIR/$tdir
13025         mkdir $DIR/$tdir/migrate_dir
13026         $LFS mkdir -i1 $DIR/$tdir/other_dir
13027         touch $DIR/$tdir/migrate_dir/a
13028         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/ln1
13029         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/ln2
13030         ls $DIR/$tdir/other_dir
13031
13032         # a should be migrated to MDT1, since no other links on MDT0
13033         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
13034                 error "migrate dir fails"
13035         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir)
13036         [ $mdt_index == 1 ] || error "migrate_dir is not on MDT1"
13037         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
13038         [ $mdt_index == 1 ] || error "a is not on MDT1"
13039
13040         # a should stay on MDT1, because it is a mulitple link file
13041         $LFS migrate -m 0 $DIR/$tdir/migrate_dir ||
13042                 error "migrate dir fails"
13043         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
13044         [ $mdt_index == 1 ] || error "a is not on MDT1"
13045
13046         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
13047                 error "migrate dir fails"
13048
13049         a_fid=$($LFS path2fid $DIR/$tdir/migrate_dir/a)
13050         ln_fid=$($LFS path2fid $DIR/$tdir/other_dir/ln1)
13051         [ "$a_fid" = "$ln_fid" ] || error "different fid after migrate to MDT1"
13052
13053         rm -rf $DIR/$tdir/other_dir/ln1 || error "unlink ln1 fails"
13054         rm -rf $DIR/$tdir/other_dir/ln2 || error "unlink ln2 fails"
13055
13056         # a should be migrated to MDT0, since no other links on MDT1
13057         $LFS migrate -m 0 $DIR/$tdir/migrate_dir ||
13058                 error "migrate dir fails"
13059         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
13060         [ $mdt_index == 0 ] || error "a is not on MDT0"
13061
13062         rm -rf $DIR/$tdir || error "rm dir failed after migration"
13063 }
13064 run_test 230f "migrate mulitple remote link files"
13065
13066 test_230g() {
13067         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13068         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13069
13070         mkdir -p $DIR/$tdir/migrate_dir
13071
13072         $LFS migrate -m 1000 $DIR/$tdir/migrate_dir &&
13073                 error "migrating dir to non-exist MDT succeeds"
13074         true
13075 }
13076 run_test 230g "migrate dir to non-exist MDT"
13077
13078 test_230h() {
13079         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13080         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13081         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.64) ] &&
13082                 skip "Need MDS version at least 2.7.64" && return
13083         local mdt_index
13084
13085         mkdir -p $DIR/$tdir/migrate_dir
13086
13087         $LFS migrate -m1 $DIR &&
13088                 error "migrating mountpoint1 should fail"
13089
13090         $LFS migrate -m1 $DIR/$tdir/.. &&
13091                 error "migrating mountpoint2 should fail"
13092
13093         $LFS migrate -m1 $DIR/$tdir/migrate_dir/.. ||
13094                 error "migrating $tdir fail"
13095
13096         mdt_index=$($LFS getstripe -M $DIR/$tdir)
13097         [ $mdt_index == 1 ] || error "$mdt_index != 1 after migration"
13098
13099         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir)
13100         [ $mdt_index == 1 ] || error "$mdt_index != 1 after migration"
13101
13102 }
13103 run_test 230h "migrate .. and root"
13104
13105 test_230i() {
13106         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13107         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13108
13109         mkdir -p $DIR/$tdir/migrate_dir
13110
13111         $LFS migrate -m 1 $DIR/$tdir/migrate_dir/ ||
13112                 error "migration fails with a tailing slash"
13113
13114         $LFS migrate -m 0 $DIR/$tdir/migrate_dir// ||
13115                 error "migration fails with two tailing slashes"
13116 }
13117 run_test 230i "lfs migrate -m tolerates trailing slashes"
13118
13119 test_231a()
13120 {
13121         # For simplicity this test assumes that max_pages_per_rpc
13122         # is the same across all OSCs
13123         local max_pages=$($LCTL get_param -n osc.*.max_pages_per_rpc | head -n1)
13124         local bulk_size=$((max_pages * 4096))
13125
13126         mkdir -p $DIR/$tdir
13127
13128         # clear the OSC stats
13129         $LCTL set_param osc.*.stats=0 &>/dev/null
13130         stop_writeback
13131
13132         # Client writes $bulk_size - there must be 1 rpc for $max_pages.
13133         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=$bulk_size count=1 \
13134                 oflag=direct &>/dev/null || error "dd failed"
13135
13136         sync; sleep 1; sync # just to be safe
13137         local nrpcs=$($LCTL get_param osc.*.stats |awk '/ost_write/ {print $2}')
13138         if [ x$nrpcs != "x1" ]; then
13139                 $LCTL get_param osc.*.stats
13140                 error "found $nrpcs ost_write RPCs, not 1 as expected"
13141         fi
13142
13143         start_writeback
13144         # Drop the OSC cache, otherwise we will read from it
13145         cancel_lru_locks osc
13146
13147         # clear the OSC stats
13148         $LCTL set_param osc.*.stats=0 &>/dev/null
13149
13150         # Client reads $bulk_size.
13151         dd if=$DIR/$tdir/$tfile of=/dev/null bs=$bulk_size count=1 \
13152                 iflag=direct &>/dev/null || error "dd failed"
13153
13154         nrpcs=$($LCTL get_param osc.*.stats | awk '/ost_read/ { print $2 }')
13155         if [ x$nrpcs != "x1" ]; then
13156                 $LCTL get_param osc.*.stats
13157                 error "found $nrpcs ost_read RPCs, not 1 as expected"
13158         fi
13159 }
13160 run_test 231a "checking that reading/writing of BRW RPC size results in one RPC"
13161
13162 test_231b() {
13163         mkdir -p $DIR/$tdir
13164         local i
13165         for i in {0..1023}; do
13166                 dd if=/dev/zero of=$DIR/$tdir/$tfile conv=notrunc \
13167                         seek=$((2 * i)) bs=4096 count=1 &>/dev/null ||
13168                         error "dd of=$DIR/$tdir/$tfile seek=$((2 * i)) failed"
13169         done
13170         sync
13171 }
13172 run_test 231b "must not assert on fully utilized OST request buffer"
13173
13174 test_232() {
13175         mkdir -p $DIR/$tdir
13176         #define OBD_FAIL_LDLM_OST_LVB            0x31c
13177         $LCTL set_param fail_loc=0x31c
13178
13179         # ignore dd failure
13180         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=1 || true
13181
13182         $LCTL set_param fail_loc=0
13183         umount_client $MOUNT || error "umount failed"
13184         mount_client $MOUNT || error "mount failed"
13185 }
13186 run_test 232 "failed lock should not block umount"
13187
13188 test_233a() {
13189         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.64) ] ||
13190         { skip "Need MDS version at least 2.3.64"; return; }
13191
13192         local fid=$($LFS path2fid $MOUNT)
13193         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
13194                 error "cannot access $MOUNT using its FID '$fid'"
13195 }
13196 run_test 233a "checking that OBF of the FS root succeeds"
13197
13198 test_233b() {
13199         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.5.90) ] ||
13200         { skip "Need MDS version at least 2.5.90"; return; }
13201
13202         local fid=$($LFS path2fid $MOUNT/.lustre)
13203         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
13204                 error "cannot access $MOUNT/.lustre using its FID '$fid'"
13205
13206         fid=$($LFS path2fid $MOUNT/.lustre/fid)
13207         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
13208                 error "cannot access $MOUNT/.lustre/fid using its FID '$fid'"
13209 }
13210 run_test 233b "checking that OBF of the FS .lustre succeeds"
13211
13212 test_234() {
13213         local p="$TMP/sanityN-$TESTNAME.parameters"
13214         save_lustre_params client "llite.*.xattr_cache" > $p
13215         lctl set_param llite.*.xattr_cache 1 ||
13216                 { skip "xattr cache is not supported"; return 0; }
13217
13218         mkdir -p $DIR/$tdir || error "mkdir failed"
13219         touch $DIR/$tdir/$tfile || error "touch failed"
13220         # OBD_FAIL_LLITE_XATTR_ENOMEM
13221         $LCTL set_param fail_loc=0x1405
13222         # output of the form: attr 2 4 44 3 fc13 x86_64
13223         V=($(IFS=".-" rpm -q attr))
13224         if [[ ${V[1]} > 2 || ${V[2]} > 4 || ${V[3]} > 44 ||
13225               ${V[1]} = 2 && ${V[2]} = 4 && ${V[3]} = 44 && ${V[4]} > 6 ]]; then
13226                 # attr pre-2.4.44-7 had a bug with rc
13227                 # LU-3703 - SLES 11 and FC13 clients have older attr
13228                 getfattr -n user.attr $DIR/$tdir/$tfile &&
13229                         error "getfattr should have failed with ENOMEM"
13230         else
13231                 skip "LU-3703: attr version $(getfattr --version) too old"
13232         fi
13233         $LCTL set_param fail_loc=0x0
13234         rm -rf $DIR/$tdir
13235
13236         restore_lustre_params < $p
13237         rm -f $p
13238 }
13239 run_test 234 "xattr cache should not crash on ENOMEM"
13240
13241 test_235() {
13242         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.52) ] &&
13243                 skip "Need MDS version at least 2.4.52" && return
13244         flock_deadlock $DIR/$tfile
13245         local RC=$?
13246         case $RC in
13247                 0)
13248                 ;;
13249                 124) error "process hangs on a deadlock"
13250                 ;;
13251                 *) error "error executing flock_deadlock $DIR/$tfile"
13252                 ;;
13253         esac
13254 }
13255 run_test 235 "LU-1715: flock deadlock detection does not work properly"
13256
13257 #LU-2935
13258 test_236() {
13259         check_swap_layouts_support && return 0
13260         test_mkdir -p -c1 $DIR/$tdir || error "mkdir $tdir failed"
13261
13262         local ref1=/etc/passwd
13263         local ref2=/etc/group
13264         local file1=$DIR/$tdir/f1
13265         local file2=$DIR/$tdir/f2
13266
13267         $SETSTRIPE -c 1 $file1 || error "cannot setstripe on '$file1': rc = $?"
13268         cp $ref1 $file1 || error "cp $ref1 $file1 failed: rc = $?"
13269         $SETSTRIPE -c 2 $file2 || error "cannot setstripe on '$file2': rc = $?"
13270         cp $ref2 $file2 || error "cp $ref2 $file2 failed: rc = $?"
13271         local fd=$(free_fd)
13272         local cmd="exec $fd<>$file2"
13273         eval $cmd
13274         rm $file2
13275         $LFS swap_layouts $file1 /proc/self/fd/${fd} ||
13276                 error "cannot swap layouts of '$file1' and /proc/self/fd/${fd}"
13277         cmd="exec $fd>&-"
13278         eval $cmd
13279         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
13280
13281         #cleanup
13282         rm -rf $DIR/$tdir
13283 }
13284 run_test 236 "Layout swap on open unlinked file"
13285
13286 # test to verify file handle related system calls
13287 # (name_to_handle_at/open_by_handle_at)
13288 # The new system calls are supported in glibc >= 2.14.
13289
13290 test_237() {
13291         echo "Test file_handle syscalls" > $DIR/$tfile ||
13292                 error "write failed"
13293         check_fhandle_syscalls $DIR/$tfile ||
13294                 error "check_fhandle_syscalls failed"
13295 }
13296 run_test 237 "Verify name_to_handle_at/open_by_handle_at syscalls"
13297
13298 # LU-4659 linkea consistency
13299 test_238() {
13300         local server_version=$(lustre_version_code $SINGLEMDS)
13301
13302         [[ $server_version -gt $(version_code 2.5.57) ]] ||
13303                 [[ $server_version -gt $(version_code 2.5.1) &&
13304                    $server_version -lt $(version_code 2.5.50) ]] ||
13305                 { skip "Need MDS version at least 2.5.58 or 2.5.2+"; return; }
13306
13307         touch $DIR/$tfile
13308         ln $DIR/$tfile $DIR/$tfile.lnk
13309         touch $DIR/$tfile.new
13310         mv $DIR/$tfile.new $DIR/$tfile
13311         local fid1=$($LFS path2fid $DIR/$tfile)
13312         local fid2=$($LFS path2fid $DIR/$tfile.lnk)
13313         local path1=$($LFS fid2path $FSNAME "$fid1")
13314         [ $tfile == $path1 ] || error "linkea inconsistent: $tfile $fid1 $path1"
13315         local path2=$($LFS fid2path $FSNAME "$fid2")
13316         [ $tfile.lnk == $path2 ] ||
13317                 error "linkea inconsistent: $tfile.lnk $fid2 $path2!"
13318         rm -f $DIR/$tfile*
13319 }
13320 run_test 238 "Verify linkea consistency"
13321
13322 test_239() {
13323         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.60) ] &&
13324                 skip "Need MDS version at least 2.5.60" && return
13325         local list=$(comma_list $(mdts_nodes))
13326
13327         mkdir -p $DIR/$tdir
13328         createmany -o $DIR/$tdir/f- 5000
13329         unlinkmany $DIR/$tdir/f- 5000
13330         do_nodes $list "lctl set_param -n osp*.*.sync_changes 1"
13331         changes=$(do_nodes $list "lctl get_param -n osc.*MDT*.sync_changes \
13332                         osc.*MDT*.sync_in_flight" | calc_sum)
13333         [ "$changes" -eq 0 ] || error "$changes not synced"
13334 }
13335 run_test 239 "osp_sync test"
13336
13337 test_239a() { #LU-5297
13338         touch $DIR/$tfile
13339         #define OBD_FAIL_OSP_CHECK_INVALID_REC     0x2100
13340         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2100
13341         chgrp $RUNAS_GID $DIR/$tfile
13342         wait_delete_completed
13343 }
13344 run_test 239a "process invalid osp sync record correctly"
13345
13346 test_239b() { #LU-5297
13347         touch $DIR/$tfile1
13348         #define OBD_FAIL_OSP_CHECK_ENOMEM     0x2101
13349         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2101
13350         chgrp $RUNAS_GID $DIR/$tfile1
13351         wait_delete_completed
13352         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
13353         touch $DIR/$tfile2
13354         chgrp $RUNAS_GID $DIR/$tfile2
13355         wait_delete_completed
13356 }
13357 run_test 239b "process osp sync record with ENOMEM error correctly"
13358
13359 test_240() {
13360         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13361
13362         mkdir -p $DIR/$tdir
13363
13364         $LFS mkdir -i 0 $DIR/$tdir/d0 ||
13365                 error "failed to mkdir $DIR/$tdir/d0 on MDT0"
13366         $LFS mkdir -i 1 $DIR/$tdir/d0/d1 ||
13367                 error "failed to mkdir $DIR/$tdir/d0/d1 on MDT1"
13368
13369         umount_client $MOUNT || error "umount failed"
13370         #define OBD_FAIL_TGT_DELAY_CONDITIONAL   0x713
13371         do_facet mds2 lctl set_param fail_loc=0x713 fail_val=1
13372         mount_client $MOUNT || error "failed to mount client"
13373
13374         echo "stat $DIR/$tdir/d0/d1, should not fail/ASSERT"
13375         stat $DIR/$tdir/d0/d1 || error "fail to stat $DIR/$tdir/d0/d1"
13376 }
13377 run_test 240 "race between ldlm enqueue and the connection RPC (no ASSERT)"
13378
13379 test_241_bio() {
13380         for LOOP in $(seq $1); do
13381                 dd if=$DIR/$tfile of=/dev/null bs=40960 count=1 2>/dev/null
13382                 cancel_lru_locks osc || true
13383         done
13384 }
13385
13386 test_241_dio() {
13387         for LOOP in $(seq $1); do
13388                 dd if=$DIR/$tfile of=/dev/null bs=40960 count=1 \
13389                                                 iflag=direct 2>/dev/null
13390         done
13391 }
13392
13393 test_241() {
13394         dd if=/dev/zero of=$DIR/$tfile count=1 bs=40960
13395         ls -la $DIR/$tfile
13396         cancel_lru_locks osc
13397         test_241_bio 1000 &
13398         PID=$!
13399         test_241_dio 1000
13400         wait $PID
13401 }
13402 run_test 241 "bio vs dio"
13403
13404 test_241b() {
13405         dd if=/dev/zero of=$DIR/$tfile count=1 bs=40960
13406         ls -la $DIR/$tfile
13407         test_241_dio 1000 &
13408         PID=$!
13409         test_241_dio 1000
13410         wait $PID
13411 }
13412 run_test 241b "dio vs dio"
13413
13414 test_242() {
13415         mkdir -p $DIR/$tdir
13416         touch $DIR/$tdir/$tfile
13417
13418         #define OBD_FAIL_MDS_READPAGE_PACK      0x105
13419         do_facet mds1 lctl set_param fail_loc=0x105
13420         /bin/ls $DIR/$tdir && error "ls $DIR/$tdir should fail"
13421
13422         do_facet mds1 lctl set_param fail_loc=0
13423         /bin/ls $DIR/$tdir || error "ls $DIR/$tdir failed"
13424 }
13425 run_test 242 "mdt_readpage failure should not cause directory unreadable"
13426
13427 test_243()
13428 {
13429         test_mkdir -p $DIR/$tdir
13430         group_lock_test -d $DIR/$tdir || error "A group lock test failed"
13431 }
13432 run_test 243 "various group lock tests"
13433
13434 test_244()
13435 {
13436         test_mkdir -p $DIR/$tdir
13437         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=35
13438         sendfile_grouplock $DIR/$tdir/$tfile || \
13439                 error "sendfile+grouplock failed"
13440         rm -rf $DIR/$tdir
13441 }
13442 run_test 244 "sendfile with group lock tests"
13443
13444 test_245() {
13445         local flagname="multi_mod_rpcs"
13446         local connect_data_name="max_mod_rpcs"
13447         local out
13448
13449         # check if multiple modify RPCs flag is set
13450         out=$($LCTL get_param mdc.$FSNAME-MDT0000-*.import |
13451                 grep "connect_flags:")
13452         echo "$out"
13453
13454         echo "$out" | grep -qw $flagname
13455         if [ $? -ne 0 ]; then
13456                 echo "connect flag $flagname is not set"
13457                 return
13458         fi
13459
13460         # check if multiple modify RPCs data is set
13461         out=$($LCTL get_param mdc.$FSNAME-MDT0000-*.import)
13462         echo "$out"
13463
13464         echo "$out" | grep -qw $connect_data_name ||
13465                 error "import should have connect data $connect_data_name"
13466 }
13467 run_test 245 "check mdc connection flag/data: multiple modify RPCs"
13468
13469 test_246() { # LU-7371
13470         [ $(lustre_version_code ost1) -lt $(version_code 2.7.62) ] &&
13471                 skip "Need OST version >= 2.7.62" && return 0
13472         do_facet ost1 $LCTL set_param fail_val=4095
13473 #define OBD_FAIL_OST_READ_SIZE          0x234
13474         do_facet ost1 $LCTL set_param fail_loc=0x234
13475         $LFS setstripe $DIR/$tfile -i 0 -c 1
13476         dd if=/dev/zero of=$DIR/$tfile bs=4095 count=1 > /dev/null 2>&1
13477         cancel_lru_locks $FSNAME-OST0000
13478         dd if=$DIR/$tfile of=/dev/null bs=1048576 || error "Read failed"
13479 }
13480 run_test 246 "Read file of size 4095 should return right length"
13481
13482 test_250() {
13483         [ "$(facet_fstype ost$(($($GETSTRIPE -i $DIR/$tfile) + 1)))" = "zfs" ] \
13484          && skip "no 16TB file size limit on ZFS" && return
13485
13486         $SETSTRIPE -c 1 $DIR/$tfile
13487         # ldiskfs extent file size limit is (16TB - 4KB - 1) bytes
13488         local size=$((16 * 1024 * 1024 * 1024 * 1024 - 4096 - 1))
13489         $TRUNCATE $DIR/$tfile $size || error "truncate $tfile to $size failed"
13490         dd if=/dev/zero of=$DIR/$tfile bs=10 count=1 oflag=append \
13491                 conv=notrunc,fsync && error "append succeeded"
13492         return 0
13493 }
13494 run_test 250 "Write above 16T limit"
13495
13496 test_251() {
13497         $SETSTRIPE -c -1 -S 1048576 $DIR/$tfile
13498
13499         #define OBD_FAIL_LLITE_LOST_LAYOUT 0x1407
13500         #Skip once - writing the first stripe will succeed
13501         $LCTL set_param fail_loc=0xa0001407 fail_val=1
13502         $MULTIOP $DIR/$tfile o:O_RDWR:w2097152c 2>&1 | grep -q "short write" &&
13503                 error "short write happened"
13504
13505         $LCTL set_param fail_loc=0xa0001407 fail_val=1
13506         $MULTIOP $DIR/$tfile or2097152c 2>&1 | grep -q "short read" &&
13507                 error "short read happened"
13508
13509         rm -f $DIR/$tfile
13510 }
13511 run_test 251 "Handling short read and write correctly"
13512
13513 test_252() {
13514         local tgt
13515         local dev
13516         local out
13517         local uuid
13518         local num
13519         local gen
13520
13521         if [ "$(facet_fstype ost1)" != "ldiskfs" -o \
13522              "$(facet_fstype mds1)" != "ldiskfs" ]; then
13523                 skip "can only run lr_reader on ldiskfs target"
13524                 return
13525         fi
13526
13527         # check lr_reader on OST0000
13528         tgt=ost1
13529         dev=$(facet_device $tgt)
13530         out=$(do_facet $tgt $LR_READER $dev)
13531         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
13532         echo "$out"
13533         uuid=$(echo "$out" | grep -i uuid | awk '{ print $2 }')
13534         [ "$uuid" == "$(ostuuid_from_index 0)" ] ||
13535                 error "Invalid uuid returned by $LR_READER on target $tgt"
13536         echo -e "uuid returned by $LR_READER is '$uuid'\n"
13537
13538         # check lr_reader -c on MDT0000
13539         tgt=mds1
13540         dev=$(facet_device $tgt)
13541         if ! do_facet $tgt $LR_READER -h | grep -q OPTIONS; then
13542                 echo "$LR_READER does not support additional options"
13543                 return 0
13544         fi
13545         out=$(do_facet $tgt $LR_READER -c $dev)
13546         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
13547         echo "$out"
13548         num=$(echo "$out" | grep -c "mdtlov")
13549         [ "$num" -eq $((MDSCOUNT - 1)) ] ||
13550                 error "Invalid number of mdtlov clients returned by $LR_READER"
13551         echo -e "Number of mdtlov clients returned by $LR_READER is '$num'\n"
13552
13553         # check lr_reader -cr on MDT0000
13554         out=$(do_facet $tgt $LR_READER -cr $dev)
13555         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
13556         echo "$out"
13557         echo "$out" | grep -q "^reply_data:$" ||
13558                 error "$LR_READER should have returned 'reply_data' section"
13559         num=$(echo "$out" | grep -c "client_generation")
13560         echo -e "Number of reply data returned by $LR_READER is '$num'\n"
13561 }
13562 run_test 252 "check lr_reader tool"
13563
13564
13565 cleanup_test_300() {
13566         trap 0
13567         umask $SAVE_UMASK
13568 }
13569 test_striped_dir() {
13570         local mdt_index=$1
13571         local stripe_count
13572         local stripe_index
13573
13574         mkdir -p $DIR/$tdir
13575
13576         SAVE_UMASK=$(umask)
13577         trap cleanup_test_300 RETURN EXIT
13578
13579         $LFS setdirstripe -i $mdt_index -c 2 -t all_char -m 755 \
13580                                                 $DIR/$tdir/striped_dir ||
13581                 error "set striped dir error"
13582
13583         local mode=$(stat -c%a $DIR/$tdir/striped_dir)
13584         [ "$mode" = "755" ] || error "expect 755 got $mode"
13585
13586         $LFS getdirstripe $DIR/$tdir/striped_dir > /dev/null 2>&1 ||
13587                 error "getdirstripe failed"
13588         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir)
13589         if [ "$stripe_count" != "2" ]; then
13590                 error "stripe_count is $stripe_count, expect 2"
13591         fi
13592
13593         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir)
13594         if [ "$stripe_index" != "$mdt_index" ]; then
13595                 error "stripe_index is $stripe_index, expect $mdt_index"
13596         fi
13597
13598         [ $(stat -c%h $DIR/$tdir/striped_dir) == '2' ] ||
13599                 error "nlink error after create striped dir"
13600
13601         mkdir $DIR/$tdir/striped_dir/a
13602         mkdir $DIR/$tdir/striped_dir/b
13603
13604         stat $DIR/$tdir/striped_dir/a ||
13605                 error "create dir under striped dir failed"
13606         stat $DIR/$tdir/striped_dir/b ||
13607                 error "create dir under striped dir failed"
13608
13609         [ $(stat -c%h $DIR/$tdir/striped_dir) == '4' ] ||
13610                 error "nlink error after mkdir"
13611
13612         rmdir $DIR/$tdir/striped_dir/a
13613         [ $(stat -c%h $DIR/$tdir/striped_dir) == '3' ] ||
13614                 error "nlink error after rmdir"
13615
13616         rmdir $DIR/$tdir/striped_dir/b
13617         [ $(stat -c%h $DIR/$tdir/striped_dir) == '2' ] ||
13618                 error "nlink error after rmdir"
13619
13620         chattr +i $DIR/$tdir/striped_dir
13621         createmany -o $DIR/$tdir/striped_dir/f 10 &&
13622                 error "immutable flags not working under striped dir!"
13623         chattr -i $DIR/$tdir/striped_dir
13624
13625         rmdir $DIR/$tdir/striped_dir ||
13626                 error "rmdir striped dir error"
13627
13628         cleanup_test_300
13629
13630         true
13631 }
13632
13633 test_300a() {
13634         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13635         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13636
13637         test_striped_dir 0 || error "failed on striped dir on MDT0"
13638         test_striped_dir 1 || error "failed on striped dir on MDT0"
13639 }
13640 run_test 300a "basic striped dir sanity test"
13641
13642 test_300b() {
13643         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13644         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13645         local i
13646         local mtime1
13647         local mtime2
13648         local mtime3
13649
13650         test_mkdir $DIR/$tdir || error "mkdir fail"
13651         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir ||
13652                 error "set striped dir error"
13653         for ((i=0; i<10; i++)); do
13654                 mtime1=$(stat -c %Y $DIR/$tdir/striped_dir)
13655                 sleep 1
13656                 touch $DIR/$tdir/striped_dir/file_$i ||
13657                                         error "touch error $i"
13658                 mtime2=$(stat -c %Y $DIR/$tdir/striped_dir)
13659                 [ $mtime1 -eq $mtime2 ] &&
13660                         error "mtime not change after create"
13661                 sleep 1
13662                 rm -f $DIR/$tdir/striped_dir/file_$i ||
13663                                         error "unlink error $i"
13664                 mtime3=$(stat -c %Y $DIR/$tdir/striped_dir)
13665                 [ $mtime2 -eq $mtime3 ] &&
13666                         error "mtime did not change after unlink"
13667         done
13668         true
13669 }
13670 run_test 300b "check ctime/mtime for striped dir"
13671
13672 test_300c() {
13673         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13674         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13675         local file_count
13676
13677         mkdir -p $DIR/$tdir
13678         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir ||
13679                 error "set striped dir error"
13680
13681         chown $RUNAS_ID:$RUNAS_GID $DIR/$tdir/striped_dir ||
13682                 error "chown striped dir failed"
13683
13684         $RUNAS createmany -o $DIR/$tdir/striped_dir/f 5000 ||
13685                 error "create 5k files failed"
13686
13687         file_count=$(ls $DIR/$tdir/striped_dir | wc -l)
13688
13689         [ "$file_count" = 5000 ] || error "file count $file_count != 5000"
13690
13691         rm -rf $DIR/$tdir
13692 }
13693 run_test 300c "chown && check ls under striped directory"
13694
13695 test_300d() {
13696         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13697         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13698         local stripe_count
13699         local file
13700
13701         mkdir -p $DIR/$tdir
13702         $SETSTRIPE -c 2 $DIR/$tdir
13703
13704         #local striped directory
13705         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir ||
13706                 error "set striped dir error"
13707         createmany -o $DIR/$tdir/striped_dir/f 10 ||
13708                 error "create 10 files failed"
13709
13710         #remote striped directory
13711         $LFS setdirstripe -i 1 -c 2 $DIR/$tdir/remote_striped_dir ||
13712                 error "set striped dir error"
13713         createmany -o $DIR/$tdir/remote_striped_dir/f 10 ||
13714                 error "create 10 files failed"
13715
13716         for file in $(find $DIR/$tdir); do
13717                 stripe_count=$($GETSTRIPE -c $file)
13718                 [ $stripe_count -eq 2 ] ||
13719                         error "wrong stripe $stripe_count for $file"
13720         done
13721
13722         rm -rf $DIR/$tdir
13723 }
13724 run_test 300d "check default stripe under striped directory"
13725
13726 test_300e() {
13727         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
13728                 skip "Need MDS version at least 2.7.55" && return
13729         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13730         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13731         local stripe_count
13732         local file
13733
13734         mkdir -p $DIR/$tdir
13735
13736         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir ||
13737                 error "set striped dir error"
13738
13739         touch $DIR/$tdir/striped_dir/a
13740         touch $DIR/$tdir/striped_dir/b
13741         touch $DIR/$tdir/striped_dir/c
13742
13743         mkdir $DIR/$tdir/striped_dir/dir_a
13744         mkdir $DIR/$tdir/striped_dir/dir_b
13745         mkdir $DIR/$tdir/striped_dir/dir_c
13746
13747         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir/stp_a ||
13748                 error "set striped dir under striped dir error"
13749
13750         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir/stp_b ||
13751                 error "set striped dir under striped dir error"
13752
13753         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir/stp_c ||
13754                 error "set striped dir under striped dir error"
13755
13756         mrename $DIR/$tdir/striped_dir/dir_a $DIR/$tdir/striped_dir/dir_b ||
13757                 error "rename dir under striped dir fails"
13758
13759         mrename $DIR/$tdir/striped_dir/stp_a $DIR/$tdir/striped_dir/stp_b ||
13760                 error "rename dir under different stripes fails"
13761
13762         mrename $DIR/$tdir/striped_dir/a $DIR/$tdir/striped_dir/c ||
13763                 error "rename file under striped dir should succeed"
13764
13765         mrename $DIR/$tdir/striped_dir/dir_b $DIR/$tdir/striped_dir/dir_c ||
13766                 error "rename dir under striped dir should succeed"
13767
13768         rm -rf $DIR/$tdir
13769 }
13770 run_test 300e "check rename under striped directory"
13771
13772 test_300f() {
13773         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
13774                 skip "Need MDS version at least 2.7.55" && return
13775         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13776         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13777         local stripe_count
13778         local file
13779
13780         rm -rf $DIR/$tdir
13781         mkdir -p $DIR/$tdir
13782
13783         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir ||
13784                 error "set striped dir error"
13785
13786         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir1 ||
13787                 error "set striped dir error"
13788
13789         touch $DIR/$tdir/striped_dir/a
13790         mkdir $DIR/$tdir/striped_dir/dir_a
13791         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir/stp_a ||
13792                 error "create striped dir under striped dir fails"
13793
13794         touch $DIR/$tdir/striped_dir1/b
13795         mkdir $DIR/$tdir/striped_dir1/dir_b
13796         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir/stp_b ||
13797                 error "create striped dir under striped dir fails"
13798
13799         mrename $DIR/$tdir/striped_dir/dir_a $DIR/$tdir/striped_dir1/dir_b ||
13800                 error "rename dir under different striped dir should fail"
13801
13802         mrename $DIR/$tdir/striped_dir/stp_a $DIR/$tdir/striped_dir1/stp_b ||
13803                 error "rename striped dir under diff striped dir should fail"
13804
13805         mrename $DIR/$tdir/striped_dir/a $DIR/$tdir/striped_dir1/a ||
13806                 error "rename file under diff striped dirs fails"
13807
13808         rm -rf $DIR/$tdir
13809 }
13810 run_test 300f "check rename cross striped directory"
13811
13812 test_300_check_default_striped_dir()
13813 {
13814         local dirname=$1
13815         local default_count=$2
13816         local default_index=$3
13817         local stripe_count
13818         local stripe_index
13819         local dir_stripe_index
13820         local dir
13821
13822         echo "checking $dirname $default_count $default_index"
13823         $LFS setdirstripe -D -c $default_count -i $default_index \
13824                                 -t all_char $DIR/$tdir/$dirname ||
13825                 error "set default stripe on striped dir error"
13826         stripe_count=$($LFS getdirstripe -D -c $DIR/$tdir/$dirname)
13827         [ $stripe_count -eq $default_count ] ||
13828                 error "expect $default_count get $stripe_count for $dirname"
13829
13830         stripe_index=$($LFS getdirstripe -D -i $DIR/$tdir/$dirname)
13831         [ $stripe_index -eq $default_index ] ||
13832                 error "expect $default_index get $stripe_index for $dirname"
13833
13834         mkdir $DIR/$tdir/$dirname/{test1,test2,test3,test4} ||
13835                                                 error "create dirs failed"
13836
13837         createmany -o $DIR/$tdir/$dirname/f- 10 || error "create files failed"
13838         unlinkmany $DIR/$tdir/$dirname/f- 10    || error "unlink files failed"
13839         for dir in $(find $DIR/$tdir/$dirname/*); do
13840                 stripe_count=$($LFS getdirstripe -c $dir)
13841                 [ $stripe_count -eq $default_count ] ||
13842                 [ $stripe_count -eq 0 -o $default_count -eq 1 ] ||
13843                 error "stripe count $default_count != $stripe_count for $dir"
13844
13845                 stripe_index=$($LFS getdirstripe -i $dir)
13846                 [ $default_index -eq -1 -o $stripe_index -eq $default_index ] ||
13847                         error "$stripe_index != $default_index for $dir"
13848
13849                 #check default stripe
13850                 stripe_count=$($LFS getdirstripe -D -c $dir)
13851                 [ $stripe_count -eq $default_count ] ||
13852                 error "default count $default_count != $stripe_count for $dir"
13853
13854                 stripe_index=$($LFS getdirstripe -D -i $dir)
13855                 [ $stripe_index -eq $default_index ] ||
13856                 error "default index $default_index != $stripe_index for $dir"
13857         done
13858         rmdir $DIR/$tdir/$dirname/* || error "rmdir failed"
13859 }
13860
13861 test_300g() {
13862         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
13863                 skip "Need MDS version at least 2.7.55" && return
13864         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13865         local dir
13866         local stripe_count
13867         local stripe_index
13868
13869         mkdir $DIR/$tdir
13870         mkdir $DIR/$tdir/normal_dir
13871
13872         test_300_check_default_striped_dir normal_dir $MDSCOUNT 1
13873         test_300_check_default_striped_dir normal_dir 1 0
13874         test_300_check_default_striped_dir normal_dir 2 1
13875         test_300_check_default_striped_dir normal_dir 2 -1
13876
13877         #delete default stripe information
13878         echo "delete default stripeEA"
13879         $LFS setdirstripe -d $DIR/$tdir/normal_dir ||
13880                 error "set default stripe on striped dir error"
13881
13882         mkdir -p $DIR/$tdir/normal_dir/{test1,test2,test3,test4}
13883         for dir in $(find $DIR/$tdir/normal_dir/*); do
13884                 stripe_count=$($LFS getdirstripe -c $dir)
13885                 [ $stripe_count -eq 0 ] ||
13886                         error "expect 1 get $stripe_count for $dir"
13887                 stripe_index=$($LFS getdirstripe -i $dir)
13888                 [ $stripe_index -eq 0 ] ||
13889                         error "expect 0 get $stripe_index for $dir"
13890         done
13891 }
13892 run_test 300g "check default striped directory for normal directory"
13893
13894 test_300h() {
13895         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
13896                 skip "Need MDS version at least 2.7.55" && return
13897         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13898         local dir
13899         local stripe_count
13900
13901         mkdir $DIR/$tdir
13902         $LFS setdirstripe -i 0 -c $MDSCOUNT -t all_char \
13903                                         $DIR/$tdir/striped_dir ||
13904                 error "set striped dir error"
13905
13906         test_300_check_default_striped_dir striped_dir $MDSCOUNT 1
13907         test_300_check_default_striped_dir striped_dir 1 0
13908         test_300_check_default_striped_dir striped_dir 2 1
13909         test_300_check_default_striped_dir striped_dir 2 -1
13910
13911         #delete default stripe information
13912         $LFS setdirstripe -d $DIR/$tdir/striped_dir ||
13913                 error "set default stripe on striped dir error"
13914
13915         mkdir -p $DIR/$tdir/striped_dir/{test1,test2,test3,test4}
13916         for dir in $(find $DIR/$tdir/striped_dir/*); do
13917                 stripe_count=$($LFS getdirstripe -c $dir)
13918                 [ $stripe_count -eq 0 ] ||
13919                         error "expect 1 get $stripe_count for $dir"
13920         done
13921 }
13922 run_test 300h "check default striped directory for striped directory"
13923
13924 test_300i() {
13925         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
13926                 skip "Need MDS version at least 2.7.55" && return
13927         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13928         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13929         local stripe_count
13930         local file
13931
13932         mkdir $DIR/$tdir
13933
13934         $LFS setdirstripe -i 0 -c$MDSCOUNT -t all_char $DIR/$tdir/striped_dir ||
13935                 error "set striped dir error"
13936
13937         createmany -o $DIR/$tdir/striped_dir/f- 10 ||
13938                 error "create files under striped dir failed"
13939
13940         # unfortunately, we need to umount to clear dir layout cache for now
13941         # once we fully implement dir layout, we can drop this
13942         umount_client $MOUNT || error "umount failed"
13943         mount_client $MOUNT || error "mount failed"
13944
13945         #set the stripe to be unknown hash type
13946         #define OBD_FAIL_UNKNOWN_LMV_STRIPE     0x1901
13947         $LCTL set_param fail_loc=0x1901
13948         for ((i = 0; i < 10; i++)); do
13949                 $CHECKSTAT -t file $DIR/$tdir/striped_dir/f-$i ||
13950                         error "stat f-$i failed"
13951                 rm $DIR/$tdir/striped_dir/f-$i || error "unlink f-$i failed"
13952         done
13953
13954         touch $DIR/$tdir/striped_dir/f0 &&
13955                 error "create under striped dir with unknown hash should fail"
13956
13957         $LCTL set_param fail_loc=0
13958
13959         umount_client $MOUNT || error "umount failed"
13960         mount_client $MOUNT || error "mount failed"
13961
13962         return 0
13963 }
13964 run_test 300i "client handle unknown hash type striped directory"
13965
13966 test_300j() {
13967         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13968         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
13969                 skip "Need MDS version at least 2.7.55" && return
13970         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13971         local stripe_count
13972         local file
13973
13974         mkdir $DIR/$tdir
13975
13976         #define OBD_FAIL_SPLIT_UPDATE_REC       0x1702
13977         $LCTL set_param fail_loc=0x1702
13978         $LFS setdirstripe -i 0 -c$MDSCOUNT -t all_char $DIR/$tdir/striped_dir ||
13979                 error "set striped dir error"
13980
13981         createmany -o $DIR/$tdir/striped_dir/f- 10 ||
13982                 error "create files under striped dir failed"
13983
13984         $LCTL set_param fail_loc=0
13985
13986         rm -rf $DIR/$tdir || error "unlink striped dir fails"
13987
13988         return 0
13989 }
13990 run_test 300j "test large update record"
13991
13992 test_300k() {
13993         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
13994                 skip "Need MDS version at least 2.7.55" && return
13995         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13996         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13997         local stripe_count
13998         local file
13999
14000         mkdir $DIR/$tdir
14001
14002         #define OBD_FAIL_LARGE_STRIPE   0x1703
14003         $LCTL set_param fail_loc=0x1703
14004         $LFS setdirstripe -i 0 -c512 $DIR/$tdir/striped_dir ||
14005                 error "set striped dir error"
14006         $LCTL set_param fail_loc=0
14007
14008         $LFS getdirstripe $DIR/$tdir/striped_dir ||
14009                 error "getstripeddir fails"
14010         rm -rf $DIR/$tdir/striped_dir ||
14011                 error "unlink striped dir fails"
14012
14013         return 0
14014 }
14015 run_test 300k "test large striped directory"
14016
14017 test_300l() {
14018         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
14019                 skip "Need MDS version at least 2.7.55" && return
14020         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14021         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14022         local stripe_index
14023
14024         test_mkdir -p $DIR/$tdir/striped_dir
14025         chown $RUNAS_ID $DIR/$tdir/striped_dir ||
14026                         error "chown $RUNAS_ID failed"
14027         $LFS setdirstripe -i 1 -D $DIR/$tdir/striped_dir ||
14028                 error "set default striped dir failed"
14029
14030         #define OBD_FAIL_MDS_STALE_DIR_LAYOUT    0x158
14031         $LCTL set_param fail_loc=0x80000158
14032         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir || error "create dir fails"
14033
14034         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/test_dir)
14035         [ $stripe_index -eq 1 ] ||
14036                 error "expect 1 get $stripe_index for $dir"
14037 }
14038 run_test 300l "non-root user to create dir under striped dir with stale layout"
14039
14040 test_300m() {
14041         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
14042                 skip "Need MDS version at least 2.7.55" && return
14043         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14044         [ $MDSCOUNT -ge 2 ] && skip "Only for single MDT" && return
14045
14046         mkdir -p $DIR/$tdir/striped_dir
14047         $LFS setdirstripe -D -c 1 $DIR/$tdir/striped_dir ||
14048                 error "set default stripes dir error"
14049
14050         mkdir $DIR/$tdir/striped_dir/a || error "mkdir a fails"
14051
14052         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir/a)
14053         [ $stripe_count -eq 0 ] ||
14054                         error "expect 0 get $stripe_count for a"
14055
14056         $LFS setdirstripe -D -c 2 $DIR/$tdir/striped_dir ||
14057                 error "set default stripes dir error"
14058
14059         mkdir $DIR/$tdir/striped_dir/b || error "mkdir b fails"
14060
14061         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir/b)
14062         [ $stripe_count -eq 0 ] ||
14063                         error "expect 0 get $stripe_count for b"
14064
14065         $LFS setdirstripe -D -c1 -i2 $DIR/$tdir/striped_dir ||
14066                 error "set default stripes dir error"
14067
14068         mkdir $DIR/$tdir/striped_dir/c &&
14069                 error "default stripe_index is invalid, mkdir c should fails"
14070
14071         rm -rf $DIR/$tdir || error "rmdir fails"
14072 }
14073 run_test 300m "setstriped directory on single MDT FS"
14074
14075 cleanup_300n() {
14076         local list=$(comma_list $(mdts_nodes))
14077
14078         trap 0
14079         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
14080 }
14081
14082 test_300n() {
14083         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
14084                 skip "Need MDS version at least 2.7.55" && return
14085         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14086         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14087         local stripe_index
14088         local list=$(comma_list $(mdts_nodes))
14089
14090         trap cleanup_300n RETURN EXIT
14091         mkdir -p $DIR/$tdir
14092         chmod 777 $DIR/$tdir
14093         $RUNAS $LFS setdirstripe -i0 -c$MDSCOUNT \
14094                                 $DIR/$tdir/striped_dir > /dev/null 2>&1 &&
14095                 error "create striped dir succeeds with gid=0"
14096
14097         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=-1
14098         $RUNAS $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
14099                 error "create striped dir fails with gid=-1"
14100
14101         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
14102         $RUNAS $LFS setdirstripe -i 1 -c$MDSCOUNT -D \
14103                                 $DIR/$tdir/striped_dir > /dev/null 2>&1 &&
14104                 error "set default striped dir succeeds with gid=0"
14105
14106
14107         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=-1
14108         $RUNAS $LFS setdirstripe -i 1 -c$MDSCOUNT -D $DIR/$tdir/striped_dir ||
14109                 error "set default striped dir fails with gid=-1"
14110
14111
14112         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
14113         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir ||
14114                                         error "create test_dir fails"
14115         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir1 ||
14116                                         error "create test_dir1 fails"
14117         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir2 ||
14118                                         error "create test_dir2 fails"
14119         cleanup_300n
14120 }
14121 run_test 300n "non-root user to create dir under striped dir with default EA"
14122
14123 test_300o() {
14124         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
14125                 skip "Need MDS version at least 2.7.55" && return
14126         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14127         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14128         local numfree1
14129         local numfree2
14130
14131         mkdir -p $DIR/$tdir
14132
14133         numfree1=$(lctl get_param -n mdc.*MDT0000*.filesfree)
14134         numfree2=$(lctl get_param -n mdc.*MDT0001*.filesfree)
14135         if [ $numfree1 -lt 66000 -o $numfree2 -lt 66000 ]; then
14136                 skip "not enough free inodes $numfree1 $numfree2"
14137                 return
14138         fi
14139
14140         numfree1=$(lctl get_param -n mdc.*MDT0000-mdc-*.kbytesfree)
14141         numfree2=$(lctl get_param -n mdc.*MDT0001-mdc-*.kbytesfree)
14142         if [ $numfree1 -lt 300000 -o $numfree2 -lt 300000 ]; then
14143                 skip "not enough free space $numfree1 $numfree2"
14144                 return
14145         fi
14146
14147         $LFS setdirstripe -c2 $DIR/$tdir/striped_dir ||
14148                 error "setdirstripe fails"
14149
14150         createmany -d $DIR/$tdir/striped_dir/d 131000 ||
14151                 error "create dirs fails"
14152
14153         $LCTL set_param ldlm.namespaces.*mdc-*.lru_size=0
14154         ls $DIR/$tdir/striped_dir > /dev/null ||
14155                 error "ls striped dir fails"
14156         unlinkmany -d $DIR/$tdir/striped_dir/d 131000 ||
14157                 error "unlink big striped dir fails"
14158 }
14159 run_test 300o "unlink big sub stripe(> 65000 subdirs)"
14160
14161 test_300p() {
14162         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14163         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14164
14165         mkdir -p $DIR/$tdir
14166
14167         #define OBD_FAIL_OUT_ENOSPC     0x1704
14168         do_facet mds2 lctl set_param fail_loc=0x80001704
14169         $LFS setdirstripe -c2 $DIR/$tdir/bad_striped_dir > /dev/null 2>&1 &&
14170                         error "create striped directory should fail"
14171
14172         [ -e $DIR/$tdir/bad_striped_dir ] && error "striped dir exists"
14173
14174         $LFS setdirstripe -c2 $DIR/$tdir/bad_striped_dir
14175         true
14176 }
14177 run_test 300p "create striped directory without space"
14178
14179 prepare_remote_file() {
14180         mkdir $DIR/$tdir/src_dir ||
14181                 error "create remote source failed"
14182
14183         cp /etc/hosts $DIR/$tdir/src_dir/a || error
14184         touch $DIR/$tdir/src_dir/a
14185
14186         $LFS mkdir -i 1 $DIR/$tdir/tgt_dir ||
14187                 error "create remote target dir failed"
14188
14189         touch $DIR/$tdir/tgt_dir/b
14190
14191         mrename $DIR/$tdir/src_dir/a $DIR/$tdir/tgt_dir/b ||
14192                 error "rename dir cross MDT failed!"
14193
14194         $CHECKSTAT -t file $DIR/$tdir/src_dir/a &&
14195                 error "src_child still exists after rename"
14196
14197         $CHECKSTAT -t file $DIR/$tdir/tgt_dir/b ||
14198                 error "missing file(a) after rename"
14199
14200         diff /etc/hosts $DIR/$tdir/tgt_dir/b ||
14201                 error "diff after rename"
14202 }
14203
14204 test_310a() {
14205         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 4 MDTs" && return
14206         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14207         local remote_file=$DIR/$tdir/tgt_dir/b
14208
14209         mkdir -p $DIR/$tdir
14210
14211         prepare_remote_file || error "prepare remote file failed"
14212
14213         #open-unlink file
14214         $OPENUNLINK $remote_file $remote_file || error
14215         $CHECKSTAT -a $remote_file || error
14216 }
14217 run_test 310a "open unlink remote file"
14218
14219 test_310b() {
14220         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 4 MDTs" && return
14221         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14222         local remote_file=$DIR/$tdir/tgt_dir/b
14223
14224         mkdir -p $DIR/$tdir
14225
14226         prepare_remote_file || error "prepare remote file failed"
14227
14228         ln $remote_file $DIR/$tfile || error "link failed for remote file"
14229         $MULTIOP $DIR/$tfile Ouc || error "mulitop failed"
14230         $CHECKSTAT -t file $remote_file || error "check file failed"
14231 }
14232 run_test 310b "unlink remote file with multiple links while open"
14233
14234 test_310c() {
14235         [[ $MDSCOUNT -lt 4 ]] && skip "needs >= 4 MDTs" && return
14236         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14237         local remote_file=$DIR/$tdir/tgt_dir/b
14238
14239         mkdir -p $DIR/$tdir
14240
14241         prepare_remote_file || error "prepare remote file failed"
14242
14243         ln $remote_file $DIR/$tfile || error "link failed for remote file"
14244         multiop_bg_pause $remote_file O_uc ||
14245                         error "mulitop failed for remote file"
14246         MULTIPID=$!
14247         $MULTIOP $DIR/$tfile Ouc
14248         kill -USR1 $MULTIPID
14249         wait $MULTIPID
14250 }
14251 run_test 310c "open-unlink remote file with multiple links"
14252
14253 test_400a() { # LU-1606, was conf-sanity test_74
14254         local extra_flags=''
14255         local out=$TMP/$tfile
14256         local prefix=/usr/include/lustre
14257         local prog
14258
14259         if ! which $CC > /dev/null 2>&1; then
14260                 skip_env "$CC is not installed"
14261                 return 0
14262         fi
14263
14264         if ! [[ -d $prefix ]]; then
14265                 # Assume we're running in tree and fixup the include path.
14266                 extra_flags+=" -I$LUSTRE/../libcfs/include"
14267                 extra_flags+=" -I$LUSTRE/include"
14268                 extra_flags+=" -L$LUSTRE/utils"
14269         fi
14270
14271         for prog in $LUSTRE_TESTS_API_DIR/*.c; do
14272                 $CC -Wall -Werror $extra_flags -llustreapi -o $out $prog ||
14273                         error "client api broken"
14274         done
14275 }
14276 run_test 400a "Lustre client api program can compile and link"
14277
14278 test_400b() { # LU-1606, LU-5011
14279         local header
14280         local out=$TMP/$tfile
14281         local prefix=/usr/include/lustre
14282
14283         # We use a hard coded prefix so that this test will not fail
14284         # when run in tree. There are headers in lustre/include/lustre/
14285         # that are not packaged (like lustre_idl.h) and have more
14286         # complicated include dependencies (like config.h and lnet/types.h).
14287         # Since this test about correct packaging we just skip them when
14288         # they don't exist (see below) rather than try to fixup cppflags.
14289
14290         if ! which $CC > /dev/null 2>&1; then
14291                 skip_env "$CC is not installed"
14292                 return 0
14293         fi
14294
14295         for header in $prefix/*.h; do
14296                 if ! [[ -f "$header" ]]; then
14297                         continue
14298                 fi
14299
14300                 if [[ "$(basename $header)" == liblustreapi.h ]]; then
14301                         continue # liblustreapi.h is deprecated.
14302                 fi
14303
14304                 $CC -Wall -Werror -include $header -c -x c /dev/null -o $out ||
14305                         error "cannot compile '$header'"
14306         done
14307 }
14308 run_test 400b "packaged headers can be compiled"
14309
14310 test_401() { #LU-7437
14311         #count the number of parameters by "list_param -R"
14312         local params=$($LCTL list_param -R '*' 2>/dev/null | wc -l)
14313         #count the number of parameters by listing proc files
14314         local procs=$(find -L $proc_dirs -mindepth 1 2>/dev/null | wc -l)
14315
14316         [ $params -eq $procs ] ||
14317                 error "found $params parameters vs. $procs proc files"
14318 }
14319 run_test 401 "Verify if 'lctl list_param -R' can list parameters recursively"
14320
14321 test_402() {
14322         $LFS setdirstripe -i 0 $DIR/$tdir || error "setdirstripe -i 0 failed"
14323 #define OBD_FAIL_MDS_FLD_LOOKUP 0x15c
14324         do_facet mds1 "lctl set_param fail_loc=0x8000015c"
14325         touch $DIR/$tdir/$tfile && error "touch should fail with ENOENT" ||
14326                 echo "Touch failed - OK"
14327 }
14328 run_test 402 "Return ENOENT to lod_generate_and_set_lovea"
14329
14330 #
14331 # tests that do cleanup/setup should be run at the end
14332 #
14333
14334 test_900() {
14335         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14336         local ls
14337         #define OBD_FAIL_MGC_PAUSE_PROCESS_LOG   0x903
14338         $LCTL set_param fail_loc=0x903
14339
14340         cancel_lru_locks MGC
14341
14342         FAIL_ON_ERROR=true cleanup
14343         FAIL_ON_ERROR=true setup
14344 }
14345 run_test 900 "umount should not race with any mgc requeue thread"
14346
14347 complete $SECONDS
14348 [ -f $EXT2_DEV ] && rm $EXT2_DEV || true
14349 check_and_cleanup_lustre
14350 if [ "$I_MOUNTED" != "yes" ]; then
14351         lctl set_param debug="$OLDDEBUG" 2> /dev/null || true
14352 fi
14353 exit_status