Whamcloud - gitweb
LU-7579 osd: move ORPHAN/DEAD flag to OSD
[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         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         while [[ $I -le $MAX ]]; do
8742                 $MULTIOP $DIR/$tdir/$J Oc
8743                 rc=$?
8744                 if [ $has_warning -eq 0 ]; then
8745                         check_mds_dmesg '"is approaching"' &&
8746                                 has_warning=1
8747                 fi
8748                 #check two errors ENOSPC for new version of ext4 max_dir_size patch
8749                 #mainline kernel commit df981d03eeff7971ac7e6ff37000bfa702327ef1
8750                 #and EFBIG for previous versions
8751                 if [ $rc -eq $EFBIG -o $rc -eq $ENOSPC ]; then
8752                         set_dir_limits 0 0
8753                         echo "return code $rc received as expected"
8754
8755                         createmany -o $DIR/$tdir/$J_file_ 1000 ||
8756                                 error_exit "create failed w/o dir size limit"
8757
8758                         check_mds_dmesg '"has reached"' ||
8759                                 error_exit "has reached message should be output"
8760
8761                         [ $has_warning ] ||
8762                                 error_exit "warning message should be output"
8763
8764                         I=$(stat -c%s "$DIR/$tdir")
8765
8766                         if [ $(lustre_version_code $SINGLEMDS) -lt \
8767                                         $(version_code 2.4.51) ]
8768                         then
8769                                 [[ $I -eq $MAX ]] && return 0
8770                         else
8771                                 [[ $I -gt $MAX ]] && return 0
8772                         fi
8773                         error_exit "current dir size $I, previous limit $MAX"
8774                 elif [ $rc -ne 0 ]; then
8775                         set_dir_limits 0 0
8776                         error_exit "return code $rc received instead of expected " \
8777                                    "$EFBIG or $ENOSPC, files in dir $I"
8778                 fi
8779                 J=$((J+1))
8780                 I=$(stat -c%s "$DIR/$tdir")
8781         done
8782
8783         set_dir_limits 0 0
8784         error "exceeded dir size limit $MAX($MDSCOUNT) : $I bytes"
8785 }
8786 run_test 129 "test directory size limit ========================"
8787
8788 OLDIFS="$IFS"
8789 cleanup_130() {
8790         trap 0
8791         IFS="$OLDIFS"
8792 }
8793
8794 test_130a() {
8795         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
8796         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP" &&
8797                 return
8798
8799         trap cleanup_130 EXIT RETURN
8800
8801         local fm_file=$DIR/$tfile
8802         $SETSTRIPE -S 65536 -c 1 $fm_file || error "setstripe on $fm_file"
8803         dd if=/dev/zero of=$fm_file bs=65536 count=1 ||
8804                 error "dd failed for $fm_file"
8805
8806         # LU-1795: test filefrag/FIEMAP once, even if unsupported
8807         filefrag -ves $fm_file
8808         RC=$?
8809         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
8810                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
8811         [ $RC != 0 ] && error "filefrag $fm_file failed"
8812
8813         filefrag_op=$(filefrag -ve $fm_file | grep -A 100 "ext:" |
8814                       grep -v "ext:" | grep -v "found")
8815         lun=$($GETSTRIPE -i $fm_file)
8816
8817         start_blk=`echo $filefrag_op | cut -d: -f2 | cut -d. -f1`
8818         IFS=$'\n'
8819         tot_len=0
8820         for line in $filefrag_op
8821         do
8822                 frag_lun=`echo $line | cut -d: -f5`
8823                 ext_len=`echo $line | cut -d: -f4`
8824                 if (( $frag_lun != $lun )); then
8825                         cleanup_130
8826                         error "FIEMAP on 1-stripe file($fm_file) failed"
8827                         return
8828                 fi
8829                 (( tot_len += ext_len ))
8830         done
8831
8832         if (( lun != frag_lun || start_blk != 0 || tot_len != 64 )); then
8833                 cleanup_130
8834                 error "FIEMAP on 1-stripe file($fm_file) failed;"
8835                 return
8836         fi
8837
8838         cleanup_130
8839
8840         echo "FIEMAP on single striped file succeeded"
8841 }
8842 run_test 130a "FIEMAP (1-stripe file)"
8843
8844 test_130b() {
8845         [ "$OSTCOUNT" -lt "2" ] &&
8846                 skip_env "skipping FIEMAP on 2-stripe file test" && return
8847
8848         [ "$OSTCOUNT" -ge "10" ] &&
8849                 skip_env "skipping FIEMAP with >= 10 OSTs" && return
8850
8851         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
8852         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP" &&
8853                 return
8854
8855         trap cleanup_130 EXIT RETURN
8856
8857         local fm_file=$DIR/$tfile
8858         $SETSTRIPE -S 65536 -c 2 $fm_file || error "setstripe on $fm_file"
8859         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
8860                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
8861
8862         dd if=/dev/zero of=$fm_file bs=1M count=2 ||
8863                 error "dd failed on $fm_file"
8864
8865         filefrag -ves $fm_file || error "filefrag $fm_file failed"
8866         filefrag_op=$(filefrag -ve $fm_file | grep -A 100 "ext:" |
8867                       grep -v "ext:" | grep -v "found")
8868
8869         last_lun=$(echo $filefrag_op | cut -d: -f5)
8870
8871         IFS=$'\n'
8872         tot_len=0
8873         num_luns=1
8874         for line in $filefrag_op
8875         do
8876                 frag_lun=`echo $line | cut -d: -f5`
8877                 ext_len=`echo $line | cut -d: -f4`
8878                 if (( $frag_lun != $last_lun )); then
8879                         if (( tot_len != 1024 )); then
8880                                 cleanup_130
8881                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of 256"
8882                                 return
8883                         else
8884                                 (( num_luns += 1 ))
8885                                 tot_len=0
8886                         fi
8887                 fi
8888                 (( tot_len += ext_len ))
8889                 last_lun=$frag_lun
8890         done
8891         if (( num_luns != 2 || tot_len != 1024 )); then
8892                 cleanup_130
8893                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
8894                 return
8895         fi
8896
8897         cleanup_130
8898
8899         echo "FIEMAP on 2-stripe file succeeded"
8900 }
8901 run_test 130b "FIEMAP (2-stripe file)"
8902
8903 test_130c() {
8904         [ "$OSTCOUNT" -lt "2" ] &&
8905                 skip_env "skipping FIEMAP on 2-stripe file" && return
8906
8907         [ "$OSTCOUNT" -ge "10" ] &&
8908                 skip_env "skipping FIEMAP with >= 10 OSTs" && return
8909
8910         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
8911         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" &&
8912                 return
8913
8914         trap cleanup_130 EXIT RETURN
8915
8916         local fm_file=$DIR/$tfile
8917         $SETSTRIPE -S 65536 -c 2 $fm_file || error "setstripe on $fm_file"
8918         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
8919                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
8920
8921         dd if=/dev/zero of=$fm_file seek=1 bs=1M count=1 || error "dd failed on $fm_file"
8922
8923         filefrag -ves $fm_file || error "filefrag $fm_file failed"
8924         filefrag_op=`filefrag -ve $fm_file | grep -A 100 "ext:" | grep -v "ext:" | grep -v "found"`
8925
8926         last_lun=`echo $filefrag_op | cut -d: -f5`
8927
8928         IFS=$'\n'
8929         tot_len=0
8930         num_luns=1
8931         for line in $filefrag_op
8932         do
8933                 frag_lun=`echo $line | cut -d: -f5`
8934                 ext_len=`echo $line | cut -d: -f4`
8935                 if (( $frag_lun != $last_lun )); then
8936                         logical=`echo $line | cut -d: -f2 | cut -d. -f1`
8937                         if (( logical != 512 )); then
8938                                 cleanup_130
8939                                 error "FIEMAP on $fm_file failed; returned logical start for lun $logical instead of 512"
8940                                 return
8941                         fi
8942                         if (( tot_len != 512 )); then
8943                                 cleanup_130
8944                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of 1024"
8945                                 return
8946                         else
8947                                 (( num_luns += 1 ))
8948                                 tot_len=0
8949                         fi
8950                 fi
8951                 (( tot_len += ext_len ))
8952                 last_lun=$frag_lun
8953         done
8954         if (( num_luns != 2 || tot_len != 512 )); then
8955                 cleanup_130
8956                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
8957                 return
8958         fi
8959
8960         cleanup_130
8961
8962         echo "FIEMAP on 2-stripe file with hole succeeded"
8963 }
8964 run_test 130c "FIEMAP (2-stripe file with hole)"
8965
8966 test_130d() {
8967         [ "$OSTCOUNT" -lt "3" ] && skip_env "skipping FIEMAP on N-stripe file test" && return
8968
8969         [ "$OSTCOUNT" -ge "10" ] &&
8970                 skip_env "skipping FIEMAP with >= 10 OSTs" && return
8971
8972         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
8973         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" && return
8974
8975         trap cleanup_130 EXIT RETURN
8976
8977         local fm_file=$DIR/$tfile
8978         $SETSTRIPE -S 65536 -c $OSTCOUNT $fm_file||error "setstripe on $fm_file"
8979         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
8980                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
8981
8982         local actual_stripecnt=$($GETSTRIPE -c $fm_file)
8983         dd if=/dev/zero of=$fm_file bs=1M count=$actual_stripecnt ||
8984                 error "dd failed on $fm_file"
8985
8986         filefrag -ves $fm_file || error "filefrag $fm_file failed"
8987         filefrag_op=`filefrag -ve $fm_file | grep -A 100 "ext:" |
8988                 grep -v "ext:" | grep -v "found"`
8989
8990         last_lun=`echo $filefrag_op | cut -d: -f5`
8991
8992         IFS=$'\n'
8993         tot_len=0
8994         num_luns=1
8995         for line in $filefrag_op
8996         do
8997                 frag_lun=`echo $line | cut -d: -f5`
8998                 ext_len=`echo $line | cut -d: -f4`
8999                 if (( $frag_lun != $last_lun )); then
9000                         if (( tot_len != 1024 )); then
9001                                 cleanup_130
9002                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of 1024"
9003                                 return
9004                         else
9005                                 (( num_luns += 1 ))
9006                                 tot_len=0
9007                         fi
9008                 fi
9009                 (( tot_len += ext_len ))
9010                 last_lun=$frag_lun
9011         done
9012         if (( num_luns != actual_stripecnt || tot_len != 1024 )); then
9013                 cleanup_130
9014                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
9015                 return
9016         fi
9017
9018         cleanup_130
9019
9020         echo "FIEMAP on N-stripe file succeeded"
9021 }
9022 run_test 130d "FIEMAP (N-stripe file)"
9023
9024 test_130e() {
9025         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping continuation FIEMAP test" && return
9026
9027         [ "$OSTCOUNT" -ge "10" ] &&
9028                 skip_env "skipping FIEMAP with >= 10 OSTs" && return
9029
9030         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
9031         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" && return
9032
9033         trap cleanup_130 EXIT RETURN
9034
9035         local fm_file=$DIR/$tfile
9036         $SETSTRIPE -S 131072 -c 2 $fm_file || error "setstripe on $fm_file"
9037         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
9038                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
9039
9040         NUM_BLKS=512
9041         EXPECTED_LEN=$(( (NUM_BLKS / 2) * 64 ))
9042         for ((i = 0; i < $NUM_BLKS; i++))
9043         do
9044                 dd if=/dev/zero of=$fm_file count=1 bs=64k seek=$((2*$i)) conv=notrunc > /dev/null 2>&1
9045         done
9046
9047         filefrag -ves $fm_file || error "filefrag $fm_file failed"
9048         filefrag_op=`filefrag -ve $fm_file | grep -A 12000 "ext:" | grep -v "ext:" | grep -v "found"`
9049
9050         last_lun=`echo $filefrag_op | cut -d: -f5`
9051
9052         IFS=$'\n'
9053         tot_len=0
9054         num_luns=1
9055         for line in $filefrag_op
9056         do
9057                 frag_lun=`echo $line | cut -d: -f5`
9058                 ext_len=`echo $line | cut -d: -f4`
9059                 if (( $frag_lun != $last_lun )); then
9060                         if (( tot_len != $EXPECTED_LEN )); then
9061                                 cleanup_130
9062                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of $EXPECTED_LEN"
9063                                 return
9064                         else
9065                                 (( num_luns += 1 ))
9066                                 tot_len=0
9067                         fi
9068                 fi
9069                 (( tot_len += ext_len ))
9070                 last_lun=$frag_lun
9071         done
9072         if (( num_luns != 2 || tot_len != $EXPECTED_LEN )); then
9073                 cleanup_130
9074                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
9075                 return
9076         fi
9077
9078         cleanup_130
9079
9080         echo "FIEMAP with continuation calls succeeded"
9081 }
9082 run_test 130e "FIEMAP (test continuation FIEMAP calls)"
9083
9084 # Test for writev/readv
9085 test_131a() {
9086         rwv -f $DIR/$tfile -w -n 3 524288 1048576 1572864 || \
9087         error "writev test failed"
9088         rwv -f $DIR/$tfile -r -v -n 2 1572864 1048576 || \
9089         error "readv failed"
9090         rm -f $DIR/$tfile
9091 }
9092 run_test 131a "test iov's crossing stripe boundary for writev/readv"
9093
9094 test_131b() {
9095         rwv -f $DIR/$tfile -w -a -n 3 524288 1048576 1572864 || \
9096         error "append writev test failed"
9097         rwv -f $DIR/$tfile -w -a -n 2 1572864 1048576 || \
9098         error "append writev test failed"
9099         rm -f $DIR/$tfile
9100 }
9101 run_test 131b "test append writev"
9102
9103 test_131c() {
9104         rwv -f $DIR/$tfile -w -d -n 1 1048576 || return 0
9105         error "NOT PASS"
9106 }
9107 run_test 131c "test read/write on file w/o objects"
9108
9109 test_131d() {
9110         rwv -f $DIR/$tfile -w -n 1 1572864
9111         NOB=`rwv -f $DIR/$tfile -r -n 3 524288 524288 1048576 | awk '/error/ {print $6}'`
9112         if [ "$NOB" != 1572864 ]; then
9113                 error "Short read filed: read $NOB bytes instead of 1572864"
9114         fi
9115         rm -f $DIR/$tfile
9116 }
9117 run_test 131d "test short read"
9118
9119 test_131e() {
9120         rwv -f $DIR/$tfile -w -s 1048576 -n 1 1048576
9121         rwv -f $DIR/$tfile -r -z -s 0 -n 1 524288 || \
9122         error "read hitting hole failed"
9123         rm -f $DIR/$tfile
9124 }
9125 run_test 131e "test read hitting hole"
9126
9127 check_stats() {
9128         local res
9129         local count
9130         case $1 in
9131         $SINGLEMDS) res=`do_facet $SINGLEMDS $LCTL get_param mdt.$FSNAME-MDT0000.md_stats | grep "$2"`
9132                  ;;
9133         ost) res=`do_facet ost1 $LCTL get_param obdfilter.$FSNAME-OST0000.stats | grep "$2"`
9134                  ;;
9135         *) error "Wrong argument $1" ;;
9136         esac
9137         echo $res
9138         [ -z "$res" ] && error "The counter for $2 on $1 was not incremented"
9139         # if the argument $3 is zero, it means any stat increment is ok.
9140         if [[ $3 -gt 0 ]]; then
9141                 count=$(echo $res | awk '{ print $2 }')
9142                 [[ $count -ne $3 ]] &&
9143                         error "The $2 counter on $1 is wrong - expected $3"
9144         fi
9145 }
9146
9147 test_133a() {
9148         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9149         remote_ost_nodsh && skip "remote OST with nodsh" && return
9150         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9151
9152         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
9153                 { skip "MDS doesn't support rename stats"; return; }
9154         local testdir=$DIR/${tdir}/stats_testdir
9155         mkdir -p $DIR/${tdir}
9156
9157         # clear stats.
9158         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
9159         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
9160
9161         # verify mdt stats first.
9162         mkdir ${testdir} || error "mkdir failed"
9163         check_stats $SINGLEMDS "mkdir" 1
9164         touch ${testdir}/${tfile} || "touch failed"
9165         check_stats $SINGLEMDS "open" 1
9166         check_stats $SINGLEMDS "close" 1
9167         mknod ${testdir}/${tfile}-pipe p || "mknod failed"
9168         check_stats $SINGLEMDS "mknod" 1
9169         rm -f ${testdir}/${tfile}-pipe || "pipe remove failed"
9170         check_stats $SINGLEMDS "unlink" 1
9171         rm -f ${testdir}/${tfile} || error "file remove failed"
9172         check_stats $SINGLEMDS "unlink" 2
9173
9174         # remove working dir and check mdt stats again.
9175         rmdir ${testdir} || error "rmdir failed"
9176         check_stats $SINGLEMDS "rmdir" 1
9177
9178         local testdir1=$DIR/${tdir}/stats_testdir1
9179         mkdir -p ${testdir}
9180         mkdir -p ${testdir1}
9181         touch ${testdir1}/test1
9182         mv ${testdir1}/test1 ${testdir} || error "file crossdir rename"
9183         check_stats $SINGLEMDS "crossdir_rename" 1
9184
9185         mv ${testdir}/test1 ${testdir}/test0 || error "file samedir rename"
9186         check_stats $SINGLEMDS "samedir_rename" 1
9187
9188         rm -rf $DIR/${tdir}
9189 }
9190 run_test 133a "Verifying MDT stats ========================================"
9191
9192 test_133b() {
9193         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9194         remote_ost_nodsh && skip "remote OST with nodsh" && return
9195         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9196         local testdir=$DIR/${tdir}/stats_testdir
9197         mkdir -p ${testdir} || error "mkdir failed"
9198         touch ${testdir}/${tfile} || "touch failed"
9199         cancel_lru_locks mdc
9200
9201         # clear stats.
9202         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
9203         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
9204
9205         # extra mdt stats verification.
9206         chmod 444 ${testdir}/${tfile} || error "chmod failed"
9207         check_stats $SINGLEMDS "setattr" 1
9208         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
9209         if [ $(lustre_version_code $SINGLEMDS) -ne $(version_code 2.2.0) ]
9210         then            # LU-1740
9211                 ls -l ${testdir}/${tfile} > /dev/null|| error "ls failed"
9212                 check_stats $SINGLEMDS "getattr" 1
9213         fi
9214         $LFS df || error "lfs failed"
9215         check_stats $SINGLEMDS "statfs" 1
9216
9217         rm -rf $DIR/${tdir}
9218 }
9219 run_test 133b "Verifying extra MDT stats =================================="
9220
9221 test_133c() {
9222         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9223         remote_ost_nodsh && skip "remote OST with nodsh" && return
9224         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9225         local testdir=$DIR/${tdir}/stats_testdir
9226         test_mkdir -p ${testdir} || error "mkdir failed"
9227
9228         # verify obdfilter stats.
9229         $SETSTRIPE -c 1 -i 0 ${testdir}/${tfile}
9230         sync
9231         cancel_lru_locks osc
9232         wait_delete_completed
9233
9234         # clear stats.
9235         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
9236         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
9237
9238         dd if=/dev/zero of=${testdir}/${tfile} conv=notrunc bs=512k count=1 || error "dd failed"
9239         sync
9240         cancel_lru_locks osc
9241         check_stats ost "write" 1
9242
9243         dd if=${testdir}/${tfile} of=/dev/null bs=1k count=1 || error "dd failed"
9244         check_stats ost "read" 1
9245
9246         > ${testdir}/${tfile} || error "truncate failed"
9247         check_stats ost "punch" 1
9248
9249         rm -f ${testdir}/${tfile} || error "file remove failed"
9250         wait_delete_completed
9251         check_stats ost "destroy" 1
9252
9253         rm -rf $DIR/${tdir}
9254 }
9255 run_test 133c "Verifying OST stats ========================================"
9256
9257 order_2() {
9258         local value=$1
9259         local orig=$value
9260         local order=1
9261
9262         while [ $value -ge 2 ]; do
9263                 order=$((order*2))
9264                 value=$((value/2))
9265         done
9266
9267         if [ $orig -gt $order ]; then
9268                 order=$((order*2))
9269         fi
9270         echo $order
9271 }
9272
9273 size_in_KMGT() {
9274     local value=$1
9275     local size=('K' 'M' 'G' 'T');
9276     local i=0
9277     local size_string=$value
9278
9279     while [ $value -ge 1024 ]; do
9280         if [ $i -gt 3 ]; then
9281             #T is the biggest unit we get here, if that is bigger,
9282             #just return XXXT
9283             size_string=${value}T
9284             break
9285         fi
9286         value=$((value >> 10))
9287         if [ $value -lt 1024 ]; then
9288             size_string=${value}${size[$i]}
9289             break
9290         fi
9291         i=$((i + 1))
9292     done
9293
9294     echo $size_string
9295 }
9296
9297 get_rename_size() {
9298     local size=$1
9299     local context=${2:-.}
9300     local sample=$(do_facet $SINGLEMDS $LCTL get_param mdt.*.rename_stats |
9301                 grep -A1 $context |
9302                 awk '/ '${size}'/ {print $4}' | sed -e "s/,//g")
9303     echo $sample
9304 }
9305
9306 test_133d() {
9307         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9308         remote_ost_nodsh && skip "remote OST with nodsh" && return
9309         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9310         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
9311         { skip "MDS doesn't support rename stats"; return; }
9312
9313         local testdir1=$DIR/${tdir}/stats_testdir1
9314         local testdir2=$DIR/${tdir}/stats_testdir2
9315
9316         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
9317
9318         mkdir -p ${testdir1} || error "mkdir failed"
9319         mkdir -p ${testdir2} || error "mkdir failed"
9320
9321         createmany -o $testdir1/test 512 || error "createmany failed"
9322
9323         # check samedir rename size
9324         mv ${testdir1}/test0 ${testdir1}/test_0
9325
9326         local testdir1_size=$(ls -l $DIR/${tdir} |
9327                 awk '/stats_testdir1/ {print $5}')
9328         local testdir2_size=$(ls -l $DIR/${tdir} |
9329                 awk '/stats_testdir2/ {print $5}')
9330
9331         testdir1_size=$(order_2 $testdir1_size)
9332         testdir2_size=$(order_2 $testdir2_size)
9333
9334         testdir1_size=$(size_in_KMGT $testdir1_size)
9335         testdir2_size=$(size_in_KMGT $testdir2_size)
9336
9337         echo "source rename dir size: ${testdir1_size}"
9338         echo "target rename dir size: ${testdir2_size}"
9339
9340         local cmd="do_facet $SINGLEMDS $LCTL get_param mdt.*.rename_stats"
9341         eval $cmd || error "$cmd failed"
9342         local samedir=$($cmd | grep 'same_dir')
9343         local same_sample=$(get_rename_size $testdir1_size)
9344         [ -z "$samedir" ] && error "samedir_rename_size count error"
9345         [[ $same_sample -eq 1 ]] ||
9346                 error "samedir_rename_size error $same_sample"
9347         echo "Check same dir rename stats success"
9348
9349         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
9350
9351         # check crossdir rename size
9352         mv ${testdir1}/test_0 ${testdir2}/test_0
9353
9354         testdir1_size=$(ls -l $DIR/${tdir} |
9355                 awk '/stats_testdir1/ {print $5}')
9356         testdir2_size=$(ls -l $DIR/${tdir} |
9357                 awk '/stats_testdir2/ {print $5}')
9358
9359         testdir1_size=$(order_2 $testdir1_size)
9360         testdir2_size=$(order_2 $testdir2_size)
9361
9362         testdir1_size=$(size_in_KMGT $testdir1_size)
9363         testdir2_size=$(size_in_KMGT $testdir2_size)
9364
9365         echo "source rename dir size: ${testdir1_size}"
9366         echo "target rename dir size: ${testdir2_size}"
9367
9368         eval $cmd || error "$cmd failed"
9369         local crossdir=$($cmd | grep 'crossdir')
9370         local src_sample=$(get_rename_size $testdir1_size crossdir_src)
9371         local tgt_sample=$(get_rename_size $testdir2_size crossdir_tgt)
9372         [ -z "$crossdir" ] && error "crossdir_rename_size count error"
9373         [[ $src_sample -eq 1 ]] ||
9374                 error "crossdir_rename_size error $src_sample"
9375         [[ $tgt_sample -eq 1 ]] ||
9376                 error "crossdir_rename_size error $tgt_sample"
9377         echo "Check cross dir rename stats success"
9378         rm -rf $DIR/${tdir}
9379 }
9380 run_test 133d "Verifying rename_stats ========================================"
9381
9382 test_133e() {
9383         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9384         remote_ost_nodsh && skip "remote OST with nodsh" && return
9385         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9386         local testdir=$DIR/${tdir}/stats_testdir
9387         local ctr f0 f1 bs=32768 count=42 sum
9388
9389         mkdir -p ${testdir} || error "mkdir failed"
9390
9391         $SETSTRIPE -c 1 -i 0 ${testdir}/${tfile}
9392
9393         for ctr in {write,read}_bytes; do
9394                 sync
9395                 cancel_lru_locks osc
9396
9397                 do_facet ost1 $LCTL set_param -n \
9398                         "obdfilter.*.exports.clear=clear"
9399
9400                 if [ $ctr = write_bytes ]; then
9401                         f0=/dev/zero
9402                         f1=${testdir}/${tfile}
9403                 else
9404                         f0=${testdir}/${tfile}
9405                         f1=/dev/null
9406                 fi
9407
9408                 dd if=$f0 of=$f1 conv=notrunc bs=$bs count=$count || \
9409                         error "dd failed"
9410                 sync
9411                 cancel_lru_locks osc
9412
9413                 sum=$(do_facet ost1 $LCTL get_param \
9414                         "obdfilter.*.exports.*.stats" |
9415                         awk -v ctr=$ctr 'BEGIN { sum = 0 }
9416                                 $1 == ctr { sum += $7 }
9417                                 END { printf("%0.0f", sum) }')
9418
9419                 if ((sum != bs * count)); then
9420                         error "Bad $ctr sum, expected $((bs * count)), got $sum"
9421                 fi
9422         done
9423
9424         rm -rf $DIR/${tdir}
9425 }
9426 run_test 133e "Verifying OST {read,write}_bytes nid stats ================="
9427
9428 proc_dirs=""
9429 for dir in /proc/fs/lustre/ /proc/sys/lnet/ /proc/sys/lustre/ \
9430            /sys/fs/lustre/ /sys/fs/lnet/ /sys/kernel/debug/lnet/ \
9431            /sys/kernel/debug/lustre/; do
9432         [[ -d $dir ]] && proc_dirs+=" $dir"
9433 done
9434
9435 test_133f() {
9436         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9437         remote_ost_nodsh && skip "remote OST with nodsh" && return
9438         # First without trusting modes.
9439         find $proc_dirs -exec cat '{}' \; &> /dev/null
9440
9441         # Second verifying readability.
9442         $LCTL get_param -R '*' &> /dev/null || error "proc file read failed"
9443
9444         # eventually, this can also be replaced with "lctl get_param -R",
9445         # but not until that option is always available on the server
9446         local facet
9447         for facet in $SINGLEMDS ost1; do
9448                 do_facet $facet find $proc_dirs \
9449                         ! -name req_history \
9450                         -exec cat '{}' \\\; &> /dev/null
9451
9452                 do_facet $facet find $proc_dirs \
9453                         ! -name req_history \
9454                         -type f \
9455                         -exec cat '{}' \\\; &> /dev/null ||
9456                                 error "proc file read failed"
9457         done
9458 }
9459 run_test 133f "Check for LBUGs/Oopses/unreadable files in /proc"
9460
9461 test_133g() {
9462         # Second verifying writability.
9463         find $proc_dirs \
9464                 -type f \
9465                 -not -name force_lbug \
9466                 -not -name changelog_mask \
9467                 -exec badarea_io '{}' \; &> /dev/null ||
9468                 error "find $proc_dirs failed"
9469
9470         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.5.54) ] &&
9471                 skip "Too old lustre on MDS" && return
9472
9473         [ $(lustre_version_code ost1) -le $(version_code 2.5.54) ] &&
9474                 skip "Too old lustre on ost1" && return
9475
9476         local facet
9477         for facet in $SINGLEMDS ost1; do
9478                 do_facet $facet find $proc_dirs \
9479                         -type f \
9480                         -not -name force_lbug \
9481                         -not -name changelog_mask \
9482                         -exec badarea_io '{}' \\\; &> /dev/null ||
9483                 error "$facet find $proc_dirs failed"
9484
9485         done
9486
9487         # remount the FS in case writes/reads /proc break the FS
9488         cleanup || error "failed to unmount"
9489         setup || error "failed to setup"
9490         true
9491 }
9492 run_test 133g "Check for Oopses on bad io area writes/reads in /proc"
9493
9494 test_134a() {
9495         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.54) ]] &&
9496                 skip "Need MDS version at least 2.7.54" && return
9497
9498         mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
9499         cancel_lru_locks mdc
9500
9501         local nsdir="ldlm.namespaces.*-MDT0000-mdc-*"
9502         local unused=$($LCTL get_param -n $nsdir.lock_unused_count)
9503         [ $unused -eq 0 ] || "$unused locks are not cleared"
9504
9505         local nr=1000
9506         createmany -o $DIR/$tdir/f $nr ||
9507                 error "failed to create $nr files in $DIR/$tdir"
9508         unused=$($LCTL get_param -n $nsdir.lock_unused_count)
9509
9510         #define OBD_FAIL_LDLM_WATERMARK_LOW     0x327
9511         do_facet mds1 $LCTL set_param fail_loc=0x327
9512         do_facet mds1 $LCTL set_param fail_val=500
9513         touch $DIR/$tdir/m
9514
9515         echo "sleep 10 seconds ..."
9516         sleep 10
9517         local lck_cnt=$($LCTL get_param -n $nsdir.lock_unused_count)
9518
9519         do_facet mds1 $LCTL set_param fail_loc=0
9520         do_facet mds1 $LCTL set_param fail_val=0
9521         [ $lck_cnt -lt $unused ] ||
9522                 error "No locks reclaimed, before:$unused, after:$lck_cnt"
9523
9524         rm $DIR/$tdir/m
9525         unlinkmany $DIR/$tdir/f $nr
9526 }
9527 run_test 134a "Server reclaims locks when reaching lock_reclaim_threshold"
9528
9529 test_134b() {
9530         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.54) ]] &&
9531                 skip "Need MDS version at least 2.7.54" && return
9532
9533         mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
9534         cancel_lru_locks mdc
9535
9536         local low_wm=$(do_facet mds1 $LCTL get_param -n \
9537                         ldlm.lock_reclaim_threshold_mb)
9538         # disable reclaim temporarily
9539         do_facet mds1 $LCTL set_param ldlm.lock_reclaim_threshold_mb=0
9540
9541         #define OBD_FAIL_LDLM_WATERMARK_HIGH     0x328
9542         do_facet mds1 $LCTL set_param fail_loc=0x328
9543         do_facet mds1 $LCTL set_param fail_val=500
9544
9545         $LCTL set_param debug=+trace
9546
9547         local nr=600
9548         createmany -o $DIR/$tdir/f $nr &
9549         local create_pid=$!
9550
9551         echo "Sleep $TIMEOUT seconds ..."
9552         sleep $TIMEOUT
9553         if ! ps -p $create_pid  > /dev/null 2>&1; then
9554                 do_facet mds1 $LCTL set_param fail_loc=0
9555                 do_facet mds1 $LCTL set_param fail_val=0
9556                 do_facet mds1 $LCTL set_param \
9557                         ldlm.lock_reclaim_threshold_mb=${low_wm}m
9558                 error "createmany finished incorrectly!"
9559         fi
9560         do_facet mds1 $LCTL set_param fail_loc=0
9561         do_facet mds1 $LCTL set_param fail_val=0
9562         do_facet mds1 $LCTL set_param ldlm.lock_reclaim_threshold_mb=${low_wm}m
9563         wait $create_pid || return 1
9564
9565         unlinkmany $DIR/$tdir/f $nr
9566 }
9567 run_test 134b "Server rejects lock request when reaching lock_limit_mb"
9568
9569 test_140() { #bug-17379
9570         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9571         test_mkdir -p $DIR/$tdir || error "Creating dir $DIR/$tdir"
9572         cd $DIR/$tdir || error "Changing to $DIR/$tdir"
9573         cp /usr/bin/stat . || error "Copying stat to $DIR/$tdir"
9574
9575         # VFS limits max symlink depth to 5(4KSTACK) or 7(8KSTACK) or 8
9576         # For kernel > 3.5, bellow only tests consecutive symlink (MAX 40)
9577         local i=0
9578         while i=`expr $i + 1`; do
9579                 test_mkdir -p $i || error "Creating dir $i"
9580                 cd $i || error "Changing to $i"
9581                 ln -s ../stat stat || error "Creating stat symlink"
9582                 # Read the symlink until ELOOP present,
9583                 # not LBUGing the system is considered success,
9584                 # we didn't overrun the stack.
9585                 $OPENFILE -f O_RDONLY stat >/dev/null 2>&1; ret=$?
9586                 [ $ret -ne 0 ] && {
9587                         if [ $ret -eq 40 ]; then
9588                                 break  # -ELOOP
9589                         else
9590                                 error "Open stat symlink"
9591                                 return
9592                         fi
9593                 }
9594         done
9595         i=`expr $i - 1`
9596         echo "The symlink depth = $i"
9597         [ $i -eq 5 -o $i -eq 7 -o $i -eq 8 -o $i -eq 40 ] ||
9598                                         error "Invalid symlink depth"
9599
9600         # Test recursive symlink
9601         ln -s symlink_self symlink_self
9602         $OPENFILE -f O_RDONLY symlink_self >/dev/null 2>&1; ret=$?
9603         echo "open symlink_self returns $ret"
9604         [ $ret -eq 40 ] || error "recursive symlink doesn't return -ELOOP"
9605 }
9606 run_test 140 "Check reasonable stack depth (shouldn't LBUG) ===="
9607
9608 test_150() {
9609         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9610         local TF="$TMP/$tfile"
9611
9612         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
9613         cp $TF $DIR/$tfile
9614         cancel_lru_locks osc
9615         cmp $TF $DIR/$tfile || error "$TMP/$tfile $DIR/$tfile differ"
9616         remount_client $MOUNT
9617         df -P $MOUNT
9618         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (remount)"
9619
9620         $TRUNCATE $TF 6000
9621         $TRUNCATE $DIR/$tfile 6000
9622         cancel_lru_locks osc
9623         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (truncate1)"
9624
9625         echo "12345" >>$TF
9626         echo "12345" >>$DIR/$tfile
9627         cancel_lru_locks osc
9628         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append1)"
9629
9630         echo "12345" >>$TF
9631         echo "12345" >>$DIR/$tfile
9632         cancel_lru_locks osc
9633         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append2)"
9634
9635         rm -f $TF
9636         true
9637 }
9638 run_test 150 "truncate/append tests"
9639
9640 #LU-2902 roc_hit was not able to read all values from lproc
9641 function roc_hit_init() {
9642         local list=$(comma_list $(osts_nodes))
9643         local dir=$DIR/$tdir-check
9644         local file=$dir/file
9645         local BEFORE
9646         local AFTER
9647         local idx
9648
9649         test_mkdir -p $dir
9650         #use setstripe to do a write to every ost
9651         for i in $(seq 0 $((OSTCOUNT-1))); do
9652                 $SETSTRIPE -c 1 -i $i $dir || error "$SETSTRIPE $file failed"
9653                 dd if=/dev/urandom of=$file bs=4k count=4 2>&1 > /dev/null
9654                 idx=$(printf %04x $i)
9655                 BEFORE=$(get_osd_param $list *OST*$idx stats |
9656                         awk '$1 == "cache_access" {sum += $7}
9657                                 END { printf("%0.0f", sum) }')
9658
9659                 cancel_lru_locks osc
9660                 cat $file >/dev/null
9661
9662                 AFTER=$(get_osd_param $list *OST*$idx stats |
9663                         awk '$1 == "cache_access" {sum += $7}
9664                                 END { printf("%0.0f", sum) }')
9665
9666                 echo BEFORE:$BEFORE AFTER:$AFTER
9667                 if ! let "AFTER - BEFORE == 4"; then
9668                         rm -rf $dir
9669                         error "roc_hit is not safe to use"
9670                 fi
9671                 rm $file
9672         done
9673
9674         rm -rf $dir
9675 }
9676
9677 function roc_hit() {
9678         local list=$(comma_list $(osts_nodes))
9679         echo $(get_osd_param $list '' stats |
9680                 awk '$1 == "cache_hit" {sum += $7}
9681                         END { printf("%0.0f", sum) }')
9682 }
9683
9684 function set_cache() {
9685         local on=1
9686
9687         if [ "$2" == "off" ]; then
9688                 on=0;
9689         fi
9690         local list=$(comma_list $(osts_nodes))
9691         set_osd_param $list '' $1_cache_enable $on
9692
9693         cancel_lru_locks osc
9694 }
9695
9696 test_151() {
9697         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9698         remote_ost_nodsh && skip "remote OST with nodsh" && return
9699
9700         local CPAGES=3
9701         local list=$(comma_list $(osts_nodes))
9702
9703         # check whether obdfilter is cache capable at all
9704         if ! get_osd_param $list '' read_cache_enable >/dev/null; then
9705                 echo "not cache-capable obdfilter"
9706                 return 0
9707         fi
9708
9709         # check cache is enabled on all obdfilters
9710         if get_osd_param $list '' read_cache_enable | grep 0; then
9711                 echo "oss cache is disabled"
9712                 return 0
9713         fi
9714
9715         set_osd_param $list '' writethrough_cache_enable 1
9716
9717         # check write cache is enabled on all obdfilters
9718         if get_osd_param $list '' writethrough_cache_enable | grep 0; then
9719                 echo "oss write cache is NOT enabled"
9720                 return 0
9721         fi
9722
9723         roc_hit_init
9724
9725         #define OBD_FAIL_OBD_NO_LRU  0x609
9726         do_nodes $list $LCTL set_param fail_loc=0x609
9727
9728         # pages should be in the case right after write
9729         dd if=/dev/urandom of=$DIR/$tfile bs=4k count=$CPAGES ||
9730                 error "dd failed"
9731
9732         local BEFORE=$(roc_hit)
9733         cancel_lru_locks osc
9734         cat $DIR/$tfile >/dev/null
9735         local AFTER=$(roc_hit)
9736
9737         do_nodes $list $LCTL set_param fail_loc=0
9738
9739         if ! let "AFTER - BEFORE == CPAGES"; then
9740                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
9741         fi
9742
9743         # the following read invalidates the cache
9744         cancel_lru_locks osc
9745         set_osd_param $list '' read_cache_enable 0
9746         cat $DIR/$tfile >/dev/null
9747
9748         # now data shouldn't be found in the cache
9749         BEFORE=$(roc_hit)
9750         cancel_lru_locks osc
9751         cat $DIR/$tfile >/dev/null
9752         AFTER=$(roc_hit)
9753         if let "AFTER - BEFORE != 0"; then
9754                 error "IN CACHE: before: $BEFORE, after: $AFTER"
9755         fi
9756
9757         set_osd_param $list '' read_cache_enable 1
9758         rm -f $DIR/$tfile
9759 }
9760 run_test 151 "test cache on oss and controls ==============================="
9761
9762 test_152() {
9763         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9764         local TF="$TMP/$tfile"
9765
9766         # simulate ENOMEM during write
9767 #define OBD_FAIL_OST_NOMEM      0x226
9768         lctl set_param fail_loc=0x80000226
9769         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
9770         cp $TF $DIR/$tfile
9771         sync || error "sync failed"
9772         lctl set_param fail_loc=0
9773
9774         # discard client's cache
9775         cancel_lru_locks osc
9776
9777         # simulate ENOMEM during read
9778         lctl set_param fail_loc=0x80000226
9779         cmp $TF $DIR/$tfile || error "cmp failed"
9780         lctl set_param fail_loc=0
9781
9782         rm -f $TF
9783 }
9784 run_test 152 "test read/write with enomem ============================"
9785
9786 test_153() {
9787         $MULTIOP $DIR/$tfile Ow4096Ycu || error "multiop failed"
9788 }
9789 run_test 153 "test if fdatasync does not crash ======================="
9790
9791 dot_lustre_fid_permission_check() {
9792         local fid=$1
9793         local ffid=$MOUNT/.lustre/fid/$fid
9794         local test_dir=$2
9795
9796         echo "stat fid $fid"
9797         stat $ffid > /dev/null || error "stat $ffid failed."
9798         echo "touch fid $fid"
9799         touch $ffid || error "touch $ffid failed."
9800         echo "write to fid $fid"
9801         cat /etc/hosts > $ffid || error "write $ffid failed."
9802         echo "read fid $fid"
9803         diff /etc/hosts $ffid || error "read $ffid failed."
9804         echo "append write to fid $fid"
9805         cat /etc/hosts >> $ffid || error "append write $ffid failed."
9806         echo "rename fid $fid"
9807         mv $ffid $test_dir/$tfile.1 &&
9808                 error "rename $ffid to $tfile.1 should fail."
9809         touch $test_dir/$tfile.1
9810         mv $test_dir/$tfile.1 $ffid &&
9811                 error "rename $tfile.1 to $ffid should fail."
9812         rm -f $test_dir/$tfile.1
9813         echo "truncate fid $fid"
9814         $TRUNCATE $ffid 777 || error "truncate $ffid failed."
9815         if [ $MDSCOUNT -lt 2 ]; then #FIXME when cross-MDT hard link is working
9816                 echo "link fid $fid"
9817                 ln -f $ffid $test_dir/tfile.lnk || error "link $ffid failed."
9818         fi
9819         if [ -n $(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl) ]; then
9820                 echo "setfacl fid $fid"
9821                 setfacl -R -m u:bin:rwx $ffid || error "setfacl $ffid failed."
9822                 echo "getfacl fid $fid"
9823                 getfacl $ffid >/dev/null || error "getfacl $ffid failed."
9824         fi
9825         echo "unlink fid $fid"
9826         unlink $MOUNT/.lustre/fid/$fid && error "unlink $ffid should fail."
9827         echo "mknod fid $fid"
9828         mknod $ffid c 1 3 && error "mknod $ffid should fail."
9829
9830         fid=[0xf00000400:0x1:0x0]
9831         ffid=$MOUNT/.lustre/fid/$fid
9832
9833         echo "stat non-exist fid $fid"
9834         stat $ffid > /dev/null && error "stat non-exist $ffid should fail."
9835         echo "write to non-exist fid $fid"
9836         cat /etc/hosts > $ffid && error "write non-exist $ffid should fail."
9837         echo "link new fid $fid"
9838         ln $test_dir/$tfile $ffid && error "link $ffid should fail."
9839
9840         mkdir -p $test_dir/$tdir
9841         touch $test_dir/$tdir/$tfile
9842         fid=$($LFS path2fid $test_dir/$tdir)
9843         rc=$?
9844         [ $rc -ne 0 ] &&
9845                 error "error: could not get fid for $test_dir/$dir/$tfile."
9846
9847         ffid=$MOUNT/.lustre/fid/$fid
9848
9849         echo "ls $fid"
9850         ls $ffid > /dev/null || error "ls $ffid failed."
9851         echo "touch $fid/$tfile.1"
9852         touch $ffid/$tfile.1 || error "touch $ffid/$tfile.1 failed."
9853
9854         echo "touch $MOUNT/.lustre/fid/$tfile"
9855         touch $MOUNT/.lustre/fid/$tfile && \
9856                 error "touch $MOUNT/.lustre/fid/$tfile should fail."
9857
9858         echo "setxattr to $MOUNT/.lustre/fid"
9859         setfattr -n trusted.name1 -v value1 $MOUNT/.lustre/fid
9860
9861         echo "listxattr for $MOUNT/.lustre/fid"
9862         getfattr -d -m "^trusted" $MOUNT/.lustre/fid
9863
9864         echo "delxattr from $MOUNT/.lustre/fid"
9865         setfattr -x trusted.name1 $MOUNT/.lustre/fid
9866
9867         echo "touch invalid fid: $MOUNT/.lustre/fid/[0x200000400:0x2:0x3]"
9868         touch $MOUNT/.lustre/fid/[0x200000400:0x2:0x3] &&
9869                 error "touch invalid fid should fail."
9870
9871         echo "touch non-normal fid: $MOUNT/.lustre/fid/[0x1:0x2:0x0]"
9872         touch $MOUNT/.lustre/fid/[0x1:0x2:0x0] &&
9873                 error "touch non-normal fid should fail."
9874
9875         echo "rename $tdir to $MOUNT/.lustre/fid"
9876         mrename $test_dir/$tdir $MOUNT/.lustre/fid &&
9877                 error "rename to $MOUNT/.lustre/fid should fail."
9878
9879         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.51) ]
9880         then            # LU-3547
9881                 local old_obf_mode=$(stat --format="%a" $DIR/.lustre/fid)
9882                 local new_obf_mode=777
9883
9884                 echo "change mode of $DIR/.lustre/fid to $new_obf_mode"
9885                 chmod $new_obf_mode $DIR/.lustre/fid ||
9886                         error "chmod $new_obf_mode $DIR/.lustre/fid failed"
9887
9888                 local obf_mode=$(stat --format=%a $DIR/.lustre/fid)
9889                 [ $obf_mode -eq $new_obf_mode ] ||
9890                         error "stat $DIR/.lustre/fid returned wrong mode $obf_mode"
9891
9892                 echo "restore mode of $DIR/.lustre/fid to $old_obf_mode"
9893                 chmod $old_obf_mode $DIR/.lustre/fid ||
9894                         error "chmod $old_obf_mode $DIR/.lustre/fid failed"
9895         fi
9896
9897         $OPENFILE -f O_LOV_DELAY_CREATE:O_CREAT $test_dir/$tfile-2
9898         fid=$($LFS path2fid $test_dir/$tfile-2)
9899
9900         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.50) ]
9901         then # LU-5424
9902                 echo "cp /etc/passwd $MOUNT/.lustre/fid/$fid"
9903                 cp /etc/passwd $MOUNT/.lustre/fid/$fid ||
9904                         error "create lov data thru .lustre failed"
9905         fi
9906         echo "cp /etc/passwd $test_dir/$tfile-2"
9907         cp /etc/passwd $test_dir/$tfile-2 ||
9908                 error "copy to $test_dir/$tfile-2 failed."
9909         echo "diff /etc/passwd $MOUNT/.lustre/fid/$fid"
9910         diff /etc/passwd $MOUNT/.lustre/fid/$fid ||
9911                 error "diff /etc/passwd $MOUNT/.lustre/fid/$fid failed."
9912
9913         rm -rf $test_dir/tfile.lnk
9914         rm -rf $test_dir/$tfile-2
9915 }
9916
9917 test_154A() {
9918         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
9919                 skip "Need MDS version at least 2.4.1" && return
9920
9921         touch $DIR/$tfile
9922         local FID=$($LFS path2fid $DIR/$tfile)
9923         [ -z "$FID" ] && error "path2fid unable to get $DIR/$tfile FID"
9924
9925         # check that we get the same pathname back
9926         local FOUND=$($LFS fid2path $MOUNT "$FID")
9927         [ -z "$FOUND" ] && error "fid2path unable to get $FID path"
9928         [ "$FOUND" != "$DIR/$tfile" ] &&
9929                 error "fid2path(path2fid($DIR/$tfile)) = $FOUND != $DIR/$tfile"
9930
9931         rm -rf $DIR/$tfile
9932 }
9933 run_test 154A "lfs path2fid and fid2path basic checks"
9934
9935 test_154a() {
9936         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9937         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
9938                 { skip "Need MDS version at least 2.2.51"; return 0; }
9939         [ -z "$(which setfacl)" ] && skip "must have setfacl tool" && return
9940
9941         cp /etc/hosts $DIR/$tfile
9942
9943         fid=$($LFS path2fid $DIR/$tfile)
9944         rc=$?
9945         [ $rc -ne 0 ] && error "error: could not get fid for $DIR/$tfile."
9946
9947         dot_lustre_fid_permission_check "$fid" $DIR ||
9948                 error "dot lustre permission check $fid failed"
9949
9950         rm -rf $MOUNT/.lustre && error ".lustre is not allowed to be unlinked"
9951
9952         touch $MOUNT/.lustre/file &&
9953                 error "creation is not allowed under .lustre"
9954
9955         mkdir $MOUNT/.lustre/dir &&
9956                 error "mkdir is not allowed under .lustre"
9957
9958         rm -rf $DIR/$tfile
9959 }
9960 run_test 154a "Open-by-FID"
9961
9962 test_154b() {
9963         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9964         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
9965                 { skip "Need MDS version at least 2.2.51"; return 0; }
9966
9967         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
9968
9969         local remote_dir=$DIR/$tdir/remote_dir
9970         local MDTIDX=1
9971         local rc=0
9972
9973         mkdir -p $DIR/$tdir
9974         $LFS mkdir -i $MDTIDX $remote_dir ||
9975                 error "create remote directory failed"
9976
9977         cp /etc/hosts $remote_dir/$tfile
9978
9979         fid=$($LFS path2fid $remote_dir/$tfile)
9980         rc=$?
9981         [ $rc -ne 0 ] && error "error: could not get fid for $remote_dir/$tfile"
9982
9983         dot_lustre_fid_permission_check "$fid" $remote_dir ||
9984                 error "dot lustre permission check $fid failed"
9985         rm -rf $DIR/$tdir
9986 }
9987 run_test 154b "Open-by-FID for remote directory"
9988
9989 test_154c() {
9990         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
9991                 skip "Need MDS version at least 2.4.1" && return
9992
9993         touch $DIR/$tfile.1 $DIR/$tfile.2 $DIR/$tfile.3
9994         local FID1=$($LFS path2fid $DIR/$tfile.1)
9995         local FID2=$($LFS path2fid $DIR/$tfile.2)
9996         local FID3=$($LFS path2fid $DIR/$tfile.3)
9997
9998         local N=1
9999         $LFS path2fid $DIR/$tfile.[123] | while read PATHNAME FID; do
10000                 [ "$PATHNAME" = "$DIR/$tfile.$N:" ] ||
10001                         error "path2fid pathname $PATHNAME != $DIR/$tfile.$N:"
10002                 local want=FID$N
10003                 [ "$FID" = "${!want}" ] ||
10004                         error "path2fid $PATHNAME FID $FID != FID$N ${!want}"
10005                 N=$((N + 1))
10006         done
10007
10008         $LFS fid2path $MOUNT "$FID1" "$FID2" "$FID3" | while read PATHNAME;
10009         do
10010                 [ "$PATHNAME" = "$DIR/$tfile.$N" ] ||
10011                         error "fid2path pathname $PATHNAME != $DIR/$tfile.$N:"
10012                 N=$((N + 1))
10013         done
10014 }
10015 run_test 154c "lfs path2fid and fid2path multiple arguments"
10016
10017 test_154d() {
10018         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.53) ]] &&
10019                 skip "Need MDS version at least 2.5.53" && return
10020
10021         if remote_mds; then
10022                 nid=$($LCTL list_nids | sed  "s/\./\\\./g")
10023         else
10024                 nid="0@lo"
10025         fi
10026         local proc_ofile="mdt.*.exports.'$nid'.open_files"
10027         local fd
10028         local cmd
10029
10030         rm -f $DIR/$tfile
10031         touch $DIR/$tfile
10032
10033         local fid=$($LFS path2fid $DIR/$tfile)
10034         # Open the file
10035         fd=$(free_fd)
10036         cmd="exec $fd<$DIR/$tfile"
10037         eval $cmd
10038         local fid_list=$(do_facet $SINGLEMDS $LCTL get_param $proc_ofile)
10039         echo "$fid_list" | grep "$fid"
10040         rc=$?
10041
10042         cmd="exec $fd>/dev/null"
10043         eval $cmd
10044         if [ $rc -ne 0 ]; then
10045                 error "FID $fid not found in open files list $fid_list"
10046         fi
10047 }
10048 run_test 154d "Verify open file fid"
10049
10050 test_154e()
10051 {
10052         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.50) ]] &&
10053                 skip "Need MDS version at least 2.6.50" && return
10054
10055         if ls -a $MOUNT | grep -q '^\.lustre$'; then
10056                 error ".lustre returned by readdir"
10057         fi
10058 }
10059 run_test 154e ".lustre is not returned by readdir"
10060
10061 test_154f() {
10062         # create parent directory on a single MDT to avoid cross-MDT hardlinks
10063         test_mkdir -p -c1 $DIR/$tdir/d
10064         # test dirs inherit from its stripe
10065         mkdir -p $DIR/$tdir/d/foo1 || error "mkdir error"
10066         mkdir -p $DIR/$tdir/d/foo2 || error "mkdir error"
10067         cp /etc/hosts $DIR/$tdir/d/foo1/$tfile
10068         ln $DIR/$tdir/d/foo1/$tfile $DIR/$tdir/d/foo2/link
10069         touch $DIR/f
10070
10071         # get fid of parents
10072         local FID0=$($LFS path2fid $DIR/$tdir/d)
10073         local FID1=$($LFS path2fid $DIR/$tdir/d/foo1)
10074         local FID2=$($LFS path2fid $DIR/$tdir/d/foo2)
10075         local FID3=$($LFS path2fid $DIR)
10076
10077         # check that path2fid --parents returns expected <parent_fid>/name
10078         # 1) test for a directory (single parent)
10079         local parent=$($LFS path2fid --parents $DIR/$tdir/d/foo1)
10080         [ "$parent" == "$FID0/foo1" ] ||
10081                 error "expected parent: $FID0/foo1, got: $parent"
10082
10083         # 2) test for a file with nlink > 1 (multiple parents)
10084         parent=$($LFS path2fid --parents $DIR/$tdir/d/foo1/$tfile)
10085         echo "$parent" | grep -F "$FID1/$tfile" ||
10086                 error "$FID1/$tfile not returned in parent list"
10087         echo "$parent" | grep -F "$FID2/link" ||
10088                 error "$FID2/link not returned in parent list"
10089
10090         # 3) get parent by fid
10091         local file_fid=$($LFS path2fid $DIR/$tdir/d/foo1/$tfile)
10092         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
10093         echo "$parent" | grep -F "$FID1/$tfile" ||
10094                 error "$FID1/$tfile not returned in parent list (by fid)"
10095         echo "$parent" | grep -F "$FID2/link" ||
10096                 error "$FID2/link not returned in parent list (by fid)"
10097
10098         # 4) test for entry in root directory
10099         parent=$($LFS path2fid --parents $DIR/f)
10100         echo "$parent" | grep -F "$FID3/f" ||
10101                 error "$FID3/f not returned in parent list"
10102
10103         # 5) test it on root directory
10104         [ -z "$($LFS path2fid --parents $MOUNT 2>/dev/null)" ] ||
10105                 error "$MOUNT should not have parents"
10106
10107         # enable xattr caching and check that linkea is correctly updated
10108         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
10109         save_lustre_params client "llite.*.xattr_cache" > $save
10110         lctl set_param llite.*.xattr_cache 1
10111
10112         # 6.1) linkea update on rename
10113         mv $DIR/$tdir/d/foo1/$tfile $DIR/$tdir/d/foo2/$tfile.moved
10114
10115         # get parents by fid
10116         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
10117         # foo1 should no longer be returned in parent list
10118         echo "$parent" | grep -F "$FID1" &&
10119                 error "$FID1 should no longer be in parent list"
10120         # the new path should appear
10121         echo "$parent" | grep -F "$FID2/$tfile.moved" ||
10122                 error "$FID2/$tfile.moved is not in parent list"
10123
10124         # 6.2) linkea update on unlink
10125         rm -f $DIR/$tdir/d/foo2/link
10126         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
10127         # foo2/link should no longer be returned in parent list
10128         echo "$parent" | grep -F "$FID2/link" &&
10129                 error "$FID2/link should no longer be in parent list"
10130         true
10131
10132         rm -f $DIR/f
10133         restore_lustre_params < $save
10134 }
10135 run_test 154f "get parent fids by reading link ea"
10136
10137 test_154g()
10138 {
10139         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.92) ]] ||
10140                 { skip "Need MDS version at least 2.6.92"; return 0; }
10141
10142         mkdir -p $DIR/$tdir
10143         llapi_fid_test -d $DIR/$tdir
10144 }
10145 run_test 154g "various llapi FID tests"
10146
10147 test_155_small_load() {
10148     local temp=$TMP/$tfile
10149     local file=$DIR/$tfile
10150
10151     dd if=/dev/urandom of=$temp bs=6096 count=1 || \
10152         error "dd of=$temp bs=6096 count=1 failed"
10153     cp $temp $file
10154     cancel_lru_locks osc
10155     cmp $temp $file || error "$temp $file differ"
10156
10157     $TRUNCATE $temp 6000
10158     $TRUNCATE $file 6000
10159     cmp $temp $file || error "$temp $file differ (truncate1)"
10160
10161     echo "12345" >>$temp
10162     echo "12345" >>$file
10163     cmp $temp $file || error "$temp $file differ (append1)"
10164
10165     echo "12345" >>$temp
10166     echo "12345" >>$file
10167     cmp $temp $file || error "$temp $file differ (append2)"
10168
10169     rm -f $temp $file
10170     true
10171 }
10172
10173 test_155_big_load() {
10174     remote_ost_nodsh && skip "remote OST with nodsh" && return
10175     local temp=$TMP/$tfile
10176     local file=$DIR/$tfile
10177
10178     free_min_max
10179     local cache_size=$(do_facet ost$((MAXI+1)) \
10180         "awk '/cache/ {sum+=\\\$4} END {print sum}' /proc/cpuinfo")
10181     local large_file_size=$((cache_size * 2))
10182
10183     echo "OSS cache size: $cache_size KB"
10184     echo "Large file size: $large_file_size KB"
10185
10186     [ $MAXV -le $large_file_size ] && \
10187         skip_env "max available OST size needs > $large_file_size KB" && \
10188         return 0
10189
10190     $SETSTRIPE $file -c 1 -i $MAXI || error "$SETSTRIPE $file failed"
10191
10192     dd if=/dev/urandom of=$temp bs=$large_file_size count=1k || \
10193         error "dd of=$temp bs=$large_file_size count=1k failed"
10194     cp $temp $file
10195     ls -lh $temp $file
10196     cancel_lru_locks osc
10197     cmp $temp $file || error "$temp $file differ"
10198
10199     rm -f $temp $file
10200     true
10201 }
10202
10203 test_155a() {
10204         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10205         set_cache read on
10206         set_cache writethrough on
10207         test_155_small_load
10208 }
10209 run_test 155a "Verify small file correctness: read cache:on write_cache:on"
10210
10211 test_155b() {
10212         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10213         set_cache read on
10214         set_cache writethrough off
10215         test_155_small_load
10216 }
10217 run_test 155b "Verify small file correctness: read cache:on write_cache:off"
10218
10219 test_155c() {
10220         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10221         set_cache read off
10222         set_cache writethrough on
10223         test_155_small_load
10224 }
10225 run_test 155c "Verify small file correctness: read cache:off write_cache:on"
10226
10227 test_155d() {
10228         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10229         set_cache read off
10230         set_cache writethrough off
10231         test_155_small_load
10232 }
10233 run_test 155d "Verify small file correctness: read cache:off write_cache:off"
10234
10235 test_155e() {
10236         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10237         set_cache read on
10238         set_cache writethrough on
10239         test_155_big_load
10240 }
10241 run_test 155e "Verify big file correctness: read cache:on write_cache:on"
10242
10243 test_155f() {
10244         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10245         set_cache read on
10246         set_cache writethrough off
10247         test_155_big_load
10248 }
10249 run_test 155f "Verify big file correctness: read cache:on write_cache:off"
10250
10251 test_155g() {
10252         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10253         set_cache read off
10254         set_cache writethrough on
10255         test_155_big_load
10256 }
10257 run_test 155g "Verify big file correctness: read cache:off write_cache:on"
10258
10259 test_155h() {
10260         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10261         set_cache read off
10262         set_cache writethrough off
10263         test_155_big_load
10264 }
10265 run_test 155h "Verify big file correctness: read cache:off write_cache:off"
10266
10267 test_156() {
10268         remote_ost_nodsh && skip "remote OST with nodsh" && return
10269         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10270         local CPAGES=3
10271         local BEFORE
10272         local AFTER
10273         local file="$DIR/$tfile"
10274
10275         [ "$(facet_fstype ost1)" = "zfs" -a \
10276            $(lustre_version_code ost1 -lt $(version_code 2.6.93)) ] &&
10277                 skip "LU-1956/LU-2261: stats not implemented on OSD ZFS" &&
10278                 return
10279
10280         roc_hit_init
10281
10282         log "Turn on read and write cache"
10283         set_cache read on
10284         set_cache writethrough on
10285
10286         log "Write data and read it back."
10287         log "Read should be satisfied from the cache."
10288         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
10289         BEFORE=$(roc_hit)
10290         cancel_lru_locks osc
10291         cat $file >/dev/null
10292         AFTER=$(roc_hit)
10293         if ! let "AFTER - BEFORE == CPAGES"; then
10294                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10295         else
10296                 log "cache hits:: before: $BEFORE, after: $AFTER"
10297         fi
10298
10299         log "Read again; it should be satisfied from the cache."
10300         BEFORE=$AFTER
10301         cancel_lru_locks osc
10302         cat $file >/dev/null
10303         AFTER=$(roc_hit)
10304         if ! let "AFTER - BEFORE == CPAGES"; then
10305                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10306         else
10307                 log "cache hits:: before: $BEFORE, after: $AFTER"
10308         fi
10309
10310         log "Turn off the read cache and turn on the write cache"
10311         set_cache read off
10312         set_cache writethrough on
10313
10314         log "Read again; it should be satisfied from the cache."
10315         BEFORE=$(roc_hit)
10316         cancel_lru_locks osc
10317         cat $file >/dev/null
10318         AFTER=$(roc_hit)
10319         if ! let "AFTER - BEFORE == CPAGES"; then
10320                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10321         else
10322                 log "cache hits:: before: $BEFORE, after: $AFTER"
10323         fi
10324
10325         log "Read again; it should not be satisfied from the cache."
10326         BEFORE=$AFTER
10327         cancel_lru_locks osc
10328         cat $file >/dev/null
10329         AFTER=$(roc_hit)
10330         if ! let "AFTER - BEFORE == 0"; then
10331                 error "IN CACHE: before: $BEFORE, after: $AFTER"
10332         else
10333                 log "cache hits:: before: $BEFORE, after: $AFTER"
10334         fi
10335
10336         log "Write data and read it back."
10337         log "Read should be satisfied from the cache."
10338         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
10339         BEFORE=$(roc_hit)
10340         cancel_lru_locks osc
10341         cat $file >/dev/null
10342         AFTER=$(roc_hit)
10343         if ! let "AFTER - BEFORE == CPAGES"; then
10344                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10345         else
10346                 log "cache hits:: before: $BEFORE, after: $AFTER"
10347         fi
10348
10349         log "Read again; it should not be satisfied from the cache."
10350         BEFORE=$AFTER
10351         cancel_lru_locks osc
10352         cat $file >/dev/null
10353         AFTER=$(roc_hit)
10354         if ! let "AFTER - BEFORE == 0"; then
10355                 error "IN CACHE: before: $BEFORE, after: $AFTER"
10356         else
10357                 log "cache hits:: before: $BEFORE, after: $AFTER"
10358         fi
10359
10360         log "Turn off read and write cache"
10361         set_cache read off
10362         set_cache writethrough off
10363
10364         log "Write data and read it back"
10365         log "It should not be satisfied from the cache."
10366         rm -f $file
10367         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
10368         cancel_lru_locks osc
10369         BEFORE=$(roc_hit)
10370         cat $file >/dev/null
10371         AFTER=$(roc_hit)
10372         if ! let "AFTER - BEFORE == 0"; then
10373                 error_ignore bz20762 "IN CACHE: before: $BEFORE, after: $AFTER"
10374         else
10375                 log "cache hits:: before: $BEFORE, after: $AFTER"
10376         fi
10377
10378         log "Turn on the read cache and turn off the write cache"
10379         set_cache read on
10380         set_cache writethrough off
10381
10382         log "Write data and read it back"
10383         log "It should not be satisfied from the cache."
10384         rm -f $file
10385         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
10386         BEFORE=$(roc_hit)
10387         cancel_lru_locks osc
10388         cat $file >/dev/null
10389         AFTER=$(roc_hit)
10390         if ! let "AFTER - BEFORE == 0"; then
10391                 error_ignore bz20762 "IN CACHE: before: $BEFORE, after: $AFTER"
10392         else
10393                 log "cache hits:: before: $BEFORE, after: $AFTER"
10394         fi
10395
10396         log "Read again; it should be satisfied from the cache."
10397         BEFORE=$(roc_hit)
10398         cancel_lru_locks osc
10399         cat $file >/dev/null
10400         AFTER=$(roc_hit)
10401         if ! let "AFTER - BEFORE == CPAGES"; then
10402                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10403         else
10404                 log "cache hits:: before: $BEFORE, after: $AFTER"
10405         fi
10406
10407         rm -f $file
10408 }
10409 run_test 156 "Verification of tunables"
10410
10411 #Changelogs
10412 err17935 () {
10413         if [[ $MDSCOUNT -gt 1 ]]; then
10414                 error_ignore bz17935 $*
10415         else
10416                 error $*
10417         fi
10418 }
10419
10420 changelog_chmask()
10421 {
10422         local CL_MASK_PARAM="mdd.$MDT0.changelog_mask"
10423
10424         MASK=$(do_facet $SINGLEMDS $LCTL get_param $CL_MASK_PARAM| grep -c "$1")
10425
10426         if [ $MASK -eq 1 ]; then
10427                 do_facet $SINGLEMDS $LCTL set_param $CL_MASK_PARAM="-$1"
10428         else
10429                 do_facet $SINGLEMDS $LCTL set_param $CL_MASK_PARAM="+$1"
10430         fi
10431 }
10432
10433 changelog_extract_field() {
10434         local mdt=$1
10435         local cltype=$2
10436         local file=$3
10437         local identifier=$4
10438
10439         $LFS changelog $mdt | gawk "/$cltype.*$file$/ {
10440                 print gensub(/^.* "$identifier'(\[[^\]]*\]).*$/,"\\1",1)}' |
10441                 tail -1
10442 }
10443
10444 test_160a() {
10445         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10446         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10447         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] ||
10448                 { skip "Need MDS version at least 2.2.0"; return; }
10449
10450         local CL_USERS="mdd.$MDT0.changelog_users"
10451         local GET_CL_USERS="do_facet $SINGLEMDS $LCTL get_param -n $CL_USERS"
10452         USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_register -n)
10453         echo "Registered as changelog user $USER"
10454         $GET_CL_USERS | grep -q $USER ||
10455                 error "User $USER not found in changelog_users"
10456
10457         # change something
10458         test_mkdir -p $DIR/$tdir/pics/2008/zachy
10459         touch $DIR/$tdir/pics/2008/zachy/timestamp
10460         cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg
10461         mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
10462         ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
10463         ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
10464         rm $DIR/$tdir/pics/desktop.jpg
10465
10466         $LFS changelog $MDT0 | tail -5
10467
10468         echo "verifying changelog mask"
10469         changelog_chmask "MKDIR"
10470         changelog_chmask "CLOSE"
10471
10472         test_mkdir -p $DIR/$tdir/pics/zach/sofia
10473         echo "zzzzzz" > $DIR/$tdir/pics/zach/file
10474
10475         changelog_chmask "MKDIR"
10476         changelog_chmask "CLOSE"
10477
10478         test_mkdir -p $DIR/$tdir/pics/2008/sofia
10479         echo "zzzzzz" > $DIR/$tdir/pics/zach/file
10480
10481         $LFS changelog $MDT0
10482         MKDIRS=$($LFS changelog $MDT0 | tail -5 | grep -c "MKDIR")
10483         CLOSES=$($LFS changelog $MDT0 | tail -5 | grep -c "CLOSE")
10484         [ $MKDIRS -eq 1 ] || err17935 "MKDIR changelog mask count $DIRS != 1"
10485         [ $CLOSES -eq 1 ] || err17935 "CLOSE changelog mask count $DIRS != 1"
10486
10487         # verify contents
10488         echo "verifying target fid"
10489         fidc=$(changelog_extract_field $MDT0 "CREAT" "timestamp" "t=")
10490         fidf=$($LFS path2fid $DIR/$tdir/pics/zach/timestamp)
10491         [ "$fidc" == "$fidf" ] ||
10492                 err17935 "fid in changelog $fidc != file fid $fidf"
10493         echo "verifying parent fid"
10494         fidc=$(changelog_extract_field $MDT0 "CREAT" "timestamp" "p=")
10495         fidf=$($LFS path2fid $DIR/$tdir/pics/zach)
10496         [ "$fidc" == "$fidf" ] ||
10497                 err17935 "pfid in changelog $fidc != dir fid $fidf"
10498
10499         USER_REC1=$($GET_CL_USERS | awk "\$1 == \"$USER\" {print \$2}")
10500         $LFS changelog_clear $MDT0 $USER $(($USER_REC1 + 5))
10501         USER_REC2=$($GET_CL_USERS | awk "\$1 == \"$USER\" {print \$2}")
10502         echo "verifying user clear: $(( $USER_REC1 + 5 )) == $USER_REC2"
10503         [ $USER_REC2 == $(($USER_REC1 + 5)) ] ||
10504                 err17935 "user index expected $(($USER_REC1 + 5)) is $USER_REC2"
10505
10506         MIN_REC=$($GET_CL_USERS |
10507                 awk 'min == "" || $2 < min {min = $2}; END {print min}')
10508         FIRST_REC=$($LFS changelog $MDT0 | head -n1 | awk '{print $1}')
10509         echo "verifying min purge: $(( $MIN_REC + 1 )) == $FIRST_REC"
10510         [ $FIRST_REC == $(($MIN_REC + 1)) ] ||
10511                 err17935 "first index should be $(($MIN_REC + 1)) is $FIRST_REC"
10512
10513         # LU-3446 changelog index reset on MDT restart
10514         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
10515         CUR_REC1=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
10516         $LFS changelog_clear $MDT0 $USER 0
10517         stop $SINGLEMDS || error "Fail to stop MDT."
10518         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
10519         CUR_REC2=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
10520         echo "verifying index survives MDT restart: $CUR_REC1 == $CUR_REC2"
10521         [ $CUR_REC1 == $CUR_REC2 ] ||
10522                 err17935 "current index should be $CUR_REC1 is $CUR_REC2"
10523
10524         echo "verifying user deregister"
10525         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $USER
10526         $GET_CL_USERS | grep -q $USER &&
10527                 error "User $USER still in changelog_users"
10528
10529         USERS=$(( $($GET_CL_USERS | wc -l) - 2 ))
10530         if [ $USERS -eq 0 ]; then
10531                 LAST_REC1=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
10532                 touch $DIR/$tdir/chloe
10533                 LAST_REC2=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
10534                 echo "verify changelogs are off: $LAST_REC1 == $LAST_REC2"
10535                 [ $LAST_REC1 == $LAST_REC2 ] || error "changelogs not off"
10536         else
10537                 echo "$USERS other changelog users; can't verify off"
10538         fi
10539 }
10540 run_test 160a "changelog sanity"
10541
10542 test_160b() { # LU-3587
10543         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10544         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10545         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] ||
10546                 { skip "Need MDS version at least 2.2.0"; return; }
10547
10548         local CL_USERS="mdd.$MDT0.changelog_users"
10549         local GET_CL_USERS="do_facet $SINGLEMDS $LCTL get_param -n $CL_USERS"
10550         USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_register -n)
10551         echo "Registered as changelog user $USER"
10552         $GET_CL_USERS | grep -q $USER ||
10553                 error "User $USER not found in changelog_users"
10554
10555         local LONGNAME1=$(str_repeat a 255)
10556         local LONGNAME2=$(str_repeat b 255)
10557
10558         cd $DIR
10559         echo "creating very long named file"
10560         touch $LONGNAME1 || error "create of $LONGNAME1 failed"
10561         echo "moving very long named file"
10562         mv $LONGNAME1 $LONGNAME2
10563
10564         $LFS changelog $MDT0 | grep RENME
10565
10566         echo "deregistering $USER"
10567         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $USER
10568
10569         rm -f $LONGNAME2
10570 }
10571 run_test 160b "Verify that very long rename doesn't crash in changelog"
10572
10573 test_160c() {
10574         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10575
10576         local rc=0
10577         local server_version=$(lustre_version_code $SINGLEMDS)
10578
10579         [[ $server_version -gt $(version_code 2.5.57) ]] ||
10580                 [[ $server_version -gt $(version_code 2.5.1) &&
10581                    $server_version -lt $(version_code 2.5.50) ]] ||
10582                 { skip "Need MDS version at least 2.5.58 or 2.5.2+"; return; }
10583         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10584
10585         # Registration step
10586         local USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
10587                 changelog_register -n)
10588
10589         rm -rf $DIR/$tdir
10590         mkdir -p $DIR/$tdir
10591         $MCREATE $DIR/$tdir/foo_160c
10592         changelog_chmask "TRUNC"
10593         $TRUNCATE $DIR/$tdir/foo_160c 200
10594         changelog_chmask "TRUNC"
10595         $TRUNCATE $DIR/$tdir/foo_160c 199
10596         $LFS changelog $MDT0
10597         TRUNCS=$($LFS changelog $MDT0 | tail -5 | grep -c "TRUNC")
10598         [ $TRUNCS -eq 1 ] || err17935 "TRUNC changelog mask count $TRUNCS != 1"
10599         $LFS changelog_clear $MDT0 $USER 0
10600
10601         # Deregistration step
10602         echo "deregistering $USER"
10603         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $USER
10604 }
10605 run_test 160c "verify that changelog log catch the truncate event"
10606
10607 test_160d() {
10608         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10609         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
10610
10611         local server_version=$(lustre_version_code mds1)
10612         local CL_MASK_PARAM="mdd.$MDT0.changelog_mask"
10613
10614         [[ $server_version -ge $(version_code 2.7.60) ]] ||
10615                 { skip "Need MDS version at least 2.7.60+"; return; }
10616         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10617
10618         # Registration step
10619         local USER=$(do_facet mds1 $LCTL --device $MDT0 \
10620                 changelog_register -n)
10621
10622         mkdir -p $DIR/$tdir/migrate_dir
10623         $LFS changelog_clear $MDT0 $USER 0
10624
10625         $LFS migrate -m 1 $DIR/$tdir/migrate_dir || error "migrate fails"
10626         $LFS changelog $MDT0
10627         MIGRATES=$($LFS changelog $MDT0 | tail -5 | grep -c "MIGRT")
10628         $LFS changelog_clear $MDT0 $USER 0
10629         [ $MIGRATES -eq 1 ] ||
10630                 error "MIGRATE changelog mask count $MIGRATES != 1"
10631
10632         # Deregistration step
10633         do_facet mds1 $LCTL --device $MDT0 changelog_deregister $USER
10634 }
10635 run_test 160d "verify that changelog log catch the migrate event"
10636
10637 test_161a() {
10638         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10639         test_mkdir -p -c1 $DIR/$tdir
10640         cp /etc/hosts $DIR/$tdir/$tfile
10641         test_mkdir -c1 $DIR/$tdir/foo1
10642         test_mkdir -c1 $DIR/$tdir/foo2
10643         ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/sofia
10644         ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/zachary
10645         ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/luna
10646         ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/thor
10647         local FID=$($LFS path2fid $DIR/$tdir/$tfile | tr -d '[]')
10648         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
10649                 $LFS fid2path $DIR $FID
10650                 err17935 "bad link ea"
10651         fi
10652     # middle
10653     rm $DIR/$tdir/foo2/zachary
10654     # last
10655     rm $DIR/$tdir/foo2/thor
10656     # first
10657     rm $DIR/$tdir/$tfile
10658     # rename
10659     mv $DIR/$tdir/foo1/sofia $DIR/$tdir/foo2/maggie
10660     if [ "$($LFS fid2path $FSNAME --link 1 $FID)" != "$tdir/foo2/maggie" ]
10661         then
10662         $LFS fid2path $DIR $FID
10663         err17935 "bad link rename"
10664     fi
10665     rm $DIR/$tdir/foo2/maggie
10666
10667         # overflow the EA
10668         local longname=filename_avg_len_is_thirty_two_
10669         createmany -l$DIR/$tdir/foo1/luna $DIR/$tdir/foo2/$longname 1000 ||
10670                 error "failed to hardlink many files"
10671         links=$($LFS fid2path $DIR $FID | wc -l)
10672         echo -n "${links}/1000 links in link EA"
10673         [[ $links -gt 60 ]] ||
10674                 err17935 "expected at least 60 links in link EA"
10675         unlinkmany $DIR/$tdir/foo2/$longname 1000 ||
10676                 error "failed to unlink many hardlinks"
10677 }
10678 run_test 161a "link ea sanity"
10679
10680 test_161b() {
10681         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10682         [ $MDSCOUNT -lt 2 ] &&
10683                 skip "skipping remote directory test" && return
10684         local MDTIDX=1
10685         local remote_dir=$DIR/$tdir/remote_dir
10686
10687         mkdir -p $DIR/$tdir
10688         $LFS mkdir -i $MDTIDX $remote_dir ||
10689                 error "create remote directory failed"
10690
10691         cp /etc/hosts $remote_dir/$tfile
10692         mkdir -p $remote_dir/foo1
10693         mkdir -p $remote_dir/foo2
10694         ln $remote_dir/$tfile $remote_dir/foo1/sofia
10695         ln $remote_dir/$tfile $remote_dir/foo2/zachary
10696         ln $remote_dir/$tfile $remote_dir/foo1/luna
10697         ln $remote_dir/$tfile $remote_dir/foo2/thor
10698
10699         local FID=$($LFS path2fid $remote_dir/$tfile | tr -d '[' |
10700                      tr -d ']')
10701         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
10702                 $LFS fid2path $DIR $FID
10703                 err17935 "bad link ea"
10704         fi
10705         # middle
10706         rm $remote_dir/foo2/zachary
10707         # last
10708         rm $remote_dir/foo2/thor
10709         # first
10710         rm $remote_dir/$tfile
10711         # rename
10712         mv $remote_dir/foo1/sofia $remote_dir/foo2/maggie
10713         local link_path=$($LFS fid2path $FSNAME --link 1 $FID)
10714         if [ "$DIR/$link_path" != "$remote_dir/foo2/maggie" ]; then
10715                 $LFS fid2path $DIR $FID
10716                 err17935 "bad link rename"
10717         fi
10718         rm $remote_dir/foo2/maggie
10719
10720         # overflow the EA
10721         local longname=filename_avg_len_is_thirty_two_
10722         createmany -l$remote_dir/foo1/luna $remote_dir/foo2/$longname 1000 ||
10723                 error "failed to hardlink many files"
10724         links=$($LFS fid2path $DIR $FID | wc -l)
10725         echo -n "${links}/1000 links in link EA"
10726         [[ ${links} -gt 60 ]] ||
10727                 err17935 "expected at least 60 links in link EA"
10728         unlinkmany $remote_dir/foo2/$longname 1000 ||
10729         error "failed to unlink many hardlinks"
10730 }
10731 run_test 161b "link ea sanity under remote directory"
10732
10733 test_161c() {
10734         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10735         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10736         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.1.5) ]] &&
10737                 skip "Need MDS version at least 2.1.5" && return
10738
10739         # define CLF_RENAME_LAST 0x0001
10740         # rename overwrite a target having nlink = 1 (changelog flag 0x1)
10741         local USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
10742                 changelog_register -n)
10743         rm -rf $DIR/$tdir
10744         mkdir -p $DIR/$tdir
10745         touch $DIR/$tdir/foo_161c
10746         touch $DIR/$tdir/bar_161c
10747         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
10748         $LFS changelog $MDT0 | grep RENME
10749         local flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | \
10750                 cut -f5 -d' ')
10751         $LFS changelog_clear $MDT0 $USER 0
10752         if [ x$flags != "x0x1" ]; then
10753                 do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister \
10754                         $USER
10755                 error "flag $flags is not 0x1"
10756         fi
10757         echo "rename overwrite a target having nlink = 1," \
10758                 "changelog record has flags of $flags"
10759
10760         # rename overwrite a target having nlink > 1 (changelog flag 0x0)
10761         touch $DIR/$tdir/foo_161c
10762         touch $DIR/$tdir/bar_161c
10763         ln $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
10764         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
10765         $LFS changelog $MDT0 | grep RENME
10766         flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | cut -f5 -d' ')
10767         $LFS changelog_clear $MDT0 $USER 0
10768         if [ x$flags != "x0x0" ]; then
10769                 do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister \
10770                         $USER
10771                 error "flag $flags is not 0x0"
10772         fi
10773         echo "rename overwrite a target having nlink > 1," \
10774                 "changelog record has flags of $flags"
10775
10776         # rename doesn't overwrite a target (changelog flag 0x0)
10777         touch $DIR/$tdir/foo_161c
10778         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/foo2_161c
10779         $LFS changelog $MDT0 | grep RENME
10780         flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | cut -f5 -d' ')
10781         $LFS changelog_clear $MDT0 $USER 0
10782         if [ x$flags != "x0x0" ]; then
10783                 do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister \
10784                         $USER
10785                 error "flag $flags is not 0x0"
10786         fi
10787         echo "rename doesn't overwrite a target," \
10788                 "changelog record has flags of $flags"
10789
10790         # define CLF_UNLINK_LAST 0x0001
10791         # unlink a file having nlink = 1 (changelog flag 0x1)
10792         rm -f $DIR/$tdir/foo2_161c
10793         $LFS changelog $MDT0 | grep UNLNK
10794         flags=$($LFS changelog $MDT0 | grep UNLNK | tail -1 | cut -f5 -d' ')
10795         $LFS changelog_clear $MDT0 $USER 0
10796         if [ x$flags != "x0x1" ]; then
10797                 do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister \
10798                         $USER
10799                 error "flag $flags is not 0x1"
10800         fi
10801         echo "unlink a file having nlink = 1," \
10802                 "changelog record has flags of $flags"
10803
10804         # unlink a file having nlink > 1 (changelog flag 0x0)
10805         ln -f $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
10806         rm -f $DIR/$tdir/foobar_161c
10807         $LFS changelog $MDT0 | grep UNLNK
10808         flags=$($LFS changelog $MDT0 | grep UNLNK | tail -1 | cut -f5 -d' ')
10809         $LFS changelog_clear $MDT0 $USER 0
10810         if [ x$flags != "x0x0" ]; then
10811                 do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister \
10812                         $USER
10813                 error "flag $flags is not 0x0"
10814         fi
10815         echo "unlink a file having nlink > 1," \
10816                 "changelog record has flags of $flags"
10817         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $USER
10818 }
10819 run_test 161c "check CL_RENME[UNLINK] changelog record flags"
10820
10821 check_path() {
10822     local expected=$1
10823     shift
10824     local fid=$2
10825
10826     local path=$(${LFS} fid2path $*)
10827     # Remove the '//' indicating a remote directory
10828     path=$(echo $path | sed 's#//#/#g')
10829     RC=$?
10830
10831     if [ $RC -ne 0 ]; then
10832         err17935 "path looked up of $expected failed. Error $RC"
10833         return $RC
10834     elif [ "${path}" != "${expected}" ]; then
10835         err17935 "path looked up \"${path}\" instead of \"${expected}\""
10836         return 2
10837     fi
10838     echo "fid $fid resolves to path $path (expected $expected)"
10839 }
10840
10841 test_162a() { # was test_162
10842         # Make changes to filesystem
10843         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10844         test_mkdir -p -c1 $DIR/$tdir/d2
10845         touch $DIR/$tdir/d2/$tfile
10846         touch $DIR/$tdir/d2/x1
10847         touch $DIR/$tdir/d2/x2
10848         test_mkdir -p -c1 $DIR/$tdir/d2/a/b/c
10849         test_mkdir -p -c1 $DIR/$tdir/d2/p/q/r
10850         # regular file
10851         FID=$($LFS path2fid $DIR/$tdir/d2/$tfile | tr -d '[]')
10852         check_path "$tdir/d2/$tfile" $FSNAME $FID --link 0 ||
10853                 error "check path $tdir/d2/$tfile failed"
10854
10855         # softlink
10856         ln -s $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/slink
10857         FID=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink | tr -d '[]')
10858         check_path "$tdir/d2/p/q/r/slink" $FSNAME $FID --link 0 ||
10859                 error "check path $tdir/d2/p/q/r/slink failed"
10860
10861         # softlink to wrong file
10862         ln -s /this/is/garbage $DIR/$tdir/d2/p/q/r/slink.wrong
10863         FID=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink.wrong | tr -d '[]')
10864         check_path "$tdir/d2/p/q/r/slink.wrong" $FSNAME $FID --link 0 ||
10865                 error "check path $tdir/d2/p/q/r/slink.wrong failed"
10866
10867         # hardlink
10868         ln $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/hlink
10869         mv $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/a/b/c/new_file
10870         FID=$($LFS path2fid $DIR/$tdir/d2/a/b/c/new_file | tr -d '[]')
10871         # fid2path dir/fsname should both work
10872         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $FID --link 1 ||
10873                 error "check path $tdir/d2/a/b/c/new_file failed"
10874         check_path "$DIR/$tdir/d2/p/q/r/hlink" $DIR $FID --link 0 ||
10875                 error "check path $DIR/$tdir/d2/p/q/r/hlink failed"
10876
10877         # hardlink count: check that there are 2 links
10878         # Doesnt work with CMD yet: 17935
10879         ${LFS} fid2path $DIR $FID | wc -l | grep -q 2 || \
10880                 err17935 "expected 2 links"
10881
10882         # hardlink indexing: remove the first link
10883         rm $DIR/$tdir/d2/p/q/r/hlink
10884         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $FID --link 0 ||
10885                 error "check path $DIR/$tdir/d2/a/b/c/new_file failed"
10886
10887         return 0
10888 }
10889 run_test 162a "path lookup sanity"
10890
10891 test_162b() {
10892         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10893         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
10894
10895         mkdir $DIR/$tdir
10896         $LFS setdirstripe -i0 -c$MDSCOUNT -t all_char $DIR/$tdir/striped_dir ||
10897                                 error "create striped dir failed"
10898
10899         local FID=$($LFS getdirstripe $DIR/$tdir/striped_dir |
10900                                         tail -n 1 | awk '{print $2}')
10901         stat $MOUNT/.lustre/fid/$FID && error "sub_stripe can be accessed"
10902
10903         touch $DIR/$tdir/striped_dir/f{0..4} || error "touch f0..4 failed"
10904         mkdir $DIR/$tdir/striped_dir/d{0..4} || error "mkdir d0..4 failed"
10905
10906         # regular file
10907         for ((i=0;i<5;i++)); do
10908                 FID=$($LFS path2fid $DIR/$tdir/striped_dir/f$i | tr -d '[]') ||
10909                         error "get fid for f$i failed"
10910                 check_path "$tdir/striped_dir/f$i" $FSNAME $FID --link 0 ||
10911                         error "check path $tdir/striped_dir/f$i failed"
10912
10913                 FID=$($LFS path2fid $DIR/$tdir/striped_dir/d$i | tr -d '[]') ||
10914                         error "get fid for d$i failed"
10915                 check_path "$tdir/striped_dir/d$i" $FSNAME $FID --link 0 ||
10916                         error "check path $tdir/striped_dir/d$i failed"
10917         done
10918
10919         return 0
10920 }
10921 run_test 162b "striped directory path lookup sanity"
10922
10923 # LU-4239: Verify fid2path works with paths 100 or more directories deep
10924 test_162c() {
10925         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.51) ]] &&
10926                 skip "Need MDS version at least 2.7.51" && return
10927         test_mkdir $DIR/$tdir.local
10928         test_mkdir $DIR/$tdir.remote
10929         local lpath=$tdir.local
10930         local rpath=$tdir.remote
10931
10932         for ((i = 0; i <= 101; i++)); do
10933                 lpath="$lpath/$i"
10934                 mkdir $DIR/$lpath
10935                 FID=$($LFS path2fid $DIR/$lpath | tr -d '[]') ||
10936                         error "get fid for local directory $DIR/$lpath failed"
10937                 check_path "$DIR/$lpath" $MOUNT $FID --link 0 ||
10938                         error "check path for local directory $DIR/$lpath failed"
10939
10940                 rpath="$rpath/$i"
10941                 test_mkdir $DIR/$rpath
10942                 FID=$($LFS path2fid $DIR/$rpath | tr -d '[]') ||
10943                         error "get fid for remote directory $DIR/$rpath failed"
10944                 check_path "$DIR/$rpath" $MOUNT $FID --link 0 ||
10945                         error "check path for remote directory $DIR/$rpath failed"
10946         done
10947
10948         return 0
10949 }
10950 run_test 162c "fid2path works with paths 100 or more directories deep"
10951
10952 test_169() {
10953         # do directio so as not to populate the page cache
10954         log "creating a 10 Mb file"
10955         $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
10956         log "starting reads"
10957         dd if=$DIR/$tfile of=/dev/null bs=4096 &
10958         log "truncating the file"
10959         $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
10960         log "killing dd"
10961         kill %+ || true # reads might have finished
10962         echo "wait until dd is finished"
10963         wait
10964         log "removing the temporary file"
10965         rm -rf $DIR/$tfile || error "tmp file removal failed"
10966 }
10967 run_test 169 "parallel read and truncate should not deadlock"
10968
10969 test_170() {
10970         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10971         $LCTL clear     # bug 18514
10972         $LCTL debug_daemon start $TMP/${tfile}_log_good
10973         touch $DIR/$tfile
10974         $LCTL debug_daemon stop
10975         sed -e "s/^...../a/g" $TMP/${tfile}_log_good > $TMP/${tfile}_log_bad ||
10976                error "sed failed to read log_good"
10977
10978         $LCTL debug_daemon start $TMP/${tfile}_log_good
10979         rm -rf $DIR/$tfile
10980         $LCTL debug_daemon stop
10981
10982         $LCTL df $TMP/${tfile}_log_bad > $TMP/${tfile}_log_bad.out 2>&1 ||
10983                error "lctl df log_bad failed"
10984
10985         local bad_line=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
10986         local good_line1=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
10987
10988         $LCTL df $TMP/${tfile}_log_good > $TMP/${tfile}_log_good.out 2>&1
10989         local good_line2=$(tail -n 1 $TMP/${tfile}_log_good.out | awk '{print $5}')
10990
10991         [ "$bad_line" ] && [ "$good_line1" ] && [ "$good_line2" ] ||
10992                 error "bad_line good_line1 good_line2 are empty"
10993
10994         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
10995         cat $TMP/${tfile}_log_bad >> $TMP/${tfile}_logs_corrupt
10996         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
10997
10998         $LCTL df $TMP/${tfile}_logs_corrupt > $TMP/${tfile}_log_bad.out 2>&1
10999         local bad_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
11000         local good_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
11001
11002         [ "$bad_line_new" ] && [ "$good_line_new" ] ||
11003                 error "bad_line_new good_line_new are empty"
11004
11005         local expected_good=$((good_line1 + good_line2*2))
11006
11007         rm -f $TMP/${tfile}*
11008         # LU-231, short malformed line may not be counted into bad lines
11009         if [ $bad_line -ne $bad_line_new ] &&
11010                    [ $bad_line -ne $((bad_line_new - 1)) ]; then
11011                 error "expected $bad_line bad lines, but got $bad_line_new"
11012                 return 1
11013         fi
11014
11015         if [ $expected_good -ne $good_line_new ]; then
11016                 error "expected $expected_good good lines, but got $good_line_new"
11017                 return 2
11018         fi
11019         true
11020 }
11021 run_test 170 "test lctl df to handle corrupted log ====================="
11022
11023 test_171() { # bug20592
11024         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11025 #define OBD_FAIL_PTLRPC_DUMP_LOG         0x50e
11026         $LCTL set_param fail_loc=0x50e
11027         $LCTL set_param fail_val=3000
11028         multiop_bg_pause $DIR/$tfile O_s || true
11029         local MULTIPID=$!
11030         kill -USR1 $MULTIPID
11031         # cause log dump
11032         sleep 3
11033         wait $MULTIPID
11034         if dmesg | grep "recursive fault"; then
11035                 error "caught a recursive fault"
11036         fi
11037         $LCTL set_param fail_loc=0
11038         true
11039 }
11040 run_test 171 "test libcfs_debug_dumplog_thread stuck in do_exit() ======"
11041
11042 # it would be good to share it with obdfilter-survey/iokit-libecho code
11043 setup_obdecho_osc () {
11044         local rc=0
11045         local ost_nid=$1
11046         local obdfilter_name=$2
11047         echo "Creating new osc for $obdfilter_name on $ost_nid"
11048         # make sure we can find loopback nid
11049         $LCTL add_uuid $ost_nid $ost_nid >/dev/null 2>&1
11050
11051         [ $rc -eq 0 ] && { $LCTL attach osc ${obdfilter_name}_osc     \
11052                            ${obdfilter_name}_osc_UUID || rc=2; }
11053         [ $rc -eq 0 ] && { $LCTL --device ${obdfilter_name}_osc setup \
11054                            ${obdfilter_name}_UUID  $ost_nid || rc=3; }
11055         return $rc
11056 }
11057
11058 cleanup_obdecho_osc () {
11059         local obdfilter_name=$1
11060         $LCTL --device ${obdfilter_name}_osc cleanup >/dev/null
11061         $LCTL --device ${obdfilter_name}_osc detach  >/dev/null
11062         return 0
11063 }
11064
11065 obdecho_test() {
11066         local OBD=$1
11067         local node=$2
11068         local pages=${3:-64}
11069         local rc=0
11070         local id
11071
11072         local count=10
11073         local obd_size=$(get_obd_size $node $OBD)
11074         local page_size=$(get_page_size $node)
11075         if [[ -n "$obd_size" ]]; then
11076                 local new_count=$((obd_size / (pages * page_size / 1024)))
11077                 [[ $new_count -ge $count ]] || count=$new_count
11078         fi
11079
11080         do_facet $node "$LCTL attach echo_client ec ec_uuid" || rc=1
11081         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec setup $OBD" ||
11082                            rc=2; }
11083         if [ $rc -eq 0 ]; then
11084             id=$(do_facet $node "$LCTL --device ec create 1"  | awk '/object id/ {print $6}')
11085             [ ${PIPESTATUS[0]} -eq 0 -a -n "$id" ] || rc=3
11086         fi
11087         echo "New object id is $id"
11088         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec getattr $id" ||
11089                            rc=4; }
11090         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec "                 \
11091                            "test_brw $count w v $pages $id" || rc=4; }
11092         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec destroy $id 1" ||
11093                            rc=4; }
11094         [ $rc -eq 0 -o $rc -gt 2 ] && { do_facet $node "$LCTL --device ec "    \
11095                                         "cleanup" || rc=5; }
11096         [ $rc -eq 0 -o $rc -gt 1 ] && { do_facet $node "$LCTL --device ec "    \
11097                                         "detach" || rc=6; }
11098         [ $rc -ne 0 ] && echo "obecho_create_test failed: $rc"
11099         return $rc
11100 }
11101
11102 test_180a() {
11103         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11104         remote_ost_nodsh && skip "remote OST with nodsh" && return
11105         local rc=0
11106         local rmmod_local=0
11107
11108         if ! module_loaded obdecho; then
11109             load_module obdecho/obdecho
11110             rmmod_local=1
11111         fi
11112
11113         local osc=$($LCTL dl | grep -v mdt | awk '$3 == "osc" {print $4; exit}')
11114         local host=$(lctl get_param -n osc.$osc.import |
11115                              awk '/current_connection:/ {print $2}' )
11116         local target=$(lctl get_param -n osc.$osc.import |
11117                              awk '/target:/ {print $2}' )
11118         target=${target%_UUID}
11119
11120         [[ -n $target ]]  && { setup_obdecho_osc $host $target || rc=1; } || rc=1
11121         [ $rc -eq 0 ] && { obdecho_test ${target}_osc client || rc=2; }
11122         [[ -n $target ]] && cleanup_obdecho_osc $target
11123         [ $rmmod_local -eq 1 ] && rmmod obdecho
11124         return $rc
11125 }
11126 run_test 180a "test obdecho on osc"
11127
11128 test_180b() {
11129         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11130         remote_ost_nodsh && skip "remote OST with nodsh" && return
11131         local rc=0
11132         local rmmod_remote=0
11133
11134         do_facet ost1 "lsmod | grep -q obdecho || "                      \
11135                       "{ insmod ${LUSTRE}/obdecho/obdecho.ko || "        \
11136                       "modprobe obdecho; }" && rmmod_remote=1
11137         target=$(do_facet ost1 $LCTL dl | awk '/obdfilter/ {print $4;exit}')
11138         [[ -n $target ]] && { obdecho_test $target ost1 || rc=1; }
11139         [ $rmmod_remote -eq 1 ] && do_facet ost1 "rmmod obdecho"
11140         return $rc
11141 }
11142 run_test 180b "test obdecho directly on obdfilter"
11143
11144 test_180c() { # LU-2598
11145         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11146         remote_ost_nodsh && skip "remote OST with nodsh" && return
11147         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.0) ]] &&
11148                 skip "Need MDS version at least 2.4.0" && return
11149
11150         local rc=0
11151         local rmmod_remote=false
11152         local pages=16384 # 64MB bulk I/O RPC size
11153         local target
11154
11155         do_rpc_nodes $(facet_active_host ost1) load_module obdecho/obdecho &&
11156                 rmmod_remote=true || error "failed to load module obdecho"
11157
11158         target=$(do_facet ost1 $LCTL dl | awk '/obdfilter/ { print $4 }' |
11159                 head -n1)
11160         if [ -n "$target" ]; then
11161                 obdecho_test "$target" ost1 "$pages" || rc=${PIPESTATUS[0]}
11162         else
11163                 echo "there is no obdfilter target on ost1"
11164                 rc=2
11165         fi
11166         $rmmod_remote && do_facet ost1 "rmmod obdecho" || true
11167         return $rc
11168 }
11169 run_test 180c "test huge bulk I/O size on obdfilter, don't LASSERT"
11170
11171 test_181() { # bug 22177
11172         test_mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
11173         # create enough files to index the directory
11174         createmany -o $DIR/$tdir/foobar 4000
11175         # print attributes for debug purpose
11176         lsattr -d .
11177         # open dir
11178         multiop_bg_pause $DIR/$tdir D_Sc || return 1
11179         MULTIPID=$!
11180         # remove the files & current working dir
11181         unlinkmany $DIR/$tdir/foobar 4000
11182         rmdir $DIR/$tdir
11183         kill -USR1 $MULTIPID
11184         wait $MULTIPID
11185         stat $DIR/$tdir && error "open-unlinked dir was not removed!"
11186         return 0
11187 }
11188 run_test 181 "Test open-unlinked dir ========================"
11189
11190 test_182() {
11191         local fcount=1000
11192         local tcount=10
11193
11194         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
11195
11196         $LCTL set_param mdc.*.rpc_stats=clear
11197
11198         for (( i = 0; i < $tcount; i++ )) ; do
11199                 mkdir $DIR/$tdir/$i
11200         done
11201
11202         for (( i = 0; i < $tcount; i++ )) ; do
11203                 createmany -o $DIR/$tdir/$i/f- $fcount &
11204         done
11205         wait
11206
11207         for (( i = 0; i < $tcount; i++ )) ; do
11208                 unlinkmany $DIR/$tdir/$i/f- $fcount &
11209         done
11210         wait
11211
11212         $LCTL get_param mdc.*.rpc_stats
11213
11214         rm -rf $DIR/$tdir
11215 }
11216 run_test 182 "Test parallel modify metadata operations ================"
11217
11218 test_183() { # LU-2275
11219         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11220         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.56) ]] &&
11221                 skip "Need MDS version at least 2.3.56" && return
11222
11223         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11224         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
11225         echo aaa > $DIR/$tdir/$tfile
11226
11227 #define OBD_FAIL_MDS_NEGATIVE_POSITIVE  0x148
11228         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x148
11229
11230         ls -l $DIR/$tdir && error "ls succeeded, should have failed"
11231         cat $DIR/$tdir/$tfile && error "cat succeeded, should have failed"
11232
11233         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
11234
11235         # Flush negative dentry cache
11236         touch $DIR/$tdir/$tfile
11237
11238         # We are not checking for any leaked references here, they'll
11239         # become evident next time we do cleanup with module unload.
11240         rm -rf $DIR/$tdir
11241 }
11242 run_test 183 "No crash or request leak in case of strange dispositions ========"
11243
11244 # test suite 184 is for LU-2016, LU-2017
11245 test_184a() {
11246         check_swap_layouts_support && return 0
11247
11248         dir0=$DIR/$tdir/$testnum
11249         test_mkdir -p -c1 $dir0 || error "creating dir $dir0"
11250         ref1=/etc/passwd
11251         ref2=/etc/group
11252         file1=$dir0/f1
11253         file2=$dir0/f2
11254         $SETSTRIPE -c1 $file1
11255         cp $ref1 $file1
11256         $SETSTRIPE -c2 $file2
11257         cp $ref2 $file2
11258         gen1=$($GETSTRIPE -g $file1)
11259         gen2=$($GETSTRIPE -g $file2)
11260
11261         $LFS swap_layouts $file1 $file2 || error "swap of file layout failed"
11262         gen=$($GETSTRIPE -g $file1)
11263         [[ $gen1 != $gen ]] ||
11264                 "Layout generation on $file1 does not change"
11265         gen=$($GETSTRIPE -g $file2)
11266         [[ $gen2 != $gen ]] ||
11267                 "Layout generation on $file2 does not change"
11268
11269         cmp $ref1 $file2 || error "content compare failed ($ref1 != $file2)"
11270         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
11271 }
11272 run_test 184a "Basic layout swap"
11273
11274 test_184b() {
11275         check_swap_layouts_support && return 0
11276
11277         dir0=$DIR/$tdir/$testnum
11278         mkdir -p $dir0 || error "creating dir $dir0"
11279         file1=$dir0/f1
11280         file2=$dir0/f2
11281         file3=$dir0/f3
11282         dir1=$dir0/d1
11283         dir2=$dir0/d2
11284         mkdir $dir1 $dir2
11285         $SETSTRIPE -c1 $file1
11286         $SETSTRIPE -c2 $file2
11287         $SETSTRIPE -c1 $file3
11288         chown $RUNAS_ID $file3
11289         gen1=$($GETSTRIPE -g $file1)
11290         gen2=$($GETSTRIPE -g $file2)
11291
11292         $LFS swap_layouts $dir1 $dir2 &&
11293                 error "swap of directories layouts should fail"
11294         $LFS swap_layouts $dir1 $file1 &&
11295                 error "swap of directory and file layouts should fail"
11296         $RUNAS $LFS swap_layouts $file1 $file2 &&
11297                 error "swap of file we cannot write should fail"
11298         $LFS swap_layouts $file1 $file3 &&
11299                 error "swap of file with different owner should fail"
11300         /bin/true # to clear error code
11301 }
11302 run_test 184b "Forbidden layout swap (will generate errors)"
11303
11304 test_184c() {
11305         check_swap_layouts_support && return 0
11306
11307         local dir0=$DIR/$tdir/$testnum
11308         mkdir -p $dir0 || error "creating dir $dir0"
11309
11310         local ref1=$dir0/ref1
11311         local ref2=$dir0/ref2
11312         local file1=$dir0/file1
11313         local file2=$dir0/file2
11314         # create a file large enough for the concurrent test
11315         dd if=/dev/urandom of=$ref1 bs=1M count=$((RANDOM % 50 + 20))
11316         dd if=/dev/urandom of=$ref2 bs=1M count=$((RANDOM % 50 + 20))
11317         echo "ref file size: ref1($(stat -c %s $ref1))," \
11318              "ref2($(stat -c %s $ref2))"
11319
11320         cp $ref2 $file2
11321         dd if=$ref1 of=$file1 bs=16k &
11322         local DD_PID=$!
11323
11324         # Make sure dd starts to copy file
11325         while [ ! -f $file1 ]; do sleep 0.1; done
11326
11327         $LFS swap_layouts $file1 $file2
11328         local rc=$?
11329         wait $DD_PID
11330         [[ $? == 0 ]] || error "concurrent write on $file1 failed"
11331         [[ $rc == 0 ]] || error "swap of $file1 and $file2 failed"
11332
11333         # how many bytes copied before swapping layout
11334         local copied=$(stat -c %s $file2)
11335         local remaining=$(stat -c %s $ref1)
11336         remaining=$((remaining - copied))
11337         echo "Copied $copied bytes before swapping layout..."
11338
11339         cmp -n $copied $file1 $ref2 | grep differ &&
11340                 error "Content mismatch [0, $copied) of ref2 and file1"
11341         cmp -n $copied $file2 $ref1 ||
11342                 error "Content mismatch [0, $copied) of ref1 and file2"
11343         cmp -i $copied:$copied -n $remaining $file1 $ref1 ||
11344                 error "Content mismatch [$copied, EOF) of ref1 and file1"
11345
11346         # clean up
11347         rm -f $ref1 $ref2 $file1 $file2
11348 }
11349 run_test 184c "Concurrent write and layout swap"
11350
11351 test_184d() {
11352         check_swap_layouts_support && return 0
11353         [ -z "$(which getfattr 2>/dev/null)" ] &&
11354                 skip "no getfattr command" && return 0
11355
11356         local file1=$DIR/$tdir/$tfile-1
11357         local file2=$DIR/$tdir/$tfile-2
11358         local file3=$DIR/$tdir/$tfile-3
11359         local lovea1
11360         local lovea2
11361
11362         mkdir -p $DIR/$tdir
11363         touch $file1 || error "create $file1 failed"
11364         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file2 ||
11365                 error "create $file2 failed"
11366         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file3 ||
11367                 error "create $file3 failed"
11368         lovea1=$($LFS getstripe $file1 | sed 1d)
11369
11370         $LFS swap_layouts $file2 $file3 ||
11371                 error "swap $file2 $file3 layouts failed"
11372         $LFS swap_layouts $file1 $file2 ||
11373                 error "swap $file1 $file2 layouts failed"
11374
11375         lovea2=$($LFS getstripe $file2 | sed 1d)
11376         [ "$lovea1" == "$lovea2" ] || error "lovea $lovea1 != $lovea2"
11377
11378         lovea1=$(getfattr -n trusted.lov $file1 | grep ^trusted)
11379         [[ -z "$lovea1" ]] || error "$file1 shouldn't have lovea"
11380 }
11381 run_test 184d "allow stripeless layouts swap"
11382
11383 test_184e() {
11384         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.94) ]] ||
11385                 { skip "Need MDS version at least 2.6.94"; return 0; }
11386         check_swap_layouts_support && return 0
11387         [ -z "$(which getfattr 2>/dev/null)" ] &&
11388                 skip "no getfattr command" && return 0
11389
11390         local file1=$DIR/$tdir/$tfile-1
11391         local file2=$DIR/$tdir/$tfile-2
11392         local file3=$DIR/$tdir/$tfile-3
11393         local lovea
11394
11395         mkdir -p $DIR/$tdir
11396         touch $file1 || error "create $file1 failed"
11397         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file2 ||
11398                 error "create $file2 failed"
11399         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file3 ||
11400                 error "create $file3 failed"
11401
11402         $LFS swap_layouts $file1 $file2 ||
11403                 error "swap $file1 $file2 layouts failed"
11404
11405         lovea=$(getfattr -n trusted.lov $file1 | grep ^trusted)
11406         [[ -z "$lovea" ]] || error "$file1 shouldn't have lovea"
11407
11408         echo 123 > $file1 || error "Should be able to write into $file1"
11409
11410         $LFS swap_layouts $file1 $file3 ||
11411                 error "swap $file1 $file3 layouts failed"
11412
11413         echo 123 > $file1 || error "Should be able to write into $file1"
11414
11415         rm -rf $file1 $file2 $file3
11416 }
11417 run_test 184e "Recreate layout after stripeless layout swaps"
11418
11419 test_185() { # LU-2441
11420         # LU-3553 - no volatile file support in old servers
11421         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.60) ]] ||
11422                 { skip "Need MDS version at least 2.3.60"; return 0; }
11423
11424         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
11425         touch $DIR/$tdir/spoo
11426         local mtime1=$(stat -c "%Y" $DIR/$tdir)
11427         local fid=$($MULTIOP $DIR/$tdir VFw4096c) ||
11428                 error "cannot create/write a volatile file"
11429         $CHECKSTAT -t file $MOUNT/.lustre/fid/$fid 2>/dev/null &&
11430                 error "FID is still valid after close"
11431
11432         multiop_bg_pause $DIR/$tdir vVw4096_c
11433         local multi_pid=$!
11434
11435         local OLD_IFS=$IFS
11436         IFS=":"
11437         local fidv=($fid)
11438         IFS=$OLD_IFS
11439         # assume that the next FID for this client is sequential, since stdout
11440         # is unfortunately eaten by multiop_bg_pause
11441         local n=$((${fidv[1]} + 1))
11442         local next_fid="${fidv[0]}:$(printf "0x%x" $n):${fidv[2]}"
11443         $CHECKSTAT -t file $MOUNT/.lustre/fid/$next_fid ||
11444                 error "FID is missing before close"
11445         kill -USR1 $multi_pid
11446         # 1 second delay, so if mtime change we will see it
11447         sleep 1
11448         local mtime2=$(stat -c "%Y" $DIR/$tdir)
11449         [[ $mtime1 == $mtime2 ]] || error "mtime has changed"
11450 }
11451 run_test 185 "Volatile file support"
11452
11453 test_187a() {
11454         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11455         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.0) ] &&
11456                 skip "Need MDS version at least 2.3.0" && return
11457
11458         local dir0=$DIR/$tdir/$testnum
11459         mkdir -p $dir0 || error "creating dir $dir0"
11460
11461         local file=$dir0/file1
11462         dd if=/dev/urandom of=$file count=10 bs=1M conv=fsync
11463         local dv1=$($LFS data_version $file)
11464         dd if=/dev/urandom of=$file seek=10 count=1 bs=1M conv=fsync
11465         local dv2=$($LFS data_version $file)
11466         [[ $dv1 != $dv2 ]] ||
11467                 error "data version did not change on write $dv1 == $dv2"
11468
11469         # clean up
11470         rm -f $file1
11471 }
11472 run_test 187a "Test data version change"
11473
11474 test_187b() {
11475         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11476         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.0) ] &&
11477                 skip "Need MDS version at least 2.3.0" && return
11478
11479         local dir0=$DIR/$tdir/$testnum
11480         mkdir -p $dir0 || error "creating dir $dir0"
11481
11482         declare -a DV=$($MULTIOP $dir0 Vw1000xYw1000xY | cut -f3 -d" ")
11483         [[ ${DV[0]} != ${DV[1]} ]] ||
11484                 error "data version did not change on write"\
11485                       " ${DV[0]} == ${DV[1]}"
11486
11487         # clean up
11488         rm -f $file1
11489 }
11490 run_test 187b "Test data version change on volatile file"
11491
11492 test_200() {
11493         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11494         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
11495
11496         local POOL=${POOL:-cea1}
11497         local POOL_ROOT=${POOL_ROOT:-$DIR/d200.pools}
11498         local POOL_DIR_NAME=${POOL_DIR_NAME:-dir_tst}
11499         # Pool OST targets
11500         local first_ost=0
11501         local last_ost=$(($OSTCOUNT - 1))
11502         local ost_step=2
11503         local ost_list=$(seq $first_ost $ost_step $last_ost)
11504         local ost_range="$first_ost $last_ost $ost_step"
11505         local test_path=$POOL_ROOT/$POOL_DIR_NAME
11506         local file_dir=$POOL_ROOT/file_tst
11507         local subdir=$test_path/subdir
11508
11509         local rc=0
11510         while : ; do
11511                 # former test_200a test_200b
11512                 pool_add $POOL                          || { rc=$? ; break; }
11513                 pool_add_targets  $POOL $ost_range      || { rc=$? ; break; }
11514                 # former test_200c test_200d
11515                 mkdir -p $test_path
11516                 pool_set_dir      $POOL $test_path      || { rc=$? ; break; }
11517                 pool_check_dir    $POOL $test_path      || { rc=$? ; break; }
11518                 mkdir -p $subdir
11519                 pool_check_dir    $POOL $subdir         || { rc=$? ; break; }
11520                 pool_dir_rel_path $POOL $POOL_DIR_NAME $POOL_ROOT \
11521                                                         || { rc=$? ; break; }
11522                 # former test_200e test_200f
11523                 local files=$((OSTCOUNT*3))
11524                 pool_alloc_files  $POOL $test_path $files "$ost_list" \
11525                                                         || { rc=$? ; break; }
11526                 pool_create_files $POOL $file_dir $files "$ost_list" \
11527                                                         || { rc=$? ; break; }
11528                 # former test_200g test_200h
11529                 pool_lfs_df $POOL                       || { rc=$? ; break; }
11530                 pool_file_rel_path $POOL $test_path     || { rc=$? ; break; }
11531
11532                 # former test_201a test_201b test_201c
11533                 pool_remove_first_target $POOL          || { rc=$? ; break; }
11534
11535                 local f=$test_path/$tfile
11536                 pool_remove_all_targets $POOL $f        || { rc=$? ; break; }
11537                 pool_remove $POOL $f                    || { rc=$? ; break; }
11538                 break
11539         done
11540
11541         cleanup_pools
11542         return $rc
11543 }
11544 run_test 200 "OST pools"
11545
11546 # usage: default_attr <count | size | offset>
11547 default_attr() {
11548         $LCTL get_param -n lov.$FSNAME-clilov-\*.stripe${1}
11549 }
11550
11551 # usage: check_default_stripe_attr
11552 check_default_stripe_attr() {
11553         ACTUAL=$($GETSTRIPE $* $DIR/$tdir)
11554         case $1 in
11555         --stripe-count|--count)
11556                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr count);;
11557         --stripe-size|--size)
11558                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr size);;
11559         --stripe-index|--index)
11560                 EXPECTED=-1;;
11561         *)
11562                 error "unknown getstripe attr '$1'"
11563         esac
11564
11565         [ $ACTUAL != $EXPECTED ] &&
11566                 error "$DIR/$tdir has $1 '$ACTUAL', not '$EXPECTED'"
11567 }
11568
11569 test_204a() {
11570         test_mkdir -p $DIR/$tdir
11571         $SETSTRIPE --stripe-count 0 --stripe-size 0 --stripe-index -1 $DIR/$tdir
11572
11573         check_default_stripe_attr --stripe-count
11574         check_default_stripe_attr --stripe-size
11575         check_default_stripe_attr --stripe-index
11576
11577         return 0
11578 }
11579 run_test 204a "Print default stripe attributes ================="
11580
11581 test_204b() {
11582         test_mkdir -p $DIR/$tdir
11583         $SETSTRIPE --stripe-count 1 $DIR/$tdir
11584
11585         check_default_stripe_attr --stripe-size
11586         check_default_stripe_attr --stripe-index
11587
11588         return 0
11589 }
11590 run_test 204b "Print default stripe size and offset  ==========="
11591
11592 test_204c() {
11593         test_mkdir -p $DIR/$tdir
11594         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
11595
11596         check_default_stripe_attr --stripe-count
11597         check_default_stripe_attr --stripe-index
11598
11599         return 0
11600 }
11601 run_test 204c "Print default stripe count and offset ==========="
11602
11603 test_204d() {
11604         test_mkdir -p $DIR/$tdir
11605         $SETSTRIPE --stripe-index 0 $DIR/$tdir
11606
11607         check_default_stripe_attr --stripe-count
11608         check_default_stripe_attr --stripe-size
11609
11610         return 0
11611 }
11612 run_test 204d "Print default stripe count and size ============="
11613
11614 test_204e() {
11615         test_mkdir -p $DIR/$tdir
11616         $SETSTRIPE -d $DIR/$tdir
11617
11618         check_default_stripe_attr --stripe-count --raw
11619         check_default_stripe_attr --stripe-size --raw
11620         check_default_stripe_attr --stripe-index --raw
11621
11622         return 0
11623 }
11624 run_test 204e "Print raw stripe attributes ================="
11625
11626 test_204f() {
11627         test_mkdir -p $DIR/$tdir
11628         $SETSTRIPE --stripe-count 1 $DIR/$tdir
11629
11630         check_default_stripe_attr --stripe-size --raw
11631         check_default_stripe_attr --stripe-index --raw
11632
11633         return 0
11634 }
11635 run_test 204f "Print raw stripe size and offset  ==========="
11636
11637 test_204g() {
11638         test_mkdir -p $DIR/$tdir
11639         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
11640
11641         check_default_stripe_attr --stripe-count --raw
11642         check_default_stripe_attr --stripe-index --raw
11643
11644         return 0
11645 }
11646 run_test 204g "Print raw stripe count and offset ==========="
11647
11648 test_204h() {
11649         test_mkdir -p $DIR/$tdir
11650         $SETSTRIPE --stripe-index 0 $DIR/$tdir
11651
11652         check_default_stripe_attr --stripe-count --raw
11653         check_default_stripe_attr --stripe-size --raw
11654
11655         return 0
11656 }
11657 run_test 204h "Print raw stripe count and size ============="
11658
11659 # Figure out which job scheduler is being used, if any,
11660 # or use a fake one
11661 if [ -n "$SLURM_JOB_ID" ]; then # SLURM
11662         JOBENV=SLURM_JOB_ID
11663 elif [ -n "$LSB_JOBID" ]; then # Load Sharing Facility
11664         JOBENV=LSB_JOBID
11665 elif [ -n "$PBS_JOBID" ]; then # PBS/Maui/Moab
11666         JOBENV=PBS_JOBID
11667 elif [ -n "$LOADL_STEPID" ]; then # LoadLeveller
11668         JOBENV=LOADL_STEP_ID
11669 elif [ -n "$JOB_ID" ]; then # Sun Grid Engine
11670         JOBENV=JOB_ID
11671 else
11672         $LCTL list_param jobid_name > /dev/null 2>&1
11673         if [ $? -eq 0 ]; then
11674                 JOBENV=nodelocal
11675         else
11676                 JOBENV=FAKE_JOBID
11677         fi
11678 fi
11679
11680 verify_jobstats() {
11681         local cmd=($1)
11682         shift
11683         local facets="$@"
11684
11685 # we don't really need to clear the stats for this test to work, since each
11686 # command has a unique jobid, but it makes debugging easier if needed.
11687 #       for facet in $facets; do
11688 #               local dev=$(convert_facet2label $facet)
11689 #               # clear old jobstats
11690 #               do_facet $facet lctl set_param *.$dev.job_stats="clear"
11691 #       done
11692
11693         # use a new JobID for each test, or we might see an old one
11694         [ "$JOBENV" = "FAKE_JOBID" ] &&
11695                 FAKE_JOBID=id.$testnum.$(basename ${cmd[0]}).$RANDOM
11696
11697         JOBVAL=${!JOBENV}
11698
11699         [ "$JOBENV" = "nodelocal" ] && {
11700                 FAKE_JOBID=id.$testnum.$(basename ${cmd[0]}).$RANDOM
11701                 $LCTL set_param jobid_name=$FAKE_JOBID
11702                 JOBVAL=$FAKE_JOBID
11703         }
11704
11705         log "Test: ${cmd[*]}"
11706         log "Using JobID environment variable $JOBENV=$JOBVAL"
11707
11708         if [ $JOBENV = "FAKE_JOBID" ]; then
11709                 FAKE_JOBID=$JOBVAL ${cmd[*]}
11710         else
11711                 ${cmd[*]}
11712         fi
11713
11714         # all files are created on OST0000
11715         for facet in $facets; do
11716                 local stats="*.$(convert_facet2label $facet).job_stats"
11717                 if [ $(do_facet $facet lctl get_param $stats |
11718                        grep -c $JOBVAL) -ne 1 ]; then
11719                         do_facet $facet lctl get_param $stats
11720                         error "No jobstats for $JOBVAL found on $facet::$stats"
11721                 fi
11722         done
11723 }
11724
11725 jobstats_set() {
11726         trap 0
11727         NEW_JOBENV=${1:-$OLD_JOBENV}
11728         do_facet mgs $LCTL conf_param $FSNAME.sys.jobid_var=$NEW_JOBENV
11729         wait_update $HOSTNAME "$LCTL get_param -n jobid_var" $NEW_JOBENV
11730 }
11731
11732 cleanup_205() {
11733         do_facet $SINGLEMDS \
11734                 $LCTL set_param mdt.*.job_cleanup_interval=$OLD_INTERVAL
11735         [ $OLD_JOBENV != $JOBENV ] && jobstats_set $OLD_JOBENV
11736         do_facet $SINGLEMDS lctl --device $MDT0 changelog_deregister $CL_USER
11737 }
11738
11739 test_205() { # Job stats
11740         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11741         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
11742         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11743         remote_ost_nodsh && skip "remote OST with nodsh" && return
11744
11745         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep jobstats)" ] &&
11746                 skip "Server doesn't support jobstats" && return 0
11747         [[ $JOBID_VAR = disable ]] && skip "jobstats is disabled" && return
11748
11749         OLD_JOBENV=$($LCTL get_param -n jobid_var)
11750         if [ $OLD_JOBENV != $JOBENV ]; then
11751                 jobstats_set $JOBENV
11752                 trap cleanup_205 EXIT
11753         fi
11754
11755         CL_USER=$(do_facet $SINGLEMDS lctl --device $MDT0 changelog_register -n)
11756         echo "Registered as changelog user $CL_USER"
11757
11758         OLD_INTERVAL=$(do_facet $SINGLEMDS \
11759                        lctl get_param -n mdt.*.job_cleanup_interval)
11760         local interval_new=5
11761         do_facet $SINGLEMDS \
11762                 $LCTL set_param mdt.*.job_cleanup_interval=$interval_new
11763         local start=$SECONDS
11764
11765         local cmd
11766         # mkdir
11767         cmd="mkdir $DIR/$tdir"
11768         verify_jobstats "$cmd" "$SINGLEMDS"
11769         # rmdir
11770         cmd="rmdir $DIR/$tdir"
11771         verify_jobstats "$cmd" "$SINGLEMDS"
11772         # mkdir on secondary MDT
11773         if [ $MDSCOUNT -gt 1 ]; then
11774                 cmd="lfs mkdir -i 1 $DIR/$tdir.remote"
11775                 verify_jobstats "$cmd" "mds2"
11776         fi
11777         # mknod
11778         cmd="mknod $DIR/$tfile c 1 3"
11779         verify_jobstats "$cmd" "$SINGLEMDS"
11780         # unlink
11781         cmd="rm -f $DIR/$tfile"
11782         verify_jobstats "$cmd" "$SINGLEMDS"
11783         # create all files on OST0000 so verify_jobstats can find OST stats
11784         # open & close
11785         cmd="$SETSTRIPE -i 0 -c 1 $DIR/$tfile"
11786         verify_jobstats "$cmd" "$SINGLEMDS"
11787         # setattr
11788         cmd="touch $DIR/$tfile"
11789         verify_jobstats "$cmd" "$SINGLEMDS ost1"
11790         # write
11791         cmd="dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 oflag=sync"
11792         verify_jobstats "$cmd" "ost1"
11793         # read
11794         cmd="dd if=$DIR/$tfile of=/dev/null bs=1M count=1 iflag=direct"
11795         verify_jobstats "$cmd" "ost1"
11796         # truncate
11797         cmd="$TRUNCATE $DIR/$tfile 0"
11798         verify_jobstats "$cmd" "$SINGLEMDS ost1"
11799         # rename
11800         cmd="mv -f $DIR/$tfile $DIR/$tdir.rename"
11801         verify_jobstats "$cmd" "$SINGLEMDS"
11802         # jobstats expiry - sleep until old stats should be expired
11803         local left=$((interval_new + 2 - (SECONDS - start)))
11804         [ $left -ge 0 ] && echo "sleep $left for expiry" && sleep $((left + 1))
11805         cmd="mkdir $DIR/$tdir.expire"
11806         verify_jobstats "$cmd" "$SINGLEMDS"
11807         [ $(do_facet $SINGLEMDS lctl get_param *.*.job_stats |
11808             grep -c "job_id.*mkdir") -gt 1 ] && error "old jobstats not expired"
11809
11810         # Ensure that jobid are present in changelog (if supported by MDS)
11811         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.52) ]
11812         then
11813                 $LFS changelog $MDT0 | tail -9
11814                 jobids=$($LFS changelog $MDT0 | tail -9 | grep -c "j=")
11815                 [ $jobids -eq 9 ] ||
11816                         error "Wrong changelog jobid count $jobids != 9"
11817
11818                 # LU-5862
11819                 JOBENV="disable"
11820                 jobstats_set $JOBENV
11821                 touch $DIR/$tfile
11822                 $LFS changelog $MDT0 | tail -1
11823                 jobids=$($LFS changelog $MDT0 | tail -1 | grep -c "j=")
11824                 [ $jobids -eq 0 ] ||
11825                         error "Unexpected jobids when jobid_var=$JOBENV"
11826         fi
11827
11828         cleanup_205
11829 }
11830 run_test 205 "Verify job stats"
11831
11832 # LU-1480, LU-1773 and LU-1657
11833 test_206() {
11834         mkdir -p $DIR/$tdir
11835         $SETSTRIPE -c -1 $DIR/$tdir
11836 #define OBD_FAIL_LOV_INIT 0x1403
11837         $LCTL set_param fail_loc=0xa0001403
11838         $LCTL set_param fail_val=1
11839         touch $DIR/$tdir/$tfile || true
11840 }
11841 run_test 206 "fail lov_init_raid0() doesn't lbug"
11842
11843 test_207a() {
11844         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
11845         local fsz=`stat -c %s $DIR/$tfile`
11846         cancel_lru_locks mdc
11847
11848         # do not return layout in getattr intent
11849 #define OBD_FAIL_MDS_NO_LL_GETATTR 0x170
11850         $LCTL set_param fail_loc=0x170
11851         local sz=`stat -c %s $DIR/$tfile`
11852
11853         [ $fsz -eq $sz ] || error "file size expected $fsz, actual $sz"
11854
11855         rm -rf $DIR/$tfile
11856 }
11857 run_test 207a "can refresh layout at glimpse"
11858
11859 test_207b() {
11860         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
11861         local cksum=`md5sum $DIR/$tfile`
11862         local fsz=`stat -c %s $DIR/$tfile`
11863         cancel_lru_locks mdc
11864         cancel_lru_locks osc
11865
11866         # do not return layout in getattr intent
11867 #define OBD_FAIL_MDS_NO_LL_OPEN 0x171
11868         $LCTL set_param fail_loc=0x171
11869
11870         # it will refresh layout after the file is opened but before read issues
11871         echo checksum is "$cksum"
11872         echo "$cksum" |md5sum -c --quiet || error "file differs"
11873
11874         rm -rf $DIR/$tfile
11875 }
11876 run_test 207b "can refresh layout at open"
11877
11878 test_208() {
11879         # FIXME: in this test suite, only RD lease is used. This is okay
11880         # for now as only exclusive open is supported. After generic lease
11881         # is done, this test suite should be revised. - Jinshan
11882
11883         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11884         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.4.52) ]] ||
11885                 { skip "Need MDS version at least 2.4.52"; return 0; }
11886
11887         echo "==== test 1: verify get lease work"
11888         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:eRE+eU || error "get lease error"
11889
11890         echo "==== test 2: verify lease can be broken by upcoming open"
11891         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
11892         local PID=$!
11893         sleep 1
11894
11895         $MULTIOP $DIR/$tfile oO_RDONLY:c
11896         kill -USR1 $PID && wait $PID || error "break lease error"
11897
11898         echo "==== test 3: verify lease can't be granted if an open already exists"
11899         $MULTIOP $DIR/$tfile oO_RDONLY:_c &
11900         local PID=$!
11901         sleep 1
11902
11903         $MULTIOP $DIR/$tfile oO_RDONLY:eReUc && error "apply lease should fail"
11904         kill -USR1 $PID && wait $PID || error "open file error"
11905
11906         echo "==== test 4: lease can sustain over recovery"
11907         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E+eUc &
11908         PID=$!
11909         sleep 1
11910
11911         fail mds1
11912
11913         kill -USR1 $PID && wait $PID || error "lease broken over recovery"
11914
11915         echo "==== test 5: lease broken can't be regained by replay"
11916         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
11917         PID=$!
11918         sleep 1
11919
11920         # open file to break lease and then recovery
11921         $MULTIOP $DIR/$tfile oO_RDWR:c || error "open file error"
11922         fail mds1
11923
11924         kill -USR1 $PID && wait $PID || error "lease not broken over recovery"
11925
11926         rm -f $DIR/$tfile
11927 }
11928 run_test 208 "Exclusive open"
11929
11930 test_209() {
11931         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep disp_stripe)" ] &&
11932                 skip_env "must have disp_stripe" && return
11933
11934         touch $DIR/$tfile
11935         sync; sleep 5; sync;
11936
11937         echo 3 > /proc/sys/vm/drop_caches
11938         req_before=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
11939
11940         # open/close 500 times
11941         for i in $(seq 500); do
11942                 cat $DIR/$tfile
11943         done
11944
11945         echo 3 > /proc/sys/vm/drop_caches
11946         req_after=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
11947
11948         echo "before: $req_before, after: $req_after"
11949         [ $((req_after - req_before)) -ge 300 ] &&
11950                 error "open/close requests are not freed"
11951         return 0
11952 }
11953 run_test 209 "read-only open/close requests should be freed promptly"
11954
11955 test_212() {
11956         size=`date +%s`
11957         size=$((size % 8192 + 1))
11958         dd if=/dev/urandom of=$DIR/f212 bs=1k count=$size
11959         sendfile $DIR/f212 $DIR/f212.xyz || error "sendfile wrong"
11960         rm -f $DIR/f212 $DIR/f212.xyz
11961 }
11962 run_test 212 "Sendfile test ============================================"
11963
11964 test_213() {
11965         dd if=/dev/zero of=$DIR/$tfile bs=4k count=4
11966         cancel_lru_locks osc
11967         lctl set_param fail_loc=0x8000040f
11968         # generate a read lock
11969         cat $DIR/$tfile > /dev/null
11970         # write to the file, it will try to cancel the above read lock.
11971         cat /etc/hosts >> $DIR/$tfile
11972 }
11973 run_test 213 "OSC lock completion and cancel race don't crash - bug 18829"
11974
11975 test_214() { # for bug 20133
11976         mkdir -p $DIR/$tdir/d214c || error "mkdir $DIR/$tdir/d214c failed"
11977         for (( i=0; i < 340; i++ )) ; do
11978                 touch $DIR/$tdir/d214c/a$i
11979         done
11980
11981         ls -l $DIR/$tdir || error "ls -l $DIR/d214p failed"
11982         mv $DIR/$tdir/d214c $DIR/ || error "mv $DIR/d214p/d214c $DIR/ failed"
11983         ls $DIR/d214c || error "ls $DIR/d214c failed"
11984         rm -rf $DIR/$tdir || error "rm -rf $DIR/d214* failed"
11985         rm -rf $DIR/d214* || error "rm -rf $DIR/d214* failed"
11986 }
11987 run_test 214 "hash-indexed directory test - bug 20133"
11988
11989 # having "abc" as 1st arg, creates $TMP/lnet_abc.out and $TMP/lnet_abc.sys
11990 create_lnet_proc_files() {
11991         lctl get_param -n $1 >$TMP/lnet_$1.out || error "cannot read lnet.$1"
11992         sysctl lnet.$1 >$TMP/lnet_$1.sys_tmp || error "cannot read lnet.$1"
11993
11994         sed "s/^lnet.$1\ =\ //g" "$TMP/lnet_$1.sys_tmp" >$TMP/lnet_$1.sys
11995         rm -f "$TMP/lnet_$1.sys_tmp"
11996 }
11997
11998 # counterpart of create_lnet_proc_files
11999 remove_lnet_proc_files() {
12000         rm -f $TMP/lnet_$1.out $TMP/lnet_$1.sys
12001 }
12002
12003 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
12004 # 3rd arg as regexp for body
12005 check_lnet_proc_stats() {
12006         local l=$(cat "$TMP/lnet_$1" |wc -l)
12007         [ $l = 1 ] || (cat "$TMP/lnet_$1" && error "$2 is not of 1 line: $l")
12008
12009         grep -E "$3" "$TMP/lnet_$1" || (cat "$TMP/lnet_$1" && error "$2 misformatted")
12010 }
12011
12012 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
12013 # 3rd arg as regexp for body, 4th arg as regexp for 1st line, 5th arg is
12014 # optional and can be regexp for 2nd line (lnet.routes case)
12015 check_lnet_proc_entry() {
12016         local blp=2          # blp stands for 'position of 1st line of body'
12017         [ -z "$5" ] || blp=3 # lnet.routes case
12018
12019         local l=$(cat "$TMP/lnet_$1" |wc -l)
12020         # subtracting one from $blp because the body can be empty
12021         [ "$l" -ge "$(($blp - 1))" ] || (cat "$TMP/lnet_$1" && error "$2 is too short: $l")
12022
12023         sed -n '1 p' "$TMP/lnet_$1" |grep -E "$4" >/dev/null ||
12024                 (cat "$TMP/lnet_$1" && error "1st line of $2 misformatted")
12025
12026         [ "$5" = "" ] || sed -n '2 p' "$TMP/lnet_$1" |grep -E "$5" >/dev/null ||
12027                 (cat "$TMP/lnet_$1" && error "2nd line of $2 misformatted")
12028
12029         # bail out if any unexpected line happened
12030         sed -n "$blp p" "$TMP/lnet_$1" | grep -Ev "$3"
12031         [ "$?" != 0 ] || error "$2 misformatted"
12032 }
12033
12034 test_215() { # for bugs 18102, 21079, 21517
12035         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12036         local N='(0|[1-9][0-9]*)'       # non-negative numeric
12037         local P='[1-9][0-9]*'           # positive numeric
12038         local I='(0|-?[1-9][0-9]*|NA)'  # any numeric (0 | >0 | <0) or NA if no value
12039         local NET='[a-z][a-z0-9]*'      # LNET net like o2ib2
12040         local ADDR='[0-9.]+'            # LNET addr like 10.0.0.1
12041         local NID="$ADDR@$NET"          # LNET nid like 10.0.0.1@o2ib2
12042
12043         local L1 # regexp for 1st line
12044         local L2 # regexp for 2nd line (optional)
12045         local BR # regexp for the rest (body)
12046
12047         # lnet.stats should look as 11 space-separated non-negative numerics
12048         BR="^$N $N $N $N $N $N $N $N $N $N $N$"
12049         create_lnet_proc_files "stats"
12050         check_lnet_proc_stats "stats.sys" "lnet.stats" "$BR"
12051         remove_lnet_proc_files "stats"
12052
12053         # lnet.routes should look like this:
12054         # Routing disabled/enabled
12055         # net hops priority state router
12056         # where net is a string like tcp0, hops > 0, priority >= 0,
12057         # state is up/down,
12058         # router is a string like 192.168.1.1@tcp2
12059         L1="^Routing (disabled|enabled)$"
12060         L2="^net +hops +priority +state +router$"
12061         BR="^$NET +$N +(0|1) +(up|down) +$NID$"
12062         create_lnet_proc_files "routes"
12063         check_lnet_proc_entry "routes.sys" "lnet.routes" "$BR" "$L1" "$L2"
12064         remove_lnet_proc_files "routes"
12065
12066         # lnet.routers should look like this:
12067         # ref rtr_ref alive_cnt state last_ping ping_sent deadline down_ni router
12068         # where ref > 0, rtr_ref > 0, alive_cnt >= 0, state is up/down,
12069         # last_ping >= 0, ping_sent is boolean (0/1), deadline and down_ni are
12070         # numeric (0 or >0 or <0), router is a string like 192.168.1.1@tcp2
12071         L1="^ref +rtr_ref +alive_cnt +state +last_ping +ping_sent +deadline +down_ni +router$"
12072         BR="^$P +$P +$N +(up|down) +$N +(0|1) +$I +$I +$NID$"
12073         create_lnet_proc_files "routers"
12074         check_lnet_proc_entry "routers.sys" "lnet.routers" "$BR" "$L1"
12075         remove_lnet_proc_files "routers"
12076
12077         # lnet.peers should look like this:
12078         # nid refs state last max rtr min tx min queue
12079         # where nid is a string like 192.168.1.1@tcp2, refs > 0,
12080         # state is up/down/NA, max >= 0. last, rtr, min, tx, min are
12081         # numeric (0 or >0 or <0), queue >= 0.
12082         L1="^nid +refs +state +last +max +rtr +min +tx +min +queue$"
12083         BR="^$NID +$P +(up|down|NA) +$I +$N +$I +$I +$I +$I +$N$"
12084         create_lnet_proc_files "peers"
12085         check_lnet_proc_entry "peers.sys" "lnet.peers" "$BR" "$L1"
12086         remove_lnet_proc_files "peers"
12087
12088         # lnet.buffers  should look like this:
12089         # pages count credits min
12090         # where pages >=0, count >=0, credits and min are numeric (0 or >0 or <0)
12091         L1="^pages +count +credits +min$"
12092         BR="^ +$N +$N +$I +$I$"
12093         create_lnet_proc_files "buffers"
12094         check_lnet_proc_entry "buffers.sys" "lnet.buffers" "$BR" "$L1"
12095         remove_lnet_proc_files "buffers"
12096
12097         # lnet.nis should look like this:
12098         # nid status alive refs peer rtr max tx min
12099         # where nid is a string like 192.168.1.1@tcp2, status is up/down,
12100         # alive is numeric (0 or >0 or <0), refs >= 0, peer >= 0,
12101         # rtr >= 0, max >=0, tx and min are numeric (0 or >0 or <0).
12102         L1="^nid +status +alive +refs +peer +rtr +max +tx +min$"
12103         BR="^$NID +(up|down) +$I +$N +$N +$N +$N +$I +$I$"
12104         create_lnet_proc_files "nis"
12105         check_lnet_proc_entry "nis.sys" "lnet.nis" "$BR" "$L1"
12106         remove_lnet_proc_files "nis"
12107
12108         # can we successfully write to lnet.stats?
12109         lctl set_param -n stats=0 || error "cannot write to lnet.stats"
12110         sysctl -w lnet.stats=0 || error "cannot write to lnet.stats"
12111 }
12112 run_test 215 "lnet exists and has proper content - bugs 18102, 21079, 21517"
12113
12114 test_216() { # bug 20317
12115         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12116         remote_ost_nodsh && skip "remote OST with nodsh" && return
12117
12118         local node
12119         local facets=$(get_facets OST)
12120         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
12121
12122         save_lustre_params client "osc.*.contention_seconds" > $p
12123         save_lustre_params $facets \
12124                 "ldlm.namespaces.filter-*.max_nolock_bytes" >> $p
12125         save_lustre_params $facets \
12126                 "ldlm.namespaces.filter-*.contended_locks" >> $p
12127         save_lustre_params $facets \
12128                 "ldlm.namespaces.filter-*.contention_seconds" >> $p
12129         clear_osc_stats
12130
12131         # agressive lockless i/o settings
12132         for node in $(osts_nodes); do
12133                 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'
12134         done
12135         lctl set_param -n osc.*.contention_seconds 60
12136
12137         $DIRECTIO write $DIR/$tfile 0 10 4096
12138         $CHECKSTAT -s 40960 $DIR/$tfile
12139
12140         # disable lockless i/o
12141         for node in $(osts_nodes); do
12142                 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'
12143         done
12144         lctl set_param -n osc.*.contention_seconds 0
12145         clear_osc_stats
12146
12147         dd if=/dev/zero of=$DIR/$tfile count=0
12148         $CHECKSTAT -s 0 $DIR/$tfile
12149
12150         restore_lustre_params <$p
12151         rm -f $p
12152         rm $DIR/$tfile
12153 }
12154 run_test 216 "check lockless direct write works and updates file size and kms correctly"
12155
12156 test_217() { # bug 22430
12157         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12158         local node
12159         local nid
12160
12161         for node in $(nodes_list); do
12162                 nid=$(host_nids_address $node $NETTYPE)
12163                 if [[ $nid = *-* ]] ; then
12164                         echo "lctl ping $nid@$NETTYPE"
12165                         lctl ping $nid@$NETTYPE
12166                 else
12167                         echo "skipping $node (no hyphen detected)"
12168                 fi
12169         done
12170 }
12171 run_test 217 "check lctl ping for hostnames with hiphen ('-')"
12172
12173 test_218() {
12174        # do directio so as not to populate the page cache
12175        log "creating a 10 Mb file"
12176        $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
12177        log "starting reads"
12178        dd if=$DIR/$tfile of=/dev/null bs=4096 &
12179        log "truncating the file"
12180        $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
12181        log "killing dd"
12182        kill %+ || true # reads might have finished
12183        echo "wait until dd is finished"
12184        wait
12185        log "removing the temporary file"
12186        rm -rf $DIR/$tfile || error "tmp file removal failed"
12187 }
12188 run_test 218 "parallel read and truncate should not deadlock ======================="
12189
12190 test_219() {
12191         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12192         # write one partial page
12193         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1
12194         # set no grant so vvp_io_commit_write will do sync write
12195         $LCTL set_param fail_loc=0x411
12196         # write a full page at the end of file
12197         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=1 conv=notrunc
12198
12199         $LCTL set_param fail_loc=0
12200         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=3
12201         $LCTL set_param fail_loc=0x411
12202         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1 seek=2 conv=notrunc
12203
12204         # LU-4201
12205         dd if=/dev/zero of=$DIR/$tfile-2 bs=1024 count=1
12206         $CHECKSTAT -s 1024 $DIR/$tfile-2 || error "checkstat wrong size"
12207 }
12208 run_test 219 "LU-394: Write partial won't cause uncontiguous pages vec at LND"
12209
12210 test_220() { #LU-325
12211         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12212         remote_ost_nodsh && skip "remote OST with nodsh" && return
12213         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12214         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
12215         local OSTIDX=0
12216
12217         # create on MDT0000 so the last_id and next_id are correct
12218         mkdir $DIR/$tdir
12219         local OST=$($LFS df $DIR | awk '/OST:'$OSTIDX'/ { print $1 }')
12220         OST=${OST%_UUID}
12221
12222         # on the mdt's osc
12223         local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $OST)
12224         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
12225                         osc.$mdtosc_proc1.prealloc_last_id)
12226         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
12227                         osc.$mdtosc_proc1.prealloc_next_id)
12228
12229         $LFS df -i
12230
12231         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=-1
12232         #define OBD_FAIL_OST_ENOINO              0x229
12233         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0x229
12234         do_facet mgs $LCTL pool_new $FSNAME.$TESTNAME || return 1
12235         do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $OST || return 2
12236
12237         $SETSTRIPE $DIR/$tdir -i $OSTIDX -c 1 -p $FSNAME.$TESTNAME
12238
12239         MDSOBJS=$((last_id - next_id))
12240         echo "preallocated objects on MDS is $MDSOBJS" "($last_id - $next_id)"
12241
12242         blocks=$($LFS df $MOUNT | awk '($1 == '$OSTIDX') { print $4 }')
12243         echo "OST still has $count kbytes free"
12244
12245         echo "create $MDSOBJS files @next_id..."
12246         createmany -o $DIR/$tdir/f $MDSOBJS || return 3
12247
12248         local last_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
12249                         osc.$mdtosc_proc1.prealloc_last_id)
12250         local next_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
12251                         osc.$mdtosc_proc1.prealloc_next_id)
12252
12253         echo "after creation, last_id=$last_id2, next_id=$next_id2"
12254         $LFS df -i
12255
12256         echo "cleanup..."
12257
12258         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=0
12259         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0
12260
12261         do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $OST || return 4
12262         do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME || return 5
12263         echo "unlink $MDSOBJS files @$next_id..."
12264         unlinkmany $DIR/$tdir/f $MDSOBJS || return 6
12265 }
12266 run_test 220 "preallocated MDS objects still used if ENOSPC from OST"
12267
12268 test_221() {
12269         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12270         dd if=`which date` of=$MOUNT/date oflag=sync
12271         chmod +x $MOUNT/date
12272
12273         #define OBD_FAIL_LLITE_FAULT_TRUNC_RACE  0x1401
12274         $LCTL set_param fail_loc=0x80001401
12275
12276         $MOUNT/date > /dev/null
12277         rm -f $MOUNT/date
12278 }
12279 run_test 221 "make sure fault and truncate race to not cause OOM"
12280
12281 test_222a () {
12282         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12283        rm -rf $DIR/$tdir
12284        test_mkdir -p $DIR/$tdir
12285        $SETSTRIPE -c 1 -i 0 $DIR/$tdir
12286        createmany -o $DIR/$tdir/$tfile 10
12287        cancel_lru_locks mdc
12288        cancel_lru_locks osc
12289        #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
12290        $LCTL set_param fail_loc=0x31a
12291        ls -l $DIR/$tdir > /dev/null || error "AGL for ls failed"
12292        $LCTL set_param fail_loc=0
12293        rm -r $DIR/$tdir
12294 }
12295 run_test 222a "AGL for ls should not trigger CLIO lock failure ================"
12296
12297 test_222b () {
12298         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12299        rm -rf $DIR/$tdir
12300        test_mkdir -p $DIR/$tdir
12301        $SETSTRIPE -c 1 -i 0 $DIR/$tdir
12302        createmany -o $DIR/$tdir/$tfile 10
12303        cancel_lru_locks mdc
12304        cancel_lru_locks osc
12305        #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
12306        $LCTL set_param fail_loc=0x31a
12307        rm -r $DIR/$tdir || "AGL for rmdir failed"
12308        $LCTL set_param fail_loc=0
12309 }
12310 run_test 222b "AGL for rmdir should not trigger CLIO lock failure ============="
12311
12312 test_223 () {
12313         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12314        rm -rf $DIR/$tdir
12315        test_mkdir -p $DIR/$tdir
12316        $SETSTRIPE -c 1 -i 0 $DIR/$tdir
12317        createmany -o $DIR/$tdir/$tfile 10
12318        cancel_lru_locks mdc
12319        cancel_lru_locks osc
12320        #define OBD_FAIL_LDLM_AGL_NOLOCK          0x31b
12321        $LCTL set_param fail_loc=0x31b
12322        ls -l $DIR/$tdir > /dev/null || error "reenqueue failed"
12323        $LCTL set_param fail_loc=0
12324        rm -r $DIR/$tdir
12325 }
12326 run_test 223 "osc reenqueue if without AGL lock granted ======================="
12327
12328 test_224a() { # LU-1039, MRP-303
12329         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12330         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB   0x508
12331         $LCTL set_param fail_loc=0x508
12332         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 conv=fsync
12333         $LCTL set_param fail_loc=0
12334         df $DIR
12335 }
12336 run_test 224a "Don't panic on bulk IO failure"
12337
12338 test_224b() { # LU-1039, MRP-303
12339         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12340         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
12341         cancel_lru_locks osc
12342         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB2   0x515
12343         $LCTL set_param fail_loc=0x515
12344         dd of=/dev/null if=$DIR/$tfile bs=4096 count=1
12345         $LCTL set_param fail_loc=0
12346         df $DIR
12347 }
12348 run_test 224b "Don't panic on bulk IO failure"
12349
12350 test_224c() { # LU-6441
12351         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12352         local pages_per_rpc=$($LCTL get_param \
12353                                 osc.*.max_pages_per_rpc)
12354         local at_max=$($LCTL get_param -n at_max)
12355         local timeout=$($LCTL get_param -n timeout)
12356         local test_at="$LCTL get_param -n at_max"
12357         local param_at="$FSNAME.sys.at_max"
12358         local test_timeout="$LCTL get_param -n timeout"
12359         local param_timeout="$FSNAME.sys.timeout"
12360
12361         $LCTL set_param -n osc.*.max_pages_per_rpc=1024
12362
12363         set_conf_param_and_check client "$test_at" "$param_at" 0 ||
12364                 error "conf_param at_max=0 failed"
12365         set_conf_param_and_check client "$test_timeout" "$param_timeout" 5 ||
12366                 error "conf_param timeout=5 failed"
12367
12368         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB3   0x520
12369         $LCTL set_param fail_loc=0x520
12370         dd if=/dev/zero of=$DIR/$tfile bs=8MB count=1
12371         sync
12372         $LCTL set_param fail_loc=0
12373
12374         set_conf_param_and_check client "$test_at" "$param_at" $at_max ||
12375                 error "conf_param at_max=$at_max failed"
12376         set_conf_param_and_check client "$test_timeout" "$param_timeout" \
12377                 $timeout || error "conf_param timeout=$timeout failed"
12378
12379         $LCTL set_param -n $pages_per_rpc
12380 }
12381 run_test 224c "Don't hang if one of md lost during large bulk RPC"
12382
12383 MDSSURVEY=${MDSSURVEY:-$(which mds-survey 2>/dev/null || true)}
12384 test_225a () {
12385         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12386         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12387         if [ -z ${MDSSURVEY} ]; then
12388               skip_env "mds-survey not found" && return
12389         fi
12390
12391         [ $MDSCOUNT -ge 2 ] &&
12392                 skip "skipping now for more than one MDT" && return
12393
12394        [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
12395             { skip "Need MDS version at least 2.2.51"; return; }
12396
12397        local mds=$(facet_host $SINGLEMDS)
12398        local target=$(do_nodes $mds 'lctl dl' | \
12399                       awk "{if (\$2 == \"UP\" && \$3 == \"mdt\") {print \$4}}")
12400
12401        local cmd1="file_count=1000 thrhi=4"
12402        local cmd2="dir_count=2 layer=mdd stripe_count=0"
12403        local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
12404        local cmd="$cmd1 $cmd2 $cmd3"
12405
12406        rm -f ${TMP}/mds_survey*
12407        echo + $cmd
12408        eval $cmd || error "mds-survey with zero-stripe failed"
12409        cat ${TMP}/mds_survey*
12410        rm -f ${TMP}/mds_survey*
12411 }
12412 run_test 225a "Metadata survey sanity with zero-stripe"
12413
12414 test_225b () {
12415         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12416         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12417         if [ -z ${MDSSURVEY} ]; then
12418               skip_env "mds-survey not found" && return
12419         fi
12420         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
12421             { skip "Need MDS version at least 2.2.51"; return; }
12422
12423         if [ $($LCTL dl | grep -c osc) -eq 0 ]; then
12424               skip_env "Need to mount OST to test" && return
12425         fi
12426
12427         [ $MDSCOUNT -ge 2 ] &&
12428                 skip "skipping now for more than one MDT" && return
12429        local mds=$(facet_host $SINGLEMDS)
12430        local target=$(do_nodes $mds 'lctl dl' | \
12431                       awk "{if (\$2 == \"UP\" && \$3 == \"mdt\") {print \$4}}")
12432
12433        local cmd1="file_count=1000 thrhi=4"
12434        local cmd2="dir_count=2 layer=mdd stripe_count=1"
12435        local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
12436        local cmd="$cmd1 $cmd2 $cmd3"
12437
12438        rm -f ${TMP}/mds_survey*
12439        echo + $cmd
12440        eval $cmd || error "mds-survey with stripe_count failed"
12441        cat ${TMP}/mds_survey*
12442        rm -f ${TMP}/mds_survey*
12443 }
12444 run_test 225b "Metadata survey sanity with stripe_count = 1"
12445
12446 mcreate_path2fid () {
12447         local mode=$1
12448         local major=$2
12449         local minor=$3
12450         local name=$4
12451         local desc=$5
12452         local path=$DIR/$tdir/$name
12453         local fid
12454         local rc
12455         local fid_path
12456
12457         $MCREATE --mode=$1 --major=$2 --minor=$3 $path ||
12458                 error "cannot create $desc"
12459
12460         fid=$($LFS path2fid $path | tr -d '[' | tr -d ']')
12461         rc=$?
12462         [ $rc -ne 0 ] && error "cannot get fid of a $desc"
12463
12464         fid_path=$($LFS fid2path $MOUNT $fid)
12465         rc=$?
12466         [ $rc -ne 0 ] && error "cannot get path of $desc by $DIR $path $fid"
12467
12468         [ "$path" == "$fid_path" ] ||
12469                 error "fid2path returned $fid_path, expected $path"
12470
12471         echo "pass with $path and $fid"
12472 }
12473
12474 test_226a () {
12475         rm -rf $DIR/$tdir
12476         mkdir -p $DIR/$tdir
12477
12478         mcreate_path2fid 0010666 0 0 fifo "FIFO"
12479         mcreate_path2fid 0020666 1 3 null "character special file (null)"
12480         mcreate_path2fid 0020666 1 255 none "character special file (no device)"
12481         mcreate_path2fid 0040666 0 0 dir "directory"
12482         mcreate_path2fid 0060666 7 0 loop0 "block special file (loop)"
12483         mcreate_path2fid 0100666 0 0 file "regular file"
12484         mcreate_path2fid 0120666 0 0 link "symbolic link"
12485         mcreate_path2fid 0140666 0 0 sock "socket"
12486 }
12487 run_test 226a "call path2fid and fid2path on files of all type"
12488
12489 test_226b () {
12490         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
12491         rm -rf $DIR/$tdir
12492         local MDTIDX=1
12493
12494         mkdir -p $DIR/$tdir
12495         $LFS setdirstripe -i $MDTIDX $DIR/$tdir/remote_dir ||
12496                 error "create remote directory failed"
12497         mcreate_path2fid 0010666 0 0 "remote_dir/fifo" "FIFO"
12498         mcreate_path2fid 0020666 1 3 "remote_dir/null" \
12499                                 "character special file (null)"
12500         mcreate_path2fid 0020666 1 255 "remote_dir/none" \
12501                                 "character special file (no device)"
12502         mcreate_path2fid 0040666 0 0 "remote_dir/dir" "directory"
12503         mcreate_path2fid 0060666 7 0 "remote_dir/loop0" \
12504                                 "block special file (loop)"
12505         mcreate_path2fid 0100666 0 0 "remote_dir/file" "regular file"
12506         mcreate_path2fid 0120666 0 0 "remote_dir/link" "symbolic link"
12507         mcreate_path2fid 0140666 0 0 "remote_dir/sock" "socket"
12508 }
12509 run_test 226b "call path2fid and fid2path on files of all type under remote dir"
12510
12511 # LU-1299 Executing or running ldd on a truncated executable does not
12512 # cause an out-of-memory condition.
12513 test_227() {
12514         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12515         [ -z "$(which ldd)" ] && skip "should have ldd tool" && return
12516         dd if=$(which date) of=$MOUNT/date bs=1k count=1
12517         chmod +x $MOUNT/date
12518
12519         $MOUNT/date > /dev/null
12520         ldd $MOUNT/date > /dev/null
12521         rm -f $MOUNT/date
12522 }
12523 run_test 227 "running truncated executable does not cause OOM"
12524
12525 # LU-1512 try to reuse idle OI blocks
12526 test_228a() {
12527         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12528         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12529         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
12530                 skip "non-ldiskfs backend" && return
12531
12532         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
12533         local myDIR=$DIR/$tdir
12534
12535         mkdir -p $myDIR
12536         #define OBD_FAIL_SEQ_EXHAUST             0x1002
12537         $LCTL set_param fail_loc=0x80001002
12538         createmany -o $myDIR/t- 10000
12539         $LCTL set_param fail_loc=0
12540         # The guard is current the largest FID holder
12541         touch $myDIR/guard
12542         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
12543                     tr -d '[')
12544         local IDX=$(($SEQ % 64))
12545
12546         do_facet $SINGLEMDS sync
12547         # Make sure journal flushed.
12548         sleep 6
12549         local blk1=$(do_facet $SINGLEMDS \
12550                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
12551                      grep Blockcount | awk '{print $4}')
12552
12553         # Remove old files, some OI blocks will become idle.
12554         unlinkmany $myDIR/t- 10000
12555         # Create new files, idle OI blocks should be reused.
12556         createmany -o $myDIR/t- 2000
12557         do_facet $SINGLEMDS sync
12558         # Make sure journal flushed.
12559         sleep 6
12560         local blk2=$(do_facet $SINGLEMDS \
12561                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
12562                      grep Blockcount | awk '{print $4}')
12563
12564         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
12565 }
12566 run_test 228a "try to reuse idle OI blocks"
12567
12568 test_228b() {
12569         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12570         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12571         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
12572                 skip "non-ldiskfs backend" && return
12573
12574         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
12575         local myDIR=$DIR/$tdir
12576
12577         mkdir -p $myDIR
12578         #define OBD_FAIL_SEQ_EXHAUST             0x1002
12579         $LCTL set_param fail_loc=0x80001002
12580         createmany -o $myDIR/t- 10000
12581         $LCTL set_param fail_loc=0
12582         # The guard is current the largest FID holder
12583         touch $myDIR/guard
12584         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
12585                     tr -d '[')
12586         local IDX=$(($SEQ % 64))
12587
12588         do_facet $SINGLEMDS sync
12589         # Make sure journal flushed.
12590         sleep 6
12591         local blk1=$(do_facet $SINGLEMDS \
12592                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
12593                      grep Blockcount | awk '{print $4}')
12594
12595         # Remove old files, some OI blocks will become idle.
12596         unlinkmany $myDIR/t- 10000
12597
12598         # stop the MDT
12599         stop $SINGLEMDS || error "Fail to stop MDT."
12600         # remount the MDT
12601         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
12602
12603         df $MOUNT || error "Fail to df."
12604         # Create new files, idle OI blocks should be reused.
12605         createmany -o $myDIR/t- 2000
12606         do_facet $SINGLEMDS sync
12607         # Make sure journal flushed.
12608         sleep 6
12609         local blk2=$(do_facet $SINGLEMDS \
12610                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
12611                      grep Blockcount | awk '{print $4}')
12612
12613         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
12614 }
12615 run_test 228b "idle OI blocks can be reused after MDT restart"
12616
12617 #LU-1881
12618 test_228c() {
12619         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12620         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12621         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
12622                 skip "non-ldiskfs backend" && return
12623
12624         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
12625         local myDIR=$DIR/$tdir
12626
12627         mkdir -p $myDIR
12628         #define OBD_FAIL_SEQ_EXHAUST             0x1002
12629         $LCTL set_param fail_loc=0x80001002
12630         # 20000 files can guarantee there are index nodes in the OI file
12631         createmany -o $myDIR/t- 20000
12632         $LCTL set_param fail_loc=0
12633         # The guard is current the largest FID holder
12634         touch $myDIR/guard
12635         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
12636                     tr -d '[')
12637         local IDX=$(($SEQ % 64))
12638
12639         do_facet $SINGLEMDS sync
12640         # Make sure journal flushed.
12641         sleep 6
12642         local blk1=$(do_facet $SINGLEMDS \
12643                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
12644                      grep Blockcount | awk '{print $4}')
12645
12646         # Remove old files, some OI blocks will become idle.
12647         unlinkmany $myDIR/t- 20000
12648         rm -f $myDIR/guard
12649         # The OI file should become empty now
12650
12651         # Create new files, idle OI blocks should be reused.
12652         createmany -o $myDIR/t- 2000
12653         do_facet $SINGLEMDS sync
12654         # Make sure journal flushed.
12655         sleep 6
12656         local blk2=$(do_facet $SINGLEMDS \
12657                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
12658                      grep Blockcount | awk '{print $4}')
12659
12660         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
12661 }
12662 run_test 228c "NOT shrink the last entry in OI index node to recycle idle leaf"
12663
12664 test_229() { # LU-2482, LU-3448
12665         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.53) ] &&
12666                 skip "No HSM $(lustre_build_version $SINGLEMDS) MDS < 2.4.53" &&
12667                 return
12668         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12669         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
12670
12671         rm -f $DIR/$tfile
12672
12673         # Create a file with a released layout and stripe count 2.
12674         $MULTIOP $DIR/$tfile H2c ||
12675                 error "failed to create file with released layout"
12676
12677         $GETSTRIPE -v $DIR/$tfile
12678
12679         local pattern=$($GETSTRIPE -L $DIR/$tfile)
12680         [ X"$pattern" = X"80000001" ] || error "pattern error ($pattern)"
12681
12682         local stripe_count=$($GETSTRIPE -c $DIR/$tfile) || error "getstripe"
12683         [ $stripe_count -eq 2 ] || error "stripe count not 2 ($stripe_count)"
12684         stat $DIR/$tfile || error "failed to stat released file"
12685
12686         chown $RUNAS_ID $DIR/$tfile ||
12687                 error "chown $RUNAS_ID $DIR/$tfile failed"
12688
12689         chgrp $RUNAS_ID $DIR/$tfile ||
12690                 error "chgrp $RUNAS_ID $DIR/$tfile failed"
12691
12692         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
12693         rm $DIR/$tfile || error "failed to remove released file"
12694 }
12695 run_test 229 "getstripe/stat/rm/attr changes work on released files"
12696
12697 test_230a() {
12698         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12699         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
12700         local MDTIDX=1
12701
12702         test_mkdir $DIR/$tdir
12703         test_mkdir -i0 -c1 $DIR/$tdir/test_230_local
12704         local mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230_local)
12705         [ $mdt_idx -ne 0 ] &&
12706                 error "create local directory on wrong MDT $mdt_idx"
12707
12708         $LFS mkdir -i $MDTIDX $DIR/$tdir/test_230 ||
12709                         error "create remote directory failed"
12710         local mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230)
12711         [ $mdt_idx -ne $MDTIDX ] &&
12712                 error "create remote directory on wrong MDT $mdt_idx"
12713
12714         createmany -o $DIR/$tdir/test_230/t- 10 ||
12715                 error "create files on remote directory failed"
12716         mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230/t-0)
12717         [ $mdt_idx -ne $MDTIDX ] && error "create files on wrong MDT $mdt_idx"
12718         rm -r $DIR/$tdir || error "unlink remote directory failed"
12719 }
12720 run_test 230a "Create remote directory and files under the remote directory"
12721
12722 test_230b() {
12723         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12724         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
12725         local MDTIDX=1
12726         local mdt_index
12727         local i
12728         local file
12729         local pid
12730         local stripe_count
12731         local migrate_dir=$DIR/$tdir/migrate_dir
12732         local other_dir=$DIR/$tdir/other_dir
12733
12734         test_mkdir $DIR/$tdir
12735         test_mkdir -i0 -c1 $migrate_dir
12736         test_mkdir -i0 -c1 $other_dir
12737         for ((i=0; i<10; i++)); do
12738                 mkdir -p $migrate_dir/dir_${i}
12739                 createmany -o $migrate_dir/dir_${i}/f 10 ||
12740                         error "create files under remote dir failed $i"
12741         done
12742
12743         cp /etc/passwd $migrate_dir/$tfile
12744         cp /etc/passwd $other_dir/$tfile
12745         chattr +SAD $migrate_dir
12746         chattr +SAD $migrate_dir/$tfile
12747
12748         local old_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
12749         local old_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
12750         local old_dir_mode=$(stat -c%f $migrate_dir)
12751         local old_file_mode=$(stat -c%f $migrate_dir/$tfile)
12752
12753         mkdir -p $migrate_dir/dir_default_stripe2
12754         $SETSTRIPE -c 2 $migrate_dir/dir_default_stripe2
12755         $SETSTRIPE -c 2 $migrate_dir/${tfile}_stripe2
12756
12757         mkdir -p $other_dir
12758         ln $migrate_dir/$tfile $other_dir/luna
12759         ln $migrate_dir/$tfile $migrate_dir/sofia
12760         ln $other_dir/$tfile $migrate_dir/david
12761         ln -s $migrate_dir/$tfile $other_dir/zachary
12762         ln -s $migrate_dir/$tfile $migrate_dir/${tfile}_ln
12763         ln -s $other_dir/$tfile $migrate_dir/${tfile}_ln_other
12764
12765         $LFS migrate -m $MDTIDX $migrate_dir ||
12766                 error "fails on migrating remote dir to MDT1"
12767
12768         echo "migratate to MDT1, then checking.."
12769         for ((i = 0; i < 10; i++)); do
12770                 for file in $(find $migrate_dir/dir_${i}); do
12771                         mdt_index=$($LFS getstripe -M $file)
12772                         [ $mdt_index == $MDTIDX ] ||
12773                                 error "$file is not on MDT${MDTIDX}"
12774                 done
12775         done
12776
12777         # the multiple link file should still in MDT0
12778         mdt_index=$($LFS getstripe -M $migrate_dir/$tfile)
12779         [ $mdt_index == 0 ] ||
12780                 error "$file is not on MDT${MDTIDX}"
12781
12782         local new_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
12783         [ "$old_dir_flag" = "$new_dir_flag" ] ||
12784                 error " expect $old_dir_flag get $new_dir_flag"
12785
12786         local new_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
12787         [ "$old_file_flag" = "$new_file_flag" ] ||
12788                 error " expect $old_file_flag get $new_file_flag"
12789
12790         local new_dir_mode=$(stat -c%f $migrate_dir)
12791         [ "$old_dir_mode" = "$new_dir_mode" ] ||
12792                 error "expect mode $old_dir_mode get $new_dir_mode"
12793
12794         local new_file_mode=$(stat -c%f $migrate_dir/$tfile)
12795         [ "$old_file_mode" = "$new_file_mode" ] ||
12796                 error "expect mode $old_file_mode get $new_file_mode"
12797
12798         diff /etc/passwd $migrate_dir/$tfile ||
12799                 error "$tfile different after migration"
12800
12801         diff /etc/passwd $other_dir/luna ||
12802                 error "luna different after migration"
12803
12804         diff /etc/passwd $migrate_dir/sofia ||
12805                 error "sofia different after migration"
12806
12807         diff /etc/passwd $migrate_dir/david ||
12808                 error "david different after migration"
12809
12810         diff /etc/passwd $other_dir/zachary ||
12811                 error "zachary different after migration"
12812
12813         diff /etc/passwd $migrate_dir/${tfile}_ln ||
12814                 error "${tfile}_ln different after migration"
12815
12816         diff /etc/passwd $migrate_dir/${tfile}_ln_other ||
12817                 error "${tfile}_ln_other different after migration"
12818
12819         stripe_count=$($LFS getstripe -c $migrate_dir/dir_default_stripe2)
12820         [ $stripe_count = 2 ] ||
12821                 error "dir strpe_count $d != 2 after migration."
12822
12823         stripe_count=$($LFS getstripe -c $migrate_dir/${tfile}_stripe2)
12824         [ $stripe_count = 2 ] ||
12825                 error "file strpe_count $d != 2 after migration."
12826
12827         #migrate back to MDT0
12828         MDTIDX=0
12829
12830         $LFS migrate -m $MDTIDX $migrate_dir ||
12831                 error "fails on migrating remote dir to MDT0"
12832
12833         echo "migrate back to MDT0, checking.."
12834         for file in $(find $migrate_dir); do
12835                 mdt_index=$($LFS getstripe -M $file)
12836                 [ $mdt_index == $MDTIDX ] ||
12837                         error "$file is not on MDT${MDTIDX}"
12838         done
12839
12840         local new_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
12841         [ "$old_dir_flag" = "$new_dir_flag" ] ||
12842                 error " expect $old_dir_flag get $new_dir_flag"
12843
12844         local new_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
12845         [ "$old_file_flag" = "$new_file_flag" ] ||
12846                 error " expect $old_file_flag get $new_file_flag"
12847
12848         local new_dir_mode=$(stat -c%f $migrate_dir)
12849         [ "$old_dir_mode" = "$new_dir_mode" ] ||
12850                 error "expect mode $old_dir_mode get $new_dir_mode"
12851
12852         local new_file_mode=$(stat -c%f $migrate_dir/$tfile)
12853         [ "$old_file_mode" = "$new_file_mode" ] ||
12854                 error "expect mode $old_file_mode get $new_file_mode"
12855
12856         diff /etc/passwd ${migrate_dir}/$tfile ||
12857                 error "$tfile different after migration"
12858
12859         diff /etc/passwd ${other_dir}/luna ||
12860                 error "luna different after migration"
12861
12862         diff /etc/passwd ${migrate_dir}/sofia ||
12863                 error "sofia different after migration"
12864
12865         diff /etc/passwd ${other_dir}/zachary ||
12866                 error "zachary different after migration"
12867
12868         diff /etc/passwd $migrate_dir/${tfile}_ln ||
12869                 error "${tfile}_ln different after migration"
12870
12871         diff /etc/passwd $migrate_dir/${tfile}_ln_other ||
12872                 error "${tfile}_ln_other different after migration"
12873
12874         stripe_count=$($LFS getstripe -c ${migrate_dir}/dir_default_stripe2)
12875         [ $stripe_count = 2 ] ||
12876                 error "dir strpe_count $d != 2 after migration."
12877
12878         stripe_count=$($LFS getstripe -c ${migrate_dir}/${tfile}_stripe2)
12879         [ $stripe_count = 2 ] ||
12880                 error "file strpe_count $d != 2 after migration."
12881
12882         rm -rf $DIR/$tdir || error "rm dir failed after migration"
12883 }
12884 run_test 230b "migrate directory"
12885
12886 test_230c() {
12887         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12888         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12889         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
12890         local MDTIDX=1
12891         local mdt_index
12892         local file
12893         local migrate_dir=$DIR/$tdir/migrate_dir
12894
12895         #If migrating directory fails in the middle, all entries of
12896         #the directory is still accessiable.
12897         test_mkdir $DIR/$tdir
12898         test_mkdir -i0 -c1 $migrate_dir
12899         stat $migrate_dir
12900         createmany -o $migrate_dir/f 10 ||
12901                 error "create files under ${migrate_dir} failed"
12902
12903         #failed after migrating 5 entries
12904         #OBD_FAIL_MIGRATE_ENTRIES       0x1801
12905         do_facet mds1 lctl set_param fail_loc=0x20001801
12906         do_facet mds1 lctl  set_param fail_val=5
12907         local t=$(ls $migrate_dir | wc -l)
12908         $LFS migrate --mdt-index $MDTIDX $migrate_dir &&
12909                 error "migrate should fail after 5 entries"
12910
12911         mkdir $migrate_dir/dir &&
12912                 error "mkdir succeeds under migrating directory"
12913         touch $migrate_dir/file &&
12914                 error "touch file succeeds under migrating directory"
12915
12916         local u=$(ls $migrate_dir | wc -l)
12917         [ "$u" == "$t" ] || error "$u != $t during migration"
12918
12919         for file in $(find $migrate_dir); do
12920                 stat $file || error "stat $file failed"
12921         done
12922
12923         do_facet mds1 lctl set_param fail_loc=0
12924         do_facet mds1 lctl set_param fail_val=0
12925
12926         $LFS migrate -m $MDTIDX $migrate_dir ||
12927                 error "migrate open files should failed with open files"
12928
12929         echo "Finish migration, then checking.."
12930         for file in $(find $migrate_dir); do
12931                 mdt_index=$($LFS getstripe -M $file)
12932                 [ $mdt_index == $MDTIDX ] ||
12933                         error "$file is not on MDT${MDTIDX}"
12934         done
12935
12936         rm -rf $DIR/$tdir || error "rm dir failed after migration"
12937 }
12938 run_test 230c "check directory accessiblity if migration is failed"
12939
12940 test_230d() {
12941         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12942         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
12943         local MDTIDX=1
12944         local mdt_index
12945         local migrate_dir=$DIR/$tdir/migrate_dir
12946         local i
12947         local j
12948
12949         test_mkdir $DIR/$tdir
12950         test_mkdir -i0 -c1 $migrate_dir
12951
12952         for ((i=0; i<100; i++)); do
12953                 test_mkdir -i0 -c1 $migrate_dir/dir_${i}
12954                 createmany -o $migrate_dir/dir_${i}/f 100 ||
12955                         error "create files under remote dir failed $i"
12956         done
12957
12958         $LFS migrate -m $MDTIDX $migrate_dir ||
12959                 error "migrate remote dir error"
12960
12961         echo "Finish migration, then checking.."
12962         for file in $(find $migrate_dir); do
12963                 mdt_index=$($LFS getstripe -M $file)
12964                 [ $mdt_index == $MDTIDX ] ||
12965                         error "$file is not on MDT${MDTIDX}"
12966         done
12967
12968         rm -rf $DIR/$tdir || error "rm dir failed after migration"
12969 }
12970 run_test 230d "check migrate big directory"
12971
12972 test_230e() {
12973         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12974         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
12975         local i
12976         local j
12977         local a_fid
12978         local b_fid
12979
12980         mkdir -p $DIR/$tdir
12981         mkdir $DIR/$tdir/migrate_dir
12982         mkdir $DIR/$tdir/other_dir
12983         touch $DIR/$tdir/migrate_dir/a
12984         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/b
12985         ls $DIR/$tdir/other_dir
12986
12987         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
12988                 error "migrate dir fails"
12989
12990         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir)
12991         [ $mdt_index == 1 ] || error "migrate_dir is not on MDT1"
12992
12993         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
12994         [ $mdt_index == 0 ] || error "a is not on MDT0"
12995
12996         $LFS migrate -m 1 $DIR/$tdir/other_dir ||
12997                 error "migrate dir fails"
12998
12999         mdt_index=$($LFS getstripe -M $DIR/$tdir/other_dir)
13000         [ $mdt_index == 1 ] || error "other_dir is not on MDT1"
13001
13002         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
13003         [ $mdt_index == 1 ] || error "a is not on MDT1"
13004
13005         mdt_index=$($LFS getstripe -M $DIR/$tdir/other_dir/b)
13006         [ $mdt_index == 1 ] || error "b is not on MDT1"
13007
13008         a_fid=$($LFS path2fid $DIR/$tdir/migrate_dir/a)
13009         b_fid=$($LFS path2fid $DIR/$tdir/other_dir/b)
13010
13011         [ "$a_fid" = "$b_fid" ] || error "different fid after migration"
13012
13013         rm -rf $DIR/$tdir || error "rm dir failed after migration"
13014 }
13015 run_test 230e "migrate mulitple local link files"
13016
13017 test_230f() {
13018         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13019         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13020         local a_fid
13021         local ln_fid
13022
13023         mkdir -p $DIR/$tdir
13024         mkdir $DIR/$tdir/migrate_dir
13025         $LFS mkdir -i1 $DIR/$tdir/other_dir
13026         touch $DIR/$tdir/migrate_dir/a
13027         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/ln1
13028         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/ln2
13029         ls $DIR/$tdir/other_dir
13030
13031         # a should be migrated to MDT1, since no other links on MDT0
13032         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
13033                 error "migrate dir fails"
13034         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir)
13035         [ $mdt_index == 1 ] || error "migrate_dir is not on MDT1"
13036         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
13037         [ $mdt_index == 1 ] || error "a is not on MDT1"
13038
13039         # a should stay on MDT1, because it is a mulitple link file
13040         $LFS migrate -m 0 $DIR/$tdir/migrate_dir ||
13041                 error "migrate dir fails"
13042         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
13043         [ $mdt_index == 1 ] || error "a is not on MDT1"
13044
13045         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
13046                 error "migrate dir fails"
13047
13048         a_fid=$($LFS path2fid $DIR/$tdir/migrate_dir/a)
13049         ln_fid=$($LFS path2fid $DIR/$tdir/other_dir/ln1)
13050         [ "$a_fid" = "$ln_fid" ] || error "different fid after migrate to MDT1"
13051
13052         rm -rf $DIR/$tdir/other_dir/ln1 || error "unlink ln1 fails"
13053         rm -rf $DIR/$tdir/other_dir/ln2 || error "unlink ln2 fails"
13054
13055         # a should be migrated to MDT0, since no other links on MDT1
13056         $LFS migrate -m 0 $DIR/$tdir/migrate_dir ||
13057                 error "migrate dir fails"
13058         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
13059         [ $mdt_index == 0 ] || error "a is not on MDT0"
13060
13061         rm -rf $DIR/$tdir || error "rm dir failed after migration"
13062 }
13063 run_test 230f "migrate mulitple remote link files"
13064
13065 test_230g() {
13066         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13067         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13068
13069         mkdir -p $DIR/$tdir/migrate_dir
13070
13071         $LFS migrate -m 1000 $DIR/$tdir/migrate_dir &&
13072                 error "migrating dir to non-exist MDT succeeds"
13073         true
13074 }
13075 run_test 230g "migrate dir to non-exist MDT"
13076
13077 test_230h() {
13078         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13079         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13080         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.64) ] &&
13081                 skip "Need MDS version at least 2.7.64" && return
13082         local mdt_index
13083
13084         mkdir -p $DIR/$tdir/migrate_dir
13085
13086         $LFS migrate -m1 $DIR &&
13087                 error "migrating mountpoint1 should fail"
13088
13089         $LFS migrate -m1 $DIR/$tdir/.. &&
13090                 error "migrating mountpoint2 should fail"
13091
13092         $LFS migrate -m1 $DIR/$tdir/migrate_dir/.. ||
13093                 error "migrating $tdir fail"
13094
13095         mdt_index=$($LFS getstripe -M $DIR/$tdir)
13096         [ $mdt_index == 1 ] || error "$mdt_index != 1 after migration"
13097
13098         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir)
13099         [ $mdt_index == 1 ] || error "$mdt_index != 1 after migration"
13100
13101 }
13102 run_test 230h "migrate .. and root"
13103
13104 test_230i() {
13105         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13106         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13107
13108         mkdir -p $DIR/$tdir/migrate_dir
13109
13110         $LFS migrate -m 1 $DIR/$tdir/migrate_dir/ ||
13111                 error "migration fails with a tailing slash"
13112
13113         $LFS migrate -m 0 $DIR/$tdir/migrate_dir// ||
13114                 error "migration fails with two tailing slashes"
13115 }
13116 run_test 230i "lfs migrate -m tolerates trailing slashes"
13117
13118 test_231a()
13119 {
13120         # For simplicity this test assumes that max_pages_per_rpc
13121         # is the same across all OSCs
13122         local max_pages=$($LCTL get_param -n osc.*.max_pages_per_rpc | head -n1)
13123         local bulk_size=$((max_pages * 4096))
13124
13125         mkdir -p $DIR/$tdir
13126
13127         # clear the OSC stats
13128         $LCTL set_param osc.*.stats=0 &>/dev/null
13129         stop_writeback
13130
13131         # Client writes $bulk_size - there must be 1 rpc for $max_pages.
13132         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=$bulk_size count=1 \
13133                 oflag=direct &>/dev/null || error "dd failed"
13134
13135         sync; sleep 1; sync # just to be safe
13136         local nrpcs=$($LCTL get_param osc.*.stats |awk '/ost_write/ {print $2}')
13137         if [ x$nrpcs != "x1" ]; then
13138                 $LCTL get_param osc.*.stats
13139                 error "found $nrpcs ost_write RPCs, not 1 as expected"
13140         fi
13141
13142         start_writeback
13143         # Drop the OSC cache, otherwise we will read from it
13144         cancel_lru_locks osc
13145
13146         # clear the OSC stats
13147         $LCTL set_param osc.*.stats=0 &>/dev/null
13148
13149         # Client reads $bulk_size.
13150         dd if=$DIR/$tdir/$tfile of=/dev/null bs=$bulk_size count=1 \
13151                 iflag=direct &>/dev/null || error "dd failed"
13152
13153         nrpcs=$($LCTL get_param osc.*.stats | awk '/ost_read/ { print $2 }')
13154         if [ x$nrpcs != "x1" ]; then
13155                 $LCTL get_param osc.*.stats
13156                 error "found $nrpcs ost_read RPCs, not 1 as expected"
13157         fi
13158 }
13159 run_test 231a "checking that reading/writing of BRW RPC size results in one RPC"
13160
13161 test_231b() {
13162         mkdir -p $DIR/$tdir
13163         local i
13164         for i in {0..1023}; do
13165                 dd if=/dev/zero of=$DIR/$tdir/$tfile conv=notrunc \
13166                         seek=$((2 * i)) bs=4096 count=1 &>/dev/null ||
13167                         error "dd of=$DIR/$tdir/$tfile seek=$((2 * i)) failed"
13168         done
13169         sync
13170 }
13171 run_test 231b "must not assert on fully utilized OST request buffer"
13172
13173 test_232() {
13174         mkdir -p $DIR/$tdir
13175         #define OBD_FAIL_LDLM_OST_LVB            0x31c
13176         $LCTL set_param fail_loc=0x31c
13177
13178         # ignore dd failure
13179         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=1 || true
13180
13181         $LCTL set_param fail_loc=0
13182         umount_client $MOUNT || error "umount failed"
13183         mount_client $MOUNT || error "mount failed"
13184 }
13185 run_test 232 "failed lock should not block umount"
13186
13187 test_233a() {
13188         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.64) ] ||
13189         { skip "Need MDS version at least 2.3.64"; return; }
13190
13191         local fid=$($LFS path2fid $MOUNT)
13192         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
13193                 error "cannot access $MOUNT using its FID '$fid'"
13194 }
13195 run_test 233a "checking that OBF of the FS root succeeds"
13196
13197 test_233b() {
13198         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.5.90) ] ||
13199         { skip "Need MDS version at least 2.5.90"; return; }
13200
13201         local fid=$($LFS path2fid $MOUNT/.lustre)
13202         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
13203                 error "cannot access $MOUNT/.lustre using its FID '$fid'"
13204
13205         fid=$($LFS path2fid $MOUNT/.lustre/fid)
13206         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
13207                 error "cannot access $MOUNT/.lustre/fid using its FID '$fid'"
13208 }
13209 run_test 233b "checking that OBF of the FS .lustre succeeds"
13210
13211 test_234() {
13212         local p="$TMP/sanityN-$TESTNAME.parameters"
13213         save_lustre_params client "llite.*.xattr_cache" > $p
13214         lctl set_param llite.*.xattr_cache 1 ||
13215                 { skip "xattr cache is not supported"; return 0; }
13216
13217         mkdir -p $DIR/$tdir || error "mkdir failed"
13218         touch $DIR/$tdir/$tfile || error "touch failed"
13219         # OBD_FAIL_LLITE_XATTR_ENOMEM
13220         $LCTL set_param fail_loc=0x1405
13221         # output of the form: attr 2 4 44 3 fc13 x86_64
13222         V=($(IFS=".-" rpm -q attr))
13223         if [[ ${V[1]} > 2 || ${V[2]} > 4 || ${V[3]} > 44 ||
13224               ${V[1]} = 2 && ${V[2]} = 4 && ${V[3]} = 44 && ${V[4]} > 6 ]]; then
13225                 # attr pre-2.4.44-7 had a bug with rc
13226                 # LU-3703 - SLES 11 and FC13 clients have older attr
13227                 getfattr -n user.attr $DIR/$tdir/$tfile &&
13228                         error "getfattr should have failed with ENOMEM"
13229         else
13230                 skip "LU-3703: attr version $(getfattr --version) too old"
13231         fi
13232         $LCTL set_param fail_loc=0x0
13233         rm -rf $DIR/$tdir
13234
13235         restore_lustre_params < $p
13236         rm -f $p
13237 }
13238 run_test 234 "xattr cache should not crash on ENOMEM"
13239
13240 test_235() {
13241         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.52) ] &&
13242                 skip "Need MDS version at least 2.4.52" && return
13243         flock_deadlock $DIR/$tfile
13244         local RC=$?
13245         case $RC in
13246                 0)
13247                 ;;
13248                 124) error "process hangs on a deadlock"
13249                 ;;
13250                 *) error "error executing flock_deadlock $DIR/$tfile"
13251                 ;;
13252         esac
13253 }
13254 run_test 235 "LU-1715: flock deadlock detection does not work properly"
13255
13256 #LU-2935
13257 test_236() {
13258         check_swap_layouts_support && return 0
13259         test_mkdir -p -c1 $DIR/$tdir || error "mkdir $tdir failed"
13260
13261         local ref1=/etc/passwd
13262         local ref2=/etc/group
13263         local file1=$DIR/$tdir/f1
13264         local file2=$DIR/$tdir/f2
13265
13266         $SETSTRIPE -c 1 $file1 || error "cannot setstripe on '$file1': rc = $?"
13267         cp $ref1 $file1 || error "cp $ref1 $file1 failed: rc = $?"
13268         $SETSTRIPE -c 2 $file2 || error "cannot setstripe on '$file2': rc = $?"
13269         cp $ref2 $file2 || error "cp $ref2 $file2 failed: rc = $?"
13270         local fd=$(free_fd)
13271         local cmd="exec $fd<>$file2"
13272         eval $cmd
13273         rm $file2
13274         $LFS swap_layouts $file1 /proc/self/fd/${fd} ||
13275                 error "cannot swap layouts of '$file1' and /proc/self/fd/${fd}"
13276         cmd="exec $fd>&-"
13277         eval $cmd
13278         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
13279
13280         #cleanup
13281         rm -rf $DIR/$tdir
13282 }
13283 run_test 236 "Layout swap on open unlinked file"
13284
13285 # test to verify file handle related system calls
13286 # (name_to_handle_at/open_by_handle_at)
13287 # The new system calls are supported in glibc >= 2.14.
13288
13289 test_237() {
13290         echo "Test file_handle syscalls" > $DIR/$tfile ||
13291                 error "write failed"
13292         check_fhandle_syscalls $DIR/$tfile ||
13293                 error "check_fhandle_syscalls failed"
13294 }
13295 run_test 237 "Verify name_to_handle_at/open_by_handle_at syscalls"
13296
13297 # LU-4659 linkea consistency
13298 test_238() {
13299         local server_version=$(lustre_version_code $SINGLEMDS)
13300
13301         [[ $server_version -gt $(version_code 2.5.57) ]] ||
13302                 [[ $server_version -gt $(version_code 2.5.1) &&
13303                    $server_version -lt $(version_code 2.5.50) ]] ||
13304                 { skip "Need MDS version at least 2.5.58 or 2.5.2+"; return; }
13305
13306         touch $DIR/$tfile
13307         ln $DIR/$tfile $DIR/$tfile.lnk
13308         touch $DIR/$tfile.new
13309         mv $DIR/$tfile.new $DIR/$tfile
13310         local fid1=$($LFS path2fid $DIR/$tfile)
13311         local fid2=$($LFS path2fid $DIR/$tfile.lnk)
13312         local path1=$($LFS fid2path $FSNAME "$fid1")
13313         [ $tfile == $path1 ] || error "linkea inconsistent: $tfile $fid1 $path1"
13314         local path2=$($LFS fid2path $FSNAME "$fid2")
13315         [ $tfile.lnk == $path2 ] ||
13316                 error "linkea inconsistent: $tfile.lnk $fid2 $path2!"
13317         rm -f $DIR/$tfile*
13318 }
13319 run_test 238 "Verify linkea consistency"
13320
13321 test_239() {
13322         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.60) ] &&
13323                 skip "Need MDS version at least 2.5.60" && return
13324         local list=$(comma_list $(mdts_nodes))
13325
13326         mkdir -p $DIR/$tdir
13327         createmany -o $DIR/$tdir/f- 5000
13328         unlinkmany $DIR/$tdir/f- 5000
13329         do_nodes $list "lctl set_param -n osp*.*.sync_changes 1"
13330         changes=$(do_nodes $list "lctl get_param -n osc.*MDT*.sync_changes \
13331                         osc.*MDT*.sync_in_flight" | calc_sum)
13332         [ "$changes" -eq 0 ] || error "$changes not synced"
13333 }
13334 run_test 239 "osp_sync test"
13335
13336 test_239a() { #LU-5297
13337         touch $DIR/$tfile
13338         #define OBD_FAIL_OSP_CHECK_INVALID_REC     0x2100
13339         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2100
13340         chgrp $RUNAS_GID $DIR/$tfile
13341         wait_delete_completed
13342 }
13343 run_test 239a "process invalid osp sync record correctly"
13344
13345 test_239b() { #LU-5297
13346         touch $DIR/$tfile1
13347         #define OBD_FAIL_OSP_CHECK_ENOMEM     0x2101
13348         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2101
13349         chgrp $RUNAS_GID $DIR/$tfile1
13350         wait_delete_completed
13351         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
13352         touch $DIR/$tfile2
13353         chgrp $RUNAS_GID $DIR/$tfile2
13354         wait_delete_completed
13355 }
13356 run_test 239b "process osp sync record with ENOMEM error correctly"
13357
13358 test_240() {
13359         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13360
13361         mkdir -p $DIR/$tdir
13362
13363         $LFS mkdir -i 0 $DIR/$tdir/d0 ||
13364                 error "failed to mkdir $DIR/$tdir/d0 on MDT0"
13365         $LFS mkdir -i 1 $DIR/$tdir/d0/d1 ||
13366                 error "failed to mkdir $DIR/$tdir/d0/d1 on MDT1"
13367
13368         umount_client $MOUNT || error "umount failed"
13369         #define OBD_FAIL_TGT_DELAY_CONDITIONAL   0x713
13370         do_facet mds2 lctl set_param fail_loc=0x713 fail_val=1
13371         mount_client $MOUNT || error "failed to mount client"
13372
13373         echo "stat $DIR/$tdir/d0/d1, should not fail/ASSERT"
13374         stat $DIR/$tdir/d0/d1 || error "fail to stat $DIR/$tdir/d0/d1"
13375 }
13376 run_test 240 "race between ldlm enqueue and the connection RPC (no ASSERT)"
13377
13378 test_241_bio() {
13379         for LOOP in $(seq $1); do
13380                 dd if=$DIR/$tfile of=/dev/null bs=40960 count=1 2>/dev/null
13381                 cancel_lru_locks osc || true
13382         done
13383 }
13384
13385 test_241_dio() {
13386         for LOOP in $(seq $1); do
13387                 dd if=$DIR/$tfile of=/dev/null bs=40960 count=1 \
13388                                                 iflag=direct 2>/dev/null
13389         done
13390 }
13391
13392 test_241() {
13393         dd if=/dev/zero of=$DIR/$tfile count=1 bs=40960
13394         ls -la $DIR/$tfile
13395         cancel_lru_locks osc
13396         test_241_bio 1000 &
13397         PID=$!
13398         test_241_dio 1000
13399         wait $PID
13400 }
13401 run_test 241 "bio vs dio"
13402
13403 test_241b() {
13404         dd if=/dev/zero of=$DIR/$tfile count=1 bs=40960
13405         ls -la $DIR/$tfile
13406         test_241_dio 1000 &
13407         PID=$!
13408         test_241_dio 1000
13409         wait $PID
13410 }
13411 run_test 241b "dio vs dio"
13412
13413 test_242() {
13414         mkdir -p $DIR/$tdir
13415         touch $DIR/$tdir/$tfile
13416
13417         #define OBD_FAIL_MDS_READPAGE_PACK      0x105
13418         do_facet mds1 lctl set_param fail_loc=0x105
13419         /bin/ls $DIR/$tdir && error "ls $DIR/$tdir should fail"
13420
13421         do_facet mds1 lctl set_param fail_loc=0
13422         /bin/ls $DIR/$tdir || error "ls $DIR/$tdir failed"
13423 }
13424 run_test 242 "mdt_readpage failure should not cause directory unreadable"
13425
13426 test_243()
13427 {
13428         test_mkdir -p $DIR/$tdir
13429         group_lock_test -d $DIR/$tdir || error "A group lock test failed"
13430 }
13431 run_test 243 "various group lock tests"
13432
13433 test_244()
13434 {
13435         test_mkdir -p $DIR/$tdir
13436         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=35
13437         sendfile_grouplock $DIR/$tdir/$tfile || \
13438                 error "sendfile+grouplock failed"
13439         rm -rf $DIR/$tdir
13440 }
13441 run_test 244 "sendfile with group lock tests"
13442
13443 test_245() {
13444         local flagname="multi_mod_rpcs"
13445         local connect_data_name="max_mod_rpcs"
13446         local out
13447
13448         # check if multiple modify RPCs flag is set
13449         out=$($LCTL get_param mdc.$FSNAME-MDT0000-*.import |
13450                 grep "connect_flags:")
13451         echo "$out"
13452
13453         echo "$out" | grep -qw $flagname
13454         if [ $? -ne 0 ]; then
13455                 echo "connect flag $flagname is not set"
13456                 return
13457         fi
13458
13459         # check if multiple modify RPCs data is set
13460         out=$($LCTL get_param mdc.$FSNAME-MDT0000-*.import)
13461         echo "$out"
13462
13463         echo "$out" | grep -qw $connect_data_name ||
13464                 error "import should have connect data $connect_data_name"
13465 }
13466 run_test 245 "check mdc connection flag/data: multiple modify RPCs"
13467
13468 test_246() { # LU-7371
13469         [ $(lustre_version_code ost1) -lt $(version_code 2.7.62) ] &&
13470                 skip "Need OST version >= 2.7.62" && return 0
13471         do_facet ost1 $LCTL set_param fail_val=4095
13472 #define OBD_FAIL_OST_READ_SIZE          0x234
13473         do_facet ost1 $LCTL set_param fail_loc=0x234
13474         $LFS setstripe $DIR/$tfile -i 0 -c 1
13475         dd if=/dev/zero of=$DIR/$tfile bs=4095 count=1 > /dev/null 2>&1
13476         cancel_lru_locks $FSNAME-OST0000
13477         dd if=$DIR/$tfile of=/dev/null bs=1048576 || error "Read failed"
13478 }
13479 run_test 246 "Read file of size 4095 should return right length"
13480
13481 test_250() {
13482         [ "$(facet_fstype ost$(($($GETSTRIPE -i $DIR/$tfile) + 1)))" = "zfs" ] \
13483          && skip "no 16TB file size limit on ZFS" && return
13484
13485         $SETSTRIPE -c 1 $DIR/$tfile
13486         # ldiskfs extent file size limit is (16TB - 4KB - 1) bytes
13487         local size=$((16 * 1024 * 1024 * 1024 * 1024 - 4096 - 1))
13488         $TRUNCATE $DIR/$tfile $size || error "truncate $tfile to $size failed"
13489         dd if=/dev/zero of=$DIR/$tfile bs=10 count=1 oflag=append \
13490                 conv=notrunc,fsync && error "append succeeded"
13491         return 0
13492 }
13493 run_test 250 "Write above 16T limit"
13494
13495 test_251() {
13496         $SETSTRIPE -c -1 -S 1048576 $DIR/$tfile
13497
13498         #define OBD_FAIL_LLITE_LOST_LAYOUT 0x1407
13499         #Skip once - writing the first stripe will succeed
13500         $LCTL set_param fail_loc=0xa0001407 fail_val=1
13501         $MULTIOP $DIR/$tfile o:O_RDWR:w2097152c 2>&1 | grep -q "short write" &&
13502                 error "short write happened"
13503
13504         $LCTL set_param fail_loc=0xa0001407 fail_val=1
13505         $MULTIOP $DIR/$tfile or2097152c 2>&1 | grep -q "short read" &&
13506                 error "short read happened"
13507
13508         rm -f $DIR/$tfile
13509 }
13510 run_test 251 "Handling short read and write correctly"
13511
13512 test_252() {
13513         local tgt
13514         local dev
13515         local out
13516         local uuid
13517         local num
13518         local gen
13519
13520         if [ "$(facet_fstype ost1)" != "ldiskfs" -o \
13521              "$(facet_fstype mds1)" != "ldiskfs" ]; then
13522                 skip "can only run lr_reader on ldiskfs target"
13523                 return
13524         fi
13525
13526         # check lr_reader on OST0000
13527         tgt=ost1
13528         dev=$(facet_device $tgt)
13529         out=$(do_facet $tgt $LR_READER $dev)
13530         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
13531         echo "$out"
13532         uuid=$(echo "$out" | grep -i uuid | awk '{ print $2 }')
13533         [ "$uuid" == "$(ostuuid_from_index 0)" ] ||
13534                 error "Invalid uuid returned by $LR_READER on target $tgt"
13535         echo -e "uuid returned by $LR_READER is '$uuid'\n"
13536
13537         # check lr_reader -c on MDT0000
13538         tgt=mds1
13539         dev=$(facet_device $tgt)
13540         if ! do_facet $tgt $LR_READER -h | grep -q OPTIONS; then
13541                 echo "$LR_READER does not support additional options"
13542                 return 0
13543         fi
13544         out=$(do_facet $tgt $LR_READER -c $dev)
13545         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
13546         echo "$out"
13547         num=$(echo "$out" | grep -c "mdtlov")
13548         [ "$num" -eq $((MDSCOUNT - 1)) ] ||
13549                 error "Invalid number of mdtlov clients returned by $LR_READER"
13550         echo -e "Number of mdtlov clients returned by $LR_READER is '$num'\n"
13551
13552         # check lr_reader -cr on MDT0000
13553         out=$(do_facet $tgt $LR_READER -cr $dev)
13554         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
13555         echo "$out"
13556         echo "$out" | grep -q "^reply_data:$" ||
13557                 error "$LR_READER should have returned 'reply_data' section"
13558         num=$(echo "$out" | grep -c "client_generation")
13559         echo -e "Number of reply data returned by $LR_READER is '$num'\n"
13560 }
13561 run_test 252 "check lr_reader tool"
13562
13563 test_256() {
13564         local cl_user
13565         local cat_sl
13566         local mdt_dev
13567
13568         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13569         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13570         [ "$(facet_fstype mds1)" != "ldiskfs" ] &&
13571                 skip "non-ldiskfs backend" && return
13572
13573         mdt_dev=$(mdsdevname 1)
13574         echo $mdt_dev
13575         cl_user=$(do_facet mds1 \
13576         "$LCTL get_param -n mdd.$MDT0.changelog_users | grep cl")
13577         if [[ -n $cl_user ]]; then
13578                 skip "active changelog user"
13579                 return
13580         fi
13581
13582         cl_user=$(do_facet mds1 $LCTL --device $MDT0 changelog_register -n)
13583         echo "Registered as changelog user $cl_user"
13584
13585         rm -rf $DIR/$tdir
13586         mkdir -p $DIR/$tdir
13587
13588         $LFS changelog_clear $MDT0 $cl_user 0
13589
13590         # change something
13591         touch $DIR/$tdir/{1..10}
13592
13593         # stop the MDT
13594         stop mds1 || error "Fail to stop MDT."
13595
13596         # remount the MDT
13597         start mds1 $mdt_dev $MDS_MOUNT_OPTS || error "Fail to start MDT."
13598
13599         #after mount new plainllog is used
13600         touch $DIR/$tdir/{11..19}
13601         cat_sl=$(do_facet mds1 \
13602         "$DEBUGFS -R \\\"dump changelog_catalog cat.dmp\\\" $mdt_dev; \
13603          llog_reader cat.dmp | grep \\\"type=1064553b\\\" | wc -l")
13604
13605         if (( cat_sl != 2 )); then
13606                 do_facet mds1 $LCTL --device $MDT0 changelog_deregister $cl_user
13607                 error "Changelog catalog has wrong number of slots $cat_sl"
13608         fi
13609
13610         $LFS changelog_clear $MDT0 $cl_user 0
13611
13612         cat_sl=$(do_facet mds1 \
13613         "$DEBUGFS -R \\\"dump changelog_catalog cat.dmp\\\" $mdt_dev; \
13614          llog_reader cat.dmp | grep \\\"type=1064553b\\\" | wc -l")
13615
13616         do_facet mds1 $LCTL --device $MDT0 changelog_deregister $cl_user
13617
13618         if (( cat_sl == 2 )); then
13619                 error "Empty plain llog was not deleted from changelog catalog"
13620         fi
13621         if (( cat_sl != 1 )); then
13622                 error "Active plain llog shouldn\`t be deleted from catalog"
13623         fi
13624 }
13625 run_test 256 "Check llog delete for empty and not full state"
13626
13627 cleanup_test_300() {
13628         trap 0
13629         umask $SAVE_UMASK
13630 }
13631 test_striped_dir() {
13632         local mdt_index=$1
13633         local stripe_count
13634         local stripe_index
13635
13636         mkdir -p $DIR/$tdir
13637
13638         SAVE_UMASK=$(umask)
13639         trap cleanup_test_300 RETURN EXIT
13640
13641         $LFS setdirstripe -i $mdt_index -c 2 -t all_char -m 755 \
13642                                                 $DIR/$tdir/striped_dir ||
13643                 error "set striped dir error"
13644
13645         local mode=$(stat -c%a $DIR/$tdir/striped_dir)
13646         [ "$mode" = "755" ] || error "expect 755 got $mode"
13647
13648         $LFS getdirstripe $DIR/$tdir/striped_dir > /dev/null 2>&1 ||
13649                 error "getdirstripe failed"
13650         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir)
13651         if [ "$stripe_count" != "2" ]; then
13652                 error "stripe_count is $stripe_count, expect 2"
13653         fi
13654
13655         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir)
13656         if [ "$stripe_index" != "$mdt_index" ]; then
13657                 error "stripe_index is $stripe_index, expect $mdt_index"
13658         fi
13659
13660         [ $(stat -c%h $DIR/$tdir/striped_dir) == '2' ] ||
13661                 error "nlink error after create striped dir"
13662
13663         mkdir $DIR/$tdir/striped_dir/a
13664         mkdir $DIR/$tdir/striped_dir/b
13665
13666         stat $DIR/$tdir/striped_dir/a ||
13667                 error "create dir under striped dir failed"
13668         stat $DIR/$tdir/striped_dir/b ||
13669                 error "create dir under striped dir failed"
13670
13671         [ $(stat -c%h $DIR/$tdir/striped_dir) == '4' ] ||
13672                 error "nlink error after mkdir"
13673
13674         rmdir $DIR/$tdir/striped_dir/a
13675         [ $(stat -c%h $DIR/$tdir/striped_dir) == '3' ] ||
13676                 error "nlink error after rmdir"
13677
13678         rmdir $DIR/$tdir/striped_dir/b
13679         [ $(stat -c%h $DIR/$tdir/striped_dir) == '2' ] ||
13680                 error "nlink error after rmdir"
13681
13682         chattr +i $DIR/$tdir/striped_dir
13683         createmany -o $DIR/$tdir/striped_dir/f 10 &&
13684                 error "immutable flags not working under striped dir!"
13685         chattr -i $DIR/$tdir/striped_dir
13686
13687         rmdir $DIR/$tdir/striped_dir ||
13688                 error "rmdir striped dir error"
13689
13690         cleanup_test_300
13691
13692         true
13693 }
13694
13695 test_300a() {
13696         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13697         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13698
13699         test_striped_dir 0 || error "failed on striped dir on MDT0"
13700         test_striped_dir 1 || error "failed on striped dir on MDT0"
13701 }
13702 run_test 300a "basic striped dir sanity test"
13703
13704 test_300b() {
13705         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13706         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13707         local i
13708         local mtime1
13709         local mtime2
13710         local mtime3
13711
13712         test_mkdir $DIR/$tdir || error "mkdir fail"
13713         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir ||
13714                 error "set striped dir error"
13715         for ((i=0; i<10; i++)); do
13716                 mtime1=$(stat -c %Y $DIR/$tdir/striped_dir)
13717                 sleep 1
13718                 touch $DIR/$tdir/striped_dir/file_$i ||
13719                                         error "touch error $i"
13720                 mtime2=$(stat -c %Y $DIR/$tdir/striped_dir)
13721                 [ $mtime1 -eq $mtime2 ] &&
13722                         error "mtime not change after create"
13723                 sleep 1
13724                 rm -f $DIR/$tdir/striped_dir/file_$i ||
13725                                         error "unlink error $i"
13726                 mtime3=$(stat -c %Y $DIR/$tdir/striped_dir)
13727                 [ $mtime2 -eq $mtime3 ] &&
13728                         error "mtime did not change after unlink"
13729         done
13730         true
13731 }
13732 run_test 300b "check ctime/mtime for striped dir"
13733
13734 test_300c() {
13735         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13736         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13737         local file_count
13738
13739         mkdir -p $DIR/$tdir
13740         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir ||
13741                 error "set striped dir error"
13742
13743         chown $RUNAS_ID:$RUNAS_GID $DIR/$tdir/striped_dir ||
13744                 error "chown striped dir failed"
13745
13746         $RUNAS createmany -o $DIR/$tdir/striped_dir/f 5000 ||
13747                 error "create 5k files failed"
13748
13749         file_count=$(ls $DIR/$tdir/striped_dir | wc -l)
13750
13751         [ "$file_count" = 5000 ] || error "file count $file_count != 5000"
13752
13753         rm -rf $DIR/$tdir
13754 }
13755 run_test 300c "chown && check ls under striped directory"
13756
13757 test_300d() {
13758         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13759         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13760         local stripe_count
13761         local file
13762
13763         mkdir -p $DIR/$tdir
13764         $SETSTRIPE -c 2 $DIR/$tdir
13765
13766         #local striped directory
13767         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir ||
13768                 error "set striped dir error"
13769         createmany -o $DIR/$tdir/striped_dir/f 10 ||
13770                 error "create 10 files failed"
13771
13772         #remote striped directory
13773         $LFS setdirstripe -i 1 -c 2 $DIR/$tdir/remote_striped_dir ||
13774                 error "set striped dir error"
13775         createmany -o $DIR/$tdir/remote_striped_dir/f 10 ||
13776                 error "create 10 files failed"
13777
13778         for file in $(find $DIR/$tdir); do
13779                 stripe_count=$($GETSTRIPE -c $file)
13780                 [ $stripe_count -eq 2 ] ||
13781                         error "wrong stripe $stripe_count for $file"
13782         done
13783
13784         rm -rf $DIR/$tdir
13785 }
13786 run_test 300d "check default stripe under striped directory"
13787
13788 test_300e() {
13789         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
13790                 skip "Need MDS version at least 2.7.55" && return
13791         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13792         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13793         local stripe_count
13794         local file
13795
13796         mkdir -p $DIR/$tdir
13797
13798         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir ||
13799                 error "set striped dir error"
13800
13801         touch $DIR/$tdir/striped_dir/a
13802         touch $DIR/$tdir/striped_dir/b
13803         touch $DIR/$tdir/striped_dir/c
13804
13805         mkdir $DIR/$tdir/striped_dir/dir_a
13806         mkdir $DIR/$tdir/striped_dir/dir_b
13807         mkdir $DIR/$tdir/striped_dir/dir_c
13808
13809         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir/stp_a ||
13810                 error "set striped dir under striped dir error"
13811
13812         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir/stp_b ||
13813                 error "set striped dir under striped dir error"
13814
13815         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir/stp_c ||
13816                 error "set striped dir under striped dir error"
13817
13818         mrename $DIR/$tdir/striped_dir/dir_a $DIR/$tdir/striped_dir/dir_b ||
13819                 error "rename dir under striped dir fails"
13820
13821         mrename $DIR/$tdir/striped_dir/stp_a $DIR/$tdir/striped_dir/stp_b ||
13822                 error "rename dir under different stripes fails"
13823
13824         mrename $DIR/$tdir/striped_dir/a $DIR/$tdir/striped_dir/c ||
13825                 error "rename file under striped dir should succeed"
13826
13827         mrename $DIR/$tdir/striped_dir/dir_b $DIR/$tdir/striped_dir/dir_c ||
13828                 error "rename dir under striped dir should succeed"
13829
13830         rm -rf $DIR/$tdir
13831 }
13832 run_test 300e "check rename under striped directory"
13833
13834 test_300f() {
13835         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
13836                 skip "Need MDS version at least 2.7.55" && return
13837         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13838         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13839         local stripe_count
13840         local file
13841
13842         rm -rf $DIR/$tdir
13843         mkdir -p $DIR/$tdir
13844
13845         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir ||
13846                 error "set striped dir error"
13847
13848         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir1 ||
13849                 error "set striped dir error"
13850
13851         touch $DIR/$tdir/striped_dir/a
13852         mkdir $DIR/$tdir/striped_dir/dir_a
13853         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir/stp_a ||
13854                 error "create striped dir under striped dir fails"
13855
13856         touch $DIR/$tdir/striped_dir1/b
13857         mkdir $DIR/$tdir/striped_dir1/dir_b
13858         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir/stp_b ||
13859                 error "create striped dir under striped dir fails"
13860
13861         mrename $DIR/$tdir/striped_dir/dir_a $DIR/$tdir/striped_dir1/dir_b ||
13862                 error "rename dir under different striped dir should fail"
13863
13864         mrename $DIR/$tdir/striped_dir/stp_a $DIR/$tdir/striped_dir1/stp_b ||
13865                 error "rename striped dir under diff striped dir should fail"
13866
13867         mrename $DIR/$tdir/striped_dir/a $DIR/$tdir/striped_dir1/a ||
13868                 error "rename file under diff striped dirs fails"
13869
13870         rm -rf $DIR/$tdir
13871 }
13872 run_test 300f "check rename cross striped directory"
13873
13874 test_300_check_default_striped_dir()
13875 {
13876         local dirname=$1
13877         local default_count=$2
13878         local default_index=$3
13879         local stripe_count
13880         local stripe_index
13881         local dir_stripe_index
13882         local dir
13883
13884         echo "checking $dirname $default_count $default_index"
13885         $LFS setdirstripe -D -c $default_count -i $default_index \
13886                                 -t all_char $DIR/$tdir/$dirname ||
13887                 error "set default stripe on striped dir error"
13888         stripe_count=$($LFS getdirstripe -D -c $DIR/$tdir/$dirname)
13889         [ $stripe_count -eq $default_count ] ||
13890                 error "expect $default_count get $stripe_count for $dirname"
13891
13892         stripe_index=$($LFS getdirstripe -D -i $DIR/$tdir/$dirname)
13893         [ $stripe_index -eq $default_index ] ||
13894                 error "expect $default_index get $stripe_index for $dirname"
13895
13896         mkdir $DIR/$tdir/$dirname/{test1,test2,test3,test4} ||
13897                                                 error "create dirs failed"
13898
13899         createmany -o $DIR/$tdir/$dirname/f- 10 || error "create files failed"
13900         unlinkmany $DIR/$tdir/$dirname/f- 10    || error "unlink files failed"
13901         for dir in $(find $DIR/$tdir/$dirname/*); do
13902                 stripe_count=$($LFS getdirstripe -c $dir)
13903                 [ $stripe_count -eq $default_count ] ||
13904                 [ $stripe_count -eq 0 -o $default_count -eq 1 ] ||
13905                 error "stripe count $default_count != $stripe_count for $dir"
13906
13907                 stripe_index=$($LFS getdirstripe -i $dir)
13908                 [ $default_index -eq -1 -o $stripe_index -eq $default_index ] ||
13909                         error "$stripe_index != $default_index for $dir"
13910
13911                 #check default stripe
13912                 stripe_count=$($LFS getdirstripe -D -c $dir)
13913                 [ $stripe_count -eq $default_count ] ||
13914                 error "default count $default_count != $stripe_count for $dir"
13915
13916                 stripe_index=$($LFS getdirstripe -D -i $dir)
13917                 [ $stripe_index -eq $default_index ] ||
13918                 error "default index $default_index != $stripe_index for $dir"
13919         done
13920         rmdir $DIR/$tdir/$dirname/* || error "rmdir failed"
13921 }
13922
13923 test_300g() {
13924         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
13925                 skip "Need MDS version at least 2.7.55" && return
13926         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13927         local dir
13928         local stripe_count
13929         local stripe_index
13930
13931         mkdir $DIR/$tdir
13932         mkdir $DIR/$tdir/normal_dir
13933
13934         test_300_check_default_striped_dir normal_dir $MDSCOUNT 1
13935         test_300_check_default_striped_dir normal_dir 1 0
13936         test_300_check_default_striped_dir normal_dir 2 1
13937         test_300_check_default_striped_dir normal_dir 2 -1
13938
13939         #delete default stripe information
13940         echo "delete default stripeEA"
13941         $LFS setdirstripe -d $DIR/$tdir/normal_dir ||
13942                 error "set default stripe on striped dir error"
13943
13944         mkdir -p $DIR/$tdir/normal_dir/{test1,test2,test3,test4}
13945         for dir in $(find $DIR/$tdir/normal_dir/*); do
13946                 stripe_count=$($LFS getdirstripe -c $dir)
13947                 [ $stripe_count -eq 0 ] ||
13948                         error "expect 1 get $stripe_count for $dir"
13949                 stripe_index=$($LFS getdirstripe -i $dir)
13950                 [ $stripe_index -eq 0 ] ||
13951                         error "expect 0 get $stripe_index for $dir"
13952         done
13953 }
13954 run_test 300g "check default striped directory for normal directory"
13955
13956 test_300h() {
13957         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
13958                 skip "Need MDS version at least 2.7.55" && return
13959         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13960         local dir
13961         local stripe_count
13962
13963         mkdir $DIR/$tdir
13964         $LFS setdirstripe -i 0 -c $MDSCOUNT -t all_char \
13965                                         $DIR/$tdir/striped_dir ||
13966                 error "set striped dir error"
13967
13968         test_300_check_default_striped_dir striped_dir $MDSCOUNT 1
13969         test_300_check_default_striped_dir striped_dir 1 0
13970         test_300_check_default_striped_dir striped_dir 2 1
13971         test_300_check_default_striped_dir striped_dir 2 -1
13972
13973         #delete default stripe information
13974         $LFS setdirstripe -d $DIR/$tdir/striped_dir ||
13975                 error "set default stripe on striped dir error"
13976
13977         mkdir -p $DIR/$tdir/striped_dir/{test1,test2,test3,test4}
13978         for dir in $(find $DIR/$tdir/striped_dir/*); do
13979                 stripe_count=$($LFS getdirstripe -c $dir)
13980                 [ $stripe_count -eq 0 ] ||
13981                         error "expect 1 get $stripe_count for $dir"
13982         done
13983 }
13984 run_test 300h "check default striped directory for striped directory"
13985
13986 test_300i() {
13987         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
13988                 skip "Need MDS version at least 2.7.55" && return
13989         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13990         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13991         local stripe_count
13992         local file
13993
13994         mkdir $DIR/$tdir
13995
13996         $LFS setdirstripe -i 0 -c$MDSCOUNT -t all_char $DIR/$tdir/striped_dir ||
13997                 error "set striped dir error"
13998
13999         createmany -o $DIR/$tdir/striped_dir/f- 10 ||
14000                 error "create files under striped dir failed"
14001
14002         # unfortunately, we need to umount to clear dir layout cache for now
14003         # once we fully implement dir layout, we can drop this
14004         umount_client $MOUNT || error "umount failed"
14005         mount_client $MOUNT || error "mount failed"
14006
14007         #set the stripe to be unknown hash type
14008         #define OBD_FAIL_UNKNOWN_LMV_STRIPE     0x1901
14009         $LCTL set_param fail_loc=0x1901
14010         for ((i = 0; i < 10; i++)); do
14011                 $CHECKSTAT -t file $DIR/$tdir/striped_dir/f-$i ||
14012                         error "stat f-$i failed"
14013                 rm $DIR/$tdir/striped_dir/f-$i || error "unlink f-$i failed"
14014         done
14015
14016         touch $DIR/$tdir/striped_dir/f0 &&
14017                 error "create under striped dir with unknown hash should fail"
14018
14019         $LCTL set_param fail_loc=0
14020
14021         umount_client $MOUNT || error "umount failed"
14022         mount_client $MOUNT || error "mount failed"
14023
14024         return 0
14025 }
14026 run_test 300i "client handle unknown hash type striped directory"
14027
14028 test_300j() {
14029         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14030         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
14031                 skip "Need MDS version at least 2.7.55" && return
14032         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14033         local stripe_count
14034         local file
14035
14036         mkdir $DIR/$tdir
14037
14038         #define OBD_FAIL_SPLIT_UPDATE_REC       0x1702
14039         $LCTL set_param fail_loc=0x1702
14040         $LFS setdirstripe -i 0 -c$MDSCOUNT -t all_char $DIR/$tdir/striped_dir ||
14041                 error "set striped dir error"
14042
14043         createmany -o $DIR/$tdir/striped_dir/f- 10 ||
14044                 error "create files under striped dir failed"
14045
14046         $LCTL set_param fail_loc=0
14047
14048         rm -rf $DIR/$tdir || error "unlink striped dir fails"
14049
14050         return 0
14051 }
14052 run_test 300j "test large update record"
14053
14054 test_300k() {
14055         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
14056                 skip "Need MDS version at least 2.7.55" && return
14057         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14058         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14059         local stripe_count
14060         local file
14061
14062         mkdir $DIR/$tdir
14063
14064         #define OBD_FAIL_LARGE_STRIPE   0x1703
14065         $LCTL set_param fail_loc=0x1703
14066         $LFS setdirstripe -i 0 -c512 $DIR/$tdir/striped_dir ||
14067                 error "set striped dir error"
14068         $LCTL set_param fail_loc=0
14069
14070         $LFS getdirstripe $DIR/$tdir/striped_dir ||
14071                 error "getstripeddir fails"
14072         rm -rf $DIR/$tdir/striped_dir ||
14073                 error "unlink striped dir fails"
14074
14075         return 0
14076 }
14077 run_test 300k "test large striped directory"
14078
14079 test_300l() {
14080         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
14081                 skip "Need MDS version at least 2.7.55" && return
14082         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14083         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14084         local stripe_index
14085
14086         test_mkdir -p $DIR/$tdir/striped_dir
14087         chown $RUNAS_ID $DIR/$tdir/striped_dir ||
14088                         error "chown $RUNAS_ID failed"
14089         $LFS setdirstripe -i 1 -D $DIR/$tdir/striped_dir ||
14090                 error "set default striped dir failed"
14091
14092         #define OBD_FAIL_MDS_STALE_DIR_LAYOUT    0x158
14093         $LCTL set_param fail_loc=0x80000158
14094         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir || error "create dir fails"
14095
14096         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/test_dir)
14097         [ $stripe_index -eq 1 ] ||
14098                 error "expect 1 get $stripe_index for $dir"
14099 }
14100 run_test 300l "non-root user to create dir under striped dir with stale layout"
14101
14102 test_300m() {
14103         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
14104                 skip "Need MDS version at least 2.7.55" && return
14105         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14106         [ $MDSCOUNT -ge 2 ] && skip "Only for single MDT" && return
14107
14108         mkdir -p $DIR/$tdir/striped_dir
14109         $LFS setdirstripe -D -c 1 $DIR/$tdir/striped_dir ||
14110                 error "set default stripes dir error"
14111
14112         mkdir $DIR/$tdir/striped_dir/a || error "mkdir a fails"
14113
14114         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir/a)
14115         [ $stripe_count -eq 0 ] ||
14116                         error "expect 0 get $stripe_count for a"
14117
14118         $LFS setdirstripe -D -c 2 $DIR/$tdir/striped_dir ||
14119                 error "set default stripes dir error"
14120
14121         mkdir $DIR/$tdir/striped_dir/b || error "mkdir b fails"
14122
14123         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir/b)
14124         [ $stripe_count -eq 0 ] ||
14125                         error "expect 0 get $stripe_count for b"
14126
14127         $LFS setdirstripe -D -c1 -i2 $DIR/$tdir/striped_dir ||
14128                 error "set default stripes dir error"
14129
14130         mkdir $DIR/$tdir/striped_dir/c &&
14131                 error "default stripe_index is invalid, mkdir c should fails"
14132
14133         rm -rf $DIR/$tdir || error "rmdir fails"
14134 }
14135 run_test 300m "setstriped directory on single MDT FS"
14136
14137 cleanup_300n() {
14138         local list=$(comma_list $(mdts_nodes))
14139
14140         trap 0
14141         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
14142 }
14143
14144 test_300n() {
14145         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
14146                 skip "Need MDS version at least 2.7.55" && return
14147         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14148         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14149         local stripe_index
14150         local list=$(comma_list $(mdts_nodes))
14151
14152         trap cleanup_300n RETURN EXIT
14153         mkdir -p $DIR/$tdir
14154         chmod 777 $DIR/$tdir
14155         $RUNAS $LFS setdirstripe -i0 -c$MDSCOUNT \
14156                                 $DIR/$tdir/striped_dir > /dev/null 2>&1 &&
14157                 error "create striped dir succeeds with gid=0"
14158
14159         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=-1
14160         $RUNAS $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
14161                 error "create striped dir fails with gid=-1"
14162
14163         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
14164         $RUNAS $LFS setdirstripe -i 1 -c$MDSCOUNT -D \
14165                                 $DIR/$tdir/striped_dir > /dev/null 2>&1 &&
14166                 error "set default striped dir succeeds with gid=0"
14167
14168
14169         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=-1
14170         $RUNAS $LFS setdirstripe -i 1 -c$MDSCOUNT -D $DIR/$tdir/striped_dir ||
14171                 error "set default striped dir fails with gid=-1"
14172
14173
14174         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
14175         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir ||
14176                                         error "create test_dir fails"
14177         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir1 ||
14178                                         error "create test_dir1 fails"
14179         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir2 ||
14180                                         error "create test_dir2 fails"
14181         cleanup_300n
14182 }
14183 run_test 300n "non-root user to create dir under striped dir with default EA"
14184
14185 test_300o() {
14186         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
14187                 skip "Need MDS version at least 2.7.55" && return
14188         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14189         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14190         local numfree1
14191         local numfree2
14192
14193         mkdir -p $DIR/$tdir
14194
14195         numfree1=$(lctl get_param -n mdc.*MDT0000*.filesfree)
14196         numfree2=$(lctl get_param -n mdc.*MDT0001*.filesfree)
14197         if [ $numfree1 -lt 66000 -o $numfree2 -lt 66000 ]; then
14198                 skip "not enough free inodes $numfree1 $numfree2"
14199                 return
14200         fi
14201
14202         numfree1=$(lctl get_param -n mdc.*MDT0000-mdc-*.kbytesfree)
14203         numfree2=$(lctl get_param -n mdc.*MDT0001-mdc-*.kbytesfree)
14204         if [ $numfree1 -lt 300000 -o $numfree2 -lt 300000 ]; then
14205                 skip "not enough free space $numfree1 $numfree2"
14206                 return
14207         fi
14208
14209         $LFS setdirstripe -c2 $DIR/$tdir/striped_dir ||
14210                 error "setdirstripe fails"
14211
14212         createmany -d $DIR/$tdir/striped_dir/d 131000 ||
14213                 error "create dirs fails"
14214
14215         $LCTL set_param ldlm.namespaces.*mdc-*.lru_size=0
14216         ls $DIR/$tdir/striped_dir > /dev/null ||
14217                 error "ls striped dir fails"
14218         unlinkmany -d $DIR/$tdir/striped_dir/d 131000 ||
14219                 error "unlink big striped dir fails"
14220 }
14221 run_test 300o "unlink big sub stripe(> 65000 subdirs)"
14222
14223 test_300p() {
14224         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14225         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14226
14227         mkdir -p $DIR/$tdir
14228
14229         #define OBD_FAIL_OUT_ENOSPC     0x1704
14230         do_facet mds2 lctl set_param fail_loc=0x80001704
14231         $LFS setdirstripe -c2 $DIR/$tdir/bad_striped_dir > /dev/null 2>&1 &&
14232                         error "create striped directory should fail"
14233
14234         [ -e $DIR/$tdir/bad_striped_dir ] && error "striped dir exists"
14235
14236         $LFS setdirstripe -c2 $DIR/$tdir/bad_striped_dir
14237         true
14238 }
14239 run_test 300p "create striped directory without space"
14240
14241 test_300q() {
14242         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14243         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14244
14245         local fd=$(free_fd)
14246         local cmd="exec $fd<$tdir"
14247         cd $DIR
14248         $LFS mkdir -c $MDSCOUNT $tdir || error "create $tdir fails"
14249         eval $cmd
14250         cmd="exec $fd<&-"
14251         trap "eval $cmd" EXIT
14252         cd $tdir || error "cd $tdir fails"
14253         rmdir  ../$tdir || error "rmdir $tdir fails"
14254         mkdir local_dir && error "create dir succeeds"
14255         $LFS setdirstripe -i1 remote_dir && error "create remote dir succeeds"
14256         eval $cmd
14257         return 0
14258 }
14259 run_test 300q "create remote directory under orphan directory"
14260
14261 prepare_remote_file() {
14262         mkdir $DIR/$tdir/src_dir ||
14263                 error "create remote source failed"
14264
14265         cp /etc/hosts $DIR/$tdir/src_dir/a || error
14266         touch $DIR/$tdir/src_dir/a
14267
14268         $LFS mkdir -i 1 $DIR/$tdir/tgt_dir ||
14269                 error "create remote target dir failed"
14270
14271         touch $DIR/$tdir/tgt_dir/b
14272
14273         mrename $DIR/$tdir/src_dir/a $DIR/$tdir/tgt_dir/b ||
14274                 error "rename dir cross MDT failed!"
14275
14276         $CHECKSTAT -t file $DIR/$tdir/src_dir/a &&
14277                 error "src_child still exists after rename"
14278
14279         $CHECKSTAT -t file $DIR/$tdir/tgt_dir/b ||
14280                 error "missing file(a) after rename"
14281
14282         diff /etc/hosts $DIR/$tdir/tgt_dir/b ||
14283                 error "diff after rename"
14284 }
14285
14286 test_310a() {
14287         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 4 MDTs" && return
14288         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14289         local remote_file=$DIR/$tdir/tgt_dir/b
14290
14291         mkdir -p $DIR/$tdir
14292
14293         prepare_remote_file || error "prepare remote file failed"
14294
14295         #open-unlink file
14296         $OPENUNLINK $remote_file $remote_file || error
14297         $CHECKSTAT -a $remote_file || error
14298 }
14299 run_test 310a "open unlink remote file"
14300
14301 test_310b() {
14302         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 4 MDTs" && return
14303         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14304         local remote_file=$DIR/$tdir/tgt_dir/b
14305
14306         mkdir -p $DIR/$tdir
14307
14308         prepare_remote_file || error "prepare remote file failed"
14309
14310         ln $remote_file $DIR/$tfile || error "link failed for remote file"
14311         $MULTIOP $DIR/$tfile Ouc || error "mulitop failed"
14312         $CHECKSTAT -t file $remote_file || error "check file failed"
14313 }
14314 run_test 310b "unlink remote file with multiple links while open"
14315
14316 test_310c() {
14317         [[ $MDSCOUNT -lt 4 ]] && skip "needs >= 4 MDTs" && return
14318         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14319         local remote_file=$DIR/$tdir/tgt_dir/b
14320
14321         mkdir -p $DIR/$tdir
14322
14323         prepare_remote_file || error "prepare remote file failed"
14324
14325         ln $remote_file $DIR/$tfile || error "link failed for remote file"
14326         multiop_bg_pause $remote_file O_uc ||
14327                         error "mulitop failed for remote file"
14328         MULTIPID=$!
14329         $MULTIOP $DIR/$tfile Ouc
14330         kill -USR1 $MULTIPID
14331         wait $MULTIPID
14332 }
14333 run_test 310c "open-unlink remote file with multiple links"
14334
14335 test_400a() { # LU-1606, was conf-sanity test_74
14336         local extra_flags=''
14337         local out=$TMP/$tfile
14338         local prefix=/usr/include/lustre
14339         local prog
14340
14341         if ! which $CC > /dev/null 2>&1; then
14342                 skip_env "$CC is not installed"
14343                 return 0
14344         fi
14345
14346         if ! [[ -d $prefix ]]; then
14347                 # Assume we're running in tree and fixup the include path.
14348                 extra_flags+=" -I$LUSTRE/../libcfs/include"
14349                 extra_flags+=" -I$LUSTRE/include"
14350                 extra_flags+=" -L$LUSTRE/utils"
14351         fi
14352
14353         for prog in $LUSTRE_TESTS_API_DIR/*.c; do
14354                 $CC -Wall -Werror $extra_flags -llustreapi -o $out $prog ||
14355                         error "client api broken"
14356         done
14357 }
14358 run_test 400a "Lustre client api program can compile and link"
14359
14360 test_400b() { # LU-1606, LU-5011
14361         local header
14362         local out=$TMP/$tfile
14363         local prefix=/usr/include/lustre
14364
14365         # We use a hard coded prefix so that this test will not fail
14366         # when run in tree. There are headers in lustre/include/lustre/
14367         # that are not packaged (like lustre_idl.h) and have more
14368         # complicated include dependencies (like config.h and lnet/types.h).
14369         # Since this test about correct packaging we just skip them when
14370         # they don't exist (see below) rather than try to fixup cppflags.
14371
14372         if ! which $CC > /dev/null 2>&1; then
14373                 skip_env "$CC is not installed"
14374                 return 0
14375         fi
14376
14377         for header in $prefix/*.h; do
14378                 if ! [[ -f "$header" ]]; then
14379                         continue
14380                 fi
14381
14382                 if [[ "$(basename $header)" == liblustreapi.h ]]; then
14383                         continue # liblustreapi.h is deprecated.
14384                 fi
14385
14386                 $CC -Wall -Werror -include $header -c -x c /dev/null -o $out ||
14387                         error "cannot compile '$header'"
14388         done
14389 }
14390 run_test 400b "packaged headers can be compiled"
14391
14392 test_401() { #LU-7437
14393         #count the number of parameters by "list_param -R"
14394         local params=$($LCTL list_param -R '*' 2>/dev/null | wc -l)
14395         #count the number of parameters by listing proc files
14396         local procs=$(find -L $proc_dirs -mindepth 1 -printf '%P\n' 2>/dev/null |
14397                       sort -u | wc -l)
14398
14399         [ $params -eq $procs ] ||
14400                 error "found $params parameters vs. $procs proc files"
14401 }
14402 run_test 401 "Verify if 'lctl list_param -R' can list parameters recursively"
14403
14404 test_402() {
14405         $LFS setdirstripe -i 0 $DIR/$tdir || error "setdirstripe -i 0 failed"
14406 #define OBD_FAIL_MDS_FLD_LOOKUP 0x15c
14407         do_facet mds1 "lctl set_param fail_loc=0x8000015c"
14408         touch $DIR/$tdir/$tfile && error "touch should fail with ENOENT" ||
14409                 echo "Touch failed - OK"
14410 }
14411 run_test 402 "Return ENOENT to lod_generate_and_set_lovea"
14412
14413 #
14414 # tests that do cleanup/setup should be run at the end
14415 #
14416
14417 test_900() {
14418         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14419         local ls
14420         #define OBD_FAIL_MGC_PAUSE_PROCESS_LOG   0x903
14421         $LCTL set_param fail_loc=0x903
14422
14423         cancel_lru_locks MGC
14424
14425         FAIL_ON_ERROR=true cleanup
14426         FAIL_ON_ERROR=true setup
14427 }
14428 run_test 900 "umount should not race with any mgc requeue thread"
14429
14430 complete $SECONDS
14431 [ -f $EXT2_DEV ] && rm $EXT2_DEV || true
14432 check_and_cleanup_lustre
14433 if [ "$I_MOUNTED" != "yes" ]; then
14434         lctl set_param debug="$OLDDEBUG" 2> /dev/null || true
14435 fi
14436 exit_status